diff --git a/.agents/rules/frontend.md b/.agents/rules/frontend.md new file mode 100644 index 0000000..aace963 --- /dev/null +++ b/.agents/rules/frontend.md @@ -0,0 +1,8 @@ +--- +trigger: always_on +--- + +> **# Frontend Architecture: clipifront (React Native)** +> * **Primary UI Framework:** Prioritize **Tamagui** for core styling and performance-critical components. Leverage the Tamagui compiler to ensure minimal runtime overhead. +> * **Component Selection:** Use **Gluestack UI** (v2+) for complex, accessible UI patterns (Modals, Selects, Actionsheets) where ARIA compliance and modularity are required. +> * **Decision Logic:** Favor Tamagui for layout and high-frequency components; switch to Gluestack when pre-built complex behavior is needed to save development time. Avoid mixing both in the same atomic component to keep the bundle lean. diff --git a/.aidocs/faq.md b/.aidocs/faq.md new file mode 100644 index 0000000..fb3031b --- /dev/null +++ b/.aidocs/faq.md @@ -0,0 +1,26 @@ +# Clipi FAQ + +**Q: What is the main architecture?** +A: Central Server (Broker) architecture. Devices act as clients connecting to a shared Go API server. +That has run to be able to run on desktop and mobile + +**Q: Where does the backend run?** +A: The backend runs on port 50050 (managed in `back/`). + +**Q: How do I start the backend?** +A: Navigate to `back/` and run `go run main.go`. + +**Q: How do I start the frontend?** +A: Navigate to `clipiFrontC/clipiFrontC` and run: +1. `dotnet build -f net9.0-windows10.0.19041.0` Builds Net Muai App +2. `dotnet run -f net9.0-windows10.0.19041.0` Run the builded app + +**Q: How does the client identify itself?** +A: It identifies itself using its local IP address. + +**Q: How are notes stored?** +A: Notes are stored in `notes.db` using SQLite3 (managed by Go backend in `back/utils/db.go`). + +**Q: What is `clipiFront`?** +A: It's the modern Net Muai Hybrid Windows frontend. + diff --git a/.aidocs/map.md b/.aidocs/map.md new file mode 100644 index 0000000..39a59b0 --- /dev/null +++ b/.aidocs/map.md @@ -0,0 +1,20 @@ +# Clipi - Project Architecture + +## Technology Stack +- **Backend:** Go (Golang) with SQLite3 +- **Frontend (Mobile):** React Native with Tamagui and Gluestack UI +- **Dependency Management:** `uv` for Python (if applicable), `npm`/`yarn` for JS/TS, `go mod` for Go. + +## Core Logic Flow +Clipi is a personal clipboard synchronization tool. +- **Backend:** Handles data persistence and API endpoints for fetching/storing notes. +- **Frontend:** Provides the user interface for interacting with synchronized clipboard content. + +## Data Schema (SQLite) +- `notes.db`: Likely contains tables for clips/notes with content and timestamps. + +## Directory Structure +- `back/`: Go backend source code. +- `clipiFrontC/clipiFrontC`: C# .Net Muai Brazor Hybrid mobile application. +- `utils/`: Shared utilities (likely Python based on research). +- `.aidocs/`: Internal documentation. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3060dd6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +.venv/ +.python-version +.pytest_cache/ +.coverage +htmlcov/ +dist/ +build/ +*.egg-info/ +.uv/ + +# Go +bin/ +back/bin/ + +# Node / React Native (Project level) +node_modules/ +npm-debug.log +yarn-error.log +.metro-health-check* + +# OS / IDE +.DS_Store +Thumbs.db +.vscode/ +.idea/ +*.swp +*.swo + +# Project Specific +notes.db +.env + +.vs/ \ No newline at end of file diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/Deprecatedd/back.py b/Deprecatedd/back.py new file mode 100644 index 0000000..a1799ad --- /dev/null +++ b/Deprecatedd/back.py @@ -0,0 +1,49 @@ +from flask import request +from markupsafe import escape +from flask import Flask +import sqlite3 +from datetime import datetime + +import Deprecatedd.db as db + +app = Flask(__name__) + +con = db.get_connection() +cur = db.get_cursor() + +""" +Functions (Areea proper to stor e all the function) +""" + +# Initialize the db table if it is not already initialized +cur.execute("CREATE TABLE IF NOT EXISTS notes(id, user, content, date)") + + +""" +Routes +""" +@app.route("/hello", methods=["GET", "POST"]) +def hello(): + #Receive the post with the content and the id + print("Received post from front") + if request.method == "POST": + content = request.form.get('content') + print(content) + id = request.form.get("id") + user = request.form.get("user") + date = datetime.now() + + cur.execute("INSERT INTO notes VALUES(?, ?, ?, ?)", (id, user, content, date)) + con.commit() + else: + content = request.form.get('content') + id = request.args.get("id") + #Return the ID for debugging + return f"Post {id} received" + + +if __name__ == '__main__': + app.run(debug=True, port=9132) + print("Started") + +print("Stopped") \ No newline at end of file diff --git a/Deprecatedd/db.py b/Deprecatedd/db.py new file mode 100644 index 0000000..62f24fd --- /dev/null +++ b/Deprecatedd/db.py @@ -0,0 +1,24 @@ +import sqlite3 + +# Maintain an open connection to notes.db +# check_same_thread=False ensures Flask can query DB across its threads +con = sqlite3.connect("notes.db", check_same_thread=False) + +# Internal cursor +_cur = con.cursor() + +# Initialize the db table if it is not already initialized +_cur.execute("CREATE TABLE IF NOT EXISTS notes(id, user, content, date)") +con.commit() + +def get_cursor(): + """ + Returns the cursor to be used by other scripts. + """ + return _cur + +def get_connection(): + """ + Returns the connection object if commits are needed elsewhere. + """ + return con diff --git a/Deprecatedd/front.py b/Deprecatedd/front.py new file mode 100644 index 0000000..674af80 --- /dev/null +++ b/Deprecatedd/front.py @@ -0,0 +1,88 @@ +import requests +import secrets +import sqlite3 +import socket + +#Load the db +con = sqlite3.connect("notes.db", check_same_thread=False) + +cur = con.cursor() + +#Host Link + + +""" +Function +""" + +#Get users local IP for note indentification +def getIP(): + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + try: + #Use port 1 to send udp a dummy packet so it returns the ip + s.connect(('8.8.8.8', 1)) + ip = s.getsockname()[0] + except Exception: + #Loopback in case unreachable + ip = '127.0.0.1' + finally: + s.close() + return ip +#To make a post for the other device + +url = f'http://{getIP()}:9132/hello' + +print(url) +def posting(): + #Get the clipboard + content = input("tf is on ur clipboard dude 😭") + + #Get users user, so u can actually take his notes type shi yk? + user = getIP() + #Get a random 6 digit ID to indetify each clipboard note + id = secrets.randbelow(900000) + 100000 + + #The post content, what's going w the post + postContent = {'id': id, 'user': user, 'content': content} + + #Sending the actual post + sendPost = requests.post(url, postContent) + + print(sendPost.text) + +#Basically the frontend for now sadly +while True: + #Question the user what he wants to do + if (temp := input("What do you want to do (list, send)")) == "list": + #Get ip to indetify the user + user = getIP() + + #Get notes and dates from the user to list them + content = cur.execute("SELECT content, date FROM notes WHERE user = ?", (user, )) + actualContent = content.fetchone() + + #Parses the date + s = actualContent[1] + + parsedDate = f"{s[11:16]} - {s[8:10]}/{s[5:7]}/{s[0:4]}" + + #Tell them the note and date + if actualContent != None or "None": + print(f"Your clipboard are: {actualContent[0]}, {parsedDate}") + + elif temp == "send": #If they want to send a note call the send function, that posts the note to the host + posting() + elif temp == "listId": #Take a note by list + #Get the note id + note_id = input("K little bru, whats the note id??") + + #Take the note from the id on the db + content = cur.execute("SELECT content FROM notes WHERE id = ?", (note_id, )) + actualContent = content.fetchone() + + #Return the note + if actualContent != None or "None": + print(f"Your clipboard are: {actualContent[0]}") + + + diff --git a/README.md b/Planning/README.md similarity index 100% rename from README.md rename to Planning/README.md diff --git a/back/go.mod b/back/go.mod new file mode 100644 index 0000000..e74f9a0 --- /dev/null +++ b/back/go.mod @@ -0,0 +1,51 @@ +module github.com/bulgadev/clipi/back + +go 1.26.1 + +require ( + github.com/gin-gonic/gin v1.12.0 + golang.org/x/mobile v0.0.0-20260312152759-81488f6aeb60 + modernc.org/sqlite v1.47.0 +) + +require ( + github.com/bytedance/gopkg v0.1.3 // indirect + github.com/bytedance/sonic v1.15.0 // indirect + github.com/bytedance/sonic/loader v0.5.0 // indirect + github.com/cloudwego/base64x v0.1.6 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/gabriel-vasile/mimetype v1.4.12 // indirect + github.com/gin-contrib/sse v1.1.0 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.30.1 // indirect + github.com/goccy/go-json v0.10.5 // indirect + github.com/goccy/go-yaml v1.19.2 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/cpuid/v2 v2.3.0 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/ncruces/go-strftime v1.0.0 // indirect + github.com/pelletier/go-toml/v2 v2.2.4 // indirect + github.com/quic-go/qpack v0.6.0 // indirect + github.com/quic-go/quic-go v0.59.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ugorji/go/codec v1.3.1 // indirect + go.mongodb.org/mongo-driver/v2 v2.5.0 // indirect + golang.org/x/arch v0.22.0 // indirect + golang.org/x/crypto v0.49.0 // indirect + golang.org/x/mod v0.34.0 // indirect + golang.org/x/net v0.52.0 // indirect + golang.org/x/sync v0.20.0 // indirect + golang.org/x/sys v0.42.0 // indirect + golang.org/x/text v0.35.0 // indirect + golang.org/x/tools v0.43.0 // indirect + google.golang.org/protobuf v1.36.10 // indirect + modernc.org/libc v1.70.0 // indirect + modernc.org/mathutil v1.7.1 // indirect + modernc.org/memory v1.11.0 // indirect +) diff --git a/back/go.sum b/back/go.sum new file mode 100644 index 0000000..d6d2825 --- /dev/null +++ b/back/go.sum @@ -0,0 +1,141 @@ +github.com/bytedance/gopkg v0.1.3 h1:TPBSwH8RsouGCBcMBktLt1AymVo2TVsBVCY4b6TnZ/M= +github.com/bytedance/gopkg v0.1.3/go.mod h1:576VvJ+eJgyCzdjS+c4+77QF3p7ubbtiKARP3TxducM= +github.com/bytedance/sonic v1.15.0 h1:/PXeWFaR5ElNcVE84U0dOHjiMHQOwNIx3K4ymzh/uSE= +github.com/bytedance/sonic v1.15.0/go.mod h1:tFkWrPz0/CUCLEF4ri4UkHekCIcdnkqXw9VduqpJh0k= +github.com/bytedance/sonic/loader v0.5.0 h1:gXH3KVnatgY7loH5/TkeVyXPfESoqSBSBEiDd5VjlgE= +github.com/bytedance/sonic/loader v0.5.0/go.mod h1:AR4NYCk5DdzZizZ5djGqQ92eEhCCcdf5x77udYiSJRo= +github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M= +github.com/cloudwego/base64x v0.1.6/go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/gabriel-vasile/mimetype v1.4.12 h1:e9hWvmLYvtp846tLHam2o++qitpguFiYCKbn0w9jyqw= +github.com/gabriel-vasile/mimetype v1.4.12/go.mod h1:d+9Oxyo1wTzWdyVUPMmXFvp4F9tea18J8ufA774AB3s= +github.com/gin-contrib/sse v1.1.0 h1:n0w2GMuUpWDVp7qSpvze6fAu9iRxJY4Hmj6AmBOU05w= +github.com/gin-contrib/sse v1.1.0/go.mod h1:hxRZ5gVpWMT7Z0B0gSNYqqsSCNIJMjzvm6fqCz9vjwM= +github.com/gin-gonic/gin v1.12.0 h1:b3YAbrZtnf8N//yjKeU2+MQsh2mY5htkZidOM7O0wG8= +github.com/gin-gonic/gin v1.12.0/go.mod h1:VxccKfsSllpKshkBWgVgRniFFAzFb9csfngsqANjnLc= +github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= +github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.30.1 h1:f3zDSN/zOma+w6+1Wswgd9fLkdwy06ntQJp0BBvFG0w= +github.com/go-playground/validator/v10 v10.30.1/go.mod h1:oSuBIQzuJxL//3MelwSLD5hc2Tu889bF0Idm9Dg26cM= +github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4= +github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M= +github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM= +github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e h1:ijClszYn+mADRFY17kjQEVQ1XRhq2/JR1M3sGqeJoxs= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e/go.mod h1:boTsfXsheKC2y+lKOCMpSfarhxDeIzfZG1jqGcPl3cA= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k= +github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= +github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= +github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= +github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/ncruces/go-strftime v1.0.0 h1:HMFp8mLCTPp341M/ZnA4qaf7ZlsbTc+miZjCLOFAw7w= +github.com/ncruces/go-strftime v1.0.0/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls= +github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4= +github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/quic-go/qpack v0.6.0 h1:g7W+BMYynC1LbYLSqRt8PBg5Tgwxn214ZZR34VIOjz8= +github.com/quic-go/qpack v0.6.0/go.mod h1:lUpLKChi8njB4ty2bFLX2x4gzDqXwUpaO1DP9qMDZII= +github.com/quic-go/quic-go v0.59.0 h1:OLJkp1Mlm/aS7dpKgTc6cnpynnD2Xg7C1pwL6vy/SAw= +github.com/quic-go/quic-go v0.59.0/go.mod h1:upnsH4Ju1YkqpLXC305eW3yDZ4NfnNbmQRCMWS58IKU= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/ugorji/go/codec v1.3.1 h1:waO7eEiFDwidsBN6agj1vJQ4AG7lh2yqXyOXqhgQuyY= +github.com/ugorji/go/codec v1.3.1/go.mod h1:pRBVtBSKl77K30Bv8R2P+cLSGaTtex6fsA2Wjqmfxj4= +go.mongodb.org/mongo-driver/v2 v2.5.0 h1:yXUhImUjjAInNcpTcAlPHiT7bIXhshCTL3jVBkF3xaE= +go.mongodb.org/mongo-driver/v2 v2.5.0/go.mod h1:yOI9kBsufol30iFsl1slpdq1I0eHPzybRWdyYUs8K/0= +go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y= +go.uber.org/mock v0.6.0/go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU= +golang.org/x/arch v0.22.0 h1:c/Zle32i5ttqRXjdLyyHZESLD/bB90DCU1g9l/0YBDI= +golang.org/x/arch v0.22.0/go.mod h1:dNHoOeKiyja7GTvF9NJS1l3Z2yntpQNzgrjh1cU103A= +golang.org/x/crypto v0.49.0 h1:+Ng2ULVvLHnJ/ZFEq4KdcDd/cfjrrjjNSXNzxg0Y4U4= +golang.org/x/crypto v0.49.0/go.mod h1:ErX4dUh2UM+CFYiXZRTcMpEcN8b/1gxEuv3nODoYtCA= +golang.org/x/mobile v0.0.0-20260312152759-81488f6aeb60 h1:MOzyaj0wu2xneBkzkg9LHNYjDBB4W5vP043A2SYQRPA= +golang.org/x/mobile v0.0.0-20260312152759-81488f6aeb60/go.mod h1:th6VJvzjMbrYF8SduQY5rpD0HG0GleGxjadkqSxFs3k= +golang.org/x/mod v0.34.0 h1:xIHgNUUnW6sYkcM5Jleh05DvLOtwc6RitGHbDk4akRI= +golang.org/x/mod v0.34.0/go.mod h1:ykgH52iCZe79kzLLMhyCUzhMci+nQj+0XkbXpNYtVjY= +golang.org/x/net v0.52.0 h1:He/TN1l0e4mmR3QqHMT2Xab3Aj3L9qjbhRm78/6jrW0= +golang.org/x/net v0.52.0/go.mod h1:R1MAz7uMZxVMualyPXb+VaqGSa3LIaUqk0eEt3w36Sw= +golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4= +golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo= +golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= +golang.org/x/text v0.35.0 h1:JOVx6vVDFokkpaq1AEptVzLTpDe9KGpj5tR4/X+ybL8= +golang.org/x/text v0.35.0/go.mod h1:khi/HExzZJ2pGnjenulevKNX1W67CUy0AsXcNubPGCA= +golang.org/x/tools v0.43.0 h1:12BdW9CeB3Z+J/I/wj34VMl8X+fEXBxVR90JeMX5E7s= +golang.org/x/tools v0.43.0/go.mod h1:uHkMso649BX2cZK6+RpuIPXS3ho2hZo4FVwfoy1vIk0= +golang.org/x/tools/go/expect v0.1.1-deprecated h1:jpBZDwmgPhXsKZC6WhL20P4b/wmnpsEAGHaNy0n/rJM= +golang.org/x/tools/go/expect v0.1.1-deprecated/go.mod h1:eihoPOH+FgIqa3FpoTwguz/bVUSGBlGQU67vpBeOrBY= +golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated h1:1h2MnaIAIXISqTFKdENegdpAgUXz6NrPEsbIeWaBRvM= +golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated/go.mod h1:RVAQXBGNv1ib0J382/DPCRS/BPnsGebyM1Gj5VSDpG8= +google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= +google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +modernc.org/cc/v4 v4.27.1 h1:9W30zRlYrefrDV2JE2O8VDtJ1yPGownxciz5rrbQZis= +modernc.org/cc/v4 v4.27.1/go.mod h1:uVtb5OGqUKpoLWhqwNQo/8LwvoiEBLvZXIQ/SmO6mL0= +modernc.org/ccgo/v4 v4.32.0 h1:hjG66bI/kqIPX1b2yT6fr/jt+QedtP2fqojG2VrFuVw= +modernc.org/ccgo/v4 v4.32.0/go.mod h1:6F08EBCx5uQc38kMGl+0Nm0oWczoo1c7cgpzEry7Uc0= +modernc.org/fileutil v1.4.0 h1:j6ZzNTftVS054gi281TyLjHPp6CPHr2KCxEXjEbD6SM= +modernc.org/fileutil v1.4.0/go.mod h1:EqdKFDxiByqxLk8ozOxObDSfcVOv/54xDs/DUHdvCUU= +modernc.org/gc/v2 v2.6.5 h1:nyqdV8q46KvTpZlsw66kWqwXRHdjIlJOhG6kxiV/9xI= +modernc.org/gc/v2 v2.6.5/go.mod h1:YgIahr1ypgfe7chRuJi2gD7DBQiKSLMPgBQe9oIiito= +modernc.org/gc/v3 v3.1.2 h1:ZtDCnhonXSZexk/AYsegNRV1lJGgaNZJuKjJSWKyEqo= +modernc.org/gc/v3 v3.1.2/go.mod h1:HFK/6AGESC7Ex+EZJhJ2Gni6cTaYpSMmU/cT9RmlfYY= +modernc.org/goabi0 v0.2.0 h1:HvEowk7LxcPd0eq6mVOAEMai46V+i7Jrj13t4AzuNks= +modernc.org/goabi0 v0.2.0/go.mod h1:CEFRnnJhKvWT1c1JTI3Avm+tgOWbkOu5oPA8eH8LnMI= +modernc.org/libc v1.70.0 h1:U58NawXqXbgpZ/dcdS9kMshu08aiA6b7gusEusqzNkw= +modernc.org/libc v1.70.0/go.mod h1:OVmxFGP1CI/Z4L3E0Q3Mf1PDE0BucwMkcXjjLntvHJo= +modernc.org/mathutil v1.7.1 h1:GCZVGXdaN8gTqB1Mf/usp1Y/hSqgI2vAGGP4jZMCxOU= +modernc.org/mathutil v1.7.1/go.mod h1:4p5IwJITfppl0G4sUEDtCr4DthTaT47/N3aT6MhfgJg= +modernc.org/memory v1.11.0 h1:o4QC8aMQzmcwCK3t3Ux/ZHmwFPzE6hf2Y5LbkRs+hbI= +modernc.org/memory v1.11.0/go.mod h1:/JP4VbVC+K5sU2wZi9bHoq2MAkCnrt2r98UGeSK7Mjw= +modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8= +modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns= +modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w= +modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE= +modernc.org/sqlite v1.47.0 h1:R1XyaNpoW4Et9yly+I2EeX7pBza/w+pmYee/0HJDyKk= +modernc.org/sqlite v1.47.0/go.mod h1:hWjRO6Tj/5Ik8ieqxQybiEOUXy0NJFNp2tpvVpKlvig= +modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0= +modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A= +modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= diff --git a/back/main.go b/back/main.go new file mode 100644 index 0000000..0485143 --- /dev/null +++ b/back/main.go @@ -0,0 +1,123 @@ +package main + +import ( + "database/sql" + "fmt" + "net/http" + "strconv" + + "github.com/bulgadev/clipi/back/utils" + "github.com/gin-gonic/gin" +) + +func main() { + fmt.Println("Clipi Backend is running!") + + // Initialize the database connection so that db endpoints can use it + utils.ConnectDB() + defer utils.CloseDB() + + r := gin.Default() + + // Add manual CORS middleware to prevent native fetch crashes + r.Use(func(c *gin.Context) { + c.Writer.Header().Set("Access-Control-Allow-Origin", "*") + c.Writer.Header().Set("Access-Control-Allow-Credentials", "true") + c.Writer.Header().Set("Access-Control-Allow-Headers", "Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With") + c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, OPTIONS, GET, PUT, DELETE") + + if c.Request.Method == "OPTIONS" { + c.AbortWithStatus(204) + return + } + c.Next() + }) + + //Variable structure + type ClipModel struct { + ID int `json:"id"` + DeviceIp string `json:"deviceIp"` + DeviceName string `json:"deviceName"` + DeviceUUID string `json:"deviceUUID"` //If none, null + Content string `json:"content"` + Date string `json:"date"` + Type string `json:"type"` //Default text + } + + /* + Hosting Api + */ + + //Will receive notes, parse them, and put them in sqlite as in the struct + // Changed to POST to listen for frontend posts and save valid clips to SQLite + r.POST("/ClipHost", func(c *gin.Context) { + var clip ClipModel + // Validate incoming variables against ClipModel struct + if err := c.ShouldBindJSON(&clip); err != nil { + c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()}) + return + } + + id, err := utils.AddNote(clip.DeviceIp, clip.DeviceName, clip.DeviceUUID, clip.Content, clip.Type) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to add note to db", "details": err.Error()}) + return + } + + c.JSON(http.StatusOK, gin.H{"message": "Clip received and saved", "id": id}) + }) + + /* + Client Api + */ + + // Fetches notes with optional amount, offset, and always returns totalCount for pagination. + // Both MainPage (amount=3) and NotesPage (amount=50&offset=N) rely on this endpoint. + r.GET("/ClipsFetch", func(c *gin.Context) { + amountStr := c.DefaultQuery("amount", "0") + amount, _ := strconv.Atoi(amountStr) + offsetStr := c.DefaultQuery("offset", "0") + offset, _ := strconv.Atoi(offsetStr) + + totalCount, err := utils.CountNotes() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to count clips"}) + return + } + + var rows *sql.Rows + if amount > 0 { + rows, err = utils.DB.Query("SELECT id, device_ip, device_name, device_uuid, content, date, type FROM clips ORDER BY date DESC LIMIT ? OFFSET ?", amount, offset) + } else { + rows, err = utils.FetchNotes() + } + + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to fetch clips from db"}) + return + } + defer rows.Close() + + clips := make([]ClipModel, 0) + for rows.Next() { + var clip ClipModel + var deviceUUID sql.NullString + + // Used sql.NullString for DeviceUUID as per the struct's comment that it might be null + if err := rows.Scan(&clip.ID, &clip.DeviceIp, &clip.DeviceName, &deviceUUID, &clip.Content, &clip.Date, &clip.Type); err != nil { + fmt.Printf("Error scanning clip row: %v\n", err) + continue + } + + if deviceUUID.Valid { + clip.DeviceUUID = deviceUUID.String + } + + clips = append(clips, clip) + } + + c.JSON(http.StatusOK, gin.H{"clips": clips, "totalCount": totalCount}) + }) + + r.Run("0.0.0.0:50050") +} diff --git a/back/mobile-sources.jar b/back/mobile-sources.jar new file mode 100644 index 0000000..e578aec Binary files /dev/null and b/back/mobile-sources.jar differ diff --git a/back/mobile.aar b/back/mobile.aar new file mode 100644 index 0000000..d4d51d3 Binary files /dev/null and b/back/mobile.aar differ diff --git a/back/mobile/mobile.go b/back/mobile/mobile.go new file mode 100644 index 0000000..86b8359 --- /dev/null +++ b/back/mobile/mobile.go @@ -0,0 +1,85 @@ +// Vibecoded, and not checked, cuz Im kinda to lazy to do it, but it should work, if not, well, you know what to do, fix it and send a PR, or just tell me about it, and I will fix it, but yeah, enjoy the code, and if you have any questions, feel free to ask me, I will be happy to help you, and if you want to contribute to the project, feel free to do so, I will be happy to review your PRs and merge them if they are good enough, but yeah, enjoy the code and have fun! +package mobile + +import ( + "encoding/json" + "fmt" + + "github.com/bulgadev/clipi/back/utils" +) + +// Clip is a simplified representation of a clip for JSON marshalling +type Clip struct { + ID int64 `json:"id"` + DeviceIP string `json:"device_ip"` + DeviceName string `json:"device_name"` + DeviceUUID string `json:"device_uuid"` + Content string `json:"content"` + Date string `json:"date"` + Type string `json:"type"` +} + +func init() { + // initialize DB when the package is loaded + // Default DB path (can be overridden by calling InitDB) + utils.ConnectDB() +} + +// InitDB allows setting a custom database file path (useful on mobile platforms). +func InitDB(path string) error { + return utils.ConnectDBPath(path) +} + +// AddNoteMobile wraps utils.AddNote and returns the inserted ID +func AddNoteMobile(deviceIp, deviceName, deviceUuid, content, clipType string) (int64, error) { + return utils.AddNote(deviceIp, deviceName, deviceUuid, content, clipType) +} + +// FetchNotesJSON returns notes as a JSON string. Pass limit=0 for no limit. +func FetchNotesJSON(limit, offset int) (string, error) { + query := "SELECT id, device_ip, device_name, device_uuid, content, date, type FROM clips ORDER BY date DESC" + if limit > 0 { + query = fmt.Sprintf("%s LIMIT %d OFFSET %d", query, limit, offset) + } + + rows, err := utils.DB.Query(query) + if err != nil { + return "", err + } + defer rows.Close() + + var clips []Clip + + for rows.Next() { + var c Clip + var id int64 + var deviceIP, deviceName, deviceUUID, content, date, ctype string + if err := rows.Scan(&id, &deviceIP, &deviceName, &deviceUUID, &content, &date, &ctype); err != nil { + return "", err + } + c.ID = id + c.DeviceIP = deviceIP + c.DeviceName = deviceName + c.DeviceUUID = deviceUUID + c.Content = content + c.Date = date + c.Type = ctype + clips = append(clips, c) + } + + b, err := json.Marshal(clips) + if err != nil { + return "", err + } + return string(b), nil +} + +// RemoveNoteMobile removes a note by id +func RemoveNoteMobile(id int64) error { + return utils.RemoveNote(int(id)) +} + +// CountNotesMobile returns the total number of notes +func CountNotesMobile() (int, error) { + return utils.CountNotes() +} diff --git a/back/tools.go b/back/tools.go new file mode 100644 index 0000000..90cd3e4 --- /dev/null +++ b/back/tools.go @@ -0,0 +1,10 @@ +//go:build tools +// +build tools + +package tools + +import ( + _ "golang.org/x/mobile/bind" + _ "golang.org/x/mobile/cmd/gobind" + _ "golang.org/x/mobile/cmd/gomobile" +) diff --git a/back/utils/db.go b/back/utils/db.go new file mode 100644 index 0000000..c7f5c71 --- /dev/null +++ b/back/utils/db.go @@ -0,0 +1,102 @@ +package utils + +import ( + "database/sql" + "log" + + _ "modernc.org/sqlite" +) + +// DB holds the open database connection pool that is safe for concurrent use +var DB *sql.DB + +// ConnectDB initializes the database connection and creates required tables +func ConnectDB() { + if err := ConnectDBPath("notes.db"); err != nil { + log.Fatalf("Failed to open database: %v", err) + } +} + +// ConnectDBPath initializes the database connection using the provided path. +// This is useful for mobile platforms where the app decides the DB file location. +func ConnectDBPath(path string) error { + var err error + if DB != nil { + _ = DB.Close() + } + + DB, err = sql.Open("sqlite", path) + if err != nil { + return err + } + + // Create tables if they don't exist + createTableQuery := ` + CREATE TABLE IF NOT EXISTS clips ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + device_ip TEXT, + device_name TEXT, + device_uuid TEXT, + content TEXT, + date DATETIME DEFAULT CURRENT_TIMESTAMP, + type TEXT DEFAULT 'text' + );` + + _, err = DB.Exec(createTableQuery) + if err != nil { + // Log, but return the error to caller + log.Printf("Error creating notes table: %v\n", err) + return err + } + return nil +} + +// CloseDB gracefully closes the database connection +func CloseDB() error { + if DB != nil { + return DB.Close() + } + return nil +} + +// AddNote inserts a new note into the database for a user and returns its ID +// Updated AddNote to accept all relevant ClipModel variables instead of just user and content +func AddNote(deviceIp, deviceName, deviceUuid, content, clipType string) (int64, error) { + stmt, err := DB.Prepare("INSERT INTO clips(device_ip, device_name, device_uuid, content, type) VALUES(?, ?, ?, ?, ?)") + if err != nil { + return 0, err + } + defer stmt.Close() + + res, err := stmt.Exec(deviceIp, deviceName, deviceUuid, content, clipType) + if err != nil { + return 0, err + } + + return res.LastInsertId() +} + +// FetchNotes retrieves all notes ordered by date descending +// Updated FetchNotes so it explicitly returns the new columns as well +func FetchNotes() (*sql.Rows, error) { + return DB.Query("SELECT id, device_ip, device_name, device_uuid, content, date, type FROM clips ORDER BY date DESC") +} + +// CountNotes returns the total number of clips in the database +func CountNotes() (int, error) { + var count int + err := DB.QueryRow("SELECT COUNT(*) FROM clips").Scan(&count) + return count, err +} + +// RemoveNote deletes a note by ID +func RemoveNote(id int) error { + stmt, err := DB.Prepare("DELETE FROM clips WHERE id = ?") + if err != nil { + return err + } + defer stmt.Close() + + _, err = stmt.Exec(id) + return err +} diff --git a/clipiFront b/clipiFront new file mode 160000 index 0000000..d667949 --- /dev/null +++ b/clipiFront @@ -0,0 +1 @@ +Subproject commit d667949c7327cc45d40337eb19e8dd726d3ec122 diff --git a/clipiFrontC/clipiFrontC.sln b/clipiFrontC/clipiFrontC.sln new file mode 100644 index 0000000..eeaad3c --- /dev/null +++ b/clipiFrontC/clipiFrontC.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.37111.16 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "clipiFrontC", "clipiFrontC\clipiFrontC.csproj", "{9366753F-2FDD-4D63-BA2E-F17A062560CA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9366753F-2FDD-4D63-BA2E-F17A062560CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9366753F-2FDD-4D63-BA2E-F17A062560CA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9366753F-2FDD-4D63-BA2E-F17A062560CA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9366753F-2FDD-4D63-BA2E-F17A062560CA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {54D04D71-2925-404F-8EB5-DD85262C6883} + EndGlobalSection +EndGlobal diff --git a/clipiFrontC/clipiFrontC/App.xaml b/clipiFrontC/clipiFrontC/App.xaml new file mode 100644 index 0000000..c21ac5b --- /dev/null +++ b/clipiFrontC/clipiFrontC/App.xaml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/App.xaml.cs b/clipiFrontC/clipiFrontC/App.xaml.cs new file mode 100644 index 0000000..5b96368 --- /dev/null +++ b/clipiFrontC/clipiFrontC/App.xaml.cs @@ -0,0 +1,15 @@ +namespace clipiFrontC +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new MainPage()) { Title = "clipiFrontC" }; + } + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor b/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..24c835d --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor @@ -0,0 +1,19 @@ +@inherits LayoutComponentBase + +
+ + +
+ + +
+ @Body +
+
+
diff --git a/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor.css b/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor.css new file mode 100644 index 0000000..3ce6c29 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Layout/MainLayout.razor.css @@ -0,0 +1,78 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, #0d2e49 0%, #11466a 70%); +} + +.top-row { + background-color: #f8fbff; + border-bottom: 1px solid #d3ddeb; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: none; + color: #0d6c9f; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor b/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor new file mode 100644 index 0000000..43f6e42 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor @@ -0,0 +1,27 @@ + + + + + diff --git a/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor.css b/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor.css new file mode 100644 index 0000000..711f100 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Layout/NavMenu.razor.css @@ -0,0 +1,101 @@ +.navbar-toggler { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + + .navbar-toggler:checked { + background-color: rgba(255, 255, 255, 0.5); + } + +.top-row { + height: 3.5rem; + background-color: rgba(5, 22, 34, 0.45); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.bi { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-send-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-send-fill' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.09 6.198a.5.5 0 0 0 .034.944l5.17 1.725 1.725 5.17a.5.5 0 0 0 .944.034L15.964.686z'/%3E%3C/svg%3E"); +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + + .nav-item ::deep a.active { + background-color: rgba(255,255,255,0.37); + color: white; + } + + .nav-item ::deep a:hover { + background-color: rgba(255,255,255,0.1); + color: white; + } + +.nav-scrollable { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .nav-scrollable { + /* Never collapse the sidebar for wide screens */ + display: block; + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/Counter.razor b/clipiFrontC/clipiFrontC/Components/Pages/Counter.razor new file mode 100644 index 0000000..6324ad0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/Counter.razor @@ -0,0 +1,16 @@ +@page "/counter" + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/Home.razor b/clipiFrontC/clipiFrontC/Components/Pages/Home.razor new file mode 100644 index 0000000..51e2428 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/Home.razor @@ -0,0 +1,215 @@ +@page "/" +@implements IAsyncDisposable +@inject ClipApiService ClipApi +@inject FavoriteDevicesService FavoriteDevices +@inject DeviceNetworkService DeviceNetwork +@inject NavigationManager Navigation + +Clipi + +
+
+
+

Fast Share

+
+

Send clipboard to favorite devices

+ +
+ + + +
+ + @if (!string.IsNullOrWhiteSpace(favoritesError)) + { +

@favoritesError

+ } + +
+ @foreach (var device in favoriteDevices) + { +
+
+
@device.Name
+ @if (!string.IsNullOrWhiteSpace(device.Address)) + { +
@device.Address
+ } +
+ +
+ } +
+
+ +
+
+

Latest Notes

+ +
+ + @if (isLoadingLatest) + { +

Loading your latest clips...

+ } + else if (!string.IsNullOrWhiteSpace(latestError)) + { +

@latestError

+ } + else if (latestClips.Count == 0) + { +

No notes available yet.

+ } + else + { +
+ @foreach (var clip in latestClips) + { + + } +
+ } +
+ + +
+ +@code { + private readonly List latestClips = new(); + private List favoriteDevices = new(); + private PeriodicTimer? refreshTimer; + private CancellationTokenSource? refreshCts; + + private bool isLoadingLatest = true; + private string? latestError; + private string? favoritesError; + private string localIp = "Loading..."; + private string newDeviceName = string.Empty; + private string newDeviceAddress = string.Empty; + + protected override async Task OnInitializedAsync() + { + favoriteDevices = await FavoriteDevices.GetFavoritesAsync(); + localIp = await DeviceNetwork.GetLocalIpv4Async(); + + await LoadLatestAsync(showLoading: true); + + refreshCts = new CancellationTokenSource(); + refreshTimer = new PeriodicTimer(TimeSpan.FromSeconds(15)); + _ = RunRefreshLoopAsync(refreshCts.Token); + } + + private async Task RunRefreshLoopAsync(CancellationToken cancellationToken) + { + if (refreshTimer is null) + { + return; + } + + try + { + while (await refreshTimer.WaitForNextTickAsync(cancellationToken)) + { + await LoadLatestAsync(showLoading: false); + await InvokeAsync(StateHasChanged); + } + } + catch (OperationCanceledException) + { + // Expected when page is disposed. + } + } + + private async Task RefreshLatestAsync() + { + await LoadLatestAsync(showLoading: true); + } + + private async Task LoadLatestAsync(bool showLoading) + { + if (showLoading) + { + isLoadingLatest = true; + } + + latestError = null; + + try + { + var response = await ClipApi.FetchClipsAsync(amount: 3); + latestClips.Clear(); + latestClips.AddRange(response.Clips); + } + catch + { + latestError = "Could not reach backend. Is it running?"; + } + finally + { + if (showLoading) + { + isLoadingLatest = false; + } + } + } + + private async Task AddFavoriteAsync() + { + favoritesError = null; + var name = (newDeviceName ?? string.Empty).Trim(); + var address = (newDeviceAddress ?? string.Empty).Trim(); + + if (string.IsNullOrWhiteSpace(name)) + { + favoritesError = "Device name is required."; + return; + } + + favoriteDevices.Add(new FavoriteDevice + { + Name = name, + Address = address + }); + + await FavoriteDevices.SaveFavoritesAsync(favoriteDevices); + newDeviceName = string.Empty; + newDeviceAddress = string.Empty; + } + + private async Task RemoveFavoriteAsync(string id) + { + favoriteDevices = favoriteDevices.Where(x => x.Id != id).ToList(); + await FavoriteDevices.SaveFavoritesAsync(favoriteDevices); + } + + private void OpenNote(int noteId) + { + Navigation.NavigateTo($"/notes/{noteId}"); + } + + private static string DateLabel(ClipModel clip) + { + return string.IsNullOrWhiteSpace(clip.Date) ? "Unknown date" : clip.Date; + } + + public ValueTask DisposeAsync() + { + if (refreshCts is not null) + { + refreshCts.Cancel(); + refreshCts.Dispose(); + } + + refreshTimer?.Dispose(); + return ValueTask.CompletedTask; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/NoteDetail.razor b/clipiFrontC/clipiFrontC/Components/Pages/NoteDetail.razor new file mode 100644 index 0000000..6df8a8d --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/NoteDetail.razor @@ -0,0 +1,120 @@ +@page "/notes/{NoteId:int}" +@inject ClipApiService ClipApi +@inject NavigationManager Navigation + +Note Detail + +
+
+
+

Note Visualizer

+ +
+ + @if (isLoading) + { +

Loading note...

+ } + else if (!string.IsNullOrWhiteSpace(error)) + { +

@error

+ } + else if (note is null) + { +

Note not found.

+ } + else + { +
+
@(string.IsNullOrWhiteSpace(note.Content) ? "(No content)" : note.Content)
+
+ +
+ Id: @note.Id + Time: @DateLabel(note.Date) + @if (!string.IsNullOrWhiteSpace(note.DeviceName) || !string.IsNullOrWhiteSpace(note.DeviceIp)) + { + Source: @SourceLabel(note) + } +
+ } +
+
+ +@code { + [Parameter] + public int NoteId { get; set; } + + [SupplyParameterFromQuery(Name = "q")] + public string? Q { get; set; } + + [SupplyParameterFromQuery(Name = "page")] + public int? Page { get; set; } + + private ClipModel? note; + private bool isLoading = true; + private string? error; + + protected override async Task OnInitializedAsync() + { + await LoadNoteAsync(); + } + + private async Task LoadNoteAsync() + { + isLoading = true; + error = null; + + try + { + var response = await ClipApi.FetchClipsAsync(amount: 0, offset: 0); + note = response.Clips.FirstOrDefault(c => c.Id == NoteId); + } + catch + { + error = "Could not reach backend. Is it running?"; + } + finally + { + isLoading = false; + } + } + + private void GoBack() + { + var queryParts = new List(); + + if (!string.IsNullOrWhiteSpace(Q)) + { + queryParts.Add($"q={Uri.EscapeDataString(Q)}"); + } + + if (Page is > 0) + { + queryParts.Add($"page={Page.Value}"); + } + + var query = queryParts.Count > 0 ? $"?{string.Join("&", queryParts)}" : string.Empty; + Navigation.NavigateTo($"/notes{query}"); + } + + private static string DateLabel(string? date) + { + return string.IsNullOrWhiteSpace(date) ? "Unknown date" : date; + } + + private static string SourceLabel(ClipModel clip) + { + if (!string.IsNullOrWhiteSpace(clip.DeviceName) && !string.IsNullOrWhiteSpace(clip.DeviceIp)) + { + return $"{clip.DeviceName} ({clip.DeviceIp})"; + } + + if (!string.IsNullOrWhiteSpace(clip.DeviceName)) + { + return clip.DeviceName; + } + + return clip.DeviceIp; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/Notes.razor b/clipiFrontC/clipiFrontC/Components/Pages/Notes.razor new file mode 100644 index 0000000..631fd63 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/Notes.razor @@ -0,0 +1,203 @@ +@page "/notes" +@inject ClipApiService ClipApi +@inject NavigationManager Navigation + +Notes + +
+
+
+

Notes

+ +
+ +

Browse clips from the backend and filter by content or device.

+ +
+ + @if (!string.IsNullOrWhiteSpace(searchText)) + { + + } +
+ + @if (isLoading) + { +

Loading notes...

+ } + else if (!string.IsNullOrWhiteSpace(error)) + { +

@error

+ } + else if (visibleNotes.Count == 0) + { +

No notes found.

+ } + else + { +
+ @foreach (var note in visibleNotes) + { + + } +
+ +
+ + Page @currentPage of @TotalPages + +
+ } +
+
+ +@code { + private const int PageSize = 50; + + private readonly List visibleNotes = new(); + private List allSearchMatches = new(); + + private int currentPage = 1; + private int totalCount; + private bool isLoading = true; + private string? error; + private string searchText = string.Empty; + + [SupplyParameterFromQuery(Name = "q")] + public string? Q { get; set; } + + [SupplyParameterFromQuery(Name = "page")] + public int? Page { get; set; } + + private int TotalPages => Math.Max(1, (int)Math.Ceiling(totalCount / (double)PageSize)); + + protected override async Task OnInitializedAsync() + { + if (!string.IsNullOrWhiteSpace(Q)) + { + searchText = Q; + } + + if (Page is > 0) + { + currentPage = Page.Value; + } + + await LoadNotesAsync(resetPage: false); + } + + private async Task RefreshAsync() + { + await LoadNotesAsync(resetPage: false); + } + + private async Task LoadNotesAsync(bool resetPage) + { + if (resetPage) + { + currentPage = 1; + } + + isLoading = true; + error = null; + + try + { + if (string.IsNullOrWhiteSpace(searchText)) + { + var offset = (currentPage - 1) * PageSize; + var response = await ClipApi.FetchClipsAsync(amount: PageSize, offset: offset); + visibleNotes.Clear(); + visibleNotes.AddRange(response.Clips); + totalCount = response.TotalCount; + allSearchMatches.Clear(); + } + else + { + var response = await ClipApi.FetchClipsAsync(amount: 0, offset: 0); + var needle = searchText.Trim(); + + allSearchMatches = response.Clips + .Where(c => + Contains(c.Content, needle) || + Contains(c.DeviceName, needle) || + Contains(c.DeviceIp, needle)) + .ToList(); + + totalCount = allSearchMatches.Count; + currentPage = Math.Clamp(currentPage, 1, Math.Max(1, (int)Math.Ceiling(totalCount / (double)PageSize))); + var offset = (currentPage - 1) * PageSize; + visibleNotes.Clear(); + visibleNotes.AddRange(allSearchMatches.Skip(offset).Take(PageSize)); + } + } + catch + { + error = "Could not reach backend. Is it running?"; + } + finally + { + isLoading = false; + } + } + + private async Task OnSearchInput() + { + currentPage = 1; + await LoadNotesAsync(resetPage: false); + } + + private async Task ClearSearch() + { + searchText = string.Empty; + await LoadNotesAsync(resetPage: true); + } + + private async Task PrevPage() + { + if (currentPage <= 1) + { + return; + } + + currentPage--; + await LoadNotesAsync(resetPage: false); + } + + private async Task NextPage() + { + if (currentPage >= TotalPages) + { + return; + } + + currentPage++; + await LoadNotesAsync(resetPage: false); + } + + private void OpenNote(int noteId) + { + var query = string.IsNullOrWhiteSpace(searchText) + ? string.Empty + : $"?q={Uri.EscapeDataString(searchText)}&page={currentPage}"; + Navigation.NavigateTo($"/notes/{noteId}{query}"); + } + + private static bool Contains(string? source, string query) + { + return !string.IsNullOrWhiteSpace(source) && source.Contains(query, StringComparison.OrdinalIgnoreCase); + } + + private static string DateLabel(ClipModel clip) + { + return string.IsNullOrWhiteSpace(clip.Date) ? "Unknown date" : clip.Date; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/Send.razor b/clipiFrontC/clipiFrontC/Components/Pages/Send.razor new file mode 100644 index 0000000..b94f0ec --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/Send.razor @@ -0,0 +1,303 @@ +@page "/send" +@inject ClipApiService ClipApi +@inject DeviceNetworkService DeviceNetwork +@inject FavoriteDevicesService FavoriteDevices + +Send Note + +
+
+
+

Send Note

+
+

Send a note to any reachable Clipi backend on your local network.

+ +
+
+ + +

Leave empty to use the app backend URL. Host-only values default to http and port 50050.

+
+ + @if (favoriteTargets.Count > 0) + { +
+

Quick targets

+
+ @foreach (var favorite in favoriteTargets) + { + + } +
+
+ } + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+ + @ContentLineCount lines, @content.Length chars +
+ + +
+ + + + +
+
+
+ +
+ + +
+ + @if (!string.IsNullOrWhiteSpace(statusMessage)) + { +

@statusMessage

+ } + + @if (!string.IsNullOrWhiteSpace(lastTargetBaseUrl)) + { +

Last send target: @lastTargetBaseUrl/ClipHost

+ } +
+ +
+

Preview

+ @if (string.IsNullOrWhiteSpace(content)) + { +

Type content to preview how line breaks are sent.

+ } + else + { +
+
@content
+
+ } +
+
+ +@code { + private readonly List favoriteTargets = new(); + + private string targetHost = string.Empty; + private string deviceIp = string.Empty; + private string deviceName = string.Empty; + private string deviceUuid = string.Empty; + private string clipType = "text"; + private string content = string.Empty; + + private bool isSending; + private bool isError; + private string? statusMessage; + private string? lastTargetBaseUrl; + + private int ContentLineCount => string.IsNullOrEmpty(content) + ? 0 + : content.Split(new[] { "\r\n", "\n" }, StringSplitOptions.None).Length; + + protected override async Task OnInitializedAsync() + { + await ResetSenderToLocalAsync(); + + var favorites = await FavoriteDevices.GetFavoritesAsync(); + favoriteTargets.AddRange(favorites.Where(x => !string.IsNullOrWhiteSpace(x.Address))); + } + + private async Task ResetSenderToLocalAsync() + { + deviceIp = await DeviceNetwork.GetLocalIpv4Async(); + deviceName = DeviceInfo.Name; + } + + private void UseFavoriteTarget(string? address) + { + if (!string.IsNullOrWhiteSpace(address)) + { + targetHost = address.Trim(); + } + } + + private void InsertLineBreak() + { + content += Environment.NewLine; + } + + private void InsertTimestamp() + { + var stamp = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); + if (!string.IsNullOrEmpty(content) && !content.EndsWith(Environment.NewLine, StringComparison.Ordinal)) + { + content += Environment.NewLine; + } + + content += $"[{stamp}] "; + } + + private async Task PasteFromClipboardAsync() + { + try + { + var clipText = await Clipboard.Default.GetTextAsync(); + if (!string.IsNullOrEmpty(clipText)) + { + content += clipText; + } + } + catch + { + isError = true; + statusMessage = "Clipboard access failed on this platform."; + } + } + + private void ClearContent() + { + content = string.Empty; + } + + private async Task SendAsync() + { + statusMessage = null; + isError = false; + + var validationError = ValidateInputs(); + if (!string.IsNullOrWhiteSpace(validationError)) + { + isError = true; + statusMessage = validationError; + return; + } + + if (!TryResolveTargetBaseUrl(targetHost, out var resolvedTargetBaseUrl, out var endpointError)) + { + isError = true; + statusMessage = endpointError; + return; + } + + var clip = new ClipModel + { + DeviceIp = deviceIp.Trim(), + DeviceName = deviceName.Trim(), + DeviceUuid = string.IsNullOrWhiteSpace(deviceUuid) ? null : deviceUuid.Trim(), + Content = content, + Type = string.IsNullOrWhiteSpace(clipType) ? "text" : clipType.Trim() + }; + + isSending = true; + + try + { + var id = await ClipApi.HostClipAsync(clip, resolvedTargetBaseUrl); + isError = false; + statusMessage = id > 0 + ? $"Note sent successfully. Saved with id {id}." + : "Note sent successfully."; + lastTargetBaseUrl = string.IsNullOrWhiteSpace(resolvedTargetBaseUrl) ? "(default backend)" : resolvedTargetBaseUrl; + } + catch + { + isError = true; + statusMessage = "Could not send note. Check target host, backend availability, and local network access."; + } + finally + { + isSending = false; + } + } + + private string? ValidateInputs() + { + if (string.IsNullOrWhiteSpace(deviceIp)) + { + return "Sender device IP is required."; + } + + if (string.IsNullOrWhiteSpace(deviceName)) + { + return "Sender device name is required."; + } + + if (string.IsNullOrWhiteSpace(content)) + { + return "Note content is required."; + } + + return null; + } + + private static bool TryResolveTargetBaseUrl(string rawTargetHost, out string resolvedBaseUrl, out string? error) + { + resolvedBaseUrl = string.Empty; + error = null; + + var candidate = (rawTargetHost ?? string.Empty).Trim(); + if (string.IsNullOrWhiteSpace(candidate)) + { + return true; + } + + if (candidate.StartsWith("http://", StringComparison.OrdinalIgnoreCase) || + candidate.StartsWith("https://", StringComparison.OrdinalIgnoreCase)) + { + if (!Uri.TryCreate(candidate, UriKind.Absolute, out var absoluteUri)) + { + error = "Target backend host is not a valid URL."; + return false; + } + + var withPort = new UriBuilder(absoluteUri) + { + Path = string.Empty, + Query = string.Empty, + Fragment = string.Empty, + Port = absoluteUri.IsDefaultPort ? 50050 : absoluteUri.Port + }; + + resolvedBaseUrl = withPort.Uri.GetLeftPart(UriPartial.Authority).TrimEnd('/'); + return true; + } + + if (!Uri.TryCreate($"http://{candidate}", UriKind.Absolute, out var hostUri)) + { + error = "Target backend host must be a local IP, host name, or full URL."; + return false; + } + + var builder = new UriBuilder(hostUri) + { + Path = string.Empty, + Query = string.Empty, + Fragment = string.Empty, + Port = hostUri.IsDefaultPort ? 50050 : hostUri.Port + }; + + resolvedBaseUrl = builder.Uri.GetLeftPart(UriPartial.Authority).TrimEnd('/'); + return true; + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Pages/Weather.razor b/clipiFrontC/clipiFrontC/Components/Pages/Weather.razor new file mode 100644 index 0000000..472bb98 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Pages/Weather.razor @@ -0,0 +1,61 @@ +@page "/weather" + +

Weather

+ +

This component demonstrates showing data.

+ +@if (forecasts == null) +{ +

Loading...

+} +else +{ + + + + + + + + + + + @foreach (var forecast in forecasts) + { + + + + + + + } + +
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
+} + +@code { + private WeatherForecast[]? forecasts; + + protected override async Task OnInitializedAsync() + { + // Simulate asynchronous loading to demonstrate a loading indicator + await Task.Delay(500); + + var startDate = DateOnly.FromDateTime(DateTime.Now); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; + forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = summaries[Random.Shared.Next(summaries.Length)] + }).ToArray(); + } + + private class WeatherForecast + { + public DateOnly Date { get; set; } + public int TemperatureC { get; set; } + public string? Summary { get; set; } + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + } +} diff --git a/clipiFrontC/clipiFrontC/Components/Routes.razor b/clipiFrontC/clipiFrontC/Components/Routes.razor new file mode 100644 index 0000000..631cf80 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/clipiFrontC/clipiFrontC/Components/_Imports.razor b/clipiFrontC/clipiFrontC/Components/_Imports.razor new file mode 100644 index 0000000..37bae43 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Components/_Imports.razor @@ -0,0 +1,11 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using clipiFrontC +@using clipiFrontC.Components +@using clipiFrontC.Models +@using clipiFrontC.Services diff --git a/clipiFrontC/clipiFrontC/MainPage.xaml b/clipiFrontC/clipiFrontC/MainPage.xaml new file mode 100644 index 0000000..17f31ef --- /dev/null +++ b/clipiFrontC/clipiFrontC/MainPage.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/MainPage.xaml.cs b/clipiFrontC/clipiFrontC/MainPage.xaml.cs new file mode 100644 index 0000000..0bff693 --- /dev/null +++ b/clipiFrontC/clipiFrontC/MainPage.xaml.cs @@ -0,0 +1,10 @@ +namespace clipiFrontC +{ + public partial class MainPage : ContentPage + { + public MainPage() + { + InitializeComponent(); + } + } +} diff --git a/clipiFrontC/clipiFrontC/MauiProgram.cs b/clipiFrontC/clipiFrontC/MauiProgram.cs new file mode 100644 index 0000000..9c919fc --- /dev/null +++ b/clipiFrontC/clipiFrontC/MauiProgram.cs @@ -0,0 +1,32 @@ +using Microsoft.Extensions.Logging; +using clipiFrontC.Services; + +namespace clipiFrontC +{ + public static class MauiProgram + { + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder + .UseMauiApp() + .ConfigureFonts(fonts => + { + fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); + }); + + builder.Services.AddMauiBlazorWebView(); + builder.Services.AddSingleton(); + builder.Services.AddSingleton(); + builder.Services.AddSingleton(); + builder.Services.AddScoped(); + +#if DEBUG + builder.Services.AddBlazorWebViewDeveloperTools(); + builder.Logging.AddDebug(); +#endif + + return builder.Build(); + } + } +} diff --git a/clipiFrontC/clipiFrontC/Models/ClipModels.cs b/clipiFrontC/clipiFrontC/Models/ClipModels.cs new file mode 100644 index 0000000..54a7f05 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Models/ClipModels.cs @@ -0,0 +1,36 @@ +using System.Text.Json.Serialization; + +namespace clipiFrontC.Models; + +public sealed class ClipModel +{ + [JsonPropertyName("id")] + public int Id { get; set; } + + [JsonPropertyName("deviceIp")] + public string DeviceIp { get; set; } = string.Empty; + + [JsonPropertyName("deviceName")] + public string DeviceName { get; set; } = string.Empty; + + [JsonPropertyName("deviceUUID")] + public string? DeviceUuid { get; set; } + + [JsonPropertyName("content")] + public string Content { get; set; } = string.Empty; + + [JsonPropertyName("date")] + public string Date { get; set; } = string.Empty; + + [JsonPropertyName("type")] + public string Type { get; set; } = "text"; +} + +public sealed class ClipsFetchResponse +{ + [JsonPropertyName("clips")] + public List Clips { get; set; } = new(); + + [JsonPropertyName("totalCount")] + public int TotalCount { get; set; } +} diff --git a/clipiFrontC/clipiFrontC/Models/FavoriteDevice.cs b/clipiFrontC/clipiFrontC/Models/FavoriteDevice.cs new file mode 100644 index 0000000..d66436f --- /dev/null +++ b/clipiFrontC/clipiFrontC/Models/FavoriteDevice.cs @@ -0,0 +1,8 @@ +namespace clipiFrontC.Models; + +public sealed class FavoriteDevice +{ + public string Id { get; set; } = Guid.NewGuid().ToString("N"); + public string Name { get; set; } = string.Empty; + public string Address { get; set; } = string.Empty; +} diff --git a/clipiFrontC/clipiFrontC/Platforms/Android/AndroidManifest.xml b/clipiFrontC/clipiFrontC/Platforms/Android/AndroidManifest.xml new file mode 100644 index 0000000..dbf9e7e --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Android/AndroidManifest.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Platforms/Android/MainActivity.cs b/clipiFrontC/clipiFrontC/Platforms/Android/MainActivity.cs new file mode 100644 index 0000000..298559a --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Android/MainActivity.cs @@ -0,0 +1,11 @@ +using Android.App; +using Android.Content.PM; +using Android.OS; + +namespace clipiFrontC +{ + [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] + public class MainActivity : MauiAppCompatActivity + { + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/Android/MainApplication.cs b/clipiFrontC/clipiFrontC/Platforms/Android/MainApplication.cs new file mode 100644 index 0000000..1b3785b --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Android/MainApplication.cs @@ -0,0 +1,16 @@ +using Android.App; +using Android.Runtime; + +namespace clipiFrontC +{ + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/Android/Resources/values/colors.xml b/clipiFrontC/clipiFrontC/Platforms/Android/Resources/values/colors.xml new file mode 100644 index 0000000..c04d749 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Android/Resources/values/colors.xml @@ -0,0 +1,6 @@ + + + #512BD4 + #2B0B98 + #2B0B98 + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/AppDelegate.cs b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/AppDelegate.cs new file mode 100644 index 0000000..1cd0a8f --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace clipiFrontC +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Entitlements.plist b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Entitlements.plist new file mode 100644 index 0000000..de4adc9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Entitlements.plist @@ -0,0 +1,14 @@ + + + + + + + com.apple.security.app-sandbox + + + com.apple.security.network.client + + + + diff --git a/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Info.plist b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Info.plist new file mode 100644 index 0000000..7b1e6e6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Info.plist @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + UIDeviceFamily + + 2 + + UIRequiredDeviceCapabilities + + arm64 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + XSAppIconAssets + Assets.xcassets/appicon.appiconset + + diff --git a/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Program.cs b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Program.cs new file mode 100644 index 0000000..843bb2c --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/MacCatalyst/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace clipiFrontC +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Platforms/Tizen/Main.cs b/clipiFrontC/clipiFrontC/Platforms/Tizen/Main.cs new file mode 100644 index 0000000..dc0f0c1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Tizen/Main.cs @@ -0,0 +1,17 @@ +using System; +using Microsoft.Maui; +using Microsoft.Maui.Hosting; + +namespace clipiFrontC +{ + internal class Program : MauiApplication + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/Tizen/tizen-manifest.xml b/clipiFrontC/clipiFrontC/Platforms/Tizen/tizen-manifest.xml new file mode 100644 index 0000000..c02c90f --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Tizen/tizen-manifest.xml @@ -0,0 +1,15 @@ + + + + + + maui-appicon-placeholder + + + + + http://tizen.org/privilege/internet + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml b/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml new file mode 100644 index 0000000..22e9482 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml @@ -0,0 +1,8 @@ + + + diff --git a/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml.cs b/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml.cs new file mode 100644 index 0000000..98662f3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Windows/App.xaml.cs @@ -0,0 +1,25 @@ +using Microsoft.UI.Xaml; + +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace clipiFrontC.WinUI +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + public partial class App : MauiWinUIApplication + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } + +} diff --git a/clipiFrontC/clipiFrontC/Platforms/Windows/Package.appxmanifest b/clipiFrontC/clipiFrontC/Platforms/Windows/Package.appxmanifest new file mode 100644 index 0000000..2197e0c --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Windows/Package.appxmanifest @@ -0,0 +1,46 @@ + + + + + + + + + $placeholder$ + User Name + $placeholder$.png + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/Platforms/Windows/app.manifest b/clipiFrontC/clipiFrontC/Platforms/Windows/app.manifest new file mode 100644 index 0000000..0483f8d --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/Windows/app.manifest @@ -0,0 +1,15 @@ + + + + + + + + true/PM + PerMonitorV2, PerMonitor + + + diff --git a/clipiFrontC/clipiFrontC/Platforms/iOS/AppDelegate.cs b/clipiFrontC/clipiFrontC/Platforms/iOS/AppDelegate.cs new file mode 100644 index 0000000..1cd0a8f --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/iOS/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace clipiFrontC +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/iOS/Info.plist b/clipiFrontC/clipiFrontC/Platforms/iOS/Info.plist new file mode 100644 index 0000000..ecb7f71 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/iOS/Info.plist @@ -0,0 +1,32 @@ + + + + + LSRequiresIPhoneOS + + UIDeviceFamily + + 1 + 2 + + UIRequiredDeviceCapabilities + + arm64 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + XSAppIconAssets + Assets.xcassets/appicon.appiconset + + diff --git a/clipiFrontC/clipiFrontC/Platforms/iOS/Program.cs b/clipiFrontC/clipiFrontC/Platforms/iOS/Program.cs new file mode 100644 index 0000000..c77a163 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/iOS/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace clipiFrontC +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} diff --git a/clipiFrontC/clipiFrontC/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/clipiFrontC/clipiFrontC/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..24ab3b4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Platforms/iOS/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,51 @@ + + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + + + + + + diff --git a/clipiFrontC/clipiFrontC/Properties/launchSettings.json b/clipiFrontC/clipiFrontC/Properties/launchSettings.json new file mode 100644 index 0000000..4f85793 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Windows Machine": { + "commandName": "Project", + "nativeDebugging": false + } + } +} \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Resources/AppIcon/appicon.svg b/clipiFrontC/clipiFrontC/Resources/AppIcon/appicon.svg new file mode 100644 index 0000000..9d63b65 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Resources/AppIcon/appicon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Resources/AppIcon/appiconfg.svg b/clipiFrontC/clipiFrontC/Resources/AppIcon/appiconfg.svg new file mode 100644 index 0000000..21dfb25 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Resources/AppIcon/appiconfg.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Resources/Fonts/OpenSans-Regular.ttf b/clipiFrontC/clipiFrontC/Resources/Fonts/OpenSans-Regular.ttf new file mode 100644 index 0000000..bf60ae5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/clipiFrontC/clipiFrontC/Resources/Images/dotnet_bot.svg b/clipiFrontC/clipiFrontC/Resources/Images/dotnet_bot.svg new file mode 100644 index 0000000..abfaff2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Resources/Images/dotnet_bot.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/Resources/Raw/AboutAssets.txt b/clipiFrontC/clipiFrontC/Resources/Raw/AboutAssets.txt new file mode 100644 index 0000000..6de1c15 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Resources/Raw/AboutAssets.txt @@ -0,0 +1,15 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories). Deployment of the asset to your application +is automatically handled by the following `MauiAsset` Build Action within your `.csproj`. + + + +These files will be deployed with your package and will be accessible using Essentials: + + async Task LoadMauiAsset() + { + using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt"); + using var reader = new StreamReader(stream); + + var contents = reader.ReadToEnd(); + } diff --git a/clipiFrontC/clipiFrontC/Resources/Splash/splash.svg b/clipiFrontC/clipiFrontC/Resources/Splash/splash.svg new file mode 100644 index 0000000..21dfb25 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Resources/Splash/splash.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/Services/BackendEndpointResolver.cs b/clipiFrontC/clipiFrontC/Services/BackendEndpointResolver.cs new file mode 100644 index 0000000..ae8a2e7 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Services/BackendEndpointResolver.cs @@ -0,0 +1,21 @@ +using Microsoft.Maui.Devices; +using Microsoft.Maui.Storage; + +namespace clipiFrontC.Services; + +public sealed class BackendEndpointResolver +{ + public const string OverridePreferenceKey = "clipi.backend_url_override"; + + public string GetBaseUrl() + { + var overrideUrl = Preferences.Get(OverridePreferenceKey, string.Empty)?.Trim(); + if (!string.IsNullOrWhiteSpace(overrideUrl)) + { + return overrideUrl.TrimEnd('/'); + } + + var host = DeviceInfo.Platform == DevicePlatform.Android ? "10.0.2.2" : "127.0.0.1"; + return $"http://{host}:50050"; + } +} diff --git a/clipiFrontC/clipiFrontC/Services/ClipApiService.cs b/clipiFrontC/clipiFrontC/Services/ClipApiService.cs new file mode 100644 index 0000000..031eeec --- /dev/null +++ b/clipiFrontC/clipiFrontC/Services/ClipApiService.cs @@ -0,0 +1,64 @@ +using System.Net.Http.Json; +using System.Text.Json; +using clipiFrontC.Models; + +namespace clipiFrontC.Services; + +public sealed class ClipApiService +{ + private readonly HttpClient _httpClient = new(); + private readonly BackendEndpointResolver _endpointResolver; + + public ClipApiService(BackendEndpointResolver endpointResolver) + { + _endpointResolver = endpointResolver; + } + + public async Task FetchClipsAsync(int amount = 0, int offset = 0, CancellationToken cancellationToken = default) + { + var baseUrl = _endpointResolver.GetBaseUrl(); + var url = $"{baseUrl}/ClipsFetch?amount={amount}&offset={offset}"; + + using var response = await _httpClient.GetAsync(url, cancellationToken); + response.EnsureSuccessStatusCode(); + + var payload = await response.Content.ReadFromJsonAsync(cancellationToken: cancellationToken); + return payload ?? new ClipsFetchResponse(); + } + + public async Task HostClipAsync(ClipModel clip, CancellationToken cancellationToken = default) + { + return await HostClipAsync(clip, targetBaseUrl: null, cancellationToken); + } + + public async Task HostClipAsync(ClipModel clip, string? targetBaseUrl, CancellationToken cancellationToken = default) + { + var baseUrl = string.IsNullOrWhiteSpace(targetBaseUrl) + ? _endpointResolver.GetBaseUrl() + : targetBaseUrl.Trim().TrimEnd('/'); + var url = $"{baseUrl}/ClipHost"; + + using var response = await _httpClient.PostAsJsonAsync(url, clip, cancellationToken); + response.EnsureSuccessStatusCode(); + + return await TryReadHostClipIdAsync(response.Content, cancellationToken); + } + + private static async Task TryReadHostClipIdAsync(HttpContent content, CancellationToken cancellationToken) + { + using var stream = await content.ReadAsStreamAsync(cancellationToken); + using var document = await JsonDocument.ParseAsync(stream, cancellationToken: cancellationToken); + + if (!document.RootElement.TryGetProperty("id", out var idProperty)) + { + return 0; + } + + return idProperty.ValueKind switch + { + JsonValueKind.Number when idProperty.TryGetInt32(out var id) => id, + JsonValueKind.String when int.TryParse(idProperty.GetString(), out var id) => id, + _ => 0 + }; + } +} diff --git a/clipiFrontC/clipiFrontC/Services/DeviceNetworkService.cs b/clipiFrontC/clipiFrontC/Services/DeviceNetworkService.cs new file mode 100644 index 0000000..04c74ad --- /dev/null +++ b/clipiFrontC/clipiFrontC/Services/DeviceNetworkService.cs @@ -0,0 +1,37 @@ +using System.Net; +using System.Net.NetworkInformation; +using System.Net.Sockets; + +namespace clipiFrontC.Services; + +public sealed class DeviceNetworkService +{ + public Task GetLocalIpv4Async() + { + try + { + foreach (var networkInterface in NetworkInterface.GetAllNetworkInterfaces()) + { + if (networkInterface.OperationalStatus != OperationalStatus.Up) + { + continue; + } + + var properties = networkInterface.GetIPProperties(); + foreach (var address in properties.UnicastAddresses) + { + if (address.Address.AddressFamily == AddressFamily.InterNetwork && !IPAddress.IsLoopback(address.Address)) + { + return Task.FromResult(address.Address.ToString()); + } + } + } + } + catch + { + // Fallback below. + } + + return Task.FromResult("Unknown"); + } +} diff --git a/clipiFrontC/clipiFrontC/Services/FavoriteDevicesService.cs b/clipiFrontC/clipiFrontC/Services/FavoriteDevicesService.cs new file mode 100644 index 0000000..8559385 --- /dev/null +++ b/clipiFrontC/clipiFrontC/Services/FavoriteDevicesService.cs @@ -0,0 +1,51 @@ +using System.Text.Json; +using clipiFrontC.Models; +using Microsoft.Maui.Storage; + +namespace clipiFrontC.Services; + +public sealed class FavoriteDevicesService +{ + private const string FavoritesPreferenceKey = "clipi.favorite_devices"; + + public Task> GetFavoritesAsync() + { + var raw = Preferences.Get(FavoritesPreferenceKey, string.Empty); + if (string.IsNullOrWhiteSpace(raw)) + { + return Task.FromResult(GetDefaultDevices()); + } + + try + { + var devices = JsonSerializer.Deserialize>(raw); + if (devices is null || devices.Count == 0) + { + return Task.FromResult(GetDefaultDevices()); + } + + return Task.FromResult(devices); + } + catch + { + return Task.FromResult(GetDefaultDevices()); + } + } + + public Task SaveFavoritesAsync(List favorites) + { + var payload = JsonSerializer.Serialize(favorites); + Preferences.Set(FavoritesPreferenceKey, payload); + return Task.CompletedTask; + } + + private static List GetDefaultDevices() + { + return new List + { + new() { Name = "Desktop", Address = "" }, + new() { Name = "Laptop", Address = "" }, + new() { Name = "Phone", Address = "" } + }; + } +} diff --git a/clipiFrontC/clipiFrontC/clipiFrontC.csproj b/clipiFrontC/clipiFrontC/clipiFrontC.csproj new file mode 100644 index 0000000..facf7d0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/clipiFrontC.csproj @@ -0,0 +1,69 @@ + + + + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 + + + + + + + Exe + clipiFrontC + true + true + enable + false + enable + + + clipiFrontC + + + com.companyname.clipifrontc + + + 1.0 + 1 + + + None + + 15.0 + 15.0 + 24.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/clipiFrontC.csproj.user b/clipiFrontC/clipiFrontC/clipiFrontC.csproj.user new file mode 100644 index 0000000..bf1808e --- /dev/null +++ b/clipiFrontC/clipiFrontC/clipiFrontC.csproj.user @@ -0,0 +1,26 @@ + + + + False + net9.0-android + Samsung SM-F946B (Android 16.0 - API 36) + PhysicalDevice + + + ProjectDebugger + + + + Designer + + + Designer + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/.cache/com.companyname.clipifrontc.flag b/clipiFrontC/clipiFrontC/obj/.cache/com.companyname.clipifrontc.flag new file mode 100644 index 0000000..90f3ac1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/.cache/com.companyname.clipifrontc.flag @@ -0,0 +1 @@ +DebugAnyCPU-s RQCW703DV4M diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/AndroidManifest.xml b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/AndroidManifest.xml new file mode 100644 index 0000000..9805b59 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/R.cs.flag b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/R.cs.flag new file mode 100644 index 0000000..e69de29 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/R.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/R.txt new file mode 100644 index 0000000..10c536d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/R.txt @@ -0,0 +1,7433 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 +int anim design_bottom_sheet_slide_in 0x7f010018 +int anim design_bottom_sheet_slide_out 0x7f010019 +int anim design_snackbar_in 0x7f01001a +int anim design_snackbar_out 0x7f01001b +int anim enterfromleft 0x7f01001c +int anim enterfromright 0x7f01001d +int anim exittoleft 0x7f01001e +int anim exittoright 0x7f01001f +int anim fragment_fast_out_extra_slow_in 0x7f010020 +int anim linear_indeterminate_line1_head_interpolator 0x7f010021 +int anim linear_indeterminate_line1_tail_interpolator 0x7f010022 +int anim linear_indeterminate_line2_head_interpolator 0x7f010023 +int anim linear_indeterminate_line2_tail_interpolator 0x7f010024 +int anim m3_bottom_sheet_slide_in 0x7f010025 +int anim m3_bottom_sheet_slide_out 0x7f010026 +int anim m3_motion_fade_enter 0x7f010027 +int anim m3_motion_fade_exit 0x7f010028 +int anim m3_side_sheet_enter_from_left 0x7f010029 +int anim m3_side_sheet_enter_from_right 0x7f01002a +int anim m3_side_sheet_exit_to_left 0x7f01002b +int anim m3_side_sheet_exit_to_right 0x7f01002c +int anim mtrl_bottom_sheet_slide_in 0x7f01002d +int anim mtrl_bottom_sheet_slide_out 0x7f01002e +int anim mtrl_card_lowers_interpolator 0x7f01002f +int anim nav_default_enter_anim 0x7f010030 +int anim nav_default_exit_anim 0x7f010031 +int anim nav_default_pop_enter_anim 0x7f010032 +int anim nav_default_pop_exit_anim 0x7f010033 +int anim nav_modal_default_enter_anim 0x7f010034 +int anim nav_modal_default_exit_anim 0x7f010035 +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator fragment_close_enter 0x7f020003 +int animator fragment_close_exit 0x7f020004 +int animator fragment_fade_enter 0x7f020005 +int animator fragment_fade_exit 0x7f020006 +int animator fragment_open_enter 0x7f020007 +int animator fragment_open_exit 0x7f020008 +int animator m3_appbar_state_list_animator 0x7f020009 +int animator m3_btn_elevated_btn_state_list_anim 0x7f02000a +int animator m3_btn_state_list_anim 0x7f02000b +int animator m3_card_elevated_state_list_anim 0x7f02000c +int animator m3_card_state_list_anim 0x7f02000d +int animator m3_chip_state_list_anim 0x7f02000e +int animator m3_elevated_chip_state_list_anim 0x7f02000f +int animator m3_extended_fab_change_size_collapse_motion_spec 0x7f020010 +int animator m3_extended_fab_change_size_expand_motion_spec 0x7f020011 +int animator m3_extended_fab_hide_motion_spec 0x7f020012 +int animator m3_extended_fab_show_motion_spec 0x7f020013 +int animator m3_extended_fab_state_list_animator 0x7f020014 +int animator mtrl_btn_state_list_anim 0x7f020015 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020016 +int animator mtrl_card_state_list_anim 0x7f020017 +int animator mtrl_chip_state_list_anim 0x7f020018 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020019 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02001a +int animator mtrl_extended_fab_hide_motion_spec 0x7f02001b +int animator mtrl_extended_fab_show_motion_spec 0x7f02001c +int animator mtrl_extended_fab_state_list_animator 0x7f02001d +int animator mtrl_fab_hide_motion_spec 0x7f02001e +int animator mtrl_fab_show_motion_spec 0x7f02001f +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020020 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020021 +int animator nav_default_enter_anim 0x7f020022 +int animator nav_default_exit_anim 0x7f020023 +int animator nav_default_pop_enter_anim 0x7f020024 +int animator nav_default_pop_exit_anim 0x7f020025 +int attr SharedValue 0x7f030000 +int attr SharedValueId 0x7f030001 +int attr action 0x7f030002 +int attr actionBarDivider 0x7f030003 +int attr actionBarItemBackground 0x7f030004 +int attr actionBarPopupTheme 0x7f030005 +int attr actionBarSize 0x7f030006 +int attr actionBarSplitStyle 0x7f030007 +int attr actionBarStyle 0x7f030008 +int attr actionBarTabBarStyle 0x7f030009 +int attr actionBarTabStyle 0x7f03000a +int attr actionBarTabTextStyle 0x7f03000b +int attr actionBarTheme 0x7f03000c +int attr actionBarWidgetTheme 0x7f03000d +int attr actionButtonStyle 0x7f03000e +int attr actionDropDownStyle 0x7f03000f +int attr actionLayout 0x7f030010 +int attr actionMenuTextAppearance 0x7f030011 +int attr actionMenuTextColor 0x7f030012 +int attr actionModeBackground 0x7f030013 +int attr actionModeCloseButtonStyle 0x7f030014 +int attr actionModeCloseContentDescription 0x7f030015 +int attr actionModeCloseDrawable 0x7f030016 +int attr actionModeCopyDrawable 0x7f030017 +int attr actionModeCutDrawable 0x7f030018 +int attr actionModeFindDrawable 0x7f030019 +int attr actionModePasteDrawable 0x7f03001a +int attr actionModePopupWindowStyle 0x7f03001b +int attr actionModeSelectAllDrawable 0x7f03001c +int attr actionModeShareDrawable 0x7f03001d +int attr actionModeSplitBackground 0x7f03001e +int attr actionModeStyle 0x7f03001f +int attr actionModeTheme 0x7f030020 +int attr actionModeWebSearchDrawable 0x7f030021 +int attr actionOverflowButtonStyle 0x7f030022 +int attr actionOverflowMenuStyle 0x7f030023 +int attr actionProviderClass 0x7f030024 +int attr actionTextColorAlpha 0x7f030025 +int attr actionViewClass 0x7f030026 +int attr activeIndicatorLabelPadding 0x7f030027 +int attr activityAction 0x7f030028 +int attr activityChooserViewStyle 0x7f030029 +int attr activityName 0x7f03002a +int attr addElevationShadow 0x7f03002b +int attr alertDialogButtonGroupStyle 0x7f03002c +int attr alertDialogCenterButtons 0x7f03002d +int attr alertDialogStyle 0x7f03002e +int attr alertDialogTheme 0x7f03002f +int attr allowStacking 0x7f030030 +int attr alpha 0x7f030031 +int attr alphabeticModifiers 0x7f030032 +int attr altSrc 0x7f030033 +int attr alwaysExpand 0x7f030034 +int attr animateCircleAngleTo 0x7f030035 +int attr animateMenuItems 0x7f030036 +int attr animateNavigationIcon 0x7f030037 +int attr animateRelativeTo 0x7f030038 +int attr animationBackgroundColor 0x7f030039 +int attr animationMode 0x7f03003a +int attr appBarLayoutStyle 0x7f03003b +int attr applyMotionScene 0x7f03003c +int attr arcMode 0x7f03003d +int attr argType 0x7f03003e +int attr arrowHeadLength 0x7f03003f +int attr arrowShaftLength 0x7f030040 +int attr attributeName 0x7f030041 +int attr autoAdjustToWithinGrandparentBounds 0x7f030042 +int attr autoCompleteMode 0x7f030043 +int attr autoCompleteTextViewStyle 0x7f030044 +int attr autoShowKeyboard 0x7f030045 +int attr autoSizeMaxTextSize 0x7f030046 +int attr autoSizeMinTextSize 0x7f030047 +int attr autoSizePresetSizes 0x7f030048 +int attr autoSizeStepGranularity 0x7f030049 +int attr autoSizeTextType 0x7f03004a +int attr autoTransition 0x7f03004b +int attr backHandlingEnabled 0x7f03004c +int attr background 0x7f03004d +int attr backgroundColor 0x7f03004e +int attr backgroundInsetBottom 0x7f03004f +int attr backgroundInsetEnd 0x7f030050 +int attr backgroundInsetStart 0x7f030051 +int attr backgroundInsetTop 0x7f030052 +int attr backgroundOverlayColorAlpha 0x7f030053 +int attr backgroundSplit 0x7f030054 +int attr backgroundStacked 0x7f030055 +int attr backgroundTint 0x7f030056 +int attr backgroundTintMode 0x7f030057 +int attr badgeGravity 0x7f030058 +int attr badgeHeight 0x7f030059 +int attr badgeRadius 0x7f03005a +int attr badgeShapeAppearance 0x7f03005b +int attr badgeShapeAppearanceOverlay 0x7f03005c +int attr badgeStyle 0x7f03005d +int attr badgeText 0x7f03005e +int attr badgeTextAppearance 0x7f03005f +int attr badgeTextColor 0x7f030060 +int attr badgeVerticalPadding 0x7f030061 +int attr badgeWidePadding 0x7f030062 +int attr badgeWidth 0x7f030063 +int attr badgeWithTextHeight 0x7f030064 +int attr badgeWithTextRadius 0x7f030065 +int attr badgeWithTextShapeAppearance 0x7f030066 +int attr badgeWithTextShapeAppearanceOverlay 0x7f030067 +int attr badgeWithTextWidth 0x7f030068 +int attr barLength 0x7f030069 +int attr barrierAllowsGoneWidgets 0x7f03006a +int attr barrierDirection 0x7f03006b +int attr barrierMargin 0x7f03006c +int attr behavior_autoHide 0x7f03006d +int attr behavior_autoShrink 0x7f03006e +int attr behavior_draggable 0x7f03006f +int attr behavior_expandedOffset 0x7f030070 +int attr behavior_fitToContents 0x7f030071 +int attr behavior_halfExpandedRatio 0x7f030072 +int attr behavior_hideable 0x7f030073 +int attr behavior_overlapTop 0x7f030074 +int attr behavior_peekHeight 0x7f030075 +int attr behavior_saveFlags 0x7f030076 +int attr behavior_significantVelocityThreshold 0x7f030077 +int attr behavior_skipCollapsed 0x7f030078 +int attr blendSrc 0x7f030079 +int attr borderRound 0x7f03007a +int attr borderRoundPercent 0x7f03007b +int attr borderWidth 0x7f03007c +int attr borderlessButtonStyle 0x7f03007d +int attr bottomAppBarStyle 0x7f03007e +int attr bottomInsetScrimEnabled 0x7f03007f +int attr bottomNavigationStyle 0x7f030080 +int attr bottomNavigationViewStyle 0x7f030081 +int attr bottomSheetDialogTheme 0x7f030082 +int attr bottomSheetDragHandleStyle 0x7f030083 +int attr bottomSheetStyle 0x7f030084 +int attr boxBackgroundColor 0x7f030085 +int attr boxBackgroundMode 0x7f030086 +int attr boxCollapsedPaddingTop 0x7f030087 +int attr boxCornerRadiusBottomEnd 0x7f030088 +int attr boxCornerRadiusBottomStart 0x7f030089 +int attr boxCornerRadiusTopEnd 0x7f03008a +int attr boxCornerRadiusTopStart 0x7f03008b +int attr boxStrokeColor 0x7f03008c +int attr boxStrokeErrorColor 0x7f03008d +int attr boxStrokeWidth 0x7f03008e +int attr boxStrokeWidthFocused 0x7f03008f +int attr brightness 0x7f030090 +int attr buttonBarButtonStyle 0x7f030091 +int attr buttonBarNegativeButtonStyle 0x7f030092 +int attr buttonBarNeutralButtonStyle 0x7f030093 +int attr buttonBarPositiveButtonStyle 0x7f030094 +int attr buttonBarStyle 0x7f030095 +int attr buttonCompat 0x7f030096 +int attr buttonGravity 0x7f030097 +int attr buttonIcon 0x7f030098 +int attr buttonIconDimen 0x7f030099 +int attr buttonIconTint 0x7f03009a +int attr buttonIconTintMode 0x7f03009b +int attr buttonPanelSideLayout 0x7f03009c +int attr buttonStyle 0x7f03009d +int attr buttonStyleSmall 0x7f03009e +int attr buttonTint 0x7f03009f +int attr buttonTintMode 0x7f0300a0 +int attr cardBackgroundColor 0x7f0300a1 +int attr cardCornerRadius 0x7f0300a2 +int attr cardElevation 0x7f0300a3 +int attr cardForegroundColor 0x7f0300a4 +int attr cardMaxElevation 0x7f0300a5 +int attr cardPreventCornerOverlap 0x7f0300a6 +int attr cardUseCompatPadding 0x7f0300a7 +int attr cardViewStyle 0x7f0300a8 +int attr carousel_alignment 0x7f0300a9 +int attr carousel_backwardTransition 0x7f0300aa +int attr carousel_emptyViewsBehavior 0x7f0300ab +int attr carousel_firstView 0x7f0300ac +int attr carousel_forwardTransition 0x7f0300ad +int attr carousel_infinite 0x7f0300ae +int attr carousel_nextState 0x7f0300af +int attr carousel_previousState 0x7f0300b0 +int attr carousel_touchUpMode 0x7f0300b1 +int attr carousel_touchUp_dampeningFactor 0x7f0300b2 +int attr carousel_touchUp_velocityThreshold 0x7f0300b3 +int attr centerIfNoTextEnabled 0x7f0300b4 +int attr chainUseRtl 0x7f0300b5 +int attr checkMarkCompat 0x7f0300b6 +int attr checkMarkTint 0x7f0300b7 +int attr checkMarkTintMode 0x7f0300b8 +int attr checkboxStyle 0x7f0300b9 +int attr checkedButton 0x7f0300ba +int attr checkedChip 0x7f0300bb +int attr checkedIcon 0x7f0300bc +int attr checkedIconEnabled 0x7f0300bd +int attr checkedIconGravity 0x7f0300be +int attr checkedIconMargin 0x7f0300bf +int attr checkedIconSize 0x7f0300c0 +int attr checkedIconTint 0x7f0300c1 +int attr checkedIconVisible 0x7f0300c2 +int attr checkedState 0x7f0300c3 +int attr checkedTextViewStyle 0x7f0300c4 +int attr chipBackgroundColor 0x7f0300c5 +int attr chipCornerRadius 0x7f0300c6 +int attr chipEndPadding 0x7f0300c7 +int attr chipGroupStyle 0x7f0300c8 +int attr chipIcon 0x7f0300c9 +int attr chipIconEnabled 0x7f0300ca +int attr chipIconSize 0x7f0300cb +int attr chipIconTint 0x7f0300cc +int attr chipIconVisible 0x7f0300cd +int attr chipMinHeight 0x7f0300ce +int attr chipMinTouchTargetSize 0x7f0300cf +int attr chipSpacing 0x7f0300d0 +int attr chipSpacingHorizontal 0x7f0300d1 +int attr chipSpacingVertical 0x7f0300d2 +int attr chipStandaloneStyle 0x7f0300d3 +int attr chipStartPadding 0x7f0300d4 +int attr chipStrokeColor 0x7f0300d5 +int attr chipStrokeWidth 0x7f0300d6 +int attr chipStyle 0x7f0300d7 +int attr chipSurfaceColor 0x7f0300d8 +int attr circleRadius 0x7f0300d9 +int attr circularProgressIndicatorStyle 0x7f0300da +int attr circularflow_angles 0x7f0300db +int attr circularflow_defaultAngle 0x7f0300dc +int attr circularflow_defaultRadius 0x7f0300dd +int attr circularflow_radiusInDP 0x7f0300de +int attr circularflow_viewCenter 0x7f0300df +int attr clearTop 0x7f0300e0 +int attr clearsTag 0x7f0300e1 +int attr clickAction 0x7f0300e2 +int attr clockFaceBackgroundColor 0x7f0300e3 +int attr clockHandColor 0x7f0300e4 +int attr clockIcon 0x7f0300e5 +int attr clockNumberTextColor 0x7f0300e6 +int attr closeIcon 0x7f0300e7 +int attr closeIconEnabled 0x7f0300e8 +int attr closeIconEndPadding 0x7f0300e9 +int attr closeIconSize 0x7f0300ea +int attr closeIconStartPadding 0x7f0300eb +int attr closeIconTint 0x7f0300ec +int attr closeIconVisible 0x7f0300ed +int attr closeItemLayout 0x7f0300ee +int attr collapseContentDescription 0x7f0300ef +int attr collapseIcon 0x7f0300f0 +int attr collapsedSize 0x7f0300f1 +int attr collapsedTitleGravity 0x7f0300f2 +int attr collapsedTitleTextAppearance 0x7f0300f3 +int attr collapsedTitleTextColor 0x7f0300f4 +int attr collapsingToolbarLayoutLargeSize 0x7f0300f5 +int attr collapsingToolbarLayoutLargeStyle 0x7f0300f6 +int attr collapsingToolbarLayoutMediumSize 0x7f0300f7 +int attr collapsingToolbarLayoutMediumStyle 0x7f0300f8 +int attr collapsingToolbarLayoutStyle 0x7f0300f9 +int attr collectionViewStyle 0x7f0300fa +int attr color 0x7f0300fb +int attr colorAccent 0x7f0300fc +int attr colorBackgroundFloating 0x7f0300fd +int attr colorButtonNormal 0x7f0300fe +int attr colorContainer 0x7f0300ff +int attr colorControlActivated 0x7f030100 +int attr colorControlHighlight 0x7f030101 +int attr colorControlNormal 0x7f030102 +int attr colorError 0x7f030103 +int attr colorErrorContainer 0x7f030104 +int attr colorOnBackground 0x7f030105 +int attr colorOnContainer 0x7f030106 +int attr colorOnContainerUnchecked 0x7f030107 +int attr colorOnError 0x7f030108 +int attr colorOnErrorContainer 0x7f030109 +int attr colorOnPrimary 0x7f03010a +int attr colorOnPrimaryContainer 0x7f03010b +int attr colorOnPrimaryFixed 0x7f03010c +int attr colorOnPrimaryFixedVariant 0x7f03010d +int attr colorOnPrimarySurface 0x7f03010e +int attr colorOnSecondary 0x7f03010f +int attr colorOnSecondaryContainer 0x7f030110 +int attr colorOnSecondaryFixed 0x7f030111 +int attr colorOnSecondaryFixedVariant 0x7f030112 +int attr colorOnSurface 0x7f030113 +int attr colorOnSurfaceInverse 0x7f030114 +int attr colorOnSurfaceVariant 0x7f030115 +int attr colorOnTertiary 0x7f030116 +int attr colorOnTertiaryContainer 0x7f030117 +int attr colorOnTertiaryFixed 0x7f030118 +int attr colorOnTertiaryFixedVariant 0x7f030119 +int attr colorOutline 0x7f03011a +int attr colorOutlineVariant 0x7f03011b +int attr colorPrimary 0x7f03011c +int attr colorPrimaryContainer 0x7f03011d +int attr colorPrimaryDark 0x7f03011e +int attr colorPrimaryFixed 0x7f03011f +int attr colorPrimaryFixedDim 0x7f030120 +int attr colorPrimaryInverse 0x7f030121 +int attr colorPrimarySurface 0x7f030122 +int attr colorPrimaryVariant 0x7f030123 +int attr colorSecondary 0x7f030124 +int attr colorSecondaryContainer 0x7f030125 +int attr colorSecondaryFixed 0x7f030126 +int attr colorSecondaryFixedDim 0x7f030127 +int attr colorSecondaryVariant 0x7f030128 +int attr colorSurface 0x7f030129 +int attr colorSurfaceBright 0x7f03012a +int attr colorSurfaceContainer 0x7f03012b +int attr colorSurfaceContainerHigh 0x7f03012c +int attr colorSurfaceContainerHighest 0x7f03012d +int attr colorSurfaceContainerLow 0x7f03012e +int attr colorSurfaceContainerLowest 0x7f03012f +int attr colorSurfaceDim 0x7f030130 +int attr colorSurfaceInverse 0x7f030131 +int attr colorSurfaceVariant 0x7f030132 +int attr colorSwitchThumbNormal 0x7f030133 +int attr colorTertiary 0x7f030134 +int attr colorTertiaryContainer 0x7f030135 +int attr colorTertiaryFixed 0x7f030136 +int attr colorTertiaryFixedDim 0x7f030137 +int attr commitIcon 0x7f030138 +int attr compatShadowEnabled 0x7f030139 +int attr constraintRotate 0x7f03013a +int attr constraintSet 0x7f03013b +int attr constraintSetEnd 0x7f03013c +int attr constraintSetStart 0x7f03013d +int attr constraint_referenced_ids 0x7f03013e +int attr constraint_referenced_tags 0x7f03013f +int attr constraints 0x7f030140 +int attr content 0x7f030141 +int attr contentDescription 0x7f030142 +int attr contentInsetEnd 0x7f030143 +int attr contentInsetEndWithActions 0x7f030144 +int attr contentInsetLeft 0x7f030145 +int attr contentInsetRight 0x7f030146 +int attr contentInsetStart 0x7f030147 +int attr contentInsetStartWithNavigation 0x7f030148 +int attr contentPadding 0x7f030149 +int attr contentPaddingBottom 0x7f03014a +int attr contentPaddingEnd 0x7f03014b +int attr contentPaddingLeft 0x7f03014c +int attr contentPaddingRight 0x7f03014d +int attr contentPaddingStart 0x7f03014e +int attr contentPaddingTop 0x7f03014f +int attr contentScrim 0x7f030150 +int attr contrast 0x7f030151 +int attr controlBackground 0x7f030152 +int attr coordinatorLayoutStyle 0x7f030153 +int attr coplanarSiblingViewId 0x7f030154 +int attr cornerFamily 0x7f030155 +int attr cornerFamilyBottomLeft 0x7f030156 +int attr cornerFamilyBottomRight 0x7f030157 +int attr cornerFamilyTopLeft 0x7f030158 +int attr cornerFamilyTopRight 0x7f030159 +int attr cornerRadius 0x7f03015a +int attr cornerSize 0x7f03015b +int attr cornerSizeBottomLeft 0x7f03015c +int attr cornerSizeBottomRight 0x7f03015d +int attr cornerSizeTopLeft 0x7f03015e +int attr cornerSizeTopRight 0x7f03015f +int attr counterEnabled 0x7f030160 +int attr counterMaxLength 0x7f030161 +int attr counterOverflowTextAppearance 0x7f030162 +int attr counterOverflowTextColor 0x7f030163 +int attr counterTextAppearance 0x7f030164 +int attr counterTextColor 0x7f030165 +int attr crossfade 0x7f030166 +int attr currentState 0x7f030167 +int attr cursorColor 0x7f030168 +int attr cursorErrorColor 0x7f030169 +int attr curveFit 0x7f03016a +int attr customBoolean 0x7f03016b +int attr customColorDrawableValue 0x7f03016c +int attr customColorValue 0x7f03016d +int attr customDimension 0x7f03016e +int attr customFloatValue 0x7f03016f +int attr customIntegerValue 0x7f030170 +int attr customNavigationLayout 0x7f030171 +int attr customPixelDimension 0x7f030172 +int attr customReference 0x7f030173 +int attr customStringValue 0x7f030174 +int attr data 0x7f030175 +int attr dataPattern 0x7f030176 +int attr dayInvalidStyle 0x7f030177 +int attr daySelectedStyle 0x7f030178 +int attr dayStyle 0x7f030179 +int attr dayTodayStyle 0x7f03017a +int attr defaultDuration 0x7f03017b +int attr defaultMarginsEnabled 0x7f03017c +int attr defaultNavHost 0x7f03017d +int attr defaultQueryHint 0x7f03017e +int attr defaultScrollFlagsEnabled 0x7f03017f +int attr defaultState 0x7f030180 +int attr deltaPolarAngle 0x7f030181 +int attr deltaPolarRadius 0x7f030182 +int attr deriveConstraintsFrom 0x7f030183 +int attr destination 0x7f030184 +int attr dialogCornerRadius 0x7f030185 +int attr dialogPreferredPadding 0x7f030186 +int attr dialogTheme 0x7f030187 +int attr displayOptions 0x7f030188 +int attr divider 0x7f030189 +int attr dividerColor 0x7f03018a +int attr dividerHorizontal 0x7f03018b +int attr dividerInsetEnd 0x7f03018c +int attr dividerInsetStart 0x7f03018d +int attr dividerPadding 0x7f03018e +int attr dividerThickness 0x7f03018f +int attr dividerVertical 0x7f030190 +int attr dragDirection 0x7f030191 +int attr dragScale 0x7f030192 +int attr dragThreshold 0x7f030193 +int attr drawPath 0x7f030194 +int attr drawableBottomCompat 0x7f030195 +int attr drawableEndCompat 0x7f030196 +int attr drawableLeftCompat 0x7f030197 +int attr drawableRightCompat 0x7f030198 +int attr drawableSize 0x7f030199 +int attr drawableStartCompat 0x7f03019a +int attr drawableTint 0x7f03019b +int attr drawableTintMode 0x7f03019c +int attr drawableTopCompat 0x7f03019d +int attr drawerArrowStyle 0x7f03019e +int attr drawerLayoutCornerSize 0x7f03019f +int attr drawerLayoutStyle 0x7f0301a0 +int attr dropDownBackgroundTint 0x7f0301a1 +int attr dropDownListViewStyle 0x7f0301a2 +int attr dropdownListPreferredItemHeight 0x7f0301a3 +int attr duration 0x7f0301a4 +int attr dynamicColorThemeOverlay 0x7f0301a5 +int attr editTextBackground 0x7f0301a6 +int attr editTextColor 0x7f0301a7 +int attr editTextStyle 0x7f0301a8 +int attr elevation 0x7f0301a9 +int attr elevationOverlayAccentColor 0x7f0301aa +int attr elevationOverlayColor 0x7f0301ab +int attr elevationOverlayEnabled 0x7f0301ac +int attr emojiCompatEnabled 0x7f0301ad +int attr enableEdgeToEdge 0x7f0301ae +int attr endIconCheckable 0x7f0301af +int attr endIconContentDescription 0x7f0301b0 +int attr endIconDrawable 0x7f0301b1 +int attr endIconMinSize 0x7f0301b2 +int attr endIconMode 0x7f0301b3 +int attr endIconScaleType 0x7f0301b4 +int attr endIconTint 0x7f0301b5 +int attr endIconTintMode 0x7f0301b6 +int attr enforceMaterialTheme 0x7f0301b7 +int attr enforceTextAppearance 0x7f0301b8 +int attr ensureMinTouchTargetSize 0x7f0301b9 +int attr enterAnim 0x7f0301ba +int attr errorAccessibilityLabel 0x7f0301bb +int attr errorAccessibilityLiveRegion 0x7f0301bc +int attr errorContentDescription 0x7f0301bd +int attr errorEnabled 0x7f0301be +int attr errorIconDrawable 0x7f0301bf +int attr errorIconTint 0x7f0301c0 +int attr errorIconTintMode 0x7f0301c1 +int attr errorShown 0x7f0301c2 +int attr errorTextAppearance 0x7f0301c3 +int attr errorTextColor 0x7f0301c4 +int attr exitAnim 0x7f0301c5 +int attr expandActivityOverflowButtonDrawable 0x7f0301c6 +int attr expanded 0x7f0301c7 +int attr expandedHintEnabled 0x7f0301c8 +int attr expandedTitleGravity 0x7f0301c9 +int attr expandedTitleMargin 0x7f0301ca +int attr expandedTitleMarginBottom 0x7f0301cb +int attr expandedTitleMarginEnd 0x7f0301cc +int attr expandedTitleMarginStart 0x7f0301cd +int attr expandedTitleMarginTop 0x7f0301ce +int attr expandedTitleTextAppearance 0x7f0301cf +int attr expandedTitleTextColor 0x7f0301d0 +int attr extendMotionSpec 0x7f0301d1 +int attr extendStrategy 0x7f0301d2 +int attr extendedFloatingActionButtonPrimaryStyle 0x7f0301d3 +int attr extendedFloatingActionButtonSecondaryStyle 0x7f0301d4 +int attr extendedFloatingActionButtonStyle 0x7f0301d5 +int attr extendedFloatingActionButtonSurfaceStyle 0x7f0301d6 +int attr extendedFloatingActionButtonTertiaryStyle 0x7f0301d7 +int attr extraMultilineHeightEnabled 0x7f0301d8 +int attr fabAlignmentMode 0x7f0301d9 +int attr fabAlignmentModeEndMargin 0x7f0301da +int attr fabAnchorMode 0x7f0301db +int attr fabAnimationMode 0x7f0301dc +int attr fabCradleMargin 0x7f0301dd +int attr fabCradleRoundedCornerRadius 0x7f0301de +int attr fabCradleVerticalOffset 0x7f0301df +int attr fabCustomSize 0x7f0301e0 +int attr fabSize 0x7f0301e1 +int attr fastScrollEnabled 0x7f0301e2 +int attr fastScrollHorizontalThumbDrawable 0x7f0301e3 +int attr fastScrollHorizontalTrackDrawable 0x7f0301e4 +int attr fastScrollVerticalThumbDrawable 0x7f0301e5 +int attr fastScrollVerticalTrackDrawable 0x7f0301e6 +int attr finishPrimaryWithPlaceholder 0x7f0301e7 +int attr finishPrimaryWithSecondary 0x7f0301e8 +int attr finishSecondaryWithPrimary 0x7f0301e9 +int attr firstBaselineToTopHeight 0x7f0301ea +int attr floatingActionButtonLargePrimaryStyle 0x7f0301eb +int attr floatingActionButtonLargeSecondaryStyle 0x7f0301ec +int attr floatingActionButtonLargeStyle 0x7f0301ed +int attr floatingActionButtonLargeSurfaceStyle 0x7f0301ee +int attr floatingActionButtonLargeTertiaryStyle 0x7f0301ef +int attr floatingActionButtonPrimaryStyle 0x7f0301f0 +int attr floatingActionButtonSecondaryStyle 0x7f0301f1 +int attr floatingActionButtonSmallPrimaryStyle 0x7f0301f2 +int attr floatingActionButtonSmallSecondaryStyle 0x7f0301f3 +int attr floatingActionButtonSmallStyle 0x7f0301f4 +int attr floatingActionButtonSmallSurfaceStyle 0x7f0301f5 +int attr floatingActionButtonSmallTertiaryStyle 0x7f0301f6 +int attr floatingActionButtonStyle 0x7f0301f7 +int attr floatingActionButtonSurfaceStyle 0x7f0301f8 +int attr floatingActionButtonTertiaryStyle 0x7f0301f9 +int attr flow_firstHorizontalBias 0x7f0301fa +int attr flow_firstHorizontalStyle 0x7f0301fb +int attr flow_firstVerticalBias 0x7f0301fc +int attr flow_firstVerticalStyle 0x7f0301fd +int attr flow_horizontalAlign 0x7f0301fe +int attr flow_horizontalBias 0x7f0301ff +int attr flow_horizontalGap 0x7f030200 +int attr flow_horizontalStyle 0x7f030201 +int attr flow_lastHorizontalBias 0x7f030202 +int attr flow_lastHorizontalStyle 0x7f030203 +int attr flow_lastVerticalBias 0x7f030204 +int attr flow_lastVerticalStyle 0x7f030205 +int attr flow_maxElementsWrap 0x7f030206 +int attr flow_padding 0x7f030207 +int attr flow_verticalAlign 0x7f030208 +int attr flow_verticalBias 0x7f030209 +int attr flow_verticalGap 0x7f03020a +int attr flow_verticalStyle 0x7f03020b +int attr flow_wrapMode 0x7f03020c +int attr font 0x7f03020d +int attr fontFamily 0x7f03020e +int attr fontProviderAuthority 0x7f03020f +int attr fontProviderCerts 0x7f030210 +int attr fontProviderFallbackQuery 0x7f030211 +int attr fontProviderFetchStrategy 0x7f030212 +int attr fontProviderFetchTimeout 0x7f030213 +int attr fontProviderPackage 0x7f030214 +int attr fontProviderQuery 0x7f030215 +int attr fontProviderSystemFontFamily 0x7f030216 +int attr fontStyle 0x7f030217 +int attr fontVariationSettings 0x7f030218 +int attr fontWeight 0x7f030219 +int attr forceApplySystemWindowInsetTop 0x7f03021a +int attr forceDefaultNavigationOnClickListener 0x7f03021b +int attr foregroundInsidePadding 0x7f03021c +int attr framePosition 0x7f03021d +int attr gapBetweenBars 0x7f03021e +int attr gestureInsetBottomIgnored 0x7f03021f +int attr goIcon 0x7f030220 +int attr graph 0x7f030221 +int attr grid_columnWeights 0x7f030222 +int attr grid_columns 0x7f030223 +int attr grid_horizontalGaps 0x7f030224 +int attr grid_orientation 0x7f030225 +int attr grid_rowWeights 0x7f030226 +int attr grid_rows 0x7f030227 +int attr grid_skips 0x7f030228 +int attr grid_spans 0x7f030229 +int attr grid_useRtl 0x7f03022a +int attr grid_validateInputs 0x7f03022b +int attr grid_verticalGaps 0x7f03022c +int attr guidelineUseRtl 0x7f03022d +int attr haloColor 0x7f03022e +int attr haloRadius 0x7f03022f +int attr headerLayout 0x7f030230 +int attr height 0x7f030231 +int attr helperText 0x7f030232 +int attr helperTextEnabled 0x7f030233 +int attr helperTextTextAppearance 0x7f030234 +int attr helperTextTextColor 0x7f030235 +int attr hideAnimationBehavior 0x7f030236 +int attr hideMotionSpec 0x7f030237 +int attr hideNavigationIcon 0x7f030238 +int attr hideOnContentScroll 0x7f030239 +int attr hideOnScroll 0x7f03023a +int attr hintAnimationEnabled 0x7f03023b +int attr hintEnabled 0x7f03023c +int attr hintTextAppearance 0x7f03023d +int attr hintTextColor 0x7f03023e +int attr homeAsUpIndicator 0x7f03023f +int attr homeLayout 0x7f030240 +int attr horizontalOffset 0x7f030241 +int attr horizontalOffsetWithText 0x7f030242 +int attr hoveredFocusedTranslationZ 0x7f030243 +int attr icon 0x7f030244 +int attr iconEndPadding 0x7f030245 +int attr iconGravity 0x7f030246 +int attr iconPadding 0x7f030247 +int attr iconSize 0x7f030248 +int attr iconStartPadding 0x7f030249 +int attr iconTint 0x7f03024a +int attr iconTintMode 0x7f03024b +int attr iconifiedByDefault 0x7f03024c +int attr ifTagNotSet 0x7f03024d +int attr ifTagSet 0x7f03024e +int attr imageButtonStyle 0x7f03024f +int attr imagePanX 0x7f030250 +int attr imagePanY 0x7f030251 +int attr imageRotate 0x7f030252 +int attr imageZoom 0x7f030253 +int attr indeterminateAnimationType 0x7f030254 +int attr indeterminateProgressStyle 0x7f030255 +int attr indicatorColor 0x7f030256 +int attr indicatorDirectionCircular 0x7f030257 +int attr indicatorDirectionLinear 0x7f030258 +int attr indicatorInset 0x7f030259 +int attr indicatorSize 0x7f03025a +int attr indicatorTrackGapSize 0x7f03025b +int attr initialActivityCount 0x7f03025c +int attr insetForeground 0x7f03025d +int attr isLightTheme 0x7f03025e +int attr isMaterial3DynamicColorApplied 0x7f03025f +int attr isMaterial3Theme 0x7f030260 +int attr isMaterialTheme 0x7f030261 +int attr itemActiveIndicatorStyle 0x7f030262 +int attr itemBackground 0x7f030263 +int attr itemFillColor 0x7f030264 +int attr itemHorizontalPadding 0x7f030265 +int attr itemHorizontalTranslationEnabled 0x7f030266 +int attr itemIconPadding 0x7f030267 +int attr itemIconSize 0x7f030268 +int attr itemIconTint 0x7f030269 +int attr itemMaxLines 0x7f03026a +int attr itemMinHeight 0x7f03026b +int attr itemPadding 0x7f03026c +int attr itemPaddingBottom 0x7f03026d +int attr itemPaddingTop 0x7f03026e +int attr itemRippleColor 0x7f03026f +int attr itemShapeAppearance 0x7f030270 +int attr itemShapeAppearanceOverlay 0x7f030271 +int attr itemShapeFillColor 0x7f030272 +int attr itemShapeInsetBottom 0x7f030273 +int attr itemShapeInsetEnd 0x7f030274 +int attr itemShapeInsetStart 0x7f030275 +int attr itemShapeInsetTop 0x7f030276 +int attr itemSpacing 0x7f030277 +int attr itemStrokeColor 0x7f030278 +int attr itemStrokeWidth 0x7f030279 +int attr itemTextAppearance 0x7f03027a +int attr itemTextAppearanceActive 0x7f03027b +int attr itemTextAppearanceActiveBoldEnabled 0x7f03027c +int attr itemTextAppearanceInactive 0x7f03027d +int attr itemTextColor 0x7f03027e +int attr itemVerticalPadding 0x7f03027f +int attr keyPositionType 0x7f030280 +int attr keyboardIcon 0x7f030281 +int attr keylines 0x7f030282 +int attr lStar 0x7f030283 +int attr labelBehavior 0x7f030284 +int attr labelStyle 0x7f030285 +int attr labelVisibilityMode 0x7f030286 +int attr largeFontVerticalOffsetAdjustment 0x7f030287 +int attr lastBaselineToBottomHeight 0x7f030288 +int attr lastItemDecorated 0x7f030289 +int attr launchSingleTop 0x7f03028a +int attr layout 0x7f03028b +int attr layoutDescription 0x7f03028c +int attr layoutDuringTransition 0x7f03028d +int attr layoutManager 0x7f03028e +int attr layout_anchor 0x7f03028f +int attr layout_anchorGravity 0x7f030290 +int attr layout_behavior 0x7f030291 +int attr layout_collapseMode 0x7f030292 +int attr layout_collapseParallaxMultiplier 0x7f030293 +int attr layout_constrainedHeight 0x7f030294 +int attr layout_constrainedWidth 0x7f030295 +int attr layout_constraintBaseline_creator 0x7f030296 +int attr layout_constraintBaseline_toBaselineOf 0x7f030297 +int attr layout_constraintBaseline_toBottomOf 0x7f030298 +int attr layout_constraintBaseline_toTopOf 0x7f030299 +int attr layout_constraintBottom_creator 0x7f03029a +int attr layout_constraintBottom_toBottomOf 0x7f03029b +int attr layout_constraintBottom_toTopOf 0x7f03029c +int attr layout_constraintCircle 0x7f03029d +int attr layout_constraintCircleAngle 0x7f03029e +int attr layout_constraintCircleRadius 0x7f03029f +int attr layout_constraintDimensionRatio 0x7f0302a0 +int attr layout_constraintEnd_toEndOf 0x7f0302a1 +int attr layout_constraintEnd_toStartOf 0x7f0302a2 +int attr layout_constraintGuide_begin 0x7f0302a3 +int attr layout_constraintGuide_end 0x7f0302a4 +int attr layout_constraintGuide_percent 0x7f0302a5 +int attr layout_constraintHeight 0x7f0302a6 +int attr layout_constraintHeight_default 0x7f0302a7 +int attr layout_constraintHeight_max 0x7f0302a8 +int attr layout_constraintHeight_min 0x7f0302a9 +int attr layout_constraintHeight_percent 0x7f0302aa +int attr layout_constraintHorizontal_bias 0x7f0302ab +int attr layout_constraintHorizontal_chainStyle 0x7f0302ac +int attr layout_constraintHorizontal_weight 0x7f0302ad +int attr layout_constraintLeft_creator 0x7f0302ae +int attr layout_constraintLeft_toLeftOf 0x7f0302af +int attr layout_constraintLeft_toRightOf 0x7f0302b0 +int attr layout_constraintRight_creator 0x7f0302b1 +int attr layout_constraintRight_toLeftOf 0x7f0302b2 +int attr layout_constraintRight_toRightOf 0x7f0302b3 +int attr layout_constraintStart_toEndOf 0x7f0302b4 +int attr layout_constraintStart_toStartOf 0x7f0302b5 +int attr layout_constraintTag 0x7f0302b6 +int attr layout_constraintTop_creator 0x7f0302b7 +int attr layout_constraintTop_toBottomOf 0x7f0302b8 +int attr layout_constraintTop_toTopOf 0x7f0302b9 +int attr layout_constraintVertical_bias 0x7f0302ba +int attr layout_constraintVertical_chainStyle 0x7f0302bb +int attr layout_constraintVertical_weight 0x7f0302bc +int attr layout_constraintWidth 0x7f0302bd +int attr layout_constraintWidth_default 0x7f0302be +int attr layout_constraintWidth_max 0x7f0302bf +int attr layout_constraintWidth_min 0x7f0302c0 +int attr layout_constraintWidth_percent 0x7f0302c1 +int attr layout_dodgeInsetEdges 0x7f0302c2 +int attr layout_editor_absoluteX 0x7f0302c3 +int attr layout_editor_absoluteY 0x7f0302c4 +int attr layout_goneMarginBaseline 0x7f0302c5 +int attr layout_goneMarginBottom 0x7f0302c6 +int attr layout_goneMarginEnd 0x7f0302c7 +int attr layout_goneMarginLeft 0x7f0302c8 +int attr layout_goneMarginRight 0x7f0302c9 +int attr layout_goneMarginStart 0x7f0302ca +int attr layout_goneMarginTop 0x7f0302cb +int attr layout_insetEdge 0x7f0302cc +int attr layout_keyline 0x7f0302cd +int attr layout_marginBaseline 0x7f0302ce +int attr layout_optimizationLevel 0x7f0302cf +int attr layout_scrollEffect 0x7f0302d0 +int attr layout_scrollFlags 0x7f0302d1 +int attr layout_scrollInterpolator 0x7f0302d2 +int attr layout_wrapBehaviorInParent 0x7f0302d3 +int attr liftOnScroll 0x7f0302d4 +int attr liftOnScrollColor 0x7f0302d5 +int attr liftOnScrollTargetViewId 0x7f0302d6 +int attr limitBoundsTo 0x7f0302d7 +int attr lineHeight 0x7f0302d8 +int attr lineSpacing 0x7f0302d9 +int attr linearProgressIndicatorStyle 0x7f0302da +int attr listChoiceBackgroundIndicator 0x7f0302db +int attr listChoiceIndicatorMultipleAnimated 0x7f0302dc +int attr listChoiceIndicatorSingleAnimated 0x7f0302dd +int attr listDividerAlertDialog 0x7f0302de +int attr listItemLayout 0x7f0302df +int attr listLayout 0x7f0302e0 +int attr listMenuViewStyle 0x7f0302e1 +int attr listPopupWindowStyle 0x7f0302e2 +int attr listPreferredItemHeight 0x7f0302e3 +int attr listPreferredItemHeightLarge 0x7f0302e4 +int attr listPreferredItemHeightSmall 0x7f0302e5 +int attr listPreferredItemPaddingEnd 0x7f0302e6 +int attr listPreferredItemPaddingLeft 0x7f0302e7 +int attr listPreferredItemPaddingRight 0x7f0302e8 +int attr listPreferredItemPaddingStart 0x7f0302e9 +int attr logo 0x7f0302ea +int attr logoAdjustViewBounds 0x7f0302eb +int attr logoDescription 0x7f0302ec +int attr logoScaleType 0x7f0302ed +int attr marginHorizontal 0x7f0302ee +int attr marginLeftSystemWindowInsets 0x7f0302ef +int attr marginRightSystemWindowInsets 0x7f0302f0 +int attr marginTopSystemWindowInsets 0x7f0302f1 +int attr materialAlertDialogBodyTextStyle 0x7f0302f2 +int attr materialAlertDialogButtonSpacerVisibility 0x7f0302f3 +int attr materialAlertDialogTheme 0x7f0302f4 +int attr materialAlertDialogTitleIconStyle 0x7f0302f5 +int attr materialAlertDialogTitlePanelStyle 0x7f0302f6 +int attr materialAlertDialogTitleTextStyle 0x7f0302f7 +int attr materialButtonOutlinedStyle 0x7f0302f8 +int attr materialButtonStyle 0x7f0302f9 +int attr materialButtonToggleGroupStyle 0x7f0302fa +int attr materialCalendarDay 0x7f0302fb +int attr materialCalendarDayOfWeekLabel 0x7f0302fc +int attr materialCalendarFullscreenTheme 0x7f0302fd +int attr materialCalendarHeaderCancelButton 0x7f0302fe +int attr materialCalendarHeaderConfirmButton 0x7f0302ff +int attr materialCalendarHeaderDivider 0x7f030300 +int attr materialCalendarHeaderLayout 0x7f030301 +int attr materialCalendarHeaderSelection 0x7f030302 +int attr materialCalendarHeaderTitle 0x7f030303 +int attr materialCalendarHeaderToggleButton 0x7f030304 +int attr materialCalendarMonth 0x7f030305 +int attr materialCalendarMonthNavigationButton 0x7f030306 +int attr materialCalendarStyle 0x7f030307 +int attr materialCalendarTheme 0x7f030308 +int attr materialCalendarYearNavigationButton 0x7f030309 +int attr materialCardViewElevatedStyle 0x7f03030a +int attr materialCardViewFilledStyle 0x7f03030b +int attr materialCardViewOutlinedStyle 0x7f03030c +int attr materialCardViewStyle 0x7f03030d +int attr materialCircleRadius 0x7f03030e +int attr materialClockStyle 0x7f03030f +int attr materialDisplayDividerStyle 0x7f030310 +int attr materialDividerHeavyStyle 0x7f030311 +int attr materialDividerStyle 0x7f030312 +int attr materialIconButtonFilledStyle 0x7f030313 +int attr materialIconButtonFilledTonalStyle 0x7f030314 +int attr materialIconButtonOutlinedStyle 0x7f030315 +int attr materialIconButtonStyle 0x7f030316 +int attr materialSearchBarStyle 0x7f030317 +int attr materialSearchViewPrefixStyle 0x7f030318 +int attr materialSearchViewStyle 0x7f030319 +int attr materialSearchViewToolbarHeight 0x7f03031a +int attr materialSearchViewToolbarStyle 0x7f03031b +int attr materialSwitchStyle 0x7f03031c +int attr materialThemeOverlay 0x7f03031d +int attr materialTimePickerStyle 0x7f03031e +int attr materialTimePickerTheme 0x7f03031f +int attr materialTimePickerTitleStyle 0x7f030320 +int attr maui_edgetoedge_optout 0x7f030321 +int attr maui_splash 0x7f030322 +int attr maxAcceleration 0x7f030323 +int attr maxActionInlineWidth 0x7f030324 +int attr maxButtonHeight 0x7f030325 +int attr maxCharacterCount 0x7f030326 +int attr maxHeight 0x7f030327 +int attr maxImageSize 0x7f030328 +int attr maxLines 0x7f030329 +int attr maxNumber 0x7f03032a +int attr maxVelocity 0x7f03032b +int attr maxWidth 0x7f03032c +int attr measureWithLargestChild 0x7f03032d +int attr menu 0x7f03032e +int attr menuAlignmentMode 0x7f03032f +int attr menuGravity 0x7f030330 +int attr methodName 0x7f030331 +int attr mimeType 0x7f030332 +int attr minHeight 0x7f030333 +int attr minHideDelay 0x7f030334 +int attr minSeparation 0x7f030335 +int attr minTouchTargetSize 0x7f030336 +int attr minWidth 0x7f030337 +int attr mock_diagonalsColor 0x7f030338 +int attr mock_label 0x7f030339 +int attr mock_labelBackgroundColor 0x7f03033a +int attr mock_labelColor 0x7f03033b +int attr mock_showDiagonals 0x7f03033c +int attr mock_showLabel 0x7f03033d +int attr motionDebug 0x7f03033e +int attr motionDurationExtraLong1 0x7f03033f +int attr motionDurationExtraLong2 0x7f030340 +int attr motionDurationExtraLong3 0x7f030341 +int attr motionDurationExtraLong4 0x7f030342 +int attr motionDurationLong1 0x7f030343 +int attr motionDurationLong2 0x7f030344 +int attr motionDurationLong3 0x7f030345 +int attr motionDurationLong4 0x7f030346 +int attr motionDurationMedium1 0x7f030347 +int attr motionDurationMedium2 0x7f030348 +int attr motionDurationMedium3 0x7f030349 +int attr motionDurationMedium4 0x7f03034a +int attr motionDurationShort1 0x7f03034b +int attr motionDurationShort2 0x7f03034c +int attr motionDurationShort3 0x7f03034d +int attr motionDurationShort4 0x7f03034e +int attr motionEasingAccelerated 0x7f03034f +int attr motionEasingDecelerated 0x7f030350 +int attr motionEasingEmphasized 0x7f030351 +int attr motionEasingEmphasizedAccelerateInterpolator 0x7f030352 +int attr motionEasingEmphasizedDecelerateInterpolator 0x7f030353 +int attr motionEasingEmphasizedInterpolator 0x7f030354 +int attr motionEasingLinear 0x7f030355 +int attr motionEasingLinearInterpolator 0x7f030356 +int attr motionEasingStandard 0x7f030357 +int attr motionEasingStandardAccelerateInterpolator 0x7f030358 +int attr motionEasingStandardDecelerateInterpolator 0x7f030359 +int attr motionEasingStandardInterpolator 0x7f03035a +int attr motionEffect_alpha 0x7f03035b +int attr motionEffect_end 0x7f03035c +int attr motionEffect_move 0x7f03035d +int attr motionEffect_start 0x7f03035e +int attr motionEffect_strict 0x7f03035f +int attr motionEffect_translationX 0x7f030360 +int attr motionEffect_translationY 0x7f030361 +int attr motionEffect_viewTransition 0x7f030362 +int attr motionInterpolator 0x7f030363 +int attr motionPath 0x7f030364 +int attr motionPathRotate 0x7f030365 +int attr motionProgress 0x7f030366 +int attr motionStagger 0x7f030367 +int attr motionTarget 0x7f030368 +int attr motion_postLayoutCollision 0x7f030369 +int attr motion_triggerOnCollision 0x7f03036a +int attr moveWhenScrollAtTop 0x7f03036b +int attr multiChoiceItemLayout 0x7f03036c +int attr navGraph 0x7f03036d +int attr navigationContentDescription 0x7f03036e +int attr navigationIcon 0x7f03036f +int attr navigationIconTint 0x7f030370 +int attr navigationMode 0x7f030371 +int attr navigationRailStyle 0x7f030372 +int attr navigationViewStyle 0x7f030373 +int attr nestedScrollFlags 0x7f030374 +int attr nestedScrollViewStyle 0x7f030375 +int attr nestedScrollable 0x7f030376 +int attr nullable 0x7f030377 +int attr number 0x7f030378 +int attr numericModifiers 0x7f030379 +int attr offsetAlignmentMode 0x7f03037a +int attr onCross 0x7f03037b +int attr onHide 0x7f03037c +int attr onNegativeCross 0x7f03037d +int attr onPositiveCross 0x7f03037e +int attr onShow 0x7f03037f +int attr onStateTransition 0x7f030380 +int attr onTouchUp 0x7f030381 +int attr overlapAnchor 0x7f030382 +int attr overlay 0x7f030383 +int attr paddingBottomNoButtons 0x7f030384 +int attr paddingBottomSystemWindowInsets 0x7f030385 +int attr paddingEnd 0x7f030386 +int attr paddingLeftSystemWindowInsets 0x7f030387 +int attr paddingRightSystemWindowInsets 0x7f030388 +int attr paddingStart 0x7f030389 +int attr paddingStartSystemWindowInsets 0x7f03038a +int attr paddingTopNoTitle 0x7f03038b +int attr paddingTopSystemWindowInsets 0x7f03038c +int attr panelBackground 0x7f03038d +int attr panelMenuListTheme 0x7f03038e +int attr panelMenuListWidth 0x7f03038f +int attr passwordToggleContentDescription 0x7f030390 +int attr passwordToggleDrawable 0x7f030391 +int attr passwordToggleEnabled 0x7f030392 +int attr passwordToggleTint 0x7f030393 +int attr passwordToggleTintMode 0x7f030394 +int attr pathMotionArc 0x7f030395 +int attr path_percent 0x7f030396 +int attr percentHeight 0x7f030397 +int attr percentWidth 0x7f030398 +int attr percentX 0x7f030399 +int attr percentY 0x7f03039a +int attr perpendicularPath_percent 0x7f03039b +int attr pivotAnchor 0x7f03039c +int attr placeholderActivityName 0x7f03039d +int attr placeholderText 0x7f03039e +int attr placeholderTextAppearance 0x7f03039f +int attr placeholderTextColor 0x7f0303a0 +int attr placeholder_emptyVisibility 0x7f0303a1 +int attr polarRelativeTo 0x7f0303a2 +int attr popEnterAnim 0x7f0303a3 +int attr popExitAnim 0x7f0303a4 +int attr popUpTo 0x7f0303a5 +int attr popUpToInclusive 0x7f0303a6 +int attr popUpToSaveState 0x7f0303a7 +int attr popupMenuBackground 0x7f0303a8 +int attr popupMenuStyle 0x7f0303a9 +int attr popupTheme 0x7f0303aa +int attr popupWindowStyle 0x7f0303ab +int attr prefixText 0x7f0303ac +int attr prefixTextAppearance 0x7f0303ad +int attr prefixTextColor 0x7f0303ae +int attr preserveIconSpacing 0x7f0303af +int attr pressedTranslationZ 0x7f0303b0 +int attr primaryActivityName 0x7f0303b1 +int attr progressBarPadding 0x7f0303b2 +int attr progressBarStyle 0x7f0303b3 +int attr quantizeMotionInterpolator 0x7f0303b4 +int attr quantizeMotionPhase 0x7f0303b5 +int attr quantizeMotionSteps 0x7f0303b6 +int attr queryBackground 0x7f0303b7 +int attr queryHint 0x7f0303b8 +int attr queryPatterns 0x7f0303b9 +int attr radioButtonStyle 0x7f0303ba +int attr rangeFillColor 0x7f0303bb +int attr ratingBarStyle 0x7f0303bc +int attr ratingBarStyleIndicator 0x7f0303bd +int attr ratingBarStyleSmall 0x7f0303be +int attr reactiveGuide_animateChange 0x7f0303bf +int attr reactiveGuide_applyToAllConstraintSets 0x7f0303c0 +int attr reactiveGuide_applyToConstraintSet 0x7f0303c1 +int attr reactiveGuide_valueId 0x7f0303c2 +int attr recyclerViewStyle 0x7f0303c3 +int attr region_heightLessThan 0x7f0303c4 +int attr region_heightMoreThan 0x7f0303c5 +int attr region_widthLessThan 0x7f0303c6 +int attr region_widthMoreThan 0x7f0303c7 +int attr removeEmbeddedFabElevation 0x7f0303c8 +int attr restoreState 0x7f0303c9 +int attr reverseLayout 0x7f0303ca +int attr rippleColor 0x7f0303cb +int attr rotationCenterId 0x7f0303cc +int attr round 0x7f0303cd +int attr roundPercent 0x7f0303ce +int attr route 0x7f0303cf +int attr saturation 0x7f0303d0 +int attr scaleFromTextSize 0x7f0303d1 +int attr scrimAnimationDuration 0x7f0303d2 +int attr scrimBackground 0x7f0303d3 +int attr scrimVisibleHeightTrigger 0x7f0303d4 +int attr scrollViewStyle 0x7f0303d5 +int attr searchHintIcon 0x7f0303d6 +int attr searchIcon 0x7f0303d7 +int attr searchPrefixText 0x7f0303d8 +int attr searchViewStyle 0x7f0303d9 +int attr secondaryActivityAction 0x7f0303da +int attr secondaryActivityName 0x7f0303db +int attr seekBarStyle 0x7f0303dc +int attr selectableItemBackground 0x7f0303dd +int attr selectableItemBackgroundBorderless 0x7f0303de +int attr selectionRequired 0x7f0303df +int attr selectorSize 0x7f0303e0 +int attr setsTag 0x7f0303e1 +int attr shapeAppearance 0x7f0303e2 +int attr shapeAppearanceCornerExtraLarge 0x7f0303e3 +int attr shapeAppearanceCornerExtraSmall 0x7f0303e4 +int attr shapeAppearanceCornerLarge 0x7f0303e5 +int attr shapeAppearanceCornerMedium 0x7f0303e6 +int attr shapeAppearanceCornerSmall 0x7f0303e7 +int attr shapeAppearanceLargeComponent 0x7f0303e8 +int attr shapeAppearanceMediumComponent 0x7f0303e9 +int attr shapeAppearanceOverlay 0x7f0303ea +int attr shapeAppearanceSmallComponent 0x7f0303eb +int attr shapeCornerFamily 0x7f0303ec +int attr shortcutMatchRequired 0x7f0303ed +int attr shouldRemoveExpandedCorners 0x7f0303ee +int attr showAnimationBehavior 0x7f0303ef +int attr showAsAction 0x7f0303f0 +int attr showDelay 0x7f0303f1 +int attr showDividers 0x7f0303f2 +int attr showMarker 0x7f0303f3 +int attr showMotionSpec 0x7f0303f4 +int attr showPaths 0x7f0303f5 +int attr showText 0x7f0303f6 +int attr showTitle 0x7f0303f7 +int attr shrinkMotionSpec 0x7f0303f8 +int attr sideSheetDialogTheme 0x7f0303f9 +int attr sideSheetModalStyle 0x7f0303fa +int attr simpleItemLayout 0x7f0303fb +int attr simpleItemSelectedColor 0x7f0303fc +int attr simpleItemSelectedRippleColor 0x7f0303fd +int attr simpleItems 0x7f0303fe +int attr singleChoiceItemLayout 0x7f0303ff +int attr singleLine 0x7f030400 +int attr singleSelection 0x7f030401 +int attr sizePercent 0x7f030402 +int attr sliderStyle 0x7f030403 +int attr snackbarButtonStyle 0x7f030404 +int attr snackbarStyle 0x7f030405 +int attr snackbarTextViewStyle 0x7f030406 +int attr spanCount 0x7f030407 +int attr spinBars 0x7f030408 +int attr spinnerDropDownItemStyle 0x7f030409 +int attr spinnerStyle 0x7f03040a +int attr splitLayoutDirection 0x7f03040b +int attr splitMaxAspectRatioInLandscape 0x7f03040c +int attr splitMaxAspectRatioInPortrait 0x7f03040d +int attr splitMinHeightDp 0x7f03040e +int attr splitMinSmallestWidthDp 0x7f03040f +int attr splitMinWidthDp 0x7f030410 +int attr splitRatio 0x7f030411 +int attr splitTrack 0x7f030412 +int attr springBoundary 0x7f030413 +int attr springDamping 0x7f030414 +int attr springMass 0x7f030415 +int attr springStiffness 0x7f030416 +int attr springStopThreshold 0x7f030417 +int attr srcCompat 0x7f030418 +int attr stackFromEnd 0x7f030419 +int attr staggered 0x7f03041a +int attr startDestination 0x7f03041b +int attr startIconCheckable 0x7f03041c +int attr startIconContentDescription 0x7f03041d +int attr startIconDrawable 0x7f03041e +int attr startIconMinSize 0x7f03041f +int attr startIconScaleType 0x7f030420 +int attr startIconTint 0x7f030421 +int attr startIconTintMode 0x7f030422 +int attr stateLabels 0x7f030423 +int attr state_above_anchor 0x7f030424 +int attr state_collapsed 0x7f030425 +int attr state_collapsible 0x7f030426 +int attr state_dragged 0x7f030427 +int attr state_error 0x7f030428 +int attr state_indeterminate 0x7f030429 +int attr state_liftable 0x7f03042a +int attr state_lifted 0x7f03042b +int attr state_with_icon 0x7f03042c +int attr statusBarBackground 0x7f03042d +int attr statusBarForeground 0x7f03042e +int attr statusBarScrim 0x7f03042f +int attr stickyPlaceholder 0x7f030430 +int attr strokeColor 0x7f030431 +int attr strokeWidth 0x7f030432 +int attr subMenuArrow 0x7f030433 +int attr subheaderColor 0x7f030434 +int attr subheaderInsetEnd 0x7f030435 +int attr subheaderInsetStart 0x7f030436 +int attr subheaderTextAppearance 0x7f030437 +int attr submitBackground 0x7f030438 +int attr subtitle 0x7f030439 +int attr subtitleCentered 0x7f03043a +int attr subtitleTextAppearance 0x7f03043b +int attr subtitleTextColor 0x7f03043c +int attr subtitleTextStyle 0x7f03043d +int attr suffixText 0x7f03043e +int attr suffixTextAppearance 0x7f03043f +int attr suffixTextColor 0x7f030440 +int attr suggestionRowLayout 0x7f030441 +int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f030442 +int attr switchMinWidth 0x7f030443 +int attr switchPadding 0x7f030444 +int attr switchStyle 0x7f030445 +int attr switchTextAppearance 0x7f030446 +int attr tabBackground 0x7f030447 +int attr tabContentStart 0x7f030448 +int attr tabGravity 0x7f030449 +int attr tabIconTint 0x7f03044a +int attr tabIconTintMode 0x7f03044b +int attr tabIndicator 0x7f03044c +int attr tabIndicatorAnimationDuration 0x7f03044d +int attr tabIndicatorAnimationMode 0x7f03044e +int attr tabIndicatorColor 0x7f03044f +int attr tabIndicatorFullWidth 0x7f030450 +int attr tabIndicatorGravity 0x7f030451 +int attr tabIndicatorHeight 0x7f030452 +int attr tabInlineLabel 0x7f030453 +int attr tabMaxWidth 0x7f030454 +int attr tabMinWidth 0x7f030455 +int attr tabMode 0x7f030456 +int attr tabPadding 0x7f030457 +int attr tabPaddingBottom 0x7f030458 +int attr tabPaddingEnd 0x7f030459 +int attr tabPaddingStart 0x7f03045a +int attr tabPaddingTop 0x7f03045b +int attr tabRippleColor 0x7f03045c +int attr tabSecondaryStyle 0x7f03045d +int attr tabSelectedTextAppearance 0x7f03045e +int attr tabSelectedTextColor 0x7f03045f +int attr tabStyle 0x7f030460 +int attr tabTextAppearance 0x7f030461 +int attr tabTextColor 0x7f030462 +int attr tabUnboundedRipple 0x7f030463 +int attr tag 0x7f030464 +int attr targetId 0x7f030465 +int attr targetPackage 0x7f030466 +int attr telltales_tailColor 0x7f030467 +int attr telltales_tailScale 0x7f030468 +int attr telltales_velocityMode 0x7f030469 +int attr textAllCaps 0x7f03046a +int attr textAppearanceBody1 0x7f03046b +int attr textAppearanceBody2 0x7f03046c +int attr textAppearanceBodyLarge 0x7f03046d +int attr textAppearanceBodyMedium 0x7f03046e +int attr textAppearanceBodySmall 0x7f03046f +int attr textAppearanceButton 0x7f030470 +int attr textAppearanceCaption 0x7f030471 +int attr textAppearanceDisplayLarge 0x7f030472 +int attr textAppearanceDisplayMedium 0x7f030473 +int attr textAppearanceDisplaySmall 0x7f030474 +int attr textAppearanceHeadline1 0x7f030475 +int attr textAppearanceHeadline2 0x7f030476 +int attr textAppearanceHeadline3 0x7f030477 +int attr textAppearanceHeadline4 0x7f030478 +int attr textAppearanceHeadline5 0x7f030479 +int attr textAppearanceHeadline6 0x7f03047a +int attr textAppearanceHeadlineLarge 0x7f03047b +int attr textAppearanceHeadlineMedium 0x7f03047c +int attr textAppearanceHeadlineSmall 0x7f03047d +int attr textAppearanceLabelLarge 0x7f03047e +int attr textAppearanceLabelMedium 0x7f03047f +int attr textAppearanceLabelSmall 0x7f030480 +int attr textAppearanceLargePopupMenu 0x7f030481 +int attr textAppearanceLineHeightEnabled 0x7f030482 +int attr textAppearanceListItem 0x7f030483 +int attr textAppearanceListItemSecondary 0x7f030484 +int attr textAppearanceListItemSmall 0x7f030485 +int attr textAppearanceOverline 0x7f030486 +int attr textAppearancePopupMenuHeader 0x7f030487 +int attr textAppearanceSearchResultSubtitle 0x7f030488 +int attr textAppearanceSearchResultTitle 0x7f030489 +int attr textAppearanceSmallPopupMenu 0x7f03048a +int attr textAppearanceSubtitle1 0x7f03048b +int attr textAppearanceSubtitle2 0x7f03048c +int attr textAppearanceTitleLarge 0x7f03048d +int attr textAppearanceTitleMedium 0x7f03048e +int attr textAppearanceTitleSmall 0x7f03048f +int attr textBackground 0x7f030490 +int attr textBackgroundPanX 0x7f030491 +int attr textBackgroundPanY 0x7f030492 +int attr textBackgroundRotate 0x7f030493 +int attr textBackgroundZoom 0x7f030494 +int attr textColorAlertDialogListItem 0x7f030495 +int attr textColorSearchUrl 0x7f030496 +int attr textEndPadding 0x7f030497 +int attr textFillColor 0x7f030498 +int attr textInputFilledDenseStyle 0x7f030499 +int attr textInputFilledExposedDropdownMenuStyle 0x7f03049a +int attr textInputFilledStyle 0x7f03049b +int attr textInputLayoutFocusedRectEnabled 0x7f03049c +int attr textInputOutlinedDenseStyle 0x7f03049d +int attr textInputOutlinedExposedDropdownMenuStyle 0x7f03049e +int attr textInputOutlinedStyle 0x7f03049f +int attr textInputStyle 0x7f0304a0 +int attr textLocale 0x7f0304a1 +int attr textOutlineColor 0x7f0304a2 +int attr textOutlineThickness 0x7f0304a3 +int attr textPanX 0x7f0304a4 +int attr textPanY 0x7f0304a5 +int attr textStartPadding 0x7f0304a6 +int attr textureBlurFactor 0x7f0304a7 +int attr textureEffect 0x7f0304a8 +int attr textureHeight 0x7f0304a9 +int attr textureWidth 0x7f0304aa +int attr theme 0x7f0304ab +int attr thickness 0x7f0304ac +int attr thumbColor 0x7f0304ad +int attr thumbElevation 0x7f0304ae +int attr thumbHeight 0x7f0304af +int attr thumbIcon 0x7f0304b0 +int attr thumbIconSize 0x7f0304b1 +int attr thumbIconTint 0x7f0304b2 +int attr thumbIconTintMode 0x7f0304b3 +int attr thumbRadius 0x7f0304b4 +int attr thumbStrokeColor 0x7f0304b5 +int attr thumbStrokeWidth 0x7f0304b6 +int attr thumbTextPadding 0x7f0304b7 +int attr thumbTint 0x7f0304b8 +int attr thumbTintMode 0x7f0304b9 +int attr thumbTrackGapSize 0x7f0304ba +int attr thumbWidth 0x7f0304bb +int attr tickColor 0x7f0304bc +int attr tickColorActive 0x7f0304bd +int attr tickColorInactive 0x7f0304be +int attr tickMark 0x7f0304bf +int attr tickMarkTint 0x7f0304c0 +int attr tickMarkTintMode 0x7f0304c1 +int attr tickRadiusActive 0x7f0304c2 +int attr tickRadiusInactive 0x7f0304c3 +int attr tickVisible 0x7f0304c4 +int attr tint 0x7f0304c5 +int attr tintMode 0x7f0304c6 +int attr tintNavigationIcon 0x7f0304c7 +int attr title 0x7f0304c8 +int attr titleCentered 0x7f0304c9 +int attr titleCollapseMode 0x7f0304ca +int attr titleEnabled 0x7f0304cb +int attr titleMargin 0x7f0304cc +int attr titleMarginBottom 0x7f0304cd +int attr titleMarginEnd 0x7f0304ce +int attr titleMarginStart 0x7f0304cf +int attr titleMarginTop 0x7f0304d0 +int attr titleMargins 0x7f0304d1 +int attr titlePositionInterpolator 0x7f0304d2 +int attr titleTextAppearance 0x7f0304d3 +int attr titleTextColor 0x7f0304d4 +int attr titleTextEllipsize 0x7f0304d5 +int attr titleTextStyle 0x7f0304d6 +int attr toggleCheckedStateOnClick 0x7f0304d7 +int attr toolbarId 0x7f0304d8 +int attr toolbarNavigationButtonStyle 0x7f0304d9 +int attr toolbarStyle 0x7f0304da +int attr toolbarSurfaceStyle 0x7f0304db +int attr tooltipForegroundColor 0x7f0304dc +int attr tooltipFrameBackground 0x7f0304dd +int attr tooltipStyle 0x7f0304de +int attr tooltipText 0x7f0304df +int attr topInsetScrimEnabled 0x7f0304e0 +int attr touchAnchorId 0x7f0304e1 +int attr touchAnchorSide 0x7f0304e2 +int attr touchRegionId 0x7f0304e3 +int attr track 0x7f0304e4 +int attr trackColor 0x7f0304e5 +int attr trackColorActive 0x7f0304e6 +int attr trackColorInactive 0x7f0304e7 +int attr trackCornerRadius 0x7f0304e8 +int attr trackDecoration 0x7f0304e9 +int attr trackDecorationTint 0x7f0304ea +int attr trackDecorationTintMode 0x7f0304eb +int attr trackHeight 0x7f0304ec +int attr trackInsideCornerSize 0x7f0304ed +int attr trackStopIndicatorSize 0x7f0304ee +int attr trackThickness 0x7f0304ef +int attr trackTint 0x7f0304f0 +int attr trackTintMode 0x7f0304f1 +int attr transformPivotTarget 0x7f0304f2 +int attr transitionDisable 0x7f0304f3 +int attr transitionEasing 0x7f0304f4 +int attr transitionFlags 0x7f0304f5 +int attr transitionPathRotate 0x7f0304f6 +int attr transitionShapeAppearance 0x7f0304f7 +int attr triggerId 0x7f0304f8 +int attr triggerReceiver 0x7f0304f9 +int attr triggerSlack 0x7f0304fa +int attr ttcIndex 0x7f0304fb +int attr upDuration 0x7f0304fc +int attr uri 0x7f0304fd +int attr useCompatPadding 0x7f0304fe +int attr useDrawerArrowDrawable 0x7f0304ff +int attr useMaterialThemeColors 0x7f030500 +int attr values 0x7f030501 +int attr verticalOffset 0x7f030502 +int attr verticalOffsetWithText 0x7f030503 +int attr viewInflaterClass 0x7f030504 +int attr viewTransitionMode 0x7f030505 +int attr viewTransitionOnCross 0x7f030506 +int attr viewTransitionOnNegativeCross 0x7f030507 +int attr viewTransitionOnPositiveCross 0x7f030508 +int attr visibilityMode 0x7f030509 +int attr voiceIcon 0x7f03050a +int attr warmth 0x7f03050b +int attr waveDecay 0x7f03050c +int attr waveOffset 0x7f03050d +int attr wavePeriod 0x7f03050e +int attr wavePhase 0x7f03050f +int attr waveShape 0x7f030510 +int attr waveVariesBy 0x7f030511 +int attr windowActionBar 0x7f030512 +int attr windowActionBarOverlay 0x7f030513 +int attr windowActionModeOverlay 0x7f030514 +int attr windowFixedHeightMajor 0x7f030515 +int attr windowFixedHeightMinor 0x7f030516 +int attr windowFixedWidthMajor 0x7f030517 +int attr windowFixedWidthMinor 0x7f030518 +int attr windowMinWidthMajor 0x7f030519 +int attr windowMinWidthMinor 0x7f03051a +int attr windowNoTitle 0x7f03051b +int attr yearSelectedStyle 0x7f03051c +int attr yearStyle 0x7f03051d +int attr yearTodayStyle 0x7f03051e +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_config_actionMenuItemAllCaps 0x7f040001 +int bool mtrl_btn_textappearance_all_caps 0x7f040002 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_decor_view_status_guard 0x7f050005 +int color abc_decor_view_status_guard_light 0x7f050006 +int color abc_hint_foreground_material_dark 0x7f050007 +int color abc_hint_foreground_material_light 0x7f050008 +int color abc_primary_text_disable_only_material_dark 0x7f050009 +int color abc_primary_text_disable_only_material_light 0x7f05000a +int color abc_primary_text_material_dark 0x7f05000b +int color abc_primary_text_material_light 0x7f05000c +int color abc_search_url_text 0x7f05000d +int color abc_search_url_text_normal 0x7f05000e +int color abc_search_url_text_pressed 0x7f05000f +int color abc_search_url_text_selected 0x7f050010 +int color abc_secondary_text_material_dark 0x7f050011 +int color abc_secondary_text_material_light 0x7f050012 +int color abc_tint_btn_checkable 0x7f050013 +int color abc_tint_default 0x7f050014 +int color abc_tint_edittext 0x7f050015 +int color abc_tint_seek_thumb 0x7f050016 +int color abc_tint_spinner 0x7f050017 +int color abc_tint_switch_track 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color androidx_core_ripple_material_light 0x7f05001b +int color androidx_core_secondary_text_default_material_light 0x7f05001c +int color background_floating_material_dark 0x7f05001d +int color background_floating_material_light 0x7f05001e +int color background_material_dark 0x7f05001f +int color background_material_light 0x7f050020 +int color bright_foreground_disabled_material_dark 0x7f050021 +int color bright_foreground_disabled_material_light 0x7f050022 +int color bright_foreground_inverse_material_dark 0x7f050023 +int color bright_foreground_inverse_material_light 0x7f050024 +int color bright_foreground_material_dark 0x7f050025 +int color bright_foreground_material_light 0x7f050026 +int color browser_actions_bg_grey 0x7f050027 +int color browser_actions_divider_color 0x7f050028 +int color browser_actions_text_color 0x7f050029 +int color browser_actions_title_color 0x7f05002a +int color button_material_dark 0x7f05002b +int color button_material_light 0x7f05002c +int color call_notification_answer_color 0x7f05002d +int color call_notification_decline_color 0x7f05002e +int color cardview_dark_background 0x7f05002f +int color cardview_light_background 0x7f050030 +int color cardview_shadow_end_color 0x7f050031 +int color cardview_shadow_start_color 0x7f050032 +int color colorAccent 0x7f050033 +int color colorActionMenuTextColor 0x7f050034 +int color colorPrimary 0x7f050035 +int color colorPrimaryDark 0x7f050036 +int color design_bottom_navigation_shadow_color 0x7f050037 +int color design_box_stroke_color 0x7f050038 +int color design_dark_default_color_background 0x7f050039 +int color design_dark_default_color_error 0x7f05003a +int color design_dark_default_color_on_background 0x7f05003b +int color design_dark_default_color_on_error 0x7f05003c +int color design_dark_default_color_on_primary 0x7f05003d +int color design_dark_default_color_on_secondary 0x7f05003e +int color design_dark_default_color_on_surface 0x7f05003f +int color design_dark_default_color_primary 0x7f050040 +int color design_dark_default_color_primary_dark 0x7f050041 +int color design_dark_default_color_primary_variant 0x7f050042 +int color design_dark_default_color_secondary 0x7f050043 +int color design_dark_default_color_secondary_variant 0x7f050044 +int color design_dark_default_color_surface 0x7f050045 +int color design_default_color_background 0x7f050046 +int color design_default_color_error 0x7f050047 +int color design_default_color_on_background 0x7f050048 +int color design_default_color_on_error 0x7f050049 +int color design_default_color_on_primary 0x7f05004a +int color design_default_color_on_secondary 0x7f05004b +int color design_default_color_on_surface 0x7f05004c +int color design_default_color_primary 0x7f05004d +int color design_default_color_primary_dark 0x7f05004e +int color design_default_color_primary_variant 0x7f05004f +int color design_default_color_secondary 0x7f050050 +int color design_default_color_secondary_variant 0x7f050051 +int color design_default_color_surface 0x7f050052 +int color design_error 0x7f050053 +int color design_fab_shadow_end_color 0x7f050054 +int color design_fab_shadow_mid_color 0x7f050055 +int color design_fab_shadow_start_color 0x7f050056 +int color design_fab_stroke_end_inner_color 0x7f050057 +int color design_fab_stroke_end_outer_color 0x7f050058 +int color design_fab_stroke_top_inner_color 0x7f050059 +int color design_fab_stroke_top_outer_color 0x7f05005a +int color design_icon_tint 0x7f05005b +int color design_snackbar_background_color 0x7f05005c +int color dim_foreground_disabled_material_dark 0x7f05005d +int color dim_foreground_disabled_material_light 0x7f05005e +int color dim_foreground_material_dark 0x7f05005f +int color dim_foreground_material_light 0x7f050060 +int color error_color_material_dark 0x7f050061 +int color error_color_material_light 0x7f050062 +int color foreground_material_dark 0x7f050063 +int color foreground_material_light 0x7f050064 +int color highlighted_text_material_dark 0x7f050065 +int color highlighted_text_material_light 0x7f050066 +int color m3_appbar_overlay_color 0x7f050067 +int color m3_assist_chip_icon_tint_color 0x7f050068 +int color m3_assist_chip_stroke_color 0x7f050069 +int color m3_bottom_sheet_drag_handle_color 0x7f05006a +int color m3_button_background_color_selector 0x7f05006b +int color m3_button_foreground_color_selector 0x7f05006c +int color m3_button_outline_color_selector 0x7f05006d +int color m3_button_ripple_color 0x7f05006e +int color m3_button_ripple_color_selector 0x7f05006f +int color m3_calendar_item_disabled_text 0x7f050070 +int color m3_calendar_item_stroke_color 0x7f050071 +int color m3_card_foreground_color 0x7f050072 +int color m3_card_ripple_color 0x7f050073 +int color m3_card_stroke_color 0x7f050074 +int color m3_checkbox_button_icon_tint 0x7f050075 +int color m3_checkbox_button_tint 0x7f050076 +int color m3_chip_assist_text_color 0x7f050077 +int color m3_chip_background_color 0x7f050078 +int color m3_chip_ripple_color 0x7f050079 +int color m3_chip_stroke_color 0x7f05007a +int color m3_chip_text_color 0x7f05007b +int color m3_dark_default_color_primary_text 0x7f05007c +int color m3_dark_default_color_secondary_text 0x7f05007d +int color m3_dark_highlighted_text 0x7f05007e +int color m3_dark_hint_foreground 0x7f05007f +int color m3_dark_primary_text_disable_only 0x7f050080 +int color m3_default_color_primary_text 0x7f050081 +int color m3_default_color_secondary_text 0x7f050082 +int color m3_dynamic_dark_default_color_primary_text 0x7f050083 +int color m3_dynamic_dark_default_color_secondary_text 0x7f050084 +int color m3_dynamic_dark_highlighted_text 0x7f050085 +int color m3_dynamic_dark_hint_foreground 0x7f050086 +int color m3_dynamic_dark_primary_text_disable_only 0x7f050087 +int color m3_dynamic_default_color_primary_text 0x7f050088 +int color m3_dynamic_default_color_secondary_text 0x7f050089 +int color m3_dynamic_highlighted_text 0x7f05008a +int color m3_dynamic_hint_foreground 0x7f05008b +int color m3_dynamic_primary_text_disable_only 0x7f05008c +int color m3_efab_ripple_color_selector 0x7f05008d +int color m3_elevated_chip_background_color 0x7f05008e +int color m3_fab_efab_background_color_selector 0x7f05008f +int color m3_fab_efab_foreground_color_selector 0x7f050090 +int color m3_fab_ripple_color_selector 0x7f050091 +int color m3_filled_icon_button_container_color_selector 0x7f050092 +int color m3_highlighted_text 0x7f050093 +int color m3_hint_foreground 0x7f050094 +int color m3_icon_button_icon_color_selector 0x7f050095 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x7f050096 +int color m3_navigation_bar_item_with_indicator_label_tint 0x7f050097 +int color m3_navigation_bar_ripple_color_selector 0x7f050098 +int color m3_navigation_item_background_color 0x7f050099 +int color m3_navigation_item_icon_tint 0x7f05009a +int color m3_navigation_item_ripple_color 0x7f05009b +int color m3_navigation_item_text_color 0x7f05009c +int color m3_navigation_rail_item_with_indicator_icon_tint 0x7f05009d +int color m3_navigation_rail_item_with_indicator_label_tint 0x7f05009e +int color m3_navigation_rail_ripple_color_selector 0x7f05009f +int color m3_popupmenu_overlay_color 0x7f0500a0 +int color m3_primary_text_disable_only 0x7f0500a1 +int color m3_radiobutton_button_tint 0x7f0500a2 +int color m3_radiobutton_ripple_tint 0x7f0500a3 +int color m3_ref_palette_black 0x7f0500a4 +int color m3_ref_palette_dynamic_neutral0 0x7f0500a5 +int color m3_ref_palette_dynamic_neutral10 0x7f0500a6 +int color m3_ref_palette_dynamic_neutral100 0x7f0500a7 +int color m3_ref_palette_dynamic_neutral12 0x7f0500a8 +int color m3_ref_palette_dynamic_neutral17 0x7f0500a9 +int color m3_ref_palette_dynamic_neutral20 0x7f0500aa +int color m3_ref_palette_dynamic_neutral22 0x7f0500ab +int color m3_ref_palette_dynamic_neutral24 0x7f0500ac +int color m3_ref_palette_dynamic_neutral30 0x7f0500ad +int color m3_ref_palette_dynamic_neutral4 0x7f0500ae +int color m3_ref_palette_dynamic_neutral40 0x7f0500af +int color m3_ref_palette_dynamic_neutral50 0x7f0500b0 +int color m3_ref_palette_dynamic_neutral6 0x7f0500b1 +int color m3_ref_palette_dynamic_neutral60 0x7f0500b2 +int color m3_ref_palette_dynamic_neutral70 0x7f0500b3 +int color m3_ref_palette_dynamic_neutral80 0x7f0500b4 +int color m3_ref_palette_dynamic_neutral87 0x7f0500b5 +int color m3_ref_palette_dynamic_neutral90 0x7f0500b6 +int color m3_ref_palette_dynamic_neutral92 0x7f0500b7 +int color m3_ref_palette_dynamic_neutral94 0x7f0500b8 +int color m3_ref_palette_dynamic_neutral95 0x7f0500b9 +int color m3_ref_palette_dynamic_neutral96 0x7f0500ba +int color m3_ref_palette_dynamic_neutral98 0x7f0500bb +int color m3_ref_palette_dynamic_neutral99 0x7f0500bc +int color m3_ref_palette_dynamic_neutral_variant0 0x7f0500bd +int color m3_ref_palette_dynamic_neutral_variant10 0x7f0500be +int color m3_ref_palette_dynamic_neutral_variant100 0x7f0500bf +int color m3_ref_palette_dynamic_neutral_variant12 0x7f0500c0 +int color m3_ref_palette_dynamic_neutral_variant17 0x7f0500c1 +int color m3_ref_palette_dynamic_neutral_variant20 0x7f0500c2 +int color m3_ref_palette_dynamic_neutral_variant22 0x7f0500c3 +int color m3_ref_palette_dynamic_neutral_variant24 0x7f0500c4 +int color m3_ref_palette_dynamic_neutral_variant30 0x7f0500c5 +int color m3_ref_palette_dynamic_neutral_variant4 0x7f0500c6 +int color m3_ref_palette_dynamic_neutral_variant40 0x7f0500c7 +int color m3_ref_palette_dynamic_neutral_variant50 0x7f0500c8 +int color m3_ref_palette_dynamic_neutral_variant6 0x7f0500c9 +int color m3_ref_palette_dynamic_neutral_variant60 0x7f0500ca +int color m3_ref_palette_dynamic_neutral_variant70 0x7f0500cb +int color m3_ref_palette_dynamic_neutral_variant80 0x7f0500cc +int color m3_ref_palette_dynamic_neutral_variant87 0x7f0500cd +int color m3_ref_palette_dynamic_neutral_variant90 0x7f0500ce +int color m3_ref_palette_dynamic_neutral_variant92 0x7f0500cf +int color m3_ref_palette_dynamic_neutral_variant94 0x7f0500d0 +int color m3_ref_palette_dynamic_neutral_variant95 0x7f0500d1 +int color m3_ref_palette_dynamic_neutral_variant96 0x7f0500d2 +int color m3_ref_palette_dynamic_neutral_variant98 0x7f0500d3 +int color m3_ref_palette_dynamic_neutral_variant99 0x7f0500d4 +int color m3_ref_palette_dynamic_primary0 0x7f0500d5 +int color m3_ref_palette_dynamic_primary10 0x7f0500d6 +int color m3_ref_palette_dynamic_primary100 0x7f0500d7 +int color m3_ref_palette_dynamic_primary20 0x7f0500d8 +int color m3_ref_palette_dynamic_primary30 0x7f0500d9 +int color m3_ref_palette_dynamic_primary40 0x7f0500da +int color m3_ref_palette_dynamic_primary50 0x7f0500db +int color m3_ref_palette_dynamic_primary60 0x7f0500dc +int color m3_ref_palette_dynamic_primary70 0x7f0500dd +int color m3_ref_palette_dynamic_primary80 0x7f0500de +int color m3_ref_palette_dynamic_primary90 0x7f0500df +int color m3_ref_palette_dynamic_primary95 0x7f0500e0 +int color m3_ref_palette_dynamic_primary99 0x7f0500e1 +int color m3_ref_palette_dynamic_secondary0 0x7f0500e2 +int color m3_ref_palette_dynamic_secondary10 0x7f0500e3 +int color m3_ref_palette_dynamic_secondary100 0x7f0500e4 +int color m3_ref_palette_dynamic_secondary20 0x7f0500e5 +int color m3_ref_palette_dynamic_secondary30 0x7f0500e6 +int color m3_ref_palette_dynamic_secondary40 0x7f0500e7 +int color m3_ref_palette_dynamic_secondary50 0x7f0500e8 +int color m3_ref_palette_dynamic_secondary60 0x7f0500e9 +int color m3_ref_palette_dynamic_secondary70 0x7f0500ea +int color m3_ref_palette_dynamic_secondary80 0x7f0500eb +int color m3_ref_palette_dynamic_secondary90 0x7f0500ec +int color m3_ref_palette_dynamic_secondary95 0x7f0500ed +int color m3_ref_palette_dynamic_secondary99 0x7f0500ee +int color m3_ref_palette_dynamic_tertiary0 0x7f0500ef +int color m3_ref_palette_dynamic_tertiary10 0x7f0500f0 +int color m3_ref_palette_dynamic_tertiary100 0x7f0500f1 +int color m3_ref_palette_dynamic_tertiary20 0x7f0500f2 +int color m3_ref_palette_dynamic_tertiary30 0x7f0500f3 +int color m3_ref_palette_dynamic_tertiary40 0x7f0500f4 +int color m3_ref_palette_dynamic_tertiary50 0x7f0500f5 +int color m3_ref_palette_dynamic_tertiary60 0x7f0500f6 +int color m3_ref_palette_dynamic_tertiary70 0x7f0500f7 +int color m3_ref_palette_dynamic_tertiary80 0x7f0500f8 +int color m3_ref_palette_dynamic_tertiary90 0x7f0500f9 +int color m3_ref_palette_dynamic_tertiary95 0x7f0500fa +int color m3_ref_palette_dynamic_tertiary99 0x7f0500fb +int color m3_ref_palette_error0 0x7f0500fc +int color m3_ref_palette_error10 0x7f0500fd +int color m3_ref_palette_error100 0x7f0500fe +int color m3_ref_palette_error20 0x7f0500ff +int color m3_ref_palette_error30 0x7f050100 +int color m3_ref_palette_error40 0x7f050101 +int color m3_ref_palette_error50 0x7f050102 +int color m3_ref_palette_error60 0x7f050103 +int color m3_ref_palette_error70 0x7f050104 +int color m3_ref_palette_error80 0x7f050105 +int color m3_ref_palette_error90 0x7f050106 +int color m3_ref_palette_error95 0x7f050107 +int color m3_ref_palette_error99 0x7f050108 +int color m3_ref_palette_neutral0 0x7f050109 +int color m3_ref_palette_neutral10 0x7f05010a +int color m3_ref_palette_neutral100 0x7f05010b +int color m3_ref_palette_neutral12 0x7f05010c +int color m3_ref_palette_neutral17 0x7f05010d +int color m3_ref_palette_neutral20 0x7f05010e +int color m3_ref_palette_neutral22 0x7f05010f +int color m3_ref_palette_neutral24 0x7f050110 +int color m3_ref_palette_neutral30 0x7f050111 +int color m3_ref_palette_neutral4 0x7f050112 +int color m3_ref_palette_neutral40 0x7f050113 +int color m3_ref_palette_neutral50 0x7f050114 +int color m3_ref_palette_neutral6 0x7f050115 +int color m3_ref_palette_neutral60 0x7f050116 +int color m3_ref_palette_neutral70 0x7f050117 +int color m3_ref_palette_neutral80 0x7f050118 +int color m3_ref_palette_neutral87 0x7f050119 +int color m3_ref_palette_neutral90 0x7f05011a +int color m3_ref_palette_neutral92 0x7f05011b +int color m3_ref_palette_neutral94 0x7f05011c +int color m3_ref_palette_neutral95 0x7f05011d +int color m3_ref_palette_neutral96 0x7f05011e +int color m3_ref_palette_neutral98 0x7f05011f +int color m3_ref_palette_neutral99 0x7f050120 +int color m3_ref_palette_neutral_variant0 0x7f050121 +int color m3_ref_palette_neutral_variant10 0x7f050122 +int color m3_ref_palette_neutral_variant100 0x7f050123 +int color m3_ref_palette_neutral_variant20 0x7f050124 +int color m3_ref_palette_neutral_variant30 0x7f050125 +int color m3_ref_palette_neutral_variant40 0x7f050126 +int color m3_ref_palette_neutral_variant50 0x7f050127 +int color m3_ref_palette_neutral_variant60 0x7f050128 +int color m3_ref_palette_neutral_variant70 0x7f050129 +int color m3_ref_palette_neutral_variant80 0x7f05012a +int color m3_ref_palette_neutral_variant90 0x7f05012b +int color m3_ref_palette_neutral_variant95 0x7f05012c +int color m3_ref_palette_neutral_variant99 0x7f05012d +int color m3_ref_palette_primary0 0x7f05012e +int color m3_ref_palette_primary10 0x7f05012f +int color m3_ref_palette_primary100 0x7f050130 +int color m3_ref_palette_primary20 0x7f050131 +int color m3_ref_palette_primary30 0x7f050132 +int color m3_ref_palette_primary40 0x7f050133 +int color m3_ref_palette_primary50 0x7f050134 +int color m3_ref_palette_primary60 0x7f050135 +int color m3_ref_palette_primary70 0x7f050136 +int color m3_ref_palette_primary80 0x7f050137 +int color m3_ref_palette_primary90 0x7f050138 +int color m3_ref_palette_primary95 0x7f050139 +int color m3_ref_palette_primary99 0x7f05013a +int color m3_ref_palette_secondary0 0x7f05013b +int color m3_ref_palette_secondary10 0x7f05013c +int color m3_ref_palette_secondary100 0x7f05013d +int color m3_ref_palette_secondary20 0x7f05013e +int color m3_ref_palette_secondary30 0x7f05013f +int color m3_ref_palette_secondary40 0x7f050140 +int color m3_ref_palette_secondary50 0x7f050141 +int color m3_ref_palette_secondary60 0x7f050142 +int color m3_ref_palette_secondary70 0x7f050143 +int color m3_ref_palette_secondary80 0x7f050144 +int color m3_ref_palette_secondary90 0x7f050145 +int color m3_ref_palette_secondary95 0x7f050146 +int color m3_ref_palette_secondary99 0x7f050147 +int color m3_ref_palette_tertiary0 0x7f050148 +int color m3_ref_palette_tertiary10 0x7f050149 +int color m3_ref_palette_tertiary100 0x7f05014a +int color m3_ref_palette_tertiary20 0x7f05014b +int color m3_ref_palette_tertiary30 0x7f05014c +int color m3_ref_palette_tertiary40 0x7f05014d +int color m3_ref_palette_tertiary50 0x7f05014e +int color m3_ref_palette_tertiary60 0x7f05014f +int color m3_ref_palette_tertiary70 0x7f050150 +int color m3_ref_palette_tertiary80 0x7f050151 +int color m3_ref_palette_tertiary90 0x7f050152 +int color m3_ref_palette_tertiary95 0x7f050153 +int color m3_ref_palette_tertiary99 0x7f050154 +int color m3_ref_palette_white 0x7f050155 +int color m3_selection_control_ripple_color_selector 0x7f050156 +int color m3_simple_item_ripple_color 0x7f050157 +int color m3_slider_active_track_color 0x7f050158 +int color m3_slider_active_track_color_legacy 0x7f050159 +int color m3_slider_halo_color_legacy 0x7f05015a +int color m3_slider_inactive_track_color 0x7f05015b +int color m3_slider_inactive_track_color_legacy 0x7f05015c +int color m3_slider_thumb_color 0x7f05015d +int color m3_slider_thumb_color_legacy 0x7f05015e +int color m3_switch_thumb_tint 0x7f05015f +int color m3_switch_track_tint 0x7f050160 +int color m3_sys_color_dark_background 0x7f050161 +int color m3_sys_color_dark_error 0x7f050162 +int color m3_sys_color_dark_error_container 0x7f050163 +int color m3_sys_color_dark_inverse_on_surface 0x7f050164 +int color m3_sys_color_dark_inverse_primary 0x7f050165 +int color m3_sys_color_dark_inverse_surface 0x7f050166 +int color m3_sys_color_dark_on_background 0x7f050167 +int color m3_sys_color_dark_on_error 0x7f050168 +int color m3_sys_color_dark_on_error_container 0x7f050169 +int color m3_sys_color_dark_on_primary 0x7f05016a +int color m3_sys_color_dark_on_primary_container 0x7f05016b +int color m3_sys_color_dark_on_secondary 0x7f05016c +int color m3_sys_color_dark_on_secondary_container 0x7f05016d +int color m3_sys_color_dark_on_surface 0x7f05016e +int color m3_sys_color_dark_on_surface_variant 0x7f05016f +int color m3_sys_color_dark_on_tertiary 0x7f050170 +int color m3_sys_color_dark_on_tertiary_container 0x7f050171 +int color m3_sys_color_dark_outline 0x7f050172 +int color m3_sys_color_dark_outline_variant 0x7f050173 +int color m3_sys_color_dark_primary 0x7f050174 +int color m3_sys_color_dark_primary_container 0x7f050175 +int color m3_sys_color_dark_secondary 0x7f050176 +int color m3_sys_color_dark_secondary_container 0x7f050177 +int color m3_sys_color_dark_surface 0x7f050178 +int color m3_sys_color_dark_surface_bright 0x7f050179 +int color m3_sys_color_dark_surface_container 0x7f05017a +int color m3_sys_color_dark_surface_container_high 0x7f05017b +int color m3_sys_color_dark_surface_container_highest 0x7f05017c +int color m3_sys_color_dark_surface_container_low 0x7f05017d +int color m3_sys_color_dark_surface_container_lowest 0x7f05017e +int color m3_sys_color_dark_surface_dim 0x7f05017f +int color m3_sys_color_dark_surface_variant 0x7f050180 +int color m3_sys_color_dark_tertiary 0x7f050181 +int color m3_sys_color_dark_tertiary_container 0x7f050182 +int color m3_sys_color_dynamic_dark_background 0x7f050183 +int color m3_sys_color_dynamic_dark_error 0x7f050184 +int color m3_sys_color_dynamic_dark_error_container 0x7f050185 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x7f050186 +int color m3_sys_color_dynamic_dark_inverse_primary 0x7f050187 +int color m3_sys_color_dynamic_dark_inverse_surface 0x7f050188 +int color m3_sys_color_dynamic_dark_on_background 0x7f050189 +int color m3_sys_color_dynamic_dark_on_error 0x7f05018a +int color m3_sys_color_dynamic_dark_on_error_container 0x7f05018b +int color m3_sys_color_dynamic_dark_on_primary 0x7f05018c +int color m3_sys_color_dynamic_dark_on_primary_container 0x7f05018d +int color m3_sys_color_dynamic_dark_on_secondary 0x7f05018e +int color m3_sys_color_dynamic_dark_on_secondary_container 0x7f05018f +int color m3_sys_color_dynamic_dark_on_surface 0x7f050190 +int color m3_sys_color_dynamic_dark_on_surface_variant 0x7f050191 +int color m3_sys_color_dynamic_dark_on_tertiary 0x7f050192 +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x7f050193 +int color m3_sys_color_dynamic_dark_outline 0x7f050194 +int color m3_sys_color_dynamic_dark_outline_variant 0x7f050195 +int color m3_sys_color_dynamic_dark_primary 0x7f050196 +int color m3_sys_color_dynamic_dark_primary_container 0x7f050197 +int color m3_sys_color_dynamic_dark_secondary 0x7f050198 +int color m3_sys_color_dynamic_dark_secondary_container 0x7f050199 +int color m3_sys_color_dynamic_dark_surface 0x7f05019a +int color m3_sys_color_dynamic_dark_surface_bright 0x7f05019b +int color m3_sys_color_dynamic_dark_surface_container 0x7f05019c +int color m3_sys_color_dynamic_dark_surface_container_high 0x7f05019d +int color m3_sys_color_dynamic_dark_surface_container_highest 0x7f05019e +int color m3_sys_color_dynamic_dark_surface_container_low 0x7f05019f +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x7f0501a0 +int color m3_sys_color_dynamic_dark_surface_dim 0x7f0501a1 +int color m3_sys_color_dynamic_dark_surface_variant 0x7f0501a2 +int color m3_sys_color_dynamic_dark_tertiary 0x7f0501a3 +int color m3_sys_color_dynamic_dark_tertiary_container 0x7f0501a4 +int color m3_sys_color_dynamic_light_background 0x7f0501a5 +int color m3_sys_color_dynamic_light_error 0x7f0501a6 +int color m3_sys_color_dynamic_light_error_container 0x7f0501a7 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x7f0501a8 +int color m3_sys_color_dynamic_light_inverse_primary 0x7f0501a9 +int color m3_sys_color_dynamic_light_inverse_surface 0x7f0501aa +int color m3_sys_color_dynamic_light_on_background 0x7f0501ab +int color m3_sys_color_dynamic_light_on_error 0x7f0501ac +int color m3_sys_color_dynamic_light_on_error_container 0x7f0501ad +int color m3_sys_color_dynamic_light_on_primary 0x7f0501ae +int color m3_sys_color_dynamic_light_on_primary_container 0x7f0501af +int color m3_sys_color_dynamic_light_on_secondary 0x7f0501b0 +int color m3_sys_color_dynamic_light_on_secondary_container 0x7f0501b1 +int color m3_sys_color_dynamic_light_on_surface 0x7f0501b2 +int color m3_sys_color_dynamic_light_on_surface_variant 0x7f0501b3 +int color m3_sys_color_dynamic_light_on_tertiary 0x7f0501b4 +int color m3_sys_color_dynamic_light_on_tertiary_container 0x7f0501b5 +int color m3_sys_color_dynamic_light_outline 0x7f0501b6 +int color m3_sys_color_dynamic_light_outline_variant 0x7f0501b7 +int color m3_sys_color_dynamic_light_primary 0x7f0501b8 +int color m3_sys_color_dynamic_light_primary_container 0x7f0501b9 +int color m3_sys_color_dynamic_light_secondary 0x7f0501ba +int color m3_sys_color_dynamic_light_secondary_container 0x7f0501bb +int color m3_sys_color_dynamic_light_surface 0x7f0501bc +int color m3_sys_color_dynamic_light_surface_bright 0x7f0501bd +int color m3_sys_color_dynamic_light_surface_container 0x7f0501be +int color m3_sys_color_dynamic_light_surface_container_high 0x7f0501bf +int color m3_sys_color_dynamic_light_surface_container_highest 0x7f0501c0 +int color m3_sys_color_dynamic_light_surface_container_low 0x7f0501c1 +int color m3_sys_color_dynamic_light_surface_container_lowest 0x7f0501c2 +int color m3_sys_color_dynamic_light_surface_dim 0x7f0501c3 +int color m3_sys_color_dynamic_light_surface_variant 0x7f0501c4 +int color m3_sys_color_dynamic_light_tertiary 0x7f0501c5 +int color m3_sys_color_dynamic_light_tertiary_container 0x7f0501c6 +int color m3_sys_color_dynamic_on_primary_fixed 0x7f0501c7 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x7f0501c8 +int color m3_sys_color_dynamic_on_secondary_fixed 0x7f0501c9 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x7f0501ca +int color m3_sys_color_dynamic_on_tertiary_fixed 0x7f0501cb +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x7f0501cc +int color m3_sys_color_dynamic_primary_fixed 0x7f0501cd +int color m3_sys_color_dynamic_primary_fixed_dim 0x7f0501ce +int color m3_sys_color_dynamic_secondary_fixed 0x7f0501cf +int color m3_sys_color_dynamic_secondary_fixed_dim 0x7f0501d0 +int color m3_sys_color_dynamic_tertiary_fixed 0x7f0501d1 +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x7f0501d2 +int color m3_sys_color_light_background 0x7f0501d3 +int color m3_sys_color_light_error 0x7f0501d4 +int color m3_sys_color_light_error_container 0x7f0501d5 +int color m3_sys_color_light_inverse_on_surface 0x7f0501d6 +int color m3_sys_color_light_inverse_primary 0x7f0501d7 +int color m3_sys_color_light_inverse_surface 0x7f0501d8 +int color m3_sys_color_light_on_background 0x7f0501d9 +int color m3_sys_color_light_on_error 0x7f0501da +int color m3_sys_color_light_on_error_container 0x7f0501db +int color m3_sys_color_light_on_primary 0x7f0501dc +int color m3_sys_color_light_on_primary_container 0x7f0501dd +int color m3_sys_color_light_on_secondary 0x7f0501de +int color m3_sys_color_light_on_secondary_container 0x7f0501df +int color m3_sys_color_light_on_surface 0x7f0501e0 +int color m3_sys_color_light_on_surface_variant 0x7f0501e1 +int color m3_sys_color_light_on_tertiary 0x7f0501e2 +int color m3_sys_color_light_on_tertiary_container 0x7f0501e3 +int color m3_sys_color_light_outline 0x7f0501e4 +int color m3_sys_color_light_outline_variant 0x7f0501e5 +int color m3_sys_color_light_primary 0x7f0501e6 +int color m3_sys_color_light_primary_container 0x7f0501e7 +int color m3_sys_color_light_secondary 0x7f0501e8 +int color m3_sys_color_light_secondary_container 0x7f0501e9 +int color m3_sys_color_light_surface 0x7f0501ea +int color m3_sys_color_light_surface_bright 0x7f0501eb +int color m3_sys_color_light_surface_container 0x7f0501ec +int color m3_sys_color_light_surface_container_high 0x7f0501ed +int color m3_sys_color_light_surface_container_highest 0x7f0501ee +int color m3_sys_color_light_surface_container_low 0x7f0501ef +int color m3_sys_color_light_surface_container_lowest 0x7f0501f0 +int color m3_sys_color_light_surface_dim 0x7f0501f1 +int color m3_sys_color_light_surface_variant 0x7f0501f2 +int color m3_sys_color_light_tertiary 0x7f0501f3 +int color m3_sys_color_light_tertiary_container 0x7f0501f4 +int color m3_sys_color_on_primary_fixed 0x7f0501f5 +int color m3_sys_color_on_primary_fixed_variant 0x7f0501f6 +int color m3_sys_color_on_secondary_fixed 0x7f0501f7 +int color m3_sys_color_on_secondary_fixed_variant 0x7f0501f8 +int color m3_sys_color_on_tertiary_fixed 0x7f0501f9 +int color m3_sys_color_on_tertiary_fixed_variant 0x7f0501fa +int color m3_sys_color_primary_fixed 0x7f0501fb +int color m3_sys_color_primary_fixed_dim 0x7f0501fc +int color m3_sys_color_secondary_fixed 0x7f0501fd +int color m3_sys_color_secondary_fixed_dim 0x7f0501fe +int color m3_sys_color_tertiary_fixed 0x7f0501ff +int color m3_sys_color_tertiary_fixed_dim 0x7f050200 +int color m3_tabs_icon_color 0x7f050201 +int color m3_tabs_icon_color_secondary 0x7f050202 +int color m3_tabs_ripple_color 0x7f050203 +int color m3_tabs_ripple_color_secondary 0x7f050204 +int color m3_tabs_text_color 0x7f050205 +int color m3_tabs_text_color_secondary 0x7f050206 +int color m3_text_button_background_color_selector 0x7f050207 +int color m3_text_button_foreground_color_selector 0x7f050208 +int color m3_text_button_ripple_color_selector 0x7f050209 +int color m3_textfield_filled_background_color 0x7f05020a +int color m3_textfield_indicator_text_color 0x7f05020b +int color m3_textfield_input_text_color 0x7f05020c +int color m3_textfield_label_color 0x7f05020d +int color m3_textfield_stroke_color 0x7f05020e +int color m3_timepicker_button_background_color 0x7f05020f +int color m3_timepicker_button_ripple_color 0x7f050210 +int color m3_timepicker_button_text_color 0x7f050211 +int color m3_timepicker_clock_text_color 0x7f050212 +int color m3_timepicker_display_background_color 0x7f050213 +int color m3_timepicker_display_ripple_color 0x7f050214 +int color m3_timepicker_display_text_color 0x7f050215 +int color m3_timepicker_secondary_text_button_ripple_color 0x7f050216 +int color m3_timepicker_secondary_text_button_text_color 0x7f050217 +int color m3_timepicker_time_input_stroke_color 0x7f050218 +int color m3_tonal_button_ripple_color_selector 0x7f050219 +int color material_blue_grey_800 0x7f05021a +int color material_blue_grey_900 0x7f05021b +int color material_blue_grey_950 0x7f05021c +int color material_cursor_color 0x7f05021d +int color material_deep_teal_200 0x7f05021e +int color material_deep_teal_500 0x7f05021f +int color material_divider_color 0x7f050220 +int color material_dynamic_color_dark_error 0x7f050221 +int color material_dynamic_color_dark_error_container 0x7f050222 +int color material_dynamic_color_dark_on_error 0x7f050223 +int color material_dynamic_color_dark_on_error_container 0x7f050224 +int color material_dynamic_color_light_error 0x7f050225 +int color material_dynamic_color_light_error_container 0x7f050226 +int color material_dynamic_color_light_on_error 0x7f050227 +int color material_dynamic_color_light_on_error_container 0x7f050228 +int color material_dynamic_neutral0 0x7f050229 +int color material_dynamic_neutral10 0x7f05022a +int color material_dynamic_neutral100 0x7f05022b +int color material_dynamic_neutral20 0x7f05022c +int color material_dynamic_neutral30 0x7f05022d +int color material_dynamic_neutral40 0x7f05022e +int color material_dynamic_neutral50 0x7f05022f +int color material_dynamic_neutral60 0x7f050230 +int color material_dynamic_neutral70 0x7f050231 +int color material_dynamic_neutral80 0x7f050232 +int color material_dynamic_neutral90 0x7f050233 +int color material_dynamic_neutral95 0x7f050234 +int color material_dynamic_neutral99 0x7f050235 +int color material_dynamic_neutral_variant0 0x7f050236 +int color material_dynamic_neutral_variant10 0x7f050237 +int color material_dynamic_neutral_variant100 0x7f050238 +int color material_dynamic_neutral_variant20 0x7f050239 +int color material_dynamic_neutral_variant30 0x7f05023a +int color material_dynamic_neutral_variant40 0x7f05023b +int color material_dynamic_neutral_variant50 0x7f05023c +int color material_dynamic_neutral_variant60 0x7f05023d +int color material_dynamic_neutral_variant70 0x7f05023e +int color material_dynamic_neutral_variant80 0x7f05023f +int color material_dynamic_neutral_variant90 0x7f050240 +int color material_dynamic_neutral_variant95 0x7f050241 +int color material_dynamic_neutral_variant99 0x7f050242 +int color material_dynamic_primary0 0x7f050243 +int color material_dynamic_primary10 0x7f050244 +int color material_dynamic_primary100 0x7f050245 +int color material_dynamic_primary20 0x7f050246 +int color material_dynamic_primary30 0x7f050247 +int color material_dynamic_primary40 0x7f050248 +int color material_dynamic_primary50 0x7f050249 +int color material_dynamic_primary60 0x7f05024a +int color material_dynamic_primary70 0x7f05024b +int color material_dynamic_primary80 0x7f05024c +int color material_dynamic_primary90 0x7f05024d +int color material_dynamic_primary95 0x7f05024e +int color material_dynamic_primary99 0x7f05024f +int color material_dynamic_secondary0 0x7f050250 +int color material_dynamic_secondary10 0x7f050251 +int color material_dynamic_secondary100 0x7f050252 +int color material_dynamic_secondary20 0x7f050253 +int color material_dynamic_secondary30 0x7f050254 +int color material_dynamic_secondary40 0x7f050255 +int color material_dynamic_secondary50 0x7f050256 +int color material_dynamic_secondary60 0x7f050257 +int color material_dynamic_secondary70 0x7f050258 +int color material_dynamic_secondary80 0x7f050259 +int color material_dynamic_secondary90 0x7f05025a +int color material_dynamic_secondary95 0x7f05025b +int color material_dynamic_secondary99 0x7f05025c +int color material_dynamic_tertiary0 0x7f05025d +int color material_dynamic_tertiary10 0x7f05025e +int color material_dynamic_tertiary100 0x7f05025f +int color material_dynamic_tertiary20 0x7f050260 +int color material_dynamic_tertiary30 0x7f050261 +int color material_dynamic_tertiary40 0x7f050262 +int color material_dynamic_tertiary50 0x7f050263 +int color material_dynamic_tertiary60 0x7f050264 +int color material_dynamic_tertiary70 0x7f050265 +int color material_dynamic_tertiary80 0x7f050266 +int color material_dynamic_tertiary90 0x7f050267 +int color material_dynamic_tertiary95 0x7f050268 +int color material_dynamic_tertiary99 0x7f050269 +int color material_grey_100 0x7f05026a +int color material_grey_300 0x7f05026b +int color material_grey_50 0x7f05026c +int color material_grey_600 0x7f05026d +int color material_grey_800 0x7f05026e +int color material_grey_850 0x7f05026f +int color material_grey_900 0x7f050270 +int color material_harmonized_color_error 0x7f050271 +int color material_harmonized_color_error_container 0x7f050272 +int color material_harmonized_color_on_error 0x7f050273 +int color material_harmonized_color_on_error_container 0x7f050274 +int color material_on_background_disabled 0x7f050275 +int color material_on_background_emphasis_high_type 0x7f050276 +int color material_on_background_emphasis_medium 0x7f050277 +int color material_on_primary_disabled 0x7f050278 +int color material_on_primary_emphasis_high_type 0x7f050279 +int color material_on_primary_emphasis_medium 0x7f05027a +int color material_on_surface_disabled 0x7f05027b +int color material_on_surface_emphasis_high_type 0x7f05027c +int color material_on_surface_emphasis_medium 0x7f05027d +int color material_on_surface_stroke 0x7f05027e +int color material_personalized__highlighted_text 0x7f05027f +int color material_personalized__highlighted_text_inverse 0x7f050280 +int color material_personalized_color_background 0x7f050281 +int color material_personalized_color_control_activated 0x7f050282 +int color material_personalized_color_control_highlight 0x7f050283 +int color material_personalized_color_control_normal 0x7f050284 +int color material_personalized_color_error 0x7f050285 +int color material_personalized_color_error_container 0x7f050286 +int color material_personalized_color_on_background 0x7f050287 +int color material_personalized_color_on_error 0x7f050288 +int color material_personalized_color_on_error_container 0x7f050289 +int color material_personalized_color_on_primary 0x7f05028a +int color material_personalized_color_on_primary_container 0x7f05028b +int color material_personalized_color_on_secondary 0x7f05028c +int color material_personalized_color_on_secondary_container 0x7f05028d +int color material_personalized_color_on_surface 0x7f05028e +int color material_personalized_color_on_surface_inverse 0x7f05028f +int color material_personalized_color_on_surface_variant 0x7f050290 +int color material_personalized_color_on_tertiary 0x7f050291 +int color material_personalized_color_on_tertiary_container 0x7f050292 +int color material_personalized_color_outline 0x7f050293 +int color material_personalized_color_outline_variant 0x7f050294 +int color material_personalized_color_primary 0x7f050295 +int color material_personalized_color_primary_container 0x7f050296 +int color material_personalized_color_primary_inverse 0x7f050297 +int color material_personalized_color_primary_text 0x7f050298 +int color material_personalized_color_primary_text_inverse 0x7f050299 +int color material_personalized_color_secondary 0x7f05029a +int color material_personalized_color_secondary_container 0x7f05029b +int color material_personalized_color_secondary_text 0x7f05029c +int color material_personalized_color_secondary_text_inverse 0x7f05029d +int color material_personalized_color_surface 0x7f05029e +int color material_personalized_color_surface_bright 0x7f05029f +int color material_personalized_color_surface_container 0x7f0502a0 +int color material_personalized_color_surface_container_high 0x7f0502a1 +int color material_personalized_color_surface_container_highest 0x7f0502a2 +int color material_personalized_color_surface_container_low 0x7f0502a3 +int color material_personalized_color_surface_container_lowest 0x7f0502a4 +int color material_personalized_color_surface_dim 0x7f0502a5 +int color material_personalized_color_surface_inverse 0x7f0502a6 +int color material_personalized_color_surface_variant 0x7f0502a7 +int color material_personalized_color_tertiary 0x7f0502a8 +int color material_personalized_color_tertiary_container 0x7f0502a9 +int color material_personalized_color_text_hint_foreground_inverse 0x7f0502aa +int color material_personalized_color_text_primary_inverse 0x7f0502ab +int color material_personalized_color_text_primary_inverse_disable_only 0x7f0502ac +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x7f0502ad +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x7f0502ae +int color material_personalized_hint_foreground 0x7f0502af +int color material_personalized_hint_foreground_inverse 0x7f0502b0 +int color material_personalized_primary_inverse_text_disable_only 0x7f0502b1 +int color material_personalized_primary_text_disable_only 0x7f0502b2 +int color material_slider_active_tick_marks_color 0x7f0502b3 +int color material_slider_active_track_color 0x7f0502b4 +int color material_slider_halo_color 0x7f0502b5 +int color material_slider_inactive_tick_marks_color 0x7f0502b6 +int color material_slider_inactive_track_color 0x7f0502b7 +int color material_slider_thumb_color 0x7f0502b8 +int color material_timepicker_button_background 0x7f0502b9 +int color material_timepicker_button_stroke 0x7f0502ba +int color material_timepicker_clock_text_color 0x7f0502bb +int color material_timepicker_clockface 0x7f0502bc +int color material_timepicker_modebutton_tint 0x7f0502bd +int color maui_splash_color 0x7f0502be +int color mtrl_btn_bg_color_selector 0x7f0502bf +int color mtrl_btn_ripple_color 0x7f0502c0 +int color mtrl_btn_stroke_color_selector 0x7f0502c1 +int color mtrl_btn_text_btn_bg_color_selector 0x7f0502c2 +int color mtrl_btn_text_btn_ripple_color 0x7f0502c3 +int color mtrl_btn_text_color_disabled 0x7f0502c4 +int color mtrl_btn_text_color_selector 0x7f0502c5 +int color mtrl_btn_transparent_bg_color 0x7f0502c6 +int color mtrl_calendar_item_stroke_color 0x7f0502c7 +int color mtrl_calendar_selected_range 0x7f0502c8 +int color mtrl_card_view_foreground 0x7f0502c9 +int color mtrl_card_view_ripple 0x7f0502ca +int color mtrl_chip_background_color 0x7f0502cb +int color mtrl_chip_close_icon_tint 0x7f0502cc +int color mtrl_chip_surface_color 0x7f0502cd +int color mtrl_chip_text_color 0x7f0502ce +int color mtrl_choice_chip_background_color 0x7f0502cf +int color mtrl_choice_chip_ripple_color 0x7f0502d0 +int color mtrl_choice_chip_text_color 0x7f0502d1 +int color mtrl_error 0x7f0502d2 +int color mtrl_fab_bg_color_selector 0x7f0502d3 +int color mtrl_fab_icon_text_color_selector 0x7f0502d4 +int color mtrl_fab_ripple_color 0x7f0502d5 +int color mtrl_filled_background_color 0x7f0502d6 +int color mtrl_filled_icon_tint 0x7f0502d7 +int color mtrl_filled_stroke_color 0x7f0502d8 +int color mtrl_indicator_text_color 0x7f0502d9 +int color mtrl_navigation_bar_colored_item_tint 0x7f0502da +int color mtrl_navigation_bar_colored_ripple_color 0x7f0502db +int color mtrl_navigation_bar_item_tint 0x7f0502dc +int color mtrl_navigation_bar_ripple_color 0x7f0502dd +int color mtrl_navigation_item_background_color 0x7f0502de +int color mtrl_navigation_item_icon_tint 0x7f0502df +int color mtrl_navigation_item_text_color 0x7f0502e0 +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0502e1 +int color mtrl_on_surface_ripple_color 0x7f0502e2 +int color mtrl_outlined_icon_tint 0x7f0502e3 +int color mtrl_outlined_stroke_color 0x7f0502e4 +int color mtrl_popupmenu_overlay_color 0x7f0502e5 +int color mtrl_scrim_color 0x7f0502e6 +int color mtrl_switch_thumb_icon_tint 0x7f0502e7 +int color mtrl_switch_thumb_tint 0x7f0502e8 +int color mtrl_switch_track_decoration_tint 0x7f0502e9 +int color mtrl_switch_track_tint 0x7f0502ea +int color mtrl_tabs_colored_ripple_color 0x7f0502eb +int color mtrl_tabs_icon_color_selector 0x7f0502ec +int color mtrl_tabs_icon_color_selector_colored 0x7f0502ed +int color mtrl_tabs_legacy_text_color_selector 0x7f0502ee +int color mtrl_tabs_ripple_color 0x7f0502ef +int color mtrl_text_btn_text_color_selector 0x7f0502f0 +int color mtrl_textinput_default_box_stroke_color 0x7f0502f1 +int color mtrl_textinput_disabled_color 0x7f0502f2 +int color mtrl_textinput_filled_box_default_background_color 0x7f0502f3 +int color mtrl_textinput_focused_box_stroke_color 0x7f0502f4 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0502f5 +int color notification_action_color_filter 0x7f0502f6 +int color notification_icon_bg_color 0x7f0502f7 +int color primary_dark_material_dark 0x7f0502f8 +int color primary_dark_material_light 0x7f0502f9 +int color primary_material_dark 0x7f0502fa +int color primary_material_light 0x7f0502fb +int color primary_text_default_material_dark 0x7f0502fc +int color primary_text_default_material_light 0x7f0502fd +int color primary_text_disabled_material_dark 0x7f0502fe +int color primary_text_disabled_material_light 0x7f0502ff +int color ripple_material_dark 0x7f050300 +int color ripple_material_light 0x7f050301 +int color secondary_text_default_material_dark 0x7f050302 +int color secondary_text_default_material_light 0x7f050303 +int color secondary_text_disabled_material_dark 0x7f050304 +int color secondary_text_disabled_material_light 0x7f050305 +int color switch_thumb_disabled_material_dark 0x7f050306 +int color switch_thumb_disabled_material_light 0x7f050307 +int color switch_thumb_material_dark 0x7f050308 +int color switch_thumb_material_light 0x7f050309 +int color switch_thumb_normal_material_dark 0x7f05030a +int color switch_thumb_normal_material_light 0x7f05030b +int color tooltip_background_dark 0x7f05030c +int color tooltip_background_light 0x7f05030d +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_height_large_material 0x7f060030 +int dimen abc_list_item_height_material 0x7f060031 +int dimen abc_list_item_height_small_material 0x7f060032 +int dimen abc_list_item_padding_horizontal_material 0x7f060033 +int dimen abc_panel_menu_list_width 0x7f060034 +int dimen abc_progress_bar_height_material 0x7f060035 +int dimen abc_search_view_preferred_height 0x7f060036 +int dimen abc_search_view_preferred_width 0x7f060037 +int dimen abc_seekbar_track_background_height_material 0x7f060038 +int dimen abc_seekbar_track_progress_height_material 0x7f060039 +int dimen abc_select_dialog_padding_start_material 0x7f06003a +int dimen abc_star_big 0x7f06003b +int dimen abc_star_medium 0x7f06003c +int dimen abc_star_small 0x7f06003d +int dimen abc_switch_padding 0x7f06003e +int dimen abc_text_size_body_1_material 0x7f06003f +int dimen abc_text_size_body_2_material 0x7f060040 +int dimen abc_text_size_button_material 0x7f060041 +int dimen abc_text_size_caption_material 0x7f060042 +int dimen abc_text_size_display_1_material 0x7f060043 +int dimen abc_text_size_display_2_material 0x7f060044 +int dimen abc_text_size_display_3_material 0x7f060045 +int dimen abc_text_size_display_4_material 0x7f060046 +int dimen abc_text_size_headline_material 0x7f060047 +int dimen abc_text_size_large_material 0x7f060048 +int dimen abc_text_size_medium_material 0x7f060049 +int dimen abc_text_size_menu_header_material 0x7f06004a +int dimen abc_text_size_menu_material 0x7f06004b +int dimen abc_text_size_small_material 0x7f06004c +int dimen abc_text_size_subhead_material 0x7f06004d +int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e +int dimen abc_text_size_title_material 0x7f06004f +int dimen abc_text_size_title_material_toolbar 0x7f060050 +int dimen appcompat_dialog_background_inset 0x7f060051 +int dimen browser_actions_context_menu_max_width 0x7f060052 +int dimen browser_actions_context_menu_min_padding 0x7f060053 +int dimen cardview_compat_inset_shadow 0x7f060054 +int dimen cardview_default_elevation 0x7f060055 +int dimen cardview_default_radius 0x7f060056 +int dimen clock_face_margin_start 0x7f060057 +int dimen compat_button_inset_horizontal_material 0x7f060058 +int dimen compat_button_inset_vertical_material 0x7f060059 +int dimen compat_button_padding_horizontal_material 0x7f06005a +int dimen compat_button_padding_vertical_material 0x7f06005b +int dimen compat_control_corner_material 0x7f06005c +int dimen compat_notification_large_icon_max_height 0x7f06005d +int dimen compat_notification_large_icon_max_width 0x7f06005e +int dimen def_drawer_elevation 0x7f06005f +int dimen design_appbar_elevation 0x7f060060 +int dimen design_bottom_navigation_active_item_max_width 0x7f060061 +int dimen design_bottom_navigation_active_item_min_width 0x7f060062 +int dimen design_bottom_navigation_active_text_size 0x7f060063 +int dimen design_bottom_navigation_elevation 0x7f060064 +int dimen design_bottom_navigation_height 0x7f060065 +int dimen design_bottom_navigation_icon_size 0x7f060066 +int dimen design_bottom_navigation_item_max_width 0x7f060067 +int dimen design_bottom_navigation_item_min_width 0x7f060068 +int dimen design_bottom_navigation_label_padding 0x7f060069 +int dimen design_bottom_navigation_margin 0x7f06006a +int dimen design_bottom_navigation_shadow_height 0x7f06006b +int dimen design_bottom_navigation_text_size 0x7f06006c +int dimen design_bottom_sheet_elevation 0x7f06006d +int dimen design_bottom_sheet_modal_elevation 0x7f06006e +int dimen design_bottom_sheet_peek_height_min 0x7f06006f +int dimen design_fab_border_width 0x7f060070 +int dimen design_fab_elevation 0x7f060071 +int dimen design_fab_image_size 0x7f060072 +int dimen design_fab_size_mini 0x7f060073 +int dimen design_fab_size_normal 0x7f060074 +int dimen design_fab_translation_z_hovered_focused 0x7f060075 +int dimen design_fab_translation_z_pressed 0x7f060076 +int dimen design_navigation_elevation 0x7f060077 +int dimen design_navigation_icon_padding 0x7f060078 +int dimen design_navigation_icon_size 0x7f060079 +int dimen design_navigation_item_horizontal_padding 0x7f06007a +int dimen design_navigation_item_icon_padding 0x7f06007b +int dimen design_navigation_item_vertical_padding 0x7f06007c +int dimen design_navigation_max_width 0x7f06007d +int dimen design_navigation_padding_bottom 0x7f06007e +int dimen design_navigation_separator_vertical_padding 0x7f06007f +int dimen design_snackbar_action_inline_max_width 0x7f060080 +int dimen design_snackbar_action_text_color_alpha 0x7f060081 +int dimen design_snackbar_background_corner_radius 0x7f060082 +int dimen design_snackbar_elevation 0x7f060083 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060084 +int dimen design_snackbar_max_width 0x7f060085 +int dimen design_snackbar_min_width 0x7f060086 +int dimen design_snackbar_padding_horizontal 0x7f060087 +int dimen design_snackbar_padding_vertical 0x7f060088 +int dimen design_snackbar_padding_vertical_2lines 0x7f060089 +int dimen design_snackbar_text_size 0x7f06008a +int dimen design_tab_max_width 0x7f06008b +int dimen design_tab_scrollable_min_width 0x7f06008c +int dimen design_tab_text_size 0x7f06008d +int dimen design_tab_text_size_2line 0x7f06008e +int dimen design_textinput_caption_translate_y 0x7f06008f +int dimen disabled_alpha_material_dark 0x7f060090 +int dimen disabled_alpha_material_light 0x7f060091 +int dimen fastscroll_default_thickness 0x7f060092 +int dimen fastscroll_margin 0x7f060093 +int dimen fastscroll_minimum_range 0x7f060094 +int dimen highlight_alpha_material_colored 0x7f060095 +int dimen highlight_alpha_material_dark 0x7f060096 +int dimen highlight_alpha_material_light 0x7f060097 +int dimen hint_alpha_material_dark 0x7f060098 +int dimen hint_alpha_material_light 0x7f060099 +int dimen hint_pressed_alpha_material_dark 0x7f06009a +int dimen hint_pressed_alpha_material_light 0x7f06009b +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009c +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009d +int dimen item_touch_helper_swipe_escape_velocity 0x7f06009e +int dimen m3_alert_dialog_action_bottom_padding 0x7f06009f +int dimen m3_alert_dialog_action_top_padding 0x7f0600a0 +int dimen m3_alert_dialog_corner_size 0x7f0600a1 +int dimen m3_alert_dialog_elevation 0x7f0600a2 +int dimen m3_alert_dialog_icon_margin 0x7f0600a3 +int dimen m3_alert_dialog_icon_size 0x7f0600a4 +int dimen m3_alert_dialog_title_bottom_margin 0x7f0600a5 +int dimen m3_appbar_expanded_title_margin_bottom 0x7f0600a6 +int dimen m3_appbar_expanded_title_margin_horizontal 0x7f0600a7 +int dimen m3_appbar_scrim_height_trigger 0x7f0600a8 +int dimen m3_appbar_scrim_height_trigger_large 0x7f0600a9 +int dimen m3_appbar_scrim_height_trigger_medium 0x7f0600aa +int dimen m3_appbar_size_compact 0x7f0600ab +int dimen m3_appbar_size_large 0x7f0600ac +int dimen m3_appbar_size_medium 0x7f0600ad +int dimen m3_back_progress_bottom_container_max_scale_x_distance 0x7f0600ae +int dimen m3_back_progress_bottom_container_max_scale_y_distance 0x7f0600af +int dimen m3_back_progress_main_container_max_translation_y 0x7f0600b0 +int dimen m3_back_progress_main_container_min_edge_gap 0x7f0600b1 +int dimen m3_back_progress_side_container_max_scale_x_distance_grow 0x7f0600b2 +int dimen m3_back_progress_side_container_max_scale_x_distance_shrink 0x7f0600b3 +int dimen m3_back_progress_side_container_max_scale_y_distance 0x7f0600b4 +int dimen m3_badge_horizontal_offset 0x7f0600b5 +int dimen m3_badge_offset 0x7f0600b6 +int dimen m3_badge_size 0x7f0600b7 +int dimen m3_badge_vertical_offset 0x7f0600b8 +int dimen m3_badge_with_text_horizontal_offset 0x7f0600b9 +int dimen m3_badge_with_text_offset 0x7f0600ba +int dimen m3_badge_with_text_size 0x7f0600bb +int dimen m3_badge_with_text_vertical_offset 0x7f0600bc +int dimen m3_badge_with_text_vertical_padding 0x7f0600bd +int dimen m3_bottom_nav_item_active_indicator_height 0x7f0600be +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x7f0600bf +int dimen m3_bottom_nav_item_active_indicator_width 0x7f0600c0 +int dimen m3_bottom_nav_item_padding_bottom 0x7f0600c1 +int dimen m3_bottom_nav_item_padding_top 0x7f0600c2 +int dimen m3_bottom_nav_min_height 0x7f0600c3 +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x7f0600c4 +int dimen m3_bottom_sheet_elevation 0x7f0600c5 +int dimen m3_bottom_sheet_modal_elevation 0x7f0600c6 +int dimen m3_bottomappbar_fab_cradle_margin 0x7f0600c7 +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600c8 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x7f0600c9 +int dimen m3_bottomappbar_fab_end_margin 0x7f0600ca +int dimen m3_bottomappbar_height 0x7f0600cb +int dimen m3_bottomappbar_horizontal_padding 0x7f0600cc +int dimen m3_btn_dialog_btn_min_width 0x7f0600cd +int dimen m3_btn_dialog_btn_spacing 0x7f0600ce +int dimen m3_btn_disabled_elevation 0x7f0600cf +int dimen m3_btn_disabled_translation_z 0x7f0600d0 +int dimen m3_btn_elevated_btn_elevation 0x7f0600d1 +int dimen m3_btn_elevation 0x7f0600d2 +int dimen m3_btn_icon_btn_padding_left 0x7f0600d3 +int dimen m3_btn_icon_btn_padding_right 0x7f0600d4 +int dimen m3_btn_icon_only_default_padding 0x7f0600d5 +int dimen m3_btn_icon_only_default_size 0x7f0600d6 +int dimen m3_btn_icon_only_icon_padding 0x7f0600d7 +int dimen m3_btn_icon_only_min_width 0x7f0600d8 +int dimen m3_btn_inset 0x7f0600d9 +int dimen m3_btn_max_width 0x7f0600da +int dimen m3_btn_padding_bottom 0x7f0600db +int dimen m3_btn_padding_left 0x7f0600dc +int dimen m3_btn_padding_right 0x7f0600dd +int dimen m3_btn_padding_top 0x7f0600de +int dimen m3_btn_stroke_size 0x7f0600df +int dimen m3_btn_text_btn_icon_padding_left 0x7f0600e0 +int dimen m3_btn_text_btn_icon_padding_right 0x7f0600e1 +int dimen m3_btn_text_btn_padding_left 0x7f0600e2 +int dimen m3_btn_text_btn_padding_right 0x7f0600e3 +int dimen m3_btn_translation_z_base 0x7f0600e4 +int dimen m3_btn_translation_z_hovered 0x7f0600e5 +int dimen m3_card_disabled_z 0x7f0600e6 +int dimen m3_card_dragged_z 0x7f0600e7 +int dimen m3_card_elevated_disabled_z 0x7f0600e8 +int dimen m3_card_elevated_dragged_z 0x7f0600e9 +int dimen m3_card_elevated_elevation 0x7f0600ea +int dimen m3_card_elevated_hovered_z 0x7f0600eb +int dimen m3_card_elevation 0x7f0600ec +int dimen m3_card_hovered_z 0x7f0600ed +int dimen m3_card_stroke_width 0x7f0600ee +int dimen m3_carousel_debug_keyline_width 0x7f0600ef +int dimen m3_carousel_extra_small_item_size 0x7f0600f0 +int dimen m3_carousel_gone_size 0x7f0600f1 +int dimen m3_carousel_small_item_default_corner_size 0x7f0600f2 +int dimen m3_carousel_small_item_size_max 0x7f0600f3 +int dimen m3_carousel_small_item_size_min 0x7f0600f4 +int dimen m3_chip_checked_hovered_translation_z 0x7f0600f5 +int dimen m3_chip_corner_size 0x7f0600f6 +int dimen m3_chip_disabled_translation_z 0x7f0600f7 +int dimen m3_chip_dragged_translation_z 0x7f0600f8 +int dimen m3_chip_elevated_elevation 0x7f0600f9 +int dimen m3_chip_hovered_translation_z 0x7f0600fa +int dimen m3_chip_icon_size 0x7f0600fb +int dimen m3_comp_assist_chip_container_height 0x7f0600fc +int dimen m3_comp_assist_chip_elevated_container_elevation 0x7f0600fd +int dimen m3_comp_assist_chip_flat_container_elevation 0x7f0600fe +int dimen m3_comp_assist_chip_flat_outline_width 0x7f0600ff +int dimen m3_comp_assist_chip_with_icon_icon_size 0x7f060100 +int dimen m3_comp_badge_large_size 0x7f060101 +int dimen m3_comp_badge_size 0x7f060102 +int dimen m3_comp_bottom_app_bar_container_elevation 0x7f060103 +int dimen m3_comp_bottom_app_bar_container_height 0x7f060104 +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x7f060105 +int dimen m3_comp_date_picker_modal_date_today_container_outline_width 0x7f060106 +int dimen m3_comp_date_picker_modal_header_container_height 0x7f060107 +int dimen m3_comp_date_picker_modal_range_selection_header_container_height 0x7f060108 +int dimen m3_comp_divider_thickness 0x7f060109 +int dimen m3_comp_elevated_button_container_elevation 0x7f06010a +int dimen m3_comp_elevated_button_disabled_container_elevation 0x7f06010b +int dimen m3_comp_elevated_card_container_elevation 0x7f06010c +int dimen m3_comp_elevated_card_icon_size 0x7f06010d +int dimen m3_comp_extended_fab_primary_container_elevation 0x7f06010e +int dimen m3_comp_extended_fab_primary_container_height 0x7f06010f +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x7f060110 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x7f060111 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x7f060112 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x7f060113 +int dimen m3_comp_extended_fab_primary_icon_size 0x7f060114 +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x7f060115 +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x7f060116 +int dimen m3_comp_fab_primary_container_elevation 0x7f060117 +int dimen m3_comp_fab_primary_container_height 0x7f060118 +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x7f060119 +int dimen m3_comp_fab_primary_hover_container_elevation 0x7f06011a +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x7f06011b +int dimen m3_comp_fab_primary_icon_size 0x7f06011c +int dimen m3_comp_fab_primary_large_container_height 0x7f06011d +int dimen m3_comp_fab_primary_large_icon_size 0x7f06011e +int dimen m3_comp_fab_primary_pressed_container_elevation 0x7f06011f +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x7f060120 +int dimen m3_comp_fab_primary_small_container_height 0x7f060121 +int dimen m3_comp_fab_primary_small_icon_size 0x7f060122 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x7f060123 +int dimen m3_comp_filled_button_container_elevation 0x7f060124 +int dimen m3_comp_filled_button_with_icon_icon_size 0x7f060125 +int dimen m3_comp_filled_card_container_elevation 0x7f060126 +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x7f060127 +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x7f060128 +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x7f060129 +int dimen m3_comp_filled_card_icon_size 0x7f06012a +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x7f06012b +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x7f06012c +int dimen m3_comp_filter_chip_container_height 0x7f06012d +int dimen m3_comp_filter_chip_elevated_container_elevation 0x7f06012e +int dimen m3_comp_filter_chip_flat_container_elevation 0x7f06012f +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x7f060130 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x7f060131 +int dimen m3_comp_input_chip_container_elevation 0x7f060132 +int dimen m3_comp_input_chip_container_height 0x7f060133 +int dimen m3_comp_input_chip_unselected_outline_width 0x7f060134 +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x7f060135 +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x7f060136 +int dimen m3_comp_menu_container_elevation 0x7f060137 +int dimen m3_comp_navigation_bar_active_indicator_height 0x7f060138 +int dimen m3_comp_navigation_bar_active_indicator_width 0x7f060139 +int dimen m3_comp_navigation_bar_container_elevation 0x7f06013a +int dimen m3_comp_navigation_bar_container_height 0x7f06013b +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x7f06013c +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x7f06013d +int dimen m3_comp_navigation_bar_icon_size 0x7f06013e +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x7f06013f +int dimen m3_comp_navigation_drawer_container_width 0x7f060140 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x7f060141 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x7f060142 +int dimen m3_comp_navigation_drawer_icon_size 0x7f060143 +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x7f060144 +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x7f060145 +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x7f060146 +int dimen m3_comp_navigation_rail_active_indicator_height 0x7f060147 +int dimen m3_comp_navigation_rail_active_indicator_width 0x7f060148 +int dimen m3_comp_navigation_rail_container_elevation 0x7f060149 +int dimen m3_comp_navigation_rail_container_width 0x7f06014a +int dimen m3_comp_navigation_rail_focus_state_layer_opacity 0x7f06014b +int dimen m3_comp_navigation_rail_hover_state_layer_opacity 0x7f06014c +int dimen m3_comp_navigation_rail_icon_size 0x7f06014d +int dimen m3_comp_navigation_rail_pressed_state_layer_opacity 0x7f06014e +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x7f06014f +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x7f060150 +int dimen m3_comp_outlined_button_outline_width 0x7f060151 +int dimen m3_comp_outlined_card_container_elevation 0x7f060152 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x7f060153 +int dimen m3_comp_outlined_card_icon_size 0x7f060154 +int dimen m3_comp_outlined_card_outline_width 0x7f060155 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x7f060156 +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x7f060157 +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x7f060158 +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x7f060159 +int dimen m3_comp_outlined_text_field_focus_outline_width 0x7f06015a +int dimen m3_comp_outlined_text_field_outline_width 0x7f06015b +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x7f06015c +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x7f06015d +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x7f06015e +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x7f06015f +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x7f060160 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x7f060161 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x7f060162 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x7f060163 +int dimen m3_comp_progress_indicator_active_indicator_track_space 0x7f060164 +int dimen m3_comp_progress_indicator_stop_indicator_size 0x7f060165 +int dimen m3_comp_progress_indicator_track_thickness 0x7f060166 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x7f060167 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x7f060168 +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x7f060169 +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x7f06016a +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x7f06016b +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x7f06016c +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x7f06016d +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x7f06016e +int dimen m3_comp_scrim_container_opacity 0x7f06016f +int dimen m3_comp_search_bar_avatar_size 0x7f060170 +int dimen m3_comp_search_bar_container_elevation 0x7f060171 +int dimen m3_comp_search_bar_container_height 0x7f060172 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x7f060173 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x7f060174 +int dimen m3_comp_search_view_container_elevation 0x7f060175 +int dimen m3_comp_search_view_docked_header_container_height 0x7f060176 +int dimen m3_comp_search_view_full_screen_header_container_height 0x7f060177 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x7f060178 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x7f060179 +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x7f06017a +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x7f06017b +int dimen m3_comp_sheet_bottom_docked_drag_handle_height 0x7f06017c +int dimen m3_comp_sheet_bottom_docked_drag_handle_width 0x7f06017d +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x7f06017e +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x7f06017f +int dimen m3_comp_sheet_side_docked_container_width 0x7f060180 +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x7f060181 +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x7f060182 +int dimen m3_comp_slider_active_handle_height 0x7f060183 +int dimen m3_comp_slider_active_handle_leading_space 0x7f060184 +int dimen m3_comp_slider_active_handle_width 0x7f060185 +int dimen m3_comp_slider_disabled_active_track_opacity 0x7f060186 +int dimen m3_comp_slider_disabled_handle_opacity 0x7f060187 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x7f060188 +int dimen m3_comp_slider_inactive_track_height 0x7f060189 +int dimen m3_comp_slider_stop_indicator_size 0x7f06018a +int dimen m3_comp_snackbar_container_elevation 0x7f06018b +int dimen m3_comp_suggestion_chip_container_height 0x7f06018c +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x7f06018d +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x7f06018e +int dimen m3_comp_suggestion_chip_flat_outline_width 0x7f06018f +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x7f060190 +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x7f060191 +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x7f060192 +int dimen m3_comp_switch_disabled_track_opacity 0x7f060193 +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x7f060194 +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x7f060195 +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x7f060196 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x7f060197 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x7f060198 +int dimen m3_comp_switch_track_height 0x7f060199 +int dimen m3_comp_switch_track_width 0x7f06019a +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x7f06019b +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x7f06019c +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x7f06019d +int dimen m3_comp_text_button_focus_state_layer_opacity 0x7f06019e +int dimen m3_comp_text_button_hover_state_layer_opacity 0x7f06019f +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x7f0601a0 +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x7f0601a1 +int dimen m3_comp_time_picker_container_elevation 0x7f0601a2 +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x7f0601a3 +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x7f0601a4 +int dimen m3_comp_time_picker_period_selector_outline_width 0x7f0601a5 +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x7f0601a6 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x7f0601a7 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x7f0601a8 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x7f0601a9 +int dimen m3_comp_top_app_bar_large_container_height 0x7f0601aa +int dimen m3_comp_top_app_bar_medium_container_height 0x7f0601ab +int dimen m3_comp_top_app_bar_small_container_elevation 0x7f0601ac +int dimen m3_comp_top_app_bar_small_container_height 0x7f0601ad +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x7f0601ae +int dimen m3_datepicker_elevation 0x7f0601af +int dimen m3_divider_heavy_thickness 0x7f0601b0 +int dimen m3_extended_fab_bottom_padding 0x7f0601b1 +int dimen m3_extended_fab_end_padding 0x7f0601b2 +int dimen m3_extended_fab_icon_padding 0x7f0601b3 +int dimen m3_extended_fab_min_height 0x7f0601b4 +int dimen m3_extended_fab_start_padding 0x7f0601b5 +int dimen m3_extended_fab_top_padding 0x7f0601b6 +int dimen m3_fab_border_width 0x7f0601b7 +int dimen m3_fab_corner_size 0x7f0601b8 +int dimen m3_fab_translation_z_hovered_focused 0x7f0601b9 +int dimen m3_fab_translation_z_pressed 0x7f0601ba +int dimen m3_large_fab_max_image_size 0x7f0601bb +int dimen m3_large_fab_size 0x7f0601bc +int dimen m3_large_text_vertical_offset_adjustment 0x7f0601bd +int dimen m3_menu_elevation 0x7f0601be +int dimen m3_nav_badge_with_text_vertical_offset 0x7f0601bf +int dimen m3_navigation_drawer_layout_corner_size 0x7f0601c0 +int dimen m3_navigation_item_active_indicator_label_padding 0x7f0601c1 +int dimen m3_navigation_item_horizontal_padding 0x7f0601c2 +int dimen m3_navigation_item_icon_padding 0x7f0601c3 +int dimen m3_navigation_item_shape_inset_bottom 0x7f0601c4 +int dimen m3_navigation_item_shape_inset_end 0x7f0601c5 +int dimen m3_navigation_item_shape_inset_start 0x7f0601c6 +int dimen m3_navigation_item_shape_inset_top 0x7f0601c7 +int dimen m3_navigation_item_vertical_padding 0x7f0601c8 +int dimen m3_navigation_menu_divider_horizontal_padding 0x7f0601c9 +int dimen m3_navigation_menu_headline_horizontal_padding 0x7f0601ca +int dimen m3_navigation_rail_default_width 0x7f0601cb +int dimen m3_navigation_rail_elevation 0x7f0601cc +int dimen m3_navigation_rail_icon_size 0x7f0601cd +int dimen m3_navigation_rail_item_active_indicator_height 0x7f0601ce +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x7f0601cf +int dimen m3_navigation_rail_item_active_indicator_width 0x7f0601d0 +int dimen m3_navigation_rail_item_min_height 0x7f0601d1 +int dimen m3_navigation_rail_item_padding_bottom 0x7f0601d2 +int dimen m3_navigation_rail_item_padding_bottom_with_large_font 0x7f0601d3 +int dimen m3_navigation_rail_item_padding_top 0x7f0601d4 +int dimen m3_navigation_rail_item_padding_top_with_large_font 0x7f0601d5 +int dimen m3_navigation_rail_label_padding_horizontal 0x7f0601d6 +int dimen m3_ripple_default_alpha 0x7f0601d7 +int dimen m3_ripple_focused_alpha 0x7f0601d8 +int dimen m3_ripple_hovered_alpha 0x7f0601d9 +int dimen m3_ripple_pressed_alpha 0x7f0601da +int dimen m3_ripple_selectable_pressed_alpha 0x7f0601db +int dimen m3_searchbar_elevation 0x7f0601dc +int dimen m3_searchbar_height 0x7f0601dd +int dimen m3_searchbar_margin_horizontal 0x7f0601de +int dimen m3_searchbar_margin_vertical 0x7f0601df +int dimen m3_searchbar_outlined_stroke_width 0x7f0601e0 +int dimen m3_searchbar_padding_start 0x7f0601e1 +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x7f0601e2 +int dimen m3_searchbar_text_size 0x7f0601e3 +int dimen m3_searchview_divider_size 0x7f0601e4 +int dimen m3_searchview_elevation 0x7f0601e5 +int dimen m3_searchview_height 0x7f0601e6 +int dimen m3_side_sheet_margin_detached 0x7f0601e7 +int dimen m3_side_sheet_modal_elevation 0x7f0601e8 +int dimen m3_side_sheet_standard_elevation 0x7f0601e9 +int dimen m3_side_sheet_width 0x7f0601ea +int dimen m3_simple_item_color_hovered_alpha 0x7f0601eb +int dimen m3_simple_item_color_selected_alpha 0x7f0601ec +int dimen m3_slider_thumb_elevation 0x7f0601ed +int dimen m3_small_fab_max_image_size 0x7f0601ee +int dimen m3_small_fab_size 0x7f0601ef +int dimen m3_snackbar_action_text_color_alpha 0x7f0601f0 +int dimen m3_snackbar_margin 0x7f0601f1 +int dimen m3_sys_elevation_level0 0x7f0601f2 +int dimen m3_sys_elevation_level1 0x7f0601f3 +int dimen m3_sys_elevation_level2 0x7f0601f4 +int dimen m3_sys_elevation_level3 0x7f0601f5 +int dimen m3_sys_elevation_level4 0x7f0601f6 +int dimen m3_sys_elevation_level5 0x7f0601f7 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x7f0601f8 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x7f0601f9 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x7f0601fa +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x7f0601fb +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x7f0601fc +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x7f0601fd +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x7f0601fe +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x7f0601ff +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x7f060200 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x7f060201 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x7f060202 +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x7f060203 +int dimen m3_sys_motion_easing_legacy_control_x1 0x7f060204 +int dimen m3_sys_motion_easing_legacy_control_x2 0x7f060205 +int dimen m3_sys_motion_easing_legacy_control_y1 0x7f060206 +int dimen m3_sys_motion_easing_legacy_control_y2 0x7f060207 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x7f060208 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x7f060209 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x7f06020a +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x7f06020b +int dimen m3_sys_motion_easing_linear_control_x1 0x7f06020c +int dimen m3_sys_motion_easing_linear_control_x2 0x7f06020d +int dimen m3_sys_motion_easing_linear_control_y1 0x7f06020e +int dimen m3_sys_motion_easing_linear_control_y2 0x7f06020f +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x7f060210 +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x7f060211 +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x7f060212 +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x7f060213 +int dimen m3_sys_motion_easing_standard_control_x1 0x7f060214 +int dimen m3_sys_motion_easing_standard_control_x2 0x7f060215 +int dimen m3_sys_motion_easing_standard_control_y1 0x7f060216 +int dimen m3_sys_motion_easing_standard_control_y2 0x7f060217 +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x7f060218 +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x7f060219 +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x7f06021a +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x7f06021b +int dimen m3_sys_state_dragged_state_layer_opacity 0x7f06021c +int dimen m3_sys_state_focus_state_layer_opacity 0x7f06021d +int dimen m3_sys_state_hover_state_layer_opacity 0x7f06021e +int dimen m3_sys_state_pressed_state_layer_opacity 0x7f06021f +int dimen m3_timepicker_display_stroke_width 0x7f060220 +int dimen m3_timepicker_window_elevation 0x7f060221 +int dimen m3_toolbar_text_size_title 0x7f060222 +int dimen material_bottom_sheet_max_width 0x7f060223 +int dimen material_clock_display_height 0x7f060224 +int dimen material_clock_display_padding 0x7f060225 +int dimen material_clock_display_width 0x7f060226 +int dimen material_clock_face_margin_bottom 0x7f060227 +int dimen material_clock_face_margin_top 0x7f060228 +int dimen material_clock_hand_center_dot_radius 0x7f060229 +int dimen material_clock_hand_padding 0x7f06022a +int dimen material_clock_hand_stroke_width 0x7f06022b +int dimen material_clock_number_text_size 0x7f06022c +int dimen material_clock_period_toggle_height 0x7f06022d +int dimen material_clock_period_toggle_horizontal_gap 0x7f06022e +int dimen material_clock_period_toggle_vertical_gap 0x7f06022f +int dimen material_clock_period_toggle_width 0x7f060230 +int dimen material_clock_size 0x7f060231 +int dimen material_cursor_inset 0x7f060232 +int dimen material_cursor_width 0x7f060233 +int dimen material_divider_thickness 0x7f060234 +int dimen material_emphasis_disabled 0x7f060235 +int dimen material_emphasis_disabled_background 0x7f060236 +int dimen material_emphasis_high_type 0x7f060237 +int dimen material_emphasis_medium 0x7f060238 +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f060239 +int dimen material_filled_edittext_font_1_3_padding_top 0x7f06023a +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f06023b +int dimen material_filled_edittext_font_2_0_padding_top 0x7f06023c +int dimen material_font_1_3_box_collapsed_padding_top 0x7f06023d +int dimen material_font_2_0_box_collapsed_padding_top 0x7f06023e +int dimen material_helper_text_default_padding_top 0x7f06023f +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f060240 +int dimen material_helper_text_font_1_3_padding_top 0x7f060241 +int dimen material_input_text_to_prefix_suffix_padding 0x7f060242 +int dimen material_textinput_default_width 0x7f060243 +int dimen material_textinput_max_width 0x7f060244 +int dimen material_textinput_min_width 0x7f060245 +int dimen material_time_picker_minimum_screen_height 0x7f060246 +int dimen material_time_picker_minimum_screen_width 0x7f060247 +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f060248 +int dimen mtrl_alert_dialog_background_inset_end 0x7f060249 +int dimen mtrl_alert_dialog_background_inset_start 0x7f06024a +int dimen mtrl_alert_dialog_background_inset_top 0x7f06024b +int dimen mtrl_alert_dialog_picker_background_inset 0x7f06024c +int dimen mtrl_badge_horizontal_edge_offset 0x7f06024d +int dimen mtrl_badge_long_text_horizontal_padding 0x7f06024e +int dimen mtrl_badge_size 0x7f06024f +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f060250 +int dimen mtrl_badge_text_size 0x7f060251 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f060252 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f060253 +int dimen mtrl_badge_with_text_size 0x7f060254 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f060255 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f060256 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060257 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060258 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060259 +int dimen mtrl_bottomappbar_height 0x7f06025a +int dimen mtrl_btn_corner_radius 0x7f06025b +int dimen mtrl_btn_dialog_btn_min_width 0x7f06025c +int dimen mtrl_btn_disabled_elevation 0x7f06025d +int dimen mtrl_btn_disabled_z 0x7f06025e +int dimen mtrl_btn_elevation 0x7f06025f +int dimen mtrl_btn_focused_z 0x7f060260 +int dimen mtrl_btn_hovered_z 0x7f060261 +int dimen mtrl_btn_icon_btn_padding_left 0x7f060262 +int dimen mtrl_btn_icon_padding 0x7f060263 +int dimen mtrl_btn_inset 0x7f060264 +int dimen mtrl_btn_letter_spacing 0x7f060265 +int dimen mtrl_btn_max_width 0x7f060266 +int dimen mtrl_btn_padding_bottom 0x7f060267 +int dimen mtrl_btn_padding_left 0x7f060268 +int dimen mtrl_btn_padding_right 0x7f060269 +int dimen mtrl_btn_padding_top 0x7f06026a +int dimen mtrl_btn_pressed_z 0x7f06026b +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f06026c +int dimen mtrl_btn_stroke_size 0x7f06026d +int dimen mtrl_btn_text_btn_icon_padding 0x7f06026e +int dimen mtrl_btn_text_btn_padding_left 0x7f06026f +int dimen mtrl_btn_text_btn_padding_right 0x7f060270 +int dimen mtrl_btn_text_size 0x7f060271 +int dimen mtrl_btn_z 0x7f060272 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f060273 +int dimen mtrl_calendar_action_height 0x7f060274 +int dimen mtrl_calendar_action_padding 0x7f060275 +int dimen mtrl_calendar_bottom_padding 0x7f060276 +int dimen mtrl_calendar_content_padding 0x7f060277 +int dimen mtrl_calendar_day_corner 0x7f060278 +int dimen mtrl_calendar_day_height 0x7f060279 +int dimen mtrl_calendar_day_horizontal_padding 0x7f06027a +int dimen mtrl_calendar_day_today_stroke 0x7f06027b +int dimen mtrl_calendar_day_vertical_padding 0x7f06027c +int dimen mtrl_calendar_day_width 0x7f06027d +int dimen mtrl_calendar_days_of_week_height 0x7f06027e +int dimen mtrl_calendar_dialog_background_inset 0x7f06027f +int dimen mtrl_calendar_header_content_padding 0x7f060280 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f060281 +int dimen mtrl_calendar_header_divider_thickness 0x7f060282 +int dimen mtrl_calendar_header_height 0x7f060283 +int dimen mtrl_calendar_header_height_fullscreen 0x7f060284 +int dimen mtrl_calendar_header_selection_line_height 0x7f060285 +int dimen mtrl_calendar_header_text_padding 0x7f060286 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f060287 +int dimen mtrl_calendar_header_toggle_margin_top 0x7f060288 +int dimen mtrl_calendar_landscape_header_width 0x7f060289 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f06028a +int dimen mtrl_calendar_month_horizontal_padding 0x7f06028b +int dimen mtrl_calendar_month_vertical_padding 0x7f06028c +int dimen mtrl_calendar_navigation_bottom_padding 0x7f06028d +int dimen mtrl_calendar_navigation_height 0x7f06028e +int dimen mtrl_calendar_navigation_top_padding 0x7f06028f +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f060290 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f060291 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f060292 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f060293 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f060294 +int dimen mtrl_calendar_text_input_padding_top 0x7f060295 +int dimen mtrl_calendar_title_baseline_to_top 0x7f060296 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f060297 +int dimen mtrl_calendar_year_corner 0x7f060298 +int dimen mtrl_calendar_year_height 0x7f060299 +int dimen mtrl_calendar_year_horizontal_padding 0x7f06029a +int dimen mtrl_calendar_year_vertical_padding 0x7f06029b +int dimen mtrl_calendar_year_width 0x7f06029c +int dimen mtrl_card_checked_icon_margin 0x7f06029d +int dimen mtrl_card_checked_icon_size 0x7f06029e +int dimen mtrl_card_corner_radius 0x7f06029f +int dimen mtrl_card_dragged_z 0x7f0602a0 +int dimen mtrl_card_elevation 0x7f0602a1 +int dimen mtrl_card_spacing 0x7f0602a2 +int dimen mtrl_chip_pressed_translation_z 0x7f0602a3 +int dimen mtrl_chip_text_size 0x7f0602a4 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f0602a5 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f0602a6 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f0602a7 +int dimen mtrl_extended_fab_bottom_padding 0x7f0602a8 +int dimen mtrl_extended_fab_disabled_elevation 0x7f0602a9 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f0602aa +int dimen mtrl_extended_fab_elevation 0x7f0602ab +int dimen mtrl_extended_fab_end_padding 0x7f0602ac +int dimen mtrl_extended_fab_end_padding_icon 0x7f0602ad +int dimen mtrl_extended_fab_icon_size 0x7f0602ae +int dimen mtrl_extended_fab_icon_text_spacing 0x7f0602af +int dimen mtrl_extended_fab_min_height 0x7f0602b0 +int dimen mtrl_extended_fab_min_width 0x7f0602b1 +int dimen mtrl_extended_fab_start_padding 0x7f0602b2 +int dimen mtrl_extended_fab_start_padding_icon 0x7f0602b3 +int dimen mtrl_extended_fab_top_padding 0x7f0602b4 +int dimen mtrl_extended_fab_translation_z_base 0x7f0602b5 +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f0602b6 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f0602b7 +int dimen mtrl_fab_elevation 0x7f0602b8 +int dimen mtrl_fab_min_touch_target 0x7f0602b9 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0602ba +int dimen mtrl_fab_translation_z_pressed 0x7f0602bb +int dimen mtrl_high_ripple_default_alpha 0x7f0602bc +int dimen mtrl_high_ripple_focused_alpha 0x7f0602bd +int dimen mtrl_high_ripple_hovered_alpha 0x7f0602be +int dimen mtrl_high_ripple_pressed_alpha 0x7f0602bf +int dimen mtrl_low_ripple_default_alpha 0x7f0602c0 +int dimen mtrl_low_ripple_focused_alpha 0x7f0602c1 +int dimen mtrl_low_ripple_hovered_alpha 0x7f0602c2 +int dimen mtrl_low_ripple_pressed_alpha 0x7f0602c3 +int dimen mtrl_min_touch_target_size 0x7f0602c4 +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0602c5 +int dimen mtrl_navigation_bar_item_default_margin 0x7f0602c6 +int dimen mtrl_navigation_elevation 0x7f0602c7 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0602c8 +int dimen mtrl_navigation_item_icon_padding 0x7f0602c9 +int dimen mtrl_navigation_item_icon_size 0x7f0602ca +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0602cb +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0602cc +int dimen mtrl_navigation_rail_active_text_size 0x7f0602cd +int dimen mtrl_navigation_rail_compact_width 0x7f0602ce +int dimen mtrl_navigation_rail_default_width 0x7f0602cf +int dimen mtrl_navigation_rail_elevation 0x7f0602d0 +int dimen mtrl_navigation_rail_icon_margin 0x7f0602d1 +int dimen mtrl_navigation_rail_icon_size 0x7f0602d2 +int dimen mtrl_navigation_rail_margin 0x7f0602d3 +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0602d4 +int dimen mtrl_navigation_rail_text_size 0x7f0602d5 +int dimen mtrl_progress_circular_inset 0x7f0602d6 +int dimen mtrl_progress_circular_inset_extra_small 0x7f0602d7 +int dimen mtrl_progress_circular_inset_medium 0x7f0602d8 +int dimen mtrl_progress_circular_inset_small 0x7f0602d9 +int dimen mtrl_progress_circular_radius 0x7f0602da +int dimen mtrl_progress_circular_size 0x7f0602db +int dimen mtrl_progress_circular_size_extra_small 0x7f0602dc +int dimen mtrl_progress_circular_size_medium 0x7f0602dd +int dimen mtrl_progress_circular_size_small 0x7f0602de +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0602df +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0602e0 +int dimen mtrl_progress_circular_track_thickness_small 0x7f0602e1 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0602e2 +int dimen mtrl_progress_track_thickness 0x7f0602e3 +int dimen mtrl_shape_corner_size_large_component 0x7f0602e4 +int dimen mtrl_shape_corner_size_medium_component 0x7f0602e5 +int dimen mtrl_shape_corner_size_small_component 0x7f0602e6 +int dimen mtrl_slider_halo_radius 0x7f0602e7 +int dimen mtrl_slider_label_padding 0x7f0602e8 +int dimen mtrl_slider_label_radius 0x7f0602e9 +int dimen mtrl_slider_label_square_side 0x7f0602ea +int dimen mtrl_slider_thumb_elevation 0x7f0602eb +int dimen mtrl_slider_thumb_radius 0x7f0602ec +int dimen mtrl_slider_tick_min_spacing 0x7f0602ed +int dimen mtrl_slider_tick_radius 0x7f0602ee +int dimen mtrl_slider_track_height 0x7f0602ef +int dimen mtrl_slider_track_side_padding 0x7f0602f0 +int dimen mtrl_slider_widget_height 0x7f0602f1 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0602f2 +int dimen mtrl_snackbar_background_corner_radius 0x7f0602f3 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0602f4 +int dimen mtrl_snackbar_margin 0x7f0602f5 +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0602f6 +int dimen mtrl_snackbar_padding_horizontal 0x7f0602f7 +int dimen mtrl_switch_text_padding 0x7f0602f8 +int dimen mtrl_switch_thumb_elevation 0x7f0602f9 +int dimen mtrl_switch_thumb_icon_size 0x7f0602fa +int dimen mtrl_switch_thumb_size 0x7f0602fb +int dimen mtrl_switch_track_height 0x7f0602fc +int dimen mtrl_switch_track_width 0x7f0602fd +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0602fe +int dimen mtrl_textinput_box_corner_radius_small 0x7f0602ff +int dimen mtrl_textinput_box_label_cutout_padding 0x7f060300 +int dimen mtrl_textinput_box_stroke_width_default 0x7f060301 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f060302 +int dimen mtrl_textinput_counter_margin_start 0x7f060303 +int dimen mtrl_textinput_end_icon_margin_start 0x7f060304 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f060305 +int dimen mtrl_textinput_start_icon_margin_end 0x7f060306 +int dimen mtrl_toolbar_default_height 0x7f060307 +int dimen mtrl_tooltip_arrowSize 0x7f060308 +int dimen mtrl_tooltip_cornerSize 0x7f060309 +int dimen mtrl_tooltip_minHeight 0x7f06030a +int dimen mtrl_tooltip_minWidth 0x7f06030b +int dimen mtrl_tooltip_padding 0x7f06030c +int dimen mtrl_transition_shared_axis_slide_distance 0x7f06030d +int dimen notification_action_icon_size 0x7f06030e +int dimen notification_action_text_size 0x7f06030f +int dimen notification_big_circle_margin 0x7f060310 +int dimen notification_content_margin_start 0x7f060311 +int dimen notification_large_icon_height 0x7f060312 +int dimen notification_large_icon_width 0x7f060313 +int dimen notification_main_column_padding_top 0x7f060314 +int dimen notification_media_narrow_margin 0x7f060315 +int dimen notification_right_icon_size 0x7f060316 +int dimen notification_right_side_padding_top 0x7f060317 +int dimen notification_small_icon_background_padding 0x7f060318 +int dimen notification_small_icon_size_as_large 0x7f060319 +int dimen notification_subtext_size 0x7f06031a +int dimen notification_top_pad 0x7f06031b +int dimen notification_top_pad_large_text 0x7f06031c +int dimen sliding_pane_detail_pane_width 0x7f06031d +int dimen tooltip_corner_radius 0x7f06031e +int dimen tooltip_horizontal_padding 0x7f06031f +int dimen tooltip_margin 0x7f060320 +int dimen tooltip_precise_anchor_extra_offset 0x7f060321 +int dimen tooltip_precise_anchor_threshold 0x7f060322 +int dimen tooltip_vertical_padding 0x7f060323 +int dimen tooltip_y_offset_non_touch 0x7f060324 +int dimen tooltip_y_offset_touch 0x7f060325 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070028 +int drawable abc_action_bar_item_background_material 0x7f070029 +int drawable abc_btn_borderless_material 0x7f07002a +int drawable abc_btn_check_material 0x7f07002b +int drawable abc_btn_check_material_anim 0x7f07002c +int drawable abc_btn_check_to_on_mtrl_000 0x7f07002d +int drawable abc_btn_check_to_on_mtrl_015 0x7f07002e +int drawable abc_btn_colored_material 0x7f07002f +int drawable abc_btn_default_mtrl_shape 0x7f070030 +int drawable abc_btn_radio_material 0x7f070031 +int drawable abc_btn_radio_material_anim 0x7f070032 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f070033 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f070034 +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070035 +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070036 +int drawable abc_cab_background_internal_bg 0x7f070037 +int drawable abc_cab_background_top_material 0x7f070038 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070039 +int drawable abc_control_background_material 0x7f07003a +int drawable abc_dialog_material_background 0x7f07003b +int drawable abc_edit_text_material 0x7f07003c +int drawable abc_ic_ab_back_material 0x7f07003d +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07003e +int drawable abc_ic_clear_material 0x7f07003f +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070040 +int drawable abc_ic_go_search_api_material 0x7f070041 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070042 +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070043 +int drawable abc_ic_menu_overflow_material 0x7f070044 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070045 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070046 +int drawable abc_ic_menu_share_mtrl_alpha 0x7f070047 +int drawable abc_ic_search_api_material 0x7f070048 +int drawable abc_ic_voice_search_api_material 0x7f070049 +int drawable abc_item_background_holo_dark 0x7f07004a +int drawable abc_item_background_holo_light 0x7f07004b +int drawable abc_list_divider_material 0x7f07004c +int drawable abc_list_divider_mtrl_alpha 0x7f07004d +int drawable abc_list_focused_holo 0x7f07004e +int drawable abc_list_longpressed_holo 0x7f07004f +int drawable abc_list_pressed_holo_dark 0x7f070050 +int drawable abc_list_pressed_holo_light 0x7f070051 +int drawable abc_list_selector_background_transition_holo_dark 0x7f070052 +int drawable abc_list_selector_background_transition_holo_light 0x7f070053 +int drawable abc_list_selector_disabled_holo_dark 0x7f070054 +int drawable abc_list_selector_disabled_holo_light 0x7f070055 +int drawable abc_list_selector_holo_dark 0x7f070056 +int drawable abc_list_selector_holo_light 0x7f070057 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070058 +int drawable abc_popup_background_mtrl_mult 0x7f070059 +int drawable abc_ratingbar_indicator_material 0x7f07005a +int drawable abc_ratingbar_material 0x7f07005b +int drawable abc_ratingbar_small_material 0x7f07005c +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07005d +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f07005e +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f07005f +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070060 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070061 +int drawable abc_seekbar_thumb_material 0x7f070062 +int drawable abc_seekbar_tick_mark_material 0x7f070063 +int drawable abc_seekbar_track_material 0x7f070064 +int drawable abc_spinner_mtrl_am_alpha 0x7f070065 +int drawable abc_spinner_textfield_background_material 0x7f070066 +int drawable abc_star_black_48dp 0x7f070067 +int drawable abc_star_half_black_48dp 0x7f070068 +int drawable abc_switch_thumb_material 0x7f070069 +int drawable abc_switch_track_mtrl_alpha 0x7f07006a +int drawable abc_tab_indicator_material 0x7f07006b +int drawable abc_tab_indicator_mtrl_alpha 0x7f07006c +int drawable abc_text_cursor_material 0x7f07006d +int drawable abc_text_select_handle_left_mtrl 0x7f07006e +int drawable abc_text_select_handle_middle_mtrl 0x7f07006f +int drawable abc_text_select_handle_right_mtrl 0x7f070070 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070071 +int drawable abc_textfield_default_mtrl_alpha 0x7f070072 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070073 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f070074 +int drawable abc_textfield_search_material 0x7f070075 +int drawable abc_vector_test 0x7f070076 +int drawable avd_hide_password 0x7f070077 +int drawable avd_show_password 0x7f070078 +int drawable btn_checkbox_checked_mtrl 0x7f070079 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f07007a +int drawable btn_checkbox_unchecked_mtrl 0x7f07007b +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f07007c +int drawable btn_radio_off_mtrl 0x7f07007d +int drawable btn_radio_off_to_on_mtrl_animation 0x7f07007e +int drawable btn_radio_on_mtrl 0x7f07007f +int drawable btn_radio_on_to_off_mtrl_animation 0x7f070080 +int drawable design_fab_background 0x7f070081 +int drawable design_ic_visibility 0x7f070082 +int drawable design_ic_visibility_off 0x7f070083 +int drawable design_password_eye 0x7f070084 +int drawable design_snackbar_background 0x7f070085 +int drawable dotnet_bot 0x7f070086 +int drawable ic_arrow_back_black_24 0x7f070087 +int drawable ic_call_answer 0x7f070088 +int drawable ic_call_answer_low 0x7f070089 +int drawable ic_call_answer_video 0x7f07008a +int drawable ic_call_answer_video_low 0x7f07008b +int drawable ic_call_decline 0x7f07008c +int drawable ic_call_decline_low 0x7f07008d +int drawable ic_clear_black_24 0x7f07008e +int drawable ic_clock_black_24dp 0x7f07008f +int drawable ic_keyboard_black_24dp 0x7f070090 +int drawable ic_m3_chip_check 0x7f070091 +int drawable ic_m3_chip_checked_circle 0x7f070092 +int drawable ic_m3_chip_close 0x7f070093 +int drawable ic_mtrl_checked_circle 0x7f070094 +int drawable ic_mtrl_chip_checked_black 0x7f070095 +int drawable ic_mtrl_chip_checked_circle 0x7f070096 +int drawable ic_mtrl_chip_close_circle 0x7f070097 +int drawable ic_search_black_24 0x7f070098 +int drawable indeterminate_static 0x7f070099 +int drawable m3_avd_hide_password 0x7f07009a +int drawable m3_avd_show_password 0x7f07009b +int drawable m3_bottom_sheet_drag_handle 0x7f07009c +int drawable m3_password_eye 0x7f07009d +int drawable m3_popupmenu_background_overlay 0x7f07009e +int drawable m3_radiobutton_ripple 0x7f07009f +int drawable m3_selection_control_ripple 0x7f0700a0 +int drawable m3_tabs_background 0x7f0700a1 +int drawable m3_tabs_line_indicator 0x7f0700a2 +int drawable m3_tabs_rounded_line_indicator 0x7f0700a3 +int drawable m3_tabs_transparent_background 0x7f0700a4 +int drawable material_cursor_drawable 0x7f0700a5 +int drawable material_ic_calendar_black_24dp 0x7f0700a6 +int drawable material_ic_clear_black_24dp 0x7f0700a7 +int drawable material_ic_edit_black_24dp 0x7f0700a8 +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0700a9 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0700aa +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0700ab +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0700ac +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0700ad +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0700ae +int drawable maui_splash 0x7f0700af +int drawable maui_splash_image 0x7f0700b0 +int drawable mtrl_bottomsheet_drag_handle 0x7f0700b1 +int drawable mtrl_checkbox_button 0x7f0700b2 +int drawable mtrl_checkbox_button_checked_unchecked 0x7f0700b3 +int drawable mtrl_checkbox_button_icon 0x7f0700b4 +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x7f0700b5 +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x7f0700b6 +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x7f0700b7 +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x7f0700b8 +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x7f0700b9 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x7f0700ba +int drawable mtrl_checkbox_button_unchecked_checked 0x7f0700bb +int drawable mtrl_dialog_background 0x7f0700bc +int drawable mtrl_dropdown_arrow 0x7f0700bd +int drawable mtrl_ic_arrow_drop_down 0x7f0700be +int drawable mtrl_ic_arrow_drop_up 0x7f0700bf +int drawable mtrl_ic_cancel 0x7f0700c0 +int drawable mtrl_ic_check_mark 0x7f0700c1 +int drawable mtrl_ic_checkbox_checked 0x7f0700c2 +int drawable mtrl_ic_checkbox_unchecked 0x7f0700c3 +int drawable mtrl_ic_error 0x7f0700c4 +int drawable mtrl_ic_indeterminate 0x7f0700c5 +int drawable mtrl_navigation_bar_item_background 0x7f0700c6 +int drawable mtrl_popupmenu_background 0x7f0700c7 +int drawable mtrl_popupmenu_background_overlay 0x7f0700c8 +int drawable mtrl_switch_thumb 0x7f0700c9 +int drawable mtrl_switch_thumb_checked 0x7f0700ca +int drawable mtrl_switch_thumb_checked_pressed 0x7f0700cb +int drawable mtrl_switch_thumb_checked_unchecked 0x7f0700cc +int drawable mtrl_switch_thumb_pressed 0x7f0700cd +int drawable mtrl_switch_thumb_pressed_checked 0x7f0700ce +int drawable mtrl_switch_thumb_pressed_unchecked 0x7f0700cf +int drawable mtrl_switch_thumb_unchecked 0x7f0700d0 +int drawable mtrl_switch_thumb_unchecked_checked 0x7f0700d1 +int drawable mtrl_switch_thumb_unchecked_pressed 0x7f0700d2 +int drawable mtrl_switch_track 0x7f0700d3 +int drawable mtrl_switch_track_decoration 0x7f0700d4 +int drawable mtrl_tabs_default_indicator 0x7f0700d5 +int drawable navigation_empty_icon 0x7f0700d6 +int drawable notification_action_background 0x7f0700d7 +int drawable notification_bg 0x7f0700d8 +int drawable notification_bg_low 0x7f0700d9 +int drawable notification_bg_low_normal 0x7f0700da +int drawable notification_bg_low_pressed 0x7f0700db +int drawable notification_bg_normal 0x7f0700dc +int drawable notification_bg_normal_pressed 0x7f0700dd +int drawable notification_icon_background 0x7f0700de +int drawable notification_oversize_large_icon_bg 0x7f0700df +int drawable notification_template_icon_bg 0x7f0700e0 +int drawable notification_template_icon_low_bg 0x7f0700e1 +int drawable notification_tile_bg 0x7f0700e2 +int drawable notify_panel_notification_icon_bg 0x7f0700e3 +int drawable splash 0x7f0700e4 +int drawable test_level_drawable 0x7f0700e5 +int drawable tooltip_frame_dark 0x7f0700e6 +int drawable tooltip_frame_light 0x7f0700e7 +int id ALT 0x7f080000 +int id BOTTOM_END 0x7f080001 +int id BOTTOM_START 0x7f080002 +int id CTRL 0x7f080003 +int id FUNCTION 0x7f080004 +int id META 0x7f080005 +int id NO_DEBUG 0x7f080006 +int id SHIFT 0x7f080007 +int id SHOW_ALL 0x7f080008 +int id SHOW_PATH 0x7f080009 +int id SHOW_PROGRESS 0x7f08000a +int id SYM 0x7f08000b +int id TOP_END 0x7f08000c +int id TOP_START 0x7f08000d +int id above 0x7f08000e +int id accelerate 0x7f08000f +int id accessibility_action_clickable_span 0x7f080010 +int id accessibility_custom_action_0 0x7f080011 +int id accessibility_custom_action_1 0x7f080012 +int id accessibility_custom_action_10 0x7f080013 +int id accessibility_custom_action_11 0x7f080014 +int id accessibility_custom_action_12 0x7f080015 +int id accessibility_custom_action_13 0x7f080016 +int id accessibility_custom_action_14 0x7f080017 +int id accessibility_custom_action_15 0x7f080018 +int id accessibility_custom_action_16 0x7f080019 +int id accessibility_custom_action_17 0x7f08001a +int id accessibility_custom_action_18 0x7f08001b +int id accessibility_custom_action_19 0x7f08001c +int id accessibility_custom_action_2 0x7f08001d +int id accessibility_custom_action_20 0x7f08001e +int id accessibility_custom_action_21 0x7f08001f +int id accessibility_custom_action_22 0x7f080020 +int id accessibility_custom_action_23 0x7f080021 +int id accessibility_custom_action_24 0x7f080022 +int id accessibility_custom_action_25 0x7f080023 +int id accessibility_custom_action_26 0x7f080024 +int id accessibility_custom_action_27 0x7f080025 +int id accessibility_custom_action_28 0x7f080026 +int id accessibility_custom_action_29 0x7f080027 +int id accessibility_custom_action_3 0x7f080028 +int id accessibility_custom_action_30 0x7f080029 +int id accessibility_custom_action_31 0x7f08002a +int id accessibility_custom_action_4 0x7f08002b +int id accessibility_custom_action_5 0x7f08002c +int id accessibility_custom_action_6 0x7f08002d +int id accessibility_custom_action_7 0x7f08002e +int id accessibility_custom_action_8 0x7f08002f +int id accessibility_custom_action_9 0x7f080030 +int id actionDown 0x7f080031 +int id actionDownUp 0x7f080032 +int id actionUp 0x7f080033 +int id action_bar 0x7f080034 +int id action_bar_activity_content 0x7f080035 +int id action_bar_container 0x7f080036 +int id action_bar_root 0x7f080037 +int id action_bar_spinner 0x7f080038 +int id action_bar_subtitle 0x7f080039 +int id action_bar_title 0x7f08003a +int id action_container 0x7f08003b +int id action_context_bar 0x7f08003c +int id action_divider 0x7f08003d +int id action_image 0x7f08003e +int id action_menu_divider 0x7f08003f +int id action_menu_presenter 0x7f080040 +int id action_mode_bar 0x7f080041 +int id action_mode_bar_stub 0x7f080042 +int id action_mode_close_button 0x7f080043 +int id action_text 0x7f080044 +int id actions 0x7f080045 +int id activity_chooser_view_content 0x7f080046 +int id add 0x7f080047 +int id adjacent 0x7f080048 +int id alertTitle 0x7f080049 +int id aligned 0x7f08004a +int id all 0x7f08004b +int id allStates 0x7f08004c +int id always 0x7f08004d +int id alwaysAllow 0x7f08004e +int id alwaysDisallow 0x7f08004f +int id androidx_window_activity_scope 0x7f080050 +int id animateToEnd 0x7f080051 +int id animateToStart 0x7f080052 +int id antiClockwise 0x7f080053 +int id anticipate 0x7f080054 +int id arc 0x7f080055 +int id asConfigured 0x7f080056 +int id async 0x7f080057 +int id auto 0x7f080058 +int id autoComplete 0x7f080059 +int id autoCompleteToEnd 0x7f08005a +int id autoCompleteToStart 0x7f08005b +int id axisRelative 0x7f08005c +int id barrier 0x7f08005d +int id baseline 0x7f08005e +int id beginOnFirstDraw 0x7f08005f +int id beginning 0x7f080060 +int id below 0x7f080061 +int id bestChoice 0x7f080062 +int id blocking 0x7f080063 +int id bottom 0x7f080064 +int id bottomToTop 0x7f080065 +int id bounce 0x7f080066 +int id bounceBoth 0x7f080067 +int id bounceEnd 0x7f080068 +int id bounceStart 0x7f080069 +int id browser_actions_header_text 0x7f08006a +int id browser_actions_menu_item_icon 0x7f08006b +int id browser_actions_menu_item_text 0x7f08006c +int id browser_actions_menu_items 0x7f08006d +int id browser_actions_menu_view 0x7f08006e +int id buttonPanel 0x7f08006f +int id cache_measures 0x7f080070 +int id callMeasure 0x7f080071 +int id cancel_button 0x7f080072 +int id carryVelocity 0x7f080073 +int id center 0x7f080074 +int id centerCrop 0x7f080075 +int id centerInside 0x7f080076 +int id center_horizontal 0x7f080077 +int id center_vertical 0x7f080078 +int id chain 0x7f080079 +int id chain2 0x7f08007a +int id chains 0x7f08007b +int id checkbox 0x7f08007c +int id checked 0x7f08007d +int id chronometer 0x7f08007e +int id circle_center 0x7f08007f +int id clear_text 0x7f080080 +int id clip_horizontal 0x7f080081 +int id clip_vertical 0x7f080082 +int id clockwise 0x7f080083 +int id closest 0x7f080084 +int id collapseActionView 0x7f080085 +int id compress 0x7f080086 +int id confirm_button 0x7f080087 +int id constraint 0x7f080088 +int id container 0x7f080089 +int id content 0x7f08008a +int id contentPanel 0x7f08008b +int id contiguous 0x7f08008c +int id continuousVelocity 0x7f08008d +int id coordinator 0x7f08008e +int id cos 0x7f08008f +int id counterclockwise 0x7f080090 +int id cradle 0x7f080091 +int id currentState 0x7f080092 +int id custom 0x7f080093 +int id customPanel 0x7f080094 +int id cut 0x7f080095 +int id date_picker_actions 0x7f080096 +int id decelerate 0x7f080097 +int id decelerateAndComplete 0x7f080098 +int id decor_content_parent 0x7f080099 +int id default_activity_button 0x7f08009a +int id deltaRelative 0x7f08009b +int id dependency_ordering 0x7f08009c +int id design_bottom_sheet 0x7f08009d +int id design_menu_item_action_area 0x7f08009e +int id design_menu_item_action_area_stub 0x7f08009f +int id design_menu_item_text 0x7f0800a0 +int id design_navigation_view 0x7f0800a1 +int id dialog_button 0x7f0800a2 +int id dimensions 0x7f0800a3 +int id direct 0x7f0800a4 +int id disableHome 0x7f0800a5 +int id disableIntraAutoTransition 0x7f0800a6 +int id disablePostScroll 0x7f0800a7 +int id disableScroll 0x7f0800a8 +int id disjoint 0x7f0800a9 +int id dragAnticlockwise 0x7f0800aa +int id dragClockwise 0x7f0800ab +int id dragDown 0x7f0800ac +int id dragEnd 0x7f0800ad +int id dragLeft 0x7f0800ae +int id dragRight 0x7f0800af +int id dragStart 0x7f0800b0 +int id dragUp 0x7f0800b1 +int id dropdown_menu 0x7f0800b2 +int id easeIn 0x7f0800b3 +int id easeInOut 0x7f0800b4 +int id easeOut 0x7f0800b5 +int id east 0x7f0800b6 +int id edge 0x7f0800b7 +int id edit_query 0x7f0800b8 +int id edit_text_id 0x7f0800b9 +int id elastic 0x7f0800ba +int id embed 0x7f0800bb +int id end 0x7f0800bc +int id endToStart 0x7f0800bd +int id enterAlways 0x7f0800be +int id enterAlwaysCollapsed 0x7f0800bf +int id escape 0x7f0800c0 +int id exitUntilCollapsed 0x7f0800c1 +int id expand_activities_button 0x7f0800c2 +int id expanded_menu 0x7f0800c3 +int id fade 0x7f0800c4 +int id fill 0x7f0800c5 +int id fill_horizontal 0x7f0800c6 +int id fill_vertical 0x7f0800c7 +int id filled 0x7f0800c8 +int id fitCenter 0x7f0800c9 +int id fitEnd 0x7f0800ca +int id fitStart 0x7f0800cb +int id fitToContents 0x7f0800cc +int id fitXY 0x7f0800cd +int id fixed 0x7f0800ce +int id flip 0x7f0800cf +int id floating 0x7f0800d0 +int id flyoutcontent_appbar 0x7f0800d1 +int id forever 0x7f0800d2 +int id fragment_container_view_tag 0x7f0800d3 +int id frost 0x7f0800d4 +int id fullscreen_header 0x7f0800d5 +int id ghost_view 0x7f0800d6 +int id ghost_view_holder 0x7f0800d7 +int id glide_custom_view_target_tag 0x7f0800d8 +int id gone 0x7f0800d9 +int id graph 0x7f0800da +int id graph_wrap 0x7f0800db +int id group_divider 0x7f0800dc +int id grouping 0x7f0800dd +int id groups 0x7f0800de +int id header_title 0x7f0800df +int id hide_ime_id 0x7f0800e0 +int id hideable 0x7f0800e1 +int id home 0x7f0800e2 +int id homeAsUp 0x7f0800e3 +int id honorRequest 0x7f0800e4 +int id horizontal 0x7f0800e5 +int id horizontal_only 0x7f0800e6 +int id icon 0x7f0800e7 +int id icon_group 0x7f0800e8 +int id ifRoom 0x7f0800e9 +int id ignore 0x7f0800ea +int id ignoreRequest 0x7f0800eb +int id image 0x7f0800ec +int id immediateStop 0x7f0800ed +int id included 0x7f0800ee +int id indeterminate 0x7f0800ef +int id info 0x7f0800f0 +int id invisible 0x7f0800f1 +int id inward 0x7f0800f2 +int id is_pooling_container_tag 0x7f0800f3 +int id italic 0x7f0800f4 +int id item_touch_helper_previous_elevation 0x7f0800f5 +int id jumpToEnd 0x7f0800f6 +int id jumpToStart 0x7f0800f7 +int id labeled 0x7f0800f8 +int id layout 0x7f0800f9 +int id left 0x7f0800fa +int id leftToRight 0x7f0800fb +int id legacy 0x7f0800fc +int id line1 0x7f0800fd +int id line3 0x7f0800fe +int id linear 0x7f0800ff +int id listMode 0x7f080100 +int id list_item 0x7f080101 +int id locale 0x7f080102 +int id ltr 0x7f080103 +int id m3_side_sheet 0x7f080104 +int id marquee 0x7f080105 +int id masked 0x7f080106 +int id match_constraint 0x7f080107 +int id match_parent 0x7f080108 +int id material_clock_display 0x7f080109 +int id material_clock_display_and_toggle 0x7f08010a +int id material_clock_face 0x7f08010b +int id material_clock_hand 0x7f08010c +int id material_clock_level 0x7f08010d +int id material_clock_period_am_button 0x7f08010e +int id material_clock_period_pm_button 0x7f08010f +int id material_clock_period_toggle 0x7f080110 +int id material_hour_text_input 0x7f080111 +int id material_hour_tv 0x7f080112 +int id material_label 0x7f080113 +int id material_minute_text_input 0x7f080114 +int id material_minute_tv 0x7f080115 +int id material_textinput_timepicker 0x7f080116 +int id material_timepicker_cancel_button 0x7f080117 +int id material_timepicker_container 0x7f080118 +int id material_timepicker_mode_button 0x7f080119 +int id material_timepicker_ok_button 0x7f08011a +int id material_timepicker_view 0x7f08011b +int id material_value_index 0x7f08011c +int id matrix 0x7f08011d +int id maui_custom_view_target_running_callbacks_tag 0x7f08011e +int id message 0x7f08011f +int id middle 0x7f080120 +int id mini 0x7f080121 +int id month_grid 0x7f080122 +int id month_navigation_bar 0x7f080123 +int id month_navigation_fragment_toggle 0x7f080124 +int id month_navigation_next 0x7f080125 +int id month_navigation_previous 0x7f080126 +int id month_title 0x7f080127 +int id motion_base 0x7f080128 +int id mtrl_anchor_parent 0x7f080129 +int id mtrl_calendar_day_selector_frame 0x7f08012a +int id mtrl_calendar_days_of_week 0x7f08012b +int id mtrl_calendar_frame 0x7f08012c +int id mtrl_calendar_main_pane 0x7f08012d +int id mtrl_calendar_months 0x7f08012e +int id mtrl_calendar_selection_frame 0x7f08012f +int id mtrl_calendar_text_input_frame 0x7f080130 +int id mtrl_calendar_year_selector_frame 0x7f080131 +int id mtrl_card_checked_layer_id 0x7f080132 +int id mtrl_child_content_container 0x7f080133 +int id mtrl_internal_children_alpha_tag 0x7f080134 +int id mtrl_motion_snapshot_view 0x7f080135 +int id mtrl_picker_fullscreen 0x7f080136 +int id mtrl_picker_header 0x7f080137 +int id mtrl_picker_header_selection_text 0x7f080138 +int id mtrl_picker_header_title_and_selection 0x7f080139 +int id mtrl_picker_header_toggle 0x7f08013a +int id mtrl_picker_text_input_date 0x7f08013b +int id mtrl_picker_text_input_range_end 0x7f08013c +int id mtrl_picker_text_input_range_start 0x7f08013d +int id mtrl_picker_title_text 0x7f08013e +int id mtrl_view_tag_bottom_padding 0x7f08013f +int id multiply 0x7f080140 +int id nav_controller_view_tag 0x7f080141 +int id nav_host 0x7f080142 +int id nav_host_fragment_container 0x7f080143 +int id navigation_bar_item_active_indicator_view 0x7f080144 +int id navigation_bar_item_icon_container 0x7f080145 +int id navigation_bar_item_icon_view 0x7f080146 +int id navigation_bar_item_labels_group 0x7f080147 +int id navigation_bar_item_large_label_view 0x7f080148 +int id navigation_bar_item_small_label_view 0x7f080149 +int id navigation_header_container 0x7f08014a +int id navigation_layout 0x7f08014b +int id navigationlayout_appbar 0x7f08014c +int id navigationlayout_bottomtabs 0x7f08014d +int id navigationlayout_content 0x7f08014e +int id navigationlayout_toptabs 0x7f08014f +int id never 0x7f080150 +int id neverCompleteToEnd 0x7f080151 +int id neverCompleteToStart 0x7f080152 +int id noScroll 0x7f080153 +int id noState 0x7f080154 +int id none 0x7f080155 +int id normal 0x7f080156 +int id north 0x7f080157 +int id notification_background 0x7f080158 +int id notification_main_column 0x7f080159 +int id notification_main_column_container 0x7f08015a +int id off 0x7f08015b +int id on 0x7f08015c +int id onInterceptTouchReturnSwipe 0x7f08015d +int id open_search_bar_text_view 0x7f08015e +int id open_search_view_background 0x7f08015f +int id open_search_view_clear_button 0x7f080160 +int id open_search_view_content_container 0x7f080161 +int id open_search_view_divider 0x7f080162 +int id open_search_view_dummy_toolbar 0x7f080163 +int id open_search_view_edit_text 0x7f080164 +int id open_search_view_header_container 0x7f080165 +int id open_search_view_root 0x7f080166 +int id open_search_view_scrim 0x7f080167 +int id open_search_view_search_prefix 0x7f080168 +int id open_search_view_status_bar_spacer 0x7f080169 +int id open_search_view_toolbar 0x7f08016a +int id open_search_view_toolbar_container 0x7f08016b +int id outline 0x7f08016c +int id outward 0x7f08016d +int id overshoot 0x7f08016e +int id packed 0x7f08016f +int id parallax 0x7f080170 +int id parent 0x7f080171 +int id parentPanel 0x7f080172 +int id parentRelative 0x7f080173 +int id parent_matrix 0x7f080174 +int id password_toggle 0x7f080175 +int id path 0x7f080176 +int id pathRelative 0x7f080177 +int id peekHeight 0x7f080178 +int id percent 0x7f080179 +int id pin 0x7f08017a +int id pooling_container_listener_holder_tag 0x7f08017b +int id position 0x7f08017c +int id postLayout 0x7f08017d +int id pressed 0x7f08017e +int id progress_circular 0x7f08017f +int id progress_horizontal 0x7f080180 +int id radio 0x7f080181 +int id ratio 0x7f080182 +int id rectangles 0x7f080183 +int id report_drawn 0x7f080184 +int id reverseSawtooth 0x7f080185 +int id right 0x7f080186 +int id rightToLeft 0x7f080187 +int id right_icon 0x7f080188 +int id right_side 0x7f080189 +int id rounded 0x7f08018a +int id row_index_key 0x7f08018b +int id rtl 0x7f08018c +int id save_non_transition_alpha 0x7f08018d +int id save_overlay_view 0x7f08018e +int id sawtooth 0x7f08018f +int id scale 0x7f080190 +int id screen 0x7f080191 +int id scroll 0x7f080192 +int id scrollIndicatorDown 0x7f080193 +int id scrollIndicatorUp 0x7f080194 +int id scrollView 0x7f080195 +int id scrollable 0x7f080196 +int id search_badge 0x7f080197 +int id search_bar 0x7f080198 +int id search_button 0x7f080199 +int id search_close_btn 0x7f08019a +int id search_edit_frame 0x7f08019b +int id search_go_btn 0x7f08019c +int id search_mag_icon 0x7f08019d +int id search_plate 0x7f08019e +int id search_src_text 0x7f08019f +int id search_voice_btn 0x7f0801a0 +int id select_dialog_listview 0x7f0801a1 +int id selected 0x7f0801a2 +int id selection_type 0x7f0801a3 +int id sharedValueSet 0x7f0801a4 +int id sharedValueUnset 0x7f0801a5 +int id shellcontent_appbar 0x7f0801a6 +int id shortcut 0x7f0801a7 +int id showCustom 0x7f0801a8 +int id showHome 0x7f0801a9 +int id showTitle 0x7f0801aa +int id sin 0x7f0801ab +int id skipCollapsed 0x7f0801ac +int id skipped 0x7f0801ad +int id slide 0x7f0801ae +int id sliding_pane_detail_container 0x7f0801af +int id sliding_pane_layout 0x7f0801b0 +int id snackbar_action 0x7f0801b1 +int id snackbar_text 0x7f0801b2 +int id snap 0x7f0801b3 +int id snapMargins 0x7f0801b4 +int id south 0x7f0801b5 +int id spacer 0x7f0801b6 +int id special_effects_controller_view_tag 0x7f0801b7 +int id spline 0x7f0801b8 +int id split_action_bar 0x7f0801b9 +int id spread 0x7f0801ba +int id spread_inside 0x7f0801bb +int id spring 0x7f0801bc +int id square 0x7f0801bd +int id src_atop 0x7f0801be +int id src_in 0x7f0801bf +int id src_over 0x7f0801c0 +int id standard 0x7f0801c1 +int id start 0x7f0801c2 +int id startHorizontal 0x7f0801c3 +int id startToEnd 0x7f0801c4 +int id startVertical 0x7f0801c5 +int id staticLayout 0x7f0801c6 +int id staticPostLayout 0x7f0801c7 +int id stop 0x7f0801c8 +int id stretch 0x7f0801c9 +int id submenuarrow 0x7f0801ca +int id submit_area 0x7f0801cb +int id supportScrollUp 0x7f0801cc +int id tabMode 0x7f0801cd +int id tag_accessibility_actions 0x7f0801ce +int id tag_accessibility_clickable_spans 0x7f0801cf +int id tag_accessibility_heading 0x7f0801d0 +int id tag_accessibility_pane_title 0x7f0801d1 +int id tag_compat_insets_dispatch 0x7f0801d2 +int id tag_on_apply_window_listener 0x7f0801d3 +int id tag_on_receive_content_listener 0x7f0801d4 +int id tag_on_receive_content_mime_types 0x7f0801d5 +int id tag_screen_reader_focusable 0x7f0801d6 +int id tag_state_description 0x7f0801d7 +int id tag_system_bar_state_monitor 0x7f0801d8 +int id tag_transition_group 0x7f0801d9 +int id tag_unhandled_key_event_manager 0x7f0801da +int id tag_unhandled_key_listeners 0x7f0801db +int id tag_window_insets_animation_callback 0x7f0801dc +int id text 0x7f0801dd +int id text2 0x7f0801de +int id textEnd 0x7f0801df +int id textSpacerNoButtons 0x7f0801e0 +int id textSpacerNoTitle 0x7f0801e1 +int id textStart 0x7f0801e2 +int id textTop 0x7f0801e3 +int id text_input_end_icon 0x7f0801e4 +int id text_input_error_icon 0x7f0801e5 +int id text_input_start_icon 0x7f0801e6 +int id textinput_counter 0x7f0801e7 +int id textinput_error 0x7f0801e8 +int id textinput_helper_text 0x7f0801e9 +int id textinput_placeholder 0x7f0801ea +int id textinput_prefix_text 0x7f0801eb +int id textinput_suffix_text 0x7f0801ec +int id time 0x7f0801ed +int id title 0x7f0801ee +int id titleDividerNoCustom 0x7f0801ef +int id title_template 0x7f0801f0 +int id toggle 0x7f0801f1 +int id top 0x7f0801f2 +int id topPanel 0x7f0801f3 +int id topToBottom 0x7f0801f4 +int id touch_outside 0x7f0801f5 +int id transitionToEnd 0x7f0801f6 +int id transitionToStart 0x7f0801f7 +int id transition_clip 0x7f0801f8 +int id transition_current_scene 0x7f0801f9 +int id transition_image_transform 0x7f0801fa +int id transition_layout_save 0x7f0801fb +int id transition_pause_alpha 0x7f0801fc +int id transition_position 0x7f0801fd +int id transition_scene_layoutid_cache 0x7f0801fe +int id transition_transform 0x7f0801ff +int id triangle 0x7f080200 +int id unchecked 0x7f080201 +int id uniform 0x7f080202 +int id unlabeled 0x7f080203 +int id up 0x7f080204 +int id useLogo 0x7f080205 +int id vertical 0x7f080206 +int id vertical_only 0x7f080207 +int id view_offset_helper 0x7f080208 +int id view_transition 0x7f080209 +int id view_tree_disjoint_parent 0x7f08020a +int id view_tree_lifecycle_owner 0x7f08020b +int id view_tree_on_back_pressed_dispatcher_owner 0x7f08020c +int id view_tree_saved_state_registry_owner 0x7f08020d +int id view_tree_view_model_store_owner 0x7f08020e +int id visible 0x7f08020f +int id visible_removing_fragment_view_tag 0x7f080210 +int id west 0x7f080211 +int id withText 0x7f080212 +int id with_icon 0x7f080213 +int id withinBounds 0x7f080214 +int id wrap 0x7f080215 +int id wrap_content 0x7f080216 +int id wrap_content_constrained 0x7f080217 +int id x_left 0x7f080218 +int id x_right 0x7f080219 +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_navAnimTime 0x7f090005 +int integer config_tooltipAnimTime 0x7f090006 +int integer design_snackbar_text_max_lines 0x7f090007 +int integer design_tab_indicator_anim_duration_ms 0x7f090008 +int integer hide_password_duration 0x7f090009 +int integer m3_badge_max_number 0x7f09000a +int integer m3_btn_anim_delay_ms 0x7f09000b +int integer m3_btn_anim_duration_ms 0x7f09000c +int integer m3_card_anim_delay_ms 0x7f09000d +int integer m3_card_anim_duration_ms 0x7f09000e +int integer m3_chip_anim_duration 0x7f09000f +int integer m3_sys_motion_duration_extra_long1 0x7f090010 +int integer m3_sys_motion_duration_extra_long2 0x7f090011 +int integer m3_sys_motion_duration_extra_long3 0x7f090012 +int integer m3_sys_motion_duration_extra_long4 0x7f090013 +int integer m3_sys_motion_duration_long1 0x7f090014 +int integer m3_sys_motion_duration_long2 0x7f090015 +int integer m3_sys_motion_duration_long3 0x7f090016 +int integer m3_sys_motion_duration_long4 0x7f090017 +int integer m3_sys_motion_duration_medium1 0x7f090018 +int integer m3_sys_motion_duration_medium2 0x7f090019 +int integer m3_sys_motion_duration_medium3 0x7f09001a +int integer m3_sys_motion_duration_medium4 0x7f09001b +int integer m3_sys_motion_duration_short1 0x7f09001c +int integer m3_sys_motion_duration_short2 0x7f09001d +int integer m3_sys_motion_duration_short3 0x7f09001e +int integer m3_sys_motion_duration_short4 0x7f09001f +int integer m3_sys_motion_path 0x7f090020 +int integer m3_sys_shape_corner_extra_large_corner_family 0x7f090021 +int integer m3_sys_shape_corner_extra_small_corner_family 0x7f090022 +int integer m3_sys_shape_corner_full_corner_family 0x7f090023 +int integer m3_sys_shape_corner_large_corner_family 0x7f090024 +int integer m3_sys_shape_corner_medium_corner_family 0x7f090025 +int integer m3_sys_shape_corner_small_corner_family 0x7f090026 +int integer material_motion_duration_long_1 0x7f090027 +int integer material_motion_duration_long_2 0x7f090028 +int integer material_motion_duration_medium_1 0x7f090029 +int integer material_motion_duration_medium_2 0x7f09002a +int integer material_motion_duration_short_1 0x7f09002b +int integer material_motion_duration_short_2 0x7f09002c +int integer material_motion_path 0x7f09002d +int integer mtrl_badge_max_character_count 0x7f09002e +int integer mtrl_btn_anim_delay_ms 0x7f09002f +int integer mtrl_btn_anim_duration_ms 0x7f090030 +int integer mtrl_calendar_header_orientation 0x7f090031 +int integer mtrl_calendar_selection_text_lines 0x7f090032 +int integer mtrl_calendar_year_selector_span 0x7f090033 +int integer mtrl_card_anim_delay_ms 0x7f090034 +int integer mtrl_card_anim_duration_ms 0x7f090035 +int integer mtrl_chip_anim_duration 0x7f090036 +int integer mtrl_switch_thumb_motion_duration 0x7f090037 +int integer mtrl_switch_thumb_post_morphing_duration 0x7f090038 +int integer mtrl_switch_thumb_pre_morphing_duration 0x7f090039 +int integer mtrl_switch_thumb_pressed_duration 0x7f09003a +int integer mtrl_switch_thumb_viewport_center_coordinate 0x7f09003b +int integer mtrl_switch_thumb_viewport_size 0x7f09003c +int integer mtrl_switch_track_viewport_height 0x7f09003d +int integer mtrl_switch_track_viewport_width 0x7f09003e +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09003f +int integer mtrl_view_gone 0x7f090040 +int integer mtrl_view_invisible 0x7f090041 +int integer mtrl_view_visible 0x7f090042 +int integer show_password_duration 0x7f090043 +int integer status_bar_notification_info_maxnum 0x7f090044 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 +int interpolator fast_out_slow_in 0x7f0a0006 +int interpolator m3_sys_motion_easing_emphasized 0x7f0a0007 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x7f0a0008 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x7f0a0009 +int interpolator m3_sys_motion_easing_linear 0x7f0a000a +int interpolator m3_sys_motion_easing_standard 0x7f0a000b +int interpolator m3_sys_motion_easing_standard_accelerate 0x7f0a000c +int interpolator m3_sys_motion_easing_standard_decelerate 0x7f0a000d +int interpolator mtrl_fast_out_linear_in 0x7f0a000e +int interpolator mtrl_fast_out_slow_in 0x7f0a000f +int interpolator mtrl_linear 0x7f0a0010 +int interpolator mtrl_linear_out_slow_in 0x7f0a0011 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout browser_actions_context_menu_page 0x7f0b001c +int layout browser_actions_context_menu_row 0x7f0b001d +int layout custom_dialog 0x7f0b001e +int layout design_bottom_navigation_item 0x7f0b001f +int layout design_bottom_sheet_dialog 0x7f0b0020 +int layout design_layout_snackbar 0x7f0b0021 +int layout design_layout_snackbar_include 0x7f0b0022 +int layout design_layout_tab_icon 0x7f0b0023 +int layout design_layout_tab_text 0x7f0b0024 +int layout design_menu_item_action_area 0x7f0b0025 +int layout design_navigation_item 0x7f0b0026 +int layout design_navigation_item_header 0x7f0b0027 +int layout design_navigation_item_separator 0x7f0b0028 +int layout design_navigation_item_subheader 0x7f0b0029 +int layout design_navigation_menu 0x7f0b002a +int layout design_navigation_menu_item 0x7f0b002b +int layout design_text_input_end_icon 0x7f0b002c +int layout design_text_input_start_icon 0x7f0b002d +int layout drawer_layout 0x7f0b002e +int layout flyoutcontent 0x7f0b002f +int layout fragment_backstack 0x7f0b0030 +int layout ime_base_split_test_activity 0x7f0b0031 +int layout ime_secondary_split_test_activity 0x7f0b0032 +int layout m3_alert_dialog 0x7f0b0033 +int layout m3_alert_dialog_actions 0x7f0b0034 +int layout m3_alert_dialog_title 0x7f0b0035 +int layout m3_auto_complete_simple_item 0x7f0b0036 +int layout m3_side_sheet_dialog 0x7f0b0037 +int layout material_chip_input_combo 0x7f0b0038 +int layout material_clock_display 0x7f0b0039 +int layout material_clock_display_divider 0x7f0b003a +int layout material_clock_period_toggle 0x7f0b003b +int layout material_clock_period_toggle_land 0x7f0b003c +int layout material_clockface_textview 0x7f0b003d +int layout material_clockface_view 0x7f0b003e +int layout material_radial_view_group 0x7f0b003f +int layout material_textinput_timepicker 0x7f0b0040 +int layout material_time_chip 0x7f0b0041 +int layout material_time_input 0x7f0b0042 +int layout material_timepicker 0x7f0b0043 +int layout material_timepicker_dialog 0x7f0b0044 +int layout material_timepicker_textinput_display 0x7f0b0045 +int layout mtrl_alert_dialog 0x7f0b0046 +int layout mtrl_alert_dialog_actions 0x7f0b0047 +int layout mtrl_alert_dialog_title 0x7f0b0048 +int layout mtrl_alert_select_dialog_item 0x7f0b0049 +int layout mtrl_alert_select_dialog_multichoice 0x7f0b004a +int layout mtrl_alert_select_dialog_singlechoice 0x7f0b004b +int layout mtrl_auto_complete_simple_item 0x7f0b004c +int layout mtrl_calendar_day 0x7f0b004d +int layout mtrl_calendar_day_of_week 0x7f0b004e +int layout mtrl_calendar_days_of_week 0x7f0b004f +int layout mtrl_calendar_horizontal 0x7f0b0050 +int layout mtrl_calendar_month 0x7f0b0051 +int layout mtrl_calendar_month_labeled 0x7f0b0052 +int layout mtrl_calendar_month_navigation 0x7f0b0053 +int layout mtrl_calendar_months 0x7f0b0054 +int layout mtrl_calendar_vertical 0x7f0b0055 +int layout mtrl_calendar_year 0x7f0b0056 +int layout mtrl_layout_snackbar 0x7f0b0057 +int layout mtrl_layout_snackbar_include 0x7f0b0058 +int layout mtrl_navigation_rail_item 0x7f0b0059 +int layout mtrl_picker_actions 0x7f0b005a +int layout mtrl_picker_dialog 0x7f0b005b +int layout mtrl_picker_fullscreen 0x7f0b005c +int layout mtrl_picker_header_dialog 0x7f0b005d +int layout mtrl_picker_header_fullscreen 0x7f0b005e +int layout mtrl_picker_header_selection_text 0x7f0b005f +int layout mtrl_picker_header_title_text 0x7f0b0060 +int layout mtrl_picker_header_toggle 0x7f0b0061 +int layout mtrl_picker_text_input_date 0x7f0b0062 +int layout mtrl_picker_text_input_date_range 0x7f0b0063 +int layout mtrl_search_bar 0x7f0b0064 +int layout mtrl_search_view 0x7f0b0065 +int layout navigationlayout 0x7f0b0066 +int layout notification_action 0x7f0b0067 +int layout notification_action_tombstone 0x7f0b0068 +int layout notification_template_custom_big 0x7f0b0069 +int layout notification_template_icon_group 0x7f0b006a +int layout notification_template_part_chronometer 0x7f0b006b +int layout notification_template_part_time 0x7f0b006c +int layout select_dialog_item_material 0x7f0b006d +int layout select_dialog_multichoice_material 0x7f0b006e +int layout select_dialog_singlechoice_material 0x7f0b006f +int layout shellcontent 0x7f0b0070 +int layout support_simple_spinner_dropdown_item 0x7f0b0071 +int mipmap appicon 0x7f0d0000 +int mipmap appicon_background 0x7f0d0001 +int mipmap appicon_foreground 0x7f0d0002 +int mipmap appicon_round 0x7f0d0003 +int plurals mtrl_badge_content_description 0x7f0e0000 +int string abc_action_bar_home_description 0x7f0f0000 +int string abc_action_bar_up_description 0x7f0f0001 +int string abc_action_menu_overflow_description 0x7f0f0002 +int string abc_action_mode_done 0x7f0f0003 +int string abc_activity_chooser_view_see_all 0x7f0f0004 +int string abc_activitychooserview_choose_application 0x7f0f0005 +int string abc_capital_off 0x7f0f0006 +int string abc_capital_on 0x7f0f0007 +int string abc_menu_alt_shortcut_label 0x7f0f0008 +int string abc_menu_ctrl_shortcut_label 0x7f0f0009 +int string abc_menu_delete_shortcut_label 0x7f0f000a +int string abc_menu_enter_shortcut_label 0x7f0f000b +int string abc_menu_function_shortcut_label 0x7f0f000c +int string abc_menu_meta_shortcut_label 0x7f0f000d +int string abc_menu_shift_shortcut_label 0x7f0f000e +int string abc_menu_space_shortcut_label 0x7f0f000f +int string abc_menu_sym_shortcut_label 0x7f0f0010 +int string abc_prepend_shortcut_label 0x7f0f0011 +int string abc_search_hint 0x7f0f0012 +int string abc_searchview_description_clear 0x7f0f0013 +int string abc_searchview_description_query 0x7f0f0014 +int string abc_searchview_description_search 0x7f0f0015 +int string abc_searchview_description_submit 0x7f0f0016 +int string abc_searchview_description_voice 0x7f0f0017 +int string abc_shareactionprovider_share_with 0x7f0f0018 +int string abc_shareactionprovider_share_with_application 0x7f0f0019 +int string abc_toolbar_collapse_description 0x7f0f001a +int string androidx_startup 0x7f0f001b +int string appbar_scrolling_view_behavior 0x7f0f001c +int string bottom_sheet_behavior 0x7f0f001d +int string bottomsheet_action_collapse 0x7f0f001e +int string bottomsheet_action_expand 0x7f0f001f +int string bottomsheet_action_expand_halfway 0x7f0f0020 +int string bottomsheet_drag_handle_clicked 0x7f0f0021 +int string bottomsheet_drag_handle_content_description 0x7f0f0022 +int string call_notification_answer_action 0x7f0f0023 +int string call_notification_answer_video_action 0x7f0f0024 +int string call_notification_decline_action 0x7f0f0025 +int string call_notification_hang_up_action 0x7f0f0026 +int string call_notification_incoming_text 0x7f0f0027 +int string call_notification_ongoing_text 0x7f0f0028 +int string call_notification_screening_text 0x7f0f0029 +int string character_counter_content_description 0x7f0f002a +int string character_counter_overflowed_content_description 0x7f0f002b +int string character_counter_pattern 0x7f0f002c +int string clear_text_end_icon_content_description 0x7f0f002d +int string copy_toast_msg 0x7f0f002e +int string dest_title 0x7f0f002f +int string error_a11y_label 0x7f0f0030 +int string error_icon_content_description 0x7f0f0031 +int string exposed_dropdown_menu_content_description 0x7f0f0032 +int string fab_transformation_scrim_behavior 0x7f0f0033 +int string fab_transformation_sheet_behavior 0x7f0f0034 +int string fallback_menu_item_copy_link 0x7f0f0035 +int string fallback_menu_item_open_in_browser 0x7f0f0036 +int string fallback_menu_item_share_link 0x7f0f0037 +int string hide_bottom_view_on_scroll_behavior 0x7f0f0038 +int string icon_content_description 0x7f0f0039 +int string item_view_role_description 0x7f0f003a +int string m3_exceed_max_badge_text_suffix 0x7f0f003b +int string m3_ref_typeface_brand_medium 0x7f0f003c +int string m3_ref_typeface_brand_regular 0x7f0f003d +int string m3_ref_typeface_plain_medium 0x7f0f003e +int string m3_ref_typeface_plain_regular 0x7f0f003f +int string m3_sys_motion_easing_emphasized 0x7f0f0040 +int string m3_sys_motion_easing_emphasized_accelerate 0x7f0f0041 +int string m3_sys_motion_easing_emphasized_decelerate 0x7f0f0042 +int string m3_sys_motion_easing_emphasized_path_data 0x7f0f0043 +int string m3_sys_motion_easing_legacy 0x7f0f0044 +int string m3_sys_motion_easing_legacy_accelerate 0x7f0f0045 +int string m3_sys_motion_easing_legacy_decelerate 0x7f0f0046 +int string m3_sys_motion_easing_linear 0x7f0f0047 +int string m3_sys_motion_easing_standard 0x7f0f0048 +int string m3_sys_motion_easing_standard_accelerate 0x7f0f0049 +int string m3_sys_motion_easing_standard_decelerate 0x7f0f004a +int string material_clock_display_divider 0x7f0f004b +int string material_clock_toggle_content_description 0x7f0f004c +int string material_hour_24h_suffix 0x7f0f004d +int string material_hour_selection 0x7f0f004e +int string material_hour_suffix 0x7f0f004f +int string material_minute_selection 0x7f0f0050 +int string material_minute_suffix 0x7f0f0051 +int string material_motion_easing_accelerated 0x7f0f0052 +int string material_motion_easing_decelerated 0x7f0f0053 +int string material_motion_easing_emphasized 0x7f0f0054 +int string material_motion_easing_linear 0x7f0f0055 +int string material_motion_easing_standard 0x7f0f0056 +int string material_slider_range_end 0x7f0f0057 +int string material_slider_range_start 0x7f0f0058 +int string material_slider_value 0x7f0f0059 +int string material_timepicker_am 0x7f0f005a +int string material_timepicker_clock_mode_description 0x7f0f005b +int string material_timepicker_hour 0x7f0f005c +int string material_timepicker_minute 0x7f0f005d +int string material_timepicker_pm 0x7f0f005e +int string material_timepicker_select_time 0x7f0f005f +int string material_timepicker_text_input_mode_description 0x7f0f0060 +int string maui_empty_unused 0x7f0f0061 +int string mtrl_badge_numberless_content_description 0x7f0f0062 +int string mtrl_checkbox_button_icon_path_checked 0x7f0f0063 +int string mtrl_checkbox_button_icon_path_group_name 0x7f0f0064 +int string mtrl_checkbox_button_icon_path_indeterminate 0x7f0f0065 +int string mtrl_checkbox_button_icon_path_name 0x7f0f0066 +int string mtrl_checkbox_button_path_checked 0x7f0f0067 +int string mtrl_checkbox_button_path_group_name 0x7f0f0068 +int string mtrl_checkbox_button_path_name 0x7f0f0069 +int string mtrl_checkbox_button_path_unchecked 0x7f0f006a +int string mtrl_checkbox_state_description_checked 0x7f0f006b +int string mtrl_checkbox_state_description_indeterminate 0x7f0f006c +int string mtrl_checkbox_state_description_unchecked 0x7f0f006d +int string mtrl_chip_close_icon_content_description 0x7f0f006e +int string mtrl_exceed_max_badge_number_content_description 0x7f0f006f +int string mtrl_exceed_max_badge_number_suffix 0x7f0f0070 +int string mtrl_picker_a11y_next_month 0x7f0f0071 +int string mtrl_picker_a11y_prev_month 0x7f0f0072 +int string mtrl_picker_announce_current_range_selection 0x7f0f0073 +int string mtrl_picker_announce_current_selection 0x7f0f0074 +int string mtrl_picker_announce_current_selection_none 0x7f0f0075 +int string mtrl_picker_cancel 0x7f0f0076 +int string mtrl_picker_confirm 0x7f0f0077 +int string mtrl_picker_date_header_selected 0x7f0f0078 +int string mtrl_picker_date_header_title 0x7f0f0079 +int string mtrl_picker_date_header_unselected 0x7f0f007a +int string mtrl_picker_day_of_week_column_header 0x7f0f007b +int string mtrl_picker_end_date_description 0x7f0f007c +int string mtrl_picker_invalid_format 0x7f0f007d +int string mtrl_picker_invalid_format_example 0x7f0f007e +int string mtrl_picker_invalid_format_use 0x7f0f007f +int string mtrl_picker_invalid_range 0x7f0f0080 +int string mtrl_picker_navigate_to_current_year_description 0x7f0f0081 +int string mtrl_picker_navigate_to_year_description 0x7f0f0082 +int string mtrl_picker_out_of_range 0x7f0f0083 +int string mtrl_picker_range_header_only_end_selected 0x7f0f0084 +int string mtrl_picker_range_header_only_start_selected 0x7f0f0085 +int string mtrl_picker_range_header_selected 0x7f0f0086 +int string mtrl_picker_range_header_title 0x7f0f0087 +int string mtrl_picker_range_header_unselected 0x7f0f0088 +int string mtrl_picker_save 0x7f0f0089 +int string mtrl_picker_start_date_description 0x7f0f008a +int string mtrl_picker_text_input_date_hint 0x7f0f008b +int string mtrl_picker_text_input_date_range_end_hint 0x7f0f008c +int string mtrl_picker_text_input_date_range_start_hint 0x7f0f008d +int string mtrl_picker_text_input_day_abbr 0x7f0f008e +int string mtrl_picker_text_input_month_abbr 0x7f0f008f +int string mtrl_picker_text_input_year_abbr 0x7f0f0090 +int string mtrl_picker_today_description 0x7f0f0091 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0f0092 +int string mtrl_picker_toggle_to_day_selection 0x7f0f0093 +int string mtrl_picker_toggle_to_text_input_mode 0x7f0f0094 +int string mtrl_picker_toggle_to_year_selection 0x7f0f0095 +int string mtrl_switch_thumb_group_name 0x7f0f0096 +int string mtrl_switch_thumb_path_checked 0x7f0f0097 +int string mtrl_switch_thumb_path_morphing 0x7f0f0098 +int string mtrl_switch_thumb_path_name 0x7f0f0099 +int string mtrl_switch_thumb_path_pressed 0x7f0f009a +int string mtrl_switch_thumb_path_unchecked 0x7f0f009b +int string mtrl_switch_track_decoration_path 0x7f0f009c +int string mtrl_switch_track_path 0x7f0f009d +int string mtrl_timepicker_cancel 0x7f0f009e +int string mtrl_timepicker_confirm 0x7f0f009f +int string nav_app_bar_navigate_up_description 0x7f0f00a0 +int string nav_app_bar_open_drawer_description 0x7f0f00a1 +int string overflow_tab_title 0x7f0f00a2 +int string password_toggle_content_description 0x7f0f00a3 +int string path_password_eye 0x7f0f00a4 +int string path_password_eye_mask_strike_through 0x7f0f00a5 +int string path_password_eye_mask_visible 0x7f0f00a6 +int string path_password_strike_through 0x7f0f00a7 +int string search_menu_title 0x7f0f00a8 +int string searchbar_scrolling_view_behavior 0x7f0f00a9 +int string searchview_clear_text_content_description 0x7f0f00aa +int string searchview_navigation_content_description 0x7f0f00ab +int string side_sheet_accessibility_pane_title 0x7f0f00ac +int string side_sheet_behavior 0x7f0f00ad +int string status_bar_notification_info_overflow 0x7f0f00ae +int style ActionMode 0x7f100000 +int style AlertDialog_AppCompat 0x7f100001 +int style AlertDialog_AppCompat_Light 0x7f100002 +int style Animation_AppCompat_Dialog 0x7f100003 +int style Animation_AppCompat_DropDownUp 0x7f100004 +int style Animation_AppCompat_Tooltip 0x7f100005 +int style Animation_Design_BottomSheetDialog 0x7f100006 +int style Animation_Material3_BottomSheetDialog 0x7f100007 +int style Animation_Material3_SideSheetDialog 0x7f100008 +int style Animation_Material3_SideSheetDialog_Left 0x7f100009 +int style Animation_Material3_SideSheetDialog_Right 0x7f10000a +int style Animation_MaterialComponents_BottomSheetDialog 0x7f10000b +int style AppTheme 0x7f10000c +int style AppTheme_NoActionBar 0x7f10000d +int style Base_AlertDialog_AppCompat 0x7f10000e +int style Base_AlertDialog_AppCompat_Light 0x7f10000f +int style Base_Animation_AppCompat_Dialog 0x7f100010 +int style Base_Animation_AppCompat_DropDownUp 0x7f100011 +int style Base_Animation_AppCompat_Tooltip 0x7f100012 +int style Base_CardView 0x7f100013 +int style Base_DialogWindowTitle_AppCompat 0x7f100014 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f100015 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f100016 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f100017 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f100018 +int style Base_TextAppearance_AppCompat 0x7f100019 +int style Base_TextAppearance_AppCompat_Body1 0x7f10001a +int style Base_TextAppearance_AppCompat_Body2 0x7f10001b +int style Base_TextAppearance_AppCompat_Button 0x7f10001c +int style Base_TextAppearance_AppCompat_Caption 0x7f10001d +int style Base_TextAppearance_AppCompat_Display1 0x7f10001e +int style Base_TextAppearance_AppCompat_Display2 0x7f10001f +int style Base_TextAppearance_AppCompat_Display3 0x7f100020 +int style Base_TextAppearance_AppCompat_Display4 0x7f100021 +int style Base_TextAppearance_AppCompat_Headline 0x7f100022 +int style Base_TextAppearance_AppCompat_Inverse 0x7f100023 +int style Base_TextAppearance_AppCompat_Large 0x7f100024 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f100025 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f100026 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f100027 +int style Base_TextAppearance_AppCompat_Medium 0x7f100028 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f100029 +int style Base_TextAppearance_AppCompat_Menu 0x7f10002a +int style Base_TextAppearance_AppCompat_SearchResult 0x7f10002b +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f10002c +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f10002d +int style Base_TextAppearance_AppCompat_Small 0x7f10002e +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f10002f +int style Base_TextAppearance_AppCompat_Subhead 0x7f100030 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f100031 +int style Base_TextAppearance_AppCompat_Title 0x7f100032 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f100033 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f100034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f100035 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f100036 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f100037 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f100038 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f100039 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f10003a +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f10003b +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f10003c +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f10003d +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f10003e +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f10003f +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f100040 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f100041 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f100042 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f100043 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f100044 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f100045 +int style Base_TextAppearance_Material3_Search 0x7f100046 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f100047 +int style Base_TextAppearance_MaterialComponents_Button 0x7f100048 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f100049 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f10004a +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f10004b +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f10004c +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f10004d +int style Base_Theme_AppCompat 0x7f10004e +int style Base_Theme_AppCompat_CompactMenu 0x7f10004f +int style Base_Theme_AppCompat_Dialog 0x7f100050 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f100051 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f100052 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f100053 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f100054 +int style Base_Theme_AppCompat_Light 0x7f100055 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f100056 +int style Base_Theme_AppCompat_Light_Dialog 0x7f100057 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f100058 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f100059 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f10005a +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f10005b +int style Base_Theme_Material3_Dark 0x7f10005c +int style Base_Theme_Material3_Dark_BottomSheetDialog 0x7f10005d +int style Base_Theme_Material3_Dark_Dialog 0x7f10005e +int style Base_Theme_Material3_Dark_Dialog_FixedSize 0x7f10005f +int style Base_Theme_Material3_Dark_DialogWhenLarge 0x7f100060 +int style Base_Theme_Material3_Dark_SideSheetDialog 0x7f100061 +int style Base_Theme_Material3_Light 0x7f100062 +int style Base_Theme_Material3_Light_BottomSheetDialog 0x7f100063 +int style Base_Theme_Material3_Light_Dialog 0x7f100064 +int style Base_Theme_Material3_Light_Dialog_FixedSize 0x7f100065 +int style Base_Theme_Material3_Light_DialogWhenLarge 0x7f100066 +int style Base_Theme_Material3_Light_SideSheetDialog 0x7f100067 +int style Base_Theme_MaterialComponents 0x7f100068 +int style Base_Theme_MaterialComponents_Bridge 0x7f100069 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f10006a +int style Base_Theme_MaterialComponents_Dialog 0x7f10006b +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f10006c +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f10006d +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f10006e +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f10006f +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f100070 +int style Base_Theme_MaterialComponents_Light 0x7f100071 +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f100072 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f100073 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f100074 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f100075 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f100076 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f100077 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f100078 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f100079 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f10007a +int style Base_ThemeOverlay_AppCompat 0x7f10007b +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f10007c +int style Base_ThemeOverlay_AppCompat_Dark 0x7f10007d +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f10007e +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f10007f +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f100080 +int style Base_ThemeOverlay_AppCompat_Light 0x7f100081 +int style Base_ThemeOverlay_Material3_AutoCompleteTextView 0x7f100082 +int style Base_ThemeOverlay_Material3_BottomSheetDialog 0x7f100083 +int style Base_ThemeOverlay_Material3_Dialog 0x7f100084 +int style Base_ThemeOverlay_Material3_SideSheetDialog 0x7f100085 +int style Base_ThemeOverlay_Material3_TextInputEditText 0x7f100086 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f100087 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f100088 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f100089 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f10008a +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f10008b +int style Base_V14_Theme_Material3_Dark 0x7f10008c +int style Base_V14_Theme_Material3_Dark_BottomSheetDialog 0x7f10008d +int style Base_V14_Theme_Material3_Dark_Dialog 0x7f10008e +int style Base_V14_Theme_Material3_Dark_SideSheetDialog 0x7f10008f +int style Base_V14_Theme_Material3_Light 0x7f100090 +int style Base_V14_Theme_Material3_Light_BottomSheetDialog 0x7f100091 +int style Base_V14_Theme_Material3_Light_Dialog 0x7f100092 +int style Base_V14_Theme_Material3_Light_SideSheetDialog 0x7f100093 +int style Base_V14_Theme_MaterialComponents 0x7f100094 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f100095 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f100096 +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f100097 +int style Base_V14_Theme_MaterialComponents_Light 0x7f100098 +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f100099 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f10009a +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f10009b +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f10009c +int style Base_V14_ThemeOverlay_Material3_BottomSheetDialog 0x7f10009d +int style Base_V14_ThemeOverlay_Material3_SideSheetDialog 0x7f10009e +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f10009f +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f1000a0 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1000a1 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1000a2 +int style Base_V14_Widget_MaterialComponents_AutoCompleteTextView 0x7f1000a3 +int style Base_V21_Theme_AppCompat 0x7f1000a4 +int style Base_V21_Theme_AppCompat_Dialog 0x7f1000a5 +int style Base_V21_Theme_AppCompat_Light 0x7f1000a6 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f1000a7 +int style Base_V21_Theme_MaterialComponents 0x7f1000a8 +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f1000a9 +int style Base_V21_Theme_MaterialComponents_Light 0x7f1000aa +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f1000ab +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f1000ac +int style Base_V21_ThemeOverlay_Material3_BottomSheetDialog 0x7f1000ad +int style Base_V21_ThemeOverlay_Material3_SideSheetDialog 0x7f1000ae +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1000af +int style Base_V22_Theme_AppCompat 0x7f1000b0 +int style Base_V22_Theme_AppCompat_Light 0x7f1000b1 +int style Base_V23_Theme_AppCompat 0x7f1000b2 +int style Base_V23_Theme_AppCompat_Light 0x7f1000b3 +int style Base_V24_Theme_Material3_Dark 0x7f1000b4 +int style Base_V24_Theme_Material3_Dark_Dialog 0x7f1000b5 +int style Base_V24_Theme_Material3_Light 0x7f1000b6 +int style Base_V24_Theme_Material3_Light_Dialog 0x7f1000b7 +int style Base_V26_Theme_AppCompat 0x7f1000b8 +int style Base_V26_Theme_AppCompat_Light 0x7f1000b9 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f1000ba +int style Base_V28_Theme_AppCompat 0x7f1000bb +int style Base_V28_Theme_AppCompat_Light 0x7f1000bc +int style Base_V7_Theme_AppCompat 0x7f1000bd +int style Base_V7_Theme_AppCompat_Dialog 0x7f1000be +int style Base_V7_Theme_AppCompat_Light 0x7f1000bf +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f1000c0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f1000c1 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f1000c2 +int style Base_V7_Widget_AppCompat_EditText 0x7f1000c3 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f1000c4 +int style Base_Widget_AppCompat_ActionBar 0x7f1000c5 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1000c6 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1000c7 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1000c8 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1000c9 +int style Base_Widget_AppCompat_ActionButton 0x7f1000ca +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1000cb +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1000cc +int style Base_Widget_AppCompat_ActionMode 0x7f1000cd +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1000ce +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1000cf +int style Base_Widget_AppCompat_Button 0x7f1000d0 +int style Base_Widget_AppCompat_Button_Borderless 0x7f1000d1 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1000d2 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1000d3 +int style Base_Widget_AppCompat_Button_Colored 0x7f1000d4 +int style Base_Widget_AppCompat_Button_Small 0x7f1000d5 +int style Base_Widget_AppCompat_ButtonBar 0x7f1000d6 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1000d7 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1000d8 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1000d9 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1000da +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1000db +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1000dc +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1000dd +int style Base_Widget_AppCompat_EditText 0x7f1000de +int style Base_Widget_AppCompat_ImageButton 0x7f1000df +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1000e0 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1000e1 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1000e2 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1000e3 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1000e4 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1000e5 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1000e6 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1000e7 +int style Base_Widget_AppCompat_ListMenuView 0x7f1000e8 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1000e9 +int style Base_Widget_AppCompat_ListView 0x7f1000ea +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1000eb +int style Base_Widget_AppCompat_ListView_Menu 0x7f1000ec +int style Base_Widget_AppCompat_PopupMenu 0x7f1000ed +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1000ee +int style Base_Widget_AppCompat_PopupWindow 0x7f1000ef +int style Base_Widget_AppCompat_ProgressBar 0x7f1000f0 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1000f1 +int style Base_Widget_AppCompat_RatingBar 0x7f1000f2 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1000f3 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1000f4 +int style Base_Widget_AppCompat_SearchView 0x7f1000f5 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1000f6 +int style Base_Widget_AppCompat_SeekBar 0x7f1000f7 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1000f8 +int style Base_Widget_AppCompat_Spinner 0x7f1000f9 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1000fa +int style Base_Widget_AppCompat_TextView 0x7f1000fb +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1000fc +int style Base_Widget_AppCompat_Toolbar 0x7f1000fd +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1000fe +int style Base_Widget_Design_TabLayout 0x7f1000ff +int style Base_Widget_Material3_ActionBar_Solid 0x7f100100 +int style Base_Widget_Material3_ActionMode 0x7f100101 +int style Base_Widget_Material3_BottomNavigationView 0x7f100102 +int style Base_Widget_Material3_CardView 0x7f100103 +int style Base_Widget_Material3_Chip 0x7f100104 +int style Base_Widget_Material3_CollapsingToolbar 0x7f100105 +int style Base_Widget_Material3_CompoundButton_CheckBox 0x7f100106 +int style Base_Widget_Material3_CompoundButton_RadioButton 0x7f100107 +int style Base_Widget_Material3_CompoundButton_Switch 0x7f100108 +int style Base_Widget_Material3_ExtendedFloatingActionButton 0x7f100109 +int style Base_Widget_Material3_ExtendedFloatingActionButton_Icon 0x7f10010a +int style Base_Widget_Material3_FloatingActionButton 0x7f10010b +int style Base_Widget_Material3_FloatingActionButton_Large 0x7f10010c +int style Base_Widget_Material3_FloatingActionButton_Small 0x7f10010d +int style Base_Widget_Material3_Light_ActionBar_Solid 0x7f10010e +int style Base_Widget_Material3_MaterialCalendar_NavigationButton 0x7f10010f +int style Base_Widget_Material3_Snackbar 0x7f100110 +int style Base_Widget_Material3_TabLayout 0x7f100111 +int style Base_Widget_Material3_TabLayout_OnSurface 0x7f100112 +int style Base_Widget_Material3_TabLayout_Secondary 0x7f100113 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f100114 +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f100115 +int style Base_Widget_MaterialComponents_Chip 0x7f100116 +int style Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f100117 +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f100118 +int style Base_Widget_MaterialComponents_PopupMenu 0x7f100119 +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f10011a +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f10011b +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f10011c +int style Base_Widget_MaterialComponents_Slider 0x7f10011d +int style Base_Widget_MaterialComponents_Snackbar 0x7f10011e +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f10011f +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f100120 +int style Base_Widget_MaterialComponents_TextView 0x7f100121 +int style CardView 0x7f100122 +int style CardView_Dark 0x7f100123 +int style CardView_Light 0x7f100124 +int style MainTheme 0x7f100125 +int style MainTheme_Base 0x7f100126 +int style MainTheme_NoActionBar 0x7f100127 +int style MaterialAlertDialog_Material3 0x7f100128 +int style MaterialAlertDialog_Material3_Animation 0x7f100129 +int style MaterialAlertDialog_Material3_Body_Text 0x7f10012a +int style MaterialAlertDialog_Material3_Body_Text_CenterStacked 0x7f10012b +int style MaterialAlertDialog_Material3_Title_Icon 0x7f10012c +int style MaterialAlertDialog_Material3_Title_Icon_CenterStacked 0x7f10012d +int style MaterialAlertDialog_Material3_Title_Panel 0x7f10012e +int style MaterialAlertDialog_Material3_Title_Panel_CenterStacked 0x7f10012f +int style MaterialAlertDialog_Material3_Title_Text 0x7f100130 +int style MaterialAlertDialog_Material3_Title_Text_CenterStacked 0x7f100131 +int style MaterialAlertDialog_MaterialComponents 0x7f100132 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f100133 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f100134 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f100135 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f100136 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f100137 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f100138 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f100139 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f10013a +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f10013b +int style Maui_MainTheme 0x7f10013c +int style Maui_MainTheme_Base 0x7f10013d +int style Maui_MainTheme_NoActionBar 0x7f10013e +int style Maui_SplashTheme 0x7f10013f +int style MauiAlertDialogTheme 0x7f100140 +int style MauiCheckBox 0x7f100141 +int style MauiMaterialButton 0x7f100142 +int style Platform_AppCompat 0x7f100143 +int style Platform_AppCompat_Light 0x7f100144 +int style Platform_MaterialComponents 0x7f100145 +int style Platform_MaterialComponents_Dialog 0x7f100146 +int style Platform_MaterialComponents_Light 0x7f100147 +int style Platform_MaterialComponents_Light_Dialog 0x7f100148 +int style Platform_ThemeOverlay_AppCompat 0x7f100149 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f10014a +int style Platform_ThemeOverlay_AppCompat_Light 0x7f10014b +int style Platform_V21_AppCompat 0x7f10014c +int style Platform_V21_AppCompat_Light 0x7f10014d +int style Platform_V25_AppCompat 0x7f10014e +int style Platform_V25_AppCompat_Light 0x7f10014f +int style Platform_Widget_AppCompat_Spinner 0x7f100150 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f100151 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f100152 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f100153 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f100154 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f100155 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f100156 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f100157 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f100158 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f100159 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f10015a +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f10015b +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f10015c +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f10015d +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f10015e +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f10015f +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f100160 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f100161 +int style ShapeAppearance_M3_Comp_Badge_Large_Shape 0x7f100162 +int style ShapeAppearance_M3_Comp_Badge_Shape 0x7f100163 +int style ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape 0x7f100164 +int style ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape 0x7f100165 +int style ShapeAppearance_M3_Comp_FilledButton_Container_Shape 0x7f100166 +int style ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape 0x7f100167 +int style ShapeAppearance_M3_Comp_NavigationBar_Container_Shape 0x7f100168 +int style ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape 0x7f100169 +int style ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape 0x7f10016a +int style ShapeAppearance_M3_Comp_NavigationRail_Container_Shape 0x7f10016b +int style ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape 0x7f10016c +int style ShapeAppearance_M3_Comp_SearchBar_Container_Shape 0x7f10016d +int style ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape 0x7f10016e +int style ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape 0x7f10016f +int style ShapeAppearance_M3_Comp_Switch_Handle_Shape 0x7f100170 +int style ShapeAppearance_M3_Comp_Switch_StateLayer_Shape 0x7f100171 +int style ShapeAppearance_M3_Comp_Switch_Track_Shape 0x7f100172 +int style ShapeAppearance_M3_Comp_TextButton_Container_Shape 0x7f100173 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge 0x7f100174 +int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall 0x7f100175 +int style ShapeAppearance_M3_Sys_Shape_Corner_Full 0x7f100176 +int style ShapeAppearance_M3_Sys_Shape_Corner_Large 0x7f100177 +int style ShapeAppearance_M3_Sys_Shape_Corner_Medium 0x7f100178 +int style ShapeAppearance_M3_Sys_Shape_Corner_None 0x7f100179 +int style ShapeAppearance_M3_Sys_Shape_Corner_Small 0x7f10017a +int style ShapeAppearance_Material3_Corner_ExtraLarge 0x7f10017b +int style ShapeAppearance_Material3_Corner_ExtraSmall 0x7f10017c +int style ShapeAppearance_Material3_Corner_Full 0x7f10017d +int style ShapeAppearance_Material3_Corner_Large 0x7f10017e +int style ShapeAppearance_Material3_Corner_Medium 0x7f10017f +int style ShapeAppearance_Material3_Corner_None 0x7f100180 +int style ShapeAppearance_Material3_Corner_Small 0x7f100181 +int style ShapeAppearance_Material3_LargeComponent 0x7f100182 +int style ShapeAppearance_Material3_MediumComponent 0x7f100183 +int style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator 0x7f100184 +int style ShapeAppearance_Material3_SmallComponent 0x7f100185 +int style ShapeAppearance_Material3_Tooltip 0x7f100186 +int style ShapeAppearance_MaterialComponents 0x7f100187 +int style ShapeAppearance_MaterialComponents_Badge 0x7f100188 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f100189 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f10018a +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f10018b +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f10018c +int style ShapeAppearanceOverlay_Material3_Button 0x7f10018d +int style ShapeAppearanceOverlay_Material3_Chip 0x7f10018e +int style ShapeAppearanceOverlay_Material3_Corner_Bottom 0x7f10018f +int style ShapeAppearanceOverlay_Material3_Corner_Left 0x7f100190 +int style ShapeAppearanceOverlay_Material3_Corner_Right 0x7f100191 +int style ShapeAppearanceOverlay_Material3_Corner_Top 0x7f100192 +int style ShapeAppearanceOverlay_Material3_FloatingActionButton 0x7f100193 +int style ShapeAppearanceOverlay_Material3_NavigationView_Item 0x7f100194 +int style ShapeAppearanceOverlay_Material3_SearchBar 0x7f100195 +int style ShapeAppearanceOverlay_Material3_SearchView 0x7f100196 +int style ShapeAppearanceOverlay_MaterialAlertDialog_Material3 0x7f100197 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f100198 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f100199 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f10019a +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f10019b +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f10019c +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f10019d +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f10019e +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f10019f +int style TextAppearance_AppCompat 0x7f1001a0 +int style TextAppearance_AppCompat_Body1 0x7f1001a1 +int style TextAppearance_AppCompat_Body2 0x7f1001a2 +int style TextAppearance_AppCompat_Button 0x7f1001a3 +int style TextAppearance_AppCompat_Caption 0x7f1001a4 +int style TextAppearance_AppCompat_Display1 0x7f1001a5 +int style TextAppearance_AppCompat_Display2 0x7f1001a6 +int style TextAppearance_AppCompat_Display3 0x7f1001a7 +int style TextAppearance_AppCompat_Display4 0x7f1001a8 +int style TextAppearance_AppCompat_Headline 0x7f1001a9 +int style TextAppearance_AppCompat_Inverse 0x7f1001aa +int style TextAppearance_AppCompat_Large 0x7f1001ab +int style TextAppearance_AppCompat_Large_Inverse 0x7f1001ac +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1001ad +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1001ae +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1001af +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1001b0 +int style TextAppearance_AppCompat_Medium 0x7f1001b1 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1001b2 +int style TextAppearance_AppCompat_Menu 0x7f1001b3 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1001b4 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1001b5 +int style TextAppearance_AppCompat_Small 0x7f1001b6 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1001b7 +int style TextAppearance_AppCompat_Subhead 0x7f1001b8 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1001b9 +int style TextAppearance_AppCompat_Title 0x7f1001ba +int style TextAppearance_AppCompat_Title_Inverse 0x7f1001bb +int style TextAppearance_AppCompat_Tooltip 0x7f1001bc +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1001bd +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1001be +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1001bf +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1001c0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1001c1 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1001c2 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1001c3 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1001c4 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1001c5 +int style TextAppearance_AppCompat_Widget_Button 0x7f1001c6 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1001c7 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1001c8 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1001c9 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1001ca +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1001cb +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1001cc +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1001cd +int style TextAppearance_AppCompat_Widget_Switch 0x7f1001ce +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1001cf +int style TextAppearance_Compat_Notification 0x7f1001d0 +int style TextAppearance_Compat_Notification_Info 0x7f1001d1 +int style TextAppearance_Compat_Notification_Line2 0x7f1001d2 +int style TextAppearance_Compat_Notification_Time 0x7f1001d3 +int style TextAppearance_Compat_Notification_Title 0x7f1001d4 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f1001d5 +int style TextAppearance_Design_Counter 0x7f1001d6 +int style TextAppearance_Design_Counter_Overflow 0x7f1001d7 +int style TextAppearance_Design_Error 0x7f1001d8 +int style TextAppearance_Design_HelperText 0x7f1001d9 +int style TextAppearance_Design_Hint 0x7f1001da +int style TextAppearance_Design_Placeholder 0x7f1001db +int style TextAppearance_Design_Prefix 0x7f1001dc +int style TextAppearance_Design_Snackbar_Message 0x7f1001dd +int style TextAppearance_Design_Suffix 0x7f1001de +int style TextAppearance_Design_Tab 0x7f1001df +int style TextAppearance_M3_Sys_Typescale_BodyLarge 0x7f1001e0 +int style TextAppearance_M3_Sys_Typescale_BodyMedium 0x7f1001e1 +int style TextAppearance_M3_Sys_Typescale_BodySmall 0x7f1001e2 +int style TextAppearance_M3_Sys_Typescale_DisplayLarge 0x7f1001e3 +int style TextAppearance_M3_Sys_Typescale_DisplayMedium 0x7f1001e4 +int style TextAppearance_M3_Sys_Typescale_DisplaySmall 0x7f1001e5 +int style TextAppearance_M3_Sys_Typescale_HeadlineLarge 0x7f1001e6 +int style TextAppearance_M3_Sys_Typescale_HeadlineMedium 0x7f1001e7 +int style TextAppearance_M3_Sys_Typescale_HeadlineSmall 0x7f1001e8 +int style TextAppearance_M3_Sys_Typescale_LabelLarge 0x7f1001e9 +int style TextAppearance_M3_Sys_Typescale_LabelMedium 0x7f1001ea +int style TextAppearance_M3_Sys_Typescale_LabelSmall 0x7f1001eb +int style TextAppearance_M3_Sys_Typescale_TitleLarge 0x7f1001ec +int style TextAppearance_M3_Sys_Typescale_TitleMedium 0x7f1001ed +int style TextAppearance_M3_Sys_Typescale_TitleSmall 0x7f1001ee +int style TextAppearance_Material3_ActionBar_Subtitle 0x7f1001ef +int style TextAppearance_Material3_ActionBar_Title 0x7f1001f0 +int style TextAppearance_Material3_BodyLarge 0x7f1001f1 +int style TextAppearance_Material3_BodyMedium 0x7f1001f2 +int style TextAppearance_Material3_BodySmall 0x7f1001f3 +int style TextAppearance_Material3_DisplayLarge 0x7f1001f4 +int style TextAppearance_Material3_DisplayMedium 0x7f1001f5 +int style TextAppearance_Material3_DisplaySmall 0x7f1001f6 +int style TextAppearance_Material3_HeadlineLarge 0x7f1001f7 +int style TextAppearance_Material3_HeadlineMedium 0x7f1001f8 +int style TextAppearance_Material3_HeadlineSmall 0x7f1001f9 +int style TextAppearance_Material3_LabelLarge 0x7f1001fa +int style TextAppearance_Material3_LabelMedium 0x7f1001fb +int style TextAppearance_Material3_LabelSmall 0x7f1001fc +int style TextAppearance_Material3_MaterialTimePicker_Title 0x7f1001fd +int style TextAppearance_Material3_SearchBar 0x7f1001fe +int style TextAppearance_Material3_SearchView 0x7f1001ff +int style TextAppearance_Material3_SearchView_Prefix 0x7f100200 +int style TextAppearance_Material3_TitleLarge 0x7f100201 +int style TextAppearance_Material3_TitleMedium 0x7f100202 +int style TextAppearance_Material3_TitleSmall 0x7f100203 +int style TextAppearance_MaterialComponents_Badge 0x7f100204 +int style TextAppearance_MaterialComponents_Body1 0x7f100205 +int style TextAppearance_MaterialComponents_Body2 0x7f100206 +int style TextAppearance_MaterialComponents_Button 0x7f100207 +int style TextAppearance_MaterialComponents_Caption 0x7f100208 +int style TextAppearance_MaterialComponents_Chip 0x7f100209 +int style TextAppearance_MaterialComponents_Headline1 0x7f10020a +int style TextAppearance_MaterialComponents_Headline2 0x7f10020b +int style TextAppearance_MaterialComponents_Headline3 0x7f10020c +int style TextAppearance_MaterialComponents_Headline4 0x7f10020d +int style TextAppearance_MaterialComponents_Headline5 0x7f10020e +int style TextAppearance_MaterialComponents_Headline6 0x7f10020f +int style TextAppearance_MaterialComponents_Overline 0x7f100210 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f100211 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f100212 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f100213 +int style TextAppearance_MaterialComponents_Tooltip 0x7f100214 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f100215 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f100216 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f100217 +int style Theme_AppCompat 0x7f100218 +int style Theme_AppCompat_CompactMenu 0x7f100219 +int style Theme_AppCompat_DayNight 0x7f10021a +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f10021b +int style Theme_AppCompat_DayNight_Dialog 0x7f10021c +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f10021d +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f10021e +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f10021f +int style Theme_AppCompat_DayNight_NoActionBar 0x7f100220 +int style Theme_AppCompat_Dialog 0x7f100221 +int style Theme_AppCompat_Dialog_Alert 0x7f100222 +int style Theme_AppCompat_Dialog_MinWidth 0x7f100223 +int style Theme_AppCompat_DialogWhenLarge 0x7f100224 +int style Theme_AppCompat_Empty 0x7f100225 +int style Theme_AppCompat_Light 0x7f100226 +int style Theme_AppCompat_Light_DarkActionBar 0x7f100227 +int style Theme_AppCompat_Light_Dialog 0x7f100228 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f100229 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f10022a +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f10022b +int style Theme_AppCompat_Light_NoActionBar 0x7f10022c +int style Theme_AppCompat_NoActionBar 0x7f10022d +int style Theme_Design 0x7f10022e +int style Theme_Design_BottomSheetDialog 0x7f10022f +int style Theme_Design_Light 0x7f100230 +int style Theme_Design_Light_BottomSheetDialog 0x7f100231 +int style Theme_Design_Light_NoActionBar 0x7f100232 +int style Theme_Design_NoActionBar 0x7f100233 +int style Theme_Material3_Dark 0x7f100234 +int style Theme_Material3_Dark_BottomSheetDialog 0x7f100235 +int style Theme_Material3_Dark_Dialog 0x7f100236 +int style Theme_Material3_Dark_Dialog_Alert 0x7f100237 +int style Theme_Material3_Dark_Dialog_MinWidth 0x7f100238 +int style Theme_Material3_Dark_DialogWhenLarge 0x7f100239 +int style Theme_Material3_Dark_NoActionBar 0x7f10023a +int style Theme_Material3_Dark_SideSheetDialog 0x7f10023b +int style Theme_Material3_DayNight 0x7f10023c +int style Theme_Material3_DayNight_BottomSheetDialog 0x7f10023d +int style Theme_Material3_DayNight_Dialog 0x7f10023e +int style Theme_Material3_DayNight_Dialog_Alert 0x7f10023f +int style Theme_Material3_DayNight_Dialog_MinWidth 0x7f100240 +int style Theme_Material3_DayNight_DialogWhenLarge 0x7f100241 +int style Theme_Material3_DayNight_NoActionBar 0x7f100242 +int style Theme_Material3_DayNight_SideSheetDialog 0x7f100243 +int style Theme_Material3_DynamicColors_Dark 0x7f100244 +int style Theme_Material3_DynamicColors_Dark_NoActionBar 0x7f100245 +int style Theme_Material3_DynamicColors_DayNight 0x7f100246 +int style Theme_Material3_DynamicColors_DayNight_NoActionBar 0x7f100247 +int style Theme_Material3_DynamicColors_Light 0x7f100248 +int style Theme_Material3_DynamicColors_Light_NoActionBar 0x7f100249 +int style Theme_Material3_Light 0x7f10024a +int style Theme_Material3_Light_BottomSheetDialog 0x7f10024b +int style Theme_Material3_Light_Dialog 0x7f10024c +int style Theme_Material3_Light_Dialog_Alert 0x7f10024d +int style Theme_Material3_Light_Dialog_MinWidth 0x7f10024e +int style Theme_Material3_Light_DialogWhenLarge 0x7f10024f +int style Theme_Material3_Light_NoActionBar 0x7f100250 +int style Theme_Material3_Light_SideSheetDialog 0x7f100251 +int style Theme_MaterialComponents 0x7f100252 +int style Theme_MaterialComponents_BottomSheetDialog 0x7f100253 +int style Theme_MaterialComponents_Bridge 0x7f100254 +int style Theme_MaterialComponents_CompactMenu 0x7f100255 +int style Theme_MaterialComponents_DayNight 0x7f100256 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f100257 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f100258 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f100259 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f10025a +int style Theme_MaterialComponents_DayNight_Dialog 0x7f10025b +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f10025c +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f10025d +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f10025e +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f10025f +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f100260 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f100261 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f100262 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f100263 +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f100264 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f100265 +int style Theme_MaterialComponents_Dialog 0x7f100266 +int style Theme_MaterialComponents_Dialog_Alert 0x7f100267 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f100268 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f100269 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f10026a +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f10026b +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f10026c +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f10026d +int style Theme_MaterialComponents_DialogWhenLarge 0x7f10026e +int style Theme_MaterialComponents_Light 0x7f10026f +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f100270 +int style Theme_MaterialComponents_Light_Bridge 0x7f100271 +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f100272 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f100273 +int style Theme_MaterialComponents_Light_Dialog 0x7f100274 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f100275 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f100276 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f100277 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f100278 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f100279 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f10027a +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f10027b +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f10027c +int style Theme_MaterialComponents_Light_NoActionBar 0x7f10027d +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f10027e +int style Theme_MaterialComponents_NoActionBar 0x7f10027f +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f100280 +int style ThemeOverlay_AppCompat 0x7f100281 +int style ThemeOverlay_AppCompat_ActionBar 0x7f100282 +int style ThemeOverlay_AppCompat_Dark 0x7f100283 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f100284 +int style ThemeOverlay_AppCompat_DayNight 0x7f100285 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f100286 +int style ThemeOverlay_AppCompat_Dialog 0x7f100287 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f100288 +int style ThemeOverlay_AppCompat_Light 0x7f100289 +int style ThemeOverlay_Design_TextInputEditText 0x7f10028a +int style ThemeOverlay_Material3 0x7f10028b +int style ThemeOverlay_Material3_ActionBar 0x7f10028c +int style ThemeOverlay_Material3_AutoCompleteTextView 0x7f10028d +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox 0x7f10028e +int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense 0x7f10028f +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox 0x7f100290 +int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x7f100291 +int style ThemeOverlay_Material3_BottomAppBar 0x7f100292 +int style ThemeOverlay_Material3_BottomAppBar_Legacy 0x7f100293 +int style ThemeOverlay_Material3_BottomNavigationView 0x7f100294 +int style ThemeOverlay_Material3_BottomSheetDialog 0x7f100295 +int style ThemeOverlay_Material3_Button 0x7f100296 +int style ThemeOverlay_Material3_Button_ElevatedButton 0x7f100297 +int style ThemeOverlay_Material3_Button_IconButton 0x7f100298 +int style ThemeOverlay_Material3_Button_IconButton_Filled 0x7f100299 +int style ThemeOverlay_Material3_Button_IconButton_Filled_Tonal 0x7f10029a +int style ThemeOverlay_Material3_Button_TextButton 0x7f10029b +int style ThemeOverlay_Material3_Button_TextButton_Snackbar 0x7f10029c +int style ThemeOverlay_Material3_Button_TonalButton 0x7f10029d +int style ThemeOverlay_Material3_Chip 0x7f10029e +int style ThemeOverlay_Material3_Chip_Assist 0x7f10029f +int style ThemeOverlay_Material3_Dark 0x7f1002a0 +int style ThemeOverlay_Material3_Dark_ActionBar 0x7f1002a1 +int style ThemeOverlay_Material3_DayNight_BottomSheetDialog 0x7f1002a2 +int style ThemeOverlay_Material3_DayNight_SideSheetDialog 0x7f1002a3 +int style ThemeOverlay_Material3_Dialog 0x7f1002a4 +int style ThemeOverlay_Material3_Dialog_Alert 0x7f1002a5 +int style ThemeOverlay_Material3_Dialog_Alert_Framework 0x7f1002a6 +int style ThemeOverlay_Material3_DynamicColors_Dark 0x7f1002a7 +int style ThemeOverlay_Material3_DynamicColors_DayNight 0x7f1002a8 +int style ThemeOverlay_Material3_DynamicColors_Light 0x7f1002a9 +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary 0x7f1002aa +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary 0x7f1002ab +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface 0x7f1002ac +int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary 0x7f1002ad +int style ThemeOverlay_Material3_FloatingActionButton_Primary 0x7f1002ae +int style ThemeOverlay_Material3_FloatingActionButton_Secondary 0x7f1002af +int style ThemeOverlay_Material3_FloatingActionButton_Surface 0x7f1002b0 +int style ThemeOverlay_Material3_FloatingActionButton_Tertiary 0x7f1002b1 +int style ThemeOverlay_Material3_HarmonizedColors 0x7f1002b2 +int style ThemeOverlay_Material3_HarmonizedColors_Empty 0x7f1002b3 +int style ThemeOverlay_Material3_Light 0x7f1002b4 +int style ThemeOverlay_Material3_Light_Dialog_Alert_Framework 0x7f1002b5 +int style ThemeOverlay_Material3_MaterialAlertDialog 0x7f1002b6 +int style ThemeOverlay_Material3_MaterialAlertDialog_Centered 0x7f1002b7 +int style ThemeOverlay_Material3_MaterialCalendar 0x7f1002b8 +int style ThemeOverlay_Material3_MaterialCalendar_Fullscreen 0x7f1002b9 +int style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton 0x7f1002ba +int style ThemeOverlay_Material3_MaterialTimePicker 0x7f1002bb +int style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText 0x7f1002bc +int style ThemeOverlay_Material3_NavigationRailView 0x7f1002bd +int style ThemeOverlay_Material3_NavigationView 0x7f1002be +int style ThemeOverlay_Material3_PersonalizedColors 0x7f1002bf +int style ThemeOverlay_Material3_Search 0x7f1002c0 +int style ThemeOverlay_Material3_SideSheetDialog 0x7f1002c1 +int style ThemeOverlay_Material3_Snackbar 0x7f1002c2 +int style ThemeOverlay_Material3_TabLayout 0x7f1002c3 +int style ThemeOverlay_Material3_TextInputEditText 0x7f1002c4 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox 0x7f1002c5 +int style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense 0x7f1002c6 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox 0x7f1002c7 +int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense 0x7f1002c8 +int style ThemeOverlay_Material3_Toolbar_Surface 0x7f1002c9 +int style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon 0x7f1002ca +int style ThemeOverlay_MaterialComponents 0x7f1002cb +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f1002cc +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f1002cd +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f1002ce +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f1002cf +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1002d0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1002d1 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1002d2 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1002d3 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1002d4 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1002d5 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1002d6 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1002d7 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1002d8 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1002d9 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1002da +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1002db +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1002dc +int style ThemeOverlay_MaterialComponents_Light 0x7f1002dd +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1002de +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1002df +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1002e0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1002e1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1002e2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1002e3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1002e4 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1002e5 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1002e6 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1002e7 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1002e8 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1002e9 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1002ea +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1002eb +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1002ec +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1002ed +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1002ee +int style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1002ef +int style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary 0x7f1002f0 +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1002f1 +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1002f2 +int style Widget_AppCompat_ActionBar 0x7f1002f3 +int style Widget_AppCompat_ActionBar_Solid 0x7f1002f4 +int style Widget_AppCompat_ActionBar_TabBar 0x7f1002f5 +int style Widget_AppCompat_ActionBar_TabText 0x7f1002f6 +int style Widget_AppCompat_ActionBar_TabView 0x7f1002f7 +int style Widget_AppCompat_ActionButton 0x7f1002f8 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f1002f9 +int style Widget_AppCompat_ActionButton_Overflow 0x7f1002fa +int style Widget_AppCompat_ActionMode 0x7f1002fb +int style Widget_AppCompat_ActivityChooserView 0x7f1002fc +int style Widget_AppCompat_AutoCompleteTextView 0x7f1002fd +int style Widget_AppCompat_Button 0x7f1002fe +int style Widget_AppCompat_Button_Borderless 0x7f1002ff +int style Widget_AppCompat_Button_Borderless_Colored 0x7f100300 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f100301 +int style Widget_AppCompat_Button_Colored 0x7f100302 +int style Widget_AppCompat_Button_Small 0x7f100303 +int style Widget_AppCompat_ButtonBar 0x7f100304 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f100305 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f100306 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f100307 +int style Widget_AppCompat_CompoundButton_Switch 0x7f100308 +int style Widget_AppCompat_DrawerArrowToggle 0x7f100309 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f10030a +int style Widget_AppCompat_EditText 0x7f10030b +int style Widget_AppCompat_ImageButton 0x7f10030c +int style Widget_AppCompat_Light_ActionBar 0x7f10030d +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f10030e +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f10030f +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f100310 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f100311 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f100312 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f100313 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f100314 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f100315 +int style Widget_AppCompat_Light_ActionButton 0x7f100316 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f100317 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f100318 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f100319 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f10031a +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f10031b +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f10031c +int style Widget_AppCompat_Light_ListPopupWindow 0x7f10031d +int style Widget_AppCompat_Light_ListView_DropDown 0x7f10031e +int style Widget_AppCompat_Light_PopupMenu 0x7f10031f +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f100320 +int style Widget_AppCompat_Light_SearchView 0x7f100321 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f100322 +int style Widget_AppCompat_ListMenuView 0x7f100323 +int style Widget_AppCompat_ListPopupWindow 0x7f100324 +int style Widget_AppCompat_ListView 0x7f100325 +int style Widget_AppCompat_ListView_DropDown 0x7f100326 +int style Widget_AppCompat_ListView_Menu 0x7f100327 +int style Widget_AppCompat_PopupMenu 0x7f100328 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f100329 +int style Widget_AppCompat_PopupWindow 0x7f10032a +int style Widget_AppCompat_ProgressBar 0x7f10032b +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f10032c +int style Widget_AppCompat_RatingBar 0x7f10032d +int style Widget_AppCompat_RatingBar_Indicator 0x7f10032e +int style Widget_AppCompat_RatingBar_Small 0x7f10032f +int style Widget_AppCompat_SearchView 0x7f100330 +int style Widget_AppCompat_SearchView_ActionBar 0x7f100331 +int style Widget_AppCompat_SeekBar 0x7f100332 +int style Widget_AppCompat_SeekBar_Discrete 0x7f100333 +int style Widget_AppCompat_Spinner 0x7f100334 +int style Widget_AppCompat_Spinner_DropDown 0x7f100335 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f100336 +int style Widget_AppCompat_Spinner_Underlined 0x7f100337 +int style Widget_AppCompat_TextView 0x7f100338 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f100339 +int style Widget_AppCompat_Toolbar 0x7f10033a +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f10033b +int style Widget_Compat_NotificationActionContainer 0x7f10033c +int style Widget_Compat_NotificationActionText 0x7f10033d +int style Widget_Design_AppBarLayout 0x7f10033e +int style Widget_Design_BottomNavigationView 0x7f10033f +int style Widget_Design_BottomSheet_Modal 0x7f100340 +int style Widget_Design_CollapsingToolbar 0x7f100341 +int style Widget_Design_FloatingActionButton 0x7f100342 +int style Widget_Design_NavigationView 0x7f100343 +int style Widget_Design_ScrimInsetsFrameLayout 0x7f100344 +int style Widget_Design_Snackbar 0x7f100345 +int style Widget_Design_TabLayout 0x7f100346 +int style Widget_Design_TextInputEditText 0x7f100347 +int style Widget_Design_TextInputLayout 0x7f100348 +int style Widget_Material3_ActionBar_Solid 0x7f100349 +int style Widget_Material3_ActionMode 0x7f10034a +int style Widget_Material3_AppBarLayout 0x7f10034b +int style Widget_Material3_AutoCompleteTextView_FilledBox 0x7f10034c +int style Widget_Material3_AutoCompleteTextView_FilledBox_Dense 0x7f10034d +int style Widget_Material3_AutoCompleteTextView_OutlinedBox 0x7f10034e +int style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x7f10034f +int style Widget_Material3_Badge 0x7f100350 +int style Widget_Material3_Badge_AdjustToBounds 0x7f100351 +int style Widget_Material3_BottomAppBar 0x7f100352 +int style Widget_Material3_BottomAppBar_Button_Navigation 0x7f100353 +int style Widget_Material3_BottomAppBar_Legacy 0x7f100354 +int style Widget_Material3_BottomNavigation_Badge 0x7f100355 +int style Widget_Material3_BottomNavigationView 0x7f100356 +int style Widget_Material3_BottomNavigationView_ActiveIndicator 0x7f100357 +int style Widget_Material3_BottomSheet 0x7f100358 +int style Widget_Material3_BottomSheet_DragHandle 0x7f100359 +int style Widget_Material3_BottomSheet_Modal 0x7f10035a +int style Widget_Material3_Button 0x7f10035b +int style Widget_Material3_Button_ElevatedButton 0x7f10035c +int style Widget_Material3_Button_ElevatedButton_Icon 0x7f10035d +int style Widget_Material3_Button_Icon 0x7f10035e +int style Widget_Material3_Button_IconButton 0x7f10035f +int style Widget_Material3_Button_IconButton_Filled 0x7f100360 +int style Widget_Material3_Button_IconButton_Filled_Tonal 0x7f100361 +int style Widget_Material3_Button_IconButton_Outlined 0x7f100362 +int style Widget_Material3_Button_OutlinedButton 0x7f100363 +int style Widget_Material3_Button_OutlinedButton_Icon 0x7f100364 +int style Widget_Material3_Button_TextButton 0x7f100365 +int style Widget_Material3_Button_TextButton_Dialog 0x7f100366 +int style Widget_Material3_Button_TextButton_Dialog_Flush 0x7f100367 +int style Widget_Material3_Button_TextButton_Dialog_Icon 0x7f100368 +int style Widget_Material3_Button_TextButton_Icon 0x7f100369 +int style Widget_Material3_Button_TextButton_Snackbar 0x7f10036a +int style Widget_Material3_Button_TonalButton 0x7f10036b +int style Widget_Material3_Button_TonalButton_Icon 0x7f10036c +int style Widget_Material3_Button_UnelevatedButton 0x7f10036d +int style Widget_Material3_CardView_Elevated 0x7f10036e +int style Widget_Material3_CardView_Filled 0x7f10036f +int style Widget_Material3_CardView_Outlined 0x7f100370 +int style Widget_Material3_CheckedTextView 0x7f100371 +int style Widget_Material3_Chip_Assist 0x7f100372 +int style Widget_Material3_Chip_Assist_Elevated 0x7f100373 +int style Widget_Material3_Chip_Filter 0x7f100374 +int style Widget_Material3_Chip_Filter_Elevated 0x7f100375 +int style Widget_Material3_Chip_Input 0x7f100376 +int style Widget_Material3_Chip_Input_Elevated 0x7f100377 +int style Widget_Material3_Chip_Input_Icon 0x7f100378 +int style Widget_Material3_Chip_Input_Icon_Elevated 0x7f100379 +int style Widget_Material3_Chip_Suggestion 0x7f10037a +int style Widget_Material3_Chip_Suggestion_Elevated 0x7f10037b +int style Widget_Material3_ChipGroup 0x7f10037c +int style Widget_Material3_CircularProgressIndicator 0x7f10037d +int style Widget_Material3_CircularProgressIndicator_ExtraSmall 0x7f10037e +int style Widget_Material3_CircularProgressIndicator_Legacy 0x7f10037f +int style Widget_Material3_CircularProgressIndicator_Legacy_ExtraSmall 0x7f100380 +int style Widget_Material3_CircularProgressIndicator_Legacy_Medium 0x7f100381 +int style Widget_Material3_CircularProgressIndicator_Legacy_Small 0x7f100382 +int style Widget_Material3_CircularProgressIndicator_Medium 0x7f100383 +int style Widget_Material3_CircularProgressIndicator_Small 0x7f100384 +int style Widget_Material3_CollapsingToolbar 0x7f100385 +int style Widget_Material3_CollapsingToolbar_Large 0x7f100386 +int style Widget_Material3_CollapsingToolbar_Medium 0x7f100387 +int style Widget_Material3_CompoundButton_CheckBox 0x7f100388 +int style Widget_Material3_CompoundButton_MaterialSwitch 0x7f100389 +int style Widget_Material3_CompoundButton_RadioButton 0x7f10038a +int style Widget_Material3_CompoundButton_Switch 0x7f10038b +int style Widget_Material3_DrawerLayout 0x7f10038c +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary 0x7f10038d +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary 0x7f10038e +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface 0x7f10038f +int style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary 0x7f100390 +int style Widget_Material3_ExtendedFloatingActionButton_Primary 0x7f100391 +int style Widget_Material3_ExtendedFloatingActionButton_Secondary 0x7f100392 +int style Widget_Material3_ExtendedFloatingActionButton_Surface 0x7f100393 +int style Widget_Material3_ExtendedFloatingActionButton_Tertiary 0x7f100394 +int style Widget_Material3_FloatingActionButton_Large_Primary 0x7f100395 +int style Widget_Material3_FloatingActionButton_Large_Secondary 0x7f100396 +int style Widget_Material3_FloatingActionButton_Large_Surface 0x7f100397 +int style Widget_Material3_FloatingActionButton_Large_Tertiary 0x7f100398 +int style Widget_Material3_FloatingActionButton_Primary 0x7f100399 +int style Widget_Material3_FloatingActionButton_Secondary 0x7f10039a +int style Widget_Material3_FloatingActionButton_Small_Primary 0x7f10039b +int style Widget_Material3_FloatingActionButton_Small_Secondary 0x7f10039c +int style Widget_Material3_FloatingActionButton_Small_Surface 0x7f10039d +int style Widget_Material3_FloatingActionButton_Small_Tertiary 0x7f10039e +int style Widget_Material3_FloatingActionButton_Surface 0x7f10039f +int style Widget_Material3_FloatingActionButton_Tertiary 0x7f1003a0 +int style Widget_Material3_Light_ActionBar_Solid 0x7f1003a1 +int style Widget_Material3_LinearProgressIndicator 0x7f1003a2 +int style Widget_Material3_LinearProgressIndicator_Legacy 0x7f1003a3 +int style Widget_Material3_MaterialButtonToggleGroup 0x7f1003a4 +int style Widget_Material3_MaterialCalendar 0x7f1003a5 +int style Widget_Material3_MaterialCalendar_Day 0x7f1003a6 +int style Widget_Material3_MaterialCalendar_Day_Invalid 0x7f1003a7 +int style Widget_Material3_MaterialCalendar_Day_Selected 0x7f1003a8 +int style Widget_Material3_MaterialCalendar_Day_Today 0x7f1003a9 +int style Widget_Material3_MaterialCalendar_DayOfWeekLabel 0x7f1003aa +int style Widget_Material3_MaterialCalendar_DayTextView 0x7f1003ab +int style Widget_Material3_MaterialCalendar_Fullscreen 0x7f1003ac +int style Widget_Material3_MaterialCalendar_HeaderCancelButton 0x7f1003ad +int style Widget_Material3_MaterialCalendar_HeaderDivider 0x7f1003ae +int style Widget_Material3_MaterialCalendar_HeaderLayout 0x7f1003af +int style Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen 0x7f1003b0 +int style Widget_Material3_MaterialCalendar_HeaderSelection 0x7f1003b1 +int style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1003b2 +int style Widget_Material3_MaterialCalendar_HeaderTitle 0x7f1003b3 +int style Widget_Material3_MaterialCalendar_HeaderToggleButton 0x7f1003b4 +int style Widget_Material3_MaterialCalendar_Item 0x7f1003b5 +int style Widget_Material3_MaterialCalendar_MonthNavigationButton 0x7f1003b6 +int style Widget_Material3_MaterialCalendar_MonthTextView 0x7f1003b7 +int style Widget_Material3_MaterialCalendar_Year 0x7f1003b8 +int style Widget_Material3_MaterialCalendar_Year_Selected 0x7f1003b9 +int style Widget_Material3_MaterialCalendar_Year_Today 0x7f1003ba +int style Widget_Material3_MaterialCalendar_YearNavigationButton 0x7f1003bb +int style Widget_Material3_MaterialDivider 0x7f1003bc +int style Widget_Material3_MaterialDivider_Heavy 0x7f1003bd +int style Widget_Material3_MaterialTimePicker 0x7f1003be +int style Widget_Material3_MaterialTimePicker_Button 0x7f1003bf +int style Widget_Material3_MaterialTimePicker_Clock 0x7f1003c0 +int style Widget_Material3_MaterialTimePicker_Display 0x7f1003c1 +int style Widget_Material3_MaterialTimePicker_Display_Divider 0x7f1003c2 +int style Widget_Material3_MaterialTimePicker_Display_HelperText 0x7f1003c3 +int style Widget_Material3_MaterialTimePicker_Display_TextInputEditText 0x7f1003c4 +int style Widget_Material3_MaterialTimePicker_Display_TextInputLayout 0x7f1003c5 +int style Widget_Material3_MaterialTimePicker_ImageButton 0x7f1003c6 +int style Widget_Material3_NavigationRailView 0x7f1003c7 +int style Widget_Material3_NavigationRailView_ActiveIndicator 0x7f1003c8 +int style Widget_Material3_NavigationRailView_Badge 0x7f1003c9 +int style Widget_Material3_NavigationView 0x7f1003ca +int style Widget_Material3_PopupMenu 0x7f1003cb +int style Widget_Material3_PopupMenu_ContextMenu 0x7f1003cc +int style Widget_Material3_PopupMenu_ListPopupWindow 0x7f1003cd +int style Widget_Material3_PopupMenu_Overflow 0x7f1003ce +int style Widget_Material3_Search_ActionButton_Overflow 0x7f1003cf +int style Widget_Material3_Search_Toolbar_Button_Navigation 0x7f1003d0 +int style Widget_Material3_SearchBar 0x7f1003d1 +int style Widget_Material3_SearchBar_Outlined 0x7f1003d2 +int style Widget_Material3_SearchView 0x7f1003d3 +int style Widget_Material3_SearchView_Prefix 0x7f1003d4 +int style Widget_Material3_SearchView_Toolbar 0x7f1003d5 +int style Widget_Material3_SideSheet 0x7f1003d6 +int style Widget_Material3_SideSheet_Detached 0x7f1003d7 +int style Widget_Material3_SideSheet_Modal 0x7f1003d8 +int style Widget_Material3_SideSheet_Modal_Detached 0x7f1003d9 +int style Widget_Material3_Slider 0x7f1003da +int style Widget_Material3_Slider_Label 0x7f1003db +int style Widget_Material3_Slider_Legacy 0x7f1003dc +int style Widget_Material3_Slider_Legacy_Label 0x7f1003dd +int style Widget_Material3_Snackbar 0x7f1003de +int style Widget_Material3_Snackbar_FullWidth 0x7f1003df +int style Widget_Material3_Snackbar_TextView 0x7f1003e0 +int style Widget_Material3_TabLayout 0x7f1003e1 +int style Widget_Material3_TabLayout_OnSurface 0x7f1003e2 +int style Widget_Material3_TabLayout_Secondary 0x7f1003e3 +int style Widget_Material3_TextInputEditText_FilledBox 0x7f1003e4 +int style Widget_Material3_TextInputEditText_FilledBox_Dense 0x7f1003e5 +int style Widget_Material3_TextInputEditText_OutlinedBox 0x7f1003e6 +int style Widget_Material3_TextInputEditText_OutlinedBox_Dense 0x7f1003e7 +int style Widget_Material3_TextInputLayout_FilledBox 0x7f1003e8 +int style Widget_Material3_TextInputLayout_FilledBox_Dense 0x7f1003e9 +int style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1003ea +int style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1003eb +int style Widget_Material3_TextInputLayout_OutlinedBox 0x7f1003ec +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense 0x7f1003ed +int style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1003ee +int style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1003ef +int style Widget_Material3_Toolbar 0x7f1003f0 +int style Widget_Material3_Toolbar_OnSurface 0x7f1003f1 +int style Widget_Material3_Toolbar_Surface 0x7f1003f2 +int style Widget_Material3_Tooltip 0x7f1003f3 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f1003f4 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f1003f5 +int style Widget_MaterialComponents_ActionBar_Solid 0x7f1003f6 +int style Widget_MaterialComponents_ActionBar_Surface 0x7f1003f7 +int style Widget_MaterialComponents_ActionMode 0x7f1003f8 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f1003f9 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f1003fa +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f1003fb +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1003fc +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1003fd +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1003fe +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1003ff +int style Widget_MaterialComponents_Badge 0x7f100400 +int style Widget_MaterialComponents_BottomAppBar 0x7f100401 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f100402 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f100403 +int style Widget_MaterialComponents_BottomNavigationView 0x7f100404 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f100405 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f100406 +int style Widget_MaterialComponents_BottomSheet 0x7f100407 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f100408 +int style Widget_MaterialComponents_Button 0x7f100409 +int style Widget_MaterialComponents_Button_Icon 0x7f10040a +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f10040b +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f10040c +int style Widget_MaterialComponents_Button_TextButton 0x7f10040d +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f10040e +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f10040f +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f100410 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f100411 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f100412 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f100413 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f100414 +int style Widget_MaterialComponents_CardView 0x7f100415 +int style Widget_MaterialComponents_CheckedTextView 0x7f100416 +int style Widget_MaterialComponents_Chip_Action 0x7f100417 +int style Widget_MaterialComponents_Chip_Choice 0x7f100418 +int style Widget_MaterialComponents_Chip_Entry 0x7f100419 +int style Widget_MaterialComponents_Chip_Filter 0x7f10041a +int style Widget_MaterialComponents_ChipGroup 0x7f10041b +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f10041c +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f10041d +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f10041e +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f10041f +int style Widget_MaterialComponents_CollapsingToolbar 0x7f100420 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f100421 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f100422 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f100423 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f100424 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f100425 +int style Widget_MaterialComponents_FloatingActionButton 0x7f100426 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f100427 +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f100428 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f100429 +int style Widget_MaterialComponents_MaterialCalendar 0x7f10042a +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f10042b +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f10042c +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f10042d +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f10042e +int style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel 0x7f10042f +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f100430 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f100431 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f100432 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f100433 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f100434 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f100435 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen 0x7f100436 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f100437 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f100438 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f100439 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f10043a +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f10043b +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f10043c +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f10043d +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f10043e +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f10043f +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f100440 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f100441 +int style Widget_MaterialComponents_MaterialDivider 0x7f100442 +int style Widget_MaterialComponents_NavigationRailView 0x7f100443 +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f100444 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f100445 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f100446 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f100447 +int style Widget_MaterialComponents_NavigationView 0x7f100448 +int style Widget_MaterialComponents_PopupMenu 0x7f100449 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f10044a +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f10044b +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f10044c +int style Widget_MaterialComponents_ProgressIndicator 0x7f10044d +int style Widget_MaterialComponents_ShapeableImageView 0x7f10044e +int style Widget_MaterialComponents_Slider 0x7f10044f +int style Widget_MaterialComponents_Snackbar 0x7f100450 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f100451 +int style Widget_MaterialComponents_Snackbar_TextView 0x7f100452 +int style Widget_MaterialComponents_TabLayout 0x7f100453 +int style Widget_MaterialComponents_TabLayout_Colored 0x7f100454 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f100455 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f100456 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f100457 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f100458 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f100459 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f10045a +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f10045b +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f10045c +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f10045d +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f10045e +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f10045f +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f100460 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f100461 +int style Widget_MaterialComponents_TextView 0x7f100462 +int style Widget_MaterialComponents_TimePicker 0x7f100463 +int style Widget_MaterialComponents_TimePicker_Button 0x7f100464 +int style Widget_MaterialComponents_TimePicker_Clock 0x7f100465 +int style Widget_MaterialComponents_TimePicker_Display 0x7f100466 +int style Widget_MaterialComponents_TimePicker_Display_Divider 0x7f100467 +int style Widget_MaterialComponents_TimePicker_Display_HelperText 0x7f100468 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f100469 +int style Widget_MaterialComponents_TimePicker_Display_TextInputLayout 0x7f10046a +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f10046b +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f10046c +int style Widget_MaterialComponents_Toolbar 0x7f10046d +int style Widget_MaterialComponents_Toolbar_Primary 0x7f10046e +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f10046f +int style Widget_MaterialComponents_Toolbar_Surface 0x7f100470 +int style Widget_MaterialComponents_Tooltip 0x7f100471 +int style Widget_Support_CoordinatorLayout 0x7f100472 +int style collectionViewTheme 0x7f100473 +int style scrollViewScrollBars 0x7f100474 +int style scrollViewTheme 0x7f100475 +int[] styleable ActionBar { 0x7f03004d, 0x7f030054, 0x7f030055, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030171, 0x7f030188, 0x7f030189, 0x7f0301a9, 0x7f030231, 0x7f030239, 0x7f03023f, 0x7f030240, 0x7f030244, 0x7f030255, 0x7f03026c, 0x7f0302ea, 0x7f030371, 0x7f0303aa, 0x7f0303b2, 0x7f0303b3, 0x7f030439, 0x7f03043d, 0x7f0304c8, 0x7f0304d6 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f03004d, 0x7f030054, 0x7f0300ee, 0x7f030231, 0x7f03043d, 0x7f0304d6 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f0301c6, 0x7f03025c } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable ActivityFilter { 0x7f030028, 0x7f03002a } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityNavigator { 0x01010003, 0x7f030002, 0x7f030175, 0x7f030176, 0x7f030466 } +int styleable ActivityNavigator_android_name 0 +int styleable ActivityNavigator_action 1 +int styleable ActivityNavigator_data 2 +int styleable ActivityNavigator_dataPattern 3 +int styleable ActivityNavigator_targetPackage 4 +int[] styleable ActivityRule { 0x7f030034, 0x7f030464 } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030099, 0x7f03009c, 0x7f0302df, 0x7f0302e0, 0x7f03036c, 0x7f0303f7, 0x7f0303ff } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable AnimatedStateListDrawableCompat_android_dither 0 +int styleable AnimatedStateListDrawableCompat_android_visible 1 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 +int styleable AnimatedStateListDrawableCompat_android_constantSize 3 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 +int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } +int styleable AnimatedStateListDrawableItem_android_id 0 +int styleable AnimatedStateListDrawableItem_android_drawable 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_toId 1 +int styleable AnimatedStateListDrawableTransition_android_fromId 2 +int styleable AnimatedStateListDrawableTransition_android_reversible 3 +int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f0301a9, 0x7f0301c7, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f03042e } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_touchscreenBlocksFocus 1 +int styleable AppBarLayout_android_keyboardNavigationCluster 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppBarLayoutStates { 0x7f030425, 0x7f030426, 0x7f03042a, 0x7f03042b } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f0302d0, 0x7f0302d1, 0x7f0302d2 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x01010119, 0x7f030418, 0x7f0304c5, 0x7f0304c6 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } +int styleable AppCompatTextHelper_android_textAppearance 0 +int styleable AppCompatTextHelper_android_drawableTop 1 +int styleable AppCompatTextHelper_android_drawableBottom 2 +int styleable AppCompatTextHelper_android_drawableLeft 3 +int styleable AppCompatTextHelper_android_drawableRight 4 +int styleable AppCompatTextHelper_android_drawableStart 5 +int styleable AppCompatTextHelper_android_drawableEnd 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f0301ad, 0x7f0301ea, 0x7f03020e, 0x7f030218, 0x7f030288, 0x7f0302d8, 0x7f03046a, 0x7f0304a1 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030044, 0x7f03007d, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009d, 0x7f03009e, 0x7f0300b9, 0x7f0300c4, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03011c, 0x7f03011e, 0x7f030133, 0x7f030152, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f03018b, 0x7f030190, 0x7f0301a2, 0x7f0301a3, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f03023f, 0x7f03024f, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f03038d, 0x7f03038e, 0x7f03038f, 0x7f0303a9, 0x7f0303ab, 0x7f0303ba, 0x7f0303bc, 0x7f0303bd, 0x7f0303be, 0x7f0303d9, 0x7f0303dc, 0x7f0303dd, 0x7f0303de, 0x7f030409, 0x7f03040a, 0x7f030445, 0x7f030481, 0x7f030483, 0x7f030484, 0x7f030485, 0x7f030487, 0x7f030488, 0x7f030489, 0x7f03048a, 0x7f030495, 0x7f030496, 0x7f0304d9, 0x7f0304da, 0x7f0304dc, 0x7f0304dd, 0x7f030504, 0x7f030512, 0x7f030513, 0x7f030514, 0x7f030515, 0x7f030516, 0x7f030517, 0x7f030518, 0x7f030519, 0x7f03051a, 0x7f03051b } +int styleable AppCompatTheme_android_windowIsFloating 0 +int styleable AppCompatTheme_android_windowAnimationStyle 1 +int styleable AppCompatTheme_actionBarDivider 2 +int styleable AppCompatTheme_actionBarItemBackground 3 +int styleable AppCompatTheme_actionBarPopupTheme 4 +int styleable AppCompatTheme_actionBarSize 5 +int styleable AppCompatTheme_actionBarSplitStyle 6 +int styleable AppCompatTheme_actionBarStyle 7 +int styleable AppCompatTheme_actionBarTabBarStyle 8 +int styleable AppCompatTheme_actionBarTabStyle 9 +int styleable AppCompatTheme_actionBarTabTextStyle 10 +int styleable AppCompatTheme_actionBarTheme 11 +int styleable AppCompatTheme_actionBarWidgetTheme 12 +int styleable AppCompatTheme_actionButtonStyle 13 +int styleable AppCompatTheme_actionDropDownStyle 14 +int styleable AppCompatTheme_actionMenuTextAppearance 15 +int styleable AppCompatTheme_actionMenuTextColor 16 +int styleable AppCompatTheme_actionModeBackground 17 +int styleable AppCompatTheme_actionModeCloseButtonStyle 18 +int styleable AppCompatTheme_actionModeCloseContentDescription 19 +int styleable AppCompatTheme_actionModeCloseDrawable 20 +int styleable AppCompatTheme_actionModeCopyDrawable 21 +int styleable AppCompatTheme_actionModeCutDrawable 22 +int styleable AppCompatTheme_actionModeFindDrawable 23 +int styleable AppCompatTheme_actionModePasteDrawable 24 +int styleable AppCompatTheme_actionModePopupWindowStyle 25 +int styleable AppCompatTheme_actionModeSelectAllDrawable 26 +int styleable AppCompatTheme_actionModeShareDrawable 27 +int styleable AppCompatTheme_actionModeSplitBackground 28 +int styleable AppCompatTheme_actionModeStyle 29 +int styleable AppCompatTheme_actionModeTheme 30 +int styleable AppCompatTheme_actionModeWebSearchDrawable 31 +int styleable AppCompatTheme_actionOverflowButtonStyle 32 +int styleable AppCompatTheme_actionOverflowMenuStyle 33 +int styleable AppCompatTheme_activityChooserViewStyle 34 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 35 +int styleable AppCompatTheme_alertDialogCenterButtons 36 +int styleable AppCompatTheme_alertDialogStyle 37 +int styleable AppCompatTheme_alertDialogTheme 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable Badge { 0x7f030042, 0x7f03004e, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030241, 0x7f030242, 0x7f030287, 0x7f030326, 0x7f03032a, 0x7f030378, 0x7f03037a, 0x7f030502, 0x7f030503 } +int styleable Badge_autoAdjustToWithinGrandparentBounds 0 +int styleable Badge_backgroundColor 1 +int styleable Badge_badgeGravity 2 +int styleable Badge_badgeHeight 3 +int styleable Badge_badgeRadius 4 +int styleable Badge_badgeShapeAppearance 5 +int styleable Badge_badgeShapeAppearanceOverlay 6 +int styleable Badge_badgeText 7 +int styleable Badge_badgeTextAppearance 8 +int styleable Badge_badgeTextColor 9 +int styleable Badge_badgeVerticalPadding 10 +int styleable Badge_badgeWidePadding 11 +int styleable Badge_badgeWidth 12 +int styleable Badge_badgeWithTextHeight 13 +int styleable Badge_badgeWithTextRadius 14 +int styleable Badge_badgeWithTextShapeAppearance 15 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 16 +int styleable Badge_badgeWithTextWidth 17 +int styleable Badge_horizontalOffset 18 +int styleable Badge_horizontalOffsetWithText 19 +int styleable Badge_largeFontVerticalOffsetAdjustment 20 +int styleable Badge_maxCharacterCount 21 +int styleable Badge_maxNumber 22 +int styleable Badge_number 23 +int styleable Badge_offsetAlignmentMode 24 +int styleable Badge_verticalOffset 25 +int styleable Badge_verticalOffsetWithText 26 +int[] styleable BaseProgressIndicator { 0x01010139, 0x7f030236, 0x7f030256, 0x7f03025b, 0x7f030334, 0x7f0303ef, 0x7f0303f1, 0x7f0304e5, 0x7f0304e8, 0x7f0304ef } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_indicatorTrackGapSize 3 +int styleable BaseProgressIndicator_minHideDelay 4 +int styleable BaseProgressIndicator_showAnimationBehavior 5 +int styleable BaseProgressIndicator_showDelay 6 +int styleable BaseProgressIndicator_trackColor 7 +int styleable BaseProgressIndicator_trackCornerRadius 8 +int styleable BaseProgressIndicator_trackThickness 9 +int[] styleable BottomAppBar { 0x7f03002b, 0x7f030056, 0x7f0301a9, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f03023a, 0x7f03032f, 0x7f030370, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f0303c8 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x01010140, 0x7f030139, 0x7f030266, 0x7f0303e2, 0x7f0303ea } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int styleable BottomNavigationView_shapeAppearance 3 +int styleable BottomNavigationView_shapeAppearanceOverlay 4 +int[] styleable BottomSheetBehavior_Layout { 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030075, 0x7f030076, 0x7f030077, 0x7f030078, 0x7f03021f, 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f03038c, 0x7f0303e2, 0x7f0303ea, 0x7f0303ee } +int styleable BottomSheetBehavior_Layout_android_maxWidth 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_elevation 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x7f030030 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x7f0303b9, 0x7f0303ed } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f030149, 0x7f03014a, 0x7f03014c, 0x7f03014d, 0x7f03014f } +int styleable CardView_android_minWidth 0 +int styleable CardView_android_minHeight 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 } +int styleable Carousel_carousel_alignment 0 +int styleable Carousel_carousel_backwardTransition 1 +int styleable Carousel_carousel_emptyViewsBehavior 2 +int styleable Carousel_carousel_firstView 3 +int styleable Carousel_carousel_forwardTransition 4 +int styleable Carousel_carousel_infinite 5 +int styleable Carousel_carousel_nextState 6 +int styleable Carousel_carousel_previousState 7 +int styleable Carousel_carousel_touchUpMode 8 +int styleable Carousel_carousel_touchUp_dampeningFactor 9 +int styleable Carousel_carousel_touchUp_velocityThreshold 10 +int[] styleable CheckedTextView { 0x01010108, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0300bc, 0x7f0300bd, 0x7f0300c1, 0x7f0300c2, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d8, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed, 0x7f0301b9, 0x7f030237, 0x7f030245, 0x7f030249, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, 0x7f030497, 0x7f0304a6 } +int styleable Chip_android_textAppearance 0 +int styleable Chip_android_textSize 1 +int styleable Chip_android_textColor 2 +int styleable Chip_android_ellipsize 3 +int styleable Chip_android_maxWidth 4 +int styleable Chip_android_text 5 +int styleable Chip_android_checkable 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f0300bb, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f0303df, 0x7f030400, 0x7f030401 } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x7f030257, 0x7f030259, 0x7f03025a } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0300e3, 0x7f0300e6 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0300e4, 0x7f03030e, 0x7f0303e0 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f030150, 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d8, 0x7f03021a, 0x7f030329, 0x7f0303d2, 0x7f0303d4, 0x7f03042f, 0x7f0304c8, 0x7f0304ca, 0x7f0304cb, 0x7f0304d2, 0x7f0304d5, 0x7f0304d8 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f030292, 0x7f030293 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_lStar 2 +int styleable ColorStateListItem_alpha 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x01010107, 0x7f030096, 0x7f03009f, 0x7f0300a0 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 } +int styleable Constraint_android_orientation 0 +int styleable Constraint_android_id 1 +int styleable Constraint_android_visibility 2 +int styleable Constraint_android_layout_width 3 +int styleable Constraint_android_layout_height 4 +int styleable Constraint_android_layout_marginLeft 5 +int styleable Constraint_android_layout_marginTop 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginBottom 8 +int styleable Constraint_android_maxWidth 9 +int styleable Constraint_android_maxHeight 10 +int styleable Constraint_android_minWidth 11 +int styleable Constraint_android_minHeight 12 +int styleable Constraint_android_alpha 13 +int styleable Constraint_android_transformPivotX 14 +int styleable Constraint_android_transformPivotY 15 +int styleable Constraint_android_translationX 16 +int styleable Constraint_android_translationY 17 +int styleable Constraint_android_scaleX 18 +int styleable Constraint_android_scaleY 19 +int styleable Constraint_android_rotation 20 +int styleable Constraint_android_rotationX 21 +int styleable Constraint_android_rotationY 22 +int styleable Constraint_android_layout_marginStart 23 +int styleable Constraint_android_layout_marginEnd 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_elevation 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_barrierAllowsGoneWidgets 29 +int styleable Constraint_barrierDirection 30 +int styleable Constraint_barrierMargin 31 +int styleable Constraint_chainUseRtl 32 +int styleable Constraint_constraint_referenced_ids 33 +int styleable Constraint_constraint_referenced_tags 34 +int styleable Constraint_drawPath 35 +int styleable Constraint_flow_firstHorizontalBias 36 +int styleable Constraint_flow_firstHorizontalStyle 37 +int styleable Constraint_flow_firstVerticalBias 38 +int styleable Constraint_flow_firstVerticalStyle 39 +int styleable Constraint_flow_horizontalAlign 40 +int styleable Constraint_flow_horizontalBias 41 +int styleable Constraint_flow_horizontalGap 42 +int styleable Constraint_flow_horizontalStyle 43 +int styleable Constraint_flow_lastHorizontalBias 44 +int styleable Constraint_flow_lastHorizontalStyle 45 +int styleable Constraint_flow_lastVerticalBias 46 +int styleable Constraint_flow_lastVerticalStyle 47 +int styleable Constraint_flow_maxElementsWrap 48 +int styleable Constraint_flow_verticalAlign 49 +int styleable Constraint_flow_verticalBias 50 +int styleable Constraint_flow_verticalGap 51 +int styleable Constraint_flow_verticalStyle 52 +int styleable Constraint_flow_wrapMode 53 +int styleable Constraint_guidelineUseRtl 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x010103b5, 0x010103b6, 0x01010440, 0x0101053b, 0x0101053c, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f03013b, 0x7f03013e, 0x7f03013f, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f03028c, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302cf, 0x7f0302d3 } +int styleable ConstraintLayout_Layout_android_orientation 0 +int styleable ConstraintLayout_Layout_android_padding 1 +int styleable ConstraintLayout_Layout_android_paddingLeft 2 +int styleable ConstraintLayout_Layout_android_paddingTop 3 +int styleable ConstraintLayout_Layout_android_paddingRight 4 +int styleable ConstraintLayout_Layout_android_paddingBottom 5 +int styleable ConstraintLayout_Layout_android_visibility 6 +int styleable ConstraintLayout_Layout_android_layout_width 7 +int styleable ConstraintLayout_Layout_android_layout_height 8 +int styleable ConstraintLayout_Layout_android_layout_margin 9 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 10 +int styleable ConstraintLayout_Layout_android_layout_marginTop 11 +int styleable ConstraintLayout_Layout_android_layout_marginRight 12 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 13 +int styleable ConstraintLayout_Layout_android_maxWidth 14 +int styleable ConstraintLayout_Layout_android_maxHeight 15 +int styleable ConstraintLayout_Layout_android_minWidth 16 +int styleable ConstraintLayout_Layout_android_minHeight 17 +int styleable ConstraintLayout_Layout_android_paddingStart 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_layout_marginStart 20 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 21 +int styleable ConstraintLayout_Layout_android_elevation 22 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 23 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_guidelineUseRtl 55 +int styleable ConstraintLayout_Layout_layoutDescription 56 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 57 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 64 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 65 +int styleable ConstraintLayout_Layout_layout_constraintCircle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 67 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 68 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 70 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 73 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 78 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 81 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 84 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 87 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 89 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 90 +int styleable ConstraintLayout_Layout_layout_constraintTag 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 93 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 96 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 101 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 103 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 105 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 106 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 107 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 108 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 109 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 110 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 111 +int styleable ConstraintLayout_Layout_layout_marginBaseline 112 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 113 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 114 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f0303bf, 0x7f0303c0, 0x7f0303c1, 0x7f0303c2 } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f030141, 0x7f0303a1 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f03029a, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302b1, 0x7f0302b6, 0x7f0302b7, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030368, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 } +int styleable ConstraintOverride_android_orientation 0 +int styleable ConstraintOverride_android_id 1 +int styleable ConstraintOverride_android_visibility 2 +int styleable ConstraintOverride_android_layout_width 3 +int styleable ConstraintOverride_android_layout_height 4 +int styleable ConstraintOverride_android_layout_marginLeft 5 +int styleable ConstraintOverride_android_layout_marginTop 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginBottom 8 +int styleable ConstraintOverride_android_maxWidth 9 +int styleable ConstraintOverride_android_maxHeight 10 +int styleable ConstraintOverride_android_minWidth 11 +int styleable ConstraintOverride_android_minHeight 12 +int styleable ConstraintOverride_android_alpha 13 +int styleable ConstraintOverride_android_transformPivotX 14 +int styleable ConstraintOverride_android_transformPivotY 15 +int styleable ConstraintOverride_android_translationX 16 +int styleable ConstraintOverride_android_translationY 17 +int styleable ConstraintOverride_android_scaleX 18 +int styleable ConstraintOverride_android_scaleY 19 +int styleable ConstraintOverride_android_rotation 20 +int styleable ConstraintOverride_android_rotationX 21 +int styleable ConstraintOverride_android_rotationY 22 +int styleable ConstraintOverride_android_layout_marginStart 23 +int styleable ConstraintOverride_android_layout_marginEnd 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_elevation 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_guidelineUseRtl 53 +int styleable ConstraintOverride_layout_constrainedHeight 54 +int styleable ConstraintOverride_layout_constrainedWidth 55 +int styleable ConstraintOverride_layout_constraintBaseline_creator 56 +int styleable ConstraintOverride_layout_constraintBottom_creator 57 +int styleable ConstraintOverride_layout_constraintCircleAngle 58 +int styleable ConstraintOverride_layout_constraintCircleRadius 59 +int styleable ConstraintOverride_layout_constraintDimensionRatio 60 +int styleable ConstraintOverride_layout_constraintGuide_begin 61 +int styleable ConstraintOverride_layout_constraintGuide_end 62 +int styleable ConstraintOverride_layout_constraintGuide_percent 63 +int styleable ConstraintOverride_layout_constraintHeight 64 +int styleable ConstraintOverride_layout_constraintHeight_default 65 +int styleable ConstraintOverride_layout_constraintHeight_max 66 +int styleable ConstraintOverride_layout_constraintHeight_min 67 +int styleable ConstraintOverride_layout_constraintHeight_percent 68 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 69 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 70 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 71 +int styleable ConstraintOverride_layout_constraintLeft_creator 72 +int styleable ConstraintOverride_layout_constraintRight_creator 73 +int styleable ConstraintOverride_layout_constraintTag 74 +int styleable ConstraintOverride_layout_constraintTop_creator 75 +int styleable ConstraintOverride_layout_constraintVertical_bias 76 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 77 +int styleable ConstraintOverride_layout_constraintVertical_weight 78 +int styleable ConstraintOverride_layout_constraintWidth 79 +int styleable ConstraintOverride_layout_constraintWidth_default 80 +int styleable ConstraintOverride_layout_constraintWidth_max 81 +int styleable ConstraintOverride_layout_constraintWidth_min 82 +int styleable ConstraintOverride_layout_constraintWidth_percent 83 +int styleable ConstraintOverride_layout_editor_absoluteX 84 +int styleable ConstraintOverride_layout_editor_absoluteY 85 +int styleable ConstraintOverride_layout_goneMarginBaseline 86 +int styleable ConstraintOverride_layout_goneMarginBottom 87 +int styleable ConstraintOverride_layout_goneMarginEnd 88 +int styleable ConstraintOverride_layout_goneMarginLeft 89 +int styleable ConstraintOverride_layout_goneMarginRight 90 +int styleable ConstraintOverride_layout_goneMarginStart 91 +int styleable ConstraintOverride_layout_goneMarginTop 92 +int styleable ConstraintOverride_layout_marginBaseline 93 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 94 +int styleable ConstraintOverride_motionProgress 95 +int styleable ConstraintOverride_motionStagger 96 +int styleable ConstraintOverride_motionTarget 97 +int styleable ConstraintOverride_pathMotionArc 98 +int styleable ConstraintOverride_pivotAnchor 99 +int styleable ConstraintOverride_polarRelativeTo 100 +int styleable ConstraintOverride_quantizeMotionInterpolator 101 +int styleable ConstraintOverride_quantizeMotionPhase 102 +int styleable ConstraintOverride_quantizeMotionSteps 103 +int styleable ConstraintOverride_transformPivotTarget 104 +int styleable ConstraintOverride_transitionEasing 105 +int styleable ConstraintOverride_transitionPathRotate 106 +int styleable ConstraintOverride_visibilityMode 107 +int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013a, 0x7f03013e, 0x7f03013f, 0x7f030183, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b6, 0x7f030423, 0x7f0304f4, 0x7f0304f6 } +int styleable ConstraintSet_android_orientation 0 +int styleable ConstraintSet_android_id 1 +int styleable ConstraintSet_android_visibility 2 +int styleable ConstraintSet_android_layout_width 3 +int styleable ConstraintSet_android_layout_height 4 +int styleable ConstraintSet_android_layout_marginLeft 5 +int styleable ConstraintSet_android_layout_marginTop 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginBottom 8 +int styleable ConstraintSet_android_maxWidth 9 +int styleable ConstraintSet_android_maxHeight 10 +int styleable ConstraintSet_android_minWidth 11 +int styleable ConstraintSet_android_minHeight 12 +int styleable ConstraintSet_android_pivotX 13 +int styleable ConstraintSet_android_pivotY 14 +int styleable ConstraintSet_android_alpha 15 +int styleable ConstraintSet_android_transformPivotX 16 +int styleable ConstraintSet_android_transformPivotY 17 +int styleable ConstraintSet_android_translationX 18 +int styleable ConstraintSet_android_translationY 19 +int styleable ConstraintSet_android_scaleX 20 +int styleable ConstraintSet_android_scaleY 21 +int styleable ConstraintSet_android_rotation 22 +int styleable ConstraintSet_android_rotationX 23 +int styleable ConstraintSet_android_rotationY 24 +int styleable ConstraintSet_android_layout_marginStart 25 +int styleable ConstraintSet_android_layout_marginEnd 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_elevation 28 +int styleable ConstraintSet_animateCircleAngleTo 29 +int styleable ConstraintSet_animateRelativeTo 30 +int styleable ConstraintSet_barrierAllowsGoneWidgets 31 +int styleable ConstraintSet_barrierDirection 32 +int styleable ConstraintSet_barrierMargin 33 +int styleable ConstraintSet_chainUseRtl 34 +int styleable ConstraintSet_constraintRotate 35 +int styleable ConstraintSet_constraint_referenced_ids 36 +int styleable ConstraintSet_constraint_referenced_tags 37 +int styleable ConstraintSet_deriveConstraintsFrom 38 +int styleable ConstraintSet_drawPath 39 +int styleable ConstraintSet_flow_firstHorizontalBias 40 +int styleable ConstraintSet_flow_firstHorizontalStyle 41 +int styleable ConstraintSet_flow_firstVerticalBias 42 +int styleable ConstraintSet_flow_firstVerticalStyle 43 +int styleable ConstraintSet_flow_horizontalAlign 44 +int styleable ConstraintSet_flow_horizontalBias 45 +int styleable ConstraintSet_flow_horizontalGap 46 +int styleable ConstraintSet_flow_horizontalStyle 47 +int styleable ConstraintSet_flow_lastHorizontalBias 48 +int styleable ConstraintSet_flow_lastHorizontalStyle 49 +int styleable ConstraintSet_flow_lastVerticalBias 50 +int styleable ConstraintSet_flow_lastVerticalStyle 51 +int styleable ConstraintSet_flow_maxElementsWrap 52 +int styleable ConstraintSet_flow_verticalAlign 53 +int styleable ConstraintSet_flow_verticalBias 54 +int styleable ConstraintSet_flow_verticalGap 55 +int styleable ConstraintSet_flow_verticalStyle 56 +int styleable ConstraintSet_flow_wrapMode 57 +int styleable ConstraintSet_guidelineUseRtl 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_stateLabels 120 +int styleable ConstraintSet_transitionEasing 121 +int styleable ConstraintSet_transitionPathRotate 122 +int[] styleable CoordinatorLayout { 0x7f030282, 0x7f03042d } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f0302c2, 0x7f0302cc, 0x7f0302cd } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x7f030041, 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030331 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable DialogFragmentNavigator { 0x01010003 } +int styleable DialogFragmentNavigator_android_name 0 +int[] styleable DrawerArrowToggle { 0x7f03003f, 0x7f030040, 0x7f030069, 0x7f0300fb, 0x7f030199, 0x7f03021e, 0x7f030408, 0x7f0304ac } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable DrawerLayout { 0x7f0301a9 } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x7f0300f1, 0x7f0301a9, 0x7f0301d1, 0x7f0301d2, 0x7f030237, 0x7f0303f4, 0x7f0303f8 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f03006d, 0x7f03006e } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x0101000e, 0x7f030056, 0x7f030057, 0x7f03007c, 0x7f0301a9, 0x7f0301b9, 0x7f0301e0, 0x7f0301e1, 0x7f030237, 0x7f030243, 0x7f030328, 0x7f0303b0, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, 0x7f0304fe } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f03006d } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f030277, 0x7f0302d9 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFallbackQuery 2 +int styleable FontFamily_fontProviderFetchStrategy 3 +int styleable FontFamily_fontProviderFetchTimeout 4 +int styleable FontFamily_fontProviderPackage 5 +int styleable FontFamily_fontProviderQuery 6 +int styleable FontFamily_fontProviderSystemFontFamily 7 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f03021c } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 } +int styleable Fragment_android_name 0 +int styleable Fragment_android_id 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable FragmentNavigator { 0x01010003 } +int styleable FragmentNavigator_android_name 0 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable Grid { 0x7f030222, 0x7f030223, 0x7f030224, 0x7f030225, 0x7f030226, 0x7f030227, 0x7f030228, 0x7f030229, 0x7f03022a, 0x7f03022b, 0x7f03022c } +int styleable Grid_grid_columnWeights 0 +int styleable Grid_grid_columns 1 +int styleable Grid_grid_horizontalGaps 2 +int styleable Grid_grid_orientation 3 +int styleable Grid_grid_rowWeights 4 +int styleable Grid_grid_rows 5 +int styleable Grid_grid_skips 6 +int styleable Grid_grid_spans 7 +int styleable Grid_grid_useRtl 8 +int styleable Grid_grid_validateInputs 9 +int styleable Grid_grid_verticalGaps 10 +int[] styleable ImageFilterView { 0x7f030033, 0x7f030079, 0x7f030090, 0x7f030151, 0x7f030166, 0x7f030250, 0x7f030251, 0x7f030252, 0x7f030253, 0x7f030383, 0x7f0303cd, 0x7f0303ce, 0x7f0303d0, 0x7f03050b } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f03038a, 0x7f03038c } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingStartSystemWindowInsets 6 +int styleable Insets_paddingTopSystemWindowInsets 7 +int[] styleable ItemsViewRendererTheme { 0x7f0300fa } +int styleable ItemsViewRendererTheme_collectionViewStyle 0 +int[] styleable KeyAttribute { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_transformPivotX 1 +int styleable KeyAttribute_android_transformPivotY 2 +int styleable KeyAttribute_android_translationX 3 +int styleable KeyAttribute_android_translationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_rotation 7 +int styleable KeyAttribute_android_rotationX 8 +int styleable KeyAttribute_android_rotationY 9 +int styleable KeyAttribute_android_translationZ 10 +int styleable KeyAttribute_android_elevation 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510, 0x7f030511 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_translationX 1 +int styleable KeyCycle_android_translationY 2 +int styleable KeyCycle_android_scaleX 3 +int styleable KeyCycle_android_scaleY 4 +int styleable KeyCycle_android_rotation 5 +int styleable KeyCycle_android_rotationX 6 +int styleable KeyCycle_android_rotationY 7 +int styleable KeyCycle_android_translationZ 8 +int styleable KeyCycle_android_elevation 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f03016a, 0x7f030194, 0x7f03021d, 0x7f030280, 0x7f030368, 0x7f030395, 0x7f030397, 0x7f030398, 0x7f030399, 0x7f03039a, 0x7f030402, 0x7f0304f4 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050c, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_translationX 1 +int styleable KeyTimeCycle_android_translationY 2 +int styleable KeyTimeCycle_android_scaleX 3 +int styleable KeyTimeCycle_android_scaleY 4 +int styleable KeyTimeCycle_android_rotation 5 +int styleable KeyTimeCycle_android_rotationX 6 +int styleable KeyTimeCycle_android_rotationY 7 +int styleable KeyTimeCycle_android_translationZ 8 +int styleable KeyTimeCycle_android_elevation 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f03021d, 0x7f030368, 0x7f030369, 0x7f03036a, 0x7f03037b, 0x7f03037d, 0x7f03037e, 0x7f0304f8, 0x7f0304f9, 0x7f0304fa, 0x7f030506, 0x7f030507, 0x7f030508 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030327, 0x7f03032c, 0x7f030333, 0x7f030337 } +int styleable Layout_android_orientation 0 +int styleable Layout_android_layout_width 1 +int styleable Layout_android_layout_height 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginTop 4 +int styleable Layout_android_layout_marginRight 5 +int styleable Layout_android_layout_marginBottom 6 +int styleable Layout_android_layout_marginStart 7 +int styleable Layout_android_layout_marginEnd 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_guidelineUseRtl 15 +int styleable Layout_layout_constrainedHeight 16 +int styleable Layout_layout_constrainedWidth 17 +int styleable Layout_layout_constraintBaseline_creator 18 +int styleable Layout_layout_constraintBaseline_toBaselineOf 19 +int styleable Layout_layout_constraintBaseline_toBottomOf 20 +int styleable Layout_layout_constraintBaseline_toTopOf 21 +int styleable Layout_layout_constraintBottom_creator 22 +int styleable Layout_layout_constraintBottom_toBottomOf 23 +int styleable Layout_layout_constraintBottom_toTopOf 24 +int styleable Layout_layout_constraintCircle 25 +int styleable Layout_layout_constraintCircleAngle 26 +int styleable Layout_layout_constraintCircleRadius 27 +int styleable Layout_layout_constraintDimensionRatio 28 +int styleable Layout_layout_constraintEnd_toEndOf 29 +int styleable Layout_layout_constraintEnd_toStartOf 30 +int styleable Layout_layout_constraintGuide_begin 31 +int styleable Layout_layout_constraintGuide_end 32 +int styleable Layout_layout_constraintGuide_percent 33 +int styleable Layout_layout_constraintHeight 34 +int styleable Layout_layout_constraintHeight_default 35 +int styleable Layout_layout_constraintHeight_max 36 +int styleable Layout_layout_constraintHeight_min 37 +int styleable Layout_layout_constraintHeight_percent 38 +int styleable Layout_layout_constraintHorizontal_bias 39 +int styleable Layout_layout_constraintHorizontal_chainStyle 40 +int styleable Layout_layout_constraintHorizontal_weight 41 +int styleable Layout_layout_constraintLeft_creator 42 +int styleable Layout_layout_constraintLeft_toLeftOf 43 +int styleable Layout_layout_constraintLeft_toRightOf 44 +int styleable Layout_layout_constraintRight_creator 45 +int styleable Layout_layout_constraintRight_toLeftOf 46 +int styleable Layout_layout_constraintRight_toRightOf 47 +int styleable Layout_layout_constraintStart_toEndOf 48 +int styleable Layout_layout_constraintStart_toStartOf 49 +int styleable Layout_layout_constraintTop_creator 50 +int styleable Layout_layout_constraintTop_toBottomOf 51 +int styleable Layout_layout_constraintTop_toTopOf 52 +int styleable Layout_layout_constraintVertical_bias 53 +int styleable Layout_layout_constraintVertical_chainStyle 54 +int styleable Layout_layout_constraintVertical_weight 55 +int styleable Layout_layout_constraintWidth 56 +int styleable Layout_layout_constraintWidth_default 57 +int styleable Layout_layout_constraintWidth_max 58 +int styleable Layout_layout_constraintWidth_min 59 +int styleable Layout_layout_constraintWidth_percent 60 +int styleable Layout_layout_editor_absoluteX 61 +int styleable Layout_layout_editor_absoluteY 62 +int styleable Layout_layout_goneMarginBaseline 63 +int styleable Layout_layout_goneMarginBottom 64 +int styleable Layout_layout_goneMarginEnd 65 +int styleable Layout_layout_goneMarginLeft 66 +int styleable Layout_layout_goneMarginRight 67 +int styleable Layout_layout_goneMarginStart 68 +int styleable Layout_layout_goneMarginTop 69 +int styleable Layout_layout_marginBaseline 70 +int styleable Layout_layout_wrapBehaviorInParent 71 +int styleable Layout_maxHeight 72 +int styleable Layout_maxWidth 73 +int styleable Layout_minHeight 74 +int styleable Layout_minWidth 75 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030189, 0x7f03018e, 0x7f03032d, 0x7f0303f2 } +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int[] styleable LinearProgressIndicator { 0x7f030254, 0x7f030258, 0x7f0304ee } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int styleable LinearProgressIndicator_trackStopIndicatorSize 2 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030056 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int styleable MaterialAlertDialog_backgroundTint 4 +int[] styleable MaterialAlertDialogTheme { 0x7f0302f2, 0x7f0302f3, 0x7f0302f4, 0x7f0302f5, 0x7f0302f6, 0x7f0302f7 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int[] styleable MaterialAutoCompleteTextView { 0x01010220, 0x0101048c, 0x7f0301a1, 0x7f0303fb, 0x7f0303fc, 0x7f0303fd, 0x7f0303fe } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_dropDownBackgroundTint 2 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 3 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 4 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 5 +int styleable MaterialAutoCompleteTextView_simpleItems 6 +int[] styleable MaterialButton { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f030056, 0x7f030057, 0x7f03015a, 0x7f0301a9, 0x7f030244, 0x7f030246, 0x7f030247, 0x7f030248, 0x7f03024a, 0x7f03024b, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f030431, 0x7f030432, 0x7f0304d7 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_insetLeft 1 +int styleable MaterialButton_android_insetRight 2 +int styleable MaterialButton_android_insetTop 3 +int styleable MaterialButton_android_insetBottom 4 +int styleable MaterialButton_android_checkable 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialButtonToggleGroup { 0x0101000e, 0x7f0300ba, 0x7f0303df, 0x7f030401 } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int[] styleable MaterialCalendar { 0x0101020d, 0x7f030056, 0x7f030177, 0x7f030178, 0x7f030179, 0x7f03017a, 0x7f030376, 0x7f0303bb, 0x7f03051c, 0x7f03051d, 0x7f03051e } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_backgroundTint 1 +int styleable MaterialCalendar_dayInvalidStyle 2 +int styleable MaterialCalendar_daySelectedStyle 3 +int styleable MaterialCalendar_dayStyle 4 +int styleable MaterialCalendar_dayTodayStyle 5 +int styleable MaterialCalendar_nestedScrollable 6 +int styleable MaterialCalendar_rangeFillColor 7 +int styleable MaterialCalendar_yearSelectedStyle 8 +int styleable MaterialCalendar_yearStyle 9 +int styleable MaterialCalendar_yearTodayStyle 10 +int[] styleable MaterialCalendarItem { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030264, 0x7f030270, 0x7f030271, 0x7f030278, 0x7f030279, 0x7f03027e } +int styleable MaterialCalendarItem_android_insetLeft 0 +int styleable MaterialCalendarItem_android_insetRight 1 +int styleable MaterialCalendarItem_android_insetTop 2 +int styleable MaterialCalendarItem_android_insetBottom 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x010101e5, 0x7f0300a4, 0x7f0300bc, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f030427, 0x7f030431, 0x7f030432 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x01010107, 0x7f030096, 0x7f030098, 0x7f03009a, 0x7f03009b, 0x7f03009f, 0x7f0300b4, 0x7f0300c3, 0x7f0301bb, 0x7f0301c2, 0x7f030500 } +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialCheckBoxStates { 0x7f030428, 0x7f030429 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int[] styleable MaterialDivider { 0x7f03018a, 0x7f03018c, 0x7f03018d, 0x7f03018f, 0x7f030289 } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x7f03009f, 0x7f030500 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0303e2, 0x7f0303ea } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x7f0304b0, 0x7f0304b1, 0x7f0304b2, 0x7f0304b3, 0x7f0304e9, 0x7f0304ea, 0x7f0304eb } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconSize 1 +int styleable MaterialSwitch_thumbIconTint 2 +int styleable MaterialSwitch_thumbIconTintMode 3 +int styleable MaterialSwitch_trackDecoration 4 +int styleable MaterialSwitch_trackDecorationTint 5 +int styleable MaterialSwitch_trackDecorationTintMode 6 +int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f0302d8 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x01010034, 0x0101057f, 0x7f0302d8 } +int styleable MaterialTextView_android_textAppearance 0 +int styleable MaterialTextView_android_lineHeight 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f030056, 0x7f0300e5, 0x7f030281 } +int styleable MaterialTimePicker_backgroundTint 0 +int styleable MaterialTimePicker_clockIcon 1 +int styleable MaterialTimePicker_keyboardIcon 2 +int[] styleable MaterialToolbar { 0x7f0302eb, 0x7f0302ed, 0x7f030370, 0x7f03043a, 0x7f0304c9 } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_visible 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_checkableBehavior 5 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x7f030142, 0x7f03024a, 0x7f03024b, 0x7f030379, 0x7f0303f0, 0x7f0304df } +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_actionLayout 13 +int styleable MenuItem_actionProviderClass 14 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_alphabeticModifiers 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0303af, 0x7f030433 } +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f030338, 0x7f030339, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x7f030035, 0x7f030038, 0x7f030194, 0x7f030365, 0x7f030367, 0x7f030395, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f4 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_drawPath 2 +int styleable Motion_motionPathRotate 3 +int styleable Motion_motionStagger 4 +int styleable Motion_pathMotionArc 5 +int styleable Motion_quantizeMotionInterpolator 6 +int styleable Motion_quantizeMotionPhase 7 +int styleable Motion_quantizeMotionSteps 8 +int styleable Motion_transitionEasing 9 +int[] styleable MotionEffect { 0x7f03035b, 0x7f03035c, 0x7f03035d, 0x7f03035e, 0x7f03035f, 0x7f030360, 0x7f030361, 0x7f030362 } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f03037c, 0x7f03037f } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x010100af, 0x0101014f, 0x01010164, 0x010103ac, 0x01010535, 0x7f03007a, 0x7f03007b, 0x7f0303d1, 0x7f030490, 0x7f030491, 0x7f030492, 0x7f030493, 0x7f030494, 0x7f0304a2, 0x7f0304a3, 0x7f0304a4, 0x7f0304a5, 0x7f0304a7, 0x7f0304a8, 0x7f0304a9, 0x7f0304aa } +int styleable MotionLabel_android_textSize 0 +int styleable MotionLabel_android_typeface 1 +int styleable MotionLabel_android_textStyle 2 +int styleable MotionLabel_android_textColor 3 +int styleable MotionLabel_android_gravity 4 +int styleable MotionLabel_android_text 5 +int styleable MotionLabel_android_shadowRadius 6 +int styleable MotionLabel_android_fontFamily 7 +int styleable MotionLabel_android_autoSizeTextType 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f03003c, 0x7f030167, 0x7f03028c, 0x7f03033e, 0x7f030366, 0x7f0303f5 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f03017b, 0x7f03028d } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f030467, 0x7f030468, 0x7f030469 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavAction { 0x010100d0, 0x7f030184, 0x7f0301ba, 0x7f0301c5, 0x7f03028a, 0x7f0303a3, 0x7f0303a4, 0x7f0303a5, 0x7f0303a6, 0x7f0303a7, 0x7f0303c9 } +int styleable NavAction_android_id 0 +int styleable NavAction_destination 1 +int styleable NavAction_enterAnim 2 +int styleable NavAction_exitAnim 3 +int styleable NavAction_launchSingleTop 4 +int styleable NavAction_popEnterAnim 5 +int styleable NavAction_popExitAnim 6 +int styleable NavAction_popUpTo 7 +int styleable NavAction_popUpToInclusive 8 +int styleable NavAction_popUpToSaveState 9 +int styleable NavAction_restoreState 10 +int[] styleable NavArgument { 0x01010003, 0x010101ed, 0x7f03003e, 0x7f030377 } +int styleable NavArgument_android_name 0 +int styleable NavArgument_android_defaultValue 1 +int styleable NavArgument_argType 2 +int styleable NavArgument_nullable 3 +int[] styleable NavDeepLink { 0x010104ee, 0x7f030002, 0x7f030332, 0x7f0304fd } +int styleable NavDeepLink_android_autoVerify 0 +int styleable NavDeepLink_action 1 +int styleable NavDeepLink_mimeType 2 +int styleable NavDeepLink_uri 3 +int[] styleable NavGraphNavigator { 0x7f03041b } +int styleable NavGraphNavigator_startDestination 0 +int[] styleable NavHost { 0x7f03036d } +int styleable NavHost_navGraph 0 +int[] styleable NavHostFragment { 0x7f03017d } +int styleable NavHostFragment_defaultNavHost 0 +int[] styleable NavInclude { 0x7f030221 } +int styleable NavInclude_graph 0 +int[] styleable NavigationBarActiveIndicator { 0x01010155, 0x01010159, 0x010101a5, 0x7f0302ee, 0x7f0303e2 } +int styleable NavigationBarActiveIndicator_android_height 0 +int styleable NavigationBarActiveIndicator_android_width 1 +int styleable NavigationBarActiveIndicator_android_color 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x7f030027, 0x7f030056, 0x7f0301a9, 0x7f030262, 0x7f030263, 0x7f030268, 0x7f030269, 0x7f03026d, 0x7f03026e, 0x7f03026f, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f030286, 0x7f03032e } +int styleable NavigationBarView_activeIndicatorLabelPadding 0 +int styleable NavigationBarView_backgroundTint 1 +int styleable NavigationBarView_elevation 2 +int styleable NavigationBarView_itemActiveIndicatorStyle 3 +int styleable NavigationBarView_itemBackground 4 +int styleable NavigationBarView_itemIconSize 5 +int styleable NavigationBarView_itemIconTint 6 +int styleable NavigationBarView_itemPaddingBottom 7 +int styleable NavigationBarView_itemPaddingTop 8 +int styleable NavigationBarView_itemRippleColor 9 +int styleable NavigationBarView_itemTextAppearanceActive 10 +int styleable NavigationBarView_itemTextAppearanceActiveBoldEnabled 11 +int styleable NavigationBarView_itemTextAppearanceInactive 12 +int styleable NavigationBarView_itemTextColor 13 +int styleable NavigationBarView_labelVisibilityMode 14 +int styleable NavigationBarView_menu 15 +int[] styleable NavigationRailView { 0x7f030230, 0x7f03026b, 0x7f030330, 0x7f030385, 0x7f03038a, 0x7f03038c, 0x7f0303e2, 0x7f0303ea } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingStartSystemWindowInsets 4 +int styleable NavigationRailView_paddingTopSystemWindowInsets 5 +int styleable NavigationRailView_shapeAppearance 6 +int styleable NavigationRailView_shapeAppearanceOverlay 7 +int[] styleable NavigationView { 0x010100b3, 0x010100d4, 0x010100dd, 0x0101011f, 0x7f03007f, 0x7f03018c, 0x7f03018d, 0x7f03019f, 0x7f0301a9, 0x7f030230, 0x7f030263, 0x7f030265, 0x7f030267, 0x7f030268, 0x7f030269, 0x7f03026a, 0x7f03026f, 0x7f030270, 0x7f030271, 0x7f030272, 0x7f030273, 0x7f030274, 0x7f030275, 0x7f030276, 0x7f03027a, 0x7f03027c, 0x7f03027e, 0x7f03027f, 0x7f03032e, 0x7f0303e2, 0x7f0303ea, 0x7f030434, 0x7f030435, 0x7f030436, 0x7f030437, 0x7f0304e0 } +int styleable NavigationView_android_layout_gravity 0 +int styleable NavigationView_android_background 1 +int styleable NavigationView_android_fitsSystemWindows 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextAppearanceActiveBoldEnabled 25 +int styleable NavigationView_itemTextColor 26 +int styleable NavigationView_itemVerticalPadding 27 +int styleable NavigationView_menu 28 +int styleable NavigationView_shapeAppearance 29 +int styleable NavigationView_shapeAppearanceOverlay 30 +int styleable NavigationView_subheaderColor 31 +int styleable NavigationView_subheaderInsetEnd 32 +int styleable NavigationView_subheaderInsetStart 33 +int styleable NavigationView_subheaderTextAppearance 34 +int styleable NavigationView_topInsetScrimEnabled 35 +int[] styleable Navigator { 0x01010001, 0x010100d0, 0x7f0303cf } +int styleable Navigator_android_label 0 +int styleable Navigator_android_id 1 +int styleable Navigator_route 2 +int[] styleable OnClick { 0x7f0300e2, 0x7f030465 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f030043, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f0302d7, 0x7f030323, 0x7f03032b, 0x7f03036b, 0x7f030374, 0x7f030381, 0x7f0303cc, 0x7f030413, 0x7f030414, 0x7f030415, 0x7f030416, 0x7f030417, 0x7f0304e1, 0x7f0304e2, 0x7f0304e3 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030382 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_android_popupAnimationStyle 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f030424 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x010100dc, 0x0101031f, 0x7f0302b6, 0x7f030366, 0x7f030509 } +int styleable PropertySet_android_visibility 0 +int styleable PropertySet_android_alpha 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f03030e } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f030335, 0x7f030501 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f030384, 0x7f03038b } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f03028e, 0x7f0303ca, 0x7f030407, 0x7f030419 } +int styleable RecyclerView_android_orientation 0 +int styleable RecyclerView_android_clipToPadding 1 +int styleable RecyclerView_android_descendantFocusability 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x7f03025d } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollViewRendererTheme { 0x7f0303d5 } +int styleable ScrollViewRendererTheme_scrollViewStyle 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f030074 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x01010034, 0x0101014f, 0x01010150, 0x7f030056, 0x7f03017c, 0x7f03017f, 0x7f0301a9, 0x7f03021b, 0x7f030238, 0x7f030370, 0x7f030431, 0x7f030432, 0x7f0304c7 } +int styleable SearchBar_android_textAppearance 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_hint 2 +int styleable SearchBar_backgroundTint 3 +int styleable SearchBar_defaultMarginsEnabled 4 +int styleable SearchBar_defaultScrollFlagsEnabled 5 +int styleable SearchBar_elevation 6 +int styleable SearchBar_forceDefaultNavigationOnClickListener 7 +int styleable SearchBar_hideNavigationIcon 8 +int styleable SearchBar_navigationIconTint 9 +int styleable SearchBar_strokeColor 10 +int styleable SearchBar_strokeWidth 11 +int styleable SearchBar_tintNavigationIcon 12 +int[] styleable SearchView { 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, 0x01010150, 0x01010220, 0x01010264, 0x7f030036, 0x7f030037, 0x7f030045, 0x7f03004c, 0x7f030056, 0x7f0300e7, 0x7f030138, 0x7f03017e, 0x7f030220, 0x7f030230, 0x7f030238, 0x7f03024c, 0x7f03028b, 0x7f0303b7, 0x7f0303b8, 0x7f0303d6, 0x7f0303d7, 0x7f0303d8, 0x7f030438, 0x7f030441, 0x7f0304ff, 0x7f03050a } +int styleable SearchView_android_textAppearance 0 +int styleable SearchView_android_focusable 1 +int styleable SearchView_android_maxWidth 2 +int styleable SearchView_android_text 3 +int styleable SearchView_android_hint 4 +int styleable SearchView_android_inputType 5 +int styleable SearchView_android_imeOptions 6 +int styleable SearchView_animateMenuItems 7 +int styleable SearchView_animateNavigationIcon 8 +int styleable SearchView_autoShowKeyboard 9 +int styleable SearchView_backHandlingEnabled 10 +int styleable SearchView_backgroundTint 11 +int styleable SearchView_closeIcon 12 +int styleable SearchView_commitIcon 13 +int styleable SearchView_defaultQueryHint 14 +int styleable SearchView_goIcon 15 +int styleable SearchView_headerLayout 16 +int styleable SearchView_hideNavigationIcon 17 +int styleable SearchView_iconifiedByDefault 18 +int styleable SearchView_layout 19 +int styleable SearchView_queryBackground 20 +int styleable SearchView_queryHint 21 +int styleable SearchView_searchHintIcon 22 +int styleable SearchView_searchIcon 23 +int styleable SearchView_searchPrefixText 24 +int styleable SearchView_submitBackground 25 +int styleable SearchView_suggestionRowLayout 26 +int styleable SearchView_useDrawerArrowDrawable 27 +int styleable SearchView_voiceIcon 28 +int[] styleable ShapeAppearance { 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f0303e2, 0x7f0303ea, 0x7f030431, 0x7f030432 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, 0x7f03006f, 0x7f030154, 0x7f0303e2, 0x7f0303ea } +int styleable SideSheetBehavior_Layout_android_maxWidth 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_elevation 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f03022e, 0x7f03022f, 0x7f030284, 0x7f030285, 0x7f030336, 0x7f0304ad, 0x7f0304ae, 0x7f0304af, 0x7f0304b4, 0x7f0304b5, 0x7f0304b6, 0x7f0304ba, 0x7f0304bb, 0x7f0304bc, 0x7f0304bd, 0x7f0304be, 0x7f0304c2, 0x7f0304c3, 0x7f0304c4, 0x7f0304e5, 0x7f0304e6, 0x7f0304e7, 0x7f0304ec, 0x7f0304ed, 0x7f0304ee } +int styleable Slider_android_enabled 0 +int styleable Slider_android_value 1 +int styleable Slider_android_stepSize 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbHeight 12 +int styleable Slider_thumbRadius 13 +int styleable Slider_thumbStrokeColor 14 +int styleable Slider_thumbStrokeWidth 15 +int styleable Slider_thumbTrackGapSize 16 +int styleable Slider_thumbWidth 17 +int styleable Slider_tickColor 18 +int styleable Slider_tickColorActive 19 +int styleable Slider_tickColorInactive 20 +int styleable Slider_tickRadiusActive 21 +int styleable Slider_tickRadiusInactive 22 +int styleable Slider_tickVisible 23 +int styleable Slider_trackColor 24 +int styleable Slider_trackColorActive 25 +int styleable Slider_trackColorInactive 26 +int styleable Slider_trackHeight 27 +int styleable Slider_trackInsideCornerSize 28 +int styleable Slider_trackStopIndicatorSize 29 +int[] styleable Snackbar { 0x7f030404, 0x7f030405, 0x7f030406 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x0101011f, 0x7f030025, 0x7f03003a, 0x7f030053, 0x7f030056, 0x7f030057, 0x7f0301a9, 0x7f030324, 0x7f0303e2, 0x7f0303ea } +int styleable SnackbarLayout_android_maxWidth 0 +int styleable SnackbarLayout_actionTextColorAlpha 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0303aa } +int styleable Spinner_android_entries 0 +int styleable Spinner_android_popupBackground 1 +int styleable Spinner_android_prompt 2 +int styleable Spinner_android_dropDownWidth 3 +int styleable Spinner_popupTheme 4 +int[] styleable SplitPairFilter { 0x7f0303b1, 0x7f0303da, 0x7f0303db } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x7f030039, 0x7f0300e0, 0x7f0301e8, 0x7f0301e9, 0x7f03040b, 0x7f03040c, 0x7f03040d, 0x7f03040e, 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f030464 } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x7f030039, 0x7f0301e7, 0x7f03039d, 0x7f03040b, 0x7f03040c, 0x7f03040d, 0x7f03040e, 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f030430, 0x7f030464 } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 +int[] styleable State { 0x010100d0, 0x7f030140 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable StateListDrawable_android_dither 0 +int styleable StateListDrawable_android_visible 1 +int styleable StateListDrawable_android_variablePadding 2 +int styleable StateListDrawable_android_constantSize 3 +int styleable StateListDrawable_android_enterFadeDuration 4 +int styleable StateListDrawable_android_exitFadeDuration 5 +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f030180 } +int styleable StateSet_defaultState 0 +int[] styleable SwipeRefreshLayout { 0x7f030442 } +int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0303f6, 0x7f030412, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f0304b7, 0x7f0304b8, 0x7f0304b9, 0x7f0304e4, 0x7f0304f0, 0x7f0304f1 } +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f030500 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f030447, 0x7f030448, 0x7f030449, 0x7f03044a, 0x7f03044b, 0x7f03044c, 0x7f03044d, 0x7f03044e, 0x7f03044f, 0x7f030450, 0x7f030451, 0x7f030452, 0x7f030453, 0x7f030454, 0x7f030455, 0x7f030456, 0x7f030457, 0x7f030458, 0x7f030459, 0x7f03045a, 0x7f03045b, 0x7f03045c, 0x7f03045e, 0x7f03045f, 0x7f030461, 0x7f030462, 0x7f030463 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03020e, 0x7f030218, 0x7f03046a, 0x7f0304a1 } +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textColorHint 4 +int styleable TextAppearance_android_textColorLink 5 +int styleable TextAppearance_android_shadowColor 6 +int styleable TextAppearance_android_shadowDx 7 +int styleable TextAppearance_android_shadowDy 8 +int styleable TextAppearance_android_shadowRadius 9 +int styleable TextAppearance_android_fontFamily 10 +int styleable TextAppearance_android_textFontWeight 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x01010095, 0x01010096, 0x01010097, 0x0101014f, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f03007a, 0x7f03007b, 0x7f030498, 0x7f0304a2, 0x7f0304a3 } +int styleable TextEffects_android_textSize 0 +int styleable TextEffects_android_typeface 1 +int styleable TextEffects_android_textStyle 2 +int styleable TextEffects_android_text 3 +int styleable TextEffects_android_shadowColor 4 +int styleable TextEffects_android_shadowDx 5 +int styleable TextEffects_android_shadowDy 6 +int styleable TextEffects_android_shadowRadius 7 +int styleable TextEffects_android_fontFamily 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f03049c } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x01010157, 0x0101015a, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030163, 0x7f030164, 0x7f030165, 0x7f030168, 0x7f030169, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301bc, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c3, 0x7f0301c4, 0x7f0301c8, 0x7f030232, 0x7f030233, 0x7f030234, 0x7f030235, 0x7f03023b, 0x7f03023c, 0x7f03023d, 0x7f03023e, 0x7f030390, 0x7f030391, 0x7f030392, 0x7f030393, 0x7f030394, 0x7f03039e, 0x7f03039f, 0x7f0303a0, 0x7f0303ac, 0x7f0303ad, 0x7f0303ae, 0x7f0303e2, 0x7f0303ea, 0x7f03041c, 0x7f03041d, 0x7f03041e, 0x7f03041f, 0x7f030420, 0x7f030421, 0x7f030422, 0x7f03043e, 0x7f03043f, 0x7f030440 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_textColorHint 1 +int styleable TextInputLayout_android_maxWidth 2 +int styleable TextInputLayout_android_minWidth 3 +int styleable TextInputLayout_android_hint 4 +int styleable TextInputLayout_android_maxEms 5 +int styleable TextInputLayout_android_minEms 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_cursorColor 24 +int styleable TextInputLayout_cursorErrorColor 25 +int styleable TextInputLayout_endIconCheckable 26 +int styleable TextInputLayout_endIconContentDescription 27 +int styleable TextInputLayout_endIconDrawable 28 +int styleable TextInputLayout_endIconMinSize 29 +int styleable TextInputLayout_endIconMode 30 +int styleable TextInputLayout_endIconScaleType 31 +int styleable TextInputLayout_endIconTint 32 +int styleable TextInputLayout_endIconTintMode 33 +int styleable TextInputLayout_errorAccessibilityLiveRegion 34 +int styleable TextInputLayout_errorContentDescription 35 +int styleable TextInputLayout_errorEnabled 36 +int styleable TextInputLayout_errorIconDrawable 37 +int styleable TextInputLayout_errorIconTint 38 +int styleable TextInputLayout_errorIconTintMode 39 +int styleable TextInputLayout_errorTextAppearance 40 +int styleable TextInputLayout_errorTextColor 41 +int styleable TextInputLayout_expandedHintEnabled 42 +int styleable TextInputLayout_helperText 43 +int styleable TextInputLayout_helperTextEnabled 44 +int styleable TextInputLayout_helperTextTextAppearance 45 +int styleable TextInputLayout_helperTextTextColor 46 +int styleable TextInputLayout_hintAnimationEnabled 47 +int styleable TextInputLayout_hintEnabled 48 +int styleable TextInputLayout_hintTextAppearance 49 +int styleable TextInputLayout_hintTextColor 50 +int styleable TextInputLayout_passwordToggleContentDescription 51 +int styleable TextInputLayout_passwordToggleDrawable 52 +int styleable TextInputLayout_passwordToggleEnabled 53 +int styleable TextInputLayout_passwordToggleTint 54 +int styleable TextInputLayout_passwordToggleTintMode 55 +int styleable TextInputLayout_placeholderText 56 +int styleable TextInputLayout_placeholderTextAppearance 57 +int styleable TextInputLayout_placeholderTextColor 58 +int styleable TextInputLayout_prefixText 59 +int styleable TextInputLayout_prefixTextAppearance 60 +int styleable TextInputLayout_prefixTextColor 61 +int styleable TextInputLayout_shapeAppearance 62 +int styleable TextInputLayout_shapeAppearanceOverlay 63 +int styleable TextInputLayout_startIconCheckable 64 +int styleable TextInputLayout_startIconContentDescription 65 +int styleable TextInputLayout_startIconDrawable 66 +int styleable TextInputLayout_startIconMinSize 67 +int styleable TextInputLayout_startIconScaleType 68 +int styleable TextInputLayout_startIconTint 69 +int styleable TextInputLayout_startIconTintMode 70 +int styleable TextInputLayout_suffixText 71 +int styleable TextInputLayout_suffixTextAppearance 72 +int styleable TextInputLayout_suffixTextColor 73 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0301b7, 0x7f0301b8 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030097, 0x7f0300ef, 0x7f0300f0, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f0302ea, 0x7f0302ec, 0x7f030325, 0x7f03032e, 0x7f03036e, 0x7f03036f, 0x7f0303aa, 0x7f030439, 0x7f03043b, 0x7f03043c, 0x7f0304c8, 0x7f0304cc, 0x7f0304cd, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0, 0x7f0304d1, 0x7f0304d3, 0x7f0304d4 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x01010034, 0x01010098, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f030056, 0x7f0303f3 } +int styleable Tooltip_android_textAppearance 0 +int styleable Tooltip_android_textColor 1 +int styleable Tooltip_android_padding 2 +int styleable Tooltip_android_layout_margin 3 +int styleable Tooltip_android_minWidth 4 +int styleable Tooltip_android_minHeight 5 +int styleable Tooltip_android_text 6 +int styleable Tooltip_backgroundTint 7 +int styleable Tooltip_showMarker 8 +int[] styleable Transform { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0304f2 } +int styleable Transform_android_transformPivotX 0 +int styleable Transform_android_transformPivotY 1 +int styleable Transform_android_translationX 2 +int styleable Transform_android_translationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_rotation 6 +int styleable Transform_android_rotationX 7 +int styleable Transform_android_rotationY 8 +int styleable Transform_android_translationZ 9 +int styleable Transform_android_elevation 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x010100d0, 0x7f03004b, 0x7f03013c, 0x7f03013d, 0x7f0301a4, 0x7f03028d, 0x7f030363, 0x7f030395, 0x7f03041a, 0x7f0304f3, 0x7f0304f5 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f030140, 0x7f0303c4, 0x7f0303c5, 0x7f0303c6, 0x7f0303c7 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x01010000, 0x010100da, 0x7f030386, 0x7f030389, 0x7f0304ab } +int styleable View_android_theme 0 +int styleable View_android_focusable 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030056, 0x7f030057 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x010100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_layout 1 +int styleable ViewStubCompat_android_inflatedId 2 +int[] styleable ViewTransition { 0x010100d0, 0x7f030000, 0x7f030001, 0x7f0300e1, 0x7f0301a4, 0x7f03024d, 0x7f03024e, 0x7f030363, 0x7f030368, 0x7f030380, 0x7f030395, 0x7f0303e1, 0x7f0304f3, 0x7f0304fc, 0x7f030505 } +int styleable ViewTransition_android_id 0 +int styleable ViewTransition_SharedValue 1 +int styleable ViewTransition_SharedValueId 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable include { 0x7f03013b } +int styleable include_constraintSet 0 +int xml image_share_filepaths 0x7f120000 +int xml microsoft_maui_essentials_fileprovider_file_paths 0x7f120001 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/XamlC.stamp b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/XamlC.stamp new file mode 100644 index 0000000..e69de29 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_CompileBindingJava.FileList.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_CompileBindingJava.FileList.txt new file mode 100644 index 0000000..e69de29 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_CompileJava.FileList.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_CompileJava.FileList.txt new file mode 100644 index 0000000..e69de29 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000..4c76c39 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_XamarinBuildIsIncremental b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_XamarinBuildIsIncremental new file mode 100644 index 0000000..1ed3aba --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/_XamarinBuildIsIncremental @@ -0,0 +1 @@ +obj\Debug\net9.0-android\\_XamarinBuildIsIncremental diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs new file mode 100644 index 0000000..03f42a2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. DO NOT EDIT +// +//------------------------------------------------------------------------------ +using System; +using System.CodeDom.Compiler; + +namespace clipiFrontC { + #pragma warning disable IDE0002 + /// + /// Android Resource Designer class. + /// Exposes the Android Resource designer assembly into the project Namespace. + /// + public partial class Resource : _Microsoft.Android.Resource.Designer.ResourceConstant { + } + #pragma warning restore IDE0002 +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__environment__.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__environment__.txt new file mode 100644 index 0000000..4b73361 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/__environment__.txt @@ -0,0 +1,3 @@ +__XA_PACKAGE_NAMING_POLICY__=LowercaseCrc64 +mono.enable_assembly_preload=0 +DOTNET_MODIFIABLE_ASSEMBLIES=Debug diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/acw-map.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/acw-map.txt new file mode 100644 index 0000000..e6a1be8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/acw-map.txt @@ -0,0 +1,4608 @@ +clipiFrontC.MainActivity, clipiFrontC;crc64ca5cfae3d529160a.MainActivity +clipiFrontC.MainActivity;crc64ca5cfae3d529160a.MainActivity +clipifrontc.MainActivity;crc64ca5cfae3d529160a.MainActivity +clipiFrontC.MainApplication, clipiFrontC;crc64ca5cfae3d529160a.MainApplication +clipiFrontC.MainApplication;crc64ca5cfae3d529160a.MainApplication +clipifrontc.MainApplication;crc64ca5cfae3d529160a.MainApplication +GoogleGson.IExclusionStrategy, GoogleGson;com.google.gson.ExclusionStrategy +GoogleGson.IExclusionStrategy;com.google.gson.ExclusionStrategy +com.google.gson.ExclusionStrategy;com.google.gson.ExclusionStrategy +GoogleGson.IFieldNamingStrategy, GoogleGson;com.google.gson.FieldNamingStrategy +GoogleGson.IFieldNamingStrategy;com.google.gson.FieldNamingStrategy +com.google.gson.FieldNamingStrategy;com.google.gson.FieldNamingStrategy +GoogleGson.IInstanceCreator, GoogleGson;com.google.gson.InstanceCreator +GoogleGson.IInstanceCreator;com.google.gson.InstanceCreator +com.google.gson.InstanceCreator;com.google.gson.InstanceCreator +GoogleGson.IJsonDeserializationContext, GoogleGson;com.google.gson.JsonDeserializationContext +GoogleGson.IJsonDeserializationContext;com.google.gson.JsonDeserializationContext +com.google.gson.JsonDeserializationContext;com.google.gson.JsonDeserializationContext +GoogleGson.IJsonDeserializer, GoogleGson;com.google.gson.JsonDeserializer +GoogleGson.IJsonDeserializer;com.google.gson.JsonDeserializer +com.google.gson.JsonDeserializer;com.google.gson.JsonDeserializer +GoogleGson.IJsonSerializationContext, GoogleGson;com.google.gson.JsonSerializationContext +GoogleGson.IJsonSerializationContext;com.google.gson.JsonSerializationContext +com.google.gson.JsonSerializationContext;com.google.gson.JsonSerializationContext +GoogleGson.IJsonSerializer, GoogleGson;com.google.gson.JsonSerializer +GoogleGson.IJsonSerializer;com.google.gson.JsonSerializer +com.google.gson.JsonSerializer;com.google.gson.JsonSerializer +GoogleGson.IReflectionAccessFilter, GoogleGson;com.google.gson.ReflectionAccessFilter +GoogleGson.IReflectionAccessFilter;com.google.gson.ReflectionAccessFilter +com.google.gson.ReflectionAccessFilter;com.google.gson.ReflectionAccessFilter +GoogleGson.IToNumberStrategy, GoogleGson;com.google.gson.ToNumberStrategy +GoogleGson.IToNumberStrategy;com.google.gson.ToNumberStrategy +com.google.gson.ToNumberStrategy;com.google.gson.ToNumberStrategy +GoogleGson.ITypeAdapterFactory, GoogleGson;com.google.gson.TypeAdapterFactory +GoogleGson.ITypeAdapterFactory;com.google.gson.TypeAdapterFactory +com.google.gson.TypeAdapterFactory;com.google.gson.TypeAdapterFactory +GoogleGson.Annotations.IExpose, GoogleGson;com.google.gson.annotations.Expose +GoogleGson.Annotations.IExpose;com.google.gson.annotations.Expose +com.google.gson.annotations.Expose;com.google.gson.annotations.Expose +GoogleGson.Annotations.IJsonAdapter, GoogleGson;com.google.gson.annotations.JsonAdapter +GoogleGson.Annotations.IJsonAdapter;com.google.gson.annotations.JsonAdapter +com.google.gson.annotations.JsonAdapter;com.google.gson.annotations.JsonAdapter +GoogleGson.Annotations.ISerializedName, GoogleGson;com.google.gson.annotations.SerializedName +GoogleGson.Annotations.ISerializedName;com.google.gson.annotations.SerializedName +com.google.gson.annotations.SerializedName;com.google.gson.annotations.SerializedName +GoogleGson.Annotations.ISince, GoogleGson;com.google.gson.annotations.Since +GoogleGson.Annotations.ISince;com.google.gson.annotations.Since +com.google.gson.annotations.Since;com.google.gson.annotations.Since +GoogleGson.Annotations.IUntil, GoogleGson;com.google.gson.annotations.Until +GoogleGson.Annotations.IUntil;com.google.gson.annotations.Until +com.google.gson.annotations.Until;com.google.gson.annotations.Until +Microsoft.AspNetCore.Components.WebView.Maui.AndroidWebKitWebViewManager+BlazorWebMessageCallback, Microsoft.AspNetCore.Components.WebView.Maui;crc64d693e2d9159537db.AndroidWebKitWebViewManager_BlazorWebMessageCallback +Microsoft.AspNetCore.Components.WebView.Maui.AndroidWebKitWebViewManager.BlazorWebMessageCallback;crc64d693e2d9159537db.AndroidWebKitWebViewManager_BlazorWebMessageCallback +microsoft.aspnetcore.components.webview.maui.AndroidWebKitWebViewManager_BlazorWebMessageCallback;crc64d693e2d9159537db.AndroidWebKitWebViewManager_BlazorWebMessageCallback +Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui;crc64d693e2d9159537db.BlazorAndroidWebView +Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView;crc64d693e2d9159537db.BlazorAndroidWebView +microsoft.aspnetcore.components.webview.maui.BlazorAndroidWebView;crc64d693e2d9159537db.BlazorAndroidWebView +Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebChromeClient, Microsoft.AspNetCore.Components.WebView.Maui;crc64d693e2d9159537db.BlazorWebChromeClient +Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebChromeClient;crc64d693e2d9159537db.BlazorWebChromeClient +microsoft.aspnetcore.components.webview.maui.BlazorWebChromeClient;crc64d693e2d9159537db.BlazorWebChromeClient +Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient, Microsoft.AspNetCore.Components.WebView.Maui;crc64d693e2d9159537db.WebKitWebViewClient +Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient;crc64d693e2d9159537db.WebKitWebViewClient +microsoft.aspnetcore.components.webview.maui.WebKitWebViewClient;crc64d693e2d9159537db.WebKitWebViewClient +Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient+JavaScriptValueCallback, Microsoft.AspNetCore.Components.WebView.Maui;crc64d693e2d9159537db.WebKitWebViewClient_JavaScriptValueCallback +Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient.JavaScriptValueCallback;crc64d693e2d9159537db.WebKitWebViewClient_JavaScriptValueCallback +microsoft.aspnetcore.components.webview.maui.WebKitWebViewClient_JavaScriptValueCallback;crc64d693e2d9159537db.WebKitWebViewClient_JavaScriptValueCallback +Microsoft.Maui.Controls.TapWindowTracker+GestureListener, Microsoft.Maui.Controls;crc64f728827fec74e9c3.TapWindowTracker_GestureListener +Microsoft.Maui.Controls.TapWindowTracker.GestureListener;crc64f728827fec74e9c3.TapWindowTracker_GestureListener +microsoft.maui.controls.TapWindowTracker_GestureListener;crc64f728827fec74e9c3.TapWindowTracker_GestureListener +Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls;crc64f728827fec74e9c3.Toolbar_Container +Microsoft.Maui.Controls.Toolbar.Container;crc64f728827fec74e9c3.Toolbar_Container +microsoft.maui.controls.Toolbar_Container;crc64f728827fec74e9c3.Toolbar_Container +Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable, Microsoft.Maui.Controls;crc64338477404e88479c.ColorChangeRevealDrawable +Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable;crc64338477404e88479c.ColorChangeRevealDrawable +microsoft.maui.controls.platform.ColorChangeRevealDrawable;crc64338477404e88479c.ColorChangeRevealDrawable +Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls;crc64338477404e88479c.ControlsAccessibilityDelegate +Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate;crc64338477404e88479c.ControlsAccessibilityDelegate +microsoft.maui.controls.platform.ControlsAccessibilityDelegate;crc64338477404e88479c.ControlsAccessibilityDelegate +Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler, Microsoft.Maui.Controls;crc64338477404e88479c.DragAndDropGestureHandler +Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler;crc64338477404e88479c.DragAndDropGestureHandler +microsoft.maui.controls.platform.DragAndDropGestureHandler;crc64338477404e88479c.DragAndDropGestureHandler +Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler+CustomLocalStateData, Microsoft.Maui.Controls;crc64338477404e88479c.DragAndDropGestureHandler_CustomLocalStateData +Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler.CustomLocalStateData;crc64338477404e88479c.DragAndDropGestureHandler_CustomLocalStateData +microsoft.maui.controls.platform.DragAndDropGestureHandler_CustomLocalStateData;crc64338477404e88479c.DragAndDropGestureHandler_CustomLocalStateData +Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls;crc64338477404e88479c.ToolbarExtensions_ToolbarTitleIconImageView +Microsoft.Maui.Controls.Platform.ToolbarExtensions.ToolbarTitleIconImageView;crc64338477404e88479c.ToolbarExtensions_ToolbarTitleIconImageView +microsoft.maui.controls.platform.ToolbarExtensions_ToolbarTitleIconImageView;crc64338477404e88479c.ToolbarExtensions_ToolbarTitleIconImageView +Microsoft.Maui.Controls.Platform.FragmentContainer, Microsoft.Maui.Controls;crc64338477404e88479c.FragmentContainer +Microsoft.Maui.Controls.Platform.FragmentContainer;crc64338477404e88479c.FragmentContainer +microsoft.maui.controls.platform.FragmentContainer;crc64338477404e88479c.FragmentContainer +Microsoft.Maui.Controls.Platform.GenericAnimatorListener, Microsoft.Maui.Controls;crc64338477404e88479c.GenericAnimatorListener +Microsoft.Maui.Controls.Platform.GenericAnimatorListener;crc64338477404e88479c.GenericAnimatorListener +microsoft.maui.controls.platform.GenericAnimatorListener;crc64338477404e88479c.GenericAnimatorListener +Microsoft.Maui.Controls.Platform.GenericGlobalLayoutListener, Microsoft.Maui.Controls;crc64338477404e88479c.GenericGlobalLayoutListener +Microsoft.Maui.Controls.Platform.GenericGlobalLayoutListener;crc64338477404e88479c.GenericGlobalLayoutListener +microsoft.maui.controls.platform.GenericGlobalLayoutListener;crc64338477404e88479c.GenericGlobalLayoutListener +Microsoft.Maui.Controls.Platform.GenericMenuClickListener, Microsoft.Maui.Controls;crc64338477404e88479c.GenericMenuClickListener +Microsoft.Maui.Controls.Platform.GenericMenuClickListener;crc64338477404e88479c.GenericMenuClickListener +microsoft.maui.controls.platform.GenericMenuClickListener;crc64338477404e88479c.GenericMenuClickListener +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable, Microsoft.Maui.Controls;crc64338477404e88479c.GradientStrokeDrawable +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable;crc64338477404e88479c.GradientStrokeDrawable +microsoft.maui.controls.platform.GradientStrokeDrawable;crc64338477404e88479c.GradientStrokeDrawable +Microsoft.Maui.Controls.Platform.InnerGestureListener, Microsoft.Maui.Controls;crc64338477404e88479c.InnerGestureListener +Microsoft.Maui.Controls.Platform.InnerGestureListener;crc64338477404e88479c.InnerGestureListener +microsoft.maui.controls.platform.InnerGestureListener;crc64338477404e88479c.InnerGestureListener +Microsoft.Maui.Controls.Platform.InnerScaleListener, Microsoft.Maui.Controls;crc64338477404e88479c.InnerScaleListener +Microsoft.Maui.Controls.Platform.InnerScaleListener;crc64338477404e88479c.InnerScaleListener +microsoft.maui.controls.platform.InnerScaleListener;crc64338477404e88479c.InnerScaleListener +Microsoft.Maui.Controls.Platform.MauiViewPager, Microsoft.Maui.Controls;crc64338477404e88479c.MauiViewPager +Microsoft.Maui.Controls.Platform.MauiViewPager;crc64338477404e88479c.MauiViewPager +microsoft.maui.controls.platform.MauiViewPager;crc64338477404e88479c.MauiViewPager +Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls;crc64338477404e88479c.MultiPageFragmentStateAdapter_1 +Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1;crc64338477404e88479c.MultiPageFragmentStateAdapter_1 +microsoft.maui.controls.platform.MultiPageFragmentStateAdapter_1;crc64338477404e88479c.MultiPageFragmentStateAdapter_1 +Microsoft.Maui.Controls.Platform.PointerGestureHandler, Microsoft.Maui.Controls;crc64338477404e88479c.PointerGestureHandler +Microsoft.Maui.Controls.Platform.PointerGestureHandler;crc64338477404e88479c.PointerGestureHandler +microsoft.maui.controls.platform.PointerGestureHandler;crc64338477404e88479c.PointerGestureHandler +Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls;crc64338477404e88479c.TapAndPanGestureDetector +Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector;crc64338477404e88479c.TapAndPanGestureDetector +microsoft.maui.controls.platform.TapAndPanGestureDetector;crc64338477404e88479c.TapAndPanGestureDetector +Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment, Microsoft.Maui.Controls;crc64338477404e88479c.ModalNavigationManager_ModalFragment +Microsoft.Maui.Controls.Platform.ModalNavigationManager.ModalFragment;crc64338477404e88479c.ModalNavigationManager_ModalFragment +microsoft.maui.controls.platform.ModalNavigationManager_ModalFragment;crc64338477404e88479c.ModalNavigationManager_ModalFragment +Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog, Microsoft.Maui.Controls;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog +Microsoft.Maui.Controls.Platform.ModalNavigationManager.ModalFragment.CustomComponentDialog;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog +microsoft.maui.controls.platform.ModalNavigationManager_ModalFragment_CustomComponentDialog;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog +Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog+CallBack, Microsoft.Maui.Controls;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack +Microsoft.Maui.Controls.Platform.ModalNavigationManager.ModalFragment.CustomComponentDialog.CallBack;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack +microsoft.maui.controls.platform.ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack;crc64338477404e88479c.ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ContainerView +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView;crc640ec207abc449b2ca.ContainerView +microsoft.maui.controls.platform.compatibility.ContainerView;crc640ec207abc449b2ca.ContainerView +Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls;crc640ec207abc449b2ca.CustomFrameLayout +Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout;crc640ec207abc449b2ca.CustomFrameLayout +microsoft.maui.controls.platform.compatibility.CustomFrameLayout;crc640ec207abc449b2ca.CustomFrameLayout +Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellContentFragment +Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment;crc640ec207abc449b2ca.ShellContentFragment +microsoft.maui.controls.platform.compatibility.ShellContentFragment;crc640ec207abc449b2ca.ShellContentFragment +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutLayout +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout;crc640ec207abc449b2ca.ShellFlyoutLayout +microsoft.maui.controls.platform.compatibility.ShellFlyoutLayout;crc640ec207abc449b2ca.ShellFlyoutLayout +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter +microsoft.maui.controls.platform.compatibility.ShellFlyoutRecyclerAdapter;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ShellLinearLayout +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ShellLinearLayout;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ShellLinearLayout +microsoft.maui.controls.platform.compatibility.ShellFlyoutRecyclerAdapter_ShellLinearLayout;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ShellLinearLayout +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ElementViewHolder, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ElementViewHolder +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ElementViewHolder +microsoft.maui.controls.platform.compatibility.ShellFlyoutRecyclerAdapter_ElementViewHolder;crc640ec207abc449b2ca.ShellFlyoutRecyclerAdapter_ElementViewHolder +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer;crc640ec207abc449b2ca.ShellFlyoutRenderer +microsoft.maui.controls.platform.compatibility.ShellFlyoutRenderer;crc640ec207abc449b2ca.ShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer +microsoft.maui.controls.platform.compatibility.ShellFlyoutTemplatedContentRenderer;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer_HeaderContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer_HeaderContainer +microsoft.maui.controls.platform.compatibility.ShellFlyoutTemplatedContentRenderer_HeaderContainer;crc640ec207abc449b2ca.ShellFlyoutTemplatedContentRenderer_HeaderContainer +Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.RecyclerViewContainer +Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer;crc640ec207abc449b2ca.RecyclerViewContainer +microsoft.maui.controls.platform.compatibility.RecyclerViewContainer;crc640ec207abc449b2ca.RecyclerViewContainer +Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ScrollLayoutManager +Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager;crc640ec207abc449b2ca.ScrollLayoutManager +microsoft.maui.controls.platform.compatibility.ScrollLayoutManager;crc640ec207abc449b2ca.ScrollLayoutManager +Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFragmentContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer;crc640ec207abc449b2ca.ShellFragmentContainer +microsoft.maui.controls.platform.compatibility.ShellFragmentContainer;crc640ec207abc449b2ca.ShellFragmentContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellFragmentStateAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter;crc640ec207abc449b2ca.ShellFragmentStateAdapter +microsoft.maui.controls.platform.compatibility.ShellFragmentStateAdapter;crc640ec207abc449b2ca.ShellFragmentStateAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer;crc640ec207abc449b2ca.ShellItemRenderer +microsoft.maui.controls.platform.compatibility.ShellItemRenderer;crc640ec207abc449b2ca.ShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellItemRendererBase +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase;crc640ec207abc449b2ca.ShellItemRendererBase +microsoft.maui.controls.platform.compatibility.ShellItemRendererBase;crc640ec207abc449b2ca.ShellItemRendererBase +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellPageContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer;crc640ec207abc449b2ca.ShellPageContainer +microsoft.maui.controls.platform.compatibility.ShellPageContainer;crc640ec207abc449b2ca.ShellPageContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSearchView +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView;crc640ec207abc449b2ca.ShellSearchView +microsoft.maui.controls.platform.compatibility.ShellSearchView;crc640ec207abc449b2ca.ShellSearchView +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView+ClipDrawableWrapper, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSearchView_ClipDrawableWrapper +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.ClipDrawableWrapper;crc640ec207abc449b2ca.ShellSearchView_ClipDrawableWrapper +microsoft.maui.controls.platform.compatibility.ShellSearchView_ClipDrawableWrapper;crc640ec207abc449b2ca.ShellSearchView_ClipDrawableWrapper +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSearchViewAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter;crc640ec207abc449b2ca.ShellSearchViewAdapter +microsoft.maui.controls.platform.compatibility.ShellSearchViewAdapter;crc640ec207abc449b2ca.ShellSearchViewAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+CustomFilter, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSearchViewAdapter_CustomFilter +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.CustomFilter;crc640ec207abc449b2ca.ShellSearchViewAdapter_CustomFilter +microsoft.maui.controls.platform.compatibility.ShellSearchViewAdapter_CustomFilter;crc640ec207abc449b2ca.ShellSearchViewAdapter_CustomFilter +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+ObjectWrapper, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSearchViewAdapter_ObjectWrapper +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.ObjectWrapper;crc640ec207abc449b2ca.ShellSearchViewAdapter_ObjectWrapper +microsoft.maui.controls.platform.compatibility.ShellSearchViewAdapter_ObjectWrapper;crc640ec207abc449b2ca.ShellSearchViewAdapter_ObjectWrapper +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer;crc640ec207abc449b2ca.ShellSectionRenderer +microsoft.maui.controls.platform.compatibility.ShellSectionRenderer;crc640ec207abc449b2ca.ShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer+ViewPagerPageChanged, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellSectionRenderer_ViewPagerPageChanged +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewPagerPageChanged;crc640ec207abc449b2ca.ShellSectionRenderer_ViewPagerPageChanged +microsoft.maui.controls.platform.compatibility.ShellSectionRenderer_ViewPagerPageChanged;crc640ec207abc449b2ca.ShellSectionRenderer_ViewPagerPageChanged +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellToolbarTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker;crc640ec207abc449b2ca.ShellToolbarTracker +microsoft.maui.controls.platform.compatibility.ShellToolbarTracker;crc640ec207abc449b2ca.ShellToolbarTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker+FlyoutIconDrawerDrawable, Microsoft.Maui.Controls;crc640ec207abc449b2ca.ShellToolbarTracker_FlyoutIconDrawerDrawable +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.FlyoutIconDrawerDrawable;crc640ec207abc449b2ca.ShellToolbarTracker_FlyoutIconDrawerDrawable +microsoft.maui.controls.platform.compatibility.ShellToolbarTracker_FlyoutIconDrawerDrawable;crc640ec207abc449b2ca.ShellToolbarTracker_FlyoutIconDrawerDrawable +Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls;crc649ff77a65592e7d55.TabbedPageManager_TempView +Microsoft.Maui.Controls.Handlers.TabbedPageManager.TempView;crc649ff77a65592e7d55.TabbedPageManager_TempView +microsoft.maui.controls.handlers.TabbedPageManager_TempView;crc649ff77a65592e7d55.TabbedPageManager_TempView +Microsoft.Maui.Controls.Handlers.TabbedPageManager+Listeners, Microsoft.Maui.Controls;crc649ff77a65592e7d55.TabbedPageManager_Listeners +Microsoft.Maui.Controls.Handlers.TabbedPageManager.Listeners;crc649ff77a65592e7d55.TabbedPageManager_Listeners +microsoft.maui.controls.handlers.TabbedPageManager_Listeners;crc649ff77a65592e7d55.TabbedPageManager_Listeners +Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.CarouselViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter`2;crc645d80431ce5f73f11.CarouselViewAdapter_2 +microsoft.maui.controls.handlers.items.CarouselViewAdapter_2;crc645d80431ce5f73f11.CarouselViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter, Microsoft.Maui.Controls;crc645d80431ce5f73f11.EmptyViewAdapter +Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter;crc645d80431ce5f73f11.EmptyViewAdapter +microsoft.maui.controls.handlers.items.EmptyViewAdapter;crc645d80431ce5f73f11.EmptyViewAdapter +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.GroupableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter`2;crc645d80431ce5f73f11.GroupableItemsViewAdapter_2 +microsoft.maui.controls.handlers.items.GroupableItemsViewAdapter_2;crc645d80431ce5f73f11.GroupableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.ItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter`2;crc645d80431ce5f73f11.ItemsViewAdapter_2 +microsoft.maui.controls.handlers.items.ItemsViewAdapter_2;crc645d80431ce5f73f11.ItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.ReorderableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter`2;crc645d80431ce5f73f11.ReorderableItemsViewAdapter_2 +microsoft.maui.controls.handlers.items.ReorderableItemsViewAdapter_2;crc645d80431ce5f73f11.ReorderableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SelectableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter`2;crc645d80431ce5f73f11.SelectableItemsViewAdapter_2 +microsoft.maui.controls.handlers.items.SelectableItemsViewAdapter_2;crc645d80431ce5f73f11.SelectableItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.StructuredItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter`2;crc645d80431ce5f73f11.StructuredItemsViewAdapter_2 +microsoft.maui.controls.handlers.items.StructuredItemsViewAdapter_2;crc645d80431ce5f73f11.StructuredItemsViewAdapter_2 +Microsoft.Maui.Controls.Handlers.Items.CarouselSpacingItemDecoration, Microsoft.Maui.Controls;crc645d80431ce5f73f11.CarouselSpacingItemDecoration +Microsoft.Maui.Controls.Handlers.Items.CarouselSpacingItemDecoration;crc645d80431ce5f73f11.CarouselSpacingItemDecoration +microsoft.maui.controls.handlers.items.CarouselSpacingItemDecoration;crc645d80431ce5f73f11.CarouselSpacingItemDecoration +Microsoft.Maui.Controls.Handlers.Items.CarouselViewOnScrollListener, Microsoft.Maui.Controls;crc645d80431ce5f73f11.CarouselViewOnScrollListener +Microsoft.Maui.Controls.Handlers.Items.CarouselViewOnScrollListener;crc645d80431ce5f73f11.CarouselViewOnScrollListener +microsoft.maui.controls.handlers.items.CarouselViewOnScrollListener;crc645d80431ce5f73f11.CarouselViewOnScrollListener +Microsoft.Maui.Controls.Handlers.Items.DataChangeObserver, Microsoft.Maui.Controls;crc645d80431ce5f73f11.DataChangeObserver +Microsoft.Maui.Controls.Handlers.Items.DataChangeObserver;crc645d80431ce5f73f11.DataChangeObserver +microsoft.maui.controls.handlers.items.DataChangeObserver;crc645d80431ce5f73f11.DataChangeObserver +Microsoft.Maui.Controls.Handlers.Items.GridLayoutSpanSizeLookup, Microsoft.Maui.Controls;crc645d80431ce5f73f11.GridLayoutSpanSizeLookup +Microsoft.Maui.Controls.Handlers.Items.GridLayoutSpanSizeLookup;crc645d80431ce5f73f11.GridLayoutSpanSizeLookup +microsoft.maui.controls.handlers.items.GridLayoutSpanSizeLookup;crc645d80431ce5f73f11.GridLayoutSpanSizeLookup +Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls;crc645d80431ce5f73f11.ItemContentView +Microsoft.Maui.Controls.Handlers.Items.ItemContentView;crc645d80431ce5f73f11.ItemContentView +microsoft.maui.controls.handlers.items.ItemContentView;crc645d80431ce5f73f11.ItemContentView +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls;crc645d80431ce5f73f11.MauiCarouselRecyclerView +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView;crc645d80431ce5f73f11.MauiCarouselRecyclerView +microsoft.maui.controls.handlers.items.MauiCarouselRecyclerView;crc645d80431ce5f73f11.MauiCarouselRecyclerView +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView+CarouselViewOnGlobalLayoutListener, Microsoft.Maui.Controls;crc645d80431ce5f73f11.MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.CarouselViewOnGlobalLayoutListener;crc645d80431ce5f73f11.MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener +microsoft.maui.controls.handlers.items.MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener;crc645d80431ce5f73f11.MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener +Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls;crc645d80431ce5f73f11.MauiRecyclerView_3 +Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3;crc645d80431ce5f73f11.MauiRecyclerView_3 +microsoft.maui.controls.handlers.items.MauiRecyclerView_3;crc645d80431ce5f73f11.MauiRecyclerView_3 +Microsoft.Maui.Controls.Handlers.Items.PositionalSmoothScroller, Microsoft.Maui.Controls;crc645d80431ce5f73f11.PositionalSmoothScroller +Microsoft.Maui.Controls.Handlers.Items.PositionalSmoothScroller;crc645d80431ce5f73f11.PositionalSmoothScroller +microsoft.maui.controls.handlers.items.PositionalSmoothScroller;crc645d80431ce5f73f11.PositionalSmoothScroller +Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener`2, Microsoft.Maui.Controls;crc645d80431ce5f73f11.RecyclerViewScrollListener_2 +Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener`2;crc645d80431ce5f73f11.RecyclerViewScrollListener_2 +microsoft.maui.controls.handlers.items.RecyclerViewScrollListener_2;crc645d80431ce5f73f11.RecyclerViewScrollListener_2 +Microsoft.Maui.Controls.Handlers.Items.ScrollHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.ScrollHelper +Microsoft.Maui.Controls.Handlers.Items.ScrollHelper;crc645d80431ce5f73f11.ScrollHelper +microsoft.maui.controls.handlers.items.ScrollHelper;crc645d80431ce5f73f11.ScrollHelper +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SelectableViewHolder +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder;crc645d80431ce5f73f11.SelectableViewHolder +microsoft.maui.controls.handlers.items.SelectableViewHolder;crc645d80431ce5f73f11.SelectableViewHolder +Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SimpleItemTouchHelperCallback +Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback;crc645d80431ce5f73f11.SimpleItemTouchHelperCallback +microsoft.maui.controls.handlers.items.SimpleItemTouchHelperCallback;crc645d80431ce5f73f11.SimpleItemTouchHelperCallback +Microsoft.Maui.Controls.Handlers.Items.SimpleViewHolder, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SimpleViewHolder +Microsoft.Maui.Controls.Handlers.Items.SimpleViewHolder;crc645d80431ce5f73f11.SimpleViewHolder +microsoft.maui.controls.handlers.items.SimpleViewHolder;crc645d80431ce5f73f11.SimpleViewHolder +Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SizedItemContentView +Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView;crc645d80431ce5f73f11.SizedItemContentView +microsoft.maui.controls.handlers.items.SizedItemContentView;crc645d80431ce5f73f11.SizedItemContentView +Microsoft.Maui.Controls.Handlers.Items.CenterSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.CenterSnapHelper +Microsoft.Maui.Controls.Handlers.Items.CenterSnapHelper;crc645d80431ce5f73f11.CenterSnapHelper +microsoft.maui.controls.handlers.items.CenterSnapHelper;crc645d80431ce5f73f11.CenterSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EdgeSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.EdgeSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EdgeSnapHelper;crc645d80431ce5f73f11.EdgeSnapHelper +microsoft.maui.controls.handlers.items.EdgeSnapHelper;crc645d80431ce5f73f11.EdgeSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EndSingleSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.EndSingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EndSingleSnapHelper;crc645d80431ce5f73f11.EndSingleSnapHelper +microsoft.maui.controls.handlers.items.EndSingleSnapHelper;crc645d80431ce5f73f11.EndSingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EndSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.EndSnapHelper +Microsoft.Maui.Controls.Handlers.Items.EndSnapHelper;crc645d80431ce5f73f11.EndSnapHelper +microsoft.maui.controls.handlers.items.EndSnapHelper;crc645d80431ce5f73f11.EndSnapHelper +Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.NongreedySnapHelper +Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper;crc645d80431ce5f73f11.NongreedySnapHelper +microsoft.maui.controls.handlers.items.NongreedySnapHelper;crc645d80431ce5f73f11.NongreedySnapHelper +Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper+InitialScrollListener, Microsoft.Maui.Controls;crc645d80431ce5f73f11.NongreedySnapHelper_InitialScrollListener +Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper.InitialScrollListener;crc645d80431ce5f73f11.NongreedySnapHelper_InitialScrollListener +microsoft.maui.controls.handlers.items.NongreedySnapHelper_InitialScrollListener;crc645d80431ce5f73f11.NongreedySnapHelper_InitialScrollListener +Microsoft.Maui.Controls.Handlers.Items.SingleSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.SingleSnapHelper;crc645d80431ce5f73f11.SingleSnapHelper +microsoft.maui.controls.handlers.items.SingleSnapHelper;crc645d80431ce5f73f11.SingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.StartSingleSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.StartSingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.StartSingleSnapHelper;crc645d80431ce5f73f11.StartSingleSnapHelper +microsoft.maui.controls.handlers.items.StartSingleSnapHelper;crc645d80431ce5f73f11.StartSingleSnapHelper +Microsoft.Maui.Controls.Handlers.Items.StartSnapHelper, Microsoft.Maui.Controls;crc645d80431ce5f73f11.StartSnapHelper +Microsoft.Maui.Controls.Handlers.Items.StartSnapHelper;crc645d80431ce5f73f11.StartSnapHelper +microsoft.maui.controls.handlers.items.StartSnapHelper;crc645d80431ce5f73f11.StartSnapHelper +Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration, Microsoft.Maui.Controls;crc645d80431ce5f73f11.SpacingItemDecoration +Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration;crc645d80431ce5f73f11.SpacingItemDecoration +microsoft.maui.controls.handlers.items.SpacingItemDecoration;crc645d80431ce5f73f11.SpacingItemDecoration +Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder, Microsoft.Maui.Controls;crc645d80431ce5f73f11.TemplatedItemViewHolder +Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder;crc645d80431ce5f73f11.TemplatedItemViewHolder +microsoft.maui.controls.handlers.items.TemplatedItemViewHolder;crc645d80431ce5f73f11.TemplatedItemViewHolder +Microsoft.Maui.Controls.Handlers.Items.TextViewHolder, Microsoft.Maui.Controls;crc645d80431ce5f73f11.TextViewHolder +Microsoft.Maui.Controls.Handlers.Items.TextViewHolder;crc645d80431ce5f73f11.TextViewHolder +microsoft.maui.controls.handlers.items.TextViewHolder;crc645d80431ce5f73f11.TextViewHolder +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer;crc64e1fb321c08285b90.FrameRenderer +microsoft.maui.controls.handlers.compatibility.FrameRenderer;crc64e1fb321c08285b90.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer;crc64e1fb321c08285b90.ViewRenderer +microsoft.maui.controls.handlers.compatibility.ViewRenderer;crc64e1fb321c08285b90.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ViewRenderer_2 +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2;crc64e1fb321c08285b90.ViewRenderer_2 +microsoft.maui.controls.handlers.compatibility.ViewRenderer_2;crc64e1fb321c08285b90.ViewRenderer_2 +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls;crc64e1fb321c08285b90.VisualElementRenderer_1 +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1;crc64e1fb321c08285b90.VisualElementRenderer_1 +microsoft.maui.controls.handlers.compatibility.VisualElementRenderer_1;crc64e1fb321c08285b90.VisualElementRenderer_1 +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls;crc64e1fb321c08285b90.BaseCellView +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView;crc64e1fb321c08285b90.BaseCellView +microsoft.maui.controls.handlers.compatibility.BaseCellView;crc64e1fb321c08285b90.BaseCellView +Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter, Microsoft.Maui.Controls;crc64e1fb321c08285b90.CellAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter;crc64e1fb321c08285b90.CellAdapter +microsoft.maui.controls.handlers.compatibility.CellAdapter;crc64e1fb321c08285b90.CellAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer+RendererHolder, Microsoft.Maui.Controls;crc64e1fb321c08285b90.CellRenderer_RendererHolder +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.RendererHolder;crc64e1fb321c08285b90.CellRenderer_RendererHolder +microsoft.maui.controls.handlers.compatibility.CellRenderer_RendererHolder;crc64e1fb321c08285b90.CellRenderer_RendererHolder +Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ConditionalFocusLayout +Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout;crc64e1fb321c08285b90.ConditionalFocusLayout +microsoft.maui.controls.handlers.compatibility.ConditionalFocusLayout;crc64e1fb321c08285b90.ConditionalFocusLayout +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls;crc64e1fb321c08285b90.EntryCellEditText +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText;crc64e1fb321c08285b90.EntryCellEditText +microsoft.maui.controls.handlers.compatibility.EntryCellEditText;crc64e1fb321c08285b90.EntryCellEditText +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls;crc64e1fb321c08285b90.EntryCellView +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView;crc64e1fb321c08285b90.EntryCellView +microsoft.maui.controls.handlers.compatibility.EntryCellView;crc64e1fb321c08285b90.EntryCellView +Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter, Microsoft.Maui.Controls;crc64e1fb321c08285b90.GroupedListViewAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter;crc64e1fb321c08285b90.GroupedListViewAdapter +microsoft.maui.controls.handlers.compatibility.GroupedListViewAdapter;crc64e1fb321c08285b90.GroupedListViewAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter;crc64e1fb321c08285b90.ListViewAdapter +microsoft.maui.controls.handlers.compatibility.ListViewAdapter;crc64e1fb321c08285b90.ListViewAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer;crc64e1fb321c08285b90.ListViewRenderer +microsoft.maui.controls.handlers.compatibility.ListViewRenderer;crc64e1fb321c08285b90.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewRenderer_Container +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Container;crc64e1fb321c08285b90.ListViewRenderer_Container +microsoft.maui.controls.handlers.compatibility.ListViewRenderer_Container;crc64e1fb321c08285b90.ListViewRenderer_Container +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+SwipeRefreshLayoutWithFixedNestedScrolling, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.SwipeRefreshLayoutWithFixedNestedScrolling;crc64e1fb321c08285b90.ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling +microsoft.maui.controls.handlers.compatibility.ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling;crc64e1fb321c08285b90.ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewSwipeRefreshLayoutListener, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewRenderer_ListViewSwipeRefreshLayoutListener +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewSwipeRefreshLayoutListener;crc64e1fb321c08285b90.ListViewRenderer_ListViewSwipeRefreshLayoutListener +microsoft.maui.controls.handlers.compatibility.ListViewRenderer_ListViewSwipeRefreshLayoutListener;crc64e1fb321c08285b90.ListViewRenderer_ListViewSwipeRefreshLayoutListener +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewScrollDetector, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ListViewRenderer_ListViewScrollDetector +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewScrollDetector;crc64e1fb321c08285b90.ListViewRenderer_ListViewScrollDetector +microsoft.maui.controls.handlers.compatibility.ListViewRenderer_ListViewScrollDetector;crc64e1fb321c08285b90.ListViewRenderer_ListViewScrollDetector +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls;crc64e1fb321c08285b90.SwitchCellView +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView;crc64e1fb321c08285b90.SwitchCellView +microsoft.maui.controls.handlers.compatibility.SwitchCellView;crc64e1fb321c08285b90.SwitchCellView +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls;crc64e1fb321c08285b90.TextCellRenderer_TextCellView +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.TextCellView;crc64e1fb321c08285b90.TextCellRenderer_TextCellView +microsoft.maui.controls.handlers.compatibility.TextCellRenderer_TextCellView;crc64e1fb321c08285b90.TextCellRenderer_TextCellView +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellContainer;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer +microsoft.maui.controls.handlers.compatibility.ViewCellRenderer_ViewCellContainer;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+TapGestureListener, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_TapGestureListener +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellContainer.TapGestureListener;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_TapGestureListener +microsoft.maui.controls.handlers.compatibility.ViewCellRenderer_ViewCellContainer_TapGestureListener;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_TapGestureListener +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+LongPressGestureListener, Microsoft.Maui.Controls;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_LongPressGestureListener +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellContainer.LongPressGestureListener;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_LongPressGestureListener +microsoft.maui.controls.handlers.compatibility.ViewCellRenderer_ViewCellContainer_LongPressGestureListener;crc64e1fb321c08285b90.ViewCellRenderer_ViewCellContainer_LongPressGestureListener +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.TableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer;crc64e1fb321c08285b90.TableViewModelRenderer +microsoft.maui.controls.handlers.compatibility.TableViewModelRenderer;crc64e1fb321c08285b90.TableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls;crc64e1fb321c08285b90.TableViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer;crc64e1fb321c08285b90.TableViewRenderer +microsoft.maui.controls.handlers.compatibility.TableViewRenderer;crc64e1fb321c08285b90.TableViewRenderer +Microsoft.Maui.ImageLoaderResultCallback, Microsoft.Maui;crc6488302ad6e9e4df1a.ImageLoaderResultCallback +Microsoft.Maui.ImageLoaderResultCallback;crc6488302ad6e9e4df1a.ImageLoaderResultCallback +microsoft.maui.ImageLoaderResultCallback;crc6488302ad6e9e4df1a.ImageLoaderResultCallback +Microsoft.Maui.ImageLoaderCallback, Microsoft.Maui;crc6488302ad6e9e4df1a.ImageLoaderCallback +Microsoft.Maui.ImageLoaderCallback;crc6488302ad6e9e4df1a.ImageLoaderCallback +microsoft.maui.ImageLoaderCallback;crc6488302ad6e9e4df1a.ImageLoaderCallback +Microsoft.Maui.ImageLoaderCallbackBase`1, Microsoft.Maui;crc6488302ad6e9e4df1a.ImageLoaderCallbackBase_1 +Microsoft.Maui.ImageLoaderCallbackBase`1;crc6488302ad6e9e4df1a.ImageLoaderCallbackBase_1 +microsoft.maui.ImageLoaderCallbackBase_1;crc6488302ad6e9e4df1a.ImageLoaderCallbackBase_1 +Microsoft.Maui.MauiAppCompatActivity, Microsoft.Maui;crc6488302ad6e9e4df1a.MauiAppCompatActivity +Microsoft.Maui.MauiAppCompatActivity;crc6488302ad6e9e4df1a.MauiAppCompatActivity +microsoft.maui.MauiAppCompatActivity;crc6488302ad6e9e4df1a.MauiAppCompatActivity +Microsoft.Maui.MauiApplication, Microsoft.Maui;crc6488302ad6e9e4df1a.MauiApplication +Microsoft.Maui.MauiApplication;crc6488302ad6e9e4df1a.MauiApplication +microsoft.maui.MauiApplication;crc6488302ad6e9e4df1a.MauiApplication +Microsoft.Maui.MauiApplication+ActivityLifecycleCallbacks, Microsoft.Maui;crc6488302ad6e9e4df1a.MauiApplication_ActivityLifecycleCallbacks +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks;crc6488302ad6e9e4df1a.MauiApplication_ActivityLifecycleCallbacks +microsoft.maui.MauiApplication_ActivityLifecycleCallbacks;crc6488302ad6e9e4df1a.MauiApplication_ActivityLifecycleCallbacks +Microsoft.Maui.IImageLoaderCallback, Microsoft.Maui;com.microsoft.maui.ImageLoaderCallback +Microsoft.Maui.IImageLoaderCallback;com.microsoft.maui.ImageLoaderCallback +com.microsoft.maui.ImageLoaderCallback;com.microsoft.maui.ImageLoaderCallback +Microsoft.Maui.IPlatformShadowDrawable, Microsoft.Maui;com.microsoft.maui.PlatformShadowDrawable +Microsoft.Maui.IPlatformShadowDrawable;com.microsoft.maui.PlatformShadowDrawable +com.microsoft.maui.PlatformShadowDrawable;com.microsoft.maui.PlatformShadowDrawable +Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui;crc6452ffdc5b34af3a0f.AccessibilityDelegateCompatWrapper +Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper;crc6452ffdc5b34af3a0f.AccessibilityDelegateCompatWrapper +microsoft.maui.platform.AccessibilityDelegateCompatWrapper;crc6452ffdc5b34af3a0f.AccessibilityDelegateCompatWrapper +Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui;crc6452ffdc5b34af3a0f.BorderDrawable +Microsoft.Maui.Platform.BorderDrawable;crc6452ffdc5b34af3a0f.BorderDrawable +microsoft.maui.platform.BorderDrawable;crc6452ffdc5b34af3a0f.BorderDrawable +Microsoft.Maui.Platform.ContainerView, Microsoft.Maui;crc6452ffdc5b34af3a0f.ContainerView +Microsoft.Maui.Platform.ContainerView;crc6452ffdc5b34af3a0f.ContainerView +microsoft.maui.platform.ContainerView;crc6452ffdc5b34af3a0f.ContainerView +Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui;crc6452ffdc5b34af3a0f.ContentViewGroup +Microsoft.Maui.Platform.ContentViewGroup;crc6452ffdc5b34af3a0f.ContentViewGroup +microsoft.maui.platform.ContentViewGroup;crc6452ffdc5b34af3a0f.ContentViewGroup +Microsoft.Maui.Platform.FragmentManagerExtensions+CallBacks, Microsoft.Maui;crc6452ffdc5b34af3a0f.FragmentManagerExtensions_CallBacks +Microsoft.Maui.Platform.FragmentManagerExtensions.CallBacks;crc6452ffdc5b34af3a0f.FragmentManagerExtensions_CallBacks +microsoft.maui.platform.FragmentManagerExtensions_CallBacks;crc6452ffdc5b34af3a0f.FragmentManagerExtensions_CallBacks +Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui;crc6452ffdc5b34af3a0f.LayoutViewGroup +Microsoft.Maui.Platform.LayoutViewGroup;crc6452ffdc5b34af3a0f.LayoutViewGroup +microsoft.maui.platform.LayoutViewGroup;crc6452ffdc5b34af3a0f.LayoutViewGroup +Microsoft.Maui.Platform.LocalizedDigitsKeyListener, Microsoft.Maui;crc6452ffdc5b34af3a0f.LocalizedDigitsKeyListener +Microsoft.Maui.Platform.LocalizedDigitsKeyListener;crc6452ffdc5b34af3a0f.LocalizedDigitsKeyListener +microsoft.maui.platform.LocalizedDigitsKeyListener;crc6452ffdc5b34af3a0f.LocalizedDigitsKeyListener +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiAccessibilityDelegateCompat +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat;crc6452ffdc5b34af3a0f.MauiAccessibilityDelegateCompat +microsoft.maui.platform.MauiAccessibilityDelegateCompat;crc6452ffdc5b34af3a0f.MauiAccessibilityDelegateCompat +Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiAppCompatEditText +Microsoft.Maui.Platform.MauiAppCompatEditText;crc6452ffdc5b34af3a0f.MauiAppCompatEditText +microsoft.maui.platform.MauiAppCompatEditText;crc6452ffdc5b34af3a0f.MauiAppCompatEditText +Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiBoxView +Microsoft.Maui.Platform.MauiBoxView;crc6452ffdc5b34af3a0f.MauiBoxView +microsoft.maui.platform.MauiBoxView;crc6452ffdc5b34af3a0f.MauiBoxView +Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiDatePicker +Microsoft.Maui.Platform.MauiDatePicker;crc6452ffdc5b34af3a0f.MauiDatePicker +microsoft.maui.platform.MauiDatePicker;crc6452ffdc5b34af3a0f.MauiDatePicker +Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiHybridWebView +Microsoft.Maui.Platform.MauiHybridWebView;crc6452ffdc5b34af3a0f.MauiHybridWebView +microsoft.maui.platform.MauiHybridWebView;crc6452ffdc5b34af3a0f.MauiHybridWebView +Microsoft.Maui.Platform.MauiHybridWebViewClient, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiHybridWebViewClient +Microsoft.Maui.Platform.MauiHybridWebViewClient;crc6452ffdc5b34af3a0f.MauiHybridWebViewClient +microsoft.maui.platform.MauiHybridWebViewClient;crc6452ffdc5b34af3a0f.MauiHybridWebViewClient +Microsoft.Maui.Platform.MauiLayerDrawable, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiLayerDrawable +Microsoft.Maui.Platform.MauiLayerDrawable;crc6452ffdc5b34af3a0f.MauiLayerDrawable +microsoft.maui.platform.MauiLayerDrawable;crc6452ffdc5b34af3a0f.MauiLayerDrawable +Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiMaterialButton +Microsoft.Maui.Platform.MauiMaterialButton;crc6452ffdc5b34af3a0f.MauiMaterialButton +microsoft.maui.platform.MauiMaterialButton;crc6452ffdc5b34af3a0f.MauiMaterialButton +Microsoft.Maui.Platform.MauiMaterialButton+MauiResizableDrawable, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiMaterialButton_MauiResizableDrawable +Microsoft.Maui.Platform.MauiMaterialButton.MauiResizableDrawable;crc6452ffdc5b34af3a0f.MauiMaterialButton_MauiResizableDrawable +microsoft.maui.platform.MauiMaterialButton_MauiResizableDrawable;crc6452ffdc5b34af3a0f.MauiMaterialButton_MauiResizableDrawable +Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl;crc6452ffdc5b34af3a0f.MauiPageControl +microsoft.maui.platform.MauiPageControl;crc6452ffdc5b34af3a0f.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl+TEditClickListener, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiPageControl_TEditClickListener +Microsoft.Maui.Platform.MauiPageControl.TEditClickListener;crc6452ffdc5b34af3a0f.MauiPageControl_TEditClickListener +microsoft.maui.platform.MauiPageControl_TEditClickListener;crc6452ffdc5b34af3a0f.MauiPageControl_TEditClickListener +Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiPicker +Microsoft.Maui.Platform.MauiPicker;crc6452ffdc5b34af3a0f.MauiPicker +microsoft.maui.platform.MauiPicker;crc6452ffdc5b34af3a0f.MauiPicker +Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiPickerBase +Microsoft.Maui.Platform.MauiPickerBase;crc6452ffdc5b34af3a0f.MauiPickerBase +microsoft.maui.platform.MauiPickerBase;crc6452ffdc5b34af3a0f.MauiPickerBase +Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiScrollView +Microsoft.Maui.Platform.MauiScrollView;crc6452ffdc5b34af3a0f.MauiScrollView +microsoft.maui.platform.MauiScrollView;crc6452ffdc5b34af3a0f.MauiScrollView +Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiHorizontalScrollView +Microsoft.Maui.Platform.MauiHorizontalScrollView;crc6452ffdc5b34af3a0f.MauiHorizontalScrollView +microsoft.maui.platform.MauiHorizontalScrollView;crc6452ffdc5b34af3a0f.MauiHorizontalScrollView +Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiSearchView +Microsoft.Maui.Platform.MauiSearchView;crc6452ffdc5b34af3a0f.MauiSearchView +microsoft.maui.platform.MauiSearchView;crc6452ffdc5b34af3a0f.MauiSearchView +Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiShapeableImageView +Microsoft.Maui.Platform.MauiShapeableImageView;crc6452ffdc5b34af3a0f.MauiShapeableImageView +microsoft.maui.platform.MauiShapeableImageView;crc6452ffdc5b34af3a0f.MauiShapeableImageView +Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiShapeView +Microsoft.Maui.Platform.MauiShapeView;crc6452ffdc5b34af3a0f.MauiShapeView +microsoft.maui.platform.MauiShapeView;crc6452ffdc5b34af3a0f.MauiShapeView +Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiStepper +Microsoft.Maui.Platform.MauiStepper;crc6452ffdc5b34af3a0f.MauiStepper +microsoft.maui.platform.MauiStepper;crc6452ffdc5b34af3a0f.MauiStepper +Microsoft.Maui.Platform.MauiSwipeRefreshLayout, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiSwipeRefreshLayout +Microsoft.Maui.Platform.MauiSwipeRefreshLayout;crc6452ffdc5b34af3a0f.MauiSwipeRefreshLayout +microsoft.maui.platform.MauiSwipeRefreshLayout;crc6452ffdc5b34af3a0f.MauiSwipeRefreshLayout +Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiSwipeView +Microsoft.Maui.Platform.MauiSwipeView;crc6452ffdc5b34af3a0f.MauiSwipeView +microsoft.maui.platform.MauiSwipeView;crc6452ffdc5b34af3a0f.MauiSwipeView +Microsoft.Maui.Platform.MauiTextView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiTextView +Microsoft.Maui.Platform.MauiTextView;crc6452ffdc5b34af3a0f.MauiTextView +microsoft.maui.platform.MauiTextView;crc6452ffdc5b34af3a0f.MauiTextView +Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiTimePicker +Microsoft.Maui.Platform.MauiTimePicker;crc6452ffdc5b34af3a0f.MauiTimePicker +microsoft.maui.platform.MauiTimePicker;crc6452ffdc5b34af3a0f.MauiTimePicker +Microsoft.Maui.Platform.MauiWebChromeClient, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiWebChromeClient +Microsoft.Maui.Platform.MauiWebChromeClient;crc6452ffdc5b34af3a0f.MauiWebChromeClient +microsoft.maui.platform.MauiWebChromeClient;crc6452ffdc5b34af3a0f.MauiWebChromeClient +Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiWebView +Microsoft.Maui.Platform.MauiWebView;crc6452ffdc5b34af3a0f.MauiWebView +microsoft.maui.platform.MauiWebView;crc6452ffdc5b34af3a0f.MauiWebView +Microsoft.Maui.Platform.MauiWebViewClient, Microsoft.Maui;crc6452ffdc5b34af3a0f.MauiWebViewClient +Microsoft.Maui.Platform.MauiWebViewClient;crc6452ffdc5b34af3a0f.MauiWebViewClient +microsoft.maui.platform.MauiWebViewClient;crc6452ffdc5b34af3a0f.MauiWebViewClient +Microsoft.Maui.Platform.MauiNavHostFragment, Microsoft.Maui;microsoft.maui.platform.MauiNavHostFragment +Microsoft.Maui.Platform.MauiNavHostFragment;microsoft.maui.platform.MauiNavHostFragment +microsoft.maui.platform.MauiNavHostFragment;microsoft.maui.platform.MauiNavHostFragment +Microsoft.Maui.Platform.NavigationRootManager+ElementBasedFragment, Microsoft.Maui;crc6452ffdc5b34af3a0f.NavigationRootManager_ElementBasedFragment +Microsoft.Maui.Platform.NavigationRootManager.ElementBasedFragment;crc6452ffdc5b34af3a0f.NavigationRootManager_ElementBasedFragment +microsoft.maui.platform.NavigationRootManager_ElementBasedFragment;crc6452ffdc5b34af3a0f.NavigationRootManager_ElementBasedFragment +Microsoft.Maui.Platform.NavigationViewFragment, Microsoft.Maui;crc6452ffdc5b34af3a0f.NavigationViewFragment +Microsoft.Maui.Platform.NavigationViewFragment;crc6452ffdc5b34af3a0f.NavigationViewFragment +microsoft.maui.platform.NavigationViewFragment;crc6452ffdc5b34af3a0f.NavigationViewFragment +Microsoft.Maui.Platform.ScopedFragment, Microsoft.Maui;crc6452ffdc5b34af3a0f.ScopedFragment +Microsoft.Maui.Platform.ScopedFragment;crc6452ffdc5b34af3a0f.ScopedFragment +microsoft.maui.platform.ScopedFragment;crc6452ffdc5b34af3a0f.ScopedFragment +Microsoft.Maui.Platform.StackNavigationManager+Callbacks, Microsoft.Maui;crc6452ffdc5b34af3a0f.StackNavigationManager_Callbacks +Microsoft.Maui.Platform.StackNavigationManager.Callbacks;crc6452ffdc5b34af3a0f.StackNavigationManager_Callbacks +microsoft.maui.platform.StackNavigationManager_Callbacks;crc6452ffdc5b34af3a0f.StackNavigationManager_Callbacks +Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui;crc6452ffdc5b34af3a0f.ViewFragment +Microsoft.Maui.Platform.ViewFragment;crc6452ffdc5b34af3a0f.ViewFragment +microsoft.maui.platform.ViewFragment;crc6452ffdc5b34af3a0f.ViewFragment +Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui;crc6452ffdc5b34af3a0f.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView;crc6452ffdc5b34af3a0f.PlatformTouchGraphicsView +microsoft.maui.platform.PlatformTouchGraphicsView;crc6452ffdc5b34af3a0f.PlatformTouchGraphicsView +Microsoft.Maui.Platform.StepperHandlerHolder, Microsoft.Maui;crc6452ffdc5b34af3a0f.StepperHandlerHolder +Microsoft.Maui.Platform.StepperHandlerHolder;crc6452ffdc5b34af3a0f.StepperHandlerHolder +microsoft.maui.platform.StepperHandlerHolder;crc6452ffdc5b34af3a0f.StepperHandlerHolder +Microsoft.Maui.Platform.StepperHandlerManager+StepperListener, Microsoft.Maui;crc6452ffdc5b34af3a0f.StepperHandlerManager_StepperListener +Microsoft.Maui.Platform.StepperHandlerManager.StepperListener;crc6452ffdc5b34af3a0f.StepperHandlerManager_StepperListener +microsoft.maui.platform.StepperHandlerManager_StepperListener;crc6452ffdc5b34af3a0f.StepperHandlerManager_StepperListener +Microsoft.Maui.Platform.SwipeViewPager, Microsoft.Maui;crc6452ffdc5b34af3a0f.SwipeViewPager +Microsoft.Maui.Platform.SwipeViewPager;crc6452ffdc5b34af3a0f.SwipeViewPager +microsoft.maui.platform.SwipeViewPager;crc6452ffdc5b34af3a0f.SwipeViewPager +Microsoft.Maui.Platform.WebViewExtensions+JavascriptResult, Microsoft.Maui;crc6452ffdc5b34af3a0f.WebViewExtensions_JavascriptResult +Microsoft.Maui.Platform.WebViewExtensions.JavascriptResult;crc6452ffdc5b34af3a0f.WebViewExtensions_JavascriptResult +microsoft.maui.platform.WebViewExtensions_JavascriptResult;crc6452ffdc5b34af3a0f.WebViewExtensions_JavascriptResult +Microsoft.Maui.Platform.WrapperView, Microsoft.Maui;crc6452ffdc5b34af3a0f.WrapperView +Microsoft.Maui.Platform.WrapperView;crc6452ffdc5b34af3a0f.WrapperView +microsoft.maui.platform.WrapperView;crc6452ffdc5b34af3a0f.WrapperView +Microsoft.Maui.Handlers.ButtonHandler+ButtonClickListener, Microsoft.Maui;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonClickListener +Microsoft.Maui.Handlers.ButtonHandler.ButtonClickListener;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonClickListener +microsoft.maui.handlers.ButtonHandler_ButtonClickListener;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonClickListener +Microsoft.Maui.Handlers.ButtonHandler+ButtonTouchListener, Microsoft.Maui;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonTouchListener +Microsoft.Maui.Handlers.ButtonHandler.ButtonTouchListener;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonTouchListener +microsoft.maui.handlers.ButtonHandler_ButtonTouchListener;crc64fcf28c0e24b4cc31.ButtonHandler_ButtonTouchListener +Microsoft.Maui.Handlers.HybridWebViewHandler+HybridWebViewJavaScriptInterface, Microsoft.Maui;crc64fcf28c0e24b4cc31.HybridWebViewHandler_HybridWebViewJavaScriptInterface +Microsoft.Maui.Handlers.HybridWebViewHandler.HybridWebViewJavaScriptInterface;crc64fcf28c0e24b4cc31.HybridWebViewHandler_HybridWebViewJavaScriptInterface +microsoft.maui.handlers.HybridWebViewHandler_HybridWebViewJavaScriptInterface;crc64fcf28c0e24b4cc31.HybridWebViewHandler_HybridWebViewJavaScriptInterface +Microsoft.Maui.Handlers.SearchBarHandler+FocusChangeListener, Microsoft.Maui;crc64fcf28c0e24b4cc31.SearchBarHandler_FocusChangeListener +Microsoft.Maui.Handlers.SearchBarHandler.FocusChangeListener;crc64fcf28c0e24b4cc31.SearchBarHandler_FocusChangeListener +microsoft.maui.handlers.SearchBarHandler_FocusChangeListener;crc64fcf28c0e24b4cc31.SearchBarHandler_FocusChangeListener +Microsoft.Maui.Handlers.SliderHandler+SeekBarChangeListener, Microsoft.Maui;crc64fcf28c0e24b4cc31.SliderHandler_SeekBarChangeListener +Microsoft.Maui.Handlers.SliderHandler.SeekBarChangeListener;crc64fcf28c0e24b4cc31.SliderHandler_SeekBarChangeListener +microsoft.maui.handlers.SliderHandler_SeekBarChangeListener;crc64fcf28c0e24b4cc31.SliderHandler_SeekBarChangeListener +Microsoft.Maui.Handlers.SwitchHandler+CheckedChangeListener, Microsoft.Maui;crc64fcf28c0e24b4cc31.SwitchHandler_CheckedChangeListener +Microsoft.Maui.Handlers.SwitchHandler.CheckedChangeListener;crc64fcf28c0e24b4cc31.SwitchHandler_CheckedChangeListener +microsoft.maui.handlers.SwitchHandler_CheckedChangeListener;crc64fcf28c0e24b4cc31.SwitchHandler_CheckedChangeListener +Microsoft.Maui.Handlers.ToolbarHandler+ProcessBackClick, Microsoft.Maui;crc64fcf28c0e24b4cc31.ToolbarHandler_ProcessBackClick +Microsoft.Maui.Handlers.ToolbarHandler.ProcessBackClick;crc64fcf28c0e24b4cc31.ToolbarHandler_ProcessBackClick +microsoft.maui.handlers.ToolbarHandler_ProcessBackClick;crc64fcf28c0e24b4cc31.ToolbarHandler_ProcessBackClick +Microsoft.Maui.Graphics.LinearGradientShaderFactory, Microsoft.Maui;crc64b5e713d400f589b7.LinearGradientShaderFactory +Microsoft.Maui.Graphics.LinearGradientShaderFactory;crc64b5e713d400f589b7.LinearGradientShaderFactory +microsoft.maui.graphics.LinearGradientShaderFactory;crc64b5e713d400f589b7.LinearGradientShaderFactory +Microsoft.Maui.Graphics.RadialGradientShaderFactory, Microsoft.Maui;crc64b5e713d400f589b7.RadialGradientShaderFactory +Microsoft.Maui.Graphics.RadialGradientShaderFactory;crc64b5e713d400f589b7.RadialGradientShaderFactory +microsoft.maui.graphics.RadialGradientShaderFactory;crc64b5e713d400f589b7.RadialGradientShaderFactory +Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui;crc64b5e713d400f589b7.MauiDrawable +Microsoft.Maui.Graphics.MauiDrawable;crc64b5e713d400f589b7.MauiDrawable +microsoft.maui.graphics.MauiDrawable;crc64b5e713d400f589b7.MauiDrawable +Microsoft.Maui.Animations.PlatformTicker+DurationScaleListener, Microsoft.Maui;crc64a096dc44ad241142.PlatformTicker_DurationScaleListener +Microsoft.Maui.Animations.PlatformTicker.DurationScaleListener;crc64a096dc44ad241142.PlatformTicker_DurationScaleListener +microsoft.maui.animations.PlatformTicker_DurationScaleListener;crc64a096dc44ad241142.PlatformTicker_DurationScaleListener +Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity, Microsoft.Maui.Essentials;crc6468b6408a11370c2f.WebAuthenticatorCallbackActivity +Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity;crc6468b6408a11370c2f.WebAuthenticatorCallbackActivity +microsoft.maui.authentication.WebAuthenticatorCallbackActivity;crc6468b6408a11370c2f.WebAuthenticatorCallbackActivity +Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials;crc6468b6408a11370c2f.WebAuthenticatorIntermediateActivity +Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity;crc6468b6408a11370c2f.WebAuthenticatorIntermediateActivity +microsoft.maui.authentication.WebAuthenticatorIntermediateActivity;crc6468b6408a11370c2f.WebAuthenticatorIntermediateActivity +Microsoft.Maui.Media.TextToSpeechInternalImplementation, Microsoft.Maui.Essentials;crc6493855b22b6fa0721.TextToSpeechInternalImplementation +Microsoft.Maui.Media.TextToSpeechInternalImplementation;crc6493855b22b6fa0721.TextToSpeechInternalImplementation +microsoft.maui.media.TextToSpeechInternalImplementation;crc6493855b22b6fa0721.TextToSpeechInternalImplementation +Microsoft.Maui.Storage.FileProvider, Microsoft.Maui.Essentials;microsoft.maui.essentials.fileProvider +Microsoft.Maui.Storage.FileProvider;microsoft.maui.essentials.fileProvider +microsoft.maui.essentials.fileProvider;microsoft.maui.essentials.fileProvider +Microsoft.Maui.Networking.ConnectivityImplementation+EssentialsNetworkCallback, Microsoft.Maui.Essentials;crc64e53d2f592022988e.ConnectivityImplementation_EssentialsNetworkCallback +Microsoft.Maui.Networking.ConnectivityImplementation.EssentialsNetworkCallback;crc64e53d2f592022988e.ConnectivityImplementation_EssentialsNetworkCallback +microsoft.maui.networking.ConnectivityImplementation_EssentialsNetworkCallback;crc64e53d2f592022988e.ConnectivityImplementation_EssentialsNetworkCallback +Microsoft.Maui.Networking.ConnectivityBroadcastReceiver, Microsoft.Maui.Essentials;crc64e53d2f592022988e.ConnectivityBroadcastReceiver +Microsoft.Maui.Networking.ConnectivityBroadcastReceiver;crc64e53d2f592022988e.ConnectivityBroadcastReceiver +microsoft.maui.networking.ConnectivityBroadcastReceiver;crc64e53d2f592022988e.ConnectivityBroadcastReceiver +Microsoft.Maui.ApplicationModel.ActivityLifecycleContextListener, Microsoft.Maui.Essentials;crc64ba438d8f48cf7e75.ActivityLifecycleContextListener +Microsoft.Maui.ApplicationModel.ActivityLifecycleContextListener;crc64ba438d8f48cf7e75.ActivityLifecycleContextListener +microsoft.maui.applicationmodel.ActivityLifecycleContextListener;crc64ba438d8f48cf7e75.ActivityLifecycleContextListener +Microsoft.Maui.ApplicationModel.IntermediateActivity, Microsoft.Maui.Essentials;crc64ba438d8f48cf7e75.IntermediateActivity +Microsoft.Maui.ApplicationModel.IntermediateActivity;crc64ba438d8f48cf7e75.IntermediateActivity +microsoft.maui.applicationmodel.IntermediateActivity;crc64ba438d8f48cf7e75.IntermediateActivity +Microsoft.Maui.ApplicationModel.DataTransfer.ClipboardChangeListener, Microsoft.Maui.Essentials;crc640a1f4d108c17e3f1.ClipboardChangeListener +Microsoft.Maui.ApplicationModel.DataTransfer.ClipboardChangeListener;crc640a1f4d108c17e3f1.ClipboardChangeListener +microsoft.maui.applicationmodel.datatransfer.ClipboardChangeListener;crc640a1f4d108c17e3f1.ClipboardChangeListener +Microsoft.Maui.Devices.DeviceDisplayImplementation+Listener, Microsoft.Maui.Essentials;crc640a8d9a12ddbf2cf2.DeviceDisplayImplementation_Listener +Microsoft.Maui.Devices.DeviceDisplayImplementation.Listener;crc640a8d9a12ddbf2cf2.DeviceDisplayImplementation_Listener +microsoft.maui.devices.DeviceDisplayImplementation_Listener;crc640a8d9a12ddbf2cf2.DeviceDisplayImplementation_Listener +Microsoft.Maui.Devices.BatteryBroadcastReceiver, Microsoft.Maui.Essentials;crc640a8d9a12ddbf2cf2.BatteryBroadcastReceiver +Microsoft.Maui.Devices.BatteryBroadcastReceiver;crc640a8d9a12ddbf2cf2.BatteryBroadcastReceiver +microsoft.maui.devices.BatteryBroadcastReceiver;crc640a8d9a12ddbf2cf2.BatteryBroadcastReceiver +Microsoft.Maui.Devices.EnergySaverBroadcastReceiver, Microsoft.Maui.Essentials;crc640a8d9a12ddbf2cf2.EnergySaverBroadcastReceiver +Microsoft.Maui.Devices.EnergySaverBroadcastReceiver;crc640a8d9a12ddbf2cf2.EnergySaverBroadcastReceiver +microsoft.maui.devices.EnergySaverBroadcastReceiver;crc640a8d9a12ddbf2cf2.EnergySaverBroadcastReceiver +Microsoft.Maui.Devices.Sensors.AccelerometerListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.AccelerometerListener +Microsoft.Maui.Devices.Sensors.AccelerometerListener;crc64f62664462a8937a9.AccelerometerListener +microsoft.maui.devices.sensors.AccelerometerListener;crc64f62664462a8937a9.AccelerometerListener +Microsoft.Maui.Devices.Sensors.BarometerListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.BarometerListener +Microsoft.Maui.Devices.Sensors.BarometerListener;crc64f62664462a8937a9.BarometerListener +microsoft.maui.devices.sensors.BarometerListener;crc64f62664462a8937a9.BarometerListener +Microsoft.Maui.Devices.Sensors.SensorListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.SensorListener +Microsoft.Maui.Devices.Sensors.SensorListener;crc64f62664462a8937a9.SensorListener +microsoft.maui.devices.sensors.SensorListener;crc64f62664462a8937a9.SensorListener +Microsoft.Maui.Devices.Sensors.SingleLocationListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.SingleLocationListener +Microsoft.Maui.Devices.Sensors.SingleLocationListener;crc64f62664462a8937a9.SingleLocationListener +microsoft.maui.devices.sensors.SingleLocationListener;crc64f62664462a8937a9.SingleLocationListener +Microsoft.Maui.Devices.Sensors.ContinuousLocationListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.ContinuousLocationListener +Microsoft.Maui.Devices.Sensors.ContinuousLocationListener;crc64f62664462a8937a9.ContinuousLocationListener +microsoft.maui.devices.sensors.ContinuousLocationListener;crc64f62664462a8937a9.ContinuousLocationListener +Microsoft.Maui.Devices.Sensors.GyroscopeListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.GyroscopeListener +Microsoft.Maui.Devices.Sensors.GyroscopeListener;crc64f62664462a8937a9.GyroscopeListener +microsoft.maui.devices.sensors.GyroscopeListener;crc64f62664462a8937a9.GyroscopeListener +Microsoft.Maui.Devices.Sensors.MagnetometerListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.MagnetometerListener +Microsoft.Maui.Devices.Sensors.MagnetometerListener;crc64f62664462a8937a9.MagnetometerListener +microsoft.maui.devices.sensors.MagnetometerListener;crc64f62664462a8937a9.MagnetometerListener +Microsoft.Maui.Devices.Sensors.OrientationSensorListener, Microsoft.Maui.Essentials;crc64f62664462a8937a9.OrientationSensorListener +Microsoft.Maui.Devices.Sensors.OrientationSensorListener;crc64f62664462a8937a9.OrientationSensorListener +microsoft.maui.devices.sensors.OrientationSensorListener;crc64f62664462a8937a9.OrientationSensorListener +Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics;crc643f2b18b2570eaa5a.PlatformGraphicsView +Microsoft.Maui.Graphics.Platform.PlatformGraphicsView;crc643f2b18b2570eaa5a.PlatformGraphicsView +microsoft.maui.graphics.platform.PlatformGraphicsView;crc643f2b18b2570eaa5a.PlatformGraphicsView +Bumptech.Glide.Glide+IRequestOptionsFactory, Xamarin.Android.Glide;com.bumptech.glide.Glide$RequestOptionsFactory +Bumptech.Glide.Glide.IRequestOptionsFactory;com.bumptech.glide.Glide$RequestOptionsFactory +com.bumptech.glide.Glide$RequestOptionsFactory;com.bumptech.glide.Glide$RequestOptionsFactory +Bumptech.Glide.ListPreloader+IPreloadModelProvider, Xamarin.Android.Glide;com.bumptech.glide.ListPreloader$PreloadModelProvider +Bumptech.Glide.ListPreloader.IPreloadModelProvider;com.bumptech.glide.ListPreloader$PreloadModelProvider +com.bumptech.glide.ListPreloader$PreloadModelProvider;com.bumptech.glide.ListPreloader$PreloadModelProvider +Bumptech.Glide.ListPreloader+IPreloadSizeProvider, Xamarin.Android.Glide;com.bumptech.glide.ListPreloader$PreloadSizeProvider +Bumptech.Glide.ListPreloader.IPreloadSizeProvider;com.bumptech.glide.ListPreloader$PreloadSizeProvider +com.bumptech.glide.ListPreloader$PreloadSizeProvider;com.bumptech.glide.ListPreloader$PreloadSizeProvider +Bumptech.Glide.Util.GlideSuppliers+IGlideSupplier, Xamarin.Android.Glide;com.bumptech.glide.util.GlideSuppliers$GlideSupplier +Bumptech.Glide.Util.GlideSuppliers.IGlideSupplier;com.bumptech.glide.util.GlideSuppliers$GlideSupplier +com.bumptech.glide.util.GlideSuppliers$GlideSupplier;com.bumptech.glide.util.GlideSuppliers$GlideSupplier +Bumptech.Glide.Util.ISynthetic, Xamarin.Android.Glide;com.bumptech.glide.util.Synthetic +Bumptech.Glide.Util.ISynthetic;com.bumptech.glide.util.Synthetic +com.bumptech.glide.util.Synthetic;com.bumptech.glide.util.Synthetic +Bumptech.Glide.Util.Pool.FactoryPools+IFactory, Xamarin.Android.Glide;com.bumptech.glide.util.pool.FactoryPools$Factory +Bumptech.Glide.Util.Pool.FactoryPools.IFactory;com.bumptech.glide.util.pool.FactoryPools$Factory +com.bumptech.glide.util.pool.FactoryPools$Factory;com.bumptech.glide.util.pool.FactoryPools$Factory +Bumptech.Glide.Util.Pool.FactoryPools+IPoolable, Xamarin.Android.Glide;com.bumptech.glide.util.pool.FactoryPools$Poolable +Bumptech.Glide.Util.Pool.FactoryPools.IPoolable;com.bumptech.glide.util.pool.FactoryPools$Poolable +com.bumptech.glide.util.pool.FactoryPools$Poolable;com.bumptech.glide.util.pool.FactoryPools$Poolable +Bumptech.Glide.Util.Pool.FactoryPools+IResetter, Xamarin.Android.Glide;com.bumptech.glide.util.pool.FactoryPools$Resetter +Bumptech.Glide.Util.Pool.FactoryPools.IResetter;com.bumptech.glide.util.pool.FactoryPools$Resetter +com.bumptech.glide.util.pool.FactoryPools$Resetter;com.bumptech.glide.util.pool.FactoryPools$Resetter +Bumptech.Glide.Module.IAppliesOptions, Xamarin.Android.Glide;com.bumptech.glide.module.AppliesOptions +Bumptech.Glide.Module.IAppliesOptions;com.bumptech.glide.module.AppliesOptions +com.bumptech.glide.module.AppliesOptions;com.bumptech.glide.module.AppliesOptions +Bumptech.Glide.Module.IGlideModule, Xamarin.Android.Glide;com.bumptech.glide.module.GlideModule +Bumptech.Glide.Module.IGlideModule;com.bumptech.glide.module.GlideModule +com.bumptech.glide.module.GlideModule;com.bumptech.glide.module.GlideModule +Bumptech.Glide.Module.IRegistersComponents, Xamarin.Android.Glide;com.bumptech.glide.module.RegistersComponents +Bumptech.Glide.Module.IRegistersComponents;com.bumptech.glide.module.RegistersComponents +com.bumptech.glide.module.RegistersComponents;com.bumptech.glide.module.RegistersComponents +Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListener, Xamarin.Android.Glide;com.bumptech.glide.manager.ConnectivityMonitor$ConnectivityListener +Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListener;com.bumptech.glide.manager.ConnectivityMonitor$ConnectivityListener +com.bumptech.glide.manager.ConnectivityMonitor$ConnectivityListener;com.bumptech.glide.manager.ConnectivityMonitor$ConnectivityListener +Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerImplementor, Xamarin.Android.Glide;mono.com.bumptech.glide.manager.ConnectivityMonitor_ConnectivityListenerImplementor +Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerImplementor;mono.com.bumptech.glide.manager.ConnectivityMonitor_ConnectivityListenerImplementor +mono.com.bumptech.glide.manager.ConnectivityMonitor_ConnectivityListenerImplementor;mono.com.bumptech.glide.manager.ConnectivityMonitor_ConnectivityListenerImplementor +Bumptech.Glide.Manager.IConnectivityMonitor, Xamarin.Android.Glide;com.bumptech.glide.manager.ConnectivityMonitor +Bumptech.Glide.Manager.IConnectivityMonitor;com.bumptech.glide.manager.ConnectivityMonitor +com.bumptech.glide.manager.ConnectivityMonitor;com.bumptech.glide.manager.ConnectivityMonitor +Bumptech.Glide.Manager.IConnectivityMonitorFactory, Xamarin.Android.Glide;com.bumptech.glide.manager.ConnectivityMonitorFactory +Bumptech.Glide.Manager.IConnectivityMonitorFactory;com.bumptech.glide.manager.ConnectivityMonitorFactory +com.bumptech.glide.manager.ConnectivityMonitorFactory;com.bumptech.glide.manager.ConnectivityMonitorFactory +Bumptech.Glide.Manager.ILifecycle, Xamarin.Android.Glide;com.bumptech.glide.manager.Lifecycle +Bumptech.Glide.Manager.ILifecycle;com.bumptech.glide.manager.Lifecycle +com.bumptech.glide.manager.Lifecycle;com.bumptech.glide.manager.Lifecycle +Bumptech.Glide.Manager.ILifecycleListener, Xamarin.Android.Glide;com.bumptech.glide.manager.LifecycleListener +Bumptech.Glide.Manager.ILifecycleListener;com.bumptech.glide.manager.LifecycleListener +com.bumptech.glide.manager.LifecycleListener;com.bumptech.glide.manager.LifecycleListener +Bumptech.Glide.Manager.ILifecycleListenerImplementor, Xamarin.Android.Glide;mono.com.bumptech.glide.manager.LifecycleListenerImplementor +Bumptech.Glide.Manager.ILifecycleListenerImplementor;mono.com.bumptech.glide.manager.LifecycleListenerImplementor +mono.com.bumptech.glide.manager.LifecycleListenerImplementor;mono.com.bumptech.glide.manager.LifecycleListenerImplementor +Bumptech.Glide.Manager.IRequestManagerTreeNode, Xamarin.Android.Glide;com.bumptech.glide.manager.RequestManagerTreeNode +Bumptech.Glide.Manager.IRequestManagerTreeNode;com.bumptech.glide.manager.RequestManagerTreeNode +com.bumptech.glide.manager.RequestManagerTreeNode;com.bumptech.glide.manager.RequestManagerTreeNode +Bumptech.Glide.Manager.RequestManagerRetriever+IRequestManagerFactory, Xamarin.Android.Glide;com.bumptech.glide.manager.RequestManagerRetriever$RequestManagerFactory +Bumptech.Glide.Manager.RequestManagerRetriever.IRequestManagerFactory;com.bumptech.glide.manager.RequestManagerRetriever$RequestManagerFactory +com.bumptech.glide.manager.RequestManagerRetriever$RequestManagerFactory;com.bumptech.glide.manager.RequestManagerRetriever$RequestManagerFactory +Bumptech.Glide.Request.IFutureTarget, Xamarin.Android.Glide;com.bumptech.glide.request.FutureTarget +Bumptech.Glide.Request.IFutureTarget;com.bumptech.glide.request.FutureTarget +com.bumptech.glide.request.FutureTarget;com.bumptech.glide.request.FutureTarget +Bumptech.Glide.Request.IRequest, Xamarin.Android.Glide;com.bumptech.glide.request.Request +Bumptech.Glide.Request.IRequest;com.bumptech.glide.request.Request +com.bumptech.glide.request.Request;com.bumptech.glide.request.Request +Bumptech.Glide.Request.IRequestCoordinator, Xamarin.Android.Glide;com.bumptech.glide.request.RequestCoordinator +Bumptech.Glide.Request.IRequestCoordinator;com.bumptech.glide.request.RequestCoordinator +com.bumptech.glide.request.RequestCoordinator;com.bumptech.glide.request.RequestCoordinator +Bumptech.Glide.Request.IRequestListener, Xamarin.Android.Glide;com.bumptech.glide.request.RequestListener +Bumptech.Glide.Request.IRequestListener;com.bumptech.glide.request.RequestListener +com.bumptech.glide.request.RequestListener;com.bumptech.glide.request.RequestListener +Bumptech.Glide.Request.IRequestListenerImplementor, Xamarin.Android.Glide;mono.com.bumptech.glide.request.RequestListenerImplementor +Bumptech.Glide.Request.IRequestListenerImplementor;mono.com.bumptech.glide.request.RequestListenerImplementor +mono.com.bumptech.glide.request.RequestListenerImplementor;mono.com.bumptech.glide.request.RequestListenerImplementor +Bumptech.Glide.Request.IResourceCallback, Xamarin.Android.Glide;com.bumptech.glide.request.ResourceCallback +Bumptech.Glide.Request.IResourceCallback;com.bumptech.glide.request.ResourceCallback +com.bumptech.glide.request.ResourceCallback;com.bumptech.glide.request.ResourceCallback +Bumptech.Glide.Request.Transition.ITransitionViewAdapter, Xamarin.Android.Glide;com.bumptech.glide.request.transition.Transition$ViewAdapter +Bumptech.Glide.Request.Transition.ITransitionViewAdapter;com.bumptech.glide.request.transition.Transition$ViewAdapter +com.bumptech.glide.request.transition.Transition$ViewAdapter;com.bumptech.glide.request.transition.Transition$ViewAdapter +Bumptech.Glide.Request.Transition.ITransition, Xamarin.Android.Glide;com.bumptech.glide.request.transition.Transition +Bumptech.Glide.Request.Transition.ITransition;com.bumptech.glide.request.transition.Transition +com.bumptech.glide.request.transition.Transition;com.bumptech.glide.request.transition.Transition +Bumptech.Glide.Request.Transition.ITransitionFactory, Xamarin.Android.Glide;com.bumptech.glide.request.transition.TransitionFactory +Bumptech.Glide.Request.Transition.ITransitionFactory;com.bumptech.glide.request.transition.TransitionFactory +com.bumptech.glide.request.transition.TransitionFactory;com.bumptech.glide.request.transition.TransitionFactory +Bumptech.Glide.Request.Transition.ViewPropertyTransition+IAnimator, Xamarin.Android.Glide;com.bumptech.glide.request.transition.ViewPropertyTransition$Animator +Bumptech.Glide.Request.Transition.ViewPropertyTransition.IAnimator;com.bumptech.glide.request.transition.ViewPropertyTransition$Animator +com.bumptech.glide.request.transition.ViewPropertyTransition$Animator;com.bumptech.glide.request.transition.ViewPropertyTransition$Animator +Bumptech.Glide.Request.Target.ISizeReadyCallback, Xamarin.Android.Glide;com.bumptech.glide.request.target.SizeReadyCallback +Bumptech.Glide.Request.Target.ISizeReadyCallback;com.bumptech.glide.request.target.SizeReadyCallback +com.bumptech.glide.request.target.SizeReadyCallback;com.bumptech.glide.request.target.SizeReadyCallback +Bumptech.Glide.Request.Target.ITarget, Xamarin.Android.Glide;com.bumptech.glide.request.target.Target +Bumptech.Glide.Request.Target.ITarget;com.bumptech.glide.request.target.Target +com.bumptech.glide.request.target.Target;com.bumptech.glide.request.target.Target +Bumptech.Glide.Load.IEncoder, Xamarin.Android.Glide;com.bumptech.glide.load.Encoder +Bumptech.Glide.Load.IEncoder;com.bumptech.glide.load.Encoder +com.bumptech.glide.load.Encoder;com.bumptech.glide.load.Encoder +Bumptech.Glide.Load.IImageHeaderParser, Xamarin.Android.Glide;com.bumptech.glide.load.ImageHeaderParser +Bumptech.Glide.Load.IImageHeaderParser;com.bumptech.glide.load.ImageHeaderParser +com.bumptech.glide.load.ImageHeaderParser;com.bumptech.glide.load.ImageHeaderParser +Bumptech.Glide.Load.IKey, Xamarin.Android.Glide;com.bumptech.glide.load.Key +Bumptech.Glide.Load.IKey;com.bumptech.glide.load.Key +com.bumptech.glide.load.Key;com.bumptech.glide.load.Key +Bumptech.Glide.Load.IResourceDecoder, Xamarin.Android.Glide;com.bumptech.glide.load.ResourceDecoder +Bumptech.Glide.Load.IResourceDecoder;com.bumptech.glide.load.ResourceDecoder +com.bumptech.glide.load.ResourceDecoder;com.bumptech.glide.load.ResourceDecoder +Bumptech.Glide.Load.IResourceEncoder, Xamarin.Android.Glide;com.bumptech.glide.load.ResourceEncoder +Bumptech.Glide.Load.IResourceEncoder;com.bumptech.glide.load.ResourceEncoder +com.bumptech.glide.load.ResourceEncoder;com.bumptech.glide.load.ResourceEncoder +Bumptech.Glide.Load.ITransformation, Xamarin.Android.Glide;com.bumptech.glide.load.Transformation +Bumptech.Glide.Load.ITransformation;com.bumptech.glide.load.Transformation +com.bumptech.glide.load.Transformation;com.bumptech.glide.load.Transformation +Bumptech.Glide.Load.Option+ICacheKeyUpdater, Xamarin.Android.Glide;com.bumptech.glide.load.Option$CacheKeyUpdater +Bumptech.Glide.Load.Option.ICacheKeyUpdater;com.bumptech.glide.load.Option$CacheKeyUpdater +com.bumptech.glide.load.Option$CacheKeyUpdater;com.bumptech.glide.load.Option$CacheKeyUpdater +Bumptech.Glide.Load.Resource.Transcode.IResourceTranscoder, Xamarin.Android.Glide;com.bumptech.glide.load.resource.transcode.ResourceTranscoder +Bumptech.Glide.Load.Resource.Transcode.IResourceTranscoder;com.bumptech.glide.load.resource.transcode.ResourceTranscoder +com.bumptech.glide.load.resource.transcode.ResourceTranscoder;com.bumptech.glide.load.resource.transcode.ResourceTranscoder +Bumptech.Glide.Load.Resource.Bitmap.Downsampler+IDecodeCallbacks, Xamarin.Android.Glide;com.bumptech.glide.load.resource.bitmap.Downsampler$DecodeCallbacks +Bumptech.Glide.Load.Resource.Bitmap.Downsampler.IDecodeCallbacks;com.bumptech.glide.load.resource.bitmap.Downsampler$DecodeCallbacks +com.bumptech.glide.load.resource.bitmap.Downsampler$DecodeCallbacks;com.bumptech.glide.load.resource.bitmap.Downsampler$DecodeCallbacks +Bumptech.Glide.Load.Model.AssetUriLoader+IAssetFetcherFactory, Xamarin.Android.Glide;com.bumptech.glide.load.model.AssetUriLoader$AssetFetcherFactory +Bumptech.Glide.Load.Model.AssetUriLoader.IAssetFetcherFactory;com.bumptech.glide.load.model.AssetUriLoader$AssetFetcherFactory +com.bumptech.glide.load.model.AssetUriLoader$AssetFetcherFactory;com.bumptech.glide.load.model.AssetUriLoader$AssetFetcherFactory +Bumptech.Glide.Load.Model.ByteArrayLoader+IConverter, Xamarin.Android.Glide;com.bumptech.glide.load.model.ByteArrayLoader$Converter +Bumptech.Glide.Load.Model.ByteArrayLoader.IConverter;com.bumptech.glide.load.model.ByteArrayLoader$Converter +com.bumptech.glide.load.model.ByteArrayLoader$Converter;com.bumptech.glide.load.model.ByteArrayLoader$Converter +Bumptech.Glide.Load.Model.FileLoader+IFileOpener, Xamarin.Android.Glide;com.bumptech.glide.load.model.FileLoader$FileOpener +Bumptech.Glide.Load.Model.FileLoader.IFileOpener;com.bumptech.glide.load.model.FileLoader$FileOpener +com.bumptech.glide.load.model.FileLoader$FileOpener;com.bumptech.glide.load.model.FileLoader$FileOpener +Bumptech.Glide.Load.Model.UriLoader+ILocalUriFetcherFactory, Xamarin.Android.Glide;com.bumptech.glide.load.model.UriLoader$LocalUriFetcherFactory +Bumptech.Glide.Load.Model.UriLoader.ILocalUriFetcherFactory;com.bumptech.glide.load.model.UriLoader$LocalUriFetcherFactory +com.bumptech.glide.load.model.UriLoader$LocalUriFetcherFactory;com.bumptech.glide.load.model.UriLoader$LocalUriFetcherFactory +Bumptech.Glide.Load.Model.DataUrlLoader+IDataDecoder, Xamarin.Android.Glide;com.bumptech.glide.load.model.DataUrlLoader$DataDecoder +Bumptech.Glide.Load.Model.DataUrlLoader.IDataDecoder;com.bumptech.glide.load.model.DataUrlLoader$DataDecoder +com.bumptech.glide.load.model.DataUrlLoader$DataDecoder;com.bumptech.glide.load.model.DataUrlLoader$DataDecoder +Bumptech.Glide.Load.Model.IHeaders, Xamarin.Android.Glide;com.bumptech.glide.load.model.Headers +Bumptech.Glide.Load.Model.IHeaders;com.bumptech.glide.load.model.Headers +com.bumptech.glide.load.model.Headers;com.bumptech.glide.load.model.Headers +Bumptech.Glide.Load.Model.ILazyHeaderFactory, Xamarin.Android.Glide;com.bumptech.glide.load.model.LazyHeaderFactory +Bumptech.Glide.Load.Model.ILazyHeaderFactory;com.bumptech.glide.load.model.LazyHeaderFactory +com.bumptech.glide.load.model.LazyHeaderFactory;com.bumptech.glide.load.model.LazyHeaderFactory +Bumptech.Glide.Load.Model.IModel, Xamarin.Android.Glide;com.bumptech.glide.load.model.Model +Bumptech.Glide.Load.Model.IModel;com.bumptech.glide.load.model.Model +com.bumptech.glide.load.model.Model;com.bumptech.glide.load.model.Model +Bumptech.Glide.Load.Model.IModelLoader, Xamarin.Android.Glide;com.bumptech.glide.load.model.ModelLoader +Bumptech.Glide.Load.Model.IModelLoader;com.bumptech.glide.load.model.ModelLoader +com.bumptech.glide.load.model.ModelLoader;com.bumptech.glide.load.model.ModelLoader +Bumptech.Glide.Load.Model.IModelLoaderFactory, Xamarin.Android.Glide;com.bumptech.glide.load.model.ModelLoaderFactory +Bumptech.Glide.Load.Model.IModelLoaderFactory;com.bumptech.glide.load.model.ModelLoaderFactory +com.bumptech.glide.load.model.ModelLoaderFactory;com.bumptech.glide.load.model.ModelLoaderFactory +Bumptech.Glide.Load.Engine.IInitializable, Xamarin.Android.Glide;com.bumptech.glide.load.engine.Initializable +Bumptech.Glide.Load.Engine.IInitializable;com.bumptech.glide.load.engine.Initializable +com.bumptech.glide.load.engine.Initializable;com.bumptech.glide.load.engine.Initializable +Bumptech.Glide.Load.Engine.IResource, Xamarin.Android.Glide;com.bumptech.glide.load.engine.Resource +Bumptech.Glide.Load.Engine.IResource;com.bumptech.glide.load.engine.Resource +com.bumptech.glide.load.engine.Resource;com.bumptech.glide.load.engine.Resource +Bumptech.Glide.Load.Engine.Cache.DiskLruCacheFactory+ICacheDirectoryGetter, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.DiskLruCacheFactory$CacheDirectoryGetter +Bumptech.Glide.Load.Engine.Cache.DiskLruCacheFactory.ICacheDirectoryGetter;com.bumptech.glide.load.engine.cache.DiskLruCacheFactory$CacheDirectoryGetter +com.bumptech.glide.load.engine.cache.DiskLruCacheFactory$CacheDirectoryGetter;com.bumptech.glide.load.engine.cache.DiskLruCacheFactory$CacheDirectoryGetter +Bumptech.Glide.Load.Engine.Cache.IDiskCacheFactory, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.DiskCache$Factory +Bumptech.Glide.Load.Engine.Cache.IDiskCacheFactory;com.bumptech.glide.load.engine.cache.DiskCache$Factory +com.bumptech.glide.load.engine.cache.DiskCache$Factory;com.bumptech.glide.load.engine.cache.DiskCache$Factory +Bumptech.Glide.Load.Engine.Cache.IDiskCacheWriter, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.DiskCache$Writer +Bumptech.Glide.Load.Engine.Cache.IDiskCacheWriter;com.bumptech.glide.load.engine.cache.DiskCache$Writer +com.bumptech.glide.load.engine.cache.DiskCache$Writer;com.bumptech.glide.load.engine.cache.DiskCache$Writer +Bumptech.Glide.Load.Engine.Cache.IDiskCache, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.DiskCache +Bumptech.Glide.Load.Engine.Cache.IDiskCache;com.bumptech.glide.load.engine.cache.DiskCache +com.bumptech.glide.load.engine.cache.DiskCache;com.bumptech.glide.load.engine.cache.DiskCache +Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListener, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.MemoryCache$ResourceRemovedListener +Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListener;com.bumptech.glide.load.engine.cache.MemoryCache$ResourceRemovedListener +com.bumptech.glide.load.engine.cache.MemoryCache$ResourceRemovedListener;com.bumptech.glide.load.engine.cache.MemoryCache$ResourceRemovedListener +Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerImplementor, Xamarin.Android.Glide;mono.com.bumptech.glide.load.engine.cache.MemoryCache_ResourceRemovedListenerImplementor +Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerImplementor;mono.com.bumptech.glide.load.engine.cache.MemoryCache_ResourceRemovedListenerImplementor +mono.com.bumptech.glide.load.engine.cache.MemoryCache_ResourceRemovedListenerImplementor;mono.com.bumptech.glide.load.engine.cache.MemoryCache_ResourceRemovedListenerImplementor +Bumptech.Glide.Load.Engine.Cache.IMemoryCache, Xamarin.Android.Glide;com.bumptech.glide.load.engine.cache.MemoryCache +Bumptech.Glide.Load.Engine.Cache.IMemoryCache;com.bumptech.glide.load.engine.cache.MemoryCache +com.bumptech.glide.load.engine.cache.MemoryCache;com.bumptech.glide.load.engine.cache.MemoryCache +Bumptech.Glide.Load.Engine.BitmapRecycle.IArrayPool, Xamarin.Android.Glide;com.bumptech.glide.load.engine.bitmap_recycle.ArrayPool +Bumptech.Glide.Load.Engine.BitmapRecycle.IArrayPool;com.bumptech.glide.load.engine.bitmap_recycle.ArrayPool +com.bumptech.glide.load.engine.bitmap_recycle.ArrayPool;com.bumptech.glide.load.engine.bitmap_recycle.ArrayPool +Bumptech.Glide.Load.Engine.BitmapRecycle.IBitmapPool, Xamarin.Android.Glide;com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool +Bumptech.Glide.Load.Engine.BitmapRecycle.IBitmapPool;com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool +com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool +Bumptech.Glide.Load.Engine.BitmapRecycle.ILruPoolStrategy, Xamarin.Android.Glide;com.bumptech.glide.load.engine.bitmap_recycle.LruPoolStrategy +Bumptech.Glide.Load.Engine.BitmapRecycle.ILruPoolStrategy;com.bumptech.glide.load.engine.bitmap_recycle.LruPoolStrategy +com.bumptech.glide.load.engine.bitmap_recycle.LruPoolStrategy;com.bumptech.glide.load.engine.bitmap_recycle.LruPoolStrategy +Bumptech.Glide.Load.Engine.BitmapRecycle.IPoolable, Xamarin.Android.Glide;com.bumptech.glide.load.engine.bitmap_recycle.Poolable +Bumptech.Glide.Load.Engine.BitmapRecycle.IPoolable;com.bumptech.glide.load.engine.bitmap_recycle.Poolable +com.bumptech.glide.load.engine.bitmap_recycle.Poolable;com.bumptech.glide.load.engine.bitmap_recycle.Poolable +Bumptech.Glide.Load.Engine.Executor.GlideExecutor+IUncaughtThrowableStrategy, Xamarin.Android.Glide;com.bumptech.glide.load.engine.executor.GlideExecutor$UncaughtThrowableStrategy +Bumptech.Glide.Load.Engine.Executor.GlideExecutor.IUncaughtThrowableStrategy;com.bumptech.glide.load.engine.executor.GlideExecutor$UncaughtThrowableStrategy +com.bumptech.glide.load.engine.executor.GlideExecutor$UncaughtThrowableStrategy;com.bumptech.glide.load.engine.executor.GlideExecutor$UncaughtThrowableStrategy +Bumptech.Glide.Load.Data.IDataFetcherDataCallback, Xamarin.Android.Glide;com.bumptech.glide.load.data.DataFetcher$DataCallback +Bumptech.Glide.Load.Data.IDataFetcherDataCallback;com.bumptech.glide.load.data.DataFetcher$DataCallback +com.bumptech.glide.load.data.DataFetcher$DataCallback;com.bumptech.glide.load.data.DataFetcher$DataCallback +Bumptech.Glide.Load.Data.IDataFetcher, Xamarin.Android.Glide;com.bumptech.glide.load.data.DataFetcher +Bumptech.Glide.Load.Data.IDataFetcher;com.bumptech.glide.load.data.DataFetcher +com.bumptech.glide.load.data.DataFetcher;com.bumptech.glide.load.data.DataFetcher +Bumptech.Glide.Load.Data.IDataRewinderFactory, Xamarin.Android.Glide;com.bumptech.glide.load.data.DataRewinder$Factory +Bumptech.Glide.Load.Data.IDataRewinderFactory;com.bumptech.glide.load.data.DataRewinder$Factory +com.bumptech.glide.load.data.DataRewinder$Factory;com.bumptech.glide.load.data.DataRewinder$Factory +Bumptech.Glide.Load.Data.IDataRewinder, Xamarin.Android.Glide;com.bumptech.glide.load.data.DataRewinder +Bumptech.Glide.Load.Data.IDataRewinder;com.bumptech.glide.load.data.DataRewinder +com.bumptech.glide.load.data.DataRewinder;com.bumptech.glide.load.data.DataRewinder +Bumptech.Glide.Load.Data.Mediastore.IThumbnailQuery, Xamarin.Android.Glide;com.bumptech.glide.load.data.mediastore.ThumbnailQuery +Bumptech.Glide.Load.Data.Mediastore.IThumbnailQuery;com.bumptech.glide.load.data.mediastore.ThumbnailQuery +com.bumptech.glide.load.data.mediastore.ThumbnailQuery;com.bumptech.glide.load.data.mediastore.ThumbnailQuery +Bumptech.Glide.GifDecoder.IGifDecoderBitmapProvider, Xamarin.Android.Glide.GifDecoder;com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider +Bumptech.Glide.GifDecoder.IGifDecoderBitmapProvider;com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider +com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider;com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider +Bumptech.Glide.GifDecoder.IGifDecoderGifDecodeStatus, Xamarin.Android.Glide.GifDecoder;com.bumptech.glide.gifdecoder.GifDecoder$GifDecodeStatus +Bumptech.Glide.GifDecoder.IGifDecoderGifDecodeStatus;com.bumptech.glide.gifdecoder.GifDecoder$GifDecodeStatus +com.bumptech.glide.gifdecoder.GifDecoder$GifDecodeStatus;com.bumptech.glide.gifdecoder.GifDecoder$GifDecodeStatus +Bumptech.Glide.GifDecoder.IGifDecoder, Xamarin.Android.Glide.GifDecoder;com.bumptech.glide.gifdecoder.GifDecoder +Bumptech.Glide.GifDecoder.IGifDecoder;com.bumptech.glide.gifdecoder.GifDecoder +com.bumptech.glide.gifdecoder.GifDecoder;com.bumptech.glide.gifdecoder.GifDecoder +AndroidX.Activity.BackEventCompat+ISwipeEdge, Xamarin.AndroidX.Activity;androidx.activity.BackEventCompat$SwipeEdge +AndroidX.Activity.BackEventCompat.ISwipeEdge;androidx.activity.BackEventCompat$SwipeEdge +androidx.activity.BackEventCompat$SwipeEdge;androidx.activity.BackEventCompat$SwipeEdge +AndroidX.Activity.IFullyDrawnReporterOwner, Xamarin.AndroidX.Activity;androidx.activity.FullyDrawnReporterOwner +AndroidX.Activity.IFullyDrawnReporterOwner;androidx.activity.FullyDrawnReporterOwner +androidx.activity.FullyDrawnReporterOwner;androidx.activity.FullyDrawnReporterOwner +AndroidX.Activity.IOnBackPressedDispatcherOwner, Xamarin.AndroidX.Activity;androidx.activity.OnBackPressedDispatcherOwner +AndroidX.Activity.IOnBackPressedDispatcherOwner;androidx.activity.OnBackPressedDispatcherOwner +androidx.activity.OnBackPressedDispatcherOwner;androidx.activity.OnBackPressedDispatcherOwner +AndroidX.Activity.ContextAware.IContextAware, Xamarin.AndroidX.Activity;androidx.activity.contextaware.ContextAware +AndroidX.Activity.ContextAware.IContextAware;androidx.activity.contextaware.ContextAware +androidx.activity.contextaware.ContextAware;androidx.activity.contextaware.ContextAware +AndroidX.Activity.ContextAware.IOnContextAvailableListener, Xamarin.AndroidX.Activity;androidx.activity.contextaware.OnContextAvailableListener +AndroidX.Activity.ContextAware.IOnContextAvailableListener;androidx.activity.contextaware.OnContextAvailableListener +androidx.activity.contextaware.OnContextAvailableListener;androidx.activity.contextaware.OnContextAvailableListener +AndroidX.Activity.ContextAware.IOnContextAvailableListenerImplementor, Xamarin.AndroidX.Activity;mono.androidx.activity.contextaware.OnContextAvailableListenerImplementor +AndroidX.Activity.ContextAware.IOnContextAvailableListenerImplementor;mono.androidx.activity.contextaware.OnContextAvailableListenerImplementor +mono.androidx.activity.contextaware.OnContextAvailableListenerImplementor;mono.androidx.activity.contextaware.OnContextAvailableListenerImplementor +AndroidX.Activity.Result.IActivityResultCallback, Xamarin.AndroidX.Activity;androidx.activity.result.ActivityResultCallback +AndroidX.Activity.Result.IActivityResultCallback;androidx.activity.result.ActivityResultCallback +androidx.activity.result.ActivityResultCallback;androidx.activity.result.ActivityResultCallback +AndroidX.Activity.Result.IActivityResultCaller, Xamarin.AndroidX.Activity;androidx.activity.result.ActivityResultCaller +AndroidX.Activity.Result.IActivityResultCaller;androidx.activity.result.ActivityResultCaller +androidx.activity.result.ActivityResultCaller;androidx.activity.result.ActivityResultCaller +AndroidX.Activity.Result.IActivityResultRegistryOwner, Xamarin.AndroidX.Activity;androidx.activity.result.ActivityResultRegistryOwner +AndroidX.Activity.Result.IActivityResultRegistryOwner;androidx.activity.result.ActivityResultRegistryOwner +androidx.activity.result.ActivityResultRegistryOwner;androidx.activity.result.ActivityResultRegistryOwner +AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+IVisualMediaType, Xamarin.AndroidX.Activity;androidx.activity.result.contract.ActivityResultContracts$PickVisualMedia$VisualMediaType +AndroidX.Activity.Result.Contract.ActivityResultContracts.PickVisualMedia.IVisualMediaType;androidx.activity.result.contract.ActivityResultContracts$PickVisualMedia$VisualMediaType +androidx.activity.result.contract.ActivityResultContracts$PickVisualMedia$VisualMediaType;androidx.activity.result.contract.ActivityResultContracts$PickVisualMedia$VisualMediaType +AndroidX.Annotations.IOptIn, Xamarin.AndroidX.Annotation.Experimental;androidx.annotation.OptIn +AndroidX.Annotations.IOptIn;androidx.annotation.OptIn +androidx.annotation.OptIn;androidx.annotation.OptIn +AndroidX.Annotations.IRequiresOptIn, Xamarin.AndroidX.Annotation.Experimental;androidx.annotation.RequiresOptIn +AndroidX.Annotations.IRequiresOptIn;androidx.annotation.RequiresOptIn +androidx.annotation.RequiresOptIn;androidx.annotation.RequiresOptIn +AndroidX.Annotations.Experimental.IExperimental, Xamarin.AndroidX.Annotation.Experimental;androidx.annotation.experimental.Experimental +AndroidX.Annotations.Experimental.IExperimental;androidx.annotation.experimental.Experimental +androidx.annotation.experimental.Experimental;androidx.annotation.experimental.Experimental +AndroidX.Annotations.Experimental.IUseExperimental, Xamarin.AndroidX.Annotation.Experimental;androidx.annotation.experimental.UseExperimental +AndroidX.Annotations.Experimental.IUseExperimental;androidx.annotation.experimental.UseExperimental +androidx.annotation.experimental.UseExperimental;androidx.annotation.experimental.UseExperimental +AndroidX.Annotations.IAnimatorRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.AnimatorRes +AndroidX.Annotations.IAnimatorRes;androidx.annotation.AnimatorRes +androidx.annotation.AnimatorRes;androidx.annotation.AnimatorRes +AndroidX.Annotations.IAnimRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.AnimRes +AndroidX.Annotations.IAnimRes;androidx.annotation.AnimRes +androidx.annotation.AnimRes;androidx.annotation.AnimRes +AndroidX.Annotations.IAnyRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.AnyRes +AndroidX.Annotations.IAnyRes;androidx.annotation.AnyRes +androidx.annotation.AnyRes;androidx.annotation.AnyRes +AndroidX.Annotations.IAnyThread, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.AnyThread +AndroidX.Annotations.IAnyThread;androidx.annotation.AnyThread +androidx.annotation.AnyThread;androidx.annotation.AnyThread +AndroidX.Annotations.IArrayRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ArrayRes +AndroidX.Annotations.IArrayRes;androidx.annotation.ArrayRes +androidx.annotation.ArrayRes;androidx.annotation.ArrayRes +AndroidX.Annotations.IAttrRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.AttrRes +AndroidX.Annotations.IAttrRes;androidx.annotation.AttrRes +androidx.annotation.AttrRes;androidx.annotation.AttrRes +AndroidX.Annotations.IBinderThread, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.BinderThread +AndroidX.Annotations.IBinderThread;androidx.annotation.BinderThread +androidx.annotation.BinderThread;androidx.annotation.BinderThread +AndroidX.Annotations.IBoolRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.BoolRes +AndroidX.Annotations.IBoolRes;androidx.annotation.BoolRes +androidx.annotation.BoolRes;androidx.annotation.BoolRes +AndroidX.Annotations.ICallSuper, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.CallSuper +AndroidX.Annotations.ICallSuper;androidx.annotation.CallSuper +androidx.annotation.CallSuper;androidx.annotation.CallSuper +AndroidX.Annotations.ICheckResult, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.CheckResult +AndroidX.Annotations.ICheckResult;androidx.annotation.CheckResult +androidx.annotation.CheckResult;androidx.annotation.CheckResult +AndroidX.Annotations.IChecksSdkIntAtLeast, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ChecksSdkIntAtLeast +AndroidX.Annotations.IChecksSdkIntAtLeast;androidx.annotation.ChecksSdkIntAtLeast +androidx.annotation.ChecksSdkIntAtLeast;androidx.annotation.ChecksSdkIntAtLeast +AndroidX.Annotations.IColorInt, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ColorInt +AndroidX.Annotations.IColorInt;androidx.annotation.ColorInt +androidx.annotation.ColorInt;androidx.annotation.ColorInt +AndroidX.Annotations.IColorLong, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ColorLong +AndroidX.Annotations.IColorLong;androidx.annotation.ColorLong +androidx.annotation.ColorLong;androidx.annotation.ColorLong +AndroidX.Annotations.IColorRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ColorRes +AndroidX.Annotations.IColorRes;androidx.annotation.ColorRes +androidx.annotation.ColorRes;androidx.annotation.ColorRes +AndroidX.Annotations.IContentView, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ContentView +AndroidX.Annotations.IContentView;androidx.annotation.ContentView +androidx.annotation.ContentView;androidx.annotation.ContentView +AndroidX.Annotations.IDeprecatedSinceApi, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.DeprecatedSinceApi +AndroidX.Annotations.IDeprecatedSinceApi;androidx.annotation.DeprecatedSinceApi +androidx.annotation.DeprecatedSinceApi;androidx.annotation.DeprecatedSinceApi +AndroidX.Annotations.IDimenRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.DimenRes +AndroidX.Annotations.IDimenRes;androidx.annotation.DimenRes +androidx.annotation.DimenRes;androidx.annotation.DimenRes +AndroidX.Annotations.IDimension, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Dimension +AndroidX.Annotations.IDimension;androidx.annotation.Dimension +androidx.annotation.Dimension;androidx.annotation.Dimension +AndroidX.Annotations.IDiscouraged, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Discouraged +AndroidX.Annotations.IDiscouraged;androidx.annotation.Discouraged +androidx.annotation.Discouraged;androidx.annotation.Discouraged +AndroidX.Annotations.IDisplayContext, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.DisplayContext +AndroidX.Annotations.IDisplayContext;androidx.annotation.DisplayContext +androidx.annotation.DisplayContext;androidx.annotation.DisplayContext +AndroidX.Annotations.IDoNotInline, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.DoNotInline +AndroidX.Annotations.IDoNotInline;androidx.annotation.DoNotInline +androidx.annotation.DoNotInline;androidx.annotation.DoNotInline +AndroidX.Annotations.IDrawableRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.DrawableRes +AndroidX.Annotations.IDrawableRes;androidx.annotation.DrawableRes +androidx.annotation.DrawableRes;androidx.annotation.DrawableRes +AndroidX.Annotations.IEmptySuper, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.EmptySuper +AndroidX.Annotations.IEmptySuper;androidx.annotation.EmptySuper +androidx.annotation.EmptySuper;androidx.annotation.EmptySuper +AndroidX.Annotations.IFloatRange, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.FloatRange +AndroidX.Annotations.IFloatRange;androidx.annotation.FloatRange +androidx.annotation.FloatRange;androidx.annotation.FloatRange +AndroidX.Annotations.IFontRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.FontRes +AndroidX.Annotations.IFontRes;androidx.annotation.FontRes +androidx.annotation.FontRes;androidx.annotation.FontRes +AndroidX.Annotations.IFractionRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.FractionRes +AndroidX.Annotations.IFractionRes;androidx.annotation.FractionRes +androidx.annotation.FractionRes;androidx.annotation.FractionRes +AndroidX.Annotations.IGravityInt, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.GravityInt +AndroidX.Annotations.IGravityInt;androidx.annotation.GravityInt +androidx.annotation.GravityInt;androidx.annotation.GravityInt +AndroidX.Annotations.IGuardedBy, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.GuardedBy +AndroidX.Annotations.IGuardedBy;androidx.annotation.GuardedBy +androidx.annotation.GuardedBy;androidx.annotation.GuardedBy +AndroidX.Annotations.IHalfFloat, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.HalfFloat +AndroidX.Annotations.IHalfFloat;androidx.annotation.HalfFloat +androidx.annotation.HalfFloat;androidx.annotation.HalfFloat +AndroidX.Annotations.IIdRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.IdRes +AndroidX.Annotations.IIdRes;androidx.annotation.IdRes +androidx.annotation.IdRes;androidx.annotation.IdRes +AndroidX.Annotations.IInspectablePropertyEnumEntry, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.InspectableProperty$EnumEntry +AndroidX.Annotations.IInspectablePropertyEnumEntry;androidx.annotation.InspectableProperty$EnumEntry +androidx.annotation.InspectableProperty$EnumEntry;androidx.annotation.InspectableProperty$EnumEntry +AndroidX.Annotations.IInspectablePropertyFlagEntry, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.InspectableProperty$FlagEntry +AndroidX.Annotations.IInspectablePropertyFlagEntry;androidx.annotation.InspectableProperty$FlagEntry +androidx.annotation.InspectableProperty$FlagEntry;androidx.annotation.InspectableProperty$FlagEntry +AndroidX.Annotations.IInspectableProperty, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.InspectableProperty +AndroidX.Annotations.IInspectableProperty;androidx.annotation.InspectableProperty +androidx.annotation.InspectableProperty;androidx.annotation.InspectableProperty +AndroidX.Annotations.IIntDef, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.IntDef +AndroidX.Annotations.IIntDef;androidx.annotation.IntDef +androidx.annotation.IntDef;androidx.annotation.IntDef +AndroidX.Annotations.IIntegerRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.IntegerRes +AndroidX.Annotations.IIntegerRes;androidx.annotation.IntegerRes +androidx.annotation.IntegerRes;androidx.annotation.IntegerRes +AndroidX.Annotations.IInterpolatorRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.InterpolatorRes +AndroidX.Annotations.IInterpolatorRes;androidx.annotation.InterpolatorRes +androidx.annotation.InterpolatorRes;androidx.annotation.InterpolatorRes +AndroidX.Annotations.IIntRange, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.IntRange +AndroidX.Annotations.IIntRange;androidx.annotation.IntRange +androidx.annotation.IntRange;androidx.annotation.IntRange +AndroidX.Annotations.IKeep, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Keep +AndroidX.Annotations.IKeep;androidx.annotation.Keep +androidx.annotation.Keep;androidx.annotation.Keep +AndroidX.Annotations.ILayoutRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.LayoutRes +AndroidX.Annotations.ILayoutRes;androidx.annotation.LayoutRes +androidx.annotation.LayoutRes;androidx.annotation.LayoutRes +AndroidX.Annotations.ILongDef, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.LongDef +AndroidX.Annotations.ILongDef;androidx.annotation.LongDef +androidx.annotation.LongDef;androidx.annotation.LongDef +AndroidX.Annotations.IMainThread, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.MainThread +AndroidX.Annotations.IMainThread;androidx.annotation.MainThread +androidx.annotation.MainThread;androidx.annotation.MainThread +AndroidX.Annotations.IMenuRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.MenuRes +AndroidX.Annotations.IMenuRes;androidx.annotation.MenuRes +androidx.annotation.MenuRes;androidx.annotation.MenuRes +AndroidX.Annotations.INavigationRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.NavigationRes +AndroidX.Annotations.INavigationRes;androidx.annotation.NavigationRes +androidx.annotation.NavigationRes;androidx.annotation.NavigationRes +AndroidX.Annotations.INonNull, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.NonNull +AndroidX.Annotations.INonNull;androidx.annotation.NonNull +androidx.annotation.NonNull;androidx.annotation.NonNull +AndroidX.Annotations.INonUiContext, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.NonUiContext +AndroidX.Annotations.INonUiContext;androidx.annotation.NonUiContext +androidx.annotation.NonUiContext;androidx.annotation.NonUiContext +AndroidX.Annotations.INullable, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Nullable +AndroidX.Annotations.INullable;androidx.annotation.Nullable +androidx.annotation.Nullable;androidx.annotation.Nullable +AndroidX.Annotations.IOpenForTesting, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.OpenForTesting +AndroidX.Annotations.IOpenForTesting;androidx.annotation.OpenForTesting +androidx.annotation.OpenForTesting;androidx.annotation.OpenForTesting +AndroidX.Annotations.IPluralsRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.PluralsRes +AndroidX.Annotations.IPluralsRes;androidx.annotation.PluralsRes +androidx.annotation.PluralsRes;androidx.annotation.PluralsRes +AndroidX.Annotations.IPx, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Px +AndroidX.Annotations.IPx;androidx.annotation.Px +androidx.annotation.Px;androidx.annotation.Px +AndroidX.Annotations.IRawRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RawRes +AndroidX.Annotations.IRawRes;androidx.annotation.RawRes +androidx.annotation.RawRes;androidx.annotation.RawRes +AndroidX.Annotations.IReplaceWith, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ReplaceWith +AndroidX.Annotations.IReplaceWith;androidx.annotation.ReplaceWith +androidx.annotation.ReplaceWith;androidx.annotation.ReplaceWith +AndroidX.Annotations.IRequiresApi, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresApi +AndroidX.Annotations.IRequiresApi;androidx.annotation.RequiresApi +androidx.annotation.RequiresApi;androidx.annotation.RequiresApi +AndroidX.Annotations.IRequiresExtensionContainer, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresExtension$Container +AndroidX.Annotations.IRequiresExtensionContainer;androidx.annotation.RequiresExtension$Container +androidx.annotation.RequiresExtension$Container;androidx.annotation.RequiresExtension$Container +AndroidX.Annotations.IRequiresExtension, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresExtension +AndroidX.Annotations.IRequiresExtension;androidx.annotation.RequiresExtension +androidx.annotation.RequiresExtension;androidx.annotation.RequiresExtension +AndroidX.Annotations.IRequiresFeature, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresFeature +AndroidX.Annotations.IRequiresFeature;androidx.annotation.RequiresFeature +androidx.annotation.RequiresFeature;androidx.annotation.RequiresFeature +AndroidX.Annotations.IRequiresPermissionRead, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresPermission$Read +AndroidX.Annotations.IRequiresPermissionRead;androidx.annotation.RequiresPermission$Read +androidx.annotation.RequiresPermission$Read;androidx.annotation.RequiresPermission$Read +AndroidX.Annotations.IRequiresPermissionWrite, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresPermission$Write +AndroidX.Annotations.IRequiresPermissionWrite;androidx.annotation.RequiresPermission$Write +androidx.annotation.RequiresPermission$Write;androidx.annotation.RequiresPermission$Write +AndroidX.Annotations.IRequiresPermission, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RequiresPermission +AndroidX.Annotations.IRequiresPermission;androidx.annotation.RequiresPermission +androidx.annotation.RequiresPermission;androidx.annotation.RequiresPermission +AndroidX.Annotations.IRestrictTo, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.RestrictTo +AndroidX.Annotations.IRestrictTo;androidx.annotation.RestrictTo +androidx.annotation.RestrictTo;androidx.annotation.RestrictTo +AndroidX.Annotations.IReturnThis, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.ReturnThis +AndroidX.Annotations.IReturnThis;androidx.annotation.ReturnThis +androidx.annotation.ReturnThis;androidx.annotation.ReturnThis +AndroidX.Annotations.ISize, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.Size +AndroidX.Annotations.ISize;androidx.annotation.Size +androidx.annotation.Size;androidx.annotation.Size +AndroidX.Annotations.IStringDef, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.StringDef +AndroidX.Annotations.IStringDef;androidx.annotation.StringDef +androidx.annotation.StringDef;androidx.annotation.StringDef +AndroidX.Annotations.IStringRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.StringRes +AndroidX.Annotations.IStringRes;androidx.annotation.StringRes +androidx.annotation.StringRes;androidx.annotation.StringRes +AndroidX.Annotations.IStyleableRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.StyleableRes +AndroidX.Annotations.IStyleableRes;androidx.annotation.StyleableRes +androidx.annotation.StyleableRes;androidx.annotation.StyleableRes +AndroidX.Annotations.IStyleRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.StyleRes +AndroidX.Annotations.IStyleRes;androidx.annotation.StyleRes +androidx.annotation.StyleRes;androidx.annotation.StyleRes +AndroidX.Annotations.ITransitionRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.TransitionRes +AndroidX.Annotations.ITransitionRes;androidx.annotation.TransitionRes +androidx.annotation.TransitionRes;androidx.annotation.TransitionRes +AndroidX.Annotations.IUiContext, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.UiContext +AndroidX.Annotations.IUiContext;androidx.annotation.UiContext +androidx.annotation.UiContext;androidx.annotation.UiContext +AndroidX.Annotations.IUiThread, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.UiThread +AndroidX.Annotations.IUiThread;androidx.annotation.UiThread +androidx.annotation.UiThread;androidx.annotation.UiThread +AndroidX.Annotations.IVisibleForTesting, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.VisibleForTesting +AndroidX.Annotations.IVisibleForTesting;androidx.annotation.VisibleForTesting +androidx.annotation.VisibleForTesting;androidx.annotation.VisibleForTesting +AndroidX.Annotations.IWorkerThread, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.WorkerThread +AndroidX.Annotations.IWorkerThread;androidx.annotation.WorkerThread +androidx.annotation.WorkerThread;androidx.annotation.WorkerThread +AndroidX.Annotations.IXmlRes, Xamarin.AndroidX.Annotation.Jvm;androidx.annotation.XmlRes +AndroidX.Annotations.IXmlRes;androidx.annotation.XmlRes +androidx.annotation.XmlRes;androidx.annotation.XmlRes +AndroidX.AppCompat.Graphics.Drawable.DrawerArrowDrawable+IArrowDirection, Xamarin.AndroidX.AppCompat;androidx.appcompat.graphics.drawable.DrawerArrowDrawable$ArrowDirection +AndroidX.AppCompat.Graphics.Drawable.DrawerArrowDrawable.IArrowDirection;androidx.appcompat.graphics.drawable.DrawerArrowDrawable$ArrowDirection +androidx.appcompat.graphics.drawable.DrawerArrowDrawable$ArrowDirection;androidx.appcompat.graphics.drawable.DrawerArrowDrawable$ArrowDirection +AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +AndroidX.AppCompat.App.AlertDialog.IDialogInterfaceOnClickListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +androidx.appcompat.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +AndroidX.AppCompat.App.AlertDialog.IDialogInterfaceOnCancelListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +androidx.appcompat.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +AndroidX.AppCompat.App.AlertDialog.IDialogInterfaceOnMultiChoiceClickListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +androidx.appcompat.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor;androidx.appcompat.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +AndroidX.AppCompat.App.ActionBar+IDisplayOptions, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBar$DisplayOptions +AndroidX.AppCompat.App.ActionBar.IDisplayOptions;androidx.appcompat.app.ActionBar$DisplayOptions +androidx.appcompat.app.ActionBar$DisplayOptions;androidx.appcompat.app.ActionBar$DisplayOptions +AndroidX.AppCompat.App.ActionBar+INavigationMode, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBar$NavigationMode +AndroidX.AppCompat.App.ActionBar.INavigationMode;androidx.appcompat.app.ActionBar$NavigationMode +androidx.appcompat.app.ActionBar$NavigationMode;androidx.appcompat.app.ActionBar$NavigationMode +AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBar$OnMenuVisibilityListener +AndroidX.AppCompat.App.ActionBar.IOnMenuVisibilityListener;androidx.appcompat.app.ActionBar$OnMenuVisibilityListener +androidx.appcompat.app.ActionBar$OnMenuVisibilityListener;androidx.appcompat.app.ActionBar$OnMenuVisibilityListener +AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.app.ActionBar_OnMenuVisibilityListenerImplementor +AndroidX.AppCompat.App.ActionBar.IOnMenuVisibilityListenerImplementor;mono.androidx.appcompat.app.ActionBar_OnMenuVisibilityListenerImplementor +mono.androidx.appcompat.app.ActionBar_OnMenuVisibilityListenerImplementor;mono.androidx.appcompat.app.ActionBar_OnMenuVisibilityListenerImplementor +AndroidX.AppCompat.App.ActionBar+IOnNavigationListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBar$OnNavigationListener +AndroidX.AppCompat.App.ActionBar.IOnNavigationListener;androidx.appcompat.app.ActionBar$OnNavigationListener +androidx.appcompat.app.ActionBar$OnNavigationListener;androidx.appcompat.app.ActionBar$OnNavigationListener +AndroidX.AppCompat.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.app.ActionBar_OnNavigationListenerImplementor +AndroidX.AppCompat.App.ActionBar.IOnNavigationListenerImplementor;mono.androidx.appcompat.app.ActionBar_OnNavigationListenerImplementor +mono.androidx.appcompat.app.ActionBar_OnNavigationListenerImplementor;mono.androidx.appcompat.app.ActionBar_OnNavigationListenerImplementor +AndroidX.AppCompat.App.ActionBar+ITabListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBar$TabListener +AndroidX.AppCompat.App.ActionBar.ITabListener;androidx.appcompat.app.ActionBar$TabListener +androidx.appcompat.app.ActionBar$TabListener;androidx.appcompat.app.ActionBar$TabListener +AndroidX.AppCompat.App.ActionBar+ITabListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.app.ActionBar_TabListenerImplementor +AndroidX.AppCompat.App.ActionBar.ITabListenerImplementor;mono.androidx.appcompat.app.ActionBar_TabListenerImplementor +mono.androidx.appcompat.app.ActionBar_TabListenerImplementor;mono.androidx.appcompat.app.ActionBar_TabListenerImplementor +AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegate, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBarDrawerToggle$Delegate +AndroidX.AppCompat.App.ActionBarDrawerToggle.IDelegate;androidx.appcompat.app.ActionBarDrawerToggle$Delegate +androidx.appcompat.app.ActionBarDrawerToggle$Delegate;androidx.appcompat.app.ActionBarDrawerToggle$Delegate +AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegateProvider, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.ActionBarDrawerToggle$DelegateProvider +AndroidX.AppCompat.App.ActionBarDrawerToggle.IDelegateProvider;androidx.appcompat.app.ActionBarDrawerToggle$DelegateProvider +androidx.appcompat.app.ActionBarDrawerToggle$DelegateProvider;androidx.appcompat.app.ActionBarDrawerToggle$DelegateProvider +AndroidX.AppCompat.App.AppCompatDelegate+INightMode, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.AppCompatDelegate$NightMode +AndroidX.AppCompat.App.AppCompatDelegate.INightMode;androidx.appcompat.app.AppCompatDelegate$NightMode +androidx.appcompat.app.AppCompatDelegate$NightMode;androidx.appcompat.app.AppCompatDelegate$NightMode +AndroidX.AppCompat.App.IAppCompatCallback, Xamarin.AndroidX.AppCompat;androidx.appcompat.app.AppCompatCallback +AndroidX.AppCompat.App.IAppCompatCallback;androidx.appcompat.app.AppCompatCallback +androidx.appcompat.app.AppCompatCallback;androidx.appcompat.app.AppCompatCallback +AndroidX.AppCompat.Widget.ActionBarOverlayLayout+IActionBarVisibilityCallback, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback +AndroidX.AppCompat.Widget.ActionBarOverlayLayout.IActionBarVisibilityCallback;androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback +androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback;androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback +AndroidX.AppCompat.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.Toolbar_NavigationOnClickEventDispatcher +AndroidX.AppCompat.Widget.Toolbar.NavigationOnClickEventDispatcher;androidx.appcompat.widget.Toolbar_NavigationOnClickEventDispatcher +androidx.appcompat.widget.Toolbar_NavigationOnClickEventDispatcher;androidx.appcompat.widget.Toolbar_NavigationOnClickEventDispatcher +AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.Toolbar$OnMenuItemClickListener +AndroidX.AppCompat.Widget.Toolbar.IOnMenuItemClickListener;androidx.appcompat.widget.Toolbar$OnMenuItemClickListener +androidx.appcompat.widget.Toolbar$OnMenuItemClickListener;androidx.appcompat.widget.Toolbar$OnMenuItemClickListener +AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.Toolbar_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.Toolbar.IOnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.Toolbar_OnMenuItemClickListenerImplementor +mono.androidx.appcompat.widget.Toolbar_OnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.Toolbar_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.ActionMenuView+IActionMenuChildView, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ActionMenuView$ActionMenuChildView +AndroidX.AppCompat.Widget.ActionMenuView.IActionMenuChildView;androidx.appcompat.widget.ActionMenuView$ActionMenuChildView +androidx.appcompat.widget.ActionMenuView$ActionMenuChildView;androidx.appcompat.widget.ActionMenuView$ActionMenuChildView +AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener +AndroidX.AppCompat.Widget.ActionMenuView.IOnMenuItemClickListener;androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener +androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener;androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener +AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.ActionMenuView_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.ActionMenuView.IOnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.ActionMenuView_OnMenuItemClickListenerImplementor +mono.androidx.appcompat.widget.ActionMenuView_OnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.ActionMenuView_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ContentFrameLayout$OnAttachListener +AndroidX.AppCompat.Widget.ContentFrameLayout.IOnAttachListener;androidx.appcompat.widget.ContentFrameLayout$OnAttachListener +androidx.appcompat.widget.ContentFrameLayout$OnAttachListener;androidx.appcompat.widget.ContentFrameLayout$OnAttachListener +AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.ContentFrameLayout_OnAttachListenerImplementor +AndroidX.AppCompat.Widget.ContentFrameLayout.IOnAttachListenerImplementor;mono.androidx.appcompat.widget.ContentFrameLayout_OnAttachListenerImplementor +mono.androidx.appcompat.widget.ContentFrameLayout_OnAttachListenerImplementor;mono.androidx.appcompat.widget.ContentFrameLayout_OnAttachListenerImplementor +AndroidX.AppCompat.Widget.IDecorContentParent, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.DecorContentParent +AndroidX.AppCompat.Widget.IDecorContentParent;androidx.appcompat.widget.DecorContentParent +androidx.appcompat.widget.DecorContentParent;androidx.appcompat.widget.DecorContentParent +AndroidX.AppCompat.Widget.IDecorToolbar, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.DecorToolbar +AndroidX.AppCompat.Widget.IDecorToolbar;androidx.appcompat.widget.DecorToolbar +androidx.appcompat.widget.DecorToolbar;androidx.appcompat.widget.DecorToolbar +AndroidX.AppCompat.Widget.IEmojiCompatConfigurationView, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.EmojiCompatConfigurationView +AndroidX.AppCompat.Widget.IEmojiCompatConfigurationView;androidx.appcompat.widget.EmojiCompatConfigurationView +androidx.appcompat.widget.EmojiCompatConfigurationView;androidx.appcompat.widget.EmojiCompatConfigurationView +AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener +AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListener;androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener +androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener;androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener +AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor;mono.androidx.appcompat.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +mono.androidx.appcompat.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor;mono.androidx.appcompat.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +AndroidX.AppCompat.Widget.IFitWindowsViewGroup, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.FitWindowsViewGroup +AndroidX.AppCompat.Widget.IFitWindowsViewGroup;androidx.appcompat.widget.FitWindowsViewGroup +androidx.appcompat.widget.FitWindowsViewGroup;androidx.appcompat.widget.FitWindowsViewGroup +AndroidX.AppCompat.Widget.IMenuItemHoverListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.MenuItemHoverListener +AndroidX.AppCompat.Widget.IMenuItemHoverListener;androidx.appcompat.widget.MenuItemHoverListener +androidx.appcompat.widget.MenuItemHoverListener;androidx.appcompat.widget.MenuItemHoverListener +AndroidX.AppCompat.Widget.IMenuItemHoverListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.MenuItemHoverListenerImplementor +AndroidX.AppCompat.Widget.IMenuItemHoverListenerImplementor;mono.androidx.appcompat.widget.MenuItemHoverListenerImplementor +mono.androidx.appcompat.widget.MenuItemHoverListenerImplementor;mono.androidx.appcompat.widget.MenuItemHoverListenerImplementor +AndroidX.AppCompat.Widget.IThemedSpinnerAdapter, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ThemedSpinnerAdapter +AndroidX.AppCompat.Widget.IThemedSpinnerAdapter;androidx.appcompat.widget.ThemedSpinnerAdapter +androidx.appcompat.widget.ThemedSpinnerAdapter;androidx.appcompat.widget.ThemedSpinnerAdapter +AndroidX.AppCompat.Widget.IWithHint, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.WithHint +AndroidX.AppCompat.Widget.IWithHint;androidx.appcompat.widget.WithHint +androidx.appcompat.widget.WithHint;androidx.appcompat.widget.WithHint +AndroidX.AppCompat.Widget.LinearLayoutCompat+IDividerMode, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.LinearLayoutCompat$DividerMode +AndroidX.AppCompat.Widget.LinearLayoutCompat.IDividerMode;androidx.appcompat.widget.LinearLayoutCompat$DividerMode +androidx.appcompat.widget.LinearLayoutCompat$DividerMode;androidx.appcompat.widget.LinearLayoutCompat$DividerMode +AndroidX.AppCompat.Widget.LinearLayoutCompat+IOrientationMode, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.LinearLayoutCompat$OrientationMode +AndroidX.AppCompat.Widget.LinearLayoutCompat.IOrientationMode;androidx.appcompat.widget.LinearLayoutCompat$OrientationMode +androidx.appcompat.widget.LinearLayoutCompat$OrientationMode;androidx.appcompat.widget.LinearLayoutCompat$OrientationMode +AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.PopupMenu$OnDismissListener +AndroidX.AppCompat.Widget.PopupMenu.IOnDismissListener;androidx.appcompat.widget.PopupMenu$OnDismissListener +androidx.appcompat.widget.PopupMenu$OnDismissListener;androidx.appcompat.widget.PopupMenu$OnDismissListener +AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.PopupMenu_OnDismissListenerImplementor +AndroidX.AppCompat.Widget.PopupMenu.IOnDismissListenerImplementor;mono.androidx.appcompat.widget.PopupMenu_OnDismissListenerImplementor +mono.androidx.appcompat.widget.PopupMenu_OnDismissListenerImplementor;mono.androidx.appcompat.widget.PopupMenu_OnDismissListenerImplementor +AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.PopupMenu$OnMenuItemClickListener +AndroidX.AppCompat.Widget.PopupMenu.IOnMenuItemClickListener;androidx.appcompat.widget.PopupMenu$OnMenuItemClickListener +androidx.appcompat.widget.PopupMenu$OnMenuItemClickListener;androidx.appcompat.widget.PopupMenu$OnMenuItemClickListener +AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.PopupMenu_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.PopupMenu.IOnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.PopupMenu_OnMenuItemClickListenerImplementor +mono.androidx.appcompat.widget.PopupMenu_OnMenuItemClickListenerImplementor;mono.androidx.appcompat.widget.PopupMenu_OnMenuItemClickListenerImplementor +AndroidX.AppCompat.Widget.SearchView+IOnCloseListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.SearchView$OnCloseListener +AndroidX.AppCompat.Widget.SearchView.IOnCloseListener;androidx.appcompat.widget.SearchView$OnCloseListener +androidx.appcompat.widget.SearchView$OnCloseListener;androidx.appcompat.widget.SearchView$OnCloseListener +AndroidX.AppCompat.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.SearchView_OnCloseListenerImplementor +AndroidX.AppCompat.Widget.SearchView.IOnCloseListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnCloseListenerImplementor +mono.androidx.appcompat.widget.SearchView_OnCloseListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnCloseListenerImplementor +AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.SearchView$OnQueryTextListener +AndroidX.AppCompat.Widget.SearchView.IOnQueryTextListener;androidx.appcompat.widget.SearchView$OnQueryTextListener +androidx.appcompat.widget.SearchView$OnQueryTextListener;androidx.appcompat.widget.SearchView$OnQueryTextListener +AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.SearchView_OnQueryTextListenerImplementor +AndroidX.AppCompat.Widget.SearchView.IOnQueryTextListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnQueryTextListenerImplementor +mono.androidx.appcompat.widget.SearchView_OnQueryTextListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnQueryTextListenerImplementor +AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.SearchView$OnSuggestionListener +AndroidX.AppCompat.Widget.SearchView.IOnSuggestionListener;androidx.appcompat.widget.SearchView$OnSuggestionListener +androidx.appcompat.widget.SearchView$OnSuggestionListener;androidx.appcompat.widget.SearchView$OnSuggestionListener +AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.SearchView_OnSuggestionListenerImplementor +AndroidX.AppCompat.Widget.SearchView.IOnSuggestionListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnSuggestionListenerImplementor +mono.androidx.appcompat.widget.SearchView_OnSuggestionListenerImplementor;mono.androidx.appcompat.widget.SearchView_OnSuggestionListenerImplementor +AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ShareActionProvider$OnShareTargetSelectedListener +AndroidX.AppCompat.Widget.ShareActionProvider.IOnShareTargetSelectedListener;androidx.appcompat.widget.ShareActionProvider$OnShareTargetSelectedListener +androidx.appcompat.widget.ShareActionProvider$OnShareTargetSelectedListener;androidx.appcompat.widget.ShareActionProvider$OnShareTargetSelectedListener +AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +AndroidX.AppCompat.Widget.ShareActionProvider.IOnShareTargetSelectedListenerImplementor;mono.androidx.appcompat.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +mono.androidx.appcompat.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor;mono.androidx.appcompat.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListener, Xamarin.AndroidX.AppCompat;androidx.appcompat.widget.ViewStubCompat$OnInflateListener +AndroidX.AppCompat.Widget.ViewStubCompat.IOnInflateListener;androidx.appcompat.widget.ViewStubCompat$OnInflateListener +androidx.appcompat.widget.ViewStubCompat$OnInflateListener;androidx.appcompat.widget.ViewStubCompat$OnInflateListener +AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.AndroidX.AppCompat;mono.androidx.appcompat.widget.ViewStubCompat_OnInflateListenerImplementor +AndroidX.AppCompat.Widget.ViewStubCompat.IOnInflateListenerImplementor;mono.androidx.appcompat.widget.ViewStubCompat_OnInflateListenerImplementor +mono.androidx.appcompat.widget.ViewStubCompat_OnInflateListenerImplementor;mono.androidx.appcompat.widget.ViewStubCompat_OnInflateListenerImplementor +AndroidX.AppCompat.View.ActionMode+ICallback, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.ActionMode$Callback +AndroidX.AppCompat.View.ActionMode.ICallback;androidx.appcompat.view.ActionMode$Callback +androidx.appcompat.view.ActionMode$Callback;androidx.appcompat.view.ActionMode$Callback +AndroidX.AppCompat.View.ICollapsibleActionView, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.CollapsibleActionView +AndroidX.AppCompat.View.ICollapsibleActionView;androidx.appcompat.view.CollapsibleActionView +androidx.appcompat.view.CollapsibleActionView;androidx.appcompat.view.CollapsibleActionView +AndroidX.AppCompat.View.Menu.MenuBuilder+ICallback, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuBuilder$Callback +AndroidX.AppCompat.View.Menu.MenuBuilder.ICallback;androidx.appcompat.view.menu.MenuBuilder$Callback +androidx.appcompat.view.menu.MenuBuilder$Callback;androidx.appcompat.view.menu.MenuBuilder$Callback +AndroidX.AppCompat.View.Menu.MenuBuilder+IItemInvoker, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuBuilder$ItemInvoker +AndroidX.AppCompat.View.Menu.MenuBuilder.IItemInvoker;androidx.appcompat.view.menu.MenuBuilder$ItemInvoker +androidx.appcompat.view.menu.MenuBuilder$ItemInvoker;androidx.appcompat.view.menu.MenuBuilder$ItemInvoker +AndroidX.AppCompat.View.Menu.IMenuPresenterCallback, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuPresenter$Callback +AndroidX.AppCompat.View.Menu.IMenuPresenterCallback;androidx.appcompat.view.menu.MenuPresenter$Callback +androidx.appcompat.view.menu.MenuPresenter$Callback;androidx.appcompat.view.menu.MenuPresenter$Callback +AndroidX.AppCompat.View.Menu.IMenuPresenter, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuPresenter +AndroidX.AppCompat.View.Menu.IMenuPresenter;androidx.appcompat.view.menu.MenuPresenter +androidx.appcompat.view.menu.MenuPresenter;androidx.appcompat.view.menu.MenuPresenter +AndroidX.AppCompat.View.Menu.IMenuViewItemView, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuView$ItemView +AndroidX.AppCompat.View.Menu.IMenuViewItemView;androidx.appcompat.view.menu.MenuView$ItemView +androidx.appcompat.view.menu.MenuView$ItemView;androidx.appcompat.view.menu.MenuView$ItemView +AndroidX.AppCompat.View.Menu.IMenuView, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.MenuView +AndroidX.AppCompat.View.Menu.IMenuView;androidx.appcompat.view.menu.MenuView +androidx.appcompat.view.menu.MenuView;androidx.appcompat.view.menu.MenuView +AndroidX.AppCompat.View.Menu.IShowableListMenu, Xamarin.AndroidX.AppCompat;androidx.appcompat.view.menu.ShowableListMenu +AndroidX.AppCompat.View.Menu.IShowableListMenu;androidx.appcompat.view.menu.ShowableListMenu +androidx.appcompat.view.menu.ShowableListMenu;androidx.appcompat.view.menu.ShowableListMenu +AndroidX.AppCompat.Widget.ResourceManagerInternal+IResourceManagerHooks, Xamarin.AndroidX.AppCompat.AppCompatResources;androidx.appcompat.widget.ResourceManagerInternal$ResourceManagerHooks +AndroidX.AppCompat.Widget.ResourceManagerInternal.IResourceManagerHooks;androidx.appcompat.widget.ResourceManagerInternal$ResourceManagerHooks +androidx.appcompat.widget.ResourceManagerInternal$ResourceManagerHooks;androidx.appcompat.widget.ResourceManagerInternal$ResourceManagerHooks +AndroidX.AppCompat.Graphics.Drawable.DrawableContainer, Xamarin.AndroidX.AppCompat.AppCompatResources;crc6439358991bbf5dbbd.DrawableContainer +AndroidX.AppCompat.Graphics.Drawable.DrawableContainer;crc6439358991bbf5dbbd.DrawableContainer +androidx.appcompat.graphics.drawable.DrawableContainer;crc6439358991bbf5dbbd.DrawableContainer +AndroidX.AppCompat.Graphics.Drawable.DrawableWrapper, Xamarin.AndroidX.AppCompat.AppCompatResources;crc6439358991bbf5dbbd.DrawableWrapper +AndroidX.AppCompat.Graphics.Drawable.DrawableWrapper;crc6439358991bbf5dbbd.DrawableWrapper +androidx.appcompat.graphics.drawable.DrawableWrapper;crc6439358991bbf5dbbd.DrawableWrapper +AndroidX.Arch.Core.Util.IFunction, Xamarin.AndroidX.Arch.Core.Common;androidx.arch.core.util.Function +AndroidX.Arch.Core.Util.IFunction;androidx.arch.core.util.Function +androidx.arch.core.util.Function;androidx.arch.core.util.Function +Android.Support.Customtabs.Trusted.ITrustedWebActivityCallback, Xamarin.AndroidX.Browser;android.support.customtabs.trusted.ITrustedWebActivityCallback +Android.Support.Customtabs.Trusted.ITrustedWebActivityCallback;android.support.customtabs.trusted.ITrustedWebActivityCallback +android.support.customtabs.trusted.ITrustedWebActivityCallback;android.support.customtabs.trusted.ITrustedWebActivityCallback +Android.Support.Customtabs.Trusted.ITrustedWebActivityService, Xamarin.AndroidX.Browser;android.support.customtabs.trusted.ITrustedWebActivityService +Android.Support.Customtabs.Trusted.ITrustedWebActivityService;android.support.customtabs.trusted.ITrustedWebActivityService +android.support.customtabs.trusted.ITrustedWebActivityService;android.support.customtabs.trusted.ITrustedWebActivityService +Android.Support.CustomTabs.ICustomTabsCallback, Xamarin.AndroidX.Browser;android.support.customtabs.ICustomTabsCallback +Android.Support.CustomTabs.ICustomTabsCallback;android.support.customtabs.ICustomTabsCallback +android.support.customtabs.ICustomTabsCallback;android.support.customtabs.ICustomTabsCallback +Android.Support.CustomTabs.ICustomTabsService, Xamarin.AndroidX.Browser;android.support.customtabs.ICustomTabsService +Android.Support.CustomTabs.ICustomTabsService;android.support.customtabs.ICustomTabsService +android.support.customtabs.ICustomTabsService;android.support.customtabs.ICustomTabsService +Android.Support.CustomTabs.IEngagementSignalsCallback, Xamarin.AndroidX.Browser;android.support.customtabs.IEngagementSignalsCallback +Android.Support.CustomTabs.IEngagementSignalsCallback;android.support.customtabs.IEngagementSignalsCallback +android.support.customtabs.IEngagementSignalsCallback;android.support.customtabs.IEngagementSignalsCallback +Android.Support.CustomTabs.IPostMessageService, Xamarin.AndroidX.Browser;android.support.customtabs.IPostMessageService +Android.Support.CustomTabs.IPostMessageService;android.support.customtabs.IPostMessageService +android.support.customtabs.IPostMessageService;android.support.customtabs.IPostMessageService +AndroidX.Browser.Trusted.ITokenStore, Xamarin.AndroidX.Browser;androidx.browser.trusted.TokenStore +AndroidX.Browser.Trusted.ITokenStore;androidx.browser.trusted.TokenStore +androidx.browser.trusted.TokenStore;androidx.browser.trusted.TokenStore +AndroidX.Browser.Trusted.ITrustedWebActivityDisplayMode, Xamarin.AndroidX.Browser;androidx.browser.trusted.TrustedWebActivityDisplayMode +AndroidX.Browser.Trusted.ITrustedWebActivityDisplayMode;androidx.browser.trusted.TrustedWebActivityDisplayMode +androidx.browser.trusted.TrustedWebActivityDisplayMode;androidx.browser.trusted.TrustedWebActivityDisplayMode +AndroidX.Browser.Trusted.ScreenOrientation+ILockType, Xamarin.AndroidX.Browser;androidx.browser.trusted.ScreenOrientation$LockType +AndroidX.Browser.Trusted.ScreenOrientation.ILockType;androidx.browser.trusted.ScreenOrientation$LockType +androidx.browser.trusted.ScreenOrientation$LockType;androidx.browser.trusted.ScreenOrientation$LockType +AndroidX.Browser.Trusted.Sharing.ShareTarget+IEncodingType, Xamarin.AndroidX.Browser;androidx.browser.trusted.sharing.ShareTarget$EncodingType +AndroidX.Browser.Trusted.Sharing.ShareTarget.IEncodingType;androidx.browser.trusted.sharing.ShareTarget$EncodingType +androidx.browser.trusted.sharing.ShareTarget$EncodingType;androidx.browser.trusted.sharing.ShareTarget$EncodingType +AndroidX.Browser.Trusted.Sharing.ShareTarget+IRequestMethod, Xamarin.AndroidX.Browser;androidx.browser.trusted.sharing.ShareTarget$RequestMethod +AndroidX.Browser.Trusted.Sharing.ShareTarget.IRequestMethod;androidx.browser.trusted.sharing.ShareTarget$RequestMethod +androidx.browser.trusted.sharing.ShareTarget$RequestMethod;androidx.browser.trusted.sharing.ShareTarget$RequestMethod +AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsItemId, Xamarin.AndroidX.Browser;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsItemId +AndroidX.Browser.BrowserActions.BrowserActionsIntent.IBrowserActionsItemId;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsItemId +androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsItemId;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsItemId +AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsUrlType, Xamarin.AndroidX.Browser;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsUrlType +AndroidX.Browser.BrowserActions.BrowserActionsIntent.IBrowserActionsUrlType;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsUrlType +androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsUrlType;androidx.browser.browseractions.BrowserActionsIntent$BrowserActionsUrlType +AndroidX.Browser.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsClient_CustomTabsCallbackImpl +AndroidX.Browser.CustomTabs.CustomTabsClient.CustomTabsCallbackImpl;androidx.browser.customtabs.CustomTabsClient_CustomTabsCallbackImpl +androidx.browser.customtabs.CustomTabsClient_CustomTabsCallbackImpl;androidx.browser.customtabs.CustomTabsClient_CustomTabsCallbackImpl +AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.AndroidX.Browser;crc64396a3fe5f8138e3f.CustomTabsServiceConnectionImpl +AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionImpl;crc64396a3fe5f8138e3f.CustomTabsServiceConnectionImpl +androidx.browser.customtabs.CustomTabsServiceConnectionImpl;crc64396a3fe5f8138e3f.CustomTabsServiceConnectionImpl +AndroidX.Browser.CustomTabs.KeepAliveService, Xamarin.AndroidX.Browser;crc64396a3fe5f8138e3f.KeepAliveService +AndroidX.Browser.CustomTabs.KeepAliveService;crc64396a3fe5f8138e3f.KeepAliveService +androidx.browser.customtabs.KeepAliveService;crc64396a3fe5f8138e3f.KeepAliveService +AndroidX.Browser.CustomTabs.CustomTabsCallback+IActivityLayoutState, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsCallback$ActivityLayoutState +AndroidX.Browser.CustomTabs.CustomTabsCallback.IActivityLayoutState;androidx.browser.customtabs.CustomTabsCallback$ActivityLayoutState +androidx.browser.customtabs.CustomTabsCallback$ActivityLayoutState;androidx.browser.customtabs.CustomTabsCallback$ActivityLayoutState +AndroidX.Browser.CustomTabs.CustomTabsFeatures+ICustomTabsFeature, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsFeatures$CustomTabsFeature +AndroidX.Browser.CustomTabs.CustomTabsFeatures.ICustomTabsFeature;androidx.browser.customtabs.CustomTabsFeatures$CustomTabsFeature +androidx.browser.customtabs.CustomTabsFeatures$CustomTabsFeature;androidx.browser.customtabs.CustomTabsFeatures$CustomTabsFeature +AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivityHeightResizeBehavior, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ActivityHeightResizeBehavior +AndroidX.Browser.CustomTabs.CustomTabsIntent.IActivityHeightResizeBehavior;androidx.browser.customtabs.CustomTabsIntent$ActivityHeightResizeBehavior +androidx.browser.customtabs.CustomTabsIntent$ActivityHeightResizeBehavior;androidx.browser.customtabs.CustomTabsIntent$ActivityHeightResizeBehavior +AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetDecorationType, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetDecorationType +AndroidX.Browser.CustomTabs.CustomTabsIntent.IActivitySideSheetDecorationType;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetDecorationType +androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetDecorationType;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetDecorationType +AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetPosition, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent.IActivitySideSheetPosition;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetPosition +androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetPosition;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetRoundedCornersPosition, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetRoundedCornersPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent.IActivitySideSheetRoundedCornersPosition;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetRoundedCornersPosition +androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetRoundedCornersPosition;androidx.browser.customtabs.CustomTabsIntent$ActivitySideSheetRoundedCornersPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent+ICloseButtonPosition, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$CloseButtonPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent.ICloseButtonPosition;androidx.browser.customtabs.CustomTabsIntent$CloseButtonPosition +androidx.browser.customtabs.CustomTabsIntent$CloseButtonPosition;androidx.browser.customtabs.CustomTabsIntent$CloseButtonPosition +AndroidX.Browser.CustomTabs.CustomTabsIntent+IColorScheme, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ColorScheme +AndroidX.Browser.CustomTabs.CustomTabsIntent.IColorScheme;androidx.browser.customtabs.CustomTabsIntent$ColorScheme +androidx.browser.customtabs.CustomTabsIntent$ColorScheme;androidx.browser.customtabs.CustomTabsIntent$ColorScheme +AndroidX.Browser.CustomTabs.CustomTabsIntent+IShareState, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsIntent$ShareState +AndroidX.Browser.CustomTabs.CustomTabsIntent.IShareState;androidx.browser.customtabs.CustomTabsIntent$ShareState +androidx.browser.customtabs.CustomTabsIntent$ShareState;androidx.browser.customtabs.CustomTabsIntent$ShareState +AndroidX.Browser.CustomTabs.CustomTabsService+IFilePurpose, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsService$FilePurpose +AndroidX.Browser.CustomTabs.CustomTabsService.IFilePurpose;androidx.browser.customtabs.CustomTabsService$FilePurpose +androidx.browser.customtabs.CustomTabsService$FilePurpose;androidx.browser.customtabs.CustomTabsService$FilePurpose +AndroidX.Browser.CustomTabs.CustomTabsService+IRelation, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsService$Relation +AndroidX.Browser.CustomTabs.CustomTabsService.IRelation;androidx.browser.customtabs.CustomTabsService$Relation +androidx.browser.customtabs.CustomTabsService$Relation;androidx.browser.customtabs.CustomTabsService$Relation +AndroidX.Browser.CustomTabs.CustomTabsService+IResult, Xamarin.AndroidX.Browser;androidx.browser.customtabs.CustomTabsService$Result +AndroidX.Browser.CustomTabs.CustomTabsService.IResult;androidx.browser.customtabs.CustomTabsService$Result +androidx.browser.customtabs.CustomTabsService$Result;androidx.browser.customtabs.CustomTabsService$Result +AndroidX.Browser.CustomTabs.IEngagementSignalsCallback, Xamarin.AndroidX.Browser;androidx.browser.customtabs.EngagementSignalsCallback +AndroidX.Browser.CustomTabs.IEngagementSignalsCallback;androidx.browser.customtabs.EngagementSignalsCallback +androidx.browser.customtabs.EngagementSignalsCallback;androidx.browser.customtabs.EngagementSignalsCallback +AndroidX.Browser.CustomTabs.IExperimentalMinimizationCallback, Xamarin.AndroidX.Browser;androidx.browser.customtabs.ExperimentalMinimizationCallback +AndroidX.Browser.CustomTabs.IExperimentalMinimizationCallback;androidx.browser.customtabs.ExperimentalMinimizationCallback +androidx.browser.customtabs.ExperimentalMinimizationCallback;androidx.browser.customtabs.ExperimentalMinimizationCallback +AndroidX.Browser.CustomTabs.IPostMessageBackend, Xamarin.AndroidX.Browser;androidx.browser.customtabs.PostMessageBackend +AndroidX.Browser.CustomTabs.IPostMessageBackend;androidx.browser.customtabs.PostMessageBackend +androidx.browser.customtabs.PostMessageBackend;androidx.browser.customtabs.PostMessageBackend +AndroidX.Concurrent.Futures.CallbackToFutureAdapter+IResolver, Xamarin.AndroidX.Concurrent.Futures;androidx.concurrent.futures.CallbackToFutureAdapter$Resolver +AndroidX.Concurrent.Futures.CallbackToFutureAdapter.IResolver;androidx.concurrent.futures.CallbackToFutureAdapter$Resolver +androidx.concurrent.futures.CallbackToFutureAdapter$Resolver;androidx.concurrent.futures.CallbackToFutureAdapter$Resolver +AndroidX.ConstraintLayout.Widget.ConstraintLayout+IValueModifier, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.widget.ConstraintLayout$ValueModifier +AndroidX.ConstraintLayout.Widget.ConstraintLayout.IValueModifier;androidx.constraintlayout.widget.ConstraintLayout$ValueModifier +androidx.constraintlayout.widget.ConstraintLayout$ValueModifier;androidx.constraintlayout.widget.ConstraintLayout$ValueModifier +AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListener, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.widget.SharedValues$SharedValuesListener +AndroidX.ConstraintLayout.Widget.SharedValues.ISharedValuesListener;androidx.constraintlayout.widget.SharedValues$SharedValuesListener +androidx.constraintlayout.widget.SharedValues$SharedValuesListener;androidx.constraintlayout.widget.SharedValues$SharedValuesListener +AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListenerImplementor, Xamarin.AndroidX.ConstraintLayout;mono.androidx.constraintlayout.widget.SharedValues_SharedValuesListenerImplementor +AndroidX.ConstraintLayout.Widget.SharedValues.ISharedValuesListenerImplementor;mono.androidx.constraintlayout.widget.SharedValues_SharedValuesListenerImplementor +mono.androidx.constraintlayout.widget.SharedValues_SharedValuesListenerImplementor;mono.androidx.constraintlayout.widget.SharedValues_SharedValuesListenerImplementor +AndroidX.ConstraintLayout.Helper.Widget.Carousel+IAdapter, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.helper.widget.Carousel$Adapter +AndroidX.ConstraintLayout.Helper.Widget.Carousel.IAdapter;androidx.constraintlayout.helper.widget.Carousel$Adapter +androidx.constraintlayout.helper.widget.Carousel$Adapter;androidx.constraintlayout.helper.widget.Carousel$Adapter +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+IMotionTracker, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.MotionLayout$MotionTracker +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout.IMotionTracker;androidx.constraintlayout.motion.widget.MotionLayout$MotionTracker +androidx.constraintlayout.motion.widget.MotionLayout$MotionTracker;androidx.constraintlayout.motion.widget.MotionLayout$MotionTracker +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListener, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout.ITransitionListener;androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener +androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener;androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListenerImplementor, Xamarin.AndroidX.ConstraintLayout;mono.androidx.constraintlayout.motion.widget.MotionLayout_TransitionListenerImplementor +AndroidX.ConstraintLayout.Motion.Widget.MotionLayout.ITransitionListenerImplementor;mono.androidx.constraintlayout.motion.widget.MotionLayout_TransitionListenerImplementor +mono.androidx.constraintlayout.motion.widget.MotionLayout_TransitionListenerImplementor;mono.androidx.constraintlayout.motion.widget.MotionLayout_TransitionListenerImplementor +AndroidX.ConstraintLayout.Motion.Widget.IAnimatable, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.Animatable +AndroidX.ConstraintLayout.Motion.Widget.IAnimatable;androidx.constraintlayout.motion.widget.Animatable +androidx.constraintlayout.motion.widget.Animatable;androidx.constraintlayout.motion.widget.Animatable +AndroidX.ConstraintLayout.Motion.Widget.ICustomFloatAttributes, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.CustomFloatAttributes +AndroidX.ConstraintLayout.Motion.Widget.ICustomFloatAttributes;androidx.constraintlayout.motion.widget.CustomFloatAttributes +androidx.constraintlayout.motion.widget.CustomFloatAttributes;androidx.constraintlayout.motion.widget.CustomFloatAttributes +AndroidX.ConstraintLayout.Motion.Widget.IFloatLayout, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.FloatLayout +AndroidX.ConstraintLayout.Motion.Widget.IFloatLayout;androidx.constraintlayout.motion.widget.FloatLayout +androidx.constraintlayout.motion.widget.FloatLayout;androidx.constraintlayout.motion.widget.FloatLayout +AndroidX.ConstraintLayout.Motion.Widget.IMotionHelperInterface, Xamarin.AndroidX.ConstraintLayout;androidx.constraintlayout.motion.widget.MotionHelperInterface +AndroidX.ConstraintLayout.Motion.Widget.IMotionHelperInterface;androidx.constraintlayout.motion.widget.MotionHelperInterface +androidx.constraintlayout.motion.widget.MotionHelperInterface;androidx.constraintlayout.motion.widget.MotionHelperInterface +AndroidX.ConstraintLayout.Core.ArrayRow+IArrayRowVariables, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.ArrayRow$ArrayRowVariables +AndroidX.ConstraintLayout.Core.ArrayRow.IArrayRowVariables;androidx.constraintlayout.core.ArrayRow$ArrayRowVariables +androidx.constraintlayout.core.ArrayRow$ArrayRowVariables;androidx.constraintlayout.core.ArrayRow$ArrayRowVariables +AndroidX.ConstraintLayout.Core.Widgets.IHelper, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.widgets.Helper +AndroidX.ConstraintLayout.Core.Widgets.IHelper;androidx.constraintlayout.core.widgets.Helper +androidx.constraintlayout.core.widgets.Helper;androidx.constraintlayout.core.widgets.Helper +AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure+IMeasurer, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.widgets.analyzer.BasicMeasure$Measurer +AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure.IMeasurer;androidx.constraintlayout.core.widgets.analyzer.BasicMeasure$Measurer +androidx.constraintlayout.core.widgets.analyzer.BasicMeasure$Measurer;androidx.constraintlayout.core.widgets.analyzer.BasicMeasure$Measurer +AndroidX.ConstraintLayout.Core.Widgets.Analyzer.IDependency, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.widgets.analyzer.Dependency +AndroidX.ConstraintLayout.Core.Widgets.Analyzer.IDependency;androidx.constraintlayout.core.widgets.analyzer.Dependency +androidx.constraintlayout.core.widgets.analyzer.Dependency;androidx.constraintlayout.core.widgets.analyzer.Dependency +AndroidX.ConstraintLayout.Core.State.ConstraintReference+IConstraintReferenceFactory, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.ConstraintReference$ConstraintReferenceFactory +AndroidX.ConstraintLayout.Core.State.ConstraintReference.IConstraintReferenceFactory;androidx.constraintlayout.core.state.ConstraintReference$ConstraintReferenceFactory +androidx.constraintlayout.core.state.ConstraintReference$ConstraintReferenceFactory;androidx.constraintlayout.core.state.ConstraintReference$ConstraintReferenceFactory +AndroidX.ConstraintLayout.Core.State.ICoreMotionScene, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.CoreMotionScene +AndroidX.ConstraintLayout.Core.State.ICoreMotionScene;androidx.constraintlayout.core.state.CoreMotionScene +androidx.constraintlayout.core.state.CoreMotionScene;androidx.constraintlayout.core.state.CoreMotionScene +AndroidX.ConstraintLayout.Core.State.ICorePixelDp, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.CorePixelDp +AndroidX.ConstraintLayout.Core.State.ICorePixelDp;androidx.constraintlayout.core.state.CorePixelDp +androidx.constraintlayout.core.state.CorePixelDp;androidx.constraintlayout.core.state.CorePixelDp +AndroidX.ConstraintLayout.Core.State.IInterpolator, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.Interpolator +AndroidX.ConstraintLayout.Core.State.IInterpolator;androidx.constraintlayout.core.state.Interpolator +androidx.constraintlayout.core.state.Interpolator;androidx.constraintlayout.core.state.Interpolator +AndroidX.ConstraintLayout.Core.State.IReference, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.Reference +AndroidX.ConstraintLayout.Core.State.IReference;androidx.constraintlayout.core.state.Reference +androidx.constraintlayout.core.state.Reference;androidx.constraintlayout.core.state.Reference +AndroidX.ConstraintLayout.Core.State.IRegistryCallback, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.RegistryCallback +AndroidX.ConstraintLayout.Core.State.IRegistryCallback;androidx.constraintlayout.core.state.RegistryCallback +androidx.constraintlayout.core.state.RegistryCallback;androidx.constraintlayout.core.state.RegistryCallback +AndroidX.ConstraintLayout.Core.State.Helpers.IFacade, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.state.helpers.Facade +AndroidX.ConstraintLayout.Core.State.Helpers.IFacade;androidx.constraintlayout.core.state.helpers.Facade +androidx.constraintlayout.core.state.helpers.Facade;androidx.constraintlayout.core.state.helpers.Facade +AndroidX.ConstraintLayout.Core.Motion.Utils.IDifferentialInterpolator, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.DifferentialInterpolator +AndroidX.ConstraintLayout.Core.Motion.Utils.IDifferentialInterpolator;androidx.constraintlayout.core.motion.utils.DifferentialInterpolator +androidx.constraintlayout.core.motion.utils.DifferentialInterpolator;androidx.constraintlayout.core.motion.utils.DifferentialInterpolator +AndroidX.ConstraintLayout.Core.Motion.Utils.IStopEngine, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.StopEngine +AndroidX.ConstraintLayout.Core.Motion.Utils.IStopEngine;androidx.constraintlayout.core.motion.utils.StopEngine +androidx.constraintlayout.core.motion.utils.StopEngine;androidx.constraintlayout.core.motion.utils.StopEngine +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesAttributesType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$AttributesType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesAttributesType;androidx.constraintlayout.core.motion.utils.TypedValues$AttributesType +androidx.constraintlayout.core.motion.utils.TypedValues$AttributesType;androidx.constraintlayout.core.motion.utils.TypedValues$AttributesType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCustom, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$Custom +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCustom;androidx.constraintlayout.core.motion.utils.TypedValues$Custom +androidx.constraintlayout.core.motion.utils.TypedValues$Custom;androidx.constraintlayout.core.motion.utils.TypedValues$Custom +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCycleType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$CycleType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCycleType;androidx.constraintlayout.core.motion.utils.TypedValues$CycleType +androidx.constraintlayout.core.motion.utils.TypedValues$CycleType;androidx.constraintlayout.core.motion.utils.TypedValues$CycleType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionScene, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$MotionScene +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionScene;androidx.constraintlayout.core.motion.utils.TypedValues$MotionScene +androidx.constraintlayout.core.motion.utils.TypedValues$MotionScene;androidx.constraintlayout.core.motion.utils.TypedValues$MotionScene +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$MotionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionType;androidx.constraintlayout.core.motion.utils.TypedValues$MotionType +androidx.constraintlayout.core.motion.utils.TypedValues$MotionType;androidx.constraintlayout.core.motion.utils.TypedValues$MotionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesOnSwipe, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$OnSwipe +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesOnSwipe;androidx.constraintlayout.core.motion.utils.TypedValues$OnSwipe +androidx.constraintlayout.core.motion.utils.TypedValues$OnSwipe;androidx.constraintlayout.core.motion.utils.TypedValues$OnSwipe +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesPositionType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$PositionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesPositionType;androidx.constraintlayout.core.motion.utils.TypedValues$PositionType +androidx.constraintlayout.core.motion.utils.TypedValues$PositionType;androidx.constraintlayout.core.motion.utils.TypedValues$PositionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTransitionType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$TransitionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTransitionType;androidx.constraintlayout.core.motion.utils.TypedValues$TransitionType +androidx.constraintlayout.core.motion.utils.TypedValues$TransitionType;androidx.constraintlayout.core.motion.utils.TypedValues$TransitionType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTriggerType, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues$TriggerType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTriggerType;androidx.constraintlayout.core.motion.utils.TypedValues$TriggerType +androidx.constraintlayout.core.motion.utils.TypedValues$TriggerType;androidx.constraintlayout.core.motion.utils.TypedValues$TriggerType +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValues, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.TypedValues +AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValues;androidx.constraintlayout.core.motion.utils.TypedValues +androidx.constraintlayout.core.motion.utils.TypedValues;androidx.constraintlayout.core.motion.utils.TypedValues +AndroidX.ConstraintLayout.Core.Motion.Utils.Utils+IDebugHandle, Xamarin.AndroidX.ConstraintLayout.Core;androidx.constraintlayout.core.motion.utils.Utils$DebugHandle +AndroidX.ConstraintLayout.Core.Motion.Utils.Utils.IDebugHandle;androidx.constraintlayout.core.motion.utils.Utils$DebugHandle +androidx.constraintlayout.core.motion.utils.Utils$DebugHandle;androidx.constraintlayout.core.motion.utils.Utils$DebugHandle +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IAttachedBehavior, Xamarin.AndroidX.CoordinatorLayout;androidx.coordinatorlayout.widget.CoordinatorLayout$AttachedBehavior +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout.IAttachedBehavior;androidx.coordinatorlayout.widget.CoordinatorLayout$AttachedBehavior +androidx.coordinatorlayout.widget.CoordinatorLayout$AttachedBehavior;androidx.coordinatorlayout.widget.CoordinatorLayout$AttachedBehavior +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDefaultBehavior, Xamarin.AndroidX.CoordinatorLayout;androidx.coordinatorlayout.widget.CoordinatorLayout$DefaultBehavior +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout.IDefaultBehavior;androidx.coordinatorlayout.widget.CoordinatorLayout$DefaultBehavior +androidx.coordinatorlayout.widget.CoordinatorLayout$DefaultBehavior;androidx.coordinatorlayout.widget.CoordinatorLayout$DefaultBehavior +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDispatchChangeEvent, Xamarin.AndroidX.CoordinatorLayout;androidx.coordinatorlayout.widget.CoordinatorLayout$DispatchChangeEvent +AndroidX.CoordinatorLayout.Widget.CoordinatorLayout.IDispatchChangeEvent;androidx.coordinatorlayout.widget.CoordinatorLayout$DispatchChangeEvent +androidx.coordinatorlayout.widget.CoordinatorLayout$DispatchChangeEvent;androidx.coordinatorlayout.widget.CoordinatorLayout$DispatchChangeEvent +Android.Support.V4.OS.IResultReceiver, Xamarin.AndroidX.Core;android.support.v4.os.IResultReceiver +Android.Support.V4.OS.IResultReceiver;android.support.v4.os.IResultReceiver +android.support.v4.os.IResultReceiver;android.support.v4.os.IResultReceiver +Android.Support.V4.OS.IResultReceiver2, Xamarin.AndroidX.Core;android.support.v4.os.IResultReceiver2 +Android.Support.V4.OS.IResultReceiver2;android.support.v4.os.IResultReceiver2 +android.support.v4.os.IResultReceiver2;android.support.v4.os.IResultReceiver2 +Android.Support.V4.App.INotificationSideChannel, Xamarin.AndroidX.Core;android.support.v4.app.INotificationSideChannel +Android.Support.V4.App.INotificationSideChannel;android.support.v4.app.INotificationSideChannel +android.support.v4.app.INotificationSideChannel;android.support.v4.app.INotificationSideChannel +AndroidX.Core.Util.IConsumer, Xamarin.AndroidX.Core;androidx.core.util.Consumer +AndroidX.Core.Util.IConsumer;androidx.core.util.Consumer +androidx.core.util.Consumer;androidx.core.util.Consumer +AndroidX.Core.Util.IFunction, Xamarin.AndroidX.Core;androidx.core.util.Function +AndroidX.Core.Util.IFunction;androidx.core.util.Function +androidx.core.util.Function;androidx.core.util.Function +AndroidX.Core.Util.IPredicate, Xamarin.AndroidX.Core;androidx.core.util.Predicate +AndroidX.Core.Util.IPredicate;androidx.core.util.Predicate +androidx.core.util.Predicate;androidx.core.util.Predicate +AndroidX.Core.Util.ISupplier, Xamarin.AndroidX.Core;androidx.core.util.Supplier +AndroidX.Core.Util.ISupplier;androidx.core.util.Supplier +androidx.core.util.Supplier;androidx.core.util.Supplier +AndroidX.Core.Util.Pools+IPool, Xamarin.AndroidX.Core;androidx.core.util.Pools$Pool +AndroidX.Core.Util.Pools.IPool;androidx.core.util.Pools$Pool +androidx.core.util.Pools$Pool;androidx.core.util.Pools$Pool +AndroidX.Core.Util.TypedValueCompat+IComplexDimensionUnit, Xamarin.AndroidX.Core;androidx.core.util.TypedValueCompat$ComplexDimensionUnit +AndroidX.Core.Util.TypedValueCompat.IComplexDimensionUnit;androidx.core.util.TypedValueCompat$ComplexDimensionUnit +androidx.core.util.TypedValueCompat$ComplexDimensionUnit;androidx.core.util.TypedValueCompat$ComplexDimensionUnit +AndroidX.Core.Provider.FontsContractCompat+FontRequestCallback+IFontRequestFailReason, Xamarin.AndroidX.Core;androidx.core.provider.FontsContractCompat$FontRequestCallback$FontRequestFailReason +AndroidX.Core.Provider.FontsContractCompat.FontRequestCallback.IFontRequestFailReason;androidx.core.provider.FontsContractCompat$FontRequestCallback$FontRequestFailReason +androidx.core.provider.FontsContractCompat$FontRequestCallback$FontRequestFailReason;androidx.core.provider.FontsContractCompat$FontRequestCallback$FontRequestFailReason +AndroidX.Core.Provider.FontsContractCompat+ITypefaceStyle, Xamarin.AndroidX.Core;androidx.core.provider.FontsContractCompat$TypefaceStyle +AndroidX.Core.Provider.FontsContractCompat.ITypefaceStyle;androidx.core.provider.FontsContractCompat$TypefaceStyle +androidx.core.provider.FontsContractCompat$TypefaceStyle;androidx.core.provider.FontsContractCompat$TypefaceStyle +AndroidX.Core.Provider.SelfDestructiveThread+IReplyCallback, Xamarin.AndroidX.Core;androidx.core.provider.SelfDestructiveThread$ReplyCallback +AndroidX.Core.Provider.SelfDestructiveThread.IReplyCallback;androidx.core.provider.SelfDestructiveThread$ReplyCallback +androidx.core.provider.SelfDestructiveThread$ReplyCallback;androidx.core.provider.SelfDestructiveThread$ReplyCallback +AndroidX.Core.OS.BuildCompat+IPrereleaseSdkCheck, Xamarin.AndroidX.Core;androidx.core.os.BuildCompat$PrereleaseSdkCheck +AndroidX.Core.OS.BuildCompat.IPrereleaseSdkCheck;androidx.core.os.BuildCompat$PrereleaseSdkCheck +androidx.core.os.BuildCompat$PrereleaseSdkCheck;androidx.core.os.BuildCompat$PrereleaseSdkCheck +AndroidX.Core.OS.CancellationSignal+IOnCancelListener, Xamarin.AndroidX.Core;androidx.core.os.CancellationSignal$OnCancelListener +AndroidX.Core.OS.CancellationSignal.IOnCancelListener;androidx.core.os.CancellationSignal$OnCancelListener +androidx.core.os.CancellationSignal$OnCancelListener;androidx.core.os.CancellationSignal$OnCancelListener +AndroidX.Core.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.os.CancellationSignal_OnCancelListenerImplementor +AndroidX.Core.OS.CancellationSignal.IOnCancelListenerImplementor;mono.androidx.core.os.CancellationSignal_OnCancelListenerImplementor +mono.androidx.core.os.CancellationSignal_OnCancelListenerImplementor;mono.androidx.core.os.CancellationSignal_OnCancelListenerImplementor +AndroidX.Core.OS.IOutcomeReceiverCompat, Xamarin.AndroidX.Core;androidx.core.os.OutcomeReceiverCompat +AndroidX.Core.OS.IOutcomeReceiverCompat;androidx.core.os.OutcomeReceiverCompat +androidx.core.os.OutcomeReceiverCompat;androidx.core.os.OutcomeReceiverCompat +AndroidX.Core.OS.IParcelableCompatCreatorCallbacks, Xamarin.AndroidX.Core;androidx.core.os.ParcelableCompatCreatorCallbacks +AndroidX.Core.OS.IParcelableCompatCreatorCallbacks;androidx.core.os.ParcelableCompatCreatorCallbacks +androidx.core.os.ParcelableCompatCreatorCallbacks;androidx.core.os.ParcelableCompatCreatorCallbacks +AndroidX.Core.Net.ConnectivityManagerCompat+IRestrictBackgroundStatus, Xamarin.AndroidX.Core;androidx.core.net.ConnectivityManagerCompat$RestrictBackgroundStatus +AndroidX.Core.Net.ConnectivityManagerCompat.IRestrictBackgroundStatus;androidx.core.net.ConnectivityManagerCompat$RestrictBackgroundStatus +androidx.core.net.ConnectivityManagerCompat$RestrictBackgroundStatus;androidx.core.net.ConnectivityManagerCompat$RestrictBackgroundStatus +AndroidX.Core.Location.GnssStatusCompat+IConstellationType, Xamarin.AndroidX.Core;androidx.core.location.GnssStatusCompat$ConstellationType +AndroidX.Core.Location.GnssStatusCompat.IConstellationType;androidx.core.location.GnssStatusCompat$ConstellationType +androidx.core.location.GnssStatusCompat$ConstellationType;androidx.core.location.GnssStatusCompat$ConstellationType +AndroidX.Core.Location.ILocationListenerCompat, Xamarin.AndroidX.Core;androidx.core.location.LocationListenerCompat +AndroidX.Core.Location.ILocationListenerCompat;androidx.core.location.LocationListenerCompat +androidx.core.location.LocationListenerCompat;androidx.core.location.LocationListenerCompat +AndroidX.Core.Location.LocationRequestCompat+IQuality, Xamarin.AndroidX.Core;androidx.core.location.LocationRequestCompat$Quality +AndroidX.Core.Location.LocationRequestCompat.IQuality;androidx.core.location.LocationRequestCompat$Quality +androidx.core.location.LocationRequestCompat$Quality;androidx.core.location.LocationRequestCompat$Quality +AndroidX.Core.Internal.View.ISupportMenu, Xamarin.AndroidX.Core;androidx.core.internal.view.SupportMenu +AndroidX.Core.Internal.View.ISupportMenu;androidx.core.internal.view.SupportMenu +androidx.core.internal.view.SupportMenu;androidx.core.internal.view.SupportMenu +AndroidX.Core.Internal.View.ISupportMenuItem, Xamarin.AndroidX.Core;androidx.core.internal.view.SupportMenuItem +AndroidX.Core.Internal.View.ISupportMenuItem;androidx.core.internal.view.SupportMenuItem +androidx.core.internal.view.SupportMenuItem;androidx.core.internal.view.SupportMenuItem +AndroidX.Core.Internal.View.ISupportSubMenu, Xamarin.AndroidX.Core;androidx.core.internal.view.SupportSubMenu +AndroidX.Core.Internal.View.ISupportSubMenu;androidx.core.internal.view.SupportSubMenu +androidx.core.internal.view.SupportSubMenu;androidx.core.internal.view.SupportSubMenu +AndroidX.Core.Hardware.Display.IExperimentalDisplayApi, Xamarin.AndroidX.Core;androidx.core.hardware.display.ExperimentalDisplayApi +AndroidX.Core.Hardware.Display.IExperimentalDisplayApi;androidx.core.hardware.display.ExperimentalDisplayApi +androidx.core.hardware.display.ExperimentalDisplayApi;androidx.core.hardware.display.ExperimentalDisplayApi +AndroidX.Core.Graphics.Drawable.IconCompat+IIconType, Xamarin.AndroidX.Core;androidx.core.graphics.drawable.IconCompat$IconType +AndroidX.Core.Graphics.Drawable.IconCompat.IIconType;androidx.core.graphics.drawable.IconCompat$IconType +androidx.core.graphics.drawable.IconCompat$IconType;androidx.core.graphics.drawable.IconCompat$IconType +AndroidX.Core.Graphics.Drawable.ITintAwareDrawable, Xamarin.AndroidX.Core;androidx.core.graphics.drawable.TintAwareDrawable +AndroidX.Core.Graphics.Drawable.ITintAwareDrawable;androidx.core.graphics.drawable.TintAwareDrawable +androidx.core.graphics.drawable.TintAwareDrawable;androidx.core.graphics.drawable.TintAwareDrawable +AndroidX.Core.Graphics.Drawable.IWrappedDrawable, Xamarin.AndroidX.Core;androidx.core.graphics.drawable.WrappedDrawable +AndroidX.Core.Graphics.Drawable.IWrappedDrawable;androidx.core.graphics.drawable.WrappedDrawable +androidx.core.graphics.drawable.WrappedDrawable;androidx.core.graphics.drawable.WrappedDrawable +AndroidX.Core.Content.ContextCompat+IRegisterReceiverFlags, Xamarin.AndroidX.Core;androidx.core.content.ContextCompat$RegisterReceiverFlags +AndroidX.Core.Content.ContextCompat.IRegisterReceiverFlags;androidx.core.content.ContextCompat$RegisterReceiverFlags +androidx.core.content.ContextCompat$RegisterReceiverFlags;androidx.core.content.ContextCompat$RegisterReceiverFlags +AndroidX.Core.Content.IOnConfigurationChangedProvider, Xamarin.AndroidX.Core;androidx.core.content.OnConfigurationChangedProvider +AndroidX.Core.Content.IOnConfigurationChangedProvider;androidx.core.content.OnConfigurationChangedProvider +androidx.core.content.OnConfigurationChangedProvider;androidx.core.content.OnConfigurationChangedProvider +AndroidX.Core.Content.IOnTrimMemoryProvider, Xamarin.AndroidX.Core;androidx.core.content.OnTrimMemoryProvider +AndroidX.Core.Content.IOnTrimMemoryProvider;androidx.core.content.OnTrimMemoryProvider +androidx.core.content.OnTrimMemoryProvider;androidx.core.content.OnTrimMemoryProvider +AndroidX.Core.Content.PackageManagerCompat+IUnusedAppRestrictionsStatus, Xamarin.AndroidX.Core;androidx.core.content.PackageManagerCompat$UnusedAppRestrictionsStatus +AndroidX.Core.Content.PackageManagerCompat.IUnusedAppRestrictionsStatus;androidx.core.content.PackageManagerCompat$UnusedAppRestrictionsStatus +androidx.core.content.PackageManagerCompat$UnusedAppRestrictionsStatus;androidx.core.content.PackageManagerCompat$UnusedAppRestrictionsStatus +AndroidX.Core.Content.PermissionChecker+IPermissionResult, Xamarin.AndroidX.Core;androidx.core.content.PermissionChecker$PermissionResult +AndroidX.Core.Content.PermissionChecker.IPermissionResult;androidx.core.content.PermissionChecker$PermissionResult +androidx.core.content.PermissionChecker$PermissionResult;androidx.core.content.PermissionChecker$PermissionResult +AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFamilyResourceEntry, Xamarin.AndroidX.Core;androidx.core.content.res.FontResourcesParserCompat$FamilyResourceEntry +AndroidX.Core.Content.Resources.FontResourcesParserCompat.IFamilyResourceEntry;androidx.core.content.res.FontResourcesParserCompat$FamilyResourceEntry +androidx.core.content.res.FontResourcesParserCompat$FamilyResourceEntry;androidx.core.content.res.FontResourcesParserCompat$FamilyResourceEntry +AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFetchStrategy, Xamarin.AndroidX.Core;androidx.core.content.res.FontResourcesParserCompat$FetchStrategy +AndroidX.Core.Content.Resources.FontResourcesParserCompat.IFetchStrategy;androidx.core.content.res.FontResourcesParserCompat$FetchStrategy +androidx.core.content.res.FontResourcesParserCompat$FetchStrategy;androidx.core.content.res.FontResourcesParserCompat$FetchStrategy +AndroidX.Core.Content.PM.PermissionInfoCompat+IProtection, Xamarin.AndroidX.Core;androidx.core.content.pm.PermissionInfoCompat$Protection +AndroidX.Core.Content.PM.PermissionInfoCompat.IProtection;androidx.core.content.pm.PermissionInfoCompat$Protection +androidx.core.content.pm.PermissionInfoCompat$Protection;androidx.core.content.pm.PermissionInfoCompat$Protection +AndroidX.Core.Content.PM.PermissionInfoCompat+IProtectionFlags, Xamarin.AndroidX.Core;androidx.core.content.pm.PermissionInfoCompat$ProtectionFlags +AndroidX.Core.Content.PM.PermissionInfoCompat.IProtectionFlags;androidx.core.content.pm.PermissionInfoCompat$ProtectionFlags +androidx.core.content.pm.PermissionInfoCompat$ProtectionFlags;androidx.core.content.pm.PermissionInfoCompat$ProtectionFlags +AndroidX.Core.Content.PM.ShortcutInfoCompat+ISurface, Xamarin.AndroidX.Core;androidx.core.content.pm.ShortcutInfoCompat$Surface +AndroidX.Core.Content.PM.ShortcutInfoCompat.ISurface;androidx.core.content.pm.ShortcutInfoCompat$Surface +androidx.core.content.pm.ShortcutInfoCompat$Surface;androidx.core.content.pm.ShortcutInfoCompat$Surface +AndroidX.Core.Content.PM.ShortcutManagerCompat+IShortcutMatchFlags, Xamarin.AndroidX.Core;androidx.core.content.pm.ShortcutManagerCompat$ShortcutMatchFlags +AndroidX.Core.Content.PM.ShortcutManagerCompat.IShortcutMatchFlags;androidx.core.content.pm.ShortcutManagerCompat$ShortcutMatchFlags +androidx.core.content.pm.ShortcutManagerCompat$ShortcutMatchFlags;androidx.core.content.pm.ShortcutManagerCompat$ShortcutMatchFlags +AndroidX.Core.App.ActivityCompat+IOnRequestPermissionsResultCallback, Xamarin.AndroidX.Core;androidx.core.app.ActivityCompat$OnRequestPermissionsResultCallback +AndroidX.Core.App.ActivityCompat.IOnRequestPermissionsResultCallback;androidx.core.app.ActivityCompat$OnRequestPermissionsResultCallback +androidx.core.app.ActivityCompat$OnRequestPermissionsResultCallback;androidx.core.app.ActivityCompat$OnRequestPermissionsResultCallback +AndroidX.Core.App.ActivityCompat+IPermissionCompatDelegate, Xamarin.AndroidX.Core;androidx.core.app.ActivityCompat$PermissionCompatDelegate +AndroidX.Core.App.ActivityCompat.IPermissionCompatDelegate;androidx.core.app.ActivityCompat$PermissionCompatDelegate +androidx.core.app.ActivityCompat$PermissionCompatDelegate;androidx.core.app.ActivityCompat$PermissionCompatDelegate +AndroidX.Core.App.ActivityCompat+IRequestPermissionsRequestCodeValidator, Xamarin.AndroidX.Core;androidx.core.app.ActivityCompat$RequestPermissionsRequestCodeValidator +AndroidX.Core.App.ActivityCompat.IRequestPermissionsRequestCodeValidator;androidx.core.app.ActivityCompat$RequestPermissionsRequestCodeValidator +androidx.core.app.ActivityCompat$RequestPermissionsRequestCodeValidator;androidx.core.app.ActivityCompat$RequestPermissionsRequestCodeValidator +AndroidX.Core.App.ActivityOptionsCompat+IBackgroundActivityStartMode, Xamarin.AndroidX.Core;androidx.core.app.ActivityOptionsCompat$BackgroundActivityStartMode +AndroidX.Core.App.ActivityOptionsCompat.IBackgroundActivityStartMode;androidx.core.app.ActivityOptionsCompat$BackgroundActivityStartMode +androidx.core.app.ActivityOptionsCompat$BackgroundActivityStartMode;androidx.core.app.ActivityOptionsCompat$BackgroundActivityStartMode +AndroidX.Core.App.CoreComponentFactory+ICompatWrapped, Xamarin.AndroidX.Core;androidx.core.app.CoreComponentFactory$CompatWrapped +AndroidX.Core.App.CoreComponentFactory.ICompatWrapped;androidx.core.app.CoreComponentFactory$CompatWrapped +androidx.core.app.CoreComponentFactory$CompatWrapped;androidx.core.app.CoreComponentFactory$CompatWrapped +AndroidX.Core.App.FrameMetricsAggregator+IMetricType, Xamarin.AndroidX.Core;androidx.core.app.FrameMetricsAggregator$MetricType +AndroidX.Core.App.FrameMetricsAggregator.IMetricType;androidx.core.app.FrameMetricsAggregator$MetricType +androidx.core.app.FrameMetricsAggregator$MetricType;androidx.core.app.FrameMetricsAggregator$MetricType +AndroidX.Core.App.GrammaticalInflectionManagerCompat+IGrammaticalGender, Xamarin.AndroidX.Core;androidx.core.app.GrammaticalInflectionManagerCompat$GrammaticalGender +AndroidX.Core.App.GrammaticalInflectionManagerCompat.IGrammaticalGender;androidx.core.app.GrammaticalInflectionManagerCompat$GrammaticalGender +androidx.core.app.GrammaticalInflectionManagerCompat$GrammaticalGender;androidx.core.app.GrammaticalInflectionManagerCompat$GrammaticalGender +AndroidX.Core.App.INotificationBuilderWithBuilderAccessor, Xamarin.AndroidX.Core;androidx.core.app.NotificationBuilderWithBuilderAccessor +AndroidX.Core.App.INotificationBuilderWithBuilderAccessor;androidx.core.app.NotificationBuilderWithBuilderAccessor +androidx.core.app.NotificationBuilderWithBuilderAccessor;androidx.core.app.NotificationBuilderWithBuilderAccessor +AndroidX.Core.App.IOnMultiWindowModeChangedProvider, Xamarin.AndroidX.Core;androidx.core.app.OnMultiWindowModeChangedProvider +AndroidX.Core.App.IOnMultiWindowModeChangedProvider;androidx.core.app.OnMultiWindowModeChangedProvider +androidx.core.app.OnMultiWindowModeChangedProvider;androidx.core.app.OnMultiWindowModeChangedProvider +AndroidX.Core.App.IOnNewIntentProvider, Xamarin.AndroidX.Core;androidx.core.app.OnNewIntentProvider +AndroidX.Core.App.IOnNewIntentProvider;androidx.core.app.OnNewIntentProvider +androidx.core.app.OnNewIntentProvider;androidx.core.app.OnNewIntentProvider +AndroidX.Core.App.IOnPictureInPictureModeChangedProvider, Xamarin.AndroidX.Core;androidx.core.app.OnPictureInPictureModeChangedProvider +AndroidX.Core.App.IOnPictureInPictureModeChangedProvider;androidx.core.app.OnPictureInPictureModeChangedProvider +androidx.core.app.OnPictureInPictureModeChangedProvider;androidx.core.app.OnPictureInPictureModeChangedProvider +AndroidX.Core.App.IOnUserLeaveHintProvider, Xamarin.AndroidX.Core;androidx.core.app.OnUserLeaveHintProvider +AndroidX.Core.App.IOnUserLeaveHintProvider;androidx.core.app.OnUserLeaveHintProvider +androidx.core.app.OnUserLeaveHintProvider;androidx.core.app.OnUserLeaveHintProvider +AndroidX.Core.App.NotificationCompat+Action+IExtender, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$Action$Extender +AndroidX.Core.App.NotificationCompat.Action.IExtender;androidx.core.app.NotificationCompat$Action$Extender +androidx.core.app.NotificationCompat$Action$Extender;androidx.core.app.NotificationCompat$Action$Extender +AndroidX.Core.App.NotificationCompat+Action+ISemanticAction, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$Action$SemanticAction +AndroidX.Core.App.NotificationCompat.Action.ISemanticAction;androidx.core.app.NotificationCompat$Action$SemanticAction +androidx.core.app.NotificationCompat$Action$SemanticAction;androidx.core.app.NotificationCompat$Action$SemanticAction +AndroidX.Core.App.NotificationCompat+IBadgeIconType, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$BadgeIconType +AndroidX.Core.App.NotificationCompat.IBadgeIconType;androidx.core.app.NotificationCompat$BadgeIconType +androidx.core.app.NotificationCompat$BadgeIconType;androidx.core.app.NotificationCompat$BadgeIconType +AndroidX.Core.App.NotificationCompat+CallStyle+ICallType, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$CallStyle$CallType +AndroidX.Core.App.NotificationCompat.CallStyle.ICallType;androidx.core.app.NotificationCompat$CallStyle$CallType +androidx.core.app.NotificationCompat$CallStyle$CallType;androidx.core.app.NotificationCompat$CallStyle$CallType +AndroidX.Core.App.NotificationCompat+IExtender, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$Extender +AndroidX.Core.App.NotificationCompat.IExtender;androidx.core.app.NotificationCompat$Extender +androidx.core.app.NotificationCompat$Extender;androidx.core.app.NotificationCompat$Extender +AndroidX.Core.App.NotificationCompat+IGroupAlertBehavior, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$GroupAlertBehavior +AndroidX.Core.App.NotificationCompat.IGroupAlertBehavior;androidx.core.app.NotificationCompat$GroupAlertBehavior +androidx.core.app.NotificationCompat$GroupAlertBehavior;androidx.core.app.NotificationCompat$GroupAlertBehavior +AndroidX.Core.App.NotificationCompat+INotificationVisibility, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$NotificationVisibility +AndroidX.Core.App.NotificationCompat.INotificationVisibility;androidx.core.app.NotificationCompat$NotificationVisibility +androidx.core.app.NotificationCompat$NotificationVisibility;androidx.core.app.NotificationCompat$NotificationVisibility +AndroidX.Core.App.NotificationCompat+IServiceNotificationBehavior, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$ServiceNotificationBehavior +AndroidX.Core.App.NotificationCompat.IServiceNotificationBehavior;androidx.core.app.NotificationCompat$ServiceNotificationBehavior +androidx.core.app.NotificationCompat$ServiceNotificationBehavior;androidx.core.app.NotificationCompat$ServiceNotificationBehavior +AndroidX.Core.App.NotificationCompat+IStreamType, Xamarin.AndroidX.Core;androidx.core.app.NotificationCompat$StreamType +AndroidX.Core.App.NotificationCompat.IStreamType;androidx.core.app.NotificationCompat$StreamType +androidx.core.app.NotificationCompat$StreamType;androidx.core.app.NotificationCompat$StreamType +AndroidX.Core.App.NotificationManagerCompat+IInterruptionFilter, Xamarin.AndroidX.Core;androidx.core.app.NotificationManagerCompat$InterruptionFilter +AndroidX.Core.App.NotificationManagerCompat.IInterruptionFilter;androidx.core.app.NotificationManagerCompat$InterruptionFilter +androidx.core.app.NotificationManagerCompat$InterruptionFilter;androidx.core.app.NotificationManagerCompat$InterruptionFilter +AndroidX.Core.App.PendingIntentCompat+IFlags, Xamarin.AndroidX.Core;androidx.core.app.PendingIntentCompat$Flags +AndroidX.Core.App.PendingIntentCompat.IFlags;androidx.core.app.PendingIntentCompat$Flags +androidx.core.app.PendingIntentCompat$Flags;androidx.core.app.PendingIntentCompat$Flags +AndroidX.Core.App.RemoteInput+IEditChoicesBeforeSending, Xamarin.AndroidX.Core;androidx.core.app.RemoteInput$EditChoicesBeforeSending +AndroidX.Core.App.RemoteInput.IEditChoicesBeforeSending;androidx.core.app.RemoteInput$EditChoicesBeforeSending +androidx.core.app.RemoteInput$EditChoicesBeforeSending;androidx.core.app.RemoteInput$EditChoicesBeforeSending +AndroidX.Core.App.RemoteInput+ISource, Xamarin.AndroidX.Core;androidx.core.app.RemoteInput$Source +AndroidX.Core.App.RemoteInput.ISource;androidx.core.app.RemoteInput$Source +androidx.core.app.RemoteInput$Source;androidx.core.app.RemoteInput$Source +AndroidX.Core.App.ServiceCompat+IStopForegroundFlags, Xamarin.AndroidX.Core;androidx.core.app.ServiceCompat$StopForegroundFlags +AndroidX.Core.App.ServiceCompat.IStopForegroundFlags;androidx.core.app.ServiceCompat$StopForegroundFlags +androidx.core.app.ServiceCompat$StopForegroundFlags;androidx.core.app.ServiceCompat$StopForegroundFlags +AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListener, Xamarin.AndroidX.Core;androidx.core.app.SharedElementCallback$OnSharedElementsReadyListener +AndroidX.Core.App.SharedElementCallback.IOnSharedElementsReadyListener;androidx.core.app.SharedElementCallback$OnSharedElementsReadyListener +androidx.core.app.SharedElementCallback$OnSharedElementsReadyListener;androidx.core.app.SharedElementCallback$OnSharedElementsReadyListener +AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.app.SharedElementCallback_OnSharedElementsReadyListenerImplementor +AndroidX.Core.App.SharedElementCallback.IOnSharedElementsReadyListenerImplementor;mono.androidx.core.app.SharedElementCallback_OnSharedElementsReadyListenerImplementor +mono.androidx.core.app.SharedElementCallback_OnSharedElementsReadyListenerImplementor;mono.androidx.core.app.SharedElementCallback_OnSharedElementsReadyListenerImplementor +AndroidX.Core.App.TaskStackBuilder+ISupportParentable, Xamarin.AndroidX.Core;androidx.core.app.TaskStackBuilder$SupportParentable +AndroidX.Core.App.TaskStackBuilder.ISupportParentable;androidx.core.app.TaskStackBuilder$SupportParentable +androidx.core.app.TaskStackBuilder$SupportParentable;androidx.core.app.TaskStackBuilder$SupportParentable +AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportCallback, Xamarin.AndroidX.Core;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportCallback +AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportCallback;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportCallback +androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportCallback;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportCallback +AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportService, Xamarin.AndroidX.Core;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportService +AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportService;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportService +androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportService;androidx.core.app.unusedapprestrictions.IUnusedAppRestrictionsBackportService +AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListener, Xamarin.AndroidX.Core;androidx.core.widget.NestedScrollView$OnScrollChangeListener +AndroidX.Core.Widget.NestedScrollView.IOnScrollChangeListener;androidx.core.widget.NestedScrollView$OnScrollChangeListener +androidx.core.widget.NestedScrollView$OnScrollChangeListener;androidx.core.widget.NestedScrollView$OnScrollChangeListener +AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.widget.NestedScrollView_OnScrollChangeListenerImplementor +AndroidX.Core.Widget.NestedScrollView.IOnScrollChangeListenerImplementor;mono.androidx.core.widget.NestedScrollView_OnScrollChangeListenerImplementor +mono.androidx.core.widget.NestedScrollView_OnScrollChangeListenerImplementor;mono.androidx.core.widget.NestedScrollView_OnScrollChangeListenerImplementor +AndroidX.Core.Widget.IAutoSizeableTextView, Xamarin.AndroidX.Core;androidx.core.widget.AutoSizeableTextView +AndroidX.Core.Widget.IAutoSizeableTextView;androidx.core.widget.AutoSizeableTextView +androidx.core.widget.AutoSizeableTextView;androidx.core.widget.AutoSizeableTextView +AndroidX.Core.Widget.ITintableCheckedTextView, Xamarin.AndroidX.Core;androidx.core.widget.TintableCheckedTextView +AndroidX.Core.Widget.ITintableCheckedTextView;androidx.core.widget.TintableCheckedTextView +androidx.core.widget.TintableCheckedTextView;androidx.core.widget.TintableCheckedTextView +AndroidX.Core.Widget.ITintableCompoundButton, Xamarin.AndroidX.Core;androidx.core.widget.TintableCompoundButton +AndroidX.Core.Widget.ITintableCompoundButton;androidx.core.widget.TintableCompoundButton +androidx.core.widget.TintableCompoundButton;androidx.core.widget.TintableCompoundButton +AndroidX.Core.Widget.ITintableCompoundDrawablesView, Xamarin.AndroidX.Core;androidx.core.widget.TintableCompoundDrawablesView +AndroidX.Core.Widget.ITintableCompoundDrawablesView;androidx.core.widget.TintableCompoundDrawablesView +androidx.core.widget.TintableCompoundDrawablesView;androidx.core.widget.TintableCompoundDrawablesView +AndroidX.Core.Widget.ITintableImageSourceView, Xamarin.AndroidX.Core;androidx.core.widget.TintableImageSourceView +AndroidX.Core.Widget.ITintableImageSourceView;androidx.core.widget.TintableImageSourceView +androidx.core.widget.TintableImageSourceView;androidx.core.widget.TintableImageSourceView +AndroidX.Core.Widget.TextViewCompat+IAutoSizeTextType, Xamarin.AndroidX.Core;androidx.core.widget.TextViewCompat$AutoSizeTextType +AndroidX.Core.Widget.TextViewCompat.IAutoSizeTextType;androidx.core.widget.TextViewCompat$AutoSizeTextType +androidx.core.widget.TextViewCompat$AutoSizeTextType;androidx.core.widget.TextViewCompat$AutoSizeTextType +AndroidX.Core.View.INestedScrollingParent2, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingParent2 +AndroidX.Core.View.INestedScrollingParent2;androidx.core.view.NestedScrollingParent2 +androidx.core.view.NestedScrollingParent2;androidx.core.view.NestedScrollingParent2 +AndroidX.Core.View.ActionProvider+ISubUiVisibilityListener, Xamarin.AndroidX.Core;androidx.core.view.ActionProvider$SubUiVisibilityListener +AndroidX.Core.View.ActionProvider.ISubUiVisibilityListener;androidx.core.view.ActionProvider$SubUiVisibilityListener +androidx.core.view.ActionProvider$SubUiVisibilityListener;androidx.core.view.ActionProvider$SubUiVisibilityListener +AndroidX.Core.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.ActionProvider_SubUiVisibilityListenerImplementor +AndroidX.Core.View.ActionProvider.ISubUiVisibilityListenerImplementor;mono.androidx.core.view.ActionProvider_SubUiVisibilityListenerImplementor +mono.androidx.core.view.ActionProvider_SubUiVisibilityListenerImplementor;mono.androidx.core.view.ActionProvider_SubUiVisibilityListenerImplementor +AndroidX.Core.View.ActionProvider+IVisibilityListener, Xamarin.AndroidX.Core;androidx.core.view.ActionProvider$VisibilityListener +AndroidX.Core.View.ActionProvider.IVisibilityListener;androidx.core.view.ActionProvider$VisibilityListener +androidx.core.view.ActionProvider$VisibilityListener;androidx.core.view.ActionProvider$VisibilityListener +AndroidX.Core.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.ActionProvider_VisibilityListenerImplementor +AndroidX.Core.View.ActionProvider.IVisibilityListenerImplementor;mono.androidx.core.view.ActionProvider_VisibilityListenerImplementor +mono.androidx.core.view.ActionProvider_VisibilityListenerImplementor;mono.androidx.core.view.ActionProvider_VisibilityListenerImplementor +AndroidX.Core.View.ContentInfoCompat+IFlags, Xamarin.AndroidX.Core;androidx.core.view.ContentInfoCompat$Flags +AndroidX.Core.View.ContentInfoCompat.IFlags;androidx.core.view.ContentInfoCompat$Flags +androidx.core.view.ContentInfoCompat$Flags;androidx.core.view.ContentInfoCompat$Flags +AndroidX.Core.View.ContentInfoCompat+ISource, Xamarin.AndroidX.Core;androidx.core.view.ContentInfoCompat$Source +AndroidX.Core.View.ContentInfoCompat.ISource;androidx.core.view.ContentInfoCompat$Source +androidx.core.view.ContentInfoCompat$Source;androidx.core.view.ContentInfoCompat$Source +AndroidX.Core.View.DragStartHelper+IOnDragStartListener, Xamarin.AndroidX.Core;androidx.core.view.DragStartHelper$OnDragStartListener +AndroidX.Core.View.DragStartHelper.IOnDragStartListener;androidx.core.view.DragStartHelper$OnDragStartListener +androidx.core.view.DragStartHelper$OnDragStartListener;androidx.core.view.DragStartHelper$OnDragStartListener +AndroidX.Core.View.DragStartHelper+IOnDragStartListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.DragStartHelper_OnDragStartListenerImplementor +AndroidX.Core.View.DragStartHelper.IOnDragStartListenerImplementor;mono.androidx.core.view.DragStartHelper_OnDragStartListenerImplementor +mono.androidx.core.view.DragStartHelper_OnDragStartListenerImplementor;mono.androidx.core.view.DragStartHelper_OnDragStartListenerImplementor +AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackFlags, Xamarin.AndroidX.Core;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackFlags +AndroidX.Core.View.HapticFeedbackConstantsCompat.IHapticFeedbackFlags;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackFlags +androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackFlags;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackFlags +AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackType, Xamarin.AndroidX.Core;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackType +AndroidX.Core.View.HapticFeedbackConstantsCompat.IHapticFeedbackType;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackType +androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackType;androidx.core.view.HapticFeedbackConstantsCompat$HapticFeedbackType +AndroidX.Core.View.IDifferentialMotionFlingTarget, Xamarin.AndroidX.Core;androidx.core.view.DifferentialMotionFlingTarget +AndroidX.Core.View.IDifferentialMotionFlingTarget;androidx.core.view.DifferentialMotionFlingTarget +androidx.core.view.DifferentialMotionFlingTarget;androidx.core.view.DifferentialMotionFlingTarget +AndroidX.Core.View.ILayoutInflaterFactory, Xamarin.AndroidX.Core;androidx.core.view.LayoutInflaterFactory +AndroidX.Core.View.ILayoutInflaterFactory;androidx.core.view.LayoutInflaterFactory +androidx.core.view.LayoutInflaterFactory;androidx.core.view.LayoutInflaterFactory +AndroidX.Core.View.IMenuHost, Xamarin.AndroidX.Core;androidx.core.view.MenuHost +AndroidX.Core.View.IMenuHost;androidx.core.view.MenuHost +androidx.core.view.MenuHost;androidx.core.view.MenuHost +AndroidX.Core.View.IMenuProvider, Xamarin.AndroidX.Core;androidx.core.view.MenuProvider +AndroidX.Core.View.IMenuProvider;androidx.core.view.MenuProvider +androidx.core.view.MenuProvider;androidx.core.view.MenuProvider +AndroidX.Core.View.INestedScrollingChild, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingChild +AndroidX.Core.View.INestedScrollingChild;androidx.core.view.NestedScrollingChild +androidx.core.view.NestedScrollingChild;androidx.core.view.NestedScrollingChild +AndroidX.Core.View.INestedScrollingChild2, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingChild2 +AndroidX.Core.View.INestedScrollingChild2;androidx.core.view.NestedScrollingChild2 +androidx.core.view.NestedScrollingChild2;androidx.core.view.NestedScrollingChild2 +AndroidX.Core.View.INestedScrollingChild3, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingChild3 +AndroidX.Core.View.INestedScrollingChild3;androidx.core.view.NestedScrollingChild3 +androidx.core.view.NestedScrollingChild3;androidx.core.view.NestedScrollingChild3 +AndroidX.Core.View.INestedScrollingParent, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingParent +AndroidX.Core.View.INestedScrollingParent;androidx.core.view.NestedScrollingParent +androidx.core.view.NestedScrollingParent;androidx.core.view.NestedScrollingParent +AndroidX.Core.View.INestedScrollingParent3, Xamarin.AndroidX.Core;androidx.core.view.NestedScrollingParent3 +AndroidX.Core.View.INestedScrollingParent3;androidx.core.view.NestedScrollingParent3 +androidx.core.view.NestedScrollingParent3;androidx.core.view.NestedScrollingParent3 +AndroidX.Core.View.IOnApplyWindowInsetsListener, Xamarin.AndroidX.Core;androidx.core.view.OnApplyWindowInsetsListener +AndroidX.Core.View.IOnApplyWindowInsetsListener;androidx.core.view.OnApplyWindowInsetsListener +androidx.core.view.OnApplyWindowInsetsListener;androidx.core.view.OnApplyWindowInsetsListener +AndroidX.Core.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.OnApplyWindowInsetsListenerImplementor +AndroidX.Core.View.IOnApplyWindowInsetsListenerImplementor;mono.androidx.core.view.OnApplyWindowInsetsListenerImplementor +mono.androidx.core.view.OnApplyWindowInsetsListenerImplementor;mono.androidx.core.view.OnApplyWindowInsetsListenerImplementor +AndroidX.Core.View.IOnReceiveContentListener, Xamarin.AndroidX.Core;androidx.core.view.OnReceiveContentListener +AndroidX.Core.View.IOnReceiveContentListener;androidx.core.view.OnReceiveContentListener +androidx.core.view.OnReceiveContentListener;androidx.core.view.OnReceiveContentListener +AndroidX.Core.View.IOnReceiveContentListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.OnReceiveContentListenerImplementor +AndroidX.Core.View.IOnReceiveContentListenerImplementor;mono.androidx.core.view.OnReceiveContentListenerImplementor +mono.androidx.core.view.OnReceiveContentListenerImplementor;mono.androidx.core.view.OnReceiveContentListenerImplementor +AndroidX.Core.View.IOnReceiveContentViewBehavior, Xamarin.AndroidX.Core;androidx.core.view.OnReceiveContentViewBehavior +AndroidX.Core.View.IOnReceiveContentViewBehavior;androidx.core.view.OnReceiveContentViewBehavior +androidx.core.view.OnReceiveContentViewBehavior;androidx.core.view.OnReceiveContentViewBehavior +AndroidX.Core.View.IScrollingView, Xamarin.AndroidX.Core;androidx.core.view.ScrollingView +AndroidX.Core.View.IScrollingView;androidx.core.view.ScrollingView +androidx.core.view.ScrollingView;androidx.core.view.ScrollingView +AndroidX.Core.View.ITintableBackgroundView, Xamarin.AndroidX.Core;androidx.core.view.TintableBackgroundView +AndroidX.Core.View.ITintableBackgroundView;androidx.core.view.TintableBackgroundView +androidx.core.view.TintableBackgroundView;androidx.core.view.TintableBackgroundView +AndroidX.Core.View.IViewPropertyAnimatorListener, Xamarin.AndroidX.Core;androidx.core.view.ViewPropertyAnimatorListener +AndroidX.Core.View.IViewPropertyAnimatorListener;androidx.core.view.ViewPropertyAnimatorListener +androidx.core.view.ViewPropertyAnimatorListener;androidx.core.view.ViewPropertyAnimatorListener +AndroidX.Core.View.IViewPropertyAnimatorListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.ViewPropertyAnimatorListenerImplementor +AndroidX.Core.View.IViewPropertyAnimatorListenerImplementor;mono.androidx.core.view.ViewPropertyAnimatorListenerImplementor +mono.androidx.core.view.ViewPropertyAnimatorListenerImplementor;mono.androidx.core.view.ViewPropertyAnimatorListenerImplementor +AndroidX.Core.View.IViewPropertyAnimatorUpdateListener, Xamarin.AndroidX.Core;androidx.core.view.ViewPropertyAnimatorUpdateListener +AndroidX.Core.View.IViewPropertyAnimatorUpdateListener;androidx.core.view.ViewPropertyAnimatorUpdateListener +androidx.core.view.ViewPropertyAnimatorUpdateListener;androidx.core.view.ViewPropertyAnimatorUpdateListener +AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.ViewPropertyAnimatorUpdateListenerImplementor +AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerImplementor;mono.androidx.core.view.ViewPropertyAnimatorUpdateListenerImplementor +mono.androidx.core.view.ViewPropertyAnimatorUpdateListenerImplementor;mono.androidx.core.view.ViewPropertyAnimatorUpdateListenerImplementor +AndroidX.Core.View.IWindowInsetsAnimationControlListenerCompat, Xamarin.AndroidX.Core;androidx.core.view.WindowInsetsAnimationControlListenerCompat +AndroidX.Core.View.IWindowInsetsAnimationControlListenerCompat;androidx.core.view.WindowInsetsAnimationControlListenerCompat +androidx.core.view.WindowInsetsAnimationControlListenerCompat;androidx.core.view.WindowInsetsAnimationControlListenerCompat +AndroidX.Core.View.KeyEventDispatcher+IComponent, Xamarin.AndroidX.Core;androidx.core.view.KeyEventDispatcher$Component +AndroidX.Core.View.KeyEventDispatcher.IComponent;androidx.core.view.KeyEventDispatcher$Component +androidx.core.view.KeyEventDispatcher$Component;androidx.core.view.KeyEventDispatcher$Component +AndroidX.Core.View.MenuItemCompat+IOnActionExpandListener, Xamarin.AndroidX.Core;androidx.core.view.MenuItemCompat$OnActionExpandListener +AndroidX.Core.View.MenuItemCompat.IOnActionExpandListener;androidx.core.view.MenuItemCompat$OnActionExpandListener +androidx.core.view.MenuItemCompat$OnActionExpandListener;androidx.core.view.MenuItemCompat$OnActionExpandListener +AndroidX.Core.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.MenuItemCompat_OnActionExpandListenerImplementor +AndroidX.Core.View.MenuItemCompat.IOnActionExpandListenerImplementor;mono.androidx.core.view.MenuItemCompat_OnActionExpandListenerImplementor +mono.androidx.core.view.MenuItemCompat_OnActionExpandListenerImplementor;mono.androidx.core.view.MenuItemCompat_OnActionExpandListenerImplementor +AndroidX.Core.View.VelocityTrackerCompat+IVelocityTrackableMotionEventAxis, Xamarin.AndroidX.Core;androidx.core.view.VelocityTrackerCompat$VelocityTrackableMotionEventAxis +AndroidX.Core.View.VelocityTrackerCompat.IVelocityTrackableMotionEventAxis;androidx.core.view.VelocityTrackerCompat$VelocityTrackableMotionEventAxis +androidx.core.view.VelocityTrackerCompat$VelocityTrackableMotionEventAxis;androidx.core.view.VelocityTrackerCompat$VelocityTrackableMotionEventAxis +AndroidX.Core.View.ViewCompat+IFocusDirection, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$FocusDirection +AndroidX.Core.View.ViewCompat.IFocusDirection;androidx.core.view.ViewCompat$FocusDirection +androidx.core.view.ViewCompat$FocusDirection;androidx.core.view.ViewCompat$FocusDirection +AndroidX.Core.View.ViewCompat+IFocusRealDirection, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$FocusRealDirection +AndroidX.Core.View.ViewCompat.IFocusRealDirection;androidx.core.view.ViewCompat$FocusRealDirection +androidx.core.view.ViewCompat$FocusRealDirection;androidx.core.view.ViewCompat$FocusRealDirection +AndroidX.Core.View.ViewCompat+IFocusRelativeDirection, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$FocusRelativeDirection +AndroidX.Core.View.ViewCompat.IFocusRelativeDirection;androidx.core.view.ViewCompat$FocusRelativeDirection +androidx.core.view.ViewCompat$FocusRelativeDirection;androidx.core.view.ViewCompat$FocusRelativeDirection +AndroidX.Core.View.ViewCompat+INestedScrollType, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$NestedScrollType +AndroidX.Core.View.ViewCompat.INestedScrollType;androidx.core.view.ViewCompat$NestedScrollType +androidx.core.view.ViewCompat$NestedScrollType;androidx.core.view.ViewCompat$NestedScrollType +AndroidX.Core.View.ViewCompat+IOnUnhandledKeyEventListenerCompat, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$OnUnhandledKeyEventListenerCompat +AndroidX.Core.View.ViewCompat.IOnUnhandledKeyEventListenerCompat;androidx.core.view.ViewCompat$OnUnhandledKeyEventListenerCompat +androidx.core.view.ViewCompat$OnUnhandledKeyEventListenerCompat;androidx.core.view.ViewCompat$OnUnhandledKeyEventListenerCompat +AndroidX.Core.View.ViewCompat+IScrollAxis, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$ScrollAxis +AndroidX.Core.View.ViewCompat.IScrollAxis;androidx.core.view.ViewCompat$ScrollAxis +androidx.core.view.ViewCompat$ScrollAxis;androidx.core.view.ViewCompat$ScrollAxis +AndroidX.Core.View.ViewCompat+IScrollIndicators, Xamarin.AndroidX.Core;androidx.core.view.ViewCompat$ScrollIndicators +AndroidX.Core.View.ViewCompat.IScrollIndicators;androidx.core.view.ViewCompat$ScrollIndicators +androidx.core.view.ViewCompat$ScrollIndicators;androidx.core.view.ViewCompat$ScrollIndicators +AndroidX.Core.View.WindowInsetsAnimationCompat+Callback+IDispatchMode, Xamarin.AndroidX.Core;androidx.core.view.WindowInsetsAnimationCompat$Callback$DispatchMode +AndroidX.Core.View.WindowInsetsAnimationCompat.Callback.IDispatchMode;androidx.core.view.WindowInsetsAnimationCompat$Callback$DispatchMode +androidx.core.view.WindowInsetsAnimationCompat$Callback$DispatchMode;androidx.core.view.WindowInsetsAnimationCompat$Callback$DispatchMode +AndroidX.Core.View.WindowInsetsCompat+Side+IInsetsSide, Xamarin.AndroidX.Core;androidx.core.view.WindowInsetsCompat$Side$InsetsSide +AndroidX.Core.View.WindowInsetsCompat.Side.IInsetsSide;androidx.core.view.WindowInsetsCompat$Side$InsetsSide +androidx.core.view.WindowInsetsCompat$Side$InsetsSide;androidx.core.view.WindowInsetsCompat$Side$InsetsSide +AndroidX.Core.View.WindowInsetsCompat+Type+IInsetsType, Xamarin.AndroidX.Core;androidx.core.view.WindowInsetsCompat$Type$InsetsType +AndroidX.Core.View.WindowInsetsCompat.Type.IInsetsType;androidx.core.view.WindowInsetsCompat$Type$InsetsType +androidx.core.view.WindowInsetsCompat$Type$InsetsType;androidx.core.view.WindowInsetsCompat$Type$InsetsType +AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListener, Xamarin.AndroidX.Core;androidx.core.view.WindowInsetsControllerCompat$OnControllableInsetsChangedListener +AndroidX.Core.View.WindowInsetsControllerCompat.IOnControllableInsetsChangedListener;androidx.core.view.WindowInsetsControllerCompat$OnControllableInsetsChangedListener +androidx.core.view.WindowInsetsControllerCompat$OnControllableInsetsChangedListener;androidx.core.view.WindowInsetsControllerCompat$OnControllableInsetsChangedListener +AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor +AndroidX.Core.View.WindowInsetsControllerCompat.IOnControllableInsetsChangedListenerImplementor;mono.androidx.core.view.WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor +mono.androidx.core.view.WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor;mono.androidx.core.view.WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor +AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListener, Xamarin.AndroidX.Core;androidx.core.view.inputmethod.InputConnectionCompat$OnCommitContentListener +AndroidX.Core.View.InputMethod.InputConnectionCompat.IOnCommitContentListener;androidx.core.view.inputmethod.InputConnectionCompat$OnCommitContentListener +androidx.core.view.inputmethod.InputConnectionCompat$OnCommitContentListener;androidx.core.view.inputmethod.InputConnectionCompat$OnCommitContentListener +AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.inputmethod.InputConnectionCompat_OnCommitContentListenerImplementor +AndroidX.Core.View.InputMethod.InputConnectionCompat.IOnCommitContentListenerImplementor;mono.androidx.core.view.inputmethod.InputConnectionCompat_OnCommitContentListenerImplementor +mono.androidx.core.view.inputmethod.InputConnectionCompat_OnCommitContentListenerImplementor;mono.androidx.core.view.inputmethod.InputConnectionCompat_OnCommitContentListenerImplementor +AndroidX.Core.View.Accessibility.AccessibilityEventCompat+IContentChangeType, Xamarin.AndroidX.Core;androidx.core.view.accessibility.AccessibilityEventCompat$ContentChangeType +AndroidX.Core.View.Accessibility.AccessibilityEventCompat.IContentChangeType;androidx.core.view.accessibility.AccessibilityEventCompat$ContentChangeType +androidx.core.view.accessibility.AccessibilityEventCompat$ContentChangeType;androidx.core.view.accessibility.AccessibilityEventCompat$ContentChangeType +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListener, Xamarin.AndroidX.Core;androidx.core.view.accessibility.AccessibilityManagerCompat$AccessibilityStateChangeListener +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat.IAccessibilityStateChangeListener;androidx.core.view.accessibility.AccessibilityManagerCompat$AccessibilityStateChangeListener +androidx.core.view.accessibility.AccessibilityManagerCompat$AccessibilityStateChangeListener;androidx.core.view.accessibility.AccessibilityManagerCompat$AccessibilityStateChangeListener +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat.IAccessibilityStateChangeListenerImplementor;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor +mono.androidx.core.view.accessibility.AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListener, Xamarin.AndroidX.Core;androidx.core.view.accessibility.AccessibilityManagerCompat$TouchExplorationStateChangeListener +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat.ITouchExplorationStateChangeListener;androidx.core.view.accessibility.AccessibilityManagerCompat$TouchExplorationStateChangeListener +androidx.core.view.accessibility.AccessibilityManagerCompat$TouchExplorationStateChangeListener;androidx.core.view.accessibility.AccessibilityManagerCompat$TouchExplorationStateChangeListener +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListenerImplementor, Xamarin.AndroidX.Core;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor +AndroidX.Core.View.Accessibility.AccessibilityManagerCompat.ITouchExplorationStateChangeListenerImplementor;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor +mono.androidx.core.view.accessibility.AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor;mono.androidx.core.view.accessibility.AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor +AndroidX.Core.View.Accessibility.IAccessibilityViewCommand, Xamarin.AndroidX.Core;androidx.core.view.accessibility.AccessibilityViewCommand +AndroidX.Core.View.Accessibility.IAccessibilityViewCommand;androidx.core.view.accessibility.AccessibilityViewCommand +androidx.core.view.accessibility.AccessibilityViewCommand;androidx.core.view.accessibility.AccessibilityViewCommand +AndroidX.Core.Text.ITextDirectionHeuristicCompat, Xamarin.AndroidX.Core;androidx.core.text.TextDirectionHeuristicCompat +AndroidX.Core.Text.ITextDirectionHeuristicCompat;androidx.core.text.TextDirectionHeuristicCompat +androidx.core.text.TextDirectionHeuristicCompat;androidx.core.text.TextDirectionHeuristicCompat +AndroidX.Core.Text.Util.LinkifyCompat+ILinkifyMask, Xamarin.AndroidX.Core;androidx.core.text.util.LinkifyCompat$LinkifyMask +AndroidX.Core.Text.Util.LinkifyCompat.ILinkifyMask;androidx.core.text.util.LinkifyCompat$LinkifyMask +androidx.core.text.util.LinkifyCompat$LinkifyMask;androidx.core.text.util.LinkifyCompat$LinkifyMask +AndroidX.Core.Text.Util.LocalePreferences+CalendarType+ICalendarTypes, Xamarin.AndroidX.Core;androidx.core.text.util.LocalePreferences$CalendarType$CalendarTypes +AndroidX.Core.Text.Util.LocalePreferences.CalendarType.ICalendarTypes;androidx.core.text.util.LocalePreferences$CalendarType$CalendarTypes +androidx.core.text.util.LocalePreferences$CalendarType$CalendarTypes;androidx.core.text.util.LocalePreferences$CalendarType$CalendarTypes +AndroidX.Core.Text.Util.LocalePreferences+FirstDayOfWeek+IDays, Xamarin.AndroidX.Core;androidx.core.text.util.LocalePreferences$FirstDayOfWeek$Days +AndroidX.Core.Text.Util.LocalePreferences.FirstDayOfWeek.IDays;androidx.core.text.util.LocalePreferences$FirstDayOfWeek$Days +androidx.core.text.util.LocalePreferences$FirstDayOfWeek$Days;androidx.core.text.util.LocalePreferences$FirstDayOfWeek$Days +AndroidX.Core.Text.Util.LocalePreferences+HourCycle+IHourCycleTypes, Xamarin.AndroidX.Core;androidx.core.text.util.LocalePreferences$HourCycle$HourCycleTypes +AndroidX.Core.Text.Util.LocalePreferences.HourCycle.IHourCycleTypes;androidx.core.text.util.LocalePreferences$HourCycle$HourCycleTypes +androidx.core.text.util.LocalePreferences$HourCycle$HourCycleTypes;androidx.core.text.util.LocalePreferences$HourCycle$HourCycleTypes +AndroidX.Core.Text.Util.LocalePreferences+TemperatureUnit+ITemperatureUnits, Xamarin.AndroidX.Core;androidx.core.text.util.LocalePreferences$TemperatureUnit$TemperatureUnits +AndroidX.Core.Text.Util.LocalePreferences.TemperatureUnit.ITemperatureUnits;androidx.core.text.util.LocalePreferences$TemperatureUnit$TemperatureUnits +androidx.core.text.util.LocalePreferences$TemperatureUnit$TemperatureUnits;androidx.core.text.util.LocalePreferences$TemperatureUnit$TemperatureUnits +AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+ICursorToStringConverter, Xamarin.AndroidX.CursorAdapter;androidx.cursoradapter.widget.SimpleCursorAdapter$CursorToStringConverter +AndroidX.CursorAdapter.Widget.SimpleCursorAdapter.ICursorToStringConverter;androidx.cursoradapter.widget.SimpleCursorAdapter$CursorToStringConverter +androidx.cursoradapter.widget.SimpleCursorAdapter$CursorToStringConverter;androidx.cursoradapter.widget.SimpleCursorAdapter$CursorToStringConverter +AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+IViewBinder, Xamarin.AndroidX.CursorAdapter;androidx.cursoradapter.widget.SimpleCursorAdapter$ViewBinder +AndroidX.CursorAdapter.Widget.SimpleCursorAdapter.IViewBinder;androidx.cursoradapter.widget.SimpleCursorAdapter$ViewBinder +androidx.cursoradapter.widget.SimpleCursorAdapter$ViewBinder;androidx.cursoradapter.widget.SimpleCursorAdapter$ViewBinder +AndroidX.CustomView.Widget.IOpenable, Xamarin.AndroidX.CustomView;androidx.customview.widget.Openable +AndroidX.CustomView.Widget.IOpenable;androidx.customview.widget.Openable +androidx.customview.widget.Openable;androidx.customview.widget.Openable +AndroidX.CustomView.PoolingContainer.IPoolingContainerListener, Xamarin.AndroidX.CustomView.PoolingContainer;androidx.customview.poolingcontainer.PoolingContainerListener +AndroidX.CustomView.PoolingContainer.IPoolingContainerListener;androidx.customview.poolingcontainer.PoolingContainerListener +androidx.customview.poolingcontainer.PoolingContainerListener;androidx.customview.poolingcontainer.PoolingContainerListener +AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerImplementor, Xamarin.AndroidX.CustomView.PoolingContainer;mono.androidx.customview.poolingcontainer.PoolingContainerListenerImplementor +AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerImplementor;mono.androidx.customview.poolingcontainer.PoolingContainerListenerImplementor +mono.androidx.customview.poolingcontainer.PoolingContainerListenerImplementor;mono.androidx.customview.poolingcontainer.PoolingContainerListenerImplementor +AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListener, Xamarin.AndroidX.DrawerLayout;androidx.drawerlayout.widget.DrawerLayout$DrawerListener +AndroidX.DrawerLayout.Widget.DrawerLayout.IDrawerListener;androidx.drawerlayout.widget.DrawerLayout$DrawerListener +androidx.drawerlayout.widget.DrawerLayout$DrawerListener;androidx.drawerlayout.widget.DrawerLayout$DrawerListener +AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.AndroidX.DrawerLayout;mono.androidx.drawerlayout.widget.DrawerLayout_DrawerListenerImplementor +AndroidX.DrawerLayout.Widget.DrawerLayout.IDrawerListenerImplementor;mono.androidx.drawerlayout.widget.DrawerLayout_DrawerListenerImplementor +mono.androidx.drawerlayout.widget.DrawerLayout_DrawerListenerImplementor;mono.androidx.drawerlayout.widget.DrawerLayout_DrawerListenerImplementor +AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListener, Xamarin.AndroidX.DynamicAnimation;androidx.dynamicanimation.animation.AnimationHandler$DurationScaleChangeListener +AndroidX.DynamicAnimation.AnimationHandler.IDurationScaleChangeListener;androidx.dynamicanimation.animation.AnimationHandler$DurationScaleChangeListener +androidx.dynamicanimation.animation.AnimationHandler$DurationScaleChangeListener;androidx.dynamicanimation.animation.AnimationHandler$DurationScaleChangeListener +AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListenerImplementor, Xamarin.AndroidX.DynamicAnimation;mono.androidx.dynamicanimation.animation.AnimationHandler_DurationScaleChangeListenerImplementor +AndroidX.DynamicAnimation.AnimationHandler.IDurationScaleChangeListenerImplementor;mono.androidx.dynamicanimation.animation.AnimationHandler_DurationScaleChangeListenerImplementor +mono.androidx.dynamicanimation.animation.AnimationHandler_DurationScaleChangeListenerImplementor;mono.androidx.dynamicanimation.animation.AnimationHandler_DurationScaleChangeListenerImplementor +AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListener, Xamarin.AndroidX.DynamicAnimation;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener +AndroidX.DynamicAnimation.DynamicAnimation.IOnAnimationEndListener;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener +androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener +AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListenerImplementor, Xamarin.AndroidX.DynamicAnimation;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationEndListenerImplementor +AndroidX.DynamicAnimation.DynamicAnimation.IOnAnimationEndListenerImplementor;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationEndListenerImplementor +mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationEndListenerImplementor;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationEndListenerImplementor +AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListener, Xamarin.AndroidX.DynamicAnimation;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener +AndroidX.DynamicAnimation.DynamicAnimation.IOnAnimationUpdateListener;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener +androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener;androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener +AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListenerImplementor, Xamarin.AndroidX.DynamicAnimation;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationUpdateListenerImplementor +AndroidX.DynamicAnimation.DynamicAnimation.IOnAnimationUpdateListenerImplementor;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationUpdateListenerImplementor +mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationUpdateListenerImplementor;mono.androidx.dynamicanimation.animation.DynamicAnimation_OnAnimationUpdateListenerImplementor +AndroidX.DynamicAnimation.IFrameCallbackScheduler, Xamarin.AndroidX.DynamicAnimation;androidx.dynamicanimation.animation.FrameCallbackScheduler +AndroidX.DynamicAnimation.IFrameCallbackScheduler;androidx.dynamicanimation.animation.FrameCallbackScheduler +androidx.dynamicanimation.animation.FrameCallbackScheduler;androidx.dynamicanimation.animation.FrameCallbackScheduler +AndroidX.Emoji2.Text.EmojiCompat+ICodepointSequenceMatchResult, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult +AndroidX.Emoji2.Text.EmojiCompat.ICodepointSequenceMatchResult;androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult +androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult;androidx.emoji2.text.EmojiCompat$CodepointSequenceMatchResult +AndroidX.Emoji2.Text.EmojiCompat+IGlyphChecker, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$GlyphChecker +AndroidX.Emoji2.Text.EmojiCompat.IGlyphChecker;androidx.emoji2.text.EmojiCompat$GlyphChecker +androidx.emoji2.text.EmojiCompat$GlyphChecker;androidx.emoji2.text.EmojiCompat$GlyphChecker +AndroidX.Emoji2.Text.EmojiCompat+ILoadStrategy, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$LoadStrategy +AndroidX.Emoji2.Text.EmojiCompat.ILoadStrategy;androidx.emoji2.text.EmojiCompat$LoadStrategy +androidx.emoji2.text.EmojiCompat$LoadStrategy;androidx.emoji2.text.EmojiCompat$LoadStrategy +AndroidX.Emoji2.Text.EmojiCompat+IMetadataRepoLoader, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$MetadataRepoLoader +AndroidX.Emoji2.Text.EmojiCompat.IMetadataRepoLoader;androidx.emoji2.text.EmojiCompat$MetadataRepoLoader +androidx.emoji2.text.EmojiCompat$MetadataRepoLoader;androidx.emoji2.text.EmojiCompat$MetadataRepoLoader +AndroidX.Emoji2.Text.EmojiCompat+IReplaceStrategy, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$ReplaceStrategy +AndroidX.Emoji2.Text.EmojiCompat.IReplaceStrategy;androidx.emoji2.text.EmojiCompat$ReplaceStrategy +androidx.emoji2.text.EmojiCompat$ReplaceStrategy;androidx.emoji2.text.EmojiCompat$ReplaceStrategy +AndroidX.Emoji2.Text.EmojiCompat+ISpanFactory, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.EmojiCompat$SpanFactory +AndroidX.Emoji2.Text.EmojiCompat.ISpanFactory;androidx.emoji2.text.EmojiCompat$SpanFactory +androidx.emoji2.text.EmojiCompat$SpanFactory;androidx.emoji2.text.EmojiCompat$SpanFactory +AndroidX.Emoji2.Text.TypefaceEmojiRasterizer+IHasGlyph, Xamarin.AndroidX.Emoji2;androidx.emoji2.text.TypefaceEmojiRasterizer$HasGlyph +AndroidX.Emoji2.Text.TypefaceEmojiRasterizer.IHasGlyph;androidx.emoji2.text.TypefaceEmojiRasterizer$HasGlyph +androidx.emoji2.text.TypefaceEmojiRasterizer$HasGlyph;androidx.emoji2.text.TypefaceEmojiRasterizer$HasGlyph +AndroidX.ExifInterface.Media.ExifInterface+IExifStreamType, Xamarin.AndroidX.ExifInterface;androidx.exifinterface.media.ExifInterface$ExifStreamType +AndroidX.ExifInterface.Media.ExifInterface.IExifStreamType;androidx.exifinterface.media.ExifInterface$ExifStreamType +androidx.exifinterface.media.ExifInterface$ExifStreamType;androidx.exifinterface.media.ExifInterface$ExifStreamType +AndroidX.ExifInterface.Media.ExifInterface+IIfdType, Xamarin.AndroidX.ExifInterface;androidx.exifinterface.media.ExifInterface$IfdType +AndroidX.ExifInterface.Media.ExifInterface.IIfdType;androidx.exifinterface.media.ExifInterface$IfdType +androidx.exifinterface.media.ExifInterface$IfdType;androidx.exifinterface.media.ExifInterface$IfdType +AndroidX.Fragment.App.FragmentManager+IBackStackEntry, Xamarin.AndroidX.Fragment;androidx.fragment.app.FragmentManager$BackStackEntry +AndroidX.Fragment.App.FragmentManager.IBackStackEntry;androidx.fragment.app.FragmentManager$BackStackEntry +androidx.fragment.app.FragmentManager$BackStackEntry;androidx.fragment.app.FragmentManager$BackStackEntry +AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListener, Xamarin.AndroidX.Fragment;androidx.fragment.app.FragmentManager$OnBackStackChangedListener +AndroidX.Fragment.App.FragmentManager.IOnBackStackChangedListener;androidx.fragment.app.FragmentManager$OnBackStackChangedListener +androidx.fragment.app.FragmentManager$OnBackStackChangedListener;androidx.fragment.app.FragmentManager$OnBackStackChangedListener +AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.AndroidX.Fragment;mono.androidx.fragment.app.FragmentManager_OnBackStackChangedListenerImplementor +AndroidX.Fragment.App.FragmentManager.IOnBackStackChangedListenerImplementor;mono.androidx.fragment.app.FragmentManager_OnBackStackChangedListenerImplementor +mono.androidx.fragment.app.FragmentManager_OnBackStackChangedListenerImplementor;mono.androidx.fragment.app.FragmentManager_OnBackStackChangedListenerImplementor +AndroidX.Fragment.App.IFragmentOnAttachListener, Xamarin.AndroidX.Fragment;androidx.fragment.app.FragmentOnAttachListener +AndroidX.Fragment.App.IFragmentOnAttachListener;androidx.fragment.app.FragmentOnAttachListener +androidx.fragment.app.FragmentOnAttachListener;androidx.fragment.app.FragmentOnAttachListener +AndroidX.Fragment.App.IFragmentOnAttachListenerImplementor, Xamarin.AndroidX.Fragment;mono.androidx.fragment.app.FragmentOnAttachListenerImplementor +AndroidX.Fragment.App.IFragmentOnAttachListenerImplementor;mono.androidx.fragment.app.FragmentOnAttachListenerImplementor +mono.androidx.fragment.app.FragmentOnAttachListenerImplementor;mono.androidx.fragment.app.FragmentOnAttachListenerImplementor +AndroidX.Fragment.App.IFragmentResultListener, Xamarin.AndroidX.Fragment;androidx.fragment.app.FragmentResultListener +AndroidX.Fragment.App.IFragmentResultListener;androidx.fragment.app.FragmentResultListener +androidx.fragment.app.FragmentResultListener;androidx.fragment.app.FragmentResultListener +AndroidX.Fragment.App.IFragmentResultListenerImplementor, Xamarin.AndroidX.Fragment;mono.androidx.fragment.app.FragmentResultListenerImplementor +AndroidX.Fragment.App.IFragmentResultListenerImplementor;mono.androidx.fragment.app.FragmentResultListenerImplementor +mono.androidx.fragment.app.FragmentResultListenerImplementor;mono.androidx.fragment.app.FragmentResultListenerImplementor +AndroidX.Fragment.App.IFragmentResultOwner, Xamarin.AndroidX.Fragment;androidx.fragment.app.FragmentResultOwner +AndroidX.Fragment.App.IFragmentResultOwner;androidx.fragment.app.FragmentResultOwner +androidx.fragment.app.FragmentResultOwner;androidx.fragment.app.FragmentResultOwner +AndroidX.Fragment.App.IPredictiveBackControl, Xamarin.AndroidX.Fragment;androidx.fragment.app.PredictiveBackControl +AndroidX.Fragment.App.IPredictiveBackControl;androidx.fragment.app.PredictiveBackControl +androidx.fragment.app.PredictiveBackControl;androidx.fragment.app.PredictiveBackControl +AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListener, Xamarin.AndroidX.Fragment;androidx.fragment.app.strictmode.FragmentStrictMode$OnViolationListener +AndroidX.Fragment.App.StrictMode.FragmentStrictMode.IOnViolationListener;androidx.fragment.app.strictmode.FragmentStrictMode$OnViolationListener +androidx.fragment.app.strictmode.FragmentStrictMode$OnViolationListener;androidx.fragment.app.strictmode.FragmentStrictMode$OnViolationListener +AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListenerImplementor, Xamarin.AndroidX.Fragment;mono.androidx.fragment.app.strictmode.FragmentStrictMode_OnViolationListenerImplementor +AndroidX.Fragment.App.StrictMode.FragmentStrictMode.IOnViolationListenerImplementor;mono.androidx.fragment.app.strictmode.FragmentStrictMode_OnViolationListenerImplementor +mono.androidx.fragment.app.strictmode.FragmentStrictMode_OnViolationListenerImplementor;mono.androidx.fragment.app.strictmode.FragmentStrictMode_OnViolationListenerImplementor +AndroidX.Lifecycle.IDefaultLifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.DefaultLifecycleObserver +AndroidX.Lifecycle.IDefaultLifecycleObserver;androidx.lifecycle.DefaultLifecycleObserver +androidx.lifecycle.DefaultLifecycleObserver;androidx.lifecycle.DefaultLifecycleObserver +AndroidX.Lifecycle.IGeneratedAdapter, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.GeneratedAdapter +AndroidX.Lifecycle.IGeneratedAdapter;androidx.lifecycle.GeneratedAdapter +androidx.lifecycle.GeneratedAdapter;androidx.lifecycle.GeneratedAdapter +AndroidX.Lifecycle.IGenericLifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.GenericLifecycleObserver +AndroidX.Lifecycle.IGenericLifecycleObserver;androidx.lifecycle.GenericLifecycleObserver +androidx.lifecycle.GenericLifecycleObserver;androidx.lifecycle.GenericLifecycleObserver +AndroidX.Lifecycle.ILifecycleEventObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.LifecycleEventObserver +AndroidX.Lifecycle.ILifecycleEventObserver;androidx.lifecycle.LifecycleEventObserver +androidx.lifecycle.LifecycleEventObserver;androidx.lifecycle.LifecycleEventObserver +AndroidX.Lifecycle.ILifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.LifecycleObserver +AndroidX.Lifecycle.ILifecycleObserver;androidx.lifecycle.LifecycleObserver +androidx.lifecycle.LifecycleObserver;androidx.lifecycle.LifecycleObserver +AndroidX.Lifecycle.ILifecycleOwner, Xamarin.AndroidX.Lifecycle.Common.Jvm;androidx.lifecycle.LifecycleOwner +AndroidX.Lifecycle.ILifecycleOwner;androidx.lifecycle.LifecycleOwner +androidx.lifecycle.LifecycleOwner;androidx.lifecycle.LifecycleOwner +AndroidX.Lifecycle.ILiveDataScope, Xamarin.AndroidX.Lifecycle.LiveData;androidx.lifecycle.LiveDataScope +AndroidX.Lifecycle.ILiveDataScope;androidx.lifecycle.LiveDataScope +androidx.lifecycle.LiveDataScope;androidx.lifecycle.LiveDataScope +AndroidX.Lifecycle.IObserver, Xamarin.AndroidX.Lifecycle.LiveData.Core;androidx.lifecycle.Observer +AndroidX.Lifecycle.IObserver;androidx.lifecycle.Observer +androidx.lifecycle.Observer;androidx.lifecycle.Observer +AndroidX.Lifecycle.ILifecycleRegistryOwner, Xamarin.AndroidX.Lifecycle.Runtime.Android;androidx.lifecycle.LifecycleRegistryOwner +AndroidX.Lifecycle.ILifecycleRegistryOwner;androidx.lifecycle.LifecycleRegistryOwner +androidx.lifecycle.LifecycleRegistryOwner;androidx.lifecycle.LifecycleRegistryOwner +AndroidX.Lifecycle.ReportFragment+IActivityInitializationListener, Xamarin.AndroidX.Lifecycle.Runtime.Android;androidx.lifecycle.ReportFragment$ActivityInitializationListener +AndroidX.Lifecycle.ReportFragment.IActivityInitializationListener;androidx.lifecycle.ReportFragment$ActivityInitializationListener +androidx.lifecycle.ReportFragment$ActivityInitializationListener;androidx.lifecycle.ReportFragment$ActivityInitializationListener +AndroidX.Lifecycle.ReportFragment+IActivityInitializationListenerImplementor, Xamarin.AndroidX.Lifecycle.Runtime.Android;mono.androidx.lifecycle.ReportFragment_ActivityInitializationListenerImplementor +AndroidX.Lifecycle.ReportFragment.IActivityInitializationListenerImplementor;mono.androidx.lifecycle.ReportFragment_ActivityInitializationListenerImplementor +mono.androidx.lifecycle.ReportFragment_ActivityInitializationListenerImplementor;mono.androidx.lifecycle.ReportFragment_ActivityInitializationListenerImplementor +AndroidX.Lifecycle.IHasDefaultViewModelProviderFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android;androidx.lifecycle.HasDefaultViewModelProviderFactory +AndroidX.Lifecycle.IHasDefaultViewModelProviderFactory;androidx.lifecycle.HasDefaultViewModelProviderFactory +androidx.lifecycle.HasDefaultViewModelProviderFactory;androidx.lifecycle.HasDefaultViewModelProviderFactory +AndroidX.Lifecycle.IViewModelStoreOwner, Xamarin.AndroidX.Lifecycle.ViewModel.Android;androidx.lifecycle.ViewModelStoreOwner +AndroidX.Lifecycle.IViewModelStoreOwner;androidx.lifecycle.ViewModelStoreOwner +androidx.lifecycle.ViewModelStoreOwner;androidx.lifecycle.ViewModelStoreOwner +AndroidX.Lifecycle.ViewModelProvider+IFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android;androidx.lifecycle.ViewModelProvider$Factory +AndroidX.Lifecycle.ViewModelProvider.IFactory;androidx.lifecycle.ViewModelProvider$Factory +androidx.lifecycle.ViewModelProvider$Factory;androidx.lifecycle.ViewModelProvider$Factory +AndroidX.Lifecycle.ViewModels.CreationExtras+IKey, Xamarin.AndroidX.Lifecycle.ViewModel.Android;androidx.lifecycle.viewmodel.CreationExtras$Key +AndroidX.Lifecycle.ViewModels.CreationExtras.IKey;androidx.lifecycle.viewmodel.CreationExtras$Key +androidx.lifecycle.viewmodel.CreationExtras$Key;androidx.lifecycle.viewmodel.CreationExtras$Key +AndroidX.Lifecycle.ViewModels.IViewModelFactoryDsl, Xamarin.AndroidX.Lifecycle.ViewModel.Android;androidx.lifecycle.viewmodel.ViewModelFactoryDsl +AndroidX.Lifecycle.ViewModels.IViewModelFactoryDsl;androidx.lifecycle.viewmodel.ViewModelFactoryDsl +androidx.lifecycle.viewmodel.ViewModelFactoryDsl;androidx.lifecycle.viewmodel.ViewModelFactoryDsl +AndroidX.Loader.Content.Loader+IOnLoadCanceledListener, Xamarin.AndroidX.Loader;androidx.loader.content.Loader$OnLoadCanceledListener +AndroidX.Loader.Content.Loader.IOnLoadCanceledListener;androidx.loader.content.Loader$OnLoadCanceledListener +androidx.loader.content.Loader$OnLoadCanceledListener;androidx.loader.content.Loader$OnLoadCanceledListener +AndroidX.Loader.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.AndroidX.Loader;mono.androidx.loader.content.Loader_OnLoadCanceledListenerImplementor +AndroidX.Loader.Content.Loader.IOnLoadCanceledListenerImplementor;mono.androidx.loader.content.Loader_OnLoadCanceledListenerImplementor +mono.androidx.loader.content.Loader_OnLoadCanceledListenerImplementor;mono.androidx.loader.content.Loader_OnLoadCanceledListenerImplementor +AndroidX.Loader.Content.Loader+IOnLoadCompleteListener, Xamarin.AndroidX.Loader;androidx.loader.content.Loader$OnLoadCompleteListener +AndroidX.Loader.Content.Loader.IOnLoadCompleteListener;androidx.loader.content.Loader$OnLoadCompleteListener +androidx.loader.content.Loader$OnLoadCompleteListener;androidx.loader.content.Loader$OnLoadCompleteListener +AndroidX.Loader.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.AndroidX.Loader;mono.androidx.loader.content.Loader_OnLoadCompleteListenerImplementor +AndroidX.Loader.Content.Loader.IOnLoadCompleteListenerImplementor;mono.androidx.loader.content.Loader_OnLoadCompleteListenerImplementor +mono.androidx.loader.content.Loader_OnLoadCompleteListenerImplementor;mono.androidx.loader.content.Loader_OnLoadCompleteListenerImplementor +AndroidX.Loader.App.LoaderManager+ILoaderCallbacks, Xamarin.AndroidX.Loader;androidx.loader.app.LoaderManager$LoaderCallbacks +AndroidX.Loader.App.LoaderManager.ILoaderCallbacks;androidx.loader.app.LoaderManager$LoaderCallbacks +androidx.loader.app.LoaderManager$LoaderCallbacks;androidx.loader.app.LoaderManager$LoaderCallbacks +AndroidX.Navigation.IFloatingWindow, Xamarin.AndroidX.Navigation.Common;androidx.navigation.FloatingWindow +AndroidX.Navigation.IFloatingWindow;androidx.navigation.FloatingWindow +androidx.navigation.FloatingWindow;androidx.navigation.FloatingWindow +AndroidX.Navigation.INavArgs, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavArgs +AndroidX.Navigation.INavArgs;androidx.navigation.NavArgs +androidx.navigation.NavArgs;androidx.navigation.NavArgs +AndroidX.Navigation.INavDeepLinkDsl, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavDeepLinkDsl +AndroidX.Navigation.INavDeepLinkDsl;androidx.navigation.NavDeepLinkDsl +androidx.navigation.NavDeepLinkDsl;androidx.navigation.NavDeepLinkDsl +AndroidX.Navigation.INavDestinationDsl, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavDestinationDsl +AndroidX.Navigation.INavDestinationDsl;androidx.navigation.NavDestinationDsl +androidx.navigation.NavDestinationDsl;androidx.navigation.NavDestinationDsl +AndroidX.Navigation.INavDirections, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavDirections +AndroidX.Navigation.INavDirections;androidx.navigation.NavDirections +androidx.navigation.NavDirections;androidx.navigation.NavDirections +AndroidX.Navigation.INavOptionsDsl, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavOptionsDsl +AndroidX.Navigation.INavOptionsDsl;androidx.navigation.NavOptionsDsl +androidx.navigation.NavOptionsDsl;androidx.navigation.NavOptionsDsl +AndroidX.Navigation.INavViewModelStoreProvider, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavViewModelStoreProvider +AndroidX.Navigation.INavViewModelStoreProvider;androidx.navigation.NavViewModelStoreProvider +androidx.navigation.NavViewModelStoreProvider;androidx.navigation.NavViewModelStoreProvider +AndroidX.Navigation.NavDestination+IClassType, Xamarin.AndroidX.Navigation.Common;androidx.navigation.NavDestination$ClassType +AndroidX.Navigation.NavDestination.IClassType;androidx.navigation.NavDestination$ClassType +androidx.navigation.NavDestination$ClassType;androidx.navigation.NavDestination$ClassType +AndroidX.Navigation.Navigator+IExtras, Xamarin.AndroidX.Navigation.Common;androidx.navigation.Navigator$Extras +AndroidX.Navigation.Navigator.IExtras;androidx.navigation.Navigator$Extras +androidx.navigation.Navigator$Extras;androidx.navigation.Navigator$Extras +AndroidX.Navigation.Navigator+IName, Xamarin.AndroidX.Navigation.Common;androidx.navigation.Navigator$Name +AndroidX.Navigation.Navigator.IName;androidx.navigation.Navigator$Name +androidx.navigation.Navigator$Name;androidx.navigation.Navigator$Name +AndroidX.Navigation.INavDeepLinkSaveStateControl, Xamarin.AndroidX.Navigation.Runtime;androidx.navigation.NavDeepLinkSaveStateControl +AndroidX.Navigation.INavDeepLinkSaveStateControl;androidx.navigation.NavDeepLinkSaveStateControl +androidx.navigation.NavDeepLinkSaveStateControl;androidx.navigation.NavDeepLinkSaveStateControl +AndroidX.Navigation.INavHost, Xamarin.AndroidX.Navigation.Runtime;androidx.navigation.NavHost +AndroidX.Navigation.INavHost;androidx.navigation.NavHost +androidx.navigation.NavHost;androidx.navigation.NavHost +AndroidX.Navigation.NavController+IOnDestinationChangedListener, Xamarin.AndroidX.Navigation.Runtime;androidx.navigation.NavController$OnDestinationChangedListener +AndroidX.Navigation.NavController.IOnDestinationChangedListener;androidx.navigation.NavController$OnDestinationChangedListener +androidx.navigation.NavController$OnDestinationChangedListener;androidx.navigation.NavController$OnDestinationChangedListener +AndroidX.Navigation.NavController+IOnDestinationChangedListenerImplementor, Xamarin.AndroidX.Navigation.Runtime;mono.androidx.navigation.NavController_OnDestinationChangedListenerImplementor +AndroidX.Navigation.NavController.IOnDestinationChangedListenerImplementor;mono.androidx.navigation.NavController_OnDestinationChangedListenerImplementor +mono.androidx.navigation.NavController_OnDestinationChangedListenerImplementor;mono.androidx.navigation.NavController_OnDestinationChangedListenerImplementor +AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListener, Xamarin.AndroidX.Navigation.UI;androidx.navigation.ui.AppBarConfiguration$OnNavigateUpListener +AndroidX.Navigation.UI.AppBarConfiguration.IOnNavigateUpListener;androidx.navigation.ui.AppBarConfiguration$OnNavigateUpListener +androidx.navigation.ui.AppBarConfiguration$OnNavigateUpListener;androidx.navigation.ui.AppBarConfiguration$OnNavigateUpListener +AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListenerImplementor, Xamarin.AndroidX.Navigation.UI;mono.androidx.navigation.ui.AppBarConfiguration_OnNavigateUpListenerImplementor +AndroidX.Navigation.UI.AppBarConfiguration.IOnNavigateUpListenerImplementor;mono.androidx.navigation.ui.AppBarConfiguration_OnNavigateUpListenerImplementor +mono.androidx.navigation.ui.AppBarConfiguration_OnNavigateUpListenerImplementor;mono.androidx.navigation.ui.AppBarConfiguration_OnNavigateUpListenerImplementor +AndroidX.Navigation.UI.INavigationUiSaveStateControl, Xamarin.AndroidX.Navigation.UI;androidx.navigation.ui.NavigationUiSaveStateControl +AndroidX.Navigation.UI.INavigationUiSaveStateControl;androidx.navigation.ui.NavigationUiSaveStateControl +androidx.navigation.ui.NavigationUiSaveStateControl;androidx.navigation.ui.NavigationUiSaveStateControl +AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller;androidx.profileinstaller.ProfileInstaller$DiagnosticCode +AndroidX.ProfileInstallers.ProfileInstaller.IDiagnosticCode;androidx.profileinstaller.ProfileInstaller$DiagnosticCode +androidx.profileinstaller.ProfileInstaller$DiagnosticCode;androidx.profileinstaller.ProfileInstaller$DiagnosticCode +AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticsCallback, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller;androidx.profileinstaller.ProfileInstaller$DiagnosticsCallback +AndroidX.ProfileInstallers.ProfileInstaller.IDiagnosticsCallback;androidx.profileinstaller.ProfileInstaller$DiagnosticsCallback +androidx.profileinstaller.ProfileInstaller$DiagnosticsCallback;androidx.profileinstaller.ProfileInstaller$DiagnosticsCallback +AndroidX.ProfileInstallers.ProfileInstaller+IResultCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller;androidx.profileinstaller.ProfileInstaller$ResultCode +AndroidX.ProfileInstallers.ProfileInstaller.IResultCode;androidx.profileinstaller.ProfileInstaller$ResultCode +androidx.profileinstaller.ProfileInstaller$ResultCode;androidx.profileinstaller.ProfileInstaller$ResultCode +AndroidX.ProfileInstallers.ProfileVerifier+CompilationStatus+IResultCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller;androidx.profileinstaller.ProfileVerifier$CompilationStatus$ResultCode +AndroidX.ProfileInstallers.ProfileVerifier.CompilationStatus.IResultCode;androidx.profileinstaller.ProfileVerifier$CompilationStatus$ResultCode +androidx.profileinstaller.ProfileVerifier$CompilationStatus$ResultCode;androidx.profileinstaller.ProfileVerifier$CompilationStatus$ResultCode +AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListener, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.AsyncListDiffer$ListListener +AndroidX.RecyclerView.Widget.AsyncListDiffer.IListListener;androidx.recyclerview.widget.AsyncListDiffer$ListListener +androidx.recyclerview.widget.AsyncListDiffer$ListListener;androidx.recyclerview.widget.AsyncListDiffer$ListListener +AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListenerImplementor, Xamarin.AndroidX.RecyclerView;mono.androidx.recyclerview.widget.AsyncListDiffer_ListListenerImplementor +AndroidX.RecyclerView.Widget.AsyncListDiffer.IListListenerImplementor;mono.androidx.recyclerview.widget.AsyncListDiffer_ListListenerImplementor +mono.androidx.recyclerview.widget.AsyncListDiffer_ListListenerImplementor;mono.androidx.recyclerview.widget.AsyncListDiffer_ListListenerImplementor +AndroidX.RecyclerView.Widget.IItemTouchUIUtil, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.ItemTouchUIUtil +AndroidX.RecyclerView.Widget.IItemTouchUIUtil;androidx.recyclerview.widget.ItemTouchUIUtil +androidx.recyclerview.widget.ItemTouchUIUtil;androidx.recyclerview.widget.ItemTouchUIUtil +AndroidX.RecyclerView.Widget.IListUpdateCallback, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.ListUpdateCallback +AndroidX.RecyclerView.Widget.IListUpdateCallback;androidx.recyclerview.widget.ListUpdateCallback +androidx.recyclerview.widget.ListUpdateCallback;androidx.recyclerview.widget.ListUpdateCallback +AndroidX.RecyclerView.Widget.ItemTouchHelper+IViewDropHandler, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.ItemTouchHelper$ViewDropHandler +AndroidX.RecyclerView.Widget.ItemTouchHelper.IViewDropHandler;androidx.recyclerview.widget.ItemTouchHelper$ViewDropHandler +androidx.recyclerview.widget.ItemTouchHelper$ViewDropHandler;androidx.recyclerview.widget.ItemTouchHelper$ViewDropHandler +AndroidX.RecyclerView.Widget.RecyclerView+IChildDrawingOrderCallback, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback +AndroidX.RecyclerView.Widget.RecyclerView.IChildDrawingOrderCallback;androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback +androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback;androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback +AndroidX.RecyclerView.Widget.RecyclerView+EdgeEffectFactory+IEdgeDirection, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory$EdgeDirection +AndroidX.RecyclerView.Widget.RecyclerView.EdgeEffectFactory.IEdgeDirection;androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory$EdgeDirection +androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory$EdgeDirection;androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory$EdgeDirection +AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IAdapterChanges, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$ItemAnimator$AdapterChanges +AndroidX.RecyclerView.Widget.RecyclerView.ItemAnimator.IAdapterChanges;androidx.recyclerview.widget.RecyclerView$ItemAnimator$AdapterChanges +androidx.recyclerview.widget.RecyclerView$ItemAnimator$AdapterChanges;androidx.recyclerview.widget.RecyclerView$ItemAnimator$AdapterChanges +AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListener, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$ItemAnimator$ItemAnimatorFinishedListener +AndroidX.RecyclerView.Widget.RecyclerView.ItemAnimator.IItemAnimatorFinishedListener;androidx.recyclerview.widget.RecyclerView$ItemAnimator$ItemAnimatorFinishedListener +androidx.recyclerview.widget.RecyclerView$ItemAnimator$ItemAnimatorFinishedListener;androidx.recyclerview.widget.RecyclerView$ItemAnimator$ItemAnimatorFinishedListener +AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.AndroidX.RecyclerView;mono.androidx.recyclerview.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView.ItemAnimator.IItemAnimatorFinishedListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +mono.androidx.recyclerview.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView+LayoutManager+ILayoutPrefetchRegistry, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$LayoutManager$LayoutPrefetchRegistry +AndroidX.RecyclerView.Widget.RecyclerView.LayoutManager.ILayoutPrefetchRegistry;androidx.recyclerview.widget.RecyclerView$LayoutManager$LayoutPrefetchRegistry +androidx.recyclerview.widget.RecyclerView$LayoutManager$LayoutPrefetchRegistry;androidx.recyclerview.widget.RecyclerView$LayoutManager$LayoutPrefetchRegistry +AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListener, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener +AndroidX.RecyclerView.Widget.RecyclerView.IOnChildAttachStateChangeListener;androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener +androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener;androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener +AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.AndroidX.RecyclerView;mono.androidx.recyclerview.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView.IOnChildAttachStateChangeListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +mono.androidx.recyclerview.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListener, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$OnItemTouchListener +AndroidX.RecyclerView.Widget.RecyclerView.IOnItemTouchListener;androidx.recyclerview.widget.RecyclerView$OnItemTouchListener +androidx.recyclerview.widget.RecyclerView$OnItemTouchListener;androidx.recyclerview.widget.RecyclerView$OnItemTouchListener +AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.AndroidX.RecyclerView;mono.androidx.recyclerview.widget.RecyclerView_OnItemTouchListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView.IOnItemTouchListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_OnItemTouchListenerImplementor +mono.androidx.recyclerview.widget.RecyclerView_OnItemTouchListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_OnItemTouchListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView+IOrientation, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$Orientation +AndroidX.RecyclerView.Widget.RecyclerView.IOrientation;androidx.recyclerview.widget.RecyclerView$Orientation +androidx.recyclerview.widget.RecyclerView$Orientation;androidx.recyclerview.widget.RecyclerView$Orientation +AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListener, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$RecyclerListener +AndroidX.RecyclerView.Widget.RecyclerView.IRecyclerListener;androidx.recyclerview.widget.RecyclerView$RecyclerListener +androidx.recyclerview.widget.RecyclerView$RecyclerListener;androidx.recyclerview.widget.RecyclerView$RecyclerListener +AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.AndroidX.RecyclerView;mono.androidx.recyclerview.widget.RecyclerView_RecyclerListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView.IRecyclerListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_RecyclerListenerImplementor +mono.androidx.recyclerview.widget.RecyclerView_RecyclerListenerImplementor;mono.androidx.recyclerview.widget.RecyclerView_RecyclerListenerImplementor +AndroidX.RecyclerView.Widget.RecyclerView+SmoothScroller+IScrollVectorProvider, Xamarin.AndroidX.RecyclerView;androidx.recyclerview.widget.RecyclerView$SmoothScroller$ScrollVectorProvider +AndroidX.RecyclerView.Widget.RecyclerView.SmoothScroller.IScrollVectorProvider;androidx.recyclerview.widget.RecyclerView$SmoothScroller$ScrollVectorProvider +androidx.recyclerview.widget.RecyclerView$SmoothScroller$ScrollVectorProvider;androidx.recyclerview.widget.RecyclerView$SmoothScroller$ScrollVectorProvider +AndroidX.ResourceInspection.Annotation.IAppCompatShadowedAttributes, Xamarin.AndroidX.ResourceInspection.Annotation;androidx.resourceinspection.annotation.AppCompatShadowedAttributes +AndroidX.ResourceInspection.Annotation.IAppCompatShadowedAttributes;androidx.resourceinspection.annotation.AppCompatShadowedAttributes +androidx.resourceinspection.annotation.AppCompatShadowedAttributes;androidx.resourceinspection.annotation.AppCompatShadowedAttributes +AndroidX.ResourceInspection.Annotation.IAttributeIntMap, Xamarin.AndroidX.ResourceInspection.Annotation;androidx.resourceinspection.annotation.Attribute$IntMap +AndroidX.ResourceInspection.Annotation.IAttributeIntMap;androidx.resourceinspection.annotation.Attribute$IntMap +androidx.resourceinspection.annotation.Attribute$IntMap;androidx.resourceinspection.annotation.Attribute$IntMap +AndroidX.ResourceInspection.Annotation.IAttribute, Xamarin.AndroidX.ResourceInspection.Annotation;androidx.resourceinspection.annotation.Attribute +AndroidX.ResourceInspection.Annotation.IAttribute;androidx.resourceinspection.annotation.Attribute +androidx.resourceinspection.annotation.Attribute;androidx.resourceinspection.annotation.Attribute +AndroidX.SavedState.ISavedStateRegistryOwner, Xamarin.AndroidX.SavedState;androidx.savedstate.SavedStateRegistryOwner +AndroidX.SavedState.ISavedStateRegistryOwner;androidx.savedstate.SavedStateRegistryOwner +androidx.savedstate.SavedStateRegistryOwner;androidx.savedstate.SavedStateRegistryOwner +AndroidX.SavedState.SavedStateRegistry+IAutoRecreated, Xamarin.AndroidX.SavedState;androidx.savedstate.SavedStateRegistry$AutoRecreated +AndroidX.SavedState.SavedStateRegistry.IAutoRecreated;androidx.savedstate.SavedStateRegistry$AutoRecreated +androidx.savedstate.SavedStateRegistry$AutoRecreated;androidx.savedstate.SavedStateRegistry$AutoRecreated +AndroidX.SavedState.SavedStateRegistry+ISavedStateProvider, Xamarin.AndroidX.SavedState;androidx.savedstate.SavedStateRegistry$SavedStateProvider +AndroidX.SavedState.SavedStateRegistry.ISavedStateProvider;androidx.savedstate.SavedStateRegistry$SavedStateProvider +androidx.savedstate.SavedStateRegistry$SavedStateProvider;androidx.savedstate.SavedStateRegistry$SavedStateProvider +AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListener, Xamarin.AndroidX.SlidingPaneLayout;androidx.slidingpanelayout.widget.SlidingPaneLayout$PanelSlideListener +AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout.IPanelSlideListener;androidx.slidingpanelayout.widget.SlidingPaneLayout$PanelSlideListener +androidx.slidingpanelayout.widget.SlidingPaneLayout$PanelSlideListener;androidx.slidingpanelayout.widget.SlidingPaneLayout$PanelSlideListener +AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.AndroidX.SlidingPaneLayout;mono.androidx.slidingpanelayout.widget.SlidingPaneLayout_PanelSlideListenerImplementor +AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout.IPanelSlideListenerImplementor;mono.androidx.slidingpanelayout.widget.SlidingPaneLayout_PanelSlideListenerImplementor +mono.androidx.slidingpanelayout.widget.SlidingPaneLayout_PanelSlideListenerImplementor;mono.androidx.slidingpanelayout.widget.SlidingPaneLayout_PanelSlideListenerImplementor +AndroidX.Startup.IInitializer, Xamarin.AndroidX.Startup.StartupRuntime;androidx.startup.Initializer +AndroidX.Startup.IInitializer;androidx.startup.Initializer +androidx.startup.Initializer;androidx.startup.Initializer +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnChildScrollUpCallback, Xamarin.AndroidX.SwipeRefreshLayout;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout.IOnChildScrollUpCallback;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListener, Xamarin.AndroidX.SwipeRefreshLayout;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout.IOnRefreshListener;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener;androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.AndroidX.SwipeRefreshLayout;mono.androidx.swiperefreshlayout.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout.IOnRefreshListenerImplementor;mono.androidx.swiperefreshlayout.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +mono.androidx.swiperefreshlayout.widget.SwipeRefreshLayout_OnRefreshListenerImplementor;mono.androidx.swiperefreshlayout.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +AndroidX.SwipeRefreshLayout.Widget.CircularProgressDrawable+IProgressDrawableSize, Xamarin.AndroidX.SwipeRefreshLayout;androidx.swiperefreshlayout.widget.CircularProgressDrawable$ProgressDrawableSize +AndroidX.SwipeRefreshLayout.Widget.CircularProgressDrawable.IProgressDrawableSize;androidx.swiperefreshlayout.widget.CircularProgressDrawable$ProgressDrawableSize +androidx.swiperefreshlayout.widget.CircularProgressDrawable$ProgressDrawableSize;androidx.swiperefreshlayout.widget.CircularProgressDrawable$ProgressDrawableSize +AndroidX.Transitions.FloatArrayEvaluator, Xamarin.AndroidX.Transition;crc64a25b61d9f8ee364f.FloatArrayEvaluator +AndroidX.Transitions.FloatArrayEvaluator;crc64a25b61d9f8ee364f.FloatArrayEvaluator +androidx.transitions.FloatArrayEvaluator;crc64a25b61d9f8ee364f.FloatArrayEvaluator +AndroidX.Transitions.TransitionUtils, Xamarin.AndroidX.Transition;crc64a25b61d9f8ee364f.TransitionUtils +AndroidX.Transitions.TransitionUtils;crc64a25b61d9f8ee364f.TransitionUtils +androidx.transitions.TransitionUtils;crc64a25b61d9f8ee364f.TransitionUtils +AndroidX.Transitions.TransitionUtils+MatrixEvaluator, Xamarin.AndroidX.Transition;crc64a25b61d9f8ee364f.TransitionUtils_MatrixEvaluator +AndroidX.Transitions.TransitionUtils.MatrixEvaluator;crc64a25b61d9f8ee364f.TransitionUtils_MatrixEvaluator +androidx.transitions.TransitionUtils_MatrixEvaluator;crc64a25b61d9f8ee364f.TransitionUtils_MatrixEvaluator +AndroidX.Transitions.RectEvaluator, Xamarin.AndroidX.Transition;crc64a25b61d9f8ee364f.RectEvaluator +AndroidX.Transitions.RectEvaluator;crc64a25b61d9f8ee364f.RectEvaluator +androidx.transitions.RectEvaluator;crc64a25b61d9f8ee364f.RectEvaluator +AndroidX.Transitions.ITransitionSeekController, Xamarin.AndroidX.Transition;androidx.transition.TransitionSeekController +AndroidX.Transitions.ITransitionSeekController;androidx.transition.TransitionSeekController +androidx.transition.TransitionSeekController;androidx.transition.TransitionSeekController +AndroidX.Transitions.Slide+IGravityFlag, Xamarin.AndroidX.Transition;androidx.transition.Slide$GravityFlag +AndroidX.Transitions.Slide.IGravityFlag;androidx.transition.Slide$GravityFlag +androidx.transition.Slide$GravityFlag;androidx.transition.Slide$GravityFlag +AndroidX.Transitions.Transition+IMatchOrder, Xamarin.AndroidX.Transition;androidx.transition.Transition$MatchOrder +AndroidX.Transitions.Transition.IMatchOrder;androidx.transition.Transition$MatchOrder +androidx.transition.Transition$MatchOrder;androidx.transition.Transition$MatchOrder +AndroidX.Transitions.Transition+ITransitionListener, Xamarin.AndroidX.Transition;androidx.transition.Transition$TransitionListener +AndroidX.Transitions.Transition.ITransitionListener;androidx.transition.Transition$TransitionListener +androidx.transition.Transition$TransitionListener;androidx.transition.Transition$TransitionListener +AndroidX.Transitions.Transition+ITransitionListenerImplementor, Xamarin.AndroidX.Transition;mono.androidx.transition.Transition_TransitionListenerImplementor +AndroidX.Transitions.Transition.ITransitionListenerImplementor;mono.androidx.transition.Transition_TransitionListenerImplementor +mono.androidx.transition.Transition_TransitionListenerImplementor;mono.androidx.transition.Transition_TransitionListenerImplementor +AndroidX.Transitions.Visibility+IMode, Xamarin.AndroidX.Transition;androidx.transition.Visibility$Mode +AndroidX.Transitions.Visibility.IMode;androidx.transition.Visibility$Mode +androidx.transition.Visibility$Mode;androidx.transition.Visibility$Mode +AndroidX.VectorDrawable.Graphics.Drawable.IAnimatable2Compat, Xamarin.AndroidX.VectorDrawable.Animated;androidx.vectordrawable.graphics.drawable.Animatable2Compat +AndroidX.VectorDrawable.Graphics.Drawable.IAnimatable2Compat;androidx.vectordrawable.graphics.drawable.Animatable2Compat +androidx.vectordrawable.graphics.drawable.Animatable2Compat;androidx.vectordrawable.graphics.drawable.Animatable2Compat +AndroidX.VersionedParcelable.INonParcelField, Xamarin.AndroidX.VersionedParcelable;androidx.versionedparcelable.NonParcelField +AndroidX.VersionedParcelable.INonParcelField;androidx.versionedparcelable.NonParcelField +androidx.versionedparcelable.NonParcelField;androidx.versionedparcelable.NonParcelField +AndroidX.VersionedParcelable.IParcelField, Xamarin.AndroidX.VersionedParcelable;androidx.versionedparcelable.ParcelField +AndroidX.VersionedParcelable.IParcelField;androidx.versionedparcelable.ParcelField +androidx.versionedparcelable.ParcelField;androidx.versionedparcelable.ParcelField +AndroidX.VersionedParcelable.IVersionedParcelable, Xamarin.AndroidX.VersionedParcelable;androidx.versionedparcelable.VersionedParcelable +AndroidX.VersionedParcelable.IVersionedParcelable;androidx.versionedparcelable.VersionedParcelable +androidx.versionedparcelable.VersionedParcelable;androidx.versionedparcelable.VersionedParcelable +AndroidX.VersionedParcelable.IVersionedParcelize, Xamarin.AndroidX.VersionedParcelable;androidx.versionedparcelable.VersionedParcelize +AndroidX.VersionedParcelable.IVersionedParcelize;androidx.versionedparcelable.VersionedParcelize +androidx.versionedparcelable.VersionedParcelize;androidx.versionedparcelable.VersionedParcelize +AndroidX.ViewPager.Widget.ViewPager+IDecorView, Xamarin.AndroidX.ViewPager;androidx.viewpager.widget.ViewPager$DecorView +AndroidX.ViewPager.Widget.ViewPager.IDecorView;androidx.viewpager.widget.ViewPager$DecorView +androidx.viewpager.widget.ViewPager$DecorView;androidx.viewpager.widget.ViewPager$DecorView +AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListener, Xamarin.AndroidX.ViewPager;androidx.viewpager.widget.ViewPager$OnAdapterChangeListener +AndroidX.ViewPager.Widget.ViewPager.IOnAdapterChangeListener;androidx.viewpager.widget.ViewPager$OnAdapterChangeListener +androidx.viewpager.widget.ViewPager$OnAdapterChangeListener;androidx.viewpager.widget.ViewPager$OnAdapterChangeListener +AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListenerImplementor, Xamarin.AndroidX.ViewPager;mono.androidx.viewpager.widget.ViewPager_OnAdapterChangeListenerImplementor +AndroidX.ViewPager.Widget.ViewPager.IOnAdapterChangeListenerImplementor;mono.androidx.viewpager.widget.ViewPager_OnAdapterChangeListenerImplementor +mono.androidx.viewpager.widget.ViewPager_OnAdapterChangeListenerImplementor;mono.androidx.viewpager.widget.ViewPager_OnAdapterChangeListenerImplementor +AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListener, Xamarin.AndroidX.ViewPager;androidx.viewpager.widget.ViewPager$OnPageChangeListener +AndroidX.ViewPager.Widget.ViewPager.IOnPageChangeListener;androidx.viewpager.widget.ViewPager$OnPageChangeListener +androidx.viewpager.widget.ViewPager$OnPageChangeListener;androidx.viewpager.widget.ViewPager$OnPageChangeListener +AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListenerImplementor, Xamarin.AndroidX.ViewPager;mono.androidx.viewpager.widget.ViewPager_OnPageChangeListenerImplementor +AndroidX.ViewPager.Widget.ViewPager.IOnPageChangeListenerImplementor;mono.androidx.viewpager.widget.ViewPager_OnPageChangeListenerImplementor +mono.androidx.viewpager.widget.ViewPager_OnPageChangeListenerImplementor;mono.androidx.viewpager.widget.ViewPager_OnPageChangeListenerImplementor +AndroidX.ViewPager.Widget.ViewPager+IPageTransformer, Xamarin.AndroidX.ViewPager;androidx.viewpager.widget.ViewPager$PageTransformer +AndroidX.ViewPager.Widget.ViewPager.IPageTransformer;androidx.viewpager.widget.ViewPager$PageTransformer +androidx.viewpager.widget.ViewPager$PageTransformer;androidx.viewpager.widget.ViewPager$PageTransformer +AndroidX.ViewPager2.Widget.ViewPager2+IOffscreenPageLimit, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.widget.ViewPager2$OffscreenPageLimit +AndroidX.ViewPager2.Widget.ViewPager2.IOffscreenPageLimit;androidx.viewpager2.widget.ViewPager2$OffscreenPageLimit +androidx.viewpager2.widget.ViewPager2$OffscreenPageLimit;androidx.viewpager2.widget.ViewPager2$OffscreenPageLimit +AndroidX.ViewPager2.Widget.ViewPager2+IOrientation, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.widget.ViewPager2$Orientation +AndroidX.ViewPager2.Widget.ViewPager2.IOrientation;androidx.viewpager2.widget.ViewPager2$Orientation +androidx.viewpager2.widget.ViewPager2$Orientation;androidx.viewpager2.widget.ViewPager2$Orientation +AndroidX.ViewPager2.Widget.ViewPager2+IPageTransformer, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.widget.ViewPager2$PageTransformer +AndroidX.ViewPager2.Widget.ViewPager2.IPageTransformer;androidx.viewpager2.widget.ViewPager2$PageTransformer +androidx.viewpager2.widget.ViewPager2$PageTransformer;androidx.viewpager2.widget.ViewPager2$PageTransformer +AndroidX.ViewPager2.Widget.ViewPager2+IScrollState, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.widget.ViewPager2$ScrollState +AndroidX.ViewPager2.Widget.ViewPager2.IScrollState;androidx.viewpager2.widget.ViewPager2$ScrollState +androidx.viewpager2.widget.ViewPager2$ScrollState;androidx.viewpager2.widget.ViewPager2$ScrollState +AndroidX.ViewPager2.Adapter.FragmentStateAdapter+IExperimentalFragmentStateAdapterApi, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.adapter.FragmentStateAdapter$ExperimentalFragmentStateAdapterApi +AndroidX.ViewPager2.Adapter.FragmentStateAdapter.IExperimentalFragmentStateAdapterApi;androidx.viewpager2.adapter.FragmentStateAdapter$ExperimentalFragmentStateAdapterApi +androidx.viewpager2.adapter.FragmentStateAdapter$ExperimentalFragmentStateAdapterApi;androidx.viewpager2.adapter.FragmentStateAdapter$ExperimentalFragmentStateAdapterApi +AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListener, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.adapter.FragmentStateAdapter$FragmentTransactionCallback$OnPostEventListener +AndroidX.ViewPager2.Adapter.FragmentStateAdapter.FragmentTransactionCallback.IOnPostEventListener;androidx.viewpager2.adapter.FragmentStateAdapter$FragmentTransactionCallback$OnPostEventListener +androidx.viewpager2.adapter.FragmentStateAdapter$FragmentTransactionCallback$OnPostEventListener;androidx.viewpager2.adapter.FragmentStateAdapter$FragmentTransactionCallback$OnPostEventListener +AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListenerImplementor, Xamarin.AndroidX.ViewPager2;mono.androidx.viewpager2.adapter.FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor +AndroidX.ViewPager2.Adapter.FragmentStateAdapter.FragmentTransactionCallback.IOnPostEventListenerImplementor;mono.androidx.viewpager2.adapter.FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor +mono.androidx.viewpager2.adapter.FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor;mono.androidx.viewpager2.adapter.FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor +AndroidX.ViewPager2.Adapter.IStatefulAdapter, Xamarin.AndroidX.ViewPager2;androidx.viewpager2.adapter.StatefulAdapter +AndroidX.ViewPager2.Adapter.IStatefulAdapter;androidx.viewpager2.adapter.StatefulAdapter +androidx.viewpager2.adapter.StatefulAdapter;androidx.viewpager2.adapter.StatefulAdapter +AndroidX.Window.IRequiresWindowSdkExtension, Xamarin.AndroidX.Window;androidx.window.RequiresWindowSdkExtension +AndroidX.Window.IRequiresWindowSdkExtension;androidx.window.RequiresWindowSdkExtension +androidx.window.RequiresWindowSdkExtension;androidx.window.RequiresWindowSdkExtension +AndroidX.Window.Layout.IDisplayFeature, Xamarin.AndroidX.Window;androidx.window.layout.DisplayFeature +AndroidX.Window.Layout.IDisplayFeature;androidx.window.layout.DisplayFeature +androidx.window.layout.DisplayFeature;androidx.window.layout.DisplayFeature +AndroidX.Window.Layout.IFoldingFeature, Xamarin.AndroidX.Window;androidx.window.layout.FoldingFeature +AndroidX.Window.Layout.IFoldingFeature;androidx.window.layout.FoldingFeature +androidx.window.layout.FoldingFeature;androidx.window.layout.FoldingFeature +AndroidX.Window.Layout.IWindowInfoTracker, Xamarin.AndroidX.Window;androidx.window.layout.WindowInfoTracker +AndroidX.Window.Layout.IWindowInfoTracker;androidx.window.layout.WindowInfoTracker +androidx.window.layout.WindowInfoTracker;androidx.window.layout.WindowInfoTracker +AndroidX.Window.Layout.IWindowInfoTrackerDecorator, Xamarin.AndroidX.Window;androidx.window.layout.WindowInfoTrackerDecorator +AndroidX.Window.Layout.IWindowInfoTrackerDecorator;androidx.window.layout.WindowInfoTrackerDecorator +androidx.window.layout.WindowInfoTrackerDecorator;androidx.window.layout.WindowInfoTrackerDecorator +AndroidX.Window.Layout.IWindowMetricsCalculator, Xamarin.AndroidX.Window;androidx.window.layout.WindowMetricsCalculator +AndroidX.Window.Layout.IWindowMetricsCalculator;androidx.window.layout.WindowMetricsCalculator +androidx.window.layout.WindowMetricsCalculator;androidx.window.layout.WindowMetricsCalculator +AndroidX.Window.Layout.IWindowMetricsCalculatorDecorator, Xamarin.AndroidX.Window;androidx.window.layout.WindowMetricsCalculatorDecorator +AndroidX.Window.Layout.IWindowMetricsCalculatorDecorator;androidx.window.layout.WindowMetricsCalculatorDecorator +androidx.window.layout.WindowMetricsCalculatorDecorator;androidx.window.layout.WindowMetricsCalculatorDecorator +AndroidX.Window.Embedding.IEmbeddingBackend, Xamarin.AndroidX.Window;androidx.window.embedding.EmbeddingBackend +AndroidX.Window.Embedding.IEmbeddingBackend;androidx.window.embedding.EmbeddingBackend +androidx.window.embedding.EmbeddingBackend;androidx.window.embedding.EmbeddingBackend +AndroidX.Window.Embedding.IEmbeddingBackendDecorator, Xamarin.AndroidX.Window;androidx.window.embedding.EmbeddingBackendDecorator +AndroidX.Window.Embedding.IEmbeddingBackendDecorator;androidx.window.embedding.EmbeddingBackendDecorator +androidx.window.embedding.EmbeddingBackendDecorator;androidx.window.embedding.EmbeddingBackendDecorator +AndroidX.Window.Core.IExperimentalWindowApi, Xamarin.AndroidX.Window;androidx.window.core.ExperimentalWindowApi +AndroidX.Window.Core.IExperimentalWindowApi;androidx.window.core.ExperimentalWindowApi +androidx.window.core.ExperimentalWindowApi;androidx.window.core.ExperimentalWindowApi +AndroidX.Window.Area.IWindowAreaController, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaController +AndroidX.Window.Area.IWindowAreaController;androidx.window.area.WindowAreaController +androidx.window.area.WindowAreaController;androidx.window.area.WindowAreaController +AndroidX.Window.Area.IWindowAreaControllerDecorator, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaControllerDecorator +AndroidX.Window.Area.IWindowAreaControllerDecorator;androidx.window.area.WindowAreaControllerDecorator +androidx.window.area.WindowAreaControllerDecorator;androidx.window.area.WindowAreaControllerDecorator +AndroidX.Window.Area.IWindowAreaPresentationSessionCallback, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaPresentationSessionCallback +AndroidX.Window.Area.IWindowAreaPresentationSessionCallback;androidx.window.area.WindowAreaPresentationSessionCallback +androidx.window.area.WindowAreaPresentationSessionCallback;androidx.window.area.WindowAreaPresentationSessionCallback +AndroidX.Window.Area.IWindowAreaSession, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaSession +AndroidX.Window.Area.IWindowAreaSession;androidx.window.area.WindowAreaSession +androidx.window.area.WindowAreaSession;androidx.window.area.WindowAreaSession +AndroidX.Window.Area.IWindowAreaSessionCallback, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaSessionCallback +AndroidX.Window.Area.IWindowAreaSessionCallback;androidx.window.area.WindowAreaSessionCallback +androidx.window.area.WindowAreaSessionCallback;androidx.window.area.WindowAreaSessionCallback +AndroidX.Window.Area.IWindowAreaSessionPresenter, Xamarin.AndroidX.Window;androidx.window.area.WindowAreaSessionPresenter +AndroidX.Window.Area.IWindowAreaSessionPresenter;androidx.window.area.WindowAreaSessionPresenter +androidx.window.area.WindowAreaSessionPresenter;androidx.window.area.WindowAreaSessionPresenter +AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaPresentationRequirements, Xamarin.AndroidX.Window;androidx.window.area.reflectionguard.ExtensionWindowAreaPresentationRequirements +AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaPresentationRequirements;androidx.window.area.reflectionguard.ExtensionWindowAreaPresentationRequirements +androidx.window.area.reflectionguard.ExtensionWindowAreaPresentationRequirements;androidx.window.area.reflectionguard.ExtensionWindowAreaPresentationRequirements +AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaStatusRequirements, Xamarin.AndroidX.Window;androidx.window.area.reflectionguard.ExtensionWindowAreaStatusRequirements +AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaStatusRequirements;androidx.window.area.reflectionguard.ExtensionWindowAreaStatusRequirements +androidx.window.area.reflectionguard.ExtensionWindowAreaStatusRequirements;androidx.window.area.reflectionguard.ExtensionWindowAreaStatusRequirements +AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi2Requirements, Xamarin.AndroidX.Window;androidx.window.area.reflectionguard.WindowAreaComponentApi2Requirements +AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi2Requirements;androidx.window.area.reflectionguard.WindowAreaComponentApi2Requirements +androidx.window.area.reflectionguard.WindowAreaComponentApi2Requirements;androidx.window.area.reflectionguard.WindowAreaComponentApi2Requirements +AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi3Requirements, Xamarin.AndroidX.Window;androidx.window.area.reflectionguard.WindowAreaComponentApi3Requirements +AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi3Requirements;androidx.window.area.reflectionguard.WindowAreaComponentApi3Requirements +androidx.window.area.reflectionguard.WindowAreaComponentApi3Requirements;androidx.window.area.reflectionguard.WindowAreaComponentApi3Requirements +AndroidX.Window.Extensions.Core.Util.Function.IConsumer, Xamarin.AndroidX.Window.Extensions.Core.Core;androidx.window.extensions.core.util.function.Consumer +AndroidX.Window.Extensions.Core.Util.Function.IConsumer;androidx.window.extensions.core.util.function.Consumer +androidx.window.extensions.core.util.function.Consumer;androidx.window.extensions.core.util.function.Consumer +AndroidX.Window.Extensions.Core.Util.Function.IFunction, Xamarin.AndroidX.Window.Extensions.Core.Core;androidx.window.extensions.core.util.function.Function +AndroidX.Window.Extensions.Core.Util.Function.IFunction;androidx.window.extensions.core.util.function.Function +androidx.window.extensions.core.util.function.Function;androidx.window.extensions.core.util.function.Function +AndroidX.Window.Extensions.Core.Util.Function.IPredicate, Xamarin.AndroidX.Window.Extensions.Core.Core;androidx.window.extensions.core.util.function.Predicate +AndroidX.Window.Extensions.Core.Util.Function.IPredicate;androidx.window.extensions.core.util.function.Predicate +androidx.window.extensions.core.util.function.Predicate;androidx.window.extensions.core.util.function.Predicate +Google.Android.Material.Transition.IVisibilityAnimatorProvider, Xamarin.Google.Android.Material;com.google.android.material.transition.VisibilityAnimatorProvider +Google.Android.Material.Transition.IVisibilityAnimatorProvider;com.google.android.material.transition.VisibilityAnimatorProvider +com.google.android.material.transition.VisibilityAnimatorProvider;com.google.android.material.transition.VisibilityAnimatorProvider +Google.Android.Material.Transition.MaterialContainerTransform+IFadeMode, Xamarin.Google.Android.Material;com.google.android.material.transition.MaterialContainerTransform$FadeMode +Google.Android.Material.Transition.MaterialContainerTransform.IFadeMode;com.google.android.material.transition.MaterialContainerTransform$FadeMode +com.google.android.material.transition.MaterialContainerTransform$FadeMode;com.google.android.material.transition.MaterialContainerTransform$FadeMode +Google.Android.Material.Transition.MaterialContainerTransform+IFitMode, Xamarin.Google.Android.Material;com.google.android.material.transition.MaterialContainerTransform$FitMode +Google.Android.Material.Transition.MaterialContainerTransform.IFitMode;com.google.android.material.transition.MaterialContainerTransform$FitMode +com.google.android.material.transition.MaterialContainerTransform$FitMode;com.google.android.material.transition.MaterialContainerTransform$FitMode +Google.Android.Material.Transition.MaterialContainerTransform+ITransitionDirection, Xamarin.Google.Android.Material;com.google.android.material.transition.MaterialContainerTransform$TransitionDirection +Google.Android.Material.Transition.MaterialContainerTransform.ITransitionDirection;com.google.android.material.transition.MaterialContainerTransform$TransitionDirection +com.google.android.material.transition.MaterialContainerTransform$TransitionDirection;com.google.android.material.transition.MaterialContainerTransform$TransitionDirection +Google.Android.Material.Transition.MaterialSharedAxis+IAxis, Xamarin.Google.Android.Material;com.google.android.material.transition.MaterialSharedAxis$Axis +Google.Android.Material.Transition.MaterialSharedAxis.IAxis;com.google.android.material.transition.MaterialSharedAxis$Axis +com.google.android.material.transition.MaterialSharedAxis$Axis;com.google.android.material.transition.MaterialSharedAxis$Axis +Google.Android.Material.Transition.SlideDistanceProvider+IGravityFlag, Xamarin.Google.Android.Material;com.google.android.material.transition.SlideDistanceProvider$GravityFlag +Google.Android.Material.Transition.SlideDistanceProvider.IGravityFlag;com.google.android.material.transition.SlideDistanceProvider$GravityFlag +com.google.android.material.transition.SlideDistanceProvider$GravityFlag;com.google.android.material.transition.SlideDistanceProvider$GravityFlag +Google.Android.Material.Transition.Platform.IVisibilityAnimatorProvider, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.VisibilityAnimatorProvider +Google.Android.Material.Transition.Platform.IVisibilityAnimatorProvider;com.google.android.material.transition.platform.VisibilityAnimatorProvider +com.google.android.material.transition.platform.VisibilityAnimatorProvider;com.google.android.material.transition.platform.VisibilityAnimatorProvider +Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFadeMode, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.MaterialContainerTransform$FadeMode +Google.Android.Material.Transition.Platform.MaterialContainerTransform.IFadeMode;com.google.android.material.transition.platform.MaterialContainerTransform$FadeMode +com.google.android.material.transition.platform.MaterialContainerTransform$FadeMode;com.google.android.material.transition.platform.MaterialContainerTransform$FadeMode +Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFitMode, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.MaterialContainerTransform$FitMode +Google.Android.Material.Transition.Platform.MaterialContainerTransform.IFitMode;com.google.android.material.transition.platform.MaterialContainerTransform$FitMode +com.google.android.material.transition.platform.MaterialContainerTransform$FitMode;com.google.android.material.transition.platform.MaterialContainerTransform$FitMode +Google.Android.Material.Transition.Platform.MaterialContainerTransform+ITransitionDirection, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDirection +Google.Android.Material.Transition.Platform.MaterialContainerTransform.ITransitionDirection;com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDirection +com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDirection;com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDirection +Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback+IShapeProvider, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.MaterialContainerTransformSharedElementCallback$ShapeProvider +Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback.IShapeProvider;com.google.android.material.transition.platform.MaterialContainerTransformSharedElementCallback$ShapeProvider +com.google.android.material.transition.platform.MaterialContainerTransformSharedElementCallback$ShapeProvider;com.google.android.material.transition.platform.MaterialContainerTransformSharedElementCallback$ShapeProvider +Google.Android.Material.Transition.Platform.MaterialSharedAxis+IAxis, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.MaterialSharedAxis$Axis +Google.Android.Material.Transition.Platform.MaterialSharedAxis.IAxis;com.google.android.material.transition.platform.MaterialSharedAxis$Axis +com.google.android.material.transition.platform.MaterialSharedAxis$Axis;com.google.android.material.transition.platform.MaterialSharedAxis$Axis +Google.Android.Material.Transition.Platform.SlideDistanceProvider+IGravityFlag, Xamarin.Google.Android.Material;com.google.android.material.transition.platform.SlideDistanceProvider$GravityFlag +Google.Android.Material.Transition.Platform.SlideDistanceProvider.IGravityFlag;com.google.android.material.transition.platform.SlideDistanceProvider$GravityFlag +com.google.android.material.transition.platform.SlideDistanceProvider$GravityFlag;com.google.android.material.transition.platform.SlideDistanceProvider$GravityFlag +Google.Android.Material.TimePicker.ITimeFormat, Xamarin.Google.Android.Material;com.google.android.material.timepicker.TimeFormat +Google.Android.Material.TimePicker.ITimeFormat;com.google.android.material.timepicker.TimeFormat +com.google.android.material.timepicker.TimeFormat;com.google.android.material.timepicker.TimeFormat +Google.Android.Material.Slider.IBaseOnChangeListener, Xamarin.Google.Android.Material;com.google.android.material.slider.BaseOnChangeListener +Google.Android.Material.Slider.IBaseOnChangeListener;com.google.android.material.slider.BaseOnChangeListener +com.google.android.material.slider.BaseOnChangeListener;com.google.android.material.slider.BaseOnChangeListener +Google.Android.Material.Slider.IBaseOnChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.slider.BaseOnChangeListenerImplementor +Google.Android.Material.Slider.IBaseOnChangeListenerImplementor;mono.com.google.android.material.slider.BaseOnChangeListenerImplementor +mono.com.google.android.material.slider.BaseOnChangeListenerImplementor;mono.com.google.android.material.slider.BaseOnChangeListenerImplementor +Google.Android.Material.Slider.IBaseOnSliderTouchListener, Xamarin.Google.Android.Material;com.google.android.material.slider.BaseOnSliderTouchListener +Google.Android.Material.Slider.IBaseOnSliderTouchListener;com.google.android.material.slider.BaseOnSliderTouchListener +com.google.android.material.slider.BaseOnSliderTouchListener;com.google.android.material.slider.BaseOnSliderTouchListener +Google.Android.Material.Slider.IBaseOnSliderTouchListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.slider.BaseOnSliderTouchListenerImplementor +Google.Android.Material.Slider.IBaseOnSliderTouchListenerImplementor;mono.com.google.android.material.slider.BaseOnSliderTouchListenerImplementor +mono.com.google.android.material.slider.BaseOnSliderTouchListenerImplementor;mono.com.google.android.material.slider.BaseOnSliderTouchListenerImplementor +Google.Android.Material.Slider.ILabelFormatter, Xamarin.Google.Android.Material;com.google.android.material.slider.LabelFormatter +Google.Android.Material.Slider.ILabelFormatter;com.google.android.material.slider.LabelFormatter +com.google.android.material.slider.LabelFormatter;com.google.android.material.slider.LabelFormatter +Google.Android.Material.Slider.RangeSlider+IOnChangeListener, Xamarin.Google.Android.Material;com.google.android.material.slider.RangeSlider$OnChangeListener +Google.Android.Material.Slider.RangeSlider.IOnChangeListener;com.google.android.material.slider.RangeSlider$OnChangeListener +com.google.android.material.slider.RangeSlider$OnChangeListener;com.google.android.material.slider.RangeSlider$OnChangeListener +Google.Android.Material.Slider.RangeSlider+IOnSliderTouchListener, Xamarin.Google.Android.Material;com.google.android.material.slider.RangeSlider$OnSliderTouchListener +Google.Android.Material.Slider.RangeSlider.IOnSliderTouchListener;com.google.android.material.slider.RangeSlider$OnSliderTouchListener +com.google.android.material.slider.RangeSlider$OnSliderTouchListener;com.google.android.material.slider.RangeSlider$OnSliderTouchListener +Google.Android.Material.Slider.Slider+IOnChangeListener, Xamarin.Google.Android.Material;com.google.android.material.slider.Slider$OnChangeListener +Google.Android.Material.Slider.Slider.IOnChangeListener;com.google.android.material.slider.Slider$OnChangeListener +com.google.android.material.slider.Slider$OnChangeListener;com.google.android.material.slider.Slider$OnChangeListener +Google.Android.Material.Slider.Slider+IOnSliderTouchListener, Xamarin.Google.Android.Material;com.google.android.material.slider.Slider$OnSliderTouchListener +Google.Android.Material.Slider.Slider.IOnSliderTouchListener;com.google.android.material.slider.Slider$OnSliderTouchListener +com.google.android.material.slider.Slider$OnSliderTouchListener;com.google.android.material.slider.Slider$OnSliderTouchListener +Google.Android.Material.Shape.ICornerFamily, Xamarin.Google.Android.Material;com.google.android.material.shape.CornerFamily +Google.Android.Material.Shape.ICornerFamily;com.google.android.material.shape.CornerFamily +com.google.android.material.shape.CornerFamily;com.google.android.material.shape.CornerFamily +Google.Android.Material.Shape.ICornerSize, Xamarin.Google.Android.Material;com.google.android.material.shape.CornerSize +Google.Android.Material.Shape.ICornerSize;com.google.android.material.shape.CornerSize +com.google.android.material.shape.CornerSize;com.google.android.material.shape.CornerSize +Google.Android.Material.Shape.IShapeable, Xamarin.Google.Android.Material;com.google.android.material.shape.Shapeable +Google.Android.Material.Shape.IShapeable;com.google.android.material.shape.Shapeable +com.google.android.material.shape.Shapeable;com.google.android.material.shape.Shapeable +Google.Android.Material.Shape.MaterialShapeDrawable+ICompatibilityShadowMode, Xamarin.Google.Android.Material;com.google.android.material.shape.MaterialShapeDrawable$CompatibilityShadowMode +Google.Android.Material.Shape.MaterialShapeDrawable.ICompatibilityShadowMode;com.google.android.material.shape.MaterialShapeDrawable$CompatibilityShadowMode +com.google.android.material.shape.MaterialShapeDrawable$CompatibilityShadowMode;com.google.android.material.shape.MaterialShapeDrawable$CompatibilityShadowMode +Google.Android.Material.Shape.ShapeAppearanceModel+ICornerSizeUnaryOperator, Xamarin.Google.Android.Material;com.google.android.material.shape.ShapeAppearanceModel$CornerSizeUnaryOperator +Google.Android.Material.Shape.ShapeAppearanceModel.ICornerSizeUnaryOperator;com.google.android.material.shape.ShapeAppearanceModel$CornerSizeUnaryOperator +com.google.android.material.shape.ShapeAppearanceModel$CornerSizeUnaryOperator;com.google.android.material.shape.ShapeAppearanceModel$CornerSizeUnaryOperator +Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListener, Xamarin.Google.Android.Material;com.google.android.material.shape.ShapeAppearancePathProvider$PathListener +Google.Android.Material.Shape.ShapeAppearancePathProvider.IPathListener;com.google.android.material.shape.ShapeAppearancePathProvider$PathListener +com.google.android.material.shape.ShapeAppearancePathProvider$PathListener;com.google.android.material.shape.ShapeAppearancePathProvider$PathListener +Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.shape.ShapeAppearancePathProvider_PathListenerImplementor +Google.Android.Material.Shape.ShapeAppearancePathProvider.IPathListenerImplementor;mono.com.google.android.material.shape.ShapeAppearancePathProvider_PathListenerImplementor +mono.com.google.android.material.shape.ShapeAppearancePathProvider_PathListenerImplementor;mono.com.google.android.material.shape.ShapeAppearancePathProvider_PathListenerImplementor +Google.Android.Material.Shadow.IShadowViewDelegate, Xamarin.Google.Android.Material;com.google.android.material.shadow.ShadowViewDelegate +Google.Android.Material.Shadow.IShadowViewDelegate;com.google.android.material.shadow.ShadowViewDelegate +com.google.android.material.shadow.ShadowViewDelegate;com.google.android.material.shadow.ShadowViewDelegate +Google.Android.Material.Search.SearchView+ITransitionListener, Xamarin.Google.Android.Material;com.google.android.material.search.SearchView$TransitionListener +Google.Android.Material.Search.SearchView.ITransitionListener;com.google.android.material.search.SearchView$TransitionListener +com.google.android.material.search.SearchView$TransitionListener;com.google.android.material.search.SearchView$TransitionListener +Google.Android.Material.Search.SearchView+ITransitionListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.search.SearchView_TransitionListenerImplementor +Google.Android.Material.Search.SearchView.ITransitionListenerImplementor;mono.com.google.android.material.search.SearchView_TransitionListenerImplementor +mono.com.google.android.material.search.SearchView_TransitionListenerImplementor;mono.com.google.android.material.search.SearchView_TransitionListenerImplementor +Google.Android.Material.Resources.CancelableFontCallback+IApplyFont, Xamarin.Google.Android.Material;com.google.android.material.resources.CancelableFontCallback$ApplyFont +Google.Android.Material.Resources.CancelableFontCallback.IApplyFont;com.google.android.material.resources.CancelableFontCallback$ApplyFont +com.google.android.material.resources.CancelableFontCallback$ApplyFont;com.google.android.material.resources.CancelableFontCallback$ApplyFont +Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IHideAnimationBehavior, Xamarin.Google.Android.Material;com.google.android.material.progressindicator.BaseProgressIndicator$HideAnimationBehavior +Google.Android.Material.ProgressIndicator.BaseProgressIndicator.IHideAnimationBehavior;com.google.android.material.progressindicator.BaseProgressIndicator$HideAnimationBehavior +com.google.android.material.progressindicator.BaseProgressIndicator$HideAnimationBehavior;com.google.android.material.progressindicator.BaseProgressIndicator$HideAnimationBehavior +Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IShowAnimationBehavior, Xamarin.Google.Android.Material;com.google.android.material.progressindicator.BaseProgressIndicator$ShowAnimationBehavior +Google.Android.Material.ProgressIndicator.BaseProgressIndicator.IShowAnimationBehavior;com.google.android.material.progressindicator.BaseProgressIndicator$ShowAnimationBehavior +com.google.android.material.progressindicator.BaseProgressIndicator$ShowAnimationBehavior;com.google.android.material.progressindicator.BaseProgressIndicator$ShowAnimationBehavior +Google.Android.Material.ProgressIndicator.CircularProgressIndicator+IIndicatorDirection, Xamarin.Google.Android.Material;com.google.android.material.progressindicator.CircularProgressIndicator$IndicatorDirection +Google.Android.Material.ProgressIndicator.CircularProgressIndicator.IIndicatorDirection;com.google.android.material.progressindicator.CircularProgressIndicator$IndicatorDirection +com.google.android.material.progressindicator.CircularProgressIndicator$IndicatorDirection;com.google.android.material.progressindicator.CircularProgressIndicator$IndicatorDirection +Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndeterminateAnimationType, Xamarin.Google.Android.Material;com.google.android.material.progressindicator.LinearProgressIndicator$IndeterminateAnimationType +Google.Android.Material.ProgressIndicator.LinearProgressIndicator.IIndeterminateAnimationType;com.google.android.material.progressindicator.LinearProgressIndicator$IndeterminateAnimationType +com.google.android.material.progressindicator.LinearProgressIndicator$IndeterminateAnimationType;com.google.android.material.progressindicator.LinearProgressIndicator$IndeterminateAnimationType +Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndicatorDirection, Xamarin.Google.Android.Material;com.google.android.material.progressindicator.LinearProgressIndicator$IndicatorDirection +Google.Android.Material.ProgressIndicator.LinearProgressIndicator.IIndicatorDirection;com.google.android.material.progressindicator.LinearProgressIndicator$IndicatorDirection +com.google.android.material.progressindicator.LinearProgressIndicator$IndicatorDirection;com.google.android.material.progressindicator.LinearProgressIndicator$IndicatorDirection +Google.Android.Material.Motion.IMaterialBackHandler, Xamarin.Google.Android.Material;com.google.android.material.motion.MaterialBackHandler +Google.Android.Material.Motion.IMaterialBackHandler;com.google.android.material.motion.MaterialBackHandler +com.google.android.material.motion.MaterialBackHandler;com.google.android.material.motion.MaterialBackHandler +Google.Android.Material.FloatingActionButton.FloatingActionButton+ISize, Xamarin.Google.Android.Material;com.google.android.material.floatingactionbutton.FloatingActionButton$Size +Google.Android.Material.FloatingActionButton.FloatingActionButton.ISize;com.google.android.material.floatingactionbutton.FloatingActionButton$Size +com.google.android.material.floatingactionbutton.FloatingActionButton$Size;com.google.android.material.floatingactionbutton.FloatingActionButton$Size +Google.Android.Material.Expandable.IExpandableTransformationWidget, Xamarin.Google.Android.Material;com.google.android.material.expandable.ExpandableTransformationWidget +Google.Android.Material.Expandable.IExpandableTransformationWidget;com.google.android.material.expandable.ExpandableTransformationWidget +com.google.android.material.expandable.ExpandableTransformationWidget;com.google.android.material.expandable.ExpandableTransformationWidget +Google.Android.Material.Expandable.IExpandableWidget, Xamarin.Google.Android.Material;com.google.android.material.expandable.ExpandableWidget +Google.Android.Material.Expandable.IExpandableWidget;com.google.android.material.expandable.ExpandableWidget +com.google.android.material.expandable.ExpandableWidget;com.google.android.material.expandable.ExpandableWidget +Google.Android.Material.Color.DynamicColors+IOnAppliedCallback, Xamarin.Google.Android.Material;com.google.android.material.color.DynamicColors$OnAppliedCallback +Google.Android.Material.Color.DynamicColors.IOnAppliedCallback;com.google.android.material.color.DynamicColors$OnAppliedCallback +com.google.android.material.color.DynamicColors$OnAppliedCallback;com.google.android.material.color.DynamicColors$OnAppliedCallback +Google.Android.Material.Color.DynamicColors+IPrecondition, Xamarin.Google.Android.Material;com.google.android.material.color.DynamicColors$Precondition +Google.Android.Material.Color.DynamicColors.IPrecondition;com.google.android.material.color.DynamicColors$Precondition +com.google.android.material.color.DynamicColors$Precondition;com.google.android.material.color.DynamicColors$Precondition +Google.Android.Material.Color.IColorResourcesOverride, Xamarin.Google.Android.Material;com.google.android.material.color.ColorResourcesOverride +Google.Android.Material.Color.IColorResourcesOverride;com.google.android.material.color.ColorResourcesOverride +com.google.android.material.color.ColorResourcesOverride;com.google.android.material.color.ColorResourcesOverride +Google.Android.Material.Color.Utilities.IPointProvider, Xamarin.Google.Android.Material;com.google.android.material.color.utilities.PointProvider +Google.Android.Material.Color.Utilities.IPointProvider;com.google.android.material.color.utilities.PointProvider +com.google.android.material.color.utilities.PointProvider;com.google.android.material.color.utilities.PointProvider +Google.Android.Material.Chip.ChipDrawable+IDelegate, Xamarin.Google.Android.Material;com.google.android.material.chip.ChipDrawable$Delegate +Google.Android.Material.Chip.ChipDrawable.IDelegate;com.google.android.material.chip.ChipDrawable$Delegate +com.google.android.material.chip.ChipDrawable$Delegate;com.google.android.material.chip.ChipDrawable$Delegate +Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListener, Xamarin.Google.Android.Material;com.google.android.material.chip.ChipGroup$OnCheckedChangeListener +Google.Android.Material.Chip.ChipGroup.IOnCheckedChangeListener;com.google.android.material.chip.ChipGroup$OnCheckedChangeListener +com.google.android.material.chip.ChipGroup$OnCheckedChangeListener;com.google.android.material.chip.ChipGroup$OnCheckedChangeListener +Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.chip.ChipGroup_OnCheckedChangeListenerImplementor +Google.Android.Material.Chip.ChipGroup.IOnCheckedChangeListenerImplementor;mono.com.google.android.material.chip.ChipGroup_OnCheckedChangeListenerImplementor +mono.com.google.android.material.chip.ChipGroup_OnCheckedChangeListenerImplementor;mono.com.google.android.material.chip.ChipGroup_OnCheckedChangeListenerImplementor +Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListener, Xamarin.Google.Android.Material;com.google.android.material.chip.ChipGroup$OnCheckedStateChangeListener +Google.Android.Material.Chip.ChipGroup.IOnCheckedStateChangeListener;com.google.android.material.chip.ChipGroup$OnCheckedStateChangeListener +com.google.android.material.chip.ChipGroup$OnCheckedStateChangeListener;com.google.android.material.chip.ChipGroup$OnCheckedStateChangeListener +Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.chip.ChipGroup_OnCheckedStateChangeListenerImplementor +Google.Android.Material.Chip.ChipGroup.IOnCheckedStateChangeListenerImplementor;mono.com.google.android.material.chip.ChipGroup_OnCheckedStateChangeListenerImplementor +mono.com.google.android.material.chip.ChipGroup_OnCheckedStateChangeListenerImplementor;mono.com.google.android.material.chip.ChipGroup_OnCheckedStateChangeListenerImplementor +Google.Android.Material.CheckBox.MaterialCheckBox+ICheckedState, Xamarin.Google.Android.Material;com.google.android.material.checkbox.MaterialCheckBox$CheckedState +Google.Android.Material.CheckBox.MaterialCheckBox.ICheckedState;com.google.android.material.checkbox.MaterialCheckBox$CheckedState +com.google.android.material.checkbox.MaterialCheckBox$CheckedState;com.google.android.material.checkbox.MaterialCheckBox$CheckedState +Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListener, Xamarin.Google.Android.Material;com.google.android.material.checkbox.MaterialCheckBox$OnCheckedStateChangedListener +Google.Android.Material.CheckBox.MaterialCheckBox.IOnCheckedStateChangedListener;com.google.android.material.checkbox.MaterialCheckBox$OnCheckedStateChangedListener +com.google.android.material.checkbox.MaterialCheckBox$OnCheckedStateChangedListener;com.google.android.material.checkbox.MaterialCheckBox$OnCheckedStateChangedListener +Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.checkbox.MaterialCheckBox_OnCheckedStateChangedListenerImplementor +Google.Android.Material.CheckBox.MaterialCheckBox.IOnCheckedStateChangedListenerImplementor;mono.com.google.android.material.checkbox.MaterialCheckBox_OnCheckedStateChangedListenerImplementor +mono.com.google.android.material.checkbox.MaterialCheckBox_OnCheckedStateChangedListenerImplementor;mono.com.google.android.material.checkbox.MaterialCheckBox_OnCheckedStateChangedListenerImplementor +Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListener, Xamarin.Google.Android.Material;com.google.android.material.checkbox.MaterialCheckBox$OnErrorChangedListener +Google.Android.Material.CheckBox.MaterialCheckBox.IOnErrorChangedListener;com.google.android.material.checkbox.MaterialCheckBox$OnErrorChangedListener +com.google.android.material.checkbox.MaterialCheckBox$OnErrorChangedListener;com.google.android.material.checkbox.MaterialCheckBox$OnErrorChangedListener +Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.checkbox.MaterialCheckBox_OnErrorChangedListenerImplementor +Google.Android.Material.CheckBox.MaterialCheckBox.IOnErrorChangedListenerImplementor;mono.com.google.android.material.checkbox.MaterialCheckBox_OnErrorChangedListenerImplementor +mono.com.google.android.material.checkbox.MaterialCheckBox_OnErrorChangedListenerImplementor;mono.com.google.android.material.checkbox.MaterialCheckBox_OnErrorChangedListenerImplementor +Google.Android.Material.Carousel.IOnMaskChangedListener, Xamarin.Google.Android.Material;com.google.android.material.carousel.OnMaskChangedListener +Google.Android.Material.Carousel.IOnMaskChangedListener;com.google.android.material.carousel.OnMaskChangedListener +com.google.android.material.carousel.OnMaskChangedListener;com.google.android.material.carousel.OnMaskChangedListener +Google.Android.Material.Carousel.IOnMaskChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.carousel.OnMaskChangedListenerImplementor +Google.Android.Material.Carousel.IOnMaskChangedListenerImplementor;mono.com.google.android.material.carousel.OnMaskChangedListenerImplementor +mono.com.google.android.material.carousel.OnMaskChangedListenerImplementor;mono.com.google.android.material.carousel.OnMaskChangedListenerImplementor +Google.Android.Material.Card.MaterialCardView+ICheckedIconGravity, Xamarin.Google.Android.Material;com.google.android.material.card.MaterialCardView$CheckedIconGravity +Google.Android.Material.Card.MaterialCardView.ICheckedIconGravity;com.google.android.material.card.MaterialCardView$CheckedIconGravity +com.google.android.material.card.MaterialCardView$CheckedIconGravity;com.google.android.material.card.MaterialCardView$CheckedIconGravity +Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListener, Xamarin.Google.Android.Material;com.google.android.material.card.MaterialCardView$OnCheckedChangeListener +Google.Android.Material.Card.MaterialCardView.IOnCheckedChangeListener;com.google.android.material.card.MaterialCardView$OnCheckedChangeListener +com.google.android.material.card.MaterialCardView$OnCheckedChangeListener;com.google.android.material.card.MaterialCardView$OnCheckedChangeListener +Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.card.MaterialCardView_OnCheckedChangeListenerImplementor +Google.Android.Material.Card.MaterialCardView.IOnCheckedChangeListenerImplementor;mono.com.google.android.material.card.MaterialCardView_OnCheckedChangeListenerImplementor +mono.com.google.android.material.card.MaterialCardView_OnCheckedChangeListenerImplementor;mono.com.google.android.material.card.MaterialCardView_OnCheckedChangeListenerImplementor +Google.Android.Material.Canvas.CanvasCompat+ICanvasOperation, Xamarin.Google.Android.Material;com.google.android.material.canvas.CanvasCompat$CanvasOperation +Google.Android.Material.Canvas.CanvasCompat.ICanvasOperation;com.google.android.material.canvas.CanvasCompat$CanvasOperation +com.google.android.material.canvas.CanvasCompat$CanvasOperation;com.google.android.material.canvas.CanvasCompat$CanvasOperation +Google.Android.Material.Button.MaterialButton+IIconGravity, Xamarin.Google.Android.Material;com.google.android.material.button.MaterialButton$IconGravity +Google.Android.Material.Button.MaterialButton.IIconGravity;com.google.android.material.button.MaterialButton$IconGravity +com.google.android.material.button.MaterialButton$IconGravity;com.google.android.material.button.MaterialButton$IconGravity +Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListener, Xamarin.Google.Android.Material;com.google.android.material.button.MaterialButton$OnCheckedChangeListener +Google.Android.Material.Button.MaterialButton.IOnCheckedChangeListener;com.google.android.material.button.MaterialButton$OnCheckedChangeListener +com.google.android.material.button.MaterialButton$OnCheckedChangeListener;com.google.android.material.button.MaterialButton$OnCheckedChangeListener +Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.button.MaterialButton_OnCheckedChangeListenerImplementor +Google.Android.Material.Button.MaterialButton.IOnCheckedChangeListenerImplementor;mono.com.google.android.material.button.MaterialButton_OnCheckedChangeListenerImplementor +mono.com.google.android.material.button.MaterialButton_OnCheckedChangeListenerImplementor;mono.com.google.android.material.button.MaterialButton_OnCheckedChangeListenerImplementor +Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListener, Xamarin.Google.Android.Material;com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener +Google.Android.Material.Button.MaterialButtonToggleGroup.IOnButtonCheckedListener;com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener +com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener;com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener +Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.button.MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor +Google.Android.Material.Button.MaterialButtonToggleGroup.IOnButtonCheckedListenerImplementor;mono.com.google.android.material.button.MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor +mono.com.google.android.material.button.MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor;mono.com.google.android.material.button.MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor +Google.Android.Material.BottomSheet.BottomSheetBehavior+ISaveFlags, Xamarin.Google.Android.Material;com.google.android.material.bottomsheet.BottomSheetBehavior$SaveFlags +Google.Android.Material.BottomSheet.BottomSheetBehavior.ISaveFlags;com.google.android.material.bottomsheet.BottomSheetBehavior$SaveFlags +com.google.android.material.bottomsheet.BottomSheetBehavior$SaveFlags;com.google.android.material.bottomsheet.BottomSheetBehavior$SaveFlags +Google.Android.Material.BottomSheet.BottomSheetBehavior+IStableState, Xamarin.Google.Android.Material;com.google.android.material.bottomsheet.BottomSheetBehavior$StableState +Google.Android.Material.BottomSheet.BottomSheetBehavior.IStableState;com.google.android.material.bottomsheet.BottomSheetBehavior$StableState +com.google.android.material.bottomsheet.BottomSheetBehavior$StableState;com.google.android.material.bottomsheet.BottomSheetBehavior$StableState +Google.Android.Material.BottomSheet.BottomSheetBehavior+IState, Xamarin.Google.Android.Material;com.google.android.material.bottomsheet.BottomSheetBehavior$State +Google.Android.Material.BottomSheet.BottomSheetBehavior.IState;com.google.android.material.bottomsheet.BottomSheetBehavior$State +com.google.android.material.bottomsheet.BottomSheetBehavior$State;com.google.android.material.bottomsheet.BottomSheetBehavior$State +Google.Android.Material.BottomAppBar.BottomAppBar+IFabAlignmentMode, Xamarin.Google.Android.Material;com.google.android.material.bottomappbar.BottomAppBar$FabAlignmentMode +Google.Android.Material.BottomAppBar.BottomAppBar.IFabAlignmentMode;com.google.android.material.bottomappbar.BottomAppBar$FabAlignmentMode +com.google.android.material.bottomappbar.BottomAppBar$FabAlignmentMode;com.google.android.material.bottomappbar.BottomAppBar$FabAlignmentMode +Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnchorMode, Xamarin.Google.Android.Material;com.google.android.material.bottomappbar.BottomAppBar$FabAnchorMode +Google.Android.Material.BottomAppBar.BottomAppBar.IFabAnchorMode;com.google.android.material.bottomappbar.BottomAppBar$FabAnchorMode +com.google.android.material.bottomappbar.BottomAppBar$FabAnchorMode;com.google.android.material.bottomappbar.BottomAppBar$FabAnchorMode +Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnimationMode, Xamarin.Google.Android.Material;com.google.android.material.bottomappbar.BottomAppBar$FabAnimationMode +Google.Android.Material.BottomAppBar.BottomAppBar.IFabAnimationMode;com.google.android.material.bottomappbar.BottomAppBar$FabAnimationMode +com.google.android.material.bottomappbar.BottomAppBar$FabAnimationMode;com.google.android.material.bottomappbar.BottomAppBar$FabAnimationMode +Google.Android.Material.BottomAppBar.BottomAppBar+IMenuAlignmentMode, Xamarin.Google.Android.Material;com.google.android.material.bottomappbar.BottomAppBar$MenuAlignmentMode +Google.Android.Material.BottomAppBar.BottomAppBar.IMenuAlignmentMode;com.google.android.material.bottomappbar.BottomAppBar$MenuAlignmentMode +com.google.android.material.bottomappbar.BottomAppBar$MenuAlignmentMode;com.google.android.material.bottomappbar.BottomAppBar$MenuAlignmentMode +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListener, Xamarin.Google.Android.Material;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$OnScrollStateChangedListener +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior.IOnScrollStateChangedListener;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$OnScrollStateChangedListener +com.google.android.material.behavior.HideBottomViewOnScrollBehavior$OnScrollStateChangedListener;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$OnScrollStateChangedListener +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.behavior.HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior.IOnScrollStateChangedListenerImplementor;mono.com.google.android.material.behavior.HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor +mono.com.google.android.material.behavior.HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor;mono.com.google.android.material.behavior.HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IScrollState, Xamarin.Google.Android.Material;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$ScrollState +Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior.IScrollState;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$ScrollState +com.google.android.material.behavior.HideBottomViewOnScrollBehavior$ScrollState;com.google.android.material.behavior.HideBottomViewOnScrollBehavior$ScrollState +Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListener, Xamarin.Google.Android.Material;com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener +Google.Android.Material.Behavior.SwipeDismissBehavior.IOnDismissListener;com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener +com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener;com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener +Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.behavior.SwipeDismissBehavior_OnDismissListenerImplementor +Google.Android.Material.Behavior.SwipeDismissBehavior.IOnDismissListenerImplementor;mono.com.google.android.material.behavior.SwipeDismissBehavior_OnDismissListenerImplementor +mono.com.google.android.material.behavior.SwipeDismissBehavior_OnDismissListenerImplementor;mono.com.google.android.material.behavior.SwipeDismissBehavior_OnDismissListenerImplementor +Google.Android.Material.Badge.BadgeDrawable+IBadgeGravity, Xamarin.Google.Android.Material;com.google.android.material.badge.BadgeDrawable$BadgeGravity +Google.Android.Material.Badge.BadgeDrawable.IBadgeGravity;com.google.android.material.badge.BadgeDrawable$BadgeGravity +com.google.android.material.badge.BadgeDrawable$BadgeGravity;com.google.android.material.badge.BadgeDrawable$BadgeGravity +Google.Android.Material.Badge.IExperimentalBadgeUtils, Xamarin.Google.Android.Material;com.google.android.material.badge.ExperimentalBadgeUtils +Google.Android.Material.Badge.IExperimentalBadgeUtils;com.google.android.material.badge.ExperimentalBadgeUtils +com.google.android.material.badge.ExperimentalBadgeUtils;com.google.android.material.badge.ExperimentalBadgeUtils +Google.Android.Material.DatePicker.CalendarConstraints+IDateValidator, Xamarin.Google.Android.Material;com.google.android.material.datepicker.CalendarConstraints$DateValidator +Google.Android.Material.DatePicker.CalendarConstraints.IDateValidator;com.google.android.material.datepicker.CalendarConstraints$DateValidator +com.google.android.material.datepicker.CalendarConstraints$DateValidator;com.google.android.material.datepicker.CalendarConstraints$DateValidator +Google.Android.Material.DatePicker.IDateSelector, Xamarin.Google.Android.Material;com.google.android.material.datepicker.DateSelector +Google.Android.Material.DatePicker.IDateSelector;com.google.android.material.datepicker.DateSelector +com.google.android.material.datepicker.DateSelector;com.google.android.material.datepicker.DateSelector +Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListener, Xamarin.Google.Android.Material;com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListener +Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListener;com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListener +com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListener;com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListener +Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListenerImplementor +Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerImplementor;mono.com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListenerImplementor +mono.com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListenerImplementor;mono.com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListenerImplementor +Google.Android.Material.DatePicker.MaterialDatePicker+IInputMode, Xamarin.Google.Android.Material;com.google.android.material.datepicker.MaterialDatePicker$InputMode +Google.Android.Material.DatePicker.MaterialDatePicker.IInputMode;com.google.android.material.datepicker.MaterialDatePicker$InputMode +com.google.android.material.datepicker.MaterialDatePicker$InputMode;com.google.android.material.datepicker.MaterialDatePicker$InputMode +Google.Android.Material.Navigation.NavigationBarView+ILabelVisibility, Xamarin.Google.Android.Material;com.google.android.material.navigation.NavigationBarView$LabelVisibility +Google.Android.Material.Navigation.NavigationBarView.ILabelVisibility;com.google.android.material.navigation.NavigationBarView$LabelVisibility +com.google.android.material.navigation.NavigationBarView$LabelVisibility;com.google.android.material.navigation.NavigationBarView$LabelVisibility +Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListener, Xamarin.Google.Android.Material;com.google.android.material.navigation.NavigationBarView$OnItemReselectedListener +Google.Android.Material.Navigation.NavigationBarView.IOnItemReselectedListener;com.google.android.material.navigation.NavigationBarView$OnItemReselectedListener +com.google.android.material.navigation.NavigationBarView$OnItemReselectedListener;com.google.android.material.navigation.NavigationBarView$OnItemReselectedListener +Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.navigation.NavigationBarView_OnItemReselectedListenerImplementor +Google.Android.Material.Navigation.NavigationBarView.IOnItemReselectedListenerImplementor;mono.com.google.android.material.navigation.NavigationBarView_OnItemReselectedListenerImplementor +mono.com.google.android.material.navigation.NavigationBarView_OnItemReselectedListenerImplementor;mono.com.google.android.material.navigation.NavigationBarView_OnItemReselectedListenerImplementor +Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListener, Xamarin.Google.Android.Material;com.google.android.material.navigation.NavigationBarView$OnItemSelectedListener +Google.Android.Material.Navigation.NavigationBarView.IOnItemSelectedListener;com.google.android.material.navigation.NavigationBarView$OnItemSelectedListener +com.google.android.material.navigation.NavigationBarView$OnItemSelectedListener;com.google.android.material.navigation.NavigationBarView$OnItemSelectedListener +Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.navigation.NavigationBarView_OnItemSelectedListenerImplementor +Google.Android.Material.Navigation.NavigationBarView.IOnItemSelectedListenerImplementor;mono.com.google.android.material.navigation.NavigationBarView_OnItemSelectedListenerImplementor +mono.com.google.android.material.navigation.NavigationBarView_OnItemSelectedListenerImplementor;mono.com.google.android.material.navigation.NavigationBarView_OnItemSelectedListenerImplementor +Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListener, Xamarin.Google.Android.Material;com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener +Google.Android.Material.Navigation.NavigationView.IOnNavigationItemSelectedListener;com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener +com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener;com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener +Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.navigation.NavigationView_OnNavigationItemSelectedListenerImplementor +Google.Android.Material.Navigation.NavigationView.IOnNavigationItemSelectedListenerImplementor;mono.com.google.android.material.navigation.NavigationView_OnNavigationItemSelectedListenerImplementor +mono.com.google.android.material.navigation.NavigationView_OnNavigationItemSelectedListenerImplementor;mono.com.google.android.material.navigation.NavigationView_OnNavigationItemSelectedListenerImplementor +Google.Android.Material.TextField.TextInputLayout+IBoxBackgroundMode, Xamarin.Google.Android.Material;com.google.android.material.textfield.TextInputLayout$BoxBackgroundMode +Google.Android.Material.TextField.TextInputLayout.IBoxBackgroundMode;com.google.android.material.textfield.TextInputLayout$BoxBackgroundMode +com.google.android.material.textfield.TextInputLayout$BoxBackgroundMode;com.google.android.material.textfield.TextInputLayout$BoxBackgroundMode +Google.Android.Material.TextField.TextInputLayout+IEndIconMode, Xamarin.Google.Android.Material;com.google.android.material.textfield.TextInputLayout$EndIconMode +Google.Android.Material.TextField.TextInputLayout.IEndIconMode;com.google.android.material.textfield.TextInputLayout$EndIconMode +com.google.android.material.textfield.TextInputLayout$EndIconMode;com.google.android.material.textfield.TextInputLayout$EndIconMode +Google.Android.Material.TextField.TextInputLayout+ILengthCounter, Xamarin.Google.Android.Material;com.google.android.material.textfield.TextInputLayout$LengthCounter +Google.Android.Material.TextField.TextInputLayout.ILengthCounter;com.google.android.material.textfield.TextInputLayout$LengthCounter +com.google.android.material.textfield.TextInputLayout$LengthCounter;com.google.android.material.textfield.TextInputLayout$LengthCounter +Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListener, Xamarin.Google.Android.Material;com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener +Google.Android.Material.TextField.TextInputLayout.IOnEditTextAttachedListener;com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener +com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener;com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener +Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.textfield.TextInputLayout_OnEditTextAttachedListenerImplementor +Google.Android.Material.TextField.TextInputLayout.IOnEditTextAttachedListenerImplementor;mono.com.google.android.material.textfield.TextInputLayout_OnEditTextAttachedListenerImplementor +mono.com.google.android.material.textfield.TextInputLayout_OnEditTextAttachedListenerImplementor;mono.com.google.android.material.textfield.TextInputLayout_OnEditTextAttachedListenerImplementor +Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListener, Xamarin.Google.Android.Material;com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener +Google.Android.Material.TextField.TextInputLayout.IOnEndIconChangedListener;com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener +com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener;com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener +Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.textfield.TextInputLayout_OnEndIconChangedListenerImplementor +Google.Android.Material.TextField.TextInputLayout.IOnEndIconChangedListenerImplementor;mono.com.google.android.material.textfield.TextInputLayout_OnEndIconChangedListenerImplementor +mono.com.google.android.material.textfield.TextInputLayout_OnEndIconChangedListenerImplementor;mono.com.google.android.material.textfield.TextInputLayout_OnEndIconChangedListenerImplementor +Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListener, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener +Google.Android.Material.Tabs.TabLayout.IOnTabSelectedListener;com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener +com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener;com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener +Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.tabs.TabLayout_BaseOnTabSelectedListenerImplementor +Google.Android.Material.Tabs.TabLayout.IOnTabSelectedListenerImplementor;mono.com.google.android.material.tabs.TabLayout_BaseOnTabSelectedListenerImplementor +mono.com.google.android.material.tabs.TabLayout_BaseOnTabSelectedListenerImplementor;mono.com.google.android.material.tabs.TabLayout_BaseOnTabSelectedListenerImplementor +Google.Android.Material.Tabs.TabLayout+ILabelVisibility, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$LabelVisibility +Google.Android.Material.Tabs.TabLayout.ILabelVisibility;com.google.android.material.tabs.TabLayout$LabelVisibility +com.google.android.material.tabs.TabLayout$LabelVisibility;com.google.android.material.tabs.TabLayout$LabelVisibility +Google.Android.Material.Tabs.TabLayout+IMode, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$Mode +Google.Android.Material.Tabs.TabLayout.IMode;com.google.android.material.tabs.TabLayout$Mode +com.google.android.material.tabs.TabLayout$Mode;com.google.android.material.tabs.TabLayout$Mode +Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListener2, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$OnTabSelectedListener +Google.Android.Material.Tabs.TabLayout.IOnTabSelectedListener2;com.google.android.material.tabs.TabLayout$OnTabSelectedListener +com.google.android.material.tabs.TabLayout$OnTabSelectedListener;com.google.android.material.tabs.TabLayout$OnTabSelectedListener +Google.Android.Material.Tabs.TabLayout+ITabGravity, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$TabGravity +Google.Android.Material.Tabs.TabLayout.ITabGravity;com.google.android.material.tabs.TabLayout$TabGravity +com.google.android.material.tabs.TabLayout$TabGravity;com.google.android.material.tabs.TabLayout$TabGravity +Google.Android.Material.Tabs.TabLayout+ITabIndicatorAnimationMode, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$TabIndicatorAnimationMode +Google.Android.Material.Tabs.TabLayout.ITabIndicatorAnimationMode;com.google.android.material.tabs.TabLayout$TabIndicatorAnimationMode +com.google.android.material.tabs.TabLayout$TabIndicatorAnimationMode;com.google.android.material.tabs.TabLayout$TabIndicatorAnimationMode +Google.Android.Material.Tabs.TabLayout+ITabIndicatorGravity, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayout$TabIndicatorGravity +Google.Android.Material.Tabs.TabLayout.ITabIndicatorGravity;com.google.android.material.tabs.TabLayout$TabIndicatorGravity +com.google.android.material.tabs.TabLayout$TabIndicatorGravity;com.google.android.material.tabs.TabLayout$TabIndicatorGravity +Google.Android.Material.Tabs.TabLayoutMediator+ITabConfigurationStrategy, Xamarin.Google.Android.Material;com.google.android.material.tabs.TabLayoutMediator$TabConfigurationStrategy +Google.Android.Material.Tabs.TabLayoutMediator.ITabConfigurationStrategy;com.google.android.material.tabs.TabLayoutMediator$TabConfigurationStrategy +com.google.android.material.tabs.TabLayoutMediator$TabConfigurationStrategy;com.google.android.material.tabs.TabLayoutMediator$TabConfigurationStrategy +Google.Android.Material.Snackbar.Snackbar+SnackbarActionClickImplementor, Xamarin.Google.Android.Material;com.google.android.material.snackbar.Snackbar_SnackbarActionClickImplementor +Google.Android.Material.Snackbar.Snackbar.SnackbarActionClickImplementor;com.google.android.material.snackbar.Snackbar_SnackbarActionClickImplementor +com.google.android.material.snackbar.Snackbar_SnackbarActionClickImplementor;com.google.android.material.snackbar.Snackbar_SnackbarActionClickImplementor +Google.Android.Material.Snackbar.BaseTransientBottomBar+IAnimationMode, Xamarin.Google.Android.Material;com.google.android.material.snackbar.BaseTransientBottomBar$AnimationMode +Google.Android.Material.Snackbar.BaseTransientBottomBar.IAnimationMode;com.google.android.material.snackbar.BaseTransientBottomBar$AnimationMode +com.google.android.material.snackbar.BaseTransientBottomBar$AnimationMode;com.google.android.material.snackbar.BaseTransientBottomBar$AnimationMode +Google.Android.Material.Snackbar.BaseTransientBottomBar+BaseCallback+IDismissEvent, Xamarin.Google.Android.Material;com.google.android.material.snackbar.BaseTransientBottomBar$BaseCallback$DismissEvent +Google.Android.Material.Snackbar.BaseTransientBottomBar.BaseCallback.IDismissEvent;com.google.android.material.snackbar.BaseTransientBottomBar$BaseCallback$DismissEvent +com.google.android.material.snackbar.BaseTransientBottomBar$BaseCallback$DismissEvent;com.google.android.material.snackbar.BaseTransientBottomBar$BaseCallback$DismissEvent +Google.Android.Material.Snackbar.BaseTransientBottomBar+IContentViewCallback, Xamarin.Google.Android.Material;com.google.android.material.snackbar.BaseTransientBottomBar$ContentViewCallback +Google.Android.Material.Snackbar.BaseTransientBottomBar.IContentViewCallback;com.google.android.material.snackbar.BaseTransientBottomBar$ContentViewCallback +com.google.android.material.snackbar.BaseTransientBottomBar$ContentViewCallback;com.google.android.material.snackbar.BaseTransientBottomBar$ContentViewCallback +Google.Android.Material.Snackbar.BaseTransientBottomBar+IDuration, Xamarin.Google.Android.Material;com.google.android.material.snackbar.BaseTransientBottomBar$Duration +Google.Android.Material.Snackbar.BaseTransientBottomBar.IDuration;com.google.android.material.snackbar.BaseTransientBottomBar$Duration +com.google.android.material.snackbar.BaseTransientBottomBar$Duration;com.google.android.material.snackbar.BaseTransientBottomBar$Duration +Google.Android.Material.Snackbar.IContentViewCallback, Xamarin.Google.Android.Material;com.google.android.material.snackbar.ContentViewCallback +Google.Android.Material.Snackbar.IContentViewCallback;com.google.android.material.snackbar.ContentViewCallback +com.google.android.material.snackbar.ContentViewCallback;com.google.android.material.snackbar.ContentViewCallback +Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListener, Xamarin.Google.Android.Material;com.google.android.material.internal.CheckableGroup$OnCheckedStateChangeListener +Google.Android.Material.Internal.CheckableGroup.IOnCheckedStateChangeListener;com.google.android.material.internal.CheckableGroup$OnCheckedStateChangeListener +com.google.android.material.internal.CheckableGroup$OnCheckedStateChangeListener;com.google.android.material.internal.CheckableGroup$OnCheckedStateChangeListener +Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.internal.CheckableGroup_OnCheckedStateChangeListenerImplementor +Google.Android.Material.Internal.CheckableGroup.IOnCheckedStateChangeListenerImplementor;mono.com.google.android.material.internal.CheckableGroup_OnCheckedStateChangeListenerImplementor +mono.com.google.android.material.internal.CheckableGroup_OnCheckedStateChangeListenerImplementor;mono.com.google.android.material.internal.CheckableGroup_OnCheckedStateChangeListenerImplementor +Google.Android.Material.Internal.IExperimental, Xamarin.Google.Android.Material;com.google.android.material.internal.Experimental +Google.Android.Material.Internal.IExperimental;com.google.android.material.internal.Experimental +com.google.android.material.internal.Experimental;com.google.android.material.internal.Experimental +Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListener, Xamarin.Google.Android.Material;com.google.android.material.internal.MaterialCheckable$OnCheckedChangeListener +Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListener;com.google.android.material.internal.MaterialCheckable$OnCheckedChangeListener +com.google.android.material.internal.MaterialCheckable$OnCheckedChangeListener;com.google.android.material.internal.MaterialCheckable$OnCheckedChangeListener +Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.internal.MaterialCheckable_OnCheckedChangeListenerImplementor +Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerImplementor;mono.com.google.android.material.internal.MaterialCheckable_OnCheckedChangeListenerImplementor +mono.com.google.android.material.internal.MaterialCheckable_OnCheckedChangeListenerImplementor;mono.com.google.android.material.internal.MaterialCheckable_OnCheckedChangeListenerImplementor +Google.Android.Material.Internal.IMaterialCheckable, Xamarin.Google.Android.Material;com.google.android.material.internal.MaterialCheckable +Google.Android.Material.Internal.IMaterialCheckable;com.google.android.material.internal.MaterialCheckable +com.google.android.material.internal.MaterialCheckable;com.google.android.material.internal.MaterialCheckable +Google.Android.Material.Internal.IStaticLayoutBuilderConfigurer, Xamarin.Google.Android.Material;com.google.android.material.internal.StaticLayoutBuilderConfigurer +Google.Android.Material.Internal.IStaticLayoutBuilderConfigurer;com.google.android.material.internal.StaticLayoutBuilderConfigurer +com.google.android.material.internal.StaticLayoutBuilderConfigurer;com.google.android.material.internal.StaticLayoutBuilderConfigurer +Google.Android.Material.Internal.IViewOverlayImpl, Xamarin.Google.Android.Material;com.google.android.material.internal.ViewOverlayImpl +Google.Android.Material.Internal.IViewOverlayImpl;com.google.android.material.internal.ViewOverlayImpl +com.google.android.material.internal.ViewOverlayImpl;com.google.android.material.internal.ViewOverlayImpl +Google.Android.Material.Internal.TextDrawableHelper+ITextDrawableDelegate, Xamarin.Google.Android.Material;com.google.android.material.internal.TextDrawableHelper$TextDrawableDelegate +Google.Android.Material.Internal.TextDrawableHelper.ITextDrawableDelegate;com.google.android.material.internal.TextDrawableHelper$TextDrawableDelegate +com.google.android.material.internal.TextDrawableHelper$TextDrawableDelegate;com.google.android.material.internal.TextDrawableHelper$TextDrawableDelegate +Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListener, Xamarin.Google.Android.Material;com.google.android.material.internal.ViewUtils$OnApplyWindowInsetsListener +Google.Android.Material.Internal.ViewUtils.IOnApplyWindowInsetsListener;com.google.android.material.internal.ViewUtils$OnApplyWindowInsetsListener +com.google.android.material.internal.ViewUtils$OnApplyWindowInsetsListener;com.google.android.material.internal.ViewUtils$OnApplyWindowInsetsListener +Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.internal.ViewUtils_OnApplyWindowInsetsListenerImplementor +Google.Android.Material.Internal.ViewUtils.IOnApplyWindowInsetsListenerImplementor;mono.com.google.android.material.internal.ViewUtils_OnApplyWindowInsetsListenerImplementor +mono.com.google.android.material.internal.ViewUtils_OnApplyWindowInsetsListenerImplementor;mono.com.google.android.material.internal.ViewUtils_OnApplyWindowInsetsListenerImplementor +Google.Android.Material.CircularReveal.CircularRevealHelper+IDelegate, Xamarin.Google.Android.Material;com.google.android.material.circularreveal.CircularRevealHelper$Delegate +Google.Android.Material.CircularReveal.CircularRevealHelper.IDelegate;com.google.android.material.circularreveal.CircularRevealHelper$Delegate +com.google.android.material.circularreveal.CircularRevealHelper$Delegate;com.google.android.material.circularreveal.CircularRevealHelper$Delegate +Google.Android.Material.CircularReveal.CircularRevealHelper+IStrategy, Xamarin.Google.Android.Material;com.google.android.material.circularreveal.CircularRevealHelper$Strategy +Google.Android.Material.CircularReveal.CircularRevealHelper.IStrategy;com.google.android.material.circularreveal.CircularRevealHelper$Strategy +com.google.android.material.circularreveal.CircularRevealHelper$Strategy;com.google.android.material.circularreveal.CircularRevealHelper$Strategy +Google.Android.Material.CircularReveal.ICircularRevealWidget, Xamarin.Google.Android.Material;com.google.android.material.circularreveal.CircularRevealWidget +Google.Android.Material.CircularReveal.ICircularRevealWidget;com.google.android.material.circularreveal.CircularRevealWidget +com.google.android.material.circularreveal.CircularRevealWidget;com.google.android.material.circularreveal.CircularRevealWidget +Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemReselectedListener, Xamarin.Google.Android.Material;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener +Google.Android.Material.BottomNavigation.BottomNavigationView.IOnNavigationItemReselectedListener;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener +com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener +Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemSelectedListener, Xamarin.Google.Android.Material;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener +Google.Android.Material.BottomNavigation.BottomNavigationView.IOnNavigationItemSelectedListener;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener +com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener;com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener +Google.Android.Material.BottomNavigation.ILabelVisibilityMode, Xamarin.Google.Android.Material;com.google.android.material.bottomnavigation.LabelVisibilityMode +Google.Android.Material.BottomNavigation.ILabelVisibilityMode;com.google.android.material.bottomnavigation.LabelVisibilityMode +com.google.android.material.bottomnavigation.LabelVisibilityMode;com.google.android.material.bottomnavigation.LabelVisibilityMode +Google.Android.Material.AppBar.CollapsingToolbarLayout+IStaticLayoutBuilderConfigurer, Xamarin.Google.Android.Material;com.google.android.material.appbar.CollapsingToolbarLayout$StaticLayoutBuilderConfigurer +Google.Android.Material.AppBar.CollapsingToolbarLayout.IStaticLayoutBuilderConfigurer;com.google.android.material.appbar.CollapsingToolbarLayout$StaticLayoutBuilderConfigurer +com.google.android.material.appbar.CollapsingToolbarLayout$StaticLayoutBuilderConfigurer;com.google.android.material.appbar.CollapsingToolbarLayout$StaticLayoutBuilderConfigurer +Google.Android.Material.AppBar.CollapsingToolbarLayout+ITitleCollapseMode, Xamarin.Google.Android.Material;com.google.android.material.appbar.CollapsingToolbarLayout$TitleCollapseMode +Google.Android.Material.AppBar.CollapsingToolbarLayout.ITitleCollapseMode;com.google.android.material.appbar.CollapsingToolbarLayout$TitleCollapseMode +com.google.android.material.appbar.CollapsingToolbarLayout$TitleCollapseMode;com.google.android.material.appbar.CollapsingToolbarLayout$TitleCollapseMode +Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollEffect, Xamarin.Google.Android.Material;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollEffect +Google.Android.Material.AppBar.AppBarLayout.LayoutParams.IScrollEffect;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollEffect +com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollEffect;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollEffect +Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollFlags, Xamarin.Google.Android.Material;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollFlags +Google.Android.Material.AppBar.AppBarLayout.LayoutParams.IScrollFlags;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollFlags +com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollFlags;com.google.android.material.appbar.AppBarLayout$LayoutParams$ScrollFlags +Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListener, Xamarin.Google.Android.Material;com.google.android.material.appbar.AppBarLayout$LiftOnScrollListener +Google.Android.Material.AppBar.AppBarLayout.ILiftOnScrollListener;com.google.android.material.appbar.AppBarLayout$LiftOnScrollListener +com.google.android.material.appbar.AppBarLayout$LiftOnScrollListener;com.google.android.material.appbar.AppBarLayout$LiftOnScrollListener +Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.appbar.AppBarLayout_LiftOnScrollListenerImplementor +Google.Android.Material.AppBar.AppBarLayout.ILiftOnScrollListenerImplementor;mono.com.google.android.material.appbar.AppBarLayout_LiftOnScrollListenerImplementor +mono.com.google.android.material.appbar.AppBarLayout_LiftOnScrollListenerImplementor;mono.com.google.android.material.appbar.AppBarLayout_LiftOnScrollListenerImplementor +Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListener, Xamarin.Google.Android.Material;com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener +Google.Android.Material.AppBar.AppBarLayout.IOnOffsetChangedListener;com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener +com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener;com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener +Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.appbar.AppBarLayout_OnOffsetChangedListenerImplementor +Google.Android.Material.AppBar.AppBarLayout.IOnOffsetChangedListenerImplementor;mono.com.google.android.material.appbar.AppBarLayout_OnOffsetChangedListenerImplementor +mono.com.google.android.material.appbar.AppBarLayout_OnOffsetChangedListenerImplementor;mono.com.google.android.material.appbar.AppBarLayout_OnOffsetChangedListenerImplementor +Google.Android.Material.Animation.IAnimatableViewListener, Xamarin.Google.Android.Material;com.google.android.material.animation.AnimatableView$Listener +Google.Android.Material.Animation.IAnimatableViewListener;com.google.android.material.animation.AnimatableView$Listener +com.google.android.material.animation.AnimatableView$Listener;com.google.android.material.animation.AnimatableView$Listener +Google.Android.Material.Animation.IAnimatableViewListenerImplementor, Xamarin.Google.Android.Material;mono.com.google.android.material.animation.AnimatableView_ListenerImplementor +Google.Android.Material.Animation.IAnimatableViewListenerImplementor;mono.com.google.android.material.animation.AnimatableView_ListenerImplementor +mono.com.google.android.material.animation.AnimatableView_ListenerImplementor;mono.com.google.android.material.animation.AnimatableView_ListenerImplementor +Google.Android.Material.Animation.IAnimatableView, Xamarin.Google.Android.Material;com.google.android.material.animation.AnimatableView +Google.Android.Material.Animation.IAnimatableView;com.google.android.material.animation.AnimatableView +com.google.android.material.animation.AnimatableView;com.google.android.material.animation.AnimatableView +Google.Android.Material.Animation.ITransformationCallback, Xamarin.Google.Android.Material;com.google.android.material.animation.TransformationCallback +Google.Android.Material.Animation.ITransformationCallback;com.google.android.material.animation.TransformationCallback +com.google.android.material.animation.TransformationCallback;com.google.android.material.animation.TransformationCallback +Javax.Annotation.ICheckForNull, Jsr305Binding;javax.annotation.CheckForNull +Javax.Annotation.ICheckForNull;javax.annotation.CheckForNull +javax.annotation.CheckForNull;javax.annotation.CheckForNull +Javax.Annotation.ICheckForSigned, Jsr305Binding;javax.annotation.CheckForSigned +Javax.Annotation.ICheckForSigned;javax.annotation.CheckForSigned +javax.annotation.CheckForSigned;javax.annotation.CheckForSigned +Javax.Annotation.ICheckReturnValue, Jsr305Binding;javax.annotation.CheckReturnValue +Javax.Annotation.ICheckReturnValue;javax.annotation.CheckReturnValue +javax.annotation.CheckReturnValue;javax.annotation.CheckReturnValue +Javax.Annotation.IDetainted, Jsr305Binding;javax.annotation.Detainted +Javax.Annotation.IDetainted;javax.annotation.Detainted +javax.annotation.Detainted;javax.annotation.Detainted +Javax.Annotation.IMatchesPattern, Jsr305Binding;javax.annotation.MatchesPattern +Javax.Annotation.IMatchesPattern;javax.annotation.MatchesPattern +javax.annotation.MatchesPattern;javax.annotation.MatchesPattern +Javax.Annotation.INonnegative, Jsr305Binding;javax.annotation.Nonnegative +Javax.Annotation.INonnegative;javax.annotation.Nonnegative +javax.annotation.Nonnegative;javax.annotation.Nonnegative +Javax.Annotation.INonnull, Jsr305Binding;javax.annotation.Nonnull +Javax.Annotation.INonnull;javax.annotation.Nonnull +javax.annotation.Nonnull;javax.annotation.Nonnull +Javax.Annotation.INullable, Jsr305Binding;javax.annotation.Nullable +Javax.Annotation.INullable;javax.annotation.Nullable +javax.annotation.Nullable;javax.annotation.Nullable +Javax.Annotation.IOverridingMethodsMustInvokeSuper, Jsr305Binding;javax.annotation.OverridingMethodsMustInvokeSuper +Javax.Annotation.IOverridingMethodsMustInvokeSuper;javax.annotation.OverridingMethodsMustInvokeSuper +javax.annotation.OverridingMethodsMustInvokeSuper;javax.annotation.OverridingMethodsMustInvokeSuper +Javax.Annotation.IParametersAreNonnullByDefault, Jsr305Binding;javax.annotation.ParametersAreNonnullByDefault +Javax.Annotation.IParametersAreNonnullByDefault;javax.annotation.ParametersAreNonnullByDefault +javax.annotation.ParametersAreNonnullByDefault;javax.annotation.ParametersAreNonnullByDefault +Javax.Annotation.IParametersAreNullableByDefault, Jsr305Binding;javax.annotation.ParametersAreNullableByDefault +Javax.Annotation.IParametersAreNullableByDefault;javax.annotation.ParametersAreNullableByDefault +javax.annotation.ParametersAreNullableByDefault;javax.annotation.ParametersAreNullableByDefault +Javax.Annotation.IPropertyKey, Jsr305Binding;javax.annotation.PropertyKey +Javax.Annotation.IPropertyKey;javax.annotation.PropertyKey +javax.annotation.PropertyKey;javax.annotation.PropertyKey +Javax.Annotation.IRegEx, Jsr305Binding;javax.annotation.RegEx +Javax.Annotation.IRegEx;javax.annotation.RegEx +javax.annotation.RegEx;javax.annotation.RegEx +Javax.Annotation.ISigned, Jsr305Binding;javax.annotation.Signed +Javax.Annotation.ISigned;javax.annotation.Signed +javax.annotation.Signed;javax.annotation.Signed +Javax.Annotation.ISyntax, Jsr305Binding;javax.annotation.Syntax +Javax.Annotation.ISyntax;javax.annotation.Syntax +javax.annotation.Syntax;javax.annotation.Syntax +Javax.Annotation.ITainted, Jsr305Binding;javax.annotation.Tainted +Javax.Annotation.ITainted;javax.annotation.Tainted +javax.annotation.Tainted;javax.annotation.Tainted +Javax.Annotation.IUntainted, Jsr305Binding;javax.annotation.Untainted +Javax.Annotation.IUntainted;javax.annotation.Untainted +javax.annotation.Untainted;javax.annotation.Untainted +Javax.Annotation.IWillClose, Jsr305Binding;javax.annotation.WillClose +Javax.Annotation.IWillClose;javax.annotation.WillClose +javax.annotation.WillClose;javax.annotation.WillClose +Javax.Annotation.IWillCloseWhenClosed, Jsr305Binding;javax.annotation.WillCloseWhenClosed +Javax.Annotation.IWillCloseWhenClosed;javax.annotation.WillCloseWhenClosed +javax.annotation.WillCloseWhenClosed;javax.annotation.WillCloseWhenClosed +Javax.Annotation.IWillNotClose, Jsr305Binding;javax.annotation.WillNotClose +Javax.Annotation.IWillNotClose;javax.annotation.WillNotClose +javax.annotation.WillNotClose;javax.annotation.WillNotClose +Javax.Annotation.Meta.IExclusive, Jsr305Binding;javax.annotation.meta.Exclusive +Javax.Annotation.Meta.IExclusive;javax.annotation.meta.Exclusive +javax.annotation.meta.Exclusive;javax.annotation.meta.Exclusive +Javax.Annotation.Meta.IExhaustive, Jsr305Binding;javax.annotation.meta.Exhaustive +Javax.Annotation.Meta.IExhaustive;javax.annotation.meta.Exhaustive +javax.annotation.meta.Exhaustive;javax.annotation.meta.Exhaustive +Javax.Annotation.Meta.ITypeQualifier, Jsr305Binding;javax.annotation.meta.TypeQualifier +Javax.Annotation.Meta.ITypeQualifier;javax.annotation.meta.TypeQualifier +javax.annotation.meta.TypeQualifier;javax.annotation.meta.TypeQualifier +Javax.Annotation.Meta.ITypeQualifierDefault, Jsr305Binding;javax.annotation.meta.TypeQualifierDefault +Javax.Annotation.Meta.ITypeQualifierDefault;javax.annotation.meta.TypeQualifierDefault +javax.annotation.meta.TypeQualifierDefault;javax.annotation.meta.TypeQualifierDefault +Javax.Annotation.Meta.ITypeQualifierNickname, Jsr305Binding;javax.annotation.meta.TypeQualifierNickname +Javax.Annotation.Meta.ITypeQualifierNickname;javax.annotation.meta.TypeQualifierNickname +javax.annotation.meta.TypeQualifierNickname;javax.annotation.meta.TypeQualifierNickname +Javax.Annotation.Meta.ITypeQualifierValidator, Jsr305Binding;javax.annotation.meta.TypeQualifierValidator +Javax.Annotation.Meta.ITypeQualifierValidator;javax.annotation.meta.TypeQualifierValidator +javax.annotation.meta.TypeQualifierValidator;javax.annotation.meta.TypeQualifierValidator +Javax.Annotation.Concurrent.IGuardedBy, Jsr305Binding;javax.annotation.concurrent.GuardedBy +Javax.Annotation.Concurrent.IGuardedBy;javax.annotation.concurrent.GuardedBy +javax.annotation.concurrent.GuardedBy;javax.annotation.concurrent.GuardedBy +Javax.Annotation.Concurrent.IImmutable, Jsr305Binding;javax.annotation.concurrent.Immutable +Javax.Annotation.Concurrent.IImmutable;javax.annotation.concurrent.Immutable +javax.annotation.concurrent.Immutable;javax.annotation.concurrent.Immutable +Javax.Annotation.Concurrent.INotThreadSafe, Jsr305Binding;javax.annotation.concurrent.NotThreadSafe +Javax.Annotation.Concurrent.INotThreadSafe;javax.annotation.concurrent.NotThreadSafe +javax.annotation.concurrent.NotThreadSafe;javax.annotation.concurrent.NotThreadSafe +Javax.Annotation.Concurrent.IThreadSafe, Jsr305Binding;javax.annotation.concurrent.ThreadSafe +Javax.Annotation.Concurrent.IThreadSafe;javax.annotation.concurrent.ThreadSafe +javax.annotation.concurrent.ThreadSafe;javax.annotation.concurrent.ThreadSafe +Xamarin.Google.Crypto.Tink.IAccessesPartialKey, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.AccessesPartialKey +Xamarin.Google.Crypto.Tink.IAccessesPartialKey;com.google.crypto.tink.AccessesPartialKey +com.google.crypto.tink.AccessesPartialKey;com.google.crypto.tink.AccessesPartialKey +Xamarin.Google.Crypto.Tink.IAead, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.Aead +Xamarin.Google.Crypto.Tink.IAead;com.google.crypto.tink.Aead +com.google.crypto.tink.Aead;com.google.crypto.tink.Aead +Xamarin.Google.Crypto.Tink.IDeterministicAead, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.DeterministicAead +Xamarin.Google.Crypto.Tink.IDeterministicAead;com.google.crypto.tink.DeterministicAead +com.google.crypto.tink.DeterministicAead;com.google.crypto.tink.DeterministicAead +Xamarin.Google.Crypto.Tink.IHybridDecrypt, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.HybridDecrypt +Xamarin.Google.Crypto.Tink.IHybridDecrypt;com.google.crypto.tink.HybridDecrypt +com.google.crypto.tink.HybridDecrypt;com.google.crypto.tink.HybridDecrypt +Xamarin.Google.Crypto.Tink.IHybridEncrypt, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.HybridEncrypt +Xamarin.Google.Crypto.Tink.IHybridEncrypt;com.google.crypto.tink.HybridEncrypt +com.google.crypto.tink.HybridEncrypt;com.google.crypto.tink.HybridEncrypt +Xamarin.Google.Crypto.Tink.IKeyManager, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.KeyManager +Xamarin.Google.Crypto.Tink.IKeyManager;com.google.crypto.tink.KeyManager +com.google.crypto.tink.KeyManager;com.google.crypto.tink.KeyManager +Xamarin.Google.Crypto.Tink.IKeysetReader, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.KeysetReader +Xamarin.Google.Crypto.Tink.IKeysetReader;com.google.crypto.tink.KeysetReader +com.google.crypto.tink.KeysetReader;com.google.crypto.tink.KeysetReader +Xamarin.Google.Crypto.Tink.IKeysetWriter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.KeysetWriter +Xamarin.Google.Crypto.Tink.IKeysetWriter;com.google.crypto.tink.KeysetWriter +com.google.crypto.tink.KeysetWriter;com.google.crypto.tink.KeysetWriter +Xamarin.Google.Crypto.Tink.IKeyWrap, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.KeyWrap +Xamarin.Google.Crypto.Tink.IKeyWrap;com.google.crypto.tink.KeyWrap +com.google.crypto.tink.KeyWrap;com.google.crypto.tink.KeyWrap +Xamarin.Google.Crypto.Tink.IKmsClient, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.KmsClient +Xamarin.Google.Crypto.Tink.IKmsClient;com.google.crypto.tink.KmsClient +com.google.crypto.tink.KmsClient;com.google.crypto.tink.KmsClient +Xamarin.Google.Crypto.Tink.IMac, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.Mac +Xamarin.Google.Crypto.Tink.IMac;com.google.crypto.tink.Mac +com.google.crypto.tink.Mac;com.google.crypto.tink.Mac +Xamarin.Google.Crypto.Tink.IPrivateKey, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.PrivateKey +Xamarin.Google.Crypto.Tink.IPrivateKey;com.google.crypto.tink.PrivateKey +com.google.crypto.tink.PrivateKey;com.google.crypto.tink.PrivateKey +Xamarin.Google.Crypto.Tink.IPrivateKeyManager, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.PrivateKeyManager +Xamarin.Google.Crypto.Tink.IPrivateKeyManager;com.google.crypto.tink.PrivateKeyManager +com.google.crypto.tink.PrivateKeyManager;com.google.crypto.tink.PrivateKeyManager +Xamarin.Google.Crypto.Tink.IPublicKeySign, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.PublicKeySign +Xamarin.Google.Crypto.Tink.IPublicKeySign;com.google.crypto.tink.PublicKeySign +com.google.crypto.tink.PublicKeySign;com.google.crypto.tink.PublicKeySign +Xamarin.Google.Crypto.Tink.IPublicKeyVerify, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.PublicKeyVerify +Xamarin.Google.Crypto.Tink.IPublicKeyVerify;com.google.crypto.tink.PublicKeyVerify +com.google.crypto.tink.PublicKeyVerify;com.google.crypto.tink.PublicKeyVerify +Xamarin.Google.Crypto.Tink.IStreamingAead, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.StreamingAead +Xamarin.Google.Crypto.Tink.IStreamingAead;com.google.crypto.tink.StreamingAead +com.google.crypto.tink.StreamingAead;com.google.crypto.tink.StreamingAead +Xamarin.Google.Crypto.Tink.Tinkkey.ITinkKey, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.tinkkey.TinkKey +Xamarin.Google.Crypto.Tink.Tinkkey.ITinkKey;com.google.crypto.tink.tinkkey.TinkKey +com.google.crypto.tink.tinkkey.TinkKey;com.google.crypto.tink.tinkkey.TinkKey +Xamarin.Google.Crypto.Tink.Subtle.IEngineWrapper, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.subtle.EngineWrapper +Xamarin.Google.Crypto.Tink.Subtle.IEngineWrapper;com.google.crypto.tink.subtle.EngineWrapper +com.google.crypto.tink.subtle.EngineWrapper;com.google.crypto.tink.subtle.EngineWrapper +Xamarin.Google.Crypto.Tink.Subtle.IIndCpaCipher, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.subtle.IndCpaCipher +Xamarin.Google.Crypto.Tink.Subtle.IIndCpaCipher;com.google.crypto.tink.subtle.IndCpaCipher +com.google.crypto.tink.subtle.IndCpaCipher;com.google.crypto.tink.subtle.IndCpaCipher +Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentDecrypter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.subtle.StreamSegmentDecrypter +Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentDecrypter;com.google.crypto.tink.subtle.StreamSegmentDecrypter +com.google.crypto.tink.subtle.StreamSegmentDecrypter;com.google.crypto.tink.subtle.StreamSegmentDecrypter +Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentEncrypter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.subtle.StreamSegmentEncrypter +Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentEncrypter;com.google.crypto.tink.subtle.StreamSegmentEncrypter +com.google.crypto.tink.subtle.StreamSegmentEncrypter;com.google.crypto.tink.subtle.StreamSegmentEncrypter +Xamarin.Google.Crypto.Tink.Subtle.Prf.IStreamingPrf, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.subtle.prf.StreamingPrf +Xamarin.Google.Crypto.Tink.Subtle.Prf.IStreamingPrf;com.google.crypto.tink.subtle.prf.StreamingPrf +com.google.crypto.tink.subtle.prf.StreamingPrf;com.google.crypto.tink.subtle.prf.StreamingPrf +Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCmacKeyFormatOrBuilder +com.google.crypto.tink.proto.AesCmacKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyOrBuilder;com.google.crypto.tink.proto.AesCmacKeyOrBuilder +com.google.crypto.tink.proto.AesCmacKeyOrBuilder;com.google.crypto.tink.proto.AesCmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCmacParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacParamsOrBuilder;com.google.crypto.tink.proto.AesCmacParamsOrBuilder +com.google.crypto.tink.proto.AesCmacParamsOrBuilder;com.google.crypto.tink.proto.AesCmacParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCmacPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCmacPrfKeyFormatOrBuilder +com.google.crypto.tink.proto.AesCmacPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCmacPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCmacPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyOrBuilder;com.google.crypto.tink.proto.AesCmacPrfKeyOrBuilder +com.google.crypto.tink.proto.AesCmacPrfKeyOrBuilder;com.google.crypto.tink.proto.AesCmacPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormatOrBuilder +com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrHmacAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyOrBuilder;com.google.crypto.tink.proto.AesCtrHmacAeadKeyOrBuilder +com.google.crypto.tink.proto.AesCtrHmacAeadKeyOrBuilder;com.google.crypto.tink.proto.AesCtrHmacAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyFormatOrBuilder +com.google.crypto.tink.proto.AesCtrHmacStreamingKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyOrBuilder +com.google.crypto.tink.proto.AesCtrHmacStreamingKeyOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrHmacStreamingParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingParamsOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingParamsOrBuilder +com.google.crypto.tink.proto.AesCtrHmacStreamingParamsOrBuilder;com.google.crypto.tink.proto.AesCtrHmacStreamingParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrKeyFormatOrBuilder +com.google.crypto.tink.proto.AesCtrKeyFormatOrBuilder;com.google.crypto.tink.proto.AesCtrKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyOrBuilder;com.google.crypto.tink.proto.AesCtrKeyOrBuilder +com.google.crypto.tink.proto.AesCtrKeyOrBuilder;com.google.crypto.tink.proto.AesCtrKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesCtrParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesCtrParamsOrBuilder;com.google.crypto.tink.proto.AesCtrParamsOrBuilder +com.google.crypto.tink.proto.AesCtrParamsOrBuilder;com.google.crypto.tink.proto.AesCtrParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesEaxKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyFormatOrBuilder;com.google.crypto.tink.proto.AesEaxKeyFormatOrBuilder +com.google.crypto.tink.proto.AesEaxKeyFormatOrBuilder;com.google.crypto.tink.proto.AesEaxKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesEaxKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyOrBuilder;com.google.crypto.tink.proto.AesEaxKeyOrBuilder +com.google.crypto.tink.proto.AesEaxKeyOrBuilder;com.google.crypto.tink.proto.AesEaxKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesEaxParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesEaxParamsOrBuilder;com.google.crypto.tink.proto.AesEaxParamsOrBuilder +com.google.crypto.tink.proto.AesEaxParamsOrBuilder;com.google.crypto.tink.proto.AesEaxParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyFormatOrBuilder +com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyOrBuilder +com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmHkdfStreamingParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingParamsOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingParamsOrBuilder +com.google.crypto.tink.proto.AesGcmHkdfStreamingParamsOrBuilder;com.google.crypto.tink.proto.AesGcmHkdfStreamingParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmKeyFormatOrBuilder +com.google.crypto.tink.proto.AesGcmKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyOrBuilder;com.google.crypto.tink.proto.AesGcmKeyOrBuilder +com.google.crypto.tink.proto.AesGcmKeyOrBuilder;com.google.crypto.tink.proto.AesGcmKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmSivKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmSivKeyFormatOrBuilder +com.google.crypto.tink.proto.AesGcmSivKeyFormatOrBuilder;com.google.crypto.tink.proto.AesGcmSivKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesGcmSivKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyOrBuilder;com.google.crypto.tink.proto.AesGcmSivKeyOrBuilder +com.google.crypto.tink.proto.AesGcmSivKeyOrBuilder;com.google.crypto.tink.proto.AesGcmSivKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesSivKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyFormatOrBuilder;com.google.crypto.tink.proto.AesSivKeyFormatOrBuilder +com.google.crypto.tink.proto.AesSivKeyFormatOrBuilder;com.google.crypto.tink.proto.AesSivKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.AesSivKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyOrBuilder;com.google.crypto.tink.proto.AesSivKeyOrBuilder +com.google.crypto.tink.proto.AesSivKeyOrBuilder;com.google.crypto.tink.proto.AesSivKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.ChaCha20Poly1305KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyFormatOrBuilder;com.google.crypto.tink.proto.ChaCha20Poly1305KeyFormatOrBuilder +com.google.crypto.tink.proto.ChaCha20Poly1305KeyFormatOrBuilder;com.google.crypto.tink.proto.ChaCha20Poly1305KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.ChaCha20Poly1305KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyOrBuilder;com.google.crypto.tink.proto.ChaCha20Poly1305KeyOrBuilder +com.google.crypto.tink.proto.ChaCha20Poly1305KeyOrBuilder;com.google.crypto.tink.proto.ChaCha20Poly1305KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EcdsaKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaKeyFormatOrBuilder;com.google.crypto.tink.proto.EcdsaKeyFormatOrBuilder +com.google.crypto.tink.proto.EcdsaKeyFormatOrBuilder;com.google.crypto.tink.proto.EcdsaKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EcdsaParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaParamsOrBuilder;com.google.crypto.tink.proto.EcdsaParamsOrBuilder +com.google.crypto.tink.proto.EcdsaParamsOrBuilder;com.google.crypto.tink.proto.EcdsaParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EcdsaPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaPrivateKeyOrBuilder;com.google.crypto.tink.proto.EcdsaPrivateKeyOrBuilder +com.google.crypto.tink.proto.EcdsaPrivateKeyOrBuilder;com.google.crypto.tink.proto.EcdsaPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EcdsaPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEcdsaPublicKeyOrBuilder;com.google.crypto.tink.proto.EcdsaPublicKeyOrBuilder +com.google.crypto.tink.proto.EcdsaPublicKeyOrBuilder;com.google.crypto.tink.proto.EcdsaPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadDemParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesAeadDemParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadDemParamsOrBuilder;com.google.crypto.tink.proto.EciesAeadDemParamsOrBuilder +com.google.crypto.tink.proto.EciesAeadDemParamsOrBuilder;com.google.crypto.tink.proto.EciesAeadDemParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesAeadHkdfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfKeyFormatOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfKeyFormatOrBuilder +com.google.crypto.tink.proto.EciesAeadHkdfKeyFormatOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesAeadHkdfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfParamsOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfParamsOrBuilder +com.google.crypto.tink.proto.EciesAeadHkdfParamsOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesAeadHkdfPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPrivateKeyOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfPrivateKeyOrBuilder +com.google.crypto.tink.proto.EciesAeadHkdfPrivateKeyOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesAeadHkdfPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPublicKeyOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfPublicKeyOrBuilder +com.google.crypto.tink.proto.EciesAeadHkdfPublicKeyOrBuilder;com.google.crypto.tink.proto.EciesAeadHkdfPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesHkdfKemParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EciesHkdfKemParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEciesHkdfKemParamsOrBuilder;com.google.crypto.tink.proto.EciesHkdfKemParamsOrBuilder +com.google.crypto.tink.proto.EciesHkdfKemParamsOrBuilder;com.google.crypto.tink.proto.EciesHkdfKemParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.Ed25519KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519KeyFormatOrBuilder;com.google.crypto.tink.proto.Ed25519KeyFormatOrBuilder +com.google.crypto.tink.proto.Ed25519KeyFormatOrBuilder;com.google.crypto.tink.proto.Ed25519KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.Ed25519PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519PrivateKeyOrBuilder;com.google.crypto.tink.proto.Ed25519PrivateKeyOrBuilder +com.google.crypto.tink.proto.Ed25519PrivateKeyOrBuilder;com.google.crypto.tink.proto.Ed25519PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.Ed25519PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEd25519PublicKeyOrBuilder;com.google.crypto.tink.proto.Ed25519PublicKeyOrBuilder +com.google.crypto.tink.proto.Ed25519PublicKeyOrBuilder;com.google.crypto.tink.proto.Ed25519PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEncryptedKeysetOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.EncryptedKeysetOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IEncryptedKeysetOrBuilder;com.google.crypto.tink.proto.EncryptedKeysetOrBuilder +com.google.crypto.tink.proto.EncryptedKeysetOrBuilder;com.google.crypto.tink.proto.EncryptedKeysetOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HkdfPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.HkdfPrfKeyFormatOrBuilder +com.google.crypto.tink.proto.HkdfPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.HkdfPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HkdfPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyOrBuilder;com.google.crypto.tink.proto.HkdfPrfKeyOrBuilder +com.google.crypto.tink.proto.HkdfPrfKeyOrBuilder;com.google.crypto.tink.proto.HkdfPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HkdfPrfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfParamsOrBuilder;com.google.crypto.tink.proto.HkdfPrfParamsOrBuilder +com.google.crypto.tink.proto.HkdfPrfParamsOrBuilder;com.google.crypto.tink.proto.HkdfPrfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacKeyFormatOrBuilder;com.google.crypto.tink.proto.HmacKeyFormatOrBuilder +com.google.crypto.tink.proto.HmacKeyFormatOrBuilder;com.google.crypto.tink.proto.HmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacKeyOrBuilder;com.google.crypto.tink.proto.HmacKeyOrBuilder +com.google.crypto.tink.proto.HmacKeyOrBuilder;com.google.crypto.tink.proto.HmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacParamsOrBuilder;com.google.crypto.tink.proto.HmacParamsOrBuilder +com.google.crypto.tink.proto.HmacParamsOrBuilder;com.google.crypto.tink.proto.HmacParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.HmacPrfKeyFormatOrBuilder +com.google.crypto.tink.proto.HmacPrfKeyFormatOrBuilder;com.google.crypto.tink.proto.HmacPrfKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyOrBuilder;com.google.crypto.tink.proto.HmacPrfKeyOrBuilder +com.google.crypto.tink.proto.HmacPrfKeyOrBuilder;com.google.crypto.tink.proto.HmacPrfKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HmacPrfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHmacPrfParamsOrBuilder;com.google.crypto.tink.proto.HmacPrfParamsOrBuilder +com.google.crypto.tink.proto.HmacPrfParamsOrBuilder;com.google.crypto.tink.proto.HmacPrfParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkeKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HpkeKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkeKeyFormatOrBuilder;com.google.crypto.tink.proto.HpkeKeyFormatOrBuilder +com.google.crypto.tink.proto.HpkeKeyFormatOrBuilder;com.google.crypto.tink.proto.HpkeKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkeParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HpkeParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkeParamsOrBuilder;com.google.crypto.tink.proto.HpkeParamsOrBuilder +com.google.crypto.tink.proto.HpkeParamsOrBuilder;com.google.crypto.tink.proto.HpkeParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkePrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HpkePrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkePrivateKeyOrBuilder;com.google.crypto.tink.proto.HpkePrivateKeyOrBuilder +com.google.crypto.tink.proto.HpkePrivateKeyOrBuilder;com.google.crypto.tink.proto.HpkePrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkePublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.HpkePublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IHpkePublicKeyOrBuilder;com.google.crypto.tink.proto.HpkePublicKeyOrBuilder +com.google.crypto.tink.proto.HpkePublicKeyOrBuilder;com.google.crypto.tink.proto.HpkePublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtEcdsaKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtEcdsaKeyFormatOrBuilder +com.google.crypto.tink.proto.JwtEcdsaKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtEcdsaKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtEcdsaPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPrivateKeyOrBuilder +com.google.crypto.tink.proto.JwtEcdsaPrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtEcdsaPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPublicKeyOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPublicKeyOrBuilder +com.google.crypto.tink.proto.JwtEcdsaPublicKeyOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtHmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtHmacKeyFormatOrBuilder +com.google.crypto.tink.proto.JwtHmacKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtHmacKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtHmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyOrBuilder;com.google.crypto.tink.proto.JwtHmacKeyOrBuilder +com.google.crypto.tink.proto.JwtHmacKeyOrBuilder;com.google.crypto.tink.proto.JwtHmacKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPkcs1KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1KeyFormatOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1KeyFormatOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPkcs1KeyFormatOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PrivateKeyOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPkcs1PrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PublicKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKeyOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPssKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssKeyFormatOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPssKeyFormatOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPssPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPrivateKeyOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPssPrivateKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPublicKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKeyOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPssPublicKeyOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyDataOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeyDataOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyDataOrBuilder;com.google.crypto.tink.proto.KeyDataOrBuilder +com.google.crypto.tink.proto.KeyDataOrBuilder;com.google.crypto.tink.proto.KeyDataOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeysetInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeysetInfoOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeysetInfoOrBuilder;com.google.crypto.tink.proto.KeysetInfoOrBuilder +com.google.crypto.tink.proto.KeysetInfoOrBuilder;com.google.crypto.tink.proto.KeysetInfoOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeysetOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeysetOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeysetOrBuilder;com.google.crypto.tink.proto.KeysetOrBuilder +com.google.crypto.tink.proto.KeysetOrBuilder;com.google.crypto.tink.proto.KeysetOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyTemplateOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeyTemplateOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyTemplateOrBuilder;com.google.crypto.tink.proto.KeyTemplateOrBuilder +com.google.crypto.tink.proto.KeyTemplateOrBuilder;com.google.crypto.tink.proto.KeyTemplateOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyTypeEntryOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeyTypeEntryOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKeyTypeEntryOrBuilder;com.google.crypto.tink.proto.KeyTypeEntryOrBuilder +com.google.crypto.tink.proto.KeyTypeEntryOrBuilder;com.google.crypto.tink.proto.KeyTypeEntryOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KmsAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.KmsAeadKeyFormatOrBuilder +com.google.crypto.tink.proto.KmsAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.KmsAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KmsAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyOrBuilder;com.google.crypto.tink.proto.KmsAeadKeyOrBuilder +com.google.crypto.tink.proto.KmsAeadKeyOrBuilder;com.google.crypto.tink.proto.KmsAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyFormatOrBuilder +com.google.crypto.tink.proto.KmsEnvelopeAeadKeyFormatOrBuilder;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyOrBuilder;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyOrBuilder +com.google.crypto.tink.proto.KmsEnvelopeAeadKeyOrBuilder;com.google.crypto.tink.proto.KmsEnvelopeAeadKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.PrfBasedDeriverKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyFormatOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverKeyFormatOrBuilder +com.google.crypto.tink.proto.PrfBasedDeriverKeyFormatOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.PrfBasedDeriverKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverKeyOrBuilder +com.google.crypto.tink.proto.PrfBasedDeriverKeyOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.PrfBasedDeriverParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverParamsOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverParamsOrBuilder +com.google.crypto.tink.proto.PrfBasedDeriverParamsOrBuilder;com.google.crypto.tink.proto.PrfBasedDeriverParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRegistryConfigOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RegistryConfigOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRegistryConfigOrBuilder;com.google.crypto.tink.proto.RegistryConfigOrBuilder +com.google.crypto.tink.proto.RegistryConfigOrBuilder;com.google.crypto.tink.proto.RegistryConfigOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPkcs1KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1KeyFormatOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1KeyFormatOrBuilder +com.google.crypto.tink.proto.RsaSsaPkcs1KeyFormatOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1ParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPkcs1ParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1ParamsOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1ParamsOrBuilder +com.google.crypto.tink.proto.RsaSsaPkcs1ParamsOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1ParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPkcs1PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PrivateKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1PrivateKeyOrBuilder +com.google.crypto.tink.proto.RsaSsaPkcs1PrivateKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1PrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPkcs1PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PublicKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1PublicKeyOrBuilder +com.google.crypto.tink.proto.RsaSsaPkcs1PublicKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPkcs1PublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPssKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssKeyFormatOrBuilder;com.google.crypto.tink.proto.RsaSsaPssKeyFormatOrBuilder +com.google.crypto.tink.proto.RsaSsaPssKeyFormatOrBuilder;com.google.crypto.tink.proto.RsaSsaPssKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssParamsOrBuilder;com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder +com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder;com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPssPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPrivateKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPssPrivateKeyOrBuilder +com.google.crypto.tink.proto.RsaSsaPssPrivateKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPssPrivateKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.RsaSsaPssPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPublicKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPssPublicKeyOrBuilder +com.google.crypto.tink.proto.RsaSsaPssPublicKeyOrBuilder;com.google.crypto.tink.proto.RsaSsaPssPublicKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.XAesGcmKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyFormatOrBuilder;com.google.crypto.tink.proto.XAesGcmKeyFormatOrBuilder +com.google.crypto.tink.proto.XAesGcmKeyFormatOrBuilder;com.google.crypto.tink.proto.XAesGcmKeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.XAesGcmKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyOrBuilder;com.google.crypto.tink.proto.XAesGcmKeyOrBuilder +com.google.crypto.tink.proto.XAesGcmKeyOrBuilder;com.google.crypto.tink.proto.XAesGcmKeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.XAesGcmParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXAesGcmParamsOrBuilder;com.google.crypto.tink.proto.XAesGcmParamsOrBuilder +com.google.crypto.tink.proto.XAesGcmParamsOrBuilder;com.google.crypto.tink.proto.XAesGcmParamsOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.XChaCha20Poly1305KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyFormatOrBuilder;com.google.crypto.tink.proto.XChaCha20Poly1305KeyFormatOrBuilder +com.google.crypto.tink.proto.XChaCha20Poly1305KeyFormatOrBuilder;com.google.crypto.tink.proto.XChaCha20Poly1305KeyFormatOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.XChaCha20Poly1305KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyOrBuilder;com.google.crypto.tink.proto.XChaCha20Poly1305KeyOrBuilder +com.google.crypto.tink.proto.XChaCha20Poly1305KeyOrBuilder;com.google.crypto.tink.proto.XChaCha20Poly1305KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtEcdsaPublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey.ICustomKidOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPublicKey$CustomKidOrBuilder +com.google.crypto.tink.proto.JwtEcdsaPublicKey$CustomKidOrBuilder;com.google.crypto.tink.proto.JwtEcdsaPublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtHmacKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey.ICustomKidOrBuilder;com.google.crypto.tink.proto.JwtHmacKey$CustomKidOrBuilder +com.google.crypto.tink.proto.JwtHmacKey$CustomKidOrBuilder;com.google.crypto.tink.proto.JwtHmacKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey.ICustomKidOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKey$CustomKidOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKey$CustomKidOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey.ICustomKidOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKey$CustomKidOrBuilder +com.google.crypto.tink.proto.JwtRsaSsaPssPublicKey$CustomKidOrBuilder;com.google.crypto.tink.proto.JwtRsaSsaPssPublicKey$CustomKidOrBuilder +Xamarin.Google.Crypto.Tink.Proto.Keyset+IKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.Keyset$KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.Keyset.IKeyOrBuilder;com.google.crypto.tink.proto.Keyset$KeyOrBuilder +com.google.crypto.tink.proto.Keyset$KeyOrBuilder;com.google.crypto.tink.proto.Keyset$KeyOrBuilder +Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+IKeyInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.proto.KeysetInfo$KeyInfoOrBuilder +Xamarin.Google.Crypto.Tink.Proto.KeysetInfo.IKeyInfoOrBuilder;com.google.crypto.tink.proto.KeysetInfo$KeyInfoOrBuilder +com.google.crypto.tink.proto.KeysetInfo$KeyInfoOrBuilder;com.google.crypto.tink.proto.KeysetInfo$KeyInfoOrBuilder +Xamarin.Google.Crypto.Tink.Prf.IPrf, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.prf.Prf +Xamarin.Google.Crypto.Tink.Prf.IPrf;com.google.crypto.tink.prf.Prf +com.google.crypto.tink.prf.Prf;com.google.crypto.tink.prf.Prf +Xamarin.Google.Crypto.Tink.Mac.IChunkedMac, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.mac.ChunkedMac +Xamarin.Google.Crypto.Tink.Mac.IChunkedMac;com.google.crypto.tink.mac.ChunkedMac +com.google.crypto.tink.mac.ChunkedMac;com.google.crypto.tink.mac.ChunkedMac +Xamarin.Google.Crypto.Tink.Mac.IChunkedMacComputation, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.mac.ChunkedMacComputation +Xamarin.Google.Crypto.Tink.Mac.IChunkedMacComputation;com.google.crypto.tink.mac.ChunkedMacComputation +com.google.crypto.tink.mac.ChunkedMacComputation;com.google.crypto.tink.mac.ChunkedMacComputation +Xamarin.Google.Crypto.Tink.Mac.IChunkedMacVerification, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.mac.ChunkedMacVerification +Xamarin.Google.Crypto.Tink.Mac.IChunkedMacVerification;com.google.crypto.tink.mac.ChunkedMacVerification +com.google.crypto.tink.mac.ChunkedMacVerification;com.google.crypto.tink.mac.ChunkedMacVerification +Xamarin.Google.Crypto.Tink.KeyDerivation.IKeysetDeriver, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.keyderivation.KeysetDeriver +Xamarin.Google.Crypto.Tink.KeyDerivation.IKeysetDeriver;com.google.crypto.tink.keyderivation.KeysetDeriver +com.google.crypto.tink.keyderivation.KeysetDeriver;com.google.crypto.tink.keyderivation.KeysetDeriver +Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.IKeyDeriver, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.keyderivation.internal.KeyDeriver +Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.IKeyDeriver;com.google.crypto.tink.keyderivation.internal.KeyDeriver +com.google.crypto.tink.keyderivation.internal.KeyDeriver;com.google.crypto.tink.keyderivation.internal.KeyDeriver +Xamarin.Google.Crypto.Tink.Jwt.IJwtMac, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.jwt.JwtMac +Xamarin.Google.Crypto.Tink.Jwt.IJwtMac;com.google.crypto.tink.jwt.JwtMac +com.google.crypto.tink.jwt.JwtMac;com.google.crypto.tink.jwt.JwtMac +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySign, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.jwt.JwtPublicKeySign +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySign;com.google.crypto.tink.jwt.JwtPublicKeySign +com.google.crypto.tink.jwt.JwtPublicKeySign;com.google.crypto.tink.jwt.JwtPublicKeySign +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySignInternal, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.jwt.JwtPublicKeySignInternal +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySignInternal;com.google.crypto.tink.jwt.JwtPublicKeySignInternal +com.google.crypto.tink.jwt.JwtPublicKeySignInternal;com.google.crypto.tink.jwt.JwtPublicKeySignInternal +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerify, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.jwt.JwtPublicKeyVerify +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerify;com.google.crypto.tink.jwt.JwtPublicKeyVerify +com.google.crypto.tink.jwt.JwtPublicKeyVerify;com.google.crypto.tink.jwt.JwtPublicKeyVerify +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerifyInternal, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.jwt.JwtPublicKeyVerifyInternal +Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerifyInternal;com.google.crypto.tink.jwt.JwtPublicKeyVerifyInternal +com.google.crypto.tink.jwt.JwtPublicKeyVerifyInternal;com.google.crypto.tink.jwt.JwtPublicKeyVerifyInternal +Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterfaceEntry, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.KeysetHandleInterface$Entry +Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterfaceEntry;com.google.crypto.tink.internal.KeysetHandleInterface$Entry +com.google.crypto.tink.internal.KeysetHandleInterface$Entry;com.google.crypto.tink.internal.KeysetHandleInterface$Entry +Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterface, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.KeysetHandleInterface +Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterface;com.google.crypto.tink.internal.KeysetHandleInterface +com.google.crypto.tink.internal.KeysetHandleInterface;com.google.crypto.tink.internal.KeysetHandleInterface +Xamarin.Google.Crypto.Tink.Internal.IMonitoringClientLogger, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.MonitoringClient$Logger +Xamarin.Google.Crypto.Tink.Internal.IMonitoringClientLogger;com.google.crypto.tink.internal.MonitoringClient$Logger +com.google.crypto.tink.internal.MonitoringClient$Logger;com.google.crypto.tink.internal.MonitoringClient$Logger +Xamarin.Google.Crypto.Tink.Internal.IMonitoringClient, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.MonitoringClient +Xamarin.Google.Crypto.Tink.Internal.IMonitoringClient;com.google.crypto.tink.internal.MonitoringClient +com.google.crypto.tink.internal.MonitoringClient;com.google.crypto.tink.internal.MonitoringClient +Xamarin.Google.Crypto.Tink.Internal.ISerialization, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.Serialization +Xamarin.Google.Crypto.Tink.Internal.ISerialization;com.google.crypto.tink.internal.Serialization +com.google.crypto.tink.internal.Serialization;com.google.crypto.tink.internal.Serialization +Xamarin.Google.Crypto.Tink.Internal.KeyParser+IKeyParsingFunction, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.KeyParser$KeyParsingFunction +Xamarin.Google.Crypto.Tink.Internal.KeyParser.IKeyParsingFunction;com.google.crypto.tink.internal.KeyParser$KeyParsingFunction +com.google.crypto.tink.internal.KeyParser$KeyParsingFunction;com.google.crypto.tink.internal.KeyParser$KeyParsingFunction +Xamarin.Google.Crypto.Tink.Internal.KeySerializer+IKeySerializationFunction, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.KeySerializer$KeySerializationFunction +Xamarin.Google.Crypto.Tink.Internal.KeySerializer.IKeySerializationFunction;com.google.crypto.tink.internal.KeySerializer$KeySerializationFunction +com.google.crypto.tink.internal.KeySerializer$KeySerializationFunction;com.google.crypto.tink.internal.KeySerializer$KeySerializationFunction +Xamarin.Google.Crypto.Tink.Internal.MutableKeyCreationRegistry+IKeyCreator, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.MutableKeyCreationRegistry$KeyCreator +Xamarin.Google.Crypto.Tink.Internal.MutableKeyCreationRegistry.IKeyCreator;com.google.crypto.tink.internal.MutableKeyCreationRegistry$KeyCreator +com.google.crypto.tink.internal.MutableKeyCreationRegistry$KeyCreator;com.google.crypto.tink.internal.MutableKeyCreationRegistry$KeyCreator +Xamarin.Google.Crypto.Tink.Internal.MutableKeyDerivationRegistry+IInsecureKeyCreator, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.MutableKeyDerivationRegistry$InsecureKeyCreator +Xamarin.Google.Crypto.Tink.Internal.MutableKeyDerivationRegistry.IInsecureKeyCreator;com.google.crypto.tink.internal.MutableKeyDerivationRegistry$InsecureKeyCreator +com.google.crypto.tink.internal.MutableKeyDerivationRegistry$InsecureKeyCreator;com.google.crypto.tink.internal.MutableKeyDerivationRegistry$InsecureKeyCreator +Xamarin.Google.Crypto.Tink.Internal.ParametersParser+IParametersParsingFunction, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.ParametersParser$ParametersParsingFunction +Xamarin.Google.Crypto.Tink.Internal.ParametersParser.IParametersParsingFunction;com.google.crypto.tink.internal.ParametersParser$ParametersParsingFunction +com.google.crypto.tink.internal.ParametersParser$ParametersParsingFunction;com.google.crypto.tink.internal.ParametersParser$ParametersParsingFunction +Xamarin.Google.Crypto.Tink.Internal.ParametersSerializer+IParametersSerializationFunction, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.ParametersSerializer$ParametersSerializationFunction +Xamarin.Google.Crypto.Tink.Internal.ParametersSerializer.IParametersSerializationFunction;com.google.crypto.tink.internal.ParametersSerializer$ParametersSerializationFunction +com.google.crypto.tink.internal.ParametersSerializer$ParametersSerializationFunction;com.google.crypto.tink.internal.ParametersSerializer$ParametersSerializationFunction +Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructor+IPrimitiveConstructionFunction, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.PrimitiveConstructor$PrimitiveConstructionFunction +Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructor.IPrimitiveConstructionFunction;com.google.crypto.tink.internal.PrimitiveConstructor$PrimitiveConstructionFunction +com.google.crypto.tink.internal.PrimitiveConstructor$PrimitiveConstructionFunction;com.google.crypto.tink.internal.PrimitiveConstructor$PrimitiveConstructionFunction +Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingRunnable, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.TinkBugException$ThrowingRunnable +Xamarin.Google.Crypto.Tink.Internal.TinkBugException.IThrowingRunnable;com.google.crypto.tink.internal.TinkBugException$ThrowingRunnable +com.google.crypto.tink.internal.TinkBugException$ThrowingRunnable;com.google.crypto.tink.internal.TinkBugException$ThrowingRunnable +Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingSupplier, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.internal.TinkBugException$ThrowingSupplier +Xamarin.Google.Crypto.Tink.Internal.TinkBugException.IThrowingSupplier;com.google.crypto.tink.internal.TinkBugException$ThrowingSupplier +com.google.crypto.tink.internal.TinkBugException$ThrowingSupplier;com.google.crypto.tink.internal.TinkBugException$ThrowingSupplier +Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesDemHelper+IDem, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.hybrid.internal.EciesDemHelper$Dem +Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesDemHelper.IDem;com.google.crypto.tink.hybrid.internal.EciesDemHelper$Dem +com.google.crypto.tink.hybrid.internal.EciesDemHelper$Dem;com.google.crypto.tink.hybrid.internal.EciesDemHelper$Dem +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeAead, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.hybrid.internal.HpkeAead +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeAead;com.google.crypto.tink.hybrid.internal.HpkeAead +com.google.crypto.tink.hybrid.internal.HpkeAead;com.google.crypto.tink.hybrid.internal.HpkeAead +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKdf, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.hybrid.internal.HpkeKdf +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKdf;com.google.crypto.tink.hybrid.internal.HpkeKdf +com.google.crypto.tink.hybrid.internal.HpkeKdf;com.google.crypto.tink.hybrid.internal.HpkeKdf +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKem, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.hybrid.internal.HpkeKem +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKem;com.google.crypto.tink.hybrid.internal.HpkeKem +com.google.crypto.tink.hybrid.internal.HpkeKem;com.google.crypto.tink.hybrid.internal.HpkeKem +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IX25519, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.hybrid.internal.X25519 +Xamarin.Google.Crypto.Tink.Hybrid.Internal.IX25519;com.google.crypto.tink.hybrid.internal.X25519 +com.google.crypto.tink.hybrid.internal.X25519;com.google.crypto.tink.hybrid.internal.X25519 +Xamarin.Google.Crypto.Tink.Annotations.IAlpha, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.annotations.Alpha +Xamarin.Google.Crypto.Tink.Annotations.IAlpha;com.google.crypto.tink.annotations.Alpha +com.google.crypto.tink.annotations.Alpha;com.google.crypto.tink.annotations.Alpha +Xamarin.Google.Crypto.Tink.Aead.Subtle.IAeadFactory, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.aead.subtle.AeadFactory +Xamarin.Google.Crypto.Tink.Aead.Subtle.IAeadFactory;com.google.crypto.tink.aead.subtle.AeadFactory +com.google.crypto.tink.aead.subtle.AeadFactory;com.google.crypto.tink.aead.subtle.AeadFactory +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+MapAdapter+IConverter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$MapAdapter$Converter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.MapAdapter.IConverter;com.google.crypto.tink.shaded.protobuf.Internal$MapAdapter$Converter +com.google.crypto.tink.shaded.protobuf.Internal$MapAdapter$Converter;com.google.crypto.tink.shaded.protobuf.Internal$MapAdapter$Converter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IBooleanList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$BooleanList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IBooleanList;com.google.crypto.tink.shaded.protobuf.Internal$BooleanList +com.google.crypto.tink.shaded.protobuf.Internal$BooleanList;com.google.crypto.tink.shaded.protobuf.Internal$BooleanList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IDoubleList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$DoubleList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IDoubleList;com.google.crypto.tink.shaded.protobuf.Internal$DoubleList +com.google.crypto.tink.shaded.protobuf.Internal$DoubleList;com.google.crypto.tink.shaded.protobuf.Internal$DoubleList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLite, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$EnumLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IEnumLite;com.google.crypto.tink.shaded.protobuf.Internal$EnumLite +com.google.crypto.tink.shaded.protobuf.Internal$EnumLite;com.google.crypto.tink.shaded.protobuf.Internal$EnumLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLiteMap, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$EnumLiteMap +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IEnumLiteMap;com.google.crypto.tink.shaded.protobuf.Internal$EnumLiteMap +com.google.crypto.tink.shaded.protobuf.Internal$EnumLiteMap;com.google.crypto.tink.shaded.protobuf.Internal$EnumLiteMap +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumVerifier, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$EnumVerifier +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IEnumVerifier;com.google.crypto.tink.shaded.protobuf.Internal$EnumVerifier +com.google.crypto.tink.shaded.protobuf.Internal$EnumVerifier;com.google.crypto.tink.shaded.protobuf.Internal$EnumVerifier +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IFloatList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$FloatList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IFloatList;com.google.crypto.tink.shaded.protobuf.Internal$FloatList +com.google.crypto.tink.shaded.protobuf.Internal$FloatList;com.google.crypto.tink.shaded.protobuf.Internal$FloatList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IIntList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$IntList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IIntList;com.google.crypto.tink.shaded.protobuf.Internal$IntList +com.google.crypto.tink.shaded.protobuf.Internal$IntList;com.google.crypto.tink.shaded.protobuf.Internal$IntList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IntListAdapter+IIntConverter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$IntListAdapter$IntConverter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IntListAdapter.IIntConverter;com.google.crypto.tink.shaded.protobuf.Internal$IntListAdapter$IntConverter +com.google.crypto.tink.shaded.protobuf.Internal$IntListAdapter$IntConverter;com.google.crypto.tink.shaded.protobuf.Internal$IntListAdapter$IntConverter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ListAdapter+IConverter, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$ListAdapter$Converter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.ListAdapter.IConverter;com.google.crypto.tink.shaded.protobuf.Internal$ListAdapter$Converter +com.google.crypto.tink.shaded.protobuf.Internal$ListAdapter$Converter;com.google.crypto.tink.shaded.protobuf.Internal$ListAdapter$Converter +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ILongList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$LongList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.ILongList;com.google.crypto.tink.shaded.protobuf.Internal$LongList +com.google.crypto.tink.shaded.protobuf.Internal$LongList;com.google.crypto.tink.shaded.protobuf.Internal$LongList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IProtobufList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Internal$ProtobufList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal.IProtobufList;com.google.crypto.tink.shaded.protobuf.Internal$ProtobufList +com.google.crypto.tink.shaded.protobuf.Internal$ProtobufList;com.google.crypto.tink.shaded.protobuf.Internal$ProtobufList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+IInternalOneOfEnum, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.AbstractMessageLite$InternalOneOfEnum +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite.IInternalOneOfEnum;com.google.crypto.tink.shaded.protobuf.AbstractMessageLite$InternalOneOfEnum +com.google.crypto.tink.shaded.protobuf.AbstractMessageLite$InternalOneOfEnum;com.google.crypto.tink.shaded.protobuf.AbstractMessageLite$InternalOneOfEnum +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString+IByteIterator, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ByteString$ByteIterator +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString.IByteIterator;com.google.crypto.tink.shaded.protobuf.ByteString$ByteIterator +com.google.crypto.tink.shaded.protobuf.ByteString$ByteIterator;com.google.crypto.tink.shaded.protobuf.ByteString$ByteIterator +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IExtensionRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ExtensionRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.DescriptorProto.IExtensionRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ExtensionRangeOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ExtensionRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ExtensionRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IReservedRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ReservedRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.DescriptorProto.IReservedRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ReservedRangeOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ReservedRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProto$ReservedRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$DescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+IEnumReservedRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProto$EnumReservedRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.EnumDescriptorProto.IEnumReservedRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProto$EnumReservedRangeOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProto$EnumReservedRangeOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProto$EnumReservedRangeOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IEnumDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IEnumOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IEnumValueDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IEnumValueOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$EnumValueOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+IDeclarationOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptions$DeclarationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.ExtensionRangeOptions.IDeclarationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptions$DeclarationOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptions$DeclarationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptions$DeclarationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IExtensionRangeOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IExtensionRangeOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ExtensionRangeOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+IFeatureSetEditionDefaultOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefaultOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.FeatureSetDefaults.IFeatureSetEditionDefaultOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefaultOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefaultOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefaultOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetDefaultsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaultsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFeatureSetDefaultsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaultsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaultsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetDefaultsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFeatureSetOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FeatureSetOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFieldDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IEditionDefaultOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$EditionDefaultOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.FieldOptions.IEditionDefaultOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$EditionDefaultOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$EditionDefaultOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$EditionDefaultOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IFeatureSupportOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$FeatureSupportOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.FieldOptions.IFeatureSupportOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$FeatureSupportOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$FeatureSupportOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptions$FeatureSupportOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFieldOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FieldOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFileDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorSetOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorSetOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFileDescriptorSetOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorSetOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorSetOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileDescriptorSetOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IFileOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$FileOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+IAnnotationOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfo$AnnotationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.GeneratedCodeInfo.IAnnotationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfo$AnnotationOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfo$AnnotationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfo$AnnotationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IGeneratedCodeInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IGeneratedCodeInfoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$GeneratedCodeInfoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMessageOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MessageOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IMessageOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MessageOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MessageOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MessageOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IMethodDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IMethodOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$MethodOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IOneofDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IOneofOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$OneofOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IServiceDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceDescriptorProtoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceDescriptorProtoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceDescriptorProtoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IServiceOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceOptionsOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceOptionsOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$ServiceOptionsOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+ILocationOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfo$LocationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.SourceCodeInfo.ILocationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfo$LocationOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfo$LocationOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfo$LocationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ISourceCodeInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.ISourceCodeInfoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfoOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfoOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$SourceCodeInfoOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+INamePartOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOption$NamePartOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.UninterpretedOption.INamePartOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOption$NamePartOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOption$NamePartOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOption$NamePartOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IUninterpretedOptionOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOptionOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos.IUninterpretedOptionOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOptionOrBuilder +com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOptionOrBuilder;com.google.crypto.tink.shaded.protobuf.DescriptorProtos$UninterpretedOptionOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldSet+IFieldDescriptorLite, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.FieldSet$FieldDescriptorLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldSet.IFieldDescriptorLite;com.google.crypto.tink.shaded.protobuf.FieldSet$FieldDescriptorLite +com.google.crypto.tink.shaded.protobuf.FieldSet$FieldDescriptorLite;com.google.crypto.tink.shaded.protobuf.FieldSet$FieldDescriptorLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+IExtendableMessageOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.GeneratedMessageLite$ExtendableMessageOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite.IExtendableMessageOrBuilder;com.google.crypto.tink.shaded.protobuf.GeneratedMessageLite$ExtendableMessageOrBuilder +com.google.crypto.tink.shaded.protobuf.GeneratedMessageLite$ExtendableMessageOrBuilder;com.google.crypto.tink.shaded.protobuf.GeneratedMessageLite$ExtendableMessageOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IAnyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.AnyOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IAnyOrBuilder;com.google.crypto.tink.shaded.protobuf.AnyOrBuilder +com.google.crypto.tink.shaded.protobuf.AnyOrBuilder;com.google.crypto.tink.shaded.protobuf.AnyOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IApiOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ApiOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IApiOrBuilder;com.google.crypto.tink.shaded.protobuf.ApiOrBuilder +com.google.crypto.tink.shaded.protobuf.ApiOrBuilder;com.google.crypto.tink.shaded.protobuf.ApiOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBoolValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.BoolValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBoolValueOrBuilder;com.google.crypto.tink.shaded.protobuf.BoolValueOrBuilder +com.google.crypto.tink.shaded.protobuf.BoolValueOrBuilder;com.google.crypto.tink.shaded.protobuf.BoolValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBytesValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.BytesValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBytesValueOrBuilder;com.google.crypto.tink.shaded.protobuf.BytesValueOrBuilder +com.google.crypto.tink.shaded.protobuf.BytesValueOrBuilder;com.google.crypto.tink.shaded.protobuf.BytesValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDoubleValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DoubleValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDoubleValueOrBuilder;com.google.crypto.tink.shaded.protobuf.DoubleValueOrBuilder +com.google.crypto.tink.shaded.protobuf.DoubleValueOrBuilder;com.google.crypto.tink.shaded.protobuf.DoubleValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDurationOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.DurationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDurationOrBuilder;com.google.crypto.tink.shaded.protobuf.DurationOrBuilder +com.google.crypto.tink.shaded.protobuf.DurationOrBuilder;com.google.crypto.tink.shaded.protobuf.DurationOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEmptyOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.EmptyOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEmptyOrBuilder;com.google.crypto.tink.shaded.protobuf.EmptyOrBuilder +com.google.crypto.tink.shaded.protobuf.EmptyOrBuilder;com.google.crypto.tink.shaded.protobuf.EmptyOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.EnumOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumOrBuilder;com.google.crypto.tink.shaded.protobuf.EnumOrBuilder +com.google.crypto.tink.shaded.protobuf.EnumOrBuilder;com.google.crypto.tink.shaded.protobuf.EnumOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.EnumValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumValueOrBuilder;com.google.crypto.tink.shaded.protobuf.EnumValueOrBuilder +com.google.crypto.tink.shaded.protobuf.EnumValueOrBuilder;com.google.crypto.tink.shaded.protobuf.EnumValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IExperimentalApi, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ExperimentalApi +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IExperimentalApi;com.google.crypto.tink.shaded.protobuf.ExperimentalApi +com.google.crypto.tink.shaded.protobuf.ExperimentalApi;com.google.crypto.tink.shaded.protobuf.ExperimentalApi +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFieldMaskOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.FieldMaskOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFieldMaskOrBuilder;com.google.crypto.tink.shaded.protobuf.FieldMaskOrBuilder +com.google.crypto.tink.shaded.protobuf.FieldMaskOrBuilder;com.google.crypto.tink.shaded.protobuf.FieldMaskOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFloatValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.FloatValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFloatValueOrBuilder;com.google.crypto.tink.shaded.protobuf.FloatValueOrBuilder +com.google.crypto.tink.shaded.protobuf.FloatValueOrBuilder;com.google.crypto.tink.shaded.protobuf.FloatValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt32ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Int32ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt32ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.Int32ValueOrBuilder +com.google.crypto.tink.shaded.protobuf.Int32ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.Int32ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt64ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Int64ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt64ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.Int64ValueOrBuilder +com.google.crypto.tink.shaded.protobuf.Int64ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.Int64ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ILazyStringList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.LazyStringList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ILazyStringList;com.google.crypto.tink.shaded.protobuf.LazyStringList +com.google.crypto.tink.shaded.protobuf.LazyStringList;com.google.crypto.tink.shaded.protobuf.LazyStringList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IListValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ListValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IListValueOrBuilder;com.google.crypto.tink.shaded.protobuf.ListValueOrBuilder +com.google.crypto.tink.shaded.protobuf.ListValueOrBuilder;com.google.crypto.tink.shaded.protobuf.ListValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.MessageLite$Builder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteBuilder;com.google.crypto.tink.shaded.protobuf.MessageLite$Builder +com.google.crypto.tink.shaded.protobuf.MessageLite$Builder;com.google.crypto.tink.shaded.protobuf.MessageLite$Builder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLite, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.MessageLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLite;com.google.crypto.tink.shaded.protobuf.MessageLite +com.google.crypto.tink.shaded.protobuf.MessageLite;com.google.crypto.tink.shaded.protobuf.MessageLite +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.MessageLiteOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteOrBuilder;com.google.crypto.tink.shaded.protobuf.MessageLiteOrBuilder +com.google.crypto.tink.shaded.protobuf.MessageLiteOrBuilder;com.google.crypto.tink.shaded.protobuf.MessageLiteOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMethodOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.MethodOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMethodOrBuilder;com.google.crypto.tink.shaded.protobuf.MethodOrBuilder +com.google.crypto.tink.shaded.protobuf.MethodOrBuilder;com.google.crypto.tink.shaded.protobuf.MethodOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMixinOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.MixinOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMixinOrBuilder;com.google.crypto.tink.shaded.protobuf.MixinOrBuilder +com.google.crypto.tink.shaded.protobuf.MixinOrBuilder;com.google.crypto.tink.shaded.protobuf.MixinOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IOptionOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.OptionOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IOptionOrBuilder;com.google.crypto.tink.shaded.protobuf.OptionOrBuilder +com.google.crypto.tink.shaded.protobuf.OptionOrBuilder;com.google.crypto.tink.shaded.protobuf.OptionOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IParser, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.Parser +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IParser;com.google.crypto.tink.shaded.protobuf.Parser +com.google.crypto.tink.shaded.protobuf.Parser;com.google.crypto.tink.shaded.protobuf.Parser +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IProtocolStringList, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ProtocolStringList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IProtocolStringList;com.google.crypto.tink.shaded.protobuf.ProtocolStringList +com.google.crypto.tink.shaded.protobuf.ProtocolStringList;com.google.crypto.tink.shaded.protobuf.ProtocolStringList +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ISourceContextOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.SourceContextOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ISourceContextOrBuilder;com.google.crypto.tink.shaded.protobuf.SourceContextOrBuilder +com.google.crypto.tink.shaded.protobuf.SourceContextOrBuilder;com.google.crypto.tink.shaded.protobuf.SourceContextOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStringValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.StringValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStringValueOrBuilder;com.google.crypto.tink.shaded.protobuf.StringValueOrBuilder +com.google.crypto.tink.shaded.protobuf.StringValueOrBuilder;com.google.crypto.tink.shaded.protobuf.StringValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStructOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.StructOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStructOrBuilder;com.google.crypto.tink.shaded.protobuf.StructOrBuilder +com.google.crypto.tink.shaded.protobuf.StructOrBuilder;com.google.crypto.tink.shaded.protobuf.StructOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ITimestampOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.TimestampOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ITimestampOrBuilder;com.google.crypto.tink.shaded.protobuf.TimestampOrBuilder +com.google.crypto.tink.shaded.protobuf.TimestampOrBuilder;com.google.crypto.tink.shaded.protobuf.TimestampOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt32ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.UInt32ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt32ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.UInt32ValueOrBuilder +com.google.crypto.tink.shaded.protobuf.UInt32ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.UInt32ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt64ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.UInt64ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt64ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.UInt64ValueOrBuilder +com.google.crypto.tink.shaded.protobuf.UInt64ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.UInt64ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IValueOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IValueOrBuilder;com.google.crypto.tink.shaded.protobuf.ValueOrBuilder +com.google.crypto.tink.shaded.protobuf.ValueOrBuilder;com.google.crypto.tink.shaded.protobuf.ValueOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+IJavaFeaturesOrBuilder, Xamarin.Google.Crypto.Tink.Android;com.google.crypto.tink.shaded.protobuf.JavaFeaturesProto$JavaFeaturesOrBuilder +Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto.IJavaFeaturesOrBuilder;com.google.crypto.tink.shaded.protobuf.JavaFeaturesProto$JavaFeaturesOrBuilder +com.google.crypto.tink.shaded.protobuf.JavaFeaturesProto$JavaFeaturesOrBuilder;com.google.crypto.tink.shaded.protobuf.JavaFeaturesProto$JavaFeaturesOrBuilder +Xamarin.Google.ErrorProne.Annotations.ICanIgnoreReturnValue, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.CanIgnoreReturnValue +Xamarin.Google.ErrorProne.Annotations.ICanIgnoreReturnValue;com.google.errorprone.annotations.CanIgnoreReturnValue +com.google.errorprone.annotations.CanIgnoreReturnValue;com.google.errorprone.annotations.CanIgnoreReturnValue +Xamarin.Google.ErrorProne.Annotations.ICheckReturnValue, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.CheckReturnValue +Xamarin.Google.ErrorProne.Annotations.ICheckReturnValue;com.google.errorprone.annotations.CheckReturnValue +com.google.errorprone.annotations.CheckReturnValue;com.google.errorprone.annotations.CheckReturnValue +Xamarin.Google.ErrorProne.Annotations.ICompatibleWith, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.CompatibleWith +Xamarin.Google.ErrorProne.Annotations.ICompatibleWith;com.google.errorprone.annotations.CompatibleWith +com.google.errorprone.annotations.CompatibleWith;com.google.errorprone.annotations.CompatibleWith +Xamarin.Google.ErrorProne.Annotations.ICompileTimeConstant, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.CompileTimeConstant +Xamarin.Google.ErrorProne.Annotations.ICompileTimeConstant;com.google.errorprone.annotations.CompileTimeConstant +com.google.errorprone.annotations.CompileTimeConstant;com.google.errorprone.annotations.CompileTimeConstant +Xamarin.Google.ErrorProne.Annotations.IDoNotCall, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.DoNotCall +Xamarin.Google.ErrorProne.Annotations.IDoNotCall;com.google.errorprone.annotations.DoNotCall +com.google.errorprone.annotations.DoNotCall;com.google.errorprone.annotations.DoNotCall +Xamarin.Google.ErrorProne.Annotations.IDoNotMock, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.DoNotMock +Xamarin.Google.ErrorProne.Annotations.IDoNotMock;com.google.errorprone.annotations.DoNotMock +com.google.errorprone.annotations.DoNotMock;com.google.errorprone.annotations.DoNotMock +Xamarin.Google.ErrorProne.Annotations.IFormatMethod, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.FormatMethod +Xamarin.Google.ErrorProne.Annotations.IFormatMethod;com.google.errorprone.annotations.FormatMethod +com.google.errorprone.annotations.FormatMethod;com.google.errorprone.annotations.FormatMethod +Xamarin.Google.ErrorProne.Annotations.IFormatString, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.FormatString +Xamarin.Google.ErrorProne.Annotations.IFormatString;com.google.errorprone.annotations.FormatString +com.google.errorprone.annotations.FormatString;com.google.errorprone.annotations.FormatString +Xamarin.Google.ErrorProne.Annotations.IForOverride, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.ForOverride +Xamarin.Google.ErrorProne.Annotations.IForOverride;com.google.errorprone.annotations.ForOverride +com.google.errorprone.annotations.ForOverride;com.google.errorprone.annotations.ForOverride +Xamarin.Google.ErrorProne.Annotations.IImmutable, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.Immutable +Xamarin.Google.ErrorProne.Annotations.IImmutable;com.google.errorprone.annotations.Immutable +com.google.errorprone.annotations.Immutable;com.google.errorprone.annotations.Immutable +Xamarin.Google.ErrorProne.Annotations.IImmutableTypeParameter, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.ImmutableTypeParameter +Xamarin.Google.ErrorProne.Annotations.IImmutableTypeParameter;com.google.errorprone.annotations.ImmutableTypeParameter +com.google.errorprone.annotations.ImmutableTypeParameter;com.google.errorprone.annotations.ImmutableTypeParameter +Xamarin.Google.ErrorProne.Annotations.IIncompatibleModifiers, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.IncompatibleModifiers +Xamarin.Google.ErrorProne.Annotations.IIncompatibleModifiers;com.google.errorprone.annotations.IncompatibleModifiers +com.google.errorprone.annotations.IncompatibleModifiers;com.google.errorprone.annotations.IncompatibleModifiers +Xamarin.Google.ErrorProne.Annotations.IInlineMe, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.InlineMe +Xamarin.Google.ErrorProne.Annotations.IInlineMe;com.google.errorprone.annotations.InlineMe +com.google.errorprone.annotations.InlineMe;com.google.errorprone.annotations.InlineMe +Xamarin.Google.ErrorProne.Annotations.IInlineMeValidationDisabled, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.InlineMeValidationDisabled +Xamarin.Google.ErrorProne.Annotations.IInlineMeValidationDisabled;com.google.errorprone.annotations.InlineMeValidationDisabled +com.google.errorprone.annotations.InlineMeValidationDisabled;com.google.errorprone.annotations.InlineMeValidationDisabled +Xamarin.Google.ErrorProne.Annotations.IKeep, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.Keep +Xamarin.Google.ErrorProne.Annotations.IKeep;com.google.errorprone.annotations.Keep +com.google.errorprone.annotations.Keep;com.google.errorprone.annotations.Keep +Xamarin.Google.ErrorProne.Annotations.IMustBeClosed, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.MustBeClosed +Xamarin.Google.ErrorProne.Annotations.IMustBeClosed;com.google.errorprone.annotations.MustBeClosed +com.google.errorprone.annotations.MustBeClosed;com.google.errorprone.annotations.MustBeClosed +Xamarin.Google.ErrorProne.Annotations.INoAllocation, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.NoAllocation +Xamarin.Google.ErrorProne.Annotations.INoAllocation;com.google.errorprone.annotations.NoAllocation +com.google.errorprone.annotations.NoAllocation;com.google.errorprone.annotations.NoAllocation +Xamarin.Google.ErrorProne.Annotations.IOverridingMethodsMustInvokeSuper, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.OverridingMethodsMustInvokeSuper +Xamarin.Google.ErrorProne.Annotations.IOverridingMethodsMustInvokeSuper;com.google.errorprone.annotations.OverridingMethodsMustInvokeSuper +com.google.errorprone.annotations.OverridingMethodsMustInvokeSuper;com.google.errorprone.annotations.OverridingMethodsMustInvokeSuper +Xamarin.Google.ErrorProne.Annotations.IRequiredModifiers, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.RequiredModifiers +Xamarin.Google.ErrorProne.Annotations.IRequiredModifiers;com.google.errorprone.annotations.RequiredModifiers +com.google.errorprone.annotations.RequiredModifiers;com.google.errorprone.annotations.RequiredModifiers +Xamarin.Google.ErrorProne.Annotations.IRestrictedApi, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.RestrictedApi +Xamarin.Google.ErrorProne.Annotations.IRestrictedApi;com.google.errorprone.annotations.RestrictedApi +com.google.errorprone.annotations.RestrictedApi;com.google.errorprone.annotations.RestrictedApi +Xamarin.Google.ErrorProne.Annotations.ISuppressPackageLocation, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.SuppressPackageLocation +Xamarin.Google.ErrorProne.Annotations.ISuppressPackageLocation;com.google.errorprone.annotations.SuppressPackageLocation +com.google.errorprone.annotations.SuppressPackageLocation;com.google.errorprone.annotations.SuppressPackageLocation +Xamarin.Google.ErrorProne.Annotations.IThreadSafe, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.ThreadSafe +Xamarin.Google.ErrorProne.Annotations.IThreadSafe;com.google.errorprone.annotations.ThreadSafe +com.google.errorprone.annotations.ThreadSafe;com.google.errorprone.annotations.ThreadSafe +Xamarin.Google.ErrorProne.Annotations.IThreadSafeTypeParameter, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.ThreadSafeTypeParameter +Xamarin.Google.ErrorProne.Annotations.IThreadSafeTypeParameter;com.google.errorprone.annotations.ThreadSafeTypeParameter +com.google.errorprone.annotations.ThreadSafeTypeParameter;com.google.errorprone.annotations.ThreadSafeTypeParameter +Xamarin.Google.ErrorProne.Annotations.IVar, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.Var +Xamarin.Google.ErrorProne.Annotations.IVar;com.google.errorprone.annotations.Var +com.google.errorprone.annotations.Var;com.google.errorprone.annotations.Var +Xamarin.Google.ErrorProne.Annotations.Concurrent.IGuardedBy, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.concurrent.GuardedBy +Xamarin.Google.ErrorProne.Annotations.Concurrent.IGuardedBy;com.google.errorprone.annotations.concurrent.GuardedBy +com.google.errorprone.annotations.concurrent.GuardedBy;com.google.errorprone.annotations.concurrent.GuardedBy +Xamarin.Google.ErrorProne.Annotations.Concurrent.ILazyInit, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.concurrent.LazyInit +Xamarin.Google.ErrorProne.Annotations.Concurrent.ILazyInit;com.google.errorprone.annotations.concurrent.LazyInit +com.google.errorprone.annotations.concurrent.LazyInit;com.google.errorprone.annotations.concurrent.LazyInit +Xamarin.Google.ErrorProne.Annotations.Concurrent.ILockMethod, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.concurrent.LockMethod +Xamarin.Google.ErrorProne.Annotations.Concurrent.ILockMethod;com.google.errorprone.annotations.concurrent.LockMethod +com.google.errorprone.annotations.concurrent.LockMethod;com.google.errorprone.annotations.concurrent.LockMethod +Xamarin.Google.ErrorProne.Annotations.Concurrent.IUnlockMethod, Xamarin.Google.ErrorProne.Annotations;com.google.errorprone.annotations.concurrent.UnlockMethod +Xamarin.Google.ErrorProne.Annotations.Concurrent.IUnlockMethod;com.google.errorprone.annotations.concurrent.UnlockMethod +com.google.errorprone.annotations.concurrent.UnlockMethod;com.google.errorprone.annotations.concurrent.UnlockMethod +Google.Common.Util.Concurrent.IListenableFuture, Xamarin.Google.Guava.ListenableFuture;com.google.common.util.concurrent.ListenableFuture +Google.Common.Util.Concurrent.IListenableFuture;com.google.common.util.concurrent.ListenableFuture +com.google.common.util.concurrent.ListenableFuture;com.google.common.util.concurrent.ListenableFuture +JetBrains.Annotations.ApiStatus+IAvailableSince, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$AvailableSince +JetBrains.Annotations.ApiStatus.IAvailableSince;org.jetbrains.annotations.ApiStatus$AvailableSince +org.jetbrains.annotations.ApiStatus$AvailableSince;org.jetbrains.annotations.ApiStatus$AvailableSince +JetBrains.Annotations.ApiStatus+IExperimental, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$Experimental +JetBrains.Annotations.ApiStatus.IExperimental;org.jetbrains.annotations.ApiStatus$Experimental +org.jetbrains.annotations.ApiStatus$Experimental;org.jetbrains.annotations.ApiStatus$Experimental +JetBrains.Annotations.ApiStatus+IInternal, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$Internal +JetBrains.Annotations.ApiStatus.IInternal;org.jetbrains.annotations.ApiStatus$Internal +org.jetbrains.annotations.ApiStatus$Internal;org.jetbrains.annotations.ApiStatus$Internal +JetBrains.Annotations.ApiStatus+INonExtendable, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$NonExtendable +JetBrains.Annotations.ApiStatus.INonExtendable;org.jetbrains.annotations.ApiStatus$NonExtendable +org.jetbrains.annotations.ApiStatus$NonExtendable;org.jetbrains.annotations.ApiStatus$NonExtendable +JetBrains.Annotations.ApiStatus+IObsolete, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$Obsolete +JetBrains.Annotations.ApiStatus.IObsolete;org.jetbrains.annotations.ApiStatus$Obsolete +org.jetbrains.annotations.ApiStatus$Obsolete;org.jetbrains.annotations.ApiStatus$Obsolete +JetBrains.Annotations.ApiStatus+IOverrideOnly, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$OverrideOnly +JetBrains.Annotations.ApiStatus.IOverrideOnly;org.jetbrains.annotations.ApiStatus$OverrideOnly +org.jetbrains.annotations.ApiStatus$OverrideOnly;org.jetbrains.annotations.ApiStatus$OverrideOnly +JetBrains.Annotations.ApiStatus+IScheduledForRemoval, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.ApiStatus$ScheduledForRemoval +JetBrains.Annotations.ApiStatus.IScheduledForRemoval;org.jetbrains.annotations.ApiStatus$ScheduledForRemoval +org.jetbrains.annotations.ApiStatus$ScheduledForRemoval;org.jetbrains.annotations.ApiStatus$ScheduledForRemoval +JetBrains.Annotations.Async+IExecute, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Async$Execute +JetBrains.Annotations.Async.IExecute;org.jetbrains.annotations.Async$Execute +org.jetbrains.annotations.Async$Execute;org.jetbrains.annotations.Async$Execute +JetBrains.Annotations.Async+ISchedule, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Async$Schedule +JetBrains.Annotations.Async.ISchedule;org.jetbrains.annotations.Async$Schedule +org.jetbrains.annotations.Async$Schedule;org.jetbrains.annotations.Async$Schedule +JetBrains.Annotations.Debug+IRenderer, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Debug$Renderer +JetBrains.Annotations.Debug.IRenderer;org.jetbrains.annotations.Debug$Renderer +org.jetbrains.annotations.Debug$Renderer;org.jetbrains.annotations.Debug$Renderer +JetBrains.Annotations.IBlocking, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Blocking +JetBrains.Annotations.IBlocking;org.jetbrains.annotations.Blocking +org.jetbrains.annotations.Blocking;org.jetbrains.annotations.Blocking +JetBrains.Annotations.IBlockingExecutor, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.BlockingExecutor +JetBrains.Annotations.IBlockingExecutor;org.jetbrains.annotations.BlockingExecutor +org.jetbrains.annotations.BlockingExecutor;org.jetbrains.annotations.BlockingExecutor +JetBrains.Annotations.ICheckReturnValue, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.CheckReturnValue +JetBrains.Annotations.ICheckReturnValue;org.jetbrains.annotations.CheckReturnValue +org.jetbrains.annotations.CheckReturnValue;org.jetbrains.annotations.CheckReturnValue +JetBrains.Annotations.IContract, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Contract +JetBrains.Annotations.IContract;org.jetbrains.annotations.Contract +org.jetbrains.annotations.Contract;org.jetbrains.annotations.Contract +JetBrains.Annotations.IMustBeInvokedByOverriders, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.MustBeInvokedByOverriders +JetBrains.Annotations.IMustBeInvokedByOverriders;org.jetbrains.annotations.MustBeInvokedByOverriders +org.jetbrains.annotations.MustBeInvokedByOverriders;org.jetbrains.annotations.MustBeInvokedByOverriders +JetBrains.Annotations.INls, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Nls +JetBrains.Annotations.INls;org.jetbrains.annotations.Nls +org.jetbrains.annotations.Nls;org.jetbrains.annotations.Nls +JetBrains.Annotations.INonBlocking, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.NonBlocking +JetBrains.Annotations.INonBlocking;org.jetbrains.annotations.NonBlocking +org.jetbrains.annotations.NonBlocking;org.jetbrains.annotations.NonBlocking +JetBrains.Annotations.INonBlockingExecutor, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.NonBlockingExecutor +JetBrains.Annotations.INonBlockingExecutor;org.jetbrains.annotations.NonBlockingExecutor +org.jetbrains.annotations.NonBlockingExecutor;org.jetbrains.annotations.NonBlockingExecutor +JetBrains.Annotations.INonNls, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.NonNls +JetBrains.Annotations.INonNls;org.jetbrains.annotations.NonNls +org.jetbrains.annotations.NonNls;org.jetbrains.annotations.NonNls +JetBrains.Annotations.INotNull, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.NotNull +JetBrains.Annotations.INotNull;org.jetbrains.annotations.NotNull +org.jetbrains.annotations.NotNull;org.jetbrains.annotations.NotNull +JetBrains.Annotations.INotNullByDefault, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.NotNullByDefault +JetBrains.Annotations.INotNullByDefault;org.jetbrains.annotations.NotNullByDefault +org.jetbrains.annotations.NotNullByDefault;org.jetbrains.annotations.NotNullByDefault +JetBrains.Annotations.INullable, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Nullable +JetBrains.Annotations.INullable;org.jetbrains.annotations.Nullable +org.jetbrains.annotations.Nullable;org.jetbrains.annotations.Nullable +JetBrains.Annotations.IPropertyKey, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.PropertyKey +JetBrains.Annotations.IPropertyKey;org.jetbrains.annotations.PropertyKey +org.jetbrains.annotations.PropertyKey;org.jetbrains.annotations.PropertyKey +JetBrains.Annotations.IRange, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Range +JetBrains.Annotations.IRange;org.jetbrains.annotations.Range +org.jetbrains.annotations.Range;org.jetbrains.annotations.Range +JetBrains.Annotations.ITestOnly, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.TestOnly +JetBrains.Annotations.ITestOnly;org.jetbrains.annotations.TestOnly +org.jetbrains.annotations.TestOnly;org.jetbrains.annotations.TestOnly +JetBrains.Annotations.IUnknownNullability, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.UnknownNullability +JetBrains.Annotations.IUnknownNullability;org.jetbrains.annotations.UnknownNullability +org.jetbrains.annotations.UnknownNullability;org.jetbrains.annotations.UnknownNullability +JetBrains.Annotations.IUnmodifiable, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.Unmodifiable +JetBrains.Annotations.IUnmodifiable;org.jetbrains.annotations.Unmodifiable +org.jetbrains.annotations.Unmodifiable;org.jetbrains.annotations.Unmodifiable +JetBrains.Annotations.IUnmodifiableView, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.UnmodifiableView +JetBrains.Annotations.IUnmodifiableView;org.jetbrains.annotations.UnmodifiableView +org.jetbrains.annotations.UnmodifiableView;org.jetbrains.annotations.UnmodifiableView +JetBrains.Annotations.IVisibleForTesting, Xamarin.Jetbrains.Annotations;org.jetbrains.annotations.VisibleForTesting +JetBrains.Annotations.IVisibleForTesting;org.jetbrains.annotations.VisibleForTesting +org.jetbrains.annotations.VisibleForTesting;org.jetbrains.annotations.VisibleForTesting +IntelliJ.Lang.Annotations.IFlow, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.Flow +IntelliJ.Lang.Annotations.IFlow;org.intellij.lang.annotations.Flow +org.intellij.lang.annotations.Flow;org.intellij.lang.annotations.Flow +IntelliJ.Lang.Annotations.IIdentifier, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.Identifier +IntelliJ.Lang.Annotations.IIdentifier;org.intellij.lang.annotations.Identifier +org.intellij.lang.annotations.Identifier;org.intellij.lang.annotations.Identifier +IntelliJ.Lang.Annotations.ILanguage, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.Language +IntelliJ.Lang.Annotations.ILanguage;org.intellij.lang.annotations.Language +org.intellij.lang.annotations.Language;org.intellij.lang.annotations.Language +IntelliJ.Lang.Annotations.IMagicConstant, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.MagicConstant +IntelliJ.Lang.Annotations.IMagicConstant;org.intellij.lang.annotations.MagicConstant +org.intellij.lang.annotations.MagicConstant;org.intellij.lang.annotations.MagicConstant +IntelliJ.Lang.Annotations.IPattern, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.Pattern +IntelliJ.Lang.Annotations.IPattern;org.intellij.lang.annotations.Pattern +org.intellij.lang.annotations.Pattern;org.intellij.lang.annotations.Pattern +IntelliJ.Lang.Annotations.IPrintFormat, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.PrintFormat +IntelliJ.Lang.Annotations.IPrintFormat;org.intellij.lang.annotations.PrintFormat +org.intellij.lang.annotations.PrintFormat;org.intellij.lang.annotations.PrintFormat +IntelliJ.Lang.Annotations.IRegExp, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.RegExp +IntelliJ.Lang.Annotations.IRegExp;org.intellij.lang.annotations.RegExp +org.intellij.lang.annotations.RegExp;org.intellij.lang.annotations.RegExp +IntelliJ.Lang.Annotations.ISubst, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.Subst +IntelliJ.Lang.Annotations.ISubst;org.intellij.lang.annotations.Subst +org.intellij.lang.annotations.Subst;org.intellij.lang.annotations.Subst +IntelliJ.Lang.Annotations.JdkConstants+IAdjustableOrientation, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$AdjustableOrientation +IntelliJ.Lang.Annotations.JdkConstants.IAdjustableOrientation;org.intellij.lang.annotations.JdkConstants$AdjustableOrientation +org.intellij.lang.annotations.JdkConstants$AdjustableOrientation;org.intellij.lang.annotations.JdkConstants$AdjustableOrientation +IntelliJ.Lang.Annotations.JdkConstants+IBoxLayoutAxis, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$BoxLayoutAxis +IntelliJ.Lang.Annotations.JdkConstants.IBoxLayoutAxis;org.intellij.lang.annotations.JdkConstants$BoxLayoutAxis +org.intellij.lang.annotations.JdkConstants$BoxLayoutAxis;org.intellij.lang.annotations.JdkConstants$BoxLayoutAxis +IntelliJ.Lang.Annotations.JdkConstants+ICalendarMonth, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$CalendarMonth +IntelliJ.Lang.Annotations.JdkConstants.ICalendarMonth;org.intellij.lang.annotations.JdkConstants$CalendarMonth +org.intellij.lang.annotations.JdkConstants$CalendarMonth;org.intellij.lang.annotations.JdkConstants$CalendarMonth +IntelliJ.Lang.Annotations.JdkConstants+ICursorType, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$CursorType +IntelliJ.Lang.Annotations.JdkConstants.ICursorType;org.intellij.lang.annotations.JdkConstants$CursorType +org.intellij.lang.annotations.JdkConstants$CursorType;org.intellij.lang.annotations.JdkConstants$CursorType +IntelliJ.Lang.Annotations.JdkConstants+IFlowLayoutAlignment, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$FlowLayoutAlignment +IntelliJ.Lang.Annotations.JdkConstants.IFlowLayoutAlignment;org.intellij.lang.annotations.JdkConstants$FlowLayoutAlignment +org.intellij.lang.annotations.JdkConstants$FlowLayoutAlignment;org.intellij.lang.annotations.JdkConstants$FlowLayoutAlignment +IntelliJ.Lang.Annotations.JdkConstants+IFontStyle, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$FontStyle +IntelliJ.Lang.Annotations.JdkConstants.IFontStyle;org.intellij.lang.annotations.JdkConstants$FontStyle +org.intellij.lang.annotations.JdkConstants$FontStyle;org.intellij.lang.annotations.JdkConstants$FontStyle +IntelliJ.Lang.Annotations.JdkConstants+IHorizontalAlignment, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$HorizontalAlignment +IntelliJ.Lang.Annotations.JdkConstants.IHorizontalAlignment;org.intellij.lang.annotations.JdkConstants$HorizontalAlignment +org.intellij.lang.annotations.JdkConstants$HorizontalAlignment;org.intellij.lang.annotations.JdkConstants$HorizontalAlignment +IntelliJ.Lang.Annotations.JdkConstants+IHorizontalScrollBarPolicy, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$HorizontalScrollBarPolicy +IntelliJ.Lang.Annotations.JdkConstants.IHorizontalScrollBarPolicy;org.intellij.lang.annotations.JdkConstants$HorizontalScrollBarPolicy +org.intellij.lang.annotations.JdkConstants$HorizontalScrollBarPolicy;org.intellij.lang.annotations.JdkConstants$HorizontalScrollBarPolicy +IntelliJ.Lang.Annotations.JdkConstants+IInputEventMask, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$InputEventMask +IntelliJ.Lang.Annotations.JdkConstants.IInputEventMask;org.intellij.lang.annotations.JdkConstants$InputEventMask +org.intellij.lang.annotations.JdkConstants$InputEventMask;org.intellij.lang.annotations.JdkConstants$InputEventMask +IntelliJ.Lang.Annotations.JdkConstants+IListSelectionMode, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$ListSelectionMode +IntelliJ.Lang.Annotations.JdkConstants.IListSelectionMode;org.intellij.lang.annotations.JdkConstants$ListSelectionMode +org.intellij.lang.annotations.JdkConstants$ListSelectionMode;org.intellij.lang.annotations.JdkConstants$ListSelectionMode +IntelliJ.Lang.Annotations.JdkConstants+IPatternFlags, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$PatternFlags +IntelliJ.Lang.Annotations.JdkConstants.IPatternFlags;org.intellij.lang.annotations.JdkConstants$PatternFlags +org.intellij.lang.annotations.JdkConstants$PatternFlags;org.intellij.lang.annotations.JdkConstants$PatternFlags +IntelliJ.Lang.Annotations.JdkConstants+ITabLayoutPolicy, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$TabLayoutPolicy +IntelliJ.Lang.Annotations.JdkConstants.ITabLayoutPolicy;org.intellij.lang.annotations.JdkConstants$TabLayoutPolicy +org.intellij.lang.annotations.JdkConstants$TabLayoutPolicy;org.intellij.lang.annotations.JdkConstants$TabLayoutPolicy +IntelliJ.Lang.Annotations.JdkConstants+ITabPlacement, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$TabPlacement +IntelliJ.Lang.Annotations.JdkConstants.ITabPlacement;org.intellij.lang.annotations.JdkConstants$TabPlacement +org.intellij.lang.annotations.JdkConstants$TabPlacement;org.intellij.lang.annotations.JdkConstants$TabPlacement +IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderJustification, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$TitledBorderJustification +IntelliJ.Lang.Annotations.JdkConstants.ITitledBorderJustification;org.intellij.lang.annotations.JdkConstants$TitledBorderJustification +org.intellij.lang.annotations.JdkConstants$TitledBorderJustification;org.intellij.lang.annotations.JdkConstants$TitledBorderJustification +IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderTitlePosition, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$TitledBorderTitlePosition +IntelliJ.Lang.Annotations.JdkConstants.ITitledBorderTitlePosition;org.intellij.lang.annotations.JdkConstants$TitledBorderTitlePosition +org.intellij.lang.annotations.JdkConstants$TitledBorderTitlePosition;org.intellij.lang.annotations.JdkConstants$TitledBorderTitlePosition +IntelliJ.Lang.Annotations.JdkConstants+ITreeSelectionMode, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$TreeSelectionMode +IntelliJ.Lang.Annotations.JdkConstants.ITreeSelectionMode;org.intellij.lang.annotations.JdkConstants$TreeSelectionMode +org.intellij.lang.annotations.JdkConstants$TreeSelectionMode;org.intellij.lang.annotations.JdkConstants$TreeSelectionMode +IntelliJ.Lang.Annotations.JdkConstants+IVerticalScrollBarPolicy, Xamarin.Jetbrains.Annotations;org.intellij.lang.annotations.JdkConstants$VerticalScrollBarPolicy +IntelliJ.Lang.Annotations.JdkConstants.IVerticalScrollBarPolicy;org.intellij.lang.annotations.JdkConstants$VerticalScrollBarPolicy +org.intellij.lang.annotations.JdkConstants$VerticalScrollBarPolicy;org.intellij.lang.annotations.JdkConstants$VerticalScrollBarPolicy +Xamarin.JSpecify.Annotations.INonNull, Xamarin.JSpecify;org.jspecify.annotations.NonNull +Xamarin.JSpecify.Annotations.INonNull;org.jspecify.annotations.NonNull +org.jspecify.annotations.NonNull;org.jspecify.annotations.NonNull +Xamarin.JSpecify.Annotations.INullable, Xamarin.JSpecify;org.jspecify.annotations.Nullable +Xamarin.JSpecify.Annotations.INullable;org.jspecify.annotations.Nullable +org.jspecify.annotations.Nullable;org.jspecify.annotations.Nullable +Xamarin.JSpecify.Annotations.INullMarked, Xamarin.JSpecify;org.jspecify.annotations.NullMarked +Xamarin.JSpecify.Annotations.INullMarked;org.jspecify.annotations.NullMarked +org.jspecify.annotations.NullMarked;org.jspecify.annotations.NullMarked +Xamarin.JSpecify.Annotations.INullUnmarked, Xamarin.JSpecify;org.jspecify.annotations.NullUnmarked +Xamarin.JSpecify.Annotations.INullUnmarked;org.jspecify.annotations.NullUnmarked +org.jspecify.annotations.NullUnmarked;org.jspecify.annotations.NullUnmarked +Kotlin.IBuilderInference, Xamarin.Kotlin.StdLib;kotlin.BuilderInference +Kotlin.IBuilderInference;kotlin.BuilderInference +kotlin.BuilderInference;kotlin.BuilderInference +Kotlin.IConsistentCopyVisibility, Xamarin.Kotlin.StdLib;kotlin.ConsistentCopyVisibility +Kotlin.IConsistentCopyVisibility;kotlin.ConsistentCopyVisibility +kotlin.ConsistentCopyVisibility;kotlin.ConsistentCopyVisibility +Kotlin.IContextFunctionTypeParams, Xamarin.Kotlin.StdLib;kotlin.ContextFunctionTypeParams +Kotlin.IContextFunctionTypeParams;kotlin.ContextFunctionTypeParams +kotlin.ContextFunctionTypeParams;kotlin.ContextFunctionTypeParams +Kotlin.IDeprecated, Xamarin.Kotlin.StdLib;kotlin.Deprecated +Kotlin.IDeprecated;kotlin.Deprecated +kotlin.Deprecated;kotlin.Deprecated +Kotlin.IDeprecatedSinceKotlin, Xamarin.Kotlin.StdLib;kotlin.DeprecatedSinceKotlin +Kotlin.IDeprecatedSinceKotlin;kotlin.DeprecatedSinceKotlin +kotlin.DeprecatedSinceKotlin;kotlin.DeprecatedSinceKotlin +Kotlin.IDslMarker, Xamarin.Kotlin.StdLib;kotlin.DslMarker +Kotlin.IDslMarker;kotlin.DslMarker +kotlin.DslMarker;kotlin.DslMarker +Kotlin.IExperimentalMultiplatform, Xamarin.Kotlin.StdLib;kotlin.ExperimentalMultiplatform +Kotlin.IExperimentalMultiplatform;kotlin.ExperimentalMultiplatform +kotlin.ExperimentalMultiplatform;kotlin.ExperimentalMultiplatform +Kotlin.IExperimentalStdlibApi, Xamarin.Kotlin.StdLib;kotlin.ExperimentalStdlibApi +Kotlin.IExperimentalStdlibApi;kotlin.ExperimentalStdlibApi +kotlin.ExperimentalStdlibApi;kotlin.ExperimentalStdlibApi +Kotlin.IExperimentalSubclassOptIn, Xamarin.Kotlin.StdLib;kotlin.ExperimentalSubclassOptIn +Kotlin.IExperimentalSubclassOptIn;kotlin.ExperimentalSubclassOptIn +kotlin.ExperimentalSubclassOptIn;kotlin.ExperimentalSubclassOptIn +Kotlin.IExperimentalUnsignedTypes, Xamarin.Kotlin.StdLib;kotlin.ExperimentalUnsignedTypes +Kotlin.IExperimentalUnsignedTypes;kotlin.ExperimentalUnsignedTypes +kotlin.ExperimentalUnsignedTypes;kotlin.ExperimentalUnsignedTypes +Kotlin.IExposedCopyVisibility, Xamarin.Kotlin.StdLib;kotlin.ExposedCopyVisibility +Kotlin.IExposedCopyVisibility;kotlin.ExposedCopyVisibility +kotlin.ExposedCopyVisibility;kotlin.ExposedCopyVisibility +Kotlin.IExtensionFunctionType, Xamarin.Kotlin.StdLib;kotlin.ExtensionFunctionType +Kotlin.IExtensionFunctionType;kotlin.ExtensionFunctionType +kotlin.ExtensionFunctionType;kotlin.ExtensionFunctionType +Kotlin.IFunction, Xamarin.Kotlin.StdLib;kotlin.Function +Kotlin.IFunction;kotlin.Function +kotlin.Function;kotlin.Function +Kotlin.ILazy, Xamarin.Kotlin.StdLib;kotlin.Lazy +Kotlin.ILazy;kotlin.Lazy +kotlin.Lazy;kotlin.Lazy +Kotlin.IMetadata, Xamarin.Kotlin.StdLib;kotlin.Metadata +Kotlin.IMetadata;kotlin.Metadata +kotlin.Metadata;kotlin.Metadata +Kotlin.IOptIn, Xamarin.Kotlin.StdLib;kotlin.OptIn +Kotlin.IOptIn;kotlin.OptIn +kotlin.OptIn;kotlin.OptIn +Kotlin.IOptionalExpectation, Xamarin.Kotlin.StdLib;kotlin.OptionalExpectation +Kotlin.IOptionalExpectation;kotlin.OptionalExpectation +kotlin.OptionalExpectation;kotlin.OptionalExpectation +Kotlin.IOverloadResolutionByLambdaReturnType, Xamarin.Kotlin.StdLib;kotlin.OverloadResolutionByLambdaReturnType +Kotlin.IOverloadResolutionByLambdaReturnType;kotlin.OverloadResolutionByLambdaReturnType +kotlin.OverloadResolutionByLambdaReturnType;kotlin.OverloadResolutionByLambdaReturnType +Kotlin.IParameterName, Xamarin.Kotlin.StdLib;kotlin.ParameterName +Kotlin.IParameterName;kotlin.ParameterName +kotlin.ParameterName;kotlin.ParameterName +Kotlin.IPublishedApi, Xamarin.Kotlin.StdLib;kotlin.PublishedApi +Kotlin.IPublishedApi;kotlin.PublishedApi +kotlin.PublishedApi;kotlin.PublishedApi +Kotlin.IReplaceWith, Xamarin.Kotlin.StdLib;kotlin.ReplaceWith +Kotlin.IReplaceWith;kotlin.ReplaceWith +kotlin.ReplaceWith;kotlin.ReplaceWith +Kotlin.IRequiresOptIn, Xamarin.Kotlin.StdLib;kotlin.RequiresOptIn +Kotlin.IRequiresOptIn;kotlin.RequiresOptIn +kotlin.RequiresOptIn;kotlin.RequiresOptIn +Kotlin.ISinceKotlin, Xamarin.Kotlin.StdLib;kotlin.SinceKotlin +Kotlin.ISinceKotlin;kotlin.SinceKotlin +kotlin.SinceKotlin;kotlin.SinceKotlin +Kotlin.ISubclassOptInRequired, Xamarin.Kotlin.StdLib;kotlin.SubclassOptInRequired +Kotlin.ISubclassOptInRequired;kotlin.SubclassOptInRequired +kotlin.SubclassOptInRequired;kotlin.SubclassOptInRequired +Kotlin.ISuppress, Xamarin.Kotlin.StdLib;kotlin.Suppress +Kotlin.ISuppress;kotlin.Suppress +kotlin.Suppress;kotlin.Suppress +Kotlin.IUnsafeVariance, Xamarin.Kotlin.StdLib;kotlin.UnsafeVariance +Kotlin.IUnsafeVariance;kotlin.UnsafeVariance +kotlin.UnsafeVariance;kotlin.UnsafeVariance +Kotlin.Uuid.IExperimentalUuidApi, Xamarin.Kotlin.StdLib;kotlin.uuid.ExperimentalUuidApi +Kotlin.Uuid.IExperimentalUuidApi;kotlin.uuid.ExperimentalUuidApi +kotlin.uuid.ExperimentalUuidApi;kotlin.uuid.ExperimentalUuidApi +Kotlin.Time.IComparableTimeMark, Xamarin.Kotlin.StdLib;kotlin.time.ComparableTimeMark +Kotlin.Time.IComparableTimeMark;kotlin.time.ComparableTimeMark +kotlin.time.ComparableTimeMark;kotlin.time.ComparableTimeMark +Kotlin.Time.IExperimentalTime, Xamarin.Kotlin.StdLib;kotlin.time.ExperimentalTime +Kotlin.Time.IExperimentalTime;kotlin.time.ExperimentalTime +kotlin.time.ExperimentalTime;kotlin.time.ExperimentalTime +Kotlin.Time.ITimeMark, Xamarin.Kotlin.StdLib;kotlin.time.TimeMark +Kotlin.Time.ITimeMark;kotlin.time.TimeMark +kotlin.time.TimeMark;kotlin.time.TimeMark +Kotlin.Time.ITimeSourceWithComparableMarks, Xamarin.Kotlin.StdLib;kotlin.time.TimeSource$WithComparableMarks +Kotlin.Time.ITimeSourceWithComparableMarks;kotlin.time.TimeSource$WithComparableMarks +kotlin.time.TimeSource$WithComparableMarks;kotlin.time.TimeSource$WithComparableMarks +Kotlin.Time.ITimeSource, Xamarin.Kotlin.StdLib;kotlin.time.TimeSource +Kotlin.Time.ITimeSource;kotlin.time.TimeSource +kotlin.time.TimeSource;kotlin.time.TimeSource +Kotlin.Text.IMatchGroupCollection, Xamarin.Kotlin.StdLib;kotlin.text.MatchGroupCollection +Kotlin.Text.IMatchGroupCollection;kotlin.text.MatchGroupCollection +kotlin.text.MatchGroupCollection;kotlin.text.MatchGroupCollection +Kotlin.Text.IMatchNamedGroupCollection, Xamarin.Kotlin.StdLib;kotlin.text.MatchNamedGroupCollection +Kotlin.Text.IMatchNamedGroupCollection;kotlin.text.MatchNamedGroupCollection +kotlin.text.MatchNamedGroupCollection;kotlin.text.MatchNamedGroupCollection +Kotlin.Text.IMatchResult, Xamarin.Kotlin.StdLib;kotlin.text.MatchResult +Kotlin.Text.IMatchResult;kotlin.text.MatchResult +kotlin.text.MatchResult;kotlin.text.MatchResult +Kotlin.Sequences.ISequence, Xamarin.Kotlin.StdLib;kotlin.sequences.Sequence +Kotlin.Sequences.ISequence;kotlin.sequences.Sequence +kotlin.sequences.Sequence;kotlin.sequences.Sequence +Kotlin.Reflect.IKAnnotatedElement, Xamarin.Kotlin.StdLib;kotlin.reflect.KAnnotatedElement +Kotlin.Reflect.IKAnnotatedElement;kotlin.reflect.KAnnotatedElement +kotlin.reflect.KAnnotatedElement;kotlin.reflect.KAnnotatedElement +Kotlin.Reflect.IKCallable, Xamarin.Kotlin.StdLib;kotlin.reflect.KCallable +Kotlin.Reflect.IKCallable;kotlin.reflect.KCallable +kotlin.reflect.KCallable;kotlin.reflect.KCallable +Kotlin.Reflect.IKClass, Xamarin.Kotlin.StdLib;kotlin.reflect.KClass +Kotlin.Reflect.IKClass;kotlin.reflect.KClass +kotlin.reflect.KClass;kotlin.reflect.KClass +Kotlin.Reflect.IKClassifier, Xamarin.Kotlin.StdLib;kotlin.reflect.KClassifier +Kotlin.Reflect.IKClassifier;kotlin.reflect.KClassifier +kotlin.reflect.KClassifier;kotlin.reflect.KClassifier +Kotlin.Reflect.IKDeclarationContainer, Xamarin.Kotlin.StdLib;kotlin.reflect.KDeclarationContainer +Kotlin.Reflect.IKDeclarationContainer;kotlin.reflect.KDeclarationContainer +kotlin.reflect.KDeclarationContainer;kotlin.reflect.KDeclarationContainer +Kotlin.Reflect.IKFunction, Xamarin.Kotlin.StdLib;kotlin.reflect.KFunction +Kotlin.Reflect.IKFunction;kotlin.reflect.KFunction +kotlin.reflect.KFunction;kotlin.reflect.KFunction +Kotlin.Reflect.IKMutablePropertySetter, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty$Setter +Kotlin.Reflect.IKMutablePropertySetter;kotlin.reflect.KMutableProperty$Setter +kotlin.reflect.KMutableProperty$Setter;kotlin.reflect.KMutableProperty$Setter +Kotlin.Reflect.IKMutableProperty, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty +Kotlin.Reflect.IKMutableProperty;kotlin.reflect.KMutableProperty +kotlin.reflect.KMutableProperty;kotlin.reflect.KMutableProperty +Kotlin.Reflect.IKMutableProperty0Setter, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty0$Setter +Kotlin.Reflect.IKMutableProperty0Setter;kotlin.reflect.KMutableProperty0$Setter +kotlin.reflect.KMutableProperty0$Setter;kotlin.reflect.KMutableProperty0$Setter +Kotlin.Reflect.IKMutableProperty0, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty0 +Kotlin.Reflect.IKMutableProperty0;kotlin.reflect.KMutableProperty0 +kotlin.reflect.KMutableProperty0;kotlin.reflect.KMutableProperty0 +Kotlin.Reflect.IKMutableProperty1Setter, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty1$Setter +Kotlin.Reflect.IKMutableProperty1Setter;kotlin.reflect.KMutableProperty1$Setter +kotlin.reflect.KMutableProperty1$Setter;kotlin.reflect.KMutableProperty1$Setter +Kotlin.Reflect.IKMutableProperty1, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty1 +Kotlin.Reflect.IKMutableProperty1;kotlin.reflect.KMutableProperty1 +kotlin.reflect.KMutableProperty1;kotlin.reflect.KMutableProperty1 +Kotlin.Reflect.IKMutableProperty2Setter, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty2$Setter +Kotlin.Reflect.IKMutableProperty2Setter;kotlin.reflect.KMutableProperty2$Setter +kotlin.reflect.KMutableProperty2$Setter;kotlin.reflect.KMutableProperty2$Setter +Kotlin.Reflect.IKMutableProperty2, Xamarin.Kotlin.StdLib;kotlin.reflect.KMutableProperty2 +Kotlin.Reflect.IKMutableProperty2;kotlin.reflect.KMutableProperty2 +kotlin.reflect.KMutableProperty2;kotlin.reflect.KMutableProperty2 +Kotlin.Reflect.IKParameter, Xamarin.Kotlin.StdLib;kotlin.reflect.KParameter +Kotlin.Reflect.IKParameter;kotlin.reflect.KParameter +kotlin.reflect.KParameter;kotlin.reflect.KParameter +Kotlin.Reflect.IKPropertyAccessor, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty$Accessor +Kotlin.Reflect.IKPropertyAccessor;kotlin.reflect.KProperty$Accessor +kotlin.reflect.KProperty$Accessor;kotlin.reflect.KProperty$Accessor +Kotlin.Reflect.IKPropertyGetter, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty$Getter +Kotlin.Reflect.IKPropertyGetter;kotlin.reflect.KProperty$Getter +kotlin.reflect.KProperty$Getter;kotlin.reflect.KProperty$Getter +Kotlin.Reflect.IKProperty, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty +Kotlin.Reflect.IKProperty;kotlin.reflect.KProperty +kotlin.reflect.KProperty;kotlin.reflect.KProperty +Kotlin.Reflect.IKProperty0Getter, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty0$Getter +Kotlin.Reflect.IKProperty0Getter;kotlin.reflect.KProperty0$Getter +kotlin.reflect.KProperty0$Getter;kotlin.reflect.KProperty0$Getter +Kotlin.Reflect.IKProperty0, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty0 +Kotlin.Reflect.IKProperty0;kotlin.reflect.KProperty0 +kotlin.reflect.KProperty0;kotlin.reflect.KProperty0 +Kotlin.Reflect.IKProperty1Getter, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty1$Getter +Kotlin.Reflect.IKProperty1Getter;kotlin.reflect.KProperty1$Getter +kotlin.reflect.KProperty1$Getter;kotlin.reflect.KProperty1$Getter +Kotlin.Reflect.IKProperty1, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty1 +Kotlin.Reflect.IKProperty1;kotlin.reflect.KProperty1 +kotlin.reflect.KProperty1;kotlin.reflect.KProperty1 +Kotlin.Reflect.IKProperty2Getter, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty2$Getter +Kotlin.Reflect.IKProperty2Getter;kotlin.reflect.KProperty2$Getter +kotlin.reflect.KProperty2$Getter;kotlin.reflect.KProperty2$Getter +Kotlin.Reflect.IKProperty2, Xamarin.Kotlin.StdLib;kotlin.reflect.KProperty2 +Kotlin.Reflect.IKProperty2;kotlin.reflect.KProperty2 +kotlin.reflect.KProperty2;kotlin.reflect.KProperty2 +Kotlin.Reflect.IKType, Xamarin.Kotlin.StdLib;kotlin.reflect.KType +Kotlin.Reflect.IKType;kotlin.reflect.KType +kotlin.reflect.KType;kotlin.reflect.KType +Kotlin.Reflect.IKTypeParameter, Xamarin.Kotlin.StdLib;kotlin.reflect.KTypeParameter +Kotlin.Reflect.IKTypeParameter;kotlin.reflect.KTypeParameter +kotlin.reflect.KTypeParameter;kotlin.reflect.KTypeParameter +Kotlin.Properties.IPropertyDelegateProvider, Xamarin.Kotlin.StdLib;kotlin.properties.PropertyDelegateProvider +Kotlin.Properties.IPropertyDelegateProvider;kotlin.properties.PropertyDelegateProvider +kotlin.properties.PropertyDelegateProvider;kotlin.properties.PropertyDelegateProvider +Kotlin.Properties.IReadOnlyProperty, Xamarin.Kotlin.StdLib;kotlin.properties.ReadOnlyProperty +Kotlin.Properties.IReadOnlyProperty;kotlin.properties.ReadOnlyProperty +kotlin.properties.ReadOnlyProperty;kotlin.properties.ReadOnlyProperty +Kotlin.Properties.IReadWriteProperty, Xamarin.Kotlin.StdLib;kotlin.properties.ReadWriteProperty +Kotlin.Properties.IReadWriteProperty;kotlin.properties.ReadWriteProperty +kotlin.properties.ReadWriteProperty;kotlin.properties.ReadWriteProperty +Kotlin.Jvm.IImplicitlyActualizedByJvmDeclaration, Xamarin.Kotlin.StdLib;kotlin.jvm.ImplicitlyActualizedByJvmDeclaration +Kotlin.Jvm.IImplicitlyActualizedByJvmDeclaration;kotlin.jvm.ImplicitlyActualizedByJvmDeclaration +kotlin.jvm.ImplicitlyActualizedByJvmDeclaration;kotlin.jvm.ImplicitlyActualizedByJvmDeclaration +Kotlin.Jvm.IJvmDefault, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmDefault +Kotlin.Jvm.IJvmDefault;kotlin.jvm.JvmDefault +kotlin.jvm.JvmDefault;kotlin.jvm.JvmDefault +Kotlin.Jvm.IJvmDefaultWithCompatibility, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmDefaultWithCompatibility +Kotlin.Jvm.IJvmDefaultWithCompatibility;kotlin.jvm.JvmDefaultWithCompatibility +kotlin.jvm.JvmDefaultWithCompatibility;kotlin.jvm.JvmDefaultWithCompatibility +Kotlin.Jvm.IJvmDefaultWithoutCompatibility, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmDefaultWithoutCompatibility +Kotlin.Jvm.IJvmDefaultWithoutCompatibility;kotlin.jvm.JvmDefaultWithoutCompatibility +kotlin.jvm.JvmDefaultWithoutCompatibility;kotlin.jvm.JvmDefaultWithoutCompatibility +Kotlin.Jvm.IJvmField, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmField +Kotlin.Jvm.IJvmField;kotlin.jvm.JvmField +kotlin.jvm.JvmField;kotlin.jvm.JvmField +Kotlin.Jvm.IJvmInline, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmInline +Kotlin.Jvm.IJvmInline;kotlin.jvm.JvmInline +kotlin.jvm.JvmInline;kotlin.jvm.JvmInline +Kotlin.Jvm.IJvmMultifileClass, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmMultifileClass +Kotlin.Jvm.IJvmMultifileClass;kotlin.jvm.JvmMultifileClass +kotlin.jvm.JvmMultifileClass;kotlin.jvm.JvmMultifileClass +Kotlin.Jvm.IJvmName, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmName +Kotlin.Jvm.IJvmName;kotlin.jvm.JvmName +kotlin.jvm.JvmName;kotlin.jvm.JvmName +Kotlin.Jvm.IJvmOverloads, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmOverloads +Kotlin.Jvm.IJvmOverloads;kotlin.jvm.JvmOverloads +kotlin.jvm.JvmOverloads;kotlin.jvm.JvmOverloads +Kotlin.Jvm.IJvmRecord, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmRecord +Kotlin.Jvm.IJvmRecord;kotlin.jvm.JvmRecord +kotlin.jvm.JvmRecord;kotlin.jvm.JvmRecord +Kotlin.Jvm.IJvmSerializableLambda, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmSerializableLambda +Kotlin.Jvm.IJvmSerializableLambda;kotlin.jvm.JvmSerializableLambda +kotlin.jvm.JvmSerializableLambda;kotlin.jvm.JvmSerializableLambda +Kotlin.Jvm.IJvmStatic, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmStatic +Kotlin.Jvm.IJvmStatic;kotlin.jvm.JvmStatic +kotlin.jvm.JvmStatic;kotlin.jvm.JvmStatic +Kotlin.Jvm.IJvmSuppressWildcards, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmSuppressWildcards +Kotlin.Jvm.IJvmSuppressWildcards;kotlin.jvm.JvmSuppressWildcards +kotlin.jvm.JvmSuppressWildcards;kotlin.jvm.JvmSuppressWildcards +Kotlin.Jvm.IJvmSynthetic, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmSynthetic +Kotlin.Jvm.IJvmSynthetic;kotlin.jvm.JvmSynthetic +kotlin.jvm.JvmSynthetic;kotlin.jvm.JvmSynthetic +Kotlin.Jvm.IJvmWildcard, Xamarin.Kotlin.StdLib;kotlin.jvm.JvmWildcard +Kotlin.Jvm.IJvmWildcard;kotlin.jvm.JvmWildcard +kotlin.jvm.JvmWildcard;kotlin.jvm.JvmWildcard +Kotlin.Jvm.IPurelyImplements, Xamarin.Kotlin.StdLib;kotlin.jvm.PurelyImplements +Kotlin.Jvm.IPurelyImplements;kotlin.jvm.PurelyImplements +kotlin.jvm.PurelyImplements;kotlin.jvm.PurelyImplements +Kotlin.Jvm.IStrictfp, Xamarin.Kotlin.StdLib;kotlin.jvm.Strictfp +Kotlin.Jvm.IStrictfp;kotlin.jvm.Strictfp +kotlin.jvm.Strictfp;kotlin.jvm.Strictfp +Kotlin.Jvm.ISynchronized, Xamarin.Kotlin.StdLib;kotlin.jvm.Synchronized +Kotlin.Jvm.ISynchronized;kotlin.jvm.Synchronized +kotlin.jvm.Synchronized;kotlin.jvm.Synchronized +Kotlin.Jvm.IThrows, Xamarin.Kotlin.StdLib;kotlin.jvm.Throws +Kotlin.Jvm.IThrows;kotlin.jvm.Throws +kotlin.jvm.Throws;kotlin.jvm.Throws +Kotlin.Jvm.ITransient, Xamarin.Kotlin.StdLib;kotlin.jvm.Transient +Kotlin.Jvm.ITransient;kotlin.jvm.Transient +kotlin.jvm.Transient;kotlin.jvm.Transient +Kotlin.Jvm.IVolatile, Xamarin.Kotlin.StdLib;kotlin.jvm.Volatile +Kotlin.Jvm.IVolatile;kotlin.jvm.Volatile +kotlin.jvm.Volatile;kotlin.jvm.Volatile +Kotlin.Jvm.Internal.IClassBasedDeclarationContainer, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.ClassBasedDeclarationContainer +Kotlin.Jvm.Internal.IClassBasedDeclarationContainer;kotlin.jvm.internal.ClassBasedDeclarationContainer +kotlin.jvm.internal.ClassBasedDeclarationContainer;kotlin.jvm.internal.ClassBasedDeclarationContainer +Kotlin.Jvm.Internal.IFunctionAdapter, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.FunctionAdapter +Kotlin.Jvm.Internal.IFunctionAdapter;kotlin.jvm.internal.FunctionAdapter +kotlin.jvm.internal.FunctionAdapter;kotlin.jvm.internal.FunctionAdapter +Kotlin.Jvm.Internal.IFunctionBase, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.FunctionBase +Kotlin.Jvm.Internal.IFunctionBase;kotlin.jvm.internal.FunctionBase +kotlin.jvm.internal.FunctionBase;kotlin.jvm.internal.FunctionBase +Kotlin.Jvm.Internal.IKTypeBase, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.KTypeBase +Kotlin.Jvm.Internal.IKTypeBase;kotlin.jvm.internal.KTypeBase +kotlin.jvm.internal.KTypeBase;kotlin.jvm.internal.KTypeBase +Kotlin.Jvm.Internal.IRepeatableContainer, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.RepeatableContainer +Kotlin.Jvm.Internal.IRepeatableContainer;kotlin.jvm.internal.RepeatableContainer +kotlin.jvm.internal.RepeatableContainer;kotlin.jvm.internal.RepeatableContainer +Kotlin.Jvm.Internal.ISerializedIr, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.SerializedIr +Kotlin.Jvm.Internal.ISerializedIr;kotlin.jvm.internal.SerializedIr +kotlin.jvm.internal.SerializedIr;kotlin.jvm.internal.SerializedIr +Kotlin.Jvm.Internal.ISourceDebugExtension, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.SourceDebugExtension +Kotlin.Jvm.Internal.ISourceDebugExtension;kotlin.jvm.internal.SourceDebugExtension +kotlin.jvm.internal.SourceDebugExtension;kotlin.jvm.internal.SourceDebugExtension +Kotlin.Jvm.Internal.Markers.IKMappedMarker, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMappedMarker +Kotlin.Jvm.Internal.Markers.IKMappedMarker;kotlin.jvm.internal.markers.KMappedMarker +kotlin.jvm.internal.markers.KMappedMarker;kotlin.jvm.internal.markers.KMappedMarker +Kotlin.Jvm.Internal.Markers.IKMutableCollection, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableCollection +Kotlin.Jvm.Internal.Markers.IKMutableCollection;kotlin.jvm.internal.markers.KMutableCollection +kotlin.jvm.internal.markers.KMutableCollection;kotlin.jvm.internal.markers.KMutableCollection +Kotlin.Jvm.Internal.Markers.IKMutableIterable, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableIterable +Kotlin.Jvm.Internal.Markers.IKMutableIterable;kotlin.jvm.internal.markers.KMutableIterable +kotlin.jvm.internal.markers.KMutableIterable;kotlin.jvm.internal.markers.KMutableIterable +Kotlin.Jvm.Internal.Markers.IKMutableIterator, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableIterator +Kotlin.Jvm.Internal.Markers.IKMutableIterator;kotlin.jvm.internal.markers.KMutableIterator +kotlin.jvm.internal.markers.KMutableIterator;kotlin.jvm.internal.markers.KMutableIterator +Kotlin.Jvm.Internal.Markers.IKMutableList, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableList +Kotlin.Jvm.Internal.Markers.IKMutableList;kotlin.jvm.internal.markers.KMutableList +kotlin.jvm.internal.markers.KMutableList;kotlin.jvm.internal.markers.KMutableList +Kotlin.Jvm.Internal.Markers.IKMutableListIterator, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableListIterator +Kotlin.Jvm.Internal.Markers.IKMutableListIterator;kotlin.jvm.internal.markers.KMutableListIterator +kotlin.jvm.internal.markers.KMutableListIterator;kotlin.jvm.internal.markers.KMutableListIterator +Kotlin.Jvm.Internal.Markers.IKMutableMapEntry, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableMap$Entry +Kotlin.Jvm.Internal.Markers.IKMutableMapEntry;kotlin.jvm.internal.markers.KMutableMap$Entry +kotlin.jvm.internal.markers.KMutableMap$Entry;kotlin.jvm.internal.markers.KMutableMap$Entry +Kotlin.Jvm.Internal.Markers.IKMutableMap, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableMap +Kotlin.Jvm.Internal.Markers.IKMutableMap;kotlin.jvm.internal.markers.KMutableMap +kotlin.jvm.internal.markers.KMutableMap;kotlin.jvm.internal.markers.KMutableMap +Kotlin.Jvm.Internal.Markers.IKMutableSet, Xamarin.Kotlin.StdLib;kotlin.jvm.internal.markers.KMutableSet +Kotlin.Jvm.Internal.Markers.IKMutableSet;kotlin.jvm.internal.markers.KMutableSet +kotlin.jvm.internal.markers.KMutableSet;kotlin.jvm.internal.markers.KMutableSet +Kotlin.Jvm.Functions.IFunction0, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function0 +Kotlin.Jvm.Functions.IFunction0;kotlin.jvm.functions.Function0 +kotlin.jvm.functions.Function0;kotlin.jvm.functions.Function0 +Kotlin.Jvm.Functions.IFunction1, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function1 +Kotlin.Jvm.Functions.IFunction1;kotlin.jvm.functions.Function1 +kotlin.jvm.functions.Function1;kotlin.jvm.functions.Function1 +Kotlin.Jvm.Functions.IFunction10, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function10 +Kotlin.Jvm.Functions.IFunction10;kotlin.jvm.functions.Function10 +kotlin.jvm.functions.Function10;kotlin.jvm.functions.Function10 +Kotlin.Jvm.Functions.IFunction11, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function11 +Kotlin.Jvm.Functions.IFunction11;kotlin.jvm.functions.Function11 +kotlin.jvm.functions.Function11;kotlin.jvm.functions.Function11 +Kotlin.Jvm.Functions.IFunction12, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function12 +Kotlin.Jvm.Functions.IFunction12;kotlin.jvm.functions.Function12 +kotlin.jvm.functions.Function12;kotlin.jvm.functions.Function12 +Kotlin.Jvm.Functions.IFunction13, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function13 +Kotlin.Jvm.Functions.IFunction13;kotlin.jvm.functions.Function13 +kotlin.jvm.functions.Function13;kotlin.jvm.functions.Function13 +Kotlin.Jvm.Functions.IFunction14, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function14 +Kotlin.Jvm.Functions.IFunction14;kotlin.jvm.functions.Function14 +kotlin.jvm.functions.Function14;kotlin.jvm.functions.Function14 +Kotlin.Jvm.Functions.IFunction15, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function15 +Kotlin.Jvm.Functions.IFunction15;kotlin.jvm.functions.Function15 +kotlin.jvm.functions.Function15;kotlin.jvm.functions.Function15 +Kotlin.Jvm.Functions.IFunction16, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function16 +Kotlin.Jvm.Functions.IFunction16;kotlin.jvm.functions.Function16 +kotlin.jvm.functions.Function16;kotlin.jvm.functions.Function16 +Kotlin.Jvm.Functions.IFunction17, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function17 +Kotlin.Jvm.Functions.IFunction17;kotlin.jvm.functions.Function17 +kotlin.jvm.functions.Function17;kotlin.jvm.functions.Function17 +Kotlin.Jvm.Functions.IFunction18, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function18 +Kotlin.Jvm.Functions.IFunction18;kotlin.jvm.functions.Function18 +kotlin.jvm.functions.Function18;kotlin.jvm.functions.Function18 +Kotlin.Jvm.Functions.IFunction19, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function19 +Kotlin.Jvm.Functions.IFunction19;kotlin.jvm.functions.Function19 +kotlin.jvm.functions.Function19;kotlin.jvm.functions.Function19 +Kotlin.Jvm.Functions.IFunction2, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function2 +Kotlin.Jvm.Functions.IFunction2;kotlin.jvm.functions.Function2 +kotlin.jvm.functions.Function2;kotlin.jvm.functions.Function2 +Kotlin.Jvm.Functions.IFunction20, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function20 +Kotlin.Jvm.Functions.IFunction20;kotlin.jvm.functions.Function20 +kotlin.jvm.functions.Function20;kotlin.jvm.functions.Function20 +Kotlin.Jvm.Functions.IFunction21, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function21 +Kotlin.Jvm.Functions.IFunction21;kotlin.jvm.functions.Function21 +kotlin.jvm.functions.Function21;kotlin.jvm.functions.Function21 +Kotlin.Jvm.Functions.IFunction22, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function22 +Kotlin.Jvm.Functions.IFunction22;kotlin.jvm.functions.Function22 +kotlin.jvm.functions.Function22;kotlin.jvm.functions.Function22 +Kotlin.Jvm.Functions.IFunction3, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function3 +Kotlin.Jvm.Functions.IFunction3;kotlin.jvm.functions.Function3 +kotlin.jvm.functions.Function3;kotlin.jvm.functions.Function3 +Kotlin.Jvm.Functions.IFunction4, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function4 +Kotlin.Jvm.Functions.IFunction4;kotlin.jvm.functions.Function4 +kotlin.jvm.functions.Function4;kotlin.jvm.functions.Function4 +Kotlin.Jvm.Functions.IFunction5, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function5 +Kotlin.Jvm.Functions.IFunction5;kotlin.jvm.functions.Function5 +kotlin.jvm.functions.Function5;kotlin.jvm.functions.Function5 +Kotlin.Jvm.Functions.IFunction6, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function6 +Kotlin.Jvm.Functions.IFunction6;kotlin.jvm.functions.Function6 +kotlin.jvm.functions.Function6;kotlin.jvm.functions.Function6 +Kotlin.Jvm.Functions.IFunction7, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function7 +Kotlin.Jvm.Functions.IFunction7;kotlin.jvm.functions.Function7 +kotlin.jvm.functions.Function7;kotlin.jvm.functions.Function7 +Kotlin.Jvm.Functions.IFunction8, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function8 +Kotlin.Jvm.Functions.IFunction8;kotlin.jvm.functions.Function8 +kotlin.jvm.functions.Function8;kotlin.jvm.functions.Function8 +Kotlin.Jvm.Functions.IFunction9, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.Function9 +Kotlin.Jvm.Functions.IFunction9;kotlin.jvm.functions.Function9 +kotlin.jvm.functions.Function9;kotlin.jvm.functions.Function9 +Kotlin.Jvm.Functions.IFunctionN, Xamarin.Kotlin.StdLib;kotlin.jvm.functions.FunctionN +Kotlin.Jvm.Functions.IFunctionN;kotlin.jvm.functions.FunctionN +kotlin.jvm.functions.FunctionN;kotlin.jvm.functions.FunctionN +Kotlin.JS.IExperimentalJsCollectionsApi, Xamarin.Kotlin.StdLib;kotlin.js.ExperimentalJsCollectionsApi +Kotlin.JS.IExperimentalJsCollectionsApi;kotlin.js.ExperimentalJsCollectionsApi +kotlin.js.ExperimentalJsCollectionsApi;kotlin.js.ExperimentalJsCollectionsApi +Kotlin.JS.IExperimentalJsExport, Xamarin.Kotlin.StdLib;kotlin.js.ExperimentalJsExport +Kotlin.JS.IExperimentalJsExport;kotlin.js.ExperimentalJsExport +kotlin.js.ExperimentalJsExport;kotlin.js.ExperimentalJsExport +Kotlin.JS.IExperimentalJsFileName, Xamarin.Kotlin.StdLib;kotlin.js.ExperimentalJsFileName +Kotlin.JS.IExperimentalJsFileName;kotlin.js.ExperimentalJsFileName +kotlin.js.ExperimentalJsFileName;kotlin.js.ExperimentalJsFileName +Kotlin.JS.IExperimentalJsReflectionCreateInstance, Xamarin.Kotlin.StdLib;kotlin.js.ExperimentalJsReflectionCreateInstance +Kotlin.JS.IExperimentalJsReflectionCreateInstance;kotlin.js.ExperimentalJsReflectionCreateInstance +kotlin.js.ExperimentalJsReflectionCreateInstance;kotlin.js.ExperimentalJsReflectionCreateInstance +Kotlin.JS.IExperimentalJsStatic, Xamarin.Kotlin.StdLib;kotlin.js.ExperimentalJsStatic +Kotlin.JS.IExperimentalJsStatic;kotlin.js.ExperimentalJsStatic +kotlin.js.ExperimentalJsStatic;kotlin.js.ExperimentalJsStatic +Kotlin.IO.Path.ICopyActionContext, Xamarin.Kotlin.StdLib;kotlin.io.path.CopyActionContext +Kotlin.IO.Path.ICopyActionContext;kotlin.io.path.CopyActionContext +kotlin.io.path.CopyActionContext;kotlin.io.path.CopyActionContext +Kotlin.IO.Path.IExperimentalPathApi, Xamarin.Kotlin.StdLib;kotlin.io.path.ExperimentalPathApi +Kotlin.IO.Path.IExperimentalPathApi;kotlin.io.path.ExperimentalPathApi +kotlin.io.path.ExperimentalPathApi;kotlin.io.path.ExperimentalPathApi +Kotlin.IO.Path.IFileVisitorBuilder, Xamarin.Kotlin.StdLib;kotlin.io.path.FileVisitorBuilder +Kotlin.IO.Path.IFileVisitorBuilder;kotlin.io.path.FileVisitorBuilder +kotlin.io.path.FileVisitorBuilder;kotlin.io.path.FileVisitorBuilder +Kotlin.IO.Encoding.IExperimentalEncodingApi, Xamarin.Kotlin.StdLib;kotlin.io.encoding.ExperimentalEncodingApi +Kotlin.IO.Encoding.IExperimentalEncodingApi;kotlin.io.encoding.ExperimentalEncodingApi +kotlin.io.encoding.ExperimentalEncodingApi;kotlin.io.encoding.ExperimentalEncodingApi +Kotlin.Experimental.IExperimentalNativeApi, Xamarin.Kotlin.StdLib;kotlin.experimental.ExperimentalNativeApi +Kotlin.Experimental.IExperimentalNativeApi;kotlin.experimental.ExperimentalNativeApi +kotlin.experimental.ExperimentalNativeApi;kotlin.experimental.ExperimentalNativeApi +Kotlin.Experimental.IExperimentalObjCName, Xamarin.Kotlin.StdLib;kotlin.experimental.ExperimentalObjCName +Kotlin.Experimental.IExperimentalObjCName;kotlin.experimental.ExperimentalObjCName +kotlin.experimental.ExperimentalObjCName;kotlin.experimental.ExperimentalObjCName +Kotlin.Experimental.IExperimentalObjCRefinement, Xamarin.Kotlin.StdLib;kotlin.experimental.ExperimentalObjCRefinement +Kotlin.Experimental.IExperimentalObjCRefinement;kotlin.experimental.ExperimentalObjCRefinement +kotlin.experimental.ExperimentalObjCRefinement;kotlin.experimental.ExperimentalObjCRefinement +Kotlin.Experimental.IExperimentalTypeInference, Xamarin.Kotlin.StdLib;kotlin.experimental.ExperimentalTypeInference +Kotlin.Experimental.IExperimentalTypeInference;kotlin.experimental.ExperimentalTypeInference +kotlin.experimental.ExperimentalTypeInference;kotlin.experimental.ExperimentalTypeInference +Kotlin.Enums.IEnumEntries, Xamarin.Kotlin.StdLib;kotlin.enums.EnumEntries +Kotlin.Enums.IEnumEntries;kotlin.enums.EnumEntries +kotlin.enums.EnumEntries;kotlin.enums.EnumEntries +Kotlin.Coroutines.IContinuation, Xamarin.Kotlin.StdLib;kotlin.coroutines.Continuation +Kotlin.Coroutines.IContinuation;kotlin.coroutines.Continuation +kotlin.coroutines.Continuation;kotlin.coroutines.Continuation +Kotlin.Coroutines.IContinuationInterceptor, Xamarin.Kotlin.StdLib;kotlin.coroutines.ContinuationInterceptor +Kotlin.Coroutines.IContinuationInterceptor;kotlin.coroutines.ContinuationInterceptor +kotlin.coroutines.ContinuationInterceptor;kotlin.coroutines.ContinuationInterceptor +Kotlin.Coroutines.ICoroutineContextElement, Xamarin.Kotlin.StdLib;kotlin.coroutines.CoroutineContext$Element +Kotlin.Coroutines.ICoroutineContextElement;kotlin.coroutines.CoroutineContext$Element +kotlin.coroutines.CoroutineContext$Element;kotlin.coroutines.CoroutineContext$Element +Kotlin.Coroutines.ICoroutineContextKey, Xamarin.Kotlin.StdLib;kotlin.coroutines.CoroutineContext$Key +Kotlin.Coroutines.ICoroutineContextKey;kotlin.coroutines.CoroutineContext$Key +kotlin.coroutines.CoroutineContext$Key;kotlin.coroutines.CoroutineContext$Key +Kotlin.Coroutines.ICoroutineContext, Xamarin.Kotlin.StdLib;kotlin.coroutines.CoroutineContext +Kotlin.Coroutines.ICoroutineContext;kotlin.coroutines.CoroutineContext +kotlin.coroutines.CoroutineContext;kotlin.coroutines.CoroutineContext +Kotlin.Coroutines.IRestrictsSuspension, Xamarin.Kotlin.StdLib;kotlin.coroutines.RestrictsSuspension +Kotlin.Coroutines.IRestrictsSuspension;kotlin.coroutines.RestrictsSuspension +kotlin.coroutines.RestrictsSuspension;kotlin.coroutines.RestrictsSuspension +Kotlin.Coroutines.Jvm.Internal.ICoroutineStackFrame, Xamarin.Kotlin.StdLib;kotlin.coroutines.jvm.internal.CoroutineStackFrame +Kotlin.Coroutines.Jvm.Internal.ICoroutineStackFrame;kotlin.coroutines.jvm.internal.CoroutineStackFrame +kotlin.coroutines.jvm.internal.CoroutineStackFrame;kotlin.coroutines.jvm.internal.CoroutineStackFrame +Kotlin.Contracts.ICallsInPlace, Xamarin.Kotlin.StdLib;kotlin.contracts.CallsInPlace +Kotlin.Contracts.ICallsInPlace;kotlin.contracts.CallsInPlace +kotlin.contracts.CallsInPlace;kotlin.contracts.CallsInPlace +Kotlin.Contracts.IConditionalEffect, Xamarin.Kotlin.StdLib;kotlin.contracts.ConditionalEffect +Kotlin.Contracts.IConditionalEffect;kotlin.contracts.ConditionalEffect +kotlin.contracts.ConditionalEffect;kotlin.contracts.ConditionalEffect +Kotlin.Contracts.IContractBuilder, Xamarin.Kotlin.StdLib;kotlin.contracts.ContractBuilder +Kotlin.Contracts.IContractBuilder;kotlin.contracts.ContractBuilder +kotlin.contracts.ContractBuilder;kotlin.contracts.ContractBuilder +Kotlin.Contracts.IEffect, Xamarin.Kotlin.StdLib;kotlin.contracts.Effect +Kotlin.Contracts.IEffect;kotlin.contracts.Effect +kotlin.contracts.Effect;kotlin.contracts.Effect +Kotlin.Contracts.IExperimentalContracts, Xamarin.Kotlin.StdLib;kotlin.contracts.ExperimentalContracts +Kotlin.Contracts.IExperimentalContracts;kotlin.contracts.ExperimentalContracts +kotlin.contracts.ExperimentalContracts;kotlin.contracts.ExperimentalContracts +Kotlin.Contracts.IReturns, Xamarin.Kotlin.StdLib;kotlin.contracts.Returns +Kotlin.Contracts.IReturns;kotlin.contracts.Returns +kotlin.contracts.Returns;kotlin.contracts.Returns +Kotlin.Contracts.IReturnsNotNull, Xamarin.Kotlin.StdLib;kotlin.contracts.ReturnsNotNull +Kotlin.Contracts.IReturnsNotNull;kotlin.contracts.ReturnsNotNull +kotlin.contracts.ReturnsNotNull;kotlin.contracts.ReturnsNotNull +Kotlin.Contracts.ISimpleEffect, Xamarin.Kotlin.StdLib;kotlin.contracts.SimpleEffect +Kotlin.Contracts.ISimpleEffect;kotlin.contracts.SimpleEffect +kotlin.contracts.SimpleEffect;kotlin.contracts.SimpleEffect +Kotlin.Annotation.IMustBeDocumented, Xamarin.Kotlin.StdLib;kotlin.annotation.MustBeDocumented +Kotlin.Annotation.IMustBeDocumented;kotlin.annotation.MustBeDocumented +kotlin.annotation.MustBeDocumented;kotlin.annotation.MustBeDocumented +Kotlin.Annotation.IRepeatable, Xamarin.Kotlin.StdLib;kotlin.annotation.Repeatable +Kotlin.Annotation.IRepeatable;kotlin.annotation.Repeatable +kotlin.annotation.Repeatable;kotlin.annotation.Repeatable +Kotlin.Annotation.IRetention, Xamarin.Kotlin.StdLib;kotlin.annotation.Retention +Kotlin.Annotation.IRetention;kotlin.annotation.Retention +kotlin.annotation.Retention;kotlin.annotation.Retention +Kotlin.Annotation.ITarget, Xamarin.Kotlin.StdLib;kotlin.annotation.Target +Kotlin.Annotation.ITarget;kotlin.annotation.Target +kotlin.annotation.Target;kotlin.annotation.Target +Kotlin.Ranges.IClosedFloatingPointRange, Xamarin.Kotlin.StdLib;kotlin.ranges.ClosedFloatingPointRange +Kotlin.Ranges.IClosedFloatingPointRange;kotlin.ranges.ClosedFloatingPointRange +kotlin.ranges.ClosedFloatingPointRange;kotlin.ranges.ClosedFloatingPointRange +Kotlin.Ranges.IClosedRange, Xamarin.Kotlin.StdLib;kotlin.ranges.ClosedRange +Kotlin.Ranges.IClosedRange;kotlin.ranges.ClosedRange +kotlin.ranges.ClosedRange;kotlin.ranges.ClosedRange +Kotlin.Ranges.IOpenEndRange, Xamarin.Kotlin.StdLib;kotlin.ranges.OpenEndRange +Kotlin.Ranges.IOpenEndRange;kotlin.ranges.OpenEndRange +kotlin.ranges.OpenEndRange;kotlin.ranges.OpenEndRange +Kotlin.Collections.IGrouping, Xamarin.Kotlin.StdLib;kotlin.collections.Grouping +Kotlin.Collections.IGrouping;kotlin.collections.Grouping +kotlin.collections.Grouping;kotlin.collections.Grouping +Xamarin.KotlinX.Coroutines.ICancellableContinuation, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CancellableContinuation +Xamarin.KotlinX.Coroutines.ICancellableContinuation;kotlinx.coroutines.CancellableContinuation +kotlinx.coroutines.CancellableContinuation;kotlinx.coroutines.CancellableContinuation +Xamarin.KotlinX.Coroutines.IChildHandle, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ChildHandle +Xamarin.KotlinX.Coroutines.IChildHandle;kotlinx.coroutines.ChildHandle +kotlinx.coroutines.ChildHandle;kotlinx.coroutines.ChildHandle +Xamarin.KotlinX.Coroutines.IChildJob, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ChildJob +Xamarin.KotlinX.Coroutines.IChildJob;kotlinx.coroutines.ChildJob +kotlinx.coroutines.ChildJob;kotlinx.coroutines.ChildJob +Xamarin.KotlinX.Coroutines.ICompletableDeferred, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CompletableDeferred +Xamarin.KotlinX.Coroutines.ICompletableDeferred;kotlinx.coroutines.CompletableDeferred +kotlinx.coroutines.CompletableDeferred;kotlinx.coroutines.CompletableDeferred +Xamarin.KotlinX.Coroutines.ICompletableJob, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CompletableJob +Xamarin.KotlinX.Coroutines.ICompletableJob;kotlinx.coroutines.CompletableJob +kotlinx.coroutines.CompletableJob;kotlinx.coroutines.CompletableJob +Xamarin.KotlinX.Coroutines.ICopyableThreadContextElement, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CopyableThreadContextElement +Xamarin.KotlinX.Coroutines.ICopyableThreadContextElement;kotlinx.coroutines.CopyableThreadContextElement +kotlinx.coroutines.CopyableThreadContextElement;kotlinx.coroutines.CopyableThreadContextElement +Xamarin.KotlinX.Coroutines.ICopyableThrowable, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CopyableThrowable +Xamarin.KotlinX.Coroutines.ICopyableThrowable;kotlinx.coroutines.CopyableThrowable +kotlinx.coroutines.CopyableThrowable;kotlinx.coroutines.CopyableThrowable +Xamarin.KotlinX.Coroutines.ICoroutineExceptionHandler, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CoroutineExceptionHandler +Xamarin.KotlinX.Coroutines.ICoroutineExceptionHandler;kotlinx.coroutines.CoroutineExceptionHandler +kotlinx.coroutines.CoroutineExceptionHandler;kotlinx.coroutines.CoroutineExceptionHandler +Xamarin.KotlinX.Coroutines.ICoroutineScope, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.CoroutineScope +Xamarin.KotlinX.Coroutines.ICoroutineScope;kotlinx.coroutines.CoroutineScope +kotlinx.coroutines.CoroutineScope;kotlinx.coroutines.CoroutineScope +Xamarin.KotlinX.Coroutines.IDeferred, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.Deferred +Xamarin.KotlinX.Coroutines.IDeferred;kotlinx.coroutines.Deferred +kotlinx.coroutines.Deferred;kotlinx.coroutines.Deferred +Xamarin.KotlinX.Coroutines.IDelay, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.Delay +Xamarin.KotlinX.Coroutines.IDelay;kotlinx.coroutines.Delay +kotlinx.coroutines.Delay;kotlinx.coroutines.Delay +Xamarin.KotlinX.Coroutines.IDelicateCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.DelicateCoroutinesApi +Xamarin.KotlinX.Coroutines.IDelicateCoroutinesApi;kotlinx.coroutines.DelicateCoroutinesApi +kotlinx.coroutines.DelicateCoroutinesApi;kotlinx.coroutines.DelicateCoroutinesApi +Xamarin.KotlinX.Coroutines.IDisposableHandle, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.DisposableHandle +Xamarin.KotlinX.Coroutines.IDisposableHandle;kotlinx.coroutines.DisposableHandle +kotlinx.coroutines.DisposableHandle;kotlinx.coroutines.DisposableHandle +Xamarin.KotlinX.Coroutines.IExperimentalCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ExperimentalCoroutinesApi +Xamarin.KotlinX.Coroutines.IExperimentalCoroutinesApi;kotlinx.coroutines.ExperimentalCoroutinesApi +kotlinx.coroutines.ExperimentalCoroutinesApi;kotlinx.coroutines.ExperimentalCoroutinesApi +Xamarin.KotlinX.Coroutines.IExperimentalForInheritanceCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi +Xamarin.KotlinX.Coroutines.IExperimentalForInheritanceCoroutinesApi;kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi +kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi;kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi +Xamarin.KotlinX.Coroutines.IFlowPreview, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.FlowPreview +Xamarin.KotlinX.Coroutines.IFlowPreview;kotlinx.coroutines.FlowPreview +kotlinx.coroutines.FlowPreview;kotlinx.coroutines.FlowPreview +Xamarin.KotlinX.Coroutines.IInternalCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.InternalCoroutinesApi +Xamarin.KotlinX.Coroutines.IInternalCoroutinesApi;kotlinx.coroutines.InternalCoroutinesApi +kotlinx.coroutines.InternalCoroutinesApi;kotlinx.coroutines.InternalCoroutinesApi +Xamarin.KotlinX.Coroutines.IInternalForInheritanceCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.InternalForInheritanceCoroutinesApi +Xamarin.KotlinX.Coroutines.IInternalForInheritanceCoroutinesApi;kotlinx.coroutines.InternalForInheritanceCoroutinesApi +kotlinx.coroutines.InternalForInheritanceCoroutinesApi;kotlinx.coroutines.InternalForInheritanceCoroutinesApi +Xamarin.KotlinX.Coroutines.IJob, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.Job +Xamarin.KotlinX.Coroutines.IJob;kotlinx.coroutines.Job +kotlinx.coroutines.Job;kotlinx.coroutines.Job +Xamarin.KotlinX.Coroutines.IObsoleteCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ObsoleteCoroutinesApi +Xamarin.KotlinX.Coroutines.IObsoleteCoroutinesApi;kotlinx.coroutines.ObsoleteCoroutinesApi +kotlinx.coroutines.ObsoleteCoroutinesApi;kotlinx.coroutines.ObsoleteCoroutinesApi +Xamarin.KotlinX.Coroutines.IParentJob, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ParentJob +Xamarin.KotlinX.Coroutines.IParentJob;kotlinx.coroutines.ParentJob +kotlinx.coroutines.ParentJob;kotlinx.coroutines.ParentJob +Xamarin.KotlinX.Coroutines.IThreadContextElement, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.ThreadContextElement +Xamarin.KotlinX.Coroutines.IThreadContextElement;kotlinx.coroutines.ThreadContextElement +kotlinx.coroutines.ThreadContextElement;kotlinx.coroutines.ThreadContextElement +Xamarin.KotlinX.Coroutines.Sync.IMutex, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.sync.Mutex +Xamarin.KotlinX.Coroutines.Sync.IMutex;kotlinx.coroutines.sync.Mutex +kotlinx.coroutines.sync.Mutex;kotlinx.coroutines.sync.Mutex +Xamarin.KotlinX.Coroutines.Sync.ISemaphore, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.sync.Semaphore +Xamarin.KotlinX.Coroutines.Sync.ISemaphore;kotlinx.coroutines.sync.Semaphore +kotlinx.coroutines.sync.Semaphore;kotlinx.coroutines.sync.Semaphore +Xamarin.KotlinX.Coroutines.Selects.ISelectBuilder, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectBuilder +Xamarin.KotlinX.Coroutines.Selects.ISelectBuilder;kotlinx.coroutines.selects.SelectBuilder +kotlinx.coroutines.selects.SelectBuilder;kotlinx.coroutines.selects.SelectBuilder +Xamarin.KotlinX.Coroutines.Selects.ISelectClause, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectClause +Xamarin.KotlinX.Coroutines.Selects.ISelectClause;kotlinx.coroutines.selects.SelectClause +kotlinx.coroutines.selects.SelectClause;kotlinx.coroutines.selects.SelectClause +Xamarin.KotlinX.Coroutines.Selects.ISelectClause0, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectClause0 +Xamarin.KotlinX.Coroutines.Selects.ISelectClause0;kotlinx.coroutines.selects.SelectClause0 +kotlinx.coroutines.selects.SelectClause0;kotlinx.coroutines.selects.SelectClause0 +Xamarin.KotlinX.Coroutines.Selects.ISelectClause1, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectClause1 +Xamarin.KotlinX.Coroutines.Selects.ISelectClause1;kotlinx.coroutines.selects.SelectClause1 +kotlinx.coroutines.selects.SelectClause1;kotlinx.coroutines.selects.SelectClause1 +Xamarin.KotlinX.Coroutines.Selects.ISelectClause2, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectClause2 +Xamarin.KotlinX.Coroutines.Selects.ISelectClause2;kotlinx.coroutines.selects.SelectClause2 +kotlinx.coroutines.selects.SelectClause2;kotlinx.coroutines.selects.SelectClause2 +Xamarin.KotlinX.Coroutines.Selects.ISelectInstance, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.selects.SelectInstance +Xamarin.KotlinX.Coroutines.Selects.ISelectInstance;kotlinx.coroutines.selects.SelectInstance +kotlinx.coroutines.selects.SelectInstance;kotlinx.coroutines.selects.SelectInstance +Xamarin.KotlinX.Coroutines.Flow.IFlow, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.Flow +Xamarin.KotlinX.Coroutines.Flow.IFlow;kotlinx.coroutines.flow.Flow +kotlinx.coroutines.flow.Flow;kotlinx.coroutines.flow.Flow +Xamarin.KotlinX.Coroutines.Flow.IFlowCollector, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.FlowCollector +Xamarin.KotlinX.Coroutines.Flow.IFlowCollector;kotlinx.coroutines.flow.FlowCollector +kotlinx.coroutines.flow.FlowCollector;kotlinx.coroutines.flow.FlowCollector +Xamarin.KotlinX.Coroutines.Flow.IMutableSharedFlow, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.MutableSharedFlow +Xamarin.KotlinX.Coroutines.Flow.IMutableSharedFlow;kotlinx.coroutines.flow.MutableSharedFlow +kotlinx.coroutines.flow.MutableSharedFlow;kotlinx.coroutines.flow.MutableSharedFlow +Xamarin.KotlinX.Coroutines.Flow.IMutableStateFlow, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.MutableStateFlow +Xamarin.KotlinX.Coroutines.Flow.IMutableStateFlow;kotlinx.coroutines.flow.MutableStateFlow +kotlinx.coroutines.flow.MutableStateFlow;kotlinx.coroutines.flow.MutableStateFlow +Xamarin.KotlinX.Coroutines.Flow.ISharedFlow, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.SharedFlow +Xamarin.KotlinX.Coroutines.Flow.ISharedFlow;kotlinx.coroutines.flow.SharedFlow +kotlinx.coroutines.flow.SharedFlow;kotlinx.coroutines.flow.SharedFlow +Xamarin.KotlinX.Coroutines.Flow.ISharingStarted, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.SharingStarted +Xamarin.KotlinX.Coroutines.Flow.ISharingStarted;kotlinx.coroutines.flow.SharingStarted +kotlinx.coroutines.flow.SharingStarted;kotlinx.coroutines.flow.SharingStarted +Xamarin.KotlinX.Coroutines.Flow.IStateFlow, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.flow.StateFlow +Xamarin.KotlinX.Coroutines.Flow.IStateFlow;kotlinx.coroutines.flow.StateFlow +kotlinx.coroutines.flow.StateFlow;kotlinx.coroutines.flow.StateFlow +Xamarin.KotlinX.Coroutines.Channels.IActorScope, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.ActorScope +Xamarin.KotlinX.Coroutines.Channels.IActorScope;kotlinx.coroutines.channels.ActorScope +kotlinx.coroutines.channels.ActorScope;kotlinx.coroutines.channels.ActorScope +Xamarin.KotlinX.Coroutines.Channels.IBroadcastChannel, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.BroadcastChannel +Xamarin.KotlinX.Coroutines.Channels.IBroadcastChannel;kotlinx.coroutines.channels.BroadcastChannel +kotlinx.coroutines.channels.BroadcastChannel;kotlinx.coroutines.channels.BroadcastChannel +Xamarin.KotlinX.Coroutines.Channels.IChannel, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.Channel +Xamarin.KotlinX.Coroutines.Channels.IChannel;kotlinx.coroutines.channels.Channel +kotlinx.coroutines.channels.Channel;kotlinx.coroutines.channels.Channel +Xamarin.KotlinX.Coroutines.Channels.IChannelIterator, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.ChannelIterator +Xamarin.KotlinX.Coroutines.Channels.IChannelIterator;kotlinx.coroutines.channels.ChannelIterator +kotlinx.coroutines.channels.ChannelIterator;kotlinx.coroutines.channels.ChannelIterator +Xamarin.KotlinX.Coroutines.Channels.IProducerScope, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.ProducerScope +Xamarin.KotlinX.Coroutines.Channels.IProducerScope;kotlinx.coroutines.channels.ProducerScope +kotlinx.coroutines.channels.ProducerScope;kotlinx.coroutines.channels.ProducerScope +Xamarin.KotlinX.Coroutines.Channels.IReceiveChannel, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.ReceiveChannel +Xamarin.KotlinX.Coroutines.Channels.IReceiveChannel;kotlinx.coroutines.channels.ReceiveChannel +kotlinx.coroutines.channels.ReceiveChannel;kotlinx.coroutines.channels.ReceiveChannel +Xamarin.KotlinX.Coroutines.Channels.ISendChannel, Xamarin.KotlinX.Coroutines.Core.Jvm;kotlinx.coroutines.channels.SendChannel +Xamarin.KotlinX.Coroutines.Channels.ISendChannel;kotlinx.coroutines.channels.SendChannel +kotlinx.coroutines.channels.SendChannel;kotlinx.coroutines.channels.SendChannel +KotlinX.Serialization.IBinaryFormat, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.BinaryFormat +KotlinX.Serialization.IBinaryFormat;kotlinx.serialization.BinaryFormat +kotlinx.serialization.BinaryFormat;kotlinx.serialization.BinaryFormat +KotlinX.Serialization.IContextual, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Contextual +KotlinX.Serialization.IContextual;kotlinx.serialization.Contextual +kotlinx.serialization.Contextual;kotlinx.serialization.Contextual +KotlinX.Serialization.IDeserializationStrategy, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.DeserializationStrategy +KotlinX.Serialization.IDeserializationStrategy;kotlinx.serialization.DeserializationStrategy +kotlinx.serialization.DeserializationStrategy;kotlinx.serialization.DeserializationStrategy +KotlinX.Serialization.IEncodeDefault, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.EncodeDefault +KotlinX.Serialization.IEncodeDefault;kotlinx.serialization.EncodeDefault +kotlinx.serialization.EncodeDefault;kotlinx.serialization.EncodeDefault +KotlinX.Serialization.IExperimentalSerializationApi, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.ExperimentalSerializationApi +KotlinX.Serialization.IExperimentalSerializationApi;kotlinx.serialization.ExperimentalSerializationApi +kotlinx.serialization.ExperimentalSerializationApi;kotlinx.serialization.ExperimentalSerializationApi +KotlinX.Serialization.IInheritableSerialInfo, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.InheritableSerialInfo +KotlinX.Serialization.IInheritableSerialInfo;kotlinx.serialization.InheritableSerialInfo +kotlinx.serialization.InheritableSerialInfo;kotlinx.serialization.InheritableSerialInfo +KotlinX.Serialization.IInternalSerializationApi, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.InternalSerializationApi +KotlinX.Serialization.IInternalSerializationApi;kotlinx.serialization.InternalSerializationApi +kotlinx.serialization.InternalSerializationApi;kotlinx.serialization.InternalSerializationApi +KotlinX.Serialization.IKeepGeneratedSerializer, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.KeepGeneratedSerializer +KotlinX.Serialization.IKeepGeneratedSerializer;kotlinx.serialization.KeepGeneratedSerializer +kotlinx.serialization.KeepGeneratedSerializer;kotlinx.serialization.KeepGeneratedSerializer +KotlinX.Serialization.IKSerializer, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.KSerializer +KotlinX.Serialization.IKSerializer;kotlinx.serialization.KSerializer +kotlinx.serialization.KSerializer;kotlinx.serialization.KSerializer +KotlinX.Serialization.IMetaSerializable, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.MetaSerializable +KotlinX.Serialization.IMetaSerializable;kotlinx.serialization.MetaSerializable +kotlinx.serialization.MetaSerializable;kotlinx.serialization.MetaSerializable +KotlinX.Serialization.IPolymorphic, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Polymorphic +KotlinX.Serialization.IPolymorphic;kotlinx.serialization.Polymorphic +kotlinx.serialization.Polymorphic;kotlinx.serialization.Polymorphic +KotlinX.Serialization.IRequired, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Required +KotlinX.Serialization.IRequired;kotlinx.serialization.Required +kotlinx.serialization.Required;kotlinx.serialization.Required +KotlinX.Serialization.ISerialFormat, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.SerialFormat +KotlinX.Serialization.ISerialFormat;kotlinx.serialization.SerialFormat +kotlinx.serialization.SerialFormat;kotlinx.serialization.SerialFormat +KotlinX.Serialization.ISerialInfo, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.SerialInfo +KotlinX.Serialization.ISerialInfo;kotlinx.serialization.SerialInfo +kotlinx.serialization.SerialInfo;kotlinx.serialization.SerialInfo +KotlinX.Serialization.ISerializable, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Serializable +KotlinX.Serialization.ISerializable;kotlinx.serialization.Serializable +kotlinx.serialization.Serializable;kotlinx.serialization.Serializable +KotlinX.Serialization.ISerializationStrategy, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.SerializationStrategy +KotlinX.Serialization.ISerializationStrategy;kotlinx.serialization.SerializationStrategy +kotlinx.serialization.SerializationStrategy;kotlinx.serialization.SerializationStrategy +KotlinX.Serialization.ISerializer, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Serializer +KotlinX.Serialization.ISerializer;kotlinx.serialization.Serializer +kotlinx.serialization.Serializer;kotlinx.serialization.Serializer +KotlinX.Serialization.ISerialName, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.SerialName +KotlinX.Serialization.ISerialName;kotlinx.serialization.SerialName +kotlinx.serialization.SerialName;kotlinx.serialization.SerialName +KotlinX.Serialization.IStringFormat, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.StringFormat +KotlinX.Serialization.IStringFormat;kotlinx.serialization.StringFormat +kotlinx.serialization.StringFormat;kotlinx.serialization.StringFormat +KotlinX.Serialization.ITransient, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.Transient +KotlinX.Serialization.ITransient;kotlinx.serialization.Transient +kotlinx.serialization.Transient;kotlinx.serialization.Transient +KotlinX.Serialization.IUseContextualSerialization, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.UseContextualSerialization +KotlinX.Serialization.IUseContextualSerialization;kotlinx.serialization.UseContextualSerialization +kotlinx.serialization.UseContextualSerialization;kotlinx.serialization.UseContextualSerialization +KotlinX.Serialization.IUseSerializers, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.UseSerializers +KotlinX.Serialization.IUseSerializers;kotlinx.serialization.UseSerializers +kotlinx.serialization.UseSerializers;kotlinx.serialization.UseSerializers +KotlinX.Serialization.Modules.ISerializersModuleCollector, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.modules.SerializersModuleCollector +KotlinX.Serialization.Modules.ISerializersModuleCollector;kotlinx.serialization.modules.SerializersModuleCollector +kotlinx.serialization.modules.SerializersModuleCollector;kotlinx.serialization.modules.SerializersModuleCollector +KotlinX.Serialization.Encoding.IChunkedDecoder, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.encoding.ChunkedDecoder +KotlinX.Serialization.Encoding.IChunkedDecoder;kotlinx.serialization.encoding.ChunkedDecoder +kotlinx.serialization.encoding.ChunkedDecoder;kotlinx.serialization.encoding.ChunkedDecoder +KotlinX.Serialization.Encoding.ICompositeDecoder, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.encoding.CompositeDecoder +KotlinX.Serialization.Encoding.ICompositeDecoder;kotlinx.serialization.encoding.CompositeDecoder +kotlinx.serialization.encoding.CompositeDecoder;kotlinx.serialization.encoding.CompositeDecoder +KotlinX.Serialization.Encoding.ICompositeEncoder, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.encoding.CompositeEncoder +KotlinX.Serialization.Encoding.ICompositeEncoder;kotlinx.serialization.encoding.CompositeEncoder +kotlinx.serialization.encoding.CompositeEncoder;kotlinx.serialization.encoding.CompositeEncoder +KotlinX.Serialization.Encoding.IDecoder, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.encoding.Decoder +KotlinX.Serialization.Encoding.IDecoder;kotlinx.serialization.encoding.Decoder +kotlinx.serialization.encoding.Decoder;kotlinx.serialization.encoding.Decoder +KotlinX.Serialization.Encoding.IEncoder, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.encoding.Encoder +KotlinX.Serialization.Encoding.IEncoder;kotlinx.serialization.encoding.Encoder +kotlinx.serialization.encoding.Encoder;kotlinx.serialization.encoding.Encoder +KotlinX.Serialization.Descriptors.ISerialDescriptor, Xamarin.KotlinX.Serialization.Core.Jvm;kotlinx.serialization.descriptors.SerialDescriptor +KotlinX.Serialization.Descriptors.ISerialDescriptor;kotlinx.serialization.descriptors.SerialDescriptor +kotlinx.serialization.descriptors.SerialDescriptor;kotlinx.serialization.descriptors.SerialDescriptor diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/adb.props b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/adb.props new file mode 100644 index 0000000..27304c1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/adb.props @@ -0,0 +1,2 @@ +AdbTarget=-s RQCW703DV4M +AdbOptions= diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.GlobalUsings.g.cs b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.GlobalUsings.g.cs new file mode 100644 index 0000000..a599ed6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.assets.cache b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.assets.cache new file mode 100644 index 0000000..691eb49 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.assets.cache differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.csproj.AssemblyReference.cache b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4670433 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-arm64/clipiFrontC.csproj.AssemblyReference.cache differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.GlobalUsings.g.cs b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.GlobalUsings.g.cs new file mode 100644 index 0000000..a599ed6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.assets.cache b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.assets.cache new file mode 100644 index 0000000..1b0c179 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.assets.cache differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.csproj.AssemblyReference.cache b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a7aed50 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android-x64/clipiFrontC.csproj.AssemblyReference.cache differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/AndroidManifest.xml b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/AndroidManifest.xml new file mode 100644 index 0000000..86ba90a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/AndroidManifest.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.dll new file mode 100644 index 0000000..3a7cf0c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.pdb new file mode 100644 index 0000000..542ac64 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/GoogleGson.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.dll new file mode 100644 index 0000000..07e4fef Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.pdb new file mode 100644 index 0000000..ca0d10c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Java.Interop.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.dll new file mode 100644 index 0000000..1aece28 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.pdb new file mode 100644 index 0000000..8af7005 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Jsr305Binding.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Authorization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..da13d44 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Authorization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Forms.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..eb6d930 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..8031429 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.dll new file mode 100644 index 0000000..31370a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.pdb new file mode 100644 index 0000000..6b57065 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.Maui.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.dll new file mode 100644 index 0000000..1d86182 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.WebView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..1fda3e8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Components.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Metadata.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..786498a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.AspNetCore.Metadata.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.CSharp.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.CSharp.dll new file mode 100644 index 0000000..3478103 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.CSharp.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..17e344e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Binder.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3ce312e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.FileExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..ab84af5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..093a57e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..53c19ab Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Configuration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..e7affaf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..6191756 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..d171940 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Composite.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..b36dad7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Embedded.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..db7233c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Physical.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..e901584 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileSystemGlobbing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..d3b7883 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..cb1d711 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Debug.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..f7bf1a6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..61d3a7e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Logging.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Options.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..bfb0647 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Options.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..b7e4481 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Extensions.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.JSInterop.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.JSInterop.dll new file mode 100644 index 0000000..6eaf789 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.JSInterop.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.HotReload.Forms.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.HotReload.Forms.dll new file mode 100644 index 0000000..84b2949 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.HotReload.Forms.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.dll new file mode 100644 index 0000000..7e43679 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.pdb new file mode 100644 index 0000000..958d87a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.Xaml.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.dll new file mode 100644 index 0000000..28a18e7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.pdb new file mode 100644 index 0000000..5730835 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Controls.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.dll new file mode 100644 index 0000000..8f99483 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.pdb new file mode 100644 index 0000000..00fb925 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Essentials.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.dll new file mode 100644 index 0000000..c229424 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.pdb new file mode 100644 index 0000000..8215b13 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.Graphics.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.dll new file mode 100644 index 0000000..2ce9d55 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.pdb new file mode 100644 index 0000000..7d49428 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Maui.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..b86545d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..6ab5c01 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualBasic.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll new file mode 100644 index 0000000..48b2d3b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.TapContract.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.TapContract.dll new file mode 100644 index 0000000..a5925e7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.TapContract.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.XamlTapContract.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.XamlTapContract.dll new file mode 100644 index 0000000..c545c29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.VisualStudio.DesignTools.XamlTapContract.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..74d3780 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Registry.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..c108aa9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Microsoft.Win32.Registry.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.dll new file mode 100644 index 0000000..3e59dda Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.pdb new file mode 100644 index 0000000..f6aa963 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Export.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.dll new file mode 100644 index 0000000..30e885a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.pdb new file mode 100644 index 0000000..f6ee74b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.dll new file mode 100644 index 0000000..a2b511f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.pdb new file mode 100644 index 0000000..8ddac35 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Mono.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.AppContext.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.AppContext.dll new file mode 100644 index 0000000..a5e8add Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.AppContext.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Buffers.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Buffers.dll new file mode 100644 index 0000000..39a0068 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Buffers.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Concurrent.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Concurrent.dll new file mode 100644 index 0000000..ee29003 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Concurrent.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Immutable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Immutable.dll new file mode 100644 index 0000000..ca3eef6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Immutable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.NonGeneric.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..43bbdec Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.NonGeneric.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Specialized.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Specialized.dll new file mode 100644 index 0000000..abfdc22 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.Specialized.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.dll new file mode 100644 index 0000000..7cc1142 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Collections.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..269c2b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.DataAnnotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..b9ef429 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.DataAnnotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.EventBasedAsync.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..604b022 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.EventBasedAsync.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..c1b036e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.TypeConverter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..f43198a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.TypeConverter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.dll new file mode 100644 index 0000000..4c9e6b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ComponentModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Configuration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Configuration.dll new file mode 100644 index 0000000..ebb0cc9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Configuration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Console.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Console.dll new file mode 100644 index 0000000..824f239 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Console.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Core.dll new file mode 100644 index 0000000..f2f2238 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.Common.dll new file mode 100644 index 0000000..9b50b09 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.DataSetExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..5e70a14 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.DataSetExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.dll new file mode 100644 index 0000000..713ad51 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Data.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Contracts.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..a70a457 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Contracts.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Debug.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..77bbc8b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Debug.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.DiagnosticSource.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..962fc27 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.DiagnosticSource.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.FileVersionInfo.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..5804c26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.FileVersionInfo.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Process.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Process.dll new file mode 100644 index 0000000..cb84b05 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Process.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.StackTrace.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..0c18d01 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.StackTrace.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TextWriterTraceListener.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..6b25eb7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tools.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..a3642e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tools.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TraceSource.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..002eb26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.TraceSource.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tracing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5f2a9f4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Diagnostics.Tracing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.Primitives.dll new file mode 100644 index 0000000..82f1acc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.dll new file mode 100644 index 0000000..98fcda1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Drawing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Dynamic.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..6c781bb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Dynamic.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Asn1.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Asn1.dll new file mode 100644 index 0000000..6d82cd2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Asn1.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Tar.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Tar.dll new file mode 100644 index 0000000..82846f0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Formats.Tar.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Calendars.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Calendars.dll new file mode 100644 index 0000000..2c8a9bb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Calendars.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Extensions.dll new file mode 100644 index 0000000..d713d29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.dll new file mode 100644 index 0000000..bcacbd4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Globalization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.Brotli.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..2bc8b1f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.Brotli.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.FileSystem.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..546db98 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.FileSystem.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.ZipFile.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..7c9a44c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.ZipFile.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.dll new file mode 100644 index 0000000..4dd87ff Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Compression.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..2bf7a7c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.DriveInfo.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..29491d8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.DriveInfo.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d66143a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Watcher.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a0a1ded Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.Watcher.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.dll new file mode 100644 index 0000000..0ceb9de Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.FileSystem.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.IsolatedStorage.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..5519211 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.IsolatedStorage.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.MemoryMappedFiles.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..75acdf2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.MemoryMappedFiles.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipelines.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipelines.dll new file mode 100644 index 0000000..446f23a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipelines.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..0d42474 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.dll new file mode 100644 index 0000000..37711bf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.Pipes.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.UnmanagedMemoryStream.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..2e8a6bc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.UnmanagedMemoryStream.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.dll new file mode 100644 index 0000000..db36918 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.IO.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Expressions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Expressions.dll new file mode 100644 index 0000000..1c4a812 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Expressions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Parallel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Parallel.dll new file mode 100644 index 0000000..76996e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Parallel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Queryable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Queryable.dll new file mode 100644 index 0000000..1307c6c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.Queryable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.dll new file mode 100644 index 0000000..7adcab6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Memory.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Memory.dll new file mode 100644 index 0000000..925e047 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Memory.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.Json.dll new file mode 100644 index 0000000..e4e8859 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.dll new file mode 100644 index 0000000..53ff746 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Http.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.HttpListener.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.HttpListener.dll new file mode 100644 index 0000000..1a3ee4d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.HttpListener.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Mail.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Mail.dll new file mode 100644 index 0000000..8c93bb4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Mail.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NameResolution.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NameResolution.dll new file mode 100644 index 0000000..61f6a61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NameResolution.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NetworkInformation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..2e3fc7b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.NetworkInformation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Ping.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Ping.dll new file mode 100644 index 0000000..8c1e354 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Ping.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Primitives.dll new file mode 100644 index 0000000..3a62565 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Quic.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Quic.dll new file mode 100644 index 0000000..8ddd9c4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Quic.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Requests.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Requests.dll new file mode 100644 index 0000000..71457dc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Requests.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Security.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Security.dll new file mode 100644 index 0000000..fa56915 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Security.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.ServicePoint.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.ServicePoint.dll new file mode 100644 index 0000000..fb20853 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.ServicePoint.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Sockets.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Sockets.dll new file mode 100644 index 0000000..ac37e88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.Sockets.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebClient.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebClient.dll new file mode 100644 index 0000000..d8f7b33 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebClient.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebHeaderCollection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..de96c07 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebHeaderCollection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebProxy.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebProxy.dll new file mode 100644 index 0000000..fe7ad83 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebProxy.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.Client.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..c412204 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.Client.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.dll new file mode 100644 index 0000000..e70197f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.WebSockets.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.dll new file mode 100644 index 0000000..2fe8747 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Net.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.Vectors.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.Vectors.dll new file mode 100644 index 0000000..15216b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.Vectors.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.dll new file mode 100644 index 0000000..8635a91 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Numerics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ObjectModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ObjectModel.dll new file mode 100644 index 0000000..46c60b3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ObjectModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.CoreLib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.CoreLib.dll new file mode 100644 index 0000000..9944d84 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.CoreLib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.DataContractSerialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..e82b04a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.DataContractSerialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Uri.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Uri.dll new file mode 100644 index 0000000..fe04349 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Uri.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..df5ea64 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.dll new file mode 100644 index 0000000..da09f61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Private.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.DispatchProxy.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..4a89979 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.DispatchProxy.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.ILGeneration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..5de6586 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.ILGeneration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.Lightweight.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..ec6b489 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.Lightweight.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.dll new file mode 100644 index 0000000..2585a2f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Emit.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Extensions.dll new file mode 100644 index 0000000..cdfa0b1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Metadata.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Metadata.dll new file mode 100644 index 0000000..21e6b94 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Metadata.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Primitives.dll new file mode 100644 index 0000000..6573819 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.TypeExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..88d7a65 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.TypeExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.dll new file mode 100644 index 0000000..4fcc113 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Reflection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Reader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Reader.dll new file mode 100644 index 0000000..298f20c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Reader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.ResourceManager.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..74bd51b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.ResourceManager.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Writer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Writer.dll new file mode 100644 index 0000000..81572d0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Resources.Writer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.Unsafe.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..4b8d278 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.VisualC.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..86b16a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Extensions.dll new file mode 100644 index 0000000..b2b619f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Handles.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Handles.dll new file mode 100644 index 0000000..bf738fc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Handles.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.JavaScript.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..dd853cb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.RuntimeInformation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..f4ae31d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ead9df8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.InteropServices.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Intrinsics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..1296bc8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Intrinsics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Loader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Loader.dll new file mode 100644 index 0000000..e595c21 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Loader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Numerics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Numerics.dll new file mode 100644 index 0000000..2a8de7d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Numerics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Formatters.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..e651420 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Formatters.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..ed19299 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..4089875 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..abcaa38 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.dll new file mode 100644 index 0000000..2ea5533 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.Serialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.dll new file mode 100644 index 0000000..3907a1c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.AccessControl.dll new file mode 100644 index 0000000..d9db659 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Claims.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Claims.dll new file mode 100644 index 0000000..829dccb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Claims.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Algorithms.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..9300bd3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Algorithms.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Cng.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..3eaa137 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Cng.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Csp.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..1a67be8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Csp.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Encoding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f1693e3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Encoding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.OpenSsl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..4518e1e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.OpenSsl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..394a3ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.X509Certificates.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..6d3021e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.X509Certificates.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.dll new file mode 100644 index 0000000..c2ecc71 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Cryptography.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.Windows.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..13b931a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.Windows.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.dll new file mode 100644 index 0000000..9c2c066 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.Principal.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.SecureString.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.SecureString.dll new file mode 100644 index 0000000..636126a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.SecureString.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.dll new file mode 100644 index 0000000..c950fc2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Security.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceModel.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceModel.Web.dll new file mode 100644 index 0000000..38e15ed Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceModel.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceProcess.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceProcess.dll new file mode 100644 index 0000000..b22ce41 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ServiceProcess.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.CodePages.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..cdc41f6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.CodePages.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..f1645c0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.dll new file mode 100644 index 0000000..30951c8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encoding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encodings.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..c52cc07 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Encodings.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Json.dll new file mode 100644 index 0000000..af5bbe3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.RegularExpressions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..b58355b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Text.RegularExpressions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Channels.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Channels.dll new file mode 100644 index 0000000..f8eca3e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Channels.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Overlapped.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Overlapped.dll new file mode 100644 index 0000000..6c779f2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Overlapped.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Dataflow.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6c427c3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Dataflow.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..4593fdf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Parallel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c15f2af Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.Parallel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.dll new file mode 100644 index 0000000..ee24ede Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Tasks.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Thread.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Thread.dll new file mode 100644 index 0000000..dcba6c1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Thread.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.ThreadPool.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..0c88435 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.ThreadPool.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Timer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Timer.dll new file mode 100644 index 0000000..a68771b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.Timer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.dll new file mode 100644 index 0000000..daff737 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Threading.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.Local.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.Local.dll new file mode 100644 index 0000000..3bd102e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.Local.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.dll new file mode 100644 index 0000000..99293d4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Transactions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ValueTuple.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ValueTuple.dll new file mode 100644 index 0000000..82d1dd2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.ValueTuple.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.HttpUtility.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.HttpUtility.dll new file mode 100644 index 0000000..304580a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.HttpUtility.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.dll new file mode 100644 index 0000000..af2973d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Windows.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Windows.dll new file mode 100644 index 0000000..cef4d1d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Windows.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Linq.dll new file mode 100644 index 0000000..e8daec3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.ReaderWriter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..214cd41 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.ReaderWriter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Serialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Serialization.dll new file mode 100644 index 0000000..157bf78 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.Serialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XDocument.dll new file mode 100644 index 0000000..85a4188 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.XDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..e4d8d00 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.XDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.dll new file mode 100644 index 0000000..aacf50d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XPath.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..24027fa Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlSerializer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..475cf19 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.XmlSerializer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.dll new file mode 100644 index 0000000..cb252ae Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.dll new file mode 100644 index 0000000..29ebdc4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/System.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/WindowsBase.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/WindowsBase.dll new file mode 100644 index 0000000..b9e297c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/WindowsBase.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.dll new file mode 100644 index 0000000..fae13d8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.pdb new file mode 100644 index 0000000..0e52647 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.dll new file mode 100644 index 0000000..340851e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.pdb new file mode 100644 index 0000000..8387319 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.DiskLruCache.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.dll new file mode 100644 index 0000000..af7531f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.pdb new file mode 100644 index 0000000..c352e77 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.GifDecoder.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.dll new file mode 100644 index 0000000..41a4d70 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.pdb new file mode 100644 index 0000000..0cdb61e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Android.Glide.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.dll new file mode 100644 index 0000000..2a54e39 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.pdb new file mode 100644 index 0000000..905bbf0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.dll new file mode 100644 index 0000000..40f86e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.pdb new file mode 100644 index 0000000..754f4d4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Activity.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.dll new file mode 100644 index 0000000..1764533 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.pdb new file mode 100644 index 0000000..fd86237 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Experimental.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.dll new file mode 100644 index 0000000..c515a88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.pdb new file mode 100644 index 0000000..6c15897 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.dll new file mode 100644 index 0000000..951a542 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.pdb new file mode 100644 index 0000000..a3db6c9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Annotation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.dll new file mode 100644 index 0000000..f3db3f1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb new file mode 100644 index 0000000..bb06846 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.dll new file mode 100644 index 0000000..d0126fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.pdb new file mode 100644 index 0000000..5a8ccda Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.AppCompat.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.dll new file mode 100644 index 0000000..ad7c987 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.pdb new file mode 100644 index 0000000..8ef5573 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.dll new file mode 100644 index 0000000..0f48bfb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.pdb new file mode 100644 index 0000000..dd6cd58 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Arch.Core.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.dll new file mode 100644 index 0000000..4500ce5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.pdb new file mode 100644 index 0000000..4fe5ee0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Browser.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.dll new file mode 100644 index 0000000..dda9ac6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.pdb new file mode 100644 index 0000000..68b532d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CardView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.dll new file mode 100644 index 0000000..2da1a87 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.pdb new file mode 100644 index 0000000..b794561 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.dll new file mode 100644 index 0000000..bf5e9a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.pdb new file mode 100644 index 0000000..17e5c4d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.dll new file mode 100644 index 0000000..4b9860b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.pdb new file mode 100644 index 0000000..88da291 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Collection.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.dll new file mode 100644 index 0000000..fca58c9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.pdb new file mode 100644 index 0000000..d164299 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Concurrent.Futures.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.dll new file mode 100644 index 0000000..c616cfe Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.pdb new file mode 100644 index 0000000..f3898db Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.dll new file mode 100644 index 0000000..377fef6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.pdb new file mode 100644 index 0000000..a8eecf7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ConstraintLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.dll new file mode 100644 index 0000000..e233515 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.pdb new file mode 100644 index 0000000..398f05d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CoordinatorLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.dll new file mode 100644 index 0000000..68e57bf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.pdb new file mode 100644 index 0000000..cc8373a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.Core.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.dll new file mode 100644 index 0000000..8d0fc3a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.pdb new file mode 100644 index 0000000..1e3fcc0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.ViewTree.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.dll new file mode 100644 index 0000000..aceb81f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.dll new file mode 100644 index 0000000..c05f8c1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.pdb new file mode 100644 index 0000000..81f5e29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CursorAdapter.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.dll new file mode 100644 index 0000000..2481598 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.pdb new file mode 100644 index 0000000..bd15232 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.PoolingContainer.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.dll new file mode 100644 index 0000000..bfcec0f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.pdb new file mode 100644 index 0000000..2e80311 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.CustomView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.dll new file mode 100644 index 0000000..682edd9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.pdb new file mode 100644 index 0000000..7cd458d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DrawerLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.dll new file mode 100644 index 0000000..758e36f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.pdb new file mode 100644 index 0000000..6ab3fc8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.DynamicAnimation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.dll new file mode 100644 index 0000000..1f88391 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb new file mode 100644 index 0000000..4fcc149 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.dll new file mode 100644 index 0000000..fd80cb7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.pdb new file mode 100644 index 0000000..661a03f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Emoji2.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.dll new file mode 100644 index 0000000..bdee9c6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.pdb new file mode 100644 index 0000000..71c981a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ExifInterface.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.dll new file mode 100644 index 0000000..4be255e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.pdb new file mode 100644 index 0000000..f09646d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.dll new file mode 100644 index 0000000..65ac3ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.pdb new file mode 100644 index 0000000..a7b6664 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Fragment.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.dll new file mode 100644 index 0000000..49a28af Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.pdb new file mode 100644 index 0000000..d606e70 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Interpolator.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll new file mode 100644 index 0000000..3e9e8d6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb new file mode 100644 index 0000000..2c55440 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.dll new file mode 100644 index 0000000..e928c4e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.pdb new file mode 100644 index 0000000..948e999 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll new file mode 100644 index 0000000..957a1ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb new file mode 100644 index 0000000..52e3b30 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll new file mode 100644 index 0000000..32ee9d3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb new file mode 100644 index 0000000..7991882 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.dll new file mode 100644 index 0000000..cfb4ce5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.pdb new file mode 100644 index 0000000..461a658 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.LiveData.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.dll new file mode 100644 index 0000000..8e67d26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.pdb new file mode 100644 index 0000000..8e6a81c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Process.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll new file mode 100644 index 0000000..97879da Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb new file mode 100644 index 0000000..1638037 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll new file mode 100644 index 0000000..f7a3306 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb new file mode 100644 index 0000000..a6144e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll new file mode 100644 index 0000000..9619ed8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb new file mode 100644 index 0000000..702f86f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.dll new file mode 100644 index 0000000..102e0e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.pdb new file mode 100644 index 0000000..ef22a0f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll new file mode 100644 index 0000000..48cfa2f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb new file mode 100644 index 0000000..c35857b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll new file mode 100644 index 0000000..663b6fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb new file mode 100644 index 0000000..217616c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.dll new file mode 100644 index 0000000..c40b543 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.pdb new file mode 100644 index 0000000..024d757 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModel.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll new file mode 100644 index 0000000..42a97a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb new file mode 100644 index 0000000..2c96c95 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.dll new file mode 100644 index 0000000..8f9553b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.pdb new file mode 100644 index 0000000..7d432d5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Loader.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.dll new file mode 100644 index 0000000..3976e2a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.pdb new file mode 100644 index 0000000..6d5ad6f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.dll new file mode 100644 index 0000000..0b81a1c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.pdb new file mode 100644 index 0000000..0d33313 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Fragment.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.dll new file mode 100644 index 0000000..6612c75 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.pdb new file mode 100644 index 0000000..0da16fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.dll new file mode 100644 index 0000000..686e1c8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.pdb new file mode 100644 index 0000000..ffc5c10 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Navigation.UI.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll new file mode 100644 index 0000000..d2d63d0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb new file mode 100644 index 0000000..ad94637 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.dll new file mode 100644 index 0000000..9b49d63 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.pdb new file mode 100644 index 0000000..d82e1ff Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.RecyclerView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.dll new file mode 100644 index 0000000..28d909f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.pdb new file mode 100644 index 0000000..88b6de6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ResourceInspection.Annotation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll new file mode 100644 index 0000000..a296109 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb new file mode 100644 index 0000000..6763bbf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.dll new file mode 100644 index 0000000..4c7f204 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.pdb new file mode 100644 index 0000000..70c7625 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SavedState.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.dll new file mode 100644 index 0000000..d05335e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.pdb new file mode 100644 index 0000000..af93f76 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Security.SecurityCrypto.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.dll new file mode 100644 index 0000000..c20a1d2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.pdb new file mode 100644 index 0000000..4141bec Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SlidingPaneLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.dll new file mode 100644 index 0000000..f974e56 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.pdb new file mode 100644 index 0000000..35c6af6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Startup.StartupRuntime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.dll new file mode 100644 index 0000000..3631d60 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.pdb new file mode 100644 index 0000000..56237e2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.SwipeRefreshLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.dll new file mode 100644 index 0000000..be3e0ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.pdb new file mode 100644 index 0000000..5bc46fe Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Tracing.Tracing.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.dll new file mode 100644 index 0000000..3665250 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.pdb new file mode 100644 index 0000000..e9b6f0e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Transition.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.dll new file mode 100644 index 0000000..bfce836 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.pdb new file mode 100644 index 0000000..2a7f34b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.Animated.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.dll new file mode 100644 index 0000000..af0c6c4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.pdb new file mode 100644 index 0000000..964f90d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VectorDrawable.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.dll new file mode 100644 index 0000000..29c3a51 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.pdb new file mode 100644 index 0000000..b16dcaf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.VersionedParcelable.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.dll new file mode 100644 index 0000000..e0e3d72 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.pdb new file mode 100644 index 0000000..f888671 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.dll new file mode 100644 index 0000000..2490792 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.pdb new file mode 100644 index 0000000..d7e75a2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.ViewPager2.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.dll new file mode 100644 index 0000000..2c12d20 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb new file mode 100644 index 0000000..4d78b54 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.dll new file mode 100644 index 0000000..b71bcf1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.pdb new file mode 100644 index 0000000..a14453c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.AndroidX.Window.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.dll new file mode 100644 index 0000000..3f8a129 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.pdb new file mode 100644 index 0000000..60ed538 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Android.Material.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.dll new file mode 100644 index 0000000..b4a5eb9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.pdb new file mode 100644 index 0000000..07f3377 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Crypto.Tink.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.dll new file mode 100644 index 0000000..e647cb3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.pdb new file mode 100644 index 0000000..576250d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.dll new file mode 100644 index 0000000..f303dd0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.pdb new file mode 100644 index 0000000..a5169f5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.ErrorProne.TypeAnnotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.dll new file mode 100644 index 0000000..0f958e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.pdb new file mode 100644 index 0000000..25c6fa7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Google.Guava.ListenableFuture.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.dll new file mode 100644 index 0000000..c2c0700 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.pdb new file mode 100644 index 0000000..09c4170 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.JSpecify.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.dll new file mode 100644 index 0000000..951536e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.pdb new file mode 100644 index 0000000..86d412f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Jetbrains.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.dll new file mode 100644 index 0000000..1892900 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.pdb new file mode 100644 index 0000000..d9774ab Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.Kotlin.StdLib.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.dll new file mode 100644 index 0000000..4895216 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.pdb new file mode 100644 index 0000000..1c08558 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.dll new file mode 100644 index 0000000..d31bd67 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.pdb new file mode 100644 index 0000000..3f60cb2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.AtomicFU.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.dll new file mode 100644 index 0000000..f274baf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.pdb new file mode 100644 index 0000000..7c85700 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.dll new file mode 100644 index 0000000..7453f68 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb new file mode 100644 index 0000000..1721cdf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.dll new file mode 100644 index 0000000..f96e312 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.pdb new file mode 100644 index 0000000..b1f7b5d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Coroutines.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.dll new file mode 100644 index 0000000..8b07d88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.pdb new file mode 100644 index 0000000..ee9a05d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.dll new file mode 100644 index 0000000..399c2fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.pdb new file mode 100644 index 0000000..2f77d5a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/Xamarin.KotlinX.Serialization.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/_Microsoft.Android.Resource.Designer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000..4c76c39 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/_Microsoft.Android.Resource.Designer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ar/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ar/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..cdebd31 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ar/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ca/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ca/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..d632fe9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ca/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.dll new file mode 100644 index 0000000..abfa238 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.pdb new file mode 100644 index 0000000..46fc1b1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/clipiFrontC.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/cs/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/cs/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..684a82a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/cs/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/da/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/da/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..a421976 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/da/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/de/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/de/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..06b35f2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/de/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/el/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/el/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..4df85cc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/el/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/es/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/es/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..5766f2b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/es/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..9be8dbf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..977165a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/fr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/he/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/he/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..ebdda4f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/he/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..958b249 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..8b53d61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hu/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hu/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..fce7599 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/hu/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/id/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/id/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..478e287 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/id/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/it/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/it/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..e467a0a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/it/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ja/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ja/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f02b514 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ja/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ko/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ko/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..3c6c27f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ko/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ms/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ms/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..1a149cc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ms/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/mscorlib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/mscorlib.dll new file mode 100644 index 0000000..f1d7f82 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/mscorlib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nb/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nb/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..4198545 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nb/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/netstandard.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/netstandard.dll new file mode 100644 index 0000000..c85e144 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/netstandard.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nl/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nl/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..219376d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/nl/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pl/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pl/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..c376c4b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pl/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt-BR/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt-BR/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..edea6a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt-BR/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..3118ea4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/pt/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ro/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ro/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..a1f53fa Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ro/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ru/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ru/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f9b9e1f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/ru/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sk/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sk/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..1afcc29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sk/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sv/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sv/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f4aeb44 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/sv/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/th/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/th/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..0172b47 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/th/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/tr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/tr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..248f090 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/tr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/uk/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/uk/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..bde7e37 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/uk/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/vi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/vi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..2bbd5a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/vi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-HK/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-HK/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..635d0a0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-HK/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hans/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hans/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..cec3037 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hans/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hant/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hant/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..965e9f5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/arm64-v8a/zh-Hant/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/machine.config b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/machine.config new file mode 100644 index 0000000..76ccdb4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/machine.config @@ -0,0 +1,273 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.dll new file mode 100644 index 0000000..3a7cf0c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.pdb new file mode 100644 index 0000000..542ac64 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/GoogleGson.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.dll new file mode 100644 index 0000000..88bb801 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.pdb new file mode 100644 index 0000000..ca0d10c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Java.Interop.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.dll new file mode 100644 index 0000000..1aece28 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.pdb new file mode 100644 index 0000000..8af7005 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Jsr305Binding.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Authorization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..da13d44 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Authorization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Forms.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..eb6d930 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..8031429 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.dll new file mode 100644 index 0000000..31370a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.pdb new file mode 100644 index 0000000..6b57065 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.Maui.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.dll new file mode 100644 index 0000000..1d86182 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.WebView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..1fda3e8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Components.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Metadata.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..786498a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.AspNetCore.Metadata.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.CSharp.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.CSharp.dll new file mode 100644 index 0000000..3478103 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.CSharp.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..17e344e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Binder.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..3ce312e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.FileExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..ab84af5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..093a57e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..53c19ab Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Configuration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..e7affaf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..6191756 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..d171940 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Composite.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..b36dad7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Embedded.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..db7233c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Physical.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..e901584 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileSystemGlobbing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..d3b7883 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Abstractions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..cb1d711 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Debug.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..f7bf1a6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..61d3a7e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Logging.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Options.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..bfb0647 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Options.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..b7e4481 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Extensions.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.JSInterop.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.JSInterop.dll new file mode 100644 index 0000000..6eaf789 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.JSInterop.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.dll new file mode 100644 index 0000000..7e43679 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.pdb new file mode 100644 index 0000000..958d87a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.Xaml.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.dll new file mode 100644 index 0000000..28a18e7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.pdb new file mode 100644 index 0000000..5730835 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Controls.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.dll new file mode 100644 index 0000000..8f99483 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.pdb new file mode 100644 index 0000000..00fb925 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Essentials.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.dll new file mode 100644 index 0000000..c229424 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.pdb new file mode 100644 index 0000000..8215b13 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.Graphics.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.dll new file mode 100644 index 0000000..2ce9d55 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.pdb new file mode 100644 index 0000000..7d49428 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Maui.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..b86545d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..6ab5c01 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.VisualBasic.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..74d3780 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Registry.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..c108aa9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Microsoft.Win32.Registry.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.dll new file mode 100644 index 0000000..a20c2f7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.pdb new file mode 100644 index 0000000..f6aa963 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Export.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.dll new file mode 100644 index 0000000..2204644 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.pdb new file mode 100644 index 0000000..f6ee74b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.dll new file mode 100644 index 0000000..2b416ed Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.pdb new file mode 100644 index 0000000..8ddac35 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Mono.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.AppContext.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.AppContext.dll new file mode 100644 index 0000000..a5e8add Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.AppContext.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Buffers.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Buffers.dll new file mode 100644 index 0000000..39a0068 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Buffers.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Concurrent.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..ee29003 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Concurrent.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Immutable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Immutable.dll new file mode 100644 index 0000000..ca3eef6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Immutable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.NonGeneric.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..43bbdec Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.NonGeneric.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Specialized.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Specialized.dll new file mode 100644 index 0000000..abfdc22 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.Specialized.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.dll new file mode 100644 index 0000000..7cc1142 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Collections.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..269c2b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.DataAnnotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..b9ef429 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.DataAnnotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.EventBasedAsync.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..604b022 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..c1b036e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.TypeConverter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..f43198a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.TypeConverter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.dll new file mode 100644 index 0000000..4c9e6b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ComponentModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Configuration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Configuration.dll new file mode 100644 index 0000000..ebb0cc9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Configuration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Console.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Console.dll new file mode 100644 index 0000000..824f239 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Console.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Core.dll new file mode 100644 index 0000000..f2f2238 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.Common.dll new file mode 100644 index 0000000..9b50b09 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.DataSetExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..5e70a14 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.DataSetExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.dll new file mode 100644 index 0000000..713ad51 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Data.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Contracts.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..a70a457 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Contracts.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Debug.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..77bbc8b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Debug.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.DiagnosticSource.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..962fc27 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.FileVersionInfo.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..5804c26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Process.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..cb84b05 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Process.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.StackTrace.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..0c18d01 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.StackTrace.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TextWriterTraceListener.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..6b25eb7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tools.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..a3642e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tools.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TraceSource.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..002eb26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.TraceSource.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tracing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5f2a9f4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Diagnostics.Tracing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..82f1acc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.dll new file mode 100644 index 0000000..98fcda1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Drawing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Dynamic.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..6c781bb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Dynamic.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Asn1.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Asn1.dll new file mode 100644 index 0000000..6d82cd2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Asn1.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Tar.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Tar.dll new file mode 100644 index 0000000..82846f0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Formats.Tar.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Calendars.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..2c8a9bb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Calendars.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..d713d29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.dll new file mode 100644 index 0000000..bcacbd4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Globalization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.Brotli.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..2bc8b1f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.Brotli.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.FileSystem.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..546db98 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.FileSystem.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.ZipFile.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..7c9a44c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.ZipFile.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.dll new file mode 100644 index 0000000..4dd87ff Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Compression.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..2bf7a7c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.DriveInfo.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..29491d8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d66143a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Watcher.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a0a1ded Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.Watcher.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.dll new file mode 100644 index 0000000..0ceb9de Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.FileSystem.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.IsolatedStorage.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..5519211 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.IsolatedStorage.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.MemoryMappedFiles.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..75acdf2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.MemoryMappedFiles.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipelines.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipelines.dll new file mode 100644 index 0000000..446f23a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipelines.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..0d42474 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.dll new file mode 100644 index 0000000..37711bf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.Pipes.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.UnmanagedMemoryStream.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..2e8a6bc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.dll new file mode 100644 index 0000000..db36918 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.IO.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Expressions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Expressions.dll new file mode 100644 index 0000000..1c4a812 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Expressions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Parallel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Parallel.dll new file mode 100644 index 0000000..76996e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Parallel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Queryable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Queryable.dll new file mode 100644 index 0000000..1307c6c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.Queryable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.dll new file mode 100644 index 0000000..7adcab6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Memory.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Memory.dll new file mode 100644 index 0000000..925e047 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Memory.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.Json.dll new file mode 100644 index 0000000..e4e8859 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.dll new file mode 100644 index 0000000..53ff746 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Http.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.HttpListener.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.HttpListener.dll new file mode 100644 index 0000000..1a3ee4d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.HttpListener.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Mail.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Mail.dll new file mode 100644 index 0000000..8c93bb4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Mail.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NameResolution.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NameResolution.dll new file mode 100644 index 0000000..61f6a61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NameResolution.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NetworkInformation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..2e3fc7b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.NetworkInformation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Ping.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Ping.dll new file mode 100644 index 0000000..8c1e354 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Ping.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Primitives.dll new file mode 100644 index 0000000..3a62565 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Quic.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Quic.dll new file mode 100644 index 0000000..8ddd9c4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Quic.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Requests.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Requests.dll new file mode 100644 index 0000000..71457dc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Requests.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Security.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Security.dll new file mode 100644 index 0000000..fa56915 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Security.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.ServicePoint.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..fb20853 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.ServicePoint.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Sockets.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Sockets.dll new file mode 100644 index 0000000..ac37e88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.Sockets.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebClient.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebClient.dll new file mode 100644 index 0000000..d8f7b33 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebClient.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebHeaderCollection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..de96c07 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebHeaderCollection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebProxy.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebProxy.dll new file mode 100644 index 0000000..fe7ad83 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebProxy.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.Client.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..c412204 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.Client.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.dll new file mode 100644 index 0000000..e70197f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.WebSockets.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.dll new file mode 100644 index 0000000..2fe8747 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Net.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.Vectors.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..15216b6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.Vectors.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.dll new file mode 100644 index 0000000..8635a91 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Numerics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ObjectModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ObjectModel.dll new file mode 100644 index 0000000..46c60b3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ObjectModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.CoreLib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.CoreLib.dll new file mode 100644 index 0000000..77ea36c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.CoreLib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.DataContractSerialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..e82b04a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.DataContractSerialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Uri.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Uri.dll new file mode 100644 index 0000000..fe04349 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Uri.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..df5ea64 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.dll new file mode 100644 index 0000000..da09f61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Private.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.DispatchProxy.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..4a89979 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.DispatchProxy.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.ILGeneration.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..5de6586 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.Lightweight.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..ec6b489 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.Lightweight.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.dll new file mode 100644 index 0000000..2585a2f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Emit.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..cdfa0b1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Metadata.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..21e6b94 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Metadata.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..6573819 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.TypeExtensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..88d7a65 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.TypeExtensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.dll new file mode 100644 index 0000000..4fcc113 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Reflection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Reader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Reader.dll new file mode 100644 index 0000000..298f20c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Reader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.ResourceManager.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..74bd51b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.ResourceManager.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Writer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Writer.dll new file mode 100644 index 0000000..81572d0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Resources.Writer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.Unsafe.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..4b8d278 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.VisualC.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..86b16a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..b2b619f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Handles.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Handles.dll new file mode 100644 index 0000000..bf738fc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Handles.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.JavaScript.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..dd853cb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.RuntimeInformation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..f4ae31d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ead9df8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.InteropServices.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Intrinsics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..1296bc8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Intrinsics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Loader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Loader.dll new file mode 100644 index 0000000..e595c21 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Loader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Numerics.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..2a8de7d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Numerics.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Formatters.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..e651420 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Formatters.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..ed19299 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..4089875 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..abcaa38 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..2ea5533 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.Serialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.dll new file mode 100644 index 0000000..3907a1c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.AccessControl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.AccessControl.dll new file mode 100644 index 0000000..d9db659 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.AccessControl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Claims.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Claims.dll new file mode 100644 index 0000000..829dccb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Claims.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Algorithms.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..9300bd3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Algorithms.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Cng.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..3eaa137 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Cng.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Csp.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..1a67be8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Csp.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Encoding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f1693e3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Encoding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.OpenSsl.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..4518e1e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Primitives.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..394a3ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.Primitives.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.X509Certificates.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..6d3021e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.dll new file mode 100644 index 0000000..c2ecc71 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Cryptography.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.Windows.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..13b931a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.Windows.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.dll new file mode 100644 index 0000000..9c2c066 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.Principal.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.SecureString.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.SecureString.dll new file mode 100644 index 0000000..636126a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.SecureString.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.dll new file mode 100644 index 0000000..c950fc2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Security.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceModel.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..38e15ed Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceModel.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceProcess.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceProcess.dll new file mode 100644 index 0000000..b22ce41 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ServiceProcess.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.CodePages.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..cdc41f6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.CodePages.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..f1645c0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.dll new file mode 100644 index 0000000..30951c8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encoding.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encodings.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..c52cc07 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Encodings.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Json.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Json.dll new file mode 100644 index 0000000..af5bbe3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.Json.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.RegularExpressions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..b58355b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Text.RegularExpressions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Channels.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Channels.dll new file mode 100644 index 0000000..f8eca3e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Channels.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Overlapped.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..6c779f2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Overlapped.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Dataflow.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6c427c3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Dataflow.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Extensions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..4593fdf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Extensions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Parallel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c15f2af Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.Parallel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.dll new file mode 100644 index 0000000..ee24ede Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Tasks.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Thread.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Thread.dll new file mode 100644 index 0000000..dcba6c1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Thread.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.ThreadPool.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..0c88435 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.ThreadPool.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Timer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Timer.dll new file mode 100644 index 0000000..a68771b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.Timer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.dll new file mode 100644 index 0000000..daff737 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Threading.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.Local.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.Local.dll new file mode 100644 index 0000000..3bd102e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.Local.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.dll new file mode 100644 index 0000000..99293d4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Transactions.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ValueTuple.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ValueTuple.dll new file mode 100644 index 0000000..82d1dd2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.ValueTuple.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.HttpUtility.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..304580a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.HttpUtility.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.dll new file mode 100644 index 0000000..af2973d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Web.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Windows.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Windows.dll new file mode 100644 index 0000000..cef4d1d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Windows.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Linq.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Linq.dll new file mode 100644 index 0000000..e8daec3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Linq.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.ReaderWriter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..214cd41 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.ReaderWriter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Serialization.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Serialization.dll new file mode 100644 index 0000000..157bf78 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.Serialization.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XDocument.dll new file mode 100644 index 0000000..85a4188 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.XDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..e4d8d00 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.XDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.dll new file mode 100644 index 0000000..aacf50d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XPath.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlDocument.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..24027fa Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlDocument.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlSerializer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..475cf19 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.XmlSerializer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.dll new file mode 100644 index 0000000..cb252ae Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.Xml.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.dll new file mode 100644 index 0000000..29ebdc4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/System.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/WindowsBase.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/WindowsBase.dll new file mode 100644 index 0000000..b9e297c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/WindowsBase.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.dll new file mode 100644 index 0000000..fae13d8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.pdb new file mode 100644 index 0000000..0e52647 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.dll new file mode 100644 index 0000000..340851e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.pdb new file mode 100644 index 0000000..8387319 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.DiskLruCache.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.dll new file mode 100644 index 0000000..af7531f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.pdb new file mode 100644 index 0000000..c352e77 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.GifDecoder.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.dll new file mode 100644 index 0000000..41a4d70 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.pdb new file mode 100644 index 0000000..0cdb61e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Android.Glide.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.dll new file mode 100644 index 0000000..2a54e39 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.pdb new file mode 100644 index 0000000..905bbf0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.dll new file mode 100644 index 0000000..40f86e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.pdb new file mode 100644 index 0000000..754f4d4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Activity.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.dll new file mode 100644 index 0000000..1764533 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.pdb new file mode 100644 index 0000000..fd86237 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Experimental.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.dll new file mode 100644 index 0000000..c515a88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.pdb new file mode 100644 index 0000000..6c15897 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.dll new file mode 100644 index 0000000..951a542 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.pdb new file mode 100644 index 0000000..a3db6c9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Annotation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.dll new file mode 100644 index 0000000..f3db3f1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb new file mode 100644 index 0000000..bb06846 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.dll new file mode 100644 index 0000000..d0126fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.pdb new file mode 100644 index 0000000..5a8ccda Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.AppCompat.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.dll new file mode 100644 index 0000000..ad7c987 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.pdb new file mode 100644 index 0000000..8ef5573 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.dll new file mode 100644 index 0000000..0f48bfb Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.pdb new file mode 100644 index 0000000..dd6cd58 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Arch.Core.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.dll new file mode 100644 index 0000000..4500ce5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.pdb new file mode 100644 index 0000000..4fe5ee0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Browser.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.dll new file mode 100644 index 0000000..dda9ac6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.pdb new file mode 100644 index 0000000..68b532d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CardView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.dll new file mode 100644 index 0000000..2da1a87 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.pdb new file mode 100644 index 0000000..b794561 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.dll new file mode 100644 index 0000000..bf5e9a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.pdb new file mode 100644 index 0000000..17e5c4d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.dll new file mode 100644 index 0000000..4b9860b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.pdb new file mode 100644 index 0000000..88da291 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Collection.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.dll new file mode 100644 index 0000000..fca58c9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.pdb new file mode 100644 index 0000000..d164299 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Concurrent.Futures.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.dll new file mode 100644 index 0000000..c616cfe Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.pdb new file mode 100644 index 0000000..f3898db Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.dll new file mode 100644 index 0000000..377fef6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.pdb new file mode 100644 index 0000000..a8eecf7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ConstraintLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.dll new file mode 100644 index 0000000..e233515 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.pdb new file mode 100644 index 0000000..398f05d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CoordinatorLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.dll new file mode 100644 index 0000000..68e57bf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.pdb new file mode 100644 index 0000000..cc8373a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.Core.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.dll new file mode 100644 index 0000000..8d0fc3a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.pdb new file mode 100644 index 0000000..1e3fcc0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.ViewTree.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.dll new file mode 100644 index 0000000..aceb81f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.dll new file mode 100644 index 0000000..c05f8c1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.pdb new file mode 100644 index 0000000..81f5e29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CursorAdapter.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.dll new file mode 100644 index 0000000..2481598 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.pdb new file mode 100644 index 0000000..bd15232 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.PoolingContainer.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.dll new file mode 100644 index 0000000..bfcec0f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.pdb new file mode 100644 index 0000000..2e80311 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.CustomView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.dll new file mode 100644 index 0000000..682edd9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.pdb new file mode 100644 index 0000000..7cd458d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DrawerLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.dll new file mode 100644 index 0000000..758e36f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.pdb new file mode 100644 index 0000000..6ab3fc8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.DynamicAnimation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.dll new file mode 100644 index 0000000..1f88391 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb new file mode 100644 index 0000000..4fcc149 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.dll new file mode 100644 index 0000000..fd80cb7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.pdb new file mode 100644 index 0000000..661a03f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Emoji2.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.dll new file mode 100644 index 0000000..bdee9c6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.pdb new file mode 100644 index 0000000..71c981a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ExifInterface.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.dll new file mode 100644 index 0000000..4be255e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.pdb new file mode 100644 index 0000000..f09646d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.dll new file mode 100644 index 0000000..65ac3ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.pdb new file mode 100644 index 0000000..a7b6664 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Fragment.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.dll new file mode 100644 index 0000000..49a28af Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.pdb new file mode 100644 index 0000000..d606e70 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Interpolator.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll new file mode 100644 index 0000000..3e9e8d6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb new file mode 100644 index 0000000..2c55440 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.dll new file mode 100644 index 0000000..e928c4e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.pdb new file mode 100644 index 0000000..948e999 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll new file mode 100644 index 0000000..957a1ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb new file mode 100644 index 0000000..52e3b30 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll new file mode 100644 index 0000000..32ee9d3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb new file mode 100644 index 0000000..7991882 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.dll new file mode 100644 index 0000000..cfb4ce5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.pdb new file mode 100644 index 0000000..461a658 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.LiveData.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.dll new file mode 100644 index 0000000..8e67d26 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.pdb new file mode 100644 index 0000000..8e6a81c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Process.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll new file mode 100644 index 0000000..97879da Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb new file mode 100644 index 0000000..1638037 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll new file mode 100644 index 0000000..f7a3306 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb new file mode 100644 index 0000000..a6144e0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll new file mode 100644 index 0000000..9619ed8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb new file mode 100644 index 0000000..702f86f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.dll new file mode 100644 index 0000000..102e0e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.pdb new file mode 100644 index 0000000..ef22a0f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll new file mode 100644 index 0000000..48cfa2f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb new file mode 100644 index 0000000..c35857b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll new file mode 100644 index 0000000..663b6fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb new file mode 100644 index 0000000..217616c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.dll new file mode 100644 index 0000000..c40b543 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.pdb new file mode 100644 index 0000000..024d757 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModel.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll new file mode 100644 index 0000000..42a97a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb new file mode 100644 index 0000000..2c96c95 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.dll new file mode 100644 index 0000000..8f9553b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.pdb new file mode 100644 index 0000000..7d432d5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Loader.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.dll new file mode 100644 index 0000000..3976e2a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.pdb new file mode 100644 index 0000000..6d5ad6f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Common.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.dll new file mode 100644 index 0000000..0b81a1c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.pdb new file mode 100644 index 0000000..0d33313 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Fragment.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.dll new file mode 100644 index 0000000..6612c75 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.pdb new file mode 100644 index 0000000..0da16fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.Runtime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.dll new file mode 100644 index 0000000..686e1c8 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.pdb new file mode 100644 index 0000000..ffc5c10 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Navigation.UI.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll new file mode 100644 index 0000000..d2d63d0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb new file mode 100644 index 0000000..ad94637 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.dll new file mode 100644 index 0000000..9b49d63 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.pdb new file mode 100644 index 0000000..d82e1ff Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.RecyclerView.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.dll new file mode 100644 index 0000000..28d909f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.pdb new file mode 100644 index 0000000..88b6de6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ResourceInspection.Annotation.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll new file mode 100644 index 0000000..a296109 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb new file mode 100644 index 0000000..6763bbf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.dll new file mode 100644 index 0000000..4c7f204 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.pdb new file mode 100644 index 0000000..70c7625 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SavedState.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.dll new file mode 100644 index 0000000..d05335e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.pdb new file mode 100644 index 0000000..af93f76 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Security.SecurityCrypto.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.dll new file mode 100644 index 0000000..c20a1d2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.pdb new file mode 100644 index 0000000..4141bec Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SlidingPaneLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.dll new file mode 100644 index 0000000..f974e56 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.pdb new file mode 100644 index 0000000..35c6af6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Startup.StartupRuntime.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.dll new file mode 100644 index 0000000..3631d60 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.pdb new file mode 100644 index 0000000..56237e2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.SwipeRefreshLayout.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.dll new file mode 100644 index 0000000..be3e0ea Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.pdb new file mode 100644 index 0000000..5bc46fe Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Tracing.Tracing.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.dll new file mode 100644 index 0000000..3665250 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.pdb new file mode 100644 index 0000000..e9b6f0e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Transition.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.dll new file mode 100644 index 0000000..bfce836 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.pdb new file mode 100644 index 0000000..2a7f34b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.Animated.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.dll new file mode 100644 index 0000000..af0c6c4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.pdb new file mode 100644 index 0000000..964f90d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VectorDrawable.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.dll new file mode 100644 index 0000000..29c3a51 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.pdb new file mode 100644 index 0000000..b16dcaf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.VersionedParcelable.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.dll new file mode 100644 index 0000000..e0e3d72 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.pdb new file mode 100644 index 0000000..f888671 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.dll new file mode 100644 index 0000000..2490792 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.pdb new file mode 100644 index 0000000..d7e75a2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.ViewPager2.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.dll new file mode 100644 index 0000000..2c12d20 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb new file mode 100644 index 0000000..4d78b54 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.dll new file mode 100644 index 0000000..b71bcf1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.pdb new file mode 100644 index 0000000..a14453c Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.AndroidX.Window.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.dll new file mode 100644 index 0000000..3f8a129 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.pdb new file mode 100644 index 0000000..60ed538 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Android.Material.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.dll new file mode 100644 index 0000000..b4a5eb9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.pdb new file mode 100644 index 0000000..07f3377 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Crypto.Tink.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.dll new file mode 100644 index 0000000..e647cb3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.pdb new file mode 100644 index 0000000..576250d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.dll new file mode 100644 index 0000000..f303dd0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.pdb new file mode 100644 index 0000000..a5169f5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.ErrorProne.TypeAnnotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.dll new file mode 100644 index 0000000..0f958e9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.pdb new file mode 100644 index 0000000..25c6fa7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Google.Guava.ListenableFuture.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.dll new file mode 100644 index 0000000..c2c0700 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.pdb new file mode 100644 index 0000000..09c4170 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.JSpecify.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.dll new file mode 100644 index 0000000..951536e Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.pdb new file mode 100644 index 0000000..86d412f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Jetbrains.Annotations.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.dll new file mode 100644 index 0000000..1892900 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.pdb new file mode 100644 index 0000000..d9774ab Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.Kotlin.StdLib.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.dll new file mode 100644 index 0000000..4895216 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.pdb new file mode 100644 index 0000000..1c08558 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.dll new file mode 100644 index 0000000..d31bd67 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.pdb new file mode 100644 index 0000000..3f60cb2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.AtomicFU.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.dll new file mode 100644 index 0000000..f274baf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.pdb new file mode 100644 index 0000000..7c85700 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Android.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.dll new file mode 100644 index 0000000..7453f68 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb new file mode 100644 index 0000000..1721cdf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.dll new file mode 100644 index 0000000..f96e312 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.pdb new file mode 100644 index 0000000..b1f7b5d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Coroutines.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.dll new file mode 100644 index 0000000..8b07d88 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.pdb new file mode 100644 index 0000000..ee9a05d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.Jvm.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.dll new file mode 100644 index 0000000..399c2fd Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.pdb new file mode 100644 index 0000000..2f77d5a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/Xamarin.KotlinX.Serialization.Core.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/_Microsoft.Android.Resource.Designer.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000..4c76c39 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/_Microsoft.Android.Resource.Designer.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ar/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ar/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..cdebd31 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ar/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ca/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ca/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..d632fe9 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ca/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.dll new file mode 100644 index 0000000..9e13381 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.pdb b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.pdb new file mode 100644 index 0000000..0207807 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/clipiFrontC.pdb differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/cs/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/cs/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..684a82a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/cs/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/da/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/da/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..a421976 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/da/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/de/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/de/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..06b35f2 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/de/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/el/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/el/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..4df85cc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/el/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/es/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/es/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..5766f2b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/es/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..9be8dbf Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..977165a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/fr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/he/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/he/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..ebdda4f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/he/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..958b249 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..8b53d61 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hu/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hu/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..fce7599 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/hu/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/id/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/id/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..478e287 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/id/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/it/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/it/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..e467a0a Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/it/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ja/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ja/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f02b514 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ja/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ko/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ko/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..3c6c27f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ko/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ms/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ms/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..1a149cc Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ms/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/mscorlib.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/mscorlib.dll new file mode 100644 index 0000000..f1d7f82 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/mscorlib.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nb/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nb/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..4198545 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nb/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/netstandard.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/netstandard.dll new file mode 100644 index 0000000..c85e144 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/netstandard.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nl/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nl/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..219376d Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/nl/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pl/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pl/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..c376c4b Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pl/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt-BR/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt-BR/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..edea6a7 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt-BR/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..3118ea4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/pt/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ro/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ro/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..a1f53fa Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ro/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ru/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ru/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f9b9e1f Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/ru/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sk/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sk/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..1afcc29 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sk/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sv/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sv/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..f4aeb44 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/sv/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/th/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/th/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..0172b47 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/th/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/tr/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/tr/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..248f090 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/tr/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/uk/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/uk/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..bde7e37 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/uk/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/vi/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/vi/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..2bbd5a3 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/vi/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-HK/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-HK/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..635d0a0 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-HK/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hans/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hans/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..cec3037 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hans/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hant/Microsoft.Maui.Controls.resources.dll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hant/Microsoft.Maui.Controls.resources.dll new file mode 100644 index 0000000..965e9f5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/assets/x86_64/zh-Hant/Microsoft.Maui.Controls.resources.dll differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.ll new file mode 100644 index 0000000..766fd07 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.ll @@ -0,0 +1,32 @@ +; ModuleID = 'compressed_assemblies.arm64-v8a.ll' +source_filename = "compressed_assemblies.arm64-v8a.ll" +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-android21" + +%struct.CompressedAssemblies = type { + i32, ; uint32_t count + ptr ; CompressedAssemblyDescriptor descriptors +} + +%struct.CompressedAssemblyDescriptor = type { + i32, ; uint32_t uncompressed_file_size + i1, ; bool loaded + ptr ; uint8_t data +} + +@compressed_assemblies = dso_local local_unnamed_addr global %struct.CompressedAssemblies zeroinitializer, align 8 + +; Metadata +!llvm.module.flags = !{!0, !1, !7, !8, !9, !10} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} +!7 = !{i32 1, !"branch-target-enforcement", i32 0} +!8 = !{i32 1, !"sign-return-address", i32 0} +!9 = !{i32 1, !"sign-return-address-all", i32 0} +!10 = !{i32 1, !"sign-return-address-with-bkey", i32 0} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.o b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.o new file mode 100644 index 0000000..afdc2f1 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/compressed_assemblies.arm64-v8a.o differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.ll new file mode 100644 index 0000000..339bd77 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.ll @@ -0,0 +1,4134 @@ +; ModuleID = 'environment.arm64-v8a.ll' +source_filename = "environment.arm64-v8a.ll" +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-android21" + +%struct.ApplicationConfig = type { + i1, ; bool uses_mono_llvm + i1, ; bool uses_mono_aot + i1, ; bool aot_lazy_load + i1, ; bool uses_assembly_preload + i1, ; bool broken_exception_transitions + i1, ; bool jni_add_native_method_registration_attribute_present + i1, ; bool have_runtime_config_blob + i1, ; bool have_assemblies_blob + i1, ; bool marshal_methods_enabled + i1, ; bool ignore_split_configs + i8, ; uint8_t bound_stream_io_exception_type + i32, ; uint32_t package_naming_policy + i32, ; uint32_t environment_variable_count + i32, ; uint32_t system_property_count + i32, ; uint32_t number_of_assemblies_in_apk + i32, ; uint32_t bundled_assembly_name_width + i32, ; uint32_t number_of_dso_cache_entries + i32, ; uint32_t number_of_aot_cache_entries + i32, ; uint32_t number_of_shared_libraries + i32, ; uint32_t android_runtime_jnienv_class_token + i32, ; uint32_t jnienv_initialize_method_token + i32, ; uint32_t jnienv_registerjninatives_method_token + i32, ; uint32_t jni_remapping_replacement_type_count + i32, ; uint32_t jni_remapping_replacement_method_index_entry_count + i32, ; uint32_t mono_components_mask + ptr ; char* android_package_name +} + +%struct.AssemblyStoreAssemblyDescriptor = type { + i32, ; uint32_t data_offset + i32, ; uint32_t data_size + i32, ; uint32_t debug_data_offset + i32, ; uint32_t debug_data_size + i32, ; uint32_t config_data_offset + i32 ; uint32_t config_data_size +} + +%struct.AssemblyStoreRuntimeData = type { + ptr, ; uint8_t data_start + i32, ; uint32_t assembly_count + i32, ; uint32_t index_entry_count + ptr ; AssemblyStoreAssemblyDescriptor assemblies +} + +%struct.AssemblyStoreSingleAssemblyRuntimeData = type { + ptr, ; uint8_t image_data + ptr, ; uint8_t debug_info_data + ptr, ; uint8_t config_data + ptr ; AssemblyStoreAssemblyDescriptor descriptor +} + +%struct.DSOApkEntry = type { + i64, ; uint64_t name_hash + i32, ; uint32_t offset + i32 ; int32_t fd +} + +%struct.DSOCacheEntry = type { + i64, ; uint64_t hash + i64, ; uint64_t real_name_hash + i1, ; bool ignore + ptr, ; char* name + ptr ; void* handle +} + +%struct.XamarinAndroidBundledAssembly = type { + i32, ; int32_t file_fd + ptr, ; char* file_name + i32, ; uint32_t data_offset + i32, ; uint32_t data_size + ptr, ; uint8_t data + i32, ; uint32_t name_length + ptr ; char* name +} + +; 0x25e6972616d58 +@format_tag = dso_local local_unnamed_addr constant i64 666756936985944, align 8 + +@mono_aot_mode_name = dso_local local_unnamed_addr constant ptr @.str.0, align 8 + +; Application environment variables array, name:value +@app_environment_variables = dso_local local_unnamed_addr constant [6 x ptr] [ + ptr @.env.0, ; 0 + ptr @.env.1, ; 1 + ptr @.env.2, ; 2 + ptr @.env.3, ; 3 + ptr @.env.4, ; 4 + ptr @.env.5 ; 5 +], align 8 + +; System properties defined by the application +@app_system_properties = dso_local local_unnamed_addr constant [0 x ptr] zeroinitializer, align 8 + +@application_config = dso_local local_unnamed_addr constant %struct.ApplicationConfig { + i1 false, ; bool uses_mono_llvm + i1 true, ; bool uses_mono_aot + i1 false, ; bool aot_lazy_load + i1 false, ; bool uses_assembly_preload + i1 false, ; bool broken_exception_transitions + i1 false, ; bool jni_add_native_method_registration_attribute_present + i1 true, ; bool have_runtime_config_blob + i1 false, ; bool have_assemblies_blob + i1 false, ; bool marshal_methods_enabled + i1 false, ; bool ignore_split_configs + i8 0, ; uint8_t bound_stream_io_exception_type + i32 3, ; uint32_t package_naming_policy + i32 6, ; uint32_t environment_variable_count + i32 0, ; uint32_t system_property_count + i32 333, ; uint32_t number_of_assemblies_in_apk + i32 68, ; uint32_t bundled_assembly_name_width + i32 40, ; uint32_t number_of_dso_cache_entries + i32 0, ; uint32_t number_of_aot_cache_entries + i32 10, ; uint32_t number_of_shared_libraries + i32 u0x0200135e, ; uint32_t android_runtime_jnienv_class_token + i32 u0x0601395a, ; uint32_t jnienv_initialize_method_token + i32 u0x06013959, ; uint32_t jnienv_registerjninatives_method_token + i32 0, ; uint32_t jni_remapping_replacement_type_count + i32 0, ; uint32_t jni_remapping_replacement_method_index_entry_count + i32 u0x00000003, ; uint32_t mono_components_mask + ptr @.ApplicationConfig.0_android_package_name; char* android_package_name +}, align 8 + +; DSO cache entries +@dso_cache = dso_local local_unnamed_addr global [40 x %struct.DSOCacheEntry] [ + %struct.DSOCacheEntry { + i64 u0x01848c0093f0afd8, ; from name: libSystem.Security.Cryptography.Native.Android + i64 u0x4818e42ca66bbd75, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.3_name, ; name: libSystem.Security.Cryptography.Native.Android.so + ptr null; void* handle + }, ; 0 + %struct.DSOCacheEntry { + i64 u0x04bb981b3c3ff40f, ; from name: System.Security.Cryptography.Native.Android.so + i64 u0x4818e42ca66bbd75, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.3_name, ; name: libSystem.Security.Cryptography.Native.Android.so + ptr null; void* handle + }, ; 1 + %struct.DSOCacheEntry { + i64 u0x0582d422de762780, ; from name: libmono-component-marshal-ilgen.so + i64 u0x0582d422de762780, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.6_name, ; name: libmono-component-marshal-ilgen.so + ptr null; void* handle + }, ; 2 + %struct.DSOCacheEntry { + i64 u0x07e1516b937259a4, ; from name: System.Globalization.Native.so + i64 u0x74b568291c419777, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.0_name, ; name: libSystem.Globalization.Native.so + ptr null; void* handle + }, ; 3 + %struct.DSOCacheEntry { + i64 u0x1a1918dd01662b19, ; from name: libmonosgen-2.0.so + i64 u0x1a1918dd01662b19, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.7_name, ; name: libmonosgen-2.0.so + ptr null; void* handle + }, ; 4 + %struct.DSOCacheEntry { + i64 u0x21cc3326a27c28e1, ; from name: xamarin-debug-app-helper.so + i64 u0x641102ea13f025b2, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.9_name, ; name: libxamarin-debug-app-helper.so + ptr null; void* handle + }, ; 5 + %struct.DSOCacheEntry { + i64 u0x28b5c8fca080abd5, ; from name: libSystem.Globalization.Native + i64 u0x74b568291c419777, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.0_name, ; name: libSystem.Globalization.Native.so + ptr null; void* handle + }, ; 6 + %struct.DSOCacheEntry { + i64 u0x2b87bb6ac8822015, ; from name: libmonodroid + i64 u0x4434c7fd110c8d8b, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.8_name, ; name: libmonodroid.so + ptr null; void* handle + }, ; 7 + %struct.DSOCacheEntry { + i64 u0x3807dd20062deb45, ; from name: monodroid + i64 u0x4434c7fd110c8d8b, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.8_name, ; name: libmonodroid.so + ptr null; void* handle + }, ; 8 + %struct.DSOCacheEntry { + i64 u0x40f32024ffd1c0be, ; from name: System.IO.Compression.Native.so + i64 u0xc3cb80650fe5a0ab, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.1_name, ; name: libSystem.IO.Compression.Native.so + ptr null; void* handle + }, ; 9 + %struct.DSOCacheEntry { + i64 u0x4434c7fd110c8d8b, ; from name: libmonodroid.so + i64 u0x4434c7fd110c8d8b, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.8_name, ; name: libmonodroid.so + ptr null; void* handle + }, ; 10 + %struct.DSOCacheEntry { + i64 u0x4818e42ca66bbd75, ; from name: libSystem.Security.Cryptography.Native.Android.so + i64 u0x4818e42ca66bbd75, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.3_name, ; name: libSystem.Security.Cryptography.Native.Android.so + ptr null; void* handle + }, ; 11 + %struct.DSOCacheEntry { + i64 u0x486aa459231fc98b, ; from name: mono-component-hot_reload + i64 u0xb9c2fcad5704a3c9, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.5_name, ; name: libmono-component-hot_reload.so + ptr null; void* handle + }, ; 12 + %struct.DSOCacheEntry { + i64 u0x49959b1b390dc809, ; from name: xamarin-debug-app-helper + i64 u0x641102ea13f025b2, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.9_name, ; name: libxamarin-debug-app-helper.so + ptr null; void* handle + }, ; 13 + %struct.DSOCacheEntry { + i64 u0x4cd7bd0032e920e1, ; from name: libSystem.Native + i64 u0xa337ccc8aef94267, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.2_name, ; name: libSystem.Native.so + ptr null; void* handle + }, ; 14 + %struct.DSOCacheEntry { + i64 u0x61c4cca6c77a9014, ; from name: libmonosgen-2.0 + i64 u0x1a1918dd01662b19, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.7_name, ; name: libmonosgen-2.0.so + ptr null; void* handle + }, ; 15 + %struct.DSOCacheEntry { + i64 u0x641102ea13f025b2, ; from name: libxamarin-debug-app-helper.so + i64 u0x641102ea13f025b2, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.9_name, ; name: libxamarin-debug-app-helper.so + ptr null; void* handle + }, ; 16 + %struct.DSOCacheEntry { + i64 u0x6f9c86874c77b639, ; from name: libmono-component-debugger.so + i64 u0x6f9c86874c77b639, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.4_name, ; name: libmono-component-debugger.so + ptr null; void* handle + }, ; 17 + %struct.DSOCacheEntry { + i64 u0x74b568291c419777, ; from name: libSystem.Globalization.Native.so + i64 u0x74b568291c419777, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.0_name, ; name: libSystem.Globalization.Native.so + ptr null; void* handle + }, ; 18 + %struct.DSOCacheEntry { + i64 u0x81bc2b0b52670f30, ; from name: System.Security.Cryptography.Native.Android + i64 u0x4818e42ca66bbd75, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.3_name, ; name: libSystem.Security.Cryptography.Native.Android.so + ptr null; void* handle + }, ; 19 + %struct.DSOCacheEntry { + i64 u0x9190f4cb761b1d3c, ; from name: libSystem.IO.Compression.Native + i64 u0xc3cb80650fe5a0ab, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.1_name, ; name: libSystem.IO.Compression.Native.so + ptr null; void* handle + }, ; 20 + %struct.DSOCacheEntry { + i64 u0x936d971cc035eac2, ; from name: mono-component-marshal-ilgen + i64 u0x0582d422de762780, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.6_name, ; name: libmono-component-marshal-ilgen.so + ptr null; void* handle + }, ; 21 + %struct.DSOCacheEntry { + i64 u0x9c62065cdbdf43a5, ; from name: monosgen-2.0 + i64 u0x1a1918dd01662b19, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.7_name, ; name: libmonosgen-2.0.so + ptr null; void* handle + }, ; 22 + %struct.DSOCacheEntry { + i64 u0x9ff54ae8a9311b68, ; from name: System.Native + i64 u0xa337ccc8aef94267, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.2_name, ; name: libSystem.Native.so + ptr null; void* handle + }, ; 23 + %struct.DSOCacheEntry { + i64 u0xa337ccc8aef94267, ; from name: libSystem.Native.so + i64 u0xa337ccc8aef94267, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.2_name, ; name: libSystem.Native.so + ptr null; void* handle + }, ; 24 + %struct.DSOCacheEntry { + i64 u0xa76ab5a3894f5a01, ; from name: System.Globalization.Native + i64 u0x74b568291c419777, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.0_name, ; name: libSystem.Globalization.Native.so + ptr null; void* handle + }, ; 25 + %struct.DSOCacheEntry { + i64 u0xab177aa6a32873ac, ; from name: monodroid.so + i64 u0x4434c7fd110c8d8b, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.8_name, ; name: libmonodroid.so + ptr null; void* handle + }, ; 26 + %struct.DSOCacheEntry { + i64 u0xb5c2ff9910024930, ; from name: libmono-component-debugger + i64 u0x6f9c86874c77b639, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.4_name, ; name: libmono-component-debugger.so + ptr null; void* handle + }, ; 27 + %struct.DSOCacheEntry { + i64 u0xb9c2fcad5704a3c9, ; from name: libmono-component-hot_reload.so + i64 u0xb9c2fcad5704a3c9, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.5_name, ; name: libmono-component-hot_reload.so + ptr null; void* handle + }, ; 28 + %struct.DSOCacheEntry { + i64 u0xb9c4d8821da5c5de, ; from name: mono-component-hot_reload.so + i64 u0xb9c2fcad5704a3c9, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.5_name, ; name: libmono-component-hot_reload.so + ptr null; void* handle + }, ; 29 + %struct.DSOCacheEntry { + i64 u0xc20cd752ee7ce28d, ; from name: libxamarin-debug-app-helper + i64 u0x641102ea13f025b2, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.9_name, ; name: libxamarin-debug-app-helper.so + ptr null; void* handle + }, ; 30 + %struct.DSOCacheEntry { + i64 u0xc3cb80650fe5a0ab, ; from name: libSystem.IO.Compression.Native.so + i64 u0xc3cb80650fe5a0ab, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.1_name, ; name: libSystem.IO.Compression.Native.so + ptr null; void* handle + }, ; 31 + %struct.DSOCacheEntry { + i64 u0xc7bf0aae66d69fe4, ; from name: mono-component-debugger.so + i64 u0x6f9c86874c77b639, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.4_name, ; name: libmono-component-debugger.so + ptr null; void* handle + }, ; 32 + %struct.DSOCacheEntry { + i64 u0xd334d108d628ab4f, ; from name: System.IO.Compression.Native + i64 u0xc3cb80650fe5a0ab, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.1_name, ; name: libSystem.IO.Compression.Native.so + ptr null; void* handle + }, ; 33 + %struct.DSOCacheEntry { + i64 u0xd565cc57ed541a90, ; from name: monosgen-2.0.so + i64 u0x1a1918dd01662b19, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.7_name, ; name: libmonosgen-2.0.so + ptr null; void* handle + }, ; 34 + %struct.DSOCacheEntry { + i64 u0xde69d0ab38ed00d3, ; from name: mono-component-debugger + i64 u0x6f9c86874c77b639, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.4_name, ; name: libmono-component-debugger.so + ptr null; void* handle + }, ; 35 + %struct.DSOCacheEntry { + i64 u0xde6fb4b955d66724, ; from name: libmono-component-marshal-ilgen + i64 u0x0582d422de762780, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.6_name, ; name: libmono-component-marshal-ilgen.so + ptr null; void* handle + }, ; 36 + %struct.DSOCacheEntry { + i64 u0xe02ec096c271894c, ; from name: libmono-component-hot_reload + i64 u0xb9c2fcad5704a3c9, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.5_name, ; name: libmono-component-hot_reload.so + ptr null; void* handle + }, ; 37 + %struct.DSOCacheEntry { + i64 u0xe0d15587b4505ecd, ; from name: mono-component-marshal-ilgen.so + i64 u0x0582d422de762780, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.6_name, ; name: libmono-component-marshal-ilgen.so + ptr null; void* handle + }, ; 38 + %struct.DSOCacheEntry { + i64 u0xecb906ed9649ed1c, ; from name: System.Native.so + i64 u0xa337ccc8aef94267, ; uint64_t real_name_hash + i1 false, ; bool ignore + ptr @.DSOCacheEntry.2_name, ; name: libSystem.Native.so + ptr null; void* handle + } ; 39 +], align 8 + +; AOT DSO cache entries +@aot_dso_cache = dso_local local_unnamed_addr global [0 x %struct.DSOCacheEntry] zeroinitializer, align 8 + +@dso_apk_entries = dso_local local_unnamed_addr global [10 x %struct.DSOApkEntry] zeroinitializer, align 8 + +@_XamarinAndroidBundledAssembly_file_name_0_0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_0_0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1_1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1_1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2_2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2_2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3_3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3_3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4_4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4_4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5_5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5_5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6_6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6_6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7_7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7_7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8_8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8_8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9_9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9_9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a_a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a_a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b_b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b_b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c_c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c_c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d_d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d_d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e_e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e_e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f_f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f_f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10_10 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10_10 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11_11 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11_11 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12_12 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12_12 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13_13 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13_13 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_14_14 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_14_14 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_15_15 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_15_15 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_16_16 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_16_16 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_17_17 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_17_17 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_18_18 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_18_18 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_19_19 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_19_19 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1a_1a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1a_1a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1b_1b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1b_1b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1c_1c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1c_1c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1d_1d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1d_1d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1e_1e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1e_1e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_1f_1f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_1f_1f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_20_20 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_20_20 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_21_21 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_21_21 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_22_22 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_22_22 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_23_23 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_23_23 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_24_24 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_24_24 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_25_25 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_25_25 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_26_26 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_26_26 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_27_27 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_27_27 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_28_28 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_28_28 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_29_29 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_29_29 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2a_2a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2a_2a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2b_2b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2b_2b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2c_2c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2c_2c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2d_2d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2d_2d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2e_2e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2e_2e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_2f_2f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_2f_2f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_30_30 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_30_30 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_31_31 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_31_31 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_32_32 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_32_32 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_33_33 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_33_33 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_34_34 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_34_34 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_35_35 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_35_35 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_36_36 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_36_36 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_37_37 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_37_37 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_38_38 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_38_38 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_39_39 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_39_39 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3a_3a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3a_3a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3b_3b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3b_3b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3c_3c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3c_3c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3d_3d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3d_3d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3e_3e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3e_3e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_3f_3f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_3f_3f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_40_40 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_40_40 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_41_41 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_41_41 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_42_42 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_42_42 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_43_43 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_43_43 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_44_44 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_44_44 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_45_45 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_45_45 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_46_46 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_46_46 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_47_47 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_47_47 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_48_48 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_48_48 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_49_49 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_49_49 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4a_4a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4a_4a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4b_4b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4b_4b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4c_4c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4c_4c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4d_4d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4d_4d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4e_4e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4e_4e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_4f_4f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_4f_4f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_50_50 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_50_50 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_51_51 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_51_51 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_52_52 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_52_52 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_53_53 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_53_53 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_54_54 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_54_54 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_55_55 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_55_55 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_56_56 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_56_56 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_57_57 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_57_57 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_58_58 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_58_58 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_59_59 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_59_59 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5a_5a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5a_5a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5b_5b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5b_5b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5c_5c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5c_5c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5d_5d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5d_5d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5e_5e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5e_5e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_5f_5f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_5f_5f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_60_60 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_60_60 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_61_61 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_61_61 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_62_62 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_62_62 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_63_63 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_63_63 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_64_64 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_64_64 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_65_65 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_65_65 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_66_66 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_66_66 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_67_67 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_67_67 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_68_68 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_68_68 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_69_69 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_69_69 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6a_6a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6a_6a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6b_6b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6b_6b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6c_6c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6c_6c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6d_6d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6d_6d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6e_6e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6e_6e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_6f_6f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_6f_6f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_70_70 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_70_70 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_71_71 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_71_71 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_72_72 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_72_72 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_73_73 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_73_73 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_74_74 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_74_74 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_75_75 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_75_75 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_76_76 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_76_76 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_77_77 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_77_77 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_78_78 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_78_78 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_79_79 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_79_79 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7a_7a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7a_7a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7b_7b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7b_7b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7c_7c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7c_7c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7d_7d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7d_7d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7e_7e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7e_7e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_7f_7f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_7f_7f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_80_80 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_80_80 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_81_81 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_81_81 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_82_82 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_82_82 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_83_83 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_83_83 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_84_84 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_84_84 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_85_85 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_85_85 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_86_86 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_86_86 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_87_87 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_87_87 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_88_88 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_88_88 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_89_89 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_89_89 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8a_8a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8a_8a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8b_8b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8b_8b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8c_8c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8c_8c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8d_8d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8d_8d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8e_8e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8e_8e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_8f_8f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_8f_8f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_90_90 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_90_90 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_91_91 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_91_91 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_92_92 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_92_92 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_93_93 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_93_93 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_94_94 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_94_94 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_95_95 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_95_95 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_96_96 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_96_96 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_97_97 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_97_97 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_98_98 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_98_98 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_99_99 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_99_99 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9a_9a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9a_9a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9b_9b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9b_9b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9c_9c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9c_9c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9d_9d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9d_9d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9e_9e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9e_9e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_9f_9f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_9f_9f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a0_a0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a0_a0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a1_a1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a1_a1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a2_a2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a2_a2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a3_a3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a3_a3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a4_a4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a4_a4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a5_a5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a5_a5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a6_a6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a6_a6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a7_a7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a7_a7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a8_a8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a8_a8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_a9_a9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_a9_a9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_aa_aa = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_aa_aa = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ab_ab = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ab_ab = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ac_ac = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ac_ac = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ad_ad = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ad_ad = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ae_ae = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ae_ae = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_af_af = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_af_af = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b0_b0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b0_b0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b1_b1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b1_b1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b2_b2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b2_b2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b3_b3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b3_b3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b4_b4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b4_b4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b5_b5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b5_b5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b6_b6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b6_b6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b7_b7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b7_b7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b8_b8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b8_b8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_b9_b9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_b9_b9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ba_ba = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ba_ba = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_bb_bb = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_bb_bb = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_bc_bc = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_bc_bc = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_bd_bd = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_bd_bd = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_be_be = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_be_be = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_bf_bf = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_bf_bf = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c0_c0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c0_c0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c1_c1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c1_c1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c2_c2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c2_c2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c3_c3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c3_c3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c4_c4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c4_c4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c5_c5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c5_c5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c6_c6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c6_c6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c7_c7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c7_c7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c8_c8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c8_c8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_c9_c9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_c9_c9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ca_ca = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ca_ca = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_cb_cb = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_cb_cb = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_cc_cc = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_cc_cc = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_cd_cd = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_cd_cd = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ce_ce = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ce_ce = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_cf_cf = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_cf_cf = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d0_d0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d0_d0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d1_d1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d1_d1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d2_d2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d2_d2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d3_d3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d3_d3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d4_d4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d4_d4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d5_d5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d5_d5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d6_d6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d6_d6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d7_d7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d7_d7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d8_d8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d8_d8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_d9_d9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_d9_d9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_da_da = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_da_da = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_db_db = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_db_db = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_dc_dc = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_dc_dc = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_dd_dd = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_dd_dd = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_de_de = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_de_de = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_df_df = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_df_df = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e0_e0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e0_e0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e1_e1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e1_e1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e2_e2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e2_e2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e3_e3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e3_e3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e4_e4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e4_e4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e5_e5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e5_e5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e6_e6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e6_e6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e7_e7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e7_e7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e8_e8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e8_e8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_e9_e9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_e9_e9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ea_ea = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ea_ea = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_eb_eb = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_eb_eb = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ec_ec = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ec_ec = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ed_ed = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ed_ed = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ee_ee = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ee_ee = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ef_ef = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ef_ef = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f0_f0 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f0_f0 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f1_f1 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f1_f1 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f2_f2 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f2_f2 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f3_f3 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f3_f3 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f4_f4 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f4_f4 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f5_f5 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f5_f5 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f6_f6 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f6_f6 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f7_f7 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f7_f7 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f8_f8 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f8_f8 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_f9_f9 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_f9_f9 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_fa_fa = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_fa_fa = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_fb_fb = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_fb_fb = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_fc_fc = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_fc_fc = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_fd_fd = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_fd_fd = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_fe_fe = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_fe_fe = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_ff_ff = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_ff_ff = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_100_100 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_100_100 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_101_101 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_101_101 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_102_102 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_102_102 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_103_103 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_103_103 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_104_104 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_104_104 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_105_105 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_105_105 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_106_106 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_106_106 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_107_107 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_107_107 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_108_108 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_108_108 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_109_109 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_109_109 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10a_10a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10a_10a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10b_10b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10b_10b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10c_10c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10c_10c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10d_10d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10d_10d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10e_10e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10e_10e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_10f_10f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_10f_10f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_110_110 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_110_110 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_111_111 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_111_111 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_112_112 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_112_112 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_113_113 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_113_113 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_114_114 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_114_114 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_115_115 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_115_115 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_116_116 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_116_116 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_117_117 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_117_117 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_118_118 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_118_118 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_119_119 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_119_119 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11a_11a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11a_11a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11b_11b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11b_11b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11c_11c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11c_11c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11d_11d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11d_11d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11e_11e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11e_11e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_11f_11f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_11f_11f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_120_120 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_120_120 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_121_121 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_121_121 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_122_122 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_122_122 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_123_123 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_123_123 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_124_124 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_124_124 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_125_125 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_125_125 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_126_126 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_126_126 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_127_127 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_127_127 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_128_128 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_128_128 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_129_129 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_129_129 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12a_12a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12a_12a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12b_12b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12b_12b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12c_12c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12c_12c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12d_12d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12d_12d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12e_12e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12e_12e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_12f_12f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_12f_12f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_130_130 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_130_130 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_131_131 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_131_131 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_132_132 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_132_132 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_133_133 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_133_133 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_134_134 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_134_134 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_135_135 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_135_135 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_136_136 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_136_136 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_137_137 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_137_137 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_138_138 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_138_138 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_139_139 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_139_139 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13a_13a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13a_13a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13b_13b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13b_13b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13c_13c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13c_13c = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13d_13d = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13d_13d = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13e_13e = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13e_13e = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_13f_13f = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_13f_13f = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_140_140 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_140_140 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_141_141 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_141_141 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_142_142 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_142_142 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_143_143 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_143_143 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_144_144 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_144_144 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_145_145 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_145_145 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_146_146 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_146_146 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_147_147 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_147_147 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_148_148 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_148_148 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_149_149 = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_149_149 = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_14a_14a = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_14a_14a = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_14b_14b = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_14b_14b = internal dso_local global [68 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_file_name_14c_14c = internal dso_local global [76 x i8] zeroinitializer, align 1 +@_XamarinAndroidBundledAssembly_name_14c_14c = internal dso_local global [68 x i8] zeroinitializer, align 1 + +; Bundled assembly name buffers, all 68 bytes long +@bundled_assemblies = dso_local local_unnamed_addr global [333 x %struct.XamarinAndroidBundledAssembly] [ + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_0_0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_0_0; char* name + }, ; 0 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1_1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1_1; char* name + }, ; 1 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2_2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2_2; char* name + }, ; 2 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3_3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3_3; char* name + }, ; 3 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4_4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4_4; char* name + }, ; 4 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5_5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5_5; char* name + }, ; 5 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6_6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6_6; char* name + }, ; 6 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7_7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7_7; char* name + }, ; 7 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8_8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8_8; char* name + }, ; 8 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9_9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9_9; char* name + }, ; 9 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a_a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a_a; char* name + }, ; 10 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b_b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b_b; char* name + }, ; 11 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c_c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c_c; char* name + }, ; 12 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d_d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d_d; char* name + }, ; 13 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e_e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e_e; char* name + }, ; 14 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f_f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f_f; char* name + }, ; 15 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10_10, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10_10; char* name + }, ; 16 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11_11, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11_11; char* name + }, ; 17 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12_12, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12_12; char* name + }, ; 18 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13_13, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13_13; char* name + }, ; 19 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_14_14, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_14_14; char* name + }, ; 20 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_15_15, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_15_15; char* name + }, ; 21 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_16_16, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_16_16; char* name + }, ; 22 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_17_17, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_17_17; char* name + }, ; 23 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_18_18, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_18_18; char* name + }, ; 24 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_19_19, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_19_19; char* name + }, ; 25 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1a_1a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1a_1a; char* name + }, ; 26 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1b_1b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1b_1b; char* name + }, ; 27 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1c_1c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1c_1c; char* name + }, ; 28 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1d_1d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1d_1d; char* name + }, ; 29 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1e_1e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1e_1e; char* name + }, ; 30 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_1f_1f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_1f_1f; char* name + }, ; 31 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_20_20, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_20_20; char* name + }, ; 32 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_21_21, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_21_21; char* name + }, ; 33 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_22_22, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_22_22; char* name + }, ; 34 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_23_23, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_23_23; char* name + }, ; 35 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_24_24, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_24_24; char* name + }, ; 36 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_25_25, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_25_25; char* name + }, ; 37 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_26_26, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_26_26; char* name + }, ; 38 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_27_27, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_27_27; char* name + }, ; 39 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_28_28, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_28_28; char* name + }, ; 40 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_29_29, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_29_29; char* name + }, ; 41 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2a_2a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2a_2a; char* name + }, ; 42 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2b_2b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2b_2b; char* name + }, ; 43 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2c_2c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2c_2c; char* name + }, ; 44 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2d_2d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2d_2d; char* name + }, ; 45 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2e_2e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2e_2e; char* name + }, ; 46 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_2f_2f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_2f_2f; char* name + }, ; 47 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_30_30, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_30_30; char* name + }, ; 48 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_31_31, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_31_31; char* name + }, ; 49 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_32_32, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_32_32; char* name + }, ; 50 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_33_33, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_33_33; char* name + }, ; 51 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_34_34, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_34_34; char* name + }, ; 52 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_35_35, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_35_35; char* name + }, ; 53 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_36_36, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_36_36; char* name + }, ; 54 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_37_37, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_37_37; char* name + }, ; 55 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_38_38, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_38_38; char* name + }, ; 56 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_39_39, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_39_39; char* name + }, ; 57 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3a_3a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3a_3a; char* name + }, ; 58 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3b_3b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3b_3b; char* name + }, ; 59 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3c_3c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3c_3c; char* name + }, ; 60 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3d_3d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3d_3d; char* name + }, ; 61 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3e_3e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3e_3e; char* name + }, ; 62 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_3f_3f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_3f_3f; char* name + }, ; 63 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_40_40, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_40_40; char* name + }, ; 64 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_41_41, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_41_41; char* name + }, ; 65 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_42_42, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_42_42; char* name + }, ; 66 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_43_43, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_43_43; char* name + }, ; 67 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_44_44, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_44_44; char* name + }, ; 68 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_45_45, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_45_45; char* name + }, ; 69 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_46_46, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_46_46; char* name + }, ; 70 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_47_47, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_47_47; char* name + }, ; 71 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_48_48, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_48_48; char* name + }, ; 72 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_49_49, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_49_49; char* name + }, ; 73 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4a_4a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4a_4a; char* name + }, ; 74 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4b_4b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4b_4b; char* name + }, ; 75 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4c_4c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4c_4c; char* name + }, ; 76 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4d_4d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4d_4d; char* name + }, ; 77 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4e_4e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4e_4e; char* name + }, ; 78 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_4f_4f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_4f_4f; char* name + }, ; 79 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_50_50, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_50_50; char* name + }, ; 80 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_51_51, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_51_51; char* name + }, ; 81 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_52_52, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_52_52; char* name + }, ; 82 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_53_53, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_53_53; char* name + }, ; 83 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_54_54, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_54_54; char* name + }, ; 84 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_55_55, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_55_55; char* name + }, ; 85 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_56_56, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_56_56; char* name + }, ; 86 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_57_57, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_57_57; char* name + }, ; 87 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_58_58, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_58_58; char* name + }, ; 88 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_59_59, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_59_59; char* name + }, ; 89 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5a_5a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5a_5a; char* name + }, ; 90 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5b_5b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5b_5b; char* name + }, ; 91 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5c_5c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5c_5c; char* name + }, ; 92 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5d_5d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5d_5d; char* name + }, ; 93 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5e_5e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5e_5e; char* name + }, ; 94 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_5f_5f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_5f_5f; char* name + }, ; 95 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_60_60, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_60_60; char* name + }, ; 96 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_61_61, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_61_61; char* name + }, ; 97 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_62_62, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_62_62; char* name + }, ; 98 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_63_63, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_63_63; char* name + }, ; 99 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_64_64, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_64_64; char* name + }, ; 100 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_65_65, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_65_65; char* name + }, ; 101 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_66_66, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_66_66; char* name + }, ; 102 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_67_67, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_67_67; char* name + }, ; 103 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_68_68, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_68_68; char* name + }, ; 104 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_69_69, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_69_69; char* name + }, ; 105 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6a_6a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6a_6a; char* name + }, ; 106 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6b_6b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6b_6b; char* name + }, ; 107 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6c_6c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6c_6c; char* name + }, ; 108 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6d_6d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6d_6d; char* name + }, ; 109 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6e_6e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6e_6e; char* name + }, ; 110 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_6f_6f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_6f_6f; char* name + }, ; 111 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_70_70, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_70_70; char* name + }, ; 112 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_71_71, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_71_71; char* name + }, ; 113 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_72_72, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_72_72; char* name + }, ; 114 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_73_73, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_73_73; char* name + }, ; 115 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_74_74, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_74_74; char* name + }, ; 116 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_75_75, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_75_75; char* name + }, ; 117 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_76_76, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_76_76; char* name + }, ; 118 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_77_77, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_77_77; char* name + }, ; 119 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_78_78, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_78_78; char* name + }, ; 120 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_79_79, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_79_79; char* name + }, ; 121 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7a_7a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7a_7a; char* name + }, ; 122 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7b_7b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7b_7b; char* name + }, ; 123 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7c_7c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7c_7c; char* name + }, ; 124 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7d_7d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7d_7d; char* name + }, ; 125 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7e_7e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7e_7e; char* name + }, ; 126 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_7f_7f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_7f_7f; char* name + }, ; 127 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_80_80, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_80_80; char* name + }, ; 128 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_81_81, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_81_81; char* name + }, ; 129 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_82_82, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_82_82; char* name + }, ; 130 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_83_83, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_83_83; char* name + }, ; 131 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_84_84, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_84_84; char* name + }, ; 132 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_85_85, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_85_85; char* name + }, ; 133 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_86_86, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_86_86; char* name + }, ; 134 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_87_87, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_87_87; char* name + }, ; 135 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_88_88, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_88_88; char* name + }, ; 136 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_89_89, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_89_89; char* name + }, ; 137 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8a_8a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8a_8a; char* name + }, ; 138 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8b_8b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8b_8b; char* name + }, ; 139 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8c_8c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8c_8c; char* name + }, ; 140 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8d_8d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8d_8d; char* name + }, ; 141 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8e_8e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8e_8e; char* name + }, ; 142 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_8f_8f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_8f_8f; char* name + }, ; 143 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_90_90, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_90_90; char* name + }, ; 144 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_91_91, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_91_91; char* name + }, ; 145 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_92_92, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_92_92; char* name + }, ; 146 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_93_93, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_93_93; char* name + }, ; 147 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_94_94, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_94_94; char* name + }, ; 148 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_95_95, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_95_95; char* name + }, ; 149 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_96_96, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_96_96; char* name + }, ; 150 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_97_97, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_97_97; char* name + }, ; 151 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_98_98, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_98_98; char* name + }, ; 152 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_99_99, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_99_99; char* name + }, ; 153 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9a_9a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9a_9a; char* name + }, ; 154 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9b_9b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9b_9b; char* name + }, ; 155 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9c_9c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9c_9c; char* name + }, ; 156 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9d_9d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9d_9d; char* name + }, ; 157 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9e_9e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9e_9e; char* name + }, ; 158 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_9f_9f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_9f_9f; char* name + }, ; 159 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a0_a0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a0_a0; char* name + }, ; 160 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a1_a1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a1_a1; char* name + }, ; 161 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a2_a2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a2_a2; char* name + }, ; 162 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a3_a3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a3_a3; char* name + }, ; 163 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a4_a4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a4_a4; char* name + }, ; 164 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a5_a5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a5_a5; char* name + }, ; 165 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a6_a6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a6_a6; char* name + }, ; 166 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a7_a7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a7_a7; char* name + }, ; 167 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a8_a8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a8_a8; char* name + }, ; 168 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_a9_a9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_a9_a9; char* name + }, ; 169 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_aa_aa, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_aa_aa; char* name + }, ; 170 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ab_ab, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ab_ab; char* name + }, ; 171 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ac_ac, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ac_ac; char* name + }, ; 172 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ad_ad, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ad_ad; char* name + }, ; 173 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ae_ae, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ae_ae; char* name + }, ; 174 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_af_af, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_af_af; char* name + }, ; 175 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b0_b0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b0_b0; char* name + }, ; 176 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b1_b1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b1_b1; char* name + }, ; 177 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b2_b2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b2_b2; char* name + }, ; 178 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b3_b3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b3_b3; char* name + }, ; 179 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b4_b4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b4_b4; char* name + }, ; 180 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b5_b5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b5_b5; char* name + }, ; 181 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b6_b6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b6_b6; char* name + }, ; 182 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b7_b7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b7_b7; char* name + }, ; 183 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b8_b8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b8_b8; char* name + }, ; 184 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_b9_b9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_b9_b9; char* name + }, ; 185 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ba_ba, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ba_ba; char* name + }, ; 186 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_bb_bb, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_bb_bb; char* name + }, ; 187 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_bc_bc, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_bc_bc; char* name + }, ; 188 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_bd_bd, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_bd_bd; char* name + }, ; 189 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_be_be, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_be_be; char* name + }, ; 190 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_bf_bf, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_bf_bf; char* name + }, ; 191 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c0_c0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c0_c0; char* name + }, ; 192 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c1_c1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c1_c1; char* name + }, ; 193 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c2_c2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c2_c2; char* name + }, ; 194 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c3_c3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c3_c3; char* name + }, ; 195 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c4_c4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c4_c4; char* name + }, ; 196 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c5_c5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c5_c5; char* name + }, ; 197 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c6_c6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c6_c6; char* name + }, ; 198 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c7_c7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c7_c7; char* name + }, ; 199 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c8_c8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c8_c8; char* name + }, ; 200 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_c9_c9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_c9_c9; char* name + }, ; 201 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ca_ca, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ca_ca; char* name + }, ; 202 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_cb_cb, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_cb_cb; char* name + }, ; 203 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_cc_cc, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_cc_cc; char* name + }, ; 204 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_cd_cd, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_cd_cd; char* name + }, ; 205 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ce_ce, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ce_ce; char* name + }, ; 206 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_cf_cf, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_cf_cf; char* name + }, ; 207 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d0_d0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d0_d0; char* name + }, ; 208 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d1_d1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d1_d1; char* name + }, ; 209 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d2_d2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d2_d2; char* name + }, ; 210 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d3_d3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d3_d3; char* name + }, ; 211 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d4_d4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d4_d4; char* name + }, ; 212 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d5_d5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d5_d5; char* name + }, ; 213 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d6_d6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d6_d6; char* name + }, ; 214 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d7_d7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d7_d7; char* name + }, ; 215 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d8_d8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d8_d8; char* name + }, ; 216 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_d9_d9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_d9_d9; char* name + }, ; 217 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_da_da, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_da_da; char* name + }, ; 218 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_db_db, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_db_db; char* name + }, ; 219 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_dc_dc, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_dc_dc; char* name + }, ; 220 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_dd_dd, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_dd_dd; char* name + }, ; 221 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_de_de, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_de_de; char* name + }, ; 222 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_df_df, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_df_df; char* name + }, ; 223 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e0_e0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e0_e0; char* name + }, ; 224 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e1_e1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e1_e1; char* name + }, ; 225 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e2_e2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e2_e2; char* name + }, ; 226 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e3_e3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e3_e3; char* name + }, ; 227 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e4_e4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e4_e4; char* name + }, ; 228 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e5_e5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e5_e5; char* name + }, ; 229 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e6_e6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e6_e6; char* name + }, ; 230 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e7_e7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e7_e7; char* name + }, ; 231 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e8_e8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e8_e8; char* name + }, ; 232 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_e9_e9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_e9_e9; char* name + }, ; 233 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ea_ea, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ea_ea; char* name + }, ; 234 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_eb_eb, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_eb_eb; char* name + }, ; 235 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ec_ec, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ec_ec; char* name + }, ; 236 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ed_ed, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ed_ed; char* name + }, ; 237 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ee_ee, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ee_ee; char* name + }, ; 238 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ef_ef, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ef_ef; char* name + }, ; 239 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f0_f0, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f0_f0; char* name + }, ; 240 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f1_f1, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f1_f1; char* name + }, ; 241 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f2_f2, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f2_f2; char* name + }, ; 242 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f3_f3, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f3_f3; char* name + }, ; 243 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f4_f4, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f4_f4; char* name + }, ; 244 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f5_f5, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f5_f5; char* name + }, ; 245 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f6_f6, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f6_f6; char* name + }, ; 246 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f7_f7, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f7_f7; char* name + }, ; 247 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f8_f8, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f8_f8; char* name + }, ; 248 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_f9_f9, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_f9_f9; char* name + }, ; 249 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_fa_fa, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_fa_fa; char* name + }, ; 250 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_fb_fb, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_fb_fb; char* name + }, ; 251 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_fc_fc, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_fc_fc; char* name + }, ; 252 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_fd_fd, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_fd_fd; char* name + }, ; 253 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_fe_fe, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_fe_fe; char* name + }, ; 254 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_ff_ff, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_ff_ff; char* name + }, ; 255 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_100_100, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_100_100; char* name + }, ; 256 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_101_101, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_101_101; char* name + }, ; 257 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_102_102, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_102_102; char* name + }, ; 258 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_103_103, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_103_103; char* name + }, ; 259 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_104_104, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_104_104; char* name + }, ; 260 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_105_105, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_105_105; char* name + }, ; 261 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_106_106, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_106_106; char* name + }, ; 262 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_107_107, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_107_107; char* name + }, ; 263 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_108_108, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_108_108; char* name + }, ; 264 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_109_109, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_109_109; char* name + }, ; 265 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10a_10a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10a_10a; char* name + }, ; 266 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10b_10b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10b_10b; char* name + }, ; 267 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10c_10c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10c_10c; char* name + }, ; 268 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10d_10d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10d_10d; char* name + }, ; 269 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10e_10e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10e_10e; char* name + }, ; 270 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_10f_10f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_10f_10f; char* name + }, ; 271 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_110_110, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_110_110; char* name + }, ; 272 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_111_111, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_111_111; char* name + }, ; 273 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_112_112, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_112_112; char* name + }, ; 274 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_113_113, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_113_113; char* name + }, ; 275 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_114_114, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_114_114; char* name + }, ; 276 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_115_115, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_115_115; char* name + }, ; 277 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_116_116, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_116_116; char* name + }, ; 278 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_117_117, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_117_117; char* name + }, ; 279 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_118_118, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_118_118; char* name + }, ; 280 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_119_119, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_119_119; char* name + }, ; 281 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11a_11a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11a_11a; char* name + }, ; 282 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11b_11b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11b_11b; char* name + }, ; 283 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11c_11c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11c_11c; char* name + }, ; 284 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11d_11d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11d_11d; char* name + }, ; 285 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11e_11e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11e_11e; char* name + }, ; 286 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_11f_11f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_11f_11f; char* name + }, ; 287 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_120_120, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_120_120; char* name + }, ; 288 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_121_121, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_121_121; char* name + }, ; 289 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_122_122, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_122_122; char* name + }, ; 290 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_123_123, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_123_123; char* name + }, ; 291 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_124_124, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_124_124; char* name + }, ; 292 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_125_125, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_125_125; char* name + }, ; 293 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_126_126, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_126_126; char* name + }, ; 294 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_127_127, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_127_127; char* name + }, ; 295 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_128_128, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_128_128; char* name + }, ; 296 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_129_129, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_129_129; char* name + }, ; 297 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12a_12a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12a_12a; char* name + }, ; 298 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12b_12b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12b_12b; char* name + }, ; 299 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12c_12c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12c_12c; char* name + }, ; 300 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12d_12d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12d_12d; char* name + }, ; 301 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12e_12e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12e_12e; char* name + }, ; 302 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_12f_12f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_12f_12f; char* name + }, ; 303 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_130_130, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_130_130; char* name + }, ; 304 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_131_131, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_131_131; char* name + }, ; 305 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_132_132, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_132_132; char* name + }, ; 306 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_133_133, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_133_133; char* name + }, ; 307 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_134_134, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_134_134; char* name + }, ; 308 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_135_135, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_135_135; char* name + }, ; 309 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_136_136, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_136_136; char* name + }, ; 310 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_137_137, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_137_137; char* name + }, ; 311 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_138_138, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_138_138; char* name + }, ; 312 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_139_139, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_139_139; char* name + }, ; 313 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13a_13a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13a_13a; char* name + }, ; 314 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13b_13b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13b_13b; char* name + }, ; 315 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13c_13c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13c_13c; char* name + }, ; 316 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13d_13d, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13d_13d; char* name + }, ; 317 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13e_13e, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13e_13e; char* name + }, ; 318 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_13f_13f, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_13f_13f; char* name + }, ; 319 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_140_140, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_140_140; char* name + }, ; 320 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_141_141, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_141_141; char* name + }, ; 321 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_142_142, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_142_142; char* name + }, ; 322 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_143_143, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_143_143; char* name + }, ; 323 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_144_144, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_144_144; char* name + }, ; 324 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_145_145, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_145_145; char* name + }, ; 325 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_146_146, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_146_146; char* name + }, ; 326 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_147_147, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_147_147; char* name + }, ; 327 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_148_148, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_148_148; char* name + }, ; 328 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_149_149, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_149_149; char* name + }, ; 329 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_14a_14a, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_14a_14a; char* name + }, ; 330 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_14b_14b, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_14b_14b; char* name + }, ; 331 + %struct.XamarinAndroidBundledAssembly { + i32 -1, ; int32_t file_fd + ptr @_XamarinAndroidBundledAssembly_file_name_14c_14c, ; char* file_name + i32 0, ; uint32_t data_offset + i32 0, ; uint32_t data_size + ptr null, ; uint8_t* data + i32 68, ; uint32_t name_length + ptr @_XamarinAndroidBundledAssembly_name_14c_14c; char* name + } ; 332 +], align 8 + +@assembly_store_bundled_assemblies = dso_local local_unnamed_addr global [0 x %struct.AssemblyStoreSingleAssemblyRuntimeData] zeroinitializer, align 8 + +@assembly_store = dso_local local_unnamed_addr global %struct.AssemblyStoreRuntimeData { + ptr null, ; uint8_t* data_start + i32 0, ; uint32_t assembly_count + i32 0, ; uint32_t index_entry_count + ptr null; AssemblyStoreAssemblyDescriptor* assemblies +}, align 8 + +; Strings +@.str.0 = private unnamed_addr constant [7 x i8] c"interp\00", align 1 + +; Application environment variables name:value pairs +@.env.0 = private unnamed_addr constant [15 x i8] c"MONO_GC_PARAMS\00", align 1 +@.env.1 = private unnamed_addr constant [21 x i8] c"major=marksweep-conc\00", align 1 +@.env.2 = private unnamed_addr constant [15 x i8] c"MONO_LOG_LEVEL\00", align 1 +@.env.3 = private unnamed_addr constant [5 x i8] c"info\00", align 1 +@.env.4 = private unnamed_addr constant [28 x i8] c"XA_HTTP_CLIENT_HANDLER_TYPE\00", align 1 +@.env.5 = private unnamed_addr constant [42 x i8] c"Xamarin.Android.Net.AndroidMessageHandler\00", align 1 + +;ApplicationConfig +@.ApplicationConfig.0_android_package_name = private unnamed_addr constant [28 x i8] c"com.companyname.clipifrontc\00", align 1 + +;DSOCacheEntry +@.DSOCacheEntry.0_name = private unnamed_addr constant [34 x i8] c"libSystem.Globalization.Native.so\00", align 1 +@.DSOCacheEntry.1_name = private unnamed_addr constant [35 x i8] c"libSystem.IO.Compression.Native.so\00", align 1 +@.DSOCacheEntry.2_name = private unnamed_addr constant [20 x i8] c"libSystem.Native.so\00", align 1 +@.DSOCacheEntry.3_name = private unnamed_addr constant [50 x i8] c"libSystem.Security.Cryptography.Native.Android.so\00", align 1 +@.DSOCacheEntry.4_name = private unnamed_addr constant [30 x i8] c"libmono-component-debugger.so\00", align 1 +@.DSOCacheEntry.5_name = private unnamed_addr constant [32 x i8] c"libmono-component-hot_reload.so\00", align 1 +@.DSOCacheEntry.6_name = private unnamed_addr constant [35 x i8] c"libmono-component-marshal-ilgen.so\00", align 1 +@.DSOCacheEntry.7_name = private unnamed_addr constant [19 x i8] c"libmonosgen-2.0.so\00", align 1 +@.DSOCacheEntry.8_name = private unnamed_addr constant [16 x i8] c"libmonodroid.so\00", align 1 +@.DSOCacheEntry.9_name = private unnamed_addr constant [31 x i8] c"libxamarin-debug-app-helper.so\00", align 1 + +; Metadata +!llvm.module.flags = !{!0, !1, !7, !8, !9, !10} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} +!7 = !{i32 1, !"branch-target-enforcement", i32 0} +!8 = !{i32 1, !"sign-return-address", i32 0} +!9 = !{i32 1, !"sign-return-address-all", i32 0} +!10 = !{i32 1, !"sign-return-address-with-bkey", i32 0} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.o b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.o new file mode 100644 index 0000000..77aa965 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/environment.arm64-v8a.o differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.ll new file mode 100644 index 0000000..36496ae --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.ll @@ -0,0 +1,51 @@ +; ModuleID = 'jni_remap.arm64-v8a.ll' +source_filename = "jni_remap.arm64-v8a.ll" +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-android21" + +%struct.JniRemappingIndexMethodEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + %struct.JniRemappingString, ; JniRemappingString signature + %struct.JniRemappingReplacementMethod ; JniRemappingReplacementMethod replacement +} + +%struct.JniRemappingIndexTypeEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + i32, ; uint32_t method_count + ptr ; JniRemappingIndexMethodEntry methods +} + +%struct.JniRemappingReplacementMethod = type { + ptr, ; char* target_type + ptr, ; char* target_name + i1 ; bool is_static +} + +%struct.JniRemappingString = type { + i32, ; uint32_t length + ptr ; char* str +} + +%struct.JniRemappingTypeReplacementEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + ptr ; char* replacement +} + +@jni_remapping_type_replacements = dso_local local_unnamed_addr constant %struct.JniRemappingTypeReplacementEntry zeroinitializer, align 8 + +@jni_remapping_method_replacement_index = dso_local local_unnamed_addr constant %struct.JniRemappingIndexTypeEntry zeroinitializer, align 8 + +; Metadata +!llvm.module.flags = !{!0, !1, !7, !8, !9, !10} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} +!7 = !{i32 1, !"branch-target-enforcement", i32 0} +!8 = !{i32 1, !"sign-return-address", i32 0} +!9 = !{i32 1, !"sign-return-address-all", i32 0} +!10 = !{i32 1, !"sign-return-address-with-bkey", i32 0} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.o b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.o new file mode 100644 index 0000000..09d0737 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.arm64-v8a.o differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.x86_64.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.x86_64.ll new file mode 100644 index 0000000..6ac0e5c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/jni_remap.x86_64.ll @@ -0,0 +1,47 @@ +; ModuleID = 'jni_remap.x86_64.ll' +source_filename = "jni_remap.x86_64.ll" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-android21" + +%struct.JniRemappingIndexMethodEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + %struct.JniRemappingString, ; JniRemappingString signature + %struct.JniRemappingReplacementMethod ; JniRemappingReplacementMethod replacement +} + +%struct.JniRemappingIndexTypeEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + i32, ; uint32_t method_count + ptr ; JniRemappingIndexMethodEntry methods +} + +%struct.JniRemappingReplacementMethod = type { + ptr, ; char* target_type + ptr, ; char* target_name + i1 ; bool is_static +} + +%struct.JniRemappingString = type { + i32, ; uint32_t length + ptr ; char* str +} + +%struct.JniRemappingTypeReplacementEntry = type { + %struct.JniRemappingString, ; JniRemappingString name + ptr ; char* replacement +} + +@jni_remapping_type_replacements = dso_local local_unnamed_addr constant %struct.JniRemappingTypeReplacementEntry zeroinitializer, align 8 + +@jni_remapping_method_replacement_index = dso_local local_unnamed_addr constant %struct.JniRemappingIndexTypeEntry zeroinitializer, align 8 + +; Metadata +!llvm.module.flags = !{!0, !1} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/manifest/AndroidManifest.xml b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/manifest/AndroidManifest.xml new file mode 100644 index 0000000..86ba90a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/manifest/AndroidManifest.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.ll new file mode 100644 index 0000000..ff65126 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.ll @@ -0,0 +1,1214 @@ +; ModuleID = 'marshal_methods.arm64-v8a.ll' +source_filename = "marshal_methods.arm64-v8a.ll" +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-android21" + +%struct.MarshalMethodName = type { + i64, ; uint64_t id + ptr ; char* name +} + +%struct.MarshalMethodsManagedClass = type { + i32, ; uint32_t token + ptr ; MonoClass klass +} + +@assembly_image_cache = dso_local local_unnamed_addr global [333 x ptr] zeroinitializer, align 8 + +; Each entry maps hash of an assembly name to an index into the `assembly_image_cache` array +@assembly_image_cache_hashes = dso_local local_unnamed_addr constant [999 x i64] [ + i64 u0x001e58127c546039, ; 0: lib_System.Globalization.dll.so => 42 + i64 u0x0024d0f62dee05bd, ; 1: Xamarin.KotlinX.Coroutines.Core.dll => 290 + i64 u0x0071cf2d27b7d61e, ; 2: lib_Xamarin.AndroidX.SwipeRefreshLayout.dll.so => 268 + i64 u0x01109b0e4d99e61f, ; 3: System.ComponentModel.Annotations.dll => 13 + i64 u0x02123411c4e01926, ; 4: lib_Xamarin.AndroidX.Navigation.Runtime.dll.so => 258 + i64 u0x0284512fad379f7e, ; 5: System.Runtime.Handles => 105 + i64 u0x02abedc11addc1ed, ; 6: lib_Mono.Android.Runtime.dll.so => 171 + i64 u0x02f55bf70672f5c8, ; 7: lib_System.IO.FileSystem.DriveInfo.dll.so => 48 + i64 u0x032267b2a94db371, ; 8: lib_Xamarin.AndroidX.AppCompat.dll.so => 214 + i64 u0x03621c804933a890, ; 9: System.Buffers => 7 + i64 u0x0399610510a38a38, ; 10: lib_System.Private.DataContractSerialization.dll.so => 86 + i64 u0x043032f1d071fae0, ; 11: ru/Microsoft.Maui.Controls.resources => 318 + i64 u0x044440a55165631e, ; 12: lib-cs-Microsoft.Maui.Controls.resources.dll.so => 296 + i64 u0x046eb1581a80c6b0, ; 13: vi/Microsoft.Maui.Controls.resources => 324 + i64 u0x047408741db2431a, ; 14: Xamarin.AndroidX.DynamicAnimation => 234 + i64 u0x0517ef04e06e9f76, ; 15: System.Net.Primitives => 71 + i64 u0x0565d18c6da3de38, ; 16: Xamarin.AndroidX.RecyclerView => 261 + i64 u0x0581db89237110e9, ; 17: lib_System.Collections.dll.so => 12 + i64 u0x05989cb940b225a9, ; 18: Microsoft.Maui.dll => 202 + i64 u0x05a1c25e78e22d87, ; 19: lib_System.Runtime.CompilerServices.Unsafe.dll.so => 102 + i64 u0x06076b5d2b581f08, ; 20: zh-HK/Microsoft.Maui.Controls.resources => 325 + i64 u0x06388ffe9f6c161a, ; 21: System.Xml.Linq.dll => 156 + i64 u0x06600c4c124cb358, ; 22: System.Configuration.dll => 19 + i64 u0x067f95c5ddab55b3, ; 23: lib_Xamarin.AndroidX.Fragment.Ktx.dll.so => 239 + i64 u0x0680a433c781bb3d, ; 24: Xamarin.AndroidX.Collection.Jvm => 221 + i64 u0x0690533f9fc14683, ; 25: lib_Microsoft.AspNetCore.Components.dll.so => 176 + i64 u0x069fff96ec92a91d, ; 26: System.Xml.XPath.dll => 161 + i64 u0x070b0847e18dab68, ; 27: Xamarin.AndroidX.Emoji2.ViewsHelper.dll => 236 + i64 u0x0739448d84d3b016, ; 28: lib_Xamarin.AndroidX.VectorDrawable.dll.so => 271 + i64 u0x07469f2eecce9e85, ; 29: mscorlib.dll => 167 + i64 u0x07c57877c7ba78ad, ; 30: ru/Microsoft.Maui.Controls.resources.dll => 318 + i64 u0x07dcdc7460a0c5e4, ; 31: System.Collections.NonGeneric => 10 + i64 u0x08122e52765333c8, ; 32: lib_Microsoft.Extensions.Logging.Debug.dll.so => 196 + i64 u0x088610fc2509f69e, ; 33: lib_Xamarin.AndroidX.VectorDrawable.Animated.dll.so => 272 + i64 u0x08a7c865576bbde7, ; 34: System.Reflection.Primitives => 96 + i64 u0x08c9d051a4a817e5, ; 35: Xamarin.AndroidX.CustomView.PoolingContainer.dll => 232 + i64 u0x08f3c9788ee2153c, ; 36: Xamarin.AndroidX.DrawerLayout => 233 + i64 u0x09138715c92dba90, ; 37: lib_System.ComponentModel.Annotations.dll.so => 13 + i64 u0x0919c28b89381a0b, ; 38: lib_Microsoft.Extensions.Options.dll.so => 197 + i64 u0x092266563089ae3e, ; 39: lib_System.Collections.NonGeneric.dll.so => 10 + i64 u0x09d144a7e214d457, ; 40: System.Security.Cryptography => 127 + i64 u0x09e2b9f743db21a8, ; 41: lib_System.Reflection.Metadata.dll.so => 95 + i64 u0x0abb3e2b271edc45, ; 42: System.Threading.Channels.dll => 140 + i64 u0x0b06b1feab070143, ; 43: System.Formats.Tar => 39 + i64 u0x0b3b632c3bbee20c, ; 44: sk/Microsoft.Maui.Controls.resources => 319 + i64 u0x0b6aff547b84fbe9, ; 45: Xamarin.KotlinX.Serialization.Core.Jvm => 293 + i64 u0x0be2e1f8ce4064ed, ; 46: Xamarin.AndroidX.ViewPager => 274 + i64 u0x0c3ca6cc978e2aae, ; 47: pt-BR/Microsoft.Maui.Controls.resources => 315 + i64 u0x0c59ad9fbbd43abe, ; 48: Mono.Android => 172 + i64 u0x0c65741e86371ee3, ; 49: lib_Xamarin.Android.Glide.GifDecoder.dll.so => 208 + i64 u0x0c74af560004e816, ; 50: Microsoft.Win32.Registry.dll => 5 + i64 u0x0c7790f60165fc06, ; 51: lib_Microsoft.Maui.Essentials.dll.so => 203 + i64 u0x0c83c82812e96127, ; 52: lib_System.Net.Mail.dll.so => 67 + i64 u0x0cce4bce83380b7f, ; 53: Xamarin.AndroidX.Security.SecurityCrypto => 265 + i64 u0x0d13cd7cce4284e4, ; 54: System.Security.SecureString => 130 + i64 u0x0d63f4f73521c24f, ; 55: lib_Xamarin.AndroidX.SavedState.SavedState.Ktx.dll.so => 264 + i64 u0x0e04e702012f8463, ; 56: Xamarin.AndroidX.Emoji2 => 235 + i64 u0x0e14e73a54dda68e, ; 57: lib_System.Net.NameResolution.dll.so => 68 + i64 u0x0f37dd7a62ae99af, ; 58: lib_Xamarin.AndroidX.Collection.Ktx.dll.so => 222 + i64 u0x0f5e7abaa7cf470a, ; 59: System.Net.HttpListener => 66 + i64 u0x1001f97bbe242e64, ; 60: System.IO.UnmanagedMemoryStream => 57 + i64 u0x102a31b45304b1da, ; 61: Xamarin.AndroidX.CustomView => 231 + i64 u0x1065c4cb554c3d75, ; 62: System.IO.IsolatedStorage.dll => 52 + i64 u0x10f6cfcbcf801616, ; 63: System.IO.Compression.Brotli => 43 + i64 u0x114443cdcf2091f1, ; 64: System.Security.Cryptography.Primitives => 125 + i64 u0x11a603952763e1d4, ; 65: System.Net.Mail => 67 + i64 u0x11a70d0e1009fb11, ; 66: System.Net.WebSockets.dll => 81 + i64 u0x11f26371eee0d3c1, ; 67: lib_Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll.so => 249 + i64 u0x11fbe62d469cc1c8, ; 68: Microsoft.VisualStudio.DesignTools.TapContract.dll => 330 + i64 u0x12128b3f59302d47, ; 69: lib_System.Xml.Serialization.dll.so => 158 + i64 u0x123639456fb056da, ; 70: System.Reflection.Emit.Lightweight.dll => 92 + i64 u0x12521e9764603eaa, ; 71: lib_System.Resources.Reader.dll.so => 99 + i64 u0x125b7f94acb989db, ; 72: Xamarin.AndroidX.RecyclerView.dll => 261 + i64 u0x12d3b63863d4ab0b, ; 73: lib_System.Threading.Overlapped.dll.so => 141 + i64 u0x134eab1061c395ee, ; 74: System.Transactions => 151 + i64 u0x138567fa954faa55, ; 75: Xamarin.AndroidX.Browser => 218 + i64 u0x13a01de0cbc3f06c, ; 76: lib-fr-Microsoft.Maui.Controls.resources.dll.so => 302 + i64 u0x13beedefb0e28a45, ; 77: lib_System.Xml.XmlDocument.dll.so => 162 + i64 u0x13f1e5e209e91af4, ; 78: lib_Java.Interop.dll.so => 169 + i64 u0x13f1e880c25d96d1, ; 79: he/Microsoft.Maui.Controls.resources => 303 + i64 u0x143d8ea60a6a4011, ; 80: Microsoft.Extensions.DependencyInjection.Abstractions => 188 + i64 u0x1497051b917530bd, ; 81: lib_System.Net.WebSockets.dll.so => 81 + i64 u0x14b78ce3adce0011, ; 82: Microsoft.VisualStudio.DesignTools.TapContract => 330 + i64 u0x14d612a531c79c05, ; 83: Xamarin.JSpecify.dll => 285 + i64 u0x14e68447938213b7, ; 84: Xamarin.AndroidX.Collection.Ktx.dll => 222 + i64 u0x152a448bd1e745a7, ; 85: Microsoft.Win32.Primitives => 4 + i64 u0x1557de0138c445f4, ; 86: lib_Microsoft.Win32.Registry.dll.so => 5 + i64 u0x15bdc156ed462f2f, ; 87: lib_System.IO.FileSystem.dll.so => 51 + i64 u0x15e300c2c1668655, ; 88: System.Resources.Writer.dll => 101 + i64 u0x16bf2a22df043a09, ; 89: System.IO.Pipes.dll => 56 + i64 u0x16ea2b318ad2d830, ; 90: System.Security.Cryptography.Algorithms => 120 + i64 u0x16eeae54c7ebcc08, ; 91: System.Reflection.dll => 98 + i64 u0x17125c9a85b4929f, ; 92: lib_netstandard.dll.so => 168 + i64 u0x1716866f7416792e, ; 93: lib_System.Security.AccessControl.dll.so => 118 + i64 u0x174f71c46216e44a, ; 94: Xamarin.KotlinX.Coroutines.Core => 290 + i64 u0x1752c12f1e1fc00c, ; 95: System.Core => 21 + i64 u0x17b56e25558a5d36, ; 96: lib-hu-Microsoft.Maui.Controls.resources.dll.so => 306 + i64 u0x17f9358913beb16a, ; 97: System.Text.Encodings.Web => 137 + i64 u0x1809fb23f29ba44a, ; 98: lib_System.Reflection.TypeExtensions.dll.so => 97 + i64 u0x18402a709e357f3b, ; 99: lib_Xamarin.KotlinX.Serialization.Core.Jvm.dll.so => 293 + i64 u0x18a9befae51bb361, ; 100: System.Net.WebClient => 77 + i64 u0x18f0ce884e87d89a, ; 101: nb/Microsoft.Maui.Controls.resources.dll => 312 + i64 u0x19777fba3c41b398, ; 102: Xamarin.AndroidX.Startup.StartupRuntime.dll => 267 + i64 u0x19a4c090f14ebb66, ; 103: System.Security.Claims => 119 + i64 u0x1a91866a319e9259, ; 104: lib_System.Collections.Concurrent.dll.so => 8 + i64 u0x1aac34d1917ba5d3, ; 105: lib_System.dll.so => 165 + i64 u0x1aad60783ffa3e5b, ; 106: lib-th-Microsoft.Maui.Controls.resources.dll.so => 321 + i64 u0x1aea8f1c3b282172, ; 107: lib_System.Net.Ping.dll.so => 70 + i64 u0x1b4b7a1d0d265fa2, ; 108: Xamarin.Android.Glide.DiskLruCache => 207 + i64 u0x1b8700ce6e547c0b, ; 109: lib_Microsoft.AspNetCore.Components.Forms.dll.so => 177 + i64 u0x1bbdb16cfa73e785, ; 110: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android => 250 + i64 u0x1bc766e07b2b4241, ; 111: Xamarin.AndroidX.ResourceInspection.Annotation.dll => 262 + i64 u0x1c5217a9e4973753, ; 112: lib_Microsoft.Extensions.FileProviders.Physical.dll.so => 192 + i64 u0x1c753b5ff15bce1b, ; 113: Mono.Android.Runtime.dll => 171 + i64 u0x1cd47467799d8250, ; 114: System.Threading.Tasks.dll => 145 + i64 u0x1d23eafdc6dc346c, ; 115: System.Globalization.Calendars.dll => 40 + i64 u0x1da4110562816681, ; 116: Xamarin.AndroidX.Security.SecurityCrypto.dll => 265 + i64 u0x1db6820994506bf5, ; 117: System.IO.FileSystem.AccessControl.dll => 47 + i64 u0x1dbb0c2c6a999acb, ; 118: System.Diagnostics.StackTrace => 30 + i64 u0x1e3d87657e9659bc, ; 119: Xamarin.AndroidX.Navigation.UI => 259 + i64 u0x1e71143913d56c10, ; 120: lib-ko-Microsoft.Maui.Controls.resources.dll.so => 310 + i64 u0x1e7c31185e2fb266, ; 121: lib_System.Threading.Tasks.Parallel.dll.so => 144 + i64 u0x1ed8fcce5e9b50a0, ; 122: Microsoft.Extensions.Options.dll => 197 + i64 u0x1f055d15d807e1b2, ; 123: System.Xml.XmlSerializer => 163 + i64 u0x1f1ed22c1085f044, ; 124: lib_System.Diagnostics.FileVersionInfo.dll.so => 28 + i64 u0x1f61df9c5b94d2c1, ; 125: lib_System.Numerics.dll.so => 84 + i64 u0x1f750bb5421397de, ; 126: lib_Xamarin.AndroidX.Tracing.Tracing.dll.so => 269 + i64 u0x20237ea48006d7a8, ; 127: lib_System.Net.WebClient.dll.so => 77 + i64 u0x209375905fcc1bad, ; 128: lib_System.IO.Compression.Brotli.dll.so => 43 + i64 u0x20fab3cf2dfbc8df, ; 129: lib_System.Diagnostics.Process.dll.so => 29 + i64 u0x2110167c128cba15, ; 130: System.Globalization => 42 + i64 u0x21419508838f7547, ; 131: System.Runtime.CompilerServices.VisualC => 103 + i64 u0x2174319c0d835bc9, ; 132: System.Runtime => 117 + i64 u0x2198e5bc8b7153fa, ; 133: Xamarin.AndroidX.Annotation.Experimental.dll => 212 + i64 u0x219ea1b751a4dee4, ; 134: lib_System.IO.Compression.ZipFile.dll.so => 45 + i64 u0x21cc7e445dcd5469, ; 135: System.Reflection.Emit.ILGeneration => 91 + i64 u0x220fd4f2e7c48170, ; 136: th/Microsoft.Maui.Controls.resources => 321 + i64 u0x224538d85ed15a82, ; 137: System.IO.Pipes => 56 + i64 u0x22908438c6bed1af, ; 138: lib_System.Threading.Timer.dll.so => 148 + i64 u0x22fbc14e981e3b45, ; 139: lib_Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll.so => 329 + i64 u0x237be844f1f812c7, ; 140: System.Threading.Thread.dll => 146 + i64 u0x23852b3bdc9f7096, ; 141: System.Resources.ResourceManager => 100 + i64 u0x23986dd7e5d4fc01, ; 142: System.IO.FileSystem.Primitives.dll => 49 + i64 u0x2407aef2bbe8fadf, ; 143: System.Console => 20 + i64 u0x240abe014b27e7d3, ; 144: Xamarin.AndroidX.Core.dll => 227 + i64 u0x247619fe4413f8bf, ; 145: System.Runtime.Serialization.Primitives.dll => 114 + i64 u0x24de8d301281575e, ; 146: Xamarin.Android.Glide => 205 + i64 u0x252073cc3caa62c2, ; 147: fr/Microsoft.Maui.Controls.resources.dll => 302 + i64 u0x256b8d41255f01b1, ; 148: Xamarin.Google.Crypto.Tink.Android => 280 + i64 u0x2662c629b96b0b30, ; 149: lib_Xamarin.Kotlin.StdLib.dll.so => 286 + i64 u0x268c1439f13bcc29, ; 150: lib_Microsoft.Extensions.Primitives.dll.so => 198 + i64 u0x26a670e154a9c54b, ; 151: System.Reflection.Extensions.dll => 94 + i64 u0x26d077d9678fe34f, ; 152: System.IO.dll => 58 + i64 u0x273f3515de5faf0d, ; 153: id/Microsoft.Maui.Controls.resources.dll => 307 + i64 u0x2742545f9094896d, ; 154: hr/Microsoft.Maui.Controls.resources => 305 + i64 u0x2759af78ab94d39b, ; 155: System.Net.WebSockets => 81 + i64 u0x27b2b16f3e9de038, ; 156: Xamarin.Google.Crypto.Tink.Android.dll => 280 + i64 u0x27b410442fad6cf1, ; 157: Java.Interop.dll => 169 + i64 u0x27b97e0d52c3034a, ; 158: System.Diagnostics.Debug => 26 + i64 u0x2801845a2c71fbfb, ; 159: System.Net.Primitives.dll => 71 + i64 u0x286835e259162700, ; 160: lib_Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll.so => 260 + i64 u0x2949f3617a02c6b2, ; 161: Xamarin.AndroidX.ExifInterface => 237 + i64 u0x29f947844fb7fc11, ; 162: Microsoft.Maui.Controls.HotReload.Forms => 328 + i64 u0x2a128783efe70ba0, ; 163: uk/Microsoft.Maui.Controls.resources.dll => 323 + i64 u0x2a3b095612184159, ; 164: lib_System.Net.NetworkInformation.dll.so => 69 + i64 u0x2a6507a5ffabdf28, ; 165: System.Diagnostics.TraceSource.dll => 33 + i64 u0x2ad156c8e1354139, ; 166: fi/Microsoft.Maui.Controls.resources => 301 + i64 u0x2ad5d6b13b7a3e04, ; 167: System.ComponentModel.DataAnnotations.dll => 14 + i64 u0x2af298f63581d886, ; 168: System.Text.RegularExpressions.dll => 139 + i64 u0x2afc1c4f898552ee, ; 169: lib_System.Formats.Asn1.dll.so => 38 + i64 u0x2b148910ed40fbf9, ; 170: zh-Hant/Microsoft.Maui.Controls.resources.dll => 327 + i64 u0x2b4d4904cebfa4e9, ; 171: Microsoft.Extensions.FileSystemGlobbing => 193 + i64 u0x2b6989d78cba9a15, ; 172: Xamarin.AndroidX.Concurrent.Futures.dll => 223 + i64 u0x2c8bd14bb93a7d82, ; 173: lib-pl-Microsoft.Maui.Controls.resources.dll.so => 314 + i64 u0x2cbd9262ca785540, ; 174: lib_System.Text.Encoding.CodePages.dll.so => 134 + i64 u0x2cc9e1fed6257257, ; 175: lib_System.Reflection.Emit.Lightweight.dll.so => 92 + i64 u0x2cd723e9fe623c7c, ; 176: lib_System.Private.Xml.Linq.dll.so => 88 + i64 u0x2d169d318a968379, ; 177: System.Threading.dll => 149 + i64 u0x2d47774b7d993f59, ; 178: sv/Microsoft.Maui.Controls.resources.dll => 320 + i64 u0x2d5ffcae1ad0aaca, ; 179: System.Data.dll => 24 + i64 u0x2db915caf23548d2, ; 180: System.Text.Json.dll => 138 + i64 u0x2dcaa0bb15a4117a, ; 181: System.IO.UnmanagedMemoryStream.dll => 57 + i64 u0x2e5a40c319acb800, ; 182: System.IO.FileSystem => 51 + i64 u0x2e6f1f226821322a, ; 183: el/Microsoft.Maui.Controls.resources.dll => 299 + i64 u0x2e8ff3fae87a8245, ; 184: lib_Microsoft.JSInterop.dll.so => 199 + i64 u0x2f02f94df3200fe5, ; 185: System.Diagnostics.Process => 29 + i64 u0x2f2e98e1c89b1aff, ; 186: System.Xml.ReaderWriter => 157 + i64 u0x2f5911d9ba814e4e, ; 187: System.Diagnostics.Tracing => 34 + i64 u0x2f84070a459bc31f, ; 188: lib_System.Xml.dll.so => 164 + i64 u0x309ee9eeec09a71e, ; 189: lib_Xamarin.AndroidX.Fragment.dll.so => 238 + i64 u0x30c6dda129408828, ; 190: System.IO.IsolatedStorage => 52 + i64 u0x310d9651ec86c411, ; 191: Microsoft.Extensions.FileProviders.Embedded => 191 + i64 u0x31195fef5d8fb552, ; 192: _Microsoft.Android.Resource.Designer.dll => 332 + i64 u0x312c8ed623cbfc8d, ; 193: Xamarin.AndroidX.Window.dll => 276 + i64 u0x31496b779ed0663d, ; 194: lib_System.Reflection.DispatchProxy.dll.so => 90 + i64 u0x315f08d19390dc36, ; 195: Xamarin.Google.ErrorProne.TypeAnnotations => 282 + i64 u0x32243413e774362a, ; 196: Xamarin.AndroidX.CardView.dll => 219 + i64 u0x3235427f8d12dae1, ; 197: lib_System.Drawing.Primitives.dll.so => 35 + i64 u0x329753a17a517811, ; 198: fr/Microsoft.Maui.Controls.resources => 302 + i64 u0x32aa989ff07a84ff, ; 199: lib_System.Xml.ReaderWriter.dll.so => 157 + i64 u0x33642d5508314e46, ; 200: Microsoft.Extensions.FileSystemGlobbing.dll => 193 + i64 u0x33829542f112d59b, ; 201: System.Collections.Immutable => 9 + i64 u0x33a31443733849fe, ; 202: lib-es-Microsoft.Maui.Controls.resources.dll.so => 300 + i64 u0x341abc357fbb4ebf, ; 203: lib_System.Net.Sockets.dll.so => 76 + i64 u0x3496c1e2dcaf5ecc, ; 204: lib_System.IO.Pipes.AccessControl.dll.so => 55 + i64 u0x34bd01fd4be06ee3, ; 205: lib_Microsoft.Extensions.FileProviders.Composite.dll.so => 190 + i64 u0x34dfd74fe2afcf37, ; 206: Microsoft.Maui => 202 + i64 u0x34e292762d9615df, ; 207: cs/Microsoft.Maui.Controls.resources.dll => 296 + i64 u0x3508234247f48404, ; 208: Microsoft.Maui.Controls => 200 + i64 u0x353590da528c9d22, ; 209: System.ComponentModel.Annotations => 13 + i64 u0x3549870798b4cd30, ; 210: lib_Xamarin.AndroidX.ViewPager2.dll.so => 275 + i64 u0x355282fc1c909694, ; 211: Microsoft.Extensions.Configuration => 182 + i64 u0x3552fc5d578f0fbf, ; 212: Xamarin.AndroidX.Arch.Core.Common => 216 + i64 u0x355c649948d55d97, ; 213: lib_System.Runtime.Intrinsics.dll.so => 109 + i64 u0x35ea9d1c6834bc8c, ; 214: Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll => 253 + i64 u0x3628ab68db23a01a, ; 215: lib_System.Diagnostics.Tools.dll.so => 32 + i64 u0x3673b042508f5b6b, ; 216: lib_System.Runtime.Extensions.dll.so => 104 + i64 u0x36740f1a8ecdc6c4, ; 217: System.Numerics => 84 + i64 u0x36b2b50fdf589ae2, ; 218: System.Reflection.Emit.Lightweight => 92 + i64 u0x36cada77dc79928b, ; 219: System.IO.MemoryMappedFiles => 53 + i64 u0x374ef46b06791af6, ; 220: System.Reflection.Primitives.dll => 96 + i64 u0x376bf93e521a5417, ; 221: lib_Xamarin.Jetbrains.Annotations.dll.so => 284 + i64 u0x37bc29f3183003b6, ; 222: lib_System.IO.dll.so => 58 + i64 u0x380134e03b1e160a, ; 223: System.Collections.Immutable.dll => 9 + i64 u0x38049b5c59b39324, ; 224: System.Runtime.CompilerServices.Unsafe => 102 + i64 u0x385c17636bb6fe6e, ; 225: Xamarin.AndroidX.CustomView.dll => 231 + i64 u0x38869c811d74050e, ; 226: System.Net.NameResolution.dll => 68 + i64 u0x393c226616977fdb, ; 227: lib_Xamarin.AndroidX.ViewPager.dll.so => 274 + i64 u0x395e37c3334cf82a, ; 228: lib-ca-Microsoft.Maui.Controls.resources.dll.so => 295 + i64 u0x39c3107c28752af1, ; 229: lib_Microsoft.Extensions.FileProviders.Abstractions.dll.so => 189 + i64 u0x3ab5859054645f72, ; 230: System.Security.Cryptography.Primitives.dll => 125 + i64 u0x3ad75090c3fac0e9, ; 231: lib_Xamarin.AndroidX.ResourceInspection.Annotation.dll.so => 262 + i64 u0x3ae44ac43a1fbdbb, ; 232: System.Runtime.Serialization => 116 + i64 u0x3b860f9932505633, ; 233: lib_System.Text.Encoding.Extensions.dll.so => 135 + i64 u0x3be6248c2bc7dc8c, ; 234: Microsoft.JSInterop.dll => 199 + i64 u0x3c3aafb6b3a00bf6, ; 235: lib_System.Security.Cryptography.X509Certificates.dll.so => 126 + i64 u0x3c4049146b59aa90, ; 236: System.Runtime.InteropServices.JavaScript => 106 + i64 u0x3c7c495f58ac5ee9, ; 237: Xamarin.Kotlin.StdLib => 286 + i64 u0x3c7e5ed3d5db71bb, ; 238: System.Security => 131 + i64 u0x3cd9d281d402eb9b, ; 239: Xamarin.AndroidX.Browser.dll => 218 + i64 u0x3d1c50cc001a991e, ; 240: Xamarin.Google.Guava.ListenableFuture.dll => 283 + i64 u0x3d2b1913edfc08d7, ; 241: lib_System.Threading.ThreadPool.dll.so => 147 + i64 u0x3d46f0b995082740, ; 242: System.Xml.Linq => 156 + i64 u0x3d8a8f400514a790, ; 243: Xamarin.AndroidX.Fragment.Ktx.dll => 239 + i64 u0x3d9c2a242b040a50, ; 244: lib_Xamarin.AndroidX.Core.dll.so => 227 + i64 u0x3db495de2204755c, ; 245: Microsoft.Extensions.Configuration.FileExtensions => 185 + i64 u0x3dbb6b9f5ab90fa7, ; 246: lib_Xamarin.AndroidX.DynamicAnimation.dll.so => 234 + i64 u0x3e5441657549b213, ; 247: Xamarin.AndroidX.ResourceInspection.Annotation => 262 + i64 u0x3e57d4d195c53c2e, ; 248: System.Reflection.TypeExtensions => 97 + i64 u0x3e616ab4ed1f3f15, ; 249: lib_System.Data.dll.so => 24 + i64 u0x3e7f8912b96e5065, ; 250: Microsoft.AspNetCore.Components.WebView.dll => 179 + i64 u0x3f1d226e6e06db7e, ; 251: Xamarin.AndroidX.SlidingPaneLayout.dll => 266 + i64 u0x3f510adf788828dd, ; 252: System.Threading.Tasks.Extensions => 143 + i64 u0x407a10bb4bf95829, ; 253: lib_Xamarin.AndroidX.Navigation.Common.dll.so => 256 + i64 u0x40c98b6bd77346d4, ; 254: Microsoft.VisualBasic.dll => 3 + i64 u0x41833cf766d27d96, ; 255: mscorlib => 167 + i64 u0x41cab042be111c34, ; 256: lib_Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so => 215 + i64 u0x423a9ecc4d905a88, ; 257: lib_System.Resources.ResourceManager.dll.so => 100 + i64 u0x423bf51ae7def810, ; 258: System.Xml.XPath => 161 + i64 u0x42462ff15ddba223, ; 259: System.Resources.Reader.dll => 99 + i64 u0x4291015ff4e5ef71, ; 260: Xamarin.AndroidX.Core.ViewTree.dll => 229 + i64 u0x42a31b86e6ccc3f0, ; 261: System.Diagnostics.Contracts => 25 + i64 u0x430e95b891249788, ; 262: lib_System.Reflection.Emit.dll.so => 93 + i64 u0x43375950ec7c1b6a, ; 263: netstandard.dll => 168 + i64 u0x434c4e1d9284cdae, ; 264: Mono.Android.dll => 172 + i64 u0x43505013578652a0, ; 265: lib_Xamarin.AndroidX.Activity.Ktx.dll.so => 210 + i64 u0x437d06c381ed575a, ; 266: lib_Microsoft.VisualBasic.dll.so => 3 + i64 u0x43950f84de7cc79a, ; 267: pl/Microsoft.Maui.Controls.resources.dll => 314 + i64 u0x43e8ca5bc927ff37, ; 268: lib_Xamarin.AndroidX.Emoji2.ViewsHelper.dll.so => 236 + i64 u0x448bd33429269b19, ; 269: Microsoft.CSharp => 1 + i64 u0x4499fa3c8e494654, ; 270: lib_System.Runtime.Serialization.Primitives.dll.so => 114 + i64 u0x4515080865a951a5, ; 271: Xamarin.Kotlin.StdLib.dll => 286 + i64 u0x4545802489b736b9, ; 272: Xamarin.AndroidX.Fragment.Ktx => 239 + i64 u0x454b4d1e66bb783c, ; 273: Xamarin.AndroidX.Lifecycle.Process => 246 + i64 u0x45c40276a42e283e, ; 274: System.Diagnostics.TraceSource => 33 + i64 u0x45d443f2a29adc37, ; 275: System.AppContext.dll => 6 + i64 u0x46a4213bc97fe5ae, ; 276: lib-ru-Microsoft.Maui.Controls.resources.dll.so => 318 + i64 u0x47358bd471172e1d, ; 277: lib_System.Xml.Linq.dll.so => 156 + i64 u0x47daf4e1afbada10, ; 278: pt/Microsoft.Maui.Controls.resources => 316 + i64 u0x480c0a47dd42dd81, ; 279: lib_System.IO.MemoryMappedFiles.dll.so => 53 + i64 u0x49e952f19a4e2022, ; 280: System.ObjectModel => 85 + i64 u0x49f9e6948a8131e4, ; 281: lib_Xamarin.AndroidX.VersionedParcelable.dll.so => 273 + i64 u0x4a5667b2462a664b, ; 282: lib_Xamarin.AndroidX.Navigation.UI.dll.so => 259 + i64 u0x4a7a18981dbd56bc, ; 283: System.IO.Compression.FileSystem.dll => 44 + i64 u0x4aa5c60350917c06, ; 284: lib_Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll.so => 245 + i64 u0x4b07a0ed0ab33ff4, ; 285: System.Runtime.Extensions.dll => 104 + i64 u0x4b576d47ac054f3c, ; 286: System.IO.FileSystem.AccessControl => 47 + i64 u0x4b7b6532ded934b7, ; 287: System.Text.Json => 138 + i64 u0x4c7755cf07ad2d5f, ; 288: System.Net.Http.Json.dll => 64 + i64 u0x4cc5f15266470798, ; 289: lib_Xamarin.AndroidX.Loader.dll.so => 255 + i64 u0x4cf6f67dc77aacd2, ; 290: System.Net.NetworkInformation.dll => 69 + i64 u0x4d3183dd245425d4, ; 291: System.Net.WebSockets.Client.dll => 80 + i64 u0x4d479f968a05e504, ; 292: System.Linq.Expressions.dll => 59 + i64 u0x4d55a010ffc4faff, ; 293: System.Private.Xml => 89 + i64 u0x4d5cbe77561c5b2e, ; 294: System.Web.dll => 154 + i64 u0x4d77512dbd86ee4c, ; 295: lib_Xamarin.AndroidX.Arch.Core.Common.dll.so => 216 + i64 u0x4d7793536e79c309, ; 296: System.ServiceProcess => 133 + i64 u0x4d95fccc1f67c7ca, ; 297: System.Runtime.Loader.dll => 110 + i64 u0x4dcf44c3c9b076a2, ; 298: it/Microsoft.Maui.Controls.resources.dll => 308 + i64 u0x4dd9247f1d2c3235, ; 299: Xamarin.AndroidX.Loader.dll => 255 + i64 u0x4df510084e2a0bae, ; 300: Microsoft.JSInterop => 199 + i64 u0x4e2aeee78e2c4a87, ; 301: Xamarin.AndroidX.ProfileInstaller.ProfileInstaller => 260 + i64 u0x4e32f00cb0937401, ; 302: Mono.Android.Runtime => 171 + i64 u0x4e5eea4668ac2b18, ; 303: System.Text.Encoding.CodePages => 134 + i64 u0x4ebd0c4b82c5eefc, ; 304: lib_System.Threading.Channels.dll.so => 140 + i64 u0x4ee8eaa9c9c1151a, ; 305: System.Globalization.Calendars => 40 + i64 u0x4f21ee6ef9eb527e, ; 306: ca/Microsoft.Maui.Controls.resources => 295 + i64 u0x4fdc964ec1888e25, ; 307: lib_Microsoft.Extensions.Configuration.Binder.dll.so => 184 + i64 u0x5037f0be3c28c7a3, ; 308: lib_Microsoft.Maui.Controls.dll.so => 200 + i64 u0x50c3a29b21050d45, ; 309: System.Linq.Parallel.dll => 60 + i64 u0x5116b21580ae6eb0, ; 310: Microsoft.Extensions.Configuration.Binder.dll => 184 + i64 u0x5131bbe80989093f, ; 311: Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll => 252 + i64 u0x516324a5050a7e3c, ; 312: System.Net.WebProxy => 79 + i64 u0x516d6f0b21a303de, ; 313: lib_System.Diagnostics.Contracts.dll.so => 25 + i64 u0x51bb8a2afe774e32, ; 314: System.Drawing => 36 + i64 u0x5247c5c32a4140f0, ; 315: System.Resources.Reader => 99 + i64 u0x526bb15e3c386364, ; 316: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll => 249 + i64 u0x526ce79eb8e90527, ; 317: lib_System.Net.Primitives.dll.so => 71 + i64 u0x52829f00b4467c38, ; 318: lib_System.Data.Common.dll.so => 22 + i64 u0x529ffe06f39ab8db, ; 319: Xamarin.AndroidX.Core => 227 + i64 u0x52ff996554dbf352, ; 320: Microsoft.Maui.Graphics => 204 + i64 u0x535f7e40e8fef8af, ; 321: lib-sk-Microsoft.Maui.Controls.resources.dll.so => 319 + i64 u0x53978aac584c666e, ; 322: lib_System.Security.Cryptography.Cng.dll.so => 121 + i64 u0x53a96d5c86c9e194, ; 323: System.Net.NetworkInformation => 69 + i64 u0x53be1038a61e8d44, ; 324: System.Runtime.InteropServices.RuntimeInformation.dll => 107 + i64 u0x53c3014b9437e684, ; 325: lib-zh-HK-Microsoft.Maui.Controls.resources.dll.so => 325 + i64 u0x5435e6f049e9bc37, ; 326: System.Security.Claims.dll => 119 + i64 u0x54795225dd1587af, ; 327: lib_System.Runtime.dll.so => 117 + i64 u0x547a34f14e5f6210, ; 328: Xamarin.AndroidX.Lifecycle.Common.dll => 241 + i64 u0x556e8b63b660ab8b, ; 329: Xamarin.AndroidX.Lifecycle.Common.Jvm.dll => 242 + i64 u0x5588627c9a108ec9, ; 330: System.Collections.Specialized => 11 + i64 u0x55a898e4f42e3fae, ; 331: Microsoft.VisualBasic.Core.dll => 2 + i64 u0x55fa0c610fe93bb1, ; 332: lib_System.Security.Cryptography.OpenSsl.dll.so => 124 + i64 u0x56442b99bc64bb47, ; 333: System.Runtime.Serialization.Xml.dll => 115 + i64 u0x56a8b26e1aeae27b, ; 334: System.Threading.Tasks.Dataflow => 142 + i64 u0x56f932d61e93c07f, ; 335: System.Globalization.Extensions => 41 + i64 u0x571c5cfbec5ae8e2, ; 336: System.Private.Uri => 87 + i64 u0x576499c9f52fea31, ; 337: Xamarin.AndroidX.Annotation => 211 + i64 u0x579a06fed6eec900, ; 338: System.Private.CoreLib.dll => 173 + i64 u0x57c542c14049b66d, ; 339: System.Diagnostics.DiagnosticSource => 27 + i64 u0x581a8bd5cfda563e, ; 340: System.Threading.Timer => 148 + i64 u0x584ac38e21d2fde1, ; 341: Microsoft.Extensions.Configuration.Binder => 184 + i64 u0x58601b2dda4a27b9, ; 342: lib-ja-Microsoft.Maui.Controls.resources.dll.so => 309 + i64 u0x58688d9af496b168, ; 343: Microsoft.Extensions.DependencyInjection.dll => 187 + i64 u0x588c167a79db6bfb, ; 344: lib_Xamarin.Google.ErrorProne.Annotations.dll.so => 281 + i64 u0x5906028ae5151104, ; 345: Xamarin.AndroidX.Activity.Ktx => 210 + i64 u0x595a356d23e8da9a, ; 346: lib_Microsoft.CSharp.dll.so => 1 + i64 u0x59f9e60b9475085f, ; 347: lib_Xamarin.AndroidX.Annotation.Experimental.dll.so => 212 + i64 u0x5a745f5101a75527, ; 348: lib_System.IO.Compression.FileSystem.dll.so => 44 + i64 u0x5a89a886ae30258d, ; 349: lib_Xamarin.AndroidX.CoordinatorLayout.dll.so => 226 + i64 u0x5a8f6699f4a1caa9, ; 350: lib_System.Threading.dll.so => 149 + i64 u0x5ae9cd33b15841bf, ; 351: System.ComponentModel => 18 + i64 u0x5b54391bdc6fcfe6, ; 352: System.Private.DataContractSerialization => 86 + i64 u0x5b5f0e240a06a2a2, ; 353: da/Microsoft.Maui.Controls.resources.dll => 297 + i64 u0x5b8109e8e14c5e3e, ; 354: System.Globalization.Extensions.dll => 41 + i64 u0x5bddd04d72a9e350, ; 355: Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx => 245 + i64 u0x5bdf16b09da116ab, ; 356: Xamarin.AndroidX.Collection => 220 + i64 u0x5c019d5266093159, ; 357: lib_Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll.so => 250 + i64 u0x5c30a4a35f9cc8c4, ; 358: lib_System.Reflection.Extensions.dll.so => 94 + i64 u0x5c393624b8176517, ; 359: lib_Microsoft.Extensions.Logging.dll.so => 194 + i64 u0x5c53c29f5073b0c9, ; 360: System.Diagnostics.FileVersionInfo => 28 + i64 u0x5c87463c575c7616, ; 361: lib_System.Globalization.Extensions.dll.so => 41 + i64 u0x5d0a4a29b02d9d3c, ; 362: System.Net.WebHeaderCollection.dll => 78 + i64 u0x5d25ef991dd9a85c, ; 363: Microsoft.AspNetCore.Components.WebView.Maui.dll => 180 + i64 u0x5d40c9b15181641f, ; 364: lib_Xamarin.AndroidX.Emoji2.dll.so => 235 + i64 u0x5d6ca10d35e9485b, ; 365: lib_Xamarin.AndroidX.Concurrent.Futures.dll.so => 223 + i64 u0x5d7ec76c1c703055, ; 366: System.Threading.Tasks.Parallel => 144 + i64 u0x5db0cbbd1028510e, ; 367: lib_System.Runtime.InteropServices.dll.so => 108 + i64 u0x5db30905d3e5013b, ; 368: Xamarin.AndroidX.Collection.Jvm.dll => 221 + i64 u0x5e467bc8f09ad026, ; 369: System.Collections.Specialized.dll => 11 + i64 u0x5e5173b3208d97e7, ; 370: System.Runtime.Handles.dll => 105 + i64 u0x5ea92fdb19ec8c4c, ; 371: System.Text.Encodings.Web.dll => 137 + i64 u0x5eb8046dd40e9ac3, ; 372: System.ComponentModel.Primitives => 16 + i64 u0x5ec272d219c9aba4, ; 373: System.Security.Cryptography.Csp.dll => 122 + i64 u0x5eee1376d94c7f5e, ; 374: System.Net.HttpListener.dll => 66 + i64 u0x5f36ccf5c6a57e24, ; 375: System.Xml.ReaderWriter.dll => 157 + i64 u0x5f4294b9b63cb842, ; 376: System.Data.Common => 22 + i64 u0x5f9a2d823f664957, ; 377: lib-el-Microsoft.Maui.Controls.resources.dll.so => 299 + i64 u0x5fa6da9c3cd8142a, ; 378: lib_Xamarin.KotlinX.Serialization.Core.dll.so => 292 + i64 u0x5fac98e0b37a5b9d, ; 379: System.Runtime.CompilerServices.Unsafe.dll => 102 + i64 u0x609f4b7b63d802d4, ; 380: lib_Microsoft.Extensions.DependencyInjection.dll.so => 187 + i64 u0x60cd4e33d7e60134, ; 381: Xamarin.KotlinX.Coroutines.Core.Jvm => 291 + i64 u0x60f62d786afcf130, ; 382: System.Memory => 63 + i64 u0x61bb78c89f867353, ; 383: System.IO => 58 + i64 u0x61be8d1299194243, ; 384: Microsoft.Maui.Controls.Xaml => 201 + i64 u0x61d2cba29557038f, ; 385: de/Microsoft.Maui.Controls.resources => 298 + i64 u0x61d88f399afb2f45, ; 386: lib_System.Runtime.Loader.dll.so => 110 + i64 u0x622eef6f9e59068d, ; 387: System.Private.CoreLib => 173 + i64 u0x63cdbd66ac39bb46, ; 388: lib_Microsoft.VisualStudio.DesignTools.XamlTapContract.dll.so => 331 + i64 u0x63d5e3aa4ef9b931, ; 389: Xamarin.KotlinX.Coroutines.Android.dll => 289 + i64 u0x63f1f6883c1e23c2, ; 390: lib_System.Collections.Immutable.dll.so => 9 + i64 u0x6400f68068c1e9f1, ; 391: Xamarin.Google.Android.Material.dll => 278 + i64 u0x640e3b14dbd325c2, ; 392: System.Security.Cryptography.Algorithms.dll => 120 + i64 u0x64587004560099b9, ; 393: System.Reflection => 98 + i64 u0x64b1529a438a3c45, ; 394: lib_System.Runtime.Handles.dll.so => 105 + i64 u0x6565fba2cd8f235b, ; 395: Xamarin.AndroidX.Lifecycle.ViewModel.Ktx => 253 + i64 u0x65ecac39144dd3cc, ; 396: Microsoft.Maui.Controls.dll => 200 + i64 u0x65ece51227bfa724, ; 397: lib_System.Runtime.Numerics.dll.so => 111 + i64 u0x661722438787b57f, ; 398: Xamarin.AndroidX.Annotation.Jvm.dll => 213 + i64 u0x6679b2337ee6b22a, ; 399: lib_System.IO.FileSystem.Primitives.dll.so => 49 + i64 u0x6692e924eade1b29, ; 400: lib_System.Console.dll.so => 20 + i64 u0x66a4e5c6a3fb0bae, ; 401: lib_Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll.so => 252 + i64 u0x66d13304ce1a3efa, ; 402: Xamarin.AndroidX.CursorAdapter => 230 + i64 u0x674303f65d8fad6f, ; 403: lib_System.Net.Quic.dll.so => 72 + i64 u0x6756ca4cad62e9d6, ; 404: lib_Xamarin.AndroidX.ConstraintLayout.Core.dll.so => 225 + i64 u0x67c0802770244408, ; 405: System.Windows.dll => 155 + i64 u0x68100b69286e27cd, ; 406: lib_System.Formats.Tar.dll.so => 39 + i64 u0x68558ec653afa616, ; 407: lib-da-Microsoft.Maui.Controls.resources.dll.so => 297 + i64 u0x6857d56b8e8b4bb6, ; 408: lib_Microsoft.AspNetCore.Metadata.dll.so => 181 + i64 u0x6872ec7a2e36b1ac, ; 409: System.Drawing.Primitives.dll => 35 + i64 u0x68bb2c417aa9b61c, ; 410: Xamarin.KotlinX.AtomicFU.dll => 287 + i64 u0x68fbbbe2eb455198, ; 411: System.Formats.Asn1 => 38 + i64 u0x69063fc0ba8e6bdd, ; 412: he/Microsoft.Maui.Controls.resources.dll => 303 + i64 u0x6972f787bc9ff7f9, ; 413: lib_clipiFrontC.dll.so => 0 + i64 u0x69a3e26c76f6eec4, ; 414: Xamarin.AndroidX.Window.Extensions.Core.Core.dll => 277 + i64 u0x6a4d7577b2317255, ; 415: System.Runtime.InteropServices.dll => 108 + i64 u0x6ace3b74b15ee4a4, ; 416: nb/Microsoft.Maui.Controls.resources => 312 + i64 u0x6afcedb171067e2b, ; 417: System.Core.dll => 21 + i64 u0x6bef98e124147c24, ; 418: Xamarin.Jetbrains.Annotations => 284 + i64 u0x6ce874bff138ce2b, ; 419: Xamarin.AndroidX.Lifecycle.ViewModel.dll => 251 + i64 u0x6d12bfaa99c72b1f, ; 420: lib_Microsoft.Maui.Graphics.dll.so => 204 + i64 u0x6d70755158ca866e, ; 421: lib_System.ComponentModel.EventBasedAsync.dll.so => 15 + i64 u0x6d79993361e10ef2, ; 422: Microsoft.Extensions.Primitives => 198 + i64 u0x6d7eeca99577fc8b, ; 423: lib_System.Net.WebProxy.dll.so => 79 + i64 u0x6d8515b19946b6a2, ; 424: System.Net.WebProxy.dll => 79 + i64 u0x6d86d56b84c8eb71, ; 425: lib_Xamarin.AndroidX.CursorAdapter.dll.so => 230 + i64 u0x6d9bea6b3e895cf7, ; 426: Microsoft.Extensions.Primitives.dll => 198 + i64 u0x6e25a02c3833319a, ; 427: lib_Xamarin.AndroidX.Navigation.Fragment.dll.so => 257 + i64 u0x6e79c6bd8627412a, ; 428: Xamarin.AndroidX.SavedState.SavedState.Ktx => 264 + i64 u0x6e838d9a2a6f6c9e, ; 429: lib_System.ValueTuple.dll.so => 152 + i64 u0x6e9965ce1095e60a, ; 430: lib_System.Core.dll.so => 21 + i64 u0x6fd2265da78b93a4, ; 431: lib_Microsoft.Maui.dll.so => 202 + i64 u0x6fdfc7de82c33008, ; 432: cs/Microsoft.Maui.Controls.resources => 296 + i64 u0x6ffc4967cc47ba57, ; 433: System.IO.FileSystem.Watcher.dll => 50 + i64 u0x701cd46a1c25a5fe, ; 434: System.IO.FileSystem.dll => 51 + i64 u0x70e99f48c05cb921, ; 435: tr/Microsoft.Maui.Controls.resources.dll => 322 + i64 u0x70fd3deda22442d2, ; 436: lib-nb-Microsoft.Maui.Controls.resources.dll.so => 312 + i64 u0x71485e7ffdb4b958, ; 437: System.Reflection.Extensions => 94 + i64 u0x7162a2fce67a945f, ; 438: lib_Xamarin.Android.Glide.Annotations.dll.so => 206 + i64 u0x71a495ea3761dde8, ; 439: lib-it-Microsoft.Maui.Controls.resources.dll.so => 308 + i64 u0x71ad672adbe48f35, ; 440: System.ComponentModel.Primitives.dll => 16 + i64 u0x720f102581a4a5c8, ; 441: Xamarin.AndroidX.Core.ViewTree => 229 + i64 u0x725f5a9e82a45c81, ; 442: System.Security.Cryptography.Encoding => 123 + i64 u0x72b1fb4109e08d7b, ; 443: lib-hr-Microsoft.Maui.Controls.resources.dll.so => 305 + i64 u0x72e0300099accce1, ; 444: System.Xml.XPath.XDocument => 160 + i64 u0x730bfb248998f67a, ; 445: System.IO.Compression.ZipFile => 45 + i64 u0x732b2d67b9e5c47b, ; 446: Xamarin.Google.ErrorProne.Annotations.dll => 281 + i64 u0x734b76fdc0dc05bb, ; 447: lib_GoogleGson.dll.so => 174 + i64 u0x73a6be34e822f9d1, ; 448: lib_System.Runtime.Serialization.dll.so => 116 + i64 u0x73e4ce94e2eb6ffc, ; 449: lib_System.Memory.dll.so => 63 + i64 u0x743a1eccf080489a, ; 450: WindowsBase.dll => 166 + i64 u0x755a91767330b3d4, ; 451: lib_Microsoft.Extensions.Configuration.dll.so => 182 + i64 u0x75c326eb821b85c4, ; 452: lib_System.ComponentModel.DataAnnotations.dll.so => 14 + i64 u0x76012e7334db86e5, ; 453: lib_Xamarin.AndroidX.SavedState.dll.so => 263 + i64 u0x76ca07b878f44da0, ; 454: System.Runtime.Numerics.dll => 111 + i64 u0x7736c8a96e51a061, ; 455: lib_Xamarin.AndroidX.Annotation.Jvm.dll.so => 213 + i64 u0x778a805e625329ef, ; 456: System.Linq.Parallel => 60 + i64 u0x779290cc2b801eb7, ; 457: Xamarin.KotlinX.AtomicFU.Jvm => 288 + i64 u0x779f67ad3b8efbd5, ; 458: Microsoft.Extensions.Configuration.Json.dll => 186 + i64 u0x77f8a4acc2fdc449, ; 459: System.Security.Cryptography.Cng.dll => 121 + i64 u0x780bc73597a503a9, ; 460: lib-ms-Microsoft.Maui.Controls.resources.dll.so => 311 + i64 u0x782c5d8eb99ff201, ; 461: lib_Microsoft.VisualBasic.Core.dll.so => 2 + i64 u0x783606d1e53e7a1a, ; 462: th/Microsoft.Maui.Controls.resources.dll => 321 + i64 u0x78a45e51311409b6, ; 463: Xamarin.AndroidX.Fragment.dll => 238 + i64 u0x78ed4ab8f9d800a1, ; 464: Xamarin.AndroidX.Lifecycle.ViewModel => 251 + i64 u0x7a39601d6f0bb831, ; 465: lib_Xamarin.KotlinX.AtomicFU.dll.so => 287 + i64 u0x7a5207a7c82d30b4, ; 466: lib_Xamarin.JSpecify.dll.so => 285 + i64 u0x7a71889545dcdb00, ; 467: lib_Microsoft.AspNetCore.Components.WebView.dll.so => 179 + i64 u0x7a7e7eddf79c5d26, ; 468: lib_Xamarin.AndroidX.Lifecycle.ViewModel.dll.so => 251 + i64 u0x7a9a57d43b0845fa, ; 469: System.AppContext => 6 + i64 u0x7ad0f4f1e5d08183, ; 470: Xamarin.AndroidX.Collection.dll => 220 + i64 u0x7adb8da2ac89b647, ; 471: fi/Microsoft.Maui.Controls.resources.dll => 301 + i64 u0x7b13d9eaa944ade8, ; 472: Xamarin.AndroidX.DynamicAnimation.dll => 234 + i64 u0x7bef86a4335c4870, ; 473: System.ComponentModel.TypeConverter => 17 + i64 u0x7c0820144cd34d6a, ; 474: sk/Microsoft.Maui.Controls.resources.dll => 319 + i64 u0x7c2a0bd1e0f988fc, ; 475: lib-de-Microsoft.Maui.Controls.resources.dll.so => 298 + i64 u0x7c41d387501568ba, ; 476: System.Net.WebClient.dll => 77 + i64 u0x7c482cd79bd24b13, ; 477: lib_Xamarin.AndroidX.ConstraintLayout.dll.so => 224 + i64 u0x7c4867f3cb880d2f, ; 478: Microsoft.AspNetCore.Metadata => 181 + i64 u0x7cd2ec8eaf5241cd, ; 479: System.Security.dll => 131 + i64 u0x7cf9ae50dd350622, ; 480: Xamarin.Jetbrains.Annotations.dll => 284 + i64 u0x7d649b75d580bb42, ; 481: ms/Microsoft.Maui.Controls.resources.dll => 311 + i64 u0x7d8b5821548f89e7, ; 482: Microsoft.AspNetCore.Components.Forms => 177 + i64 u0x7d8ee2bdc8e3aad1, ; 483: System.Numerics.Vectors => 83 + i64 u0x7df5df8db8eaa6ac, ; 484: Microsoft.Extensions.Logging.Debug => 196 + i64 u0x7dfc3d6d9d8d7b70, ; 485: System.Collections => 12 + i64 u0x7e2e564fa2f76c65, ; 486: lib_System.Diagnostics.Tracing.dll.so => 34 + i64 u0x7e302e110e1e1346, ; 487: lib_System.Security.Claims.dll.so => 119 + i64 u0x7e4465b3f78ad8d0, ; 488: Xamarin.KotlinX.Serialization.Core.dll => 292 + i64 u0x7e571cad5915e6c3, ; 489: lib_Xamarin.AndroidX.Lifecycle.Process.dll.so => 246 + i64 u0x7e6b1ca712437d7d, ; 490: Xamarin.AndroidX.Emoji2.ViewsHelper => 236 + i64 u0x7e946809d6008ef2, ; 491: lib_System.ObjectModel.dll.so => 85 + i64 u0x7ea0272c1b4a9635, ; 492: lib_Xamarin.Android.Glide.dll.so => 205 + i64 u0x7ecc13347c8fd849, ; 493: lib_System.ComponentModel.dll.so => 18 + i64 u0x7f00ddd9b9ca5a13, ; 494: Xamarin.AndroidX.ViewPager.dll => 274 + i64 u0x7f9351cd44b1273f, ; 495: Microsoft.Extensions.Configuration.Abstractions => 183 + i64 u0x7fbd557c99b3ce6f, ; 496: lib_Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so => 244 + i64 u0x8076a9a44a2ca331, ; 497: System.Net.Quic => 72 + i64 u0x80b7e726b0280681, ; 498: Microsoft.VisualStudio.DesignTools.MobileTapContracts => 329 + i64 u0x80da183a87731838, ; 499: System.Reflection.Metadata => 95 + i64 u0x8101a73bd4533440, ; 500: Microsoft.AspNetCore.Components.Web => 178 + i64 u0x812c069d5cdecc17, ; 501: System.dll => 165 + i64 u0x81381be520a60adb, ; 502: Xamarin.AndroidX.Interpolator.dll => 240 + i64 u0x81657cec2b31e8aa, ; 503: System.Net => 82 + i64 u0x81ab745f6c0f5ce6, ; 504: zh-Hant/Microsoft.Maui.Controls.resources => 327 + i64 u0x8277f2be6b5ce05f, ; 505: Xamarin.AndroidX.AppCompat => 214 + i64 u0x828f06563b30bc50, ; 506: lib_Xamarin.AndroidX.CardView.dll.so => 219 + i64 u0x82920a8d9194a019, ; 507: Xamarin.KotlinX.AtomicFU.Jvm.dll => 288 + i64 u0x82b399cb01b531c4, ; 508: lib_System.Web.dll.so => 154 + i64 u0x82df8f5532a10c59, ; 509: lib_System.Drawing.dll.so => 36 + i64 u0x82f0b6e911d13535, ; 510: lib_System.Transactions.dll.so => 151 + i64 u0x82f6403342e12049, ; 511: uk/Microsoft.Maui.Controls.resources => 323 + i64 u0x83c14ba66c8e2b8c, ; 512: zh-Hans/Microsoft.Maui.Controls.resources => 326 + i64 u0x83de69860da6cbdd, ; 513: Microsoft.Extensions.FileProviders.Composite => 190 + i64 u0x846ce984efea52c7, ; 514: System.Threading.Tasks.Parallel.dll => 144 + i64 u0x84ae73148a4557d2, ; 515: lib_System.IO.Pipes.dll.so => 56 + i64 u0x84b01102c12a9232, ; 516: System.Runtime.Serialization.Json.dll => 113 + i64 u0x850c5ba0b57ce8e7, ; 517: lib_Xamarin.AndroidX.Collection.dll.so => 220 + i64 u0x851d02edd334b044, ; 518: Xamarin.AndroidX.VectorDrawable => 271 + i64 u0x85c919db62150978, ; 519: Xamarin.AndroidX.Transition.dll => 270 + i64 u0x8662aaeb94fef37f, ; 520: lib_System.Dynamic.Runtime.dll.so => 37 + i64 u0x86a909228dc7657b, ; 521: lib-zh-Hant-Microsoft.Maui.Controls.resources.dll.so => 327 + i64 u0x86b3e00c36b84509, ; 522: Microsoft.Extensions.Configuration.dll => 182 + i64 u0x86b62cb077ec4fd7, ; 523: System.Runtime.Serialization.Xml => 115 + i64 u0x8704193f462e892e, ; 524: lib_Microsoft.Extensions.FileSystemGlobbing.dll.so => 193 + i64 u0x8706ffb12bf3f53d, ; 525: Xamarin.AndroidX.Annotation.Experimental => 212 + i64 u0x872a5b14c18d328c, ; 526: System.ComponentModel.DataAnnotations => 14 + i64 u0x872fb9615bc2dff0, ; 527: Xamarin.Android.Glide.Annotations.dll => 206 + i64 u0x87c69b87d9283884, ; 528: lib_System.Threading.Thread.dll.so => 146 + i64 u0x87f6569b25707834, ; 529: System.IO.Compression.Brotli.dll => 43 + i64 u0x8842b3a5d2d3fb36, ; 530: Microsoft.Maui.Essentials => 203 + i64 u0x88926583efe7ee86, ; 531: Xamarin.AndroidX.Activity.Ktx.dll => 210 + i64 u0x88ba6bc4f7762b03, ; 532: lib_System.Reflection.dll.so => 98 + i64 u0x88bda98e0cffb7a9, ; 533: lib_Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so => 291 + i64 u0x8930322c7bd8f768, ; 534: netstandard => 168 + i64 u0x897a606c9e39c75f, ; 535: lib_System.ComponentModel.Primitives.dll.so => 16 + i64 u0x89911a22005b92b7, ; 536: System.IO.FileSystem.DriveInfo.dll => 48 + i64 u0x89c5188089ec2cd5, ; 537: lib_System.Runtime.InteropServices.RuntimeInformation.dll.so => 107 + i64 u0x8a19e3dc71b34b2c, ; 538: System.Reflection.TypeExtensions.dll => 97 + i64 u0x8ad229ea26432ee2, ; 539: Xamarin.AndroidX.Loader => 255 + i64 u0x8b4ff5d0fdd5faa1, ; 540: lib_System.Diagnostics.DiagnosticSource.dll.so => 27 + i64 u0x8b541d476eb3774c, ; 541: System.Security.Principal.Windows => 128 + i64 u0x8b8d01333a96d0b5, ; 542: System.Diagnostics.Process.dll => 29 + i64 u0x8b9ceca7acae3451, ; 543: lib-he-Microsoft.Maui.Controls.resources.dll.so => 303 + i64 u0x8c575135aa1ccef4, ; 544: Microsoft.Extensions.FileProviders.Abstractions => 189 + i64 u0x8cb8f612b633affb, ; 545: Xamarin.AndroidX.SavedState.SavedState.Ktx.dll => 264 + i64 u0x8cdfdb4ce85fb925, ; 546: lib_System.Security.Principal.Windows.dll.so => 128 + i64 u0x8cdfe7b8f4caa426, ; 547: System.IO.Compression.FileSystem => 44 + i64 u0x8d0f420977c2c1c7, ; 548: Xamarin.AndroidX.CursorAdapter.dll => 230 + i64 u0x8d52f7ea2796c531, ; 549: Xamarin.AndroidX.Emoji2.dll => 235 + i64 u0x8d7b8ab4b3310ead, ; 550: System.Threading => 149 + i64 u0x8da188285aadfe8e, ; 551: System.Collections.Concurrent => 8 + i64 u0x8ed807bfe9858dfc, ; 552: Xamarin.AndroidX.Navigation.Common => 256 + i64 u0x8ee08b8194a30f48, ; 553: lib-hi-Microsoft.Maui.Controls.resources.dll.so => 304 + i64 u0x8ef7601039857a44, ; 554: lib-ro-Microsoft.Maui.Controls.resources.dll.so => 317 + i64 u0x8f32c6f611f6ffab, ; 555: pt/Microsoft.Maui.Controls.resources.dll => 316 + i64 u0x8f44b45eb046bbd1, ; 556: System.ServiceModel.Web.dll => 132 + i64 u0x8f8829d21c8985a4, ; 557: lib-pt-BR-Microsoft.Maui.Controls.resources.dll.so => 315 + i64 u0x8fbf5b0114c6dcef, ; 558: System.Globalization.dll => 42 + i64 u0x8fcc8c2a81f3d9e7, ; 559: Xamarin.KotlinX.Serialization.Core => 292 + i64 u0x90263f8448b8f572, ; 560: lib_System.Diagnostics.TraceSource.dll.so => 33 + i64 u0x903101b46fb73a04, ; 561: _Microsoft.Android.Resource.Designer => 332 + i64 u0x90393bd4865292f3, ; 562: lib_System.IO.Compression.dll.so => 46 + i64 u0x905e2b8e7ae91ae6, ; 563: System.Threading.Tasks.Extensions.dll => 143 + i64 u0x90634f86c5ebe2b5, ; 564: Xamarin.AndroidX.Lifecycle.ViewModel.Android => 252 + i64 u0x907b636704ad79ef, ; 565: lib_Microsoft.Maui.Controls.Xaml.dll.so => 201 + i64 u0x90e9efbfd68593e0, ; 566: lib_Xamarin.AndroidX.Lifecycle.LiveData.dll.so => 243 + i64 u0x91418dc638b29e68, ; 567: lib_Xamarin.AndroidX.CustomView.dll.so => 231 + i64 u0x914647982e998267, ; 568: Microsoft.Extensions.Configuration.Json => 186 + i64 u0x9157bd523cd7ed36, ; 569: lib_System.Text.Json.dll.so => 138 + i64 u0x91a74f07b30d37e2, ; 570: System.Linq.dll => 62 + i64 u0x91cb86ea3b17111d, ; 571: System.ServiceModel.Web => 132 + i64 u0x91fa41a87223399f, ; 572: ca/Microsoft.Maui.Controls.resources.dll => 295 + i64 u0x92054e486c0c7ea7, ; 573: System.IO.FileSystem.DriveInfo => 48 + i64 u0x928614058c40c4cd, ; 574: lib_System.Xml.XPath.XDocument.dll.so => 160 + i64 u0x92b138fffca2b01e, ; 575: lib_Xamarin.AndroidX.Arch.Core.Runtime.dll.so => 217 + i64 u0x92dfc2bfc6c6a888, ; 576: Xamarin.AndroidX.Lifecycle.LiveData => 243 + i64 u0x933da2c779423d68, ; 577: Xamarin.Android.Glide.Annotations => 206 + i64 u0x9388aad9b7ae40ce, ; 578: lib_Xamarin.AndroidX.Lifecycle.Common.dll.so => 241 + i64 u0x93cfa73ab28d6e35, ; 579: ms/Microsoft.Maui.Controls.resources => 311 + i64 u0x941c00d21e5c0679, ; 580: lib_Xamarin.AndroidX.Transition.dll.so => 270 + i64 u0x944077d8ca3c6580, ; 581: System.IO.Compression.dll => 46 + i64 u0x948cffedc8ed7960, ; 582: System.Xml => 164 + i64 u0x94c8990839c4bdb1, ; 583: lib_Xamarin.AndroidX.Interpolator.dll.so => 240 + i64 u0x967fc325e09bfa8c, ; 584: es/Microsoft.Maui.Controls.resources => 300 + i64 u0x9686161486d34b81, ; 585: lib_Xamarin.AndroidX.ExifInterface.dll.so => 237 + i64 u0x9732d8dbddea3d9a, ; 586: id/Microsoft.Maui.Controls.resources => 307 + i64 u0x978be80e5210d31b, ; 587: Microsoft.Maui.Graphics.dll => 204 + i64 u0x97b8c771ea3e4220, ; 588: System.ComponentModel.dll => 18 + i64 u0x97e144c9d3c6976e, ; 589: System.Collections.Concurrent.dll => 8 + i64 u0x984184e3c70d4419, ; 590: GoogleGson => 174 + i64 u0x9843944103683dd3, ; 591: Xamarin.AndroidX.Core.Core.Ktx => 228 + i64 u0x98d720cc4597562c, ; 592: System.Security.Cryptography.OpenSsl => 124 + i64 u0x991d510397f92d9d, ; 593: System.Linq.Expressions => 59 + i64 u0x996ceeb8a3da3d67, ; 594: System.Threading.Overlapped.dll => 141 + i64 u0x99a00ca5270c6878, ; 595: Xamarin.AndroidX.Navigation.Runtime => 258 + i64 u0x99cdc6d1f2d3a72f, ; 596: ko/Microsoft.Maui.Controls.resources.dll => 310 + i64 u0x9a01b1da98b6ee10, ; 597: Xamarin.AndroidX.Lifecycle.Runtime.dll => 247 + i64 u0x9a5ccc274fd6e6ee, ; 598: Jsr305Binding.dll => 279 + i64 u0x9ae6940b11c02876, ; 599: lib_Xamarin.AndroidX.Window.dll.so => 276 + i64 u0x9b211a749105beac, ; 600: System.Transactions.Local => 150 + i64 u0x9b8734714671022d, ; 601: System.Threading.Tasks.Dataflow.dll => 142 + i64 u0x9bc6aea27fbf034f, ; 602: lib_Xamarin.KotlinX.Coroutines.Core.dll.so => 290 + i64 u0x9bd8cc74558ad4c7, ; 603: Xamarin.KotlinX.AtomicFU => 287 + i64 u0x9c244ac7cda32d26, ; 604: System.Security.Cryptography.X509Certificates.dll => 126 + i64 u0x9c465f280cf43733, ; 605: lib_Xamarin.KotlinX.Coroutines.Android.dll.so => 289 + i64 u0x9c8f6872beab6408, ; 606: System.Xml.XPath.XDocument.dll => 160 + i64 u0x9ce01cf91101ae23, ; 607: System.Xml.XmlDocument => 162 + i64 u0x9d128180c81d7ce6, ; 608: Xamarin.AndroidX.CustomView.PoolingContainer => 232 + i64 u0x9d5dbcf5a48583fe, ; 609: lib_Xamarin.AndroidX.Activity.dll.so => 209 + i64 u0x9d74dee1a7725f34, ; 610: Microsoft.Extensions.Configuration.Abstractions.dll => 183 + i64 u0x9e4534b6adaf6e84, ; 611: nl/Microsoft.Maui.Controls.resources => 313 + i64 u0x9e4b95dec42769f7, ; 612: System.Diagnostics.Debug.dll => 26 + i64 u0x9eaf1efdf6f7267e, ; 613: Xamarin.AndroidX.Navigation.Common.dll => 256 + i64 u0x9ef542cf1f78c506, ; 614: Xamarin.AndroidX.Lifecycle.LiveData.Core => 244 + i64 u0x9fbb2961ca18e5c2, ; 615: Microsoft.Extensions.FileProviders.Physical.dll => 192 + i64 u0xa00832eb975f56a8, ; 616: lib_System.Net.dll.so => 82 + i64 u0xa0ad78236b7b267f, ; 617: Xamarin.AndroidX.Window => 276 + i64 u0xa0d8259f4cc284ec, ; 618: lib_System.Security.Cryptography.dll.so => 127 + i64 u0xa0e17ca50c77a225, ; 619: lib_Xamarin.Google.Crypto.Tink.Android.dll.so => 280 + i64 u0xa0ff9b3e34d92f11, ; 620: lib_System.Resources.Writer.dll.so => 101 + i64 u0xa12fbfb4da97d9f3, ; 621: System.Threading.Timer.dll => 148 + i64 u0xa1440773ee9d341e, ; 622: Xamarin.Google.Android.Material => 278 + i64 u0xa1b9d7c27f47219f, ; 623: Xamarin.AndroidX.Navigation.UI.dll => 259 + i64 u0xa2572680829d2c7c, ; 624: System.IO.Pipelines.dll => 54 + i64 u0xa26597e57ee9c7f6, ; 625: System.Xml.XmlDocument.dll => 162 + i64 u0xa308401900e5bed3, ; 626: lib_mscorlib.dll.so => 167 + i64 u0xa395572e7da6c99d, ; 627: lib_System.Security.dll.so => 131 + i64 u0xa3b8104115a36bf6, ; 628: lib_Microsoft.Extensions.FileProviders.Embedded.dll.so => 191 + i64 u0xa3e683f24b43af6f, ; 629: System.Dynamic.Runtime.dll => 37 + i64 u0xa4145becdee3dc4f, ; 630: Xamarin.AndroidX.VectorDrawable.Animated => 272 + i64 u0xa46aa1eaa214539b, ; 631: ko/Microsoft.Maui.Controls.resources => 310 + i64 u0xa4e62983cf1e3674, ; 632: Microsoft.AspNetCore.Components.Forms.dll => 177 + i64 u0xa4edc8f2ceae241a, ; 633: System.Data.Common.dll => 22 + i64 u0xa5494f40f128ce6a, ; 634: System.Runtime.Serialization.Formatters.dll => 112 + i64 u0xa54b74df83dce92b, ; 635: System.Reflection.DispatchProxy => 90 + i64 u0xa5b7152421ed6d98, ; 636: lib_System.IO.FileSystem.Watcher.dll.so => 50 + i64 u0xa5c3844f17b822db, ; 637: lib_System.Linq.Parallel.dll.so => 60 + i64 u0xa5ce5c755bde8cb8, ; 638: lib_System.Security.Cryptography.Csp.dll.so => 122 + i64 u0xa5e599d1e0524750, ; 639: System.Numerics.Vectors.dll => 83 + i64 u0xa5f1ba49b85dd355, ; 640: System.Security.Cryptography.dll => 127 + i64 u0xa61975a5a37873ea, ; 641: lib_System.Xml.XmlSerializer.dll.so => 163 + i64 u0xa6593e21584384d2, ; 642: lib_Jsr305Binding.dll.so => 279 + i64 u0xa66cbee0130865f7, ; 643: lib_WindowsBase.dll.so => 166 + i64 u0xa67dbee13e1df9ca, ; 644: Xamarin.AndroidX.SavedState.dll => 263 + i64 u0xa684b098dd27b296, ; 645: lib_Xamarin.AndroidX.Security.SecurityCrypto.dll.so => 265 + i64 u0xa68a420042bb9b1f, ; 646: Xamarin.AndroidX.DrawerLayout.dll => 233 + i64 u0xa6d26156d1cacc7c, ; 647: Xamarin.Android.Glide.dll => 205 + i64 u0xa75386b5cb9595aa, ; 648: Xamarin.AndroidX.Lifecycle.Runtime.Android => 248 + i64 u0xa763fbb98df8d9fb, ; 649: lib_Microsoft.Win32.Primitives.dll.so => 4 + i64 u0xa78ce3745383236a, ; 650: Xamarin.AndroidX.Lifecycle.Common.Jvm => 242 + i64 u0xa7c31b56b4dc7b33, ; 651: hu/Microsoft.Maui.Controls.resources => 306 + i64 u0xa7eab29ed44b4e7a, ; 652: Mono.Android.Export => 170 + i64 u0xa8195217cbf017b7, ; 653: Microsoft.VisualBasic.Core => 2 + i64 u0xa82fd211eef00a5b, ; 654: Microsoft.Extensions.FileProviders.Physical => 192 + i64 u0xa859a95830f367ff, ; 655: lib_Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll.so => 253 + i64 u0xa8b52f21e0dbe690, ; 656: System.Runtime.Serialization.dll => 116 + i64 u0xa8c84ce526c2b4bd, ; 657: Microsoft.VisualStudio.DesignTools.XamlTapContract.dll => 331 + i64 u0xa8ee4ed7de2efaee, ; 658: Xamarin.AndroidX.Annotation.dll => 211 + i64 u0xa95590e7c57438a4, ; 659: System.Configuration => 19 + i64 u0xaa2219c8e3449ff5, ; 660: Microsoft.Extensions.Logging.Abstractions => 195 + i64 u0xaa443ac34067eeef, ; 661: System.Private.Xml.dll => 89 + i64 u0xaa52de307ef5d1dd, ; 662: System.Net.Http => 65 + i64 u0xaa9a7b0214a5cc5c, ; 663: System.Diagnostics.StackTrace.dll => 30 + i64 u0xaaaf86367285a918, ; 664: Microsoft.Extensions.DependencyInjection.Abstractions.dll => 188 + i64 u0xaaf84bb3f052a265, ; 665: el/Microsoft.Maui.Controls.resources => 299 + i64 u0xab9af77b5b67a0b8, ; 666: Xamarin.AndroidX.ConstraintLayout.Core => 225 + i64 u0xab9c1b2687d86b0b, ; 667: lib_System.Linq.Expressions.dll.so => 59 + i64 u0xac2af3fa195a15ce, ; 668: System.Runtime.Numerics => 111 + i64 u0xac5376a2a538dc10, ; 669: Xamarin.AndroidX.Lifecycle.LiveData.Core.dll => 244 + i64 u0xac5acae88f60357e, ; 670: System.Diagnostics.Tools.dll => 32 + i64 u0xac79c7e46047ad98, ; 671: System.Security.Principal.Windows.dll => 128 + i64 u0xac98d31068e24591, ; 672: System.Xml.XDocument => 159 + i64 u0xacd46e002c3ccb97, ; 673: ro/Microsoft.Maui.Controls.resources => 317 + i64 u0xacdd9e4180d56dda, ; 674: Xamarin.AndroidX.Concurrent.Futures => 223 + i64 u0xacf42eea7ef9cd12, ; 675: System.Threading.Channels => 140 + i64 u0xad89c07347f1bad6, ; 676: nl/Microsoft.Maui.Controls.resources.dll => 313 + i64 u0xadbb53caf78a79d2, ; 677: System.Web.HttpUtility => 153 + i64 u0xadc90ab061a9e6e4, ; 678: System.ComponentModel.TypeConverter.dll => 17 + i64 u0xadca1b9030b9317e, ; 679: Xamarin.AndroidX.Collection.Ktx => 222 + i64 u0xadd8eda2edf396ad, ; 680: Xamarin.Android.Glide.GifDecoder => 208 + i64 u0xadf4cf30debbeb9a, ; 681: System.Net.ServicePoint.dll => 75 + i64 u0xadf511667bef3595, ; 682: System.Net.Security => 74 + i64 u0xae0aaa94fdcfce0f, ; 683: System.ComponentModel.EventBasedAsync.dll => 15 + i64 u0xae282bcd03739de7, ; 684: Java.Interop => 169 + i64 u0xae53579c90db1107, ; 685: System.ObjectModel.dll => 85 + i64 u0xaec7c0c7e2ed4575, ; 686: lib_Xamarin.KotlinX.AtomicFU.Jvm.dll.so => 288 + i64 u0xaf732d0b2193b8f5, ; 687: System.Security.Cryptography.OpenSsl.dll => 124 + i64 u0xafdb94dbccd9d11c, ; 688: Xamarin.AndroidX.Lifecycle.LiveData.dll => 243 + i64 u0xafe29f45095518e7, ; 689: lib_Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so => 254 + i64 u0xb03ae931fb25607e, ; 690: Xamarin.AndroidX.ConstraintLayout => 224 + i64 u0xb05cc42cd94c6d9d, ; 691: lib-sv-Microsoft.Maui.Controls.resources.dll.so => 320 + i64 u0xb0ac21bec8f428c5, ; 692: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll => 250 + i64 u0xb0bb43dc52ea59f9, ; 693: System.Diagnostics.Tracing.dll => 34 + i64 u0xb1ccbf6243328d1c, ; 694: Microsoft.AspNetCore.Components => 176 + i64 u0xb1dd05401aa8ee63, ; 695: System.Security.AccessControl => 118 + i64 u0xb220631954820169, ; 696: System.Text.RegularExpressions => 139 + i64 u0xb2376e1dbf8b4ed7, ; 697: System.Security.Cryptography.Csp => 122 + i64 u0xb2a1959fe95c5402, ; 698: lib_System.Runtime.InteropServices.JavaScript.dll.so => 106 + i64 u0xb2a3f67f3bf29fce, ; 699: da/Microsoft.Maui.Controls.resources => 297 + i64 u0xb3011a0a57f7ffb2, ; 700: Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll => 329 + i64 u0xb3874072ee0ecf8c, ; 701: Xamarin.AndroidX.VectorDrawable.Animated.dll => 272 + i64 u0xb3f0a0fcda8d3ebc, ; 702: Xamarin.AndroidX.CardView => 219 + i64 u0xb46be1aa6d4fff93, ; 703: hi/Microsoft.Maui.Controls.resources => 304 + i64 u0xb477491be13109d8, ; 704: ar/Microsoft.Maui.Controls.resources => 294 + i64 u0xb4bd7015ecee9d86, ; 705: System.IO.Pipelines => 54 + i64 u0xb4c53d9749c5f226, ; 706: lib_System.IO.FileSystem.AccessControl.dll.so => 47 + i64 u0xb4ff710863453fda, ; 707: System.Diagnostics.FileVersionInfo.dll => 28 + i64 u0xb5c38bf497a4cfe2, ; 708: lib_System.Threading.Tasks.dll.so => 145 + i64 u0xb5c7fcdafbc67ee4, ; 709: Microsoft.Extensions.Logging.Abstractions.dll => 195 + i64 u0xb5ea31d5244c6626, ; 710: System.Threading.ThreadPool.dll => 147 + i64 u0xb7212c4683a94afe, ; 711: System.Drawing.Primitives => 35 + i64 u0xb7b7753d1f319409, ; 712: sv/Microsoft.Maui.Controls.resources => 320 + i64 u0xb81a2c6e0aee50fe, ; 713: lib_System.Private.CoreLib.dll.so => 173 + i64 u0xb8b0a9b3dfbc5cb7, ; 714: Xamarin.AndroidX.Window.Extensions.Core.Core => 277 + i64 u0xb8c60af47c08d4da, ; 715: System.Net.ServicePoint => 75 + i64 u0xb8e68d20aad91196, ; 716: lib_System.Xml.XPath.dll.so => 161 + i64 u0xb9185c33a1643eed, ; 717: Microsoft.CSharp.dll => 1 + i64 u0xb9b8001adf4ed7cc, ; 718: lib_Xamarin.AndroidX.SlidingPaneLayout.dll.so => 266 + i64 u0xb9f64d3b230def68, ; 719: lib-pt-Microsoft.Maui.Controls.resources.dll.so => 316 + i64 u0xb9fc3c8a556e3691, ; 720: ja/Microsoft.Maui.Controls.resources => 309 + i64 u0xba4670aa94a2b3c6, ; 721: lib_System.Xml.XDocument.dll.so => 159 + i64 u0xba48785529705af9, ; 722: System.Collections.dll => 12 + i64 u0xba965b8c86359996, ; 723: lib_System.Windows.dll.so => 155 + i64 u0xbaf762c4825c14e9, ; 724: Microsoft.AspNetCore.Components.WebView => 179 + i64 u0xbb286883bc35db36, ; 725: System.Transactions.dll => 151 + i64 u0xbb65706fde942ce3, ; 726: System.Net.Sockets => 76 + i64 u0xbba28979413cad9e, ; 727: lib_System.Runtime.CompilerServices.VisualC.dll.so => 103 + i64 u0xbbd180354b67271a, ; 728: System.Runtime.Serialization.Formatters => 112 + i64 u0xbc260cdba33291a3, ; 729: Xamarin.AndroidX.Arch.Core.Common.dll => 216 + i64 u0xbc3c4e8dffea9d4e, ; 730: Microsoft.AspNetCore.Metadata.dll => 181 + i64 u0xbcd36316d29f27b4, ; 731: lib_Microsoft.AspNetCore.Authorization.dll.so => 175 + i64 u0xbd0e2c0d55246576, ; 732: System.Net.Http.dll => 65 + i64 u0xbd3fbd85b9e1cb29, ; 733: lib_System.Net.HttpListener.dll.so => 66 + i64 u0xbd437a2cdb333d0d, ; 734: Xamarin.AndroidX.ViewPager2 => 275 + i64 u0xbd4f572d2bd0a789, ; 735: System.IO.Compression.ZipFile.dll => 45 + i64 u0xbd5d0b88d3d647a5, ; 736: lib_Xamarin.AndroidX.Browser.dll.so => 218 + i64 u0xbd877b14d0b56392, ; 737: System.Runtime.Intrinsics.dll => 109 + i64 u0xbe65a49036345cf4, ; 738: lib_System.Buffers.dll.so => 7 + i64 u0xbee38d4a88835966, ; 739: Xamarin.AndroidX.AppCompat.AppCompatResources => 215 + i64 u0xbef9919db45b4ca7, ; 740: System.IO.Pipes.AccessControl => 55 + i64 u0xbf0fa68611139208, ; 741: lib_Xamarin.AndroidX.Annotation.dll.so => 211 + i64 u0xbfc1e1fb3095f2b3, ; 742: lib_System.Net.Http.Json.dll.so => 64 + i64 u0xc040a4ab55817f58, ; 743: ar/Microsoft.Maui.Controls.resources.dll => 294 + i64 u0xc07cadab29efeba0, ; 744: Xamarin.AndroidX.Core.Core.Ktx.dll => 228 + i64 u0xc0d928351ab5ca77, ; 745: System.Console.dll => 20 + i64 u0xc0f5a221a9383aea, ; 746: System.Runtime.Intrinsics => 109 + i64 u0xc111030af54d7191, ; 747: System.Resources.Writer => 101 + i64 u0xc12b8b3afa48329c, ; 748: lib_System.Linq.dll.so => 62 + i64 u0xc183ca0b74453aa9, ; 749: lib_System.Threading.Tasks.Dataflow.dll.so => 142 + i64 u0xc1ebdc7e6a943450, ; 750: Microsoft.AspNetCore.Authorization.dll => 175 + i64 u0xc1ff9ae3cdb6e1e6, ; 751: Xamarin.AndroidX.Activity.dll => 209 + i64 u0xc26c064effb1dea9, ; 752: System.Buffers.dll => 7 + i64 u0xc28c50f32f81cc73, ; 753: ja/Microsoft.Maui.Controls.resources.dll => 309 + i64 u0xc2902f6cf5452577, ; 754: lib_Mono.Android.Export.dll.so => 170 + i64 u0xc2a3bca55b573141, ; 755: System.IO.FileSystem.Watcher => 50 + i64 u0xc2bcfec99f69365e, ; 756: Xamarin.AndroidX.ViewPager2.dll => 275 + i64 u0xc30b52815b58ac2c, ; 757: lib_System.Runtime.Serialization.Xml.dll.so => 115 + i64 u0xc36d7d89c652f455, ; 758: System.Threading.Overlapped => 141 + i64 u0xc396b285e59e5493, ; 759: GoogleGson.dll => 174 + i64 u0xc3c86c1e5e12f03d, ; 760: WindowsBase => 166 + i64 u0xc421b61fd853169d, ; 761: lib_System.Net.WebSockets.Client.dll.so => 80 + i64 u0xc463e077917aa21d, ; 762: System.Runtime.Serialization.Json => 113 + i64 u0xc4d3858ed4d08512, ; 763: Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll => 254 + i64 u0xc50fded0ded1418c, ; 764: lib_System.ComponentModel.TypeConverter.dll.so => 17 + i64 u0xc519125d6bc8fb11, ; 765: lib_System.Net.Requests.dll.so => 73 + i64 u0xc5293b19e4dc230e, ; 766: Xamarin.AndroidX.Navigation.Fragment => 257 + i64 u0xc5325b2fcb37446f, ; 767: lib_System.Private.Xml.dll.so => 89 + i64 u0xc535cb9a21385d9b, ; 768: lib_Xamarin.Android.Glide.DiskLruCache.dll.so => 207 + i64 u0xc5a0f4b95a699af7, ; 769: lib_System.Private.Uri.dll.so => 87 + i64 u0xc5cdcd5b6277579e, ; 770: lib_System.Security.Cryptography.Algorithms.dll.so => 120 + i64 u0xc5ec286825cb0bf4, ; 771: Xamarin.AndroidX.Tracing.Tracing => 269 + i64 u0xc659b586d4c229e2, ; 772: Microsoft.Extensions.Configuration.FileExtensions.dll => 185 + i64 u0xc6706bc8aa7fe265, ; 773: Xamarin.AndroidX.Annotation.Jvm => 213 + i64 u0xc7c01e7d7c93a110, ; 774: System.Text.Encoding.Extensions.dll => 135 + i64 u0xc7ce851898a4548e, ; 775: lib_System.Web.HttpUtility.dll.so => 153 + i64 u0xc809d4089d2556b2, ; 776: System.Runtime.InteropServices.JavaScript.dll => 106 + i64 u0xc858a28d9ee5a6c5, ; 777: lib_System.Collections.Specialized.dll.so => 11 + i64 u0xc8ac7c6bf1c2ec51, ; 778: System.Reflection.DispatchProxy.dll => 90 + i64 u0xc9c62c8f354ac568, ; 779: lib_System.Diagnostics.TextWriterTraceListener.dll.so => 31 + i64 u0xca3110fea81c8916, ; 780: Microsoft.AspNetCore.Components.Web.dll => 178 + i64 u0xca3a723e7342c5b6, ; 781: lib-tr-Microsoft.Maui.Controls.resources.dll.so => 322 + i64 u0xca5801070d9fccfb, ; 782: System.Text.Encoding => 136 + i64 u0xcab3493c70141c2d, ; 783: pl/Microsoft.Maui.Controls.resources => 314 + i64 u0xcab69b9a31439815, ; 784: lib_Xamarin.Google.ErrorProne.TypeAnnotations.dll.so => 282 + i64 u0xcacfddc9f7c6de76, ; 785: ro/Microsoft.Maui.Controls.resources.dll => 317 + i64 u0xcadbc92899a777f0, ; 786: Xamarin.AndroidX.Startup.StartupRuntime => 267 + i64 u0xcba1cb79f45292b5, ; 787: Xamarin.Android.Glide.GifDecoder.dll => 208 + i64 u0xcbb5f80c7293e696, ; 788: lib_System.Globalization.Calendars.dll.so => 40 + i64 u0xcbd4fdd9cef4a294, ; 789: lib__Microsoft.Android.Resource.Designer.dll.so => 332 + i64 u0xcc15da1e07bbd994, ; 790: Xamarin.AndroidX.SlidingPaneLayout => 266 + i64 u0xcc2876b32ef2794c, ; 791: lib_System.Text.RegularExpressions.dll.so => 139 + i64 u0xcc5c3bb714c4561e, ; 792: Xamarin.KotlinX.Coroutines.Core.Jvm.dll => 291 + i64 u0xcc76886e09b88260, ; 793: Xamarin.KotlinX.Serialization.Core.Jvm.dll => 293 + i64 u0xcc9fa2923aa1c9ef, ; 794: System.Diagnostics.Contracts.dll => 25 + i64 u0xccf25c4b634ccd3a, ; 795: zh-Hans/Microsoft.Maui.Controls.resources.dll => 326 + i64 u0xcd10a42808629144, ; 796: System.Net.Requests => 73 + i64 u0xcdca1b920e9f53ba, ; 797: Xamarin.AndroidX.Interpolator => 240 + i64 u0xcdd0c48b6937b21c, ; 798: Xamarin.AndroidX.SwipeRefreshLayout => 268 + i64 u0xcde1fa22dc303670, ; 799: Microsoft.VisualStudio.DesignTools.XamlTapContract => 331 + i64 u0xcf23d8093f3ceadf, ; 800: System.Diagnostics.DiagnosticSource.dll => 27 + i64 u0xcf5ff6b6b2c4c382, ; 801: System.Net.Mail.dll => 67 + i64 u0xcf8fc898f98b0d34, ; 802: System.Private.Xml.Linq => 88 + i64 u0xd04b5f59ed596e31, ; 803: System.Reflection.Metadata.dll => 95 + i64 u0xd063299fcfc0c93f, ; 804: lib_System.Runtime.Serialization.Json.dll.so => 113 + i64 u0xd0de8a113e976700, ; 805: System.Diagnostics.TextWriterTraceListener => 31 + i64 u0xd0fc33d5ae5d4cb8, ; 806: System.Runtime.Extensions => 104 + i64 u0xd1194e1d8a8de83c, ; 807: lib_Xamarin.AndroidX.Lifecycle.Common.Jvm.dll.so => 242 + i64 u0xd12beacdfc14f696, ; 808: System.Dynamic.Runtime => 37 + i64 u0xd198e7ce1b6a8344, ; 809: System.Net.Quic.dll => 72 + i64 u0xd2505d8abeed6983, ; 810: lib_Microsoft.AspNetCore.Components.Web.dll.so => 178 + i64 u0xd3144156a3727ebe, ; 811: Xamarin.Google.Guava.ListenableFuture => 283 + i64 u0xd333d0af9e423810, ; 812: System.Runtime.InteropServices => 108 + i64 u0xd33a415cb4278969, ; 813: System.Security.Cryptography.Encoding.dll => 123 + i64 u0xd3426d966bb704f5, ; 814: Xamarin.AndroidX.AppCompat.AppCompatResources.dll => 215 + i64 u0xd3651b6fc3125825, ; 815: System.Private.Uri.dll => 87 + i64 u0xd373685349b1fe8b, ; 816: Microsoft.Extensions.Logging.dll => 194 + i64 u0xd3801faafafb7698, ; 817: System.Private.DataContractSerialization.dll => 86 + i64 u0xd3e4c8d6a2d5d470, ; 818: it/Microsoft.Maui.Controls.resources => 308 + i64 u0xd3edcc1f25459a50, ; 819: System.Reflection.Emit => 93 + i64 u0xd4645626dffec99d, ; 820: lib_Microsoft.Extensions.DependencyInjection.Abstractions.dll.so => 188 + i64 u0xd46b4a8758d1f3ee, ; 821: Microsoft.Extensions.FileProviders.Composite.dll => 190 + i64 u0xd4fa0abb79079ea9, ; 822: System.Security.Principal.dll => 129 + i64 u0xd5507e11a2b2839f, ; 823: Xamarin.AndroidX.Lifecycle.ViewModelSavedState => 254 + i64 u0xd5d04bef8478ea19, ; 824: Xamarin.AndroidX.Tracing.Tracing.dll => 269 + i64 u0xd60815f26a12e140, ; 825: Microsoft.Extensions.Logging.Debug.dll => 196 + i64 u0xd65786d27a4ad960, ; 826: lib_Microsoft.Maui.Controls.HotReload.Forms.dll.so => 328 + i64 u0xd6694f8359737e4e, ; 827: Xamarin.AndroidX.SavedState => 263 + i64 u0xd6949e129339eae5, ; 828: lib_Xamarin.AndroidX.Core.Core.Ktx.dll.so => 228 + i64 u0xd6d21782156bc35b, ; 829: Xamarin.AndroidX.SwipeRefreshLayout.dll => 268 + i64 u0xd6de019f6af72435, ; 830: Xamarin.AndroidX.ConstraintLayout.Core.dll => 225 + i64 u0xd6f697a581fc6fe3, ; 831: Xamarin.Google.ErrorProne.TypeAnnotations.dll => 282 + i64 u0xd70956d1e6deefb9, ; 832: Jsr305Binding => 279 + i64 u0xd72329819cbbbc44, ; 833: lib_Microsoft.Extensions.Configuration.Abstractions.dll.so => 183 + i64 u0xd72c760af136e863, ; 834: System.Xml.XmlSerializer.dll => 163 + i64 u0xd753f071e44c2a03, ; 835: lib_System.Security.SecureString.dll.so => 130 + i64 u0xd7b3764ada9d341d, ; 836: lib_Microsoft.Extensions.Logging.Abstractions.dll.so => 195 + i64 u0xd7f0088bc5ad71f2, ; 837: Xamarin.AndroidX.VersionedParcelable => 273 + i64 u0xd8fb25e28ae30a12, ; 838: Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll => 260 + i64 u0xda1dfa4c534a9251, ; 839: Microsoft.Extensions.DependencyInjection => 187 + i64 u0xdad05a11827959a3, ; 840: System.Collections.NonGeneric.dll => 10 + i64 u0xdaefdfe71aa53cf9, ; 841: System.IO.FileSystem.Primitives => 49 + i64 u0xdb5383ab5865c007, ; 842: lib-vi-Microsoft.Maui.Controls.resources.dll.so => 324 + i64 u0xdb58816721c02a59, ; 843: lib_System.Reflection.Emit.ILGeneration.dll.so => 91 + i64 u0xdbeda89f832aa805, ; 844: vi/Microsoft.Maui.Controls.resources.dll => 324 + i64 u0xdbf2a779fbc3ac31, ; 845: System.Transactions.Local.dll => 150 + i64 u0xdbf9607a441b4505, ; 846: System.Linq => 62 + i64 u0xdbfc90157a0de9b0, ; 847: lib_System.Text.Encoding.dll.so => 136 + i64 u0xdc4ae0a3cbe57518, ; 848: clipiFrontC => 0 + i64 u0xdc75032002d1a212, ; 849: lib_System.Transactions.Local.dll.so => 150 + i64 u0xdca8be7403f92d4f, ; 850: lib_System.Linq.Queryable.dll.so => 61 + i64 u0xdce2c53525640bf3, ; 851: Microsoft.Extensions.Logging => 194 + i64 u0xdd2b722d78ef5f43, ; 852: System.Runtime.dll => 117 + i64 u0xdd67031857c72f96, ; 853: lib_System.Text.Encodings.Web.dll.so => 137 + i64 u0xdd70765ad6162057, ; 854: Xamarin.JSpecify => 285 + i64 u0xdd92e229ad292030, ; 855: System.Numerics.dll => 84 + i64 u0xdde30e6b77aa6f6c, ; 856: lib-zh-Hans-Microsoft.Maui.Controls.resources.dll.so => 326 + i64 u0xde110ae80fa7c2e2, ; 857: System.Xml.XDocument.dll => 159 + i64 u0xde4726fcdf63a198, ; 858: Xamarin.AndroidX.Transition => 270 + i64 u0xde572c2b2fb32f93, ; 859: lib_System.Threading.Tasks.Extensions.dll.so => 143 + i64 u0xde8769ebda7d8647, ; 860: hr/Microsoft.Maui.Controls.resources.dll => 305 + i64 u0xdee075f3477ef6be, ; 861: Xamarin.AndroidX.ExifInterface.dll => 237 + i64 u0xdf4b773de8fb1540, ; 862: System.Net.dll => 82 + i64 u0xdfa254ebb4346068, ; 863: System.Net.Ping => 70 + i64 u0xe0142572c095a480, ; 864: Xamarin.AndroidX.AppCompat.dll => 214 + i64 u0xe021eaa401792a05, ; 865: System.Text.Encoding.dll => 136 + i64 u0xe02f89350ec78051, ; 866: Xamarin.AndroidX.CoordinatorLayout.dll => 226 + i64 u0xe0496b9d65ef5474, ; 867: Xamarin.Android.Glide.DiskLruCache.dll => 207 + i64 u0xe10b760bb1462e7a, ; 868: lib_System.Security.Cryptography.Primitives.dll.so => 125 + i64 u0xe1566bbdb759c5af, ; 869: Microsoft.Maui.Controls.HotReload.Forms.dll => 328 + i64 u0xe192a588d4410686, ; 870: lib_System.IO.Pipelines.dll.so => 54 + i64 u0xe1a08bd3fa539e0d, ; 871: System.Runtime.Loader => 110 + i64 u0xe1a77eb8831f7741, ; 872: System.Security.SecureString.dll => 130 + i64 u0xe1b52f9f816c70ef, ; 873: System.Private.Xml.Linq.dll => 88 + i64 u0xe1e199c8ab02e356, ; 874: System.Data.DataSetExtensions.dll => 23 + i64 u0xe1ecfdb7fff86067, ; 875: System.Net.Security.dll => 74 + i64 u0xe2252a80fe853de4, ; 876: lib_System.Security.Principal.dll.so => 129 + i64 u0xe22fa4c9c645db62, ; 877: System.Diagnostics.TextWriterTraceListener.dll => 31 + i64 u0xe2420585aeceb728, ; 878: System.Net.Requests.dll => 73 + i64 u0xe26692647e6bcb62, ; 879: Xamarin.AndroidX.Lifecycle.Runtime.Ktx => 249 + i64 u0xe29b73bc11392966, ; 880: lib-id-Microsoft.Maui.Controls.resources.dll.so => 307 + i64 u0xe2ad448dee50fbdf, ; 881: System.Xml.Serialization => 158 + i64 u0xe2d920f978f5d85c, ; 882: System.Data.DataSetExtensions => 23 + i64 u0xe2e426c7714fa0bc, ; 883: Microsoft.Win32.Primitives.dll => 4 + i64 u0xe31089e70e4e84ee, ; 884: Microsoft.AspNetCore.Components.WebView.Maui => 180 + i64 u0xe332bacb3eb4a806, ; 885: Mono.Android.Export.dll => 170 + i64 u0xe3811d68d4fe8463, ; 886: pt-BR/Microsoft.Maui.Controls.resources.dll => 315 + i64 u0xe3b7cbae5ad66c75, ; 887: lib_System.Security.Cryptography.Encoding.dll.so => 123 + i64 u0xe4292b48f3224d5b, ; 888: lib_Xamarin.AndroidX.Core.ViewTree.dll.so => 229 + i64 u0xe494f7ced4ecd10a, ; 889: hu/Microsoft.Maui.Controls.resources.dll => 306 + i64 u0xe4a9b1e40d1e8917, ; 890: lib-fi-Microsoft.Maui.Controls.resources.dll.so => 301 + i64 u0xe4f74a0b5bf9703f, ; 891: System.Runtime.Serialization.Primitives => 114 + i64 u0xe5434e8a119ceb69, ; 892: lib_Mono.Android.dll.so => 172 + i64 u0xe55703b9ce5c038a, ; 893: System.Diagnostics.Tools => 32 + i64 u0xe57013c8afc270b5, ; 894: Microsoft.VisualBasic => 3 + i64 u0xe62913cc36bc07ec, ; 895: System.Xml.dll => 164 + i64 u0xe7bea09c4900a191, ; 896: Xamarin.AndroidX.VectorDrawable.dll => 271 + i64 u0xe7e03cc18dcdeb49, ; 897: lib_System.Diagnostics.StackTrace.dll.so => 30 + i64 u0xe7e147ff99a7a380, ; 898: lib_System.Configuration.dll.so => 19 + i64 u0xe86b0df4ba9e5db8, ; 899: lib_Xamarin.AndroidX.Lifecycle.Runtime.Android.dll.so => 248 + i64 u0xe896622fe0902957, ; 900: System.Reflection.Emit.dll => 93 + i64 u0xe89a2a9ef110899b, ; 901: System.Drawing.dll => 36 + i64 u0xe8c5f8c100b5934b, ; 902: Microsoft.Win32.Registry => 5 + i64 u0xe957c3976986ab72, ; 903: lib_Xamarin.AndroidX.Window.Extensions.Core.Core.dll.so => 277 + i64 u0xe9772100456fb4b4, ; 904: Microsoft.AspNetCore.Components.dll => 176 + i64 u0xe98163eb702ae5c5, ; 905: Xamarin.AndroidX.Arch.Core.Runtime => 217 + i64 u0xe994f23ba4c143e5, ; 906: Xamarin.KotlinX.Coroutines.Android => 289 + i64 u0xe9b9c8c0458fd92a, ; 907: System.Windows => 155 + i64 u0xe9d166d87a7f2bdb, ; 908: lib_Xamarin.AndroidX.Startup.StartupRuntime.dll.so => 267 + i64 u0xea154e342c6ac70f, ; 909: Microsoft.Extensions.FileProviders.Embedded.dll => 191 + i64 u0xea5a4efc2ad81d1b, ; 910: Xamarin.Google.ErrorProne.Annotations => 281 + i64 u0xeb2313fe9d65b785, ; 911: Xamarin.AndroidX.ConstraintLayout.dll => 224 + i64 u0xec8abb68d340aac6, ; 912: Microsoft.AspNetCore.Authorization => 175 + i64 u0xed19c616b3fcb7eb, ; 913: Xamarin.AndroidX.VersionedParcelable.dll => 273 + i64 u0xed60c6fa891c051a, ; 914: lib_Microsoft.VisualStudio.DesignTools.TapContract.dll.so => 330 + i64 u0xedc4817167106c23, ; 915: System.Net.Sockets.dll => 76 + i64 u0xedc632067fb20ff3, ; 916: System.Memory.dll => 63 + i64 u0xedc8e4ca71a02a8b, ; 917: Xamarin.AndroidX.Navigation.Runtime.dll => 258 + i64 u0xee81f5b3f1c4f83b, ; 918: System.Threading.ThreadPool => 147 + i64 u0xeeb7ebb80150501b, ; 919: lib_Xamarin.AndroidX.Collection.Jvm.dll.so => 221 + i64 u0xeefc635595ef57f0, ; 920: System.Security.Cryptography.Cng => 121 + i64 u0xef03b1b5a04e9709, ; 921: System.Text.Encoding.CodePages.dll => 134 + i64 u0xef602c523fe2e87a, ; 922: lib_Xamarin.Google.Guava.ListenableFuture.dll.so => 283 + i64 u0xef72742e1bcca27a, ; 923: Microsoft.Maui.Essentials.dll => 203 + i64 u0xefd1e0c4e5c9b371, ; 924: System.Resources.ResourceManager.dll => 100 + i64 u0xefe8f8d5ed3c72ea, ; 925: System.Formats.Tar.dll => 39 + i64 u0xefec0b7fdc57ec42, ; 926: Xamarin.AndroidX.Activity => 209 + i64 u0xf00c29406ea45e19, ; 927: es/Microsoft.Maui.Controls.resources.dll => 300 + i64 u0xf09e47b6ae914f6e, ; 928: System.Net.NameResolution => 68 + i64 u0xf0ac2b489fed2e35, ; 929: lib_System.Diagnostics.Debug.dll.so => 26 + i64 u0xf0bb49dadd3a1fe1, ; 930: lib_System.Net.ServicePoint.dll.so => 75 + i64 u0xf0de2537ee19c6ca, ; 931: lib_System.Net.WebHeaderCollection.dll.so => 78 + i64 u0xf1138779fa181c68, ; 932: lib_Xamarin.AndroidX.Lifecycle.Runtime.dll.so => 247 + i64 u0xf11b621fc87b983f, ; 933: Microsoft.Maui.Controls.Xaml.dll => 201 + i64 u0xf161f4f3c3b7e62c, ; 934: System.Data => 24 + i64 u0xf16eb650d5a464bc, ; 935: System.ValueTuple => 152 + i64 u0xf1c4b4005493d871, ; 936: System.Formats.Asn1.dll => 38 + i64 u0xf238bd79489d3a96, ; 937: lib-nl-Microsoft.Maui.Controls.resources.dll.so => 313 + i64 u0xf2feea356ba760af, ; 938: Xamarin.AndroidX.Arch.Core.Runtime.dll => 217 + i64 u0xf300e085f8acd238, ; 939: lib_System.ServiceProcess.dll.so => 133 + i64 u0xf34e52b26e7e059d, ; 940: System.Runtime.CompilerServices.VisualC.dll => 103 + i64 u0xf37221fda4ef8830, ; 941: lib_Xamarin.Google.Android.Material.dll.so => 278 + i64 u0xf3ad9b8fb3eefd12, ; 942: lib_System.IO.UnmanagedMemoryStream.dll.so => 57 + i64 u0xf3ddfe05336abf29, ; 943: System => 165 + i64 u0xf408654b2a135055, ; 944: System.Reflection.Emit.ILGeneration.dll => 91 + i64 u0xf4103170a1de5bd0, ; 945: System.Linq.Queryable.dll => 61 + i64 u0xf42d20c23173d77c, ; 946: lib_System.ServiceModel.Web.dll.so => 132 + i64 u0xf4c1dd70a5496a17, ; 947: System.IO.Compression => 46 + i64 u0xf4ecf4b9afc64781, ; 948: System.ServiceProcess.dll => 133 + i64 u0xf4eeeaa566e9b970, ; 949: lib_Xamarin.AndroidX.CustomView.PoolingContainer.dll.so => 232 + i64 u0xf518f63ead11fcd1, ; 950: System.Threading.Tasks => 145 + i64 u0xf5fc7602fe27b333, ; 951: System.Net.WebHeaderCollection => 78 + i64 u0xf6077741019d7428, ; 952: Xamarin.AndroidX.CoordinatorLayout => 226 + i64 u0xf6742cbf457c450b, ; 953: Xamarin.AndroidX.Lifecycle.Runtime.Android.dll => 248 + i64 u0xf6de7fa3776f8927, ; 954: lib_Microsoft.Extensions.Configuration.Json.dll.so => 186 + i64 u0xf70c0a7bf8ccf5af, ; 955: System.Web => 154 + i64 u0xf77b20923f07c667, ; 956: de/Microsoft.Maui.Controls.resources.dll => 298 + i64 u0xf7e2cac4c45067b3, ; 957: lib_System.Numerics.Vectors.dll.so => 83 + i64 u0xf7e74930e0e3d214, ; 958: zh-HK/Microsoft.Maui.Controls.resources.dll => 325 + i64 u0xf84773b5c81e3cef, ; 959: lib-uk-Microsoft.Maui.Controls.resources.dll.so => 323 + i64 u0xf8aac5ea82de1348, ; 960: System.Linq.Queryable => 61 + i64 u0xf8b77539b362d3ba, ; 961: lib_System.Reflection.Primitives.dll.so => 96 + i64 u0xf8e045dc345b2ea3, ; 962: lib_Xamarin.AndroidX.RecyclerView.dll.so => 261 + i64 u0xf915dc29808193a1, ; 963: System.Web.HttpUtility.dll => 153 + i64 u0xf96c777a2a0686f4, ; 964: hi/Microsoft.Maui.Controls.resources.dll => 304 + i64 u0xf9be54c8bcf8ff3b, ; 965: System.Security.AccessControl.dll => 118 + i64 u0xf9eec5bb3a6aedc6, ; 966: Microsoft.Extensions.Options => 197 + i64 u0xfa0e82300e67f913, ; 967: lib_System.AppContext.dll.so => 6 + i64 u0xfa2fdb27e8a2c8e8, ; 968: System.ComponentModel.EventBasedAsync => 15 + i64 u0xfa3f278f288b0e84, ; 969: lib_System.Net.Security.dll.so => 74 + i64 u0xfa504dfa0f097d72, ; 970: Microsoft.Extensions.FileProviders.Abstractions.dll => 189 + i64 u0xfa5ed7226d978949, ; 971: lib-ar-Microsoft.Maui.Controls.resources.dll.so => 294 + i64 u0xfa645d91e9fc4cba, ; 972: System.Threading.Thread => 146 + i64 u0xfad4d2c770e827f9, ; 973: lib_System.IO.IsolatedStorage.dll.so => 52 + i64 u0xfb06dd2338e6f7c4, ; 974: System.Net.Ping.dll => 70 + i64 u0xfb087abe5365e3b7, ; 975: lib_System.Data.DataSetExtensions.dll.so => 23 + i64 u0xfb846e949baff5ea, ; 976: System.Xml.Serialization.dll => 158 + i64 u0xfbad3e4ce4b98145, ; 977: System.Security.Cryptography.X509Certificates => 126 + i64 u0xfbf0a31c9fc34bc4, ; 978: lib_System.Net.Http.dll.so => 65 + i64 u0xfc6b7527cc280b3f, ; 979: lib_System.Runtime.Serialization.Formatters.dll.so => 112 + i64 u0xfc719aec26adf9d9, ; 980: Xamarin.AndroidX.Navigation.Fragment.dll => 257 + i64 u0xfc82690c2fe2735c, ; 981: Xamarin.AndroidX.Lifecycle.Process.dll => 246 + i64 u0xfc93fc307d279893, ; 982: System.IO.Pipes.AccessControl.dll => 55 + i64 u0xfcd302092ada6328, ; 983: System.IO.MemoryMappedFiles.dll => 53 + i64 u0xfd22f00870e40ae0, ; 984: lib_Xamarin.AndroidX.DrawerLayout.dll.so => 233 + i64 u0xfd2e866c678cac90, ; 985: lib_Microsoft.AspNetCore.Components.WebView.Maui.dll.so => 180 + i64 u0xfd49b3c1a76e2748, ; 986: System.Runtime.InteropServices.RuntimeInformation => 107 + i64 u0xfd536c702f64dc47, ; 987: System.Text.Encoding.Extensions => 135 + i64 u0xfd583f7657b6a1cb, ; 988: Xamarin.AndroidX.Fragment => 238 + i64 u0xfd8dd91a2c26bd5d, ; 989: Xamarin.AndroidX.Lifecycle.Runtime => 247 + i64 u0xfda36abccf05cf5c, ; 990: System.Net.WebSockets.Client => 80 + i64 u0xfddbe9695626a7f5, ; 991: Xamarin.AndroidX.Lifecycle.Common => 241 + i64 u0xfe9856c3af9365ab, ; 992: lib_Microsoft.Extensions.Configuration.FileExtensions.dll.so => 185 + i64 u0xfeae9952cf03b8cb, ; 993: tr/Microsoft.Maui.Controls.resources => 322 + i64 u0xfebe1950717515f9, ; 994: Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll => 245 + i64 u0xff270a55858bac8d, ; 995: System.Security.Principal => 129 + i64 u0xff96d83d336c675e, ; 996: clipiFrontC.dll => 0 + i64 u0xff9b54613e0d2cc8, ; 997: System.Net.Http.Json => 64 + i64 u0xffdb7a971be4ec73 ; 998: System.ValueTuple.dll => 152 +], align 8 + +@assembly_image_cache_indices = dso_local local_unnamed_addr constant [999 x i32] [ + i32 42, i32 290, i32 268, i32 13, i32 258, i32 105, i32 171, i32 48, + i32 214, i32 7, i32 86, i32 318, i32 296, i32 324, i32 234, i32 71, + i32 261, i32 12, i32 202, i32 102, i32 325, i32 156, i32 19, i32 239, + i32 221, i32 176, i32 161, i32 236, i32 271, i32 167, i32 318, i32 10, + i32 196, i32 272, i32 96, i32 232, i32 233, i32 13, i32 197, i32 10, + i32 127, i32 95, i32 140, i32 39, i32 319, i32 293, i32 274, i32 315, + i32 172, i32 208, i32 5, i32 203, i32 67, i32 265, i32 130, i32 264, + i32 235, i32 68, i32 222, i32 66, i32 57, i32 231, i32 52, i32 43, + i32 125, i32 67, i32 81, i32 249, i32 330, i32 158, i32 92, i32 99, + i32 261, i32 141, i32 151, i32 218, i32 302, i32 162, i32 169, i32 303, + i32 188, i32 81, i32 330, i32 285, i32 222, i32 4, i32 5, i32 51, + i32 101, i32 56, i32 120, i32 98, i32 168, i32 118, i32 290, i32 21, + i32 306, i32 137, i32 97, i32 293, i32 77, i32 312, i32 267, i32 119, + i32 8, i32 165, i32 321, i32 70, i32 207, i32 177, i32 250, i32 262, + i32 192, i32 171, i32 145, i32 40, i32 265, i32 47, i32 30, i32 259, + i32 310, i32 144, i32 197, i32 163, i32 28, i32 84, i32 269, i32 77, + i32 43, i32 29, i32 42, i32 103, i32 117, i32 212, i32 45, i32 91, + i32 321, i32 56, i32 148, i32 329, i32 146, i32 100, i32 49, i32 20, + i32 227, i32 114, i32 205, i32 302, i32 280, i32 286, i32 198, i32 94, + i32 58, i32 307, i32 305, i32 81, i32 280, i32 169, i32 26, i32 71, + i32 260, i32 237, i32 328, i32 323, i32 69, i32 33, i32 301, i32 14, + i32 139, i32 38, i32 327, i32 193, i32 223, i32 314, i32 134, i32 92, + i32 88, i32 149, i32 320, i32 24, i32 138, i32 57, i32 51, i32 299, + i32 199, i32 29, i32 157, i32 34, i32 164, i32 238, i32 52, i32 191, + i32 332, i32 276, i32 90, i32 282, i32 219, i32 35, i32 302, i32 157, + i32 193, i32 9, i32 300, i32 76, i32 55, i32 190, i32 202, i32 296, + i32 200, i32 13, i32 275, i32 182, i32 216, i32 109, i32 253, i32 32, + i32 104, i32 84, i32 92, i32 53, i32 96, i32 284, i32 58, i32 9, + i32 102, i32 231, i32 68, i32 274, i32 295, i32 189, i32 125, i32 262, + i32 116, i32 135, i32 199, i32 126, i32 106, i32 286, i32 131, i32 218, + i32 283, i32 147, i32 156, i32 239, i32 227, i32 185, i32 234, i32 262, + i32 97, i32 24, i32 179, i32 266, i32 143, i32 256, i32 3, i32 167, + i32 215, i32 100, i32 161, i32 99, i32 229, i32 25, i32 93, i32 168, + i32 172, i32 210, i32 3, i32 314, i32 236, i32 1, i32 114, i32 286, + i32 239, i32 246, i32 33, i32 6, i32 318, i32 156, i32 316, i32 53, + i32 85, i32 273, i32 259, i32 44, i32 245, i32 104, i32 47, i32 138, + i32 64, i32 255, i32 69, i32 80, i32 59, i32 89, i32 154, i32 216, + i32 133, i32 110, i32 308, i32 255, i32 199, i32 260, i32 171, i32 134, + i32 140, i32 40, i32 295, i32 184, i32 200, i32 60, i32 184, i32 252, + i32 79, i32 25, i32 36, i32 99, i32 249, i32 71, i32 22, i32 227, + i32 204, i32 319, i32 121, i32 69, i32 107, i32 325, i32 119, i32 117, + i32 241, i32 242, i32 11, i32 2, i32 124, i32 115, i32 142, i32 41, + i32 87, i32 211, i32 173, i32 27, i32 148, i32 184, i32 309, i32 187, + i32 281, i32 210, i32 1, i32 212, i32 44, i32 226, i32 149, i32 18, + i32 86, i32 297, i32 41, i32 245, i32 220, i32 250, i32 94, i32 194, + i32 28, i32 41, i32 78, i32 180, i32 235, i32 223, i32 144, i32 108, + i32 221, i32 11, i32 105, i32 137, i32 16, i32 122, i32 66, i32 157, + i32 22, i32 299, i32 292, i32 102, i32 187, i32 291, i32 63, i32 58, + i32 201, i32 298, i32 110, i32 173, i32 331, i32 289, i32 9, i32 278, + i32 120, i32 98, i32 105, i32 253, i32 200, i32 111, i32 213, i32 49, + i32 20, i32 252, i32 230, i32 72, i32 225, i32 155, i32 39, i32 297, + i32 181, i32 35, i32 287, i32 38, i32 303, i32 0, i32 277, i32 108, + i32 312, i32 21, i32 284, i32 251, i32 204, i32 15, i32 198, i32 79, + i32 79, i32 230, i32 198, i32 257, i32 264, i32 152, i32 21, i32 202, + i32 296, i32 50, i32 51, i32 322, i32 312, i32 94, i32 206, i32 308, + i32 16, i32 229, i32 123, i32 305, i32 160, i32 45, i32 281, i32 174, + i32 116, i32 63, i32 166, i32 182, i32 14, i32 263, i32 111, i32 213, + i32 60, i32 288, i32 186, i32 121, i32 311, i32 2, i32 321, i32 238, + i32 251, i32 287, i32 285, i32 179, i32 251, i32 6, i32 220, i32 301, + i32 234, i32 17, i32 319, i32 298, i32 77, i32 224, i32 181, i32 131, + i32 284, i32 311, i32 177, i32 83, i32 196, i32 12, i32 34, i32 119, + i32 292, i32 246, i32 236, i32 85, i32 205, i32 18, i32 274, i32 183, + i32 244, i32 72, i32 329, i32 95, i32 178, i32 165, i32 240, i32 82, + i32 327, i32 214, i32 219, i32 288, i32 154, i32 36, i32 151, i32 323, + i32 326, i32 190, i32 144, i32 56, i32 113, i32 220, i32 271, i32 270, + i32 37, i32 327, i32 182, i32 115, i32 193, i32 212, i32 14, i32 206, + i32 146, i32 43, i32 203, i32 210, i32 98, i32 291, i32 168, i32 16, + i32 48, i32 107, i32 97, i32 255, i32 27, i32 128, i32 29, i32 303, + i32 189, i32 264, i32 128, i32 44, i32 230, i32 235, i32 149, i32 8, + i32 256, i32 304, i32 317, i32 316, i32 132, i32 315, i32 42, i32 292, + i32 33, i32 332, i32 46, i32 143, i32 252, i32 201, i32 243, i32 231, + i32 186, i32 138, i32 62, i32 132, i32 295, i32 48, i32 160, i32 217, + i32 243, i32 206, i32 241, i32 311, i32 270, i32 46, i32 164, i32 240, + i32 300, i32 237, i32 307, i32 204, i32 18, i32 8, i32 174, i32 228, + i32 124, i32 59, i32 141, i32 258, i32 310, i32 247, i32 279, i32 276, + i32 150, i32 142, i32 290, i32 287, i32 126, i32 289, i32 160, i32 162, + i32 232, i32 209, i32 183, i32 313, i32 26, i32 256, i32 244, i32 192, + i32 82, i32 276, i32 127, i32 280, i32 101, i32 148, i32 278, i32 259, + i32 54, i32 162, i32 167, i32 131, i32 191, i32 37, i32 272, i32 310, + i32 177, i32 22, i32 112, i32 90, i32 50, i32 60, i32 122, i32 83, + i32 127, i32 163, i32 279, i32 166, i32 263, i32 265, i32 233, i32 205, + i32 248, i32 4, i32 242, i32 306, i32 170, i32 2, i32 192, i32 253, + i32 116, i32 331, i32 211, i32 19, i32 195, i32 89, i32 65, i32 30, + i32 188, i32 299, i32 225, i32 59, i32 111, i32 244, i32 32, i32 128, + i32 159, i32 317, i32 223, i32 140, i32 313, i32 153, i32 17, i32 222, + i32 208, i32 75, i32 74, i32 15, i32 169, i32 85, i32 288, i32 124, + i32 243, i32 254, i32 224, i32 320, i32 250, i32 34, i32 176, i32 118, + i32 139, i32 122, i32 106, i32 297, i32 329, i32 272, i32 219, i32 304, + i32 294, i32 54, i32 47, i32 28, i32 145, i32 195, i32 147, i32 35, + i32 320, i32 173, i32 277, i32 75, i32 161, i32 1, i32 266, i32 316, + i32 309, i32 159, i32 12, i32 155, i32 179, i32 151, i32 76, i32 103, + i32 112, i32 216, i32 181, i32 175, i32 65, i32 66, i32 275, i32 45, + i32 218, i32 109, i32 7, i32 215, i32 55, i32 211, i32 64, i32 294, + i32 228, i32 20, i32 109, i32 101, i32 62, i32 142, i32 175, i32 209, + i32 7, i32 309, i32 170, i32 50, i32 275, i32 115, i32 141, i32 174, + i32 166, i32 80, i32 113, i32 254, i32 17, i32 73, i32 257, i32 89, + i32 207, i32 87, i32 120, i32 269, i32 185, i32 213, i32 135, i32 153, + i32 106, i32 11, i32 90, i32 31, i32 178, i32 322, i32 136, i32 314, + i32 282, i32 317, i32 267, i32 208, i32 40, i32 332, i32 266, i32 139, + i32 291, i32 293, i32 25, i32 326, i32 73, i32 240, i32 268, i32 331, + i32 27, i32 67, i32 88, i32 95, i32 113, i32 31, i32 104, i32 242, + i32 37, i32 72, i32 178, i32 283, i32 108, i32 123, i32 215, i32 87, + i32 194, i32 86, i32 308, i32 93, i32 188, i32 190, i32 129, i32 254, + i32 269, i32 196, i32 328, i32 263, i32 228, i32 268, i32 225, i32 282, + i32 279, i32 183, i32 163, i32 130, i32 195, i32 273, i32 260, i32 187, + i32 10, i32 49, i32 324, i32 91, i32 324, i32 150, i32 62, i32 136, + i32 0, i32 150, i32 61, i32 194, i32 117, i32 137, i32 285, i32 84, + i32 326, i32 159, i32 270, i32 143, i32 305, i32 237, i32 82, i32 70, + i32 214, i32 136, i32 226, i32 207, i32 125, i32 328, i32 54, i32 110, + i32 130, i32 88, i32 23, i32 74, i32 129, i32 31, i32 73, i32 249, + i32 307, i32 158, i32 23, i32 4, i32 180, i32 170, i32 315, i32 123, + i32 229, i32 306, i32 301, i32 114, i32 172, i32 32, i32 3, i32 164, + i32 271, i32 30, i32 19, i32 248, i32 93, i32 36, i32 5, i32 277, + i32 176, i32 217, i32 289, i32 155, i32 267, i32 191, i32 281, i32 224, + i32 175, i32 273, i32 330, i32 76, i32 63, i32 258, i32 147, i32 221, + i32 121, i32 134, i32 283, i32 203, i32 100, i32 39, i32 209, i32 300, + i32 68, i32 26, i32 75, i32 78, i32 247, i32 201, i32 24, i32 152, + i32 38, i32 313, i32 217, i32 133, i32 103, i32 278, i32 57, i32 165, + i32 91, i32 61, i32 132, i32 46, i32 133, i32 232, i32 145, i32 78, + i32 226, i32 248, i32 186, i32 154, i32 298, i32 83, i32 325, i32 323, + i32 61, i32 96, i32 261, i32 153, i32 304, i32 118, i32 197, i32 6, + i32 15, i32 74, i32 189, i32 294, i32 146, i32 52, i32 70, i32 23, + i32 158, i32 126, i32 65, i32 112, i32 257, i32 246, i32 55, i32 53, + i32 233, i32 180, i32 107, i32 135, i32 238, i32 247, i32 80, i32 241, + i32 185, i32 322, i32 245, i32 129, i32 0, i32 64, i32 152 +], align 4 + +@marshal_methods_number_of_classes = dso_local local_unnamed_addr constant i32 0, align 4 + +@marshal_methods_class_cache = dso_local local_unnamed_addr global [0 x %struct.MarshalMethodsManagedClass] zeroinitializer, align 8 + +; Names of classes in which marshal methods reside +@mm_class_names = dso_local local_unnamed_addr constant [0 x ptr] zeroinitializer, align 8 + +@mm_method_names = dso_local local_unnamed_addr constant [1 x %struct.MarshalMethodName] [ + %struct.MarshalMethodName { + i64 u0x0000000000000000, ; name: + ptr @.MarshalMethodName.0_name; char* name + } ; 0 +], align 8 + +; get_function_pointer (uint32_t mono_image_index, uint32_t class_index, uint32_t method_token, void*& target_ptr) +@get_function_pointer = internal dso_local unnamed_addr global ptr null, align 8 + +; Functions + +; Function attributes: memory(write, argmem: none, inaccessiblemem: none) "min-legal-vector-width"="0" mustprogress nofree norecurse nosync "no-trapping-math"="true" nounwind "stack-protector-buffer-size"="8" uwtable willreturn +define void @xamarin_app_init(ptr nocapture noundef readnone %env, ptr noundef %fn) local_unnamed_addr #0 +{ + %fnIsNull = icmp eq ptr %fn, null + br i1 %fnIsNull, label %1, label %2 + +1: ; preds = %0 + %putsResult = call noundef i32 @puts(ptr @.str.0) + call void @abort() + unreachable + +2: ; preds = %1, %0 + store ptr %fn, ptr @get_function_pointer, align 8, !tbaa !3 + ret void +} + +; Strings +@.str.0 = private unnamed_addr constant [40 x i8] c"get_function_pointer MUST be specified\0A\00", align 1 + +;MarshalMethodName +@.MarshalMethodName.0_name = private unnamed_addr constant [1 x i8] c"\00", align 1 + +; External functions + +; Function attributes: noreturn "no-trapping-math"="true" nounwind "stack-protector-buffer-size"="8" +declare void @abort() local_unnamed_addr #2 + +; Function attributes: nofree nounwind +declare noundef i32 @puts(ptr noundef) local_unnamed_addr #1 +attributes #0 = { memory(write, argmem: none, inaccessiblemem: none) "min-legal-vector-width"="0" mustprogress nofree norecurse nosync "no-trapping-math"="true" nounwind "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fix-cortex-a53-835769,+neon,+outline-atomics,+v8a" uwtable willreturn } +attributes #1 = { nofree nounwind } +attributes #2 = { noreturn "no-trapping-math"="true" nounwind "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fix-cortex-a53-835769,+neon,+outline-atomics,+v8a" } + +; Metadata +!llvm.module.flags = !{!0, !1, !7, !8, !9, !10} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} +!7 = !{i32 1, !"branch-target-enforcement", i32 0} +!8 = !{i32 1, !"sign-return-address", i32 0} +!9 = !{i32 1, !"sign-return-address-all", i32 0} +!10 = !{i32 1, !"sign-return-address-with-bkey", i32 0} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.o b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.o new file mode 100644 index 0000000..8540028 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.arm64-v8a.o differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.x86_64.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.x86_64.ll new file mode 100644 index 0000000..01d27c3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/marshal_methods.x86_64.ll @@ -0,0 +1,1197 @@ +; ModuleID = 'marshal_methods.x86_64.ll' +source_filename = "marshal_methods.x86_64.ll" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-android21" + +%struct.MarshalMethodName = type { + i64, ; uint64_t id + ptr ; char* name +} + +%struct.MarshalMethodsManagedClass = type { + i32, ; uint32_t token + ptr ; MonoClass klass +} + +@assembly_image_cache = dso_local local_unnamed_addr global [329 x ptr] zeroinitializer, align 16 + +; Each entry maps hash of an assembly name to an index into the `assembly_image_cache` array +@assembly_image_cache_hashes = dso_local local_unnamed_addr constant [987 x i64] [ + i64 u0x001e58127c546039, ; 0: lib_System.Globalization.dll.so => 42 + i64 u0x0024d0f62dee05bd, ; 1: Xamarin.KotlinX.Coroutines.Core.dll => 290 + i64 u0x0071cf2d27b7d61e, ; 2: lib_Xamarin.AndroidX.SwipeRefreshLayout.dll.so => 268 + i64 u0x01109b0e4d99e61f, ; 3: System.ComponentModel.Annotations.dll => 13 + i64 u0x02123411c4e01926, ; 4: lib_Xamarin.AndroidX.Navigation.Runtime.dll.so => 258 + i64 u0x0284512fad379f7e, ; 5: System.Runtime.Handles => 105 + i64 u0x02abedc11addc1ed, ; 6: lib_Mono.Android.Runtime.dll.so => 171 + i64 u0x02f55bf70672f5c8, ; 7: lib_System.IO.FileSystem.DriveInfo.dll.so => 48 + i64 u0x032267b2a94db371, ; 8: lib_Xamarin.AndroidX.AppCompat.dll.so => 214 + i64 u0x03621c804933a890, ; 9: System.Buffers => 7 + i64 u0x0399610510a38a38, ; 10: lib_System.Private.DataContractSerialization.dll.so => 86 + i64 u0x043032f1d071fae0, ; 11: ru/Microsoft.Maui.Controls.resources => 318 + i64 u0x044440a55165631e, ; 12: lib-cs-Microsoft.Maui.Controls.resources.dll.so => 296 + i64 u0x046eb1581a80c6b0, ; 13: vi/Microsoft.Maui.Controls.resources => 324 + i64 u0x047408741db2431a, ; 14: Xamarin.AndroidX.DynamicAnimation => 234 + i64 u0x0517ef04e06e9f76, ; 15: System.Net.Primitives => 71 + i64 u0x0565d18c6da3de38, ; 16: Xamarin.AndroidX.RecyclerView => 261 + i64 u0x0581db89237110e9, ; 17: lib_System.Collections.dll.so => 12 + i64 u0x05989cb940b225a9, ; 18: Microsoft.Maui.dll => 202 + i64 u0x05a1c25e78e22d87, ; 19: lib_System.Runtime.CompilerServices.Unsafe.dll.so => 102 + i64 u0x06076b5d2b581f08, ; 20: zh-HK/Microsoft.Maui.Controls.resources => 325 + i64 u0x06388ffe9f6c161a, ; 21: System.Xml.Linq.dll => 156 + i64 u0x06600c4c124cb358, ; 22: System.Configuration.dll => 19 + i64 u0x067f95c5ddab55b3, ; 23: lib_Xamarin.AndroidX.Fragment.Ktx.dll.so => 239 + i64 u0x0680a433c781bb3d, ; 24: Xamarin.AndroidX.Collection.Jvm => 221 + i64 u0x0690533f9fc14683, ; 25: lib_Microsoft.AspNetCore.Components.dll.so => 176 + i64 u0x069fff96ec92a91d, ; 26: System.Xml.XPath.dll => 161 + i64 u0x070b0847e18dab68, ; 27: Xamarin.AndroidX.Emoji2.ViewsHelper.dll => 236 + i64 u0x0739448d84d3b016, ; 28: lib_Xamarin.AndroidX.VectorDrawable.dll.so => 271 + i64 u0x07469f2eecce9e85, ; 29: mscorlib.dll => 167 + i64 u0x07c57877c7ba78ad, ; 30: ru/Microsoft.Maui.Controls.resources.dll => 318 + i64 u0x07dcdc7460a0c5e4, ; 31: System.Collections.NonGeneric => 10 + i64 u0x08122e52765333c8, ; 32: lib_Microsoft.Extensions.Logging.Debug.dll.so => 196 + i64 u0x088610fc2509f69e, ; 33: lib_Xamarin.AndroidX.VectorDrawable.Animated.dll.so => 272 + i64 u0x08a7c865576bbde7, ; 34: System.Reflection.Primitives => 96 + i64 u0x08c9d051a4a817e5, ; 35: Xamarin.AndroidX.CustomView.PoolingContainer.dll => 232 + i64 u0x08f3c9788ee2153c, ; 36: Xamarin.AndroidX.DrawerLayout => 233 + i64 u0x09138715c92dba90, ; 37: lib_System.ComponentModel.Annotations.dll.so => 13 + i64 u0x0919c28b89381a0b, ; 38: lib_Microsoft.Extensions.Options.dll.so => 197 + i64 u0x092266563089ae3e, ; 39: lib_System.Collections.NonGeneric.dll.so => 10 + i64 u0x09d144a7e214d457, ; 40: System.Security.Cryptography => 127 + i64 u0x09e2b9f743db21a8, ; 41: lib_System.Reflection.Metadata.dll.so => 95 + i64 u0x0abb3e2b271edc45, ; 42: System.Threading.Channels.dll => 140 + i64 u0x0b06b1feab070143, ; 43: System.Formats.Tar => 39 + i64 u0x0b3b632c3bbee20c, ; 44: sk/Microsoft.Maui.Controls.resources => 319 + i64 u0x0b6aff547b84fbe9, ; 45: Xamarin.KotlinX.Serialization.Core.Jvm => 293 + i64 u0x0be2e1f8ce4064ed, ; 46: Xamarin.AndroidX.ViewPager => 274 + i64 u0x0c3ca6cc978e2aae, ; 47: pt-BR/Microsoft.Maui.Controls.resources => 315 + i64 u0x0c59ad9fbbd43abe, ; 48: Mono.Android => 172 + i64 u0x0c65741e86371ee3, ; 49: lib_Xamarin.Android.Glide.GifDecoder.dll.so => 208 + i64 u0x0c74af560004e816, ; 50: Microsoft.Win32.Registry.dll => 5 + i64 u0x0c7790f60165fc06, ; 51: lib_Microsoft.Maui.Essentials.dll.so => 203 + i64 u0x0c83c82812e96127, ; 52: lib_System.Net.Mail.dll.so => 67 + i64 u0x0cce4bce83380b7f, ; 53: Xamarin.AndroidX.Security.SecurityCrypto => 265 + i64 u0x0d13cd7cce4284e4, ; 54: System.Security.SecureString => 130 + i64 u0x0d63f4f73521c24f, ; 55: lib_Xamarin.AndroidX.SavedState.SavedState.Ktx.dll.so => 264 + i64 u0x0e04e702012f8463, ; 56: Xamarin.AndroidX.Emoji2 => 235 + i64 u0x0e14e73a54dda68e, ; 57: lib_System.Net.NameResolution.dll.so => 68 + i64 u0x0f37dd7a62ae99af, ; 58: lib_Xamarin.AndroidX.Collection.Ktx.dll.so => 222 + i64 u0x0f5e7abaa7cf470a, ; 59: System.Net.HttpListener => 66 + i64 u0x1001f97bbe242e64, ; 60: System.IO.UnmanagedMemoryStream => 57 + i64 u0x102a31b45304b1da, ; 61: Xamarin.AndroidX.CustomView => 231 + i64 u0x1065c4cb554c3d75, ; 62: System.IO.IsolatedStorage.dll => 52 + i64 u0x10f6cfcbcf801616, ; 63: System.IO.Compression.Brotli => 43 + i64 u0x114443cdcf2091f1, ; 64: System.Security.Cryptography.Primitives => 125 + i64 u0x11a603952763e1d4, ; 65: System.Net.Mail => 67 + i64 u0x11a70d0e1009fb11, ; 66: System.Net.WebSockets.dll => 81 + i64 u0x11f26371eee0d3c1, ; 67: lib_Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll.so => 249 + i64 u0x12128b3f59302d47, ; 68: lib_System.Xml.Serialization.dll.so => 158 + i64 u0x123639456fb056da, ; 69: System.Reflection.Emit.Lightweight.dll => 92 + i64 u0x12521e9764603eaa, ; 70: lib_System.Resources.Reader.dll.so => 99 + i64 u0x125b7f94acb989db, ; 71: Xamarin.AndroidX.RecyclerView.dll => 261 + i64 u0x12d3b63863d4ab0b, ; 72: lib_System.Threading.Overlapped.dll.so => 141 + i64 u0x134eab1061c395ee, ; 73: System.Transactions => 151 + i64 u0x138567fa954faa55, ; 74: Xamarin.AndroidX.Browser => 218 + i64 u0x13a01de0cbc3f06c, ; 75: lib-fr-Microsoft.Maui.Controls.resources.dll.so => 302 + i64 u0x13beedefb0e28a45, ; 76: lib_System.Xml.XmlDocument.dll.so => 162 + i64 u0x13f1e5e209e91af4, ; 77: lib_Java.Interop.dll.so => 169 + i64 u0x13f1e880c25d96d1, ; 78: he/Microsoft.Maui.Controls.resources => 303 + i64 u0x143d8ea60a6a4011, ; 79: Microsoft.Extensions.DependencyInjection.Abstractions => 188 + i64 u0x1497051b917530bd, ; 80: lib_System.Net.WebSockets.dll.so => 81 + i64 u0x14d612a531c79c05, ; 81: Xamarin.JSpecify.dll => 285 + i64 u0x14e68447938213b7, ; 82: Xamarin.AndroidX.Collection.Ktx.dll => 222 + i64 u0x152a448bd1e745a7, ; 83: Microsoft.Win32.Primitives => 4 + i64 u0x1557de0138c445f4, ; 84: lib_Microsoft.Win32.Registry.dll.so => 5 + i64 u0x15bdc156ed462f2f, ; 85: lib_System.IO.FileSystem.dll.so => 51 + i64 u0x15e300c2c1668655, ; 86: System.Resources.Writer.dll => 101 + i64 u0x16bf2a22df043a09, ; 87: System.IO.Pipes.dll => 56 + i64 u0x16ea2b318ad2d830, ; 88: System.Security.Cryptography.Algorithms => 120 + i64 u0x16eeae54c7ebcc08, ; 89: System.Reflection.dll => 98 + i64 u0x17125c9a85b4929f, ; 90: lib_netstandard.dll.so => 168 + i64 u0x1716866f7416792e, ; 91: lib_System.Security.AccessControl.dll.so => 118 + i64 u0x174f71c46216e44a, ; 92: Xamarin.KotlinX.Coroutines.Core => 290 + i64 u0x1752c12f1e1fc00c, ; 93: System.Core => 21 + i64 u0x17b56e25558a5d36, ; 94: lib-hu-Microsoft.Maui.Controls.resources.dll.so => 306 + i64 u0x17f9358913beb16a, ; 95: System.Text.Encodings.Web => 137 + i64 u0x1809fb23f29ba44a, ; 96: lib_System.Reflection.TypeExtensions.dll.so => 97 + i64 u0x18402a709e357f3b, ; 97: lib_Xamarin.KotlinX.Serialization.Core.Jvm.dll.so => 293 + i64 u0x18a9befae51bb361, ; 98: System.Net.WebClient => 77 + i64 u0x18f0ce884e87d89a, ; 99: nb/Microsoft.Maui.Controls.resources.dll => 312 + i64 u0x19777fba3c41b398, ; 100: Xamarin.AndroidX.Startup.StartupRuntime.dll => 267 + i64 u0x19a4c090f14ebb66, ; 101: System.Security.Claims => 119 + i64 u0x1a91866a319e9259, ; 102: lib_System.Collections.Concurrent.dll.so => 8 + i64 u0x1aac34d1917ba5d3, ; 103: lib_System.dll.so => 165 + i64 u0x1aad60783ffa3e5b, ; 104: lib-th-Microsoft.Maui.Controls.resources.dll.so => 321 + i64 u0x1aea8f1c3b282172, ; 105: lib_System.Net.Ping.dll.so => 70 + i64 u0x1b4b7a1d0d265fa2, ; 106: Xamarin.Android.Glide.DiskLruCache => 207 + i64 u0x1b8700ce6e547c0b, ; 107: lib_Microsoft.AspNetCore.Components.Forms.dll.so => 177 + i64 u0x1bbdb16cfa73e785, ; 108: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android => 250 + i64 u0x1bc766e07b2b4241, ; 109: Xamarin.AndroidX.ResourceInspection.Annotation.dll => 262 + i64 u0x1c5217a9e4973753, ; 110: lib_Microsoft.Extensions.FileProviders.Physical.dll.so => 192 + i64 u0x1c753b5ff15bce1b, ; 111: Mono.Android.Runtime.dll => 171 + i64 u0x1cd47467799d8250, ; 112: System.Threading.Tasks.dll => 145 + i64 u0x1d23eafdc6dc346c, ; 113: System.Globalization.Calendars.dll => 40 + i64 u0x1da4110562816681, ; 114: Xamarin.AndroidX.Security.SecurityCrypto.dll => 265 + i64 u0x1db6820994506bf5, ; 115: System.IO.FileSystem.AccessControl.dll => 47 + i64 u0x1dbb0c2c6a999acb, ; 116: System.Diagnostics.StackTrace => 30 + i64 u0x1e3d87657e9659bc, ; 117: Xamarin.AndroidX.Navigation.UI => 259 + i64 u0x1e71143913d56c10, ; 118: lib-ko-Microsoft.Maui.Controls.resources.dll.so => 310 + i64 u0x1e7c31185e2fb266, ; 119: lib_System.Threading.Tasks.Parallel.dll.so => 144 + i64 u0x1ed8fcce5e9b50a0, ; 120: Microsoft.Extensions.Options.dll => 197 + i64 u0x1f055d15d807e1b2, ; 121: System.Xml.XmlSerializer => 163 + i64 u0x1f1ed22c1085f044, ; 122: lib_System.Diagnostics.FileVersionInfo.dll.so => 28 + i64 u0x1f61df9c5b94d2c1, ; 123: lib_System.Numerics.dll.so => 84 + i64 u0x1f750bb5421397de, ; 124: lib_Xamarin.AndroidX.Tracing.Tracing.dll.so => 269 + i64 u0x20237ea48006d7a8, ; 125: lib_System.Net.WebClient.dll.so => 77 + i64 u0x209375905fcc1bad, ; 126: lib_System.IO.Compression.Brotli.dll.so => 43 + i64 u0x20fab3cf2dfbc8df, ; 127: lib_System.Diagnostics.Process.dll.so => 29 + i64 u0x2110167c128cba15, ; 128: System.Globalization => 42 + i64 u0x21419508838f7547, ; 129: System.Runtime.CompilerServices.VisualC => 103 + i64 u0x2174319c0d835bc9, ; 130: System.Runtime => 117 + i64 u0x2198e5bc8b7153fa, ; 131: Xamarin.AndroidX.Annotation.Experimental.dll => 212 + i64 u0x219ea1b751a4dee4, ; 132: lib_System.IO.Compression.ZipFile.dll.so => 45 + i64 u0x21cc7e445dcd5469, ; 133: System.Reflection.Emit.ILGeneration => 91 + i64 u0x220fd4f2e7c48170, ; 134: th/Microsoft.Maui.Controls.resources => 321 + i64 u0x224538d85ed15a82, ; 135: System.IO.Pipes => 56 + i64 u0x22908438c6bed1af, ; 136: lib_System.Threading.Timer.dll.so => 148 + i64 u0x237be844f1f812c7, ; 137: System.Threading.Thread.dll => 146 + i64 u0x23852b3bdc9f7096, ; 138: System.Resources.ResourceManager => 100 + i64 u0x23986dd7e5d4fc01, ; 139: System.IO.FileSystem.Primitives.dll => 49 + i64 u0x2407aef2bbe8fadf, ; 140: System.Console => 20 + i64 u0x240abe014b27e7d3, ; 141: Xamarin.AndroidX.Core.dll => 227 + i64 u0x247619fe4413f8bf, ; 142: System.Runtime.Serialization.Primitives.dll => 114 + i64 u0x24de8d301281575e, ; 143: Xamarin.Android.Glide => 205 + i64 u0x252073cc3caa62c2, ; 144: fr/Microsoft.Maui.Controls.resources.dll => 302 + i64 u0x256b8d41255f01b1, ; 145: Xamarin.Google.Crypto.Tink.Android => 280 + i64 u0x2662c629b96b0b30, ; 146: lib_Xamarin.Kotlin.StdLib.dll.so => 286 + i64 u0x268c1439f13bcc29, ; 147: lib_Microsoft.Extensions.Primitives.dll.so => 198 + i64 u0x26a670e154a9c54b, ; 148: System.Reflection.Extensions.dll => 94 + i64 u0x26d077d9678fe34f, ; 149: System.IO.dll => 58 + i64 u0x273f3515de5faf0d, ; 150: id/Microsoft.Maui.Controls.resources.dll => 307 + i64 u0x2742545f9094896d, ; 151: hr/Microsoft.Maui.Controls.resources => 305 + i64 u0x2759af78ab94d39b, ; 152: System.Net.WebSockets => 81 + i64 u0x27b2b16f3e9de038, ; 153: Xamarin.Google.Crypto.Tink.Android.dll => 280 + i64 u0x27b410442fad6cf1, ; 154: Java.Interop.dll => 169 + i64 u0x27b97e0d52c3034a, ; 155: System.Diagnostics.Debug => 26 + i64 u0x2801845a2c71fbfb, ; 156: System.Net.Primitives.dll => 71 + i64 u0x286835e259162700, ; 157: lib_Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll.so => 260 + i64 u0x2949f3617a02c6b2, ; 158: Xamarin.AndroidX.ExifInterface => 237 + i64 u0x2a128783efe70ba0, ; 159: uk/Microsoft.Maui.Controls.resources.dll => 323 + i64 u0x2a3b095612184159, ; 160: lib_System.Net.NetworkInformation.dll.so => 69 + i64 u0x2a6507a5ffabdf28, ; 161: System.Diagnostics.TraceSource.dll => 33 + i64 u0x2ad156c8e1354139, ; 162: fi/Microsoft.Maui.Controls.resources => 301 + i64 u0x2ad5d6b13b7a3e04, ; 163: System.ComponentModel.DataAnnotations.dll => 14 + i64 u0x2af298f63581d886, ; 164: System.Text.RegularExpressions.dll => 139 + i64 u0x2afc1c4f898552ee, ; 165: lib_System.Formats.Asn1.dll.so => 38 + i64 u0x2b148910ed40fbf9, ; 166: zh-Hant/Microsoft.Maui.Controls.resources.dll => 327 + i64 u0x2b4d4904cebfa4e9, ; 167: Microsoft.Extensions.FileSystemGlobbing => 193 + i64 u0x2b6989d78cba9a15, ; 168: Xamarin.AndroidX.Concurrent.Futures.dll => 223 + i64 u0x2c8bd14bb93a7d82, ; 169: lib-pl-Microsoft.Maui.Controls.resources.dll.so => 314 + i64 u0x2cbd9262ca785540, ; 170: lib_System.Text.Encoding.CodePages.dll.so => 134 + i64 u0x2cc9e1fed6257257, ; 171: lib_System.Reflection.Emit.Lightweight.dll.so => 92 + i64 u0x2cd723e9fe623c7c, ; 172: lib_System.Private.Xml.Linq.dll.so => 88 + i64 u0x2d169d318a968379, ; 173: System.Threading.dll => 149 + i64 u0x2d47774b7d993f59, ; 174: sv/Microsoft.Maui.Controls.resources.dll => 320 + i64 u0x2d5ffcae1ad0aaca, ; 175: System.Data.dll => 24 + i64 u0x2db915caf23548d2, ; 176: System.Text.Json.dll => 138 + i64 u0x2dcaa0bb15a4117a, ; 177: System.IO.UnmanagedMemoryStream.dll => 57 + i64 u0x2e5a40c319acb800, ; 178: System.IO.FileSystem => 51 + i64 u0x2e6f1f226821322a, ; 179: el/Microsoft.Maui.Controls.resources.dll => 299 + i64 u0x2e8ff3fae87a8245, ; 180: lib_Microsoft.JSInterop.dll.so => 199 + i64 u0x2f02f94df3200fe5, ; 181: System.Diagnostics.Process => 29 + i64 u0x2f2e98e1c89b1aff, ; 182: System.Xml.ReaderWriter => 157 + i64 u0x2f5911d9ba814e4e, ; 183: System.Diagnostics.Tracing => 34 + i64 u0x2f84070a459bc31f, ; 184: lib_System.Xml.dll.so => 164 + i64 u0x309ee9eeec09a71e, ; 185: lib_Xamarin.AndroidX.Fragment.dll.so => 238 + i64 u0x30c6dda129408828, ; 186: System.IO.IsolatedStorage => 52 + i64 u0x310d9651ec86c411, ; 187: Microsoft.Extensions.FileProviders.Embedded => 191 + i64 u0x31195fef5d8fb552, ; 188: _Microsoft.Android.Resource.Designer.dll => 328 + i64 u0x312c8ed623cbfc8d, ; 189: Xamarin.AndroidX.Window.dll => 276 + i64 u0x31496b779ed0663d, ; 190: lib_System.Reflection.DispatchProxy.dll.so => 90 + i64 u0x315f08d19390dc36, ; 191: Xamarin.Google.ErrorProne.TypeAnnotations => 282 + i64 u0x32243413e774362a, ; 192: Xamarin.AndroidX.CardView.dll => 219 + i64 u0x3235427f8d12dae1, ; 193: lib_System.Drawing.Primitives.dll.so => 35 + i64 u0x329753a17a517811, ; 194: fr/Microsoft.Maui.Controls.resources => 302 + i64 u0x32aa989ff07a84ff, ; 195: lib_System.Xml.ReaderWriter.dll.so => 157 + i64 u0x33642d5508314e46, ; 196: Microsoft.Extensions.FileSystemGlobbing.dll => 193 + i64 u0x33829542f112d59b, ; 197: System.Collections.Immutable => 9 + i64 u0x33a31443733849fe, ; 198: lib-es-Microsoft.Maui.Controls.resources.dll.so => 300 + i64 u0x341abc357fbb4ebf, ; 199: lib_System.Net.Sockets.dll.so => 76 + i64 u0x3496c1e2dcaf5ecc, ; 200: lib_System.IO.Pipes.AccessControl.dll.so => 55 + i64 u0x34bd01fd4be06ee3, ; 201: lib_Microsoft.Extensions.FileProviders.Composite.dll.so => 190 + i64 u0x34dfd74fe2afcf37, ; 202: Microsoft.Maui => 202 + i64 u0x34e292762d9615df, ; 203: cs/Microsoft.Maui.Controls.resources.dll => 296 + i64 u0x3508234247f48404, ; 204: Microsoft.Maui.Controls => 200 + i64 u0x353590da528c9d22, ; 205: System.ComponentModel.Annotations => 13 + i64 u0x3549870798b4cd30, ; 206: lib_Xamarin.AndroidX.ViewPager2.dll.so => 275 + i64 u0x355282fc1c909694, ; 207: Microsoft.Extensions.Configuration => 182 + i64 u0x3552fc5d578f0fbf, ; 208: Xamarin.AndroidX.Arch.Core.Common => 216 + i64 u0x355c649948d55d97, ; 209: lib_System.Runtime.Intrinsics.dll.so => 109 + i64 u0x35ea9d1c6834bc8c, ; 210: Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll => 253 + i64 u0x3628ab68db23a01a, ; 211: lib_System.Diagnostics.Tools.dll.so => 32 + i64 u0x3673b042508f5b6b, ; 212: lib_System.Runtime.Extensions.dll.so => 104 + i64 u0x36740f1a8ecdc6c4, ; 213: System.Numerics => 84 + i64 u0x36b2b50fdf589ae2, ; 214: System.Reflection.Emit.Lightweight => 92 + i64 u0x36cada77dc79928b, ; 215: System.IO.MemoryMappedFiles => 53 + i64 u0x374ef46b06791af6, ; 216: System.Reflection.Primitives.dll => 96 + i64 u0x376bf93e521a5417, ; 217: lib_Xamarin.Jetbrains.Annotations.dll.so => 284 + i64 u0x37bc29f3183003b6, ; 218: lib_System.IO.dll.so => 58 + i64 u0x380134e03b1e160a, ; 219: System.Collections.Immutable.dll => 9 + i64 u0x38049b5c59b39324, ; 220: System.Runtime.CompilerServices.Unsafe => 102 + i64 u0x385c17636bb6fe6e, ; 221: Xamarin.AndroidX.CustomView.dll => 231 + i64 u0x38869c811d74050e, ; 222: System.Net.NameResolution.dll => 68 + i64 u0x393c226616977fdb, ; 223: lib_Xamarin.AndroidX.ViewPager.dll.so => 274 + i64 u0x395e37c3334cf82a, ; 224: lib-ca-Microsoft.Maui.Controls.resources.dll.so => 295 + i64 u0x39c3107c28752af1, ; 225: lib_Microsoft.Extensions.FileProviders.Abstractions.dll.so => 189 + i64 u0x3ab5859054645f72, ; 226: System.Security.Cryptography.Primitives.dll => 125 + i64 u0x3ad75090c3fac0e9, ; 227: lib_Xamarin.AndroidX.ResourceInspection.Annotation.dll.so => 262 + i64 u0x3ae44ac43a1fbdbb, ; 228: System.Runtime.Serialization => 116 + i64 u0x3b860f9932505633, ; 229: lib_System.Text.Encoding.Extensions.dll.so => 135 + i64 u0x3be6248c2bc7dc8c, ; 230: Microsoft.JSInterop.dll => 199 + i64 u0x3c3aafb6b3a00bf6, ; 231: lib_System.Security.Cryptography.X509Certificates.dll.so => 126 + i64 u0x3c4049146b59aa90, ; 232: System.Runtime.InteropServices.JavaScript => 106 + i64 u0x3c7c495f58ac5ee9, ; 233: Xamarin.Kotlin.StdLib => 286 + i64 u0x3c7e5ed3d5db71bb, ; 234: System.Security => 131 + i64 u0x3cd9d281d402eb9b, ; 235: Xamarin.AndroidX.Browser.dll => 218 + i64 u0x3d1c50cc001a991e, ; 236: Xamarin.Google.Guava.ListenableFuture.dll => 283 + i64 u0x3d2b1913edfc08d7, ; 237: lib_System.Threading.ThreadPool.dll.so => 147 + i64 u0x3d46f0b995082740, ; 238: System.Xml.Linq => 156 + i64 u0x3d8a8f400514a790, ; 239: Xamarin.AndroidX.Fragment.Ktx.dll => 239 + i64 u0x3d9c2a242b040a50, ; 240: lib_Xamarin.AndroidX.Core.dll.so => 227 + i64 u0x3db495de2204755c, ; 241: Microsoft.Extensions.Configuration.FileExtensions => 185 + i64 u0x3dbb6b9f5ab90fa7, ; 242: lib_Xamarin.AndroidX.DynamicAnimation.dll.so => 234 + i64 u0x3e5441657549b213, ; 243: Xamarin.AndroidX.ResourceInspection.Annotation => 262 + i64 u0x3e57d4d195c53c2e, ; 244: System.Reflection.TypeExtensions => 97 + i64 u0x3e616ab4ed1f3f15, ; 245: lib_System.Data.dll.so => 24 + i64 u0x3e7f8912b96e5065, ; 246: Microsoft.AspNetCore.Components.WebView.dll => 179 + i64 u0x3f1d226e6e06db7e, ; 247: Xamarin.AndroidX.SlidingPaneLayout.dll => 266 + i64 u0x3f510adf788828dd, ; 248: System.Threading.Tasks.Extensions => 143 + i64 u0x407a10bb4bf95829, ; 249: lib_Xamarin.AndroidX.Navigation.Common.dll.so => 256 + i64 u0x40c98b6bd77346d4, ; 250: Microsoft.VisualBasic.dll => 3 + i64 u0x41833cf766d27d96, ; 251: mscorlib => 167 + i64 u0x41cab042be111c34, ; 252: lib_Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so => 215 + i64 u0x423a9ecc4d905a88, ; 253: lib_System.Resources.ResourceManager.dll.so => 100 + i64 u0x423bf51ae7def810, ; 254: System.Xml.XPath => 161 + i64 u0x42462ff15ddba223, ; 255: System.Resources.Reader.dll => 99 + i64 u0x4291015ff4e5ef71, ; 256: Xamarin.AndroidX.Core.ViewTree.dll => 229 + i64 u0x42a31b86e6ccc3f0, ; 257: System.Diagnostics.Contracts => 25 + i64 u0x430e95b891249788, ; 258: lib_System.Reflection.Emit.dll.so => 93 + i64 u0x43375950ec7c1b6a, ; 259: netstandard.dll => 168 + i64 u0x434c4e1d9284cdae, ; 260: Mono.Android.dll => 172 + i64 u0x43505013578652a0, ; 261: lib_Xamarin.AndroidX.Activity.Ktx.dll.so => 210 + i64 u0x437d06c381ed575a, ; 262: lib_Microsoft.VisualBasic.dll.so => 3 + i64 u0x43950f84de7cc79a, ; 263: pl/Microsoft.Maui.Controls.resources.dll => 314 + i64 u0x43e8ca5bc927ff37, ; 264: lib_Xamarin.AndroidX.Emoji2.ViewsHelper.dll.so => 236 + i64 u0x448bd33429269b19, ; 265: Microsoft.CSharp => 1 + i64 u0x4499fa3c8e494654, ; 266: lib_System.Runtime.Serialization.Primitives.dll.so => 114 + i64 u0x4515080865a951a5, ; 267: Xamarin.Kotlin.StdLib.dll => 286 + i64 u0x4545802489b736b9, ; 268: Xamarin.AndroidX.Fragment.Ktx => 239 + i64 u0x454b4d1e66bb783c, ; 269: Xamarin.AndroidX.Lifecycle.Process => 246 + i64 u0x45c40276a42e283e, ; 270: System.Diagnostics.TraceSource => 33 + i64 u0x45d443f2a29adc37, ; 271: System.AppContext.dll => 6 + i64 u0x46a4213bc97fe5ae, ; 272: lib-ru-Microsoft.Maui.Controls.resources.dll.so => 318 + i64 u0x47358bd471172e1d, ; 273: lib_System.Xml.Linq.dll.so => 156 + i64 u0x47daf4e1afbada10, ; 274: pt/Microsoft.Maui.Controls.resources => 316 + i64 u0x480c0a47dd42dd81, ; 275: lib_System.IO.MemoryMappedFiles.dll.so => 53 + i64 u0x49e952f19a4e2022, ; 276: System.ObjectModel => 85 + i64 u0x49f9e6948a8131e4, ; 277: lib_Xamarin.AndroidX.VersionedParcelable.dll.so => 273 + i64 u0x4a5667b2462a664b, ; 278: lib_Xamarin.AndroidX.Navigation.UI.dll.so => 259 + i64 u0x4a7a18981dbd56bc, ; 279: System.IO.Compression.FileSystem.dll => 44 + i64 u0x4aa5c60350917c06, ; 280: lib_Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll.so => 245 + i64 u0x4b07a0ed0ab33ff4, ; 281: System.Runtime.Extensions.dll => 104 + i64 u0x4b576d47ac054f3c, ; 282: System.IO.FileSystem.AccessControl => 47 + i64 u0x4b7b6532ded934b7, ; 283: System.Text.Json => 138 + i64 u0x4c7755cf07ad2d5f, ; 284: System.Net.Http.Json.dll => 64 + i64 u0x4cc5f15266470798, ; 285: lib_Xamarin.AndroidX.Loader.dll.so => 255 + i64 u0x4cf6f67dc77aacd2, ; 286: System.Net.NetworkInformation.dll => 69 + i64 u0x4d3183dd245425d4, ; 287: System.Net.WebSockets.Client.dll => 80 + i64 u0x4d479f968a05e504, ; 288: System.Linq.Expressions.dll => 59 + i64 u0x4d55a010ffc4faff, ; 289: System.Private.Xml => 89 + i64 u0x4d5cbe77561c5b2e, ; 290: System.Web.dll => 154 + i64 u0x4d77512dbd86ee4c, ; 291: lib_Xamarin.AndroidX.Arch.Core.Common.dll.so => 216 + i64 u0x4d7793536e79c309, ; 292: System.ServiceProcess => 133 + i64 u0x4d95fccc1f67c7ca, ; 293: System.Runtime.Loader.dll => 110 + i64 u0x4dcf44c3c9b076a2, ; 294: it/Microsoft.Maui.Controls.resources.dll => 308 + i64 u0x4dd9247f1d2c3235, ; 295: Xamarin.AndroidX.Loader.dll => 255 + i64 u0x4df510084e2a0bae, ; 296: Microsoft.JSInterop => 199 + i64 u0x4e2aeee78e2c4a87, ; 297: Xamarin.AndroidX.ProfileInstaller.ProfileInstaller => 260 + i64 u0x4e32f00cb0937401, ; 298: Mono.Android.Runtime => 171 + i64 u0x4e5eea4668ac2b18, ; 299: System.Text.Encoding.CodePages => 134 + i64 u0x4ebd0c4b82c5eefc, ; 300: lib_System.Threading.Channels.dll.so => 140 + i64 u0x4ee8eaa9c9c1151a, ; 301: System.Globalization.Calendars => 40 + i64 u0x4f21ee6ef9eb527e, ; 302: ca/Microsoft.Maui.Controls.resources => 295 + i64 u0x4fdc964ec1888e25, ; 303: lib_Microsoft.Extensions.Configuration.Binder.dll.so => 184 + i64 u0x5037f0be3c28c7a3, ; 304: lib_Microsoft.Maui.Controls.dll.so => 200 + i64 u0x50c3a29b21050d45, ; 305: System.Linq.Parallel.dll => 60 + i64 u0x5116b21580ae6eb0, ; 306: Microsoft.Extensions.Configuration.Binder.dll => 184 + i64 u0x5131bbe80989093f, ; 307: Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll => 252 + i64 u0x516324a5050a7e3c, ; 308: System.Net.WebProxy => 79 + i64 u0x516d6f0b21a303de, ; 309: lib_System.Diagnostics.Contracts.dll.so => 25 + i64 u0x51bb8a2afe774e32, ; 310: System.Drawing => 36 + i64 u0x5247c5c32a4140f0, ; 311: System.Resources.Reader => 99 + i64 u0x526bb15e3c386364, ; 312: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll => 249 + i64 u0x526ce79eb8e90527, ; 313: lib_System.Net.Primitives.dll.so => 71 + i64 u0x52829f00b4467c38, ; 314: lib_System.Data.Common.dll.so => 22 + i64 u0x529ffe06f39ab8db, ; 315: Xamarin.AndroidX.Core => 227 + i64 u0x52ff996554dbf352, ; 316: Microsoft.Maui.Graphics => 204 + i64 u0x535f7e40e8fef8af, ; 317: lib-sk-Microsoft.Maui.Controls.resources.dll.so => 319 + i64 u0x53978aac584c666e, ; 318: lib_System.Security.Cryptography.Cng.dll.so => 121 + i64 u0x53a96d5c86c9e194, ; 319: System.Net.NetworkInformation => 69 + i64 u0x53be1038a61e8d44, ; 320: System.Runtime.InteropServices.RuntimeInformation.dll => 107 + i64 u0x53c3014b9437e684, ; 321: lib-zh-HK-Microsoft.Maui.Controls.resources.dll.so => 325 + i64 u0x5435e6f049e9bc37, ; 322: System.Security.Claims.dll => 119 + i64 u0x54795225dd1587af, ; 323: lib_System.Runtime.dll.so => 117 + i64 u0x547a34f14e5f6210, ; 324: Xamarin.AndroidX.Lifecycle.Common.dll => 241 + i64 u0x556e8b63b660ab8b, ; 325: Xamarin.AndroidX.Lifecycle.Common.Jvm.dll => 242 + i64 u0x5588627c9a108ec9, ; 326: System.Collections.Specialized => 11 + i64 u0x55a898e4f42e3fae, ; 327: Microsoft.VisualBasic.Core.dll => 2 + i64 u0x55fa0c610fe93bb1, ; 328: lib_System.Security.Cryptography.OpenSsl.dll.so => 124 + i64 u0x56442b99bc64bb47, ; 329: System.Runtime.Serialization.Xml.dll => 115 + i64 u0x56a8b26e1aeae27b, ; 330: System.Threading.Tasks.Dataflow => 142 + i64 u0x56f932d61e93c07f, ; 331: System.Globalization.Extensions => 41 + i64 u0x571c5cfbec5ae8e2, ; 332: System.Private.Uri => 87 + i64 u0x576499c9f52fea31, ; 333: Xamarin.AndroidX.Annotation => 211 + i64 u0x579a06fed6eec900, ; 334: System.Private.CoreLib.dll => 173 + i64 u0x57c542c14049b66d, ; 335: System.Diagnostics.DiagnosticSource => 27 + i64 u0x581a8bd5cfda563e, ; 336: System.Threading.Timer => 148 + i64 u0x584ac38e21d2fde1, ; 337: Microsoft.Extensions.Configuration.Binder => 184 + i64 u0x58601b2dda4a27b9, ; 338: lib-ja-Microsoft.Maui.Controls.resources.dll.so => 309 + i64 u0x58688d9af496b168, ; 339: Microsoft.Extensions.DependencyInjection.dll => 187 + i64 u0x588c167a79db6bfb, ; 340: lib_Xamarin.Google.ErrorProne.Annotations.dll.so => 281 + i64 u0x5906028ae5151104, ; 341: Xamarin.AndroidX.Activity.Ktx => 210 + i64 u0x595a356d23e8da9a, ; 342: lib_Microsoft.CSharp.dll.so => 1 + i64 u0x59f9e60b9475085f, ; 343: lib_Xamarin.AndroidX.Annotation.Experimental.dll.so => 212 + i64 u0x5a745f5101a75527, ; 344: lib_System.IO.Compression.FileSystem.dll.so => 44 + i64 u0x5a89a886ae30258d, ; 345: lib_Xamarin.AndroidX.CoordinatorLayout.dll.so => 226 + i64 u0x5a8f6699f4a1caa9, ; 346: lib_System.Threading.dll.so => 149 + i64 u0x5ae9cd33b15841bf, ; 347: System.ComponentModel => 18 + i64 u0x5b54391bdc6fcfe6, ; 348: System.Private.DataContractSerialization => 86 + i64 u0x5b5f0e240a06a2a2, ; 349: da/Microsoft.Maui.Controls.resources.dll => 297 + i64 u0x5b8109e8e14c5e3e, ; 350: System.Globalization.Extensions.dll => 41 + i64 u0x5bddd04d72a9e350, ; 351: Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx => 245 + i64 u0x5bdf16b09da116ab, ; 352: Xamarin.AndroidX.Collection => 220 + i64 u0x5c019d5266093159, ; 353: lib_Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll.so => 250 + i64 u0x5c30a4a35f9cc8c4, ; 354: lib_System.Reflection.Extensions.dll.so => 94 + i64 u0x5c393624b8176517, ; 355: lib_Microsoft.Extensions.Logging.dll.so => 194 + i64 u0x5c53c29f5073b0c9, ; 356: System.Diagnostics.FileVersionInfo => 28 + i64 u0x5c87463c575c7616, ; 357: lib_System.Globalization.Extensions.dll.so => 41 + i64 u0x5d0a4a29b02d9d3c, ; 358: System.Net.WebHeaderCollection.dll => 78 + i64 u0x5d25ef991dd9a85c, ; 359: Microsoft.AspNetCore.Components.WebView.Maui.dll => 180 + i64 u0x5d40c9b15181641f, ; 360: lib_Xamarin.AndroidX.Emoji2.dll.so => 235 + i64 u0x5d6ca10d35e9485b, ; 361: lib_Xamarin.AndroidX.Concurrent.Futures.dll.so => 223 + i64 u0x5d7ec76c1c703055, ; 362: System.Threading.Tasks.Parallel => 144 + i64 u0x5db0cbbd1028510e, ; 363: lib_System.Runtime.InteropServices.dll.so => 108 + i64 u0x5db30905d3e5013b, ; 364: Xamarin.AndroidX.Collection.Jvm.dll => 221 + i64 u0x5e467bc8f09ad026, ; 365: System.Collections.Specialized.dll => 11 + i64 u0x5e5173b3208d97e7, ; 366: System.Runtime.Handles.dll => 105 + i64 u0x5ea92fdb19ec8c4c, ; 367: System.Text.Encodings.Web.dll => 137 + i64 u0x5eb8046dd40e9ac3, ; 368: System.ComponentModel.Primitives => 16 + i64 u0x5ec272d219c9aba4, ; 369: System.Security.Cryptography.Csp.dll => 122 + i64 u0x5eee1376d94c7f5e, ; 370: System.Net.HttpListener.dll => 66 + i64 u0x5f36ccf5c6a57e24, ; 371: System.Xml.ReaderWriter.dll => 157 + i64 u0x5f4294b9b63cb842, ; 372: System.Data.Common => 22 + i64 u0x5f9a2d823f664957, ; 373: lib-el-Microsoft.Maui.Controls.resources.dll.so => 299 + i64 u0x5fa6da9c3cd8142a, ; 374: lib_Xamarin.KotlinX.Serialization.Core.dll.so => 292 + i64 u0x5fac98e0b37a5b9d, ; 375: System.Runtime.CompilerServices.Unsafe.dll => 102 + i64 u0x609f4b7b63d802d4, ; 376: lib_Microsoft.Extensions.DependencyInjection.dll.so => 187 + i64 u0x60cd4e33d7e60134, ; 377: Xamarin.KotlinX.Coroutines.Core.Jvm => 291 + i64 u0x60f62d786afcf130, ; 378: System.Memory => 63 + i64 u0x61bb78c89f867353, ; 379: System.IO => 58 + i64 u0x61be8d1299194243, ; 380: Microsoft.Maui.Controls.Xaml => 201 + i64 u0x61d2cba29557038f, ; 381: de/Microsoft.Maui.Controls.resources => 298 + i64 u0x61d88f399afb2f45, ; 382: lib_System.Runtime.Loader.dll.so => 110 + i64 u0x622eef6f9e59068d, ; 383: System.Private.CoreLib => 173 + i64 u0x63d5e3aa4ef9b931, ; 384: Xamarin.KotlinX.Coroutines.Android.dll => 289 + i64 u0x63f1f6883c1e23c2, ; 385: lib_System.Collections.Immutable.dll.so => 9 + i64 u0x6400f68068c1e9f1, ; 386: Xamarin.Google.Android.Material.dll => 278 + i64 u0x640e3b14dbd325c2, ; 387: System.Security.Cryptography.Algorithms.dll => 120 + i64 u0x64587004560099b9, ; 388: System.Reflection => 98 + i64 u0x64b1529a438a3c45, ; 389: lib_System.Runtime.Handles.dll.so => 105 + i64 u0x6565fba2cd8f235b, ; 390: Xamarin.AndroidX.Lifecycle.ViewModel.Ktx => 253 + i64 u0x65ecac39144dd3cc, ; 391: Microsoft.Maui.Controls.dll => 200 + i64 u0x65ece51227bfa724, ; 392: lib_System.Runtime.Numerics.dll.so => 111 + i64 u0x661722438787b57f, ; 393: Xamarin.AndroidX.Annotation.Jvm.dll => 213 + i64 u0x6679b2337ee6b22a, ; 394: lib_System.IO.FileSystem.Primitives.dll.so => 49 + i64 u0x6692e924eade1b29, ; 395: lib_System.Console.dll.so => 20 + i64 u0x66a4e5c6a3fb0bae, ; 396: lib_Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll.so => 252 + i64 u0x66d13304ce1a3efa, ; 397: Xamarin.AndroidX.CursorAdapter => 230 + i64 u0x674303f65d8fad6f, ; 398: lib_System.Net.Quic.dll.so => 72 + i64 u0x6756ca4cad62e9d6, ; 399: lib_Xamarin.AndroidX.ConstraintLayout.Core.dll.so => 225 + i64 u0x67c0802770244408, ; 400: System.Windows.dll => 155 + i64 u0x68100b69286e27cd, ; 401: lib_System.Formats.Tar.dll.so => 39 + i64 u0x68558ec653afa616, ; 402: lib-da-Microsoft.Maui.Controls.resources.dll.so => 297 + i64 u0x6857d56b8e8b4bb6, ; 403: lib_Microsoft.AspNetCore.Metadata.dll.so => 181 + i64 u0x6872ec7a2e36b1ac, ; 404: System.Drawing.Primitives.dll => 35 + i64 u0x68bb2c417aa9b61c, ; 405: Xamarin.KotlinX.AtomicFU.dll => 287 + i64 u0x68fbbbe2eb455198, ; 406: System.Formats.Asn1 => 38 + i64 u0x69063fc0ba8e6bdd, ; 407: he/Microsoft.Maui.Controls.resources.dll => 303 + i64 u0x6972f787bc9ff7f9, ; 408: lib_clipiFrontC.dll.so => 0 + i64 u0x69a3e26c76f6eec4, ; 409: Xamarin.AndroidX.Window.Extensions.Core.Core.dll => 277 + i64 u0x6a4d7577b2317255, ; 410: System.Runtime.InteropServices.dll => 108 + i64 u0x6ace3b74b15ee4a4, ; 411: nb/Microsoft.Maui.Controls.resources => 312 + i64 u0x6afcedb171067e2b, ; 412: System.Core.dll => 21 + i64 u0x6bef98e124147c24, ; 413: Xamarin.Jetbrains.Annotations => 284 + i64 u0x6ce874bff138ce2b, ; 414: Xamarin.AndroidX.Lifecycle.ViewModel.dll => 251 + i64 u0x6d12bfaa99c72b1f, ; 415: lib_Microsoft.Maui.Graphics.dll.so => 204 + i64 u0x6d70755158ca866e, ; 416: lib_System.ComponentModel.EventBasedAsync.dll.so => 15 + i64 u0x6d79993361e10ef2, ; 417: Microsoft.Extensions.Primitives => 198 + i64 u0x6d7eeca99577fc8b, ; 418: lib_System.Net.WebProxy.dll.so => 79 + i64 u0x6d8515b19946b6a2, ; 419: System.Net.WebProxy.dll => 79 + i64 u0x6d86d56b84c8eb71, ; 420: lib_Xamarin.AndroidX.CursorAdapter.dll.so => 230 + i64 u0x6d9bea6b3e895cf7, ; 421: Microsoft.Extensions.Primitives.dll => 198 + i64 u0x6e25a02c3833319a, ; 422: lib_Xamarin.AndroidX.Navigation.Fragment.dll.so => 257 + i64 u0x6e79c6bd8627412a, ; 423: Xamarin.AndroidX.SavedState.SavedState.Ktx => 264 + i64 u0x6e838d9a2a6f6c9e, ; 424: lib_System.ValueTuple.dll.so => 152 + i64 u0x6e9965ce1095e60a, ; 425: lib_System.Core.dll.so => 21 + i64 u0x6fd2265da78b93a4, ; 426: lib_Microsoft.Maui.dll.so => 202 + i64 u0x6fdfc7de82c33008, ; 427: cs/Microsoft.Maui.Controls.resources => 296 + i64 u0x6ffc4967cc47ba57, ; 428: System.IO.FileSystem.Watcher.dll => 50 + i64 u0x701cd46a1c25a5fe, ; 429: System.IO.FileSystem.dll => 51 + i64 u0x70e99f48c05cb921, ; 430: tr/Microsoft.Maui.Controls.resources.dll => 322 + i64 u0x70fd3deda22442d2, ; 431: lib-nb-Microsoft.Maui.Controls.resources.dll.so => 312 + i64 u0x71485e7ffdb4b958, ; 432: System.Reflection.Extensions => 94 + i64 u0x7162a2fce67a945f, ; 433: lib_Xamarin.Android.Glide.Annotations.dll.so => 206 + i64 u0x71a495ea3761dde8, ; 434: lib-it-Microsoft.Maui.Controls.resources.dll.so => 308 + i64 u0x71ad672adbe48f35, ; 435: System.ComponentModel.Primitives.dll => 16 + i64 u0x720f102581a4a5c8, ; 436: Xamarin.AndroidX.Core.ViewTree => 229 + i64 u0x725f5a9e82a45c81, ; 437: System.Security.Cryptography.Encoding => 123 + i64 u0x72b1fb4109e08d7b, ; 438: lib-hr-Microsoft.Maui.Controls.resources.dll.so => 305 + i64 u0x72e0300099accce1, ; 439: System.Xml.XPath.XDocument => 160 + i64 u0x730bfb248998f67a, ; 440: System.IO.Compression.ZipFile => 45 + i64 u0x732b2d67b9e5c47b, ; 441: Xamarin.Google.ErrorProne.Annotations.dll => 281 + i64 u0x734b76fdc0dc05bb, ; 442: lib_GoogleGson.dll.so => 174 + i64 u0x73a6be34e822f9d1, ; 443: lib_System.Runtime.Serialization.dll.so => 116 + i64 u0x73e4ce94e2eb6ffc, ; 444: lib_System.Memory.dll.so => 63 + i64 u0x743a1eccf080489a, ; 445: WindowsBase.dll => 166 + i64 u0x755a91767330b3d4, ; 446: lib_Microsoft.Extensions.Configuration.dll.so => 182 + i64 u0x75c326eb821b85c4, ; 447: lib_System.ComponentModel.DataAnnotations.dll.so => 14 + i64 u0x76012e7334db86e5, ; 448: lib_Xamarin.AndroidX.SavedState.dll.so => 263 + i64 u0x76ca07b878f44da0, ; 449: System.Runtime.Numerics.dll => 111 + i64 u0x7736c8a96e51a061, ; 450: lib_Xamarin.AndroidX.Annotation.Jvm.dll.so => 213 + i64 u0x778a805e625329ef, ; 451: System.Linq.Parallel => 60 + i64 u0x779290cc2b801eb7, ; 452: Xamarin.KotlinX.AtomicFU.Jvm => 288 + i64 u0x779f67ad3b8efbd5, ; 453: Microsoft.Extensions.Configuration.Json.dll => 186 + i64 u0x77f8a4acc2fdc449, ; 454: System.Security.Cryptography.Cng.dll => 121 + i64 u0x780bc73597a503a9, ; 455: lib-ms-Microsoft.Maui.Controls.resources.dll.so => 311 + i64 u0x782c5d8eb99ff201, ; 456: lib_Microsoft.VisualBasic.Core.dll.so => 2 + i64 u0x783606d1e53e7a1a, ; 457: th/Microsoft.Maui.Controls.resources.dll => 321 + i64 u0x78a45e51311409b6, ; 458: Xamarin.AndroidX.Fragment.dll => 238 + i64 u0x78ed4ab8f9d800a1, ; 459: Xamarin.AndroidX.Lifecycle.ViewModel => 251 + i64 u0x7a39601d6f0bb831, ; 460: lib_Xamarin.KotlinX.AtomicFU.dll.so => 287 + i64 u0x7a5207a7c82d30b4, ; 461: lib_Xamarin.JSpecify.dll.so => 285 + i64 u0x7a71889545dcdb00, ; 462: lib_Microsoft.AspNetCore.Components.WebView.dll.so => 179 + i64 u0x7a7e7eddf79c5d26, ; 463: lib_Xamarin.AndroidX.Lifecycle.ViewModel.dll.so => 251 + i64 u0x7a9a57d43b0845fa, ; 464: System.AppContext => 6 + i64 u0x7ad0f4f1e5d08183, ; 465: Xamarin.AndroidX.Collection.dll => 220 + i64 u0x7adb8da2ac89b647, ; 466: fi/Microsoft.Maui.Controls.resources.dll => 301 + i64 u0x7b13d9eaa944ade8, ; 467: Xamarin.AndroidX.DynamicAnimation.dll => 234 + i64 u0x7bef86a4335c4870, ; 468: System.ComponentModel.TypeConverter => 17 + i64 u0x7c0820144cd34d6a, ; 469: sk/Microsoft.Maui.Controls.resources.dll => 319 + i64 u0x7c2a0bd1e0f988fc, ; 470: lib-de-Microsoft.Maui.Controls.resources.dll.so => 298 + i64 u0x7c41d387501568ba, ; 471: System.Net.WebClient.dll => 77 + i64 u0x7c482cd79bd24b13, ; 472: lib_Xamarin.AndroidX.ConstraintLayout.dll.so => 224 + i64 u0x7c4867f3cb880d2f, ; 473: Microsoft.AspNetCore.Metadata => 181 + i64 u0x7cd2ec8eaf5241cd, ; 474: System.Security.dll => 131 + i64 u0x7cf9ae50dd350622, ; 475: Xamarin.Jetbrains.Annotations.dll => 284 + i64 u0x7d649b75d580bb42, ; 476: ms/Microsoft.Maui.Controls.resources.dll => 311 + i64 u0x7d8b5821548f89e7, ; 477: Microsoft.AspNetCore.Components.Forms => 177 + i64 u0x7d8ee2bdc8e3aad1, ; 478: System.Numerics.Vectors => 83 + i64 u0x7df5df8db8eaa6ac, ; 479: Microsoft.Extensions.Logging.Debug => 196 + i64 u0x7dfc3d6d9d8d7b70, ; 480: System.Collections => 12 + i64 u0x7e2e564fa2f76c65, ; 481: lib_System.Diagnostics.Tracing.dll.so => 34 + i64 u0x7e302e110e1e1346, ; 482: lib_System.Security.Claims.dll.so => 119 + i64 u0x7e4465b3f78ad8d0, ; 483: Xamarin.KotlinX.Serialization.Core.dll => 292 + i64 u0x7e571cad5915e6c3, ; 484: lib_Xamarin.AndroidX.Lifecycle.Process.dll.so => 246 + i64 u0x7e6b1ca712437d7d, ; 485: Xamarin.AndroidX.Emoji2.ViewsHelper => 236 + i64 u0x7e946809d6008ef2, ; 486: lib_System.ObjectModel.dll.so => 85 + i64 u0x7ea0272c1b4a9635, ; 487: lib_Xamarin.Android.Glide.dll.so => 205 + i64 u0x7ecc13347c8fd849, ; 488: lib_System.ComponentModel.dll.so => 18 + i64 u0x7f00ddd9b9ca5a13, ; 489: Xamarin.AndroidX.ViewPager.dll => 274 + i64 u0x7f9351cd44b1273f, ; 490: Microsoft.Extensions.Configuration.Abstractions => 183 + i64 u0x7fbd557c99b3ce6f, ; 491: lib_Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so => 244 + i64 u0x8076a9a44a2ca331, ; 492: System.Net.Quic => 72 + i64 u0x80da183a87731838, ; 493: System.Reflection.Metadata => 95 + i64 u0x8101a73bd4533440, ; 494: Microsoft.AspNetCore.Components.Web => 178 + i64 u0x812c069d5cdecc17, ; 495: System.dll => 165 + i64 u0x81381be520a60adb, ; 496: Xamarin.AndroidX.Interpolator.dll => 240 + i64 u0x81657cec2b31e8aa, ; 497: System.Net => 82 + i64 u0x81ab745f6c0f5ce6, ; 498: zh-Hant/Microsoft.Maui.Controls.resources => 327 + i64 u0x8277f2be6b5ce05f, ; 499: Xamarin.AndroidX.AppCompat => 214 + i64 u0x828f06563b30bc50, ; 500: lib_Xamarin.AndroidX.CardView.dll.so => 219 + i64 u0x82920a8d9194a019, ; 501: Xamarin.KotlinX.AtomicFU.Jvm.dll => 288 + i64 u0x82b399cb01b531c4, ; 502: lib_System.Web.dll.so => 154 + i64 u0x82df8f5532a10c59, ; 503: lib_System.Drawing.dll.so => 36 + i64 u0x82f0b6e911d13535, ; 504: lib_System.Transactions.dll.so => 151 + i64 u0x82f6403342e12049, ; 505: uk/Microsoft.Maui.Controls.resources => 323 + i64 u0x83c14ba66c8e2b8c, ; 506: zh-Hans/Microsoft.Maui.Controls.resources => 326 + i64 u0x83de69860da6cbdd, ; 507: Microsoft.Extensions.FileProviders.Composite => 190 + i64 u0x846ce984efea52c7, ; 508: System.Threading.Tasks.Parallel.dll => 144 + i64 u0x84ae73148a4557d2, ; 509: lib_System.IO.Pipes.dll.so => 56 + i64 u0x84b01102c12a9232, ; 510: System.Runtime.Serialization.Json.dll => 113 + i64 u0x850c5ba0b57ce8e7, ; 511: lib_Xamarin.AndroidX.Collection.dll.so => 220 + i64 u0x851d02edd334b044, ; 512: Xamarin.AndroidX.VectorDrawable => 271 + i64 u0x85c919db62150978, ; 513: Xamarin.AndroidX.Transition.dll => 270 + i64 u0x8662aaeb94fef37f, ; 514: lib_System.Dynamic.Runtime.dll.so => 37 + i64 u0x86a909228dc7657b, ; 515: lib-zh-Hant-Microsoft.Maui.Controls.resources.dll.so => 327 + i64 u0x86b3e00c36b84509, ; 516: Microsoft.Extensions.Configuration.dll => 182 + i64 u0x86b62cb077ec4fd7, ; 517: System.Runtime.Serialization.Xml => 115 + i64 u0x8704193f462e892e, ; 518: lib_Microsoft.Extensions.FileSystemGlobbing.dll.so => 193 + i64 u0x8706ffb12bf3f53d, ; 519: Xamarin.AndroidX.Annotation.Experimental => 212 + i64 u0x872a5b14c18d328c, ; 520: System.ComponentModel.DataAnnotations => 14 + i64 u0x872fb9615bc2dff0, ; 521: Xamarin.Android.Glide.Annotations.dll => 206 + i64 u0x87c69b87d9283884, ; 522: lib_System.Threading.Thread.dll.so => 146 + i64 u0x87f6569b25707834, ; 523: System.IO.Compression.Brotli.dll => 43 + i64 u0x8842b3a5d2d3fb36, ; 524: Microsoft.Maui.Essentials => 203 + i64 u0x88926583efe7ee86, ; 525: Xamarin.AndroidX.Activity.Ktx.dll => 210 + i64 u0x88ba6bc4f7762b03, ; 526: lib_System.Reflection.dll.so => 98 + i64 u0x88bda98e0cffb7a9, ; 527: lib_Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so => 291 + i64 u0x8930322c7bd8f768, ; 528: netstandard => 168 + i64 u0x897a606c9e39c75f, ; 529: lib_System.ComponentModel.Primitives.dll.so => 16 + i64 u0x89911a22005b92b7, ; 530: System.IO.FileSystem.DriveInfo.dll => 48 + i64 u0x89c5188089ec2cd5, ; 531: lib_System.Runtime.InteropServices.RuntimeInformation.dll.so => 107 + i64 u0x8a19e3dc71b34b2c, ; 532: System.Reflection.TypeExtensions.dll => 97 + i64 u0x8ad229ea26432ee2, ; 533: Xamarin.AndroidX.Loader => 255 + i64 u0x8b4ff5d0fdd5faa1, ; 534: lib_System.Diagnostics.DiagnosticSource.dll.so => 27 + i64 u0x8b541d476eb3774c, ; 535: System.Security.Principal.Windows => 128 + i64 u0x8b8d01333a96d0b5, ; 536: System.Diagnostics.Process.dll => 29 + i64 u0x8b9ceca7acae3451, ; 537: lib-he-Microsoft.Maui.Controls.resources.dll.so => 303 + i64 u0x8c575135aa1ccef4, ; 538: Microsoft.Extensions.FileProviders.Abstractions => 189 + i64 u0x8cb8f612b633affb, ; 539: Xamarin.AndroidX.SavedState.SavedState.Ktx.dll => 264 + i64 u0x8cdfdb4ce85fb925, ; 540: lib_System.Security.Principal.Windows.dll.so => 128 + i64 u0x8cdfe7b8f4caa426, ; 541: System.IO.Compression.FileSystem => 44 + i64 u0x8d0f420977c2c1c7, ; 542: Xamarin.AndroidX.CursorAdapter.dll => 230 + i64 u0x8d52f7ea2796c531, ; 543: Xamarin.AndroidX.Emoji2.dll => 235 + i64 u0x8d7b8ab4b3310ead, ; 544: System.Threading => 149 + i64 u0x8da188285aadfe8e, ; 545: System.Collections.Concurrent => 8 + i64 u0x8ed807bfe9858dfc, ; 546: Xamarin.AndroidX.Navigation.Common => 256 + i64 u0x8ee08b8194a30f48, ; 547: lib-hi-Microsoft.Maui.Controls.resources.dll.so => 304 + i64 u0x8ef7601039857a44, ; 548: lib-ro-Microsoft.Maui.Controls.resources.dll.so => 317 + i64 u0x8f32c6f611f6ffab, ; 549: pt/Microsoft.Maui.Controls.resources.dll => 316 + i64 u0x8f44b45eb046bbd1, ; 550: System.ServiceModel.Web.dll => 132 + i64 u0x8f8829d21c8985a4, ; 551: lib-pt-BR-Microsoft.Maui.Controls.resources.dll.so => 315 + i64 u0x8fbf5b0114c6dcef, ; 552: System.Globalization.dll => 42 + i64 u0x8fcc8c2a81f3d9e7, ; 553: Xamarin.KotlinX.Serialization.Core => 292 + i64 u0x90263f8448b8f572, ; 554: lib_System.Diagnostics.TraceSource.dll.so => 33 + i64 u0x903101b46fb73a04, ; 555: _Microsoft.Android.Resource.Designer => 328 + i64 u0x90393bd4865292f3, ; 556: lib_System.IO.Compression.dll.so => 46 + i64 u0x905e2b8e7ae91ae6, ; 557: System.Threading.Tasks.Extensions.dll => 143 + i64 u0x90634f86c5ebe2b5, ; 558: Xamarin.AndroidX.Lifecycle.ViewModel.Android => 252 + i64 u0x907b636704ad79ef, ; 559: lib_Microsoft.Maui.Controls.Xaml.dll.so => 201 + i64 u0x90e9efbfd68593e0, ; 560: lib_Xamarin.AndroidX.Lifecycle.LiveData.dll.so => 243 + i64 u0x91418dc638b29e68, ; 561: lib_Xamarin.AndroidX.CustomView.dll.so => 231 + i64 u0x914647982e998267, ; 562: Microsoft.Extensions.Configuration.Json => 186 + i64 u0x9157bd523cd7ed36, ; 563: lib_System.Text.Json.dll.so => 138 + i64 u0x91a74f07b30d37e2, ; 564: System.Linq.dll => 62 + i64 u0x91cb86ea3b17111d, ; 565: System.ServiceModel.Web => 132 + i64 u0x91fa41a87223399f, ; 566: ca/Microsoft.Maui.Controls.resources.dll => 295 + i64 u0x92054e486c0c7ea7, ; 567: System.IO.FileSystem.DriveInfo => 48 + i64 u0x928614058c40c4cd, ; 568: lib_System.Xml.XPath.XDocument.dll.so => 160 + i64 u0x92b138fffca2b01e, ; 569: lib_Xamarin.AndroidX.Arch.Core.Runtime.dll.so => 217 + i64 u0x92dfc2bfc6c6a888, ; 570: Xamarin.AndroidX.Lifecycle.LiveData => 243 + i64 u0x933da2c779423d68, ; 571: Xamarin.Android.Glide.Annotations => 206 + i64 u0x9388aad9b7ae40ce, ; 572: lib_Xamarin.AndroidX.Lifecycle.Common.dll.so => 241 + i64 u0x93cfa73ab28d6e35, ; 573: ms/Microsoft.Maui.Controls.resources => 311 + i64 u0x941c00d21e5c0679, ; 574: lib_Xamarin.AndroidX.Transition.dll.so => 270 + i64 u0x944077d8ca3c6580, ; 575: System.IO.Compression.dll => 46 + i64 u0x948cffedc8ed7960, ; 576: System.Xml => 164 + i64 u0x94c8990839c4bdb1, ; 577: lib_Xamarin.AndroidX.Interpolator.dll.so => 240 + i64 u0x967fc325e09bfa8c, ; 578: es/Microsoft.Maui.Controls.resources => 300 + i64 u0x9686161486d34b81, ; 579: lib_Xamarin.AndroidX.ExifInterface.dll.so => 237 + i64 u0x9732d8dbddea3d9a, ; 580: id/Microsoft.Maui.Controls.resources => 307 + i64 u0x978be80e5210d31b, ; 581: Microsoft.Maui.Graphics.dll => 204 + i64 u0x97b8c771ea3e4220, ; 582: System.ComponentModel.dll => 18 + i64 u0x97e144c9d3c6976e, ; 583: System.Collections.Concurrent.dll => 8 + i64 u0x984184e3c70d4419, ; 584: GoogleGson => 174 + i64 u0x9843944103683dd3, ; 585: Xamarin.AndroidX.Core.Core.Ktx => 228 + i64 u0x98d720cc4597562c, ; 586: System.Security.Cryptography.OpenSsl => 124 + i64 u0x991d510397f92d9d, ; 587: System.Linq.Expressions => 59 + i64 u0x996ceeb8a3da3d67, ; 588: System.Threading.Overlapped.dll => 141 + i64 u0x99a00ca5270c6878, ; 589: Xamarin.AndroidX.Navigation.Runtime => 258 + i64 u0x99cdc6d1f2d3a72f, ; 590: ko/Microsoft.Maui.Controls.resources.dll => 310 + i64 u0x9a01b1da98b6ee10, ; 591: Xamarin.AndroidX.Lifecycle.Runtime.dll => 247 + i64 u0x9a5ccc274fd6e6ee, ; 592: Jsr305Binding.dll => 279 + i64 u0x9ae6940b11c02876, ; 593: lib_Xamarin.AndroidX.Window.dll.so => 276 + i64 u0x9b211a749105beac, ; 594: System.Transactions.Local => 150 + i64 u0x9b8734714671022d, ; 595: System.Threading.Tasks.Dataflow.dll => 142 + i64 u0x9bc6aea27fbf034f, ; 596: lib_Xamarin.KotlinX.Coroutines.Core.dll.so => 290 + i64 u0x9bd8cc74558ad4c7, ; 597: Xamarin.KotlinX.AtomicFU => 287 + i64 u0x9c244ac7cda32d26, ; 598: System.Security.Cryptography.X509Certificates.dll => 126 + i64 u0x9c465f280cf43733, ; 599: lib_Xamarin.KotlinX.Coroutines.Android.dll.so => 289 + i64 u0x9c8f6872beab6408, ; 600: System.Xml.XPath.XDocument.dll => 160 + i64 u0x9ce01cf91101ae23, ; 601: System.Xml.XmlDocument => 162 + i64 u0x9d128180c81d7ce6, ; 602: Xamarin.AndroidX.CustomView.PoolingContainer => 232 + i64 u0x9d5dbcf5a48583fe, ; 603: lib_Xamarin.AndroidX.Activity.dll.so => 209 + i64 u0x9d74dee1a7725f34, ; 604: Microsoft.Extensions.Configuration.Abstractions.dll => 183 + i64 u0x9e4534b6adaf6e84, ; 605: nl/Microsoft.Maui.Controls.resources => 313 + i64 u0x9e4b95dec42769f7, ; 606: System.Diagnostics.Debug.dll => 26 + i64 u0x9eaf1efdf6f7267e, ; 607: Xamarin.AndroidX.Navigation.Common.dll => 256 + i64 u0x9ef542cf1f78c506, ; 608: Xamarin.AndroidX.Lifecycle.LiveData.Core => 244 + i64 u0x9fbb2961ca18e5c2, ; 609: Microsoft.Extensions.FileProviders.Physical.dll => 192 + i64 u0xa00832eb975f56a8, ; 610: lib_System.Net.dll.so => 82 + i64 u0xa0ad78236b7b267f, ; 611: Xamarin.AndroidX.Window => 276 + i64 u0xa0d8259f4cc284ec, ; 612: lib_System.Security.Cryptography.dll.so => 127 + i64 u0xa0e17ca50c77a225, ; 613: lib_Xamarin.Google.Crypto.Tink.Android.dll.so => 280 + i64 u0xa0ff9b3e34d92f11, ; 614: lib_System.Resources.Writer.dll.so => 101 + i64 u0xa12fbfb4da97d9f3, ; 615: System.Threading.Timer.dll => 148 + i64 u0xa1440773ee9d341e, ; 616: Xamarin.Google.Android.Material => 278 + i64 u0xa1b9d7c27f47219f, ; 617: Xamarin.AndroidX.Navigation.UI.dll => 259 + i64 u0xa2572680829d2c7c, ; 618: System.IO.Pipelines.dll => 54 + i64 u0xa26597e57ee9c7f6, ; 619: System.Xml.XmlDocument.dll => 162 + i64 u0xa308401900e5bed3, ; 620: lib_mscorlib.dll.so => 167 + i64 u0xa395572e7da6c99d, ; 621: lib_System.Security.dll.so => 131 + i64 u0xa3b8104115a36bf6, ; 622: lib_Microsoft.Extensions.FileProviders.Embedded.dll.so => 191 + i64 u0xa3e683f24b43af6f, ; 623: System.Dynamic.Runtime.dll => 37 + i64 u0xa4145becdee3dc4f, ; 624: Xamarin.AndroidX.VectorDrawable.Animated => 272 + i64 u0xa46aa1eaa214539b, ; 625: ko/Microsoft.Maui.Controls.resources => 310 + i64 u0xa4e62983cf1e3674, ; 626: Microsoft.AspNetCore.Components.Forms.dll => 177 + i64 u0xa4edc8f2ceae241a, ; 627: System.Data.Common.dll => 22 + i64 u0xa5494f40f128ce6a, ; 628: System.Runtime.Serialization.Formatters.dll => 112 + i64 u0xa54b74df83dce92b, ; 629: System.Reflection.DispatchProxy => 90 + i64 u0xa5b7152421ed6d98, ; 630: lib_System.IO.FileSystem.Watcher.dll.so => 50 + i64 u0xa5c3844f17b822db, ; 631: lib_System.Linq.Parallel.dll.so => 60 + i64 u0xa5ce5c755bde8cb8, ; 632: lib_System.Security.Cryptography.Csp.dll.so => 122 + i64 u0xa5e599d1e0524750, ; 633: System.Numerics.Vectors.dll => 83 + i64 u0xa5f1ba49b85dd355, ; 634: System.Security.Cryptography.dll => 127 + i64 u0xa61975a5a37873ea, ; 635: lib_System.Xml.XmlSerializer.dll.so => 163 + i64 u0xa6593e21584384d2, ; 636: lib_Jsr305Binding.dll.so => 279 + i64 u0xa66cbee0130865f7, ; 637: lib_WindowsBase.dll.so => 166 + i64 u0xa67dbee13e1df9ca, ; 638: Xamarin.AndroidX.SavedState.dll => 263 + i64 u0xa684b098dd27b296, ; 639: lib_Xamarin.AndroidX.Security.SecurityCrypto.dll.so => 265 + i64 u0xa68a420042bb9b1f, ; 640: Xamarin.AndroidX.DrawerLayout.dll => 233 + i64 u0xa6d26156d1cacc7c, ; 641: Xamarin.Android.Glide.dll => 205 + i64 u0xa75386b5cb9595aa, ; 642: Xamarin.AndroidX.Lifecycle.Runtime.Android => 248 + i64 u0xa763fbb98df8d9fb, ; 643: lib_Microsoft.Win32.Primitives.dll.so => 4 + i64 u0xa78ce3745383236a, ; 644: Xamarin.AndroidX.Lifecycle.Common.Jvm => 242 + i64 u0xa7c31b56b4dc7b33, ; 645: hu/Microsoft.Maui.Controls.resources => 306 + i64 u0xa7eab29ed44b4e7a, ; 646: Mono.Android.Export => 170 + i64 u0xa8195217cbf017b7, ; 647: Microsoft.VisualBasic.Core => 2 + i64 u0xa82fd211eef00a5b, ; 648: Microsoft.Extensions.FileProviders.Physical => 192 + i64 u0xa859a95830f367ff, ; 649: lib_Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll.so => 253 + i64 u0xa8b52f21e0dbe690, ; 650: System.Runtime.Serialization.dll => 116 + i64 u0xa8ee4ed7de2efaee, ; 651: Xamarin.AndroidX.Annotation.dll => 211 + i64 u0xa95590e7c57438a4, ; 652: System.Configuration => 19 + i64 u0xaa2219c8e3449ff5, ; 653: Microsoft.Extensions.Logging.Abstractions => 195 + i64 u0xaa443ac34067eeef, ; 654: System.Private.Xml.dll => 89 + i64 u0xaa52de307ef5d1dd, ; 655: System.Net.Http => 65 + i64 u0xaa9a7b0214a5cc5c, ; 656: System.Diagnostics.StackTrace.dll => 30 + i64 u0xaaaf86367285a918, ; 657: Microsoft.Extensions.DependencyInjection.Abstractions.dll => 188 + i64 u0xaaf84bb3f052a265, ; 658: el/Microsoft.Maui.Controls.resources => 299 + i64 u0xab9af77b5b67a0b8, ; 659: Xamarin.AndroidX.ConstraintLayout.Core => 225 + i64 u0xab9c1b2687d86b0b, ; 660: lib_System.Linq.Expressions.dll.so => 59 + i64 u0xac2af3fa195a15ce, ; 661: System.Runtime.Numerics => 111 + i64 u0xac5376a2a538dc10, ; 662: Xamarin.AndroidX.Lifecycle.LiveData.Core.dll => 244 + i64 u0xac5acae88f60357e, ; 663: System.Diagnostics.Tools.dll => 32 + i64 u0xac79c7e46047ad98, ; 664: System.Security.Principal.Windows.dll => 128 + i64 u0xac98d31068e24591, ; 665: System.Xml.XDocument => 159 + i64 u0xacd46e002c3ccb97, ; 666: ro/Microsoft.Maui.Controls.resources => 317 + i64 u0xacdd9e4180d56dda, ; 667: Xamarin.AndroidX.Concurrent.Futures => 223 + i64 u0xacf42eea7ef9cd12, ; 668: System.Threading.Channels => 140 + i64 u0xad89c07347f1bad6, ; 669: nl/Microsoft.Maui.Controls.resources.dll => 313 + i64 u0xadbb53caf78a79d2, ; 670: System.Web.HttpUtility => 153 + i64 u0xadc90ab061a9e6e4, ; 671: System.ComponentModel.TypeConverter.dll => 17 + i64 u0xadca1b9030b9317e, ; 672: Xamarin.AndroidX.Collection.Ktx => 222 + i64 u0xadd8eda2edf396ad, ; 673: Xamarin.Android.Glide.GifDecoder => 208 + i64 u0xadf4cf30debbeb9a, ; 674: System.Net.ServicePoint.dll => 75 + i64 u0xadf511667bef3595, ; 675: System.Net.Security => 74 + i64 u0xae0aaa94fdcfce0f, ; 676: System.ComponentModel.EventBasedAsync.dll => 15 + i64 u0xae282bcd03739de7, ; 677: Java.Interop => 169 + i64 u0xae53579c90db1107, ; 678: System.ObjectModel.dll => 85 + i64 u0xaec7c0c7e2ed4575, ; 679: lib_Xamarin.KotlinX.AtomicFU.Jvm.dll.so => 288 + i64 u0xaf732d0b2193b8f5, ; 680: System.Security.Cryptography.OpenSsl.dll => 124 + i64 u0xafdb94dbccd9d11c, ; 681: Xamarin.AndroidX.Lifecycle.LiveData.dll => 243 + i64 u0xafe29f45095518e7, ; 682: lib_Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so => 254 + i64 u0xb03ae931fb25607e, ; 683: Xamarin.AndroidX.ConstraintLayout => 224 + i64 u0xb05cc42cd94c6d9d, ; 684: lib-sv-Microsoft.Maui.Controls.resources.dll.so => 320 + i64 u0xb0ac21bec8f428c5, ; 685: Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll => 250 + i64 u0xb0bb43dc52ea59f9, ; 686: System.Diagnostics.Tracing.dll => 34 + i64 u0xb1ccbf6243328d1c, ; 687: Microsoft.AspNetCore.Components => 176 + i64 u0xb1dd05401aa8ee63, ; 688: System.Security.AccessControl => 118 + i64 u0xb220631954820169, ; 689: System.Text.RegularExpressions => 139 + i64 u0xb2376e1dbf8b4ed7, ; 690: System.Security.Cryptography.Csp => 122 + i64 u0xb2a1959fe95c5402, ; 691: lib_System.Runtime.InteropServices.JavaScript.dll.so => 106 + i64 u0xb2a3f67f3bf29fce, ; 692: da/Microsoft.Maui.Controls.resources => 297 + i64 u0xb3874072ee0ecf8c, ; 693: Xamarin.AndroidX.VectorDrawable.Animated.dll => 272 + i64 u0xb3f0a0fcda8d3ebc, ; 694: Xamarin.AndroidX.CardView => 219 + i64 u0xb46be1aa6d4fff93, ; 695: hi/Microsoft.Maui.Controls.resources => 304 + i64 u0xb477491be13109d8, ; 696: ar/Microsoft.Maui.Controls.resources => 294 + i64 u0xb4bd7015ecee9d86, ; 697: System.IO.Pipelines => 54 + i64 u0xb4c53d9749c5f226, ; 698: lib_System.IO.FileSystem.AccessControl.dll.so => 47 + i64 u0xb4ff710863453fda, ; 699: System.Diagnostics.FileVersionInfo.dll => 28 + i64 u0xb5c38bf497a4cfe2, ; 700: lib_System.Threading.Tasks.dll.so => 145 + i64 u0xb5c7fcdafbc67ee4, ; 701: Microsoft.Extensions.Logging.Abstractions.dll => 195 + i64 u0xb5ea31d5244c6626, ; 702: System.Threading.ThreadPool.dll => 147 + i64 u0xb7212c4683a94afe, ; 703: System.Drawing.Primitives => 35 + i64 u0xb7b7753d1f319409, ; 704: sv/Microsoft.Maui.Controls.resources => 320 + i64 u0xb81a2c6e0aee50fe, ; 705: lib_System.Private.CoreLib.dll.so => 173 + i64 u0xb8b0a9b3dfbc5cb7, ; 706: Xamarin.AndroidX.Window.Extensions.Core.Core => 277 + i64 u0xb8c60af47c08d4da, ; 707: System.Net.ServicePoint => 75 + i64 u0xb8e68d20aad91196, ; 708: lib_System.Xml.XPath.dll.so => 161 + i64 u0xb9185c33a1643eed, ; 709: Microsoft.CSharp.dll => 1 + i64 u0xb9b8001adf4ed7cc, ; 710: lib_Xamarin.AndroidX.SlidingPaneLayout.dll.so => 266 + i64 u0xb9f64d3b230def68, ; 711: lib-pt-Microsoft.Maui.Controls.resources.dll.so => 316 + i64 u0xb9fc3c8a556e3691, ; 712: ja/Microsoft.Maui.Controls.resources => 309 + i64 u0xba4670aa94a2b3c6, ; 713: lib_System.Xml.XDocument.dll.so => 159 + i64 u0xba48785529705af9, ; 714: System.Collections.dll => 12 + i64 u0xba965b8c86359996, ; 715: lib_System.Windows.dll.so => 155 + i64 u0xbaf762c4825c14e9, ; 716: Microsoft.AspNetCore.Components.WebView => 179 + i64 u0xbb286883bc35db36, ; 717: System.Transactions.dll => 151 + i64 u0xbb65706fde942ce3, ; 718: System.Net.Sockets => 76 + i64 u0xbba28979413cad9e, ; 719: lib_System.Runtime.CompilerServices.VisualC.dll.so => 103 + i64 u0xbbd180354b67271a, ; 720: System.Runtime.Serialization.Formatters => 112 + i64 u0xbc260cdba33291a3, ; 721: Xamarin.AndroidX.Arch.Core.Common.dll => 216 + i64 u0xbc3c4e8dffea9d4e, ; 722: Microsoft.AspNetCore.Metadata.dll => 181 + i64 u0xbcd36316d29f27b4, ; 723: lib_Microsoft.AspNetCore.Authorization.dll.so => 175 + i64 u0xbd0e2c0d55246576, ; 724: System.Net.Http.dll => 65 + i64 u0xbd3fbd85b9e1cb29, ; 725: lib_System.Net.HttpListener.dll.so => 66 + i64 u0xbd437a2cdb333d0d, ; 726: Xamarin.AndroidX.ViewPager2 => 275 + i64 u0xbd4f572d2bd0a789, ; 727: System.IO.Compression.ZipFile.dll => 45 + i64 u0xbd5d0b88d3d647a5, ; 728: lib_Xamarin.AndroidX.Browser.dll.so => 218 + i64 u0xbd877b14d0b56392, ; 729: System.Runtime.Intrinsics.dll => 109 + i64 u0xbe65a49036345cf4, ; 730: lib_System.Buffers.dll.so => 7 + i64 u0xbee38d4a88835966, ; 731: Xamarin.AndroidX.AppCompat.AppCompatResources => 215 + i64 u0xbef9919db45b4ca7, ; 732: System.IO.Pipes.AccessControl => 55 + i64 u0xbf0fa68611139208, ; 733: lib_Xamarin.AndroidX.Annotation.dll.so => 211 + i64 u0xbfc1e1fb3095f2b3, ; 734: lib_System.Net.Http.Json.dll.so => 64 + i64 u0xc040a4ab55817f58, ; 735: ar/Microsoft.Maui.Controls.resources.dll => 294 + i64 u0xc07cadab29efeba0, ; 736: Xamarin.AndroidX.Core.Core.Ktx.dll => 228 + i64 u0xc0d928351ab5ca77, ; 737: System.Console.dll => 20 + i64 u0xc0f5a221a9383aea, ; 738: System.Runtime.Intrinsics => 109 + i64 u0xc111030af54d7191, ; 739: System.Resources.Writer => 101 + i64 u0xc12b8b3afa48329c, ; 740: lib_System.Linq.dll.so => 62 + i64 u0xc183ca0b74453aa9, ; 741: lib_System.Threading.Tasks.Dataflow.dll.so => 142 + i64 u0xc1ebdc7e6a943450, ; 742: Microsoft.AspNetCore.Authorization.dll => 175 + i64 u0xc1ff9ae3cdb6e1e6, ; 743: Xamarin.AndroidX.Activity.dll => 209 + i64 u0xc26c064effb1dea9, ; 744: System.Buffers.dll => 7 + i64 u0xc28c50f32f81cc73, ; 745: ja/Microsoft.Maui.Controls.resources.dll => 309 + i64 u0xc2902f6cf5452577, ; 746: lib_Mono.Android.Export.dll.so => 170 + i64 u0xc2a3bca55b573141, ; 747: System.IO.FileSystem.Watcher => 50 + i64 u0xc2bcfec99f69365e, ; 748: Xamarin.AndroidX.ViewPager2.dll => 275 + i64 u0xc30b52815b58ac2c, ; 749: lib_System.Runtime.Serialization.Xml.dll.so => 115 + i64 u0xc36d7d89c652f455, ; 750: System.Threading.Overlapped => 141 + i64 u0xc396b285e59e5493, ; 751: GoogleGson.dll => 174 + i64 u0xc3c86c1e5e12f03d, ; 752: WindowsBase => 166 + i64 u0xc421b61fd853169d, ; 753: lib_System.Net.WebSockets.Client.dll.so => 80 + i64 u0xc463e077917aa21d, ; 754: System.Runtime.Serialization.Json => 113 + i64 u0xc4d3858ed4d08512, ; 755: Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll => 254 + i64 u0xc50fded0ded1418c, ; 756: lib_System.ComponentModel.TypeConverter.dll.so => 17 + i64 u0xc519125d6bc8fb11, ; 757: lib_System.Net.Requests.dll.so => 73 + i64 u0xc5293b19e4dc230e, ; 758: Xamarin.AndroidX.Navigation.Fragment => 257 + i64 u0xc5325b2fcb37446f, ; 759: lib_System.Private.Xml.dll.so => 89 + i64 u0xc535cb9a21385d9b, ; 760: lib_Xamarin.Android.Glide.DiskLruCache.dll.so => 207 + i64 u0xc5a0f4b95a699af7, ; 761: lib_System.Private.Uri.dll.so => 87 + i64 u0xc5cdcd5b6277579e, ; 762: lib_System.Security.Cryptography.Algorithms.dll.so => 120 + i64 u0xc5ec286825cb0bf4, ; 763: Xamarin.AndroidX.Tracing.Tracing => 269 + i64 u0xc659b586d4c229e2, ; 764: Microsoft.Extensions.Configuration.FileExtensions.dll => 185 + i64 u0xc6706bc8aa7fe265, ; 765: Xamarin.AndroidX.Annotation.Jvm => 213 + i64 u0xc7c01e7d7c93a110, ; 766: System.Text.Encoding.Extensions.dll => 135 + i64 u0xc7ce851898a4548e, ; 767: lib_System.Web.HttpUtility.dll.so => 153 + i64 u0xc809d4089d2556b2, ; 768: System.Runtime.InteropServices.JavaScript.dll => 106 + i64 u0xc858a28d9ee5a6c5, ; 769: lib_System.Collections.Specialized.dll.so => 11 + i64 u0xc8ac7c6bf1c2ec51, ; 770: System.Reflection.DispatchProxy.dll => 90 + i64 u0xc9c62c8f354ac568, ; 771: lib_System.Diagnostics.TextWriterTraceListener.dll.so => 31 + i64 u0xca3110fea81c8916, ; 772: Microsoft.AspNetCore.Components.Web.dll => 178 + i64 u0xca3a723e7342c5b6, ; 773: lib-tr-Microsoft.Maui.Controls.resources.dll.so => 322 + i64 u0xca5801070d9fccfb, ; 774: System.Text.Encoding => 136 + i64 u0xcab3493c70141c2d, ; 775: pl/Microsoft.Maui.Controls.resources => 314 + i64 u0xcab69b9a31439815, ; 776: lib_Xamarin.Google.ErrorProne.TypeAnnotations.dll.so => 282 + i64 u0xcacfddc9f7c6de76, ; 777: ro/Microsoft.Maui.Controls.resources.dll => 317 + i64 u0xcadbc92899a777f0, ; 778: Xamarin.AndroidX.Startup.StartupRuntime => 267 + i64 u0xcba1cb79f45292b5, ; 779: Xamarin.Android.Glide.GifDecoder.dll => 208 + i64 u0xcbb5f80c7293e696, ; 780: lib_System.Globalization.Calendars.dll.so => 40 + i64 u0xcbd4fdd9cef4a294, ; 781: lib__Microsoft.Android.Resource.Designer.dll.so => 328 + i64 u0xcc15da1e07bbd994, ; 782: Xamarin.AndroidX.SlidingPaneLayout => 266 + i64 u0xcc2876b32ef2794c, ; 783: lib_System.Text.RegularExpressions.dll.so => 139 + i64 u0xcc5c3bb714c4561e, ; 784: Xamarin.KotlinX.Coroutines.Core.Jvm.dll => 291 + i64 u0xcc76886e09b88260, ; 785: Xamarin.KotlinX.Serialization.Core.Jvm.dll => 293 + i64 u0xcc9fa2923aa1c9ef, ; 786: System.Diagnostics.Contracts.dll => 25 + i64 u0xccf25c4b634ccd3a, ; 787: zh-Hans/Microsoft.Maui.Controls.resources.dll => 326 + i64 u0xcd10a42808629144, ; 788: System.Net.Requests => 73 + i64 u0xcdca1b920e9f53ba, ; 789: Xamarin.AndroidX.Interpolator => 240 + i64 u0xcdd0c48b6937b21c, ; 790: Xamarin.AndroidX.SwipeRefreshLayout => 268 + i64 u0xcf23d8093f3ceadf, ; 791: System.Diagnostics.DiagnosticSource.dll => 27 + i64 u0xcf5ff6b6b2c4c382, ; 792: System.Net.Mail.dll => 67 + i64 u0xcf8fc898f98b0d34, ; 793: System.Private.Xml.Linq => 88 + i64 u0xd04b5f59ed596e31, ; 794: System.Reflection.Metadata.dll => 95 + i64 u0xd063299fcfc0c93f, ; 795: lib_System.Runtime.Serialization.Json.dll.so => 113 + i64 u0xd0de8a113e976700, ; 796: System.Diagnostics.TextWriterTraceListener => 31 + i64 u0xd0fc33d5ae5d4cb8, ; 797: System.Runtime.Extensions => 104 + i64 u0xd1194e1d8a8de83c, ; 798: lib_Xamarin.AndroidX.Lifecycle.Common.Jvm.dll.so => 242 + i64 u0xd12beacdfc14f696, ; 799: System.Dynamic.Runtime => 37 + i64 u0xd198e7ce1b6a8344, ; 800: System.Net.Quic.dll => 72 + i64 u0xd2505d8abeed6983, ; 801: lib_Microsoft.AspNetCore.Components.Web.dll.so => 178 + i64 u0xd3144156a3727ebe, ; 802: Xamarin.Google.Guava.ListenableFuture => 283 + i64 u0xd333d0af9e423810, ; 803: System.Runtime.InteropServices => 108 + i64 u0xd33a415cb4278969, ; 804: System.Security.Cryptography.Encoding.dll => 123 + i64 u0xd3426d966bb704f5, ; 805: Xamarin.AndroidX.AppCompat.AppCompatResources.dll => 215 + i64 u0xd3651b6fc3125825, ; 806: System.Private.Uri.dll => 87 + i64 u0xd373685349b1fe8b, ; 807: Microsoft.Extensions.Logging.dll => 194 + i64 u0xd3801faafafb7698, ; 808: System.Private.DataContractSerialization.dll => 86 + i64 u0xd3e4c8d6a2d5d470, ; 809: it/Microsoft.Maui.Controls.resources => 308 + i64 u0xd3edcc1f25459a50, ; 810: System.Reflection.Emit => 93 + i64 u0xd4645626dffec99d, ; 811: lib_Microsoft.Extensions.DependencyInjection.Abstractions.dll.so => 188 + i64 u0xd46b4a8758d1f3ee, ; 812: Microsoft.Extensions.FileProviders.Composite.dll => 190 + i64 u0xd4fa0abb79079ea9, ; 813: System.Security.Principal.dll => 129 + i64 u0xd5507e11a2b2839f, ; 814: Xamarin.AndroidX.Lifecycle.ViewModelSavedState => 254 + i64 u0xd5d04bef8478ea19, ; 815: Xamarin.AndroidX.Tracing.Tracing.dll => 269 + i64 u0xd60815f26a12e140, ; 816: Microsoft.Extensions.Logging.Debug.dll => 196 + i64 u0xd6694f8359737e4e, ; 817: Xamarin.AndroidX.SavedState => 263 + i64 u0xd6949e129339eae5, ; 818: lib_Xamarin.AndroidX.Core.Core.Ktx.dll.so => 228 + i64 u0xd6d21782156bc35b, ; 819: Xamarin.AndroidX.SwipeRefreshLayout.dll => 268 + i64 u0xd6de019f6af72435, ; 820: Xamarin.AndroidX.ConstraintLayout.Core.dll => 225 + i64 u0xd6f697a581fc6fe3, ; 821: Xamarin.Google.ErrorProne.TypeAnnotations.dll => 282 + i64 u0xd70956d1e6deefb9, ; 822: Jsr305Binding => 279 + i64 u0xd72329819cbbbc44, ; 823: lib_Microsoft.Extensions.Configuration.Abstractions.dll.so => 183 + i64 u0xd72c760af136e863, ; 824: System.Xml.XmlSerializer.dll => 163 + i64 u0xd753f071e44c2a03, ; 825: lib_System.Security.SecureString.dll.so => 130 + i64 u0xd7b3764ada9d341d, ; 826: lib_Microsoft.Extensions.Logging.Abstractions.dll.so => 195 + i64 u0xd7f0088bc5ad71f2, ; 827: Xamarin.AndroidX.VersionedParcelable => 273 + i64 u0xd8fb25e28ae30a12, ; 828: Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll => 260 + i64 u0xda1dfa4c534a9251, ; 829: Microsoft.Extensions.DependencyInjection => 187 + i64 u0xdad05a11827959a3, ; 830: System.Collections.NonGeneric.dll => 10 + i64 u0xdaefdfe71aa53cf9, ; 831: System.IO.FileSystem.Primitives => 49 + i64 u0xdb5383ab5865c007, ; 832: lib-vi-Microsoft.Maui.Controls.resources.dll.so => 324 + i64 u0xdb58816721c02a59, ; 833: lib_System.Reflection.Emit.ILGeneration.dll.so => 91 + i64 u0xdbeda89f832aa805, ; 834: vi/Microsoft.Maui.Controls.resources.dll => 324 + i64 u0xdbf2a779fbc3ac31, ; 835: System.Transactions.Local.dll => 150 + i64 u0xdbf9607a441b4505, ; 836: System.Linq => 62 + i64 u0xdbfc90157a0de9b0, ; 837: lib_System.Text.Encoding.dll.so => 136 + i64 u0xdc4ae0a3cbe57518, ; 838: clipiFrontC => 0 + i64 u0xdc75032002d1a212, ; 839: lib_System.Transactions.Local.dll.so => 150 + i64 u0xdca8be7403f92d4f, ; 840: lib_System.Linq.Queryable.dll.so => 61 + i64 u0xdce2c53525640bf3, ; 841: Microsoft.Extensions.Logging => 194 + i64 u0xdd2b722d78ef5f43, ; 842: System.Runtime.dll => 117 + i64 u0xdd67031857c72f96, ; 843: lib_System.Text.Encodings.Web.dll.so => 137 + i64 u0xdd70765ad6162057, ; 844: Xamarin.JSpecify => 285 + i64 u0xdd92e229ad292030, ; 845: System.Numerics.dll => 84 + i64 u0xdde30e6b77aa6f6c, ; 846: lib-zh-Hans-Microsoft.Maui.Controls.resources.dll.so => 326 + i64 u0xde110ae80fa7c2e2, ; 847: System.Xml.XDocument.dll => 159 + i64 u0xde4726fcdf63a198, ; 848: Xamarin.AndroidX.Transition => 270 + i64 u0xde572c2b2fb32f93, ; 849: lib_System.Threading.Tasks.Extensions.dll.so => 143 + i64 u0xde8769ebda7d8647, ; 850: hr/Microsoft.Maui.Controls.resources.dll => 305 + i64 u0xdee075f3477ef6be, ; 851: Xamarin.AndroidX.ExifInterface.dll => 237 + i64 u0xdf4b773de8fb1540, ; 852: System.Net.dll => 82 + i64 u0xdfa254ebb4346068, ; 853: System.Net.Ping => 70 + i64 u0xe0142572c095a480, ; 854: Xamarin.AndroidX.AppCompat.dll => 214 + i64 u0xe021eaa401792a05, ; 855: System.Text.Encoding.dll => 136 + i64 u0xe02f89350ec78051, ; 856: Xamarin.AndroidX.CoordinatorLayout.dll => 226 + i64 u0xe0496b9d65ef5474, ; 857: Xamarin.Android.Glide.DiskLruCache.dll => 207 + i64 u0xe10b760bb1462e7a, ; 858: lib_System.Security.Cryptography.Primitives.dll.so => 125 + i64 u0xe192a588d4410686, ; 859: lib_System.IO.Pipelines.dll.so => 54 + i64 u0xe1a08bd3fa539e0d, ; 860: System.Runtime.Loader => 110 + i64 u0xe1a77eb8831f7741, ; 861: System.Security.SecureString.dll => 130 + i64 u0xe1b52f9f816c70ef, ; 862: System.Private.Xml.Linq.dll => 88 + i64 u0xe1e199c8ab02e356, ; 863: System.Data.DataSetExtensions.dll => 23 + i64 u0xe1ecfdb7fff86067, ; 864: System.Net.Security.dll => 74 + i64 u0xe2252a80fe853de4, ; 865: lib_System.Security.Principal.dll.so => 129 + i64 u0xe22fa4c9c645db62, ; 866: System.Diagnostics.TextWriterTraceListener.dll => 31 + i64 u0xe2420585aeceb728, ; 867: System.Net.Requests.dll => 73 + i64 u0xe26692647e6bcb62, ; 868: Xamarin.AndroidX.Lifecycle.Runtime.Ktx => 249 + i64 u0xe29b73bc11392966, ; 869: lib-id-Microsoft.Maui.Controls.resources.dll.so => 307 + i64 u0xe2ad448dee50fbdf, ; 870: System.Xml.Serialization => 158 + i64 u0xe2d920f978f5d85c, ; 871: System.Data.DataSetExtensions => 23 + i64 u0xe2e426c7714fa0bc, ; 872: Microsoft.Win32.Primitives.dll => 4 + i64 u0xe31089e70e4e84ee, ; 873: Microsoft.AspNetCore.Components.WebView.Maui => 180 + i64 u0xe332bacb3eb4a806, ; 874: Mono.Android.Export.dll => 170 + i64 u0xe3811d68d4fe8463, ; 875: pt-BR/Microsoft.Maui.Controls.resources.dll => 315 + i64 u0xe3b7cbae5ad66c75, ; 876: lib_System.Security.Cryptography.Encoding.dll.so => 123 + i64 u0xe4292b48f3224d5b, ; 877: lib_Xamarin.AndroidX.Core.ViewTree.dll.so => 229 + i64 u0xe494f7ced4ecd10a, ; 878: hu/Microsoft.Maui.Controls.resources.dll => 306 + i64 u0xe4a9b1e40d1e8917, ; 879: lib-fi-Microsoft.Maui.Controls.resources.dll.so => 301 + i64 u0xe4f74a0b5bf9703f, ; 880: System.Runtime.Serialization.Primitives => 114 + i64 u0xe5434e8a119ceb69, ; 881: lib_Mono.Android.dll.so => 172 + i64 u0xe55703b9ce5c038a, ; 882: System.Diagnostics.Tools => 32 + i64 u0xe57013c8afc270b5, ; 883: Microsoft.VisualBasic => 3 + i64 u0xe62913cc36bc07ec, ; 884: System.Xml.dll => 164 + i64 u0xe7bea09c4900a191, ; 885: Xamarin.AndroidX.VectorDrawable.dll => 271 + i64 u0xe7e03cc18dcdeb49, ; 886: lib_System.Diagnostics.StackTrace.dll.so => 30 + i64 u0xe7e147ff99a7a380, ; 887: lib_System.Configuration.dll.so => 19 + i64 u0xe86b0df4ba9e5db8, ; 888: lib_Xamarin.AndroidX.Lifecycle.Runtime.Android.dll.so => 248 + i64 u0xe896622fe0902957, ; 889: System.Reflection.Emit.dll => 93 + i64 u0xe89a2a9ef110899b, ; 890: System.Drawing.dll => 36 + i64 u0xe8c5f8c100b5934b, ; 891: Microsoft.Win32.Registry => 5 + i64 u0xe957c3976986ab72, ; 892: lib_Xamarin.AndroidX.Window.Extensions.Core.Core.dll.so => 277 + i64 u0xe9772100456fb4b4, ; 893: Microsoft.AspNetCore.Components.dll => 176 + i64 u0xe98163eb702ae5c5, ; 894: Xamarin.AndroidX.Arch.Core.Runtime => 217 + i64 u0xe994f23ba4c143e5, ; 895: Xamarin.KotlinX.Coroutines.Android => 289 + i64 u0xe9b9c8c0458fd92a, ; 896: System.Windows => 155 + i64 u0xe9d166d87a7f2bdb, ; 897: lib_Xamarin.AndroidX.Startup.StartupRuntime.dll.so => 267 + i64 u0xea154e342c6ac70f, ; 898: Microsoft.Extensions.FileProviders.Embedded.dll => 191 + i64 u0xea5a4efc2ad81d1b, ; 899: Xamarin.Google.ErrorProne.Annotations => 281 + i64 u0xeb2313fe9d65b785, ; 900: Xamarin.AndroidX.ConstraintLayout.dll => 224 + i64 u0xec8abb68d340aac6, ; 901: Microsoft.AspNetCore.Authorization => 175 + i64 u0xed19c616b3fcb7eb, ; 902: Xamarin.AndroidX.VersionedParcelable.dll => 273 + i64 u0xedc4817167106c23, ; 903: System.Net.Sockets.dll => 76 + i64 u0xedc632067fb20ff3, ; 904: System.Memory.dll => 63 + i64 u0xedc8e4ca71a02a8b, ; 905: Xamarin.AndroidX.Navigation.Runtime.dll => 258 + i64 u0xee81f5b3f1c4f83b, ; 906: System.Threading.ThreadPool => 147 + i64 u0xeeb7ebb80150501b, ; 907: lib_Xamarin.AndroidX.Collection.Jvm.dll.so => 221 + i64 u0xeefc635595ef57f0, ; 908: System.Security.Cryptography.Cng => 121 + i64 u0xef03b1b5a04e9709, ; 909: System.Text.Encoding.CodePages.dll => 134 + i64 u0xef602c523fe2e87a, ; 910: lib_Xamarin.Google.Guava.ListenableFuture.dll.so => 283 + i64 u0xef72742e1bcca27a, ; 911: Microsoft.Maui.Essentials.dll => 203 + i64 u0xefd1e0c4e5c9b371, ; 912: System.Resources.ResourceManager.dll => 100 + i64 u0xefe8f8d5ed3c72ea, ; 913: System.Formats.Tar.dll => 39 + i64 u0xefec0b7fdc57ec42, ; 914: Xamarin.AndroidX.Activity => 209 + i64 u0xf00c29406ea45e19, ; 915: es/Microsoft.Maui.Controls.resources.dll => 300 + i64 u0xf09e47b6ae914f6e, ; 916: System.Net.NameResolution => 68 + i64 u0xf0ac2b489fed2e35, ; 917: lib_System.Diagnostics.Debug.dll.so => 26 + i64 u0xf0bb49dadd3a1fe1, ; 918: lib_System.Net.ServicePoint.dll.so => 75 + i64 u0xf0de2537ee19c6ca, ; 919: lib_System.Net.WebHeaderCollection.dll.so => 78 + i64 u0xf1138779fa181c68, ; 920: lib_Xamarin.AndroidX.Lifecycle.Runtime.dll.so => 247 + i64 u0xf11b621fc87b983f, ; 921: Microsoft.Maui.Controls.Xaml.dll => 201 + i64 u0xf161f4f3c3b7e62c, ; 922: System.Data => 24 + i64 u0xf16eb650d5a464bc, ; 923: System.ValueTuple => 152 + i64 u0xf1c4b4005493d871, ; 924: System.Formats.Asn1.dll => 38 + i64 u0xf238bd79489d3a96, ; 925: lib-nl-Microsoft.Maui.Controls.resources.dll.so => 313 + i64 u0xf2feea356ba760af, ; 926: Xamarin.AndroidX.Arch.Core.Runtime.dll => 217 + i64 u0xf300e085f8acd238, ; 927: lib_System.ServiceProcess.dll.so => 133 + i64 u0xf34e52b26e7e059d, ; 928: System.Runtime.CompilerServices.VisualC.dll => 103 + i64 u0xf37221fda4ef8830, ; 929: lib_Xamarin.Google.Android.Material.dll.so => 278 + i64 u0xf3ad9b8fb3eefd12, ; 930: lib_System.IO.UnmanagedMemoryStream.dll.so => 57 + i64 u0xf3ddfe05336abf29, ; 931: System => 165 + i64 u0xf408654b2a135055, ; 932: System.Reflection.Emit.ILGeneration.dll => 91 + i64 u0xf4103170a1de5bd0, ; 933: System.Linq.Queryable.dll => 61 + i64 u0xf42d20c23173d77c, ; 934: lib_System.ServiceModel.Web.dll.so => 132 + i64 u0xf4c1dd70a5496a17, ; 935: System.IO.Compression => 46 + i64 u0xf4ecf4b9afc64781, ; 936: System.ServiceProcess.dll => 133 + i64 u0xf4eeeaa566e9b970, ; 937: lib_Xamarin.AndroidX.CustomView.PoolingContainer.dll.so => 232 + i64 u0xf518f63ead11fcd1, ; 938: System.Threading.Tasks => 145 + i64 u0xf5fc7602fe27b333, ; 939: System.Net.WebHeaderCollection => 78 + i64 u0xf6077741019d7428, ; 940: Xamarin.AndroidX.CoordinatorLayout => 226 + i64 u0xf6742cbf457c450b, ; 941: Xamarin.AndroidX.Lifecycle.Runtime.Android.dll => 248 + i64 u0xf6de7fa3776f8927, ; 942: lib_Microsoft.Extensions.Configuration.Json.dll.so => 186 + i64 u0xf70c0a7bf8ccf5af, ; 943: System.Web => 154 + i64 u0xf77b20923f07c667, ; 944: de/Microsoft.Maui.Controls.resources.dll => 298 + i64 u0xf7e2cac4c45067b3, ; 945: lib_System.Numerics.Vectors.dll.so => 83 + i64 u0xf7e74930e0e3d214, ; 946: zh-HK/Microsoft.Maui.Controls.resources.dll => 325 + i64 u0xf84773b5c81e3cef, ; 947: lib-uk-Microsoft.Maui.Controls.resources.dll.so => 323 + i64 u0xf8aac5ea82de1348, ; 948: System.Linq.Queryable => 61 + i64 u0xf8b77539b362d3ba, ; 949: lib_System.Reflection.Primitives.dll.so => 96 + i64 u0xf8e045dc345b2ea3, ; 950: lib_Xamarin.AndroidX.RecyclerView.dll.so => 261 + i64 u0xf915dc29808193a1, ; 951: System.Web.HttpUtility.dll => 153 + i64 u0xf96c777a2a0686f4, ; 952: hi/Microsoft.Maui.Controls.resources.dll => 304 + i64 u0xf9be54c8bcf8ff3b, ; 953: System.Security.AccessControl.dll => 118 + i64 u0xf9eec5bb3a6aedc6, ; 954: Microsoft.Extensions.Options => 197 + i64 u0xfa0e82300e67f913, ; 955: lib_System.AppContext.dll.so => 6 + i64 u0xfa2fdb27e8a2c8e8, ; 956: System.ComponentModel.EventBasedAsync => 15 + i64 u0xfa3f278f288b0e84, ; 957: lib_System.Net.Security.dll.so => 74 + i64 u0xfa504dfa0f097d72, ; 958: Microsoft.Extensions.FileProviders.Abstractions.dll => 189 + i64 u0xfa5ed7226d978949, ; 959: lib-ar-Microsoft.Maui.Controls.resources.dll.so => 294 + i64 u0xfa645d91e9fc4cba, ; 960: System.Threading.Thread => 146 + i64 u0xfad4d2c770e827f9, ; 961: lib_System.IO.IsolatedStorage.dll.so => 52 + i64 u0xfb06dd2338e6f7c4, ; 962: System.Net.Ping.dll => 70 + i64 u0xfb087abe5365e3b7, ; 963: lib_System.Data.DataSetExtensions.dll.so => 23 + i64 u0xfb846e949baff5ea, ; 964: System.Xml.Serialization.dll => 158 + i64 u0xfbad3e4ce4b98145, ; 965: System.Security.Cryptography.X509Certificates => 126 + i64 u0xfbf0a31c9fc34bc4, ; 966: lib_System.Net.Http.dll.so => 65 + i64 u0xfc6b7527cc280b3f, ; 967: lib_System.Runtime.Serialization.Formatters.dll.so => 112 + i64 u0xfc719aec26adf9d9, ; 968: Xamarin.AndroidX.Navigation.Fragment.dll => 257 + i64 u0xfc82690c2fe2735c, ; 969: Xamarin.AndroidX.Lifecycle.Process.dll => 246 + i64 u0xfc93fc307d279893, ; 970: System.IO.Pipes.AccessControl.dll => 55 + i64 u0xfcd302092ada6328, ; 971: System.IO.MemoryMappedFiles.dll => 53 + i64 u0xfd22f00870e40ae0, ; 972: lib_Xamarin.AndroidX.DrawerLayout.dll.so => 233 + i64 u0xfd2e866c678cac90, ; 973: lib_Microsoft.AspNetCore.Components.WebView.Maui.dll.so => 180 + i64 u0xfd49b3c1a76e2748, ; 974: System.Runtime.InteropServices.RuntimeInformation => 107 + i64 u0xfd536c702f64dc47, ; 975: System.Text.Encoding.Extensions => 135 + i64 u0xfd583f7657b6a1cb, ; 976: Xamarin.AndroidX.Fragment => 238 + i64 u0xfd8dd91a2c26bd5d, ; 977: Xamarin.AndroidX.Lifecycle.Runtime => 247 + i64 u0xfda36abccf05cf5c, ; 978: System.Net.WebSockets.Client => 80 + i64 u0xfddbe9695626a7f5, ; 979: Xamarin.AndroidX.Lifecycle.Common => 241 + i64 u0xfe9856c3af9365ab, ; 980: lib_Microsoft.Extensions.Configuration.FileExtensions.dll.so => 185 + i64 u0xfeae9952cf03b8cb, ; 981: tr/Microsoft.Maui.Controls.resources => 322 + i64 u0xfebe1950717515f9, ; 982: Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll => 245 + i64 u0xff270a55858bac8d, ; 983: System.Security.Principal => 129 + i64 u0xff96d83d336c675e, ; 984: clipiFrontC.dll => 0 + i64 u0xff9b54613e0d2cc8, ; 985: System.Net.Http.Json => 64 + i64 u0xffdb7a971be4ec73 ; 986: System.ValueTuple.dll => 152 +], align 16 + +@assembly_image_cache_indices = dso_local local_unnamed_addr constant [987 x i32] [ + i32 42, i32 290, i32 268, i32 13, i32 258, i32 105, i32 171, i32 48, + i32 214, i32 7, i32 86, i32 318, i32 296, i32 324, i32 234, i32 71, + i32 261, i32 12, i32 202, i32 102, i32 325, i32 156, i32 19, i32 239, + i32 221, i32 176, i32 161, i32 236, i32 271, i32 167, i32 318, i32 10, + i32 196, i32 272, i32 96, i32 232, i32 233, i32 13, i32 197, i32 10, + i32 127, i32 95, i32 140, i32 39, i32 319, i32 293, i32 274, i32 315, + i32 172, i32 208, i32 5, i32 203, i32 67, i32 265, i32 130, i32 264, + i32 235, i32 68, i32 222, i32 66, i32 57, i32 231, i32 52, i32 43, + i32 125, i32 67, i32 81, i32 249, i32 158, i32 92, i32 99, i32 261, + i32 141, i32 151, i32 218, i32 302, i32 162, i32 169, i32 303, i32 188, + i32 81, i32 285, i32 222, i32 4, i32 5, i32 51, i32 101, i32 56, + i32 120, i32 98, i32 168, i32 118, i32 290, i32 21, i32 306, i32 137, + i32 97, i32 293, i32 77, i32 312, i32 267, i32 119, i32 8, i32 165, + i32 321, i32 70, i32 207, i32 177, i32 250, i32 262, i32 192, i32 171, + i32 145, i32 40, i32 265, i32 47, i32 30, i32 259, i32 310, i32 144, + i32 197, i32 163, i32 28, i32 84, i32 269, i32 77, i32 43, i32 29, + i32 42, i32 103, i32 117, i32 212, i32 45, i32 91, i32 321, i32 56, + i32 148, i32 146, i32 100, i32 49, i32 20, i32 227, i32 114, i32 205, + i32 302, i32 280, i32 286, i32 198, i32 94, i32 58, i32 307, i32 305, + i32 81, i32 280, i32 169, i32 26, i32 71, i32 260, i32 237, i32 323, + i32 69, i32 33, i32 301, i32 14, i32 139, i32 38, i32 327, i32 193, + i32 223, i32 314, i32 134, i32 92, i32 88, i32 149, i32 320, i32 24, + i32 138, i32 57, i32 51, i32 299, i32 199, i32 29, i32 157, i32 34, + i32 164, i32 238, i32 52, i32 191, i32 328, i32 276, i32 90, i32 282, + i32 219, i32 35, i32 302, i32 157, i32 193, i32 9, i32 300, i32 76, + i32 55, i32 190, i32 202, i32 296, i32 200, i32 13, i32 275, i32 182, + i32 216, i32 109, i32 253, i32 32, i32 104, i32 84, i32 92, i32 53, + i32 96, i32 284, i32 58, i32 9, i32 102, i32 231, i32 68, i32 274, + i32 295, i32 189, i32 125, i32 262, i32 116, i32 135, i32 199, i32 126, + i32 106, i32 286, i32 131, i32 218, i32 283, i32 147, i32 156, i32 239, + i32 227, i32 185, i32 234, i32 262, i32 97, i32 24, i32 179, i32 266, + i32 143, i32 256, i32 3, i32 167, i32 215, i32 100, i32 161, i32 99, + i32 229, i32 25, i32 93, i32 168, i32 172, i32 210, i32 3, i32 314, + i32 236, i32 1, i32 114, i32 286, i32 239, i32 246, i32 33, i32 6, + i32 318, i32 156, i32 316, i32 53, i32 85, i32 273, i32 259, i32 44, + i32 245, i32 104, i32 47, i32 138, i32 64, i32 255, i32 69, i32 80, + i32 59, i32 89, i32 154, i32 216, i32 133, i32 110, i32 308, i32 255, + i32 199, i32 260, i32 171, i32 134, i32 140, i32 40, i32 295, i32 184, + i32 200, i32 60, i32 184, i32 252, i32 79, i32 25, i32 36, i32 99, + i32 249, i32 71, i32 22, i32 227, i32 204, i32 319, i32 121, i32 69, + i32 107, i32 325, i32 119, i32 117, i32 241, i32 242, i32 11, i32 2, + i32 124, i32 115, i32 142, i32 41, i32 87, i32 211, i32 173, i32 27, + i32 148, i32 184, i32 309, i32 187, i32 281, i32 210, i32 1, i32 212, + i32 44, i32 226, i32 149, i32 18, i32 86, i32 297, i32 41, i32 245, + i32 220, i32 250, i32 94, i32 194, i32 28, i32 41, i32 78, i32 180, + i32 235, i32 223, i32 144, i32 108, i32 221, i32 11, i32 105, i32 137, + i32 16, i32 122, i32 66, i32 157, i32 22, i32 299, i32 292, i32 102, + i32 187, i32 291, i32 63, i32 58, i32 201, i32 298, i32 110, i32 173, + i32 289, i32 9, i32 278, i32 120, i32 98, i32 105, i32 253, i32 200, + i32 111, i32 213, i32 49, i32 20, i32 252, i32 230, i32 72, i32 225, + i32 155, i32 39, i32 297, i32 181, i32 35, i32 287, i32 38, i32 303, + i32 0, i32 277, i32 108, i32 312, i32 21, i32 284, i32 251, i32 204, + i32 15, i32 198, i32 79, i32 79, i32 230, i32 198, i32 257, i32 264, + i32 152, i32 21, i32 202, i32 296, i32 50, i32 51, i32 322, i32 312, + i32 94, i32 206, i32 308, i32 16, i32 229, i32 123, i32 305, i32 160, + i32 45, i32 281, i32 174, i32 116, i32 63, i32 166, i32 182, i32 14, + i32 263, i32 111, i32 213, i32 60, i32 288, i32 186, i32 121, i32 311, + i32 2, i32 321, i32 238, i32 251, i32 287, i32 285, i32 179, i32 251, + i32 6, i32 220, i32 301, i32 234, i32 17, i32 319, i32 298, i32 77, + i32 224, i32 181, i32 131, i32 284, i32 311, i32 177, i32 83, i32 196, + i32 12, i32 34, i32 119, i32 292, i32 246, i32 236, i32 85, i32 205, + i32 18, i32 274, i32 183, i32 244, i32 72, i32 95, i32 178, i32 165, + i32 240, i32 82, i32 327, i32 214, i32 219, i32 288, i32 154, i32 36, + i32 151, i32 323, i32 326, i32 190, i32 144, i32 56, i32 113, i32 220, + i32 271, i32 270, i32 37, i32 327, i32 182, i32 115, i32 193, i32 212, + i32 14, i32 206, i32 146, i32 43, i32 203, i32 210, i32 98, i32 291, + i32 168, i32 16, i32 48, i32 107, i32 97, i32 255, i32 27, i32 128, + i32 29, i32 303, i32 189, i32 264, i32 128, i32 44, i32 230, i32 235, + i32 149, i32 8, i32 256, i32 304, i32 317, i32 316, i32 132, i32 315, + i32 42, i32 292, i32 33, i32 328, i32 46, i32 143, i32 252, i32 201, + i32 243, i32 231, i32 186, i32 138, i32 62, i32 132, i32 295, i32 48, + i32 160, i32 217, i32 243, i32 206, i32 241, i32 311, i32 270, i32 46, + i32 164, i32 240, i32 300, i32 237, i32 307, i32 204, i32 18, i32 8, + i32 174, i32 228, i32 124, i32 59, i32 141, i32 258, i32 310, i32 247, + i32 279, i32 276, i32 150, i32 142, i32 290, i32 287, i32 126, i32 289, + i32 160, i32 162, i32 232, i32 209, i32 183, i32 313, i32 26, i32 256, + i32 244, i32 192, i32 82, i32 276, i32 127, i32 280, i32 101, i32 148, + i32 278, i32 259, i32 54, i32 162, i32 167, i32 131, i32 191, i32 37, + i32 272, i32 310, i32 177, i32 22, i32 112, i32 90, i32 50, i32 60, + i32 122, i32 83, i32 127, i32 163, i32 279, i32 166, i32 263, i32 265, + i32 233, i32 205, i32 248, i32 4, i32 242, i32 306, i32 170, i32 2, + i32 192, i32 253, i32 116, i32 211, i32 19, i32 195, i32 89, i32 65, + i32 30, i32 188, i32 299, i32 225, i32 59, i32 111, i32 244, i32 32, + i32 128, i32 159, i32 317, i32 223, i32 140, i32 313, i32 153, i32 17, + i32 222, i32 208, i32 75, i32 74, i32 15, i32 169, i32 85, i32 288, + i32 124, i32 243, i32 254, i32 224, i32 320, i32 250, i32 34, i32 176, + i32 118, i32 139, i32 122, i32 106, i32 297, i32 272, i32 219, i32 304, + i32 294, i32 54, i32 47, i32 28, i32 145, i32 195, i32 147, i32 35, + i32 320, i32 173, i32 277, i32 75, i32 161, i32 1, i32 266, i32 316, + i32 309, i32 159, i32 12, i32 155, i32 179, i32 151, i32 76, i32 103, + i32 112, i32 216, i32 181, i32 175, i32 65, i32 66, i32 275, i32 45, + i32 218, i32 109, i32 7, i32 215, i32 55, i32 211, i32 64, i32 294, + i32 228, i32 20, i32 109, i32 101, i32 62, i32 142, i32 175, i32 209, + i32 7, i32 309, i32 170, i32 50, i32 275, i32 115, i32 141, i32 174, + i32 166, i32 80, i32 113, i32 254, i32 17, i32 73, i32 257, i32 89, + i32 207, i32 87, i32 120, i32 269, i32 185, i32 213, i32 135, i32 153, + i32 106, i32 11, i32 90, i32 31, i32 178, i32 322, i32 136, i32 314, + i32 282, i32 317, i32 267, i32 208, i32 40, i32 328, i32 266, i32 139, + i32 291, i32 293, i32 25, i32 326, i32 73, i32 240, i32 268, i32 27, + i32 67, i32 88, i32 95, i32 113, i32 31, i32 104, i32 242, i32 37, + i32 72, i32 178, i32 283, i32 108, i32 123, i32 215, i32 87, i32 194, + i32 86, i32 308, i32 93, i32 188, i32 190, i32 129, i32 254, i32 269, + i32 196, i32 263, i32 228, i32 268, i32 225, i32 282, i32 279, i32 183, + i32 163, i32 130, i32 195, i32 273, i32 260, i32 187, i32 10, i32 49, + i32 324, i32 91, i32 324, i32 150, i32 62, i32 136, i32 0, i32 150, + i32 61, i32 194, i32 117, i32 137, i32 285, i32 84, i32 326, i32 159, + i32 270, i32 143, i32 305, i32 237, i32 82, i32 70, i32 214, i32 136, + i32 226, i32 207, i32 125, i32 54, i32 110, i32 130, i32 88, i32 23, + i32 74, i32 129, i32 31, i32 73, i32 249, i32 307, i32 158, i32 23, + i32 4, i32 180, i32 170, i32 315, i32 123, i32 229, i32 306, i32 301, + i32 114, i32 172, i32 32, i32 3, i32 164, i32 271, i32 30, i32 19, + i32 248, i32 93, i32 36, i32 5, i32 277, i32 176, i32 217, i32 289, + i32 155, i32 267, i32 191, i32 281, i32 224, i32 175, i32 273, i32 76, + i32 63, i32 258, i32 147, i32 221, i32 121, i32 134, i32 283, i32 203, + i32 100, i32 39, i32 209, i32 300, i32 68, i32 26, i32 75, i32 78, + i32 247, i32 201, i32 24, i32 152, i32 38, i32 313, i32 217, i32 133, + i32 103, i32 278, i32 57, i32 165, i32 91, i32 61, i32 132, i32 46, + i32 133, i32 232, i32 145, i32 78, i32 226, i32 248, i32 186, i32 154, + i32 298, i32 83, i32 325, i32 323, i32 61, i32 96, i32 261, i32 153, + i32 304, i32 118, i32 197, i32 6, i32 15, i32 74, i32 189, i32 294, + i32 146, i32 52, i32 70, i32 23, i32 158, i32 126, i32 65, i32 112, + i32 257, i32 246, i32 55, i32 53, i32 233, i32 180, i32 107, i32 135, + i32 238, i32 247, i32 80, i32 241, i32 185, i32 322, i32 245, i32 129, + i32 0, i32 64, i32 152 +], align 16 + +@marshal_methods_number_of_classes = dso_local local_unnamed_addr constant i32 0, align 4 + +@marshal_methods_class_cache = dso_local local_unnamed_addr global [0 x %struct.MarshalMethodsManagedClass] zeroinitializer, align 8 + +; Names of classes in which marshal methods reside +@mm_class_names = dso_local local_unnamed_addr constant [0 x ptr] zeroinitializer, align 8 + +@mm_method_names = dso_local local_unnamed_addr constant [1 x %struct.MarshalMethodName] [ + %struct.MarshalMethodName { + i64 u0x0000000000000000, ; name: + ptr @.MarshalMethodName.0_name; char* name + } ; 0 +], align 8 + +; get_function_pointer (uint32_t mono_image_index, uint32_t class_index, uint32_t method_token, void*& target_ptr) +@get_function_pointer = internal dso_local unnamed_addr global ptr null, align 8 + +; Functions + +; Function attributes: memory(write, argmem: none, inaccessiblemem: none) "min-legal-vector-width"="0" mustprogress "no-trapping-math"="true" nofree norecurse nosync nounwind "stack-protector-buffer-size"="8" uwtable willreturn +define void @xamarin_app_init(ptr nocapture noundef readnone %env, ptr noundef %fn) local_unnamed_addr #0 +{ + %fnIsNull = icmp eq ptr %fn, null + br i1 %fnIsNull, label %1, label %2 + +1: ; preds = %0 + %putsResult = call noundef i32 @puts(ptr @.str.0) + call void @abort() + unreachable + +2: ; preds = %1, %0 + store ptr %fn, ptr @get_function_pointer, align 8, !tbaa !3 + ret void +} + +; Strings +@.str.0 = private unnamed_addr constant [40 x i8] c"get_function_pointer MUST be specified\0A\00", align 16 + +;MarshalMethodName +@.MarshalMethodName.0_name = private unnamed_addr constant [1 x i8] c"\00", align 1 + +; External functions + +; Function attributes: "no-trapping-math"="true" noreturn nounwind "stack-protector-buffer-size"="8" +declare void @abort() local_unnamed_addr #2 + +; Function attributes: nofree nounwind +declare noundef i32 @puts(ptr noundef) local_unnamed_addr #1 +attributes #0 = { memory(write, argmem: none, inaccessiblemem: none) "min-legal-vector-width"="0" mustprogress "no-trapping-math"="true" nofree norecurse nosync nounwind "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+crc32,+cx16,+cx8,+fxsr,+mmx,+popcnt,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+x87" "tune-cpu"="generic" uwtable willreturn } +attributes #1 = { nofree nounwind } +attributes #2 = { "no-trapping-math"="true" noreturn nounwind "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+crc32,+cx16,+cx8,+fxsr,+mmx,+popcnt,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+x87" "tune-cpu"="generic" } + +; Metadata +!llvm.module.flags = !{!0, !1} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/R.java new file mode 100644 index 0000000..c192e8e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/R.java @@ -0,0 +1,14 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.activity; + +public final class R { + public static final class id { + public static final int report_drawn = 0x7f080184; + public static final int view_tree_on_back_pressed_dispatcher_owner = 0x7f08020c; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/ktx/R.java new file mode 100644 index 0000000..154b8ca --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/activity/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.activity.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/annotation/experimental/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/annotation/experimental/R.java new file mode 100644 index 0000000..06806c3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/annotation/experimental/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.annotation.experimental; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/R.java new file mode 100644 index 0000000..f98616d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/R.java @@ -0,0 +1,1511 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.appcompat; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c; + public static final int btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d; + public static final int btn_checkbox_to_checked_icon_null_animation = 0x7f01000e; + public static final int btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f; + public static final int btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010; + public static final int btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011; + public static final int btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012; + public static final int btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013; + public static final int btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014; + public static final int btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015; + public static final int btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016; + public static final int btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017; + } + public static final class attr { + public static final int actionBarDivider = 0x7f030003; + public static final int actionBarItemBackground = 0x7f030004; + public static final int actionBarPopupTheme = 0x7f030005; + public static final int actionBarSize = 0x7f030006; + public static final int actionBarSplitStyle = 0x7f030007; + public static final int actionBarStyle = 0x7f030008; + public static final int actionBarTabBarStyle = 0x7f030009; + public static final int actionBarTabStyle = 0x7f03000a; + public static final int actionBarTabTextStyle = 0x7f03000b; + public static final int actionBarTheme = 0x7f03000c; + public static final int actionBarWidgetTheme = 0x7f03000d; + public static final int actionButtonStyle = 0x7f03000e; + public static final int actionDropDownStyle = 0x7f03000f; + public static final int actionLayout = 0x7f030010; + public static final int actionMenuTextAppearance = 0x7f030011; + public static final int actionMenuTextColor = 0x7f030012; + public static final int actionModeBackground = 0x7f030013; + public static final int actionModeCloseButtonStyle = 0x7f030014; + public static final int actionModeCloseContentDescription = 0x7f030015; + public static final int actionModeCloseDrawable = 0x7f030016; + public static final int actionModeCopyDrawable = 0x7f030017; + public static final int actionModeCutDrawable = 0x7f030018; + public static final int actionModeFindDrawable = 0x7f030019; + public static final int actionModePasteDrawable = 0x7f03001a; + public static final int actionModePopupWindowStyle = 0x7f03001b; + public static final int actionModeSelectAllDrawable = 0x7f03001c; + public static final int actionModeShareDrawable = 0x7f03001d; + public static final int actionModeSplitBackground = 0x7f03001e; + public static final int actionModeStyle = 0x7f03001f; + public static final int actionModeTheme = 0x7f030020; + public static final int actionModeWebSearchDrawable = 0x7f030021; + public static final int actionOverflowButtonStyle = 0x7f030022; + public static final int actionOverflowMenuStyle = 0x7f030023; + public static final int actionProviderClass = 0x7f030024; + public static final int actionViewClass = 0x7f030026; + public static final int activityChooserViewStyle = 0x7f030029; + public static final int alertDialogButtonGroupStyle = 0x7f03002c; + public static final int alertDialogCenterButtons = 0x7f03002d; + public static final int alertDialogStyle = 0x7f03002e; + public static final int alertDialogTheme = 0x7f03002f; + public static final int allowStacking = 0x7f030030; + public static final int alphabeticModifiers = 0x7f030032; + public static final int arrowHeadLength = 0x7f03003f; + public static final int arrowShaftLength = 0x7f030040; + public static final int autoCompleteTextViewStyle = 0x7f030044; + public static final int autoSizeMaxTextSize = 0x7f030046; + public static final int autoSizeMinTextSize = 0x7f030047; + public static final int autoSizePresetSizes = 0x7f030048; + public static final int autoSizeStepGranularity = 0x7f030049; + public static final int autoSizeTextType = 0x7f03004a; + public static final int background = 0x7f03004d; + public static final int backgroundSplit = 0x7f030054; + public static final int backgroundStacked = 0x7f030055; + public static final int backgroundTint = 0x7f030056; + public static final int backgroundTintMode = 0x7f030057; + public static final int barLength = 0x7f030069; + public static final int borderlessButtonStyle = 0x7f03007d; + public static final int buttonBarButtonStyle = 0x7f030091; + public static final int buttonBarNegativeButtonStyle = 0x7f030092; + public static final int buttonBarNeutralButtonStyle = 0x7f030093; + public static final int buttonBarPositiveButtonStyle = 0x7f030094; + public static final int buttonBarStyle = 0x7f030095; + public static final int buttonCompat = 0x7f030096; + public static final int buttonGravity = 0x7f030097; + public static final int buttonIconDimen = 0x7f030099; + public static final int buttonPanelSideLayout = 0x7f03009c; + public static final int buttonStyle = 0x7f03009d; + public static final int buttonStyleSmall = 0x7f03009e; + public static final int buttonTint = 0x7f03009f; + public static final int buttonTintMode = 0x7f0300a0; + public static final int checkMarkCompat = 0x7f0300b6; + public static final int checkMarkTint = 0x7f0300b7; + public static final int checkMarkTintMode = 0x7f0300b8; + public static final int checkboxStyle = 0x7f0300b9; + public static final int checkedTextViewStyle = 0x7f0300c4; + public static final int closeIcon = 0x7f0300e7; + public static final int closeItemLayout = 0x7f0300ee; + public static final int collapseContentDescription = 0x7f0300ef; + public static final int collapseIcon = 0x7f0300f0; + public static final int color = 0x7f0300fb; + public static final int colorAccent = 0x7f0300fc; + public static final int colorBackgroundFloating = 0x7f0300fd; + public static final int colorButtonNormal = 0x7f0300fe; + public static final int colorControlActivated = 0x7f030100; + public static final int colorControlHighlight = 0x7f030101; + public static final int colorControlNormal = 0x7f030102; + public static final int colorError = 0x7f030103; + public static final int colorPrimary = 0x7f03011c; + public static final int colorPrimaryDark = 0x7f03011e; + public static final int colorSwitchThumbNormal = 0x7f030133; + public static final int commitIcon = 0x7f030138; + public static final int contentDescription = 0x7f030142; + public static final int contentInsetEnd = 0x7f030143; + public static final int contentInsetEndWithActions = 0x7f030144; + public static final int contentInsetLeft = 0x7f030145; + public static final int contentInsetRight = 0x7f030146; + public static final int contentInsetStart = 0x7f030147; + public static final int contentInsetStartWithNavigation = 0x7f030148; + public static final int controlBackground = 0x7f030152; + public static final int customNavigationLayout = 0x7f030171; + public static final int defaultQueryHint = 0x7f03017e; + public static final int dialogCornerRadius = 0x7f030185; + public static final int dialogPreferredPadding = 0x7f030186; + public static final int dialogTheme = 0x7f030187; + public static final int displayOptions = 0x7f030188; + public static final int divider = 0x7f030189; + public static final int dividerHorizontal = 0x7f03018b; + public static final int dividerPadding = 0x7f03018e; + public static final int dividerVertical = 0x7f030190; + public static final int drawableBottomCompat = 0x7f030195; + public static final int drawableEndCompat = 0x7f030196; + public static final int drawableLeftCompat = 0x7f030197; + public static final int drawableRightCompat = 0x7f030198; + public static final int drawableSize = 0x7f030199; + public static final int drawableStartCompat = 0x7f03019a; + public static final int drawableTint = 0x7f03019b; + public static final int drawableTintMode = 0x7f03019c; + public static final int drawableTopCompat = 0x7f03019d; + public static final int drawerArrowStyle = 0x7f03019e; + public static final int dropDownListViewStyle = 0x7f0301a2; + public static final int dropdownListPreferredItemHeight = 0x7f0301a3; + public static final int editTextBackground = 0x7f0301a6; + public static final int editTextColor = 0x7f0301a7; + public static final int editTextStyle = 0x7f0301a8; + public static final int elevation = 0x7f0301a9; + public static final int emojiCompatEnabled = 0x7f0301ad; + public static final int expandActivityOverflowButtonDrawable = 0x7f0301c6; + public static final int firstBaselineToTopHeight = 0x7f0301ea; + public static final int fontFamily = 0x7f03020e; + public static final int fontVariationSettings = 0x7f030218; + public static final int gapBetweenBars = 0x7f03021e; + public static final int goIcon = 0x7f030220; + public static final int height = 0x7f030231; + public static final int hideOnContentScroll = 0x7f030239; + public static final int homeAsUpIndicator = 0x7f03023f; + public static final int homeLayout = 0x7f030240; + public static final int icon = 0x7f030244; + public static final int iconTint = 0x7f03024a; + public static final int iconTintMode = 0x7f03024b; + public static final int iconifiedByDefault = 0x7f03024c; + public static final int imageButtonStyle = 0x7f03024f; + public static final int indeterminateProgressStyle = 0x7f030255; + public static final int initialActivityCount = 0x7f03025c; + public static final int isLightTheme = 0x7f03025e; + public static final int itemPadding = 0x7f03026c; + public static final int lastBaselineToBottomHeight = 0x7f030288; + public static final int layout = 0x7f03028b; + public static final int lineHeight = 0x7f0302d8; + public static final int listChoiceBackgroundIndicator = 0x7f0302db; + public static final int listChoiceIndicatorMultipleAnimated = 0x7f0302dc; + public static final int listChoiceIndicatorSingleAnimated = 0x7f0302dd; + public static final int listDividerAlertDialog = 0x7f0302de; + public static final int listItemLayout = 0x7f0302df; + public static final int listLayout = 0x7f0302e0; + public static final int listMenuViewStyle = 0x7f0302e1; + public static final int listPopupWindowStyle = 0x7f0302e2; + public static final int listPreferredItemHeight = 0x7f0302e3; + public static final int listPreferredItemHeightLarge = 0x7f0302e4; + public static final int listPreferredItemHeightSmall = 0x7f0302e5; + public static final int listPreferredItemPaddingEnd = 0x7f0302e6; + public static final int listPreferredItemPaddingLeft = 0x7f0302e7; + public static final int listPreferredItemPaddingRight = 0x7f0302e8; + public static final int listPreferredItemPaddingStart = 0x7f0302e9; + public static final int logo = 0x7f0302ea; + public static final int logoDescription = 0x7f0302ec; + public static final int maxButtonHeight = 0x7f030325; + public static final int measureWithLargestChild = 0x7f03032d; + public static final int menu = 0x7f03032e; + public static final int multiChoiceItemLayout = 0x7f03036c; + public static final int navigationContentDescription = 0x7f03036e; + public static final int navigationIcon = 0x7f03036f; + public static final int navigationMode = 0x7f030371; + public static final int numericModifiers = 0x7f030379; + public static final int overlapAnchor = 0x7f030382; + public static final int paddingBottomNoButtons = 0x7f030384; + public static final int paddingEnd = 0x7f030386; + public static final int paddingStart = 0x7f030389; + public static final int paddingTopNoTitle = 0x7f03038b; + public static final int panelBackground = 0x7f03038d; + public static final int panelMenuListTheme = 0x7f03038e; + public static final int panelMenuListWidth = 0x7f03038f; + public static final int popupMenuStyle = 0x7f0303a9; + public static final int popupTheme = 0x7f0303aa; + public static final int popupWindowStyle = 0x7f0303ab; + public static final int preserveIconSpacing = 0x7f0303af; + public static final int progressBarPadding = 0x7f0303b2; + public static final int progressBarStyle = 0x7f0303b3; + public static final int queryBackground = 0x7f0303b7; + public static final int queryHint = 0x7f0303b8; + public static final int radioButtonStyle = 0x7f0303ba; + public static final int ratingBarStyle = 0x7f0303bc; + public static final int ratingBarStyleIndicator = 0x7f0303bd; + public static final int ratingBarStyleSmall = 0x7f0303be; + public static final int searchHintIcon = 0x7f0303d6; + public static final int searchIcon = 0x7f0303d7; + public static final int searchViewStyle = 0x7f0303d9; + public static final int seekBarStyle = 0x7f0303dc; + public static final int selectableItemBackground = 0x7f0303dd; + public static final int selectableItemBackgroundBorderless = 0x7f0303de; + public static final int showAsAction = 0x7f0303f0; + public static final int showDividers = 0x7f0303f2; + public static final int showText = 0x7f0303f6; + public static final int showTitle = 0x7f0303f7; + public static final int singleChoiceItemLayout = 0x7f0303ff; + public static final int spinBars = 0x7f030408; + public static final int spinnerDropDownItemStyle = 0x7f030409; + public static final int spinnerStyle = 0x7f03040a; + public static final int splitTrack = 0x7f030412; + public static final int srcCompat = 0x7f030418; + public static final int state_above_anchor = 0x7f030424; + public static final int subMenuArrow = 0x7f030433; + public static final int submitBackground = 0x7f030438; + public static final int subtitle = 0x7f030439; + public static final int subtitleTextAppearance = 0x7f03043b; + public static final int subtitleTextColor = 0x7f03043c; + public static final int subtitleTextStyle = 0x7f03043d; + public static final int suggestionRowLayout = 0x7f030441; + public static final int switchMinWidth = 0x7f030443; + public static final int switchPadding = 0x7f030444; + public static final int switchStyle = 0x7f030445; + public static final int switchTextAppearance = 0x7f030446; + public static final int textAllCaps = 0x7f03046a; + public static final int textAppearanceLargePopupMenu = 0x7f030481; + public static final int textAppearanceListItem = 0x7f030483; + public static final int textAppearanceListItemSecondary = 0x7f030484; + public static final int textAppearanceListItemSmall = 0x7f030485; + public static final int textAppearancePopupMenuHeader = 0x7f030487; + public static final int textAppearanceSearchResultSubtitle = 0x7f030488; + public static final int textAppearanceSearchResultTitle = 0x7f030489; + public static final int textAppearanceSmallPopupMenu = 0x7f03048a; + public static final int textColorAlertDialogListItem = 0x7f030495; + public static final int textColorSearchUrl = 0x7f030496; + public static final int textLocale = 0x7f0304a1; + public static final int theme = 0x7f0304ab; + public static final int thickness = 0x7f0304ac; + public static final int thumbTextPadding = 0x7f0304b7; + public static final int thumbTint = 0x7f0304b8; + public static final int thumbTintMode = 0x7f0304b9; + public static final int tickMark = 0x7f0304bf; + public static final int tickMarkTint = 0x7f0304c0; + public static final int tickMarkTintMode = 0x7f0304c1; + public static final int tint = 0x7f0304c5; + public static final int tintMode = 0x7f0304c6; + public static final int title = 0x7f0304c8; + public static final int titleMargin = 0x7f0304cc; + public static final int titleMarginBottom = 0x7f0304cd; + public static final int titleMarginEnd = 0x7f0304ce; + public static final int titleMarginStart = 0x7f0304cf; + public static final int titleMarginTop = 0x7f0304d0; + public static final int titleMargins = 0x7f0304d1; + public static final int titleTextAppearance = 0x7f0304d3; + public static final int titleTextColor = 0x7f0304d4; + public static final int titleTextStyle = 0x7f0304d6; + public static final int toolbarNavigationButtonStyle = 0x7f0304d9; + public static final int toolbarStyle = 0x7f0304da; + public static final int tooltipForegroundColor = 0x7f0304dc; + public static final int tooltipFrameBackground = 0x7f0304dd; + public static final int tooltipText = 0x7f0304df; + public static final int track = 0x7f0304e4; + public static final int trackTint = 0x7f0304f0; + public static final int trackTintMode = 0x7f0304f1; + public static final int viewInflaterClass = 0x7f030504; + public static final int voiceIcon = 0x7f03050a; + public static final int windowActionBar = 0x7f030512; + public static final int windowActionBarOverlay = 0x7f030513; + public static final int windowActionModeOverlay = 0x7f030514; + public static final int windowFixedHeightMajor = 0x7f030515; + public static final int windowFixedHeightMinor = 0x7f030516; + public static final int windowFixedWidthMajor = 0x7f030517; + public static final int windowFixedWidthMinor = 0x7f030518; + public static final int windowMinWidthMajor = 0x7f030519; + public static final int windowMinWidthMinor = 0x7f03051a; + public static final int windowNoTitle = 0x7f03051b; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040001; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_decor_view_status_guard = 0x7f050005; + public static final int abc_decor_view_status_guard_light = 0x7f050006; + public static final int abc_hint_foreground_material_dark = 0x7f050007; + public static final int abc_hint_foreground_material_light = 0x7f050008; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050009; + public static final int abc_primary_text_disable_only_material_light = 0x7f05000a; + public static final int abc_primary_text_material_dark = 0x7f05000b; + public static final int abc_primary_text_material_light = 0x7f05000c; + public static final int abc_search_url_text = 0x7f05000d; + public static final int abc_search_url_text_normal = 0x7f05000e; + public static final int abc_search_url_text_pressed = 0x7f05000f; + public static final int abc_search_url_text_selected = 0x7f050010; + public static final int abc_secondary_text_material_dark = 0x7f050011; + public static final int abc_secondary_text_material_light = 0x7f050012; + public static final int abc_tint_btn_checkable = 0x7f050013; + public static final int abc_tint_default = 0x7f050014; + public static final int abc_tint_edittext = 0x7f050015; + public static final int abc_tint_seek_thumb = 0x7f050016; + public static final int abc_tint_spinner = 0x7f050017; + public static final int abc_tint_switch_track = 0x7f050018; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int background_floating_material_dark = 0x7f05001d; + public static final int background_floating_material_light = 0x7f05001e; + public static final int background_material_dark = 0x7f05001f; + public static final int background_material_light = 0x7f050020; + public static final int bright_foreground_disabled_material_dark = 0x7f050021; + public static final int bright_foreground_disabled_material_light = 0x7f050022; + public static final int bright_foreground_inverse_material_dark = 0x7f050023; + public static final int bright_foreground_inverse_material_light = 0x7f050024; + public static final int bright_foreground_material_dark = 0x7f050025; + public static final int bright_foreground_material_light = 0x7f050026; + public static final int button_material_dark = 0x7f05002b; + public static final int button_material_light = 0x7f05002c; + public static final int dim_foreground_disabled_material_dark = 0x7f05005d; + public static final int dim_foreground_disabled_material_light = 0x7f05005e; + public static final int dim_foreground_material_dark = 0x7f05005f; + public static final int dim_foreground_material_light = 0x7f050060; + public static final int error_color_material_dark = 0x7f050061; + public static final int error_color_material_light = 0x7f050062; + public static final int foreground_material_dark = 0x7f050063; + public static final int foreground_material_light = 0x7f050064; + public static final int highlighted_text_material_dark = 0x7f050065; + public static final int highlighted_text_material_light = 0x7f050066; + public static final int material_blue_grey_800 = 0x7f05021a; + public static final int material_blue_grey_900 = 0x7f05021b; + public static final int material_blue_grey_950 = 0x7f05021c; + public static final int material_deep_teal_200 = 0x7f05021e; + public static final int material_deep_teal_500 = 0x7f05021f; + public static final int material_grey_100 = 0x7f05026a; + public static final int material_grey_300 = 0x7f05026b; + public static final int material_grey_50 = 0x7f05026c; + public static final int material_grey_600 = 0x7f05026d; + public static final int material_grey_800 = 0x7f05026e; + public static final int material_grey_850 = 0x7f05026f; + public static final int material_grey_900 = 0x7f050270; + public static final int primary_dark_material_dark = 0x7f0502f8; + public static final int primary_dark_material_light = 0x7f0502f9; + public static final int primary_material_dark = 0x7f0502fa; + public static final int primary_material_light = 0x7f0502fb; + public static final int primary_text_default_material_dark = 0x7f0502fc; + public static final int primary_text_default_material_light = 0x7f0502fd; + public static final int primary_text_disabled_material_dark = 0x7f0502fe; + public static final int primary_text_disabled_material_light = 0x7f0502ff; + public static final int ripple_material_dark = 0x7f050300; + public static final int ripple_material_light = 0x7f050301; + public static final int secondary_text_default_material_dark = 0x7f050302; + public static final int secondary_text_default_material_light = 0x7f050303; + public static final int secondary_text_disabled_material_dark = 0x7f050304; + public static final int secondary_text_disabled_material_light = 0x7f050305; + public static final int switch_thumb_disabled_material_dark = 0x7f050306; + public static final int switch_thumb_disabled_material_light = 0x7f050307; + public static final int switch_thumb_material_dark = 0x7f050308; + public static final int switch_thumb_material_light = 0x7f050309; + public static final int switch_thumb_normal_material_dark = 0x7f05030a; + public static final int switch_thumb_normal_material_light = 0x7f05030b; + public static final int tooltip_background_dark = 0x7f05030c; + public static final int tooltip_background_light = 0x7f05030d; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_height_large_material = 0x7f060030; + public static final int abc_list_item_height_material = 0x7f060031; + public static final int abc_list_item_height_small_material = 0x7f060032; + public static final int abc_list_item_padding_horizontal_material = 0x7f060033; + public static final int abc_panel_menu_list_width = 0x7f060034; + public static final int abc_progress_bar_height_material = 0x7f060035; + public static final int abc_search_view_preferred_height = 0x7f060036; + public static final int abc_search_view_preferred_width = 0x7f060037; + public static final int abc_seekbar_track_background_height_material = 0x7f060038; + public static final int abc_seekbar_track_progress_height_material = 0x7f060039; + public static final int abc_select_dialog_padding_start_material = 0x7f06003a; + public static final int abc_star_big = 0x7f06003b; + public static final int abc_star_medium = 0x7f06003c; + public static final int abc_star_small = 0x7f06003d; + public static final int abc_switch_padding = 0x7f06003e; + public static final int abc_text_size_body_1_material = 0x7f06003f; + public static final int abc_text_size_body_2_material = 0x7f060040; + public static final int abc_text_size_button_material = 0x7f060041; + public static final int abc_text_size_caption_material = 0x7f060042; + public static final int abc_text_size_display_1_material = 0x7f060043; + public static final int abc_text_size_display_2_material = 0x7f060044; + public static final int abc_text_size_display_3_material = 0x7f060045; + public static final int abc_text_size_display_4_material = 0x7f060046; + public static final int abc_text_size_headline_material = 0x7f060047; + public static final int abc_text_size_large_material = 0x7f060048; + public static final int abc_text_size_medium_material = 0x7f060049; + public static final int abc_text_size_menu_header_material = 0x7f06004a; + public static final int abc_text_size_menu_material = 0x7f06004b; + public static final int abc_text_size_small_material = 0x7f06004c; + public static final int abc_text_size_subhead_material = 0x7f06004d; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f06004e; + public static final int abc_text_size_title_material = 0x7f06004f; + public static final int abc_text_size_title_material_toolbar = 0x7f060050; + public static final int disabled_alpha_material_dark = 0x7f060090; + public static final int disabled_alpha_material_light = 0x7f060091; + public static final int highlight_alpha_material_colored = 0x7f060095; + public static final int highlight_alpha_material_dark = 0x7f060096; + public static final int highlight_alpha_material_light = 0x7f060097; + public static final int hint_alpha_material_dark = 0x7f060098; + public static final int hint_alpha_material_light = 0x7f060099; + public static final int hint_pressed_alpha_material_dark = 0x7f06009a; + public static final int hint_pressed_alpha_material_light = 0x7f06009b; + public static final int tooltip_corner_radius = 0x7f06031e; + public static final int tooltip_horizontal_padding = 0x7f06031f; + public static final int tooltip_margin = 0x7f060320; + public static final int tooltip_precise_anchor_extra_offset = 0x7f060321; + public static final int tooltip_precise_anchor_threshold = 0x7f060322; + public static final int tooltip_vertical_padding = 0x7f060323; + public static final int tooltip_y_offset_non_touch = 0x7f060324; + public static final int tooltip_y_offset_touch = 0x7f060325; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070028; + public static final int abc_action_bar_item_background_material = 0x7f070029; + public static final int abc_btn_borderless_material = 0x7f07002a; + public static final int abc_btn_check_material = 0x7f07002b; + public static final int abc_btn_check_material_anim = 0x7f07002c; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07002d; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07002e; + public static final int abc_btn_colored_material = 0x7f07002f; + public static final int abc_btn_default_mtrl_shape = 0x7f070030; + public static final int abc_btn_radio_material = 0x7f070031; + public static final int abc_btn_radio_material_anim = 0x7f070032; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f070033; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070034; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070035; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070036; + public static final int abc_cab_background_internal_bg = 0x7f070037; + public static final int abc_cab_background_top_material = 0x7f070038; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070039; + public static final int abc_control_background_material = 0x7f07003a; + public static final int abc_dialog_material_background = 0x7f07003b; + public static final int abc_edit_text_material = 0x7f07003c; + public static final int abc_ic_ab_back_material = 0x7f07003d; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07003e; + public static final int abc_ic_clear_material = 0x7f07003f; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f070040; + public static final int abc_ic_go_search_api_material = 0x7f070041; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f070042; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f070043; + public static final int abc_ic_menu_overflow_material = 0x7f070044; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070045; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070046; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070047; + public static final int abc_ic_search_api_material = 0x7f070048; + public static final int abc_ic_voice_search_api_material = 0x7f070049; + public static final int abc_item_background_holo_dark = 0x7f07004a; + public static final int abc_item_background_holo_light = 0x7f07004b; + public static final int abc_list_divider_material = 0x7f07004c; + public static final int abc_list_divider_mtrl_alpha = 0x7f07004d; + public static final int abc_list_focused_holo = 0x7f07004e; + public static final int abc_list_longpressed_holo = 0x7f07004f; + public static final int abc_list_pressed_holo_dark = 0x7f070050; + public static final int abc_list_pressed_holo_light = 0x7f070051; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070052; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070053; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070054; + public static final int abc_list_selector_disabled_holo_light = 0x7f070055; + public static final int abc_list_selector_holo_dark = 0x7f070056; + public static final int abc_list_selector_holo_light = 0x7f070057; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f070058; + public static final int abc_popup_background_mtrl_mult = 0x7f070059; + public static final int abc_ratingbar_indicator_material = 0x7f07005a; + public static final int abc_ratingbar_material = 0x7f07005b; + public static final int abc_ratingbar_small_material = 0x7f07005c; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07005d; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f07005e; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f07005f; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070060; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070061; + public static final int abc_seekbar_thumb_material = 0x7f070062; + public static final int abc_seekbar_tick_mark_material = 0x7f070063; + public static final int abc_seekbar_track_material = 0x7f070064; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070065; + public static final int abc_spinner_textfield_background_material = 0x7f070066; + public static final int abc_star_black_48dp = 0x7f070067; + public static final int abc_star_half_black_48dp = 0x7f070068; + public static final int abc_switch_thumb_material = 0x7f070069; + public static final int abc_switch_track_mtrl_alpha = 0x7f07006a; + public static final int abc_tab_indicator_material = 0x7f07006b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07006c; + public static final int abc_text_cursor_material = 0x7f07006d; + public static final int abc_text_select_handle_left_mtrl = 0x7f07006e; + public static final int abc_text_select_handle_middle_mtrl = 0x7f07006f; + public static final int abc_text_select_handle_right_mtrl = 0x7f070070; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070071; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070072; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070073; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070074; + public static final int abc_textfield_search_material = 0x7f070075; + public static final int btn_checkbox_checked_mtrl = 0x7f070079; + public static final int btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f07007a; + public static final int btn_checkbox_unchecked_mtrl = 0x7f07007b; + public static final int btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f07007c; + public static final int btn_radio_off_mtrl = 0x7f07007d; + public static final int btn_radio_off_to_on_mtrl_animation = 0x7f07007e; + public static final int btn_radio_on_mtrl = 0x7f07007f; + public static final int btn_radio_on_to_off_mtrl_animation = 0x7f070080; + public static final int test_level_drawable = 0x7f0700e5; + public static final int tooltip_frame_dark = 0x7f0700e6; + public static final int tooltip_frame_light = 0x7f0700e7; + } + public static final class id { + public static final int action_bar = 0x7f080034; + public static final int action_bar_activity_content = 0x7f080035; + public static final int action_bar_container = 0x7f080036; + public static final int action_bar_root = 0x7f080037; + public static final int action_bar_spinner = 0x7f080038; + public static final int action_bar_subtitle = 0x7f080039; + public static final int action_bar_title = 0x7f08003a; + public static final int action_context_bar = 0x7f08003c; + public static final int action_menu_divider = 0x7f08003f; + public static final int action_menu_presenter = 0x7f080040; + public static final int action_mode_bar = 0x7f080041; + public static final int action_mode_bar_stub = 0x7f080042; + public static final int action_mode_close_button = 0x7f080043; + public static final int activity_chooser_view_content = 0x7f080046; + public static final int add = 0x7f080047; + public static final int alertTitle = 0x7f080049; + public static final int buttonPanel = 0x7f08006f; + public static final int checkbox = 0x7f08007c; + public static final int checked = 0x7f08007d; + public static final int content = 0x7f08008a; + public static final int contentPanel = 0x7f08008b; + public static final int custom = 0x7f080093; + public static final int customPanel = 0x7f080094; + public static final int decor_content_parent = 0x7f080099; + public static final int default_activity_button = 0x7f08009a; + public static final int edit_query = 0x7f0800b8; + public static final int expand_activities_button = 0x7f0800c2; + public static final int expanded_menu = 0x7f0800c3; + public static final int group_divider = 0x7f0800dc; + public static final int home = 0x7f0800e2; + public static final int icon = 0x7f0800e7; + public static final int image = 0x7f0800ec; + public static final int listMode = 0x7f080100; + public static final int list_item = 0x7f080101; + public static final int message = 0x7f08011f; + public static final int multiply = 0x7f080140; + public static final int none = 0x7f080155; + public static final int normal = 0x7f080156; + public static final int off = 0x7f08015b; + public static final int on = 0x7f08015c; + public static final int parentPanel = 0x7f080172; + public static final int progress_circular = 0x7f08017f; + public static final int progress_horizontal = 0x7f080180; + public static final int radio = 0x7f080181; + public static final int screen = 0x7f080191; + public static final int scrollIndicatorDown = 0x7f080193; + public static final int scrollIndicatorUp = 0x7f080194; + public static final int scrollView = 0x7f080195; + public static final int search_badge = 0x7f080197; + public static final int search_bar = 0x7f080198; + public static final int search_button = 0x7f080199; + public static final int search_close_btn = 0x7f08019a; + public static final int search_edit_frame = 0x7f08019b; + public static final int search_go_btn = 0x7f08019c; + public static final int search_mag_icon = 0x7f08019d; + public static final int search_plate = 0x7f08019e; + public static final int search_src_text = 0x7f08019f; + public static final int search_voice_btn = 0x7f0801a0; + public static final int select_dialog_listview = 0x7f0801a1; + public static final int shortcut = 0x7f0801a7; + public static final int spacer = 0x7f0801b6; + public static final int split_action_bar = 0x7f0801b9; + public static final int src_atop = 0x7f0801be; + public static final int src_in = 0x7f0801bf; + public static final int src_over = 0x7f0801c0; + public static final int submenuarrow = 0x7f0801ca; + public static final int submit_area = 0x7f0801cb; + public static final int tabMode = 0x7f0801cd; + public static final int textSpacerNoButtons = 0x7f0801e0; + public static final int textSpacerNoTitle = 0x7f0801e1; + public static final int title = 0x7f0801ee; + public static final int titleDividerNoCustom = 0x7f0801ef; + public static final int title_template = 0x7f0801f0; + public static final int topPanel = 0x7f0801f3; + public static final int unchecked = 0x7f080201; + public static final int uniform = 0x7f080202; + public static final int up = 0x7f080204; + public static final int wrap_content = 0x7f080216; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090006; + } + public static final class interpolator { + public static final int btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000; + public static final int btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003; + public static final int btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004; + public static final int btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005; + public static final int fast_out_slow_in = 0x7f0a0006; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int select_dialog_item_material = 0x7f0b006d; + public static final int select_dialog_multichoice_material = 0x7f0b006e; + public static final int select_dialog_singlechoice_material = 0x7f0b006f; + public static final int support_simple_spinner_dropdown_item = 0x7f0b0071; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f0f0000; + public static final int abc_action_bar_up_description = 0x7f0f0001; + public static final int abc_action_menu_overflow_description = 0x7f0f0002; + public static final int abc_action_mode_done = 0x7f0f0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0f0004; + public static final int abc_activitychooserview_choose_application = 0x7f0f0005; + public static final int abc_capital_off = 0x7f0f0006; + public static final int abc_capital_on = 0x7f0f0007; + public static final int abc_menu_alt_shortcut_label = 0x7f0f0008; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0f0009; + public static final int abc_menu_delete_shortcut_label = 0x7f0f000a; + public static final int abc_menu_enter_shortcut_label = 0x7f0f000b; + public static final int abc_menu_function_shortcut_label = 0x7f0f000c; + public static final int abc_menu_meta_shortcut_label = 0x7f0f000d; + public static final int abc_menu_shift_shortcut_label = 0x7f0f000e; + public static final int abc_menu_space_shortcut_label = 0x7f0f000f; + public static final int abc_menu_sym_shortcut_label = 0x7f0f0010; + public static final int abc_prepend_shortcut_label = 0x7f0f0011; + public static final int abc_search_hint = 0x7f0f0012; + public static final int abc_searchview_description_clear = 0x7f0f0013; + public static final int abc_searchview_description_query = 0x7f0f0014; + public static final int abc_searchview_description_search = 0x7f0f0015; + public static final int abc_searchview_description_submit = 0x7f0f0016; + public static final int abc_searchview_description_voice = 0x7f0f0017; + public static final int abc_shareactionprovider_share_with = 0x7f0f0018; + public static final int abc_shareactionprovider_share_with_application = 0x7f0f0019; + public static final int abc_toolbar_collapse_description = 0x7f0f001a; + public static final int search_menu_title = 0x7f0f00a8; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f100001; + public static final int AlertDialog_AppCompat_Light = 0x7f100002; + public static final int Animation_AppCompat_Dialog = 0x7f100003; + public static final int Animation_AppCompat_DropDownUp = 0x7f100004; + public static final int Animation_AppCompat_Tooltip = 0x7f100005; + public static final int Base_AlertDialog_AppCompat = 0x7f10000e; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f10000f; + public static final int Base_Animation_AppCompat_Dialog = 0x7f100010; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f100011; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f100012; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f100015; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f100014; + public static final int Base_TextAppearance_AppCompat = 0x7f100019; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f10001a; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f10001b; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f10001c; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f10001d; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f10001e; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f10001f; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f100020; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f100021; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f100022; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f100023; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f100024; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f100025; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f100026; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f100027; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f100028; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f100029; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f10002a; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f10002b; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f10002c; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f10002d; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f10002e; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f10002f; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f100030; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f100031; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f100032; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f100033; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f100034; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f100035; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f100036; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f100037; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f100038; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f100039; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f10003a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f10003b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f10003c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f10003d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f10003e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f10003f; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f100040; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f100041; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f100042; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f100043; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f100044; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f100045; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f10004b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f10004c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f10004d; + public static final int Base_ThemeOverlay_AppCompat = 0x7f10007b; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f10007c; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f10007d; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f10007e; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f10007f; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100080; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f100081; + public static final int Base_Theme_AppCompat = 0x7f10004e; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f10004f; + public static final int Base_Theme_AppCompat_Dialog = 0x7f100050; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f100054; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f100051; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f100052; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f100053; + public static final int Base_Theme_AppCompat_Light = 0x7f100055; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f100056; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f100057; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f10005b; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f100058; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f100059; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10005a; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f1000ac; + public static final int Base_V21_Theme_AppCompat = 0x7f1000a4; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f1000a5; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f1000a6; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f1000a7; + public static final int Base_V22_Theme_AppCompat = 0x7f1000b0; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f1000b1; + public static final int Base_V23_Theme_AppCompat = 0x7f1000b2; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f1000b3; + public static final int Base_V26_Theme_AppCompat = 0x7f1000b8; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f1000b9; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f1000ba; + public static final int Base_V28_Theme_AppCompat = 0x7f1000bb; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f1000bc; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f1000c1; + public static final int Base_V7_Theme_AppCompat = 0x7f1000bd; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f1000be; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f1000bf; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f1000c0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f1000c2; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f1000c3; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f1000c4; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f1000c5; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f1000c6; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f1000c7; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f1000c8; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f1000c9; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f1000ca; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f1000cb; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f1000cc; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f1000cd; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f1000ce; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f1000cf; + public static final int Base_Widget_AppCompat_Button = 0x7f1000d0; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f1000d6; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f1000d7; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f1000d1; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f1000d2; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f1000d3; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f1000d4; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f1000d5; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f1000d8; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f1000d9; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f1000da; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f1000db; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f1000dc; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f1000dd; + public static final int Base_Widget_AppCompat_EditText = 0x7f1000de; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f1000df; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f1000e0; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f1000e1; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f1000e2; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f1000e3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f1000e4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f1000e5; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f1000e6; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f1000e7; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f1000e8; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f1000e9; + public static final int Base_Widget_AppCompat_ListView = 0x7f1000ea; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f1000eb; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f1000ec; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f1000ed; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f1000ee; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f1000ef; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f1000f0; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f1000f1; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f1000f2; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f1000f3; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f1000f4; + public static final int Base_Widget_AppCompat_SearchView = 0x7f1000f5; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f1000f6; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f1000f7; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f1000f8; + public static final int Base_Widget_AppCompat_Spinner = 0x7f1000f9; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f1000fa; + public static final int Base_Widget_AppCompat_TextView = 0x7f1000fb; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f1000fc; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f1000fd; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1000fe; + public static final int Platform_AppCompat = 0x7f100143; + public static final int Platform_AppCompat_Light = 0x7f100144; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f100149; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f10014a; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f10014b; + public static final int Platform_V21_AppCompat = 0x7f10014c; + public static final int Platform_V21_AppCompat_Light = 0x7f10014d; + public static final int Platform_V25_AppCompat = 0x7f10014e; + public static final int Platform_V25_AppCompat_Light = 0x7f10014f; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f100150; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f100151; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f100152; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f100153; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f100154; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f100155; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f100156; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f100157; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f100158; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f100159; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f10015f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f10015a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f10015b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f10015c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f10015d; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f10015e; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f100160; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f100161; + public static final int TextAppearance_AppCompat = 0x7f1001a0; + public static final int TextAppearance_AppCompat_Body1 = 0x7f1001a1; + public static final int TextAppearance_AppCompat_Body2 = 0x7f1001a2; + public static final int TextAppearance_AppCompat_Button = 0x7f1001a3; + public static final int TextAppearance_AppCompat_Caption = 0x7f1001a4; + public static final int TextAppearance_AppCompat_Display1 = 0x7f1001a5; + public static final int TextAppearance_AppCompat_Display2 = 0x7f1001a6; + public static final int TextAppearance_AppCompat_Display3 = 0x7f1001a7; + public static final int TextAppearance_AppCompat_Display4 = 0x7f1001a8; + public static final int TextAppearance_AppCompat_Headline = 0x7f1001a9; + public static final int TextAppearance_AppCompat_Inverse = 0x7f1001aa; + public static final int TextAppearance_AppCompat_Large = 0x7f1001ab; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f1001ac; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f1001ad; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f1001ae; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f1001af; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f1001b0; + public static final int TextAppearance_AppCompat_Medium = 0x7f1001b1; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f1001b2; + public static final int TextAppearance_AppCompat_Menu = 0x7f1001b3; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f1001b4; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f1001b5; + public static final int TextAppearance_AppCompat_Small = 0x7f1001b6; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f1001b7; + public static final int TextAppearance_AppCompat_Subhead = 0x7f1001b8; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f1001b9; + public static final int TextAppearance_AppCompat_Title = 0x7f1001ba; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f1001bb; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f1001bc; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f1001bd; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f1001be; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f1001bf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f1001c0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f1001c1; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f1001c2; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f1001c3; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f1001c4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f1001c5; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f1001c6; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f1001c7; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f1001c8; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f1001c9; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f1001ca; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f1001cb; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f1001cc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f1001cd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f1001ce; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f1001cf; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f100215; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f100216; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f100217; + public static final int ThemeOverlay_AppCompat = 0x7f100281; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f100282; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f100283; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f100284; + public static final int ThemeOverlay_AppCompat_DayNight = 0x7f100285; + public static final int ThemeOverlay_AppCompat_DayNight_ActionBar = 0x7f100286; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f100287; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100288; + public static final int ThemeOverlay_AppCompat_Light = 0x7f100289; + public static final int Theme_AppCompat = 0x7f100218; + public static final int Theme_AppCompat_CompactMenu = 0x7f100219; + public static final int Theme_AppCompat_DayNight = 0x7f10021a; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f10021b; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f10021c; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f10021f; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f10021d; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f10021e; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f100220; + public static final int Theme_AppCompat_Dialog = 0x7f100221; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f100224; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f100222; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f100223; + public static final int Theme_AppCompat_Empty = 0x7f100225; + public static final int Theme_AppCompat_Light = 0x7f100226; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f100227; + public static final int Theme_AppCompat_Light_Dialog = 0x7f100228; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f10022b; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f100229; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10022a; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f10022c; + public static final int Theme_AppCompat_NoActionBar = 0x7f10022d; + public static final int Widget_AppCompat_ActionBar = 0x7f1002f3; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f1002f4; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f1002f5; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f1002f6; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f1002f7; + public static final int Widget_AppCompat_ActionButton = 0x7f1002f8; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f1002f9; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f1002fa; + public static final int Widget_AppCompat_ActionMode = 0x7f1002fb; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f1002fc; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f1002fd; + public static final int Widget_AppCompat_Button = 0x7f1002fe; + public static final int Widget_AppCompat_ButtonBar = 0x7f100304; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f100305; + public static final int Widget_AppCompat_Button_Borderless = 0x7f1002ff; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f100300; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f100301; + public static final int Widget_AppCompat_Button_Colored = 0x7f100302; + public static final int Widget_AppCompat_Button_Small = 0x7f100303; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f100306; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f100307; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f100308; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f100309; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f10030a; + public static final int Widget_AppCompat_EditText = 0x7f10030b; + public static final int Widget_AppCompat_ImageButton = 0x7f10030c; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f10030d; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f10030e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f10030f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f100310; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f100311; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f100312; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f100313; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f100314; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f100315; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f100316; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f100317; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f100318; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f100319; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f10031a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f10031b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f10031c; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f10031d; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f10031e; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f10031f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f100320; + public static final int Widget_AppCompat_Light_SearchView = 0x7f100321; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f100322; + public static final int Widget_AppCompat_ListMenuView = 0x7f100323; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f100324; + public static final int Widget_AppCompat_ListView = 0x7f100325; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f100326; + public static final int Widget_AppCompat_ListView_Menu = 0x7f100327; + public static final int Widget_AppCompat_PopupMenu = 0x7f100328; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f100329; + public static final int Widget_AppCompat_PopupWindow = 0x7f10032a; + public static final int Widget_AppCompat_ProgressBar = 0x7f10032b; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f10032c; + public static final int Widget_AppCompat_RatingBar = 0x7f10032d; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f10032e; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f10032f; + public static final int Widget_AppCompat_SearchView = 0x7f100330; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f100331; + public static final int Widget_AppCompat_SeekBar = 0x7f100332; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f100333; + public static final int Widget_AppCompat_Spinner = 0x7f100334; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f100335; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f100336; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f100337; + public static final int Widget_AppCompat_TextView = 0x7f100338; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f100339; + public static final int Widget_AppCompat_Toolbar = 0x7f10033a; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f10033b; + } + public static final class styleable { + public static final int[] ActionBar = new int[] { 0x7f03004d, 0x7f030054, 0x7f030055, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030171, 0x7f030188, 0x7f030189, 0x7f0301a9, 0x7f030231, 0x7f030239, 0x7f03023f, 0x7f030240, 0x7f030244, 0x7f030255, 0x7f03026c, 0x7f0302ea, 0x7f030371, 0x7f0303aa, 0x7f0303b2, 0x7f0303b3, 0x7f030439, 0x7f03043d, 0x7f0304c8, 0x7f0304d6 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = new int[] { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = new int[] { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = new int[] { }; + public static final int[] ActionMode = new int[] { 0x7f03004d, 0x7f030054, 0x7f0300ee, 0x7f030231, 0x7f03043d, 0x7f0304d6 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = new int[] { 0x7f0301c6, 0x7f03025c }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = new int[] { 0x010100f2, 0x7f030099, 0x7f03009c, 0x7f0302df, 0x7f0302e0, 0x7f03036c, 0x7f0303f7, 0x7f0303ff }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AppCompatEmojiHelper = new int[] { }; + public static final int[] AppCompatImageView = new int[] { 0x01010119, 0x7f030418, 0x7f0304c5, 0x7f0304c6 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = new int[] { 0x01010142, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = new int[] { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int[] AppCompatTextView = new int[] { 0x01010034, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f0301ad, 0x7f0301ea, 0x7f03020e, 0x7f030218, 0x7f030288, 0x7f0302d8, 0x7f03046a, 0x7f0304a1 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_drawableBottomCompat = 6; + public static final int AppCompatTextView_drawableEndCompat = 7; + public static final int AppCompatTextView_drawableLeftCompat = 8; + public static final int AppCompatTextView_drawableRightCompat = 9; + public static final int AppCompatTextView_drawableStartCompat = 10; + public static final int AppCompatTextView_drawableTint = 11; + public static final int AppCompatTextView_drawableTintMode = 12; + public static final int AppCompatTextView_drawableTopCompat = 13; + public static final int AppCompatTextView_emojiCompatEnabled = 14; + public static final int AppCompatTextView_firstBaselineToTopHeight = 15; + public static final int AppCompatTextView_fontFamily = 16; + public static final int AppCompatTextView_fontVariationSettings = 17; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 18; + public static final int AppCompatTextView_lineHeight = 19; + public static final int AppCompatTextView_textAllCaps = 20; + public static final int AppCompatTextView_textLocale = 21; + public static final int[] AppCompatTheme = new int[] { 0x01010057, 0x010100ae, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030044, 0x7f03007d, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009d, 0x7f03009e, 0x7f0300b9, 0x7f0300c4, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03011c, 0x7f03011e, 0x7f030133, 0x7f030152, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f03018b, 0x7f030190, 0x7f0301a2, 0x7f0301a3, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f03023f, 0x7f03024f, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f03038d, 0x7f03038e, 0x7f03038f, 0x7f0303a9, 0x7f0303ab, 0x7f0303ba, 0x7f0303bc, 0x7f0303bd, 0x7f0303be, 0x7f0303d9, 0x7f0303dc, 0x7f0303dd, 0x7f0303de, 0x7f030409, 0x7f03040a, 0x7f030445, 0x7f030481, 0x7f030483, 0x7f030484, 0x7f030485, 0x7f030487, 0x7f030488, 0x7f030489, 0x7f03048a, 0x7f030495, 0x7f030496, 0x7f0304d9, 0x7f0304da, 0x7f0304dc, 0x7f0304dd, 0x7f030504, 0x7f030512, 0x7f030513, 0x7f030514, 0x7f030515, 0x7f030516, 0x7f030517, 0x7f030518, 0x7f030519, 0x7f03051a, 0x7f03051b }; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseContentDescription = 19; + public static final int AppCompatTheme_actionModeCloseDrawable = 20; + public static final int AppCompatTheme_actionModeCopyDrawable = 21; + public static final int AppCompatTheme_actionModeCutDrawable = 22; + public static final int AppCompatTheme_actionModeFindDrawable = 23; + public static final int AppCompatTheme_actionModePasteDrawable = 24; + public static final int AppCompatTheme_actionModePopupWindowStyle = 25; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 26; + public static final int AppCompatTheme_actionModeShareDrawable = 27; + public static final int AppCompatTheme_actionModeSplitBackground = 28; + public static final int AppCompatTheme_actionModeStyle = 29; + public static final int AppCompatTheme_actionModeTheme = 30; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 31; + public static final int AppCompatTheme_actionOverflowButtonStyle = 32; + public static final int AppCompatTheme_actionOverflowMenuStyle = 33; + public static final int AppCompatTheme_activityChooserViewStyle = 34; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 35; + public static final int AppCompatTheme_alertDialogCenterButtons = 36; + public static final int AppCompatTheme_alertDialogStyle = 37; + public static final int AppCompatTheme_alertDialogTheme = 38; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 39; + public static final int AppCompatTheme_borderlessButtonStyle = 40; + public static final int AppCompatTheme_buttonBarButtonStyle = 41; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 42; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 43; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 44; + public static final int AppCompatTheme_buttonBarStyle = 45; + public static final int AppCompatTheme_buttonStyle = 46; + public static final int AppCompatTheme_buttonStyleSmall = 47; + public static final int AppCompatTheme_checkboxStyle = 48; + public static final int AppCompatTheme_checkedTextViewStyle = 49; + public static final int AppCompatTheme_colorAccent = 50; + public static final int AppCompatTheme_colorBackgroundFloating = 51; + public static final int AppCompatTheme_colorButtonNormal = 52; + public static final int AppCompatTheme_colorControlActivated = 53; + public static final int AppCompatTheme_colorControlHighlight = 54; + public static final int AppCompatTheme_colorControlNormal = 55; + public static final int AppCompatTheme_colorError = 56; + public static final int AppCompatTheme_colorPrimary = 57; + public static final int AppCompatTheme_colorPrimaryDark = 58; + public static final int AppCompatTheme_colorSwitchThumbNormal = 59; + public static final int AppCompatTheme_controlBackground = 60; + public static final int AppCompatTheme_dialogCornerRadius = 61; + public static final int AppCompatTheme_dialogPreferredPadding = 62; + public static final int AppCompatTheme_dialogTheme = 63; + public static final int AppCompatTheme_dividerHorizontal = 64; + public static final int AppCompatTheme_dividerVertical = 65; + public static final int AppCompatTheme_dropDownListViewStyle = 66; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 67; + public static final int AppCompatTheme_editTextBackground = 68; + public static final int AppCompatTheme_editTextColor = 69; + public static final int AppCompatTheme_editTextStyle = 70; + public static final int AppCompatTheme_homeAsUpIndicator = 71; + public static final int AppCompatTheme_imageButtonStyle = 72; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 73; + public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 74; + public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated = 75; + public static final int AppCompatTheme_listDividerAlertDialog = 76; + public static final int AppCompatTheme_listMenuViewStyle = 77; + public static final int AppCompatTheme_listPopupWindowStyle = 78; + public static final int AppCompatTheme_listPreferredItemHeight = 79; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 80; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 81; + public static final int AppCompatTheme_listPreferredItemPaddingEnd = 82; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 83; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 84; + public static final int AppCompatTheme_listPreferredItemPaddingStart = 85; + public static final int AppCompatTheme_panelBackground = 86; + public static final int AppCompatTheme_panelMenuListTheme = 87; + public static final int AppCompatTheme_panelMenuListWidth = 88; + public static final int AppCompatTheme_popupMenuStyle = 89; + public static final int AppCompatTheme_popupWindowStyle = 90; + public static final int AppCompatTheme_radioButtonStyle = 91; + public static final int AppCompatTheme_ratingBarStyle = 92; + public static final int AppCompatTheme_ratingBarStyleIndicator = 93; + public static final int AppCompatTheme_ratingBarStyleSmall = 94; + public static final int AppCompatTheme_searchViewStyle = 95; + public static final int AppCompatTheme_seekBarStyle = 96; + public static final int AppCompatTheme_selectableItemBackground = 97; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 98; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 99; + public static final int AppCompatTheme_spinnerStyle = 100; + public static final int AppCompatTheme_switchStyle = 101; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 102; + public static final int AppCompatTheme_textAppearanceListItem = 103; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 104; + public static final int AppCompatTheme_textAppearanceListItemSmall = 105; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 106; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 107; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 108; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 109; + public static final int AppCompatTheme_textColorAlertDialogListItem = 110; + public static final int AppCompatTheme_textColorSearchUrl = 111; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 112; + public static final int AppCompatTheme_toolbarStyle = 113; + public static final int AppCompatTheme_tooltipForegroundColor = 114; + public static final int AppCompatTheme_tooltipFrameBackground = 115; + public static final int AppCompatTheme_viewInflaterClass = 116; + public static final int AppCompatTheme_windowActionBar = 117; + public static final int AppCompatTheme_windowActionBarOverlay = 118; + public static final int AppCompatTheme_windowActionModeOverlay = 119; + public static final int AppCompatTheme_windowFixedHeightMajor = 120; + public static final int AppCompatTheme_windowFixedHeightMinor = 121; + public static final int AppCompatTheme_windowFixedWidthMajor = 122; + public static final int AppCompatTheme_windowFixedWidthMinor = 123; + public static final int AppCompatTheme_windowMinWidthMajor = 124; + public static final int AppCompatTheme_windowMinWidthMinor = 125; + public static final int AppCompatTheme_windowNoTitle = 126; + public static final int[] ButtonBarLayout = new int[] { 0x7f030030 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] CheckedTextView = new int[] { 0x01010108, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8 }; + public static final int CheckedTextView_android_checkMark = 0; + public static final int CheckedTextView_checkMarkCompat = 1; + public static final int CheckedTextView_checkMarkTint = 2; + public static final int CheckedTextView_checkMarkTintMode = 3; + public static final int[] CompoundButton = new int[] { 0x01010107, 0x7f030096, 0x7f03009f, 0x7f0300a0 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonCompat = 1; + public static final int CompoundButton_buttonTint = 2; + public static final int CompoundButton_buttonTintMode = 3; + public static final int[] DrawerArrowToggle = new int[] { 0x7f03003f, 0x7f030040, 0x7f030069, 0x7f0300fb, 0x7f030199, 0x7f03021e, 0x7f030408, 0x7f0304ac }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = new int[] { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030189, 0x7f03018e, 0x7f03032d, 0x7f0303f2 }; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = new int[] { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int[] ListPopupWindow = new int[] { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = new int[] { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = new int[] { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x7f030142, 0x7f03024a, 0x7f03024b, 0x7f030379, 0x7f0303f0, 0x7f0304df }; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = new int[] { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0303af, 0x7f030433 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = new int[] { 0x01010176, 0x010102c9, 0x7f030382 }; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = new int[] { 0x7f030424 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = new int[] { 0x7f030384, 0x7f03038b }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = new int[] { 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, 0x01010150, 0x01010220, 0x01010264, 0x7f030036, 0x7f030037, 0x7f030045, 0x7f03004c, 0x7f030056, 0x7f0300e7, 0x7f030138, 0x7f03017e, 0x7f030220, 0x7f030230, 0x7f030238, 0x7f03024c, 0x7f03028b, 0x7f0303b7, 0x7f0303b8, 0x7f0303d6, 0x7f0303d7, 0x7f0303d8, 0x7f030438, 0x7f030441, 0x7f0304ff, 0x7f03050a }; + public static final int SearchView_android_focusable = 1; + public static final int SearchView_android_imeOptions = 6; + public static final int SearchView_android_inputType = 5; + public static final int SearchView_android_maxWidth = 2; + public static final int SearchView_closeIcon = 12; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 14; + public static final int SearchView_goIcon = 15; + public static final int SearchView_iconifiedByDefault = 18; + public static final int SearchView_layout = 19; + public static final int SearchView_queryBackground = 20; + public static final int SearchView_queryHint = 21; + public static final int SearchView_searchHintIcon = 22; + public static final int SearchView_searchIcon = 23; + public static final int SearchView_submitBackground = 25; + public static final int SearchView_suggestionRowLayout = 26; + public static final int SearchView_voiceIcon = 28; + public static final int[] Spinner = new int[] { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0303aa }; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = new int[] { 0x01010124, 0x01010125, 0x01010142, 0x7f0303f6, 0x7f030412, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f0304b7, 0x7f0304b8, 0x7f0304b9, 0x7f0304e4, 0x7f0304f0, 0x7f0304f1 }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = new int[] { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03020e, 0x7f030218, 0x7f03046a, 0x7f0304a1 }; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_textFontWeight = 11; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_fontFamily = 12; + public static final int TextAppearance_fontVariationSettings = 13; + public static final int TextAppearance_textAllCaps = 14; + public static final int TextAppearance_textLocale = 15; + public static final int[] Toolbar = new int[] { 0x010100af, 0x01010140, 0x7f030097, 0x7f0300ef, 0x7f0300f0, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f0302ea, 0x7f0302ec, 0x7f030325, 0x7f03032e, 0x7f03036e, 0x7f03036f, 0x7f0303aa, 0x7f030439, 0x7f03043b, 0x7f03043c, 0x7f0304c8, 0x7f0304cc, 0x7f0304cd, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0, 0x7f0304d1, 0x7f0304d3, 0x7f0304d4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_menu = 14; + public static final int Toolbar_navigationContentDescription = 15; + public static final int Toolbar_navigationIcon = 16; + public static final int Toolbar_popupTheme = 17; + public static final int Toolbar_subtitle = 18; + public static final int Toolbar_subtitleTextAppearance = 19; + public static final int Toolbar_subtitleTextColor = 20; + public static final int Toolbar_title = 21; + public static final int Toolbar_titleMargin = 22; + public static final int Toolbar_titleMarginBottom = 23; + public static final int Toolbar_titleMarginEnd = 24; + public static final int Toolbar_titleMarginStart = 25; + public static final int Toolbar_titleMarginTop = 26; + public static final int Toolbar_titleMargins = 27; + public static final int Toolbar_titleTextAppearance = 28; + public static final int Toolbar_titleTextColor = 29; + public static final int[] View = new int[] { 0x01010000, 0x010100da, 0x7f030386, 0x7f030389, 0x7f0304ab }; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = new int[] { 0x010100d4, 0x7f030056, 0x7f030057 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = new int[] { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java new file mode 100644 index 0000000..202e9fe --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java @@ -0,0 +1,47 @@ +package androidx.appcompat.app; + + +public class AlertDialog_IDialogInterfaceOnCancelListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnCancelListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCancel:(Landroid/content/DialogInterface;)V:GetOnCancel_Landroid_content_DialogInterface_Handler:Android.Content.IDialogInterfaceOnCancelListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.AndroidX.AppCompat", AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class, __md_methods); + } + + public AlertDialog_IDialogInterfaceOnCancelListenerImplementor () + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onCancel (android.content.DialogInterface p0) + { + n_onCancel (p0); + } + + private native void n_onCancel (android.content.DialogInterface p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java new file mode 100644 index 0000000..0c16cfb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java @@ -0,0 +1,47 @@ +package androidx.appcompat.app; + + +public class AlertDialog_IDialogInterfaceOnClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/content/DialogInterface;I)V:GetOnClick_Landroid_content_DialogInterface_IHandler:Android.Content.IDialogInterfaceOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.AndroidX.AppCompat", AlertDialog_IDialogInterfaceOnClickListenerImplementor.class, __md_methods); + } + + public AlertDialog_IDialogInterfaceOnClickListenerImplementor () + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.content.DialogInterface p0, int p1) + { + n_onClick (p0, p1); + } + + private native void n_onClick (android.content.DialogInterface p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java new file mode 100644 index 0000000..da20f0b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java @@ -0,0 +1,47 @@ +package androidx.appcompat.app; + + +public class AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnMultiChoiceClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/content/DialogInterface;IZ)V:GetOnClick_Landroid_content_DialogInterface_IZHandler:Android.Content.IDialogInterfaceOnMultiChoiceClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.AndroidX.AppCompat", AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class, __md_methods); + } + + public AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor () + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.content.DialogInterface p0, int p1, boolean p2) + { + n_onClick (p0, p1, p2); + } + + private native void n_onClick (android.content.DialogInterface p0, int p1, boolean p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/resources/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/resources/R.java new file mode 100644 index 0000000..5170635 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/resources/R.java @@ -0,0 +1,39 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.appcompat.resources; + +public final class R { + public static final class drawable { + public static final int abc_vector_test = 0x7f070076; + } + public static final class styleable { + public static final int[] AnimatedStateListDrawableCompat = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int[] AnimatedStateListDrawableItem = new int[] { 0x010100d0, 0x01010199 }; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int[] AnimatedStateListDrawableTransition = new int[] { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int[] StateListDrawable = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_visible = 1; + public static final int[] StateListDrawableItem = new int[] { 0x01010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/widget/Toolbar_NavigationOnClickEventDispatcher.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/widget/Toolbar_NavigationOnClickEventDispatcher.java new file mode 100644 index 0000000..7f0ae1e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/appcompat/widget/Toolbar_NavigationOnClickEventDispatcher.java @@ -0,0 +1,55 @@ +package androidx.appcompat.widget; + + +public class Toolbar_NavigationOnClickEventDispatcher + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.AndroidX.AppCompat", Toolbar_NavigationOnClickEventDispatcher.class, __md_methods); + } + + public Toolbar_NavigationOnClickEventDispatcher () + { + super (); + if (getClass () == Toolbar_NavigationOnClickEventDispatcher.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public Toolbar_NavigationOnClickEventDispatcher (androidx.appcompat.widget.Toolbar p0) + { + super (); + if (getClass () == Toolbar_NavigationOnClickEventDispatcher.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.AndroidX.AppCompat", "AndroidX.AppCompat.Widget.Toolbar, Xamarin.AndroidX.AppCompat", this, new java.lang.Object[] { p0 }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/arch/core/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/arch/core/R.java new file mode 100644 index 0000000..4f54799 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/arch/core/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.arch.core; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/R.java new file mode 100644 index 0000000..465b6bf --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/R.java @@ -0,0 +1,40 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.browser; + +public final class R { + public static final class color { + public static final int browser_actions_bg_grey = 0x7f050027; + public static final int browser_actions_divider_color = 0x7f050028; + public static final int browser_actions_text_color = 0x7f050029; + public static final int browser_actions_title_color = 0x7f05002a; + } + public static final class dimen { + public static final int browser_actions_context_menu_max_width = 0x7f060052; + public static final int browser_actions_context_menu_min_padding = 0x7f060053; + } + public static final class id { + public static final int browser_actions_header_text = 0x7f08006a; + public static final int browser_actions_menu_item_icon = 0x7f08006b; + public static final int browser_actions_menu_item_text = 0x7f08006c; + public static final int browser_actions_menu_items = 0x7f08006d; + public static final int browser_actions_menu_view = 0x7f08006e; + } + public static final class layout { + public static final int browser_actions_context_menu_page = 0x7f0b001c; + public static final int browser_actions_context_menu_row = 0x7f0b001d; + } + public static final class string { + public static final int copy_toast_msg = 0x7f0f002e; + public static final int fallback_menu_item_copy_link = 0x7f0f0035; + public static final int fallback_menu_item_open_in_browser = 0x7f0f0036; + public static final int fallback_menu_item_share_link = 0x7f0f0037; + } + public static final class xml { + public static final int image_share_filepaths = 0x7f120000; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java new file mode 100644 index 0000000..f09f6c4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/browser/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java @@ -0,0 +1,54 @@ +package androidx.browser.customtabs; + + +public class CustomTabsClient_CustomTabsCallbackImpl + extends androidx.browser.customtabs.CustomTabsCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationEvent:(ILandroid/os/Bundle;)V:GetOnNavigationEvent_ILandroid_os_Bundle_Handler\n" + + "n_extraCallback:(Ljava/lang/String;Landroid/os/Bundle;)V:GetExtraCallback_Ljava_lang_String_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("AndroidX.Browser.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.AndroidX.Browser", CustomTabsClient_CustomTabsCallbackImpl.class, __md_methods); + } + + public CustomTabsClient_CustomTabsCallbackImpl () + { + super (); + if (getClass () == CustomTabsClient_CustomTabsCallbackImpl.class) { + mono.android.TypeManager.Activate ("AndroidX.Browser.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.AndroidX.Browser", "", this, new java.lang.Object[] { }); + } + } + + public void onNavigationEvent (int p0, android.os.Bundle p1) + { + n_onNavigationEvent (p0, p1); + } + + private native void n_onNavigationEvent (int p0, android.os.Bundle p1); + + public void extraCallback (java.lang.String p0, android.os.Bundle p1) + { + n_extraCallback (p0, p1); + } + + private native void n_extraCallback (java.lang.String p0, android.os.Bundle p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cardview/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cardview/R.java new file mode 100644 index 0000000..c10e103 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cardview/R.java @@ -0,0 +1,57 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.cardview; + +public final class R { + public static final class attr { + public static final int cardBackgroundColor = 0x7f0300a1; + public static final int cardCornerRadius = 0x7f0300a2; + public static final int cardElevation = 0x7f0300a3; + public static final int cardMaxElevation = 0x7f0300a5; + public static final int cardPreventCornerOverlap = 0x7f0300a6; + public static final int cardUseCompatPadding = 0x7f0300a7; + public static final int cardViewStyle = 0x7f0300a8; + public static final int contentPadding = 0x7f030149; + public static final int contentPaddingBottom = 0x7f03014a; + public static final int contentPaddingLeft = 0x7f03014c; + public static final int contentPaddingRight = 0x7f03014d; + public static final int contentPaddingTop = 0x7f03014f; + } + public static final class color { + public static final int cardview_dark_background = 0x7f05002f; + public static final int cardview_light_background = 0x7f050030; + public static final int cardview_shadow_end_color = 0x7f050031; + public static final int cardview_shadow_start_color = 0x7f050032; + } + public static final class dimen { + public static final int cardview_compat_inset_shadow = 0x7f060054; + public static final int cardview_default_elevation = 0x7f060055; + public static final int cardview_default_radius = 0x7f060056; + } + public static final class style { + public static final int Base_CardView = 0x7f100013; + public static final int CardView = 0x7f100122; + public static final int CardView_Dark = 0x7f100123; + public static final int CardView_Light = 0x7f100124; + } + public static final class styleable { + public static final int[] CardView = new int[] { 0x0101013f, 0x01010140, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f030149, 0x7f03014a, 0x7f03014c, 0x7f03014d, 0x7f03014f }; + public static final int CardView_android_minHeight = 1; + public static final int CardView_android_minWidth = 0; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/constraintlayout/widget/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/constraintlayout/widget/R.java new file mode 100644 index 0000000..c7bd2ba --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/constraintlayout/widget/R.java @@ -0,0 +1,1292 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.constraintlayout.widget; + +public final class R { + public static final class attr { + public static final int SharedValue = 0x7f030000; + public static final int SharedValueId = 0x7f030001; + public static final int altSrc = 0x7f030033; + public static final int animateCircleAngleTo = 0x7f030035; + public static final int animateRelativeTo = 0x7f030038; + public static final int applyMotionScene = 0x7f03003c; + public static final int arcMode = 0x7f03003d; + public static final int attributeName = 0x7f030041; + public static final int autoCompleteMode = 0x7f030043; + public static final int autoTransition = 0x7f03004b; + public static final int barrierAllowsGoneWidgets = 0x7f03006a; + public static final int barrierDirection = 0x7f03006b; + public static final int barrierMargin = 0x7f03006c; + public static final int blendSrc = 0x7f030079; + public static final int borderRound = 0x7f03007a; + public static final int borderRoundPercent = 0x7f03007b; + public static final int brightness = 0x7f030090; + public static final int carousel_backwardTransition = 0x7f0300aa; + public static final int carousel_emptyViewsBehavior = 0x7f0300ab; + public static final int carousel_firstView = 0x7f0300ac; + public static final int carousel_forwardTransition = 0x7f0300ad; + public static final int carousel_infinite = 0x7f0300ae; + public static final int carousel_nextState = 0x7f0300af; + public static final int carousel_previousState = 0x7f0300b0; + public static final int carousel_touchUpMode = 0x7f0300b1; + public static final int carousel_touchUp_dampeningFactor = 0x7f0300b2; + public static final int carousel_touchUp_velocityThreshold = 0x7f0300b3; + public static final int chainUseRtl = 0x7f0300b5; + public static final int circleRadius = 0x7f0300d9; + public static final int circularflow_angles = 0x7f0300db; + public static final int circularflow_defaultAngle = 0x7f0300dc; + public static final int circularflow_defaultRadius = 0x7f0300dd; + public static final int circularflow_radiusInDP = 0x7f0300de; + public static final int circularflow_viewCenter = 0x7f0300df; + public static final int clearsTag = 0x7f0300e1; + public static final int clickAction = 0x7f0300e2; + public static final int constraintRotate = 0x7f03013a; + public static final int constraintSet = 0x7f03013b; + public static final int constraintSetEnd = 0x7f03013c; + public static final int constraintSetStart = 0x7f03013d; + public static final int constraint_referenced_ids = 0x7f03013e; + public static final int constraint_referenced_tags = 0x7f03013f; + public static final int constraints = 0x7f030140; + public static final int content = 0x7f030141; + public static final int contrast = 0x7f030151; + public static final int crossfade = 0x7f030166; + public static final int currentState = 0x7f030167; + public static final int curveFit = 0x7f03016a; + public static final int customBoolean = 0x7f03016b; + public static final int customColorDrawableValue = 0x7f03016c; + public static final int customColorValue = 0x7f03016d; + public static final int customDimension = 0x7f03016e; + public static final int customFloatValue = 0x7f03016f; + public static final int customIntegerValue = 0x7f030170; + public static final int customPixelDimension = 0x7f030172; + public static final int customReference = 0x7f030173; + public static final int customStringValue = 0x7f030174; + public static final int defaultDuration = 0x7f03017b; + public static final int defaultState = 0x7f030180; + public static final int deltaPolarAngle = 0x7f030181; + public static final int deltaPolarRadius = 0x7f030182; + public static final int deriveConstraintsFrom = 0x7f030183; + public static final int dragDirection = 0x7f030191; + public static final int dragScale = 0x7f030192; + public static final int dragThreshold = 0x7f030193; + public static final int drawPath = 0x7f030194; + public static final int duration = 0x7f0301a4; + public static final int flow_firstHorizontalBias = 0x7f0301fa; + public static final int flow_firstHorizontalStyle = 0x7f0301fb; + public static final int flow_firstVerticalBias = 0x7f0301fc; + public static final int flow_firstVerticalStyle = 0x7f0301fd; + public static final int flow_horizontalAlign = 0x7f0301fe; + public static final int flow_horizontalBias = 0x7f0301ff; + public static final int flow_horizontalGap = 0x7f030200; + public static final int flow_horizontalStyle = 0x7f030201; + public static final int flow_lastHorizontalBias = 0x7f030202; + public static final int flow_lastHorizontalStyle = 0x7f030203; + public static final int flow_lastVerticalBias = 0x7f030204; + public static final int flow_lastVerticalStyle = 0x7f030205; + public static final int flow_maxElementsWrap = 0x7f030206; + public static final int flow_padding = 0x7f030207; + public static final int flow_verticalAlign = 0x7f030208; + public static final int flow_verticalBias = 0x7f030209; + public static final int flow_verticalGap = 0x7f03020a; + public static final int flow_verticalStyle = 0x7f03020b; + public static final int flow_wrapMode = 0x7f03020c; + public static final int framePosition = 0x7f03021d; + public static final int grid_columnWeights = 0x7f030222; + public static final int grid_columns = 0x7f030223; + public static final int grid_horizontalGaps = 0x7f030224; + public static final int grid_orientation = 0x7f030225; + public static final int grid_rowWeights = 0x7f030226; + public static final int grid_rows = 0x7f030227; + public static final int grid_skips = 0x7f030228; + public static final int grid_spans = 0x7f030229; + public static final int grid_useRtl = 0x7f03022a; + public static final int grid_validateInputs = 0x7f03022b; + public static final int grid_verticalGaps = 0x7f03022c; + public static final int guidelineUseRtl = 0x7f03022d; + public static final int ifTagNotSet = 0x7f03024d; + public static final int ifTagSet = 0x7f03024e; + public static final int imagePanX = 0x7f030250; + public static final int imagePanY = 0x7f030251; + public static final int imageRotate = 0x7f030252; + public static final int imageZoom = 0x7f030253; + public static final int keyPositionType = 0x7f030280; + public static final int layoutDescription = 0x7f03028c; + public static final int layoutDuringTransition = 0x7f03028d; + public static final int layout_constrainedHeight = 0x7f030294; + public static final int layout_constrainedWidth = 0x7f030295; + public static final int layout_constraintBaseline_creator = 0x7f030296; + public static final int layout_constraintBaseline_toBaselineOf = 0x7f030297; + public static final int layout_constraintBaseline_toBottomOf = 0x7f030298; + public static final int layout_constraintBaseline_toTopOf = 0x7f030299; + public static final int layout_constraintBottom_creator = 0x7f03029a; + public static final int layout_constraintBottom_toBottomOf = 0x7f03029b; + public static final int layout_constraintBottom_toTopOf = 0x7f03029c; + public static final int layout_constraintCircle = 0x7f03029d; + public static final int layout_constraintCircleAngle = 0x7f03029e; + public static final int layout_constraintCircleRadius = 0x7f03029f; + public static final int layout_constraintDimensionRatio = 0x7f0302a0; + public static final int layout_constraintEnd_toEndOf = 0x7f0302a1; + public static final int layout_constraintEnd_toStartOf = 0x7f0302a2; + public static final int layout_constraintGuide_begin = 0x7f0302a3; + public static final int layout_constraintGuide_end = 0x7f0302a4; + public static final int layout_constraintGuide_percent = 0x7f0302a5; + public static final int layout_constraintHeight = 0x7f0302a6; + public static final int layout_constraintHeight_default = 0x7f0302a7; + public static final int layout_constraintHeight_max = 0x7f0302a8; + public static final int layout_constraintHeight_min = 0x7f0302a9; + public static final int layout_constraintHeight_percent = 0x7f0302aa; + public static final int layout_constraintHorizontal_bias = 0x7f0302ab; + public static final int layout_constraintHorizontal_chainStyle = 0x7f0302ac; + public static final int layout_constraintHorizontal_weight = 0x7f0302ad; + public static final int layout_constraintLeft_creator = 0x7f0302ae; + public static final int layout_constraintLeft_toLeftOf = 0x7f0302af; + public static final int layout_constraintLeft_toRightOf = 0x7f0302b0; + public static final int layout_constraintRight_creator = 0x7f0302b1; + public static final int layout_constraintRight_toLeftOf = 0x7f0302b2; + public static final int layout_constraintRight_toRightOf = 0x7f0302b3; + public static final int layout_constraintStart_toEndOf = 0x7f0302b4; + public static final int layout_constraintStart_toStartOf = 0x7f0302b5; + public static final int layout_constraintTag = 0x7f0302b6; + public static final int layout_constraintTop_creator = 0x7f0302b7; + public static final int layout_constraintTop_toBottomOf = 0x7f0302b8; + public static final int layout_constraintTop_toTopOf = 0x7f0302b9; + public static final int layout_constraintVertical_bias = 0x7f0302ba; + public static final int layout_constraintVertical_chainStyle = 0x7f0302bb; + public static final int layout_constraintVertical_weight = 0x7f0302bc; + public static final int layout_constraintWidth = 0x7f0302bd; + public static final int layout_constraintWidth_default = 0x7f0302be; + public static final int layout_constraintWidth_max = 0x7f0302bf; + public static final int layout_constraintWidth_min = 0x7f0302c0; + public static final int layout_constraintWidth_percent = 0x7f0302c1; + public static final int layout_editor_absoluteX = 0x7f0302c3; + public static final int layout_editor_absoluteY = 0x7f0302c4; + public static final int layout_goneMarginBaseline = 0x7f0302c5; + public static final int layout_goneMarginBottom = 0x7f0302c6; + public static final int layout_goneMarginEnd = 0x7f0302c7; + public static final int layout_goneMarginLeft = 0x7f0302c8; + public static final int layout_goneMarginRight = 0x7f0302c9; + public static final int layout_goneMarginStart = 0x7f0302ca; + public static final int layout_goneMarginTop = 0x7f0302cb; + public static final int layout_marginBaseline = 0x7f0302ce; + public static final int layout_optimizationLevel = 0x7f0302cf; + public static final int layout_wrapBehaviorInParent = 0x7f0302d3; + public static final int limitBoundsTo = 0x7f0302d7; + public static final int maxAcceleration = 0x7f030323; + public static final int maxHeight = 0x7f030327; + public static final int maxVelocity = 0x7f03032b; + public static final int maxWidth = 0x7f03032c; + public static final int methodName = 0x7f030331; + public static final int minHeight = 0x7f030333; + public static final int minWidth = 0x7f030337; + public static final int mock_diagonalsColor = 0x7f030338; + public static final int mock_label = 0x7f030339; + public static final int mock_labelBackgroundColor = 0x7f03033a; + public static final int mock_labelColor = 0x7f03033b; + public static final int mock_showDiagonals = 0x7f03033c; + public static final int mock_showLabel = 0x7f03033d; + public static final int motionDebug = 0x7f03033e; + public static final int motionEffect_alpha = 0x7f03035b; + public static final int motionEffect_end = 0x7f03035c; + public static final int motionEffect_move = 0x7f03035d; + public static final int motionEffect_start = 0x7f03035e; + public static final int motionEffect_strict = 0x7f03035f; + public static final int motionEffect_translationX = 0x7f030360; + public static final int motionEffect_translationY = 0x7f030361; + public static final int motionEffect_viewTransition = 0x7f030362; + public static final int motionInterpolator = 0x7f030363; + public static final int motionPathRotate = 0x7f030365; + public static final int motionProgress = 0x7f030366; + public static final int motionStagger = 0x7f030367; + public static final int motionTarget = 0x7f030368; + public static final int motion_postLayoutCollision = 0x7f030369; + public static final int motion_triggerOnCollision = 0x7f03036a; + public static final int moveWhenScrollAtTop = 0x7f03036b; + public static final int nestedScrollFlags = 0x7f030374; + public static final int onCross = 0x7f03037b; + public static final int onHide = 0x7f03037c; + public static final int onNegativeCross = 0x7f03037d; + public static final int onPositiveCross = 0x7f03037e; + public static final int onShow = 0x7f03037f; + public static final int onStateTransition = 0x7f030380; + public static final int onTouchUp = 0x7f030381; + public static final int overlay = 0x7f030383; + public static final int pathMotionArc = 0x7f030395; + public static final int path_percent = 0x7f030396; + public static final int percentHeight = 0x7f030397; + public static final int percentWidth = 0x7f030398; + public static final int percentX = 0x7f030399; + public static final int percentY = 0x7f03039a; + public static final int perpendicularPath_percent = 0x7f03039b; + public static final int pivotAnchor = 0x7f03039c; + public static final int placeholder_emptyVisibility = 0x7f0303a1; + public static final int polarRelativeTo = 0x7f0303a2; + public static final int quantizeMotionInterpolator = 0x7f0303b4; + public static final int quantizeMotionPhase = 0x7f0303b5; + public static final int quantizeMotionSteps = 0x7f0303b6; + public static final int reactiveGuide_animateChange = 0x7f0303bf; + public static final int reactiveGuide_applyToAllConstraintSets = 0x7f0303c0; + public static final int reactiveGuide_applyToConstraintSet = 0x7f0303c1; + public static final int reactiveGuide_valueId = 0x7f0303c2; + public static final int region_heightLessThan = 0x7f0303c4; + public static final int region_heightMoreThan = 0x7f0303c5; + public static final int region_widthLessThan = 0x7f0303c6; + public static final int region_widthMoreThan = 0x7f0303c7; + public static final int rotationCenterId = 0x7f0303cc; + public static final int round = 0x7f0303cd; + public static final int roundPercent = 0x7f0303ce; + public static final int saturation = 0x7f0303d0; + public static final int scaleFromTextSize = 0x7f0303d1; + public static final int setsTag = 0x7f0303e1; + public static final int showPaths = 0x7f0303f5; + public static final int sizePercent = 0x7f030402; + public static final int springBoundary = 0x7f030413; + public static final int springDamping = 0x7f030414; + public static final int springMass = 0x7f030415; + public static final int springStiffness = 0x7f030416; + public static final int springStopThreshold = 0x7f030417; + public static final int staggered = 0x7f03041a; + public static final int stateLabels = 0x7f030423; + public static final int targetId = 0x7f030465; + public static final int telltales_tailColor = 0x7f030467; + public static final int telltales_tailScale = 0x7f030468; + public static final int telltales_velocityMode = 0x7f030469; + public static final int textBackground = 0x7f030490; + public static final int textBackgroundPanX = 0x7f030491; + public static final int textBackgroundPanY = 0x7f030492; + public static final int textBackgroundRotate = 0x7f030493; + public static final int textBackgroundZoom = 0x7f030494; + public static final int textFillColor = 0x7f030498; + public static final int textOutlineColor = 0x7f0304a2; + public static final int textOutlineThickness = 0x7f0304a3; + public static final int textPanX = 0x7f0304a4; + public static final int textPanY = 0x7f0304a5; + public static final int textureBlurFactor = 0x7f0304a7; + public static final int textureEffect = 0x7f0304a8; + public static final int textureHeight = 0x7f0304a9; + public static final int textureWidth = 0x7f0304aa; + public static final int touchAnchorId = 0x7f0304e1; + public static final int touchAnchorSide = 0x7f0304e2; + public static final int touchRegionId = 0x7f0304e3; + public static final int transformPivotTarget = 0x7f0304f2; + public static final int transitionDisable = 0x7f0304f3; + public static final int transitionEasing = 0x7f0304f4; + public static final int transitionFlags = 0x7f0304f5; + public static final int transitionPathRotate = 0x7f0304f6; + public static final int triggerId = 0x7f0304f8; + public static final int triggerReceiver = 0x7f0304f9; + public static final int triggerSlack = 0x7f0304fa; + public static final int upDuration = 0x7f0304fc; + public static final int viewTransitionMode = 0x7f030505; + public static final int viewTransitionOnCross = 0x7f030506; + public static final int viewTransitionOnNegativeCross = 0x7f030507; + public static final int viewTransitionOnPositiveCross = 0x7f030508; + public static final int visibilityMode = 0x7f030509; + public static final int warmth = 0x7f03050b; + public static final int waveDecay = 0x7f03050c; + public static final int waveOffset = 0x7f03050d; + public static final int wavePeriod = 0x7f03050e; + public static final int wavePhase = 0x7f03050f; + public static final int waveShape = 0x7f030510; + public static final int waveVariesBy = 0x7f030511; + } + public static final class id { + public static final int NO_DEBUG = 0x7f080006; + public static final int SHOW_ALL = 0x7f080008; + public static final int SHOW_PATH = 0x7f080009; + public static final int SHOW_PROGRESS = 0x7f08000a; + public static final int above = 0x7f08000e; + public static final int accelerate = 0x7f08000f; + public static final int actionDown = 0x7f080031; + public static final int actionDownUp = 0x7f080032; + public static final int actionUp = 0x7f080033; + public static final int aligned = 0x7f08004a; + public static final int allStates = 0x7f08004c; + public static final int animateToEnd = 0x7f080051; + public static final int animateToStart = 0x7f080052; + public static final int antiClockwise = 0x7f080053; + public static final int anticipate = 0x7f080054; + public static final int asConfigured = 0x7f080056; + public static final int auto = 0x7f080058; + public static final int autoComplete = 0x7f080059; + public static final int autoCompleteToEnd = 0x7f08005a; + public static final int autoCompleteToStart = 0x7f08005b; + public static final int axisRelative = 0x7f08005c; + public static final int baseline = 0x7f08005e; + public static final int below = 0x7f080061; + public static final int bestChoice = 0x7f080062; + public static final int bottom = 0x7f080064; + public static final int bounce = 0x7f080066; + public static final int callMeasure = 0x7f080071; + public static final int carryVelocity = 0x7f080073; + public static final int center = 0x7f080074; + public static final int chain = 0x7f080079; + public static final int chain2 = 0x7f08007a; + public static final int clockwise = 0x7f080083; + public static final int closest = 0x7f080084; + public static final int constraint = 0x7f080088; + public static final int continuousVelocity = 0x7f08008d; + public static final int cos = 0x7f08008f; + public static final int currentState = 0x7f080092; + public static final int decelerate = 0x7f080097; + public static final int decelerateAndComplete = 0x7f080098; + public static final int deltaRelative = 0x7f08009b; + public static final int dragAnticlockwise = 0x7f0800aa; + public static final int dragClockwise = 0x7f0800ab; + public static final int dragDown = 0x7f0800ac; + public static final int dragEnd = 0x7f0800ad; + public static final int dragLeft = 0x7f0800ae; + public static final int dragRight = 0x7f0800af; + public static final int dragStart = 0x7f0800b0; + public static final int dragUp = 0x7f0800b1; + public static final int easeIn = 0x7f0800b3; + public static final int easeInOut = 0x7f0800b4; + public static final int easeOut = 0x7f0800b5; + public static final int east = 0x7f0800b6; + public static final int end = 0x7f0800bc; + public static final int flip = 0x7f0800cf; + public static final int frost = 0x7f0800d4; + public static final int gone = 0x7f0800d9; + public static final int honorRequest = 0x7f0800e4; + public static final int horizontal = 0x7f0800e5; + public static final int horizontal_only = 0x7f0800e6; + public static final int ignore = 0x7f0800ea; + public static final int ignoreRequest = 0x7f0800eb; + public static final int immediateStop = 0x7f0800ed; + public static final int included = 0x7f0800ee; + public static final int invisible = 0x7f0800f1; + public static final int jumpToEnd = 0x7f0800f6; + public static final int jumpToStart = 0x7f0800f7; + public static final int layout = 0x7f0800f9; + public static final int left = 0x7f0800fa; + public static final int linear = 0x7f0800ff; + public static final int match_constraint = 0x7f080107; + public static final int match_parent = 0x7f080108; + public static final int middle = 0x7f080120; + public static final int motion_base = 0x7f080128; + public static final int neverCompleteToEnd = 0x7f080151; + public static final int neverCompleteToStart = 0x7f080152; + public static final int noState = 0x7f080154; + public static final int none = 0x7f080155; + public static final int normal = 0x7f080156; + public static final int north = 0x7f080157; + public static final int overshoot = 0x7f08016e; + public static final int packed = 0x7f08016f; + public static final int parent = 0x7f080171; + public static final int parentRelative = 0x7f080173; + public static final int path = 0x7f080176; + public static final int pathRelative = 0x7f080177; + public static final int percent = 0x7f080179; + public static final int position = 0x7f08017c; + public static final int postLayout = 0x7f08017d; + public static final int rectangles = 0x7f080183; + public static final int reverseSawtooth = 0x7f080185; + public static final int right = 0x7f080186; + public static final int sawtooth = 0x7f08018f; + public static final int sharedValueSet = 0x7f0801a4; + public static final int sharedValueUnset = 0x7f0801a5; + public static final int sin = 0x7f0801ab; + public static final int skipped = 0x7f0801ad; + public static final int south = 0x7f0801b5; + public static final int spline = 0x7f0801b8; + public static final int spread = 0x7f0801ba; + public static final int spread_inside = 0x7f0801bb; + public static final int spring = 0x7f0801bc; + public static final int square = 0x7f0801bd; + public static final int standard = 0x7f0801c1; + public static final int start = 0x7f0801c2; + public static final int startHorizontal = 0x7f0801c3; + public static final int startVertical = 0x7f0801c5; + public static final int staticLayout = 0x7f0801c6; + public static final int staticPostLayout = 0x7f0801c7; + public static final int stop = 0x7f0801c8; + public static final int top = 0x7f0801f2; + public static final int triangle = 0x7f080200; + public static final int vertical = 0x7f080206; + public static final int vertical_only = 0x7f080207; + public static final int view_transition = 0x7f080209; + public static final int visible = 0x7f08020f; + public static final int west = 0x7f080211; + public static final int wrap = 0x7f080215; + public static final int wrap_content = 0x7f080216; + public static final int wrap_content_constrained = 0x7f080217; + public static final int x_left = 0x7f080218; + public static final int x_right = 0x7f080219; + } + public static final class styleable { + public static final int[] Carousel = new int[] { 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 }; + public static final int Carousel_carousel_backwardTransition = 1; + public static final int Carousel_carousel_emptyViewsBehavior = 2; + public static final int Carousel_carousel_firstView = 3; + public static final int Carousel_carousel_forwardTransition = 4; + public static final int Carousel_carousel_infinite = 5; + public static final int Carousel_carousel_nextState = 6; + public static final int Carousel_carousel_previousState = 7; + public static final int Carousel_carousel_touchUpMode = 8; + public static final int Carousel_carousel_touchUp_dampeningFactor = 9; + public static final int Carousel_carousel_touchUp_velocityThreshold = 10; + public static final int[] Constraint = new int[] { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 }; + public static final int Constraint_android_alpha = 13; + public static final int Constraint_android_elevation = 26; + public static final int Constraint_android_id = 1; + public static final int Constraint_android_layout_height = 4; + public static final int Constraint_android_layout_marginBottom = 8; + public static final int Constraint_android_layout_marginEnd = 24; + public static final int Constraint_android_layout_marginLeft = 5; + public static final int Constraint_android_layout_marginRight = 7; + public static final int Constraint_android_layout_marginStart = 23; + public static final int Constraint_android_layout_marginTop = 6; + public static final int Constraint_android_layout_width = 3; + public static final int Constraint_android_maxHeight = 10; + public static final int Constraint_android_maxWidth = 9; + public static final int Constraint_android_minHeight = 12; + public static final int Constraint_android_minWidth = 11; + public static final int Constraint_android_orientation = 0; + public static final int Constraint_android_rotation = 20; + public static final int Constraint_android_rotationX = 21; + public static final int Constraint_android_rotationY = 22; + public static final int Constraint_android_scaleX = 18; + public static final int Constraint_android_scaleY = 19; + public static final int Constraint_android_transformPivotX = 14; + public static final int Constraint_android_transformPivotY = 15; + public static final int Constraint_android_translationX = 16; + public static final int Constraint_android_translationY = 17; + public static final int Constraint_android_translationZ = 25; + public static final int Constraint_android_visibility = 2; + public static final int Constraint_animateCircleAngleTo = 27; + public static final int Constraint_animateRelativeTo = 28; + public static final int Constraint_barrierAllowsGoneWidgets = 29; + public static final int Constraint_barrierDirection = 30; + public static final int Constraint_barrierMargin = 31; + public static final int Constraint_chainUseRtl = 32; + public static final int Constraint_constraint_referenced_ids = 33; + public static final int Constraint_constraint_referenced_tags = 34; + public static final int Constraint_drawPath = 35; + public static final int Constraint_flow_firstHorizontalBias = 36; + public static final int Constraint_flow_firstHorizontalStyle = 37; + public static final int Constraint_flow_firstVerticalBias = 38; + public static final int Constraint_flow_firstVerticalStyle = 39; + public static final int Constraint_flow_horizontalAlign = 40; + public static final int Constraint_flow_horizontalBias = 41; + public static final int Constraint_flow_horizontalGap = 42; + public static final int Constraint_flow_horizontalStyle = 43; + public static final int Constraint_flow_lastHorizontalBias = 44; + public static final int Constraint_flow_lastHorizontalStyle = 45; + public static final int Constraint_flow_lastVerticalBias = 46; + public static final int Constraint_flow_lastVerticalStyle = 47; + public static final int Constraint_flow_maxElementsWrap = 48; + public static final int Constraint_flow_verticalAlign = 49; + public static final int Constraint_flow_verticalBias = 50; + public static final int Constraint_flow_verticalGap = 51; + public static final int Constraint_flow_verticalStyle = 52; + public static final int Constraint_flow_wrapMode = 53; + public static final int Constraint_guidelineUseRtl = 54; + public static final int Constraint_layout_constrainedHeight = 55; + public static final int Constraint_layout_constrainedWidth = 56; + public static final int Constraint_layout_constraintBaseline_creator = 57; + public static final int Constraint_layout_constraintBaseline_toBaselineOf = 58; + public static final int Constraint_layout_constraintBaseline_toBottomOf = 59; + public static final int Constraint_layout_constraintBaseline_toTopOf = 60; + public static final int Constraint_layout_constraintBottom_creator = 61; + public static final int Constraint_layout_constraintBottom_toBottomOf = 62; + public static final int Constraint_layout_constraintBottom_toTopOf = 63; + public static final int Constraint_layout_constraintCircle = 64; + public static final int Constraint_layout_constraintCircleAngle = 65; + public static final int Constraint_layout_constraintCircleRadius = 66; + public static final int Constraint_layout_constraintDimensionRatio = 67; + public static final int Constraint_layout_constraintEnd_toEndOf = 68; + public static final int Constraint_layout_constraintEnd_toStartOf = 69; + public static final int Constraint_layout_constraintGuide_begin = 70; + public static final int Constraint_layout_constraintGuide_end = 71; + public static final int Constraint_layout_constraintGuide_percent = 72; + public static final int Constraint_layout_constraintHeight = 73; + public static final int Constraint_layout_constraintHeight_default = 74; + public static final int Constraint_layout_constraintHeight_max = 75; + public static final int Constraint_layout_constraintHeight_min = 76; + public static final int Constraint_layout_constraintHeight_percent = 77; + public static final int Constraint_layout_constraintHorizontal_bias = 78; + public static final int Constraint_layout_constraintHorizontal_chainStyle = 79; + public static final int Constraint_layout_constraintHorizontal_weight = 80; + public static final int Constraint_layout_constraintLeft_creator = 81; + public static final int Constraint_layout_constraintLeft_toLeftOf = 82; + public static final int Constraint_layout_constraintLeft_toRightOf = 83; + public static final int Constraint_layout_constraintRight_creator = 84; + public static final int Constraint_layout_constraintRight_toLeftOf = 85; + public static final int Constraint_layout_constraintRight_toRightOf = 86; + public static final int Constraint_layout_constraintStart_toEndOf = 87; + public static final int Constraint_layout_constraintStart_toStartOf = 88; + public static final int Constraint_layout_constraintTag = 89; + public static final int Constraint_layout_constraintTop_creator = 90; + public static final int Constraint_layout_constraintTop_toBottomOf = 91; + public static final int Constraint_layout_constraintTop_toTopOf = 92; + public static final int Constraint_layout_constraintVertical_bias = 93; + public static final int Constraint_layout_constraintVertical_chainStyle = 94; + public static final int Constraint_layout_constraintVertical_weight = 95; + public static final int Constraint_layout_constraintWidth = 96; + public static final int Constraint_layout_constraintWidth_default = 97; + public static final int Constraint_layout_constraintWidth_max = 98; + public static final int Constraint_layout_constraintWidth_min = 99; + public static final int Constraint_layout_constraintWidth_percent = 100; + public static final int Constraint_layout_editor_absoluteX = 101; + public static final int Constraint_layout_editor_absoluteY = 102; + public static final int Constraint_layout_goneMarginBaseline = 103; + public static final int Constraint_layout_goneMarginBottom = 104; + public static final int Constraint_layout_goneMarginEnd = 105; + public static final int Constraint_layout_goneMarginLeft = 106; + public static final int Constraint_layout_goneMarginRight = 107; + public static final int Constraint_layout_goneMarginStart = 108; + public static final int Constraint_layout_goneMarginTop = 109; + public static final int Constraint_layout_marginBaseline = 110; + public static final int Constraint_layout_wrapBehaviorInParent = 111; + public static final int Constraint_motionProgress = 112; + public static final int Constraint_motionStagger = 113; + public static final int Constraint_pathMotionArc = 114; + public static final int Constraint_pivotAnchor = 115; + public static final int Constraint_polarRelativeTo = 116; + public static final int Constraint_quantizeMotionInterpolator = 117; + public static final int Constraint_quantizeMotionPhase = 118; + public static final int Constraint_quantizeMotionSteps = 119; + public static final int Constraint_transformPivotTarget = 120; + public static final int Constraint_transitionEasing = 121; + public static final int Constraint_transitionPathRotate = 122; + public static final int Constraint_visibilityMode = 123; + public static final int[] ConstraintLayout_Layout = new int[] { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x010103b5, 0x010103b6, 0x01010440, 0x0101053b, 0x0101053c, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f03013b, 0x7f03013e, 0x7f03013f, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f03028c, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302cf, 0x7f0302d3 }; + public static final int ConstraintLayout_Layout_android_elevation = 22; + public static final int ConstraintLayout_Layout_android_layout_height = 8; + public static final int ConstraintLayout_Layout_android_layout_margin = 9; + public static final int ConstraintLayout_Layout_android_layout_marginBottom = 13; + public static final int ConstraintLayout_Layout_android_layout_marginEnd = 21; + public static final int ConstraintLayout_Layout_android_layout_marginHorizontal = 23; + public static final int ConstraintLayout_Layout_android_layout_marginLeft = 10; + public static final int ConstraintLayout_Layout_android_layout_marginRight = 12; + public static final int ConstraintLayout_Layout_android_layout_marginStart = 20; + public static final int ConstraintLayout_Layout_android_layout_marginTop = 11; + public static final int ConstraintLayout_Layout_android_layout_marginVertical = 24; + public static final int ConstraintLayout_Layout_android_layout_width = 7; + public static final int ConstraintLayout_Layout_android_maxHeight = 15; + public static final int ConstraintLayout_Layout_android_maxWidth = 14; + public static final int ConstraintLayout_Layout_android_minHeight = 17; + public static final int ConstraintLayout_Layout_android_minWidth = 16; + public static final int ConstraintLayout_Layout_android_orientation = 0; + public static final int ConstraintLayout_Layout_android_padding = 1; + public static final int ConstraintLayout_Layout_android_paddingBottom = 5; + public static final int ConstraintLayout_Layout_android_paddingEnd = 19; + public static final int ConstraintLayout_Layout_android_paddingLeft = 2; + public static final int ConstraintLayout_Layout_android_paddingRight = 4; + public static final int ConstraintLayout_Layout_android_paddingStart = 18; + public static final int ConstraintLayout_Layout_android_paddingTop = 3; + public static final int ConstraintLayout_Layout_android_visibility = 6; + public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets = 25; + public static final int ConstraintLayout_Layout_barrierDirection = 26; + public static final int ConstraintLayout_Layout_barrierMargin = 27; + public static final int ConstraintLayout_Layout_chainUseRtl = 28; + public static final int ConstraintLayout_Layout_circularflow_angles = 29; + public static final int ConstraintLayout_Layout_circularflow_defaultAngle = 30; + public static final int ConstraintLayout_Layout_circularflow_defaultRadius = 31; + public static final int ConstraintLayout_Layout_circularflow_radiusInDP = 32; + public static final int ConstraintLayout_Layout_circularflow_viewCenter = 33; + public static final int ConstraintLayout_Layout_constraintSet = 34; + public static final int ConstraintLayout_Layout_constraint_referenced_ids = 35; + public static final int ConstraintLayout_Layout_constraint_referenced_tags = 36; + public static final int ConstraintLayout_Layout_flow_firstHorizontalBias = 37; + public static final int ConstraintLayout_Layout_flow_firstHorizontalStyle = 38; + public static final int ConstraintLayout_Layout_flow_firstVerticalBias = 39; + public static final int ConstraintLayout_Layout_flow_firstVerticalStyle = 40; + public static final int ConstraintLayout_Layout_flow_horizontalAlign = 41; + public static final int ConstraintLayout_Layout_flow_horizontalBias = 42; + public static final int ConstraintLayout_Layout_flow_horizontalGap = 43; + public static final int ConstraintLayout_Layout_flow_horizontalStyle = 44; + public static final int ConstraintLayout_Layout_flow_lastHorizontalBias = 45; + public static final int ConstraintLayout_Layout_flow_lastHorizontalStyle = 46; + public static final int ConstraintLayout_Layout_flow_lastVerticalBias = 47; + public static final int ConstraintLayout_Layout_flow_lastVerticalStyle = 48; + public static final int ConstraintLayout_Layout_flow_maxElementsWrap = 49; + public static final int ConstraintLayout_Layout_flow_verticalAlign = 50; + public static final int ConstraintLayout_Layout_flow_verticalBias = 51; + public static final int ConstraintLayout_Layout_flow_verticalGap = 52; + public static final int ConstraintLayout_Layout_flow_verticalStyle = 53; + public static final int ConstraintLayout_Layout_flow_wrapMode = 54; + public static final int ConstraintLayout_Layout_guidelineUseRtl = 55; + public static final int ConstraintLayout_Layout_layoutDescription = 56; + public static final int ConstraintLayout_Layout_layout_constrainedHeight = 57; + public static final int ConstraintLayout_Layout_layout_constrainedWidth = 58; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 59; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 60; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf = 61; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toTopOf = 62; + public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 63; + public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 64; + public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 65; + public static final int ConstraintLayout_Layout_layout_constraintCircle = 66; + public static final int ConstraintLayout_Layout_layout_constraintCircleAngle = 67; + public static final int ConstraintLayout_Layout_layout_constraintCircleRadius = 68; + public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 69; + public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 70; + public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 71; + public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 72; + public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 73; + public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 74; + public static final int ConstraintLayout_Layout_layout_constraintHeight = 75; + public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 76; + public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 77; + public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 78; + public static final int ConstraintLayout_Layout_layout_constraintHeight_percent = 79; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 80; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 81; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 82; + public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 83; + public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 84; + public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 85; + public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 86; + public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 87; + public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 88; + public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 89; + public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 90; + public static final int ConstraintLayout_Layout_layout_constraintTag = 91; + public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 92; + public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 93; + public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 94; + public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 95; + public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 96; + public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 97; + public static final int ConstraintLayout_Layout_layout_constraintWidth = 98; + public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 99; + public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 100; + public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 101; + public static final int ConstraintLayout_Layout_layout_constraintWidth_percent = 102; + public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 103; + public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 104; + public static final int ConstraintLayout_Layout_layout_goneMarginBaseline = 105; + public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 106; + public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 107; + public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 108; + public static final int ConstraintLayout_Layout_layout_goneMarginRight = 109; + public static final int ConstraintLayout_Layout_layout_goneMarginStart = 110; + public static final int ConstraintLayout_Layout_layout_goneMarginTop = 111; + public static final int ConstraintLayout_Layout_layout_marginBaseline = 112; + public static final int ConstraintLayout_Layout_layout_optimizationLevel = 113; + public static final int ConstraintLayout_Layout_layout_wrapBehaviorInParent = 114; + public static final int[] ConstraintLayout_ReactiveGuide = new int[] { 0x7f0303bf, 0x7f0303c0, 0x7f0303c1, 0x7f0303c2 }; + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange = 0; + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets = 1; + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet = 2; + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_valueId = 3; + public static final int[] ConstraintLayout_placeholder = new int[] { 0x7f030141, 0x7f0303a1 }; + public static final int ConstraintLayout_placeholder_content = 0; + public static final int ConstraintLayout_placeholder_placeholder_emptyVisibility = 1; + public static final int[] ConstraintOverride = new int[] { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f03029a, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302b1, 0x7f0302b6, 0x7f0302b7, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030368, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 }; + public static final int ConstraintOverride_android_alpha = 13; + public static final int ConstraintOverride_android_elevation = 26; + public static final int ConstraintOverride_android_id = 1; + public static final int ConstraintOverride_android_layout_height = 4; + public static final int ConstraintOverride_android_layout_marginBottom = 8; + public static final int ConstraintOverride_android_layout_marginEnd = 24; + public static final int ConstraintOverride_android_layout_marginLeft = 5; + public static final int ConstraintOverride_android_layout_marginRight = 7; + public static final int ConstraintOverride_android_layout_marginStart = 23; + public static final int ConstraintOverride_android_layout_marginTop = 6; + public static final int ConstraintOverride_android_layout_width = 3; + public static final int ConstraintOverride_android_maxHeight = 10; + public static final int ConstraintOverride_android_maxWidth = 9; + public static final int ConstraintOverride_android_minHeight = 12; + public static final int ConstraintOverride_android_minWidth = 11; + public static final int ConstraintOverride_android_orientation = 0; + public static final int ConstraintOverride_android_rotation = 20; + public static final int ConstraintOverride_android_rotationX = 21; + public static final int ConstraintOverride_android_rotationY = 22; + public static final int ConstraintOverride_android_scaleX = 18; + public static final int ConstraintOverride_android_scaleY = 19; + public static final int ConstraintOverride_android_transformPivotX = 14; + public static final int ConstraintOverride_android_transformPivotY = 15; + public static final int ConstraintOverride_android_translationX = 16; + public static final int ConstraintOverride_android_translationY = 17; + public static final int ConstraintOverride_android_translationZ = 25; + public static final int ConstraintOverride_android_visibility = 2; + public static final int ConstraintOverride_animateCircleAngleTo = 27; + public static final int ConstraintOverride_animateRelativeTo = 28; + public static final int ConstraintOverride_barrierAllowsGoneWidgets = 29; + public static final int ConstraintOverride_barrierDirection = 30; + public static final int ConstraintOverride_barrierMargin = 31; + public static final int ConstraintOverride_chainUseRtl = 32; + public static final int ConstraintOverride_constraint_referenced_ids = 33; + public static final int ConstraintOverride_drawPath = 34; + public static final int ConstraintOverride_flow_firstHorizontalBias = 35; + public static final int ConstraintOverride_flow_firstHorizontalStyle = 36; + public static final int ConstraintOverride_flow_firstVerticalBias = 37; + public static final int ConstraintOverride_flow_firstVerticalStyle = 38; + public static final int ConstraintOverride_flow_horizontalAlign = 39; + public static final int ConstraintOverride_flow_horizontalBias = 40; + public static final int ConstraintOverride_flow_horizontalGap = 41; + public static final int ConstraintOverride_flow_horizontalStyle = 42; + public static final int ConstraintOverride_flow_lastHorizontalBias = 43; + public static final int ConstraintOverride_flow_lastHorizontalStyle = 44; + public static final int ConstraintOverride_flow_lastVerticalBias = 45; + public static final int ConstraintOverride_flow_lastVerticalStyle = 46; + public static final int ConstraintOverride_flow_maxElementsWrap = 47; + public static final int ConstraintOverride_flow_verticalAlign = 48; + public static final int ConstraintOverride_flow_verticalBias = 49; + public static final int ConstraintOverride_flow_verticalGap = 50; + public static final int ConstraintOverride_flow_verticalStyle = 51; + public static final int ConstraintOverride_flow_wrapMode = 52; + public static final int ConstraintOverride_guidelineUseRtl = 53; + public static final int ConstraintOverride_layout_constrainedHeight = 54; + public static final int ConstraintOverride_layout_constrainedWidth = 55; + public static final int ConstraintOverride_layout_constraintBaseline_creator = 56; + public static final int ConstraintOverride_layout_constraintBottom_creator = 57; + public static final int ConstraintOverride_layout_constraintCircleAngle = 58; + public static final int ConstraintOverride_layout_constraintCircleRadius = 59; + public static final int ConstraintOverride_layout_constraintDimensionRatio = 60; + public static final int ConstraintOverride_layout_constraintGuide_begin = 61; + public static final int ConstraintOverride_layout_constraintGuide_end = 62; + public static final int ConstraintOverride_layout_constraintGuide_percent = 63; + public static final int ConstraintOverride_layout_constraintHeight = 64; + public static final int ConstraintOverride_layout_constraintHeight_default = 65; + public static final int ConstraintOverride_layout_constraintHeight_max = 66; + public static final int ConstraintOverride_layout_constraintHeight_min = 67; + public static final int ConstraintOverride_layout_constraintHeight_percent = 68; + public static final int ConstraintOverride_layout_constraintHorizontal_bias = 69; + public static final int ConstraintOverride_layout_constraintHorizontal_chainStyle = 70; + public static final int ConstraintOverride_layout_constraintHorizontal_weight = 71; + public static final int ConstraintOverride_layout_constraintLeft_creator = 72; + public static final int ConstraintOverride_layout_constraintRight_creator = 73; + public static final int ConstraintOverride_layout_constraintTag = 74; + public static final int ConstraintOverride_layout_constraintTop_creator = 75; + public static final int ConstraintOverride_layout_constraintVertical_bias = 76; + public static final int ConstraintOverride_layout_constraintVertical_chainStyle = 77; + public static final int ConstraintOverride_layout_constraintVertical_weight = 78; + public static final int ConstraintOverride_layout_constraintWidth = 79; + public static final int ConstraintOverride_layout_constraintWidth_default = 80; + public static final int ConstraintOverride_layout_constraintWidth_max = 81; + public static final int ConstraintOverride_layout_constraintWidth_min = 82; + public static final int ConstraintOverride_layout_constraintWidth_percent = 83; + public static final int ConstraintOverride_layout_editor_absoluteX = 84; + public static final int ConstraintOverride_layout_editor_absoluteY = 85; + public static final int ConstraintOverride_layout_goneMarginBaseline = 86; + public static final int ConstraintOverride_layout_goneMarginBottom = 87; + public static final int ConstraintOverride_layout_goneMarginEnd = 88; + public static final int ConstraintOverride_layout_goneMarginLeft = 89; + public static final int ConstraintOverride_layout_goneMarginRight = 90; + public static final int ConstraintOverride_layout_goneMarginStart = 91; + public static final int ConstraintOverride_layout_goneMarginTop = 92; + public static final int ConstraintOverride_layout_marginBaseline = 93; + public static final int ConstraintOverride_layout_wrapBehaviorInParent = 94; + public static final int ConstraintOverride_motionProgress = 95; + public static final int ConstraintOverride_motionStagger = 96; + public static final int ConstraintOverride_motionTarget = 97; + public static final int ConstraintOverride_pathMotionArc = 98; + public static final int ConstraintOverride_pivotAnchor = 99; + public static final int ConstraintOverride_polarRelativeTo = 100; + public static final int ConstraintOverride_quantizeMotionInterpolator = 101; + public static final int ConstraintOverride_quantizeMotionPhase = 102; + public static final int ConstraintOverride_quantizeMotionSteps = 103; + public static final int ConstraintOverride_transformPivotTarget = 104; + public static final int ConstraintOverride_transitionEasing = 105; + public static final int ConstraintOverride_transitionPathRotate = 106; + public static final int ConstraintOverride_visibilityMode = 107; + public static final int[] ConstraintSet = new int[] { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013a, 0x7f03013e, 0x7f03013f, 0x7f030183, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b6, 0x7f030423, 0x7f0304f4, 0x7f0304f6 }; + public static final int ConstraintSet_android_alpha = 15; + public static final int ConstraintSet_android_elevation = 28; + public static final int ConstraintSet_android_id = 1; + public static final int ConstraintSet_android_layout_height = 4; + public static final int ConstraintSet_android_layout_marginBottom = 8; + public static final int ConstraintSet_android_layout_marginEnd = 26; + public static final int ConstraintSet_android_layout_marginLeft = 5; + public static final int ConstraintSet_android_layout_marginRight = 7; + public static final int ConstraintSet_android_layout_marginStart = 25; + public static final int ConstraintSet_android_layout_marginTop = 6; + public static final int ConstraintSet_android_layout_width = 3; + public static final int ConstraintSet_android_maxHeight = 10; + public static final int ConstraintSet_android_maxWidth = 9; + public static final int ConstraintSet_android_minHeight = 12; + public static final int ConstraintSet_android_minWidth = 11; + public static final int ConstraintSet_android_orientation = 0; + public static final int ConstraintSet_android_pivotX = 13; + public static final int ConstraintSet_android_pivotY = 14; + public static final int ConstraintSet_android_rotation = 22; + public static final int ConstraintSet_android_rotationX = 23; + public static final int ConstraintSet_android_rotationY = 24; + public static final int ConstraintSet_android_scaleX = 20; + public static final int ConstraintSet_android_scaleY = 21; + public static final int ConstraintSet_android_transformPivotX = 16; + public static final int ConstraintSet_android_transformPivotY = 17; + public static final int ConstraintSet_android_translationX = 18; + public static final int ConstraintSet_android_translationY = 19; + public static final int ConstraintSet_android_translationZ = 27; + public static final int ConstraintSet_android_visibility = 2; + public static final int ConstraintSet_animateCircleAngleTo = 29; + public static final int ConstraintSet_animateRelativeTo = 30; + public static final int ConstraintSet_barrierAllowsGoneWidgets = 31; + public static final int ConstraintSet_barrierDirection = 32; + public static final int ConstraintSet_barrierMargin = 33; + public static final int ConstraintSet_chainUseRtl = 34; + public static final int ConstraintSet_constraintRotate = 35; + public static final int ConstraintSet_constraint_referenced_ids = 36; + public static final int ConstraintSet_constraint_referenced_tags = 37; + public static final int ConstraintSet_deriveConstraintsFrom = 38; + public static final int ConstraintSet_drawPath = 39; + public static final int ConstraintSet_flow_firstHorizontalBias = 40; + public static final int ConstraintSet_flow_firstHorizontalStyle = 41; + public static final int ConstraintSet_flow_firstVerticalBias = 42; + public static final int ConstraintSet_flow_firstVerticalStyle = 43; + public static final int ConstraintSet_flow_horizontalAlign = 44; + public static final int ConstraintSet_flow_horizontalBias = 45; + public static final int ConstraintSet_flow_horizontalGap = 46; + public static final int ConstraintSet_flow_horizontalStyle = 47; + public static final int ConstraintSet_flow_lastHorizontalBias = 48; + public static final int ConstraintSet_flow_lastHorizontalStyle = 49; + public static final int ConstraintSet_flow_lastVerticalBias = 50; + public static final int ConstraintSet_flow_lastVerticalStyle = 51; + public static final int ConstraintSet_flow_maxElementsWrap = 52; + public static final int ConstraintSet_flow_verticalAlign = 53; + public static final int ConstraintSet_flow_verticalBias = 54; + public static final int ConstraintSet_flow_verticalGap = 55; + public static final int ConstraintSet_flow_verticalStyle = 56; + public static final int ConstraintSet_flow_wrapMode = 57; + public static final int ConstraintSet_guidelineUseRtl = 58; + public static final int ConstraintSet_layout_constrainedHeight = 59; + public static final int ConstraintSet_layout_constrainedWidth = 60; + public static final int ConstraintSet_layout_constraintBaseline_creator = 61; + public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 62; + public static final int ConstraintSet_layout_constraintBaseline_toBottomOf = 63; + public static final int ConstraintSet_layout_constraintBaseline_toTopOf = 64; + public static final int ConstraintSet_layout_constraintBottom_creator = 65; + public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 66; + public static final int ConstraintSet_layout_constraintBottom_toTopOf = 67; + public static final int ConstraintSet_layout_constraintCircle = 68; + public static final int ConstraintSet_layout_constraintCircleAngle = 69; + public static final int ConstraintSet_layout_constraintCircleRadius = 70; + public static final int ConstraintSet_layout_constraintDimensionRatio = 71; + public static final int ConstraintSet_layout_constraintEnd_toEndOf = 72; + public static final int ConstraintSet_layout_constraintEnd_toStartOf = 73; + public static final int ConstraintSet_layout_constraintGuide_begin = 74; + public static final int ConstraintSet_layout_constraintGuide_end = 75; + public static final int ConstraintSet_layout_constraintGuide_percent = 76; + public static final int ConstraintSet_layout_constraintHeight_default = 77; + public static final int ConstraintSet_layout_constraintHeight_max = 78; + public static final int ConstraintSet_layout_constraintHeight_min = 79; + public static final int ConstraintSet_layout_constraintHeight_percent = 80; + public static final int ConstraintSet_layout_constraintHorizontal_bias = 81; + public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 82; + public static final int ConstraintSet_layout_constraintHorizontal_weight = 83; + public static final int ConstraintSet_layout_constraintLeft_creator = 84; + public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 85; + public static final int ConstraintSet_layout_constraintLeft_toRightOf = 86; + public static final int ConstraintSet_layout_constraintRight_creator = 87; + public static final int ConstraintSet_layout_constraintRight_toLeftOf = 88; + public static final int ConstraintSet_layout_constraintRight_toRightOf = 89; + public static final int ConstraintSet_layout_constraintStart_toEndOf = 90; + public static final int ConstraintSet_layout_constraintStart_toStartOf = 91; + public static final int ConstraintSet_layout_constraintTag = 92; + public static final int ConstraintSet_layout_constraintTop_creator = 93; + public static final int ConstraintSet_layout_constraintTop_toBottomOf = 94; + public static final int ConstraintSet_layout_constraintTop_toTopOf = 95; + public static final int ConstraintSet_layout_constraintVertical_bias = 96; + public static final int ConstraintSet_layout_constraintVertical_chainStyle = 97; + public static final int ConstraintSet_layout_constraintVertical_weight = 98; + public static final int ConstraintSet_layout_constraintWidth_default = 99; + public static final int ConstraintSet_layout_constraintWidth_max = 100; + public static final int ConstraintSet_layout_constraintWidth_min = 101; + public static final int ConstraintSet_layout_constraintWidth_percent = 102; + public static final int ConstraintSet_layout_editor_absoluteX = 103; + public static final int ConstraintSet_layout_editor_absoluteY = 104; + public static final int ConstraintSet_layout_goneMarginBaseline = 105; + public static final int ConstraintSet_layout_goneMarginBottom = 106; + public static final int ConstraintSet_layout_goneMarginEnd = 107; + public static final int ConstraintSet_layout_goneMarginLeft = 108; + public static final int ConstraintSet_layout_goneMarginRight = 109; + public static final int ConstraintSet_layout_goneMarginStart = 110; + public static final int ConstraintSet_layout_goneMarginTop = 111; + public static final int ConstraintSet_layout_marginBaseline = 112; + public static final int ConstraintSet_layout_wrapBehaviorInParent = 113; + public static final int ConstraintSet_motionProgress = 114; + public static final int ConstraintSet_motionStagger = 115; + public static final int ConstraintSet_pathMotionArc = 116; + public static final int ConstraintSet_pivotAnchor = 117; + public static final int ConstraintSet_polarRelativeTo = 118; + public static final int ConstraintSet_quantizeMotionSteps = 119; + public static final int ConstraintSet_stateLabels = 120; + public static final int ConstraintSet_transitionEasing = 121; + public static final int ConstraintSet_transitionPathRotate = 122; + public static final int[] CustomAttribute = new int[] { 0x7f030041, 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030331 }; + public static final int CustomAttribute_attributeName = 0; + public static final int CustomAttribute_customBoolean = 1; + public static final int CustomAttribute_customColorDrawableValue = 2; + public static final int CustomAttribute_customColorValue = 3; + public static final int CustomAttribute_customDimension = 4; + public static final int CustomAttribute_customFloatValue = 5; + public static final int CustomAttribute_customIntegerValue = 6; + public static final int CustomAttribute_customPixelDimension = 7; + public static final int CustomAttribute_customReference = 8; + public static final int CustomAttribute_customStringValue = 9; + public static final int CustomAttribute_methodName = 10; + public static final int[] Grid = new int[] { 0x7f030222, 0x7f030223, 0x7f030224, 0x7f030225, 0x7f030226, 0x7f030227, 0x7f030228, 0x7f030229, 0x7f03022a, 0x7f03022b, 0x7f03022c }; + public static final int Grid_grid_columnWeights = 0; + public static final int Grid_grid_columns = 1; + public static final int Grid_grid_horizontalGaps = 2; + public static final int Grid_grid_orientation = 3; + public static final int Grid_grid_rowWeights = 4; + public static final int Grid_grid_rows = 5; + public static final int Grid_grid_skips = 6; + public static final int Grid_grid_spans = 7; + public static final int Grid_grid_useRtl = 8; + public static final int Grid_grid_validateInputs = 9; + public static final int Grid_grid_verticalGaps = 10; + public static final int[] ImageFilterView = new int[] { 0x7f030033, 0x7f030079, 0x7f030090, 0x7f030151, 0x7f030166, 0x7f030250, 0x7f030251, 0x7f030252, 0x7f030253, 0x7f030383, 0x7f0303cd, 0x7f0303ce, 0x7f0303d0, 0x7f03050b }; + public static final int ImageFilterView_altSrc = 0; + public static final int ImageFilterView_blendSrc = 1; + public static final int ImageFilterView_brightness = 2; + public static final int ImageFilterView_contrast = 3; + public static final int ImageFilterView_crossfade = 4; + public static final int ImageFilterView_imagePanX = 5; + public static final int ImageFilterView_imagePanY = 6; + public static final int ImageFilterView_imageRotate = 7; + public static final int ImageFilterView_imageZoom = 8; + public static final int ImageFilterView_overlay = 9; + public static final int ImageFilterView_round = 10; + public static final int ImageFilterView_roundPercent = 11; + public static final int ImageFilterView_saturation = 12; + public static final int ImageFilterView_warmth = 13; + public static final int[] KeyAttribute = new int[] { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6 }; + public static final int KeyAttribute_android_alpha = 0; + public static final int KeyAttribute_android_elevation = 11; + public static final int KeyAttribute_android_rotation = 7; + public static final int KeyAttribute_android_rotationX = 8; + public static final int KeyAttribute_android_rotationY = 9; + public static final int KeyAttribute_android_scaleX = 5; + public static final int KeyAttribute_android_scaleY = 6; + public static final int KeyAttribute_android_transformPivotX = 1; + public static final int KeyAttribute_android_transformPivotY = 2; + public static final int KeyAttribute_android_translationX = 3; + public static final int KeyAttribute_android_translationY = 4; + public static final int KeyAttribute_android_translationZ = 10; + public static final int KeyAttribute_curveFit = 12; + public static final int KeyAttribute_framePosition = 13; + public static final int KeyAttribute_motionProgress = 14; + public static final int KeyAttribute_motionTarget = 15; + public static final int KeyAttribute_transformPivotTarget = 16; + public static final int KeyAttribute_transitionEasing = 17; + public static final int KeyAttribute_transitionPathRotate = 18; + public static final int[] KeyCycle = new int[] { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510, 0x7f030511 }; + public static final int KeyCycle_android_alpha = 0; + public static final int KeyCycle_android_elevation = 9; + public static final int KeyCycle_android_rotation = 5; + public static final int KeyCycle_android_rotationX = 6; + public static final int KeyCycle_android_rotationY = 7; + public static final int KeyCycle_android_scaleX = 3; + public static final int KeyCycle_android_scaleY = 4; + public static final int KeyCycle_android_translationX = 1; + public static final int KeyCycle_android_translationY = 2; + public static final int KeyCycle_android_translationZ = 8; + public static final int KeyCycle_curveFit = 10; + public static final int KeyCycle_framePosition = 11; + public static final int KeyCycle_motionProgress = 12; + public static final int KeyCycle_motionTarget = 13; + public static final int KeyCycle_transitionEasing = 14; + public static final int KeyCycle_transitionPathRotate = 15; + public static final int KeyCycle_waveOffset = 16; + public static final int KeyCycle_wavePeriod = 17; + public static final int KeyCycle_wavePhase = 18; + public static final int KeyCycle_waveShape = 19; + public static final int KeyCycle_waveVariesBy = 20; + public static final int[] KeyFrame = new int[] { }; + public static final int[] KeyFramesAcceleration = new int[] { }; + public static final int[] KeyFramesVelocity = new int[] { }; + public static final int[] KeyPosition = new int[] { 0x7f03016a, 0x7f030194, 0x7f03021d, 0x7f030280, 0x7f030368, 0x7f030395, 0x7f030397, 0x7f030398, 0x7f030399, 0x7f03039a, 0x7f030402, 0x7f0304f4 }; + public static final int KeyPosition_curveFit = 0; + public static final int KeyPosition_drawPath = 1; + public static final int KeyPosition_framePosition = 2; + public static final int KeyPosition_keyPositionType = 3; + public static final int KeyPosition_motionTarget = 4; + public static final int KeyPosition_pathMotionArc = 5; + public static final int KeyPosition_percentHeight = 6; + public static final int KeyPosition_percentWidth = 7; + public static final int KeyPosition_percentX = 8; + public static final int KeyPosition_percentY = 9; + public static final int KeyPosition_sizePercent = 10; + public static final int KeyPosition_transitionEasing = 11; + public static final int[] KeyTimeCycle = new int[] { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050c, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510 }; + public static final int KeyTimeCycle_android_alpha = 0; + public static final int KeyTimeCycle_android_elevation = 9; + public static final int KeyTimeCycle_android_rotation = 5; + public static final int KeyTimeCycle_android_rotationX = 6; + public static final int KeyTimeCycle_android_rotationY = 7; + public static final int KeyTimeCycle_android_scaleX = 3; + public static final int KeyTimeCycle_android_scaleY = 4; + public static final int KeyTimeCycle_android_translationX = 1; + public static final int KeyTimeCycle_android_translationY = 2; + public static final int KeyTimeCycle_android_translationZ = 8; + public static final int KeyTimeCycle_curveFit = 10; + public static final int KeyTimeCycle_framePosition = 11; + public static final int KeyTimeCycle_motionProgress = 12; + public static final int KeyTimeCycle_motionTarget = 13; + public static final int KeyTimeCycle_transitionEasing = 14; + public static final int KeyTimeCycle_transitionPathRotate = 15; + public static final int KeyTimeCycle_waveDecay = 16; + public static final int KeyTimeCycle_waveOffset = 17; + public static final int KeyTimeCycle_wavePeriod = 18; + public static final int KeyTimeCycle_wavePhase = 19; + public static final int KeyTimeCycle_waveShape = 20; + public static final int[] KeyTrigger = new int[] { 0x7f03021d, 0x7f030368, 0x7f030369, 0x7f03036a, 0x7f03037b, 0x7f03037d, 0x7f03037e, 0x7f0304f8, 0x7f0304f9, 0x7f0304fa, 0x7f030506, 0x7f030507, 0x7f030508 }; + public static final int KeyTrigger_framePosition = 0; + public static final int KeyTrigger_motionTarget = 1; + public static final int KeyTrigger_motion_postLayoutCollision = 2; + public static final int KeyTrigger_motion_triggerOnCollision = 3; + public static final int KeyTrigger_onCross = 4; + public static final int KeyTrigger_onNegativeCross = 5; + public static final int KeyTrigger_onPositiveCross = 6; + public static final int KeyTrigger_triggerId = 7; + public static final int KeyTrigger_triggerReceiver = 8; + public static final int KeyTrigger_triggerSlack = 9; + public static final int KeyTrigger_viewTransitionOnCross = 10; + public static final int KeyTrigger_viewTransitionOnNegativeCross = 11; + public static final int KeyTrigger_viewTransitionOnPositiveCross = 12; + public static final int[] Layout = new int[] { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030327, 0x7f03032c, 0x7f030333, 0x7f030337 }; + public static final int Layout_android_layout_height = 2; + public static final int Layout_android_layout_marginBottom = 6; + public static final int Layout_android_layout_marginEnd = 8; + public static final int Layout_android_layout_marginLeft = 3; + public static final int Layout_android_layout_marginRight = 5; + public static final int Layout_android_layout_marginStart = 7; + public static final int Layout_android_layout_marginTop = 4; + public static final int Layout_android_layout_width = 1; + public static final int Layout_android_orientation = 0; + public static final int Layout_barrierAllowsGoneWidgets = 9; + public static final int Layout_barrierDirection = 10; + public static final int Layout_barrierMargin = 11; + public static final int Layout_chainUseRtl = 12; + public static final int Layout_constraint_referenced_ids = 13; + public static final int Layout_constraint_referenced_tags = 14; + public static final int Layout_guidelineUseRtl = 15; + public static final int Layout_layout_constrainedHeight = 16; + public static final int Layout_layout_constrainedWidth = 17; + public static final int Layout_layout_constraintBaseline_creator = 18; + public static final int Layout_layout_constraintBaseline_toBaselineOf = 19; + public static final int Layout_layout_constraintBaseline_toBottomOf = 20; + public static final int Layout_layout_constraintBaseline_toTopOf = 21; + public static final int Layout_layout_constraintBottom_creator = 22; + public static final int Layout_layout_constraintBottom_toBottomOf = 23; + public static final int Layout_layout_constraintBottom_toTopOf = 24; + public static final int Layout_layout_constraintCircle = 25; + public static final int Layout_layout_constraintCircleAngle = 26; + public static final int Layout_layout_constraintCircleRadius = 27; + public static final int Layout_layout_constraintDimensionRatio = 28; + public static final int Layout_layout_constraintEnd_toEndOf = 29; + public static final int Layout_layout_constraintEnd_toStartOf = 30; + public static final int Layout_layout_constraintGuide_begin = 31; + public static final int Layout_layout_constraintGuide_end = 32; + public static final int Layout_layout_constraintGuide_percent = 33; + public static final int Layout_layout_constraintHeight = 34; + public static final int Layout_layout_constraintHeight_default = 35; + public static final int Layout_layout_constraintHeight_max = 36; + public static final int Layout_layout_constraintHeight_min = 37; + public static final int Layout_layout_constraintHeight_percent = 38; + public static final int Layout_layout_constraintHorizontal_bias = 39; + public static final int Layout_layout_constraintHorizontal_chainStyle = 40; + public static final int Layout_layout_constraintHorizontal_weight = 41; + public static final int Layout_layout_constraintLeft_creator = 42; + public static final int Layout_layout_constraintLeft_toLeftOf = 43; + public static final int Layout_layout_constraintLeft_toRightOf = 44; + public static final int Layout_layout_constraintRight_creator = 45; + public static final int Layout_layout_constraintRight_toLeftOf = 46; + public static final int Layout_layout_constraintRight_toRightOf = 47; + public static final int Layout_layout_constraintStart_toEndOf = 48; + public static final int Layout_layout_constraintStart_toStartOf = 49; + public static final int Layout_layout_constraintTop_creator = 50; + public static final int Layout_layout_constraintTop_toBottomOf = 51; + public static final int Layout_layout_constraintTop_toTopOf = 52; + public static final int Layout_layout_constraintVertical_bias = 53; + public static final int Layout_layout_constraintVertical_chainStyle = 54; + public static final int Layout_layout_constraintVertical_weight = 55; + public static final int Layout_layout_constraintWidth = 56; + public static final int Layout_layout_constraintWidth_default = 57; + public static final int Layout_layout_constraintWidth_max = 58; + public static final int Layout_layout_constraintWidth_min = 59; + public static final int Layout_layout_constraintWidth_percent = 60; + public static final int Layout_layout_editor_absoluteX = 61; + public static final int Layout_layout_editor_absoluteY = 62; + public static final int Layout_layout_goneMarginBaseline = 63; + public static final int Layout_layout_goneMarginBottom = 64; + public static final int Layout_layout_goneMarginEnd = 65; + public static final int Layout_layout_goneMarginLeft = 66; + public static final int Layout_layout_goneMarginRight = 67; + public static final int Layout_layout_goneMarginStart = 68; + public static final int Layout_layout_goneMarginTop = 69; + public static final int Layout_layout_marginBaseline = 70; + public static final int Layout_layout_wrapBehaviorInParent = 71; + public static final int Layout_maxHeight = 72; + public static final int Layout_maxWidth = 73; + public static final int Layout_minHeight = 74; + public static final int Layout_minWidth = 75; + public static final int[] MockView = new int[] { 0x7f030338, 0x7f030339, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d }; + public static final int MockView_mock_diagonalsColor = 0; + public static final int MockView_mock_label = 1; + public static final int MockView_mock_labelBackgroundColor = 2; + public static final int MockView_mock_labelColor = 3; + public static final int MockView_mock_showDiagonals = 4; + public static final int MockView_mock_showLabel = 5; + public static final int[] Motion = new int[] { 0x7f030035, 0x7f030038, 0x7f030194, 0x7f030365, 0x7f030367, 0x7f030395, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f4 }; + public static final int Motion_animateCircleAngleTo = 0; + public static final int Motion_animateRelativeTo = 1; + public static final int Motion_drawPath = 2; + public static final int Motion_motionPathRotate = 3; + public static final int Motion_motionStagger = 4; + public static final int Motion_pathMotionArc = 5; + public static final int Motion_quantizeMotionInterpolator = 6; + public static final int Motion_quantizeMotionPhase = 7; + public static final int Motion_quantizeMotionSteps = 8; + public static final int Motion_transitionEasing = 9; + public static final int[] MotionEffect = new int[] { 0x7f03035b, 0x7f03035c, 0x7f03035d, 0x7f03035e, 0x7f03035f, 0x7f030360, 0x7f030361, 0x7f030362 }; + public static final int MotionEffect_motionEffect_alpha = 0; + public static final int MotionEffect_motionEffect_end = 1; + public static final int MotionEffect_motionEffect_move = 2; + public static final int MotionEffect_motionEffect_start = 3; + public static final int MotionEffect_motionEffect_strict = 4; + public static final int MotionEffect_motionEffect_translationX = 5; + public static final int MotionEffect_motionEffect_translationY = 6; + public static final int MotionEffect_motionEffect_viewTransition = 7; + public static final int[] MotionHelper = new int[] { 0x7f03037c, 0x7f03037f }; + public static final int MotionHelper_onHide = 0; + public static final int MotionHelper_onShow = 1; + public static final int[] MotionLabel = new int[] { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x010100af, 0x0101014f, 0x01010164, 0x010103ac, 0x01010535, 0x7f03007a, 0x7f03007b, 0x7f0303d1, 0x7f030490, 0x7f030491, 0x7f030492, 0x7f030493, 0x7f030494, 0x7f0304a2, 0x7f0304a3, 0x7f0304a4, 0x7f0304a5, 0x7f0304a7, 0x7f0304a8, 0x7f0304a9, 0x7f0304aa }; + public static final int MotionLabel_android_autoSizeTextType = 8; + public static final int MotionLabel_android_fontFamily = 7; + public static final int MotionLabel_android_gravity = 4; + public static final int MotionLabel_android_shadowRadius = 6; + public static final int MotionLabel_android_text = 5; + public static final int MotionLabel_android_textColor = 3; + public static final int MotionLabel_android_textSize = 0; + public static final int MotionLabel_android_textStyle = 2; + public static final int MotionLabel_android_typeface = 1; + public static final int MotionLabel_borderRound = 9; + public static final int MotionLabel_borderRoundPercent = 10; + public static final int MotionLabel_scaleFromTextSize = 11; + public static final int MotionLabel_textBackground = 12; + public static final int MotionLabel_textBackgroundPanX = 13; + public static final int MotionLabel_textBackgroundPanY = 14; + public static final int MotionLabel_textBackgroundRotate = 15; + public static final int MotionLabel_textBackgroundZoom = 16; + public static final int MotionLabel_textOutlineColor = 17; + public static final int MotionLabel_textOutlineThickness = 18; + public static final int MotionLabel_textPanX = 19; + public static final int MotionLabel_textPanY = 20; + public static final int MotionLabel_textureBlurFactor = 21; + public static final int MotionLabel_textureEffect = 22; + public static final int MotionLabel_textureHeight = 23; + public static final int MotionLabel_textureWidth = 24; + public static final int[] MotionLayout = new int[] { 0x7f03003c, 0x7f030167, 0x7f03028c, 0x7f03033e, 0x7f030366, 0x7f0303f5 }; + public static final int MotionLayout_applyMotionScene = 0; + public static final int MotionLayout_currentState = 1; + public static final int MotionLayout_layoutDescription = 2; + public static final int MotionLayout_motionDebug = 3; + public static final int MotionLayout_motionProgress = 4; + public static final int MotionLayout_showPaths = 5; + public static final int[] MotionScene = new int[] { 0x7f03017b, 0x7f03028d }; + public static final int MotionScene_defaultDuration = 0; + public static final int MotionScene_layoutDuringTransition = 1; + public static final int[] MotionTelltales = new int[] { 0x7f030467, 0x7f030468, 0x7f030469 }; + public static final int MotionTelltales_telltales_tailColor = 0; + public static final int MotionTelltales_telltales_tailScale = 1; + public static final int MotionTelltales_telltales_velocityMode = 2; + public static final int[] OnClick = new int[] { 0x7f0300e2, 0x7f030465 }; + public static final int OnClick_clickAction = 0; + public static final int OnClick_targetId = 1; + public static final int[] OnSwipe = new int[] { 0x7f030043, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f0302d7, 0x7f030323, 0x7f03032b, 0x7f03036b, 0x7f030374, 0x7f030381, 0x7f0303cc, 0x7f030413, 0x7f030414, 0x7f030415, 0x7f030416, 0x7f030417, 0x7f0304e1, 0x7f0304e2, 0x7f0304e3 }; + public static final int OnSwipe_autoCompleteMode = 0; + public static final int OnSwipe_dragDirection = 1; + public static final int OnSwipe_dragScale = 2; + public static final int OnSwipe_dragThreshold = 3; + public static final int OnSwipe_limitBoundsTo = 4; + public static final int OnSwipe_maxAcceleration = 5; + public static final int OnSwipe_maxVelocity = 6; + public static final int OnSwipe_moveWhenScrollAtTop = 7; + public static final int OnSwipe_nestedScrollFlags = 8; + public static final int OnSwipe_onTouchUp = 9; + public static final int OnSwipe_rotationCenterId = 10; + public static final int OnSwipe_springBoundary = 11; + public static final int OnSwipe_springDamping = 12; + public static final int OnSwipe_springMass = 13; + public static final int OnSwipe_springStiffness = 14; + public static final int OnSwipe_springStopThreshold = 15; + public static final int OnSwipe_touchAnchorId = 16; + public static final int OnSwipe_touchAnchorSide = 17; + public static final int OnSwipe_touchRegionId = 18; + public static final int[] PropertySet = new int[] { 0x010100dc, 0x0101031f, 0x7f0302b6, 0x7f030366, 0x7f030509 }; + public static final int PropertySet_android_alpha = 1; + public static final int PropertySet_android_visibility = 0; + public static final int PropertySet_layout_constraintTag = 2; + public static final int PropertySet_motionProgress = 3; + public static final int PropertySet_visibilityMode = 4; + public static final int[] State = new int[] { 0x010100d0, 0x7f030140 }; + public static final int State_android_id = 0; + public static final int State_constraints = 1; + public static final int[] StateSet = new int[] { 0x7f030180 }; + public static final int StateSet_defaultState = 0; + public static final int[] TextEffects = new int[] { 0x01010095, 0x01010096, 0x01010097, 0x0101014f, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f03007a, 0x7f03007b, 0x7f030498, 0x7f0304a2, 0x7f0304a3 }; + public static final int TextEffects_android_fontFamily = 8; + public static final int TextEffects_android_shadowColor = 4; + public static final int TextEffects_android_shadowDx = 5; + public static final int TextEffects_android_shadowDy = 6; + public static final int TextEffects_android_shadowRadius = 7; + public static final int TextEffects_android_text = 3; + public static final int TextEffects_android_textSize = 0; + public static final int TextEffects_android_textStyle = 2; + public static final int TextEffects_android_typeface = 1; + public static final int TextEffects_borderRound = 9; + public static final int TextEffects_borderRoundPercent = 10; + public static final int TextEffects_textFillColor = 11; + public static final int TextEffects_textOutlineColor = 12; + public static final int TextEffects_textOutlineThickness = 13; + public static final int[] Transform = new int[] { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0304f2 }; + public static final int Transform_android_elevation = 10; + public static final int Transform_android_rotation = 6; + public static final int Transform_android_rotationX = 7; + public static final int Transform_android_rotationY = 8; + public static final int Transform_android_scaleX = 4; + public static final int Transform_android_scaleY = 5; + public static final int Transform_android_transformPivotX = 0; + public static final int Transform_android_transformPivotY = 1; + public static final int Transform_android_translationX = 2; + public static final int Transform_android_translationY = 3; + public static final int Transform_android_translationZ = 9; + public static final int Transform_transformPivotTarget = 11; + public static final int[] Transition = new int[] { 0x010100d0, 0x7f03004b, 0x7f03013c, 0x7f03013d, 0x7f0301a4, 0x7f03028d, 0x7f030363, 0x7f030395, 0x7f03041a, 0x7f0304f3, 0x7f0304f5 }; + public static final int Transition_android_id = 0; + public static final int Transition_autoTransition = 1; + public static final int Transition_constraintSetEnd = 2; + public static final int Transition_constraintSetStart = 3; + public static final int Transition_duration = 4; + public static final int Transition_layoutDuringTransition = 5; + public static final int Transition_motionInterpolator = 6; + public static final int Transition_pathMotionArc = 7; + public static final int Transition_staggered = 8; + public static final int Transition_transitionDisable = 9; + public static final int Transition_transitionFlags = 10; + public static final int[] Variant = new int[] { 0x7f030140, 0x7f0303c4, 0x7f0303c5, 0x7f0303c6, 0x7f0303c7 }; + public static final int Variant_constraints = 0; + public static final int Variant_region_heightLessThan = 1; + public static final int Variant_region_heightMoreThan = 2; + public static final int Variant_region_widthLessThan = 3; + public static final int Variant_region_widthMoreThan = 4; + public static final int[] ViewTransition = new int[] { 0x010100d0, 0x7f030000, 0x7f030001, 0x7f0300e1, 0x7f0301a4, 0x7f03024d, 0x7f03024e, 0x7f030363, 0x7f030368, 0x7f030380, 0x7f030395, 0x7f0303e1, 0x7f0304f3, 0x7f0304fc, 0x7f030505 }; + public static final int ViewTransition_SharedValue = 1; + public static final int ViewTransition_SharedValueId = 2; + public static final int ViewTransition_android_id = 0; + public static final int ViewTransition_clearsTag = 3; + public static final int ViewTransition_duration = 4; + public static final int ViewTransition_ifTagNotSet = 5; + public static final int ViewTransition_ifTagSet = 6; + public static final int ViewTransition_motionInterpolator = 7; + public static final int ViewTransition_motionTarget = 8; + public static final int ViewTransition_onStateTransition = 9; + public static final int ViewTransition_pathMotionArc = 10; + public static final int ViewTransition_setsTag = 11; + public static final int ViewTransition_transitionDisable = 12; + public static final int ViewTransition_upDuration = 13; + public static final int ViewTransition_viewTransitionMode = 14; + public static final int[] include = new int[] { 0x7f03013b }; + public static final int include_constraintSet = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/coordinatorlayout/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/coordinatorlayout/R.java new file mode 100644 index 0000000..51148dd --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/coordinatorlayout/R.java @@ -0,0 +1,46 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.coordinatorlayout; + +public final class R { + public static final class attr { + public static final int coordinatorLayoutStyle = 0x7f030153; + public static final int keylines = 0x7f030282; + public static final int layout_anchor = 0x7f03028f; + public static final int layout_anchorGravity = 0x7f030290; + public static final int layout_behavior = 0x7f030291; + public static final int layout_dodgeInsetEdges = 0x7f0302c2; + public static final int layout_insetEdge = 0x7f0302cc; + public static final int layout_keyline = 0x7f0302cd; + public static final int statusBarBackground = 0x7f03042d; + } + public static final class id { + public static final int bottom = 0x7f080064; + public static final int end = 0x7f0800bc; + public static final int left = 0x7f0800fa; + public static final int none = 0x7f080155; + public static final int right = 0x7f080186; + public static final int start = 0x7f0801c2; + public static final int top = 0x7f0801f2; + } + public static final class style { + public static final int Widget_Support_CoordinatorLayout = 0x7f100472; + } + public static final class styleable { + public static final int[] CoordinatorLayout = new int[] { 0x7f030282, 0x7f03042d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = new int[] { 0x010100b3, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f0302c2, 0x7f0302cc, 0x7f0302cd }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/R.java new file mode 100644 index 0000000..3035c0e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/R.java @@ -0,0 +1,241 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.core; + +public final class R { + public static final class attr { + public static final int alpha = 0x7f030031; + public static final int font = 0x7f03020d; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFallbackQuery = 0x7f030211; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontProviderSystemFontFamily = 0x7f030216; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int lStar = 0x7f030283; + public static final int nestedScrollViewStyle = 0x7f030375; + public static final int queryPatterns = 0x7f0303b9; + public static final int shortcutMatchRequired = 0x7f0303ed; + public static final int ttcIndex = 0x7f0304fb; + } + public static final class color { + public static final int androidx_core_ripple_material_light = 0x7f05001b; + public static final int androidx_core_secondary_text_default_material_light = 0x7f05001c; + public static final int call_notification_answer_color = 0x7f05002d; + public static final int call_notification_decline_color = 0x7f05002e; + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + } + public static final class drawable { + public static final int ic_call_answer = 0x7f070088; + public static final int ic_call_answer_low = 0x7f070089; + public static final int ic_call_answer_video = 0x7f07008a; + public static final int ic_call_answer_video_low = 0x7f07008b; + public static final int ic_call_decline = 0x7f07008c; + public static final int ic_call_decline_low = 0x7f07008d; + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_oversize_large_icon_bg = 0x7f0700df; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + } + public static final class id { + public static final int accessibility_action_clickable_span = 0x7f080010; + public static final int accessibility_custom_action_0 = 0x7f080011; + public static final int accessibility_custom_action_1 = 0x7f080012; + public static final int accessibility_custom_action_10 = 0x7f080013; + public static final int accessibility_custom_action_11 = 0x7f080014; + public static final int accessibility_custom_action_12 = 0x7f080015; + public static final int accessibility_custom_action_13 = 0x7f080016; + public static final int accessibility_custom_action_14 = 0x7f080017; + public static final int accessibility_custom_action_15 = 0x7f080018; + public static final int accessibility_custom_action_16 = 0x7f080019; + public static final int accessibility_custom_action_17 = 0x7f08001a; + public static final int accessibility_custom_action_18 = 0x7f08001b; + public static final int accessibility_custom_action_19 = 0x7f08001c; + public static final int accessibility_custom_action_2 = 0x7f08001d; + public static final int accessibility_custom_action_20 = 0x7f08001e; + public static final int accessibility_custom_action_21 = 0x7f08001f; + public static final int accessibility_custom_action_22 = 0x7f080020; + public static final int accessibility_custom_action_23 = 0x7f080021; + public static final int accessibility_custom_action_24 = 0x7f080022; + public static final int accessibility_custom_action_25 = 0x7f080023; + public static final int accessibility_custom_action_26 = 0x7f080024; + public static final int accessibility_custom_action_27 = 0x7f080025; + public static final int accessibility_custom_action_28 = 0x7f080026; + public static final int accessibility_custom_action_29 = 0x7f080027; + public static final int accessibility_custom_action_3 = 0x7f080028; + public static final int accessibility_custom_action_30 = 0x7f080029; + public static final int accessibility_custom_action_31 = 0x7f08002a; + public static final int accessibility_custom_action_4 = 0x7f08002b; + public static final int accessibility_custom_action_5 = 0x7f08002c; + public static final int accessibility_custom_action_6 = 0x7f08002d; + public static final int accessibility_custom_action_7 = 0x7f08002e; + public static final int accessibility_custom_action_8 = 0x7f08002f; + public static final int accessibility_custom_action_9 = 0x7f080030; + public static final int action_container = 0x7f08003b; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int async = 0x7f080057; + public static final int blocking = 0x7f080063; + public static final int chronometer = 0x7f08007e; + public static final int dialog_button = 0x7f0800a2; + public static final int edit_text_id = 0x7f0800b9; + public static final int forever = 0x7f0800d2; + public static final int hide_ime_id = 0x7f0800e0; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int info = 0x7f0800f0; + public static final int italic = 0x7f0800f4; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int tag_accessibility_actions = 0x7f0801ce; + public static final int tag_accessibility_clickable_spans = 0x7f0801cf; + public static final int tag_accessibility_heading = 0x7f0801d0; + public static final int tag_accessibility_pane_title = 0x7f0801d1; + public static final int tag_compat_insets_dispatch = 0x7f0801d2; + public static final int tag_on_apply_window_listener = 0x7f0801d3; + public static final int tag_on_receive_content_listener = 0x7f0801d4; + public static final int tag_on_receive_content_mime_types = 0x7f0801d5; + public static final int tag_screen_reader_focusable = 0x7f0801d6; + public static final int tag_state_description = 0x7f0801d7; + public static final int tag_system_bar_state_monitor = 0x7f0801d8; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int tag_window_insets_animation_callback = 0x7f0801dc; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + } + public static final class integer { + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class layout { + public static final int custom_dialog = 0x7f0b001e; + public static final int ime_base_split_test_activity = 0x7f0b0031; + public static final int ime_secondary_split_test_activity = 0x7f0b0032; + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + } + public static final class string { + public static final int call_notification_answer_action = 0x7f0f0023; + public static final int call_notification_answer_video_action = 0x7f0f0024; + public static final int call_notification_decline_action = 0x7f0f0025; + public static final int call_notification_hang_up_action = 0x7f0f0026; + public static final int call_notification_incoming_text = 0x7f0f0027; + public static final int call_notification_ongoing_text = 0x7f0f0028; + public static final int call_notification_screening_text = 0x7f0f0029; + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + } + public static final class styleable { + public static final int[] Capability = new int[] { 0x7f0303b9, 0x7f0303ed }; + public static final int Capability_queryPatterns = 0; + public static final int Capability_shortcutMatchRequired = 1; + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_lStar = 2; + public static final int ColorStateListItem_lStar = 4; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFallbackQuery = 2; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int FontFamily_fontProviderSystemFontFamily = 7; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/ktx/R.java new file mode 100644 index 0000000..a6023c5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.core.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/viewtree/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/viewtree/R.java new file mode 100644 index 0000000..8a247dc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/core/viewtree/R.java @@ -0,0 +1,13 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.core.viewtree; + +public final class R { + public static final class id { + public static final int view_tree_disjoint_parent = 0x7f08020a; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cursoradapter/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cursoradapter/R.java new file mode 100644 index 0000000..4bdb385 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/cursoradapter/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.cursoradapter; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/R.java new file mode 100644 index 0000000..05d70d6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/R.java @@ -0,0 +1,201 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.customview; + +public final class R { + public static final class attr { + public static final int alpha = 0x7f030031; + public static final int font = 0x7f03020d; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int ttcIndex = 0x7f0304fb; + } + public static final class color { + public static final int androidx_core_ripple_material_light = 0x7f05001b; + public static final int androidx_core_secondary_text_default_material_light = 0x7f05001c; + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + } + public static final class drawable { + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + } + public static final class id { + public static final int accessibility_action_clickable_span = 0x7f080010; + public static final int accessibility_custom_action_0 = 0x7f080011; + public static final int accessibility_custom_action_1 = 0x7f080012; + public static final int accessibility_custom_action_10 = 0x7f080013; + public static final int accessibility_custom_action_11 = 0x7f080014; + public static final int accessibility_custom_action_12 = 0x7f080015; + public static final int accessibility_custom_action_13 = 0x7f080016; + public static final int accessibility_custom_action_14 = 0x7f080017; + public static final int accessibility_custom_action_15 = 0x7f080018; + public static final int accessibility_custom_action_16 = 0x7f080019; + public static final int accessibility_custom_action_17 = 0x7f08001a; + public static final int accessibility_custom_action_18 = 0x7f08001b; + public static final int accessibility_custom_action_19 = 0x7f08001c; + public static final int accessibility_custom_action_2 = 0x7f08001d; + public static final int accessibility_custom_action_20 = 0x7f08001e; + public static final int accessibility_custom_action_21 = 0x7f08001f; + public static final int accessibility_custom_action_22 = 0x7f080020; + public static final int accessibility_custom_action_23 = 0x7f080021; + public static final int accessibility_custom_action_24 = 0x7f080022; + public static final int accessibility_custom_action_25 = 0x7f080023; + public static final int accessibility_custom_action_26 = 0x7f080024; + public static final int accessibility_custom_action_27 = 0x7f080025; + public static final int accessibility_custom_action_28 = 0x7f080026; + public static final int accessibility_custom_action_29 = 0x7f080027; + public static final int accessibility_custom_action_3 = 0x7f080028; + public static final int accessibility_custom_action_30 = 0x7f080029; + public static final int accessibility_custom_action_31 = 0x7f08002a; + public static final int accessibility_custom_action_4 = 0x7f08002b; + public static final int accessibility_custom_action_5 = 0x7f08002c; + public static final int accessibility_custom_action_6 = 0x7f08002d; + public static final int accessibility_custom_action_7 = 0x7f08002e; + public static final int accessibility_custom_action_8 = 0x7f08002f; + public static final int accessibility_custom_action_9 = 0x7f080030; + public static final int action_container = 0x7f08003b; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int async = 0x7f080057; + public static final int blocking = 0x7f080063; + public static final int chronometer = 0x7f08007e; + public static final int dialog_button = 0x7f0800a2; + public static final int forever = 0x7f0800d2; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int info = 0x7f0800f0; + public static final int italic = 0x7f0800f4; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int tag_accessibility_actions = 0x7f0801ce; + public static final int tag_accessibility_clickable_spans = 0x7f0801cf; + public static final int tag_accessibility_heading = 0x7f0801d0; + public static final int tag_accessibility_pane_title = 0x7f0801d1; + public static final int tag_screen_reader_focusable = 0x7f0801d6; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + } + public static final class integer { + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class layout { + public static final int custom_dialog = 0x7f0b001e; + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + } + public static final class string { + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + } + public static final class styleable { + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/poolingcontainer/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/poolingcontainer/R.java new file mode 100644 index 0000000..2ce3dc4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/customview/poolingcontainer/R.java @@ -0,0 +1,14 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.customview.poolingcontainer; + +public final class R { + public static final class id { + public static final int is_pooling_container_tag = 0x7f0800f3; + public static final int pooling_container_listener_holder_tag = 0x7f08017b; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/drawerlayout/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/drawerlayout/R.java new file mode 100644 index 0000000..8ca5cd1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/drawerlayout/R.java @@ -0,0 +1,21 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.drawerlayout; + +public final class R { + public static final class attr { + public static final int drawerLayoutStyle = 0x7f0301a0; + public static final int elevation = 0x7f0301a9; + } + public static final class dimen { + public static final int def_drawer_elevation = 0x7f06005f; + } + public static final class styleable { + public static final int[] DrawerLayout = new int[] { 0x7f0301a9 }; + public static final int DrawerLayout_elevation = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/dynamicanimation/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/dynamicanimation/R.java new file mode 100644 index 0000000..27d8cfb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/dynamicanimation/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.dynamicanimation; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/R.java new file mode 100644 index 0000000..be2fc9f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.emoji2; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/viewsintegration/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/viewsintegration/R.java new file mode 100644 index 0000000..b17a879 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/emoji2/viewsintegration/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.emoji2.viewsintegration; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/exifinterface/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/exifinterface/R.java new file mode 100644 index 0000000..6707085 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/exifinterface/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.exifinterface; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/R.java new file mode 100644 index 0000000..f2922a7 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/R.java @@ -0,0 +1,35 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.fragment; + +public final class R { + public static final class anim { + public static final int fragment_fast_out_extra_slow_in = 0x7f010020; + } + public static final class animator { + public static final int fragment_close_enter = 0x7f020003; + public static final int fragment_close_exit = 0x7f020004; + public static final int fragment_fade_enter = 0x7f020005; + public static final int fragment_fade_exit = 0x7f020006; + public static final int fragment_open_enter = 0x7f020007; + public static final int fragment_open_exit = 0x7f020008; + } + public static final class id { + public static final int fragment_container_view_tag = 0x7f0800d3; + public static final int special_effects_controller_view_tag = 0x7f0801b7; + public static final int visible_removing_fragment_view_tag = 0x7f080210; + } + public static final class styleable { + public static final int[] Fragment = new int[] { 0x01010003, 0x010100d0, 0x010100d1 }; + public static final int Fragment_android_id = 1; + public static final int Fragment_android_name = 0; + public static final int Fragment_android_tag = 2; + public static final int[] FragmentContainerView = new int[] { 0x01010003, 0x010100d1 }; + public static final int FragmentContainerView_android_name = 0; + public static final int FragmentContainerView_android_tag = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/ktx/R.java new file mode 100644 index 0000000..0d824a8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/fragment/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.fragment.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/interpolator/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/interpolator/R.java new file mode 100644 index 0000000..f350f42 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/interpolator/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.interpolator; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/ktx/R.java new file mode 100644 index 0000000..232deed --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/R.java new file mode 100644 index 0000000..2f6668c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.livedata; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/R.java new file mode 100644 index 0000000..170ea9b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.livedata.core; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/ktx/R.java new file mode 100644 index 0000000..3a04665 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/livedata/core/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.livedata.core.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/process/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/process/R.java new file mode 100644 index 0000000..a49b5b3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/process/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.process; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/runtime/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/runtime/R.java new file mode 100644 index 0000000..9612dad --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/runtime/R.java @@ -0,0 +1,13 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.runtime; + +public final class R { + public static final class id { + public static final int view_tree_lifecycle_owner = 0x7f08020b; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/R.java new file mode 100644 index 0000000..75c2976 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/R.java @@ -0,0 +1,13 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.viewmodel; + +public final class R { + public static final class id { + public static final int view_tree_view_model_store_owner = 0x7f08020e; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/ktx/R.java new file mode 100644 index 0000000..f7bbcb5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.viewmodel.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/savedstate/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/savedstate/R.java new file mode 100644 index 0000000..28a5a4b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/lifecycle/viewmodel/savedstate/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.lifecycle.viewmodel.savedstate; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/loader/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/loader/R.java new file mode 100644 index 0000000..0888efc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/loader/R.java @@ -0,0 +1,161 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.loader; + +public final class R { + public static final class attr { + public static final int alpha = 0x7f030031; + public static final int font = 0x7f03020d; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int ttcIndex = 0x7f0304fb; + } + public static final class color { + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + public static final int ripple_material_light = 0x7f050301; + public static final int secondary_text_default_material_light = 0x7f050303; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + } + public static final class drawable { + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + } + public static final class id { + public static final int action_container = 0x7f08003b; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int async = 0x7f080057; + public static final int blocking = 0x7f080063; + public static final int chronometer = 0x7f08007e; + public static final int forever = 0x7f0800d2; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int info = 0x7f0800f0; + public static final int italic = 0x7f0800f4; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + } + public static final class integer { + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class layout { + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + } + public static final class string { + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + } + public static final class styleable { + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/R.java new file mode 100644 index 0000000..b46e12b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/R.java @@ -0,0 +1,33 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.navigation; + +public final class R { + public static final class attr { + public static final int action = 0x7f030002; + public static final int data = 0x7f030175; + public static final int dataPattern = 0x7f030176; + public static final int graph = 0x7f030221; + public static final int navGraph = 0x7f03036d; + public static final int targetPackage = 0x7f030466; + } + public static final class id { + public static final int nav_controller_view_tag = 0x7f080141; + } + public static final class styleable { + public static final int[] ActivityNavigator = new int[] { 0x01010003, 0x7f030002, 0x7f030175, 0x7f030176, 0x7f030466 }; + public static final int ActivityNavigator_action = 1; + public static final int ActivityNavigator_android_name = 0; + public static final int ActivityNavigator_data = 2; + public static final int ActivityNavigator_dataPattern = 3; + public static final int ActivityNavigator_targetPackage = 4; + public static final int[] NavHost = new int[] { 0x7f03036d }; + public static final int NavHost_navGraph = 0; + public static final int[] NavInclude = new int[] { 0x7f030221 }; + public static final int NavInclude_graph = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/common/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/common/R.java new file mode 100644 index 0000000..166003a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/common/R.java @@ -0,0 +1,59 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.navigation.common; + +public final class R { + public static final class attr { + public static final int action = 0x7f030002; + public static final int argType = 0x7f03003e; + public static final int destination = 0x7f030184; + public static final int enterAnim = 0x7f0301ba; + public static final int exitAnim = 0x7f0301c5; + public static final int launchSingleTop = 0x7f03028a; + public static final int mimeType = 0x7f030332; + public static final int nullable = 0x7f030377; + public static final int popEnterAnim = 0x7f0303a3; + public static final int popExitAnim = 0x7f0303a4; + public static final int popUpTo = 0x7f0303a5; + public static final int popUpToInclusive = 0x7f0303a6; + public static final int popUpToSaveState = 0x7f0303a7; + public static final int restoreState = 0x7f0303c9; + public static final int route = 0x7f0303cf; + public static final int startDestination = 0x7f03041b; + public static final int uri = 0x7f0304fd; + } + public static final class styleable { + public static final int[] NavAction = new int[] { 0x010100d0, 0x7f030184, 0x7f0301ba, 0x7f0301c5, 0x7f03028a, 0x7f0303a3, 0x7f0303a4, 0x7f0303a5, 0x7f0303a6, 0x7f0303a7, 0x7f0303c9 }; + public static final int NavAction_android_id = 0; + public static final int NavAction_destination = 1; + public static final int NavAction_enterAnim = 2; + public static final int NavAction_exitAnim = 3; + public static final int NavAction_launchSingleTop = 4; + public static final int NavAction_popEnterAnim = 5; + public static final int NavAction_popExitAnim = 6; + public static final int NavAction_popUpTo = 7; + public static final int NavAction_popUpToInclusive = 8; + public static final int NavAction_popUpToSaveState = 9; + public static final int NavAction_restoreState = 10; + public static final int[] NavArgument = new int[] { 0x01010003, 0x010101ed, 0x7f03003e, 0x7f030377 }; + public static final int NavArgument_android_defaultValue = 1; + public static final int NavArgument_android_name = 0; + public static final int NavArgument_argType = 2; + public static final int NavArgument_nullable = 3; + public static final int[] NavDeepLink = new int[] { 0x010104ee, 0x7f030002, 0x7f030332, 0x7f0304fd }; + public static final int NavDeepLink_action = 1; + public static final int NavDeepLink_android_autoVerify = 0; + public static final int NavDeepLink_mimeType = 2; + public static final int NavDeepLink_uri = 3; + public static final int[] NavGraphNavigator = new int[] { 0x7f03041b }; + public static final int NavGraphNavigator_startDestination = 0; + public static final int[] Navigator = new int[] { 0x01010001, 0x010100d0, 0x7f0303cf }; + public static final int Navigator_android_id = 1; + public static final int Navigator_android_label = 0; + public static final int Navigator_route = 2; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/fragment/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/fragment/R.java new file mode 100644 index 0000000..3689d17 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/fragment/R.java @@ -0,0 +1,29 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.navigation.fragment; + +public final class R { + public static final class attr { + public static final int defaultNavHost = 0x7f03017d; + } + public static final class dimen { + public static final int sliding_pane_detail_pane_width = 0x7f06031d; + } + public static final class id { + public static final int nav_host_fragment_container = 0x7f080143; + public static final int sliding_pane_detail_container = 0x7f0801af; + public static final int sliding_pane_layout = 0x7f0801b0; + } + public static final class styleable { + public static final int[] DialogFragmentNavigator = new int[] { 0x01010003 }; + public static final int DialogFragmentNavigator_android_name = 0; + public static final int[] FragmentNavigator = new int[] { 0x01010003 }; + public static final int FragmentNavigator_android_name = 0; + public static final int[] NavHostFragment = new int[] { 0x7f03017d }; + public static final int NavHostFragment_defaultNavHost = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/ui/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/ui/R.java new file mode 100644 index 0000000..4b95de3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/navigation/ui/R.java @@ -0,0 +1,30 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.navigation.ui; + +public final class R { + public static final class anim { + public static final int nav_default_enter_anim = 0x7f010030; + public static final int nav_default_exit_anim = 0x7f010031; + public static final int nav_default_pop_enter_anim = 0x7f010032; + public static final int nav_default_pop_exit_anim = 0x7f010033; + } + public static final class animator { + public static final int nav_default_enter_anim = 0x7f020022; + public static final int nav_default_exit_anim = 0x7f020023; + public static final int nav_default_pop_enter_anim = 0x7f020024; + public static final int nav_default_pop_exit_anim = 0x7f020025; + } + public static final class integer { + public static final int config_navAnimTime = 0x7f090005; + } + public static final class string { + public static final int dest_title = 0x7f0f002f; + public static final int nav_app_bar_navigate_up_description = 0x7f0f00a0; + public static final int nav_app_bar_open_drawer_description = 0x7f0f00a1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/profileinstaller/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/profileinstaller/R.java new file mode 100644 index 0000000..337a5e8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/profileinstaller/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.profileinstaller; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/recyclerview/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/recyclerview/R.java new file mode 100644 index 0000000..97a1731 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/recyclerview/R.java @@ -0,0 +1,48 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.recyclerview; + +public final class R { + public static final class attr { + public static final int fastScrollEnabled = 0x7f0301e2; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0301e3; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0301e4; + public static final int fastScrollVerticalThumbDrawable = 0x7f0301e5; + public static final int fastScrollVerticalTrackDrawable = 0x7f0301e6; + public static final int layoutManager = 0x7f03028e; + public static final int recyclerViewStyle = 0x7f0303c3; + public static final int reverseLayout = 0x7f0303ca; + public static final int spanCount = 0x7f030407; + public static final int stackFromEnd = 0x7f030419; + } + public static final class dimen { + public static final int fastscroll_default_thickness = 0x7f060092; + public static final int fastscroll_margin = 0x7f060093; + public static final int fastscroll_minimum_range = 0x7f060094; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06009c; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06009d; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06009e; + } + public static final class id { + public static final int item_touch_helper_previous_elevation = 0x7f0800f5; + } + public static final class styleable { + public static final int[] RecyclerView = new int[] { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f03028e, 0x7f0303ca, 0x7f030407, 0x7f030419 }; + public static final int RecyclerView_android_clipToPadding = 1; + public static final int RecyclerView_android_descendantFocusability = 2; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_fastScrollEnabled = 3; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 4; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 5; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 6; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 7; + public static final int RecyclerView_layoutManager = 8; + public static final int RecyclerView_reverseLayout = 9; + public static final int RecyclerView_spanCount = 10; + public static final int RecyclerView_stackFromEnd = 11; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/R.java new file mode 100644 index 0000000..3665759 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/R.java @@ -0,0 +1,13 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.savedstate; + +public final class R { + public static final class id { + public static final int view_tree_saved_state_registry_owner = 0x7f08020d; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/ktx/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/ktx/R.java new file mode 100644 index 0000000..da69c7f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/savedstate/ktx/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.savedstate.ktx; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/security/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/security/R.java new file mode 100644 index 0000000..52956cf --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/security/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.security; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/slidingpanelayout/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/slidingpanelayout/R.java new file mode 100644 index 0000000..ec19104 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/slidingpanelayout/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.slidingpanelayout; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/startup/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/startup/R.java new file mode 100644 index 0000000..f75da88 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/startup/R.java @@ -0,0 +1,13 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.startup; + +public final class R { + public static final class string { + public static final int androidx_startup = 0x7f0f001b; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/swiperefreshlayout/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/swiperefreshlayout/R.java new file mode 100644 index 0000000..485004d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/swiperefreshlayout/R.java @@ -0,0 +1,204 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.swiperefreshlayout; + +public final class R { + public static final class attr { + public static final int alpha = 0x7f030031; + public static final int font = 0x7f03020d; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int swipeRefreshLayoutProgressSpinnerBackgroundColor = 0x7f030442; + public static final int ttcIndex = 0x7f0304fb; + } + public static final class color { + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + public static final int ripple_material_light = 0x7f050301; + public static final int secondary_text_default_material_light = 0x7f050303; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + } + public static final class drawable { + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + } + public static final class id { + public static final int accessibility_action_clickable_span = 0x7f080010; + public static final int accessibility_custom_action_0 = 0x7f080011; + public static final int accessibility_custom_action_1 = 0x7f080012; + public static final int accessibility_custom_action_10 = 0x7f080013; + public static final int accessibility_custom_action_11 = 0x7f080014; + public static final int accessibility_custom_action_12 = 0x7f080015; + public static final int accessibility_custom_action_13 = 0x7f080016; + public static final int accessibility_custom_action_14 = 0x7f080017; + public static final int accessibility_custom_action_15 = 0x7f080018; + public static final int accessibility_custom_action_16 = 0x7f080019; + public static final int accessibility_custom_action_17 = 0x7f08001a; + public static final int accessibility_custom_action_18 = 0x7f08001b; + public static final int accessibility_custom_action_19 = 0x7f08001c; + public static final int accessibility_custom_action_2 = 0x7f08001d; + public static final int accessibility_custom_action_20 = 0x7f08001e; + public static final int accessibility_custom_action_21 = 0x7f08001f; + public static final int accessibility_custom_action_22 = 0x7f080020; + public static final int accessibility_custom_action_23 = 0x7f080021; + public static final int accessibility_custom_action_24 = 0x7f080022; + public static final int accessibility_custom_action_25 = 0x7f080023; + public static final int accessibility_custom_action_26 = 0x7f080024; + public static final int accessibility_custom_action_27 = 0x7f080025; + public static final int accessibility_custom_action_28 = 0x7f080026; + public static final int accessibility_custom_action_29 = 0x7f080027; + public static final int accessibility_custom_action_3 = 0x7f080028; + public static final int accessibility_custom_action_30 = 0x7f080029; + public static final int accessibility_custom_action_31 = 0x7f08002a; + public static final int accessibility_custom_action_4 = 0x7f08002b; + public static final int accessibility_custom_action_5 = 0x7f08002c; + public static final int accessibility_custom_action_6 = 0x7f08002d; + public static final int accessibility_custom_action_7 = 0x7f08002e; + public static final int accessibility_custom_action_8 = 0x7f08002f; + public static final int accessibility_custom_action_9 = 0x7f080030; + public static final int action_container = 0x7f08003b; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int async = 0x7f080057; + public static final int blocking = 0x7f080063; + public static final int chronometer = 0x7f08007e; + public static final int dialog_button = 0x7f0800a2; + public static final int forever = 0x7f0800d2; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int info = 0x7f0800f0; + public static final int italic = 0x7f0800f4; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int tag_accessibility_actions = 0x7f0801ce; + public static final int tag_accessibility_clickable_spans = 0x7f0801cf; + public static final int tag_accessibility_heading = 0x7f0801d0; + public static final int tag_accessibility_pane_title = 0x7f0801d1; + public static final int tag_screen_reader_focusable = 0x7f0801d6; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + } + public static final class integer { + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class layout { + public static final int custom_dialog = 0x7f0b001e; + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + } + public static final class string { + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + } + public static final class styleable { + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] SwipeRefreshLayout = new int[] { 0x7f030442 }; + public static final int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/tracing/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/tracing/R.java new file mode 100644 index 0000000..5bfecc1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/tracing/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.tracing; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/transition/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/transition/R.java new file mode 100644 index 0000000..ff6efe4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/transition/R.java @@ -0,0 +1,25 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.transition; + +public final class R { + public static final class id { + public static final int ghost_view = 0x7f0800d6; + public static final int ghost_view_holder = 0x7f0800d7; + public static final int parent_matrix = 0x7f080174; + public static final int save_non_transition_alpha = 0x7f08018d; + public static final int save_overlay_view = 0x7f08018e; + public static final int transition_clip = 0x7f0801f8; + public static final int transition_current_scene = 0x7f0801f9; + public static final int transition_image_transform = 0x7f0801fa; + public static final int transition_layout_save = 0x7f0801fb; + public static final int transition_pause_alpha = 0x7f0801fc; + public static final int transition_position = 0x7f0801fd; + public static final int transition_scene_layoutid_cache = 0x7f0801fe; + public static final int transition_transform = 0x7f0801ff; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/R.java new file mode 100644 index 0000000..658e5b9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.vectordrawable; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/animated/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/animated/R.java new file mode 100644 index 0000000..15b2de2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/vectordrawable/animated/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.vectordrawable.animated; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/versionedparcelable/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/versionedparcelable/R.java new file mode 100644 index 0000000..42289b8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/versionedparcelable/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.versionedparcelable; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager/R.java new file mode 100644 index 0000000..c5583fc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.viewpager; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager2/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager2/R.java new file mode 100644 index 0000000..ab56b53 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/viewpager2/R.java @@ -0,0 +1,14 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.viewpager2; + +public final class R { + public static final class styleable { + public static final int[] ViewPager2 = new int[] { 0x010100c4 }; + public static final int ViewPager2_android_orientation = 0; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/R.java new file mode 100644 index 0000000..f240aac --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/R.java @@ -0,0 +1,84 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.window; + +public final class R { + public static final class attr { + public static final int activityAction = 0x7f030028; + public static final int activityName = 0x7f03002a; + public static final int alwaysExpand = 0x7f030034; + public static final int animationBackgroundColor = 0x7f030039; + public static final int clearTop = 0x7f0300e0; + public static final int finishPrimaryWithPlaceholder = 0x7f0301e7; + public static final int finishPrimaryWithSecondary = 0x7f0301e8; + public static final int finishSecondaryWithPrimary = 0x7f0301e9; + public static final int placeholderActivityName = 0x7f03039d; + public static final int primaryActivityName = 0x7f0303b1; + public static final int secondaryActivityAction = 0x7f0303da; + public static final int secondaryActivityName = 0x7f0303db; + public static final int splitLayoutDirection = 0x7f03040b; + public static final int splitMaxAspectRatioInLandscape = 0x7f03040c; + public static final int splitMaxAspectRatioInPortrait = 0x7f03040d; + public static final int splitMinHeightDp = 0x7f03040e; + public static final int splitMinSmallestWidthDp = 0x7f03040f; + public static final int splitMinWidthDp = 0x7f030410; + public static final int splitRatio = 0x7f030411; + public static final int stickyPlaceholder = 0x7f030430; + public static final int tag = 0x7f030464; + } + public static final class id { + public static final int adjacent = 0x7f080048; + public static final int always = 0x7f08004d; + public static final int alwaysAllow = 0x7f08004e; + public static final int alwaysDisallow = 0x7f08004f; + public static final int androidx_window_activity_scope = 0x7f080050; + public static final int bottomToTop = 0x7f080065; + public static final int locale = 0x7f080102; + public static final int ltr = 0x7f080103; + public static final int never = 0x7f080150; + public static final int rtl = 0x7f08018c; + public static final int topToBottom = 0x7f0801f4; + } + public static final class styleable { + public static final int[] ActivityFilter = new int[] { 0x7f030028, 0x7f03002a }; + public static final int ActivityFilter_activityAction = 0; + public static final int ActivityFilter_activityName = 1; + public static final int[] ActivityRule = new int[] { 0x7f030034, 0x7f030464 }; + public static final int ActivityRule_alwaysExpand = 0; + public static final int ActivityRule_tag = 1; + public static final int[] SplitPairFilter = new int[] { 0x7f0303b1, 0x7f0303da, 0x7f0303db }; + public static final int SplitPairFilter_primaryActivityName = 0; + public static final int SplitPairFilter_secondaryActivityAction = 1; + public static final int SplitPairFilter_secondaryActivityName = 2; + public static final int[] SplitPairRule = new int[] { 0x7f030039, 0x7f0300e0, 0x7f0301e8, 0x7f0301e9, 0x7f03040b, 0x7f03040c, 0x7f03040d, 0x7f03040e, 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f030464 }; + public static final int SplitPairRule_animationBackgroundColor = 0; + public static final int SplitPairRule_clearTop = 1; + public static final int SplitPairRule_finishPrimaryWithSecondary = 2; + public static final int SplitPairRule_finishSecondaryWithPrimary = 3; + public static final int SplitPairRule_splitLayoutDirection = 4; + public static final int SplitPairRule_splitMaxAspectRatioInLandscape = 5; + public static final int SplitPairRule_splitMaxAspectRatioInPortrait = 6; + public static final int SplitPairRule_splitMinHeightDp = 7; + public static final int SplitPairRule_splitMinSmallestWidthDp = 8; + public static final int SplitPairRule_splitMinWidthDp = 9; + public static final int SplitPairRule_splitRatio = 10; + public static final int SplitPairRule_tag = 11; + public static final int[] SplitPlaceholderRule = new int[] { 0x7f030039, 0x7f0301e7, 0x7f03039d, 0x7f03040b, 0x7f03040c, 0x7f03040d, 0x7f03040e, 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f030430, 0x7f030464 }; + public static final int SplitPlaceholderRule_animationBackgroundColor = 0; + public static final int SplitPlaceholderRule_finishPrimaryWithPlaceholder = 1; + public static final int SplitPlaceholderRule_placeholderActivityName = 2; + public static final int SplitPlaceholderRule_splitLayoutDirection = 3; + public static final int SplitPlaceholderRule_splitMaxAspectRatioInLandscape = 4; + public static final int SplitPlaceholderRule_splitMaxAspectRatioInPortrait = 5; + public static final int SplitPlaceholderRule_splitMinHeightDp = 6; + public static final int SplitPlaceholderRule_splitMinSmallestWidthDp = 7; + public static final int SplitPlaceholderRule_splitMinWidthDp = 8; + public static final int SplitPlaceholderRule_splitRatio = 9; + public static final int SplitPlaceholderRule_stickyPlaceholder = 10; + public static final int SplitPlaceholderRule_tag = 11; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/extensions/core/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/extensions/core/R.java new file mode 100644 index 0000000..2d5ece4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/androidx/window/extensions/core/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package androidx.window.extensions.core; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/R.java new file mode 100644 index 0000000..7ec6c8d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/R.java @@ -0,0 +1,1721 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package com.bumptech.glide; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c; + public static final int btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d; + public static final int btn_checkbox_to_checked_icon_null_animation = 0x7f01000e; + public static final int btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f; + public static final int btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010; + public static final int btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011; + public static final int btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012; + public static final int btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013; + public static final int btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014; + public static final int btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015; + public static final int btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016; + public static final int btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017; + public static final int fragment_fast_out_extra_slow_in = 0x7f010020; + } + public static final class animator { + public static final int fragment_close_enter = 0x7f020003; + public static final int fragment_close_exit = 0x7f020004; + public static final int fragment_fade_enter = 0x7f020005; + public static final int fragment_fade_exit = 0x7f020006; + public static final int fragment_open_enter = 0x7f020007; + public static final int fragment_open_exit = 0x7f020008; + } + public static final class attr { + public static final int actionBarDivider = 0x7f030003; + public static final int actionBarItemBackground = 0x7f030004; + public static final int actionBarPopupTheme = 0x7f030005; + public static final int actionBarSize = 0x7f030006; + public static final int actionBarSplitStyle = 0x7f030007; + public static final int actionBarStyle = 0x7f030008; + public static final int actionBarTabBarStyle = 0x7f030009; + public static final int actionBarTabStyle = 0x7f03000a; + public static final int actionBarTabTextStyle = 0x7f03000b; + public static final int actionBarTheme = 0x7f03000c; + public static final int actionBarWidgetTheme = 0x7f03000d; + public static final int actionButtonStyle = 0x7f03000e; + public static final int actionDropDownStyle = 0x7f03000f; + public static final int actionLayout = 0x7f030010; + public static final int actionMenuTextAppearance = 0x7f030011; + public static final int actionMenuTextColor = 0x7f030012; + public static final int actionModeBackground = 0x7f030013; + public static final int actionModeCloseButtonStyle = 0x7f030014; + public static final int actionModeCloseContentDescription = 0x7f030015; + public static final int actionModeCloseDrawable = 0x7f030016; + public static final int actionModeCopyDrawable = 0x7f030017; + public static final int actionModeCutDrawable = 0x7f030018; + public static final int actionModeFindDrawable = 0x7f030019; + public static final int actionModePasteDrawable = 0x7f03001a; + public static final int actionModePopupWindowStyle = 0x7f03001b; + public static final int actionModeSelectAllDrawable = 0x7f03001c; + public static final int actionModeShareDrawable = 0x7f03001d; + public static final int actionModeSplitBackground = 0x7f03001e; + public static final int actionModeStyle = 0x7f03001f; + public static final int actionModeTheme = 0x7f030020; + public static final int actionModeWebSearchDrawable = 0x7f030021; + public static final int actionOverflowButtonStyle = 0x7f030022; + public static final int actionOverflowMenuStyle = 0x7f030023; + public static final int actionProviderClass = 0x7f030024; + public static final int actionViewClass = 0x7f030026; + public static final int activityChooserViewStyle = 0x7f030029; + public static final int alertDialogButtonGroupStyle = 0x7f03002c; + public static final int alertDialogCenterButtons = 0x7f03002d; + public static final int alertDialogStyle = 0x7f03002e; + public static final int alertDialogTheme = 0x7f03002f; + public static final int allowStacking = 0x7f030030; + public static final int alpha = 0x7f030031; + public static final int alphabeticModifiers = 0x7f030032; + public static final int arrowHeadLength = 0x7f03003f; + public static final int arrowShaftLength = 0x7f030040; + public static final int autoCompleteTextViewStyle = 0x7f030044; + public static final int autoSizeMaxTextSize = 0x7f030046; + public static final int autoSizeMinTextSize = 0x7f030047; + public static final int autoSizePresetSizes = 0x7f030048; + public static final int autoSizeStepGranularity = 0x7f030049; + public static final int autoSizeTextType = 0x7f03004a; + public static final int background = 0x7f03004d; + public static final int backgroundSplit = 0x7f030054; + public static final int backgroundStacked = 0x7f030055; + public static final int backgroundTint = 0x7f030056; + public static final int backgroundTintMode = 0x7f030057; + public static final int barLength = 0x7f030069; + public static final int borderlessButtonStyle = 0x7f03007d; + public static final int buttonBarButtonStyle = 0x7f030091; + public static final int buttonBarNegativeButtonStyle = 0x7f030092; + public static final int buttonBarNeutralButtonStyle = 0x7f030093; + public static final int buttonBarPositiveButtonStyle = 0x7f030094; + public static final int buttonBarStyle = 0x7f030095; + public static final int buttonCompat = 0x7f030096; + public static final int buttonGravity = 0x7f030097; + public static final int buttonIconDimen = 0x7f030099; + public static final int buttonPanelSideLayout = 0x7f03009c; + public static final int buttonStyle = 0x7f03009d; + public static final int buttonStyleSmall = 0x7f03009e; + public static final int buttonTint = 0x7f03009f; + public static final int buttonTintMode = 0x7f0300a0; + public static final int checkboxStyle = 0x7f0300b9; + public static final int checkedTextViewStyle = 0x7f0300c4; + public static final int closeIcon = 0x7f0300e7; + public static final int closeItemLayout = 0x7f0300ee; + public static final int collapseContentDescription = 0x7f0300ef; + public static final int collapseIcon = 0x7f0300f0; + public static final int color = 0x7f0300fb; + public static final int colorAccent = 0x7f0300fc; + public static final int colorBackgroundFloating = 0x7f0300fd; + public static final int colorButtonNormal = 0x7f0300fe; + public static final int colorControlActivated = 0x7f030100; + public static final int colorControlHighlight = 0x7f030101; + public static final int colorControlNormal = 0x7f030102; + public static final int colorError = 0x7f030103; + public static final int colorPrimary = 0x7f03011c; + public static final int colorPrimaryDark = 0x7f03011e; + public static final int colorSwitchThumbNormal = 0x7f030133; + public static final int commitIcon = 0x7f030138; + public static final int contentDescription = 0x7f030142; + public static final int contentInsetEnd = 0x7f030143; + public static final int contentInsetEndWithActions = 0x7f030144; + public static final int contentInsetLeft = 0x7f030145; + public static final int contentInsetRight = 0x7f030146; + public static final int contentInsetStart = 0x7f030147; + public static final int contentInsetStartWithNavigation = 0x7f030148; + public static final int controlBackground = 0x7f030152; + public static final int customNavigationLayout = 0x7f030171; + public static final int defaultQueryHint = 0x7f03017e; + public static final int dialogCornerRadius = 0x7f030185; + public static final int dialogPreferredPadding = 0x7f030186; + public static final int dialogTheme = 0x7f030187; + public static final int displayOptions = 0x7f030188; + public static final int divider = 0x7f030189; + public static final int dividerHorizontal = 0x7f03018b; + public static final int dividerPadding = 0x7f03018e; + public static final int dividerVertical = 0x7f030190; + public static final int drawableBottomCompat = 0x7f030195; + public static final int drawableEndCompat = 0x7f030196; + public static final int drawableLeftCompat = 0x7f030197; + public static final int drawableRightCompat = 0x7f030198; + public static final int drawableSize = 0x7f030199; + public static final int drawableStartCompat = 0x7f03019a; + public static final int drawableTint = 0x7f03019b; + public static final int drawableTintMode = 0x7f03019c; + public static final int drawableTopCompat = 0x7f03019d; + public static final int drawerArrowStyle = 0x7f03019e; + public static final int dropDownListViewStyle = 0x7f0301a2; + public static final int dropdownListPreferredItemHeight = 0x7f0301a3; + public static final int editTextBackground = 0x7f0301a6; + public static final int editTextColor = 0x7f0301a7; + public static final int editTextStyle = 0x7f0301a8; + public static final int elevation = 0x7f0301a9; + public static final int expandActivityOverflowButtonDrawable = 0x7f0301c6; + public static final int firstBaselineToTopHeight = 0x7f0301ea; + public static final int font = 0x7f03020d; + public static final int fontFamily = 0x7f03020e; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontProviderSystemFontFamily = 0x7f030216; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int gapBetweenBars = 0x7f03021e; + public static final int goIcon = 0x7f030220; + public static final int height = 0x7f030231; + public static final int hideOnContentScroll = 0x7f030239; + public static final int homeAsUpIndicator = 0x7f03023f; + public static final int homeLayout = 0x7f030240; + public static final int icon = 0x7f030244; + public static final int iconTint = 0x7f03024a; + public static final int iconTintMode = 0x7f03024b; + public static final int iconifiedByDefault = 0x7f03024c; + public static final int imageButtonStyle = 0x7f03024f; + public static final int indeterminateProgressStyle = 0x7f030255; + public static final int initialActivityCount = 0x7f03025c; + public static final int isLightTheme = 0x7f03025e; + public static final int itemPadding = 0x7f03026c; + public static final int lastBaselineToBottomHeight = 0x7f030288; + public static final int layout = 0x7f03028b; + public static final int lineHeight = 0x7f0302d8; + public static final int listChoiceBackgroundIndicator = 0x7f0302db; + public static final int listChoiceIndicatorMultipleAnimated = 0x7f0302dc; + public static final int listChoiceIndicatorSingleAnimated = 0x7f0302dd; + public static final int listDividerAlertDialog = 0x7f0302de; + public static final int listItemLayout = 0x7f0302df; + public static final int listLayout = 0x7f0302e0; + public static final int listMenuViewStyle = 0x7f0302e1; + public static final int listPopupWindowStyle = 0x7f0302e2; + public static final int listPreferredItemHeight = 0x7f0302e3; + public static final int listPreferredItemHeightLarge = 0x7f0302e4; + public static final int listPreferredItemHeightSmall = 0x7f0302e5; + public static final int listPreferredItemPaddingEnd = 0x7f0302e6; + public static final int listPreferredItemPaddingLeft = 0x7f0302e7; + public static final int listPreferredItemPaddingRight = 0x7f0302e8; + public static final int listPreferredItemPaddingStart = 0x7f0302e9; + public static final int logo = 0x7f0302ea; + public static final int logoDescription = 0x7f0302ec; + public static final int maxButtonHeight = 0x7f030325; + public static final int measureWithLargestChild = 0x7f03032d; + public static final int menu = 0x7f03032e; + public static final int multiChoiceItemLayout = 0x7f03036c; + public static final int navigationContentDescription = 0x7f03036e; + public static final int navigationIcon = 0x7f03036f; + public static final int navigationMode = 0x7f030371; + public static final int numericModifiers = 0x7f030379; + public static final int overlapAnchor = 0x7f030382; + public static final int paddingBottomNoButtons = 0x7f030384; + public static final int paddingEnd = 0x7f030386; + public static final int paddingStart = 0x7f030389; + public static final int paddingTopNoTitle = 0x7f03038b; + public static final int panelBackground = 0x7f03038d; + public static final int panelMenuListTheme = 0x7f03038e; + public static final int panelMenuListWidth = 0x7f03038f; + public static final int popupMenuStyle = 0x7f0303a9; + public static final int popupTheme = 0x7f0303aa; + public static final int popupWindowStyle = 0x7f0303ab; + public static final int preserveIconSpacing = 0x7f0303af; + public static final int progressBarPadding = 0x7f0303b2; + public static final int progressBarStyle = 0x7f0303b3; + public static final int queryBackground = 0x7f0303b7; + public static final int queryHint = 0x7f0303b8; + public static final int radioButtonStyle = 0x7f0303ba; + public static final int ratingBarStyle = 0x7f0303bc; + public static final int ratingBarStyleIndicator = 0x7f0303bd; + public static final int ratingBarStyleSmall = 0x7f0303be; + public static final int searchHintIcon = 0x7f0303d6; + public static final int searchIcon = 0x7f0303d7; + public static final int searchViewStyle = 0x7f0303d9; + public static final int seekBarStyle = 0x7f0303dc; + public static final int selectableItemBackground = 0x7f0303dd; + public static final int selectableItemBackgroundBorderless = 0x7f0303de; + public static final int showAsAction = 0x7f0303f0; + public static final int showDividers = 0x7f0303f2; + public static final int showText = 0x7f0303f6; + public static final int showTitle = 0x7f0303f7; + public static final int singleChoiceItemLayout = 0x7f0303ff; + public static final int spinBars = 0x7f030408; + public static final int spinnerDropDownItemStyle = 0x7f030409; + public static final int spinnerStyle = 0x7f03040a; + public static final int splitTrack = 0x7f030412; + public static final int srcCompat = 0x7f030418; + public static final int state_above_anchor = 0x7f030424; + public static final int subMenuArrow = 0x7f030433; + public static final int submitBackground = 0x7f030438; + public static final int subtitle = 0x7f030439; + public static final int subtitleTextAppearance = 0x7f03043b; + public static final int subtitleTextColor = 0x7f03043c; + public static final int subtitleTextStyle = 0x7f03043d; + public static final int suggestionRowLayout = 0x7f030441; + public static final int switchMinWidth = 0x7f030443; + public static final int switchPadding = 0x7f030444; + public static final int switchStyle = 0x7f030445; + public static final int switchTextAppearance = 0x7f030446; + public static final int textAllCaps = 0x7f03046a; + public static final int textAppearanceLargePopupMenu = 0x7f030481; + public static final int textAppearanceListItem = 0x7f030483; + public static final int textAppearanceListItemSecondary = 0x7f030484; + public static final int textAppearanceListItemSmall = 0x7f030485; + public static final int textAppearancePopupMenuHeader = 0x7f030487; + public static final int textAppearanceSearchResultSubtitle = 0x7f030488; + public static final int textAppearanceSearchResultTitle = 0x7f030489; + public static final int textAppearanceSmallPopupMenu = 0x7f03048a; + public static final int textColorAlertDialogListItem = 0x7f030495; + public static final int textColorSearchUrl = 0x7f030496; + public static final int textLocale = 0x7f0304a1; + public static final int theme = 0x7f0304ab; + public static final int thickness = 0x7f0304ac; + public static final int thumbTextPadding = 0x7f0304b7; + public static final int thumbTint = 0x7f0304b8; + public static final int thumbTintMode = 0x7f0304b9; + public static final int tickMark = 0x7f0304bf; + public static final int tickMarkTint = 0x7f0304c0; + public static final int tickMarkTintMode = 0x7f0304c1; + public static final int tint = 0x7f0304c5; + public static final int tintMode = 0x7f0304c6; + public static final int title = 0x7f0304c8; + public static final int titleMargin = 0x7f0304cc; + public static final int titleMarginBottom = 0x7f0304cd; + public static final int titleMarginEnd = 0x7f0304ce; + public static final int titleMarginStart = 0x7f0304cf; + public static final int titleMarginTop = 0x7f0304d0; + public static final int titleMargins = 0x7f0304d1; + public static final int titleTextAppearance = 0x7f0304d3; + public static final int titleTextColor = 0x7f0304d4; + public static final int titleTextStyle = 0x7f0304d6; + public static final int toolbarNavigationButtonStyle = 0x7f0304d9; + public static final int toolbarStyle = 0x7f0304da; + public static final int tooltipForegroundColor = 0x7f0304dc; + public static final int tooltipFrameBackground = 0x7f0304dd; + public static final int tooltipText = 0x7f0304df; + public static final int track = 0x7f0304e4; + public static final int trackTint = 0x7f0304f0; + public static final int trackTintMode = 0x7f0304f1; + public static final int ttcIndex = 0x7f0304fb; + public static final int viewInflaterClass = 0x7f030504; + public static final int voiceIcon = 0x7f03050a; + public static final int windowActionBar = 0x7f030512; + public static final int windowActionBarOverlay = 0x7f030513; + public static final int windowActionModeOverlay = 0x7f030514; + public static final int windowFixedHeightMajor = 0x7f030515; + public static final int windowFixedHeightMinor = 0x7f030516; + public static final int windowFixedWidthMajor = 0x7f030517; + public static final int windowFixedWidthMinor = 0x7f030518; + public static final int windowMinWidthMajor = 0x7f030519; + public static final int windowMinWidthMinor = 0x7f03051a; + public static final int windowNoTitle = 0x7f03051b; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040001; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_decor_view_status_guard = 0x7f050005; + public static final int abc_decor_view_status_guard_light = 0x7f050006; + public static final int abc_hint_foreground_material_dark = 0x7f050007; + public static final int abc_hint_foreground_material_light = 0x7f050008; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050009; + public static final int abc_primary_text_disable_only_material_light = 0x7f05000a; + public static final int abc_primary_text_material_dark = 0x7f05000b; + public static final int abc_primary_text_material_light = 0x7f05000c; + public static final int abc_search_url_text = 0x7f05000d; + public static final int abc_search_url_text_normal = 0x7f05000e; + public static final int abc_search_url_text_pressed = 0x7f05000f; + public static final int abc_search_url_text_selected = 0x7f050010; + public static final int abc_secondary_text_material_dark = 0x7f050011; + public static final int abc_secondary_text_material_light = 0x7f050012; + public static final int abc_tint_btn_checkable = 0x7f050013; + public static final int abc_tint_default = 0x7f050014; + public static final int abc_tint_edittext = 0x7f050015; + public static final int abc_tint_seek_thumb = 0x7f050016; + public static final int abc_tint_spinner = 0x7f050017; + public static final int abc_tint_switch_track = 0x7f050018; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int androidx_core_ripple_material_light = 0x7f05001b; + public static final int androidx_core_secondary_text_default_material_light = 0x7f05001c; + public static final int background_floating_material_dark = 0x7f05001d; + public static final int background_floating_material_light = 0x7f05001e; + public static final int background_material_dark = 0x7f05001f; + public static final int background_material_light = 0x7f050020; + public static final int bright_foreground_disabled_material_dark = 0x7f050021; + public static final int bright_foreground_disabled_material_light = 0x7f050022; + public static final int bright_foreground_inverse_material_dark = 0x7f050023; + public static final int bright_foreground_inverse_material_light = 0x7f050024; + public static final int bright_foreground_material_dark = 0x7f050025; + public static final int bright_foreground_material_light = 0x7f050026; + public static final int button_material_dark = 0x7f05002b; + public static final int button_material_light = 0x7f05002c; + public static final int dim_foreground_disabled_material_dark = 0x7f05005d; + public static final int dim_foreground_disabled_material_light = 0x7f05005e; + public static final int dim_foreground_material_dark = 0x7f05005f; + public static final int dim_foreground_material_light = 0x7f050060; + public static final int error_color_material_dark = 0x7f050061; + public static final int error_color_material_light = 0x7f050062; + public static final int foreground_material_dark = 0x7f050063; + public static final int foreground_material_light = 0x7f050064; + public static final int highlighted_text_material_dark = 0x7f050065; + public static final int highlighted_text_material_light = 0x7f050066; + public static final int material_blue_grey_800 = 0x7f05021a; + public static final int material_blue_grey_900 = 0x7f05021b; + public static final int material_blue_grey_950 = 0x7f05021c; + public static final int material_deep_teal_200 = 0x7f05021e; + public static final int material_deep_teal_500 = 0x7f05021f; + public static final int material_grey_100 = 0x7f05026a; + public static final int material_grey_300 = 0x7f05026b; + public static final int material_grey_50 = 0x7f05026c; + public static final int material_grey_600 = 0x7f05026d; + public static final int material_grey_800 = 0x7f05026e; + public static final int material_grey_850 = 0x7f05026f; + public static final int material_grey_900 = 0x7f050270; + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + public static final int primary_dark_material_dark = 0x7f0502f8; + public static final int primary_dark_material_light = 0x7f0502f9; + public static final int primary_material_dark = 0x7f0502fa; + public static final int primary_material_light = 0x7f0502fb; + public static final int primary_text_default_material_dark = 0x7f0502fc; + public static final int primary_text_default_material_light = 0x7f0502fd; + public static final int primary_text_disabled_material_dark = 0x7f0502fe; + public static final int primary_text_disabled_material_light = 0x7f0502ff; + public static final int ripple_material_dark = 0x7f050300; + public static final int ripple_material_light = 0x7f050301; + public static final int secondary_text_default_material_dark = 0x7f050302; + public static final int secondary_text_default_material_light = 0x7f050303; + public static final int secondary_text_disabled_material_dark = 0x7f050304; + public static final int secondary_text_disabled_material_light = 0x7f050305; + public static final int switch_thumb_disabled_material_dark = 0x7f050306; + public static final int switch_thumb_disabled_material_light = 0x7f050307; + public static final int switch_thumb_material_dark = 0x7f050308; + public static final int switch_thumb_material_light = 0x7f050309; + public static final int switch_thumb_normal_material_dark = 0x7f05030a; + public static final int switch_thumb_normal_material_light = 0x7f05030b; + public static final int tooltip_background_dark = 0x7f05030c; + public static final int tooltip_background_light = 0x7f05030d; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_height_large_material = 0x7f060030; + public static final int abc_list_item_height_material = 0x7f060031; + public static final int abc_list_item_height_small_material = 0x7f060032; + public static final int abc_list_item_padding_horizontal_material = 0x7f060033; + public static final int abc_panel_menu_list_width = 0x7f060034; + public static final int abc_progress_bar_height_material = 0x7f060035; + public static final int abc_search_view_preferred_height = 0x7f060036; + public static final int abc_search_view_preferred_width = 0x7f060037; + public static final int abc_seekbar_track_background_height_material = 0x7f060038; + public static final int abc_seekbar_track_progress_height_material = 0x7f060039; + public static final int abc_select_dialog_padding_start_material = 0x7f06003a; + public static final int abc_star_big = 0x7f06003b; + public static final int abc_star_medium = 0x7f06003c; + public static final int abc_star_small = 0x7f06003d; + public static final int abc_switch_padding = 0x7f06003e; + public static final int abc_text_size_body_1_material = 0x7f06003f; + public static final int abc_text_size_body_2_material = 0x7f060040; + public static final int abc_text_size_button_material = 0x7f060041; + public static final int abc_text_size_caption_material = 0x7f060042; + public static final int abc_text_size_display_1_material = 0x7f060043; + public static final int abc_text_size_display_2_material = 0x7f060044; + public static final int abc_text_size_display_3_material = 0x7f060045; + public static final int abc_text_size_display_4_material = 0x7f060046; + public static final int abc_text_size_headline_material = 0x7f060047; + public static final int abc_text_size_large_material = 0x7f060048; + public static final int abc_text_size_medium_material = 0x7f060049; + public static final int abc_text_size_menu_header_material = 0x7f06004a; + public static final int abc_text_size_menu_material = 0x7f06004b; + public static final int abc_text_size_small_material = 0x7f06004c; + public static final int abc_text_size_subhead_material = 0x7f06004d; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f06004e; + public static final int abc_text_size_title_material = 0x7f06004f; + public static final int abc_text_size_title_material_toolbar = 0x7f060050; + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int disabled_alpha_material_dark = 0x7f060090; + public static final int disabled_alpha_material_light = 0x7f060091; + public static final int highlight_alpha_material_colored = 0x7f060095; + public static final int highlight_alpha_material_dark = 0x7f060096; + public static final int highlight_alpha_material_light = 0x7f060097; + public static final int hint_alpha_material_dark = 0x7f060098; + public static final int hint_alpha_material_light = 0x7f060099; + public static final int hint_pressed_alpha_material_dark = 0x7f06009a; + public static final int hint_pressed_alpha_material_light = 0x7f06009b; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + public static final int tooltip_corner_radius = 0x7f06031e; + public static final int tooltip_horizontal_padding = 0x7f06031f; + public static final int tooltip_margin = 0x7f060320; + public static final int tooltip_precise_anchor_extra_offset = 0x7f060321; + public static final int tooltip_precise_anchor_threshold = 0x7f060322; + public static final int tooltip_vertical_padding = 0x7f060323; + public static final int tooltip_y_offset_non_touch = 0x7f060324; + public static final int tooltip_y_offset_touch = 0x7f060325; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070028; + public static final int abc_action_bar_item_background_material = 0x7f070029; + public static final int abc_btn_borderless_material = 0x7f07002a; + public static final int abc_btn_check_material = 0x7f07002b; + public static final int abc_btn_check_material_anim = 0x7f07002c; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07002d; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07002e; + public static final int abc_btn_colored_material = 0x7f07002f; + public static final int abc_btn_default_mtrl_shape = 0x7f070030; + public static final int abc_btn_radio_material = 0x7f070031; + public static final int abc_btn_radio_material_anim = 0x7f070032; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f070033; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070034; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070035; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070036; + public static final int abc_cab_background_internal_bg = 0x7f070037; + public static final int abc_cab_background_top_material = 0x7f070038; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070039; + public static final int abc_control_background_material = 0x7f07003a; + public static final int abc_dialog_material_background = 0x7f07003b; + public static final int abc_edit_text_material = 0x7f07003c; + public static final int abc_ic_ab_back_material = 0x7f07003d; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07003e; + public static final int abc_ic_clear_material = 0x7f07003f; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f070040; + public static final int abc_ic_go_search_api_material = 0x7f070041; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f070042; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f070043; + public static final int abc_ic_menu_overflow_material = 0x7f070044; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070045; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070046; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070047; + public static final int abc_ic_search_api_material = 0x7f070048; + public static final int abc_ic_voice_search_api_material = 0x7f070049; + public static final int abc_item_background_holo_dark = 0x7f07004a; + public static final int abc_item_background_holo_light = 0x7f07004b; + public static final int abc_list_divider_material = 0x7f07004c; + public static final int abc_list_divider_mtrl_alpha = 0x7f07004d; + public static final int abc_list_focused_holo = 0x7f07004e; + public static final int abc_list_longpressed_holo = 0x7f07004f; + public static final int abc_list_pressed_holo_dark = 0x7f070050; + public static final int abc_list_pressed_holo_light = 0x7f070051; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070052; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070053; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070054; + public static final int abc_list_selector_disabled_holo_light = 0x7f070055; + public static final int abc_list_selector_holo_dark = 0x7f070056; + public static final int abc_list_selector_holo_light = 0x7f070057; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f070058; + public static final int abc_popup_background_mtrl_mult = 0x7f070059; + public static final int abc_ratingbar_indicator_material = 0x7f07005a; + public static final int abc_ratingbar_material = 0x7f07005b; + public static final int abc_ratingbar_small_material = 0x7f07005c; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07005d; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f07005e; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f07005f; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070060; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070061; + public static final int abc_seekbar_thumb_material = 0x7f070062; + public static final int abc_seekbar_tick_mark_material = 0x7f070063; + public static final int abc_seekbar_track_material = 0x7f070064; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070065; + public static final int abc_spinner_textfield_background_material = 0x7f070066; + public static final int abc_star_black_48dp = 0x7f070067; + public static final int abc_star_half_black_48dp = 0x7f070068; + public static final int abc_switch_thumb_material = 0x7f070069; + public static final int abc_switch_track_mtrl_alpha = 0x7f07006a; + public static final int abc_tab_indicator_material = 0x7f07006b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07006c; + public static final int abc_text_cursor_material = 0x7f07006d; + public static final int abc_text_select_handle_left_mtrl = 0x7f07006e; + public static final int abc_text_select_handle_middle_mtrl = 0x7f07006f; + public static final int abc_text_select_handle_right_mtrl = 0x7f070070; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070071; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070072; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070073; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070074; + public static final int abc_textfield_search_material = 0x7f070075; + public static final int abc_vector_test = 0x7f070076; + public static final int btn_checkbox_checked_mtrl = 0x7f070079; + public static final int btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f07007a; + public static final int btn_checkbox_unchecked_mtrl = 0x7f07007b; + public static final int btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f07007c; + public static final int btn_radio_off_mtrl = 0x7f07007d; + public static final int btn_radio_off_to_on_mtrl_animation = 0x7f07007e; + public static final int btn_radio_on_mtrl = 0x7f07007f; + public static final int btn_radio_on_to_off_mtrl_animation = 0x7f070080; + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + public static final int tooltip_frame_dark = 0x7f0700e6; + public static final int tooltip_frame_light = 0x7f0700e7; + } + public static final class id { + public static final int accessibility_action_clickable_span = 0x7f080010; + public static final int accessibility_custom_action_0 = 0x7f080011; + public static final int accessibility_custom_action_1 = 0x7f080012; + public static final int accessibility_custom_action_10 = 0x7f080013; + public static final int accessibility_custom_action_11 = 0x7f080014; + public static final int accessibility_custom_action_12 = 0x7f080015; + public static final int accessibility_custom_action_13 = 0x7f080016; + public static final int accessibility_custom_action_14 = 0x7f080017; + public static final int accessibility_custom_action_15 = 0x7f080018; + public static final int accessibility_custom_action_16 = 0x7f080019; + public static final int accessibility_custom_action_17 = 0x7f08001a; + public static final int accessibility_custom_action_18 = 0x7f08001b; + public static final int accessibility_custom_action_19 = 0x7f08001c; + public static final int accessibility_custom_action_2 = 0x7f08001d; + public static final int accessibility_custom_action_20 = 0x7f08001e; + public static final int accessibility_custom_action_21 = 0x7f08001f; + public static final int accessibility_custom_action_22 = 0x7f080020; + public static final int accessibility_custom_action_23 = 0x7f080021; + public static final int accessibility_custom_action_24 = 0x7f080022; + public static final int accessibility_custom_action_25 = 0x7f080023; + public static final int accessibility_custom_action_26 = 0x7f080024; + public static final int accessibility_custom_action_27 = 0x7f080025; + public static final int accessibility_custom_action_28 = 0x7f080026; + public static final int accessibility_custom_action_29 = 0x7f080027; + public static final int accessibility_custom_action_3 = 0x7f080028; + public static final int accessibility_custom_action_30 = 0x7f080029; + public static final int accessibility_custom_action_31 = 0x7f08002a; + public static final int accessibility_custom_action_4 = 0x7f08002b; + public static final int accessibility_custom_action_5 = 0x7f08002c; + public static final int accessibility_custom_action_6 = 0x7f08002d; + public static final int accessibility_custom_action_7 = 0x7f08002e; + public static final int accessibility_custom_action_8 = 0x7f08002f; + public static final int accessibility_custom_action_9 = 0x7f080030; + public static final int action_bar = 0x7f080034; + public static final int action_bar_activity_content = 0x7f080035; + public static final int action_bar_container = 0x7f080036; + public static final int action_bar_root = 0x7f080037; + public static final int action_bar_spinner = 0x7f080038; + public static final int action_bar_subtitle = 0x7f080039; + public static final int action_bar_title = 0x7f08003a; + public static final int action_container = 0x7f08003b; + public static final int action_context_bar = 0x7f08003c; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_menu_divider = 0x7f08003f; + public static final int action_menu_presenter = 0x7f080040; + public static final int action_mode_bar = 0x7f080041; + public static final int action_mode_bar_stub = 0x7f080042; + public static final int action_mode_close_button = 0x7f080043; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int activity_chooser_view_content = 0x7f080046; + public static final int add = 0x7f080047; + public static final int alertTitle = 0x7f080049; + public static final int async = 0x7f080057; + public static final int blocking = 0x7f080063; + public static final int buttonPanel = 0x7f08006f; + public static final int checkbox = 0x7f08007c; + public static final int checked = 0x7f08007d; + public static final int chronometer = 0x7f08007e; + public static final int content = 0x7f08008a; + public static final int contentPanel = 0x7f08008b; + public static final int custom = 0x7f080093; + public static final int customPanel = 0x7f080094; + public static final int decor_content_parent = 0x7f080099; + public static final int default_activity_button = 0x7f08009a; + public static final int dialog_button = 0x7f0800a2; + public static final int edit_query = 0x7f0800b8; + public static final int expand_activities_button = 0x7f0800c2; + public static final int expanded_menu = 0x7f0800c3; + public static final int forever = 0x7f0800d2; + public static final int fragment_container_view_tag = 0x7f0800d3; + public static final int glide_custom_view_target_tag = 0x7f0800d8; + public static final int group_divider = 0x7f0800dc; + public static final int home = 0x7f0800e2; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int image = 0x7f0800ec; + public static final int info = 0x7f0800f0; + public static final int italic = 0x7f0800f4; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int listMode = 0x7f080100; + public static final int list_item = 0x7f080101; + public static final int message = 0x7f08011f; + public static final int multiply = 0x7f080140; + public static final int none = 0x7f080155; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int off = 0x7f08015b; + public static final int on = 0x7f08015c; + public static final int parentPanel = 0x7f080172; + public static final int progress_circular = 0x7f08017f; + public static final int progress_horizontal = 0x7f080180; + public static final int radio = 0x7f080181; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int screen = 0x7f080191; + public static final int scrollIndicatorDown = 0x7f080193; + public static final int scrollIndicatorUp = 0x7f080194; + public static final int scrollView = 0x7f080195; + public static final int search_badge = 0x7f080197; + public static final int search_bar = 0x7f080198; + public static final int search_button = 0x7f080199; + public static final int search_close_btn = 0x7f08019a; + public static final int search_edit_frame = 0x7f08019b; + public static final int search_go_btn = 0x7f08019c; + public static final int search_mag_icon = 0x7f08019d; + public static final int search_plate = 0x7f08019e; + public static final int search_src_text = 0x7f08019f; + public static final int search_voice_btn = 0x7f0801a0; + public static final int select_dialog_listview = 0x7f0801a1; + public static final int shortcut = 0x7f0801a7; + public static final int spacer = 0x7f0801b6; + public static final int special_effects_controller_view_tag = 0x7f0801b7; + public static final int split_action_bar = 0x7f0801b9; + public static final int src_atop = 0x7f0801be; + public static final int src_in = 0x7f0801bf; + public static final int src_over = 0x7f0801c0; + public static final int submenuarrow = 0x7f0801ca; + public static final int submit_area = 0x7f0801cb; + public static final int tabMode = 0x7f0801cd; + public static final int tag_accessibility_actions = 0x7f0801ce; + public static final int tag_accessibility_clickable_spans = 0x7f0801cf; + public static final int tag_accessibility_heading = 0x7f0801d0; + public static final int tag_accessibility_pane_title = 0x7f0801d1; + public static final int tag_on_apply_window_listener = 0x7f0801d3; + public static final int tag_on_receive_content_listener = 0x7f0801d4; + public static final int tag_on_receive_content_mime_types = 0x7f0801d5; + public static final int tag_screen_reader_focusable = 0x7f0801d6; + public static final int tag_state_description = 0x7f0801d7; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int tag_window_insets_animation_callback = 0x7f0801dc; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int textSpacerNoButtons = 0x7f0801e0; + public static final int textSpacerNoTitle = 0x7f0801e1; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + public static final int titleDividerNoCustom = 0x7f0801ef; + public static final int title_template = 0x7f0801f0; + public static final int topPanel = 0x7f0801f3; + public static final int unchecked = 0x7f080201; + public static final int uniform = 0x7f080202; + public static final int up = 0x7f080204; + public static final int view_tree_lifecycle_owner = 0x7f08020b; + public static final int view_tree_saved_state_registry_owner = 0x7f08020d; + public static final int view_tree_view_model_store_owner = 0x7f08020e; + public static final int visible_removing_fragment_view_tag = 0x7f080210; + public static final int wrap_content = 0x7f080216; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090006; + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class interpolator { + public static final int btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000; + public static final int btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003; + public static final int btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004; + public static final int btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005; + public static final int fast_out_slow_in = 0x7f0a0006; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int custom_dialog = 0x7f0b001e; + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + public static final int select_dialog_item_material = 0x7f0b006d; + public static final int select_dialog_multichoice_material = 0x7f0b006e; + public static final int select_dialog_singlechoice_material = 0x7f0b006f; + public static final int support_simple_spinner_dropdown_item = 0x7f0b0071; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f0f0000; + public static final int abc_action_bar_up_description = 0x7f0f0001; + public static final int abc_action_menu_overflow_description = 0x7f0f0002; + public static final int abc_action_mode_done = 0x7f0f0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0f0004; + public static final int abc_activitychooserview_choose_application = 0x7f0f0005; + public static final int abc_capital_off = 0x7f0f0006; + public static final int abc_capital_on = 0x7f0f0007; + public static final int abc_menu_alt_shortcut_label = 0x7f0f0008; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0f0009; + public static final int abc_menu_delete_shortcut_label = 0x7f0f000a; + public static final int abc_menu_enter_shortcut_label = 0x7f0f000b; + public static final int abc_menu_function_shortcut_label = 0x7f0f000c; + public static final int abc_menu_meta_shortcut_label = 0x7f0f000d; + public static final int abc_menu_shift_shortcut_label = 0x7f0f000e; + public static final int abc_menu_space_shortcut_label = 0x7f0f000f; + public static final int abc_menu_sym_shortcut_label = 0x7f0f0010; + public static final int abc_prepend_shortcut_label = 0x7f0f0011; + public static final int abc_search_hint = 0x7f0f0012; + public static final int abc_searchview_description_clear = 0x7f0f0013; + public static final int abc_searchview_description_query = 0x7f0f0014; + public static final int abc_searchview_description_search = 0x7f0f0015; + public static final int abc_searchview_description_submit = 0x7f0f0016; + public static final int abc_searchview_description_voice = 0x7f0f0017; + public static final int abc_shareactionprovider_share_with = 0x7f0f0018; + public static final int abc_shareactionprovider_share_with_application = 0x7f0f0019; + public static final int abc_toolbar_collapse_description = 0x7f0f001a; + public static final int search_menu_title = 0x7f0f00a8; + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f100001; + public static final int AlertDialog_AppCompat_Light = 0x7f100002; + public static final int Animation_AppCompat_Dialog = 0x7f100003; + public static final int Animation_AppCompat_DropDownUp = 0x7f100004; + public static final int Animation_AppCompat_Tooltip = 0x7f100005; + public static final int Base_AlertDialog_AppCompat = 0x7f10000e; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f10000f; + public static final int Base_Animation_AppCompat_Dialog = 0x7f100010; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f100011; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f100012; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f100015; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f100014; + public static final int Base_TextAppearance_AppCompat = 0x7f100019; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f10001a; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f10001b; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f10001c; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f10001d; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f10001e; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f10001f; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f100020; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f100021; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f100022; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f100023; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f100024; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f100025; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f100026; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f100027; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f100028; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f100029; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f10002a; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f10002b; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f10002c; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f10002d; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f10002e; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f10002f; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f100030; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f100031; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f100032; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f100033; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f100034; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f100035; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f100036; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f100037; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f100038; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f100039; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f10003a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f10003b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f10003c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f10003d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f10003e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f10003f; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f100040; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f100041; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f100042; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f100043; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f100044; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f100045; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f10004b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f10004c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f10004d; + public static final int Base_ThemeOverlay_AppCompat = 0x7f10007b; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f10007c; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f10007d; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f10007e; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f10007f; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100080; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f100081; + public static final int Base_Theme_AppCompat = 0x7f10004e; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f10004f; + public static final int Base_Theme_AppCompat_Dialog = 0x7f100050; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f100054; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f100051; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f100052; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f100053; + public static final int Base_Theme_AppCompat_Light = 0x7f100055; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f100056; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f100057; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f10005b; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f100058; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f100059; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10005a; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f1000ac; + public static final int Base_V21_Theme_AppCompat = 0x7f1000a4; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f1000a5; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f1000a6; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f1000a7; + public static final int Base_V22_Theme_AppCompat = 0x7f1000b0; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f1000b1; + public static final int Base_V23_Theme_AppCompat = 0x7f1000b2; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f1000b3; + public static final int Base_V26_Theme_AppCompat = 0x7f1000b8; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f1000b9; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f1000ba; + public static final int Base_V28_Theme_AppCompat = 0x7f1000bb; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f1000bc; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f1000c1; + public static final int Base_V7_Theme_AppCompat = 0x7f1000bd; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f1000be; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f1000bf; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f1000c0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f1000c2; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f1000c3; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f1000c4; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f1000c5; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f1000c6; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f1000c7; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f1000c8; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f1000c9; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f1000ca; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f1000cb; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f1000cc; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f1000cd; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f1000ce; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f1000cf; + public static final int Base_Widget_AppCompat_Button = 0x7f1000d0; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f1000d6; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f1000d7; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f1000d1; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f1000d2; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f1000d3; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f1000d4; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f1000d5; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f1000d8; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f1000d9; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f1000da; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f1000db; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f1000dc; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f1000dd; + public static final int Base_Widget_AppCompat_EditText = 0x7f1000de; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f1000df; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f1000e0; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f1000e1; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f1000e2; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f1000e3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f1000e4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f1000e5; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f1000e6; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f1000e7; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f1000e8; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f1000e9; + public static final int Base_Widget_AppCompat_ListView = 0x7f1000ea; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f1000eb; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f1000ec; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f1000ed; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f1000ee; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f1000ef; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f1000f0; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f1000f1; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f1000f2; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f1000f3; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f1000f4; + public static final int Base_Widget_AppCompat_SearchView = 0x7f1000f5; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f1000f6; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f1000f7; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f1000f8; + public static final int Base_Widget_AppCompat_Spinner = 0x7f1000f9; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f1000fa; + public static final int Base_Widget_AppCompat_TextView = 0x7f1000fb; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f1000fc; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f1000fd; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1000fe; + public static final int Platform_AppCompat = 0x7f100143; + public static final int Platform_AppCompat_Light = 0x7f100144; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f100149; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f10014a; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f10014b; + public static final int Platform_V21_AppCompat = 0x7f10014c; + public static final int Platform_V21_AppCompat_Light = 0x7f10014d; + public static final int Platform_V25_AppCompat = 0x7f10014e; + public static final int Platform_V25_AppCompat_Light = 0x7f10014f; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f100150; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f100151; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f100152; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f100153; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f100154; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f100155; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f100156; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f100157; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f100158; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f100159; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f10015f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f10015a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f10015b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f10015c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f10015d; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f10015e; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f100160; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f100161; + public static final int TextAppearance_AppCompat = 0x7f1001a0; + public static final int TextAppearance_AppCompat_Body1 = 0x7f1001a1; + public static final int TextAppearance_AppCompat_Body2 = 0x7f1001a2; + public static final int TextAppearance_AppCompat_Button = 0x7f1001a3; + public static final int TextAppearance_AppCompat_Caption = 0x7f1001a4; + public static final int TextAppearance_AppCompat_Display1 = 0x7f1001a5; + public static final int TextAppearance_AppCompat_Display2 = 0x7f1001a6; + public static final int TextAppearance_AppCompat_Display3 = 0x7f1001a7; + public static final int TextAppearance_AppCompat_Display4 = 0x7f1001a8; + public static final int TextAppearance_AppCompat_Headline = 0x7f1001a9; + public static final int TextAppearance_AppCompat_Inverse = 0x7f1001aa; + public static final int TextAppearance_AppCompat_Large = 0x7f1001ab; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f1001ac; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f1001ad; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f1001ae; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f1001af; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f1001b0; + public static final int TextAppearance_AppCompat_Medium = 0x7f1001b1; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f1001b2; + public static final int TextAppearance_AppCompat_Menu = 0x7f1001b3; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f1001b4; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f1001b5; + public static final int TextAppearance_AppCompat_Small = 0x7f1001b6; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f1001b7; + public static final int TextAppearance_AppCompat_Subhead = 0x7f1001b8; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f1001b9; + public static final int TextAppearance_AppCompat_Title = 0x7f1001ba; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f1001bb; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f1001bc; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f1001bd; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f1001be; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f1001bf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f1001c0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f1001c1; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f1001c2; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f1001c3; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f1001c4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f1001c5; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f1001c6; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f1001c7; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f1001c8; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f1001c9; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f1001ca; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f1001cb; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f1001cc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f1001cd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f1001ce; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f1001cf; + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f100215; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f100216; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f100217; + public static final int ThemeOverlay_AppCompat = 0x7f100281; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f100282; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f100283; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f100284; + public static final int ThemeOverlay_AppCompat_DayNight = 0x7f100285; + public static final int ThemeOverlay_AppCompat_DayNight_ActionBar = 0x7f100286; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f100287; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100288; + public static final int ThemeOverlay_AppCompat_Light = 0x7f100289; + public static final int Theme_AppCompat = 0x7f100218; + public static final int Theme_AppCompat_CompactMenu = 0x7f100219; + public static final int Theme_AppCompat_DayNight = 0x7f10021a; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f10021b; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f10021c; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f10021f; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f10021d; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f10021e; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f100220; + public static final int Theme_AppCompat_Dialog = 0x7f100221; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f100224; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f100222; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f100223; + public static final int Theme_AppCompat_Empty = 0x7f100225; + public static final int Theme_AppCompat_Light = 0x7f100226; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f100227; + public static final int Theme_AppCompat_Light_Dialog = 0x7f100228; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f10022b; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f100229; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10022a; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f10022c; + public static final int Theme_AppCompat_NoActionBar = 0x7f10022d; + public static final int Widget_AppCompat_ActionBar = 0x7f1002f3; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f1002f4; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f1002f5; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f1002f6; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f1002f7; + public static final int Widget_AppCompat_ActionButton = 0x7f1002f8; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f1002f9; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f1002fa; + public static final int Widget_AppCompat_ActionMode = 0x7f1002fb; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f1002fc; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f1002fd; + public static final int Widget_AppCompat_Button = 0x7f1002fe; + public static final int Widget_AppCompat_ButtonBar = 0x7f100304; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f100305; + public static final int Widget_AppCompat_Button_Borderless = 0x7f1002ff; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f100300; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f100301; + public static final int Widget_AppCompat_Button_Colored = 0x7f100302; + public static final int Widget_AppCompat_Button_Small = 0x7f100303; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f100306; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f100307; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f100308; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f100309; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f10030a; + public static final int Widget_AppCompat_EditText = 0x7f10030b; + public static final int Widget_AppCompat_ImageButton = 0x7f10030c; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f10030d; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f10030e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f10030f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f100310; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f100311; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f100312; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f100313; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f100314; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f100315; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f100316; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f100317; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f100318; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f100319; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f10031a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f10031b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f10031c; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f10031d; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f10031e; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f10031f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f100320; + public static final int Widget_AppCompat_Light_SearchView = 0x7f100321; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f100322; + public static final int Widget_AppCompat_ListMenuView = 0x7f100323; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f100324; + public static final int Widget_AppCompat_ListView = 0x7f100325; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f100326; + public static final int Widget_AppCompat_ListView_Menu = 0x7f100327; + public static final int Widget_AppCompat_PopupMenu = 0x7f100328; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f100329; + public static final int Widget_AppCompat_PopupWindow = 0x7f10032a; + public static final int Widget_AppCompat_ProgressBar = 0x7f10032b; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f10032c; + public static final int Widget_AppCompat_RatingBar = 0x7f10032d; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f10032e; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f10032f; + public static final int Widget_AppCompat_SearchView = 0x7f100330; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f100331; + public static final int Widget_AppCompat_SeekBar = 0x7f100332; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f100333; + public static final int Widget_AppCompat_Spinner = 0x7f100334; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f100335; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f100336; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f100337; + public static final int Widget_AppCompat_TextView = 0x7f100338; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f100339; + public static final int Widget_AppCompat_Toolbar = 0x7f10033a; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f10033b; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + } + public static final class styleable { + public static final int[] ActionBar = new int[] { 0x7f03004d, 0x7f030054, 0x7f030055, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030171, 0x7f030188, 0x7f030189, 0x7f0301a9, 0x7f030231, 0x7f030239, 0x7f03023f, 0x7f030240, 0x7f030244, 0x7f030255, 0x7f03026c, 0x7f0302ea, 0x7f030371, 0x7f0303aa, 0x7f0303b2, 0x7f0303b3, 0x7f030439, 0x7f03043d, 0x7f0304c8, 0x7f0304d6 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = new int[] { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = new int[] { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = new int[] { }; + public static final int[] ActionMode = new int[] { 0x7f03004d, 0x7f030054, 0x7f0300ee, 0x7f030231, 0x7f03043d, 0x7f0304d6 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = new int[] { 0x7f0301c6, 0x7f03025c }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = new int[] { 0x010100f2, 0x7f030099, 0x7f03009c, 0x7f0302df, 0x7f0302e0, 0x7f03036c, 0x7f0303f7, 0x7f0303ff }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int[] AnimatedStateListDrawableItem = new int[] { 0x010100d0, 0x01010199 }; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int[] AnimatedStateListDrawableTransition = new int[] { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int[] AppCompatImageView = new int[] { 0x01010119, 0x7f030418, 0x7f0304c5, 0x7f0304c6 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = new int[] { 0x01010142, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = new int[] { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int[] AppCompatTextView = new int[] { 0x01010034, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f0301ad, 0x7f0301ea, 0x7f03020e, 0x7f030218, 0x7f030288, 0x7f0302d8, 0x7f03046a, 0x7f0304a1 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_drawableBottomCompat = 6; + public static final int AppCompatTextView_drawableEndCompat = 7; + public static final int AppCompatTextView_drawableLeftCompat = 8; + public static final int AppCompatTextView_drawableRightCompat = 9; + public static final int AppCompatTextView_drawableStartCompat = 10; + public static final int AppCompatTextView_drawableTint = 11; + public static final int AppCompatTextView_drawableTintMode = 12; + public static final int AppCompatTextView_drawableTopCompat = 13; + public static final int AppCompatTextView_firstBaselineToTopHeight = 15; + public static final int AppCompatTextView_fontFamily = 16; + public static final int AppCompatTextView_fontVariationSettings = 17; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 18; + public static final int AppCompatTextView_lineHeight = 19; + public static final int AppCompatTextView_textAllCaps = 20; + public static final int AppCompatTextView_textLocale = 21; + public static final int[] AppCompatTheme = new int[] { 0x01010057, 0x010100ae, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030044, 0x7f03007d, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009d, 0x7f03009e, 0x7f0300b9, 0x7f0300c4, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03011c, 0x7f03011e, 0x7f030133, 0x7f030152, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f03018b, 0x7f030190, 0x7f0301a2, 0x7f0301a3, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f03023f, 0x7f03024f, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f03038d, 0x7f03038e, 0x7f03038f, 0x7f0303a9, 0x7f0303ab, 0x7f0303ba, 0x7f0303bc, 0x7f0303bd, 0x7f0303be, 0x7f0303d9, 0x7f0303dc, 0x7f0303dd, 0x7f0303de, 0x7f030409, 0x7f03040a, 0x7f030445, 0x7f030481, 0x7f030483, 0x7f030484, 0x7f030485, 0x7f030487, 0x7f030488, 0x7f030489, 0x7f03048a, 0x7f030495, 0x7f030496, 0x7f0304d9, 0x7f0304da, 0x7f0304dc, 0x7f0304dd, 0x7f030504, 0x7f030512, 0x7f030513, 0x7f030514, 0x7f030515, 0x7f030516, 0x7f030517, 0x7f030518, 0x7f030519, 0x7f03051a, 0x7f03051b }; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseContentDescription = 19; + public static final int AppCompatTheme_actionModeCloseDrawable = 20; + public static final int AppCompatTheme_actionModeCopyDrawable = 21; + public static final int AppCompatTheme_actionModeCutDrawable = 22; + public static final int AppCompatTheme_actionModeFindDrawable = 23; + public static final int AppCompatTheme_actionModePasteDrawable = 24; + public static final int AppCompatTheme_actionModePopupWindowStyle = 25; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 26; + public static final int AppCompatTheme_actionModeShareDrawable = 27; + public static final int AppCompatTheme_actionModeSplitBackground = 28; + public static final int AppCompatTheme_actionModeStyle = 29; + public static final int AppCompatTheme_actionModeTheme = 30; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 31; + public static final int AppCompatTheme_actionOverflowButtonStyle = 32; + public static final int AppCompatTheme_actionOverflowMenuStyle = 33; + public static final int AppCompatTheme_activityChooserViewStyle = 34; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 35; + public static final int AppCompatTheme_alertDialogCenterButtons = 36; + public static final int AppCompatTheme_alertDialogStyle = 37; + public static final int AppCompatTheme_alertDialogTheme = 38; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 39; + public static final int AppCompatTheme_borderlessButtonStyle = 40; + public static final int AppCompatTheme_buttonBarButtonStyle = 41; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 42; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 43; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 44; + public static final int AppCompatTheme_buttonBarStyle = 45; + public static final int AppCompatTheme_buttonStyle = 46; + public static final int AppCompatTheme_buttonStyleSmall = 47; + public static final int AppCompatTheme_checkboxStyle = 48; + public static final int AppCompatTheme_checkedTextViewStyle = 49; + public static final int AppCompatTheme_colorAccent = 50; + public static final int AppCompatTheme_colorBackgroundFloating = 51; + public static final int AppCompatTheme_colorButtonNormal = 52; + public static final int AppCompatTheme_colorControlActivated = 53; + public static final int AppCompatTheme_colorControlHighlight = 54; + public static final int AppCompatTheme_colorControlNormal = 55; + public static final int AppCompatTheme_colorError = 56; + public static final int AppCompatTheme_colorPrimary = 57; + public static final int AppCompatTheme_colorPrimaryDark = 58; + public static final int AppCompatTheme_colorSwitchThumbNormal = 59; + public static final int AppCompatTheme_controlBackground = 60; + public static final int AppCompatTheme_dialogCornerRadius = 61; + public static final int AppCompatTheme_dialogPreferredPadding = 62; + public static final int AppCompatTheme_dialogTheme = 63; + public static final int AppCompatTheme_dividerHorizontal = 64; + public static final int AppCompatTheme_dividerVertical = 65; + public static final int AppCompatTheme_dropDownListViewStyle = 66; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 67; + public static final int AppCompatTheme_editTextBackground = 68; + public static final int AppCompatTheme_editTextColor = 69; + public static final int AppCompatTheme_editTextStyle = 70; + public static final int AppCompatTheme_homeAsUpIndicator = 71; + public static final int AppCompatTheme_imageButtonStyle = 72; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 73; + public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 74; + public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated = 75; + public static final int AppCompatTheme_listDividerAlertDialog = 76; + public static final int AppCompatTheme_listMenuViewStyle = 77; + public static final int AppCompatTheme_listPopupWindowStyle = 78; + public static final int AppCompatTheme_listPreferredItemHeight = 79; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 80; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 81; + public static final int AppCompatTheme_listPreferredItemPaddingEnd = 82; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 83; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 84; + public static final int AppCompatTheme_listPreferredItemPaddingStart = 85; + public static final int AppCompatTheme_panelBackground = 86; + public static final int AppCompatTheme_panelMenuListTheme = 87; + public static final int AppCompatTheme_panelMenuListWidth = 88; + public static final int AppCompatTheme_popupMenuStyle = 89; + public static final int AppCompatTheme_popupWindowStyle = 90; + public static final int AppCompatTheme_radioButtonStyle = 91; + public static final int AppCompatTheme_ratingBarStyle = 92; + public static final int AppCompatTheme_ratingBarStyleIndicator = 93; + public static final int AppCompatTheme_ratingBarStyleSmall = 94; + public static final int AppCompatTheme_searchViewStyle = 95; + public static final int AppCompatTheme_seekBarStyle = 96; + public static final int AppCompatTheme_selectableItemBackground = 97; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 98; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 99; + public static final int AppCompatTheme_spinnerStyle = 100; + public static final int AppCompatTheme_switchStyle = 101; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 102; + public static final int AppCompatTheme_textAppearanceListItem = 103; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 104; + public static final int AppCompatTheme_textAppearanceListItemSmall = 105; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 106; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 107; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 108; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 109; + public static final int AppCompatTheme_textColorAlertDialogListItem = 110; + public static final int AppCompatTheme_textColorSearchUrl = 111; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 112; + public static final int AppCompatTheme_toolbarStyle = 113; + public static final int AppCompatTheme_tooltipForegroundColor = 114; + public static final int AppCompatTheme_tooltipFrameBackground = 115; + public static final int AppCompatTheme_viewInflaterClass = 116; + public static final int AppCompatTheme_windowActionBar = 117; + public static final int AppCompatTheme_windowActionBarOverlay = 118; + public static final int AppCompatTheme_windowActionModeOverlay = 119; + public static final int AppCompatTheme_windowFixedHeightMajor = 120; + public static final int AppCompatTheme_windowFixedHeightMinor = 121; + public static final int AppCompatTheme_windowFixedWidthMajor = 122; + public static final int AppCompatTheme_windowFixedWidthMinor = 123; + public static final int AppCompatTheme_windowMinWidthMajor = 124; + public static final int AppCompatTheme_windowMinWidthMinor = 125; + public static final int AppCompatTheme_windowNoTitle = 126; + public static final int[] ButtonBarLayout = new int[] { 0x7f030030 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int[] CompoundButton = new int[] { 0x01010107, 0x7f030096, 0x7f03009f, 0x7f0300a0 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonCompat = 1; + public static final int CompoundButton_buttonTint = 2; + public static final int CompoundButton_buttonTintMode = 3; + public static final int[] DrawerArrowToggle = new int[] { 0x7f03003f, 0x7f030040, 0x7f030069, 0x7f0300fb, 0x7f030199, 0x7f03021e, 0x7f030408, 0x7f0304ac }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int FontFamily_fontProviderSystemFontFamily = 7; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] Fragment = new int[] { 0x01010003, 0x010100d0, 0x010100d1 }; + public static final int Fragment_android_id = 1; + public static final int Fragment_android_name = 0; + public static final int Fragment_android_tag = 2; + public static final int[] FragmentContainerView = new int[] { 0x01010003, 0x010100d1 }; + public static final int FragmentContainerView_android_name = 0; + public static final int FragmentContainerView_android_tag = 1; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] LinearLayoutCompat = new int[] { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030189, 0x7f03018e, 0x7f03032d, 0x7f0303f2 }; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = new int[] { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int[] ListPopupWindow = new int[] { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = new int[] { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = new int[] { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x7f030142, 0x7f03024a, 0x7f03024b, 0x7f030379, 0x7f0303f0, 0x7f0304df }; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = new int[] { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0303af, 0x7f030433 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = new int[] { 0x01010176, 0x010102c9, 0x7f030382 }; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = new int[] { 0x7f030424 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = new int[] { 0x7f030384, 0x7f03038b }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = new int[] { 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, 0x01010150, 0x01010220, 0x01010264, 0x7f030036, 0x7f030037, 0x7f030045, 0x7f03004c, 0x7f030056, 0x7f0300e7, 0x7f030138, 0x7f03017e, 0x7f030220, 0x7f030230, 0x7f030238, 0x7f03024c, 0x7f03028b, 0x7f0303b7, 0x7f0303b8, 0x7f0303d6, 0x7f0303d7, 0x7f0303d8, 0x7f030438, 0x7f030441, 0x7f0304ff, 0x7f03050a }; + public static final int SearchView_android_focusable = 1; + public static final int SearchView_android_imeOptions = 6; + public static final int SearchView_android_inputType = 5; + public static final int SearchView_android_maxWidth = 2; + public static final int SearchView_closeIcon = 12; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 14; + public static final int SearchView_goIcon = 15; + public static final int SearchView_iconifiedByDefault = 18; + public static final int SearchView_layout = 19; + public static final int SearchView_queryBackground = 20; + public static final int SearchView_queryHint = 21; + public static final int SearchView_searchHintIcon = 22; + public static final int SearchView_searchIcon = 23; + public static final int SearchView_submitBackground = 25; + public static final int SearchView_suggestionRowLayout = 26; + public static final int SearchView_voiceIcon = 28; + public static final int[] Spinner = new int[] { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0303aa }; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_popupTheme = 4; + public static final int[] StateListDrawable = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_visible = 1; + public static final int[] StateListDrawableItem = new int[] { 0x01010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] SwitchCompat = new int[] { 0x01010124, 0x01010125, 0x01010142, 0x7f0303f6, 0x7f030412, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f0304b7, 0x7f0304b8, 0x7f0304b9, 0x7f0304e4, 0x7f0304f0, 0x7f0304f1 }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = new int[] { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03020e, 0x7f030218, 0x7f03046a, 0x7f0304a1 }; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_textFontWeight = 11; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_fontFamily = 12; + public static final int TextAppearance_fontVariationSettings = 13; + public static final int TextAppearance_textAllCaps = 14; + public static final int TextAppearance_textLocale = 15; + public static final int[] Toolbar = new int[] { 0x010100af, 0x01010140, 0x7f030097, 0x7f0300ef, 0x7f0300f0, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f0302ea, 0x7f0302ec, 0x7f030325, 0x7f03032e, 0x7f03036e, 0x7f03036f, 0x7f0303aa, 0x7f030439, 0x7f03043b, 0x7f03043c, 0x7f0304c8, 0x7f0304cc, 0x7f0304cd, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0, 0x7f0304d1, 0x7f0304d3, 0x7f0304d4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_menu = 14; + public static final int Toolbar_navigationContentDescription = 15; + public static final int Toolbar_navigationIcon = 16; + public static final int Toolbar_popupTheme = 17; + public static final int Toolbar_subtitle = 18; + public static final int Toolbar_subtitleTextAppearance = 19; + public static final int Toolbar_subtitleTextColor = 20; + public static final int Toolbar_title = 21; + public static final int Toolbar_titleMargin = 22; + public static final int Toolbar_titleMarginBottom = 23; + public static final int Toolbar_titleMarginEnd = 24; + public static final int Toolbar_titleMarginStart = 25; + public static final int Toolbar_titleMarginTop = 26; + public static final int Toolbar_titleMargins = 27; + public static final int Toolbar_titleTextAppearance = 28; + public static final int Toolbar_titleTextColor = 29; + public static final int[] View = new int[] { 0x01010000, 0x010100da, 0x7f030386, 0x7f030389, 0x7f0304ab }; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = new int[] { 0x010100d4, 0x7f030056, 0x7f030057 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = new int[] { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/gifdecoder/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/gifdecoder/R.java new file mode 100644 index 0000000..07413db --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/bumptech/glide/gifdecoder/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package com.bumptech.glide.gifdecoder; + +public final class R { +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/companyname/clipifrontc/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/companyname/clipifrontc/R.java new file mode 100644 index 0000000..576ae48 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/companyname/clipifrontc/R.java @@ -0,0 +1,46808 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.companyname.clipifrontc; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f010000; + public static final int abc_fade_out=0x7f010001; + public static final int abc_grow_fade_in_from_bottom=0x7f010002; + public static final int abc_popup_enter=0x7f010003; + public static final int abc_popup_exit=0x7f010004; + public static final int abc_shrink_fade_out_from_bottom=0x7f010005; + public static final int abc_slide_in_bottom=0x7f010006; + public static final int abc_slide_in_top=0x7f010007; + public static final int abc_slide_out_bottom=0x7f010008; + public static final int abc_slide_out_top=0x7f010009; + public static final int abc_tooltip_enter=0x7f01000a; + public static final int abc_tooltip_exit=0x7f01000b; + public static final int btn_checkbox_to_checked_box_inner_merged_animation=0x7f01000c; + public static final int btn_checkbox_to_checked_box_outer_merged_animation=0x7f01000d; + public static final int btn_checkbox_to_checked_icon_null_animation=0x7f01000e; + public static final int btn_checkbox_to_unchecked_box_inner_merged_animation=0x7f01000f; + public static final int btn_checkbox_to_unchecked_check_path_merged_animation=0x7f010010; + public static final int btn_checkbox_to_unchecked_icon_null_animation=0x7f010011; + public static final int btn_radio_to_off_mtrl_dot_group_animation=0x7f010012; + public static final int btn_radio_to_off_mtrl_ring_outer_animation=0x7f010013; + public static final int btn_radio_to_off_mtrl_ring_outer_path_animation=0x7f010014; + public static final int btn_radio_to_on_mtrl_dot_group_animation=0x7f010015; + public static final int btn_radio_to_on_mtrl_ring_outer_animation=0x7f010016; + public static final int btn_radio_to_on_mtrl_ring_outer_path_animation=0x7f010017; + public static final int design_bottom_sheet_slide_in=0x7f010018; + public static final int design_bottom_sheet_slide_out=0x7f010019; + public static final int design_snackbar_in=0x7f01001a; + public static final int design_snackbar_out=0x7f01001b; + public static final int enterfromleft=0x7f01001c; + public static final int enterfromright=0x7f01001d; + public static final int exittoleft=0x7f01001e; + public static final int exittoright=0x7f01001f; + public static final int fragment_fast_out_extra_slow_in=0x7f010020; + public static final int linear_indeterminate_line1_head_interpolator=0x7f010021; + public static final int linear_indeterminate_line1_tail_interpolator=0x7f010022; + public static final int linear_indeterminate_line2_head_interpolator=0x7f010023; + public static final int linear_indeterminate_line2_tail_interpolator=0x7f010024; + public static final int m3_bottom_sheet_slide_in=0x7f010025; + public static final int m3_bottom_sheet_slide_out=0x7f010026; + public static final int m3_motion_fade_enter=0x7f010027; + public static final int m3_motion_fade_exit=0x7f010028; + public static final int m3_side_sheet_enter_from_left=0x7f010029; + public static final int m3_side_sheet_enter_from_right=0x7f01002a; + public static final int m3_side_sheet_exit_to_left=0x7f01002b; + public static final int m3_side_sheet_exit_to_right=0x7f01002c; + public static final int mtrl_bottom_sheet_slide_in=0x7f01002d; + public static final int mtrl_bottom_sheet_slide_out=0x7f01002e; + public static final int mtrl_card_lowers_interpolator=0x7f01002f; + public static final int nav_default_enter_anim=0x7f010030; + public static final int nav_default_exit_anim=0x7f010031; + public static final int nav_default_pop_enter_anim=0x7f010032; + public static final int nav_default_pop_exit_anim=0x7f010033; + public static final int nav_modal_default_enter_anim=0x7f010034; + public static final int nav_modal_default_exit_anim=0x7f010035; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f020000; + public static final int design_fab_hide_motion_spec=0x7f020001; + public static final int design_fab_show_motion_spec=0x7f020002; + public static final int fragment_close_enter=0x7f020003; + public static final int fragment_close_exit=0x7f020004; + public static final int fragment_fade_enter=0x7f020005; + public static final int fragment_fade_exit=0x7f020006; + public static final int fragment_open_enter=0x7f020007; + public static final int fragment_open_exit=0x7f020008; + public static final int m3_appbar_state_list_animator=0x7f020009; + public static final int m3_btn_elevated_btn_state_list_anim=0x7f02000a; + public static final int m3_btn_state_list_anim=0x7f02000b; + public static final int m3_card_elevated_state_list_anim=0x7f02000c; + public static final int m3_card_state_list_anim=0x7f02000d; + public static final int m3_chip_state_list_anim=0x7f02000e; + public static final int m3_elevated_chip_state_list_anim=0x7f02000f; + public static final int m3_extended_fab_change_size_collapse_motion_spec=0x7f020010; + public static final int m3_extended_fab_change_size_expand_motion_spec=0x7f020011; + public static final int m3_extended_fab_hide_motion_spec=0x7f020012; + public static final int m3_extended_fab_show_motion_spec=0x7f020013; + public static final int m3_extended_fab_state_list_animator=0x7f020014; + public static final int mtrl_btn_state_list_anim=0x7f020015; + public static final int mtrl_btn_unelevated_state_list_anim=0x7f020016; + public static final int mtrl_card_state_list_anim=0x7f020017; + public static final int mtrl_chip_state_list_anim=0x7f020018; + public static final int mtrl_extended_fab_change_size_collapse_motion_spec=0x7f020019; + public static final int mtrl_extended_fab_change_size_expand_motion_spec=0x7f02001a; + public static final int mtrl_extended_fab_hide_motion_spec=0x7f02001b; + public static final int mtrl_extended_fab_show_motion_spec=0x7f02001c; + public static final int mtrl_extended_fab_state_list_animator=0x7f02001d; + public static final int mtrl_fab_hide_motion_spec=0x7f02001e; + public static final int mtrl_fab_show_motion_spec=0x7f02001f; + public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020020; + public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020021; + public static final int nav_default_enter_anim=0x7f020022; + public static final int nav_default_exit_anim=0x7f020023; + public static final int nav_default_pop_enter_anim=0x7f020024; + public static final int nav_default_pop_exit_anim=0x7f020025; + } + public static final class attr { + /** + *

May be an integer value, such as "100". + */ + public static final int SharedValue=0x7f030000; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int SharedValueId=0x7f030001; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int action=0x7f030002; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarDivider=0x7f030003; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarItemBackground=0x7f030004; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarPopupTheme=0x7f030005; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f030006; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarSplitStyle=0x7f030007; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarStyle=0x7f030008; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabBarStyle=0x7f030009; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabStyle=0x7f03000a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabTextStyle=0x7f03000b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTheme=0x7f03000c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarWidgetTheme=0x7f03000d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionButtonStyle=0x7f03000e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionDropDownStyle=0x7f03000f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionLayout=0x7f030010; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionMenuTextAppearance=0x7f030011; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f030012; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeBackground=0x7f030013; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseButtonStyle=0x7f030014; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionModeCloseContentDescription=0x7f030015; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseDrawable=0x7f030016; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCopyDrawable=0x7f030017; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCutDrawable=0x7f030018; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeFindDrawable=0x7f030019; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePasteDrawable=0x7f03001a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePopupWindowStyle=0x7f03001b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSelectAllDrawable=0x7f03001c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeShareDrawable=0x7f03001d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSplitBackground=0x7f03001e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeStyle=0x7f03001f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeTheme=0x7f030020; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeWebSearchDrawable=0x7f030021; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowButtonStyle=0x7f030022; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowMenuStyle=0x7f030023; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionProviderClass=0x7f030024; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int actionTextColorAlpha=0x7f030025; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionViewClass=0x7f030026; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int activeIndicatorLabelPadding=0x7f030027; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int activityAction=0x7f030028; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int activityChooserViewStyle=0x7f030029; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int activityName=0x7f03002a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int addElevationShadow=0x7f03002b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogButtonGroupStyle=0x7f03002c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alertDialogCenterButtons=0x7f03002d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogStyle=0x7f03002e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogTheme=0x7f03002f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int allowStacking=0x7f030030; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int alpha=0x7f030031; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int alphabeticModifiers=0x7f030032; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int altSrc=0x7f030033; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alwaysExpand=0x7f030034; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
antiClockwise3
bestChoice0
clockwise2
closest1
constraint4
+ */ + public static final int animateCircleAngleTo=0x7f030035; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int animateMenuItems=0x7f030036; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int animateNavigationIcon=0x7f030037; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int animateRelativeTo=0x7f030038; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int animationBackgroundColor=0x7f030039; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fade1Mode that corresponds to the fade in and out animations.
slide0Mode that corresponds to the slide in and out animations.
+ */ + public static final int animationMode=0x7f03003a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int appBarLayoutStyle=0x7f03003b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int applyMotionScene=0x7f03003c; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
flip2
startHorizontal1
startVertical0
+ */ + public static final int arcMode=0x7f03003d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int argType=0x7f03003e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowHeadLength=0x7f03003f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowShaftLength=0x7f030040; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int attributeName=0x7f030041; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int autoAdjustToWithinGrandparentBounds=0x7f030042; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
continuousVelocity0
spring1
+ */ + public static final int autoCompleteMode=0x7f030043; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoCompleteTextViewStyle=0x7f030044; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int autoShowKeyboard=0x7f030045; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMaxTextSize=0x7f030046; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMinTextSize=0x7f030047; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoSizePresetSizes=0x7f030048; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeStepGranularity=0x7f030049; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ */ + public static final int autoSizeTextType=0x7f03004a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
animateToEnd4
animateToStart3
jumpToEnd2
jumpToStart1
none0
+ */ + public static final int autoTransition=0x7f03004b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int backHandlingEnabled=0x7f03004c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int background=0x7f03004d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundColor=0x7f03004e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int backgroundInsetBottom=0x7f03004f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int backgroundInsetEnd=0x7f030050; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int backgroundInsetStart=0x7f030051; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int backgroundInsetTop=0x7f030052; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int backgroundOverlayColorAlpha=0x7f030053; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundSplit=0x7f030054; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundStacked=0x7f030055; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundTint=0x7f030056; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int backgroundTintMode=0x7f030057; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
BOTTOM_END800055Gravity.BOTTOM | Gravity.END
BOTTOM_START800053Gravity.BOTTOM | Gravity.START
TOP_END800035Gravity.TOP | Gravity.END
TOP_START800033Gravity.TOP | Gravity.START
+ */ + public static final int badgeGravity=0x7f030058; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeHeight=0x7f030059; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeRadius=0x7f03005a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeShapeAppearance=0x7f03005b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeShapeAppearanceOverlay=0x7f03005c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeStyle=0x7f03005d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int badgeText=0x7f03005e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeTextAppearance=0x7f03005f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int badgeTextColor=0x7f030060; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeVerticalPadding=0x7f030061; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeWidePadding=0x7f030062; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeWidth=0x7f030063; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeWithTextHeight=0x7f030064; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeWithTextRadius=0x7f030065; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeWithTextShapeAppearance=0x7f030066; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int badgeWithTextShapeAppearanceOverlay=0x7f030067; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int badgeWithTextWidth=0x7f030068; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barLength=0x7f030069; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int barrierAllowsGoneWidgets=0x7f03006a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ */ + public static final int barrierDirection=0x7f03006b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barrierMargin=0x7f03006c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_autoHide=0x7f03006d; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_autoShrink=0x7f03006e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_draggable=0x7f03006f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int behavior_expandedOffset=0x7f030070; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_fitToContents=0x7f030071; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a floating point value, such as "1.2". + */ + public static final int behavior_halfExpandedRatio=0x7f030072; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_hideable=0x7f030073; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int behavior_overlapTop=0x7f030074; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffPeek at the 16:9 ratio keyline of its parent
+ */ + public static final int behavior_peekHeight=0x7f030075; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
allffffffffThis flag will preserve the all the aforementioned values on configuration change.
fitToContents2This flag will preserve the fitToContents boolean value on configuration change.
hideable4This flag will preserve the hideable boolean value on configuration change.
none0This flag will not preserve the aforementioned values on configuration change. The only + * value preserved will be the positional state, e.g. collapsed, hidden, expanded, etc. + * This is the default behavior.
peekHeight1This flag will preserve the peekHeight on configuration change.
skipCollapsed8This flag will preserve the skipCollapsed boolean value on configuration change.
+ */ + public static final int behavior_saveFlags=0x7f030076; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int behavior_significantVelocityThreshold=0x7f030077; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_skipCollapsed=0x7f030078; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int blendSrc=0x7f030079; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int borderRound=0x7f03007a; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int borderRoundPercent=0x7f03007b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int borderWidth=0x7f03007c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int borderlessButtonStyle=0x7f03007d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomAppBarStyle=0x7f03007e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int bottomInsetScrimEnabled=0x7f03007f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomNavigationStyle=0x7f030080; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomNavigationViewStyle=0x7f030081; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetDialogTheme=0x7f030082; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetDragHandleStyle=0x7f030083; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetStyle=0x7f030084; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxBackgroundColor=0x7f030085; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1Filled box mode for the text input box.
none0Specifies that there should be no box set on the text input area.
outline2Outline box mode for the text input box.
+ */ + public static final int boxBackgroundMode=0x7f030086; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCollapsedPaddingTop=0x7f030087; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomEnd=0x7f030088; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomStart=0x7f030089; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopEnd=0x7f03008a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopStart=0x7f03008b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxStrokeColor=0x7f03008c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxStrokeErrorColor=0x7f03008d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxStrokeWidth=0x7f03008e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxStrokeWidthFocused=0x7f03008f; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int brightness=0x7f030090; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarButtonStyle=0x7f030091; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f030092; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f030093; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f030094; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarStyle=0x7f030095; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonCompat=0x7f030096; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int buttonGravity=0x7f030097; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonIcon=0x7f030098; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int buttonIconDimen=0x7f030099; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonIconTint=0x7f03009a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int buttonIconTintMode=0x7f03009b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonPanelSideLayout=0x7f03009c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyle=0x7f03009d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyleSmall=0x7f03009e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonTint=0x7f03009f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int buttonTintMode=0x7f0300a0; + /** + * Background color for CardView. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cardBackgroundColor=0x7f0300a1; + /** + * Corner radius for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardCornerRadius=0x7f0300a2; + /** + * Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardElevation=0x7f0300a3; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cardForegroundColor=0x7f0300a4; + /** + * Maximum Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardMaxElevation=0x7f0300a5; + /** + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardPreventCornerOverlap=0x7f0300a6; + /** + * Add padding in API v21+ as well to have the same measurements with previous versions. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardUseCompatPadding=0x7f0300a7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int cardViewStyle=0x7f0300a8; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1Center-alignment
start0Start-alignment
+ */ + public static final int carousel_alignment=0x7f0300a9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int carousel_backwardTransition=0x7f0300aa; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
gone8
invisible4
+ */ + public static final int carousel_emptyViewsBehavior=0x7f0300ab; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int carousel_firstView=0x7f0300ac; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int carousel_forwardTransition=0x7f0300ad; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int carousel_infinite=0x7f0300ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int carousel_nextState=0x7f0300af; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int carousel_previousState=0x7f0300b0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
carryVelocity2
immediateStop1
+ */ + public static final int carousel_touchUpMode=0x7f0300b1; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int carousel_touchUp_dampeningFactor=0x7f0300b2; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int carousel_touchUp_velocityThreshold=0x7f0300b3; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int centerIfNoTextEnabled=0x7f0300b4; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chainUseRtl=0x7f0300b5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkMarkCompat=0x7f0300b6; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int checkMarkTint=0x7f0300b7; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int checkMarkTintMode=0x7f0300b8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkboxStyle=0x7f0300b9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedButton=0x7f0300ba; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedChip=0x7f0300bb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedIcon=0x7f0300bc; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconEnabled=0x7f0300bd; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
BOTTOM_END800055Gravity.BOTTOM | Gravity.END
BOTTOM_START800053Gravity.BOTTOM | Gravity.START
TOP_END800035Gravity.TOP | Gravity.END
TOP_START800033Gravity.TOP | Gravity.START
+ */ + public static final int checkedIconGravity=0x7f0300be; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int checkedIconMargin=0x7f0300bf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int checkedIconSize=0x7f0300c0; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int checkedIconTint=0x7f0300c1; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconVisible=0x7f0300c2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
checked1The checked state of the checkbox.
indeterminate2The indeterminate state of the checkbox.
unchecked0The unchecked state of the checkbox.
+ */ + public static final int checkedState=0x7f0300c3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedTextViewStyle=0x7f0300c4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipBackgroundColor=0x7f0300c5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipCornerRadius=0x7f0300c6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipEndPadding=0x7f0300c7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipGroupStyle=0x7f0300c8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipIcon=0x7f0300c9; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconEnabled=0x7f0300ca; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipIconSize=0x7f0300cb; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipIconTint=0x7f0300cc; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconVisible=0x7f0300cd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipMinHeight=0x7f0300ce; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipMinTouchTargetSize=0x7f0300cf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacing=0x7f0300d0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingHorizontal=0x7f0300d1; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingVertical=0x7f0300d2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStandaloneStyle=0x7f0300d3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStartPadding=0x7f0300d4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipStrokeColor=0x7f0300d5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStrokeWidth=0x7f0300d6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStyle=0x7f0300d7; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipSurfaceColor=0x7f0300d8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int circleRadius=0x7f0300d9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int circularProgressIndicatorStyle=0x7f0300da; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int circularflow_angles=0x7f0300db; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int circularflow_defaultAngle=0x7f0300dc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int circularflow_defaultRadius=0x7f0300dd; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int circularflow_radiusInDP=0x7f0300de; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int circularflow_viewCenter=0x7f0300df; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int clearTop=0x7f0300e0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int clearsTag=0x7f0300e1; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
jumpToEnd100
jumpToStart1000
toggle11
transitionToEnd1
transitionToStart10
+ */ + public static final int clickAction=0x7f0300e2; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int clockFaceBackgroundColor=0x7f0300e3; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int clockHandColor=0x7f0300e4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int clockIcon=0x7f0300e5; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int clockNumberTextColor=0x7f0300e6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeIcon=0x7f0300e7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconEnabled=0x7f0300e8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconEndPadding=0x7f0300e9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconSize=0x7f0300ea; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconStartPadding=0x7f0300eb; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int closeIconTint=0x7f0300ec; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconVisible=0x7f0300ed; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeItemLayout=0x7f0300ee; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int collapseContentDescription=0x7f0300ef; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapseIcon=0x7f0300f0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int collapsedSize=0x7f0300f1; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push title to the bottom of its container, not changing its size.
center11Place the title in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place title in the horizontal center of its container, not changing its size.
center_vertical10Place title in the vertical center of its container, not changing its size.
end800005Push title to the end of its container, not changing its size.
fill_vertical70Grow the vertical size of the title if needed so it completely fills its container.
left3Push title to the left of its container, not changing its size.
right5Push title to the right of its container, not changing its size.
start800003Push title to the beginning of its container, not changing its size.
top30Push title to the top of its container, not changing its size.
+ */ + public static final int collapsedTitleGravity=0x7f0300f2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsedTitleTextAppearance=0x7f0300f3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int collapsedTitleTextColor=0x7f0300f4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsingToolbarLayoutLargeSize=0x7f0300f5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsingToolbarLayoutLargeStyle=0x7f0300f6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsingToolbarLayoutMediumSize=0x7f0300f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsingToolbarLayoutMediumStyle=0x7f0300f8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsingToolbarLayoutStyle=0x7f0300f9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collectionViewStyle=0x7f0300fa; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int color=0x7f0300fb; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorAccent=0x7f0300fc; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorBackgroundFloating=0x7f0300fd; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorButtonNormal=0x7f0300fe; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorContainer=0x7f0300ff; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlActivated=0x7f030100; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlHighlight=0x7f030101; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlNormal=0x7f030102; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorError=0x7f030103; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorErrorContainer=0x7f030104; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int colorOnBackground=0x7f030105; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnContainer=0x7f030106; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnContainerUnchecked=0x7f030107; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnError=0x7f030108; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnErrorContainer=0x7f030109; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnPrimary=0x7f03010a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnPrimaryContainer=0x7f03010b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnPrimaryFixed=0x7f03010c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnPrimaryFixedVariant=0x7f03010d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnPrimarySurface=0x7f03010e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSecondary=0x7f03010f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSecondaryContainer=0x7f030110; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSecondaryFixed=0x7f030111; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSecondaryFixedVariant=0x7f030112; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSurface=0x7f030113; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSurfaceInverse=0x7f030114; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnSurfaceVariant=0x7f030115; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnTertiary=0x7f030116; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnTertiaryContainer=0x7f030117; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnTertiaryFixed=0x7f030118; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOnTertiaryFixedVariant=0x7f030119; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOutline=0x7f03011a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorOutlineVariant=0x7f03011b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimary=0x7f03011c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryContainer=0x7f03011d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryDark=0x7f03011e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryFixed=0x7f03011f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryFixedDim=0x7f030120; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryInverse=0x7f030121; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimarySurface=0x7f030122; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryVariant=0x7f030123; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondary=0x7f030124; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondaryContainer=0x7f030125; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondaryFixed=0x7f030126; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondaryFixedDim=0x7f030127; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondaryVariant=0x7f030128; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurface=0x7f030129; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceBright=0x7f03012a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceContainer=0x7f03012b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceContainerHigh=0x7f03012c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceContainerHighest=0x7f03012d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceContainerLow=0x7f03012e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceContainerLowest=0x7f03012f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceDim=0x7f030130; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceInverse=0x7f030131; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSurfaceVariant=0x7f030132; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSwitchThumbNormal=0x7f030133; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorTertiary=0x7f030134; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorTertiaryContainer=0x7f030135; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorTertiaryFixed=0x7f030136; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorTertiaryFixedDim=0x7f030137; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int commitIcon=0x7f030138; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int compatShadowEnabled=0x7f030139; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
left2
none0
right1
x_left4
x_right3
+ */ + public static final int constraintRotate=0x7f03013a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int constraintSet=0x7f03013b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int constraintSetEnd=0x7f03013c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int constraintSetStart=0x7f03013d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int constraint_referenced_ids=0x7f03013e; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int constraint_referenced_tags=0x7f03013f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int constraints=0x7f030140; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int content=0x7f030141; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int contentDescription=0x7f030142; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEnd=0x7f030143; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEndWithActions=0x7f030144; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetLeft=0x7f030145; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetRight=0x7f030146; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStart=0x7f030147; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStartWithNavigation=0x7f030148; + /** + * Inner padding between the edges of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPadding=0x7f030149; + /** + * Inner padding between the bottom edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingBottom=0x7f03014a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingEnd=0x7f03014b; + /** + * Inner padding between the left edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingLeft=0x7f03014c; + /** + * Inner padding between the right edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingRight=0x7f03014d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingStart=0x7f03014e; + /** + * Inner padding between the top edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingTop=0x7f03014f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int contentScrim=0x7f030150; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int contrast=0x7f030151; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int controlBackground=0x7f030152; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int coordinatorLayoutStyle=0x7f030153; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int coplanarSiblingViewId=0x7f030154; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int cornerFamily=0x7f030155; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int cornerFamilyBottomLeft=0x7f030156; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int cornerFamilyBottomRight=0x7f030157; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int cornerFamilyTopLeft=0x7f030158; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int cornerFamilyTopRight=0x7f030159; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cornerRadius=0x7f03015a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int cornerSize=0x7f03015b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int cornerSizeBottomLeft=0x7f03015c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int cornerSizeBottomRight=0x7f03015d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int cornerSizeTopLeft=0x7f03015e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int cornerSizeTopRight=0x7f03015f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int counterEnabled=0x7f030160; + /** + *

May be an integer value, such as "100". + */ + public static final int counterMaxLength=0x7f030161; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterOverflowTextAppearance=0x7f030162; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterOverflowTextColor=0x7f030163; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterTextAppearance=0x7f030164; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterTextColor=0x7f030165; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int crossfade=0x7f030166; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int currentState=0x7f030167; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cursorColor=0x7f030168; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cursorErrorColor=0x7f030169; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
linear1
spline0
+ */ + public static final int curveFit=0x7f03016a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int customBoolean=0x7f03016b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int customColorDrawableValue=0x7f03016c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int customColorValue=0x7f03016d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int customDimension=0x7f03016e; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int customFloatValue=0x7f03016f; + /** + *

May be an integer value, such as "100". + */ + public static final int customIntegerValue=0x7f030170; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customNavigationLayout=0x7f030171; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int customPixelDimension=0x7f030172; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customReference=0x7f030173; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int customStringValue=0x7f030174; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int data=0x7f030175; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int dataPattern=0x7f030176; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dayInvalidStyle=0x7f030177; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int daySelectedStyle=0x7f030178; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dayStyle=0x7f030179; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dayTodayStyle=0x7f03017a; + /** + *

May be an integer value, such as "100". + */ + public static final int defaultDuration=0x7f03017b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int defaultMarginsEnabled=0x7f03017c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int defaultNavHost=0x7f03017d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int defaultQueryHint=0x7f03017e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int defaultScrollFlagsEnabled=0x7f03017f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int defaultState=0x7f030180; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int deltaPolarAngle=0x7f030181; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int deltaPolarRadius=0x7f030182; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int deriveConstraintsFrom=0x7f030183; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int destination=0x7f030184; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogCornerRadius=0x7f030185; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogPreferredPadding=0x7f030186; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dialogTheme=0x7f030187; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ */ + public static final int displayOptions=0x7f030188; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int divider=0x7f030189; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int dividerColor=0x7f03018a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerHorizontal=0x7f03018b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerInsetEnd=0x7f03018c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerInsetStart=0x7f03018d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerPadding=0x7f03018e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerThickness=0x7f03018f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerVertical=0x7f030190; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
dragAnticlockwise7
dragClockwise6
dragDown1
dragEnd5
dragLeft2
dragRight3
dragStart4
dragUp0
+ */ + public static final int dragDirection=0x7f030191; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int dragScale=0x7f030192; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int dragThreshold=0x7f030193; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ */ + public static final int drawPath=0x7f030194; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableBottomCompat=0x7f030195; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableEndCompat=0x7f030196; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableLeftCompat=0x7f030197; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableRightCompat=0x7f030198; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawableSize=0x7f030199; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableStartCompat=0x7f03019a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int drawableTint=0x7f03019b; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int drawableTintMode=0x7f03019c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawableTopCompat=0x7f03019d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerArrowStyle=0x7f03019e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawerLayoutCornerSize=0x7f03019f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerLayoutStyle=0x7f0301a0; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int dropDownBackgroundTint=0x7f0301a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dropDownListViewStyle=0x7f0301a2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dropdownListPreferredItemHeight=0x7f0301a3; + /** + *

May be an integer value, such as "100". + */ + public static final int duration=0x7f0301a4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dynamicColorThemeOverlay=0x7f0301a5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextBackground=0x7f0301a6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int editTextColor=0x7f0301a7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextStyle=0x7f0301a8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int elevation=0x7f0301a9; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int elevationOverlayAccentColor=0x7f0301aa; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int elevationOverlayColor=0x7f0301ab; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int elevationOverlayEnabled=0x7f0301ac; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int emojiCompatEnabled=0x7f0301ad; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enableEdgeToEdge=0x7f0301ae; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int endIconCheckable=0x7f0301af; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int endIconContentDescription=0x7f0301b0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int endIconDrawable=0x7f0301b1; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int endIconMinSize=0x7f0301b2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clear_text2The view will display a clear text button while the EditText contains input.
customffffffffThe view will display a custom icon specified by the user.
dropdown_menu3The view will display a toggle that displays/hides a dropdown menu.
none0No end icon.
password_toggle1The view will display a toggle when the EditText has a password.
+ */ + public static final int endIconMode=0x7f0301b3; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4Center the image in the view, but perform no scaling.
centerCrop5Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside6Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter2Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd3Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart1Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY0Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
+ */ + public static final int endIconScaleType=0x7f0301b4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int endIconTint=0x7f0301b5; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int endIconTintMode=0x7f0301b6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceMaterialTheme=0x7f0301b7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceTextAppearance=0x7f0301b8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int ensureMinTouchTargetSize=0x7f0301b9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int enterAnim=0x7f0301ba; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int errorAccessibilityLabel=0x7f0301bb; + /** + *

May be an integer value, such as "100". + */ + public static final int errorAccessibilityLiveRegion=0x7f0301bc; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int errorContentDescription=0x7f0301bd; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int errorEnabled=0x7f0301be; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int errorIconDrawable=0x7f0301bf; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int errorIconTint=0x7f0301c0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int errorIconTintMode=0x7f0301c1; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int errorShown=0x7f0301c2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int errorTextAppearance=0x7f0301c3; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int errorTextColor=0x7f0301c4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int exitAnim=0x7f0301c5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f0301c6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int expanded=0x7f0301c7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int expandedHintEnabled=0x7f0301c8; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push title to the bottom of its container, not changing its size.
center11Place the title in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place title in the horizontal center of its container, not changing its size.
center_vertical10Place title in the vertical center of its container, not changing its size.
end800005Push title to the end of its container, not changing its size.
fill_vertical70Grow the vertical size of the title if needed so it completely fills its container.
left3Push title to the left of its container, not changing its size.
right5Push title to the right of its container, not changing its size.
start800003Push title to the beginning of its container, not changing its size.
top30Push title to the top of its container, not changing its size.
+ */ + public static final int expandedTitleGravity=0x7f0301c9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMargin=0x7f0301ca; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginBottom=0x7f0301cb; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginEnd=0x7f0301cc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginStart=0x7f0301cd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginTop=0x7f0301ce; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandedTitleTextAppearance=0x7f0301cf; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int expandedTitleTextColor=0x7f0301d0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendMotionSpec=0x7f0301d1; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
auto0Strategy to extend FAB back to the width it shrunk from.
match_parent2Strategy to extend FAB to match parent.
wrap_content1Strategy to extend FAB to wrap content.
+ */ + public static final int extendStrategy=0x7f0301d2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendedFloatingActionButtonPrimaryStyle=0x7f0301d3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendedFloatingActionButtonSecondaryStyle=0x7f0301d4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendedFloatingActionButtonStyle=0x7f0301d5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendedFloatingActionButtonSurfaceStyle=0x7f0301d6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int extendedFloatingActionButtonTertiaryStyle=0x7f0301d7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int extraMultilineHeightEnabled=0x7f0301d8; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0Mode that aligns the fab to the center.
end1Mode that aligns the fab to the end.
+ */ + public static final int fabAlignmentMode=0x7f0301d9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabAlignmentModeEndMargin=0x7f0301da; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cradle1Mode that anchors the fab to be cradled within the top edge of the BottomAppBar.
embed0Mode that anchors the fab embedded inside the BottomAppBar.
+ */ + public static final int fabAnchorMode=0x7f0301db; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
scale0Mode that scales the fab down to a point, moves it, then scales the fab back to its normal size.
slide1Mode that slides the fab from one alignment mode to the next.
+ */ + public static final int fabAnimationMode=0x7f0301dc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleMargin=0x7f0301dd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleRoundedCornerRadius=0x7f0301de; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleVerticalOffset=0x7f0301df; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCustomSize=0x7f0301e0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffA size which will change based on the window size.
mini1The mini sized button.
normal0The normal sized button.
+ */ + public static final int fabSize=0x7f0301e1; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int fastScrollEnabled=0x7f0301e2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f0301e3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f0301e4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f0301e5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f0301e6; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
+ */ + public static final int finishPrimaryWithPlaceholder=0x7f0301e7; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
never0
+ */ + public static final int finishPrimaryWithSecondary=0x7f0301e8; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
never0
+ */ + public static final int finishSecondaryWithPrimary=0x7f0301e9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int firstBaselineToTopHeight=0x7f0301ea; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonLargePrimaryStyle=0x7f0301eb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonLargeSecondaryStyle=0x7f0301ec; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonLargeStyle=0x7f0301ed; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonLargeSurfaceStyle=0x7f0301ee; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonLargeTertiaryStyle=0x7f0301ef; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonPrimaryStyle=0x7f0301f0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSecondaryStyle=0x7f0301f1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSmallPrimaryStyle=0x7f0301f2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSmallSecondaryStyle=0x7f0301f3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSmallStyle=0x7f0301f4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSmallSurfaceStyle=0x7f0301f5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSmallTertiaryStyle=0x7f0301f6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonStyle=0x7f0301f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonSurfaceStyle=0x7f0301f8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int floatingActionButtonTertiaryStyle=0x7f0301f9; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_firstHorizontalBias=0x7f0301fa; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_firstHorizontalStyle=0x7f0301fb; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_firstVerticalBias=0x7f0301fc; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_firstVerticalStyle=0x7f0301fd; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center2
end1
start0
+ */ + public static final int flow_horizontalAlign=0x7f0301fe; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_horizontalBias=0x7f0301ff; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int flow_horizontalGap=0x7f030200; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_horizontalStyle=0x7f030201; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_lastHorizontalBias=0x7f030202; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_lastHorizontalStyle=0x7f030203; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_lastVerticalBias=0x7f030204; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_lastVerticalStyle=0x7f030205; + /** + *

May be an integer value, such as "100". + */ + public static final int flow_maxElementsWrap=0x7f030206; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int flow_padding=0x7f030207; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
baseline3
bottom1
center2
top0
+ */ + public static final int flow_verticalAlign=0x7f030208; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int flow_verticalBias=0x7f030209; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int flow_verticalGap=0x7f03020a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int flow_verticalStyle=0x7f03020b; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
aligned2
chain1
chain23
none0
+ */ + public static final int flow_wrapMode=0x7f03020c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int font=0x7f03020d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontFamily=0x7f03020e; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderAuthority=0x7f03020f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fontProviderCerts=0x7f030210; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderFallbackQuery=0x7f030211; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ */ + public static final int fontProviderFetchStrategy=0x7f030212; + /** + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f030213; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderPackage=0x7f030214; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderQuery=0x7f030215; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderSystemFontFamily=0x7f030216; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ */ + public static final int fontStyle=0x7f030217; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontVariationSettings=0x7f030218; + /** + *

May be an integer value, such as "100". + */ + public static final int fontWeight=0x7f030219; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int forceApplySystemWindowInsetTop=0x7f03021a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int forceDefaultNavigationOnClickListener=0x7f03021b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int foregroundInsidePadding=0x7f03021c; + /** + *

May be an integer value, such as "100". + */ + public static final int framePosition=0x7f03021d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int gapBetweenBars=0x7f03021e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int gestureInsetBottomIgnored=0x7f03021f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int goIcon=0x7f030220; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int graph=0x7f030221; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int grid_columnWeights=0x7f030222; + /** + *

May be an integer value, such as "100". + */ + public static final int grid_columns=0x7f030223; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int grid_horizontalGaps=0x7f030224; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ */ + public static final int grid_orientation=0x7f030225; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int grid_rowWeights=0x7f030226; + /** + *

May be an integer value, such as "100". + */ + public static final int grid_rows=0x7f030227; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int grid_skips=0x7f030228; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int grid_spans=0x7f030229; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int grid_useRtl=0x7f03022a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int grid_validateInputs=0x7f03022b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int grid_verticalGaps=0x7f03022c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int guidelineUseRtl=0x7f03022d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int haloColor=0x7f03022e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int haloRadius=0x7f03022f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int headerLayout=0x7f030230; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int height=0x7f030231; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int helperText=0x7f030232; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int helperTextEnabled=0x7f030233; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int helperTextTextAppearance=0x7f030234; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int helperTextTextColor=0x7f030235; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
escape3Escapes in the progression direction for the linear type; + * no effect for the circular type.
inward2Collapses from the top edge to the bottom edge for the linear type; + * collapses from the outer edge to the inner edge for the circular type.
none0No animation used; disappears immediately.
outward1Collapses from the bottom edge to the top edge for the linear type; + * collapses from the inner edge to the outer edge for the circular type.
+ */ + public static final int hideAnimationBehavior=0x7f030236; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hideMotionSpec=0x7f030237; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideNavigationIcon=0x7f030238; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnContentScroll=0x7f030239; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnScroll=0x7f03023a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintAnimationEnabled=0x7f03023b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintEnabled=0x7f03023c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hintTextAppearance=0x7f03023d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int hintTextColor=0x7f03023e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeAsUpIndicator=0x7f03023f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeLayout=0x7f030240; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int horizontalOffset=0x7f030241; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int horizontalOffsetWithText=0x7f030242; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int hoveredFocusedTranslationZ=0x7f030243; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int icon=0x7f030244; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconEndPadding=0x7f030245; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end3Push icon to the end of the button.
start1Push icon to the start of the button.
textEnd4Push the icon to the end of the text keeping a distance equal to + * {@code iconPadding} from the text.
textStart2Push the icon to the start of the text keeping a distance equal to + * {@code iconPadding} from the text.
textTop20Push the icon to the top of the text keeping a distance equal to + * {@code iconPadding} from the text.
top10Push the icon to the top of the button.
+ */ + public static final int iconGravity=0x7f030246; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconPadding=0x7f030247; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconSize=0x7f030248; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconStartPadding=0x7f030249; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int iconTint=0x7f03024a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int iconTintMode=0x7f03024b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int iconifiedByDefault=0x7f03024c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ifTagNotSet=0x7f03024d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ifTagSet=0x7f03024e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int imageButtonStyle=0x7f03024f; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int imagePanX=0x7f030250; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int imagePanY=0x7f030251; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int imageRotate=0x7f030252; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int imageZoom=0x7f030253; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
contiguous0The track will be filled with three adjacent segments in iterative different colors. + * This type is only available when there are three or more indicator + * colors.
disjoint1There will be two disjoint segments in the same color per cycle. The color iterates between cycles.
+ */ + public static final int indeterminateAnimationType=0x7f030254; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int indeterminateProgressStyle=0x7f030255; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int indicatorColor=0x7f030256; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
clockwise0In the indeterminate mode, the spinner will spin clockwise; in the + * determinate mode, the indicator will progress from the top (12 o'clock) + * clockwise.
counterclockwise1In the indeterminate mode, the spinner will spin counter-clockwise; in + * the determinate mode, the indicator will progress from the top (12 + * o'clock) counter-clockwise.
+ */ + public static final int indicatorDirectionCircular=0x7f030257; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
endToStart3Animated from the end position to the start position of the track. + * This will be same as the rightToLeft for API before 17.
leftToRight0Animated from the left end to the right end of the track.
rightToLeft1Animated from the right end to the left end of the track.
startToEnd2Animated from the start position to the end position of the track. + * This will be same as the leftToRight for API before 17.
+ */ + public static final int indicatorDirectionLinear=0x7f030258; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int indicatorInset=0x7f030259; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int indicatorSize=0x7f03025a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int indicatorTrackGapSize=0x7f03025b; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int initialActivityCount=0x7f03025c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int insetForeground=0x7f03025d; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isLightTheme=0x7f03025e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isMaterial3DynamicColorApplied=0x7f03025f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isMaterial3Theme=0x7f030260; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isMaterialTheme=0x7f030261; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemActiveIndicatorStyle=0x7f030262; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemBackground=0x7f030263; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemFillColor=0x7f030264; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemHorizontalPadding=0x7f030265; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int itemHorizontalTranslationEnabled=0x7f030266; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconPadding=0x7f030267; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconSize=0x7f030268; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemIconTint=0x7f030269; + /** + *

May be an integer value, such as "100". + */ + public static final int itemMaxLines=0x7f03026a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemMinHeight=0x7f03026b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPadding=0x7f03026c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPaddingBottom=0x7f03026d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPaddingTop=0x7f03026e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemRippleColor=0x7f03026f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemShapeAppearance=0x7f030270; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemShapeAppearanceOverlay=0x7f030271; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemShapeFillColor=0x7f030272; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemShapeInsetBottom=0x7f030273; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemShapeInsetEnd=0x7f030274; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemShapeInsetStart=0x7f030275; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemShapeInsetTop=0x7f030276; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemSpacing=0x7f030277; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemStrokeColor=0x7f030278; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemStrokeWidth=0x7f030279; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearance=0x7f03027a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceActive=0x7f03027b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int itemTextAppearanceActiveBoldEnabled=0x7f03027c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceInactive=0x7f03027d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemTextColor=0x7f03027e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemVerticalPadding=0x7f03027f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
axisRelative3
deltaRelative0
parentRelative2
pathRelative1
+ */ + public static final int keyPositionType=0x7f030280; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int keyboardIcon=0x7f030281; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int keylines=0x7f030282; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int lStar=0x7f030283; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
floating0Mode that draws the label floating above the bounds of this view.
gone2Mode that prevents the label from being drawn.
visible3Mode that always draws the label.
withinBounds1Mode that draws the label within the bounds of the view.
+ */ + public static final int labelBehavior=0x7f030284; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int labelStyle=0x7f030285; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffLabel behaves as "labeled" when there are 3 items or less, or "selected" when there are + * 4 items or more.
labeled1Label is shown on all navigation items.
selected0Label is shown on the selected navigation item.
unlabeled2Label is not shown on any navigation items.
+ */ + public static final int labelVisibilityMode=0x7f030286; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int largeFontVerticalOffsetAdjustment=0x7f030287; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lastBaselineToBottomHeight=0x7f030288; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int lastItemDecorated=0x7f030289; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int launchSingleTop=0x7f03028a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout=0x7f03028b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layoutDescription=0x7f03028c; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
callMeasure2
honorRequest1
ignoreRequest0
+ */ + public static final int layoutDuringTransition=0x7f03028d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layoutManager=0x7f03028e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_anchor=0x7f03028f; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f030290; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_behavior=0x7f030291; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0The view will act as normal with no collapsing behavior.
parallax2The view will scroll in a parallax fashion. See the + * layout_collapseParallaxMultiplier attribute to change the multiplier.
pin1The view will pin in place.
+ */ + public static final int layout_collapseMode=0x7f030292; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_collapseParallaxMultiplier=0x7f030293; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int layout_constrainedHeight=0x7f030294; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int layout_constrainedWidth=0x7f030295; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_constraintBaseline_creator=0x7f030296; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintBaseline_toBaselineOf=0x7f030297; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintBaseline_toBottomOf=0x7f030298; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintBaseline_toTopOf=0x7f030299; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_constraintBottom_creator=0x7f03029a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintBottom_toBottomOf=0x7f03029b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintBottom_toTopOf=0x7f03029c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_constraintCircle=0x7f03029d; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintCircleAngle=0x7f03029e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_constraintCircleRadius=0x7f03029f; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_constraintDimensionRatio=0x7f0302a0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintEnd_toEndOf=0x7f0302a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintEnd_toStartOf=0x7f0302a2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_constraintGuide_begin=0x7f0302a3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_constraintGuide_end=0x7f0302a4; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintGuide_percent=0x7f0302a5; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ */ + public static final int layout_constraintHeight=0x7f0302a6; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ */ + public static final int layout_constraintHeight_default=0x7f0302a7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ */ + public static final int layout_constraintHeight_max=0x7f0302a8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ */ + public static final int layout_constraintHeight_min=0x7f0302a9; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintHeight_percent=0x7f0302aa; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintHorizontal_bias=0x7f0302ab; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int layout_constraintHorizontal_chainStyle=0x7f0302ac; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintHorizontal_weight=0x7f0302ad; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_constraintLeft_creator=0x7f0302ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintLeft_toLeftOf=0x7f0302af; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintLeft_toRightOf=0x7f0302b0; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_constraintRight_creator=0x7f0302b1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintRight_toLeftOf=0x7f0302b2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintRight_toRightOf=0x7f0302b3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintStart_toEndOf=0x7f0302b4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintStart_toStartOf=0x7f0302b5; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_constraintTag=0x7f0302b6; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_constraintTop_creator=0x7f0302b7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintTop_toBottomOf=0x7f0302b8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int layout_constraintTop_toTopOf=0x7f0302b9; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintVertical_bias=0x7f0302ba; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ */ + public static final int layout_constraintVertical_chainStyle=0x7f0302bb; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintVertical_weight=0x7f0302bc; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ */ + public static final int layout_constraintWidth=0x7f0302bd; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ */ + public static final int layout_constraintWidth_default=0x7f0302be; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ */ + public static final int layout_constraintWidth_max=0x7f0302bf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ */ + public static final int layout_constraintWidth_min=0x7f0302c0; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_constraintWidth_percent=0x7f0302c1; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ */ + public static final int layout_dodgeInsetEdges=0x7f0302c2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_editor_absoluteX=0x7f0302c3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_editor_absoluteY=0x7f0302c4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginBaseline=0x7f0302c5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginBottom=0x7f0302c6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginEnd=0x7f0302c7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginLeft=0x7f0302c8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginRight=0x7f0302c9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginStart=0x7f0302ca; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_goneMarginTop=0x7f0302cb; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ */ + public static final int layout_insetEdge=0x7f0302cc; + /** + *

May be an integer value, such as "100". + */ + public static final int layout_keyline=0x7f0302cd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int layout_marginBaseline=0x7f0302ce; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
barrier2
cache_measures100
chains4
dependency_ordering200
dimensions8
direct1
graph40
graph_wrap80
grouping400
groups20
legacy0
none0
ratio10
standard101
+ */ + public static final int layout_optimizationLevel=0x7f0302cf; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
compress1This view will be compressed (masked and parallaxed) when it reaches + * the top of the screen and continues to scroll out of view.
none0No effect will be applied to this child when its parent + * AppBarLayout's offset changes.
+ */ + public static final int layout_scrollEffect=0x7f0302d0; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4When entering (scrolling on screen) the view will scroll on any downwards + * scroll event, regardless of whether the scrolling view is also scrolling. This + * is commonly referred to as the 'quick return' pattern.
enterAlwaysCollapsed8An additional flag for 'enterAlways' which modifies the returning view to + * only initially scroll back to it's collapsed height. Once the scrolling view has + * reached the end of it's scroll range, the remainder of this view will be scrolled + * into view.
exitUntilCollapsed2When exiting (scrolling off screen) the view will be scrolled until it is + * 'collapsed'. The collapsed height is defined by the view's minimum height.
noScroll0Disable scrolling on the view. This flag should not be combined with any of the other + * scroll flags.
scroll1The view will be scroll in direct relation to scroll events. This flag needs to be + * set for any of the other flags to take effect. If any sibling views + * before this one do not have this flag, then this value has no effect.
snap10Upon a scroll ending, if the view is only partially visible then it will be + * snapped and scrolled to it's closest edge.
snapMargins20An additional flag to be used with 'snap'. If set, the view will be snapped to its + * top and bottom margins, as opposed to the edges of the view itself.
+ */ + public static final int layout_scrollFlags=0x7f0302d1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_scrollInterpolator=0x7f0302d2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ */ + public static final int layout_wrapBehaviorInParent=0x7f0302d3; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int liftOnScroll=0x7f0302d4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int liftOnScrollColor=0x7f0302d5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int liftOnScrollTargetViewId=0x7f0302d6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int limitBoundsTo=0x7f0302d7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineHeight=0x7f0302d8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineSpacing=0x7f0302d9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int linearProgressIndicatorStyle=0x7f0302da; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0302db; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceIndicatorMultipleAnimated=0x7f0302dc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceIndicatorSingleAnimated=0x7f0302dd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listDividerAlertDialog=0x7f0302de; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listItemLayout=0x7f0302df; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listLayout=0x7f0302e0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listMenuViewStyle=0x7f0302e1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listPopupWindowStyle=0x7f0302e2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeight=0x7f0302e3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightLarge=0x7f0302e4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightSmall=0x7f0302e5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingEnd=0x7f0302e6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingLeft=0x7f0302e7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingRight=0x7f0302e8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingStart=0x7f0302e9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int logo=0x7f0302ea; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int logoAdjustViewBounds=0x7f0302eb; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int logoDescription=0x7f0302ec; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center5Center the image in the view, but perform no scaling.
centerCrop6Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside7Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter3Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd4Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart2Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY1Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
matrix0Scale using the image matrix when drawing. See + * {@link android.widget.ImageView#setImageMatrix(Matrix)}.
+ */ + public static final int logoScaleType=0x7f0302ed; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int marginHorizontal=0x7f0302ee; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int marginLeftSystemWindowInsets=0x7f0302ef; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int marginRightSystemWindowInsets=0x7f0302f0; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int marginTopSystemWindowInsets=0x7f0302f1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialAlertDialogBodyTextStyle=0x7f0302f2; + /** + *

May be an integer value, such as "100". + */ + public static final int materialAlertDialogButtonSpacerVisibility=0x7f0302f3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialAlertDialogTheme=0x7f0302f4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialAlertDialogTitleIconStyle=0x7f0302f5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialAlertDialogTitlePanelStyle=0x7f0302f6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialAlertDialogTitleTextStyle=0x7f0302f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialButtonOutlinedStyle=0x7f0302f8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialButtonStyle=0x7f0302f9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialButtonToggleGroupStyle=0x7f0302fa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarDay=0x7f0302fb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarDayOfWeekLabel=0x7f0302fc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarFullscreenTheme=0x7f0302fd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderCancelButton=0x7f0302fe; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderConfirmButton=0x7f0302ff; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderDivider=0x7f030300; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderLayout=0x7f030301; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderSelection=0x7f030302; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderTitle=0x7f030303; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarHeaderToggleButton=0x7f030304; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarMonth=0x7f030305; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarMonthNavigationButton=0x7f030306; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarStyle=0x7f030307; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarTheme=0x7f030308; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCalendarYearNavigationButton=0x7f030309; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewElevatedStyle=0x7f03030a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewFilledStyle=0x7f03030b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewOutlinedStyle=0x7f03030c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewStyle=0x7f03030d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int materialCircleRadius=0x7f03030e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialClockStyle=0x7f03030f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialDisplayDividerStyle=0x7f030310; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int materialDividerHeavyStyle=0x7f030311; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int materialDividerStyle=0x7f030312; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialIconButtonFilledStyle=0x7f030313; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialIconButtonFilledTonalStyle=0x7f030314; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialIconButtonOutlinedStyle=0x7f030315; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialIconButtonStyle=0x7f030316; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialSearchBarStyle=0x7f030317; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialSearchViewPrefixStyle=0x7f030318; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialSearchViewStyle=0x7f030319; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int materialSearchViewToolbarHeight=0x7f03031a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialSearchViewToolbarStyle=0x7f03031b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int materialSwitchStyle=0x7f03031c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialThemeOverlay=0x7f03031d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialTimePickerStyle=0x7f03031e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialTimePickerTheme=0x7f03031f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialTimePickerTitleStyle=0x7f030320; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int maui_edgetoedge_optout=0x7f030321; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int maui_splash=0x7f030322; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int maxAcceleration=0x7f030323; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxActionInlineWidth=0x7f030324; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxButtonHeight=0x7f030325; + /** + *

May be an integer value, such as "100". + */ + public static final int maxCharacterCount=0x7f030326; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxHeight=0x7f030327; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxImageSize=0x7f030328; + /** + *

May be an integer value, such as "100". + */ + public static final int maxLines=0x7f030329; + /** + *

May be an integer value, such as "100". + */ + public static final int maxNumber=0x7f03032a; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int maxVelocity=0x7f03032b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxWidth=0x7f03032c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int measureWithLargestChild=0x7f03032d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int menu=0x7f03032e; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
auto0Mode that aligns the menu automatically to avoid the FAB. Menu will be aligned at the end + * when the FAB is center aligned, and start when the FAB is end aligned.
start1Mode that aligns the menu to the start.
+ */ + public static final int menuAlignmentMode=0x7f03032f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom51Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL
center11Gravity.CENTER
top31Gravity.TOP | Gravity.CENTER_HORIZONTAL
+ */ + public static final int menuGravity=0x7f030330; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int methodName=0x7f030331; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int mimeType=0x7f030332; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int minHeight=0x7f030333; + /** + *

May be an integer value, such as "100". + */ + public static final int minHideDelay=0x7f030334; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int minSeparation=0x7f030335; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int minTouchTargetSize=0x7f030336; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int minWidth=0x7f030337; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int mock_diagonalsColor=0x7f030338; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int mock_label=0x7f030339; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int mock_labelBackgroundColor=0x7f03033a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int mock_labelColor=0x7f03033b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int mock_showDiagonals=0x7f03033c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int mock_showLabel=0x7f03033d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
NO_DEBUG0
SHOW_ALL3
SHOW_PATH2
SHOW_PROGRESS1
+ */ + public static final int motionDebug=0x7f03033e; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationExtraLong1=0x7f03033f; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationExtraLong2=0x7f030340; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationExtraLong3=0x7f030341; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationExtraLong4=0x7f030342; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationLong1=0x7f030343; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationLong2=0x7f030344; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationLong3=0x7f030345; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationLong4=0x7f030346; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationMedium1=0x7f030347; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationMedium2=0x7f030348; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationMedium3=0x7f030349; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationMedium4=0x7f03034a; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationShort1=0x7f03034b; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationShort2=0x7f03034c; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationShort3=0x7f03034d; + /** + *

May be an integer value, such as "100". + */ + public static final int motionDurationShort4=0x7f03034e; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionEasingAccelerated=0x7f03034f; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionEasingDecelerated=0x7f030350; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionEasingEmphasized=0x7f030351; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingEmphasizedAccelerateInterpolator=0x7f030352; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingEmphasizedDecelerateInterpolator=0x7f030353; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingEmphasizedInterpolator=0x7f030354; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionEasingLinear=0x7f030355; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingLinearInterpolator=0x7f030356; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionEasingStandard=0x7f030357; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingStandardAccelerateInterpolator=0x7f030358; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingStandardDecelerateInterpolator=0x7f030359; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEasingStandardInterpolator=0x7f03035a; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int motionEffect_alpha=0x7f03035b; + /** + *

May be an integer value, such as "100". + */ + public static final int motionEffect_end=0x7f03035c; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
east2
north0
south1
west3
+ */ + public static final int motionEffect_move=0x7f03035d; + /** + *

May be an integer value, such as "100". + */ + public static final int motionEffect_start=0x7f03035e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int motionEffect_strict=0x7f03035f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int motionEffect_translationX=0x7f030360; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int motionEffect_translationY=0x7f030361; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motionEffect_viewTransition=0x7f030362; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
anticipate6
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ */ + public static final int motionInterpolator=0x7f030363; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
arc1
linear0
+ */ + public static final int motionPath=0x7f030364; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int motionPathRotate=0x7f030365; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int motionProgress=0x7f030366; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int motionStagger=0x7f030367; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int motionTarget=0x7f030368; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int motion_postLayoutCollision=0x7f030369; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int motion_triggerOnCollision=0x7f03036a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int moveWhenScrollAtTop=0x7f03036b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int multiChoiceItemLayout=0x7f03036c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navGraph=0x7f03036d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int navigationContentDescription=0x7f03036e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationIcon=0x7f03036f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int navigationIconTint=0x7f030370; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ */ + public static final int navigationMode=0x7f030371; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationRailStyle=0x7f030372; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationViewStyle=0x7f030373; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disablePostScroll1
disableScroll2
none0
supportScrollUp4
+ */ + public static final int nestedScrollFlags=0x7f030374; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int nestedScrollViewStyle=0x7f030375; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int nestedScrollable=0x7f030376; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int nullable=0x7f030377; + /** + *

May be an integer value, such as "100". + */ + public static final int number=0x7f030378; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int numericModifiers=0x7f030379; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
edge0The offsets begin at the edge of the anchor.
legacy1Follows the legacy offset alignment behavior. The horizontal offset begins at a variable + * permanent inset from the edge of the anchor, and the vertical offset begins at the center + * of the badge aligned with the edge of the anchor.
+ */ + public static final int offsetAlignmentMode=0x7f03037a; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int onCross=0x7f03037b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int onHide=0x7f03037c; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int onNegativeCross=0x7f03037d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int onPositiveCross=0x7f03037e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int onShow=0x7f03037f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDown1
actionDownUp3
actionUp2
sharedValueSet4
sharedValueUnset5
+ */ + public static final int onStateTransition=0x7f030380; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoComplete0
autoCompleteToEnd2
autoCompleteToStart1
decelerate4
decelerateAndComplete5
neverCompleteToEnd7
neverCompleteToStart6
stop3
+ */ + public static final int onTouchUp=0x7f030381; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlapAnchor=0x7f030382; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlay=0x7f030383; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingBottomNoButtons=0x7f030384; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int paddingBottomSystemWindowInsets=0x7f030385; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingEnd=0x7f030386; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int paddingLeftSystemWindowInsets=0x7f030387; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int paddingRightSystemWindowInsets=0x7f030388; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingStart=0x7f030389; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int paddingStartSystemWindowInsets=0x7f03038a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingTopNoTitle=0x7f03038b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int paddingTopSystemWindowInsets=0x7f03038c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelBackground=0x7f03038d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelMenuListTheme=0x7f03038e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int panelMenuListWidth=0x7f03038f; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int passwordToggleContentDescription=0x7f030390; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int passwordToggleDrawable=0x7f030391; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int passwordToggleEnabled=0x7f030392; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int passwordToggleTint=0x7f030393; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int passwordToggleTintMode=0x7f030394; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ */ + public static final int pathMotionArc=0x7f030395; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int path_percent=0x7f030396; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int percentHeight=0x7f030397; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int percentWidth=0x7f030398; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int percentX=0x7f030399; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int percentY=0x7f03039a; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int perpendicularPath_percent=0x7f03039b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ */ + public static final int pivotAnchor=0x7f03039c; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int placeholderActivityName=0x7f03039d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int placeholderText=0x7f03039e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int placeholderTextAppearance=0x7f03039f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int placeholderTextColor=0x7f0303a0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone8
invisible4
visible0
+ */ + public static final int placeholder_emptyVisibility=0x7f0303a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int polarRelativeTo=0x7f0303a2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popEnterAnim=0x7f0303a3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popExitAnim=0x7f0303a4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popUpTo=0x7f0303a5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int popUpToInclusive=0x7f0303a6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int popUpToSaveState=0x7f0303a7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuBackground=0x7f0303a8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuStyle=0x7f0303a9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupTheme=0x7f0303aa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupWindowStyle=0x7f0303ab; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int prefixText=0x7f0303ac; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int prefixTextAppearance=0x7f0303ad; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int prefixTextColor=0x7f0303ae; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int preserveIconSpacing=0x7f0303af; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int pressedTranslationZ=0x7f0303b0; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int primaryActivityName=0x7f0303b1; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int progressBarPadding=0x7f0303b2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarStyle=0x7f0303b3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ */ + public static final int quantizeMotionInterpolator=0x7f0303b4; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int quantizeMotionPhase=0x7f0303b5; + /** + *

May be an integer value, such as "100". + */ + public static final int quantizeMotionSteps=0x7f0303b6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryBackground=0x7f0303b7; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int queryHint=0x7f0303b8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryPatterns=0x7f0303b9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int radioButtonStyle=0x7f0303ba; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int rangeFillColor=0x7f0303bb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyle=0x7f0303bc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleIndicator=0x7f0303bd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleSmall=0x7f0303be; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int reactiveGuide_animateChange=0x7f0303bf; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int reactiveGuide_applyToAllConstraintSets=0x7f0303c0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int reactiveGuide_applyToConstraintSet=0x7f0303c1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int reactiveGuide_valueId=0x7f0303c2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int recyclerViewStyle=0x7f0303c3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int region_heightLessThan=0x7f0303c4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int region_heightMoreThan=0x7f0303c5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int region_widthLessThan=0x7f0303c6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int region_widthMoreThan=0x7f0303c7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int removeEmbeddedFabElevation=0x7f0303c8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int restoreState=0x7f0303c9; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int reverseLayout=0x7f0303ca; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int rippleColor=0x7f0303cb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int rotationCenterId=0x7f0303cc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int round=0x7f0303cd; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int roundPercent=0x7f0303ce; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int route=0x7f0303cf; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int saturation=0x7f0303d0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int scaleFromTextSize=0x7f0303d1; + /** + *

May be an integer value, such as "100". + */ + public static final int scrimAnimationDuration=0x7f0303d2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int scrimBackground=0x7f0303d3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int scrimVisibleHeightTrigger=0x7f0303d4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int scrollViewStyle=0x7f0303d5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchHintIcon=0x7f0303d6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchIcon=0x7f0303d7; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int searchPrefixText=0x7f0303d8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchViewStyle=0x7f0303d9; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int secondaryActivityAction=0x7f0303da; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int secondaryActivityName=0x7f0303db; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int seekBarStyle=0x7f0303dc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackground=0x7f0303dd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0303de; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int selectionRequired=0x7f0303df; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int selectorSize=0x7f0303e0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int setsTag=0x7f0303e1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearance=0x7f0303e2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceCornerExtraLarge=0x7f0303e3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceCornerExtraSmall=0x7f0303e4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceCornerLarge=0x7f0303e5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceCornerMedium=0x7f0303e6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceCornerSmall=0x7f0303e7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceLargeComponent=0x7f0303e8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceMediumComponent=0x7f0303e9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceOverlay=0x7f0303ea; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shapeAppearanceSmallComponent=0x7f0303eb; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ */ + public static final int shapeCornerFamily=0x7f0303ec; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int shortcutMatchRequired=0x7f0303ed; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int shouldRemoveExpandedCorners=0x7f0303ee; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
inward2Expands from the top edge to the bottom edge for the linear type; + * expands from the outer edge to the inner edge for the circular type.
none0No animation used; appears immediately.
outward1Expands from the bottom edge to the top edge for the linear type; + * expands from the inner edge to the outer edge for the circular type.
+ */ + public static final int showAnimationBehavior=0x7f0303ef; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ */ + public static final int showAsAction=0x7f0303f0; + /** + *

May be an integer value, such as "100". + */ + public static final int showDelay=0x7f0303f1; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ */ + public static final int showDividers=0x7f0303f2; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showMarker=0x7f0303f3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int showMotionSpec=0x7f0303f4; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showPaths=0x7f0303f5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showText=0x7f0303f6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showTitle=0x7f0303f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int shrinkMotionSpec=0x7f0303f8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int sideSheetDialogTheme=0x7f0303f9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int sideSheetModalStyle=0x7f0303fa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int simpleItemLayout=0x7f0303fb; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int simpleItemSelectedColor=0x7f0303fc; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int simpleItemSelectedRippleColor=0x7f0303fd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int simpleItems=0x7f0303fe; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int singleChoiceItemLayout=0x7f0303ff; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleLine=0x7f030400; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleSelection=0x7f030401; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int sizePercent=0x7f030402; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int sliderStyle=0x7f030403; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarButtonStyle=0x7f030404; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarStyle=0x7f030405; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarTextViewStyle=0x7f030406; + /** + *

May be an integer value, such as "100". + */ + public static final int spanCount=0x7f030407; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int spinBars=0x7f030408; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerDropDownItemStyle=0x7f030409; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerStyle=0x7f03040a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottomToTop4
locale0
ltr1
rtl2
topToBottom3
+ */ + public static final int splitLayoutDirection=0x7f03040b; + /** + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ */ + public static final int splitMaxAspectRatioInLandscape=0x7f03040c; + /** + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ */ + public static final int splitMaxAspectRatioInPortrait=0x7f03040d; + /** + *

May be an integer value, such as "100". + */ + public static final int splitMinHeightDp=0x7f03040e; + /** + *

May be an integer value, such as "100". + */ + public static final int splitMinSmallestWidthDp=0x7f03040f; + /** + *

May be an integer value, such as "100". + */ + public static final int splitMinWidthDp=0x7f030410; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int splitRatio=0x7f030411; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int splitTrack=0x7f030412; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounceBoth3
bounceEnd2
bounceStart1
overshoot0
+ */ + public static final int springBoundary=0x7f030413; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int springDamping=0x7f030414; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int springMass=0x7f030415; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int springStiffness=0x7f030416; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int springStopThreshold=0x7f030417; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int srcCompat=0x7f030418; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int stackFromEnd=0x7f030419; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int staggered=0x7f03041a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int startDestination=0x7f03041b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int startIconCheckable=0x7f03041c; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int startIconContentDescription=0x7f03041d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int startIconDrawable=0x7f03041e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int startIconMinSize=0x7f03041f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4Center the image in the view, but perform no scaling.
centerCrop5Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside6Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter2Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd3Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart1Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY0Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
+ */ + public static final int startIconScaleType=0x7f030420; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int startIconTint=0x7f030421; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int startIconTintMode=0x7f030422; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int stateLabels=0x7f030423; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_above_anchor=0x7f030424; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsed=0x7f030425; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsible=0x7f030426; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_dragged=0x7f030427; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_error=0x7f030428; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_indeterminate=0x7f030429; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_liftable=0x7f03042a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_lifted=0x7f03042b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_with_icon=0x7f03042c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarBackground=0x7f03042d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarForeground=0x7f03042e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarScrim=0x7f03042f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int stickyPlaceholder=0x7f030430; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int strokeColor=0x7f030431; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int strokeWidth=0x7f030432; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subMenuArrow=0x7f030433; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subheaderColor=0x7f030434; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int subheaderInsetEnd=0x7f030435; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int subheaderInsetStart=0x7f030436; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subheaderTextAppearance=0x7f030437; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int submitBackground=0x7f030438; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int subtitle=0x7f030439; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int subtitleCentered=0x7f03043a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextAppearance=0x7f03043b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subtitleTextColor=0x7f03043c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextStyle=0x7f03043d; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int suffixText=0x7f03043e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suffixTextAppearance=0x7f03043f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int suffixTextColor=0x7f030440; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suggestionRowLayout=0x7f030441; + /** + * Background color for SwipeRefreshLayout progress spinner. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int swipeRefreshLayoutProgressSpinnerBackgroundColor=0x7f030442; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchMinWidth=0x7f030443; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchPadding=0x7f030444; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchStyle=0x7f030445; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchTextAppearance=0x7f030446; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabBackground=0x7f030447; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabContentStart=0x7f030448; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
start2
+ */ + public static final int tabGravity=0x7f030449; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIconTint=0x7f03044a; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int tabIconTintMode=0x7f03044b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabIndicator=0x7f03044c; + /** + *

May be an integer value, such as "100". + */ + public static final int tabIndicatorAnimationDuration=0x7f03044d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
elastic1Animate the selection indicator's left and right bounds out of step + * with each other, decelerating the front and accelerating the back. + * This causes the indicator to look like it stretches between destinations + * an then shrinks back down to fit the size of it's target tab.
fade2Animate the selection indicator by sequentially fading it out from + * its current destination and then fading it in at its new + * destination.
linear0Animate the selection indicator's left and right bounds in step with + * each other.
+ */ + public static final int tabIndicatorAnimationMode=0x7f03044e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIndicatorColor=0x7f03044f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabIndicatorFullWidth=0x7f030450; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0Align indicator to the bottom of this tab layout.
center1Align indicator along the center of this tab layout.
stretch3Stretch indicator to match the height and width of a tab item in this layout.
top2Align indicator to the top of this tab layout.
+ */ + public static final int tabIndicatorGravity=0x7f030451; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabIndicatorHeight=0x7f030452; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabInlineLabel=0x7f030453; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMaxWidth=0x7f030454; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMinWidth=0x7f030455; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
auto2
fixed1
scrollable0
+ */ + public static final int tabMode=0x7f030456; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPadding=0x7f030457; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingBottom=0x7f030458; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingEnd=0x7f030459; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingStart=0x7f03045a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingTop=0x7f03045b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabRippleColor=0x7f03045c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabSecondaryStyle=0x7f03045d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabSelectedTextAppearance=0x7f03045e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabSelectedTextColor=0x7f03045f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabStyle=0x7f030460; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabTextAppearance=0x7f030461; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabTextColor=0x7f030462; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabUnboundedRipple=0x7f030463; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int tag=0x7f030464; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int targetId=0x7f030465; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int targetPackage=0x7f030466; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int telltales_tailColor=0x7f030467; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int telltales_tailScale=0x7f030468; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
layout0
postLayout1
staticLayout3
staticPostLayout2
+ */ + public static final int telltales_velocityMode=0x7f030469; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAllCaps=0x7f03046a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody1=0x7f03046b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody2=0x7f03046c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBodyLarge=0x7f03046d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBodyMedium=0x7f03046e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBodySmall=0x7f03046f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceButton=0x7f030470; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceCaption=0x7f030471; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceDisplayLarge=0x7f030472; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceDisplayMedium=0x7f030473; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceDisplaySmall=0x7f030474; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline1=0x7f030475; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline2=0x7f030476; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline3=0x7f030477; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline4=0x7f030478; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline5=0x7f030479; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline6=0x7f03047a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadlineLarge=0x7f03047b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadlineMedium=0x7f03047c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadlineSmall=0x7f03047d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLabelLarge=0x7f03047e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLabelMedium=0x7f03047f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLabelSmall=0x7f030480; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLargePopupMenu=0x7f030481; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAppearanceLineHeightEnabled=0x7f030482; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItem=0x7f030483; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSecondary=0x7f030484; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSmall=0x7f030485; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceOverline=0x7f030486; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearancePopupMenuHeader=0x7f030487; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f030488; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultTitle=0x7f030489; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f03048a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle1=0x7f03048b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle2=0x7f03048c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceTitleLarge=0x7f03048d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceTitleMedium=0x7f03048e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceTitleSmall=0x7f03048f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textBackground=0x7f030490; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textBackgroundPanX=0x7f030491; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textBackgroundPanY=0x7f030492; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textBackgroundRotate=0x7f030493; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textBackgroundZoom=0x7f030494; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f030495; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f030496; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textEndPadding=0x7f030497; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textFillColor=0x7f030498; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputFilledDenseStyle=0x7f030499; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputFilledExposedDropdownMenuStyle=0x7f03049a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputFilledStyle=0x7f03049b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textInputLayoutFocusedRectEnabled=0x7f03049c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputOutlinedDenseStyle=0x7f03049d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputOutlinedExposedDropdownMenuStyle=0x7f03049e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputOutlinedStyle=0x7f03049f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputStyle=0x7f0304a0; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int textLocale=0x7f0304a1; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textOutlineColor=0x7f0304a2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textOutlineThickness=0x7f0304a3; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textPanX=0x7f0304a4; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int textPanY=0x7f0304a5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textStartPadding=0x7f0304a6; + /** + *

May be an integer value, such as "100". + */ + public static final int textureBlurFactor=0x7f0304a7; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
frost1
none0
+ */ + public static final int textureEffect=0x7f0304a8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textureHeight=0x7f0304a9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textureWidth=0x7f0304aa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int theme=0x7f0304ab; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thickness=0x7f0304ac; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbColor=0x7f0304ad; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbElevation=0x7f0304ae; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbHeight=0x7f0304af; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int thumbIcon=0x7f0304b0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbIconSize=0x7f0304b1; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbIconTint=0x7f0304b2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int thumbIconTintMode=0x7f0304b3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbRadius=0x7f0304b4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbStrokeColor=0x7f0304b5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbStrokeWidth=0x7f0304b6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTextPadding=0x7f0304b7; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbTint=0x7f0304b8; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int thumbTintMode=0x7f0304b9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTrackGapSize=0x7f0304ba; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbWidth=0x7f0304bb; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickColor=0x7f0304bc; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickColorActive=0x7f0304bd; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickColorInactive=0x7f0304be; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tickMark=0x7f0304bf; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickMarkTint=0x7f0304c0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tickMarkTintMode=0x7f0304c1; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tickRadiusActive=0x7f0304c2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tickRadiusInactive=0x7f0304c3; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tickVisible=0x7f0304c4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tint=0x7f0304c5; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tintMode=0x7f0304c6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tintNavigationIcon=0x7f0304c7; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int title=0x7f0304c8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int titleCentered=0x7f0304c9; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fade1The expanded title will fade out and translate, and the collapsed title will fade in.
scale0The expanded title will continuously scale and translate to its final collapsed position.
+ */ + public static final int titleCollapseMode=0x7f0304ca; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int titleEnabled=0x7f0304cb; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargin=0x7f0304cc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginBottom=0x7f0304cd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginEnd=0x7f0304ce; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginStart=0x7f0304cf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginTop=0x7f0304d0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargins=0x7f0304d1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titlePositionInterpolator=0x7f0304d2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextAppearance=0x7f0304d3; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int titleTextColor=0x7f0304d4; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end2
marquee3
middle1
start0
+ */ + public static final int titleTextEllipsize=0x7f0304d5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextStyle=0x7f0304d6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int toggleCheckedStateOnClick=0x7f0304d7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarId=0x7f0304d8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0304d9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarStyle=0x7f0304da; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarSurfaceStyle=0x7f0304db; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f0304dc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tooltipFrameBackground=0x7f0304dd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tooltipStyle=0x7f0304de; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int tooltipText=0x7f0304df; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int topInsetScrimEnabled=0x7f0304e0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int touchAnchorId=0x7f0304e1; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left1
middle4
right2
start5
top0
+ */ + public static final int touchAnchorSide=0x7f0304e2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int touchRegionId=0x7f0304e3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int track=0x7f0304e4; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackColor=0x7f0304e5; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackColorActive=0x7f0304e6; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackColorInactive=0x7f0304e7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int trackCornerRadius=0x7f0304e8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int trackDecoration=0x7f0304e9; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackDecorationTint=0x7f0304ea; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int trackDecorationTintMode=0x7f0304eb; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int trackHeight=0x7f0304ec; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int trackInsideCornerSize=0x7f0304ed; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int trackStopIndicatorSize=0x7f0304ee; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int trackThickness=0x7f0304ef; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackTint=0x7f0304f0; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int trackTintMode=0x7f0304f1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int transformPivotTarget=0x7f0304f2; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int transitionDisable=0x7f0304f3; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ */ + public static final int transitionEasing=0x7f0304f4; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginOnFirstDraw1
disableIntraAutoTransition2
none0
onInterceptTouchReturnSwipe4
+ */ + public static final int transitionFlags=0x7f0304f5; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int transitionPathRotate=0x7f0304f6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int transitionShapeAppearance=0x7f0304f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int triggerId=0x7f0304f8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int triggerReceiver=0x7f0304f9; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int triggerSlack=0x7f0304fa; + /** + *

May be an integer value, such as "100". + */ + public static final int ttcIndex=0x7f0304fb; + /** + *

May be an integer value, such as "100". + */ + public static final int upDuration=0x7f0304fc; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int uri=0x7f0304fd; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int useCompatPadding=0x7f0304fe; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int useDrawerArrowDrawable=0x7f0304ff; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int useMaterialThemeColors=0x7f030500; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int values=0x7f030501; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int verticalOffset=0x7f030502; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int verticalOffsetWithText=0x7f030503; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int viewInflaterClass=0x7f030504; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
allStates1
currentState0
noState2
+ */ + public static final int viewTransitionMode=0x7f030505; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int viewTransitionOnCross=0x7f030506; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int viewTransitionOnNegativeCross=0x7f030507; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int viewTransitionOnPositiveCross=0x7f030508; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
ignore1
normal0
+ */ + public static final int visibilityMode=0x7f030509; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int voiceIcon=0x7f03050a; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int warmth=0x7f03050b; + /** + *

May be an integer value, such as "100". + */ + public static final int waveDecay=0x7f03050c; + /** + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int waveOffset=0x7f03050d; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int wavePeriod=0x7f03050e; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int wavePhase=0x7f03050f; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce6
cos5
reverseSawtooth4
sawtooth3
sin0
square1
triangle2
+ */ + public static final int waveShape=0x7f030510; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
path1
position0
+ */ + public static final int waveVariesBy=0x7f030511; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBar=0x7f030512; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBarOverlay=0x7f030513; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionModeOverlay=0x7f030514; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMajor=0x7f030515; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMinor=0x7f030516; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMajor=0x7f030517; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMinor=0x7f030518; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMajor=0x7f030519; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMinor=0x7f03051a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowNoTitle=0x7f03051b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int yearSelectedStyle=0x7f03051c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int yearStyle=0x7f03051d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int yearTodayStyle=0x7f03051e; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f040000; + public static final int abc_config_actionMenuItemAllCaps=0x7f040001; + public static final int mtrl_btn_textappearance_all_caps=0x7f040002; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; + public static final int abc_background_cache_hint_selector_material_light=0x7f050001; + public static final int abc_btn_colored_borderless_text_material=0x7f050002; + public static final int abc_btn_colored_text_material=0x7f050003; + public static final int abc_color_highlight_material=0x7f050004; + public static final int abc_decor_view_status_guard=0x7f050005; + public static final int abc_decor_view_status_guard_light=0x7f050006; + public static final int abc_hint_foreground_material_dark=0x7f050007; + public static final int abc_hint_foreground_material_light=0x7f050008; + public static final int abc_primary_text_disable_only_material_dark=0x7f050009; + public static final int abc_primary_text_disable_only_material_light=0x7f05000a; + public static final int abc_primary_text_material_dark=0x7f05000b; + public static final int abc_primary_text_material_light=0x7f05000c; + public static final int abc_search_url_text=0x7f05000d; + public static final int abc_search_url_text_normal=0x7f05000e; + public static final int abc_search_url_text_pressed=0x7f05000f; + public static final int abc_search_url_text_selected=0x7f050010; + public static final int abc_secondary_text_material_dark=0x7f050011; + public static final int abc_secondary_text_material_light=0x7f050012; + public static final int abc_tint_btn_checkable=0x7f050013; + public static final int abc_tint_default=0x7f050014; + public static final int abc_tint_edittext=0x7f050015; + public static final int abc_tint_seek_thumb=0x7f050016; + public static final int abc_tint_spinner=0x7f050017; + public static final int abc_tint_switch_track=0x7f050018; + public static final int accent_material_dark=0x7f050019; + public static final int accent_material_light=0x7f05001a; + public static final int androidx_core_ripple_material_light=0x7f05001b; + public static final int androidx_core_secondary_text_default_material_light=0x7f05001c; + public static final int background_floating_material_dark=0x7f05001d; + public static final int background_floating_material_light=0x7f05001e; + public static final int background_material_dark=0x7f05001f; + public static final int background_material_light=0x7f050020; + public static final int bright_foreground_disabled_material_dark=0x7f050021; + public static final int bright_foreground_disabled_material_light=0x7f050022; + public static final int bright_foreground_inverse_material_dark=0x7f050023; + public static final int bright_foreground_inverse_material_light=0x7f050024; + public static final int bright_foreground_material_dark=0x7f050025; + public static final int bright_foreground_material_light=0x7f050026; + public static final int browser_actions_bg_grey=0x7f050027; + public static final int browser_actions_divider_color=0x7f050028; + public static final int browser_actions_text_color=0x7f050029; + public static final int browser_actions_title_color=0x7f05002a; + public static final int button_material_dark=0x7f05002b; + public static final int button_material_light=0x7f05002c; + public static final int call_notification_answer_color=0x7f05002d; + public static final int call_notification_decline_color=0x7f05002e; + public static final int cardview_dark_background=0x7f05002f; + public static final int cardview_light_background=0x7f050030; + public static final int cardview_shadow_end_color=0x7f050031; + public static final int cardview_shadow_start_color=0x7f050032; + public static final int colorAccent=0x7f050033; + public static final int colorActionMenuTextColor=0x7f050034; + public static final int colorPrimary=0x7f050035; + public static final int colorPrimaryDark=0x7f050036; + public static final int design_bottom_navigation_shadow_color=0x7f050037; + public static final int design_box_stroke_color=0x7f050038; + public static final int design_dark_default_color_background=0x7f050039; + public static final int design_dark_default_color_error=0x7f05003a; + public static final int design_dark_default_color_on_background=0x7f05003b; + public static final int design_dark_default_color_on_error=0x7f05003c; + public static final int design_dark_default_color_on_primary=0x7f05003d; + public static final int design_dark_default_color_on_secondary=0x7f05003e; + public static final int design_dark_default_color_on_surface=0x7f05003f; + public static final int design_dark_default_color_primary=0x7f050040; + public static final int design_dark_default_color_primary_dark=0x7f050041; + public static final int design_dark_default_color_primary_variant=0x7f050042; + public static final int design_dark_default_color_secondary=0x7f050043; + public static final int design_dark_default_color_secondary_variant=0x7f050044; + public static final int design_dark_default_color_surface=0x7f050045; + public static final int design_default_color_background=0x7f050046; + public static final int design_default_color_error=0x7f050047; + public static final int design_default_color_on_background=0x7f050048; + public static final int design_default_color_on_error=0x7f050049; + public static final int design_default_color_on_primary=0x7f05004a; + public static final int design_default_color_on_secondary=0x7f05004b; + public static final int design_default_color_on_surface=0x7f05004c; + public static final int design_default_color_primary=0x7f05004d; + public static final int design_default_color_primary_dark=0x7f05004e; + public static final int design_default_color_primary_variant=0x7f05004f; + public static final int design_default_color_secondary=0x7f050050; + public static final int design_default_color_secondary_variant=0x7f050051; + public static final int design_default_color_surface=0x7f050052; + public static final int design_error=0x7f050053; + public static final int design_fab_shadow_end_color=0x7f050054; + public static final int design_fab_shadow_mid_color=0x7f050055; + public static final int design_fab_shadow_start_color=0x7f050056; + public static final int design_fab_stroke_end_inner_color=0x7f050057; + public static final int design_fab_stroke_end_outer_color=0x7f050058; + public static final int design_fab_stroke_top_inner_color=0x7f050059; + public static final int design_fab_stroke_top_outer_color=0x7f05005a; + public static final int design_icon_tint=0x7f05005b; + public static final int design_snackbar_background_color=0x7f05005c; + public static final int dim_foreground_disabled_material_dark=0x7f05005d; + public static final int dim_foreground_disabled_material_light=0x7f05005e; + public static final int dim_foreground_material_dark=0x7f05005f; + public static final int dim_foreground_material_light=0x7f050060; + public static final int error_color_material_dark=0x7f050061; + public static final int error_color_material_light=0x7f050062; + public static final int foreground_material_dark=0x7f050063; + public static final int foreground_material_light=0x7f050064; + public static final int highlighted_text_material_dark=0x7f050065; + public static final int highlighted_text_material_light=0x7f050066; + public static final int m3_appbar_overlay_color=0x7f050067; + public static final int m3_assist_chip_icon_tint_color=0x7f050068; + public static final int m3_assist_chip_stroke_color=0x7f050069; + public static final int m3_bottom_sheet_drag_handle_color=0x7f05006a; + public static final int m3_button_background_color_selector=0x7f05006b; + public static final int m3_button_foreground_color_selector=0x7f05006c; + public static final int m3_button_outline_color_selector=0x7f05006d; + public static final int m3_button_ripple_color=0x7f05006e; + public static final int m3_button_ripple_color_selector=0x7f05006f; + public static final int m3_calendar_item_disabled_text=0x7f050070; + public static final int m3_calendar_item_stroke_color=0x7f050071; + public static final int m3_card_foreground_color=0x7f050072; + public static final int m3_card_ripple_color=0x7f050073; + public static final int m3_card_stroke_color=0x7f050074; + public static final int m3_checkbox_button_icon_tint=0x7f050075; + public static final int m3_checkbox_button_tint=0x7f050076; + public static final int m3_chip_assist_text_color=0x7f050077; + public static final int m3_chip_background_color=0x7f050078; + public static final int m3_chip_ripple_color=0x7f050079; + public static final int m3_chip_stroke_color=0x7f05007a; + public static final int m3_chip_text_color=0x7f05007b; + public static final int m3_dark_default_color_primary_text=0x7f05007c; + public static final int m3_dark_default_color_secondary_text=0x7f05007d; + public static final int m3_dark_highlighted_text=0x7f05007e; + public static final int m3_dark_hint_foreground=0x7f05007f; + public static final int m3_dark_primary_text_disable_only=0x7f050080; + public static final int m3_default_color_primary_text=0x7f050081; + public static final int m3_default_color_secondary_text=0x7f050082; + public static final int m3_dynamic_dark_default_color_primary_text=0x7f050083; + public static final int m3_dynamic_dark_default_color_secondary_text=0x7f050084; + public static final int m3_dynamic_dark_highlighted_text=0x7f050085; + public static final int m3_dynamic_dark_hint_foreground=0x7f050086; + public static final int m3_dynamic_dark_primary_text_disable_only=0x7f050087; + public static final int m3_dynamic_default_color_primary_text=0x7f050088; + public static final int m3_dynamic_default_color_secondary_text=0x7f050089; + public static final int m3_dynamic_highlighted_text=0x7f05008a; + public static final int m3_dynamic_hint_foreground=0x7f05008b; + public static final int m3_dynamic_primary_text_disable_only=0x7f05008c; + public static final int m3_efab_ripple_color_selector=0x7f05008d; + public static final int m3_elevated_chip_background_color=0x7f05008e; + public static final int m3_fab_efab_background_color_selector=0x7f05008f; + public static final int m3_fab_efab_foreground_color_selector=0x7f050090; + public static final int m3_fab_ripple_color_selector=0x7f050091; + public static final int m3_filled_icon_button_container_color_selector=0x7f050092; + public static final int m3_highlighted_text=0x7f050093; + public static final int m3_hint_foreground=0x7f050094; + public static final int m3_icon_button_icon_color_selector=0x7f050095; + public static final int m3_navigation_bar_item_with_indicator_icon_tint=0x7f050096; + public static final int m3_navigation_bar_item_with_indicator_label_tint=0x7f050097; + public static final int m3_navigation_bar_ripple_color_selector=0x7f050098; + public static final int m3_navigation_item_background_color=0x7f050099; + public static final int m3_navigation_item_icon_tint=0x7f05009a; + public static final int m3_navigation_item_ripple_color=0x7f05009b; + public static final int m3_navigation_item_text_color=0x7f05009c; + public static final int m3_navigation_rail_item_with_indicator_icon_tint=0x7f05009d; + public static final int m3_navigation_rail_item_with_indicator_label_tint=0x7f05009e; + public static final int m3_navigation_rail_ripple_color_selector=0x7f05009f; + public static final int m3_popupmenu_overlay_color=0x7f0500a0; + public static final int m3_primary_text_disable_only=0x7f0500a1; + public static final int m3_radiobutton_button_tint=0x7f0500a2; + public static final int m3_radiobutton_ripple_tint=0x7f0500a3; + public static final int m3_ref_palette_black=0x7f0500a4; + public static final int m3_ref_palette_dynamic_neutral0=0x7f0500a5; + public static final int m3_ref_palette_dynamic_neutral10=0x7f0500a6; + public static final int m3_ref_palette_dynamic_neutral100=0x7f0500a7; + public static final int m3_ref_palette_dynamic_neutral12=0x7f0500a8; + public static final int m3_ref_palette_dynamic_neutral17=0x7f0500a9; + public static final int m3_ref_palette_dynamic_neutral20=0x7f0500aa; + public static final int m3_ref_palette_dynamic_neutral22=0x7f0500ab; + public static final int m3_ref_palette_dynamic_neutral24=0x7f0500ac; + public static final int m3_ref_palette_dynamic_neutral30=0x7f0500ad; + public static final int m3_ref_palette_dynamic_neutral4=0x7f0500ae; + public static final int m3_ref_palette_dynamic_neutral40=0x7f0500af; + public static final int m3_ref_palette_dynamic_neutral50=0x7f0500b0; + public static final int m3_ref_palette_dynamic_neutral6=0x7f0500b1; + public static final int m3_ref_palette_dynamic_neutral60=0x7f0500b2; + public static final int m3_ref_palette_dynamic_neutral70=0x7f0500b3; + public static final int m3_ref_palette_dynamic_neutral80=0x7f0500b4; + public static final int m3_ref_palette_dynamic_neutral87=0x7f0500b5; + public static final int m3_ref_palette_dynamic_neutral90=0x7f0500b6; + public static final int m3_ref_palette_dynamic_neutral92=0x7f0500b7; + public static final int m3_ref_palette_dynamic_neutral94=0x7f0500b8; + public static final int m3_ref_palette_dynamic_neutral95=0x7f0500b9; + public static final int m3_ref_palette_dynamic_neutral96=0x7f0500ba; + public static final int m3_ref_palette_dynamic_neutral98=0x7f0500bb; + public static final int m3_ref_palette_dynamic_neutral99=0x7f0500bc; + public static final int m3_ref_palette_dynamic_neutral_variant0=0x7f0500bd; + public static final int m3_ref_palette_dynamic_neutral_variant10=0x7f0500be; + public static final int m3_ref_palette_dynamic_neutral_variant100=0x7f0500bf; + public static final int m3_ref_palette_dynamic_neutral_variant12=0x7f0500c0; + public static final int m3_ref_palette_dynamic_neutral_variant17=0x7f0500c1; + public static final int m3_ref_palette_dynamic_neutral_variant20=0x7f0500c2; + public static final int m3_ref_palette_dynamic_neutral_variant22=0x7f0500c3; + public static final int m3_ref_palette_dynamic_neutral_variant24=0x7f0500c4; + public static final int m3_ref_palette_dynamic_neutral_variant30=0x7f0500c5; + public static final int m3_ref_palette_dynamic_neutral_variant4=0x7f0500c6; + public static final int m3_ref_palette_dynamic_neutral_variant40=0x7f0500c7; + public static final int m3_ref_palette_dynamic_neutral_variant50=0x7f0500c8; + public static final int m3_ref_palette_dynamic_neutral_variant6=0x7f0500c9; + public static final int m3_ref_palette_dynamic_neutral_variant60=0x7f0500ca; + public static final int m3_ref_palette_dynamic_neutral_variant70=0x7f0500cb; + public static final int m3_ref_palette_dynamic_neutral_variant80=0x7f0500cc; + public static final int m3_ref_palette_dynamic_neutral_variant87=0x7f0500cd; + public static final int m3_ref_palette_dynamic_neutral_variant90=0x7f0500ce; + public static final int m3_ref_palette_dynamic_neutral_variant92=0x7f0500cf; + public static final int m3_ref_palette_dynamic_neutral_variant94=0x7f0500d0; + public static final int m3_ref_palette_dynamic_neutral_variant95=0x7f0500d1; + public static final int m3_ref_palette_dynamic_neutral_variant96=0x7f0500d2; + public static final int m3_ref_palette_dynamic_neutral_variant98=0x7f0500d3; + public static final int m3_ref_palette_dynamic_neutral_variant99=0x7f0500d4; + public static final int m3_ref_palette_dynamic_primary0=0x7f0500d5; + public static final int m3_ref_palette_dynamic_primary10=0x7f0500d6; + public static final int m3_ref_palette_dynamic_primary100=0x7f0500d7; + public static final int m3_ref_palette_dynamic_primary20=0x7f0500d8; + public static final int m3_ref_palette_dynamic_primary30=0x7f0500d9; + public static final int m3_ref_palette_dynamic_primary40=0x7f0500da; + public static final int m3_ref_palette_dynamic_primary50=0x7f0500db; + public static final int m3_ref_palette_dynamic_primary60=0x7f0500dc; + public static final int m3_ref_palette_dynamic_primary70=0x7f0500dd; + public static final int m3_ref_palette_dynamic_primary80=0x7f0500de; + public static final int m3_ref_palette_dynamic_primary90=0x7f0500df; + public static final int m3_ref_palette_dynamic_primary95=0x7f0500e0; + public static final int m3_ref_palette_dynamic_primary99=0x7f0500e1; + public static final int m3_ref_palette_dynamic_secondary0=0x7f0500e2; + public static final int m3_ref_palette_dynamic_secondary10=0x7f0500e3; + public static final int m3_ref_palette_dynamic_secondary100=0x7f0500e4; + public static final int m3_ref_palette_dynamic_secondary20=0x7f0500e5; + public static final int m3_ref_palette_dynamic_secondary30=0x7f0500e6; + public static final int m3_ref_palette_dynamic_secondary40=0x7f0500e7; + public static final int m3_ref_palette_dynamic_secondary50=0x7f0500e8; + public static final int m3_ref_palette_dynamic_secondary60=0x7f0500e9; + public static final int m3_ref_palette_dynamic_secondary70=0x7f0500ea; + public static final int m3_ref_palette_dynamic_secondary80=0x7f0500eb; + public static final int m3_ref_palette_dynamic_secondary90=0x7f0500ec; + public static final int m3_ref_palette_dynamic_secondary95=0x7f0500ed; + public static final int m3_ref_palette_dynamic_secondary99=0x7f0500ee; + public static final int m3_ref_palette_dynamic_tertiary0=0x7f0500ef; + public static final int m3_ref_palette_dynamic_tertiary10=0x7f0500f0; + public static final int m3_ref_palette_dynamic_tertiary100=0x7f0500f1; + public static final int m3_ref_palette_dynamic_tertiary20=0x7f0500f2; + public static final int m3_ref_palette_dynamic_tertiary30=0x7f0500f3; + public static final int m3_ref_palette_dynamic_tertiary40=0x7f0500f4; + public static final int m3_ref_palette_dynamic_tertiary50=0x7f0500f5; + public static final int m3_ref_palette_dynamic_tertiary60=0x7f0500f6; + public static final int m3_ref_palette_dynamic_tertiary70=0x7f0500f7; + public static final int m3_ref_palette_dynamic_tertiary80=0x7f0500f8; + public static final int m3_ref_palette_dynamic_tertiary90=0x7f0500f9; + public static final int m3_ref_palette_dynamic_tertiary95=0x7f0500fa; + public static final int m3_ref_palette_dynamic_tertiary99=0x7f0500fb; + public static final int m3_ref_palette_error0=0x7f0500fc; + public static final int m3_ref_palette_error10=0x7f0500fd; + public static final int m3_ref_palette_error100=0x7f0500fe; + public static final int m3_ref_palette_error20=0x7f0500ff; + public static final int m3_ref_palette_error30=0x7f050100; + public static final int m3_ref_palette_error40=0x7f050101; + public static final int m3_ref_palette_error50=0x7f050102; + public static final int m3_ref_palette_error60=0x7f050103; + public static final int m3_ref_palette_error70=0x7f050104; + public static final int m3_ref_palette_error80=0x7f050105; + public static final int m3_ref_palette_error90=0x7f050106; + public static final int m3_ref_palette_error95=0x7f050107; + public static final int m3_ref_palette_error99=0x7f050108; + public static final int m3_ref_palette_neutral0=0x7f050109; + public static final int m3_ref_palette_neutral10=0x7f05010a; + public static final int m3_ref_palette_neutral100=0x7f05010b; + public static final int m3_ref_palette_neutral12=0x7f05010c; + public static final int m3_ref_palette_neutral17=0x7f05010d; + public static final int m3_ref_palette_neutral20=0x7f05010e; + public static final int m3_ref_palette_neutral22=0x7f05010f; + public static final int m3_ref_palette_neutral24=0x7f050110; + public static final int m3_ref_palette_neutral30=0x7f050111; + public static final int m3_ref_palette_neutral4=0x7f050112; + public static final int m3_ref_palette_neutral40=0x7f050113; + public static final int m3_ref_palette_neutral50=0x7f050114; + public static final int m3_ref_palette_neutral6=0x7f050115; + public static final int m3_ref_palette_neutral60=0x7f050116; + public static final int m3_ref_palette_neutral70=0x7f050117; + public static final int m3_ref_palette_neutral80=0x7f050118; + public static final int m3_ref_palette_neutral87=0x7f050119; + public static final int m3_ref_palette_neutral90=0x7f05011a; + public static final int m3_ref_palette_neutral92=0x7f05011b; + public static final int m3_ref_palette_neutral94=0x7f05011c; + public static final int m3_ref_palette_neutral95=0x7f05011d; + public static final int m3_ref_palette_neutral96=0x7f05011e; + public static final int m3_ref_palette_neutral98=0x7f05011f; + public static final int m3_ref_palette_neutral99=0x7f050120; + public static final int m3_ref_palette_neutral_variant0=0x7f050121; + public static final int m3_ref_palette_neutral_variant10=0x7f050122; + public static final int m3_ref_palette_neutral_variant100=0x7f050123; + public static final int m3_ref_palette_neutral_variant20=0x7f050124; + public static final int m3_ref_palette_neutral_variant30=0x7f050125; + public static final int m3_ref_palette_neutral_variant40=0x7f050126; + public static final int m3_ref_palette_neutral_variant50=0x7f050127; + public static final int m3_ref_palette_neutral_variant60=0x7f050128; + public static final int m3_ref_palette_neutral_variant70=0x7f050129; + public static final int m3_ref_palette_neutral_variant80=0x7f05012a; + public static final int m3_ref_palette_neutral_variant90=0x7f05012b; + public static final int m3_ref_palette_neutral_variant95=0x7f05012c; + public static final int m3_ref_palette_neutral_variant99=0x7f05012d; + public static final int m3_ref_palette_primary0=0x7f05012e; + public static final int m3_ref_palette_primary10=0x7f05012f; + public static final int m3_ref_palette_primary100=0x7f050130; + public static final int m3_ref_palette_primary20=0x7f050131; + public static final int m3_ref_palette_primary30=0x7f050132; + public static final int m3_ref_palette_primary40=0x7f050133; + public static final int m3_ref_palette_primary50=0x7f050134; + public static final int m3_ref_palette_primary60=0x7f050135; + public static final int m3_ref_palette_primary70=0x7f050136; + public static final int m3_ref_palette_primary80=0x7f050137; + public static final int m3_ref_palette_primary90=0x7f050138; + public static final int m3_ref_palette_primary95=0x7f050139; + public static final int m3_ref_palette_primary99=0x7f05013a; + public static final int m3_ref_palette_secondary0=0x7f05013b; + public static final int m3_ref_palette_secondary10=0x7f05013c; + public static final int m3_ref_palette_secondary100=0x7f05013d; + public static final int m3_ref_palette_secondary20=0x7f05013e; + public static final int m3_ref_palette_secondary30=0x7f05013f; + public static final int m3_ref_palette_secondary40=0x7f050140; + public static final int m3_ref_palette_secondary50=0x7f050141; + public static final int m3_ref_palette_secondary60=0x7f050142; + public static final int m3_ref_palette_secondary70=0x7f050143; + public static final int m3_ref_palette_secondary80=0x7f050144; + public static final int m3_ref_palette_secondary90=0x7f050145; + public static final int m3_ref_palette_secondary95=0x7f050146; + public static final int m3_ref_palette_secondary99=0x7f050147; + public static final int m3_ref_palette_tertiary0=0x7f050148; + public static final int m3_ref_palette_tertiary10=0x7f050149; + public static final int m3_ref_palette_tertiary100=0x7f05014a; + public static final int m3_ref_palette_tertiary20=0x7f05014b; + public static final int m3_ref_palette_tertiary30=0x7f05014c; + public static final int m3_ref_palette_tertiary40=0x7f05014d; + public static final int m3_ref_palette_tertiary50=0x7f05014e; + public static final int m3_ref_palette_tertiary60=0x7f05014f; + public static final int m3_ref_palette_tertiary70=0x7f050150; + public static final int m3_ref_palette_tertiary80=0x7f050151; + public static final int m3_ref_palette_tertiary90=0x7f050152; + public static final int m3_ref_palette_tertiary95=0x7f050153; + public static final int m3_ref_palette_tertiary99=0x7f050154; + public static final int m3_ref_palette_white=0x7f050155; + public static final int m3_selection_control_ripple_color_selector=0x7f050156; + public static final int m3_simple_item_ripple_color=0x7f050157; + public static final int m3_slider_active_track_color=0x7f050158; + public static final int m3_slider_active_track_color_legacy=0x7f050159; + public static final int m3_slider_halo_color_legacy=0x7f05015a; + public static final int m3_slider_inactive_track_color=0x7f05015b; + public static final int m3_slider_inactive_track_color_legacy=0x7f05015c; + public static final int m3_slider_thumb_color=0x7f05015d; + public static final int m3_slider_thumb_color_legacy=0x7f05015e; + public static final int m3_switch_thumb_tint=0x7f05015f; + public static final int m3_switch_track_tint=0x7f050160; + public static final int m3_sys_color_dark_background=0x7f050161; + public static final int m3_sys_color_dark_error=0x7f050162; + public static final int m3_sys_color_dark_error_container=0x7f050163; + public static final int m3_sys_color_dark_inverse_on_surface=0x7f050164; + public static final int m3_sys_color_dark_inverse_primary=0x7f050165; + public static final int m3_sys_color_dark_inverse_surface=0x7f050166; + public static final int m3_sys_color_dark_on_background=0x7f050167; + public static final int m3_sys_color_dark_on_error=0x7f050168; + public static final int m3_sys_color_dark_on_error_container=0x7f050169; + public static final int m3_sys_color_dark_on_primary=0x7f05016a; + public static final int m3_sys_color_dark_on_primary_container=0x7f05016b; + public static final int m3_sys_color_dark_on_secondary=0x7f05016c; + public static final int m3_sys_color_dark_on_secondary_container=0x7f05016d; + public static final int m3_sys_color_dark_on_surface=0x7f05016e; + public static final int m3_sys_color_dark_on_surface_variant=0x7f05016f; + public static final int m3_sys_color_dark_on_tertiary=0x7f050170; + public static final int m3_sys_color_dark_on_tertiary_container=0x7f050171; + public static final int m3_sys_color_dark_outline=0x7f050172; + public static final int m3_sys_color_dark_outline_variant=0x7f050173; + public static final int m3_sys_color_dark_primary=0x7f050174; + public static final int m3_sys_color_dark_primary_container=0x7f050175; + public static final int m3_sys_color_dark_secondary=0x7f050176; + public static final int m3_sys_color_dark_secondary_container=0x7f050177; + public static final int m3_sys_color_dark_surface=0x7f050178; + public static final int m3_sys_color_dark_surface_bright=0x7f050179; + public static final int m3_sys_color_dark_surface_container=0x7f05017a; + public static final int m3_sys_color_dark_surface_container_high=0x7f05017b; + public static final int m3_sys_color_dark_surface_container_highest=0x7f05017c; + public static final int m3_sys_color_dark_surface_container_low=0x7f05017d; + public static final int m3_sys_color_dark_surface_container_lowest=0x7f05017e; + public static final int m3_sys_color_dark_surface_dim=0x7f05017f; + public static final int m3_sys_color_dark_surface_variant=0x7f050180; + public static final int m3_sys_color_dark_tertiary=0x7f050181; + public static final int m3_sys_color_dark_tertiary_container=0x7f050182; + public static final int m3_sys_color_dynamic_dark_background=0x7f050183; + public static final int m3_sys_color_dynamic_dark_error=0x7f050184; + public static final int m3_sys_color_dynamic_dark_error_container=0x7f050185; + public static final int m3_sys_color_dynamic_dark_inverse_on_surface=0x7f050186; + public static final int m3_sys_color_dynamic_dark_inverse_primary=0x7f050187; + public static final int m3_sys_color_dynamic_dark_inverse_surface=0x7f050188; + public static final int m3_sys_color_dynamic_dark_on_background=0x7f050189; + public static final int m3_sys_color_dynamic_dark_on_error=0x7f05018a; + public static final int m3_sys_color_dynamic_dark_on_error_container=0x7f05018b; + public static final int m3_sys_color_dynamic_dark_on_primary=0x7f05018c; + public static final int m3_sys_color_dynamic_dark_on_primary_container=0x7f05018d; + public static final int m3_sys_color_dynamic_dark_on_secondary=0x7f05018e; + public static final int m3_sys_color_dynamic_dark_on_secondary_container=0x7f05018f; + public static final int m3_sys_color_dynamic_dark_on_surface=0x7f050190; + public static final int m3_sys_color_dynamic_dark_on_surface_variant=0x7f050191; + public static final int m3_sys_color_dynamic_dark_on_tertiary=0x7f050192; + public static final int m3_sys_color_dynamic_dark_on_tertiary_container=0x7f050193; + public static final int m3_sys_color_dynamic_dark_outline=0x7f050194; + public static final int m3_sys_color_dynamic_dark_outline_variant=0x7f050195; + public static final int m3_sys_color_dynamic_dark_primary=0x7f050196; + public static final int m3_sys_color_dynamic_dark_primary_container=0x7f050197; + public static final int m3_sys_color_dynamic_dark_secondary=0x7f050198; + public static final int m3_sys_color_dynamic_dark_secondary_container=0x7f050199; + public static final int m3_sys_color_dynamic_dark_surface=0x7f05019a; + public static final int m3_sys_color_dynamic_dark_surface_bright=0x7f05019b; + public static final int m3_sys_color_dynamic_dark_surface_container=0x7f05019c; + public static final int m3_sys_color_dynamic_dark_surface_container_high=0x7f05019d; + public static final int m3_sys_color_dynamic_dark_surface_container_highest=0x7f05019e; + public static final int m3_sys_color_dynamic_dark_surface_container_low=0x7f05019f; + public static final int m3_sys_color_dynamic_dark_surface_container_lowest=0x7f0501a0; + public static final int m3_sys_color_dynamic_dark_surface_dim=0x7f0501a1; + public static final int m3_sys_color_dynamic_dark_surface_variant=0x7f0501a2; + public static final int m3_sys_color_dynamic_dark_tertiary=0x7f0501a3; + public static final int m3_sys_color_dynamic_dark_tertiary_container=0x7f0501a4; + public static final int m3_sys_color_dynamic_light_background=0x7f0501a5; + public static final int m3_sys_color_dynamic_light_error=0x7f0501a6; + public static final int m3_sys_color_dynamic_light_error_container=0x7f0501a7; + public static final int m3_sys_color_dynamic_light_inverse_on_surface=0x7f0501a8; + public static final int m3_sys_color_dynamic_light_inverse_primary=0x7f0501a9; + public static final int m3_sys_color_dynamic_light_inverse_surface=0x7f0501aa; + public static final int m3_sys_color_dynamic_light_on_background=0x7f0501ab; + public static final int m3_sys_color_dynamic_light_on_error=0x7f0501ac; + public static final int m3_sys_color_dynamic_light_on_error_container=0x7f0501ad; + public static final int m3_sys_color_dynamic_light_on_primary=0x7f0501ae; + public static final int m3_sys_color_dynamic_light_on_primary_container=0x7f0501af; + public static final int m3_sys_color_dynamic_light_on_secondary=0x7f0501b0; + public static final int m3_sys_color_dynamic_light_on_secondary_container=0x7f0501b1; + public static final int m3_sys_color_dynamic_light_on_surface=0x7f0501b2; + public static final int m3_sys_color_dynamic_light_on_surface_variant=0x7f0501b3; + public static final int m3_sys_color_dynamic_light_on_tertiary=0x7f0501b4; + public static final int m3_sys_color_dynamic_light_on_tertiary_container=0x7f0501b5; + public static final int m3_sys_color_dynamic_light_outline=0x7f0501b6; + public static final int m3_sys_color_dynamic_light_outline_variant=0x7f0501b7; + public static final int m3_sys_color_dynamic_light_primary=0x7f0501b8; + public static final int m3_sys_color_dynamic_light_primary_container=0x7f0501b9; + public static final int m3_sys_color_dynamic_light_secondary=0x7f0501ba; + public static final int m3_sys_color_dynamic_light_secondary_container=0x7f0501bb; + public static final int m3_sys_color_dynamic_light_surface=0x7f0501bc; + public static final int m3_sys_color_dynamic_light_surface_bright=0x7f0501bd; + public static final int m3_sys_color_dynamic_light_surface_container=0x7f0501be; + public static final int m3_sys_color_dynamic_light_surface_container_high=0x7f0501bf; + public static final int m3_sys_color_dynamic_light_surface_container_highest=0x7f0501c0; + public static final int m3_sys_color_dynamic_light_surface_container_low=0x7f0501c1; + public static final int m3_sys_color_dynamic_light_surface_container_lowest=0x7f0501c2; + public static final int m3_sys_color_dynamic_light_surface_dim=0x7f0501c3; + public static final int m3_sys_color_dynamic_light_surface_variant=0x7f0501c4; + public static final int m3_sys_color_dynamic_light_tertiary=0x7f0501c5; + public static final int m3_sys_color_dynamic_light_tertiary_container=0x7f0501c6; + public static final int m3_sys_color_dynamic_on_primary_fixed=0x7f0501c7; + public static final int m3_sys_color_dynamic_on_primary_fixed_variant=0x7f0501c8; + public static final int m3_sys_color_dynamic_on_secondary_fixed=0x7f0501c9; + public static final int m3_sys_color_dynamic_on_secondary_fixed_variant=0x7f0501ca; + public static final int m3_sys_color_dynamic_on_tertiary_fixed=0x7f0501cb; + public static final int m3_sys_color_dynamic_on_tertiary_fixed_variant=0x7f0501cc; + public static final int m3_sys_color_dynamic_primary_fixed=0x7f0501cd; + public static final int m3_sys_color_dynamic_primary_fixed_dim=0x7f0501ce; + public static final int m3_sys_color_dynamic_secondary_fixed=0x7f0501cf; + public static final int m3_sys_color_dynamic_secondary_fixed_dim=0x7f0501d0; + public static final int m3_sys_color_dynamic_tertiary_fixed=0x7f0501d1; + public static final int m3_sys_color_dynamic_tertiary_fixed_dim=0x7f0501d2; + public static final int m3_sys_color_light_background=0x7f0501d3; + public static final int m3_sys_color_light_error=0x7f0501d4; + public static final int m3_sys_color_light_error_container=0x7f0501d5; + public static final int m3_sys_color_light_inverse_on_surface=0x7f0501d6; + public static final int m3_sys_color_light_inverse_primary=0x7f0501d7; + public static final int m3_sys_color_light_inverse_surface=0x7f0501d8; + public static final int m3_sys_color_light_on_background=0x7f0501d9; + public static final int m3_sys_color_light_on_error=0x7f0501da; + public static final int m3_sys_color_light_on_error_container=0x7f0501db; + public static final int m3_sys_color_light_on_primary=0x7f0501dc; + public static final int m3_sys_color_light_on_primary_container=0x7f0501dd; + public static final int m3_sys_color_light_on_secondary=0x7f0501de; + public static final int m3_sys_color_light_on_secondary_container=0x7f0501df; + public static final int m3_sys_color_light_on_surface=0x7f0501e0; + public static final int m3_sys_color_light_on_surface_variant=0x7f0501e1; + public static final int m3_sys_color_light_on_tertiary=0x7f0501e2; + public static final int m3_sys_color_light_on_tertiary_container=0x7f0501e3; + public static final int m3_sys_color_light_outline=0x7f0501e4; + public static final int m3_sys_color_light_outline_variant=0x7f0501e5; + public static final int m3_sys_color_light_primary=0x7f0501e6; + public static final int m3_sys_color_light_primary_container=0x7f0501e7; + public static final int m3_sys_color_light_secondary=0x7f0501e8; + public static final int m3_sys_color_light_secondary_container=0x7f0501e9; + public static final int m3_sys_color_light_surface=0x7f0501ea; + public static final int m3_sys_color_light_surface_bright=0x7f0501eb; + public static final int m3_sys_color_light_surface_container=0x7f0501ec; + public static final int m3_sys_color_light_surface_container_high=0x7f0501ed; + public static final int m3_sys_color_light_surface_container_highest=0x7f0501ee; + public static final int m3_sys_color_light_surface_container_low=0x7f0501ef; + public static final int m3_sys_color_light_surface_container_lowest=0x7f0501f0; + public static final int m3_sys_color_light_surface_dim=0x7f0501f1; + public static final int m3_sys_color_light_surface_variant=0x7f0501f2; + public static final int m3_sys_color_light_tertiary=0x7f0501f3; + public static final int m3_sys_color_light_tertiary_container=0x7f0501f4; + public static final int m3_sys_color_on_primary_fixed=0x7f0501f5; + public static final int m3_sys_color_on_primary_fixed_variant=0x7f0501f6; + public static final int m3_sys_color_on_secondary_fixed=0x7f0501f7; + public static final int m3_sys_color_on_secondary_fixed_variant=0x7f0501f8; + public static final int m3_sys_color_on_tertiary_fixed=0x7f0501f9; + public static final int m3_sys_color_on_tertiary_fixed_variant=0x7f0501fa; + public static final int m3_sys_color_primary_fixed=0x7f0501fb; + public static final int m3_sys_color_primary_fixed_dim=0x7f0501fc; + public static final int m3_sys_color_secondary_fixed=0x7f0501fd; + public static final int m3_sys_color_secondary_fixed_dim=0x7f0501fe; + public static final int m3_sys_color_tertiary_fixed=0x7f0501ff; + public static final int m3_sys_color_tertiary_fixed_dim=0x7f050200; + public static final int m3_tabs_icon_color=0x7f050201; + public static final int m3_tabs_icon_color_secondary=0x7f050202; + public static final int m3_tabs_ripple_color=0x7f050203; + public static final int m3_tabs_ripple_color_secondary=0x7f050204; + public static final int m3_tabs_text_color=0x7f050205; + public static final int m3_tabs_text_color_secondary=0x7f050206; + public static final int m3_text_button_background_color_selector=0x7f050207; + public static final int m3_text_button_foreground_color_selector=0x7f050208; + public static final int m3_text_button_ripple_color_selector=0x7f050209; + public static final int m3_textfield_filled_background_color=0x7f05020a; + public static final int m3_textfield_indicator_text_color=0x7f05020b; + public static final int m3_textfield_input_text_color=0x7f05020c; + public static final int m3_textfield_label_color=0x7f05020d; + public static final int m3_textfield_stroke_color=0x7f05020e; + public static final int m3_timepicker_button_background_color=0x7f05020f; + public static final int m3_timepicker_button_ripple_color=0x7f050210; + public static final int m3_timepicker_button_text_color=0x7f050211; + public static final int m3_timepicker_clock_text_color=0x7f050212; + public static final int m3_timepicker_display_background_color=0x7f050213; + public static final int m3_timepicker_display_ripple_color=0x7f050214; + public static final int m3_timepicker_display_text_color=0x7f050215; + public static final int m3_timepicker_secondary_text_button_ripple_color=0x7f050216; + public static final int m3_timepicker_secondary_text_button_text_color=0x7f050217; + public static final int m3_timepicker_time_input_stroke_color=0x7f050218; + public static final int m3_tonal_button_ripple_color_selector=0x7f050219; + public static final int material_blue_grey_800=0x7f05021a; + public static final int material_blue_grey_900=0x7f05021b; + public static final int material_blue_grey_950=0x7f05021c; + public static final int material_cursor_color=0x7f05021d; + public static final int material_deep_teal_200=0x7f05021e; + public static final int material_deep_teal_500=0x7f05021f; + public static final int material_divider_color=0x7f050220; + public static final int material_dynamic_color_dark_error=0x7f050221; + public static final int material_dynamic_color_dark_error_container=0x7f050222; + public static final int material_dynamic_color_dark_on_error=0x7f050223; + public static final int material_dynamic_color_dark_on_error_container=0x7f050224; + public static final int material_dynamic_color_light_error=0x7f050225; + public static final int material_dynamic_color_light_error_container=0x7f050226; + public static final int material_dynamic_color_light_on_error=0x7f050227; + public static final int material_dynamic_color_light_on_error_container=0x7f050228; + public static final int material_dynamic_neutral0=0x7f050229; + public static final int material_dynamic_neutral10=0x7f05022a; + public static final int material_dynamic_neutral100=0x7f05022b; + public static final int material_dynamic_neutral20=0x7f05022c; + public static final int material_dynamic_neutral30=0x7f05022d; + public static final int material_dynamic_neutral40=0x7f05022e; + public static final int material_dynamic_neutral50=0x7f05022f; + public static final int material_dynamic_neutral60=0x7f050230; + public static final int material_dynamic_neutral70=0x7f050231; + public static final int material_dynamic_neutral80=0x7f050232; + public static final int material_dynamic_neutral90=0x7f050233; + public static final int material_dynamic_neutral95=0x7f050234; + public static final int material_dynamic_neutral99=0x7f050235; + public static final int material_dynamic_neutral_variant0=0x7f050236; + public static final int material_dynamic_neutral_variant10=0x7f050237; + public static final int material_dynamic_neutral_variant100=0x7f050238; + public static final int material_dynamic_neutral_variant20=0x7f050239; + public static final int material_dynamic_neutral_variant30=0x7f05023a; + public static final int material_dynamic_neutral_variant40=0x7f05023b; + public static final int material_dynamic_neutral_variant50=0x7f05023c; + public static final int material_dynamic_neutral_variant60=0x7f05023d; + public static final int material_dynamic_neutral_variant70=0x7f05023e; + public static final int material_dynamic_neutral_variant80=0x7f05023f; + public static final int material_dynamic_neutral_variant90=0x7f050240; + public static final int material_dynamic_neutral_variant95=0x7f050241; + public static final int material_dynamic_neutral_variant99=0x7f050242; + public static final int material_dynamic_primary0=0x7f050243; + public static final int material_dynamic_primary10=0x7f050244; + public static final int material_dynamic_primary100=0x7f050245; + public static final int material_dynamic_primary20=0x7f050246; + public static final int material_dynamic_primary30=0x7f050247; + public static final int material_dynamic_primary40=0x7f050248; + public static final int material_dynamic_primary50=0x7f050249; + public static final int material_dynamic_primary60=0x7f05024a; + public static final int material_dynamic_primary70=0x7f05024b; + public static final int material_dynamic_primary80=0x7f05024c; + public static final int material_dynamic_primary90=0x7f05024d; + public static final int material_dynamic_primary95=0x7f05024e; + public static final int material_dynamic_primary99=0x7f05024f; + public static final int material_dynamic_secondary0=0x7f050250; + public static final int material_dynamic_secondary10=0x7f050251; + public static final int material_dynamic_secondary100=0x7f050252; + public static final int material_dynamic_secondary20=0x7f050253; + public static final int material_dynamic_secondary30=0x7f050254; + public static final int material_dynamic_secondary40=0x7f050255; + public static final int material_dynamic_secondary50=0x7f050256; + public static final int material_dynamic_secondary60=0x7f050257; + public static final int material_dynamic_secondary70=0x7f050258; + public static final int material_dynamic_secondary80=0x7f050259; + public static final int material_dynamic_secondary90=0x7f05025a; + public static final int material_dynamic_secondary95=0x7f05025b; + public static final int material_dynamic_secondary99=0x7f05025c; + public static final int material_dynamic_tertiary0=0x7f05025d; + public static final int material_dynamic_tertiary10=0x7f05025e; + public static final int material_dynamic_tertiary100=0x7f05025f; + public static final int material_dynamic_tertiary20=0x7f050260; + public static final int material_dynamic_tertiary30=0x7f050261; + public static final int material_dynamic_tertiary40=0x7f050262; + public static final int material_dynamic_tertiary50=0x7f050263; + public static final int material_dynamic_tertiary60=0x7f050264; + public static final int material_dynamic_tertiary70=0x7f050265; + public static final int material_dynamic_tertiary80=0x7f050266; + public static final int material_dynamic_tertiary90=0x7f050267; + public static final int material_dynamic_tertiary95=0x7f050268; + public static final int material_dynamic_tertiary99=0x7f050269; + public static final int material_grey_100=0x7f05026a; + public static final int material_grey_300=0x7f05026b; + public static final int material_grey_50=0x7f05026c; + public static final int material_grey_600=0x7f05026d; + public static final int material_grey_800=0x7f05026e; + public static final int material_grey_850=0x7f05026f; + public static final int material_grey_900=0x7f050270; + public static final int material_harmonized_color_error=0x7f050271; + public static final int material_harmonized_color_error_container=0x7f050272; + public static final int material_harmonized_color_on_error=0x7f050273; + public static final int material_harmonized_color_on_error_container=0x7f050274; + public static final int material_on_background_disabled=0x7f050275; + public static final int material_on_background_emphasis_high_type=0x7f050276; + public static final int material_on_background_emphasis_medium=0x7f050277; + public static final int material_on_primary_disabled=0x7f050278; + public static final int material_on_primary_emphasis_high_type=0x7f050279; + public static final int material_on_primary_emphasis_medium=0x7f05027a; + public static final int material_on_surface_disabled=0x7f05027b; + public static final int material_on_surface_emphasis_high_type=0x7f05027c; + public static final int material_on_surface_emphasis_medium=0x7f05027d; + public static final int material_on_surface_stroke=0x7f05027e; + public static final int material_personalized__highlighted_text=0x7f05027f; + public static final int material_personalized__highlighted_text_inverse=0x7f050280; + public static final int material_personalized_color_background=0x7f050281; + public static final int material_personalized_color_control_activated=0x7f050282; + public static final int material_personalized_color_control_highlight=0x7f050283; + public static final int material_personalized_color_control_normal=0x7f050284; + public static final int material_personalized_color_error=0x7f050285; + public static final int material_personalized_color_error_container=0x7f050286; + public static final int material_personalized_color_on_background=0x7f050287; + public static final int material_personalized_color_on_error=0x7f050288; + public static final int material_personalized_color_on_error_container=0x7f050289; + public static final int material_personalized_color_on_primary=0x7f05028a; + public static final int material_personalized_color_on_primary_container=0x7f05028b; + public static final int material_personalized_color_on_secondary=0x7f05028c; + public static final int material_personalized_color_on_secondary_container=0x7f05028d; + public static final int material_personalized_color_on_surface=0x7f05028e; + public static final int material_personalized_color_on_surface_inverse=0x7f05028f; + public static final int material_personalized_color_on_surface_variant=0x7f050290; + public static final int material_personalized_color_on_tertiary=0x7f050291; + public static final int material_personalized_color_on_tertiary_container=0x7f050292; + public static final int material_personalized_color_outline=0x7f050293; + public static final int material_personalized_color_outline_variant=0x7f050294; + public static final int material_personalized_color_primary=0x7f050295; + public static final int material_personalized_color_primary_container=0x7f050296; + public static final int material_personalized_color_primary_inverse=0x7f050297; + public static final int material_personalized_color_primary_text=0x7f050298; + public static final int material_personalized_color_primary_text_inverse=0x7f050299; + public static final int material_personalized_color_secondary=0x7f05029a; + public static final int material_personalized_color_secondary_container=0x7f05029b; + public static final int material_personalized_color_secondary_text=0x7f05029c; + public static final int material_personalized_color_secondary_text_inverse=0x7f05029d; + public static final int material_personalized_color_surface=0x7f05029e; + public static final int material_personalized_color_surface_bright=0x7f05029f; + public static final int material_personalized_color_surface_container=0x7f0502a0; + public static final int material_personalized_color_surface_container_high=0x7f0502a1; + public static final int material_personalized_color_surface_container_highest=0x7f0502a2; + public static final int material_personalized_color_surface_container_low=0x7f0502a3; + public static final int material_personalized_color_surface_container_lowest=0x7f0502a4; + public static final int material_personalized_color_surface_dim=0x7f0502a5; + public static final int material_personalized_color_surface_inverse=0x7f0502a6; + public static final int material_personalized_color_surface_variant=0x7f0502a7; + public static final int material_personalized_color_tertiary=0x7f0502a8; + public static final int material_personalized_color_tertiary_container=0x7f0502a9; + public static final int material_personalized_color_text_hint_foreground_inverse=0x7f0502aa; + public static final int material_personalized_color_text_primary_inverse=0x7f0502ab; + public static final int material_personalized_color_text_primary_inverse_disable_only=0x7f0502ac; + public static final int material_personalized_color_text_secondary_and_tertiary_inverse=0x7f0502ad; + public static final int material_personalized_color_text_secondary_and_tertiary_inverse_disabled=0x7f0502ae; + public static final int material_personalized_hint_foreground=0x7f0502af; + public static final int material_personalized_hint_foreground_inverse=0x7f0502b0; + public static final int material_personalized_primary_inverse_text_disable_only=0x7f0502b1; + public static final int material_personalized_primary_text_disable_only=0x7f0502b2; + public static final int material_slider_active_tick_marks_color=0x7f0502b3; + public static final int material_slider_active_track_color=0x7f0502b4; + public static final int material_slider_halo_color=0x7f0502b5; + public static final int material_slider_inactive_tick_marks_color=0x7f0502b6; + public static final int material_slider_inactive_track_color=0x7f0502b7; + public static final int material_slider_thumb_color=0x7f0502b8; + public static final int material_timepicker_button_background=0x7f0502b9; + public static final int material_timepicker_button_stroke=0x7f0502ba; + public static final int material_timepicker_clock_text_color=0x7f0502bb; + public static final int material_timepicker_clockface=0x7f0502bc; + public static final int material_timepicker_modebutton_tint=0x7f0502bd; + public static final int maui_splash_color=0x7f0502be; + public static final int mtrl_btn_bg_color_selector=0x7f0502bf; + public static final int mtrl_btn_ripple_color=0x7f0502c0; + public static final int mtrl_btn_stroke_color_selector=0x7f0502c1; + public static final int mtrl_btn_text_btn_bg_color_selector=0x7f0502c2; + public static final int mtrl_btn_text_btn_ripple_color=0x7f0502c3; + public static final int mtrl_btn_text_color_disabled=0x7f0502c4; + public static final int mtrl_btn_text_color_selector=0x7f0502c5; + public static final int mtrl_btn_transparent_bg_color=0x7f0502c6; + public static final int mtrl_calendar_item_stroke_color=0x7f0502c7; + public static final int mtrl_calendar_selected_range=0x7f0502c8; + public static final int mtrl_card_view_foreground=0x7f0502c9; + public static final int mtrl_card_view_ripple=0x7f0502ca; + public static final int mtrl_chip_background_color=0x7f0502cb; + public static final int mtrl_chip_close_icon_tint=0x7f0502cc; + public static final int mtrl_chip_surface_color=0x7f0502cd; + public static final int mtrl_chip_text_color=0x7f0502ce; + public static final int mtrl_choice_chip_background_color=0x7f0502cf; + public static final int mtrl_choice_chip_ripple_color=0x7f0502d0; + public static final int mtrl_choice_chip_text_color=0x7f0502d1; + public static final int mtrl_error=0x7f0502d2; + public static final int mtrl_fab_bg_color_selector=0x7f0502d3; + public static final int mtrl_fab_icon_text_color_selector=0x7f0502d4; + public static final int mtrl_fab_ripple_color=0x7f0502d5; + public static final int mtrl_filled_background_color=0x7f0502d6; + public static final int mtrl_filled_icon_tint=0x7f0502d7; + public static final int mtrl_filled_stroke_color=0x7f0502d8; + public static final int mtrl_indicator_text_color=0x7f0502d9; + public static final int mtrl_navigation_bar_colored_item_tint=0x7f0502da; + public static final int mtrl_navigation_bar_colored_ripple_color=0x7f0502db; + public static final int mtrl_navigation_bar_item_tint=0x7f0502dc; + public static final int mtrl_navigation_bar_ripple_color=0x7f0502dd; + public static final int mtrl_navigation_item_background_color=0x7f0502de; + public static final int mtrl_navigation_item_icon_tint=0x7f0502df; + public static final int mtrl_navigation_item_text_color=0x7f0502e0; + public static final int mtrl_on_primary_text_btn_text_color_selector=0x7f0502e1; + public static final int mtrl_on_surface_ripple_color=0x7f0502e2; + public static final int mtrl_outlined_icon_tint=0x7f0502e3; + public static final int mtrl_outlined_stroke_color=0x7f0502e4; + public static final int mtrl_popupmenu_overlay_color=0x7f0502e5; + public static final int mtrl_scrim_color=0x7f0502e6; + public static final int mtrl_switch_thumb_icon_tint=0x7f0502e7; + public static final int mtrl_switch_thumb_tint=0x7f0502e8; + public static final int mtrl_switch_track_decoration_tint=0x7f0502e9; + public static final int mtrl_switch_track_tint=0x7f0502ea; + public static final int mtrl_tabs_colored_ripple_color=0x7f0502eb; + public static final int mtrl_tabs_icon_color_selector=0x7f0502ec; + public static final int mtrl_tabs_icon_color_selector_colored=0x7f0502ed; + public static final int mtrl_tabs_legacy_text_color_selector=0x7f0502ee; + public static final int mtrl_tabs_ripple_color=0x7f0502ef; + public static final int mtrl_text_btn_text_color_selector=0x7f0502f0; + public static final int mtrl_textinput_default_box_stroke_color=0x7f0502f1; + public static final int mtrl_textinput_disabled_color=0x7f0502f2; + public static final int mtrl_textinput_filled_box_default_background_color=0x7f0502f3; + public static final int mtrl_textinput_focused_box_stroke_color=0x7f0502f4; + public static final int mtrl_textinput_hovered_box_stroke_color=0x7f0502f5; + public static final int notification_action_color_filter=0x7f0502f6; + public static final int notification_icon_bg_color=0x7f0502f7; + public static final int primary_dark_material_dark=0x7f0502f8; + public static final int primary_dark_material_light=0x7f0502f9; + public static final int primary_material_dark=0x7f0502fa; + public static final int primary_material_light=0x7f0502fb; + public static final int primary_text_default_material_dark=0x7f0502fc; + public static final int primary_text_default_material_light=0x7f0502fd; + public static final int primary_text_disabled_material_dark=0x7f0502fe; + public static final int primary_text_disabled_material_light=0x7f0502ff; + public static final int ripple_material_dark=0x7f050300; + public static final int ripple_material_light=0x7f050301; + public static final int secondary_text_default_material_dark=0x7f050302; + public static final int secondary_text_default_material_light=0x7f050303; + public static final int secondary_text_disabled_material_dark=0x7f050304; + public static final int secondary_text_disabled_material_light=0x7f050305; + public static final int switch_thumb_disabled_material_dark=0x7f050306; + public static final int switch_thumb_disabled_material_light=0x7f050307; + public static final int switch_thumb_material_dark=0x7f050308; + public static final int switch_thumb_material_light=0x7f050309; + public static final int switch_thumb_normal_material_dark=0x7f05030a; + public static final int switch_thumb_normal_material_light=0x7f05030b; + public static final int tooltip_background_dark=0x7f05030c; + public static final int tooltip_background_light=0x7f05030d; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f060000; + public static final int abc_action_bar_content_inset_with_nav=0x7f060001; + public static final int abc_action_bar_default_height_material=0x7f060002; + public static final int abc_action_bar_default_padding_end_material=0x7f060003; + public static final int abc_action_bar_default_padding_start_material=0x7f060004; + public static final int abc_action_bar_elevation_material=0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; + public static final int abc_action_bar_stacked_max_height=0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; + public static final int abc_action_button_min_height_material=0x7f06000d; + public static final int abc_action_button_min_width_material=0x7f06000e; + public static final int abc_action_button_min_width_overflow_material=0x7f06000f; + public static final int abc_alert_dialog_button_bar_height=0x7f060010; + public static final int abc_alert_dialog_button_dimen=0x7f060011; + public static final int abc_button_inset_horizontal_material=0x7f060012; + public static final int abc_button_inset_vertical_material=0x7f060013; + public static final int abc_button_padding_horizontal_material=0x7f060014; + public static final int abc_button_padding_vertical_material=0x7f060015; + public static final int abc_cascading_menus_min_smallest_width=0x7f060016; + public static final int abc_config_prefDialogWidth=0x7f060017; + public static final int abc_control_corner_material=0x7f060018; + public static final int abc_control_inset_material=0x7f060019; + public static final int abc_control_padding_material=0x7f06001a; + public static final int abc_dialog_corner_radius_material=0x7f06001b; + public static final int abc_dialog_fixed_height_major=0x7f06001c; + public static final int abc_dialog_fixed_height_minor=0x7f06001d; + public static final int abc_dialog_fixed_width_major=0x7f06001e; + public static final int abc_dialog_fixed_width_minor=0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; + public static final int abc_dialog_list_padding_top_no_title=0x7f060021; + public static final int abc_dialog_min_width_major=0x7f060022; + public static final int abc_dialog_min_width_minor=0x7f060023; + public static final int abc_dialog_padding_material=0x7f060024; + public static final int abc_dialog_padding_top_material=0x7f060025; + public static final int abc_dialog_title_divider_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_height_large_material=0x7f060030; + public static final int abc_list_item_height_material=0x7f060031; + public static final int abc_list_item_height_small_material=0x7f060032; + public static final int abc_list_item_padding_horizontal_material=0x7f060033; + public static final int abc_panel_menu_list_width=0x7f060034; + public static final int abc_progress_bar_height_material=0x7f060035; + public static final int abc_search_view_preferred_height=0x7f060036; + public static final int abc_search_view_preferred_width=0x7f060037; + public static final int abc_seekbar_track_background_height_material=0x7f060038; + public static final int abc_seekbar_track_progress_height_material=0x7f060039; + public static final int abc_select_dialog_padding_start_material=0x7f06003a; + public static final int abc_star_big=0x7f06003b; + public static final int abc_star_medium=0x7f06003c; + public static final int abc_star_small=0x7f06003d; + public static final int abc_switch_padding=0x7f06003e; + public static final int abc_text_size_body_1_material=0x7f06003f; + public static final int abc_text_size_body_2_material=0x7f060040; + public static final int abc_text_size_button_material=0x7f060041; + public static final int abc_text_size_caption_material=0x7f060042; + public static final int abc_text_size_display_1_material=0x7f060043; + public static final int abc_text_size_display_2_material=0x7f060044; + public static final int abc_text_size_display_3_material=0x7f060045; + public static final int abc_text_size_display_4_material=0x7f060046; + public static final int abc_text_size_headline_material=0x7f060047; + public static final int abc_text_size_large_material=0x7f060048; + public static final int abc_text_size_medium_material=0x7f060049; + public static final int abc_text_size_menu_header_material=0x7f06004a; + public static final int abc_text_size_menu_material=0x7f06004b; + public static final int abc_text_size_small_material=0x7f06004c; + public static final int abc_text_size_subhead_material=0x7f06004d; + public static final int abc_text_size_subtitle_material_toolbar=0x7f06004e; + public static final int abc_text_size_title_material=0x7f06004f; + public static final int abc_text_size_title_material_toolbar=0x7f060050; + public static final int appcompat_dialog_background_inset=0x7f060051; + public static final int browser_actions_context_menu_max_width=0x7f060052; + public static final int browser_actions_context_menu_min_padding=0x7f060053; + public static final int cardview_compat_inset_shadow=0x7f060054; + public static final int cardview_default_elevation=0x7f060055; + public static final int cardview_default_radius=0x7f060056; + public static final int clock_face_margin_start=0x7f060057; + public static final int compat_button_inset_horizontal_material=0x7f060058; + public static final int compat_button_inset_vertical_material=0x7f060059; + public static final int compat_button_padding_horizontal_material=0x7f06005a; + public static final int compat_button_padding_vertical_material=0x7f06005b; + public static final int compat_control_corner_material=0x7f06005c; + public static final int compat_notification_large_icon_max_height=0x7f06005d; + public static final int compat_notification_large_icon_max_width=0x7f06005e; + public static final int def_drawer_elevation=0x7f06005f; + public static final int design_appbar_elevation=0x7f060060; + public static final int design_bottom_navigation_active_item_max_width=0x7f060061; + public static final int design_bottom_navigation_active_item_min_width=0x7f060062; + public static final int design_bottom_navigation_active_text_size=0x7f060063; + public static final int design_bottom_navigation_elevation=0x7f060064; + public static final int design_bottom_navigation_height=0x7f060065; + public static final int design_bottom_navigation_icon_size=0x7f060066; + public static final int design_bottom_navigation_item_max_width=0x7f060067; + public static final int design_bottom_navigation_item_min_width=0x7f060068; + public static final int design_bottom_navigation_label_padding=0x7f060069; + public static final int design_bottom_navigation_margin=0x7f06006a; + public static final int design_bottom_navigation_shadow_height=0x7f06006b; + public static final int design_bottom_navigation_text_size=0x7f06006c; + public static final int design_bottom_sheet_elevation=0x7f06006d; + public static final int design_bottom_sheet_modal_elevation=0x7f06006e; + public static final int design_bottom_sheet_peek_height_min=0x7f06006f; + public static final int design_fab_border_width=0x7f060070; + public static final int design_fab_elevation=0x7f060071; + public static final int design_fab_image_size=0x7f060072; + public static final int design_fab_size_mini=0x7f060073; + public static final int design_fab_size_normal=0x7f060074; + public static final int design_fab_translation_z_hovered_focused=0x7f060075; + public static final int design_fab_translation_z_pressed=0x7f060076; + public static final int design_navigation_elevation=0x7f060077; + public static final int design_navigation_icon_padding=0x7f060078; + public static final int design_navigation_icon_size=0x7f060079; + public static final int design_navigation_item_horizontal_padding=0x7f06007a; + public static final int design_navigation_item_icon_padding=0x7f06007b; + public static final int design_navigation_item_vertical_padding=0x7f06007c; + public static final int design_navigation_max_width=0x7f06007d; + public static final int design_navigation_padding_bottom=0x7f06007e; + public static final int design_navigation_separator_vertical_padding=0x7f06007f; + public static final int design_snackbar_action_inline_max_width=0x7f060080; + public static final int design_snackbar_action_text_color_alpha=0x7f060081; + public static final int design_snackbar_background_corner_radius=0x7f060082; + public static final int design_snackbar_elevation=0x7f060083; + public static final int design_snackbar_extra_spacing_horizontal=0x7f060084; + public static final int design_snackbar_max_width=0x7f060085; + public static final int design_snackbar_min_width=0x7f060086; + public static final int design_snackbar_padding_horizontal=0x7f060087; + public static final int design_snackbar_padding_vertical=0x7f060088; + public static final int design_snackbar_padding_vertical_2lines=0x7f060089; + public static final int design_snackbar_text_size=0x7f06008a; + public static final int design_tab_max_width=0x7f06008b; + public static final int design_tab_scrollable_min_width=0x7f06008c; + public static final int design_tab_text_size=0x7f06008d; + public static final int design_tab_text_size_2line=0x7f06008e; + public static final int design_textinput_caption_translate_y=0x7f06008f; + public static final int disabled_alpha_material_dark=0x7f060090; + public static final int disabled_alpha_material_light=0x7f060091; + public static final int fastscroll_default_thickness=0x7f060092; + public static final int fastscroll_margin=0x7f060093; + public static final int fastscroll_minimum_range=0x7f060094; + public static final int highlight_alpha_material_colored=0x7f060095; + public static final int highlight_alpha_material_dark=0x7f060096; + public static final int highlight_alpha_material_light=0x7f060097; + public static final int hint_alpha_material_dark=0x7f060098; + public static final int hint_alpha_material_light=0x7f060099; + public static final int hint_pressed_alpha_material_dark=0x7f06009a; + public static final int hint_pressed_alpha_material_light=0x7f06009b; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06009c; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06009d; + public static final int item_touch_helper_swipe_escape_velocity=0x7f06009e; + public static final int m3_alert_dialog_action_bottom_padding=0x7f06009f; + public static final int m3_alert_dialog_action_top_padding=0x7f0600a0; + public static final int m3_alert_dialog_corner_size=0x7f0600a1; + public static final int m3_alert_dialog_elevation=0x7f0600a2; + public static final int m3_alert_dialog_icon_margin=0x7f0600a3; + public static final int m3_alert_dialog_icon_size=0x7f0600a4; + public static final int m3_alert_dialog_title_bottom_margin=0x7f0600a5; + public static final int m3_appbar_expanded_title_margin_bottom=0x7f0600a6; + public static final int m3_appbar_expanded_title_margin_horizontal=0x7f0600a7; + public static final int m3_appbar_scrim_height_trigger=0x7f0600a8; + public static final int m3_appbar_scrim_height_trigger_large=0x7f0600a9; + public static final int m3_appbar_scrim_height_trigger_medium=0x7f0600aa; + public static final int m3_appbar_size_compact=0x7f0600ab; + public static final int m3_appbar_size_large=0x7f0600ac; + public static final int m3_appbar_size_medium=0x7f0600ad; + public static final int m3_back_progress_bottom_container_max_scale_x_distance=0x7f0600ae; + public static final int m3_back_progress_bottom_container_max_scale_y_distance=0x7f0600af; + public static final int m3_back_progress_main_container_max_translation_y=0x7f0600b0; + public static final int m3_back_progress_main_container_min_edge_gap=0x7f0600b1; + public static final int m3_back_progress_side_container_max_scale_x_distance_grow=0x7f0600b2; + public static final int m3_back_progress_side_container_max_scale_x_distance_shrink=0x7f0600b3; + public static final int m3_back_progress_side_container_max_scale_y_distance=0x7f0600b4; + public static final int m3_badge_horizontal_offset=0x7f0600b5; + public static final int m3_badge_offset=0x7f0600b6; + public static final int m3_badge_size=0x7f0600b7; + public static final int m3_badge_vertical_offset=0x7f0600b8; + public static final int m3_badge_with_text_horizontal_offset=0x7f0600b9; + public static final int m3_badge_with_text_offset=0x7f0600ba; + public static final int m3_badge_with_text_size=0x7f0600bb; + public static final int m3_badge_with_text_vertical_offset=0x7f0600bc; + public static final int m3_badge_with_text_vertical_padding=0x7f0600bd; + public static final int m3_bottom_nav_item_active_indicator_height=0x7f0600be; + public static final int m3_bottom_nav_item_active_indicator_margin_horizontal=0x7f0600bf; + public static final int m3_bottom_nav_item_active_indicator_width=0x7f0600c0; + public static final int m3_bottom_nav_item_padding_bottom=0x7f0600c1; + public static final int m3_bottom_nav_item_padding_top=0x7f0600c2; + public static final int m3_bottom_nav_min_height=0x7f0600c3; + public static final int m3_bottom_sheet_drag_handle_bottom_padding=0x7f0600c4; + public static final int m3_bottom_sheet_elevation=0x7f0600c5; + public static final int m3_bottom_sheet_modal_elevation=0x7f0600c6; + public static final int m3_bottomappbar_fab_cradle_margin=0x7f0600c7; + public static final int m3_bottomappbar_fab_cradle_rounded_corner_radius=0x7f0600c8; + public static final int m3_bottomappbar_fab_cradle_vertical_offset=0x7f0600c9; + public static final int m3_bottomappbar_fab_end_margin=0x7f0600ca; + public static final int m3_bottomappbar_height=0x7f0600cb; + public static final int m3_bottomappbar_horizontal_padding=0x7f0600cc; + public static final int m3_btn_dialog_btn_min_width=0x7f0600cd; + public static final int m3_btn_dialog_btn_spacing=0x7f0600ce; + public static final int m3_btn_disabled_elevation=0x7f0600cf; + public static final int m3_btn_disabled_translation_z=0x7f0600d0; + public static final int m3_btn_elevated_btn_elevation=0x7f0600d1; + public static final int m3_btn_elevation=0x7f0600d2; + public static final int m3_btn_icon_btn_padding_left=0x7f0600d3; + public static final int m3_btn_icon_btn_padding_right=0x7f0600d4; + public static final int m3_btn_icon_only_default_padding=0x7f0600d5; + public static final int m3_btn_icon_only_default_size=0x7f0600d6; + public static final int m3_btn_icon_only_icon_padding=0x7f0600d7; + public static final int m3_btn_icon_only_min_width=0x7f0600d8; + public static final int m3_btn_inset=0x7f0600d9; + public static final int m3_btn_max_width=0x7f0600da; + public static final int m3_btn_padding_bottom=0x7f0600db; + public static final int m3_btn_padding_left=0x7f0600dc; + public static final int m3_btn_padding_right=0x7f0600dd; + public static final int m3_btn_padding_top=0x7f0600de; + public static final int m3_btn_stroke_size=0x7f0600df; + public static final int m3_btn_text_btn_icon_padding_left=0x7f0600e0; + public static final int m3_btn_text_btn_icon_padding_right=0x7f0600e1; + public static final int m3_btn_text_btn_padding_left=0x7f0600e2; + public static final int m3_btn_text_btn_padding_right=0x7f0600e3; + public static final int m3_btn_translation_z_base=0x7f0600e4; + public static final int m3_btn_translation_z_hovered=0x7f0600e5; + public static final int m3_card_disabled_z=0x7f0600e6; + public static final int m3_card_dragged_z=0x7f0600e7; + public static final int m3_card_elevated_disabled_z=0x7f0600e8; + public static final int m3_card_elevated_dragged_z=0x7f0600e9; + public static final int m3_card_elevated_elevation=0x7f0600ea; + public static final int m3_card_elevated_hovered_z=0x7f0600eb; + public static final int m3_card_elevation=0x7f0600ec; + public static final int m3_card_hovered_z=0x7f0600ed; + public static final int m3_card_stroke_width=0x7f0600ee; + public static final int m3_carousel_debug_keyline_width=0x7f0600ef; + public static final int m3_carousel_extra_small_item_size=0x7f0600f0; + public static final int m3_carousel_gone_size=0x7f0600f1; + public static final int m3_carousel_small_item_default_corner_size=0x7f0600f2; + public static final int m3_carousel_small_item_size_max=0x7f0600f3; + public static final int m3_carousel_small_item_size_min=0x7f0600f4; + public static final int m3_chip_checked_hovered_translation_z=0x7f0600f5; + public static final int m3_chip_corner_size=0x7f0600f6; + public static final int m3_chip_disabled_translation_z=0x7f0600f7; + public static final int m3_chip_dragged_translation_z=0x7f0600f8; + public static final int m3_chip_elevated_elevation=0x7f0600f9; + public static final int m3_chip_hovered_translation_z=0x7f0600fa; + public static final int m3_chip_icon_size=0x7f0600fb; + public static final int m3_comp_assist_chip_container_height=0x7f0600fc; + public static final int m3_comp_assist_chip_elevated_container_elevation=0x7f0600fd; + public static final int m3_comp_assist_chip_flat_container_elevation=0x7f0600fe; + public static final int m3_comp_assist_chip_flat_outline_width=0x7f0600ff; + public static final int m3_comp_assist_chip_with_icon_icon_size=0x7f060100; + public static final int m3_comp_badge_large_size=0x7f060101; + public static final int m3_comp_badge_size=0x7f060102; + public static final int m3_comp_bottom_app_bar_container_elevation=0x7f060103; + public static final int m3_comp_bottom_app_bar_container_height=0x7f060104; + public static final int m3_comp_checkbox_selected_disabled_container_opacity=0x7f060105; + public static final int m3_comp_date_picker_modal_date_today_container_outline_width=0x7f060106; + public static final int m3_comp_date_picker_modal_header_container_height=0x7f060107; + public static final int m3_comp_date_picker_modal_range_selection_header_container_height=0x7f060108; + public static final int m3_comp_divider_thickness=0x7f060109; + public static final int m3_comp_elevated_button_container_elevation=0x7f06010a; + public static final int m3_comp_elevated_button_disabled_container_elevation=0x7f06010b; + public static final int m3_comp_elevated_card_container_elevation=0x7f06010c; + public static final int m3_comp_elevated_card_icon_size=0x7f06010d; + public static final int m3_comp_extended_fab_primary_container_elevation=0x7f06010e; + public static final int m3_comp_extended_fab_primary_container_height=0x7f06010f; + public static final int m3_comp_extended_fab_primary_focus_container_elevation=0x7f060110; + public static final int m3_comp_extended_fab_primary_focus_state_layer_opacity=0x7f060111; + public static final int m3_comp_extended_fab_primary_hover_container_elevation=0x7f060112; + public static final int m3_comp_extended_fab_primary_hover_state_layer_opacity=0x7f060113; + public static final int m3_comp_extended_fab_primary_icon_size=0x7f060114; + public static final int m3_comp_extended_fab_primary_pressed_container_elevation=0x7f060115; + public static final int m3_comp_extended_fab_primary_pressed_state_layer_opacity=0x7f060116; + public static final int m3_comp_fab_primary_container_elevation=0x7f060117; + public static final int m3_comp_fab_primary_container_height=0x7f060118; + public static final int m3_comp_fab_primary_focus_state_layer_opacity=0x7f060119; + public static final int m3_comp_fab_primary_hover_container_elevation=0x7f06011a; + public static final int m3_comp_fab_primary_hover_state_layer_opacity=0x7f06011b; + public static final int m3_comp_fab_primary_icon_size=0x7f06011c; + public static final int m3_comp_fab_primary_large_container_height=0x7f06011d; + public static final int m3_comp_fab_primary_large_icon_size=0x7f06011e; + public static final int m3_comp_fab_primary_pressed_container_elevation=0x7f06011f; + public static final int m3_comp_fab_primary_pressed_state_layer_opacity=0x7f060120; + public static final int m3_comp_fab_primary_small_container_height=0x7f060121; + public static final int m3_comp_fab_primary_small_icon_size=0x7f060122; + public static final int m3_comp_filled_autocomplete_menu_container_elevation=0x7f060123; + public static final int m3_comp_filled_button_container_elevation=0x7f060124; + public static final int m3_comp_filled_button_with_icon_icon_size=0x7f060125; + public static final int m3_comp_filled_card_container_elevation=0x7f060126; + public static final int m3_comp_filled_card_dragged_state_layer_opacity=0x7f060127; + public static final int m3_comp_filled_card_focus_state_layer_opacity=0x7f060128; + public static final int m3_comp_filled_card_hover_state_layer_opacity=0x7f060129; + public static final int m3_comp_filled_card_icon_size=0x7f06012a; + public static final int m3_comp_filled_card_pressed_state_layer_opacity=0x7f06012b; + public static final int m3_comp_filled_text_field_disabled_active_indicator_opacity=0x7f06012c; + public static final int m3_comp_filter_chip_container_height=0x7f06012d; + public static final int m3_comp_filter_chip_elevated_container_elevation=0x7f06012e; + public static final int m3_comp_filter_chip_flat_container_elevation=0x7f06012f; + public static final int m3_comp_filter_chip_flat_unselected_outline_width=0x7f060130; + public static final int m3_comp_filter_chip_with_icon_icon_size=0x7f060131; + public static final int m3_comp_input_chip_container_elevation=0x7f060132; + public static final int m3_comp_input_chip_container_height=0x7f060133; + public static final int m3_comp_input_chip_unselected_outline_width=0x7f060134; + public static final int m3_comp_input_chip_with_avatar_avatar_size=0x7f060135; + public static final int m3_comp_input_chip_with_leading_icon_leading_icon_size=0x7f060136; + public static final int m3_comp_menu_container_elevation=0x7f060137; + public static final int m3_comp_navigation_bar_active_indicator_height=0x7f060138; + public static final int m3_comp_navigation_bar_active_indicator_width=0x7f060139; + public static final int m3_comp_navigation_bar_container_elevation=0x7f06013a; + public static final int m3_comp_navigation_bar_container_height=0x7f06013b; + public static final int m3_comp_navigation_bar_focus_state_layer_opacity=0x7f06013c; + public static final int m3_comp_navigation_bar_hover_state_layer_opacity=0x7f06013d; + public static final int m3_comp_navigation_bar_icon_size=0x7f06013e; + public static final int m3_comp_navigation_bar_pressed_state_layer_opacity=0x7f06013f; + public static final int m3_comp_navigation_drawer_container_width=0x7f060140; + public static final int m3_comp_navigation_drawer_focus_state_layer_opacity=0x7f060141; + public static final int m3_comp_navigation_drawer_hover_state_layer_opacity=0x7f060142; + public static final int m3_comp_navigation_drawer_icon_size=0x7f060143; + public static final int m3_comp_navigation_drawer_modal_container_elevation=0x7f060144; + public static final int m3_comp_navigation_drawer_pressed_state_layer_opacity=0x7f060145; + public static final int m3_comp_navigation_drawer_standard_container_elevation=0x7f060146; + public static final int m3_comp_navigation_rail_active_indicator_height=0x7f060147; + public static final int m3_comp_navigation_rail_active_indicator_width=0x7f060148; + public static final int m3_comp_navigation_rail_container_elevation=0x7f060149; + public static final int m3_comp_navigation_rail_container_width=0x7f06014a; + public static final int m3_comp_navigation_rail_focus_state_layer_opacity=0x7f06014b; + public static final int m3_comp_navigation_rail_hover_state_layer_opacity=0x7f06014c; + public static final int m3_comp_navigation_rail_icon_size=0x7f06014d; + public static final int m3_comp_navigation_rail_pressed_state_layer_opacity=0x7f06014e; + public static final int m3_comp_outlined_autocomplete_menu_container_elevation=0x7f06014f; + public static final int m3_comp_outlined_button_disabled_outline_opacity=0x7f060150; + public static final int m3_comp_outlined_button_outline_width=0x7f060151; + public static final int m3_comp_outlined_card_container_elevation=0x7f060152; + public static final int m3_comp_outlined_card_disabled_outline_opacity=0x7f060153; + public static final int m3_comp_outlined_card_icon_size=0x7f060154; + public static final int m3_comp_outlined_card_outline_width=0x7f060155; + public static final int m3_comp_outlined_icon_button_unselected_outline_width=0x7f060156; + public static final int m3_comp_outlined_text_field_disabled_input_text_opacity=0x7f060157; + public static final int m3_comp_outlined_text_field_disabled_label_text_opacity=0x7f060158; + public static final int m3_comp_outlined_text_field_disabled_supporting_text_opacity=0x7f060159; + public static final int m3_comp_outlined_text_field_focus_outline_width=0x7f06015a; + public static final int m3_comp_outlined_text_field_outline_width=0x7f06015b; + public static final int m3_comp_primary_navigation_tab_active_focus_state_layer_opacity=0x7f06015c; + public static final int m3_comp_primary_navigation_tab_active_hover_state_layer_opacity=0x7f06015d; + public static final int m3_comp_primary_navigation_tab_active_indicator_height=0x7f06015e; + public static final int m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity=0x7f06015f; + public static final int m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity=0x7f060160; + public static final int m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity=0x7f060161; + public static final int m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity=0x7f060162; + public static final int m3_comp_primary_navigation_tab_with_icon_icon_size=0x7f060163; + public static final int m3_comp_progress_indicator_active_indicator_track_space=0x7f060164; + public static final int m3_comp_progress_indicator_stop_indicator_size=0x7f060165; + public static final int m3_comp_progress_indicator_track_thickness=0x7f060166; + public static final int m3_comp_radio_button_disabled_selected_icon_opacity=0x7f060167; + public static final int m3_comp_radio_button_disabled_unselected_icon_opacity=0x7f060168; + public static final int m3_comp_radio_button_selected_focus_state_layer_opacity=0x7f060169; + public static final int m3_comp_radio_button_selected_hover_state_layer_opacity=0x7f06016a; + public static final int m3_comp_radio_button_selected_pressed_state_layer_opacity=0x7f06016b; + public static final int m3_comp_radio_button_unselected_focus_state_layer_opacity=0x7f06016c; + public static final int m3_comp_radio_button_unselected_hover_state_layer_opacity=0x7f06016d; + public static final int m3_comp_radio_button_unselected_pressed_state_layer_opacity=0x7f06016e; + public static final int m3_comp_scrim_container_opacity=0x7f06016f; + public static final int m3_comp_search_bar_avatar_size=0x7f060170; + public static final int m3_comp_search_bar_container_elevation=0x7f060171; + public static final int m3_comp_search_bar_container_height=0x7f060172; + public static final int m3_comp_search_bar_hover_state_layer_opacity=0x7f060173; + public static final int m3_comp_search_bar_pressed_state_layer_opacity=0x7f060174; + public static final int m3_comp_search_view_container_elevation=0x7f060175; + public static final int m3_comp_search_view_docked_header_container_height=0x7f060176; + public static final int m3_comp_search_view_full_screen_header_container_height=0x7f060177; + public static final int m3_comp_secondary_navigation_tab_active_indicator_height=0x7f060178; + public static final int m3_comp_secondary_navigation_tab_focus_state_layer_opacity=0x7f060179; + public static final int m3_comp_secondary_navigation_tab_hover_state_layer_opacity=0x7f06017a; + public static final int m3_comp_secondary_navigation_tab_pressed_state_layer_opacity=0x7f06017b; + public static final int m3_comp_sheet_bottom_docked_drag_handle_height=0x7f06017c; + public static final int m3_comp_sheet_bottom_docked_drag_handle_width=0x7f06017d; + public static final int m3_comp_sheet_bottom_docked_modal_container_elevation=0x7f06017e; + public static final int m3_comp_sheet_bottom_docked_standard_container_elevation=0x7f06017f; + public static final int m3_comp_sheet_side_docked_container_width=0x7f060180; + public static final int m3_comp_sheet_side_docked_modal_container_elevation=0x7f060181; + public static final int m3_comp_sheet_side_docked_standard_container_elevation=0x7f060182; + public static final int m3_comp_slider_active_handle_height=0x7f060183; + public static final int m3_comp_slider_active_handle_leading_space=0x7f060184; + public static final int m3_comp_slider_active_handle_width=0x7f060185; + public static final int m3_comp_slider_disabled_active_track_opacity=0x7f060186; + public static final int m3_comp_slider_disabled_handle_opacity=0x7f060187; + public static final int m3_comp_slider_disabled_inactive_track_opacity=0x7f060188; + public static final int m3_comp_slider_inactive_track_height=0x7f060189; + public static final int m3_comp_slider_stop_indicator_size=0x7f06018a; + public static final int m3_comp_snackbar_container_elevation=0x7f06018b; + public static final int m3_comp_suggestion_chip_container_height=0x7f06018c; + public static final int m3_comp_suggestion_chip_elevated_container_elevation=0x7f06018d; + public static final int m3_comp_suggestion_chip_flat_container_elevation=0x7f06018e; + public static final int m3_comp_suggestion_chip_flat_outline_width=0x7f06018f; + public static final int m3_comp_suggestion_chip_with_leading_icon_leading_icon_size=0x7f060190; + public static final int m3_comp_switch_disabled_selected_handle_opacity=0x7f060191; + public static final int m3_comp_switch_disabled_selected_icon_opacity=0x7f060192; + public static final int m3_comp_switch_disabled_track_opacity=0x7f060193; + public static final int m3_comp_switch_disabled_unselected_handle_opacity=0x7f060194; + public static final int m3_comp_switch_disabled_unselected_icon_opacity=0x7f060195; + public static final int m3_comp_switch_selected_focus_state_layer_opacity=0x7f060196; + public static final int m3_comp_switch_selected_hover_state_layer_opacity=0x7f060197; + public static final int m3_comp_switch_selected_pressed_state_layer_opacity=0x7f060198; + public static final int m3_comp_switch_track_height=0x7f060199; + public static final int m3_comp_switch_track_width=0x7f06019a; + public static final int m3_comp_switch_unselected_focus_state_layer_opacity=0x7f06019b; + public static final int m3_comp_switch_unselected_hover_state_layer_opacity=0x7f06019c; + public static final int m3_comp_switch_unselected_pressed_state_layer_opacity=0x7f06019d; + public static final int m3_comp_text_button_focus_state_layer_opacity=0x7f06019e; + public static final int m3_comp_text_button_hover_state_layer_opacity=0x7f06019f; + public static final int m3_comp_text_button_pressed_state_layer_opacity=0x7f0601a0; + public static final int m3_comp_time_input_time_input_field_focus_outline_width=0x7f0601a1; + public static final int m3_comp_time_picker_container_elevation=0x7f0601a2; + public static final int m3_comp_time_picker_period_selector_focus_state_layer_opacity=0x7f0601a3; + public static final int m3_comp_time_picker_period_selector_hover_state_layer_opacity=0x7f0601a4; + public static final int m3_comp_time_picker_period_selector_outline_width=0x7f0601a5; + public static final int m3_comp_time_picker_period_selector_pressed_state_layer_opacity=0x7f0601a6; + public static final int m3_comp_time_picker_time_selector_focus_state_layer_opacity=0x7f0601a7; + public static final int m3_comp_time_picker_time_selector_hover_state_layer_opacity=0x7f0601a8; + public static final int m3_comp_time_picker_time_selector_pressed_state_layer_opacity=0x7f0601a9; + public static final int m3_comp_top_app_bar_large_container_height=0x7f0601aa; + public static final int m3_comp_top_app_bar_medium_container_height=0x7f0601ab; + public static final int m3_comp_top_app_bar_small_container_elevation=0x7f0601ac; + public static final int m3_comp_top_app_bar_small_container_height=0x7f0601ad; + public static final int m3_comp_top_app_bar_small_on_scroll_container_elevation=0x7f0601ae; + public static final int m3_datepicker_elevation=0x7f0601af; + public static final int m3_divider_heavy_thickness=0x7f0601b0; + public static final int m3_extended_fab_bottom_padding=0x7f0601b1; + public static final int m3_extended_fab_end_padding=0x7f0601b2; + public static final int m3_extended_fab_icon_padding=0x7f0601b3; + public static final int m3_extended_fab_min_height=0x7f0601b4; + public static final int m3_extended_fab_start_padding=0x7f0601b5; + public static final int m3_extended_fab_top_padding=0x7f0601b6; + public static final int m3_fab_border_width=0x7f0601b7; + public static final int m3_fab_corner_size=0x7f0601b8; + public static final int m3_fab_translation_z_hovered_focused=0x7f0601b9; + public static final int m3_fab_translation_z_pressed=0x7f0601ba; + public static final int m3_large_fab_max_image_size=0x7f0601bb; + public static final int m3_large_fab_size=0x7f0601bc; + public static final int m3_large_text_vertical_offset_adjustment=0x7f0601bd; + public static final int m3_menu_elevation=0x7f0601be; + public static final int m3_nav_badge_with_text_vertical_offset=0x7f0601bf; + public static final int m3_navigation_drawer_layout_corner_size=0x7f0601c0; + public static final int m3_navigation_item_active_indicator_label_padding=0x7f0601c1; + public static final int m3_navigation_item_horizontal_padding=0x7f0601c2; + public static final int m3_navigation_item_icon_padding=0x7f0601c3; + public static final int m3_navigation_item_shape_inset_bottom=0x7f0601c4; + public static final int m3_navigation_item_shape_inset_end=0x7f0601c5; + public static final int m3_navigation_item_shape_inset_start=0x7f0601c6; + public static final int m3_navigation_item_shape_inset_top=0x7f0601c7; + public static final int m3_navigation_item_vertical_padding=0x7f0601c8; + public static final int m3_navigation_menu_divider_horizontal_padding=0x7f0601c9; + public static final int m3_navigation_menu_headline_horizontal_padding=0x7f0601ca; + public static final int m3_navigation_rail_default_width=0x7f0601cb; + public static final int m3_navigation_rail_elevation=0x7f0601cc; + public static final int m3_navigation_rail_icon_size=0x7f0601cd; + public static final int m3_navigation_rail_item_active_indicator_height=0x7f0601ce; + public static final int m3_navigation_rail_item_active_indicator_margin_horizontal=0x7f0601cf; + public static final int m3_navigation_rail_item_active_indicator_width=0x7f0601d0; + public static final int m3_navigation_rail_item_min_height=0x7f0601d1; + public static final int m3_navigation_rail_item_padding_bottom=0x7f0601d2; + public static final int m3_navigation_rail_item_padding_bottom_with_large_font=0x7f0601d3; + public static final int m3_navigation_rail_item_padding_top=0x7f0601d4; + public static final int m3_navigation_rail_item_padding_top_with_large_font=0x7f0601d5; + public static final int m3_navigation_rail_label_padding_horizontal=0x7f0601d6; + public static final int m3_ripple_default_alpha=0x7f0601d7; + public static final int m3_ripple_focused_alpha=0x7f0601d8; + public static final int m3_ripple_hovered_alpha=0x7f0601d9; + public static final int m3_ripple_pressed_alpha=0x7f0601da; + public static final int m3_ripple_selectable_pressed_alpha=0x7f0601db; + public static final int m3_searchbar_elevation=0x7f0601dc; + public static final int m3_searchbar_height=0x7f0601dd; + public static final int m3_searchbar_margin_horizontal=0x7f0601de; + public static final int m3_searchbar_margin_vertical=0x7f0601df; + public static final int m3_searchbar_outlined_stroke_width=0x7f0601e0; + public static final int m3_searchbar_padding_start=0x7f0601e1; + public static final int m3_searchbar_text_margin_start_no_navigation_icon=0x7f0601e2; + public static final int m3_searchbar_text_size=0x7f0601e3; + public static final int m3_searchview_divider_size=0x7f0601e4; + public static final int m3_searchview_elevation=0x7f0601e5; + public static final int m3_searchview_height=0x7f0601e6; + public static final int m3_side_sheet_margin_detached=0x7f0601e7; + public static final int m3_side_sheet_modal_elevation=0x7f0601e8; + public static final int m3_side_sheet_standard_elevation=0x7f0601e9; + public static final int m3_side_sheet_width=0x7f0601ea; + public static final int m3_simple_item_color_hovered_alpha=0x7f0601eb; + public static final int m3_simple_item_color_selected_alpha=0x7f0601ec; + public static final int m3_slider_thumb_elevation=0x7f0601ed; + public static final int m3_small_fab_max_image_size=0x7f0601ee; + public static final int m3_small_fab_size=0x7f0601ef; + public static final int m3_snackbar_action_text_color_alpha=0x7f0601f0; + public static final int m3_snackbar_margin=0x7f0601f1; + public static final int m3_sys_elevation_level0=0x7f0601f2; + public static final int m3_sys_elevation_level1=0x7f0601f3; + public static final int m3_sys_elevation_level2=0x7f0601f4; + public static final int m3_sys_elevation_level3=0x7f0601f5; + public static final int m3_sys_elevation_level4=0x7f0601f6; + public static final int m3_sys_elevation_level5=0x7f0601f7; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_x1=0x7f0601f8; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_x2=0x7f0601f9; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_y1=0x7f0601fa; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_y2=0x7f0601fb; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_x1=0x7f0601fc; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_x2=0x7f0601fd; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_y1=0x7f0601fe; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_y2=0x7f0601ff; + public static final int m3_sys_motion_easing_legacy_accelerate_control_x1=0x7f060200; + public static final int m3_sys_motion_easing_legacy_accelerate_control_x2=0x7f060201; + public static final int m3_sys_motion_easing_legacy_accelerate_control_y1=0x7f060202; + public static final int m3_sys_motion_easing_legacy_accelerate_control_y2=0x7f060203; + public static final int m3_sys_motion_easing_legacy_control_x1=0x7f060204; + public static final int m3_sys_motion_easing_legacy_control_x2=0x7f060205; + public static final int m3_sys_motion_easing_legacy_control_y1=0x7f060206; + public static final int m3_sys_motion_easing_legacy_control_y2=0x7f060207; + public static final int m3_sys_motion_easing_legacy_decelerate_control_x1=0x7f060208; + public static final int m3_sys_motion_easing_legacy_decelerate_control_x2=0x7f060209; + public static final int m3_sys_motion_easing_legacy_decelerate_control_y1=0x7f06020a; + public static final int m3_sys_motion_easing_legacy_decelerate_control_y2=0x7f06020b; + public static final int m3_sys_motion_easing_linear_control_x1=0x7f06020c; + public static final int m3_sys_motion_easing_linear_control_x2=0x7f06020d; + public static final int m3_sys_motion_easing_linear_control_y1=0x7f06020e; + public static final int m3_sys_motion_easing_linear_control_y2=0x7f06020f; + public static final int m3_sys_motion_easing_standard_accelerate_control_x1=0x7f060210; + public static final int m3_sys_motion_easing_standard_accelerate_control_x2=0x7f060211; + public static final int m3_sys_motion_easing_standard_accelerate_control_y1=0x7f060212; + public static final int m3_sys_motion_easing_standard_accelerate_control_y2=0x7f060213; + public static final int m3_sys_motion_easing_standard_control_x1=0x7f060214; + public static final int m3_sys_motion_easing_standard_control_x2=0x7f060215; + public static final int m3_sys_motion_easing_standard_control_y1=0x7f060216; + public static final int m3_sys_motion_easing_standard_control_y2=0x7f060217; + public static final int m3_sys_motion_easing_standard_decelerate_control_x1=0x7f060218; + public static final int m3_sys_motion_easing_standard_decelerate_control_x2=0x7f060219; + public static final int m3_sys_motion_easing_standard_decelerate_control_y1=0x7f06021a; + public static final int m3_sys_motion_easing_standard_decelerate_control_y2=0x7f06021b; + public static final int m3_sys_state_dragged_state_layer_opacity=0x7f06021c; + public static final int m3_sys_state_focus_state_layer_opacity=0x7f06021d; + public static final int m3_sys_state_hover_state_layer_opacity=0x7f06021e; + public static final int m3_sys_state_pressed_state_layer_opacity=0x7f06021f; + public static final int m3_timepicker_display_stroke_width=0x7f060220; + public static final int m3_timepicker_window_elevation=0x7f060221; + public static final int m3_toolbar_text_size_title=0x7f060222; + public static final int material_bottom_sheet_max_width=0x7f060223; + public static final int material_clock_display_height=0x7f060224; + public static final int material_clock_display_padding=0x7f060225; + public static final int material_clock_display_width=0x7f060226; + public static final int material_clock_face_margin_bottom=0x7f060227; + public static final int material_clock_face_margin_top=0x7f060228; + public static final int material_clock_hand_center_dot_radius=0x7f060229; + public static final int material_clock_hand_padding=0x7f06022a; + public static final int material_clock_hand_stroke_width=0x7f06022b; + public static final int material_clock_number_text_size=0x7f06022c; + public static final int material_clock_period_toggle_height=0x7f06022d; + public static final int material_clock_period_toggle_horizontal_gap=0x7f06022e; + public static final int material_clock_period_toggle_vertical_gap=0x7f06022f; + public static final int material_clock_period_toggle_width=0x7f060230; + public static final int material_clock_size=0x7f060231; + public static final int material_cursor_inset=0x7f060232; + public static final int material_cursor_width=0x7f060233; + public static final int material_divider_thickness=0x7f060234; + public static final int material_emphasis_disabled=0x7f060235; + public static final int material_emphasis_disabled_background=0x7f060236; + public static final int material_emphasis_high_type=0x7f060237; + public static final int material_emphasis_medium=0x7f060238; + public static final int material_filled_edittext_font_1_3_padding_bottom=0x7f060239; + public static final int material_filled_edittext_font_1_3_padding_top=0x7f06023a; + public static final int material_filled_edittext_font_2_0_padding_bottom=0x7f06023b; + public static final int material_filled_edittext_font_2_0_padding_top=0x7f06023c; + public static final int material_font_1_3_box_collapsed_padding_top=0x7f06023d; + public static final int material_font_2_0_box_collapsed_padding_top=0x7f06023e; + public static final int material_helper_text_default_padding_top=0x7f06023f; + public static final int material_helper_text_font_1_3_padding_horizontal=0x7f060240; + public static final int material_helper_text_font_1_3_padding_top=0x7f060241; + public static final int material_input_text_to_prefix_suffix_padding=0x7f060242; + public static final int material_textinput_default_width=0x7f060243; + public static final int material_textinput_max_width=0x7f060244; + public static final int material_textinput_min_width=0x7f060245; + public static final int material_time_picker_minimum_screen_height=0x7f060246; + public static final int material_time_picker_minimum_screen_width=0x7f060247; + public static final int mtrl_alert_dialog_background_inset_bottom=0x7f060248; + public static final int mtrl_alert_dialog_background_inset_end=0x7f060249; + public static final int mtrl_alert_dialog_background_inset_start=0x7f06024a; + public static final int mtrl_alert_dialog_background_inset_top=0x7f06024b; + public static final int mtrl_alert_dialog_picker_background_inset=0x7f06024c; + public static final int mtrl_badge_horizontal_edge_offset=0x7f06024d; + public static final int mtrl_badge_long_text_horizontal_padding=0x7f06024e; + public static final int mtrl_badge_size=0x7f06024f; + public static final int mtrl_badge_text_horizontal_edge_offset=0x7f060250; + public static final int mtrl_badge_text_size=0x7f060251; + public static final int mtrl_badge_toolbar_action_menu_item_horizontal_offset=0x7f060252; + public static final int mtrl_badge_toolbar_action_menu_item_vertical_offset=0x7f060253; + public static final int mtrl_badge_with_text_size=0x7f060254; + public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060255; + public static final int mtrl_bottomappbar_fab_bottom_margin=0x7f060256; + public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060257; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060258; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060259; + public static final int mtrl_bottomappbar_height=0x7f06025a; + public static final int mtrl_btn_corner_radius=0x7f06025b; + public static final int mtrl_btn_dialog_btn_min_width=0x7f06025c; + public static final int mtrl_btn_disabled_elevation=0x7f06025d; + public static final int mtrl_btn_disabled_z=0x7f06025e; + public static final int mtrl_btn_elevation=0x7f06025f; + public static final int mtrl_btn_focused_z=0x7f060260; + public static final int mtrl_btn_hovered_z=0x7f060261; + public static final int mtrl_btn_icon_btn_padding_left=0x7f060262; + public static final int mtrl_btn_icon_padding=0x7f060263; + public static final int mtrl_btn_inset=0x7f060264; + public static final int mtrl_btn_letter_spacing=0x7f060265; + public static final int mtrl_btn_max_width=0x7f060266; + public static final int mtrl_btn_padding_bottom=0x7f060267; + public static final int mtrl_btn_padding_left=0x7f060268; + public static final int mtrl_btn_padding_right=0x7f060269; + public static final int mtrl_btn_padding_top=0x7f06026a; + public static final int mtrl_btn_pressed_z=0x7f06026b; + public static final int mtrl_btn_snackbar_margin_horizontal=0x7f06026c; + public static final int mtrl_btn_stroke_size=0x7f06026d; + public static final int mtrl_btn_text_btn_icon_padding=0x7f06026e; + public static final int mtrl_btn_text_btn_padding_left=0x7f06026f; + public static final int mtrl_btn_text_btn_padding_right=0x7f060270; + public static final int mtrl_btn_text_size=0x7f060271; + public static final int mtrl_btn_z=0x7f060272; + public static final int mtrl_calendar_action_confirm_button_min_width=0x7f060273; + public static final int mtrl_calendar_action_height=0x7f060274; + public static final int mtrl_calendar_action_padding=0x7f060275; + public static final int mtrl_calendar_bottom_padding=0x7f060276; + public static final int mtrl_calendar_content_padding=0x7f060277; + public static final int mtrl_calendar_day_corner=0x7f060278; + public static final int mtrl_calendar_day_height=0x7f060279; + public static final int mtrl_calendar_day_horizontal_padding=0x7f06027a; + public static final int mtrl_calendar_day_today_stroke=0x7f06027b; + public static final int mtrl_calendar_day_vertical_padding=0x7f06027c; + public static final int mtrl_calendar_day_width=0x7f06027d; + public static final int mtrl_calendar_days_of_week_height=0x7f06027e; + public static final int mtrl_calendar_dialog_background_inset=0x7f06027f; + public static final int mtrl_calendar_header_content_padding=0x7f060280; + public static final int mtrl_calendar_header_content_padding_fullscreen=0x7f060281; + public static final int mtrl_calendar_header_divider_thickness=0x7f060282; + public static final int mtrl_calendar_header_height=0x7f060283; + public static final int mtrl_calendar_header_height_fullscreen=0x7f060284; + public static final int mtrl_calendar_header_selection_line_height=0x7f060285; + public static final int mtrl_calendar_header_text_padding=0x7f060286; + public static final int mtrl_calendar_header_toggle_margin_bottom=0x7f060287; + public static final int mtrl_calendar_header_toggle_margin_top=0x7f060288; + public static final int mtrl_calendar_landscape_header_width=0x7f060289; + public static final int mtrl_calendar_maximum_default_fullscreen_minor_axis=0x7f06028a; + public static final int mtrl_calendar_month_horizontal_padding=0x7f06028b; + public static final int mtrl_calendar_month_vertical_padding=0x7f06028c; + public static final int mtrl_calendar_navigation_bottom_padding=0x7f06028d; + public static final int mtrl_calendar_navigation_height=0x7f06028e; + public static final int mtrl_calendar_navigation_top_padding=0x7f06028f; + public static final int mtrl_calendar_pre_l_text_clip_padding=0x7f060290; + public static final int mtrl_calendar_selection_baseline_to_top_fullscreen=0x7f060291; + public static final int mtrl_calendar_selection_text_baseline_to_bottom=0x7f060292; + public static final int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen=0x7f060293; + public static final int mtrl_calendar_selection_text_baseline_to_top=0x7f060294; + public static final int mtrl_calendar_text_input_padding_top=0x7f060295; + public static final int mtrl_calendar_title_baseline_to_top=0x7f060296; + public static final int mtrl_calendar_title_baseline_to_top_fullscreen=0x7f060297; + public static final int mtrl_calendar_year_corner=0x7f060298; + public static final int mtrl_calendar_year_height=0x7f060299; + public static final int mtrl_calendar_year_horizontal_padding=0x7f06029a; + public static final int mtrl_calendar_year_vertical_padding=0x7f06029b; + public static final int mtrl_calendar_year_width=0x7f06029c; + public static final int mtrl_card_checked_icon_margin=0x7f06029d; + public static final int mtrl_card_checked_icon_size=0x7f06029e; + public static final int mtrl_card_corner_radius=0x7f06029f; + public static final int mtrl_card_dragged_z=0x7f0602a0; + public static final int mtrl_card_elevation=0x7f0602a1; + public static final int mtrl_card_spacing=0x7f0602a2; + public static final int mtrl_chip_pressed_translation_z=0x7f0602a3; + public static final int mtrl_chip_text_size=0x7f0602a4; + public static final int mtrl_exposed_dropdown_menu_popup_elevation=0x7f0602a5; + public static final int mtrl_exposed_dropdown_menu_popup_vertical_offset=0x7f0602a6; + public static final int mtrl_exposed_dropdown_menu_popup_vertical_padding=0x7f0602a7; + public static final int mtrl_extended_fab_bottom_padding=0x7f0602a8; + public static final int mtrl_extended_fab_disabled_elevation=0x7f0602a9; + public static final int mtrl_extended_fab_disabled_translation_z=0x7f0602aa; + public static final int mtrl_extended_fab_elevation=0x7f0602ab; + public static final int mtrl_extended_fab_end_padding=0x7f0602ac; + public static final int mtrl_extended_fab_end_padding_icon=0x7f0602ad; + public static final int mtrl_extended_fab_icon_size=0x7f0602ae; + public static final int mtrl_extended_fab_icon_text_spacing=0x7f0602af; + public static final int mtrl_extended_fab_min_height=0x7f0602b0; + public static final int mtrl_extended_fab_min_width=0x7f0602b1; + public static final int mtrl_extended_fab_start_padding=0x7f0602b2; + public static final int mtrl_extended_fab_start_padding_icon=0x7f0602b3; + public static final int mtrl_extended_fab_top_padding=0x7f0602b4; + public static final int mtrl_extended_fab_translation_z_base=0x7f0602b5; + public static final int mtrl_extended_fab_translation_z_hovered_focused=0x7f0602b6; + public static final int mtrl_extended_fab_translation_z_pressed=0x7f0602b7; + public static final int mtrl_fab_elevation=0x7f0602b8; + public static final int mtrl_fab_min_touch_target=0x7f0602b9; + public static final int mtrl_fab_translation_z_hovered_focused=0x7f0602ba; + public static final int mtrl_fab_translation_z_pressed=0x7f0602bb; + public static final int mtrl_high_ripple_default_alpha=0x7f0602bc; + public static final int mtrl_high_ripple_focused_alpha=0x7f0602bd; + public static final int mtrl_high_ripple_hovered_alpha=0x7f0602be; + public static final int mtrl_high_ripple_pressed_alpha=0x7f0602bf; + public static final int mtrl_low_ripple_default_alpha=0x7f0602c0; + public static final int mtrl_low_ripple_focused_alpha=0x7f0602c1; + public static final int mtrl_low_ripple_hovered_alpha=0x7f0602c2; + public static final int mtrl_low_ripple_pressed_alpha=0x7f0602c3; + public static final int mtrl_min_touch_target_size=0x7f0602c4; + public static final int mtrl_navigation_bar_item_default_icon_size=0x7f0602c5; + public static final int mtrl_navigation_bar_item_default_margin=0x7f0602c6; + public static final int mtrl_navigation_elevation=0x7f0602c7; + public static final int mtrl_navigation_item_horizontal_padding=0x7f0602c8; + public static final int mtrl_navigation_item_icon_padding=0x7f0602c9; + public static final int mtrl_navigation_item_icon_size=0x7f0602ca; + public static final int mtrl_navigation_item_shape_horizontal_margin=0x7f0602cb; + public static final int mtrl_navigation_item_shape_vertical_margin=0x7f0602cc; + public static final int mtrl_navigation_rail_active_text_size=0x7f0602cd; + public static final int mtrl_navigation_rail_compact_width=0x7f0602ce; + public static final int mtrl_navigation_rail_default_width=0x7f0602cf; + public static final int mtrl_navigation_rail_elevation=0x7f0602d0; + public static final int mtrl_navigation_rail_icon_margin=0x7f0602d1; + public static final int mtrl_navigation_rail_icon_size=0x7f0602d2; + public static final int mtrl_navigation_rail_margin=0x7f0602d3; + public static final int mtrl_navigation_rail_text_bottom_margin=0x7f0602d4; + public static final int mtrl_navigation_rail_text_size=0x7f0602d5; + public static final int mtrl_progress_circular_inset=0x7f0602d6; + public static final int mtrl_progress_circular_inset_extra_small=0x7f0602d7; + public static final int mtrl_progress_circular_inset_medium=0x7f0602d8; + public static final int mtrl_progress_circular_inset_small=0x7f0602d9; + public static final int mtrl_progress_circular_radius=0x7f0602da; + public static final int mtrl_progress_circular_size=0x7f0602db; + public static final int mtrl_progress_circular_size_extra_small=0x7f0602dc; + public static final int mtrl_progress_circular_size_medium=0x7f0602dd; + public static final int mtrl_progress_circular_size_small=0x7f0602de; + public static final int mtrl_progress_circular_track_thickness_extra_small=0x7f0602df; + public static final int mtrl_progress_circular_track_thickness_medium=0x7f0602e0; + public static final int mtrl_progress_circular_track_thickness_small=0x7f0602e1; + public static final int mtrl_progress_indicator_full_rounded_corner_radius=0x7f0602e2; + public static final int mtrl_progress_track_thickness=0x7f0602e3; + public static final int mtrl_shape_corner_size_large_component=0x7f0602e4; + public static final int mtrl_shape_corner_size_medium_component=0x7f0602e5; + public static final int mtrl_shape_corner_size_small_component=0x7f0602e6; + public static final int mtrl_slider_halo_radius=0x7f0602e7; + public static final int mtrl_slider_label_padding=0x7f0602e8; + public static final int mtrl_slider_label_radius=0x7f0602e9; + public static final int mtrl_slider_label_square_side=0x7f0602ea; + public static final int mtrl_slider_thumb_elevation=0x7f0602eb; + public static final int mtrl_slider_thumb_radius=0x7f0602ec; + public static final int mtrl_slider_tick_min_spacing=0x7f0602ed; + public static final int mtrl_slider_tick_radius=0x7f0602ee; + public static final int mtrl_slider_track_height=0x7f0602ef; + public static final int mtrl_slider_track_side_padding=0x7f0602f0; + public static final int mtrl_slider_widget_height=0x7f0602f1; + public static final int mtrl_snackbar_action_text_color_alpha=0x7f0602f2; + public static final int mtrl_snackbar_background_corner_radius=0x7f0602f3; + public static final int mtrl_snackbar_background_overlay_color_alpha=0x7f0602f4; + public static final int mtrl_snackbar_margin=0x7f0602f5; + public static final int mtrl_snackbar_message_margin_horizontal=0x7f0602f6; + public static final int mtrl_snackbar_padding_horizontal=0x7f0602f7; + public static final int mtrl_switch_text_padding=0x7f0602f8; + public static final int mtrl_switch_thumb_elevation=0x7f0602f9; + public static final int mtrl_switch_thumb_icon_size=0x7f0602fa; + public static final int mtrl_switch_thumb_size=0x7f0602fb; + public static final int mtrl_switch_track_height=0x7f0602fc; + public static final int mtrl_switch_track_width=0x7f0602fd; + public static final int mtrl_textinput_box_corner_radius_medium=0x7f0602fe; + public static final int mtrl_textinput_box_corner_radius_small=0x7f0602ff; + public static final int mtrl_textinput_box_label_cutout_padding=0x7f060300; + public static final int mtrl_textinput_box_stroke_width_default=0x7f060301; + public static final int mtrl_textinput_box_stroke_width_focused=0x7f060302; + public static final int mtrl_textinput_counter_margin_start=0x7f060303; + public static final int mtrl_textinput_end_icon_margin_start=0x7f060304; + public static final int mtrl_textinput_outline_box_expanded_padding=0x7f060305; + public static final int mtrl_textinput_start_icon_margin_end=0x7f060306; + public static final int mtrl_toolbar_default_height=0x7f060307; + public static final int mtrl_tooltip_arrowSize=0x7f060308; + public static final int mtrl_tooltip_cornerSize=0x7f060309; + public static final int mtrl_tooltip_minHeight=0x7f06030a; + public static final int mtrl_tooltip_minWidth=0x7f06030b; + public static final int mtrl_tooltip_padding=0x7f06030c; + public static final int mtrl_transition_shared_axis_slide_distance=0x7f06030d; + public static final int notification_action_icon_size=0x7f06030e; + public static final int notification_action_text_size=0x7f06030f; + public static final int notification_big_circle_margin=0x7f060310; + public static final int notification_content_margin_start=0x7f060311; + public static final int notification_large_icon_height=0x7f060312; + public static final int notification_large_icon_width=0x7f060313; + public static final int notification_main_column_padding_top=0x7f060314; + public static final int notification_media_narrow_margin=0x7f060315; + public static final int notification_right_icon_size=0x7f060316; + public static final int notification_right_side_padding_top=0x7f060317; + public static final int notification_small_icon_background_padding=0x7f060318; + public static final int notification_small_icon_size_as_large=0x7f060319; + public static final int notification_subtext_size=0x7f06031a; + public static final int notification_top_pad=0x7f06031b; + public static final int notification_top_pad_large_text=0x7f06031c; + public static final int sliding_pane_detail_pane_width=0x7f06031d; + public static final int tooltip_corner_radius=0x7f06031e; + public static final int tooltip_horizontal_padding=0x7f06031f; + public static final int tooltip_margin=0x7f060320; + public static final int tooltip_precise_anchor_extra_offset=0x7f060321; + public static final int tooltip_precise_anchor_threshold=0x7f060322; + public static final int tooltip_vertical_padding=0x7f060323; + public static final int tooltip_y_offset_non_touch=0x7f060324; + public static final int tooltip_y_offset_touch=0x7f060325; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f070028; + public static final int abc_action_bar_item_background_material=0x7f070029; + public static final int abc_btn_borderless_material=0x7f07002a; + public static final int abc_btn_check_material=0x7f07002b; + public static final int abc_btn_check_material_anim=0x7f07002c; + public static final int abc_btn_check_to_on_mtrl_000=0x7f07002d; + public static final int abc_btn_check_to_on_mtrl_015=0x7f07002e; + public static final int abc_btn_colored_material=0x7f07002f; + public static final int abc_btn_default_mtrl_shape=0x7f070030; + public static final int abc_btn_radio_material=0x7f070031; + public static final int abc_btn_radio_material_anim=0x7f070032; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f070033; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f070034; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070035; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070036; + public static final int abc_cab_background_internal_bg=0x7f070037; + public static final int abc_cab_background_top_material=0x7f070038; + public static final int abc_cab_background_top_mtrl_alpha=0x7f070039; + public static final int abc_control_background_material=0x7f07003a; + public static final int abc_dialog_material_background=0x7f07003b; + public static final int abc_edit_text_material=0x7f07003c; + public static final int abc_ic_ab_back_material=0x7f07003d; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07003e; + public static final int abc_ic_clear_material=0x7f07003f; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f070040; + public static final int abc_ic_go_search_api_material=0x7f070041; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f070042; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f070043; + public static final int abc_ic_menu_overflow_material=0x7f070044; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070045; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070046; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f070047; + public static final int abc_ic_search_api_material=0x7f070048; + public static final int abc_ic_voice_search_api_material=0x7f070049; + public static final int abc_item_background_holo_dark=0x7f07004a; + public static final int abc_item_background_holo_light=0x7f07004b; + public static final int abc_list_divider_material=0x7f07004c; + public static final int abc_list_divider_mtrl_alpha=0x7f07004d; + public static final int abc_list_focused_holo=0x7f07004e; + public static final int abc_list_longpressed_holo=0x7f07004f; + public static final int abc_list_pressed_holo_dark=0x7f070050; + public static final int abc_list_pressed_holo_light=0x7f070051; + public static final int abc_list_selector_background_transition_holo_dark=0x7f070052; + public static final int abc_list_selector_background_transition_holo_light=0x7f070053; + public static final int abc_list_selector_disabled_holo_dark=0x7f070054; + public static final int abc_list_selector_disabled_holo_light=0x7f070055; + public static final int abc_list_selector_holo_dark=0x7f070056; + public static final int abc_list_selector_holo_light=0x7f070057; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f070058; + public static final int abc_popup_background_mtrl_mult=0x7f070059; + public static final int abc_ratingbar_indicator_material=0x7f07005a; + public static final int abc_ratingbar_material=0x7f07005b; + public static final int abc_ratingbar_small_material=0x7f07005c; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07005d; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f07005e; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f07005f; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f070060; + public static final int abc_scrubber_track_mtrl_alpha=0x7f070061; + public static final int abc_seekbar_thumb_material=0x7f070062; + public static final int abc_seekbar_tick_mark_material=0x7f070063; + public static final int abc_seekbar_track_material=0x7f070064; + public static final int abc_spinner_mtrl_am_alpha=0x7f070065; + public static final int abc_spinner_textfield_background_material=0x7f070066; + public static final int abc_star_black_48dp=0x7f070067; + public static final int abc_star_half_black_48dp=0x7f070068; + public static final int abc_switch_thumb_material=0x7f070069; + public static final int abc_switch_track_mtrl_alpha=0x7f07006a; + public static final int abc_tab_indicator_material=0x7f07006b; + public static final int abc_tab_indicator_mtrl_alpha=0x7f07006c; + public static final int abc_text_cursor_material=0x7f07006d; + public static final int abc_text_select_handle_left_mtrl=0x7f07006e; + public static final int abc_text_select_handle_middle_mtrl=0x7f07006f; + public static final int abc_text_select_handle_right_mtrl=0x7f070070; + public static final int abc_textfield_activated_mtrl_alpha=0x7f070071; + public static final int abc_textfield_default_mtrl_alpha=0x7f070072; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070073; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f070074; + public static final int abc_textfield_search_material=0x7f070075; + public static final int abc_vector_test=0x7f070076; + public static final int avd_hide_password=0x7f070077; + public static final int avd_show_password=0x7f070078; + public static final int btn_checkbox_checked_mtrl=0x7f070079; + public static final int btn_checkbox_checked_to_unchecked_mtrl_animation=0x7f07007a; + public static final int btn_checkbox_unchecked_mtrl=0x7f07007b; + public static final int btn_checkbox_unchecked_to_checked_mtrl_animation=0x7f07007c; + public static final int btn_radio_off_mtrl=0x7f07007d; + public static final int btn_radio_off_to_on_mtrl_animation=0x7f07007e; + public static final int btn_radio_on_mtrl=0x7f07007f; + public static final int btn_radio_on_to_off_mtrl_animation=0x7f070080; + public static final int design_fab_background=0x7f070081; + public static final int design_ic_visibility=0x7f070082; + public static final int design_ic_visibility_off=0x7f070083; + public static final int design_password_eye=0x7f070084; + public static final int design_snackbar_background=0x7f070085; + public static final int dotnet_bot=0x7f070086; + public static final int ic_arrow_back_black_24=0x7f070087; + public static final int ic_call_answer=0x7f070088; + public static final int ic_call_answer_low=0x7f070089; + public static final int ic_call_answer_video=0x7f07008a; + public static final int ic_call_answer_video_low=0x7f07008b; + public static final int ic_call_decline=0x7f07008c; + public static final int ic_call_decline_low=0x7f07008d; + public static final int ic_clear_black_24=0x7f07008e; + public static final int ic_clock_black_24dp=0x7f07008f; + public static final int ic_keyboard_black_24dp=0x7f070090; + public static final int ic_m3_chip_check=0x7f070091; + public static final int ic_m3_chip_checked_circle=0x7f070092; + public static final int ic_m3_chip_close=0x7f070093; + public static final int ic_mtrl_checked_circle=0x7f070094; + public static final int ic_mtrl_chip_checked_black=0x7f070095; + public static final int ic_mtrl_chip_checked_circle=0x7f070096; + public static final int ic_mtrl_chip_close_circle=0x7f070097; + public static final int ic_search_black_24=0x7f070098; + public static final int indeterminate_static=0x7f070099; + public static final int m3_avd_hide_password=0x7f07009a; + public static final int m3_avd_show_password=0x7f07009b; + public static final int m3_bottom_sheet_drag_handle=0x7f07009c; + public static final int m3_password_eye=0x7f07009d; + public static final int m3_popupmenu_background_overlay=0x7f07009e; + public static final int m3_radiobutton_ripple=0x7f07009f; + public static final int m3_selection_control_ripple=0x7f0700a0; + public static final int m3_tabs_background=0x7f0700a1; + public static final int m3_tabs_line_indicator=0x7f0700a2; + public static final int m3_tabs_rounded_line_indicator=0x7f0700a3; + public static final int m3_tabs_transparent_background=0x7f0700a4; + public static final int material_cursor_drawable=0x7f0700a5; + public static final int material_ic_calendar_black_24dp=0x7f0700a6; + public static final int material_ic_clear_black_24dp=0x7f0700a7; + public static final int material_ic_edit_black_24dp=0x7f0700a8; + public static final int material_ic_keyboard_arrow_left_black_24dp=0x7f0700a9; + public static final int material_ic_keyboard_arrow_next_black_24dp=0x7f0700aa; + public static final int material_ic_keyboard_arrow_previous_black_24dp=0x7f0700ab; + public static final int material_ic_keyboard_arrow_right_black_24dp=0x7f0700ac; + public static final int material_ic_menu_arrow_down_black_24dp=0x7f0700ad; + public static final int material_ic_menu_arrow_up_black_24dp=0x7f0700ae; + public static final int maui_splash=0x7f0700af; + public static final int maui_splash_image=0x7f0700b0; + public static final int mtrl_bottomsheet_drag_handle=0x7f0700b1; + public static final int mtrl_checkbox_button=0x7f0700b2; + public static final int mtrl_checkbox_button_checked_unchecked=0x7f0700b3; + public static final int mtrl_checkbox_button_icon=0x7f0700b4; + public static final int mtrl_checkbox_button_icon_checked_indeterminate=0x7f0700b5; + public static final int mtrl_checkbox_button_icon_checked_unchecked=0x7f0700b6; + public static final int mtrl_checkbox_button_icon_indeterminate_checked=0x7f0700b7; + public static final int mtrl_checkbox_button_icon_indeterminate_unchecked=0x7f0700b8; + public static final int mtrl_checkbox_button_icon_unchecked_checked=0x7f0700b9; + public static final int mtrl_checkbox_button_icon_unchecked_indeterminate=0x7f0700ba; + public static final int mtrl_checkbox_button_unchecked_checked=0x7f0700bb; + public static final int mtrl_dialog_background=0x7f0700bc; + public static final int mtrl_dropdown_arrow=0x7f0700bd; + public static final int mtrl_ic_arrow_drop_down=0x7f0700be; + public static final int mtrl_ic_arrow_drop_up=0x7f0700bf; + public static final int mtrl_ic_cancel=0x7f0700c0; + public static final int mtrl_ic_check_mark=0x7f0700c1; + public static final int mtrl_ic_checkbox_checked=0x7f0700c2; + public static final int mtrl_ic_checkbox_unchecked=0x7f0700c3; + public static final int mtrl_ic_error=0x7f0700c4; + public static final int mtrl_ic_indeterminate=0x7f0700c5; + public static final int mtrl_navigation_bar_item_background=0x7f0700c6; + public static final int mtrl_popupmenu_background=0x7f0700c7; + public static final int mtrl_popupmenu_background_overlay=0x7f0700c8; + public static final int mtrl_switch_thumb=0x7f0700c9; + public static final int mtrl_switch_thumb_checked=0x7f0700ca; + public static final int mtrl_switch_thumb_checked_pressed=0x7f0700cb; + public static final int mtrl_switch_thumb_checked_unchecked=0x7f0700cc; + public static final int mtrl_switch_thumb_pressed=0x7f0700cd; + public static final int mtrl_switch_thumb_pressed_checked=0x7f0700ce; + public static final int mtrl_switch_thumb_pressed_unchecked=0x7f0700cf; + public static final int mtrl_switch_thumb_unchecked=0x7f0700d0; + public static final int mtrl_switch_thumb_unchecked_checked=0x7f0700d1; + public static final int mtrl_switch_thumb_unchecked_pressed=0x7f0700d2; + public static final int mtrl_switch_track=0x7f0700d3; + public static final int mtrl_switch_track_decoration=0x7f0700d4; + public static final int mtrl_tabs_default_indicator=0x7f0700d5; + public static final int navigation_empty_icon=0x7f0700d6; + public static final int notification_action_background=0x7f0700d7; + public static final int notification_bg=0x7f0700d8; + public static final int notification_bg_low=0x7f0700d9; + public static final int notification_bg_low_normal=0x7f0700da; + public static final int notification_bg_low_pressed=0x7f0700db; + public static final int notification_bg_normal=0x7f0700dc; + public static final int notification_bg_normal_pressed=0x7f0700dd; + public static final int notification_icon_background=0x7f0700de; + public static final int notification_oversize_large_icon_bg=0x7f0700df; + public static final int notification_template_icon_bg=0x7f0700e0; + public static final int notification_template_icon_low_bg=0x7f0700e1; + public static final int notification_tile_bg=0x7f0700e2; + public static final int notify_panel_notification_icon_bg=0x7f0700e3; + public static final int splash=0x7f0700e4; + public static final int test_level_drawable=0x7f0700e5; + public static final int tooltip_frame_dark=0x7f0700e6; + public static final int tooltip_frame_light=0x7f0700e7; + } + public static final class id { + public static final int ALT=0x7f080000; + public static final int BOTTOM_END=0x7f080001; + public static final int BOTTOM_START=0x7f080002; + public static final int CTRL=0x7f080003; + public static final int FUNCTION=0x7f080004; + public static final int META=0x7f080005; + public static final int NO_DEBUG=0x7f080006; + public static final int SHIFT=0x7f080007; + public static final int SHOW_ALL=0x7f080008; + public static final int SHOW_PATH=0x7f080009; + public static final int SHOW_PROGRESS=0x7f08000a; + public static final int SYM=0x7f08000b; + public static final int TOP_END=0x7f08000c; + public static final int TOP_START=0x7f08000d; + public static final int above=0x7f08000e; + public static final int accelerate=0x7f08000f; + public static final int accessibility_action_clickable_span=0x7f080010; + public static final int accessibility_custom_action_0=0x7f080011; + public static final int accessibility_custom_action_1=0x7f080012; + public static final int accessibility_custom_action_10=0x7f080013; + public static final int accessibility_custom_action_11=0x7f080014; + public static final int accessibility_custom_action_12=0x7f080015; + public static final int accessibility_custom_action_13=0x7f080016; + public static final int accessibility_custom_action_14=0x7f080017; + public static final int accessibility_custom_action_15=0x7f080018; + public static final int accessibility_custom_action_16=0x7f080019; + public static final int accessibility_custom_action_17=0x7f08001a; + public static final int accessibility_custom_action_18=0x7f08001b; + public static final int accessibility_custom_action_19=0x7f08001c; + public static final int accessibility_custom_action_2=0x7f08001d; + public static final int accessibility_custom_action_20=0x7f08001e; + public static final int accessibility_custom_action_21=0x7f08001f; + public static final int accessibility_custom_action_22=0x7f080020; + public static final int accessibility_custom_action_23=0x7f080021; + public static final int accessibility_custom_action_24=0x7f080022; + public static final int accessibility_custom_action_25=0x7f080023; + public static final int accessibility_custom_action_26=0x7f080024; + public static final int accessibility_custom_action_27=0x7f080025; + public static final int accessibility_custom_action_28=0x7f080026; + public static final int accessibility_custom_action_29=0x7f080027; + public static final int accessibility_custom_action_3=0x7f080028; + public static final int accessibility_custom_action_30=0x7f080029; + public static final int accessibility_custom_action_31=0x7f08002a; + public static final int accessibility_custom_action_4=0x7f08002b; + public static final int accessibility_custom_action_5=0x7f08002c; + public static final int accessibility_custom_action_6=0x7f08002d; + public static final int accessibility_custom_action_7=0x7f08002e; + public static final int accessibility_custom_action_8=0x7f08002f; + public static final int accessibility_custom_action_9=0x7f080030; + public static final int actionDown=0x7f080031; + public static final int actionDownUp=0x7f080032; + public static final int actionUp=0x7f080033; + public static final int action_bar=0x7f080034; + public static final int action_bar_activity_content=0x7f080035; + public static final int action_bar_container=0x7f080036; + public static final int action_bar_root=0x7f080037; + public static final int action_bar_spinner=0x7f080038; + public static final int action_bar_subtitle=0x7f080039; + public static final int action_bar_title=0x7f08003a; + public static final int action_container=0x7f08003b; + public static final int action_context_bar=0x7f08003c; + public static final int action_divider=0x7f08003d; + public static final int action_image=0x7f08003e; + public static final int action_menu_divider=0x7f08003f; + public static final int action_menu_presenter=0x7f080040; + public static final int action_mode_bar=0x7f080041; + public static final int action_mode_bar_stub=0x7f080042; + public static final int action_mode_close_button=0x7f080043; + public static final int action_text=0x7f080044; + public static final int actions=0x7f080045; + public static final int activity_chooser_view_content=0x7f080046; + public static final int add=0x7f080047; + public static final int adjacent=0x7f080048; + public static final int alertTitle=0x7f080049; + public static final int aligned=0x7f08004a; + public static final int all=0x7f08004b; + public static final int allStates=0x7f08004c; + public static final int always=0x7f08004d; + public static final int alwaysAllow=0x7f08004e; + public static final int alwaysDisallow=0x7f08004f; + public static final int androidx_window_activity_scope=0x7f080050; + public static final int animateToEnd=0x7f080051; + public static final int animateToStart=0x7f080052; + public static final int antiClockwise=0x7f080053; + public static final int anticipate=0x7f080054; + public static final int arc=0x7f080055; + public static final int asConfigured=0x7f080056; + public static final int async=0x7f080057; + public static final int auto=0x7f080058; + public static final int autoComplete=0x7f080059; + public static final int autoCompleteToEnd=0x7f08005a; + public static final int autoCompleteToStart=0x7f08005b; + public static final int axisRelative=0x7f08005c; + public static final int barrier=0x7f08005d; + public static final int baseline=0x7f08005e; + public static final int beginOnFirstDraw=0x7f08005f; + public static final int beginning=0x7f080060; + public static final int below=0x7f080061; + public static final int bestChoice=0x7f080062; + public static final int blocking=0x7f080063; + public static final int bottom=0x7f080064; + public static final int bottomToTop=0x7f080065; + public static final int bounce=0x7f080066; + public static final int bounceBoth=0x7f080067; + public static final int bounceEnd=0x7f080068; + public static final int bounceStart=0x7f080069; + public static final int browser_actions_header_text=0x7f08006a; + public static final int browser_actions_menu_item_icon=0x7f08006b; + public static final int browser_actions_menu_item_text=0x7f08006c; + public static final int browser_actions_menu_items=0x7f08006d; + public static final int browser_actions_menu_view=0x7f08006e; + public static final int buttonPanel=0x7f08006f; + public static final int cache_measures=0x7f080070; + public static final int callMeasure=0x7f080071; + public static final int cancel_button=0x7f080072; + public static final int carryVelocity=0x7f080073; + public static final int center=0x7f080074; + public static final int centerCrop=0x7f080075; + public static final int centerInside=0x7f080076; + public static final int center_horizontal=0x7f080077; + public static final int center_vertical=0x7f080078; + public static final int chain=0x7f080079; + public static final int chain2=0x7f08007a; + public static final int chains=0x7f08007b; + public static final int checkbox=0x7f08007c; + public static final int checked=0x7f08007d; + public static final int chronometer=0x7f08007e; + public static final int circle_center=0x7f08007f; + public static final int clear_text=0x7f080080; + public static final int clip_horizontal=0x7f080081; + public static final int clip_vertical=0x7f080082; + public static final int clockwise=0x7f080083; + public static final int closest=0x7f080084; + public static final int collapseActionView=0x7f080085; + public static final int compress=0x7f080086; + public static final int confirm_button=0x7f080087; + public static final int constraint=0x7f080088; + public static final int container=0x7f080089; + public static final int content=0x7f08008a; + public static final int contentPanel=0x7f08008b; + public static final int contiguous=0x7f08008c; + public static final int continuousVelocity=0x7f08008d; + public static final int coordinator=0x7f08008e; + public static final int cos=0x7f08008f; + public static final int counterclockwise=0x7f080090; + public static final int cradle=0x7f080091; + public static final int currentState=0x7f080092; + public static final int custom=0x7f080093; + public static final int customPanel=0x7f080094; + public static final int cut=0x7f080095; + public static final int date_picker_actions=0x7f080096; + public static final int decelerate=0x7f080097; + public static final int decelerateAndComplete=0x7f080098; + public static final int decor_content_parent=0x7f080099; + public static final int default_activity_button=0x7f08009a; + public static final int deltaRelative=0x7f08009b; + public static final int dependency_ordering=0x7f08009c; + public static final int design_bottom_sheet=0x7f08009d; + public static final int design_menu_item_action_area=0x7f08009e; + public static final int design_menu_item_action_area_stub=0x7f08009f; + public static final int design_menu_item_text=0x7f0800a0; + public static final int design_navigation_view=0x7f0800a1; + public static final int dialog_button=0x7f0800a2; + public static final int dimensions=0x7f0800a3; + public static final int direct=0x7f0800a4; + public static final int disableHome=0x7f0800a5; + public static final int disableIntraAutoTransition=0x7f0800a6; + public static final int disablePostScroll=0x7f0800a7; + public static final int disableScroll=0x7f0800a8; + public static final int disjoint=0x7f0800a9; + public static final int dragAnticlockwise=0x7f0800aa; + public static final int dragClockwise=0x7f0800ab; + public static final int dragDown=0x7f0800ac; + public static final int dragEnd=0x7f0800ad; + public static final int dragLeft=0x7f0800ae; + public static final int dragRight=0x7f0800af; + public static final int dragStart=0x7f0800b0; + public static final int dragUp=0x7f0800b1; + public static final int dropdown_menu=0x7f0800b2; + public static final int easeIn=0x7f0800b3; + public static final int easeInOut=0x7f0800b4; + public static final int easeOut=0x7f0800b5; + public static final int east=0x7f0800b6; + public static final int edge=0x7f0800b7; + public static final int edit_query=0x7f0800b8; + public static final int edit_text_id=0x7f0800b9; + public static final int elastic=0x7f0800ba; + public static final int embed=0x7f0800bb; + public static final int end=0x7f0800bc; + public static final int endToStart=0x7f0800bd; + public static final int enterAlways=0x7f0800be; + public static final int enterAlwaysCollapsed=0x7f0800bf; + public static final int escape=0x7f0800c0; + public static final int exitUntilCollapsed=0x7f0800c1; + public static final int expand_activities_button=0x7f0800c2; + public static final int expanded_menu=0x7f0800c3; + public static final int fade=0x7f0800c4; + public static final int fill=0x7f0800c5; + public static final int fill_horizontal=0x7f0800c6; + public static final int fill_vertical=0x7f0800c7; + public static final int filled=0x7f0800c8; + public static final int fitCenter=0x7f0800c9; + public static final int fitEnd=0x7f0800ca; + public static final int fitStart=0x7f0800cb; + public static final int fitToContents=0x7f0800cc; + public static final int fitXY=0x7f0800cd; + public static final int fixed=0x7f0800ce; + public static final int flip=0x7f0800cf; + public static final int floating=0x7f0800d0; + public static final int flyoutcontent_appbar=0x7f0800d1; + public static final int forever=0x7f0800d2; + public static final int fragment_container_view_tag=0x7f0800d3; + public static final int frost=0x7f0800d4; + public static final int fullscreen_header=0x7f0800d5; + public static final int ghost_view=0x7f0800d6; + public static final int ghost_view_holder=0x7f0800d7; + public static final int glide_custom_view_target_tag=0x7f0800d8; + public static final int gone=0x7f0800d9; + public static final int graph=0x7f0800da; + public static final int graph_wrap=0x7f0800db; + public static final int group_divider=0x7f0800dc; + public static final int grouping=0x7f0800dd; + public static final int groups=0x7f0800de; + public static final int header_title=0x7f0800df; + public static final int hide_ime_id=0x7f0800e0; + public static final int hideable=0x7f0800e1; + public static final int home=0x7f0800e2; + public static final int homeAsUp=0x7f0800e3; + public static final int honorRequest=0x7f0800e4; + public static final int horizontal=0x7f0800e5; + public static final int horizontal_only=0x7f0800e6; + public static final int icon=0x7f0800e7; + public static final int icon_group=0x7f0800e8; + public static final int ifRoom=0x7f0800e9; + public static final int ignore=0x7f0800ea; + public static final int ignoreRequest=0x7f0800eb; + public static final int image=0x7f0800ec; + public static final int immediateStop=0x7f0800ed; + public static final int included=0x7f0800ee; + public static final int indeterminate=0x7f0800ef; + public static final int info=0x7f0800f0; + public static final int invisible=0x7f0800f1; + public static final int inward=0x7f0800f2; + public static final int is_pooling_container_tag=0x7f0800f3; + public static final int italic=0x7f0800f4; + public static final int item_touch_helper_previous_elevation=0x7f0800f5; + public static final int jumpToEnd=0x7f0800f6; + public static final int jumpToStart=0x7f0800f7; + public static final int labeled=0x7f0800f8; + public static final int layout=0x7f0800f9; + public static final int left=0x7f0800fa; + public static final int leftToRight=0x7f0800fb; + public static final int legacy=0x7f0800fc; + public static final int line1=0x7f0800fd; + public static final int line3=0x7f0800fe; + public static final int linear=0x7f0800ff; + public static final int listMode=0x7f080100; + public static final int list_item=0x7f080101; + public static final int locale=0x7f080102; + public static final int ltr=0x7f080103; + public static final int m3_side_sheet=0x7f080104; + public static final int marquee=0x7f080105; + public static final int masked=0x7f080106; + public static final int match_constraint=0x7f080107; + public static final int match_parent=0x7f080108; + public static final int material_clock_display=0x7f080109; + public static final int material_clock_display_and_toggle=0x7f08010a; + public static final int material_clock_face=0x7f08010b; + public static final int material_clock_hand=0x7f08010c; + public static final int material_clock_level=0x7f08010d; + public static final int material_clock_period_am_button=0x7f08010e; + public static final int material_clock_period_pm_button=0x7f08010f; + public static final int material_clock_period_toggle=0x7f080110; + public static final int material_hour_text_input=0x7f080111; + public static final int material_hour_tv=0x7f080112; + public static final int material_label=0x7f080113; + public static final int material_minute_text_input=0x7f080114; + public static final int material_minute_tv=0x7f080115; + public static final int material_textinput_timepicker=0x7f080116; + public static final int material_timepicker_cancel_button=0x7f080117; + public static final int material_timepicker_container=0x7f080118; + public static final int material_timepicker_mode_button=0x7f080119; + public static final int material_timepicker_ok_button=0x7f08011a; + public static final int material_timepicker_view=0x7f08011b; + public static final int material_value_index=0x7f08011c; + public static final int matrix=0x7f08011d; + public static final int maui_custom_view_target_running_callbacks_tag=0x7f08011e; + public static final int message=0x7f08011f; + public static final int middle=0x7f080120; + public static final int mini=0x7f080121; + public static final int month_grid=0x7f080122; + public static final int month_navigation_bar=0x7f080123; + public static final int month_navigation_fragment_toggle=0x7f080124; + public static final int month_navigation_next=0x7f080125; + public static final int month_navigation_previous=0x7f080126; + public static final int month_title=0x7f080127; + public static final int motion_base=0x7f080128; + public static final int mtrl_anchor_parent=0x7f080129; + public static final int mtrl_calendar_day_selector_frame=0x7f08012a; + public static final int mtrl_calendar_days_of_week=0x7f08012b; + public static final int mtrl_calendar_frame=0x7f08012c; + public static final int mtrl_calendar_main_pane=0x7f08012d; + public static final int mtrl_calendar_months=0x7f08012e; + public static final int mtrl_calendar_selection_frame=0x7f08012f; + public static final int mtrl_calendar_text_input_frame=0x7f080130; + public static final int mtrl_calendar_year_selector_frame=0x7f080131; + public static final int mtrl_card_checked_layer_id=0x7f080132; + public static final int mtrl_child_content_container=0x7f080133; + public static final int mtrl_internal_children_alpha_tag=0x7f080134; + public static final int mtrl_motion_snapshot_view=0x7f080135; + public static final int mtrl_picker_fullscreen=0x7f080136; + public static final int mtrl_picker_header=0x7f080137; + public static final int mtrl_picker_header_selection_text=0x7f080138; + public static final int mtrl_picker_header_title_and_selection=0x7f080139; + public static final int mtrl_picker_header_toggle=0x7f08013a; + public static final int mtrl_picker_text_input_date=0x7f08013b; + public static final int mtrl_picker_text_input_range_end=0x7f08013c; + public static final int mtrl_picker_text_input_range_start=0x7f08013d; + public static final int mtrl_picker_title_text=0x7f08013e; + public static final int mtrl_view_tag_bottom_padding=0x7f08013f; + public static final int multiply=0x7f080140; + public static final int nav_controller_view_tag=0x7f080141; + public static final int nav_host=0x7f080142; + public static final int nav_host_fragment_container=0x7f080143; + public static final int navigation_bar_item_active_indicator_view=0x7f080144; + public static final int navigation_bar_item_icon_container=0x7f080145; + public static final int navigation_bar_item_icon_view=0x7f080146; + public static final int navigation_bar_item_labels_group=0x7f080147; + public static final int navigation_bar_item_large_label_view=0x7f080148; + public static final int navigation_bar_item_small_label_view=0x7f080149; + public static final int navigation_header_container=0x7f08014a; + public static final int navigation_layout=0x7f08014b; + public static final int navigationlayout_appbar=0x7f08014c; + public static final int navigationlayout_bottomtabs=0x7f08014d; + public static final int navigationlayout_content=0x7f08014e; + public static final int navigationlayout_toptabs=0x7f08014f; + public static final int never=0x7f080150; + public static final int neverCompleteToEnd=0x7f080151; + public static final int neverCompleteToStart=0x7f080152; + public static final int noScroll=0x7f080153; + public static final int noState=0x7f080154; + public static final int none=0x7f080155; + public static final int normal=0x7f080156; + public static final int north=0x7f080157; + public static final int notification_background=0x7f080158; + public static final int notification_main_column=0x7f080159; + public static final int notification_main_column_container=0x7f08015a; + public static final int off=0x7f08015b; + public static final int on=0x7f08015c; + public static final int onInterceptTouchReturnSwipe=0x7f08015d; + public static final int open_search_bar_text_view=0x7f08015e; + public static final int open_search_view_background=0x7f08015f; + public static final int open_search_view_clear_button=0x7f080160; + public static final int open_search_view_content_container=0x7f080161; + public static final int open_search_view_divider=0x7f080162; + public static final int open_search_view_dummy_toolbar=0x7f080163; + public static final int open_search_view_edit_text=0x7f080164; + public static final int open_search_view_header_container=0x7f080165; + public static final int open_search_view_root=0x7f080166; + public static final int open_search_view_scrim=0x7f080167; + public static final int open_search_view_search_prefix=0x7f080168; + public static final int open_search_view_status_bar_spacer=0x7f080169; + public static final int open_search_view_toolbar=0x7f08016a; + public static final int open_search_view_toolbar_container=0x7f08016b; + public static final int outline=0x7f08016c; + public static final int outward=0x7f08016d; + public static final int overshoot=0x7f08016e; + public static final int packed=0x7f08016f; + public static final int parallax=0x7f080170; + public static final int parent=0x7f080171; + public static final int parentPanel=0x7f080172; + public static final int parentRelative=0x7f080173; + public static final int parent_matrix=0x7f080174; + public static final int password_toggle=0x7f080175; + public static final int path=0x7f080176; + public static final int pathRelative=0x7f080177; + public static final int peekHeight=0x7f080178; + public static final int percent=0x7f080179; + public static final int pin=0x7f08017a; + public static final int pooling_container_listener_holder_tag=0x7f08017b; + public static final int position=0x7f08017c; + public static final int postLayout=0x7f08017d; + public static final int pressed=0x7f08017e; + public static final int progress_circular=0x7f08017f; + public static final int progress_horizontal=0x7f080180; + public static final int radio=0x7f080181; + public static final int ratio=0x7f080182; + public static final int rectangles=0x7f080183; + public static final int report_drawn=0x7f080184; + public static final int reverseSawtooth=0x7f080185; + public static final int right=0x7f080186; + public static final int rightToLeft=0x7f080187; + public static final int right_icon=0x7f080188; + public static final int right_side=0x7f080189; + public static final int rounded=0x7f08018a; + public static final int row_index_key=0x7f08018b; + public static final int rtl=0x7f08018c; + public static final int save_non_transition_alpha=0x7f08018d; + public static final int save_overlay_view=0x7f08018e; + public static final int sawtooth=0x7f08018f; + public static final int scale=0x7f080190; + public static final int screen=0x7f080191; + public static final int scroll=0x7f080192; + public static final int scrollIndicatorDown=0x7f080193; + public static final int scrollIndicatorUp=0x7f080194; + public static final int scrollView=0x7f080195; + public static final int scrollable=0x7f080196; + public static final int search_badge=0x7f080197; + public static final int search_bar=0x7f080198; + public static final int search_button=0x7f080199; + public static final int search_close_btn=0x7f08019a; + public static final int search_edit_frame=0x7f08019b; + public static final int search_go_btn=0x7f08019c; + public static final int search_mag_icon=0x7f08019d; + public static final int search_plate=0x7f08019e; + public static final int search_src_text=0x7f08019f; + public static final int search_voice_btn=0x7f0801a0; + public static final int select_dialog_listview=0x7f0801a1; + public static final int selected=0x7f0801a2; + public static final int selection_type=0x7f0801a3; + public static final int sharedValueSet=0x7f0801a4; + public static final int sharedValueUnset=0x7f0801a5; + public static final int shellcontent_appbar=0x7f0801a6; + public static final int shortcut=0x7f0801a7; + public static final int showCustom=0x7f0801a8; + public static final int showHome=0x7f0801a9; + public static final int showTitle=0x7f0801aa; + public static final int sin=0x7f0801ab; + public static final int skipCollapsed=0x7f0801ac; + public static final int skipped=0x7f0801ad; + public static final int slide=0x7f0801ae; + public static final int sliding_pane_detail_container=0x7f0801af; + public static final int sliding_pane_layout=0x7f0801b0; + public static final int snackbar_action=0x7f0801b1; + public static final int snackbar_text=0x7f0801b2; + public static final int snap=0x7f0801b3; + public static final int snapMargins=0x7f0801b4; + public static final int south=0x7f0801b5; + public static final int spacer=0x7f0801b6; + public static final int special_effects_controller_view_tag=0x7f0801b7; + public static final int spline=0x7f0801b8; + public static final int split_action_bar=0x7f0801b9; + public static final int spread=0x7f0801ba; + public static final int spread_inside=0x7f0801bb; + public static final int spring=0x7f0801bc; + public static final int square=0x7f0801bd; + public static final int src_atop=0x7f0801be; + public static final int src_in=0x7f0801bf; + public static final int src_over=0x7f0801c0; + public static final int standard=0x7f0801c1; + public static final int start=0x7f0801c2; + public static final int startHorizontal=0x7f0801c3; + public static final int startToEnd=0x7f0801c4; + public static final int startVertical=0x7f0801c5; + public static final int staticLayout=0x7f0801c6; + public static final int staticPostLayout=0x7f0801c7; + public static final int stop=0x7f0801c8; + public static final int stretch=0x7f0801c9; + public static final int submenuarrow=0x7f0801ca; + public static final int submit_area=0x7f0801cb; + public static final int supportScrollUp=0x7f0801cc; + public static final int tabMode=0x7f0801cd; + public static final int tag_accessibility_actions=0x7f0801ce; + public static final int tag_accessibility_clickable_spans=0x7f0801cf; + public static final int tag_accessibility_heading=0x7f0801d0; + public static final int tag_accessibility_pane_title=0x7f0801d1; + public static final int tag_compat_insets_dispatch=0x7f0801d2; + public static final int tag_on_apply_window_listener=0x7f0801d3; + public static final int tag_on_receive_content_listener=0x7f0801d4; + public static final int tag_on_receive_content_mime_types=0x7f0801d5; + public static final int tag_screen_reader_focusable=0x7f0801d6; + public static final int tag_state_description=0x7f0801d7; + public static final int tag_system_bar_state_monitor=0x7f0801d8; + public static final int tag_transition_group=0x7f0801d9; + public static final int tag_unhandled_key_event_manager=0x7f0801da; + public static final int tag_unhandled_key_listeners=0x7f0801db; + public static final int tag_window_insets_animation_callback=0x7f0801dc; + public static final int text=0x7f0801dd; + public static final int text2=0x7f0801de; + public static final int textEnd=0x7f0801df; + public static final int textSpacerNoButtons=0x7f0801e0; + public static final int textSpacerNoTitle=0x7f0801e1; + public static final int textStart=0x7f0801e2; + public static final int textTop=0x7f0801e3; + public static final int text_input_end_icon=0x7f0801e4; + public static final int text_input_error_icon=0x7f0801e5; + public static final int text_input_start_icon=0x7f0801e6; + public static final int textinput_counter=0x7f0801e7; + public static final int textinput_error=0x7f0801e8; + public static final int textinput_helper_text=0x7f0801e9; + public static final int textinput_placeholder=0x7f0801ea; + public static final int textinput_prefix_text=0x7f0801eb; + public static final int textinput_suffix_text=0x7f0801ec; + public static final int time=0x7f0801ed; + public static final int title=0x7f0801ee; + public static final int titleDividerNoCustom=0x7f0801ef; + public static final int title_template=0x7f0801f0; + public static final int toggle=0x7f0801f1; + public static final int top=0x7f0801f2; + public static final int topPanel=0x7f0801f3; + public static final int topToBottom=0x7f0801f4; + public static final int touch_outside=0x7f0801f5; + public static final int transitionToEnd=0x7f0801f6; + public static final int transitionToStart=0x7f0801f7; + public static final int transition_clip=0x7f0801f8; + public static final int transition_current_scene=0x7f0801f9; + public static final int transition_image_transform=0x7f0801fa; + public static final int transition_layout_save=0x7f0801fb; + public static final int transition_pause_alpha=0x7f0801fc; + public static final int transition_position=0x7f0801fd; + public static final int transition_scene_layoutid_cache=0x7f0801fe; + public static final int transition_transform=0x7f0801ff; + public static final int triangle=0x7f080200; + public static final int unchecked=0x7f080201; + public static final int uniform=0x7f080202; + public static final int unlabeled=0x7f080203; + public static final int up=0x7f080204; + public static final int useLogo=0x7f080205; + public static final int vertical=0x7f080206; + public static final int vertical_only=0x7f080207; + public static final int view_offset_helper=0x7f080208; + public static final int view_transition=0x7f080209; + public static final int view_tree_disjoint_parent=0x7f08020a; + public static final int view_tree_lifecycle_owner=0x7f08020b; + public static final int view_tree_on_back_pressed_dispatcher_owner=0x7f08020c; + public static final int view_tree_saved_state_registry_owner=0x7f08020d; + public static final int view_tree_view_model_store_owner=0x7f08020e; + public static final int visible=0x7f08020f; + public static final int visible_removing_fragment_view_tag=0x7f080210; + public static final int west=0x7f080211; + public static final int withText=0x7f080212; + public static final int with_icon=0x7f080213; + public static final int withinBounds=0x7f080214; + public static final int wrap=0x7f080215; + public static final int wrap_content=0x7f080216; + public static final int wrap_content_constrained=0x7f080217; + public static final int x_left=0x7f080218; + public static final int x_right=0x7f080219; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090000; + public static final int abc_config_activityShortDur=0x7f090001; + public static final int app_bar_elevation_anim_duration=0x7f090002; + public static final int bottom_sheet_slide_duration=0x7f090003; + public static final int cancel_button_image_alpha=0x7f090004; + public static final int config_navAnimTime=0x7f090005; + public static final int config_tooltipAnimTime=0x7f090006; + public static final int design_snackbar_text_max_lines=0x7f090007; + public static final int design_tab_indicator_anim_duration_ms=0x7f090008; + public static final int hide_password_duration=0x7f090009; + public static final int m3_badge_max_number=0x7f09000a; + public static final int m3_btn_anim_delay_ms=0x7f09000b; + public static final int m3_btn_anim_duration_ms=0x7f09000c; + public static final int m3_card_anim_delay_ms=0x7f09000d; + public static final int m3_card_anim_duration_ms=0x7f09000e; + public static final int m3_chip_anim_duration=0x7f09000f; + public static final int m3_sys_motion_duration_extra_long1=0x7f090010; + public static final int m3_sys_motion_duration_extra_long2=0x7f090011; + public static final int m3_sys_motion_duration_extra_long3=0x7f090012; + public static final int m3_sys_motion_duration_extra_long4=0x7f090013; + public static final int m3_sys_motion_duration_long1=0x7f090014; + public static final int m3_sys_motion_duration_long2=0x7f090015; + public static final int m3_sys_motion_duration_long3=0x7f090016; + public static final int m3_sys_motion_duration_long4=0x7f090017; + public static final int m3_sys_motion_duration_medium1=0x7f090018; + public static final int m3_sys_motion_duration_medium2=0x7f090019; + public static final int m3_sys_motion_duration_medium3=0x7f09001a; + public static final int m3_sys_motion_duration_medium4=0x7f09001b; + public static final int m3_sys_motion_duration_short1=0x7f09001c; + public static final int m3_sys_motion_duration_short2=0x7f09001d; + public static final int m3_sys_motion_duration_short3=0x7f09001e; + public static final int m3_sys_motion_duration_short4=0x7f09001f; + public static final int m3_sys_motion_path=0x7f090020; + public static final int m3_sys_shape_corner_extra_large_corner_family=0x7f090021; + public static final int m3_sys_shape_corner_extra_small_corner_family=0x7f090022; + public static final int m3_sys_shape_corner_full_corner_family=0x7f090023; + public static final int m3_sys_shape_corner_large_corner_family=0x7f090024; + public static final int m3_sys_shape_corner_medium_corner_family=0x7f090025; + public static final int m3_sys_shape_corner_small_corner_family=0x7f090026; + public static final int material_motion_duration_long_1=0x7f090027; + public static final int material_motion_duration_long_2=0x7f090028; + public static final int material_motion_duration_medium_1=0x7f090029; + public static final int material_motion_duration_medium_2=0x7f09002a; + public static final int material_motion_duration_short_1=0x7f09002b; + public static final int material_motion_duration_short_2=0x7f09002c; + public static final int material_motion_path=0x7f09002d; + public static final int mtrl_badge_max_character_count=0x7f09002e; + public static final int mtrl_btn_anim_delay_ms=0x7f09002f; + public static final int mtrl_btn_anim_duration_ms=0x7f090030; + public static final int mtrl_calendar_header_orientation=0x7f090031; + public static final int mtrl_calendar_selection_text_lines=0x7f090032; + public static final int mtrl_calendar_year_selector_span=0x7f090033; + public static final int mtrl_card_anim_delay_ms=0x7f090034; + public static final int mtrl_card_anim_duration_ms=0x7f090035; + public static final int mtrl_chip_anim_duration=0x7f090036; + public static final int mtrl_switch_thumb_motion_duration=0x7f090037; + public static final int mtrl_switch_thumb_post_morphing_duration=0x7f090038; + public static final int mtrl_switch_thumb_pre_morphing_duration=0x7f090039; + public static final int mtrl_switch_thumb_pressed_duration=0x7f09003a; + public static final int mtrl_switch_thumb_viewport_center_coordinate=0x7f09003b; + public static final int mtrl_switch_thumb_viewport_size=0x7f09003c; + public static final int mtrl_switch_track_viewport_height=0x7f09003d; + public static final int mtrl_switch_track_viewport_width=0x7f09003e; + public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09003f; + public static final int mtrl_view_gone=0x7f090040; + public static final int mtrl_view_invisible=0x7f090041; + public static final int mtrl_view_visible=0x7f090042; + public static final int show_password_duration=0x7f090043; + public static final int status_bar_notification_info_maxnum=0x7f090044; + } + public static final class interpolator { + public static final int btn_checkbox_checked_mtrl_animation_interpolator_0=0x7f0a0000; + public static final int btn_checkbox_checked_mtrl_animation_interpolator_1=0x7f0a0001; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0=0x7f0a0002; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1=0x7f0a0003; + public static final int btn_radio_to_off_mtrl_animation_interpolator_0=0x7f0a0004; + public static final int btn_radio_to_on_mtrl_animation_interpolator_0=0x7f0a0005; + public static final int fast_out_slow_in=0x7f0a0006; + public static final int m3_sys_motion_easing_emphasized=0x7f0a0007; + public static final int m3_sys_motion_easing_emphasized_accelerate=0x7f0a0008; + public static final int m3_sys_motion_easing_emphasized_decelerate=0x7f0a0009; + public static final int m3_sys_motion_easing_linear=0x7f0a000a; + public static final int m3_sys_motion_easing_standard=0x7f0a000b; + public static final int m3_sys_motion_easing_standard_accelerate=0x7f0a000c; + public static final int m3_sys_motion_easing_standard_decelerate=0x7f0a000d; + public static final int mtrl_fast_out_linear_in=0x7f0a000e; + public static final int mtrl_fast_out_slow_in=0x7f0a000f; + public static final int mtrl_linear=0x7f0a0010; + public static final int mtrl_linear_out_slow_in=0x7f0a0011; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f0b0000; + public static final int abc_action_bar_up_container=0x7f0b0001; + public static final int abc_action_menu_item_layout=0x7f0b0002; + public static final int abc_action_menu_layout=0x7f0b0003; + public static final int abc_action_mode_bar=0x7f0b0004; + public static final int abc_action_mode_close_item_material=0x7f0b0005; + public static final int abc_activity_chooser_view=0x7f0b0006; + public static final int abc_activity_chooser_view_list_item=0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; + public static final int abc_alert_dialog_material=0x7f0b0009; + public static final int abc_alert_dialog_title_material=0x7f0b000a; + public static final int abc_cascading_menu_item_layout=0x7f0b000b; + public static final int abc_dialog_title_material=0x7f0b000c; + public static final int abc_expanded_menu_layout=0x7f0b000d; + public static final int abc_list_menu_item_checkbox=0x7f0b000e; + public static final int abc_list_menu_item_icon=0x7f0b000f; + public static final int abc_list_menu_item_layout=0x7f0b0010; + public static final int abc_list_menu_item_radio=0x7f0b0011; + public static final int abc_popup_menu_header_item_layout=0x7f0b0012; + public static final int abc_popup_menu_item_layout=0x7f0b0013; + public static final int abc_screen_content_include=0x7f0b0014; + public static final int abc_screen_simple=0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; + public static final int abc_screen_toolbar=0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; + public static final int abc_search_view=0x7f0b0019; + public static final int abc_select_dialog_material=0x7f0b001a; + public static final int abc_tooltip=0x7f0b001b; + public static final int browser_actions_context_menu_page=0x7f0b001c; + public static final int browser_actions_context_menu_row=0x7f0b001d; + public static final int custom_dialog=0x7f0b001e; + public static final int design_bottom_navigation_item=0x7f0b001f; + public static final int design_bottom_sheet_dialog=0x7f0b0020; + public static final int design_layout_snackbar=0x7f0b0021; + public static final int design_layout_snackbar_include=0x7f0b0022; + public static final int design_layout_tab_icon=0x7f0b0023; + public static final int design_layout_tab_text=0x7f0b0024; + public static final int design_menu_item_action_area=0x7f0b0025; + public static final int design_navigation_item=0x7f0b0026; + public static final int design_navigation_item_header=0x7f0b0027; + public static final int design_navigation_item_separator=0x7f0b0028; + public static final int design_navigation_item_subheader=0x7f0b0029; + public static final int design_navigation_menu=0x7f0b002a; + public static final int design_navigation_menu_item=0x7f0b002b; + public static final int design_text_input_end_icon=0x7f0b002c; + public static final int design_text_input_start_icon=0x7f0b002d; + public static final int drawer_layout=0x7f0b002e; + public static final int flyoutcontent=0x7f0b002f; + public static final int fragment_backstack=0x7f0b0030; + public static final int ime_base_split_test_activity=0x7f0b0031; + public static final int ime_secondary_split_test_activity=0x7f0b0032; + public static final int m3_alert_dialog=0x7f0b0033; + public static final int m3_alert_dialog_actions=0x7f0b0034; + public static final int m3_alert_dialog_title=0x7f0b0035; + public static final int m3_auto_complete_simple_item=0x7f0b0036; + public static final int m3_side_sheet_dialog=0x7f0b0037; + public static final int material_chip_input_combo=0x7f0b0038; + public static final int material_clock_display=0x7f0b0039; + public static final int material_clock_display_divider=0x7f0b003a; + public static final int material_clock_period_toggle=0x7f0b003b; + public static final int material_clock_period_toggle_land=0x7f0b003c; + public static final int material_clockface_textview=0x7f0b003d; + public static final int material_clockface_view=0x7f0b003e; + public static final int material_radial_view_group=0x7f0b003f; + public static final int material_textinput_timepicker=0x7f0b0040; + public static final int material_time_chip=0x7f0b0041; + public static final int material_time_input=0x7f0b0042; + public static final int material_timepicker=0x7f0b0043; + public static final int material_timepicker_dialog=0x7f0b0044; + public static final int material_timepicker_textinput_display=0x7f0b0045; + public static final int mtrl_alert_dialog=0x7f0b0046; + public static final int mtrl_alert_dialog_actions=0x7f0b0047; + public static final int mtrl_alert_dialog_title=0x7f0b0048; + public static final int mtrl_alert_select_dialog_item=0x7f0b0049; + public static final int mtrl_alert_select_dialog_multichoice=0x7f0b004a; + public static final int mtrl_alert_select_dialog_singlechoice=0x7f0b004b; + public static final int mtrl_auto_complete_simple_item=0x7f0b004c; + public static final int mtrl_calendar_day=0x7f0b004d; + public static final int mtrl_calendar_day_of_week=0x7f0b004e; + public static final int mtrl_calendar_days_of_week=0x7f0b004f; + public static final int mtrl_calendar_horizontal=0x7f0b0050; + public static final int mtrl_calendar_month=0x7f0b0051; + public static final int mtrl_calendar_month_labeled=0x7f0b0052; + public static final int mtrl_calendar_month_navigation=0x7f0b0053; + public static final int mtrl_calendar_months=0x7f0b0054; + public static final int mtrl_calendar_vertical=0x7f0b0055; + public static final int mtrl_calendar_year=0x7f0b0056; + public static final int mtrl_layout_snackbar=0x7f0b0057; + public static final int mtrl_layout_snackbar_include=0x7f0b0058; + public static final int mtrl_navigation_rail_item=0x7f0b0059; + public static final int mtrl_picker_actions=0x7f0b005a; + public static final int mtrl_picker_dialog=0x7f0b005b; + public static final int mtrl_picker_fullscreen=0x7f0b005c; + public static final int mtrl_picker_header_dialog=0x7f0b005d; + public static final int mtrl_picker_header_fullscreen=0x7f0b005e; + public static final int mtrl_picker_header_selection_text=0x7f0b005f; + public static final int mtrl_picker_header_title_text=0x7f0b0060; + public static final int mtrl_picker_header_toggle=0x7f0b0061; + public static final int mtrl_picker_text_input_date=0x7f0b0062; + public static final int mtrl_picker_text_input_date_range=0x7f0b0063; + public static final int mtrl_search_bar=0x7f0b0064; + public static final int mtrl_search_view=0x7f0b0065; + public static final int navigationlayout=0x7f0b0066; + public static final int notification_action=0x7f0b0067; + public static final int notification_action_tombstone=0x7f0b0068; + public static final int notification_template_custom_big=0x7f0b0069; + public static final int notification_template_icon_group=0x7f0b006a; + public static final int notification_template_part_chronometer=0x7f0b006b; + public static final int notification_template_part_time=0x7f0b006c; + public static final int select_dialog_item_material=0x7f0b006d; + public static final int select_dialog_multichoice_material=0x7f0b006e; + public static final int select_dialog_singlechoice_material=0x7f0b006f; + public static final int shellcontent=0x7f0b0070; + public static final int support_simple_spinner_dropdown_item=0x7f0b0071; + } + public static final class mipmap { + public static final int appicon=0x7f0d0000; + public static final int appicon_background=0x7f0d0001; + public static final int appicon_foreground=0x7f0d0002; + public static final int appicon_round=0x7f0d0003; + } + public static final class plurals { + public static final int mtrl_badge_content_description=0x7f0e0000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0f0000; + public static final int abc_action_bar_up_description=0x7f0f0001; + public static final int abc_action_menu_overflow_description=0x7f0f0002; + public static final int abc_action_mode_done=0x7f0f0003; + public static final int abc_activity_chooser_view_see_all=0x7f0f0004; + public static final int abc_activitychooserview_choose_application=0x7f0f0005; + public static final int abc_capital_off=0x7f0f0006; + public static final int abc_capital_on=0x7f0f0007; + public static final int abc_menu_alt_shortcut_label=0x7f0f0008; + public static final int abc_menu_ctrl_shortcut_label=0x7f0f0009; + public static final int abc_menu_delete_shortcut_label=0x7f0f000a; + public static final int abc_menu_enter_shortcut_label=0x7f0f000b; + public static final int abc_menu_function_shortcut_label=0x7f0f000c; + public static final int abc_menu_meta_shortcut_label=0x7f0f000d; + public static final int abc_menu_shift_shortcut_label=0x7f0f000e; + public static final int abc_menu_space_shortcut_label=0x7f0f000f; + public static final int abc_menu_sym_shortcut_label=0x7f0f0010; + public static final int abc_prepend_shortcut_label=0x7f0f0011; + public static final int abc_search_hint=0x7f0f0012; + public static final int abc_searchview_description_clear=0x7f0f0013; + public static final int abc_searchview_description_query=0x7f0f0014; + public static final int abc_searchview_description_search=0x7f0f0015; + public static final int abc_searchview_description_submit=0x7f0f0016; + public static final int abc_searchview_description_voice=0x7f0f0017; + public static final int abc_shareactionprovider_share_with=0x7f0f0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0f0019; + public static final int abc_toolbar_collapse_description=0x7f0f001a; + public static final int androidx_startup=0x7f0f001b; + public static final int appbar_scrolling_view_behavior=0x7f0f001c; + public static final int bottom_sheet_behavior=0x7f0f001d; + public static final int bottomsheet_action_collapse=0x7f0f001e; + public static final int bottomsheet_action_expand=0x7f0f001f; + public static final int bottomsheet_action_expand_halfway=0x7f0f0020; + public static final int bottomsheet_drag_handle_clicked=0x7f0f0021; + public static final int bottomsheet_drag_handle_content_description=0x7f0f0022; + public static final int call_notification_answer_action=0x7f0f0023; + public static final int call_notification_answer_video_action=0x7f0f0024; + public static final int call_notification_decline_action=0x7f0f0025; + public static final int call_notification_hang_up_action=0x7f0f0026; + public static final int call_notification_incoming_text=0x7f0f0027; + public static final int call_notification_ongoing_text=0x7f0f0028; + public static final int call_notification_screening_text=0x7f0f0029; + public static final int character_counter_content_description=0x7f0f002a; + public static final int character_counter_overflowed_content_description=0x7f0f002b; + public static final int character_counter_pattern=0x7f0f002c; + public static final int clear_text_end_icon_content_description=0x7f0f002d; + public static final int copy_toast_msg=0x7f0f002e; + public static final int dest_title=0x7f0f002f; + public static final int error_a11y_label=0x7f0f0030; + public static final int error_icon_content_description=0x7f0f0031; + public static final int exposed_dropdown_menu_content_description=0x7f0f0032; + public static final int fab_transformation_scrim_behavior=0x7f0f0033; + public static final int fab_transformation_sheet_behavior=0x7f0f0034; + public static final int fallback_menu_item_copy_link=0x7f0f0035; + public static final int fallback_menu_item_open_in_browser=0x7f0f0036; + public static final int fallback_menu_item_share_link=0x7f0f0037; + public static final int hide_bottom_view_on_scroll_behavior=0x7f0f0038; + public static final int icon_content_description=0x7f0f0039; + public static final int item_view_role_description=0x7f0f003a; + public static final int m3_exceed_max_badge_text_suffix=0x7f0f003b; + public static final int m3_ref_typeface_brand_medium=0x7f0f003c; + public static final int m3_ref_typeface_brand_regular=0x7f0f003d; + public static final int m3_ref_typeface_plain_medium=0x7f0f003e; + public static final int m3_ref_typeface_plain_regular=0x7f0f003f; + public static final int m3_sys_motion_easing_emphasized=0x7f0f0040; + public static final int m3_sys_motion_easing_emphasized_accelerate=0x7f0f0041; + public static final int m3_sys_motion_easing_emphasized_decelerate=0x7f0f0042; + public static final int m3_sys_motion_easing_emphasized_path_data=0x7f0f0043; + public static final int m3_sys_motion_easing_legacy=0x7f0f0044; + public static final int m3_sys_motion_easing_legacy_accelerate=0x7f0f0045; + public static final int m3_sys_motion_easing_legacy_decelerate=0x7f0f0046; + public static final int m3_sys_motion_easing_linear=0x7f0f0047; + public static final int m3_sys_motion_easing_standard=0x7f0f0048; + public static final int m3_sys_motion_easing_standard_accelerate=0x7f0f0049; + public static final int m3_sys_motion_easing_standard_decelerate=0x7f0f004a; + public static final int material_clock_display_divider=0x7f0f004b; + public static final int material_clock_toggle_content_description=0x7f0f004c; + public static final int material_hour_24h_suffix=0x7f0f004d; + public static final int material_hour_selection=0x7f0f004e; + public static final int material_hour_suffix=0x7f0f004f; + public static final int material_minute_selection=0x7f0f0050; + public static final int material_minute_suffix=0x7f0f0051; + public static final int material_motion_easing_accelerated=0x7f0f0052; + public static final int material_motion_easing_decelerated=0x7f0f0053; + public static final int material_motion_easing_emphasized=0x7f0f0054; + public static final int material_motion_easing_linear=0x7f0f0055; + public static final int material_motion_easing_standard=0x7f0f0056; + public static final int material_slider_range_end=0x7f0f0057; + public static final int material_slider_range_start=0x7f0f0058; + public static final int material_slider_value=0x7f0f0059; + public static final int material_timepicker_am=0x7f0f005a; + public static final int material_timepicker_clock_mode_description=0x7f0f005b; + public static final int material_timepicker_hour=0x7f0f005c; + public static final int material_timepicker_minute=0x7f0f005d; + public static final int material_timepicker_pm=0x7f0f005e; + public static final int material_timepicker_select_time=0x7f0f005f; + public static final int material_timepicker_text_input_mode_description=0x7f0f0060; + public static final int maui_empty_unused=0x7f0f0061; + public static final int mtrl_badge_numberless_content_description=0x7f0f0062; + public static final int mtrl_checkbox_button_icon_path_checked=0x7f0f0063; + public static final int mtrl_checkbox_button_icon_path_group_name=0x7f0f0064; + public static final int mtrl_checkbox_button_icon_path_indeterminate=0x7f0f0065; + public static final int mtrl_checkbox_button_icon_path_name=0x7f0f0066; + public static final int mtrl_checkbox_button_path_checked=0x7f0f0067; + public static final int mtrl_checkbox_button_path_group_name=0x7f0f0068; + public static final int mtrl_checkbox_button_path_name=0x7f0f0069; + public static final int mtrl_checkbox_button_path_unchecked=0x7f0f006a; + public static final int mtrl_checkbox_state_description_checked=0x7f0f006b; + public static final int mtrl_checkbox_state_description_indeterminate=0x7f0f006c; + public static final int mtrl_checkbox_state_description_unchecked=0x7f0f006d; + public static final int mtrl_chip_close_icon_content_description=0x7f0f006e; + public static final int mtrl_exceed_max_badge_number_content_description=0x7f0f006f; + public static final int mtrl_exceed_max_badge_number_suffix=0x7f0f0070; + public static final int mtrl_picker_a11y_next_month=0x7f0f0071; + public static final int mtrl_picker_a11y_prev_month=0x7f0f0072; + public static final int mtrl_picker_announce_current_range_selection=0x7f0f0073; + public static final int mtrl_picker_announce_current_selection=0x7f0f0074; + public static final int mtrl_picker_announce_current_selection_none=0x7f0f0075; + public static final int mtrl_picker_cancel=0x7f0f0076; + public static final int mtrl_picker_confirm=0x7f0f0077; + public static final int mtrl_picker_date_header_selected=0x7f0f0078; + public static final int mtrl_picker_date_header_title=0x7f0f0079; + public static final int mtrl_picker_date_header_unselected=0x7f0f007a; + public static final int mtrl_picker_day_of_week_column_header=0x7f0f007b; + public static final int mtrl_picker_end_date_description=0x7f0f007c; + public static final int mtrl_picker_invalid_format=0x7f0f007d; + public static final int mtrl_picker_invalid_format_example=0x7f0f007e; + public static final int mtrl_picker_invalid_format_use=0x7f0f007f; + public static final int mtrl_picker_invalid_range=0x7f0f0080; + public static final int mtrl_picker_navigate_to_current_year_description=0x7f0f0081; + public static final int mtrl_picker_navigate_to_year_description=0x7f0f0082; + public static final int mtrl_picker_out_of_range=0x7f0f0083; + public static final int mtrl_picker_range_header_only_end_selected=0x7f0f0084; + public static final int mtrl_picker_range_header_only_start_selected=0x7f0f0085; + public static final int mtrl_picker_range_header_selected=0x7f0f0086; + public static final int mtrl_picker_range_header_title=0x7f0f0087; + public static final int mtrl_picker_range_header_unselected=0x7f0f0088; + public static final int mtrl_picker_save=0x7f0f0089; + public static final int mtrl_picker_start_date_description=0x7f0f008a; + public static final int mtrl_picker_text_input_date_hint=0x7f0f008b; + public static final int mtrl_picker_text_input_date_range_end_hint=0x7f0f008c; + public static final int mtrl_picker_text_input_date_range_start_hint=0x7f0f008d; + public static final int mtrl_picker_text_input_day_abbr=0x7f0f008e; + public static final int mtrl_picker_text_input_month_abbr=0x7f0f008f; + public static final int mtrl_picker_text_input_year_abbr=0x7f0f0090; + public static final int mtrl_picker_today_description=0x7f0f0091; + public static final int mtrl_picker_toggle_to_calendar_input_mode=0x7f0f0092; + public static final int mtrl_picker_toggle_to_day_selection=0x7f0f0093; + public static final int mtrl_picker_toggle_to_text_input_mode=0x7f0f0094; + public static final int mtrl_picker_toggle_to_year_selection=0x7f0f0095; + public static final int mtrl_switch_thumb_group_name=0x7f0f0096; + public static final int mtrl_switch_thumb_path_checked=0x7f0f0097; + public static final int mtrl_switch_thumb_path_morphing=0x7f0f0098; + public static final int mtrl_switch_thumb_path_name=0x7f0f0099; + public static final int mtrl_switch_thumb_path_pressed=0x7f0f009a; + public static final int mtrl_switch_thumb_path_unchecked=0x7f0f009b; + public static final int mtrl_switch_track_decoration_path=0x7f0f009c; + public static final int mtrl_switch_track_path=0x7f0f009d; + public static final int mtrl_timepicker_cancel=0x7f0f009e; + public static final int mtrl_timepicker_confirm=0x7f0f009f; + public static final int nav_app_bar_navigate_up_description=0x7f0f00a0; + public static final int nav_app_bar_open_drawer_description=0x7f0f00a1; + public static final int overflow_tab_title=0x7f0f00a2; + public static final int password_toggle_content_description=0x7f0f00a3; + public static final int path_password_eye=0x7f0f00a4; + public static final int path_password_eye_mask_strike_through=0x7f0f00a5; + public static final int path_password_eye_mask_visible=0x7f0f00a6; + public static final int path_password_strike_through=0x7f0f00a7; + public static final int search_menu_title=0x7f0f00a8; + public static final int searchbar_scrolling_view_behavior=0x7f0f00a9; + public static final int searchview_clear_text_content_description=0x7f0f00aa; + public static final int searchview_navigation_content_description=0x7f0f00ab; + public static final int side_sheet_accessibility_pane_title=0x7f0f00ac; + public static final int side_sheet_behavior=0x7f0f00ad; + public static final int status_bar_notification_info_overflow=0x7f0f00ae; + } + public static final class style { + public static final int ActionMode=0x7f100000; + public static final int AlertDialog_AppCompat=0x7f100001; + public static final int AlertDialog_AppCompat_Light=0x7f100002; + public static final int Animation_AppCompat_Dialog=0x7f100003; + public static final int Animation_AppCompat_DropDownUp=0x7f100004; + public static final int Animation_AppCompat_Tooltip=0x7f100005; + public static final int Animation_Design_BottomSheetDialog=0x7f100006; + public static final int Animation_Material3_BottomSheetDialog=0x7f100007; + public static final int Animation_Material3_SideSheetDialog=0x7f100008; + public static final int Animation_Material3_SideSheetDialog_Left=0x7f100009; + public static final int Animation_Material3_SideSheetDialog_Right=0x7f10000a; + public static final int Animation_MaterialComponents_BottomSheetDialog=0x7f10000b; + public static final int AppTheme=0x7f10000c; + public static final int AppTheme_NoActionBar=0x7f10000d; + public static final int Base_AlertDialog_AppCompat=0x7f10000e; + public static final int Base_AlertDialog_AppCompat_Light=0x7f10000f; + public static final int Base_Animation_AppCompat_Dialog=0x7f100010; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f100011; + public static final int Base_Animation_AppCompat_Tooltip=0x7f100012; + public static final int Base_CardView=0x7f100013; + public static final int Base_DialogWindowTitle_AppCompat=0x7f100014; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f100015; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Icon=0x7f100016; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Panel=0x7f100017; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Text=0x7f100018; + public static final int Base_TextAppearance_AppCompat=0x7f100019; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f10001a; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f10001b; + public static final int Base_TextAppearance_AppCompat_Button=0x7f10001c; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f10001d; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f10001e; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f10001f; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f100020; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f100021; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f100022; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f100023; + public static final int Base_TextAppearance_AppCompat_Large=0x7f100024; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f100025; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f100026; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f100027; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f100028; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f100029; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f10002a; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f10002b; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f10002c; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f10002d; + public static final int Base_TextAppearance_AppCompat_Small=0x7f10002e; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f10002f; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f100030; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f100031; + public static final int Base_TextAppearance_AppCompat_Title=0x7f100032; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f100033; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f100034; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f100035; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f100036; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f100037; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f100038; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f100039; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f10003a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f10003b; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f10003c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f10003d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f10003e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f10003f; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f100040; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f100041; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f100042; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f100043; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f100044; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f100045; + public static final int Base_TextAppearance_Material3_Search=0x7f100046; + public static final int Base_TextAppearance_MaterialComponents_Badge=0x7f100047; + public static final int Base_TextAppearance_MaterialComponents_Button=0x7f100048; + public static final int Base_TextAppearance_MaterialComponents_Headline6=0x7f100049; + public static final int Base_TextAppearance_MaterialComponents_Subtitle2=0x7f10004a; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f10004b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f10004c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f10004d; + public static final int Base_Theme_AppCompat=0x7f10004e; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f10004f; + public static final int Base_Theme_AppCompat_Dialog=0x7f100050; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f100051; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f100052; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f100053; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f100054; + public static final int Base_Theme_AppCompat_Light=0x7f100055; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f100056; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f100057; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f100058; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f100059; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f10005a; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f10005b; + public static final int Base_Theme_Material3_Dark=0x7f10005c; + public static final int Base_Theme_Material3_Dark_BottomSheetDialog=0x7f10005d; + public static final int Base_Theme_Material3_Dark_Dialog=0x7f10005e; + public static final int Base_Theme_Material3_Dark_Dialog_FixedSize=0x7f10005f; + public static final int Base_Theme_Material3_Dark_DialogWhenLarge=0x7f100060; + public static final int Base_Theme_Material3_Dark_SideSheetDialog=0x7f100061; + public static final int Base_Theme_Material3_Light=0x7f100062; + public static final int Base_Theme_Material3_Light_BottomSheetDialog=0x7f100063; + public static final int Base_Theme_Material3_Light_Dialog=0x7f100064; + public static final int Base_Theme_Material3_Light_Dialog_FixedSize=0x7f100065; + public static final int Base_Theme_Material3_Light_DialogWhenLarge=0x7f100066; + public static final int Base_Theme_Material3_Light_SideSheetDialog=0x7f100067; + public static final int Base_Theme_MaterialComponents=0x7f100068; + public static final int Base_Theme_MaterialComponents_Bridge=0x7f100069; + public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f10006a; + public static final int Base_Theme_MaterialComponents_Dialog=0x7f10006b; + public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f10006c; + public static final int Base_Theme_MaterialComponents_Dialog_Bridge=0x7f10006d; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f10006e; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f10006f; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f100070; + public static final int Base_Theme_MaterialComponents_Light=0x7f100071; + public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f100072; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f100073; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f100074; + public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f100075; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f100076; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Bridge=0x7f100077; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f100078; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f100079; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f10007a; + public static final int Base_ThemeOverlay_AppCompat=0x7f10007b; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f10007c; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f10007d; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f10007e; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f10007f; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f100080; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f100081; + public static final int Base_ThemeOverlay_Material3_AutoCompleteTextView=0x7f100082; + public static final int Base_ThemeOverlay_Material3_BottomSheetDialog=0x7f100083; + public static final int Base_ThemeOverlay_Material3_Dialog=0x7f100084; + public static final int Base_ThemeOverlay_Material3_SideSheetDialog=0x7f100085; + public static final int Base_ThemeOverlay_Material3_TextInputEditText=0x7f100086; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f100087; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f100088; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework=0x7f100089; + public static final int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework=0x7f10008a; + public static final int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog=0x7f10008b; + public static final int Base_V14_Theme_Material3_Dark=0x7f10008c; + public static final int Base_V14_Theme_Material3_Dark_BottomSheetDialog=0x7f10008d; + public static final int Base_V14_Theme_Material3_Dark_Dialog=0x7f10008e; + public static final int Base_V14_Theme_Material3_Dark_SideSheetDialog=0x7f10008f; + public static final int Base_V14_Theme_Material3_Light=0x7f100090; + public static final int Base_V14_Theme_Material3_Light_BottomSheetDialog=0x7f100091; + public static final int Base_V14_Theme_Material3_Light_Dialog=0x7f100092; + public static final int Base_V14_Theme_Material3_Light_SideSheetDialog=0x7f100093; + public static final int Base_V14_Theme_MaterialComponents=0x7f100094; + public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f100095; + public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f100096; + public static final int Base_V14_Theme_MaterialComponents_Dialog_Bridge=0x7f100097; + public static final int Base_V14_Theme_MaterialComponents_Light=0x7f100098; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f100099; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f10009a; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f10009b; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge=0x7f10009c; + public static final int Base_V14_ThemeOverlay_Material3_BottomSheetDialog=0x7f10009d; + public static final int Base_V14_ThemeOverlay_Material3_SideSheetDialog=0x7f10009e; + public static final int Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog=0x7f10009f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f1000a0; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f1000a1; + public static final int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog=0x7f1000a2; + public static final int Base_V14_Widget_MaterialComponents_AutoCompleteTextView=0x7f1000a3; + public static final int Base_V21_Theme_AppCompat=0x7f1000a4; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f1000a5; + public static final int Base_V21_Theme_AppCompat_Light=0x7f1000a6; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f1000a7; + public static final int Base_V21_Theme_MaterialComponents=0x7f1000a8; + public static final int Base_V21_Theme_MaterialComponents_Dialog=0x7f1000a9; + public static final int Base_V21_Theme_MaterialComponents_Light=0x7f1000aa; + public static final int Base_V21_Theme_MaterialComponents_Light_Dialog=0x7f1000ab; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f1000ac; + public static final int Base_V21_ThemeOverlay_Material3_BottomSheetDialog=0x7f1000ad; + public static final int Base_V21_ThemeOverlay_Material3_SideSheetDialog=0x7f1000ae; + public static final int Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog=0x7f1000af; + public static final int Base_V22_Theme_AppCompat=0x7f1000b0; + public static final int Base_V22_Theme_AppCompat_Light=0x7f1000b1; + public static final int Base_V23_Theme_AppCompat=0x7f1000b2; + public static final int Base_V23_Theme_AppCompat_Light=0x7f1000b3; + public static final int Base_V24_Theme_Material3_Dark=0x7f1000b4; + public static final int Base_V24_Theme_Material3_Dark_Dialog=0x7f1000b5; + public static final int Base_V24_Theme_Material3_Light=0x7f1000b6; + public static final int Base_V24_Theme_Material3_Light_Dialog=0x7f1000b7; + public static final int Base_V26_Theme_AppCompat=0x7f1000b8; + public static final int Base_V26_Theme_AppCompat_Light=0x7f1000b9; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f1000ba; + public static final int Base_V28_Theme_AppCompat=0x7f1000bb; + public static final int Base_V28_Theme_AppCompat_Light=0x7f1000bc; + public static final int Base_V7_Theme_AppCompat=0x7f1000bd; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f1000be; + public static final int Base_V7_Theme_AppCompat_Light=0x7f1000bf; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f1000c0; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f1000c1; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f1000c2; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f1000c3; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f1000c4; + public static final int Base_Widget_AppCompat_ActionBar=0x7f1000c5; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f1000c6; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f1000c7; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f1000c8; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f1000c9; + public static final int Base_Widget_AppCompat_ActionButton=0x7f1000ca; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f1000cb; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f1000cc; + public static final int Base_Widget_AppCompat_ActionMode=0x7f1000cd; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f1000ce; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f1000cf; + public static final int Base_Widget_AppCompat_Button=0x7f1000d0; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f1000d1; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f1000d2; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f1000d3; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f1000d4; + public static final int Base_Widget_AppCompat_Button_Small=0x7f1000d5; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f1000d6; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f1000d7; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f1000d8; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f1000d9; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f1000da; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f1000db; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f1000dc; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f1000dd; + public static final int Base_Widget_AppCompat_EditText=0x7f1000de; + public static final int Base_Widget_AppCompat_ImageButton=0x7f1000df; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f1000e0; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f1000e1; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f1000e2; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f1000e3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f1000e4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f1000e5; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f1000e6; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f1000e7; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f1000e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f1000e9; + public static final int Base_Widget_AppCompat_ListView=0x7f1000ea; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f1000eb; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f1000ec; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f1000ed; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f1000ee; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f1000ef; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f1000f0; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f1000f1; + public static final int Base_Widget_AppCompat_RatingBar=0x7f1000f2; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f1000f3; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f1000f4; + public static final int Base_Widget_AppCompat_SearchView=0x7f1000f5; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f1000f6; + public static final int Base_Widget_AppCompat_SeekBar=0x7f1000f7; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f1000f8; + public static final int Base_Widget_AppCompat_Spinner=0x7f1000f9; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f1000fa; + public static final int Base_Widget_AppCompat_TextView=0x7f1000fb; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f1000fc; + public static final int Base_Widget_AppCompat_Toolbar=0x7f1000fd; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f1000fe; + public static final int Base_Widget_Design_TabLayout=0x7f1000ff; + public static final int Base_Widget_Material3_ActionBar_Solid=0x7f100100; + public static final int Base_Widget_Material3_ActionMode=0x7f100101; + public static final int Base_Widget_Material3_BottomNavigationView=0x7f100102; + public static final int Base_Widget_Material3_CardView=0x7f100103; + public static final int Base_Widget_Material3_Chip=0x7f100104; + public static final int Base_Widget_Material3_CollapsingToolbar=0x7f100105; + public static final int Base_Widget_Material3_CompoundButton_CheckBox=0x7f100106; + public static final int Base_Widget_Material3_CompoundButton_RadioButton=0x7f100107; + public static final int Base_Widget_Material3_CompoundButton_Switch=0x7f100108; + public static final int Base_Widget_Material3_ExtendedFloatingActionButton=0x7f100109; + public static final int Base_Widget_Material3_ExtendedFloatingActionButton_Icon=0x7f10010a; + public static final int Base_Widget_Material3_FloatingActionButton=0x7f10010b; + public static final int Base_Widget_Material3_FloatingActionButton_Large=0x7f10010c; + public static final int Base_Widget_Material3_FloatingActionButton_Small=0x7f10010d; + public static final int Base_Widget_Material3_Light_ActionBar_Solid=0x7f10010e; + public static final int Base_Widget_Material3_MaterialCalendar_NavigationButton=0x7f10010f; + public static final int Base_Widget_Material3_Snackbar=0x7f100110; + public static final int Base_Widget_Material3_TabLayout=0x7f100111; + public static final int Base_Widget_Material3_TabLayout_OnSurface=0x7f100112; + public static final int Base_Widget_Material3_TabLayout_Secondary=0x7f100113; + public static final int Base_Widget_MaterialComponents_AutoCompleteTextView=0x7f100114; + public static final int Base_Widget_MaterialComponents_CheckedTextView=0x7f100115; + public static final int Base_Widget_MaterialComponents_Chip=0x7f100116; + public static final int Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton=0x7f100117; + public static final int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton=0x7f100118; + public static final int Base_Widget_MaterialComponents_PopupMenu=0x7f100119; + public static final int Base_Widget_MaterialComponents_PopupMenu_ContextMenu=0x7f10011a; + public static final int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow=0x7f10011b; + public static final int Base_Widget_MaterialComponents_PopupMenu_Overflow=0x7f10011c; + public static final int Base_Widget_MaterialComponents_Slider=0x7f10011d; + public static final int Base_Widget_MaterialComponents_Snackbar=0x7f10011e; + public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f10011f; + public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f100120; + public static final int Base_Widget_MaterialComponents_TextView=0x7f100121; + public static final int CardView=0x7f100122; + public static final int CardView_Dark=0x7f100123; + public static final int CardView_Light=0x7f100124; + /** + * Themes for Xamarin.Forms backwards compatibility + */ + public static final int MainTheme=0x7f100125; + public static final int MainTheme_Base=0x7f100126; + public static final int MainTheme_NoActionBar=0x7f100127; + public static final int MaterialAlertDialog_Material3=0x7f100128; + public static final int MaterialAlertDialog_Material3_Animation=0x7f100129; + public static final int MaterialAlertDialog_Material3_Body_Text=0x7f10012a; + public static final int MaterialAlertDialog_Material3_Body_Text_CenterStacked=0x7f10012b; + public static final int MaterialAlertDialog_Material3_Title_Icon=0x7f10012c; + public static final int MaterialAlertDialog_Material3_Title_Icon_CenterStacked=0x7f10012d; + public static final int MaterialAlertDialog_Material3_Title_Panel=0x7f10012e; + public static final int MaterialAlertDialog_Material3_Title_Panel_CenterStacked=0x7f10012f; + public static final int MaterialAlertDialog_Material3_Title_Text=0x7f100130; + public static final int MaterialAlertDialog_Material3_Title_Text_CenterStacked=0x7f100131; + public static final int MaterialAlertDialog_MaterialComponents=0x7f100132; + public static final int MaterialAlertDialog_MaterialComponents_Body_Text=0x7f100133; + public static final int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar=0x7f100134; + public static final int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner=0x7f100135; + public static final int MaterialAlertDialog_MaterialComponents_Title_Icon=0x7f100136; + public static final int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked=0x7f100137; + public static final int MaterialAlertDialog_MaterialComponents_Title_Panel=0x7f100138; + public static final int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked=0x7f100139; + public static final int MaterialAlertDialog_MaterialComponents_Title_Text=0x7f10013a; + public static final int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked=0x7f10013b; + public static final int Maui_MainTheme=0x7f10013c; + /** + * Base application theme. + */ + public static final int Maui_MainTheme_Base=0x7f10013d; + public static final int Maui_MainTheme_NoActionBar=0x7f10013e; + /** + * Splash theme + * Splash theme + */ + public static final int Maui_SplashTheme=0x7f10013f; + public static final int MauiAlertDialogTheme=0x7f100140; + public static final int MauiCheckBox=0x7f100141; + public static final int MauiMaterialButton=0x7f100142; + public static final int Platform_AppCompat=0x7f100143; + public static final int Platform_AppCompat_Light=0x7f100144; + public static final int Platform_MaterialComponents=0x7f100145; + public static final int Platform_MaterialComponents_Dialog=0x7f100146; + public static final int Platform_MaterialComponents_Light=0x7f100147; + public static final int Platform_MaterialComponents_Light_Dialog=0x7f100148; + public static final int Platform_ThemeOverlay_AppCompat=0x7f100149; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f10014a; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f10014b; + public static final int Platform_V21_AppCompat=0x7f10014c; + public static final int Platform_V21_AppCompat_Light=0x7f10014d; + public static final int Platform_V25_AppCompat=0x7f10014e; + public static final int Platform_V25_AppCompat_Light=0x7f10014f; + public static final int Platform_Widget_AppCompat_Spinner=0x7f100150; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f100151; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f100152; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f100153; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f100154; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f100155; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f100156; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f100157; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f100158; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f100159; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f10015a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f10015b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f10015c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f10015d; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f10015e; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f10015f; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f100160; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f100161; + public static final int ShapeAppearance_M3_Comp_Badge_Large_Shape=0x7f100162; + public static final int ShapeAppearance_M3_Comp_Badge_Shape=0x7f100163; + public static final int ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape=0x7f100164; + public static final int ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape=0x7f100165; + public static final int ShapeAppearance_M3_Comp_FilledButton_Container_Shape=0x7f100166; + public static final int ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape=0x7f100167; + public static final int ShapeAppearance_M3_Comp_NavigationBar_Container_Shape=0x7f100168; + public static final int ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape=0x7f100169; + public static final int ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape=0x7f10016a; + public static final int ShapeAppearance_M3_Comp_NavigationRail_Container_Shape=0x7f10016b; + public static final int ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape=0x7f10016c; + public static final int ShapeAppearance_M3_Comp_SearchBar_Container_Shape=0x7f10016d; + public static final int ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape=0x7f10016e; + public static final int ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape=0x7f10016f; + public static final int ShapeAppearance_M3_Comp_Switch_Handle_Shape=0x7f100170; + public static final int ShapeAppearance_M3_Comp_Switch_StateLayer_Shape=0x7f100171; + public static final int ShapeAppearance_M3_Comp_Switch_Track_Shape=0x7f100172; + public static final int ShapeAppearance_M3_Comp_TextButton_Container_Shape=0x7f100173; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge=0x7f100174; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall=0x7f100175; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Full=0x7f100176; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Large=0x7f100177; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Medium=0x7f100178; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_None=0x7f100179; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Small=0x7f10017a; + public static final int ShapeAppearance_Material3_Corner_ExtraLarge=0x7f10017b; + public static final int ShapeAppearance_Material3_Corner_ExtraSmall=0x7f10017c; + public static final int ShapeAppearance_Material3_Corner_Full=0x7f10017d; + public static final int ShapeAppearance_Material3_Corner_Large=0x7f10017e; + public static final int ShapeAppearance_Material3_Corner_Medium=0x7f10017f; + public static final int ShapeAppearance_Material3_Corner_None=0x7f100180; + public static final int ShapeAppearance_Material3_Corner_Small=0x7f100181; + public static final int ShapeAppearance_Material3_LargeComponent=0x7f100182; + public static final int ShapeAppearance_Material3_MediumComponent=0x7f100183; + public static final int ShapeAppearance_Material3_NavigationBarView_ActiveIndicator=0x7f100184; + public static final int ShapeAppearance_Material3_SmallComponent=0x7f100185; + public static final int ShapeAppearance_Material3_Tooltip=0x7f100186; + public static final int ShapeAppearance_MaterialComponents=0x7f100187; + public static final int ShapeAppearance_MaterialComponents_Badge=0x7f100188; + public static final int ShapeAppearance_MaterialComponents_LargeComponent=0x7f100189; + public static final int ShapeAppearance_MaterialComponents_MediumComponent=0x7f10018a; + public static final int ShapeAppearance_MaterialComponents_SmallComponent=0x7f10018b; + public static final int ShapeAppearance_MaterialComponents_Tooltip=0x7f10018c; + public static final int ShapeAppearanceOverlay_Material3_Button=0x7f10018d; + public static final int ShapeAppearanceOverlay_Material3_Chip=0x7f10018e; + public static final int ShapeAppearanceOverlay_Material3_Corner_Bottom=0x7f10018f; + public static final int ShapeAppearanceOverlay_Material3_Corner_Left=0x7f100190; + public static final int ShapeAppearanceOverlay_Material3_Corner_Right=0x7f100191; + public static final int ShapeAppearanceOverlay_Material3_Corner_Top=0x7f100192; + public static final int ShapeAppearanceOverlay_Material3_FloatingActionButton=0x7f100193; + public static final int ShapeAppearanceOverlay_Material3_NavigationView_Item=0x7f100194; + public static final int ShapeAppearanceOverlay_Material3_SearchBar=0x7f100195; + public static final int ShapeAppearanceOverlay_Material3_SearchView=0x7f100196; + public static final int ShapeAppearanceOverlay_MaterialAlertDialog_Material3=0x7f100197; + public static final int ShapeAppearanceOverlay_MaterialComponents_BottomSheet=0x7f100198; + public static final int ShapeAppearanceOverlay_MaterialComponents_Chip=0x7f100199; + public static final int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton=0x7f10019a; + public static final int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton=0x7f10019b; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day=0x7f10019c; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen=0x7f10019d; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year=0x7f10019e; + public static final int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox=0x7f10019f; + public static final int TextAppearance_AppCompat=0x7f1001a0; + public static final int TextAppearance_AppCompat_Body1=0x7f1001a1; + public static final int TextAppearance_AppCompat_Body2=0x7f1001a2; + public static final int TextAppearance_AppCompat_Button=0x7f1001a3; + public static final int TextAppearance_AppCompat_Caption=0x7f1001a4; + public static final int TextAppearance_AppCompat_Display1=0x7f1001a5; + public static final int TextAppearance_AppCompat_Display2=0x7f1001a6; + public static final int TextAppearance_AppCompat_Display3=0x7f1001a7; + public static final int TextAppearance_AppCompat_Display4=0x7f1001a8; + public static final int TextAppearance_AppCompat_Headline=0x7f1001a9; + public static final int TextAppearance_AppCompat_Inverse=0x7f1001aa; + public static final int TextAppearance_AppCompat_Large=0x7f1001ab; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f1001ac; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f1001ad; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f1001ae; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f1001af; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f1001b0; + public static final int TextAppearance_AppCompat_Medium=0x7f1001b1; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f1001b2; + public static final int TextAppearance_AppCompat_Menu=0x7f1001b3; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f1001b4; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f1001b5; + public static final int TextAppearance_AppCompat_Small=0x7f1001b6; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f1001b7; + public static final int TextAppearance_AppCompat_Subhead=0x7f1001b8; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f1001b9; + public static final int TextAppearance_AppCompat_Title=0x7f1001ba; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f1001bb; + public static final int TextAppearance_AppCompat_Tooltip=0x7f1001bc; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f1001bd; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f1001be; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f1001bf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f1001c0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f1001c1; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f1001c2; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f1001c3; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f1001c4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f1001c5; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f1001c6; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f1001c7; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f1001c8; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f1001c9; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f1001ca; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f1001cb; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f1001cc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f1001cd; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f1001ce; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f1001cf; + public static final int TextAppearance_Compat_Notification=0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info=0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2=0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time=0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title=0x7f1001d4; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f1001d5; + public static final int TextAppearance_Design_Counter=0x7f1001d6; + public static final int TextAppearance_Design_Counter_Overflow=0x7f1001d7; + public static final int TextAppearance_Design_Error=0x7f1001d8; + public static final int TextAppearance_Design_HelperText=0x7f1001d9; + public static final int TextAppearance_Design_Hint=0x7f1001da; + public static final int TextAppearance_Design_Placeholder=0x7f1001db; + public static final int TextAppearance_Design_Prefix=0x7f1001dc; + public static final int TextAppearance_Design_Snackbar_Message=0x7f1001dd; + public static final int TextAppearance_Design_Suffix=0x7f1001de; + public static final int TextAppearance_Design_Tab=0x7f1001df; + public static final int TextAppearance_M3_Sys_Typescale_BodyLarge=0x7f1001e0; + public static final int TextAppearance_M3_Sys_Typescale_BodyMedium=0x7f1001e1; + public static final int TextAppearance_M3_Sys_Typescale_BodySmall=0x7f1001e2; + public static final int TextAppearance_M3_Sys_Typescale_DisplayLarge=0x7f1001e3; + public static final int TextAppearance_M3_Sys_Typescale_DisplayMedium=0x7f1001e4; + public static final int TextAppearance_M3_Sys_Typescale_DisplaySmall=0x7f1001e5; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineLarge=0x7f1001e6; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineMedium=0x7f1001e7; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineSmall=0x7f1001e8; + public static final int TextAppearance_M3_Sys_Typescale_LabelLarge=0x7f1001e9; + public static final int TextAppearance_M3_Sys_Typescale_LabelMedium=0x7f1001ea; + public static final int TextAppearance_M3_Sys_Typescale_LabelSmall=0x7f1001eb; + public static final int TextAppearance_M3_Sys_Typescale_TitleLarge=0x7f1001ec; + public static final int TextAppearance_M3_Sys_Typescale_TitleMedium=0x7f1001ed; + public static final int TextAppearance_M3_Sys_Typescale_TitleSmall=0x7f1001ee; + public static final int TextAppearance_Material3_ActionBar_Subtitle=0x7f1001ef; + public static final int TextAppearance_Material3_ActionBar_Title=0x7f1001f0; + public static final int TextAppearance_Material3_BodyLarge=0x7f1001f1; + public static final int TextAppearance_Material3_BodyMedium=0x7f1001f2; + public static final int TextAppearance_Material3_BodySmall=0x7f1001f3; + public static final int TextAppearance_Material3_DisplayLarge=0x7f1001f4; + public static final int TextAppearance_Material3_DisplayMedium=0x7f1001f5; + public static final int TextAppearance_Material3_DisplaySmall=0x7f1001f6; + public static final int TextAppearance_Material3_HeadlineLarge=0x7f1001f7; + public static final int TextAppearance_Material3_HeadlineMedium=0x7f1001f8; + public static final int TextAppearance_Material3_HeadlineSmall=0x7f1001f9; + public static final int TextAppearance_Material3_LabelLarge=0x7f1001fa; + public static final int TextAppearance_Material3_LabelMedium=0x7f1001fb; + public static final int TextAppearance_Material3_LabelSmall=0x7f1001fc; + public static final int TextAppearance_Material3_MaterialTimePicker_Title=0x7f1001fd; + public static final int TextAppearance_Material3_SearchBar=0x7f1001fe; + public static final int TextAppearance_Material3_SearchView=0x7f1001ff; + public static final int TextAppearance_Material3_SearchView_Prefix=0x7f100200; + public static final int TextAppearance_Material3_TitleLarge=0x7f100201; + public static final int TextAppearance_Material3_TitleMedium=0x7f100202; + public static final int TextAppearance_Material3_TitleSmall=0x7f100203; + public static final int TextAppearance_MaterialComponents_Badge=0x7f100204; + public static final int TextAppearance_MaterialComponents_Body1=0x7f100205; + public static final int TextAppearance_MaterialComponents_Body2=0x7f100206; + public static final int TextAppearance_MaterialComponents_Button=0x7f100207; + public static final int TextAppearance_MaterialComponents_Caption=0x7f100208; + public static final int TextAppearance_MaterialComponents_Chip=0x7f100209; + public static final int TextAppearance_MaterialComponents_Headline1=0x7f10020a; + public static final int TextAppearance_MaterialComponents_Headline2=0x7f10020b; + public static final int TextAppearance_MaterialComponents_Headline3=0x7f10020c; + public static final int TextAppearance_MaterialComponents_Headline4=0x7f10020d; + public static final int TextAppearance_MaterialComponents_Headline5=0x7f10020e; + public static final int TextAppearance_MaterialComponents_Headline6=0x7f10020f; + public static final int TextAppearance_MaterialComponents_Overline=0x7f100210; + public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f100211; + public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f100212; + public static final int TextAppearance_MaterialComponents_TimePicker_Title=0x7f100213; + public static final int TextAppearance_MaterialComponents_Tooltip=0x7f100214; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f100215; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f100216; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f100217; + public static final int Theme_AppCompat=0x7f100218; + public static final int Theme_AppCompat_CompactMenu=0x7f100219; + public static final int Theme_AppCompat_DayNight=0x7f10021a; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f10021b; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f10021c; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f10021d; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f10021e; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f10021f; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f100220; + public static final int Theme_AppCompat_Dialog=0x7f100221; + public static final int Theme_AppCompat_Dialog_Alert=0x7f100222; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f100223; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f100224; + public static final int Theme_AppCompat_Empty=0x7f100225; + public static final int Theme_AppCompat_Light=0x7f100226; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f100227; + public static final int Theme_AppCompat_Light_Dialog=0x7f100228; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f100229; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f10022a; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f10022b; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f10022c; + public static final int Theme_AppCompat_NoActionBar=0x7f10022d; + public static final int Theme_Design=0x7f10022e; + public static final int Theme_Design_BottomSheetDialog=0x7f10022f; + public static final int Theme_Design_Light=0x7f100230; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f100231; + public static final int Theme_Design_Light_NoActionBar=0x7f100232; + public static final int Theme_Design_NoActionBar=0x7f100233; + public static final int Theme_Material3_Dark=0x7f100234; + public static final int Theme_Material3_Dark_BottomSheetDialog=0x7f100235; + public static final int Theme_Material3_Dark_Dialog=0x7f100236; + public static final int Theme_Material3_Dark_Dialog_Alert=0x7f100237; + public static final int Theme_Material3_Dark_Dialog_MinWidth=0x7f100238; + public static final int Theme_Material3_Dark_DialogWhenLarge=0x7f100239; + public static final int Theme_Material3_Dark_NoActionBar=0x7f10023a; + public static final int Theme_Material3_Dark_SideSheetDialog=0x7f10023b; + public static final int Theme_Material3_DayNight=0x7f10023c; + public static final int Theme_Material3_DayNight_BottomSheetDialog=0x7f10023d; + public static final int Theme_Material3_DayNight_Dialog=0x7f10023e; + public static final int Theme_Material3_DayNight_Dialog_Alert=0x7f10023f; + public static final int Theme_Material3_DayNight_Dialog_MinWidth=0x7f100240; + public static final int Theme_Material3_DayNight_DialogWhenLarge=0x7f100241; + public static final int Theme_Material3_DayNight_NoActionBar=0x7f100242; + public static final int Theme_Material3_DayNight_SideSheetDialog=0x7f100243; + public static final int Theme_Material3_DynamicColors_Dark=0x7f100244; + public static final int Theme_Material3_DynamicColors_Dark_NoActionBar=0x7f100245; + public static final int Theme_Material3_DynamicColors_DayNight=0x7f100246; + public static final int Theme_Material3_DynamicColors_DayNight_NoActionBar=0x7f100247; + public static final int Theme_Material3_DynamicColors_Light=0x7f100248; + public static final int Theme_Material3_DynamicColors_Light_NoActionBar=0x7f100249; + public static final int Theme_Material3_Light=0x7f10024a; + public static final int Theme_Material3_Light_BottomSheetDialog=0x7f10024b; + public static final int Theme_Material3_Light_Dialog=0x7f10024c; + public static final int Theme_Material3_Light_Dialog_Alert=0x7f10024d; + public static final int Theme_Material3_Light_Dialog_MinWidth=0x7f10024e; + public static final int Theme_Material3_Light_DialogWhenLarge=0x7f10024f; + public static final int Theme_Material3_Light_NoActionBar=0x7f100250; + public static final int Theme_Material3_Light_SideSheetDialog=0x7f100251; + public static final int Theme_MaterialComponents=0x7f100252; + public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f100253; + public static final int Theme_MaterialComponents_Bridge=0x7f100254; + public static final int Theme_MaterialComponents_CompactMenu=0x7f100255; + public static final int Theme_MaterialComponents_DayNight=0x7f100256; + public static final int Theme_MaterialComponents_DayNight_BottomSheetDialog=0x7f100257; + public static final int Theme_MaterialComponents_DayNight_Bridge=0x7f100258; + public static final int Theme_MaterialComponents_DayNight_DarkActionBar=0x7f100259; + public static final int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge=0x7f10025a; + public static final int Theme_MaterialComponents_DayNight_Dialog=0x7f10025b; + public static final int Theme_MaterialComponents_DayNight_Dialog_Alert=0x7f10025c; + public static final int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge=0x7f10025d; + public static final int Theme_MaterialComponents_DayNight_Dialog_Bridge=0x7f10025e; + public static final int Theme_MaterialComponents_DayNight_Dialog_FixedSize=0x7f10025f; + public static final int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge=0x7f100260; + public static final int Theme_MaterialComponents_DayNight_Dialog_MinWidth=0x7f100261; + public static final int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge=0x7f100262; + public static final int Theme_MaterialComponents_DayNight_DialogWhenLarge=0x7f100263; + public static final int Theme_MaterialComponents_DayNight_NoActionBar=0x7f100264; + public static final int Theme_MaterialComponents_DayNight_NoActionBar_Bridge=0x7f100265; + public static final int Theme_MaterialComponents_Dialog=0x7f100266; + public static final int Theme_MaterialComponents_Dialog_Alert=0x7f100267; + public static final int Theme_MaterialComponents_Dialog_Alert_Bridge=0x7f100268; + public static final int Theme_MaterialComponents_Dialog_Bridge=0x7f100269; + public static final int Theme_MaterialComponents_Dialog_FixedSize=0x7f10026a; + public static final int Theme_MaterialComponents_Dialog_FixedSize_Bridge=0x7f10026b; + public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f10026c; + public static final int Theme_MaterialComponents_Dialog_MinWidth_Bridge=0x7f10026d; + public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f10026e; + public static final int Theme_MaterialComponents_Light=0x7f10026f; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f100270; + public static final int Theme_MaterialComponents_Light_Bridge=0x7f100271; + public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f100272; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f100273; + public static final int Theme_MaterialComponents_Light_Dialog=0x7f100274; + public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f100275; + public static final int Theme_MaterialComponents_Light_Dialog_Alert_Bridge=0x7f100276; + public static final int Theme_MaterialComponents_Light_Dialog_Bridge=0x7f100277; + public static final int Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f100278; + public static final int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge=0x7f100279; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f10027a; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge=0x7f10027b; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f10027c; + public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f10027d; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f10027e; + public static final int Theme_MaterialComponents_NoActionBar=0x7f10027f; + public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f100280; + public static final int ThemeOverlay_AppCompat=0x7f100281; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f100282; + public static final int ThemeOverlay_AppCompat_Dark=0x7f100283; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f100284; + public static final int ThemeOverlay_AppCompat_DayNight=0x7f100285; + public static final int ThemeOverlay_AppCompat_DayNight_ActionBar=0x7f100286; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f100287; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f100288; + public static final int ThemeOverlay_AppCompat_Light=0x7f100289; + public static final int ThemeOverlay_Design_TextInputEditText=0x7f10028a; + public static final int ThemeOverlay_Material3=0x7f10028b; + public static final int ThemeOverlay_Material3_ActionBar=0x7f10028c; + public static final int ThemeOverlay_Material3_AutoCompleteTextView=0x7f10028d; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox=0x7f10028e; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense=0x7f10028f; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox=0x7f100290; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense=0x7f100291; + public static final int ThemeOverlay_Material3_BottomAppBar=0x7f100292; + public static final int ThemeOverlay_Material3_BottomAppBar_Legacy=0x7f100293; + public static final int ThemeOverlay_Material3_BottomNavigationView=0x7f100294; + public static final int ThemeOverlay_Material3_BottomSheetDialog=0x7f100295; + public static final int ThemeOverlay_Material3_Button=0x7f100296; + public static final int ThemeOverlay_Material3_Button_ElevatedButton=0x7f100297; + public static final int ThemeOverlay_Material3_Button_IconButton=0x7f100298; + public static final int ThemeOverlay_Material3_Button_IconButton_Filled=0x7f100299; + public static final int ThemeOverlay_Material3_Button_IconButton_Filled_Tonal=0x7f10029a; + public static final int ThemeOverlay_Material3_Button_TextButton=0x7f10029b; + public static final int ThemeOverlay_Material3_Button_TextButton_Snackbar=0x7f10029c; + public static final int ThemeOverlay_Material3_Button_TonalButton=0x7f10029d; + public static final int ThemeOverlay_Material3_Chip=0x7f10029e; + public static final int ThemeOverlay_Material3_Chip_Assist=0x7f10029f; + public static final int ThemeOverlay_Material3_Dark=0x7f1002a0; + public static final int ThemeOverlay_Material3_Dark_ActionBar=0x7f1002a1; + public static final int ThemeOverlay_Material3_DayNight_BottomSheetDialog=0x7f1002a2; + public static final int ThemeOverlay_Material3_DayNight_SideSheetDialog=0x7f1002a3; + public static final int ThemeOverlay_Material3_Dialog=0x7f1002a4; + public static final int ThemeOverlay_Material3_Dialog_Alert=0x7f1002a5; + public static final int ThemeOverlay_Material3_Dialog_Alert_Framework=0x7f1002a6; + public static final int ThemeOverlay_Material3_DynamicColors_Dark=0x7f1002a7; + public static final int ThemeOverlay_Material3_DynamicColors_DayNight=0x7f1002a8; + public static final int ThemeOverlay_Material3_DynamicColors_Light=0x7f1002a9; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary=0x7f1002aa; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary=0x7f1002ab; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface=0x7f1002ac; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary=0x7f1002ad; + public static final int ThemeOverlay_Material3_FloatingActionButton_Primary=0x7f1002ae; + public static final int ThemeOverlay_Material3_FloatingActionButton_Secondary=0x7f1002af; + public static final int ThemeOverlay_Material3_FloatingActionButton_Surface=0x7f1002b0; + public static final int ThemeOverlay_Material3_FloatingActionButton_Tertiary=0x7f1002b1; + public static final int ThemeOverlay_Material3_HarmonizedColors=0x7f1002b2; + public static final int ThemeOverlay_Material3_HarmonizedColors_Empty=0x7f1002b3; + public static final int ThemeOverlay_Material3_Light=0x7f1002b4; + public static final int ThemeOverlay_Material3_Light_Dialog_Alert_Framework=0x7f1002b5; + public static final int ThemeOverlay_Material3_MaterialAlertDialog=0x7f1002b6; + public static final int ThemeOverlay_Material3_MaterialAlertDialog_Centered=0x7f1002b7; + public static final int ThemeOverlay_Material3_MaterialCalendar=0x7f1002b8; + public static final int ThemeOverlay_Material3_MaterialCalendar_Fullscreen=0x7f1002b9; + public static final int ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton=0x7f1002ba; + public static final int ThemeOverlay_Material3_MaterialTimePicker=0x7f1002bb; + public static final int ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText=0x7f1002bc; + public static final int ThemeOverlay_Material3_NavigationRailView=0x7f1002bd; + public static final int ThemeOverlay_Material3_NavigationView=0x7f1002be; + public static final int ThemeOverlay_Material3_PersonalizedColors=0x7f1002bf; + public static final int ThemeOverlay_Material3_Search=0x7f1002c0; + public static final int ThemeOverlay_Material3_SideSheetDialog=0x7f1002c1; + public static final int ThemeOverlay_Material3_Snackbar=0x7f1002c2; + public static final int ThemeOverlay_Material3_TabLayout=0x7f1002c3; + public static final int ThemeOverlay_Material3_TextInputEditText=0x7f1002c4; + public static final int ThemeOverlay_Material3_TextInputEditText_FilledBox=0x7f1002c5; + public static final int ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense=0x7f1002c6; + public static final int ThemeOverlay_Material3_TextInputEditText_OutlinedBox=0x7f1002c7; + public static final int ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense=0x7f1002c8; + public static final int ThemeOverlay_Material3_Toolbar_Surface=0x7f1002c9; + public static final int ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon=0x7f1002ca; + public static final int ThemeOverlay_MaterialComponents=0x7f1002cb; + public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f1002cc; + public static final int ThemeOverlay_MaterialComponents_ActionBar_Primary=0x7f1002cd; + public static final int ThemeOverlay_MaterialComponents_ActionBar_Surface=0x7f1002ce; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView=0x7f1002cf; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox=0x7f1002d0; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense=0x7f1002d1; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox=0x7f1002d2; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense=0x7f1002d3; + public static final int ThemeOverlay_MaterialComponents_BottomAppBar_Primary=0x7f1002d4; + public static final int ThemeOverlay_MaterialComponents_BottomAppBar_Surface=0x7f1002d5; + public static final int ThemeOverlay_MaterialComponents_BottomSheetDialog=0x7f1002d6; + public static final int ThemeOverlay_MaterialComponents_Dark=0x7f1002d7; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f1002d8; + public static final int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog=0x7f1002d9; + public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f1002da; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f1002db; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework=0x7f1002dc; + public static final int ThemeOverlay_MaterialComponents_Light=0x7f1002dd; + public static final int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework=0x7f1002de; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog=0x7f1002df; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered=0x7f1002e0; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date=0x7f1002e1; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar=0x7f1002e2; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text=0x7f1002e3; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day=0x7f1002e4; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner=0x7f1002e5; + public static final int ThemeOverlay_MaterialComponents_MaterialCalendar=0x7f1002e6; + public static final int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen=0x7f1002e7; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f1002e8; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f1002e9; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f1002ea; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f1002eb; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f1002ec; + public static final int ThemeOverlay_MaterialComponents_TimePicker=0x7f1002ed; + public static final int ThemeOverlay_MaterialComponents_TimePicker_Display=0x7f1002ee; + public static final int ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText=0x7f1002ef; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary=0x7f1002f0; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Primary=0x7f1002f1; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Surface=0x7f1002f2; + public static final int Widget_AppCompat_ActionBar=0x7f1002f3; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f1002f4; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f1002f5; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f1002f6; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f1002f7; + public static final int Widget_AppCompat_ActionButton=0x7f1002f8; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f1002f9; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f1002fa; + public static final int Widget_AppCompat_ActionMode=0x7f1002fb; + public static final int Widget_AppCompat_ActivityChooserView=0x7f1002fc; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f1002fd; + public static final int Widget_AppCompat_Button=0x7f1002fe; + public static final int Widget_AppCompat_Button_Borderless=0x7f1002ff; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f100300; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f100301; + public static final int Widget_AppCompat_Button_Colored=0x7f100302; + public static final int Widget_AppCompat_Button_Small=0x7f100303; + public static final int Widget_AppCompat_ButtonBar=0x7f100304; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f100305; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f100306; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f100307; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f100308; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f100309; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f10030a; + public static final int Widget_AppCompat_EditText=0x7f10030b; + public static final int Widget_AppCompat_ImageButton=0x7f10030c; + public static final int Widget_AppCompat_Light_ActionBar=0x7f10030d; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f10030e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f10030f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f100310; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f100311; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f100312; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f100313; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f100314; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f100315; + public static final int Widget_AppCompat_Light_ActionButton=0x7f100316; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f100317; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f100318; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f100319; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f10031a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f10031b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f10031c; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f10031d; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f10031e; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f10031f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f100320; + public static final int Widget_AppCompat_Light_SearchView=0x7f100321; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f100322; + public static final int Widget_AppCompat_ListMenuView=0x7f100323; + public static final int Widget_AppCompat_ListPopupWindow=0x7f100324; + public static final int Widget_AppCompat_ListView=0x7f100325; + public static final int Widget_AppCompat_ListView_DropDown=0x7f100326; + public static final int Widget_AppCompat_ListView_Menu=0x7f100327; + public static final int Widget_AppCompat_PopupMenu=0x7f100328; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f100329; + public static final int Widget_AppCompat_PopupWindow=0x7f10032a; + public static final int Widget_AppCompat_ProgressBar=0x7f10032b; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f10032c; + public static final int Widget_AppCompat_RatingBar=0x7f10032d; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f10032e; + public static final int Widget_AppCompat_RatingBar_Small=0x7f10032f; + public static final int Widget_AppCompat_SearchView=0x7f100330; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f100331; + public static final int Widget_AppCompat_SeekBar=0x7f100332; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f100333; + public static final int Widget_AppCompat_Spinner=0x7f100334; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f100335; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f100336; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f100337; + public static final int Widget_AppCompat_TextView=0x7f100338; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f100339; + public static final int Widget_AppCompat_Toolbar=0x7f10033a; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f10033b; + public static final int Widget_Compat_NotificationActionContainer=0x7f10033c; + public static final int Widget_Compat_NotificationActionText=0x7f10033d; + public static final int Widget_Design_AppBarLayout=0x7f10033e; + public static final int Widget_Design_BottomNavigationView=0x7f10033f; + public static final int Widget_Design_BottomSheet_Modal=0x7f100340; + public static final int Widget_Design_CollapsingToolbar=0x7f100341; + public static final int Widget_Design_FloatingActionButton=0x7f100342; + public static final int Widget_Design_NavigationView=0x7f100343; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f100344; + public static final int Widget_Design_Snackbar=0x7f100345; + public static final int Widget_Design_TabLayout=0x7f100346; + public static final int Widget_Design_TextInputEditText=0x7f100347; + public static final int Widget_Design_TextInputLayout=0x7f100348; + public static final int Widget_Material3_ActionBar_Solid=0x7f100349; + public static final int Widget_Material3_ActionMode=0x7f10034a; + public static final int Widget_Material3_AppBarLayout=0x7f10034b; + public static final int Widget_Material3_AutoCompleteTextView_FilledBox=0x7f10034c; + public static final int Widget_Material3_AutoCompleteTextView_FilledBox_Dense=0x7f10034d; + public static final int Widget_Material3_AutoCompleteTextView_OutlinedBox=0x7f10034e; + public static final int Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense=0x7f10034f; + public static final int Widget_Material3_Badge=0x7f100350; + public static final int Widget_Material3_Badge_AdjustToBounds=0x7f100351; + public static final int Widget_Material3_BottomAppBar=0x7f100352; + public static final int Widget_Material3_BottomAppBar_Button_Navigation=0x7f100353; + public static final int Widget_Material3_BottomAppBar_Legacy=0x7f100354; + public static final int Widget_Material3_BottomNavigation_Badge=0x7f100355; + public static final int Widget_Material3_BottomNavigationView=0x7f100356; + public static final int Widget_Material3_BottomNavigationView_ActiveIndicator=0x7f100357; + public static final int Widget_Material3_BottomSheet=0x7f100358; + public static final int Widget_Material3_BottomSheet_DragHandle=0x7f100359; + public static final int Widget_Material3_BottomSheet_Modal=0x7f10035a; + public static final int Widget_Material3_Button=0x7f10035b; + public static final int Widget_Material3_Button_ElevatedButton=0x7f10035c; + public static final int Widget_Material3_Button_ElevatedButton_Icon=0x7f10035d; + public static final int Widget_Material3_Button_Icon=0x7f10035e; + public static final int Widget_Material3_Button_IconButton=0x7f10035f; + public static final int Widget_Material3_Button_IconButton_Filled=0x7f100360; + public static final int Widget_Material3_Button_IconButton_Filled_Tonal=0x7f100361; + public static final int Widget_Material3_Button_IconButton_Outlined=0x7f100362; + public static final int Widget_Material3_Button_OutlinedButton=0x7f100363; + public static final int Widget_Material3_Button_OutlinedButton_Icon=0x7f100364; + public static final int Widget_Material3_Button_TextButton=0x7f100365; + public static final int Widget_Material3_Button_TextButton_Dialog=0x7f100366; + public static final int Widget_Material3_Button_TextButton_Dialog_Flush=0x7f100367; + public static final int Widget_Material3_Button_TextButton_Dialog_Icon=0x7f100368; + public static final int Widget_Material3_Button_TextButton_Icon=0x7f100369; + public static final int Widget_Material3_Button_TextButton_Snackbar=0x7f10036a; + public static final int Widget_Material3_Button_TonalButton=0x7f10036b; + public static final int Widget_Material3_Button_TonalButton_Icon=0x7f10036c; + public static final int Widget_Material3_Button_UnelevatedButton=0x7f10036d; + public static final int Widget_Material3_CardView_Elevated=0x7f10036e; + public static final int Widget_Material3_CardView_Filled=0x7f10036f; + public static final int Widget_Material3_CardView_Outlined=0x7f100370; + public static final int Widget_Material3_CheckedTextView=0x7f100371; + public static final int Widget_Material3_Chip_Assist=0x7f100372; + public static final int Widget_Material3_Chip_Assist_Elevated=0x7f100373; + public static final int Widget_Material3_Chip_Filter=0x7f100374; + public static final int Widget_Material3_Chip_Filter_Elevated=0x7f100375; + public static final int Widget_Material3_Chip_Input=0x7f100376; + public static final int Widget_Material3_Chip_Input_Elevated=0x7f100377; + public static final int Widget_Material3_Chip_Input_Icon=0x7f100378; + public static final int Widget_Material3_Chip_Input_Icon_Elevated=0x7f100379; + public static final int Widget_Material3_Chip_Suggestion=0x7f10037a; + public static final int Widget_Material3_Chip_Suggestion_Elevated=0x7f10037b; + public static final int Widget_Material3_ChipGroup=0x7f10037c; + public static final int Widget_Material3_CircularProgressIndicator=0x7f10037d; + public static final int Widget_Material3_CircularProgressIndicator_ExtraSmall=0x7f10037e; + public static final int Widget_Material3_CircularProgressIndicator_Legacy=0x7f10037f; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_ExtraSmall=0x7f100380; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_Medium=0x7f100381; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_Small=0x7f100382; + public static final int Widget_Material3_CircularProgressIndicator_Medium=0x7f100383; + public static final int Widget_Material3_CircularProgressIndicator_Small=0x7f100384; + public static final int Widget_Material3_CollapsingToolbar=0x7f100385; + public static final int Widget_Material3_CollapsingToolbar_Large=0x7f100386; + public static final int Widget_Material3_CollapsingToolbar_Medium=0x7f100387; + public static final int Widget_Material3_CompoundButton_CheckBox=0x7f100388; + public static final int Widget_Material3_CompoundButton_MaterialSwitch=0x7f100389; + public static final int Widget_Material3_CompoundButton_RadioButton=0x7f10038a; + public static final int Widget_Material3_CompoundButton_Switch=0x7f10038b; + public static final int Widget_Material3_DrawerLayout=0x7f10038c; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Primary=0x7f10038d; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary=0x7f10038e; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Surface=0x7f10038f; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary=0x7f100390; + public static final int Widget_Material3_ExtendedFloatingActionButton_Primary=0x7f100391; + public static final int Widget_Material3_ExtendedFloatingActionButton_Secondary=0x7f100392; + public static final int Widget_Material3_ExtendedFloatingActionButton_Surface=0x7f100393; + public static final int Widget_Material3_ExtendedFloatingActionButton_Tertiary=0x7f100394; + public static final int Widget_Material3_FloatingActionButton_Large_Primary=0x7f100395; + public static final int Widget_Material3_FloatingActionButton_Large_Secondary=0x7f100396; + public static final int Widget_Material3_FloatingActionButton_Large_Surface=0x7f100397; + public static final int Widget_Material3_FloatingActionButton_Large_Tertiary=0x7f100398; + public static final int Widget_Material3_FloatingActionButton_Primary=0x7f100399; + public static final int Widget_Material3_FloatingActionButton_Secondary=0x7f10039a; + public static final int Widget_Material3_FloatingActionButton_Small_Primary=0x7f10039b; + public static final int Widget_Material3_FloatingActionButton_Small_Secondary=0x7f10039c; + public static final int Widget_Material3_FloatingActionButton_Small_Surface=0x7f10039d; + public static final int Widget_Material3_FloatingActionButton_Small_Tertiary=0x7f10039e; + public static final int Widget_Material3_FloatingActionButton_Surface=0x7f10039f; + public static final int Widget_Material3_FloatingActionButton_Tertiary=0x7f1003a0; + public static final int Widget_Material3_Light_ActionBar_Solid=0x7f1003a1; + public static final int Widget_Material3_LinearProgressIndicator=0x7f1003a2; + public static final int Widget_Material3_LinearProgressIndicator_Legacy=0x7f1003a3; + public static final int Widget_Material3_MaterialButtonToggleGroup=0x7f1003a4; + public static final int Widget_Material3_MaterialCalendar=0x7f1003a5; + public static final int Widget_Material3_MaterialCalendar_Day=0x7f1003a6; + public static final int Widget_Material3_MaterialCalendar_Day_Invalid=0x7f1003a7; + public static final int Widget_Material3_MaterialCalendar_Day_Selected=0x7f1003a8; + public static final int Widget_Material3_MaterialCalendar_Day_Today=0x7f1003a9; + public static final int Widget_Material3_MaterialCalendar_DayOfWeekLabel=0x7f1003aa; + public static final int Widget_Material3_MaterialCalendar_DayTextView=0x7f1003ab; + public static final int Widget_Material3_MaterialCalendar_Fullscreen=0x7f1003ac; + public static final int Widget_Material3_MaterialCalendar_HeaderCancelButton=0x7f1003ad; + public static final int Widget_Material3_MaterialCalendar_HeaderDivider=0x7f1003ae; + public static final int Widget_Material3_MaterialCalendar_HeaderLayout=0x7f1003af; + public static final int Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen=0x7f1003b0; + public static final int Widget_Material3_MaterialCalendar_HeaderSelection=0x7f1003b1; + public static final int Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen=0x7f1003b2; + public static final int Widget_Material3_MaterialCalendar_HeaderTitle=0x7f1003b3; + public static final int Widget_Material3_MaterialCalendar_HeaderToggleButton=0x7f1003b4; + public static final int Widget_Material3_MaterialCalendar_Item=0x7f1003b5; + public static final int Widget_Material3_MaterialCalendar_MonthNavigationButton=0x7f1003b6; + public static final int Widget_Material3_MaterialCalendar_MonthTextView=0x7f1003b7; + public static final int Widget_Material3_MaterialCalendar_Year=0x7f1003b8; + public static final int Widget_Material3_MaterialCalendar_Year_Selected=0x7f1003b9; + public static final int Widget_Material3_MaterialCalendar_Year_Today=0x7f1003ba; + public static final int Widget_Material3_MaterialCalendar_YearNavigationButton=0x7f1003bb; + public static final int Widget_Material3_MaterialDivider=0x7f1003bc; + public static final int Widget_Material3_MaterialDivider_Heavy=0x7f1003bd; + public static final int Widget_Material3_MaterialTimePicker=0x7f1003be; + public static final int Widget_Material3_MaterialTimePicker_Button=0x7f1003bf; + public static final int Widget_Material3_MaterialTimePicker_Clock=0x7f1003c0; + public static final int Widget_Material3_MaterialTimePicker_Display=0x7f1003c1; + public static final int Widget_Material3_MaterialTimePicker_Display_Divider=0x7f1003c2; + public static final int Widget_Material3_MaterialTimePicker_Display_HelperText=0x7f1003c3; + public static final int Widget_Material3_MaterialTimePicker_Display_TextInputEditText=0x7f1003c4; + public static final int Widget_Material3_MaterialTimePicker_Display_TextInputLayout=0x7f1003c5; + public static final int Widget_Material3_MaterialTimePicker_ImageButton=0x7f1003c6; + public static final int Widget_Material3_NavigationRailView=0x7f1003c7; + public static final int Widget_Material3_NavigationRailView_ActiveIndicator=0x7f1003c8; + public static final int Widget_Material3_NavigationRailView_Badge=0x7f1003c9; + public static final int Widget_Material3_NavigationView=0x7f1003ca; + public static final int Widget_Material3_PopupMenu=0x7f1003cb; + public static final int Widget_Material3_PopupMenu_ContextMenu=0x7f1003cc; + public static final int Widget_Material3_PopupMenu_ListPopupWindow=0x7f1003cd; + public static final int Widget_Material3_PopupMenu_Overflow=0x7f1003ce; + public static final int Widget_Material3_Search_ActionButton_Overflow=0x7f1003cf; + public static final int Widget_Material3_Search_Toolbar_Button_Navigation=0x7f1003d0; + public static final int Widget_Material3_SearchBar=0x7f1003d1; + public static final int Widget_Material3_SearchBar_Outlined=0x7f1003d2; + public static final int Widget_Material3_SearchView=0x7f1003d3; + public static final int Widget_Material3_SearchView_Prefix=0x7f1003d4; + public static final int Widget_Material3_SearchView_Toolbar=0x7f1003d5; + public static final int Widget_Material3_SideSheet=0x7f1003d6; + public static final int Widget_Material3_SideSheet_Detached=0x7f1003d7; + public static final int Widget_Material3_SideSheet_Modal=0x7f1003d8; + public static final int Widget_Material3_SideSheet_Modal_Detached=0x7f1003d9; + public static final int Widget_Material3_Slider=0x7f1003da; + public static final int Widget_Material3_Slider_Label=0x7f1003db; + public static final int Widget_Material3_Slider_Legacy=0x7f1003dc; + public static final int Widget_Material3_Slider_Legacy_Label=0x7f1003dd; + public static final int Widget_Material3_Snackbar=0x7f1003de; + public static final int Widget_Material3_Snackbar_FullWidth=0x7f1003df; + public static final int Widget_Material3_Snackbar_TextView=0x7f1003e0; + public static final int Widget_Material3_TabLayout=0x7f1003e1; + public static final int Widget_Material3_TabLayout_OnSurface=0x7f1003e2; + public static final int Widget_Material3_TabLayout_Secondary=0x7f1003e3; + public static final int Widget_Material3_TextInputEditText_FilledBox=0x7f1003e4; + public static final int Widget_Material3_TextInputEditText_FilledBox_Dense=0x7f1003e5; + public static final int Widget_Material3_TextInputEditText_OutlinedBox=0x7f1003e6; + public static final int Widget_Material3_TextInputEditText_OutlinedBox_Dense=0x7f1003e7; + public static final int Widget_Material3_TextInputLayout_FilledBox=0x7f1003e8; + public static final int Widget_Material3_TextInputLayout_FilledBox_Dense=0x7f1003e9; + public static final int Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu=0x7f1003ea; + public static final int Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu=0x7f1003eb; + public static final int Widget_Material3_TextInputLayout_OutlinedBox=0x7f1003ec; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_Dense=0x7f1003ed; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu=0x7f1003ee; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu=0x7f1003ef; + public static final int Widget_Material3_Toolbar=0x7f1003f0; + public static final int Widget_Material3_Toolbar_OnSurface=0x7f1003f1; + public static final int Widget_Material3_Toolbar_Surface=0x7f1003f2; + public static final int Widget_Material3_Tooltip=0x7f1003f3; + public static final int Widget_MaterialComponents_ActionBar_Primary=0x7f1003f4; + public static final int Widget_MaterialComponents_ActionBar_PrimarySurface=0x7f1003f5; + public static final int Widget_MaterialComponents_ActionBar_Solid=0x7f1003f6; + public static final int Widget_MaterialComponents_ActionBar_Surface=0x7f1003f7; + public static final int Widget_MaterialComponents_ActionMode=0x7f1003f8; + public static final int Widget_MaterialComponents_AppBarLayout_Primary=0x7f1003f9; + public static final int Widget_MaterialComponents_AppBarLayout_PrimarySurface=0x7f1003fa; + public static final int Widget_MaterialComponents_AppBarLayout_Surface=0x7f1003fb; + public static final int Widget_MaterialComponents_AutoCompleteTextView_FilledBox=0x7f1003fc; + public static final int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense=0x7f1003fd; + public static final int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox=0x7f1003fe; + public static final int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense=0x7f1003ff; + public static final int Widget_MaterialComponents_Badge=0x7f100400; + public static final int Widget_MaterialComponents_BottomAppBar=0x7f100401; + public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f100402; + public static final int Widget_MaterialComponents_BottomAppBar_PrimarySurface=0x7f100403; + public static final int Widget_MaterialComponents_BottomNavigationView=0x7f100404; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f100405; + public static final int Widget_MaterialComponents_BottomNavigationView_PrimarySurface=0x7f100406; + public static final int Widget_MaterialComponents_BottomSheet=0x7f100407; + public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f100408; + public static final int Widget_MaterialComponents_Button=0x7f100409; + public static final int Widget_MaterialComponents_Button_Icon=0x7f10040a; + public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f10040b; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f10040c; + public static final int Widget_MaterialComponents_Button_TextButton=0x7f10040d; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f10040e; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Flush=0x7f10040f; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f100410; + public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f100411; + public static final int Widget_MaterialComponents_Button_TextButton_Snackbar=0x7f100412; + public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f100413; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f100414; + public static final int Widget_MaterialComponents_CardView=0x7f100415; + public static final int Widget_MaterialComponents_CheckedTextView=0x7f100416; + public static final int Widget_MaterialComponents_Chip_Action=0x7f100417; + public static final int Widget_MaterialComponents_Chip_Choice=0x7f100418; + public static final int Widget_MaterialComponents_Chip_Entry=0x7f100419; + public static final int Widget_MaterialComponents_Chip_Filter=0x7f10041a; + public static final int Widget_MaterialComponents_ChipGroup=0x7f10041b; + public static final int Widget_MaterialComponents_CircularProgressIndicator=0x7f10041c; + public static final int Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall=0x7f10041d; + public static final int Widget_MaterialComponents_CircularProgressIndicator_Medium=0x7f10041e; + public static final int Widget_MaterialComponents_CircularProgressIndicator_Small=0x7f10041f; + public static final int Widget_MaterialComponents_CollapsingToolbar=0x7f100420; + public static final int Widget_MaterialComponents_CompoundButton_CheckBox=0x7f100421; + public static final int Widget_MaterialComponents_CompoundButton_RadioButton=0x7f100422; + public static final int Widget_MaterialComponents_CompoundButton_Switch=0x7f100423; + public static final int Widget_MaterialComponents_ExtendedFloatingActionButton=0x7f100424; + public static final int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon=0x7f100425; + public static final int Widget_MaterialComponents_FloatingActionButton=0x7f100426; + public static final int Widget_MaterialComponents_Light_ActionBar_Solid=0x7f100427; + public static final int Widget_MaterialComponents_LinearProgressIndicator=0x7f100428; + public static final int Widget_MaterialComponents_MaterialButtonToggleGroup=0x7f100429; + public static final int Widget_MaterialComponents_MaterialCalendar=0x7f10042a; + public static final int Widget_MaterialComponents_MaterialCalendar_Day=0x7f10042b; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Invalid=0x7f10042c; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Selected=0x7f10042d; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Today=0x7f10042e; + public static final int Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel=0x7f10042f; + public static final int Widget_MaterialComponents_MaterialCalendar_DayTextView=0x7f100430; + public static final int Widget_MaterialComponents_MaterialCalendar_Fullscreen=0x7f100431; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton=0x7f100432; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton=0x7f100433; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderDivider=0x7f100434; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderLayout=0x7f100435; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen=0x7f100436; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderSelection=0x7f100437; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen=0x7f100438; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderTitle=0x7f100439; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton=0x7f10043a; + public static final int Widget_MaterialComponents_MaterialCalendar_Item=0x7f10043b; + public static final int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton=0x7f10043c; + public static final int Widget_MaterialComponents_MaterialCalendar_MonthTextView=0x7f10043d; + public static final int Widget_MaterialComponents_MaterialCalendar_Year=0x7f10043e; + public static final int Widget_MaterialComponents_MaterialCalendar_Year_Selected=0x7f10043f; + public static final int Widget_MaterialComponents_MaterialCalendar_Year_Today=0x7f100440; + public static final int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton=0x7f100441; + public static final int Widget_MaterialComponents_MaterialDivider=0x7f100442; + public static final int Widget_MaterialComponents_NavigationRailView=0x7f100443; + public static final int Widget_MaterialComponents_NavigationRailView_Colored=0x7f100444; + public static final int Widget_MaterialComponents_NavigationRailView_Colored_Compact=0x7f100445; + public static final int Widget_MaterialComponents_NavigationRailView_Compact=0x7f100446; + public static final int Widget_MaterialComponents_NavigationRailView_PrimarySurface=0x7f100447; + public static final int Widget_MaterialComponents_NavigationView=0x7f100448; + public static final int Widget_MaterialComponents_PopupMenu=0x7f100449; + public static final int Widget_MaterialComponents_PopupMenu_ContextMenu=0x7f10044a; + public static final int Widget_MaterialComponents_PopupMenu_ListPopupWindow=0x7f10044b; + public static final int Widget_MaterialComponents_PopupMenu_Overflow=0x7f10044c; + public static final int Widget_MaterialComponents_ProgressIndicator=0x7f10044d; + public static final int Widget_MaterialComponents_ShapeableImageView=0x7f10044e; + public static final int Widget_MaterialComponents_Slider=0x7f10044f; + public static final int Widget_MaterialComponents_Snackbar=0x7f100450; + public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f100451; + public static final int Widget_MaterialComponents_Snackbar_TextView=0x7f100452; + public static final int Widget_MaterialComponents_TabLayout=0x7f100453; + public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f100454; + public static final int Widget_MaterialComponents_TabLayout_PrimarySurface=0x7f100455; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f100456; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f100457; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f100458; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f100459; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f10045a; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f10045b; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu=0x7f10045c; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu=0x7f10045d; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f10045e; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f10045f; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu=0x7f100460; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu=0x7f100461; + public static final int Widget_MaterialComponents_TextView=0x7f100462; + public static final int Widget_MaterialComponents_TimePicker=0x7f100463; + public static final int Widget_MaterialComponents_TimePicker_Button=0x7f100464; + public static final int Widget_MaterialComponents_TimePicker_Clock=0x7f100465; + public static final int Widget_MaterialComponents_TimePicker_Display=0x7f100466; + public static final int Widget_MaterialComponents_TimePicker_Display_Divider=0x7f100467; + public static final int Widget_MaterialComponents_TimePicker_Display_HelperText=0x7f100468; + public static final int Widget_MaterialComponents_TimePicker_Display_TextInputEditText=0x7f100469; + public static final int Widget_MaterialComponents_TimePicker_Display_TextInputLayout=0x7f10046a; + public static final int Widget_MaterialComponents_TimePicker_ImageButton=0x7f10046b; + public static final int Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance=0x7f10046c; + public static final int Widget_MaterialComponents_Toolbar=0x7f10046d; + public static final int Widget_MaterialComponents_Toolbar_Primary=0x7f10046e; + public static final int Widget_MaterialComponents_Toolbar_PrimarySurface=0x7f10046f; + public static final int Widget_MaterialComponents_Toolbar_Surface=0x7f100470; + public static final int Widget_MaterialComponents_Tooltip=0x7f100471; + public static final int Widget_Support_CoordinatorLayout=0x7f100472; + public static final int collectionViewTheme=0x7f100473; + /** + * The collectionViewScrollBars style will be used as the default style for ItemsViewRenderer (the base renderer + * for CollectionView and CarouselView. We have to use a style to set up the scrollbars because there is currently + * no way to add them via code. + * When the renderer is created, we wrap its Context's theme with collectionViewTheme; that way, the + * collectionViewScrollBars style will be defined. With the style defined (and with the collectionViewStyle + * attribute defined in attrs.xml), we can apply the collectionViewScrollBars style explicitly to the renderer we are + * creating (and avoid forcing every child control to have scrollbars). + */ + public static final int scrollViewScrollBars=0x7f100474; + public static final int scrollViewTheme=0x7f100475; + } + public static final class styleable { + /** + * Attributes that can be used with a ActionBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionBar_background com.companyname.clipifrontc:background}
{@link #ActionBar_backgroundSplit com.companyname.clipifrontc:backgroundSplit}
{@link #ActionBar_backgroundStacked com.companyname.clipifrontc:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.companyname.clipifrontc:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions com.companyname.clipifrontc:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft com.companyname.clipifrontc:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.companyname.clipifrontc:contentInsetRight}
{@link #ActionBar_contentInsetStart com.companyname.clipifrontc:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation com.companyname.clipifrontc:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout com.companyname.clipifrontc:customNavigationLayout}
{@link #ActionBar_displayOptions com.companyname.clipifrontc:displayOptions}
{@link #ActionBar_divider com.companyname.clipifrontc:divider}
{@link #ActionBar_elevation com.companyname.clipifrontc:elevation}
{@link #ActionBar_height com.companyname.clipifrontc:height}
{@link #ActionBar_hideOnContentScroll com.companyname.clipifrontc:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.companyname.clipifrontc:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.companyname.clipifrontc:homeLayout}
{@link #ActionBar_icon com.companyname.clipifrontc:icon}
{@link #ActionBar_indeterminateProgressStyle com.companyname.clipifrontc:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.companyname.clipifrontc:itemPadding}
{@link #ActionBar_logo com.companyname.clipifrontc:logo}
{@link #ActionBar_navigationMode com.companyname.clipifrontc:navigationMode}
{@link #ActionBar_popupTheme com.companyname.clipifrontc:popupTheme}
{@link #ActionBar_progressBarPadding com.companyname.clipifrontc:progressBarPadding}
{@link #ActionBar_progressBarStyle com.companyname.clipifrontc:progressBarStyle}
{@link #ActionBar_subtitle com.companyname.clipifrontc:subtitle}
{@link #ActionBar_subtitleTextStyle com.companyname.clipifrontc:subtitleTextStyle}
{@link #ActionBar_title com.companyname.clipifrontc:title}
{@link #ActionBar_titleTextStyle com.companyname.clipifrontc:titleTextStyle}
+ * @see #ActionBar_background + * @see #ActionBar_backgroundSplit + * @see #ActionBar_backgroundStacked + * @see #ActionBar_contentInsetEnd + * @see #ActionBar_contentInsetEndWithActions + * @see #ActionBar_contentInsetLeft + * @see #ActionBar_contentInsetRight + * @see #ActionBar_contentInsetStart + * @see #ActionBar_contentInsetStartWithNavigation + * @see #ActionBar_customNavigationLayout + * @see #ActionBar_displayOptions + * @see #ActionBar_divider + * @see #ActionBar_elevation + * @see #ActionBar_height + * @see #ActionBar_hideOnContentScroll + * @see #ActionBar_homeAsUpIndicator + * @see #ActionBar_homeLayout + * @see #ActionBar_icon + * @see #ActionBar_indeterminateProgressStyle + * @see #ActionBar_itemPadding + * @see #ActionBar_logo + * @see #ActionBar_navigationMode + * @see #ActionBar_popupTheme + * @see #ActionBar_progressBarPadding + * @see #ActionBar_progressBarStyle + * @see #ActionBar_subtitle + * @see #ActionBar_subtitleTextStyle + * @see #ActionBar_title + * @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar={ + 0x7f03004d, 0x7f030054, 0x7f030055, 0x7f030143, + 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, + 0x7f030148, 0x7f030171, 0x7f030188, 0x7f030189, + 0x7f0301a9, 0x7f030231, 0x7f030239, 0x7f03023f, + 0x7f030240, 0x7f030244, 0x7f030255, 0x7f03026c, + 0x7f0302ea, 0x7f030371, 0x7f0303aa, 0x7f0303b2, + 0x7f0303b3, 0x7f030439, 0x7f03043d, 0x7f0304c8, + 0x7f0304d6 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#background} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:background + */ + public static final int ActionBar_background=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundSplit} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundSplit + */ + public static final int ActionBar_backgroundSplit=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundStacked} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundStacked + */ + public static final int ActionBar_backgroundStacked=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetEnd} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetEndWithActions} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetLeft} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetRight} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetRight + */ + public static final int ActionBar_contentInsetRight=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetStart} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetStart + */ + public static final int ActionBar_contentInsetStart=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetStartWithNavigation} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customNavigationLayout} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#displayOptions} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ * + * @attr name com.companyname.clipifrontc:displayOptions + */ + public static final int ActionBar_displayOptions=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#divider} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:divider + */ + public static final int ActionBar_divider=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int ActionBar_elevation=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#height} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:height + */ + public static final int ActionBar_height=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideOnContentScroll} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#homeAsUpIndicator} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#homeLayout} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:homeLayout + */ + public static final int ActionBar_homeLayout=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#icon} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:icon + */ + public static final int ActionBar_icon=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indeterminateProgressStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemPadding} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemPadding + */ + public static final int ActionBar_itemPadding=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#logo} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:logo + */ + public static final int ActionBar_logo=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationMode} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ * + * @attr name com.companyname.clipifrontc:navigationMode + */ + public static final int ActionBar_navigationMode=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popupTheme} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popupTheme + */ + public static final int ActionBar_popupTheme=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#progressBarPadding} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:progressBarPadding + */ + public static final int ActionBar_progressBarPadding=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#progressBarStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:progressBarStyle + */ + public static final int ActionBar_progressBarStyle=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:subtitle + */ + public static final int ActionBar_subtitle=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitleTextStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#title} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:title + */ + public static final int ActionBar_title=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleTextStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:titleTextStyle + */ + public static final int ActionBar_titleTextStyle=28; + /** + * Attributes that can be used with a ActionBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ * @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout={ + 0x010100b3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #ActionBarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity=0; + /** + * Attributes that can be used with a ActionMenuItemView. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ * @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView={ + 0x0101013f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ActionMenuItemView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth=0; + public static final int[] ActionMenuView={ + }; + /** + * Attributes that can be used with a ActionMode. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionMode_background com.companyname.clipifrontc:background}
{@link #ActionMode_backgroundSplit com.companyname.clipifrontc:backgroundSplit}
{@link #ActionMode_closeItemLayout com.companyname.clipifrontc:closeItemLayout}
{@link #ActionMode_height com.companyname.clipifrontc:height}
{@link #ActionMode_subtitleTextStyle com.companyname.clipifrontc:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.companyname.clipifrontc:titleTextStyle}
+ * @see #ActionMode_background + * @see #ActionMode_backgroundSplit + * @see #ActionMode_closeItemLayout + * @see #ActionMode_height + * @see #ActionMode_subtitleTextStyle + * @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode={ + 0x7f03004d, 0x7f030054, 0x7f0300ee, 0x7f030231, + 0x7f03043d, 0x7f0304d6 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#background} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:background + */ + public static final int ActionMode_background=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundSplit} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundSplit + */ + public static final int ActionMode_backgroundSplit=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeItemLayout} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:closeItemLayout + */ + public static final int ActionMode_closeItemLayout=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#height} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:height + */ + public static final int ActionMode_height=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitleTextStyle} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleTextStyle} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:titleTextStyle + */ + public static final int ActionMode_titleTextStyle=5; + /** + * Attributes that can be used with a ActivityChooserView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.clipifrontc:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.companyname.clipifrontc:initialActivityCount}
+ * @see #ActivityChooserView_expandActivityOverflowButtonDrawable + * @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView={ + 0x7f0301c6, 0x7f03025c + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandActivityOverflowButtonDrawable} + * attribute's value can be found in the {@link #ActivityChooserView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#initialActivityCount} + * attribute's value can be found in the {@link #ActivityChooserView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount=1; + /** + * Attributes that can be used with a ActivityFilter. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityFilter_activityAction com.companyname.clipifrontc:activityAction}
{@link #ActivityFilter_activityName com.companyname.clipifrontc:activityName}
+ * @see #ActivityFilter_activityAction + * @see #ActivityFilter_activityName + */ + public static final int[] ActivityFilter={ + 0x7f030028, 0x7f03002a + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#activityAction} + * attribute's value can be found in the {@link #ActivityFilter} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:activityAction + */ + public static final int ActivityFilter_activityAction=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#activityName} + * attribute's value can be found in the {@link #ActivityFilter} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:activityName + */ + public static final int ActivityFilter_activityName=1; + /** + * Attributes that can be used with a ActivityNavigator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityNavigator_android_name android:name}
{@link #ActivityNavigator_action com.companyname.clipifrontc:action}
{@link #ActivityNavigator_data com.companyname.clipifrontc:data}
{@link #ActivityNavigator_dataPattern com.companyname.clipifrontc:dataPattern}
{@link #ActivityNavigator_targetPackage com.companyname.clipifrontc:targetPackage}
+ * @see #ActivityNavigator_android_name + * @see #ActivityNavigator_action + * @see #ActivityNavigator_data + * @see #ActivityNavigator_dataPattern + * @see #ActivityNavigator_targetPackage + */ + public static final int[] ActivityNavigator={ + 0x01010003, 0x7f030002, 0x7f030175, 0x7f030176, + 0x7f030466 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #ActivityNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int ActivityNavigator_android_name=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#action} + * attribute's value can be found in the {@link #ActivityNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:action + */ + public static final int ActivityNavigator_action=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#data} + * attribute's value can be found in the {@link #ActivityNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:data + */ + public static final int ActivityNavigator_data=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dataPattern} + * attribute's value can be found in the {@link #ActivityNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:dataPattern + */ + public static final int ActivityNavigator_dataPattern=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#targetPackage} + * attribute's value can be found in the {@link #ActivityNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:targetPackage + */ + public static final int ActivityNavigator_targetPackage=4; + /** + * Attributes that can be used with a ActivityRule. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityRule_alwaysExpand com.companyname.clipifrontc:alwaysExpand}
{@link #ActivityRule_tag com.companyname.clipifrontc:tag}
+ * @see #ActivityRule_alwaysExpand + * @see #ActivityRule_tag + */ + public static final int[] ActivityRule={ + 0x7f030034, 0x7f030464 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alwaysExpand} + * attribute's value can be found in the {@link #ActivityRule} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:alwaysExpand + */ + public static final int ActivityRule_alwaysExpand=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tag} + * attribute's value can be found in the {@link #ActivityRule} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:tag + */ + public static final int ActivityRule_tag=1; + /** + * Attributes that can be used with a AlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonIconDimen com.companyname.clipifrontc:buttonIconDimen}
{@link #AlertDialog_buttonPanelSideLayout com.companyname.clipifrontc:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.companyname.clipifrontc:listItemLayout}
{@link #AlertDialog_listLayout com.companyname.clipifrontc:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.companyname.clipifrontc:multiChoiceItemLayout}
{@link #AlertDialog_showTitle com.companyname.clipifrontc:showTitle}
{@link #AlertDialog_singleChoiceItemLayout com.companyname.clipifrontc:singleChoiceItemLayout}
+ * @see #AlertDialog_android_layout + * @see #AlertDialog_buttonIconDimen + * @see #AlertDialog_buttonPanelSideLayout + * @see #AlertDialog_listItemLayout + * @see #AlertDialog_listLayout + * @see #AlertDialog_multiChoiceItemLayout + * @see #AlertDialog_showTitle + * @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog={ + 0x010100f2, 0x7f030099, 0x7f03009c, 0x7f0302df, + 0x7f0302e0, 0x7f03036c, 0x7f0303f7, 0x7f0303ff + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int AlertDialog_android_layout=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonIconDimen} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:buttonIconDimen + */ + public static final int AlertDialog_buttonIconDimen=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonPanelSideLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listItemLayout + */ + public static final int AlertDialog_listItemLayout=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listLayout + */ + public static final int AlertDialog_listLayout=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#multiChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showTitle} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:showTitle + */ + public static final int AlertDialog_showTitle=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#singleChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout=7; + /** + * Attributes that can be used with a AnimatedStateListDrawableCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableCompat_android_dither android:dither}
{@link #AnimatedStateListDrawableCompat_android_visible android:visible}
{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}
{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}
{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}
{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}
+ * @see #AnimatedStateListDrawableCompat_android_dither + * @see #AnimatedStateListDrawableCompat_android_visible + * @see #AnimatedStateListDrawableCompat_android_variablePadding + * @see #AnimatedStateListDrawableCompat_android_constantSize + * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration + * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration + */ + public static final int[] AnimatedStateListDrawableCompat={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

This symbol is the offset where the {@link android.R.attr#dither} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int AnimatedStateListDrawableCompat_android_dither=0; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int AnimatedStateListDrawableCompat_android_visible=1; + /** + *

This symbol is the offset where the {@link android.R.attr#variablePadding} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; + /** + *

This symbol is the offset where the {@link android.R.attr#constantSize} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int AnimatedStateListDrawableCompat_android_constantSize=3; + /** + *

This symbol is the offset where the {@link android.R.attr#enterFadeDuration} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; + /** + *

This symbol is the offset where the {@link android.R.attr#exitFadeDuration} + * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; + /** + * Attributes that can be used with a AnimatedStateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableItem_android_id android:id}
{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}
+ * @see #AnimatedStateListDrawableItem_android_id + * @see #AnimatedStateListDrawableItem_android_drawable + */ + public static final int[] AnimatedStateListDrawableItem={ + 0x010100d0, 0x01010199 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #AnimatedStateListDrawableItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int AnimatedStateListDrawableItem_android_id=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawable} + * attribute's value can be found in the {@link #AnimatedStateListDrawableItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableItem_android_drawable=1; + /** + * Attributes that can be used with a AnimatedStateListDrawableTransition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}
{@link #AnimatedStateListDrawableTransition_android_toId android:toId}
{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}
{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}
+ * @see #AnimatedStateListDrawableTransition_android_drawable + * @see #AnimatedStateListDrawableTransition_android_toId + * @see #AnimatedStateListDrawableTransition_android_fromId + * @see #AnimatedStateListDrawableTransition_android_reversible + */ + public static final int[] AnimatedStateListDrawableTransition={ + 0x01010199, 0x01010449, 0x0101044a, 0x0101044b + }; + /** + *

This symbol is the offset where the {@link android.R.attr#drawable} + * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableTransition_android_drawable=0; + /** + *

This symbol is the offset where the {@link android.R.attr#toId} + * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:toId + */ + public static final int AnimatedStateListDrawableTransition_android_toId=1; + /** + *

This symbol is the offset where the {@link android.R.attr#fromId} + * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:fromId + */ + public static final int AnimatedStateListDrawableTransition_android_fromId=2; + /** + *

This symbol is the offset where the {@link android.R.attr#reversible} + * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:reversible + */ + public static final int AnimatedStateListDrawableTransition_android_reversible=3; + /** + * Attributes that can be used with a AppBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_elevation com.companyname.clipifrontc:elevation}
{@link #AppBarLayout_expanded com.companyname.clipifrontc:expanded}
{@link #AppBarLayout_liftOnScroll com.companyname.clipifrontc:liftOnScroll}
{@link #AppBarLayout_liftOnScrollColor com.companyname.clipifrontc:liftOnScrollColor}
{@link #AppBarLayout_liftOnScrollTargetViewId com.companyname.clipifrontc:liftOnScrollTargetViewId}
{@link #AppBarLayout_statusBarForeground com.companyname.clipifrontc:statusBarForeground}
+ * @see #AppBarLayout_android_background + * @see #AppBarLayout_android_touchscreenBlocksFocus + * @see #AppBarLayout_android_keyboardNavigationCluster + * @see #AppBarLayout_elevation + * @see #AppBarLayout_expanded + * @see #AppBarLayout_liftOnScroll + * @see #AppBarLayout_liftOnScrollColor + * @see #AppBarLayout_liftOnScrollTargetViewId + * @see #AppBarLayout_statusBarForeground + */ + public static final int[] AppBarLayout={ + 0x010100d4, 0x0101048f, 0x01010540, 0x7f0301a9, + 0x7f0301c7, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, + 0x7f03042e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int AppBarLayout_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus=1; + /** + *

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int AppBarLayout_elevation=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expanded} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:expanded + */ + public static final int AppBarLayout_expanded=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#liftOnScroll} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:liftOnScroll + */ + public static final int AppBarLayout_liftOnScroll=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#liftOnScrollColor} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:liftOnScrollColor + */ + public static final int AppBarLayout_liftOnScrollColor=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#liftOnScrollTargetViewId} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:liftOnScrollTargetViewId + */ + public static final int AppBarLayout_liftOnScrollTargetViewId=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#statusBarForeground} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:statusBarForeground + */ + public static final int AppBarLayout_statusBarForeground=8; + /** + * Attributes that can be used with a AppBarLayoutStates. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed com.companyname.clipifrontc:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible com.companyname.clipifrontc:state_collapsible}
{@link #AppBarLayoutStates_state_liftable com.companyname.clipifrontc:state_liftable}
{@link #AppBarLayoutStates_state_lifted com.companyname.clipifrontc:state_lifted}
+ * @see #AppBarLayoutStates_state_collapsed + * @see #AppBarLayoutStates_state_collapsible + * @see #AppBarLayoutStates_state_liftable + * @see #AppBarLayoutStates_state_lifted + */ + public static final int[] AppBarLayoutStates={ + 0x7f030425, 0x7f030426, 0x7f03042a, 0x7f03042b + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_collapsed} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_collapsible} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_liftable} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_liftable + */ + public static final int AppBarLayoutStates_state_liftable=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_lifted} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_lifted + */ + public static final int AppBarLayoutStates_state_lifted=3; + /** + * Attributes that can be used with a AppBarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollEffect com.companyname.clipifrontc:layout_scrollEffect}
{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.clipifrontc:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.clipifrontc:layout_scrollInterpolator}
+ * @see #AppBarLayout_Layout_layout_scrollEffect + * @see #AppBarLayout_Layout_layout_scrollFlags + * @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout={ + 0x7f0302d0, 0x7f0302d1, 0x7f0302d2 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_scrollEffect} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
compress1This view will be compressed (masked and parallaxed) when it reaches + * the top of the screen and continues to scroll out of view.
none0No effect will be applied to this child when its parent + * AppBarLayout's offset changes.
+ * + * @attr name com.companyname.clipifrontc:layout_scrollEffect + */ + public static final int AppBarLayout_Layout_layout_scrollEffect=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_scrollFlags} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4When entering (scrolling on screen) the view will scroll on any downwards + * scroll event, regardless of whether the scrolling view is also scrolling. This + * is commonly referred to as the 'quick return' pattern.
enterAlwaysCollapsed8An additional flag for 'enterAlways' which modifies the returning view to + * only initially scroll back to it's collapsed height. Once the scrolling view has + * reached the end of it's scroll range, the remainder of this view will be scrolled + * into view.
exitUntilCollapsed2When exiting (scrolling off screen) the view will be scrolled until it is + * 'collapsed'. The collapsed height is defined by the view's minimum height.
noScroll0Disable scrolling on the view. This flag should not be combined with any of the other + * scroll flags.
scroll1The view will be scroll in direct relation to scroll events. This flag needs to be + * set for any of the other flags to take effect. If any sibling views + * before this one do not have this flag, then this value has no effect.
snap10Upon a scroll ending, if the view is only partially visible then it will be + * snapped and scrolled to it's closest edge.
snapMargins20An additional flag to be used with 'snap'. If set, the view will be snapped to its + * top and bottom margins, as opposed to the edges of the view itself.
+ * + * @attr name com.companyname.clipifrontc:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_scrollInterpolator} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator=2; + public static final int[] AppCompatEmojiHelper={ + }; + /** + * Attributes that can be used with a AppCompatImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.companyname.clipifrontc:srcCompat}
{@link #AppCompatImageView_tint com.companyname.clipifrontc:tint}
{@link #AppCompatImageView_tintMode com.companyname.clipifrontc:tintMode}
+ * @see #AppCompatImageView_android_src + * @see #AppCompatImageView_srcCompat + * @see #AppCompatImageView_tint + * @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView={ + 0x01010119, 0x7f030418, 0x7f0304c5, 0x7f0304c6 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#src} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:src + */ + public static final int AppCompatImageView_android_src=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#srcCompat} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:srcCompat + */ + public static final int AppCompatImageView_srcCompat=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tint} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tint + */ + public static final int AppCompatImageView_tint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tintMode} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:tintMode + */ + public static final int AppCompatImageView_tintMode=3; + /** + * Attributes that can be used with a AppCompatSeekBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark com.companyname.clipifrontc:tickMark}
{@link #AppCompatSeekBar_tickMarkTint com.companyname.clipifrontc:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.clipifrontc:tickMarkTintMode}
+ * @see #AppCompatSeekBar_android_thumb + * @see #AppCompatSeekBar_tickMark + * @see #AppCompatSeekBar_tickMarkTint + * @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar={ + 0x01010142, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickMark} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tickMark + */ + public static final int AppCompatSeekBar_tickMark=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickMarkTint} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickMarkTintMode} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode=3; + /** + * Attributes that can be used with a AppCompatTextHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
+ * @see #AppCompatTextHelper_android_textAppearance + * @see #AppCompatTextHelper_android_drawableTop + * @see #AppCompatTextHelper_android_drawableBottom + * @see #AppCompatTextHelper_android_drawableLeft + * @see #AppCompatTextHelper_android_drawableRight + * @see #AppCompatTextHelper_android_drawableStart + * @see #AppCompatTextHelper_android_drawableEnd + */ + public static final int[] AppCompatTextHelper={ + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableTop} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop=1; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableBottom} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom=2; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableLeft} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableRight} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableStart} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart=5; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableEnd} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd=6; + /** + * Attributes that can be used with a AppCompatTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.clipifrontc:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.clipifrontc:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes com.companyname.clipifrontc:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.clipifrontc:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType com.companyname.clipifrontc:autoSizeTextType}
{@link #AppCompatTextView_drawableBottomCompat com.companyname.clipifrontc:drawableBottomCompat}
{@link #AppCompatTextView_drawableEndCompat com.companyname.clipifrontc:drawableEndCompat}
{@link #AppCompatTextView_drawableLeftCompat com.companyname.clipifrontc:drawableLeftCompat}
{@link #AppCompatTextView_drawableRightCompat com.companyname.clipifrontc:drawableRightCompat}
{@link #AppCompatTextView_drawableStartCompat com.companyname.clipifrontc:drawableStartCompat}
{@link #AppCompatTextView_drawableTint com.companyname.clipifrontc:drawableTint}
{@link #AppCompatTextView_drawableTintMode com.companyname.clipifrontc:drawableTintMode}
{@link #AppCompatTextView_drawableTopCompat com.companyname.clipifrontc:drawableTopCompat}
{@link #AppCompatTextView_emojiCompatEnabled com.companyname.clipifrontc:emojiCompatEnabled}
{@link #AppCompatTextView_firstBaselineToTopHeight com.companyname.clipifrontc:firstBaselineToTopHeight}
{@link #AppCompatTextView_fontFamily com.companyname.clipifrontc:fontFamily}
{@link #AppCompatTextView_fontVariationSettings com.companyname.clipifrontc:fontVariationSettings}
{@link #AppCompatTextView_lastBaselineToBottomHeight com.companyname.clipifrontc:lastBaselineToBottomHeight}
{@link #AppCompatTextView_lineHeight com.companyname.clipifrontc:lineHeight}
{@link #AppCompatTextView_textAllCaps com.companyname.clipifrontc:textAllCaps}
{@link #AppCompatTextView_textLocale com.companyname.clipifrontc:textLocale}
+ * @see #AppCompatTextView_android_textAppearance + * @see #AppCompatTextView_autoSizeMaxTextSize + * @see #AppCompatTextView_autoSizeMinTextSize + * @see #AppCompatTextView_autoSizePresetSizes + * @see #AppCompatTextView_autoSizeStepGranularity + * @see #AppCompatTextView_autoSizeTextType + * @see #AppCompatTextView_drawableBottomCompat + * @see #AppCompatTextView_drawableEndCompat + * @see #AppCompatTextView_drawableLeftCompat + * @see #AppCompatTextView_drawableRightCompat + * @see #AppCompatTextView_drawableStartCompat + * @see #AppCompatTextView_drawableTint + * @see #AppCompatTextView_drawableTintMode + * @see #AppCompatTextView_drawableTopCompat + * @see #AppCompatTextView_emojiCompatEnabled + * @see #AppCompatTextView_firstBaselineToTopHeight + * @see #AppCompatTextView_fontFamily + * @see #AppCompatTextView_fontVariationSettings + * @see #AppCompatTextView_lastBaselineToBottomHeight + * @see #AppCompatTextView_lineHeight + * @see #AppCompatTextView_textAllCaps + * @see #AppCompatTextView_textLocale + */ + public static final int[] AppCompatTextView={ + 0x01010034, 0x7f030046, 0x7f030047, 0x7f030048, + 0x7f030049, 0x7f03004a, 0x7f030195, 0x7f030196, + 0x7f030197, 0x7f030198, 0x7f03019a, 0x7f03019b, + 0x7f03019c, 0x7f03019d, 0x7f0301ad, 0x7f0301ea, + 0x7f03020e, 0x7f030218, 0x7f030288, 0x7f0302d8, + 0x7f03046a, 0x7f0304a1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoSizeMaxTextSize} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoSizeMinTextSize} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoSizePresetSizes} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoSizeStepGranularity} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoSizeTextType} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ * + * @attr name com.companyname.clipifrontc:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableBottomCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableBottomCompat + */ + public static final int AppCompatTextView_drawableBottomCompat=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableEndCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableEndCompat + */ + public static final int AppCompatTextView_drawableEndCompat=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableLeftCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableLeftCompat + */ + public static final int AppCompatTextView_drawableLeftCompat=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableRightCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableRightCompat + */ + public static final int AppCompatTextView_drawableRightCompat=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableStartCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableStartCompat + */ + public static final int AppCompatTextView_drawableStartCompat=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableTint} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:drawableTint + */ + public static final int AppCompatTextView_drawableTint=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableTintMode} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:drawableTintMode + */ + public static final int AppCompatTextView_drawableTintMode=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableTopCompat} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:drawableTopCompat + */ + public static final int AppCompatTextView_drawableTopCompat=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#emojiCompatEnabled} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:emojiCompatEnabled + */ + public static final int AppCompatTextView_emojiCompatEnabled=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#firstBaselineToTopHeight} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:firstBaselineToTopHeight + */ + public static final int AppCompatTextView_firstBaselineToTopHeight=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontFamily} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontFamily + */ + public static final int AppCompatTextView_fontFamily=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontVariationSettings + */ + public static final int AppCompatTextView_fontVariationSettings=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lastBaselineToBottomHeight} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:lastBaselineToBottomHeight + */ + public static final int AppCompatTextView_lastBaselineToBottomHeight=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lineHeight} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:lineHeight + */ + public static final int AppCompatTextView_lineHeight=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAllCaps} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textLocale} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:textLocale + */ + public static final int AppCompatTextView_textLocale=21; + /** + * Attributes that can be used with a AppCompatTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider com.companyname.clipifrontc:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.companyname.clipifrontc:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.companyname.clipifrontc:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.companyname.clipifrontc:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.companyname.clipifrontc:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.companyname.clipifrontc:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.clipifrontc:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.companyname.clipifrontc:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.clipifrontc:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.companyname.clipifrontc:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.clipifrontc:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.companyname.clipifrontc:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.companyname.clipifrontc:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.clipifrontc:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.companyname.clipifrontc:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.companyname.clipifrontc:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.clipifrontc:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseContentDescription com.companyname.clipifrontc:actionModeCloseContentDescription}
{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.clipifrontc:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.clipifrontc:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.companyname.clipifrontc:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.companyname.clipifrontc:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.companyname.clipifrontc:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.clipifrontc:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.clipifrontc:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.companyname.clipifrontc:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.companyname.clipifrontc:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.companyname.clipifrontc:actionModeStyle}
{@link #AppCompatTheme_actionModeTheme com.companyname.clipifrontc:actionModeTheme}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.clipifrontc:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.clipifrontc:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.clipifrontc:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.companyname.clipifrontc:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.clipifrontc:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.clipifrontc:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.companyname.clipifrontc:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.companyname.clipifrontc:alertDialogTheme}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.clipifrontc:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.companyname.clipifrontc:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.clipifrontc:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.clipifrontc:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.clipifrontc:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.clipifrontc:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.companyname.clipifrontc:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.companyname.clipifrontc:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.companyname.clipifrontc:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.companyname.clipifrontc:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.companyname.clipifrontc:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.companyname.clipifrontc:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating com.companyname.clipifrontc:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal com.companyname.clipifrontc:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.companyname.clipifrontc:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.companyname.clipifrontc:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.companyname.clipifrontc:colorControlNormal}
{@link #AppCompatTheme_colorError com.companyname.clipifrontc:colorError}
{@link #AppCompatTheme_colorPrimary com.companyname.clipifrontc:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.companyname.clipifrontc:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.clipifrontc:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.companyname.clipifrontc:controlBackground}
{@link #AppCompatTheme_dialogCornerRadius com.companyname.clipifrontc:dialogCornerRadius}
{@link #AppCompatTheme_dialogPreferredPadding com.companyname.clipifrontc:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.companyname.clipifrontc:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.companyname.clipifrontc:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.companyname.clipifrontc:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.companyname.clipifrontc:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.clipifrontc:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.companyname.clipifrontc:editTextBackground}
{@link #AppCompatTheme_editTextColor com.companyname.clipifrontc:editTextColor}
{@link #AppCompatTheme_editTextStyle com.companyname.clipifrontc:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.companyname.clipifrontc:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.companyname.clipifrontc:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.clipifrontc:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listChoiceIndicatorMultipleAnimated com.companyname.clipifrontc:listChoiceIndicatorMultipleAnimated}
{@link #AppCompatTheme_listChoiceIndicatorSingleAnimated com.companyname.clipifrontc:listChoiceIndicatorSingleAnimated}
{@link #AppCompatTheme_listDividerAlertDialog com.companyname.clipifrontc:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle com.companyname.clipifrontc:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle com.companyname.clipifrontc:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.companyname.clipifrontc:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.clipifrontc:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.clipifrontc:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingEnd com.companyname.clipifrontc:listPreferredItemPaddingEnd}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.clipifrontc:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.clipifrontc:listPreferredItemPaddingRight}
{@link #AppCompatTheme_listPreferredItemPaddingStart com.companyname.clipifrontc:listPreferredItemPaddingStart}
{@link #AppCompatTheme_panelBackground com.companyname.clipifrontc:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.companyname.clipifrontc:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.companyname.clipifrontc:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.companyname.clipifrontc:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.companyname.clipifrontc:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.companyname.clipifrontc:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.companyname.clipifrontc:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.clipifrontc:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.clipifrontc:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.companyname.clipifrontc:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.companyname.clipifrontc:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.companyname.clipifrontc:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.clipifrontc:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.clipifrontc:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.companyname.clipifrontc:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.companyname.clipifrontc:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.clipifrontc:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.companyname.clipifrontc:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.clipifrontc:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.clipifrontc:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.clipifrontc:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.clipifrontc:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.clipifrontc:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.clipifrontc:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.clipifrontc:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.companyname.clipifrontc:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.clipifrontc:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.companyname.clipifrontc:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor com.companyname.clipifrontc:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground com.companyname.clipifrontc:tooltipFrameBackground}
{@link #AppCompatTheme_viewInflaterClass com.companyname.clipifrontc:viewInflaterClass}
{@link #AppCompatTheme_windowActionBar com.companyname.clipifrontc:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.companyname.clipifrontc:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.companyname.clipifrontc:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.clipifrontc:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.clipifrontc:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.clipifrontc:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.clipifrontc:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.companyname.clipifrontc:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.companyname.clipifrontc:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.companyname.clipifrontc:windowNoTitle}
+ * @see #AppCompatTheme_android_windowIsFloating + * @see #AppCompatTheme_android_windowAnimationStyle + * @see #AppCompatTheme_actionBarDivider + * @see #AppCompatTheme_actionBarItemBackground + * @see #AppCompatTheme_actionBarPopupTheme + * @see #AppCompatTheme_actionBarSize + * @see #AppCompatTheme_actionBarSplitStyle + * @see #AppCompatTheme_actionBarStyle + * @see #AppCompatTheme_actionBarTabBarStyle + * @see #AppCompatTheme_actionBarTabStyle + * @see #AppCompatTheme_actionBarTabTextStyle + * @see #AppCompatTheme_actionBarTheme + * @see #AppCompatTheme_actionBarWidgetTheme + * @see #AppCompatTheme_actionButtonStyle + * @see #AppCompatTheme_actionDropDownStyle + * @see #AppCompatTheme_actionMenuTextAppearance + * @see #AppCompatTheme_actionMenuTextColor + * @see #AppCompatTheme_actionModeBackground + * @see #AppCompatTheme_actionModeCloseButtonStyle + * @see #AppCompatTheme_actionModeCloseContentDescription + * @see #AppCompatTheme_actionModeCloseDrawable + * @see #AppCompatTheme_actionModeCopyDrawable + * @see #AppCompatTheme_actionModeCutDrawable + * @see #AppCompatTheme_actionModeFindDrawable + * @see #AppCompatTheme_actionModePasteDrawable + * @see #AppCompatTheme_actionModePopupWindowStyle + * @see #AppCompatTheme_actionModeSelectAllDrawable + * @see #AppCompatTheme_actionModeShareDrawable + * @see #AppCompatTheme_actionModeSplitBackground + * @see #AppCompatTheme_actionModeStyle + * @see #AppCompatTheme_actionModeTheme + * @see #AppCompatTheme_actionModeWebSearchDrawable + * @see #AppCompatTheme_actionOverflowButtonStyle + * @see #AppCompatTheme_actionOverflowMenuStyle + * @see #AppCompatTheme_activityChooserViewStyle + * @see #AppCompatTheme_alertDialogButtonGroupStyle + * @see #AppCompatTheme_alertDialogCenterButtons + * @see #AppCompatTheme_alertDialogStyle + * @see #AppCompatTheme_alertDialogTheme + * @see #AppCompatTheme_autoCompleteTextViewStyle + * @see #AppCompatTheme_borderlessButtonStyle + * @see #AppCompatTheme_buttonBarButtonStyle + * @see #AppCompatTheme_buttonBarNegativeButtonStyle + * @see #AppCompatTheme_buttonBarNeutralButtonStyle + * @see #AppCompatTheme_buttonBarPositiveButtonStyle + * @see #AppCompatTheme_buttonBarStyle + * @see #AppCompatTheme_buttonStyle + * @see #AppCompatTheme_buttonStyleSmall + * @see #AppCompatTheme_checkboxStyle + * @see #AppCompatTheme_checkedTextViewStyle + * @see #AppCompatTheme_colorAccent + * @see #AppCompatTheme_colorBackgroundFloating + * @see #AppCompatTheme_colorButtonNormal + * @see #AppCompatTheme_colorControlActivated + * @see #AppCompatTheme_colorControlHighlight + * @see #AppCompatTheme_colorControlNormal + * @see #AppCompatTheme_colorError + * @see #AppCompatTheme_colorPrimary + * @see #AppCompatTheme_colorPrimaryDark + * @see #AppCompatTheme_colorSwitchThumbNormal + * @see #AppCompatTheme_controlBackground + * @see #AppCompatTheme_dialogCornerRadius + * @see #AppCompatTheme_dialogPreferredPadding + * @see #AppCompatTheme_dialogTheme + * @see #AppCompatTheme_dividerHorizontal + * @see #AppCompatTheme_dividerVertical + * @see #AppCompatTheme_dropDownListViewStyle + * @see #AppCompatTheme_dropdownListPreferredItemHeight + * @see #AppCompatTheme_editTextBackground + * @see #AppCompatTheme_editTextColor + * @see #AppCompatTheme_editTextStyle + * @see #AppCompatTheme_homeAsUpIndicator + * @see #AppCompatTheme_imageButtonStyle + * @see #AppCompatTheme_listChoiceBackgroundIndicator + * @see #AppCompatTheme_listChoiceIndicatorMultipleAnimated + * @see #AppCompatTheme_listChoiceIndicatorSingleAnimated + * @see #AppCompatTheme_listDividerAlertDialog + * @see #AppCompatTheme_listMenuViewStyle + * @see #AppCompatTheme_listPopupWindowStyle + * @see #AppCompatTheme_listPreferredItemHeight + * @see #AppCompatTheme_listPreferredItemHeightLarge + * @see #AppCompatTheme_listPreferredItemHeightSmall + * @see #AppCompatTheme_listPreferredItemPaddingEnd + * @see #AppCompatTheme_listPreferredItemPaddingLeft + * @see #AppCompatTheme_listPreferredItemPaddingRight + * @see #AppCompatTheme_listPreferredItemPaddingStart + * @see #AppCompatTheme_panelBackground + * @see #AppCompatTheme_panelMenuListTheme + * @see #AppCompatTheme_panelMenuListWidth + * @see #AppCompatTheme_popupMenuStyle + * @see #AppCompatTheme_popupWindowStyle + * @see #AppCompatTheme_radioButtonStyle + * @see #AppCompatTheme_ratingBarStyle + * @see #AppCompatTheme_ratingBarStyleIndicator + * @see #AppCompatTheme_ratingBarStyleSmall + * @see #AppCompatTheme_searchViewStyle + * @see #AppCompatTheme_seekBarStyle + * @see #AppCompatTheme_selectableItemBackground + * @see #AppCompatTheme_selectableItemBackgroundBorderless + * @see #AppCompatTheme_spinnerDropDownItemStyle + * @see #AppCompatTheme_spinnerStyle + * @see #AppCompatTheme_switchStyle + * @see #AppCompatTheme_textAppearanceLargePopupMenu + * @see #AppCompatTheme_textAppearanceListItem + * @see #AppCompatTheme_textAppearanceListItemSecondary + * @see #AppCompatTheme_textAppearanceListItemSmall + * @see #AppCompatTheme_textAppearancePopupMenuHeader + * @see #AppCompatTheme_textAppearanceSearchResultSubtitle + * @see #AppCompatTheme_textAppearanceSearchResultTitle + * @see #AppCompatTheme_textAppearanceSmallPopupMenu + * @see #AppCompatTheme_textColorAlertDialogListItem + * @see #AppCompatTheme_textColorSearchUrl + * @see #AppCompatTheme_toolbarNavigationButtonStyle + * @see #AppCompatTheme_toolbarStyle + * @see #AppCompatTheme_tooltipForegroundColor + * @see #AppCompatTheme_tooltipFrameBackground + * @see #AppCompatTheme_viewInflaterClass + * @see #AppCompatTheme_windowActionBar + * @see #AppCompatTheme_windowActionBarOverlay + * @see #AppCompatTheme_windowActionModeOverlay + * @see #AppCompatTheme_windowFixedHeightMajor + * @see #AppCompatTheme_windowFixedHeightMinor + * @see #AppCompatTheme_windowFixedWidthMajor + * @see #AppCompatTheme_windowFixedWidthMinor + * @see #AppCompatTheme_windowMinWidthMajor + * @see #AppCompatTheme_windowMinWidthMinor + * @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme={ + 0x01010057, 0x010100ae, 0x7f030003, 0x7f030004, + 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, + 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, + 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, + 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, + 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, + 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, + 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, + 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, + 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030044, + 0x7f03007d, 0x7f030091, 0x7f030092, 0x7f030093, + 0x7f030094, 0x7f030095, 0x7f03009d, 0x7f03009e, + 0x7f0300b9, 0x7f0300c4, 0x7f0300fc, 0x7f0300fd, + 0x7f0300fe, 0x7f030100, 0x7f030101, 0x7f030102, + 0x7f030103, 0x7f03011c, 0x7f03011e, 0x7f030133, + 0x7f030152, 0x7f030185, 0x7f030186, 0x7f030187, + 0x7f03018b, 0x7f030190, 0x7f0301a2, 0x7f0301a3, + 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f03023f, + 0x7f03024f, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, + 0x7f0302de, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, + 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, + 0x7f0302e8, 0x7f0302e9, 0x7f03038d, 0x7f03038e, + 0x7f03038f, 0x7f0303a9, 0x7f0303ab, 0x7f0303ba, + 0x7f0303bc, 0x7f0303bd, 0x7f0303be, 0x7f0303d9, + 0x7f0303dc, 0x7f0303dd, 0x7f0303de, 0x7f030409, + 0x7f03040a, 0x7f030445, 0x7f030481, 0x7f030483, + 0x7f030484, 0x7f030485, 0x7f030487, 0x7f030488, + 0x7f030489, 0x7f03048a, 0x7f030495, 0x7f030496, + 0x7f0304d9, 0x7f0304da, 0x7f0304dc, 0x7f0304dd, + 0x7f030504, 0x7f030512, 0x7f030513, 0x7f030514, + 0x7f030515, 0x7f030516, 0x7f030517, 0x7f030518, + 0x7f030519, 0x7f03051a, 0x7f03051b + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating=0; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarDivider} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarItemBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarPopupTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarSize} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ * + * @attr name com.companyname.clipifrontc:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarSplitStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarTabBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarTabStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarTabTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionBarWidgetTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionDropDownStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionMenuTextAppearance} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionMenuTextColor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeCloseButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeCloseContentDescription} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:actionModeCloseContentDescription + */ + public static final int AppCompatTheme_actionModeCloseContentDescription=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeCloseDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeCopyDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeCutDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeFindDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModePasteDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModePopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeSelectAllDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeShareDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeSplitBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeTheme + */ + public static final int AppCompatTheme_actionModeTheme=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionModeWebSearchDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionOverflowButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionOverflowMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#activityChooserViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alertDialogButtonGroupStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alertDialogCenterButtons} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alertDialogStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alertDialogTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoCompleteTextViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderlessButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonBarButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonBarNegativeButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonBarNeutralButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonBarPositiveButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonStyleSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkboxStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedTextViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorAccent} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorAccent + */ + public static final int AppCompatTheme_colorAccent=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorBackgroundFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorButtonNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorControlActivated} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorControlHighlight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorControlNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorError} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorError + */ + public static final int AppCompatTheme_colorError=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorPrimary} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorPrimaryDark} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#colorSwitchThumbNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#controlBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:controlBackground + */ + public static final int AppCompatTheme_controlBackground=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dialogCornerRadius} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dialogCornerRadius + */ + public static final int AppCompatTheme_dialogCornerRadius=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dialogPreferredPadding} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dialogTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerHorizontal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerVertical} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dropDownListViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dropdownListPreferredItemHeight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#editTextBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#editTextColor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:editTextColor + */ + public static final int AppCompatTheme_editTextColor=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#editTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#homeAsUpIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#imageButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listChoiceBackgroundIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listChoiceIndicatorMultipleAnimated} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listChoiceIndicatorMultipleAnimated + */ + public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listChoiceIndicatorSingleAnimated} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listChoiceIndicatorSingleAnimated + */ + public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated=75; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listDividerAlertDialog} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog=76; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listMenuViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle=77; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle=78; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemHeight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight=79; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemHeightLarge} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge=80; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemHeightSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall=81; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemPaddingEnd} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemPaddingEnd + */ + public static final int AppCompatTheme_listPreferredItemPaddingEnd=82; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemPaddingLeft} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft=83; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemPaddingRight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight=84; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#listPreferredItemPaddingStart} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:listPreferredItemPaddingStart + */ + public static final int AppCompatTheme_listPreferredItemPaddingStart=85; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#panelBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:panelBackground + */ + public static final int AppCompatTheme_panelBackground=86; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#panelMenuListTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme=87; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#panelMenuListWidth} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth=88; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popupMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle=89; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle=90; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#radioButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle=91; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ratingBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle=92; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ratingBarStyleIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator=93; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ratingBarStyleSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall=94; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#searchViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle=95; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#seekBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle=96; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#selectableItemBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground=97; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#selectableItemBackgroundBorderless} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless=98; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#spinnerDropDownItemStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle=99; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#spinnerStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle=100; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#switchStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:switchStyle + */ + public static final int AppCompatTheme_switchStyle=101; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceLargePopupMenu} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu=102; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceListItem} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem=103; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceListItemSecondary} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary=104; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceListItemSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall=105; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearancePopupMenuHeader} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader=106; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceSearchResultSubtitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=107; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceSearchResultTitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle=108; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAppearanceSmallPopupMenu} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu=109; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textColorAlertDialogListItem} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem=110; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textColorSearchUrl} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl=111; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#toolbarNavigationButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle=112; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#toolbarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle=113; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tooltipForegroundColor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor=114; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tooltipFrameBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground=115; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#viewInflaterClass} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:viewInflaterClass + */ + public static final int AppCompatTheme_viewInflaterClass=116; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowActionBar} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar=117; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowActionBarOverlay} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay=118; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowActionModeOverlay} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay=119; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowFixedHeightMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor=120; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowFixedHeightMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor=121; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowFixedWidthMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor=122; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowFixedWidthMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor=123; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowMinWidthMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor=124; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowMinWidthMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor=125; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#windowNoTitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle=126; + /** + * Attributes that can be used with a Badge. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Badge_autoAdjustToWithinGrandparentBounds com.companyname.clipifrontc:autoAdjustToWithinGrandparentBounds}
{@link #Badge_backgroundColor com.companyname.clipifrontc:backgroundColor}
{@link #Badge_badgeGravity com.companyname.clipifrontc:badgeGravity}
{@link #Badge_badgeHeight com.companyname.clipifrontc:badgeHeight}
{@link #Badge_badgeRadius com.companyname.clipifrontc:badgeRadius}
{@link #Badge_badgeShapeAppearance com.companyname.clipifrontc:badgeShapeAppearance}
{@link #Badge_badgeShapeAppearanceOverlay com.companyname.clipifrontc:badgeShapeAppearanceOverlay}
{@link #Badge_badgeText com.companyname.clipifrontc:badgeText}
{@link #Badge_badgeTextAppearance com.companyname.clipifrontc:badgeTextAppearance}
{@link #Badge_badgeTextColor com.companyname.clipifrontc:badgeTextColor}
{@link #Badge_badgeVerticalPadding com.companyname.clipifrontc:badgeVerticalPadding}
{@link #Badge_badgeWidePadding com.companyname.clipifrontc:badgeWidePadding}
{@link #Badge_badgeWidth com.companyname.clipifrontc:badgeWidth}
{@link #Badge_badgeWithTextHeight com.companyname.clipifrontc:badgeWithTextHeight}
{@link #Badge_badgeWithTextRadius com.companyname.clipifrontc:badgeWithTextRadius}
{@link #Badge_badgeWithTextShapeAppearance com.companyname.clipifrontc:badgeWithTextShapeAppearance}
{@link #Badge_badgeWithTextShapeAppearanceOverlay com.companyname.clipifrontc:badgeWithTextShapeAppearanceOverlay}
{@link #Badge_badgeWithTextWidth com.companyname.clipifrontc:badgeWithTextWidth}
{@link #Badge_horizontalOffset com.companyname.clipifrontc:horizontalOffset}
{@link #Badge_horizontalOffsetWithText com.companyname.clipifrontc:horizontalOffsetWithText}
{@link #Badge_largeFontVerticalOffsetAdjustment com.companyname.clipifrontc:largeFontVerticalOffsetAdjustment}
{@link #Badge_maxCharacterCount com.companyname.clipifrontc:maxCharacterCount}
{@link #Badge_maxNumber com.companyname.clipifrontc:maxNumber}
{@link #Badge_number com.companyname.clipifrontc:number}
{@link #Badge_offsetAlignmentMode com.companyname.clipifrontc:offsetAlignmentMode}
{@link #Badge_verticalOffset com.companyname.clipifrontc:verticalOffset}
{@link #Badge_verticalOffsetWithText com.companyname.clipifrontc:verticalOffsetWithText}
+ * @see #Badge_autoAdjustToWithinGrandparentBounds + * @see #Badge_backgroundColor + * @see #Badge_badgeGravity + * @see #Badge_badgeHeight + * @see #Badge_badgeRadius + * @see #Badge_badgeShapeAppearance + * @see #Badge_badgeShapeAppearanceOverlay + * @see #Badge_badgeText + * @see #Badge_badgeTextAppearance + * @see #Badge_badgeTextColor + * @see #Badge_badgeVerticalPadding + * @see #Badge_badgeWidePadding + * @see #Badge_badgeWidth + * @see #Badge_badgeWithTextHeight + * @see #Badge_badgeWithTextRadius + * @see #Badge_badgeWithTextShapeAppearance + * @see #Badge_badgeWithTextShapeAppearanceOverlay + * @see #Badge_badgeWithTextWidth + * @see #Badge_horizontalOffset + * @see #Badge_horizontalOffsetWithText + * @see #Badge_largeFontVerticalOffsetAdjustment + * @see #Badge_maxCharacterCount + * @see #Badge_maxNumber + * @see #Badge_number + * @see #Badge_offsetAlignmentMode + * @see #Badge_verticalOffset + * @see #Badge_verticalOffsetWithText + */ + public static final int[] Badge={ + 0x7f030042, 0x7f03004e, 0x7f030058, 0x7f030059, + 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005e, + 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, + 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, + 0x7f030067, 0x7f030068, 0x7f030241, 0x7f030242, + 0x7f030287, 0x7f030326, 0x7f03032a, 0x7f030378, + 0x7f03037a, 0x7f030502, 0x7f030503 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoAdjustToWithinGrandparentBounds} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:autoAdjustToWithinGrandparentBounds + */ + public static final int Badge_autoAdjustToWithinGrandparentBounds=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundColor} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundColor + */ + public static final int Badge_backgroundColor=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeGravity} + * attribute's value can be found in the {@link #Badge} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
BOTTOM_END800055Gravity.BOTTOM | Gravity.END
BOTTOM_START800053Gravity.BOTTOM | Gravity.START
TOP_END800035Gravity.TOP | Gravity.END
TOP_START800033Gravity.TOP | Gravity.START
+ * + * @attr name com.companyname.clipifrontc:badgeGravity + */ + public static final int Badge_badgeGravity=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeHeight} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeHeight + */ + public static final int Badge_badgeHeight=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeRadius} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeRadius + */ + public static final int Badge_badgeRadius=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeShapeAppearance} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:badgeShapeAppearance + */ + public static final int Badge_badgeShapeAppearance=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeShapeAppearanceOverlay} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:badgeShapeAppearanceOverlay + */ + public static final int Badge_badgeShapeAppearanceOverlay=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeText} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:badgeText + */ + public static final int Badge_badgeText=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeTextAppearance} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:badgeTextAppearance + */ + public static final int Badge_badgeTextAppearance=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeTextColor} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:badgeTextColor + */ + public static final int Badge_badgeTextColor=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeVerticalPadding} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeVerticalPadding + */ + public static final int Badge_badgeVerticalPadding=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWidePadding} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeWidePadding + */ + public static final int Badge_badgeWidePadding=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWidth} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeWidth + */ + public static final int Badge_badgeWidth=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWithTextHeight} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeWithTextHeight + */ + public static final int Badge_badgeWithTextHeight=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWithTextRadius} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeWithTextRadius + */ + public static final int Badge_badgeWithTextRadius=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWithTextShapeAppearance} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:badgeWithTextShapeAppearance + */ + public static final int Badge_badgeWithTextShapeAppearance=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWithTextShapeAppearanceOverlay} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:badgeWithTextShapeAppearanceOverlay + */ + public static final int Badge_badgeWithTextShapeAppearanceOverlay=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#badgeWithTextWidth} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:badgeWithTextWidth + */ + public static final int Badge_badgeWithTextWidth=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#horizontalOffset} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:horizontalOffset + */ + public static final int Badge_horizontalOffset=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#horizontalOffsetWithText} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:horizontalOffsetWithText + */ + public static final int Badge_horizontalOffsetWithText=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#largeFontVerticalOffsetAdjustment} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:largeFontVerticalOffsetAdjustment + */ + public static final int Badge_largeFontVerticalOffsetAdjustment=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxCharacterCount} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:maxCharacterCount + */ + public static final int Badge_maxCharacterCount=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxNumber} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:maxNumber + */ + public static final int Badge_maxNumber=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#number} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:number + */ + public static final int Badge_number=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#offsetAlignmentMode} + * attribute's value can be found in the {@link #Badge} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
edge0The offsets begin at the edge of the anchor.
legacy1Follows the legacy offset alignment behavior. The horizontal offset begins at a variable + * permanent inset from the edge of the anchor, and the vertical offset begins at the center + * of the badge aligned with the edge of the anchor.
+ * + * @attr name com.companyname.clipifrontc:offsetAlignmentMode + */ + public static final int Badge_offsetAlignmentMode=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#verticalOffset} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:verticalOffset + */ + public static final int Badge_verticalOffset=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#verticalOffsetWithText} + * attribute's value can be found in the {@link #Badge} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:verticalOffsetWithText + */ + public static final int Badge_verticalOffsetWithText=26; + /** + * Attributes that can be used with a BaseProgressIndicator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BaseProgressIndicator_android_indeterminate android:indeterminate}
{@link #BaseProgressIndicator_hideAnimationBehavior com.companyname.clipifrontc:hideAnimationBehavior}
{@link #BaseProgressIndicator_indicatorColor com.companyname.clipifrontc:indicatorColor}
{@link #BaseProgressIndicator_indicatorTrackGapSize com.companyname.clipifrontc:indicatorTrackGapSize}
{@link #BaseProgressIndicator_minHideDelay com.companyname.clipifrontc:minHideDelay}
{@link #BaseProgressIndicator_showAnimationBehavior com.companyname.clipifrontc:showAnimationBehavior}
{@link #BaseProgressIndicator_showDelay com.companyname.clipifrontc:showDelay}
{@link #BaseProgressIndicator_trackColor com.companyname.clipifrontc:trackColor}
{@link #BaseProgressIndicator_trackCornerRadius com.companyname.clipifrontc:trackCornerRadius}
{@link #BaseProgressIndicator_trackThickness com.companyname.clipifrontc:trackThickness}
+ * @see #BaseProgressIndicator_android_indeterminate + * @see #BaseProgressIndicator_hideAnimationBehavior + * @see #BaseProgressIndicator_indicatorColor + * @see #BaseProgressIndicator_indicatorTrackGapSize + * @see #BaseProgressIndicator_minHideDelay + * @see #BaseProgressIndicator_showAnimationBehavior + * @see #BaseProgressIndicator_showDelay + * @see #BaseProgressIndicator_trackColor + * @see #BaseProgressIndicator_trackCornerRadius + * @see #BaseProgressIndicator_trackThickness + */ + public static final int[] BaseProgressIndicator={ + 0x01010139, 0x7f030236, 0x7f030256, 0x7f03025b, + 0x7f030334, 0x7f0303ef, 0x7f0303f1, 0x7f0304e5, + 0x7f0304e8, 0x7f0304ef + }; + /** + *

This symbol is the offset where the {@link android.R.attr#indeterminate} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:indeterminate + */ + public static final int BaseProgressIndicator_android_indeterminate=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideAnimationBehavior} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
escape3Escapes in the progression direction for the linear type; + * no effect for the circular type.
inward2Collapses from the top edge to the bottom edge for the linear type; + * collapses from the outer edge to the inner edge for the circular type.
none0No animation used; disappears immediately.
outward1Collapses from the bottom edge to the top edge for the linear type; + * collapses from the inner edge to the outer edge for the circular type.
+ * + * @attr name com.companyname.clipifrontc:hideAnimationBehavior + */ + public static final int BaseProgressIndicator_hideAnimationBehavior=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorColor} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:indicatorColor + */ + public static final int BaseProgressIndicator_indicatorColor=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorTrackGapSize} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:indicatorTrackGapSize + */ + public static final int BaseProgressIndicator_indicatorTrackGapSize=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#minHideDelay} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:minHideDelay + */ + public static final int BaseProgressIndicator_minHideDelay=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showAnimationBehavior} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
inward2Expands from the top edge to the bottom edge for the linear type; + * expands from the outer edge to the inner edge for the circular type.
none0No animation used; appears immediately.
outward1Expands from the bottom edge to the top edge for the linear type; + * expands from the inner edge to the outer edge for the circular type.
+ * + * @attr name com.companyname.clipifrontc:showAnimationBehavior + */ + public static final int BaseProgressIndicator_showAnimationBehavior=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showDelay} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:showDelay + */ + public static final int BaseProgressIndicator_showDelay=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackColor} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackColor + */ + public static final int BaseProgressIndicator_trackColor=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackCornerRadius} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackCornerRadius + */ + public static final int BaseProgressIndicator_trackCornerRadius=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackThickness} + * attribute's value can be found in the {@link #BaseProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackThickness + */ + public static final int BaseProgressIndicator_trackThickness=9; + /** + * Attributes that can be used with a BottomAppBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomAppBar_addElevationShadow com.companyname.clipifrontc:addElevationShadow}
{@link #BottomAppBar_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #BottomAppBar_elevation com.companyname.clipifrontc:elevation}
{@link #BottomAppBar_fabAlignmentMode com.companyname.clipifrontc:fabAlignmentMode}
{@link #BottomAppBar_fabAlignmentModeEndMargin com.companyname.clipifrontc:fabAlignmentModeEndMargin}
{@link #BottomAppBar_fabAnchorMode com.companyname.clipifrontc:fabAnchorMode}
{@link #BottomAppBar_fabAnimationMode com.companyname.clipifrontc:fabAnimationMode}
{@link #BottomAppBar_fabCradleMargin com.companyname.clipifrontc:fabCradleMargin}
{@link #BottomAppBar_fabCradleRoundedCornerRadius com.companyname.clipifrontc:fabCradleRoundedCornerRadius}
{@link #BottomAppBar_fabCradleVerticalOffset com.companyname.clipifrontc:fabCradleVerticalOffset}
{@link #BottomAppBar_hideOnScroll com.companyname.clipifrontc:hideOnScroll}
{@link #BottomAppBar_menuAlignmentMode com.companyname.clipifrontc:menuAlignmentMode}
{@link #BottomAppBar_navigationIconTint com.companyname.clipifrontc:navigationIconTint}
{@link #BottomAppBar_paddingBottomSystemWindowInsets com.companyname.clipifrontc:paddingBottomSystemWindowInsets}
{@link #BottomAppBar_paddingLeftSystemWindowInsets com.companyname.clipifrontc:paddingLeftSystemWindowInsets}
{@link #BottomAppBar_paddingRightSystemWindowInsets com.companyname.clipifrontc:paddingRightSystemWindowInsets}
{@link #BottomAppBar_removeEmbeddedFabElevation com.companyname.clipifrontc:removeEmbeddedFabElevation}
+ * @see #BottomAppBar_addElevationShadow + * @see #BottomAppBar_backgroundTint + * @see #BottomAppBar_elevation + * @see #BottomAppBar_fabAlignmentMode + * @see #BottomAppBar_fabAlignmentModeEndMargin + * @see #BottomAppBar_fabAnchorMode + * @see #BottomAppBar_fabAnimationMode + * @see #BottomAppBar_fabCradleMargin + * @see #BottomAppBar_fabCradleRoundedCornerRadius + * @see #BottomAppBar_fabCradleVerticalOffset + * @see #BottomAppBar_hideOnScroll + * @see #BottomAppBar_menuAlignmentMode + * @see #BottomAppBar_navigationIconTint + * @see #BottomAppBar_paddingBottomSystemWindowInsets + * @see #BottomAppBar_paddingLeftSystemWindowInsets + * @see #BottomAppBar_paddingRightSystemWindowInsets + * @see #BottomAppBar_removeEmbeddedFabElevation + */ + public static final int[] BottomAppBar={ + 0x7f03002b, 0x7f030056, 0x7f0301a9, 0x7f0301d9, + 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, + 0x7f0301de, 0x7f0301df, 0x7f03023a, 0x7f03032f, + 0x7f030370, 0x7f030385, 0x7f030387, 0x7f030388, + 0x7f0303c8 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#addElevationShadow} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:addElevationShadow + */ + public static final int BottomAppBar_addElevationShadow=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int BottomAppBar_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int BottomAppBar_elevation=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabAlignmentMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0Mode that aligns the fab to the center.
end1Mode that aligns the fab to the end.
+ * + * @attr name com.companyname.clipifrontc:fabAlignmentMode + */ + public static final int BottomAppBar_fabAlignmentMode=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabAlignmentModeEndMargin} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:fabAlignmentModeEndMargin + */ + public static final int BottomAppBar_fabAlignmentModeEndMargin=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabAnchorMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cradle1Mode that anchors the fab to be cradled within the top edge of the BottomAppBar.
embed0Mode that anchors the fab embedded inside the BottomAppBar.
+ * + * @attr name com.companyname.clipifrontc:fabAnchorMode + */ + public static final int BottomAppBar_fabAnchorMode=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabAnimationMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
scale0Mode that scales the fab down to a point, moves it, then scales the fab back to its normal size.
slide1Mode that slides the fab from one alignment mode to the next.
+ * + * @attr name com.companyname.clipifrontc:fabAnimationMode + */ + public static final int BottomAppBar_fabAnimationMode=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabCradleMargin} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:fabCradleMargin + */ + public static final int BottomAppBar_fabCradleMargin=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabCradleRoundedCornerRadius} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:fabCradleRoundedCornerRadius + */ + public static final int BottomAppBar_fabCradleRoundedCornerRadius=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabCradleVerticalOffset} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:fabCradleVerticalOffset + */ + public static final int BottomAppBar_fabCradleVerticalOffset=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideOnScroll} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hideOnScroll + */ + public static final int BottomAppBar_hideOnScroll=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#menuAlignmentMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
auto0Mode that aligns the menu automatically to avoid the FAB. Menu will be aligned at the end + * when the FAB is center aligned, and start when the FAB is end aligned.
start1Mode that aligns the menu to the start.
+ * + * @attr name com.companyname.clipifrontc:menuAlignmentMode + */ + public static final int BottomAppBar_menuAlignmentMode=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationIconTint} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:navigationIconTint + */ + public static final int BottomAppBar_navigationIconTint=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingBottomSystemWindowInsets} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingBottomSystemWindowInsets + */ + public static final int BottomAppBar_paddingBottomSystemWindowInsets=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingLeftSystemWindowInsets} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingLeftSystemWindowInsets + */ + public static final int BottomAppBar_paddingLeftSystemWindowInsets=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingRightSystemWindowInsets} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingRightSystemWindowInsets + */ + public static final int BottomAppBar_paddingRightSystemWindowInsets=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#removeEmbeddedFabElevation} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:removeEmbeddedFabElevation + */ + public static final int BottomAppBar_removeEmbeddedFabElevation=16; + /** + * Attributes that can be used with a BottomNavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomNavigationView_android_minHeight android:minHeight}
{@link #BottomNavigationView_compatShadowEnabled com.companyname.clipifrontc:compatShadowEnabled}
{@link #BottomNavigationView_itemHorizontalTranslationEnabled com.companyname.clipifrontc:itemHorizontalTranslationEnabled}
{@link #BottomNavigationView_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #BottomNavigationView_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
+ * @see #BottomNavigationView_android_minHeight + * @see #BottomNavigationView_compatShadowEnabled + * @see #BottomNavigationView_itemHorizontalTranslationEnabled + * @see #BottomNavigationView_shapeAppearance + * @see #BottomNavigationView_shapeAppearanceOverlay + */ + public static final int[] BottomNavigationView={ + 0x01010140, 0x7f030139, 0x7f030266, 0x7f0303e2, + 0x7f0303ea + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int BottomNavigationView_android_minHeight=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#compatShadowEnabled} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:compatShadowEnabled + */ + public static final int BottomNavigationView_compatShadowEnabled=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemHorizontalTranslationEnabled} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:itemHorizontalTranslationEnabled + */ + public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int BottomNavigationView_shapeAppearance=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int BottomNavigationView_shapeAppearanceOverlay=4; + /** + * Attributes that can be used with a BottomSheetBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomSheetBehavior_Layout_android_maxWidth android:maxWidth}
{@link #BottomSheetBehavior_Layout_android_maxHeight android:maxHeight}
{@link #BottomSheetBehavior_Layout_android_elevation android:elevation}
{@link #BottomSheetBehavior_Layout_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #BottomSheetBehavior_Layout_behavior_draggable com.companyname.clipifrontc:behavior_draggable}
{@link #BottomSheetBehavior_Layout_behavior_expandedOffset com.companyname.clipifrontc:behavior_expandedOffset}
{@link #BottomSheetBehavior_Layout_behavior_fitToContents com.companyname.clipifrontc:behavior_fitToContents}
{@link #BottomSheetBehavior_Layout_behavior_halfExpandedRatio com.companyname.clipifrontc:behavior_halfExpandedRatio}
{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.clipifrontc:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.clipifrontc:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_saveFlags com.companyname.clipifrontc:behavior_saveFlags}
{@link #BottomSheetBehavior_Layout_behavior_significantVelocityThreshold com.companyname.clipifrontc:behavior_significantVelocityThreshold}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.clipifrontc:behavior_skipCollapsed}
{@link #BottomSheetBehavior_Layout_gestureInsetBottomIgnored com.companyname.clipifrontc:gestureInsetBottomIgnored}
{@link #BottomSheetBehavior_Layout_marginLeftSystemWindowInsets com.companyname.clipifrontc:marginLeftSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_marginRightSystemWindowInsets com.companyname.clipifrontc:marginRightSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_marginTopSystemWindowInsets com.companyname.clipifrontc:marginTopSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets com.companyname.clipifrontc:paddingBottomSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets com.companyname.clipifrontc:paddingLeftSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_paddingRightSystemWindowInsets com.companyname.clipifrontc:paddingRightSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_paddingTopSystemWindowInsets com.companyname.clipifrontc:paddingTopSystemWindowInsets}
{@link #BottomSheetBehavior_Layout_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #BottomSheetBehavior_Layout_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #BottomSheetBehavior_Layout_shouldRemoveExpandedCorners com.companyname.clipifrontc:shouldRemoveExpandedCorners}
+ * @see #BottomSheetBehavior_Layout_android_maxWidth + * @see #BottomSheetBehavior_Layout_android_maxHeight + * @see #BottomSheetBehavior_Layout_android_elevation + * @see #BottomSheetBehavior_Layout_backgroundTint + * @see #BottomSheetBehavior_Layout_behavior_draggable + * @see #BottomSheetBehavior_Layout_behavior_expandedOffset + * @see #BottomSheetBehavior_Layout_behavior_fitToContents + * @see #BottomSheetBehavior_Layout_behavior_halfExpandedRatio + * @see #BottomSheetBehavior_Layout_behavior_hideable + * @see #BottomSheetBehavior_Layout_behavior_peekHeight + * @see #BottomSheetBehavior_Layout_behavior_saveFlags + * @see #BottomSheetBehavior_Layout_behavior_significantVelocityThreshold + * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + * @see #BottomSheetBehavior_Layout_gestureInsetBottomIgnored + * @see #BottomSheetBehavior_Layout_marginLeftSystemWindowInsets + * @see #BottomSheetBehavior_Layout_marginRightSystemWindowInsets + * @see #BottomSheetBehavior_Layout_marginTopSystemWindowInsets + * @see #BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets + * @see #BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets + * @see #BottomSheetBehavior_Layout_paddingRightSystemWindowInsets + * @see #BottomSheetBehavior_Layout_paddingTopSystemWindowInsets + * @see #BottomSheetBehavior_Layout_shapeAppearance + * @see #BottomSheetBehavior_Layout_shapeAppearanceOverlay + * @see #BottomSheetBehavior_Layout_shouldRemoveExpandedCorners + */ + public static final int[] BottomSheetBehavior_Layout={ + 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, + 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030072, + 0x7f030073, 0x7f030075, 0x7f030076, 0x7f030077, + 0x7f030078, 0x7f03021f, 0x7f0302ef, 0x7f0302f0, + 0x7f0302f1, 0x7f030385, 0x7f030387, 0x7f030388, + 0x7f03038c, 0x7f0303e2, 0x7f0303ea, 0x7f0303ee + }; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int BottomSheetBehavior_Layout_android_maxWidth=0; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int BottomSheetBehavior_Layout_android_maxHeight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int BottomSheetBehavior_Layout_android_elevation=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int BottomSheetBehavior_Layout_backgroundTint=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_draggable} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_draggable + */ + public static final int BottomSheetBehavior_Layout_behavior_draggable=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_expandedOffset} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:behavior_expandedOffset + */ + public static final int BottomSheetBehavior_Layout_behavior_expandedOffset=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_fitToContents} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_fitToContents + */ + public static final int BottomSheetBehavior_Layout_behavior_fitToContents=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_halfExpandedRatio} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:behavior_halfExpandedRatio + */ + public static final int BottomSheetBehavior_Layout_behavior_halfExpandedRatio=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_hideable} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_peekHeight} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffPeek at the 16:9 ratio keyline of its parent
+ * + * @attr name com.companyname.clipifrontc:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_saveFlags} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
allffffffffThis flag will preserve the all the aforementioned values on configuration change.
fitToContents2This flag will preserve the fitToContents boolean value on configuration change.
hideable4This flag will preserve the hideable boolean value on configuration change.
none0This flag will not preserve the aforementioned values on configuration change. The only + * value preserved will be the positional state, e.g. collapsed, hidden, expanded, etc. + * This is the default behavior.
peekHeight1This flag will preserve the peekHeight on configuration change.
skipCollapsed8This flag will preserve the skipCollapsed boolean value on configuration change.
+ * + * @attr name com.companyname.clipifrontc:behavior_saveFlags + */ + public static final int BottomSheetBehavior_Layout_behavior_saveFlags=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_significantVelocityThreshold} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:behavior_significantVelocityThreshold + */ + public static final int BottomSheetBehavior_Layout_behavior_significantVelocityThreshold=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_skipCollapsed} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#gestureInsetBottomIgnored} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:gestureInsetBottomIgnored + */ + public static final int BottomSheetBehavior_Layout_gestureInsetBottomIgnored=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginLeftSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginLeftSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_marginLeftSystemWindowInsets=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginRightSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginRightSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_marginRightSystemWindowInsets=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginTopSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginTopSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_marginTopSystemWindowInsets=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingBottomSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingBottomSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingLeftSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingLeftSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingRightSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingRightSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_paddingRightSystemWindowInsets=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingTopSystemWindowInsets} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingTopSystemWindowInsets + */ + public static final int BottomSheetBehavior_Layout_paddingTopSystemWindowInsets=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int BottomSheetBehavior_Layout_shapeAppearance=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int BottomSheetBehavior_Layout_shapeAppearanceOverlay=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shouldRemoveExpandedCorners} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:shouldRemoveExpandedCorners + */ + public static final int BottomSheetBehavior_Layout_shouldRemoveExpandedCorners=23; + /** + * Attributes that can be used with a ButtonBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.companyname.clipifrontc:allowStacking}
+ * @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout={ + 0x7f030030 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#allowStacking} + * attribute's value can be found in the {@link #ButtonBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:allowStacking + */ + public static final int ButtonBarLayout_allowStacking=0; + /** + * Attributes that can be used with a Capability. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #Capability_queryPatterns com.companyname.clipifrontc:queryPatterns}
{@link #Capability_shortcutMatchRequired com.companyname.clipifrontc:shortcutMatchRequired}
+ * @see #Capability_queryPatterns + * @see #Capability_shortcutMatchRequired + */ + public static final int[] Capability={ + 0x7f0303b9, 0x7f0303ed + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#queryPatterns} + * attribute's value can be found in the {@link #Capability} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:queryPatterns + */ + public static final int Capability_queryPatterns=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shortcutMatchRequired} + * attribute's value can be found in the {@link #Capability} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:shortcutMatchRequired + */ + public static final int Capability_shortcutMatchRequired=1; + /** + * Attributes that can be used with a CardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_cardBackgroundColor com.companyname.clipifrontc:cardBackgroundColor}Background color for CardView.
{@link #CardView_cardCornerRadius com.companyname.clipifrontc:cardCornerRadius}Corner radius for CardView.
{@link #CardView_cardElevation com.companyname.clipifrontc:cardElevation}Elevation for CardView.
{@link #CardView_cardMaxElevation com.companyname.clipifrontc:cardMaxElevation}Maximum Elevation for CardView.
{@link #CardView_cardPreventCornerOverlap com.companyname.clipifrontc:cardPreventCornerOverlap}Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.
{@link #CardView_cardUseCompatPadding com.companyname.clipifrontc:cardUseCompatPadding}Add padding in API v21+ as well to have the same measurements with previous versions.
{@link #CardView_contentPadding com.companyname.clipifrontc:contentPadding}Inner padding between the edges of the Card and children of the CardView.
{@link #CardView_contentPaddingBottom com.companyname.clipifrontc:contentPaddingBottom}Inner padding between the bottom edge of the Card and children of the CardView.
{@link #CardView_contentPaddingLeft com.companyname.clipifrontc:contentPaddingLeft}Inner padding between the left edge of the Card and children of the CardView.
{@link #CardView_contentPaddingRight com.companyname.clipifrontc:contentPaddingRight}Inner padding between the right edge of the Card and children of the CardView.
{@link #CardView_contentPaddingTop com.companyname.clipifrontc:contentPaddingTop}Inner padding between the top edge of the Card and children of the CardView.
+ * @see #CardView_android_minWidth + * @see #CardView_android_minHeight + * @see #CardView_cardBackgroundColor + * @see #CardView_cardCornerRadius + * @see #CardView_cardElevation + * @see #CardView_cardMaxElevation + * @see #CardView_cardPreventCornerOverlap + * @see #CardView_cardUseCompatPadding + * @see #CardView_contentPadding + * @see #CardView_contentPaddingBottom + * @see #CardView_contentPaddingLeft + * @see #CardView_contentPaddingRight + * @see #CardView_contentPaddingTop + */ + public static final int[] CardView={ + 0x0101013f, 0x01010140, 0x7f0300a1, 0x7f0300a2, + 0x7f0300a3, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, + 0x7f030149, 0x7f03014a, 0x7f03014c, 0x7f03014d, + 0x7f03014f + }; + /** + *

+ * @attr description + * Workaround to read user defined minimum width + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int CardView_android_minWidth=0; + /** + *

+ * @attr description + * Workaround to read user defined minimum height + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int CardView_android_minHeight=1; + /** + *

+ * @attr description + * Background color for CardView. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:cardBackgroundColor + */ + public static final int CardView_cardBackgroundColor=2; + /** + *

+ * @attr description + * Corner radius for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:cardCornerRadius + */ + public static final int CardView_cardCornerRadius=3; + /** + *

+ * @attr description + * Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:cardElevation + */ + public static final int CardView_cardElevation=4; + /** + *

+ * @attr description + * Maximum Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:cardMaxElevation + */ + public static final int CardView_cardMaxElevation=5; + /** + *

+ * @attr description + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:cardPreventCornerOverlap + */ + public static final int CardView_cardPreventCornerOverlap=6; + /** + *

+ * @attr description + * Add padding in API v21+ as well to have the same measurements with previous versions. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:cardUseCompatPadding + */ + public static final int CardView_cardUseCompatPadding=7; + /** + *

+ * @attr description + * Inner padding between the edges of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPadding + */ + public static final int CardView_contentPadding=8; + /** + *

+ * @attr description + * Inner padding between the bottom edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingBottom + */ + public static final int CardView_contentPaddingBottom=9; + /** + *

+ * @attr description + * Inner padding between the left edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingLeft + */ + public static final int CardView_contentPaddingLeft=10; + /** + *

+ * @attr description + * Inner padding between the right edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingRight + */ + public static final int CardView_contentPaddingRight=11; + /** + *

+ * @attr description + * Inner padding between the top edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingTop + */ + public static final int CardView_contentPaddingTop=12; + /** + * Attributes that can be used with a Carousel. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Carousel_carousel_alignment com.companyname.clipifrontc:carousel_alignment}
{@link #Carousel_carousel_backwardTransition com.companyname.clipifrontc:carousel_backwardTransition}
{@link #Carousel_carousel_emptyViewsBehavior com.companyname.clipifrontc:carousel_emptyViewsBehavior}
{@link #Carousel_carousel_firstView com.companyname.clipifrontc:carousel_firstView}
{@link #Carousel_carousel_forwardTransition com.companyname.clipifrontc:carousel_forwardTransition}
{@link #Carousel_carousel_infinite com.companyname.clipifrontc:carousel_infinite}
{@link #Carousel_carousel_nextState com.companyname.clipifrontc:carousel_nextState}
{@link #Carousel_carousel_previousState com.companyname.clipifrontc:carousel_previousState}
{@link #Carousel_carousel_touchUpMode com.companyname.clipifrontc:carousel_touchUpMode}
{@link #Carousel_carousel_touchUp_dampeningFactor com.companyname.clipifrontc:carousel_touchUp_dampeningFactor}
{@link #Carousel_carousel_touchUp_velocityThreshold com.companyname.clipifrontc:carousel_touchUp_velocityThreshold}
+ * @see #Carousel_carousel_alignment + * @see #Carousel_carousel_backwardTransition + * @see #Carousel_carousel_emptyViewsBehavior + * @see #Carousel_carousel_firstView + * @see #Carousel_carousel_forwardTransition + * @see #Carousel_carousel_infinite + * @see #Carousel_carousel_nextState + * @see #Carousel_carousel_previousState + * @see #Carousel_carousel_touchUpMode + * @see #Carousel_carousel_touchUp_dampeningFactor + * @see #Carousel_carousel_touchUp_velocityThreshold + */ + public static final int[] Carousel={ + 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, + 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300b0, + 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_alignment} + * attribute's value can be found in the {@link #Carousel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1Center-alignment
start0Start-alignment
+ * + * @attr name com.companyname.clipifrontc:carousel_alignment + */ + public static final int Carousel_carousel_alignment=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_backwardTransition} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:carousel_backwardTransition + */ + public static final int Carousel_carousel_backwardTransition=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_emptyViewsBehavior} + * attribute's value can be found in the {@link #Carousel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
gone8
invisible4
+ * + * @attr name com.companyname.clipifrontc:carousel_emptyViewsBehavior + */ + public static final int Carousel_carousel_emptyViewsBehavior=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_firstView} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:carousel_firstView + */ + public static final int Carousel_carousel_firstView=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_forwardTransition} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:carousel_forwardTransition + */ + public static final int Carousel_carousel_forwardTransition=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_infinite} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:carousel_infinite + */ + public static final int Carousel_carousel_infinite=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_nextState} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:carousel_nextState + */ + public static final int Carousel_carousel_nextState=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_previousState} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:carousel_previousState + */ + public static final int Carousel_carousel_previousState=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_touchUpMode} + * attribute's value can be found in the {@link #Carousel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
carryVelocity2
immediateStop1
+ * + * @attr name com.companyname.clipifrontc:carousel_touchUpMode + */ + public static final int Carousel_carousel_touchUpMode=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_touchUp_dampeningFactor} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:carousel_touchUp_dampeningFactor + */ + public static final int Carousel_carousel_touchUp_dampeningFactor=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#carousel_touchUp_velocityThreshold} + * attribute's value can be found in the {@link #Carousel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:carousel_touchUp_velocityThreshold + */ + public static final int Carousel_carousel_touchUp_velocityThreshold=10; + /** + * Attributes that can be used with a CheckedTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CheckedTextView_android_checkMark android:checkMark}
{@link #CheckedTextView_checkMarkCompat com.companyname.clipifrontc:checkMarkCompat}
{@link #CheckedTextView_checkMarkTint com.companyname.clipifrontc:checkMarkTint}
{@link #CheckedTextView_checkMarkTintMode com.companyname.clipifrontc:checkMarkTintMode}
+ * @see #CheckedTextView_android_checkMark + * @see #CheckedTextView_checkMarkCompat + * @see #CheckedTextView_checkMarkTint + * @see #CheckedTextView_checkMarkTintMode + */ + public static final int[] CheckedTextView={ + 0x01010108, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#checkMark} + * attribute's value can be found in the {@link #CheckedTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:checkMark + */ + public static final int CheckedTextView_android_checkMark=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkMarkCompat} + * attribute's value can be found in the {@link #CheckedTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkMarkCompat + */ + public static final int CheckedTextView_checkMarkCompat=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkMarkTint} + * attribute's value can be found in the {@link #CheckedTextView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:checkMarkTint + */ + public static final int CheckedTextView_checkMarkTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkMarkTintMode} + * attribute's value can be found in the {@link #CheckedTextView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:checkMarkTintMode + */ + public static final int CheckedTextView_checkMarkTintMode=3; + /** + * Attributes that can be used with a Chip. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Chip_android_textAppearance android:textAppearance}
{@link #Chip_android_textSize android:textSize}
{@link #Chip_android_textColor android:textColor}
{@link #Chip_android_ellipsize android:ellipsize}
{@link #Chip_android_maxWidth android:maxWidth}
{@link #Chip_android_text android:text}
{@link #Chip_android_checkable android:checkable}
{@link #Chip_checkedIcon com.companyname.clipifrontc:checkedIcon}
{@link #Chip_checkedIconEnabled com.companyname.clipifrontc:checkedIconEnabled}
{@link #Chip_checkedIconTint com.companyname.clipifrontc:checkedIconTint}
{@link #Chip_checkedIconVisible com.companyname.clipifrontc:checkedIconVisible}
{@link #Chip_chipBackgroundColor com.companyname.clipifrontc:chipBackgroundColor}
{@link #Chip_chipCornerRadius com.companyname.clipifrontc:chipCornerRadius}
{@link #Chip_chipEndPadding com.companyname.clipifrontc:chipEndPadding}
{@link #Chip_chipIcon com.companyname.clipifrontc:chipIcon}
{@link #Chip_chipIconEnabled com.companyname.clipifrontc:chipIconEnabled}
{@link #Chip_chipIconSize com.companyname.clipifrontc:chipIconSize}
{@link #Chip_chipIconTint com.companyname.clipifrontc:chipIconTint}
{@link #Chip_chipIconVisible com.companyname.clipifrontc:chipIconVisible}
{@link #Chip_chipMinHeight com.companyname.clipifrontc:chipMinHeight}
{@link #Chip_chipMinTouchTargetSize com.companyname.clipifrontc:chipMinTouchTargetSize}
{@link #Chip_chipStartPadding com.companyname.clipifrontc:chipStartPadding}
{@link #Chip_chipStrokeColor com.companyname.clipifrontc:chipStrokeColor}
{@link #Chip_chipStrokeWidth com.companyname.clipifrontc:chipStrokeWidth}
{@link #Chip_chipSurfaceColor com.companyname.clipifrontc:chipSurfaceColor}
{@link #Chip_closeIcon com.companyname.clipifrontc:closeIcon}
{@link #Chip_closeIconEnabled com.companyname.clipifrontc:closeIconEnabled}
{@link #Chip_closeIconEndPadding com.companyname.clipifrontc:closeIconEndPadding}
{@link #Chip_closeIconSize com.companyname.clipifrontc:closeIconSize}
{@link #Chip_closeIconStartPadding com.companyname.clipifrontc:closeIconStartPadding}
{@link #Chip_closeIconTint com.companyname.clipifrontc:closeIconTint}
{@link #Chip_closeIconVisible com.companyname.clipifrontc:closeIconVisible}
{@link #Chip_ensureMinTouchTargetSize com.companyname.clipifrontc:ensureMinTouchTargetSize}
{@link #Chip_hideMotionSpec com.companyname.clipifrontc:hideMotionSpec}
{@link #Chip_iconEndPadding com.companyname.clipifrontc:iconEndPadding}
{@link #Chip_iconStartPadding com.companyname.clipifrontc:iconStartPadding}
{@link #Chip_rippleColor com.companyname.clipifrontc:rippleColor}
{@link #Chip_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #Chip_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #Chip_showMotionSpec com.companyname.clipifrontc:showMotionSpec}
{@link #Chip_textEndPadding com.companyname.clipifrontc:textEndPadding}
{@link #Chip_textStartPadding com.companyname.clipifrontc:textStartPadding}
+ * @see #Chip_android_textAppearance + * @see #Chip_android_textSize + * @see #Chip_android_textColor + * @see #Chip_android_ellipsize + * @see #Chip_android_maxWidth + * @see #Chip_android_text + * @see #Chip_android_checkable + * @see #Chip_checkedIcon + * @see #Chip_checkedIconEnabled + * @see #Chip_checkedIconTint + * @see #Chip_checkedIconVisible + * @see #Chip_chipBackgroundColor + * @see #Chip_chipCornerRadius + * @see #Chip_chipEndPadding + * @see #Chip_chipIcon + * @see #Chip_chipIconEnabled + * @see #Chip_chipIconSize + * @see #Chip_chipIconTint + * @see #Chip_chipIconVisible + * @see #Chip_chipMinHeight + * @see #Chip_chipMinTouchTargetSize + * @see #Chip_chipStartPadding + * @see #Chip_chipStrokeColor + * @see #Chip_chipStrokeWidth + * @see #Chip_chipSurfaceColor + * @see #Chip_closeIcon + * @see #Chip_closeIconEnabled + * @see #Chip_closeIconEndPadding + * @see #Chip_closeIconSize + * @see #Chip_closeIconStartPadding + * @see #Chip_closeIconTint + * @see #Chip_closeIconVisible + * @see #Chip_ensureMinTouchTargetSize + * @see #Chip_hideMotionSpec + * @see #Chip_iconEndPadding + * @see #Chip_iconStartPadding + * @see #Chip_rippleColor + * @see #Chip_shapeAppearance + * @see #Chip_shapeAppearanceOverlay + * @see #Chip_showMotionSpec + * @see #Chip_textEndPadding + * @see #Chip_textStartPadding + */ + public static final int[] Chip={ + 0x01010034, 0x01010095, 0x01010098, 0x010100ab, + 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0300bc, + 0x7f0300bd, 0x7f0300c1, 0x7f0300c2, 0x7f0300c5, + 0x7f0300c6, 0x7f0300c7, 0x7f0300c9, 0x7f0300ca, + 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, + 0x7f0300cf, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, + 0x7f0300d8, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, + 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed, + 0x7f0301b9, 0x7f030237, 0x7f030245, 0x7f030249, + 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, + 0x7f030497, 0x7f0304a6 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int Chip_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int Chip_android_textSize=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int Chip_android_textColor=2; + /** + *

This symbol is the offset where the {@link android.R.attr#ellipsize} + * attribute's value can be found in the {@link #Chip} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end3
marquee4
middle2
none0
start1
+ * + * @attr name android:ellipsize + */ + public static final int Chip_android_ellipsize=3; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int Chip_android_maxWidth=4; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int Chip_android_text=5; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int Chip_android_checkable=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkedIcon + */ + public static final int Chip_checkedIcon=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:checkedIconEnabled + */ + public static final int Chip_checkedIconEnabled=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:checkedIconTint + */ + public static final int Chip_checkedIconTint=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:checkedIconVisible + */ + public static final int Chip_checkedIconVisible=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipBackgroundColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:chipBackgroundColor + */ + public static final int Chip_chipBackgroundColor=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipCornerRadius} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipCornerRadius + */ + public static final int Chip_chipCornerRadius=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipEndPadding + */ + public static final int Chip_chipEndPadding=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:chipIcon + */ + public static final int Chip_chipIcon=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chipIconEnabled + */ + public static final int Chip_chipIconEnabled=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipIconSize + */ + public static final int Chip_chipIconSize=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:chipIconTint + */ + public static final int Chip_chipIconTint=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chipIconVisible + */ + public static final int Chip_chipIconVisible=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipMinHeight} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipMinHeight + */ + public static final int Chip_chipMinHeight=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipMinTouchTargetSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipMinTouchTargetSize + */ + public static final int Chip_chipMinTouchTargetSize=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipStartPadding + */ + public static final int Chip_chipStartPadding=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipStrokeColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:chipStrokeColor + */ + public static final int Chip_chipStrokeColor=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipStrokeWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipStrokeWidth + */ + public static final int Chip_chipStrokeWidth=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipSurfaceColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:chipSurfaceColor + */ + public static final int Chip_chipSurfaceColor=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:closeIcon + */ + public static final int Chip_closeIcon=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:closeIconEnabled + */ + public static final int Chip_closeIconEnabled=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:closeIconEndPadding + */ + public static final int Chip_closeIconEndPadding=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:closeIconSize + */ + public static final int Chip_closeIconSize=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:closeIconStartPadding + */ + public static final int Chip_closeIconStartPadding=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:closeIconTint + */ + public static final int Chip_closeIconTint=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:closeIconVisible + */ + public static final int Chip_closeIconVisible=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ensureMinTouchTargetSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:ensureMinTouchTargetSize + */ + public static final int Chip_ensureMinTouchTargetSize=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:hideMotionSpec + */ + public static final int Chip_hideMotionSpec=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:iconEndPadding + */ + public static final int Chip_iconEndPadding=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:iconStartPadding + */ + public static final int Chip_iconStartPadding=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rippleColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:rippleColor + */ + public static final int Chip_rippleColor=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int Chip_shapeAppearance=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int Chip_shapeAppearanceOverlay=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:showMotionSpec + */ + public static final int Chip_showMotionSpec=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textEndPadding + */ + public static final int Chip_textEndPadding=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textStartPadding + */ + public static final int Chip_textStartPadding=41; + /** + * Attributes that can be used with a ChipGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ChipGroup_checkedChip com.companyname.clipifrontc:checkedChip}
{@link #ChipGroup_chipSpacing com.companyname.clipifrontc:chipSpacing}
{@link #ChipGroup_chipSpacingHorizontal com.companyname.clipifrontc:chipSpacingHorizontal}
{@link #ChipGroup_chipSpacingVertical com.companyname.clipifrontc:chipSpacingVertical}
{@link #ChipGroup_selectionRequired com.companyname.clipifrontc:selectionRequired}
{@link #ChipGroup_singleLine com.companyname.clipifrontc:singleLine}
{@link #ChipGroup_singleSelection com.companyname.clipifrontc:singleSelection}
+ * @see #ChipGroup_checkedChip + * @see #ChipGroup_chipSpacing + * @see #ChipGroup_chipSpacingHorizontal + * @see #ChipGroup_chipSpacingVertical + * @see #ChipGroup_selectionRequired + * @see #ChipGroup_singleLine + * @see #ChipGroup_singleSelection + */ + public static final int[] ChipGroup={ + 0x7f0300bb, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, + 0x7f0303df, 0x7f030400, 0x7f030401 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedChip} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkedChip + */ + public static final int ChipGroup_checkedChip=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipSpacing} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipSpacing + */ + public static final int ChipGroup_chipSpacing=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipSpacingHorizontal} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipSpacingHorizontal + */ + public static final int ChipGroup_chipSpacingHorizontal=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chipSpacingVertical} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:chipSpacingVertical + */ + public static final int ChipGroup_chipSpacingVertical=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#selectionRequired} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:selectionRequired + */ + public static final int ChipGroup_selectionRequired=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#singleLine} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:singleLine + */ + public static final int ChipGroup_singleLine=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#singleSelection} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:singleSelection + */ + public static final int ChipGroup_singleSelection=6; + /** + * Attributes that can be used with a CircularProgressIndicator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #CircularProgressIndicator_indicatorDirectionCircular com.companyname.clipifrontc:indicatorDirectionCircular}
{@link #CircularProgressIndicator_indicatorInset com.companyname.clipifrontc:indicatorInset}
{@link #CircularProgressIndicator_indicatorSize com.companyname.clipifrontc:indicatorSize}
+ * @see #CircularProgressIndicator_indicatorDirectionCircular + * @see #CircularProgressIndicator_indicatorInset + * @see #CircularProgressIndicator_indicatorSize + */ + public static final int[] CircularProgressIndicator={ + 0x7f030257, 0x7f030259, 0x7f03025a + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorDirectionCircular} + * attribute's value can be found in the {@link #CircularProgressIndicator} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
clockwise0In the indeterminate mode, the spinner will spin clockwise; in the + * determinate mode, the indicator will progress from the top (12 o'clock) + * clockwise.
counterclockwise1In the indeterminate mode, the spinner will spin counter-clockwise; in + * the determinate mode, the indicator will progress from the top (12 + * o'clock) counter-clockwise.
+ * + * @attr name com.companyname.clipifrontc:indicatorDirectionCircular + */ + public static final int CircularProgressIndicator_indicatorDirectionCircular=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorInset} + * attribute's value can be found in the {@link #CircularProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:indicatorInset + */ + public static final int CircularProgressIndicator_indicatorInset=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorSize} + * attribute's value can be found in the {@link #CircularProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:indicatorSize + */ + public static final int CircularProgressIndicator_indicatorSize=2; + /** + * Attributes that can be used with a ClockFaceView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ClockFaceView_clockFaceBackgroundColor com.companyname.clipifrontc:clockFaceBackgroundColor}
{@link #ClockFaceView_clockNumberTextColor com.companyname.clipifrontc:clockNumberTextColor}
+ * @see #ClockFaceView_clockFaceBackgroundColor + * @see #ClockFaceView_clockNumberTextColor + */ + public static final int[] ClockFaceView={ + 0x7f0300e3, 0x7f0300e6 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clockFaceBackgroundColor} + * attribute's value can be found in the {@link #ClockFaceView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:clockFaceBackgroundColor + */ + public static final int ClockFaceView_clockFaceBackgroundColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clockNumberTextColor} + * attribute's value can be found in the {@link #ClockFaceView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:clockNumberTextColor + */ + public static final int ClockFaceView_clockNumberTextColor=1; + /** + * Attributes that can be used with a ClockHandView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ClockHandView_clockHandColor com.companyname.clipifrontc:clockHandColor}
{@link #ClockHandView_materialCircleRadius com.companyname.clipifrontc:materialCircleRadius}
{@link #ClockHandView_selectorSize com.companyname.clipifrontc:selectorSize}
+ * @see #ClockHandView_clockHandColor + * @see #ClockHandView_materialCircleRadius + * @see #ClockHandView_selectorSize + */ + public static final int[] ClockHandView={ + 0x7f0300e4, 0x7f03030e, 0x7f0303e0 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clockHandColor} + * attribute's value can be found in the {@link #ClockHandView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:clockHandColor + */ + public static final int ClockHandView_clockHandColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialCircleRadius} + * attribute's value can be found in the {@link #ClockHandView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:materialCircleRadius + */ + public static final int ClockHandView_materialCircleRadius=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#selectorSize} + * attribute's value can be found in the {@link #ClockHandView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:selectorSize + */ + public static final int ClockHandView_selectorSize=2; + /** + * Attributes that can be used with a CollapsingToolbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.clipifrontc:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.clipifrontc:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_collapsedTitleTextColor com.companyname.clipifrontc:collapsedTitleTextColor}
{@link #CollapsingToolbarLayout_contentScrim com.companyname.clipifrontc:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.clipifrontc:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.clipifrontc:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.clipifrontc:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.clipifrontc:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.clipifrontc:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.clipifrontc:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.clipifrontc:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_expandedTitleTextColor com.companyname.clipifrontc:expandedTitleTextColor}
{@link #CollapsingToolbarLayout_extraMultilineHeightEnabled com.companyname.clipifrontc:extraMultilineHeightEnabled}
{@link #CollapsingToolbarLayout_forceApplySystemWindowInsetTop com.companyname.clipifrontc:forceApplySystemWindowInsetTop}
{@link #CollapsingToolbarLayout_maxLines com.companyname.clipifrontc:maxLines}
{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.clipifrontc:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.clipifrontc:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.clipifrontc:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.companyname.clipifrontc:title}
{@link #CollapsingToolbarLayout_titleCollapseMode com.companyname.clipifrontc:titleCollapseMode}
{@link #CollapsingToolbarLayout_titleEnabled com.companyname.clipifrontc:titleEnabled}
{@link #CollapsingToolbarLayout_titlePositionInterpolator com.companyname.clipifrontc:titlePositionInterpolator}
{@link #CollapsingToolbarLayout_titleTextEllipsize com.companyname.clipifrontc:titleTextEllipsize}
{@link #CollapsingToolbarLayout_toolbarId com.companyname.clipifrontc:toolbarId}
+ * @see #CollapsingToolbarLayout_collapsedTitleGravity + * @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + * @see #CollapsingToolbarLayout_collapsedTitleTextColor + * @see #CollapsingToolbarLayout_contentScrim + * @see #CollapsingToolbarLayout_expandedTitleGravity + * @see #CollapsingToolbarLayout_expandedTitleMargin + * @see #CollapsingToolbarLayout_expandedTitleMarginBottom + * @see #CollapsingToolbarLayout_expandedTitleMarginEnd + * @see #CollapsingToolbarLayout_expandedTitleMarginStart + * @see #CollapsingToolbarLayout_expandedTitleMarginTop + * @see #CollapsingToolbarLayout_expandedTitleTextAppearance + * @see #CollapsingToolbarLayout_expandedTitleTextColor + * @see #CollapsingToolbarLayout_extraMultilineHeightEnabled + * @see #CollapsingToolbarLayout_forceApplySystemWindowInsetTop + * @see #CollapsingToolbarLayout_maxLines + * @see #CollapsingToolbarLayout_scrimAnimationDuration + * @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + * @see #CollapsingToolbarLayout_statusBarScrim + * @see #CollapsingToolbarLayout_title + * @see #CollapsingToolbarLayout_titleCollapseMode + * @see #CollapsingToolbarLayout_titleEnabled + * @see #CollapsingToolbarLayout_titlePositionInterpolator + * @see #CollapsingToolbarLayout_titleTextEllipsize + * @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout={ + 0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f030150, + 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301cc, + 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, + 0x7f0301d8, 0x7f03021a, 0x7f030329, 0x7f0303d2, + 0x7f0303d4, 0x7f03042f, 0x7f0304c8, 0x7f0304ca, + 0x7f0304cb, 0x7f0304d2, 0x7f0304d5, 0x7f0304d8 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapsedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push title to the bottom of its container, not changing its size.
center11Place the title in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place title in the horizontal center of its container, not changing its size.
center_vertical10Place title in the vertical center of its container, not changing its size.
end800005Push title to the end of its container, not changing its size.
fill_vertical70Grow the vertical size of the title if needed so it completely fills its container.
left3Push title to the left of its container, not changing its size.
right5Push title to the right of its container, not changing its size.
start800003Push title to the beginning of its container, not changing its size.
top30Push title to the top of its container, not changing its size.
+ * + * @attr name com.companyname.clipifrontc:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapsedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapsedTitleTextColor} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:collapsedTitleTextColor + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextColor=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push title to the bottom of its container, not changing its size.
center11Place the title in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place title in the horizontal center of its container, not changing its size.
center_vertical10Place title in the vertical center of its container, not changing its size.
end800005Push title to the end of its container, not changing its size.
fill_vertical70Grow the vertical size of the title if needed so it completely fills its container.
left3Push title to the left of its container, not changing its size.
right5Push title to the right of its container, not changing its size.
start800003Push title to the beginning of its container, not changing its size.
top30Push title to the top of its container, not changing its size.
+ * + * @attr name com.companyname.clipifrontc:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleMargin} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleMarginBottom} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleMarginEnd} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleMarginStart} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleMarginTop} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedTitleTextColor} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:expandedTitleTextColor + */ + public static final int CollapsingToolbarLayout_expandedTitleTextColor=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#extraMultilineHeightEnabled} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:extraMultilineHeightEnabled + */ + public static final int CollapsingToolbarLayout_extraMultilineHeightEnabled=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#forceApplySystemWindowInsetTop} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:forceApplySystemWindowInsetTop + */ + public static final int CollapsingToolbarLayout_forceApplySystemWindowInsetTop=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxLines} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:maxLines + */ + public static final int CollapsingToolbarLayout_maxLines=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#scrimAnimationDuration} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#scrimVisibleHeightTrigger} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#statusBarScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#title} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:title + */ + public static final int CollapsingToolbarLayout_title=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleCollapseMode} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fade1The expanded title will fade out and translate, and the collapsed title will fade in.
scale0The expanded title will continuously scale and translate to its final collapsed position.
+ * + * @attr name com.companyname.clipifrontc:titleCollapseMode + */ + public static final int CollapsingToolbarLayout_titleCollapseMode=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleEnabled} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titlePositionInterpolator} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:titlePositionInterpolator + */ + public static final int CollapsingToolbarLayout_titlePositionInterpolator=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleTextEllipsize} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end2
marquee3
middle1
start0
+ * + * @attr name com.companyname.clipifrontc:titleTextEllipsize + */ + public static final int CollapsingToolbarLayout_titleTextEllipsize=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#toolbarId} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId=23; + /** + * Attributes that can be used with a CollapsingToolbarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.clipifrontc:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.clipifrontc:layout_collapseParallaxMultiplier}
+ * @see #CollapsingToolbarLayout_Layout_layout_collapseMode + * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout={ + 0x7f030292, 0x7f030293 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_collapseMode} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0The view will act as normal with no collapsing behavior.
parallax2The view will scroll in a parallax fashion. See the + * layout_collapseParallaxMultiplier attribute to change the multiplier.
pin1The view will pin in place.
+ * + * @attr name com.companyname.clipifrontc:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_collapseParallaxMultiplier} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; + /** + * Attributes that can be used with a ColorStateListItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_lStar android:lStar}
{@link #ColorStateListItem_alpha com.companyname.clipifrontc:alpha}
{@link #ColorStateListItem_lStar com.companyname.clipifrontc:lStar}
+ * @see #ColorStateListItem_android_color + * @see #ColorStateListItem_android_alpha + * @see #ColorStateListItem_android_lStar + * @see #ColorStateListItem_alpha + * @see #ColorStateListItem_lStar + */ + public static final int[] ColorStateListItem={ + 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, + 0x7f030283 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#color} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int ColorStateListItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha=1; + /** + *

This symbol is the offset where the {@link android.R.attr#lStar} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:lStar + */ + public static final int ColorStateListItem_android_lStar=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:alpha + */ + public static final int ColorStateListItem_alpha=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lStar} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:lStar + */ + public static final int ColorStateListItem_lStar=4; + /** + * Attributes that can be used with a CompoundButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonCompat com.companyname.clipifrontc:buttonCompat}
{@link #CompoundButton_buttonTint com.companyname.clipifrontc:buttonTint}
{@link #CompoundButton_buttonTintMode com.companyname.clipifrontc:buttonTintMode}
+ * @see #CompoundButton_android_button + * @see #CompoundButton_buttonCompat + * @see #CompoundButton_buttonTint + * @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton={ + 0x01010107, 0x7f030096, 0x7f03009f, 0x7f0300a0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int CompoundButton_android_button=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonCompat} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonCompat + */ + public static final int CompoundButton_buttonCompat=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonTint} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:buttonTint + */ + public static final int CompoundButton_buttonTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonTintMode} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode=3; + /** + * Attributes that can be used with a Constraint. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Constraint_android_orientation android:orientation}
{@link #Constraint_android_id android:id}
{@link #Constraint_android_visibility android:visibility}
{@link #Constraint_android_layout_width android:layout_width}
{@link #Constraint_android_layout_height android:layout_height}
{@link #Constraint_android_layout_marginLeft android:layout_marginLeft}
{@link #Constraint_android_layout_marginTop android:layout_marginTop}
{@link #Constraint_android_layout_marginRight android:layout_marginRight}
{@link #Constraint_android_layout_marginBottom android:layout_marginBottom}
{@link #Constraint_android_maxWidth android:maxWidth}
{@link #Constraint_android_maxHeight android:maxHeight}
{@link #Constraint_android_minWidth android:minWidth}
{@link #Constraint_android_minHeight android:minHeight}
{@link #Constraint_android_alpha android:alpha}
{@link #Constraint_android_transformPivotX android:transformPivotX}
{@link #Constraint_android_transformPivotY android:transformPivotY}
{@link #Constraint_android_translationX android:translationX}
{@link #Constraint_android_translationY android:translationY}
{@link #Constraint_android_scaleX android:scaleX}
{@link #Constraint_android_scaleY android:scaleY}
{@link #Constraint_android_rotation android:rotation}
{@link #Constraint_android_rotationX android:rotationX}
{@link #Constraint_android_rotationY android:rotationY}
{@link #Constraint_android_layout_marginStart android:layout_marginStart}
{@link #Constraint_android_layout_marginEnd android:layout_marginEnd}
{@link #Constraint_android_translationZ android:translationZ}
{@link #Constraint_android_elevation android:elevation}
{@link #Constraint_animateCircleAngleTo com.companyname.clipifrontc:animateCircleAngleTo}
{@link #Constraint_animateRelativeTo com.companyname.clipifrontc:animateRelativeTo}
{@link #Constraint_barrierAllowsGoneWidgets com.companyname.clipifrontc:barrierAllowsGoneWidgets}
{@link #Constraint_barrierDirection com.companyname.clipifrontc:barrierDirection}
{@link #Constraint_barrierMargin com.companyname.clipifrontc:barrierMargin}
{@link #Constraint_chainUseRtl com.companyname.clipifrontc:chainUseRtl}
{@link #Constraint_constraint_referenced_ids com.companyname.clipifrontc:constraint_referenced_ids}
{@link #Constraint_constraint_referenced_tags com.companyname.clipifrontc:constraint_referenced_tags}
{@link #Constraint_drawPath com.companyname.clipifrontc:drawPath}
{@link #Constraint_flow_firstHorizontalBias com.companyname.clipifrontc:flow_firstHorizontalBias}
{@link #Constraint_flow_firstHorizontalStyle com.companyname.clipifrontc:flow_firstHorizontalStyle}
{@link #Constraint_flow_firstVerticalBias com.companyname.clipifrontc:flow_firstVerticalBias}
{@link #Constraint_flow_firstVerticalStyle com.companyname.clipifrontc:flow_firstVerticalStyle}
{@link #Constraint_flow_horizontalAlign com.companyname.clipifrontc:flow_horizontalAlign}
{@link #Constraint_flow_horizontalBias com.companyname.clipifrontc:flow_horizontalBias}
{@link #Constraint_flow_horizontalGap com.companyname.clipifrontc:flow_horizontalGap}
{@link #Constraint_flow_horizontalStyle com.companyname.clipifrontc:flow_horizontalStyle}
{@link #Constraint_flow_lastHorizontalBias com.companyname.clipifrontc:flow_lastHorizontalBias}
{@link #Constraint_flow_lastHorizontalStyle com.companyname.clipifrontc:flow_lastHorizontalStyle}
{@link #Constraint_flow_lastVerticalBias com.companyname.clipifrontc:flow_lastVerticalBias}
{@link #Constraint_flow_lastVerticalStyle com.companyname.clipifrontc:flow_lastVerticalStyle}
{@link #Constraint_flow_maxElementsWrap com.companyname.clipifrontc:flow_maxElementsWrap}
{@link #Constraint_flow_verticalAlign com.companyname.clipifrontc:flow_verticalAlign}
{@link #Constraint_flow_verticalBias com.companyname.clipifrontc:flow_verticalBias}
{@link #Constraint_flow_verticalGap com.companyname.clipifrontc:flow_verticalGap}
{@link #Constraint_flow_verticalStyle com.companyname.clipifrontc:flow_verticalStyle}
{@link #Constraint_flow_wrapMode com.companyname.clipifrontc:flow_wrapMode}
{@link #Constraint_guidelineUseRtl com.companyname.clipifrontc:guidelineUseRtl}
{@link #Constraint_layout_constrainedHeight com.companyname.clipifrontc:layout_constrainedHeight}
{@link #Constraint_layout_constrainedWidth com.companyname.clipifrontc:layout_constrainedWidth}
{@link #Constraint_layout_constraintBaseline_creator com.companyname.clipifrontc:layout_constraintBaseline_creator}
{@link #Constraint_layout_constraintBaseline_toBaselineOf com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf}
{@link #Constraint_layout_constraintBaseline_toBottomOf com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf}
{@link #Constraint_layout_constraintBaseline_toTopOf com.companyname.clipifrontc:layout_constraintBaseline_toTopOf}
{@link #Constraint_layout_constraintBottom_creator com.companyname.clipifrontc:layout_constraintBottom_creator}
{@link #Constraint_layout_constraintBottom_toBottomOf com.companyname.clipifrontc:layout_constraintBottom_toBottomOf}
{@link #Constraint_layout_constraintBottom_toTopOf com.companyname.clipifrontc:layout_constraintBottom_toTopOf}
{@link #Constraint_layout_constraintCircle com.companyname.clipifrontc:layout_constraintCircle}
{@link #Constraint_layout_constraintCircleAngle com.companyname.clipifrontc:layout_constraintCircleAngle}
{@link #Constraint_layout_constraintCircleRadius com.companyname.clipifrontc:layout_constraintCircleRadius}
{@link #Constraint_layout_constraintDimensionRatio com.companyname.clipifrontc:layout_constraintDimensionRatio}
{@link #Constraint_layout_constraintEnd_toEndOf com.companyname.clipifrontc:layout_constraintEnd_toEndOf}
{@link #Constraint_layout_constraintEnd_toStartOf com.companyname.clipifrontc:layout_constraintEnd_toStartOf}
{@link #Constraint_layout_constraintGuide_begin com.companyname.clipifrontc:layout_constraintGuide_begin}
{@link #Constraint_layout_constraintGuide_end com.companyname.clipifrontc:layout_constraintGuide_end}
{@link #Constraint_layout_constraintGuide_percent com.companyname.clipifrontc:layout_constraintGuide_percent}
{@link #Constraint_layout_constraintHeight com.companyname.clipifrontc:layout_constraintHeight}
{@link #Constraint_layout_constraintHeight_default com.companyname.clipifrontc:layout_constraintHeight_default}
{@link #Constraint_layout_constraintHeight_max com.companyname.clipifrontc:layout_constraintHeight_max}
{@link #Constraint_layout_constraintHeight_min com.companyname.clipifrontc:layout_constraintHeight_min}
{@link #Constraint_layout_constraintHeight_percent com.companyname.clipifrontc:layout_constraintHeight_percent}
{@link #Constraint_layout_constraintHorizontal_bias com.companyname.clipifrontc:layout_constraintHorizontal_bias}
{@link #Constraint_layout_constraintHorizontal_chainStyle com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle}
{@link #Constraint_layout_constraintHorizontal_weight com.companyname.clipifrontc:layout_constraintHorizontal_weight}
{@link #Constraint_layout_constraintLeft_creator com.companyname.clipifrontc:layout_constraintLeft_creator}
{@link #Constraint_layout_constraintLeft_toLeftOf com.companyname.clipifrontc:layout_constraintLeft_toLeftOf}
{@link #Constraint_layout_constraintLeft_toRightOf com.companyname.clipifrontc:layout_constraintLeft_toRightOf}
{@link #Constraint_layout_constraintRight_creator com.companyname.clipifrontc:layout_constraintRight_creator}
{@link #Constraint_layout_constraintRight_toLeftOf com.companyname.clipifrontc:layout_constraintRight_toLeftOf}
{@link #Constraint_layout_constraintRight_toRightOf com.companyname.clipifrontc:layout_constraintRight_toRightOf}
{@link #Constraint_layout_constraintStart_toEndOf com.companyname.clipifrontc:layout_constraintStart_toEndOf}
{@link #Constraint_layout_constraintStart_toStartOf com.companyname.clipifrontc:layout_constraintStart_toStartOf}
{@link #Constraint_layout_constraintTag com.companyname.clipifrontc:layout_constraintTag}
{@link #Constraint_layout_constraintTop_creator com.companyname.clipifrontc:layout_constraintTop_creator}
{@link #Constraint_layout_constraintTop_toBottomOf com.companyname.clipifrontc:layout_constraintTop_toBottomOf}
{@link #Constraint_layout_constraintTop_toTopOf com.companyname.clipifrontc:layout_constraintTop_toTopOf}
{@link #Constraint_layout_constraintVertical_bias com.companyname.clipifrontc:layout_constraintVertical_bias}
{@link #Constraint_layout_constraintVertical_chainStyle com.companyname.clipifrontc:layout_constraintVertical_chainStyle}
{@link #Constraint_layout_constraintVertical_weight com.companyname.clipifrontc:layout_constraintVertical_weight}
{@link #Constraint_layout_constraintWidth com.companyname.clipifrontc:layout_constraintWidth}
{@link #Constraint_layout_constraintWidth_default com.companyname.clipifrontc:layout_constraintWidth_default}
{@link #Constraint_layout_constraintWidth_max com.companyname.clipifrontc:layout_constraintWidth_max}
{@link #Constraint_layout_constraintWidth_min com.companyname.clipifrontc:layout_constraintWidth_min}
{@link #Constraint_layout_constraintWidth_percent com.companyname.clipifrontc:layout_constraintWidth_percent}
{@link #Constraint_layout_editor_absoluteX com.companyname.clipifrontc:layout_editor_absoluteX}
{@link #Constraint_layout_editor_absoluteY com.companyname.clipifrontc:layout_editor_absoluteY}
{@link #Constraint_layout_goneMarginBaseline com.companyname.clipifrontc:layout_goneMarginBaseline}
{@link #Constraint_layout_goneMarginBottom com.companyname.clipifrontc:layout_goneMarginBottom}
{@link #Constraint_layout_goneMarginEnd com.companyname.clipifrontc:layout_goneMarginEnd}
{@link #Constraint_layout_goneMarginLeft com.companyname.clipifrontc:layout_goneMarginLeft}
{@link #Constraint_layout_goneMarginRight com.companyname.clipifrontc:layout_goneMarginRight}
{@link #Constraint_layout_goneMarginStart com.companyname.clipifrontc:layout_goneMarginStart}
{@link #Constraint_layout_goneMarginTop com.companyname.clipifrontc:layout_goneMarginTop}
{@link #Constraint_layout_marginBaseline com.companyname.clipifrontc:layout_marginBaseline}
{@link #Constraint_layout_wrapBehaviorInParent com.companyname.clipifrontc:layout_wrapBehaviorInParent}
{@link #Constraint_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #Constraint_motionStagger com.companyname.clipifrontc:motionStagger}
{@link #Constraint_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #Constraint_pivotAnchor com.companyname.clipifrontc:pivotAnchor}
{@link #Constraint_polarRelativeTo com.companyname.clipifrontc:polarRelativeTo}
{@link #Constraint_quantizeMotionInterpolator com.companyname.clipifrontc:quantizeMotionInterpolator}
{@link #Constraint_quantizeMotionPhase com.companyname.clipifrontc:quantizeMotionPhase}
{@link #Constraint_quantizeMotionSteps com.companyname.clipifrontc:quantizeMotionSteps}
{@link #Constraint_transformPivotTarget com.companyname.clipifrontc:transformPivotTarget}
{@link #Constraint_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #Constraint_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
{@link #Constraint_visibilityMode com.companyname.clipifrontc:visibilityMode}
+ * @see #Constraint_android_orientation + * @see #Constraint_android_id + * @see #Constraint_android_visibility + * @see #Constraint_android_layout_width + * @see #Constraint_android_layout_height + * @see #Constraint_android_layout_marginLeft + * @see #Constraint_android_layout_marginTop + * @see #Constraint_android_layout_marginRight + * @see #Constraint_android_layout_marginBottom + * @see #Constraint_android_maxWidth + * @see #Constraint_android_maxHeight + * @see #Constraint_android_minWidth + * @see #Constraint_android_minHeight + * @see #Constraint_android_alpha + * @see #Constraint_android_transformPivotX + * @see #Constraint_android_transformPivotY + * @see #Constraint_android_translationX + * @see #Constraint_android_translationY + * @see #Constraint_android_scaleX + * @see #Constraint_android_scaleY + * @see #Constraint_android_rotation + * @see #Constraint_android_rotationX + * @see #Constraint_android_rotationY + * @see #Constraint_android_layout_marginStart + * @see #Constraint_android_layout_marginEnd + * @see #Constraint_android_translationZ + * @see #Constraint_android_elevation + * @see #Constraint_animateCircleAngleTo + * @see #Constraint_animateRelativeTo + * @see #Constraint_barrierAllowsGoneWidgets + * @see #Constraint_barrierDirection + * @see #Constraint_barrierMargin + * @see #Constraint_chainUseRtl + * @see #Constraint_constraint_referenced_ids + * @see #Constraint_constraint_referenced_tags + * @see #Constraint_drawPath + * @see #Constraint_flow_firstHorizontalBias + * @see #Constraint_flow_firstHorizontalStyle + * @see #Constraint_flow_firstVerticalBias + * @see #Constraint_flow_firstVerticalStyle + * @see #Constraint_flow_horizontalAlign + * @see #Constraint_flow_horizontalBias + * @see #Constraint_flow_horizontalGap + * @see #Constraint_flow_horizontalStyle + * @see #Constraint_flow_lastHorizontalBias + * @see #Constraint_flow_lastHorizontalStyle + * @see #Constraint_flow_lastVerticalBias + * @see #Constraint_flow_lastVerticalStyle + * @see #Constraint_flow_maxElementsWrap + * @see #Constraint_flow_verticalAlign + * @see #Constraint_flow_verticalBias + * @see #Constraint_flow_verticalGap + * @see #Constraint_flow_verticalStyle + * @see #Constraint_flow_wrapMode + * @see #Constraint_guidelineUseRtl + * @see #Constraint_layout_constrainedHeight + * @see #Constraint_layout_constrainedWidth + * @see #Constraint_layout_constraintBaseline_creator + * @see #Constraint_layout_constraintBaseline_toBaselineOf + * @see #Constraint_layout_constraintBaseline_toBottomOf + * @see #Constraint_layout_constraintBaseline_toTopOf + * @see #Constraint_layout_constraintBottom_creator + * @see #Constraint_layout_constraintBottom_toBottomOf + * @see #Constraint_layout_constraintBottom_toTopOf + * @see #Constraint_layout_constraintCircle + * @see #Constraint_layout_constraintCircleAngle + * @see #Constraint_layout_constraintCircleRadius + * @see #Constraint_layout_constraintDimensionRatio + * @see #Constraint_layout_constraintEnd_toEndOf + * @see #Constraint_layout_constraintEnd_toStartOf + * @see #Constraint_layout_constraintGuide_begin + * @see #Constraint_layout_constraintGuide_end + * @see #Constraint_layout_constraintGuide_percent + * @see #Constraint_layout_constraintHeight + * @see #Constraint_layout_constraintHeight_default + * @see #Constraint_layout_constraintHeight_max + * @see #Constraint_layout_constraintHeight_min + * @see #Constraint_layout_constraintHeight_percent + * @see #Constraint_layout_constraintHorizontal_bias + * @see #Constraint_layout_constraintHorizontal_chainStyle + * @see #Constraint_layout_constraintHorizontal_weight + * @see #Constraint_layout_constraintLeft_creator + * @see #Constraint_layout_constraintLeft_toLeftOf + * @see #Constraint_layout_constraintLeft_toRightOf + * @see #Constraint_layout_constraintRight_creator + * @see #Constraint_layout_constraintRight_toLeftOf + * @see #Constraint_layout_constraintRight_toRightOf + * @see #Constraint_layout_constraintStart_toEndOf + * @see #Constraint_layout_constraintStart_toStartOf + * @see #Constraint_layout_constraintTag + * @see #Constraint_layout_constraintTop_creator + * @see #Constraint_layout_constraintTop_toBottomOf + * @see #Constraint_layout_constraintTop_toTopOf + * @see #Constraint_layout_constraintVertical_bias + * @see #Constraint_layout_constraintVertical_chainStyle + * @see #Constraint_layout_constraintVertical_weight + * @see #Constraint_layout_constraintWidth + * @see #Constraint_layout_constraintWidth_default + * @see #Constraint_layout_constraintWidth_max + * @see #Constraint_layout_constraintWidth_min + * @see #Constraint_layout_constraintWidth_percent + * @see #Constraint_layout_editor_absoluteX + * @see #Constraint_layout_editor_absoluteY + * @see #Constraint_layout_goneMarginBaseline + * @see #Constraint_layout_goneMarginBottom + * @see #Constraint_layout_goneMarginEnd + * @see #Constraint_layout_goneMarginLeft + * @see #Constraint_layout_goneMarginRight + * @see #Constraint_layout_goneMarginStart + * @see #Constraint_layout_goneMarginTop + * @see #Constraint_layout_marginBaseline + * @see #Constraint_layout_wrapBehaviorInParent + * @see #Constraint_motionProgress + * @see #Constraint_motionStagger + * @see #Constraint_pathMotionArc + * @see #Constraint_pivotAnchor + * @see #Constraint_polarRelativeTo + * @see #Constraint_quantizeMotionInterpolator + * @see #Constraint_quantizeMotionPhase + * @see #Constraint_quantizeMotionSteps + * @see #Constraint_transformPivotTarget + * @see #Constraint_transitionEasing + * @see #Constraint_transitionPathRotate + * @see #Constraint_visibilityMode + */ + public static final int[] Constraint={ + 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, + 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, + 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, + 0x01010140, 0x0101031f, 0x01010320, 0x01010321, + 0x01010322, 0x01010323, 0x01010324, 0x01010325, + 0x01010326, 0x01010327, 0x01010328, 0x010103b5, + 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, + 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, + 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f030194, + 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, + 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, + 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, + 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, + 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, + 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, + 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, + 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, + 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, + 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, + 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, + 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, + 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, + 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, + 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, + 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, + 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, + 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, + 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, + 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, + 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, + 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int Constraint_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int Constraint_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#visibility} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone2
invisible1
visible0
+ * + * @attr name android:visibility + */ + public static final int Constraint_android_visibility=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int Constraint_android_layout_width=3; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int Constraint_android_layout_height=4; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginLeft + */ + public static final int Constraint_android_layout_marginLeft=5; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginTop + */ + public static final int Constraint_android_layout_marginTop=6; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginRight + */ + public static final int Constraint_android_layout_marginRight=7; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginBottom + */ + public static final int Constraint_android_layout_marginBottom=8; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int Constraint_android_maxWidth=9; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int Constraint_android_maxHeight=10; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int Constraint_android_minWidth=11; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Constraint_android_minHeight=12; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int Constraint_android_alpha=13; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotX} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotX + */ + public static final int Constraint_android_transformPivotX=14; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotY} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotY + */ + public static final int Constraint_android_transformPivotY=15; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int Constraint_android_translationX=16; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int Constraint_android_translationY=17; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int Constraint_android_scaleX=18; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int Constraint_android_scaleY=19; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int Constraint_android_rotation=20; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int Constraint_android_rotationX=21; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int Constraint_android_rotationY=22; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginStart + */ + public static final int Constraint_android_layout_marginStart=23; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginEnd + */ + public static final int Constraint_android_layout_marginEnd=24; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int Constraint_android_translationZ=25; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int Constraint_android_elevation=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateCircleAngleTo} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
antiClockwise3
bestChoice0
clockwise2
closest1
constraint4
+ * + * @attr name com.companyname.clipifrontc:animateCircleAngleTo + */ + public static final int Constraint_animateCircleAngleTo=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateRelativeTo} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:animateRelativeTo + */ + public static final int Constraint_animateRelativeTo=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierAllowsGoneWidgets} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:barrierAllowsGoneWidgets + */ + public static final int Constraint_barrierAllowsGoneWidgets=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierDirection} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ * + * @attr name com.companyname.clipifrontc:barrierDirection + */ + public static final int Constraint_barrierDirection=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierMargin} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barrierMargin + */ + public static final int Constraint_barrierMargin=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chainUseRtl} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chainUseRtl + */ + public static final int Constraint_chainUseRtl=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_ids} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_ids + */ + public static final int Constraint_constraint_referenced_ids=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_tags} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_tags + */ + public static final int Constraint_constraint_referenced_tags=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawPath} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ * + * @attr name com.companyname.clipifrontc:drawPath + */ + public static final int Constraint_drawPath=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalBias + */ + public static final int Constraint_flow_firstHorizontalBias=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalStyle + */ + public static final int Constraint_flow_firstHorizontalStyle=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstVerticalBias + */ + public static final int Constraint_flow_firstVerticalBias=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstVerticalStyle + */ + public static final int Constraint_flow_firstVerticalStyle=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalAlign} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center2
end1
start0
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalAlign + */ + public static final int Constraint_flow_horizontalAlign=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_horizontalBias + */ + public static final int Constraint_flow_horizontalBias=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalGap} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_horizontalGap + */ + public static final int Constraint_flow_horizontalGap=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalStyle + */ + public static final int Constraint_flow_horizontalStyle=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalBias + */ + public static final int Constraint_flow_lastHorizontalBias=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalStyle + */ + public static final int Constraint_flow_lastHorizontalStyle=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastVerticalBias + */ + public static final int Constraint_flow_lastVerticalBias=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastVerticalStyle + */ + public static final int Constraint_flow_lastVerticalStyle=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_maxElementsWrap} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:flow_maxElementsWrap + */ + public static final int Constraint_flow_maxElementsWrap=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalAlign} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
baseline3
bottom1
center2
top0
+ * + * @attr name com.companyname.clipifrontc:flow_verticalAlign + */ + public static final int Constraint_flow_verticalAlign=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalBias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_verticalBias + */ + public static final int Constraint_flow_verticalBias=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalGap} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_verticalGap + */ + public static final int Constraint_flow_verticalGap=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_verticalStyle + */ + public static final int Constraint_flow_verticalStyle=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_wrapMode} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
aligned2
chain1
chain23
none0
+ * + * @attr name com.companyname.clipifrontc:flow_wrapMode + */ + public static final int Constraint_flow_wrapMode=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#guidelineUseRtl} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:guidelineUseRtl + */ + public static final int Constraint_guidelineUseRtl=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedHeight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedHeight + */ + public static final int Constraint_layout_constrainedHeight=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedWidth} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedWidth + */ + public static final int Constraint_layout_constrainedWidth=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_creator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_creator + */ + public static final int Constraint_layout_constraintBaseline_creator=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBaselineOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf + */ + public static final int Constraint_layout_constraintBaseline_toBaselineOf=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBottomOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf + */ + public static final int Constraint_layout_constraintBaseline_toBottomOf=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toTopOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toTopOf + */ + public static final int Constraint_layout_constraintBaseline_toTopOf=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_creator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_creator + */ + public static final int Constraint_layout_constraintBottom_creator=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toBottomOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toBottomOf + */ + public static final int Constraint_layout_constraintBottom_toBottomOf=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toTopOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toTopOf + */ + public static final int Constraint_layout_constraintBottom_toTopOf=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircle + */ + public static final int Constraint_layout_constraintCircle=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleAngle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleAngle + */ + public static final int Constraint_layout_constraintCircleAngle=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleRadius} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleRadius + */ + public static final int Constraint_layout_constraintCircleRadius=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintDimensionRatio} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintDimensionRatio + */ + public static final int Constraint_layout_constraintDimensionRatio=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toEndOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toEndOf + */ + public static final int Constraint_layout_constraintEnd_toEndOf=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toStartOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toStartOf + */ + public static final int Constraint_layout_constraintEnd_toStartOf=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_begin} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_begin + */ + public static final int Constraint_layout_constraintGuide_begin=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_end} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_end + */ + public static final int Constraint_layout_constraintGuide_end=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_percent} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_percent + */ + public static final int Constraint_layout_constraintGuide_percent=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight + */ + public static final int Constraint_layout_constraintHeight=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_default} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_default + */ + public static final int Constraint_layout_constraintHeight_default=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_max} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_max + */ + public static final int Constraint_layout_constraintHeight_max=75; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_min} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_min + */ + public static final int Constraint_layout_constraintHeight_min=76; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_percent} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_percent + */ + public static final int Constraint_layout_constraintHeight_percent=77; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_bias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_bias + */ + public static final int Constraint_layout_constraintHorizontal_bias=78; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_chainStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle + */ + public static final int Constraint_layout_constraintHorizontal_chainStyle=79; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_weight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_weight + */ + public static final int Constraint_layout_constraintHorizontal_weight=80; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_creator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_creator + */ + public static final int Constraint_layout_constraintLeft_creator=81; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toLeftOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toLeftOf + */ + public static final int Constraint_layout_constraintLeft_toLeftOf=82; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toRightOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toRightOf + */ + public static final int Constraint_layout_constraintLeft_toRightOf=83; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_creator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintRight_creator + */ + public static final int Constraint_layout_constraintRight_creator=84; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toLeftOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toLeftOf + */ + public static final int Constraint_layout_constraintRight_toLeftOf=85; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toRightOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toRightOf + */ + public static final int Constraint_layout_constraintRight_toRightOf=86; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toEndOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toEndOf + */ + public static final int Constraint_layout_constraintStart_toEndOf=87; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toStartOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toStartOf + */ + public static final int Constraint_layout_constraintStart_toStartOf=88; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTag} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintTag + */ + public static final int Constraint_layout_constraintTag=89; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_creator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintTop_creator + */ + public static final int Constraint_layout_constraintTop_creator=90; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toBottomOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toBottomOf + */ + public static final int Constraint_layout_constraintTop_toBottomOf=91; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toTopOf} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toTopOf + */ + public static final int Constraint_layout_constraintTop_toTopOf=92; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_bias} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_bias + */ + public static final int Constraint_layout_constraintVertical_bias=93; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_chainStyle} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_chainStyle + */ + public static final int Constraint_layout_constraintVertical_chainStyle=94; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_weight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_weight + */ + public static final int Constraint_layout_constraintVertical_weight=95; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth + */ + public static final int Constraint_layout_constraintWidth=96; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_default} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_default + */ + public static final int Constraint_layout_constraintWidth_default=97; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_max} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_max + */ + public static final int Constraint_layout_constraintWidth_max=98; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_min} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_min + */ + public static final int Constraint_layout_constraintWidth_min=99; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_percent} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_percent + */ + public static final int Constraint_layout_constraintWidth_percent=100; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteX} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteX + */ + public static final int Constraint_layout_editor_absoluteX=101; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteY} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteY + */ + public static final int Constraint_layout_editor_absoluteY=102; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBaseline} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBaseline + */ + public static final int Constraint_layout_goneMarginBaseline=103; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBottom} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBottom + */ + public static final int Constraint_layout_goneMarginBottom=104; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginEnd} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginEnd + */ + public static final int Constraint_layout_goneMarginEnd=105; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginLeft} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginLeft + */ + public static final int Constraint_layout_goneMarginLeft=106; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginRight} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginRight + */ + public static final int Constraint_layout_goneMarginRight=107; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginStart} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginStart + */ + public static final int Constraint_layout_goneMarginStart=108; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginTop} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginTop + */ + public static final int Constraint_layout_goneMarginTop=109; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_marginBaseline} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_marginBaseline + */ + public static final int Constraint_layout_marginBaseline=110; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_wrapBehaviorInParent} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ * + * @attr name com.companyname.clipifrontc:layout_wrapBehaviorInParent + */ + public static final int Constraint_layout_wrapBehaviorInParent=111; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int Constraint_motionProgress=112; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionStagger} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionStagger + */ + public static final int Constraint_motionStagger=113; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int Constraint_pathMotionArc=114; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pivotAnchor} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:pivotAnchor + */ + public static final int Constraint_pivotAnchor=115; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#polarRelativeTo} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:polarRelativeTo + */ + public static final int Constraint_polarRelativeTo=116; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionInterpolator} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ * + * @attr name com.companyname.clipifrontc:quantizeMotionInterpolator + */ + public static final int Constraint_quantizeMotionInterpolator=117; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionPhase} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:quantizeMotionPhase + */ + public static final int Constraint_quantizeMotionPhase=118; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionSteps} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:quantizeMotionSteps + */ + public static final int Constraint_quantizeMotionSteps=119; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transformPivotTarget} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:transformPivotTarget + */ + public static final int Constraint_transformPivotTarget=120; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int Constraint_transitionEasing=121; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #Constraint} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int Constraint_transitionPathRotate=122; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#visibilityMode} + * attribute's value can be found in the {@link #Constraint} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
ignore1
normal0
+ * + * @attr name com.companyname.clipifrontc:visibilityMode + */ + public static final int Constraint_visibilityMode=123; + /** + * Attributes that can be used with a ConstraintLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ConstraintLayout_Layout_android_orientation android:orientation}
{@link #ConstraintLayout_Layout_android_padding android:padding}
{@link #ConstraintLayout_Layout_android_paddingLeft android:paddingLeft}
{@link #ConstraintLayout_Layout_android_paddingTop android:paddingTop}
{@link #ConstraintLayout_Layout_android_paddingRight android:paddingRight}
{@link #ConstraintLayout_Layout_android_paddingBottom android:paddingBottom}
{@link #ConstraintLayout_Layout_android_visibility android:visibility}
{@link #ConstraintLayout_Layout_android_layout_width android:layout_width}
{@link #ConstraintLayout_Layout_android_layout_height android:layout_height}
{@link #ConstraintLayout_Layout_android_layout_margin android:layout_margin}
{@link #ConstraintLayout_Layout_android_layout_marginLeft android:layout_marginLeft}
{@link #ConstraintLayout_Layout_android_layout_marginTop android:layout_marginTop}
{@link #ConstraintLayout_Layout_android_layout_marginRight android:layout_marginRight}
{@link #ConstraintLayout_Layout_android_layout_marginBottom android:layout_marginBottom}
{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}
{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}
{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}
{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}
{@link #ConstraintLayout_Layout_android_paddingStart android:paddingStart}
{@link #ConstraintLayout_Layout_android_paddingEnd android:paddingEnd}
{@link #ConstraintLayout_Layout_android_layout_marginStart android:layout_marginStart}
{@link #ConstraintLayout_Layout_android_layout_marginEnd android:layout_marginEnd}
{@link #ConstraintLayout_Layout_android_elevation android:elevation}
{@link #ConstraintLayout_Layout_android_layout_marginHorizontal android:layout_marginHorizontal}
{@link #ConstraintLayout_Layout_android_layout_marginVertical android:layout_marginVertical}
{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.companyname.clipifrontc:barrierAllowsGoneWidgets}
{@link #ConstraintLayout_Layout_barrierDirection com.companyname.clipifrontc:barrierDirection}
{@link #ConstraintLayout_Layout_barrierMargin com.companyname.clipifrontc:barrierMargin}
{@link #ConstraintLayout_Layout_chainUseRtl com.companyname.clipifrontc:chainUseRtl}
{@link #ConstraintLayout_Layout_circularflow_angles com.companyname.clipifrontc:circularflow_angles}
{@link #ConstraintLayout_Layout_circularflow_defaultAngle com.companyname.clipifrontc:circularflow_defaultAngle}
{@link #ConstraintLayout_Layout_circularflow_defaultRadius com.companyname.clipifrontc:circularflow_defaultRadius}
{@link #ConstraintLayout_Layout_circularflow_radiusInDP com.companyname.clipifrontc:circularflow_radiusInDP}
{@link #ConstraintLayout_Layout_circularflow_viewCenter com.companyname.clipifrontc:circularflow_viewCenter}
{@link #ConstraintLayout_Layout_constraintSet com.companyname.clipifrontc:constraintSet}
{@link #ConstraintLayout_Layout_constraint_referenced_ids com.companyname.clipifrontc:constraint_referenced_ids}
{@link #ConstraintLayout_Layout_constraint_referenced_tags com.companyname.clipifrontc:constraint_referenced_tags}
{@link #ConstraintLayout_Layout_flow_firstHorizontalBias com.companyname.clipifrontc:flow_firstHorizontalBias}
{@link #ConstraintLayout_Layout_flow_firstHorizontalStyle com.companyname.clipifrontc:flow_firstHorizontalStyle}
{@link #ConstraintLayout_Layout_flow_firstVerticalBias com.companyname.clipifrontc:flow_firstVerticalBias}
{@link #ConstraintLayout_Layout_flow_firstVerticalStyle com.companyname.clipifrontc:flow_firstVerticalStyle}
{@link #ConstraintLayout_Layout_flow_horizontalAlign com.companyname.clipifrontc:flow_horizontalAlign}
{@link #ConstraintLayout_Layout_flow_horizontalBias com.companyname.clipifrontc:flow_horizontalBias}
{@link #ConstraintLayout_Layout_flow_horizontalGap com.companyname.clipifrontc:flow_horizontalGap}
{@link #ConstraintLayout_Layout_flow_horizontalStyle com.companyname.clipifrontc:flow_horizontalStyle}
{@link #ConstraintLayout_Layout_flow_lastHorizontalBias com.companyname.clipifrontc:flow_lastHorizontalBias}
{@link #ConstraintLayout_Layout_flow_lastHorizontalStyle com.companyname.clipifrontc:flow_lastHorizontalStyle}
{@link #ConstraintLayout_Layout_flow_lastVerticalBias com.companyname.clipifrontc:flow_lastVerticalBias}
{@link #ConstraintLayout_Layout_flow_lastVerticalStyle com.companyname.clipifrontc:flow_lastVerticalStyle}
{@link #ConstraintLayout_Layout_flow_maxElementsWrap com.companyname.clipifrontc:flow_maxElementsWrap}
{@link #ConstraintLayout_Layout_flow_verticalAlign com.companyname.clipifrontc:flow_verticalAlign}
{@link #ConstraintLayout_Layout_flow_verticalBias com.companyname.clipifrontc:flow_verticalBias}
{@link #ConstraintLayout_Layout_flow_verticalGap com.companyname.clipifrontc:flow_verticalGap}
{@link #ConstraintLayout_Layout_flow_verticalStyle com.companyname.clipifrontc:flow_verticalStyle}
{@link #ConstraintLayout_Layout_flow_wrapMode com.companyname.clipifrontc:flow_wrapMode}
{@link #ConstraintLayout_Layout_guidelineUseRtl com.companyname.clipifrontc:guidelineUseRtl}
{@link #ConstraintLayout_Layout_layoutDescription com.companyname.clipifrontc:layoutDescription}
{@link #ConstraintLayout_Layout_layout_constrainedHeight com.companyname.clipifrontc:layout_constrainedHeight}
{@link #ConstraintLayout_Layout_layout_constrainedWidth com.companyname.clipifrontc:layout_constrainedWidth}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.companyname.clipifrontc:layout_constraintBaseline_creator}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_toTopOf com.companyname.clipifrontc:layout_constraintBaseline_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.companyname.clipifrontc:layout_constraintBottom_creator}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.companyname.clipifrontc:layout_constraintBottom_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.companyname.clipifrontc:layout_constraintBottom_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintCircle com.companyname.clipifrontc:layout_constraintCircle}
{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.companyname.clipifrontc:layout_constraintCircleAngle}
{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.companyname.clipifrontc:layout_constraintCircleRadius}
{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.companyname.clipifrontc:layout_constraintDimensionRatio}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.companyname.clipifrontc:layout_constraintEnd_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.companyname.clipifrontc:layout_constraintEnd_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.companyname.clipifrontc:layout_constraintGuide_begin}
{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.companyname.clipifrontc:layout_constraintGuide_end}
{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.companyname.clipifrontc:layout_constraintGuide_percent}
{@link #ConstraintLayout_Layout_layout_constraintHeight com.companyname.clipifrontc:layout_constraintHeight}
{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.companyname.clipifrontc:layout_constraintHeight_default}
{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.companyname.clipifrontc:layout_constraintHeight_max}
{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.companyname.clipifrontc:layout_constraintHeight_min}
{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.companyname.clipifrontc:layout_constraintHeight_percent}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.companyname.clipifrontc:layout_constraintHorizontal_bias}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.companyname.clipifrontc:layout_constraintHorizontal_weight}
{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.companyname.clipifrontc:layout_constraintLeft_creator}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.companyname.clipifrontc:layout_constraintLeft_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.companyname.clipifrontc:layout_constraintLeft_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.companyname.clipifrontc:layout_constraintRight_creator}
{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.companyname.clipifrontc:layout_constraintRight_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.companyname.clipifrontc:layout_constraintRight_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.companyname.clipifrontc:layout_constraintStart_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.companyname.clipifrontc:layout_constraintStart_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintTag com.companyname.clipifrontc:layout_constraintTag}
{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.companyname.clipifrontc:layout_constraintTop_creator}
{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.companyname.clipifrontc:layout_constraintTop_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.companyname.clipifrontc:layout_constraintTop_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.companyname.clipifrontc:layout_constraintVertical_bias}
{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.companyname.clipifrontc:layout_constraintVertical_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.companyname.clipifrontc:layout_constraintVertical_weight}
{@link #ConstraintLayout_Layout_layout_constraintWidth com.companyname.clipifrontc:layout_constraintWidth}
{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.companyname.clipifrontc:layout_constraintWidth_default}
{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.companyname.clipifrontc:layout_constraintWidth_max}
{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.companyname.clipifrontc:layout_constraintWidth_min}
{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.companyname.clipifrontc:layout_constraintWidth_percent}
{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.companyname.clipifrontc:layout_editor_absoluteX}
{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.companyname.clipifrontc:layout_editor_absoluteY}
{@link #ConstraintLayout_Layout_layout_goneMarginBaseline com.companyname.clipifrontc:layout_goneMarginBaseline}
{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.companyname.clipifrontc:layout_goneMarginBottom}
{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.companyname.clipifrontc:layout_goneMarginEnd}
{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.companyname.clipifrontc:layout_goneMarginLeft}
{@link #ConstraintLayout_Layout_layout_goneMarginRight com.companyname.clipifrontc:layout_goneMarginRight}
{@link #ConstraintLayout_Layout_layout_goneMarginStart com.companyname.clipifrontc:layout_goneMarginStart}
{@link #ConstraintLayout_Layout_layout_goneMarginTop com.companyname.clipifrontc:layout_goneMarginTop}
{@link #ConstraintLayout_Layout_layout_marginBaseline com.companyname.clipifrontc:layout_marginBaseline}
{@link #ConstraintLayout_Layout_layout_optimizationLevel com.companyname.clipifrontc:layout_optimizationLevel}
{@link #ConstraintLayout_Layout_layout_wrapBehaviorInParent com.companyname.clipifrontc:layout_wrapBehaviorInParent}
+ * @see #ConstraintLayout_Layout_android_orientation + * @see #ConstraintLayout_Layout_android_padding + * @see #ConstraintLayout_Layout_android_paddingLeft + * @see #ConstraintLayout_Layout_android_paddingTop + * @see #ConstraintLayout_Layout_android_paddingRight + * @see #ConstraintLayout_Layout_android_paddingBottom + * @see #ConstraintLayout_Layout_android_visibility + * @see #ConstraintLayout_Layout_android_layout_width + * @see #ConstraintLayout_Layout_android_layout_height + * @see #ConstraintLayout_Layout_android_layout_margin + * @see #ConstraintLayout_Layout_android_layout_marginLeft + * @see #ConstraintLayout_Layout_android_layout_marginTop + * @see #ConstraintLayout_Layout_android_layout_marginRight + * @see #ConstraintLayout_Layout_android_layout_marginBottom + * @see #ConstraintLayout_Layout_android_maxWidth + * @see #ConstraintLayout_Layout_android_maxHeight + * @see #ConstraintLayout_Layout_android_minWidth + * @see #ConstraintLayout_Layout_android_minHeight + * @see #ConstraintLayout_Layout_android_paddingStart + * @see #ConstraintLayout_Layout_android_paddingEnd + * @see #ConstraintLayout_Layout_android_layout_marginStart + * @see #ConstraintLayout_Layout_android_layout_marginEnd + * @see #ConstraintLayout_Layout_android_elevation + * @see #ConstraintLayout_Layout_android_layout_marginHorizontal + * @see #ConstraintLayout_Layout_android_layout_marginVertical + * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets + * @see #ConstraintLayout_Layout_barrierDirection + * @see #ConstraintLayout_Layout_barrierMargin + * @see #ConstraintLayout_Layout_chainUseRtl + * @see #ConstraintLayout_Layout_circularflow_angles + * @see #ConstraintLayout_Layout_circularflow_defaultAngle + * @see #ConstraintLayout_Layout_circularflow_defaultRadius + * @see #ConstraintLayout_Layout_circularflow_radiusInDP + * @see #ConstraintLayout_Layout_circularflow_viewCenter + * @see #ConstraintLayout_Layout_constraintSet + * @see #ConstraintLayout_Layout_constraint_referenced_ids + * @see #ConstraintLayout_Layout_constraint_referenced_tags + * @see #ConstraintLayout_Layout_flow_firstHorizontalBias + * @see #ConstraintLayout_Layout_flow_firstHorizontalStyle + * @see #ConstraintLayout_Layout_flow_firstVerticalBias + * @see #ConstraintLayout_Layout_flow_firstVerticalStyle + * @see #ConstraintLayout_Layout_flow_horizontalAlign + * @see #ConstraintLayout_Layout_flow_horizontalBias + * @see #ConstraintLayout_Layout_flow_horizontalGap + * @see #ConstraintLayout_Layout_flow_horizontalStyle + * @see #ConstraintLayout_Layout_flow_lastHorizontalBias + * @see #ConstraintLayout_Layout_flow_lastHorizontalStyle + * @see #ConstraintLayout_Layout_flow_lastVerticalBias + * @see #ConstraintLayout_Layout_flow_lastVerticalStyle + * @see #ConstraintLayout_Layout_flow_maxElementsWrap + * @see #ConstraintLayout_Layout_flow_verticalAlign + * @see #ConstraintLayout_Layout_flow_verticalBias + * @see #ConstraintLayout_Layout_flow_verticalGap + * @see #ConstraintLayout_Layout_flow_verticalStyle + * @see #ConstraintLayout_Layout_flow_wrapMode + * @see #ConstraintLayout_Layout_guidelineUseRtl + * @see #ConstraintLayout_Layout_layoutDescription + * @see #ConstraintLayout_Layout_layout_constrainedHeight + * @see #ConstraintLayout_Layout_layout_constrainedWidth + * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator + * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf + * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf + * @see #ConstraintLayout_Layout_layout_constraintBaseline_toTopOf + * @see #ConstraintLayout_Layout_layout_constraintBottom_creator + * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf + * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf + * @see #ConstraintLayout_Layout_layout_constraintCircle + * @see #ConstraintLayout_Layout_layout_constraintCircleAngle + * @see #ConstraintLayout_Layout_layout_constraintCircleRadius + * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio + * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf + * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf + * @see #ConstraintLayout_Layout_layout_constraintGuide_begin + * @see #ConstraintLayout_Layout_layout_constraintGuide_end + * @see #ConstraintLayout_Layout_layout_constraintGuide_percent + * @see #ConstraintLayout_Layout_layout_constraintHeight + * @see #ConstraintLayout_Layout_layout_constraintHeight_default + * @see #ConstraintLayout_Layout_layout_constraintHeight_max + * @see #ConstraintLayout_Layout_layout_constraintHeight_min + * @see #ConstraintLayout_Layout_layout_constraintHeight_percent + * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias + * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle + * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight + * @see #ConstraintLayout_Layout_layout_constraintLeft_creator + * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf + * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf + * @see #ConstraintLayout_Layout_layout_constraintRight_creator + * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf + * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf + * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf + * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf + * @see #ConstraintLayout_Layout_layout_constraintTag + * @see #ConstraintLayout_Layout_layout_constraintTop_creator + * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf + * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf + * @see #ConstraintLayout_Layout_layout_constraintVertical_bias + * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle + * @see #ConstraintLayout_Layout_layout_constraintVertical_weight + * @see #ConstraintLayout_Layout_layout_constraintWidth + * @see #ConstraintLayout_Layout_layout_constraintWidth_default + * @see #ConstraintLayout_Layout_layout_constraintWidth_max + * @see #ConstraintLayout_Layout_layout_constraintWidth_min + * @see #ConstraintLayout_Layout_layout_constraintWidth_percent + * @see #ConstraintLayout_Layout_layout_editor_absoluteX + * @see #ConstraintLayout_Layout_layout_editor_absoluteY + * @see #ConstraintLayout_Layout_layout_goneMarginBaseline + * @see #ConstraintLayout_Layout_layout_goneMarginBottom + * @see #ConstraintLayout_Layout_layout_goneMarginEnd + * @see #ConstraintLayout_Layout_layout_goneMarginLeft + * @see #ConstraintLayout_Layout_layout_goneMarginRight + * @see #ConstraintLayout_Layout_layout_goneMarginStart + * @see #ConstraintLayout_Layout_layout_goneMarginTop + * @see #ConstraintLayout_Layout_layout_marginBaseline + * @see #ConstraintLayout_Layout_layout_optimizationLevel + * @see #ConstraintLayout_Layout_layout_wrapBehaviorInParent + */ + public static final int[] ConstraintLayout_Layout={ + 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, + 0x010100d8, 0x010100d9, 0x010100dc, 0x010100f4, + 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, + 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, + 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, + 0x010103b5, 0x010103b6, 0x01010440, 0x0101053b, + 0x0101053c, 0x7f03006a, 0x7f03006b, 0x7f03006c, + 0x7f0300b5, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, + 0x7f0300de, 0x7f0300df, 0x7f03013b, 0x7f03013e, + 0x7f03013f, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, + 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, + 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, + 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, + 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, + 0x7f03028c, 0x7f030294, 0x7f030295, 0x7f030296, + 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, + 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, + 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, + 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, + 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, + 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, + 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, + 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, + 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, + 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, + 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, + 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, + 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, + 0x7f0302ce, 0x7f0302cf, 0x7f0302d3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int ConstraintLayout_Layout_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#padding} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:padding + */ + public static final int ConstraintLayout_Layout_android_padding=1; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingLeft} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingLeft + */ + public static final int ConstraintLayout_Layout_android_paddingLeft=2; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingTop} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingTop + */ + public static final int ConstraintLayout_Layout_android_paddingTop=3; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingRight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingRight + */ + public static final int ConstraintLayout_Layout_android_paddingRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingBottom} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingBottom + */ + public static final int ConstraintLayout_Layout_android_paddingBottom=5; + /** + *

This symbol is the offset where the {@link android.R.attr#visibility} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone2
invisible1
visible0
+ * + * @attr name android:visibility + */ + public static final int ConstraintLayout_Layout_android_visibility=6; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int ConstraintLayout_Layout_android_layout_width=7; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int ConstraintLayout_Layout_android_layout_height=8; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_margin} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_margin + */ + public static final int ConstraintLayout_Layout_android_layout_margin=9; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginLeft + */ + public static final int ConstraintLayout_Layout_android_layout_marginLeft=10; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginTop + */ + public static final int ConstraintLayout_Layout_android_layout_marginTop=11; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginRight + */ + public static final int ConstraintLayout_Layout_android_layout_marginRight=12; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginBottom + */ + public static final int ConstraintLayout_Layout_android_layout_marginBottom=13; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int ConstraintLayout_Layout_android_maxWidth=14; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int ConstraintLayout_Layout_android_maxHeight=15; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ConstraintLayout_Layout_android_minWidth=16; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int ConstraintLayout_Layout_android_minHeight=17; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingStart} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingStart + */ + public static final int ConstraintLayout_Layout_android_paddingStart=18; + /** + *

This symbol is the offset where the {@link android.R.attr#paddingEnd} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:paddingEnd + */ + public static final int ConstraintLayout_Layout_android_paddingEnd=19; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginStart + */ + public static final int ConstraintLayout_Layout_android_layout_marginStart=20; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginEnd + */ + public static final int ConstraintLayout_Layout_android_layout_marginEnd=21; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int ConstraintLayout_Layout_android_elevation=22; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginHorizontal} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginHorizontal + */ + public static final int ConstraintLayout_Layout_android_layout_marginHorizontal=23; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginVertical} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginVertical + */ + public static final int ConstraintLayout_Layout_android_layout_marginVertical=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierAllowsGoneWidgets} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:barrierAllowsGoneWidgets + */ + public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierDirection} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ * + * @attr name com.companyname.clipifrontc:barrierDirection + */ + public static final int ConstraintLayout_Layout_barrierDirection=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierMargin} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barrierMargin + */ + public static final int ConstraintLayout_Layout_barrierMargin=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chainUseRtl} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chainUseRtl + */ + public static final int ConstraintLayout_Layout_chainUseRtl=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#circularflow_angles} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:circularflow_angles + */ + public static final int ConstraintLayout_Layout_circularflow_angles=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#circularflow_defaultAngle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:circularflow_defaultAngle + */ + public static final int ConstraintLayout_Layout_circularflow_defaultAngle=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#circularflow_defaultRadius} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:circularflow_defaultRadius + */ + public static final int ConstraintLayout_Layout_circularflow_defaultRadius=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#circularflow_radiusInDP} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:circularflow_radiusInDP + */ + public static final int ConstraintLayout_Layout_circularflow_radiusInDP=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#circularflow_viewCenter} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:circularflow_viewCenter + */ + public static final int ConstraintLayout_Layout_circularflow_viewCenter=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraintSet} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraintSet + */ + public static final int ConstraintLayout_Layout_constraintSet=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_ids} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_ids + */ + public static final int ConstraintLayout_Layout_constraint_referenced_ids=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_tags} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_tags + */ + public static final int ConstraintLayout_Layout_constraint_referenced_tags=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalBias + */ + public static final int ConstraintLayout_Layout_flow_firstHorizontalBias=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalStyle + */ + public static final int ConstraintLayout_Layout_flow_firstHorizontalStyle=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstVerticalBias + */ + public static final int ConstraintLayout_Layout_flow_firstVerticalBias=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstVerticalStyle + */ + public static final int ConstraintLayout_Layout_flow_firstVerticalStyle=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalAlign} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center2
end1
start0
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalAlign + */ + public static final int ConstraintLayout_Layout_flow_horizontalAlign=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_horizontalBias + */ + public static final int ConstraintLayout_Layout_flow_horizontalBias=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalGap} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_horizontalGap + */ + public static final int ConstraintLayout_Layout_flow_horizontalGap=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalStyle + */ + public static final int ConstraintLayout_Layout_flow_horizontalStyle=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalBias + */ + public static final int ConstraintLayout_Layout_flow_lastHorizontalBias=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalStyle + */ + public static final int ConstraintLayout_Layout_flow_lastHorizontalStyle=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastVerticalBias + */ + public static final int ConstraintLayout_Layout_flow_lastVerticalBias=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastVerticalStyle + */ + public static final int ConstraintLayout_Layout_flow_lastVerticalStyle=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_maxElementsWrap} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:flow_maxElementsWrap + */ + public static final int ConstraintLayout_Layout_flow_maxElementsWrap=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalAlign} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
baseline3
bottom1
center2
top0
+ * + * @attr name com.companyname.clipifrontc:flow_verticalAlign + */ + public static final int ConstraintLayout_Layout_flow_verticalAlign=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalBias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_verticalBias + */ + public static final int ConstraintLayout_Layout_flow_verticalBias=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalGap} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_verticalGap + */ + public static final int ConstraintLayout_Layout_flow_verticalGap=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_verticalStyle + */ + public static final int ConstraintLayout_Layout_flow_verticalStyle=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_wrapMode} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
aligned2
chain1
chain23
none0
+ * + * @attr name com.companyname.clipifrontc:flow_wrapMode + */ + public static final int ConstraintLayout_Layout_flow_wrapMode=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#guidelineUseRtl} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:guidelineUseRtl + */ + public static final int ConstraintLayout_Layout_guidelineUseRtl=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layoutDescription} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layoutDescription + */ + public static final int ConstraintLayout_Layout_layoutDescription=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedHeight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedHeight + */ + public static final int ConstraintLayout_Layout_layout_constrainedHeight=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedWidth} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedWidth + */ + public static final int ConstraintLayout_Layout_layout_constrainedWidth=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_creator} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_creator + */ + public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBaselineOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf + */ + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBottomOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf + */ + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toTopOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toTopOf + */ + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toTopOf=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_creator} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_creator + */ + public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toBottomOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toBottomOf + */ + public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toTopOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toTopOf + */ + public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircle + */ + public static final int ConstraintLayout_Layout_layout_constraintCircle=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleAngle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleAngle + */ + public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleRadius} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleRadius + */ + public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintDimensionRatio} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintDimensionRatio + */ + public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toEndOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toEndOf + */ + public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toStartOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toStartOf + */ + public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_begin} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_begin + */ + public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_end} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_end + */ + public static final int ConstraintLayout_Layout_layout_constraintGuide_end=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_percent} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_percent + */ + public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight + */ + public static final int ConstraintLayout_Layout_layout_constraintHeight=75; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_default} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_default + */ + public static final int ConstraintLayout_Layout_layout_constraintHeight_default=76; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_max} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_max + */ + public static final int ConstraintLayout_Layout_layout_constraintHeight_max=77; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_min} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_min + */ + public static final int ConstraintLayout_Layout_layout_constraintHeight_min=78; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_percent} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_percent + */ + public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=79; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_bias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_bias + */ + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=80; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_chainStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle + */ + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=81; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_weight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_weight + */ + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=82; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_creator} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_creator + */ + public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=83; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toLeftOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toLeftOf + */ + public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=84; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toRightOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toRightOf + */ + public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=85; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_creator} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintRight_creator + */ + public static final int ConstraintLayout_Layout_layout_constraintRight_creator=86; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toLeftOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toLeftOf + */ + public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=87; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toRightOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toRightOf + */ + public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=88; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toEndOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toEndOf + */ + public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=89; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toStartOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toStartOf + */ + public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=90; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTag} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintTag + */ + public static final int ConstraintLayout_Layout_layout_constraintTag=91; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_creator} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintTop_creator + */ + public static final int ConstraintLayout_Layout_layout_constraintTop_creator=92; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toBottomOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toBottomOf + */ + public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=93; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toTopOf} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toTopOf + */ + public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=94; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_bias} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_bias + */ + public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=95; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_chainStyle} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_chainStyle + */ + public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=96; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_weight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_weight + */ + public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=97; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth + */ + public static final int ConstraintLayout_Layout_layout_constraintWidth=98; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_default} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_default + */ + public static final int ConstraintLayout_Layout_layout_constraintWidth_default=99; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_max} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_max + */ + public static final int ConstraintLayout_Layout_layout_constraintWidth_max=100; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_min} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_min + */ + public static final int ConstraintLayout_Layout_layout_constraintWidth_min=101; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_percent} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_percent + */ + public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=102; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteX} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteX + */ + public static final int ConstraintLayout_Layout_layout_editor_absoluteX=103; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteY} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteY + */ + public static final int ConstraintLayout_Layout_layout_editor_absoluteY=104; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBaseline} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBaseline + */ + public static final int ConstraintLayout_Layout_layout_goneMarginBaseline=105; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBottom} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBottom + */ + public static final int ConstraintLayout_Layout_layout_goneMarginBottom=106; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginEnd} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginEnd + */ + public static final int ConstraintLayout_Layout_layout_goneMarginEnd=107; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginLeft} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginLeft + */ + public static final int ConstraintLayout_Layout_layout_goneMarginLeft=108; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginRight} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginRight + */ + public static final int ConstraintLayout_Layout_layout_goneMarginRight=109; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginStart} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginStart + */ + public static final int ConstraintLayout_Layout_layout_goneMarginStart=110; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginTop} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginTop + */ + public static final int ConstraintLayout_Layout_layout_goneMarginTop=111; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_marginBaseline} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_marginBaseline + */ + public static final int ConstraintLayout_Layout_layout_marginBaseline=112; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_optimizationLevel} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
barrier2
cache_measures100
chains4
dependency_ordering200
dimensions8
direct1
graph40
graph_wrap80
grouping400
groups20
legacy0
none0
ratio10
standard101
+ * + * @attr name com.companyname.clipifrontc:layout_optimizationLevel + */ + public static final int ConstraintLayout_Layout_layout_optimizationLevel=113; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_wrapBehaviorInParent} + * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ * + * @attr name com.companyname.clipifrontc:layout_wrapBehaviorInParent + */ + public static final int ConstraintLayout_Layout_layout_wrapBehaviorInParent=114; + /** + * Attributes that can be used with a ConstraintLayout_ReactiveGuide. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange com.companyname.clipifrontc:reactiveGuide_animateChange}
{@link #ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets com.companyname.clipifrontc:reactiveGuide_applyToAllConstraintSets}
{@link #ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet com.companyname.clipifrontc:reactiveGuide_applyToConstraintSet}
{@link #ConstraintLayout_ReactiveGuide_reactiveGuide_valueId com.companyname.clipifrontc:reactiveGuide_valueId}
+ * @see #ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange + * @see #ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets + * @see #ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet + * @see #ConstraintLayout_ReactiveGuide_reactiveGuide_valueId + */ + public static final int[] ConstraintLayout_ReactiveGuide={ + 0x7f0303bf, 0x7f0303c0, 0x7f0303c1, 0x7f0303c2 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#reactiveGuide_animateChange} + * attribute's value can be found in the {@link #ConstraintLayout_ReactiveGuide} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:reactiveGuide_animateChange + */ + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#reactiveGuide_applyToAllConstraintSets} + * attribute's value can be found in the {@link #ConstraintLayout_ReactiveGuide} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:reactiveGuide_applyToAllConstraintSets + */ + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#reactiveGuide_applyToConstraintSet} + * attribute's value can be found in the {@link #ConstraintLayout_ReactiveGuide} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:reactiveGuide_applyToConstraintSet + */ + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#reactiveGuide_valueId} + * attribute's value can be found in the {@link #ConstraintLayout_ReactiveGuide} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:reactiveGuide_valueId + */ + public static final int ConstraintLayout_ReactiveGuide_reactiveGuide_valueId=3; + /** + * Attributes that can be used with a ConstraintLayout_placeholder. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ConstraintLayout_placeholder_content com.companyname.clipifrontc:content}
{@link #ConstraintLayout_placeholder_placeholder_emptyVisibility com.companyname.clipifrontc:placeholder_emptyVisibility}
+ * @see #ConstraintLayout_placeholder_content + * @see #ConstraintLayout_placeholder_placeholder_emptyVisibility + */ + public static final int[] ConstraintLayout_placeholder={ + 0x7f030141, 0x7f0303a1 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#content} + * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:content + */ + public static final int ConstraintLayout_placeholder_content=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#placeholder_emptyVisibility} + * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone8
invisible4
visible0
+ * + * @attr name com.companyname.clipifrontc:placeholder_emptyVisibility + */ + public static final int ConstraintLayout_placeholder_placeholder_emptyVisibility=1; + /** + * Attributes that can be used with a ConstraintOverride. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ConstraintOverride_android_orientation android:orientation}
{@link #ConstraintOverride_android_id android:id}
{@link #ConstraintOverride_android_visibility android:visibility}
{@link #ConstraintOverride_android_layout_width android:layout_width}
{@link #ConstraintOverride_android_layout_height android:layout_height}
{@link #ConstraintOverride_android_layout_marginLeft android:layout_marginLeft}
{@link #ConstraintOverride_android_layout_marginTop android:layout_marginTop}
{@link #ConstraintOverride_android_layout_marginRight android:layout_marginRight}
{@link #ConstraintOverride_android_layout_marginBottom android:layout_marginBottom}
{@link #ConstraintOverride_android_maxWidth android:maxWidth}
{@link #ConstraintOverride_android_maxHeight android:maxHeight}
{@link #ConstraintOverride_android_minWidth android:minWidth}
{@link #ConstraintOverride_android_minHeight android:minHeight}
{@link #ConstraintOverride_android_alpha android:alpha}
{@link #ConstraintOverride_android_transformPivotX android:transformPivotX}
{@link #ConstraintOverride_android_transformPivotY android:transformPivotY}
{@link #ConstraintOverride_android_translationX android:translationX}
{@link #ConstraintOverride_android_translationY android:translationY}
{@link #ConstraintOverride_android_scaleX android:scaleX}
{@link #ConstraintOverride_android_scaleY android:scaleY}
{@link #ConstraintOverride_android_rotation android:rotation}
{@link #ConstraintOverride_android_rotationX android:rotationX}
{@link #ConstraintOverride_android_rotationY android:rotationY}
{@link #ConstraintOverride_android_layout_marginStart android:layout_marginStart}
{@link #ConstraintOverride_android_layout_marginEnd android:layout_marginEnd}
{@link #ConstraintOverride_android_translationZ android:translationZ}
{@link #ConstraintOverride_android_elevation android:elevation}
{@link #ConstraintOverride_animateCircleAngleTo com.companyname.clipifrontc:animateCircleAngleTo}
{@link #ConstraintOverride_animateRelativeTo com.companyname.clipifrontc:animateRelativeTo}
{@link #ConstraintOverride_barrierAllowsGoneWidgets com.companyname.clipifrontc:barrierAllowsGoneWidgets}
{@link #ConstraintOverride_barrierDirection com.companyname.clipifrontc:barrierDirection}
{@link #ConstraintOverride_barrierMargin com.companyname.clipifrontc:barrierMargin}
{@link #ConstraintOverride_chainUseRtl com.companyname.clipifrontc:chainUseRtl}
{@link #ConstraintOverride_constraint_referenced_ids com.companyname.clipifrontc:constraint_referenced_ids}
{@link #ConstraintOverride_drawPath com.companyname.clipifrontc:drawPath}
{@link #ConstraintOverride_flow_firstHorizontalBias com.companyname.clipifrontc:flow_firstHorizontalBias}
{@link #ConstraintOverride_flow_firstHorizontalStyle com.companyname.clipifrontc:flow_firstHorizontalStyle}
{@link #ConstraintOverride_flow_firstVerticalBias com.companyname.clipifrontc:flow_firstVerticalBias}
{@link #ConstraintOverride_flow_firstVerticalStyle com.companyname.clipifrontc:flow_firstVerticalStyle}
{@link #ConstraintOverride_flow_horizontalAlign com.companyname.clipifrontc:flow_horizontalAlign}
{@link #ConstraintOverride_flow_horizontalBias com.companyname.clipifrontc:flow_horizontalBias}
{@link #ConstraintOverride_flow_horizontalGap com.companyname.clipifrontc:flow_horizontalGap}
{@link #ConstraintOverride_flow_horizontalStyle com.companyname.clipifrontc:flow_horizontalStyle}
{@link #ConstraintOverride_flow_lastHorizontalBias com.companyname.clipifrontc:flow_lastHorizontalBias}
{@link #ConstraintOverride_flow_lastHorizontalStyle com.companyname.clipifrontc:flow_lastHorizontalStyle}
{@link #ConstraintOverride_flow_lastVerticalBias com.companyname.clipifrontc:flow_lastVerticalBias}
{@link #ConstraintOverride_flow_lastVerticalStyle com.companyname.clipifrontc:flow_lastVerticalStyle}
{@link #ConstraintOverride_flow_maxElementsWrap com.companyname.clipifrontc:flow_maxElementsWrap}
{@link #ConstraintOverride_flow_verticalAlign com.companyname.clipifrontc:flow_verticalAlign}
{@link #ConstraintOverride_flow_verticalBias com.companyname.clipifrontc:flow_verticalBias}
{@link #ConstraintOverride_flow_verticalGap com.companyname.clipifrontc:flow_verticalGap}
{@link #ConstraintOverride_flow_verticalStyle com.companyname.clipifrontc:flow_verticalStyle}
{@link #ConstraintOverride_flow_wrapMode com.companyname.clipifrontc:flow_wrapMode}
{@link #ConstraintOverride_guidelineUseRtl com.companyname.clipifrontc:guidelineUseRtl}
{@link #ConstraintOverride_layout_constrainedHeight com.companyname.clipifrontc:layout_constrainedHeight}
{@link #ConstraintOverride_layout_constrainedWidth com.companyname.clipifrontc:layout_constrainedWidth}
{@link #ConstraintOverride_layout_constraintBaseline_creator com.companyname.clipifrontc:layout_constraintBaseline_creator}
{@link #ConstraintOverride_layout_constraintBottom_creator com.companyname.clipifrontc:layout_constraintBottom_creator}
{@link #ConstraintOverride_layout_constraintCircleAngle com.companyname.clipifrontc:layout_constraintCircleAngle}
{@link #ConstraintOverride_layout_constraintCircleRadius com.companyname.clipifrontc:layout_constraintCircleRadius}
{@link #ConstraintOverride_layout_constraintDimensionRatio com.companyname.clipifrontc:layout_constraintDimensionRatio}
{@link #ConstraintOverride_layout_constraintGuide_begin com.companyname.clipifrontc:layout_constraintGuide_begin}
{@link #ConstraintOverride_layout_constraintGuide_end com.companyname.clipifrontc:layout_constraintGuide_end}
{@link #ConstraintOverride_layout_constraintGuide_percent com.companyname.clipifrontc:layout_constraintGuide_percent}
{@link #ConstraintOverride_layout_constraintHeight com.companyname.clipifrontc:layout_constraintHeight}
{@link #ConstraintOverride_layout_constraintHeight_default com.companyname.clipifrontc:layout_constraintHeight_default}
{@link #ConstraintOverride_layout_constraintHeight_max com.companyname.clipifrontc:layout_constraintHeight_max}
{@link #ConstraintOverride_layout_constraintHeight_min com.companyname.clipifrontc:layout_constraintHeight_min}
{@link #ConstraintOverride_layout_constraintHeight_percent com.companyname.clipifrontc:layout_constraintHeight_percent}
{@link #ConstraintOverride_layout_constraintHorizontal_bias com.companyname.clipifrontc:layout_constraintHorizontal_bias}
{@link #ConstraintOverride_layout_constraintHorizontal_chainStyle com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle}
{@link #ConstraintOverride_layout_constraintHorizontal_weight com.companyname.clipifrontc:layout_constraintHorizontal_weight}
{@link #ConstraintOverride_layout_constraintLeft_creator com.companyname.clipifrontc:layout_constraintLeft_creator}
{@link #ConstraintOverride_layout_constraintRight_creator com.companyname.clipifrontc:layout_constraintRight_creator}
{@link #ConstraintOverride_layout_constraintTag com.companyname.clipifrontc:layout_constraintTag}
{@link #ConstraintOverride_layout_constraintTop_creator com.companyname.clipifrontc:layout_constraintTop_creator}
{@link #ConstraintOverride_layout_constraintVertical_bias com.companyname.clipifrontc:layout_constraintVertical_bias}
{@link #ConstraintOverride_layout_constraintVertical_chainStyle com.companyname.clipifrontc:layout_constraintVertical_chainStyle}
{@link #ConstraintOverride_layout_constraintVertical_weight com.companyname.clipifrontc:layout_constraintVertical_weight}
{@link #ConstraintOverride_layout_constraintWidth com.companyname.clipifrontc:layout_constraintWidth}
{@link #ConstraintOverride_layout_constraintWidth_default com.companyname.clipifrontc:layout_constraintWidth_default}
{@link #ConstraintOverride_layout_constraintWidth_max com.companyname.clipifrontc:layout_constraintWidth_max}
{@link #ConstraintOverride_layout_constraintWidth_min com.companyname.clipifrontc:layout_constraintWidth_min}
{@link #ConstraintOverride_layout_constraintWidth_percent com.companyname.clipifrontc:layout_constraintWidth_percent}
{@link #ConstraintOverride_layout_editor_absoluteX com.companyname.clipifrontc:layout_editor_absoluteX}
{@link #ConstraintOverride_layout_editor_absoluteY com.companyname.clipifrontc:layout_editor_absoluteY}
{@link #ConstraintOverride_layout_goneMarginBaseline com.companyname.clipifrontc:layout_goneMarginBaseline}
{@link #ConstraintOverride_layout_goneMarginBottom com.companyname.clipifrontc:layout_goneMarginBottom}
{@link #ConstraintOverride_layout_goneMarginEnd com.companyname.clipifrontc:layout_goneMarginEnd}
{@link #ConstraintOverride_layout_goneMarginLeft com.companyname.clipifrontc:layout_goneMarginLeft}
{@link #ConstraintOverride_layout_goneMarginRight com.companyname.clipifrontc:layout_goneMarginRight}
{@link #ConstraintOverride_layout_goneMarginStart com.companyname.clipifrontc:layout_goneMarginStart}
{@link #ConstraintOverride_layout_goneMarginTop com.companyname.clipifrontc:layout_goneMarginTop}
{@link #ConstraintOverride_layout_marginBaseline com.companyname.clipifrontc:layout_marginBaseline}
{@link #ConstraintOverride_layout_wrapBehaviorInParent com.companyname.clipifrontc:layout_wrapBehaviorInParent}
{@link #ConstraintOverride_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #ConstraintOverride_motionStagger com.companyname.clipifrontc:motionStagger}
{@link #ConstraintOverride_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #ConstraintOverride_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #ConstraintOverride_pivotAnchor com.companyname.clipifrontc:pivotAnchor}
{@link #ConstraintOverride_polarRelativeTo com.companyname.clipifrontc:polarRelativeTo}
{@link #ConstraintOverride_quantizeMotionInterpolator com.companyname.clipifrontc:quantizeMotionInterpolator}
{@link #ConstraintOverride_quantizeMotionPhase com.companyname.clipifrontc:quantizeMotionPhase}
{@link #ConstraintOverride_quantizeMotionSteps com.companyname.clipifrontc:quantizeMotionSteps}
{@link #ConstraintOverride_transformPivotTarget com.companyname.clipifrontc:transformPivotTarget}
{@link #ConstraintOverride_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #ConstraintOverride_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
{@link #ConstraintOverride_visibilityMode com.companyname.clipifrontc:visibilityMode}
+ * @see #ConstraintOverride_android_orientation + * @see #ConstraintOverride_android_id + * @see #ConstraintOverride_android_visibility + * @see #ConstraintOverride_android_layout_width + * @see #ConstraintOverride_android_layout_height + * @see #ConstraintOverride_android_layout_marginLeft + * @see #ConstraintOverride_android_layout_marginTop + * @see #ConstraintOverride_android_layout_marginRight + * @see #ConstraintOverride_android_layout_marginBottom + * @see #ConstraintOverride_android_maxWidth + * @see #ConstraintOverride_android_maxHeight + * @see #ConstraintOverride_android_minWidth + * @see #ConstraintOverride_android_minHeight + * @see #ConstraintOverride_android_alpha + * @see #ConstraintOverride_android_transformPivotX + * @see #ConstraintOverride_android_transformPivotY + * @see #ConstraintOverride_android_translationX + * @see #ConstraintOverride_android_translationY + * @see #ConstraintOverride_android_scaleX + * @see #ConstraintOverride_android_scaleY + * @see #ConstraintOverride_android_rotation + * @see #ConstraintOverride_android_rotationX + * @see #ConstraintOverride_android_rotationY + * @see #ConstraintOverride_android_layout_marginStart + * @see #ConstraintOverride_android_layout_marginEnd + * @see #ConstraintOverride_android_translationZ + * @see #ConstraintOverride_android_elevation + * @see #ConstraintOverride_animateCircleAngleTo + * @see #ConstraintOverride_animateRelativeTo + * @see #ConstraintOverride_barrierAllowsGoneWidgets + * @see #ConstraintOverride_barrierDirection + * @see #ConstraintOverride_barrierMargin + * @see #ConstraintOverride_chainUseRtl + * @see #ConstraintOverride_constraint_referenced_ids + * @see #ConstraintOverride_drawPath + * @see #ConstraintOverride_flow_firstHorizontalBias + * @see #ConstraintOverride_flow_firstHorizontalStyle + * @see #ConstraintOverride_flow_firstVerticalBias + * @see #ConstraintOverride_flow_firstVerticalStyle + * @see #ConstraintOverride_flow_horizontalAlign + * @see #ConstraintOverride_flow_horizontalBias + * @see #ConstraintOverride_flow_horizontalGap + * @see #ConstraintOverride_flow_horizontalStyle + * @see #ConstraintOverride_flow_lastHorizontalBias + * @see #ConstraintOverride_flow_lastHorizontalStyle + * @see #ConstraintOverride_flow_lastVerticalBias + * @see #ConstraintOverride_flow_lastVerticalStyle + * @see #ConstraintOverride_flow_maxElementsWrap + * @see #ConstraintOverride_flow_verticalAlign + * @see #ConstraintOverride_flow_verticalBias + * @see #ConstraintOverride_flow_verticalGap + * @see #ConstraintOverride_flow_verticalStyle + * @see #ConstraintOverride_flow_wrapMode + * @see #ConstraintOverride_guidelineUseRtl + * @see #ConstraintOverride_layout_constrainedHeight + * @see #ConstraintOverride_layout_constrainedWidth + * @see #ConstraintOverride_layout_constraintBaseline_creator + * @see #ConstraintOverride_layout_constraintBottom_creator + * @see #ConstraintOverride_layout_constraintCircleAngle + * @see #ConstraintOverride_layout_constraintCircleRadius + * @see #ConstraintOverride_layout_constraintDimensionRatio + * @see #ConstraintOverride_layout_constraintGuide_begin + * @see #ConstraintOverride_layout_constraintGuide_end + * @see #ConstraintOverride_layout_constraintGuide_percent + * @see #ConstraintOverride_layout_constraintHeight + * @see #ConstraintOverride_layout_constraintHeight_default + * @see #ConstraintOverride_layout_constraintHeight_max + * @see #ConstraintOverride_layout_constraintHeight_min + * @see #ConstraintOverride_layout_constraintHeight_percent + * @see #ConstraintOverride_layout_constraintHorizontal_bias + * @see #ConstraintOverride_layout_constraintHorizontal_chainStyle + * @see #ConstraintOverride_layout_constraintHorizontal_weight + * @see #ConstraintOverride_layout_constraintLeft_creator + * @see #ConstraintOverride_layout_constraintRight_creator + * @see #ConstraintOverride_layout_constraintTag + * @see #ConstraintOverride_layout_constraintTop_creator + * @see #ConstraintOverride_layout_constraintVertical_bias + * @see #ConstraintOverride_layout_constraintVertical_chainStyle + * @see #ConstraintOverride_layout_constraintVertical_weight + * @see #ConstraintOverride_layout_constraintWidth + * @see #ConstraintOverride_layout_constraintWidth_default + * @see #ConstraintOverride_layout_constraintWidth_max + * @see #ConstraintOverride_layout_constraintWidth_min + * @see #ConstraintOverride_layout_constraintWidth_percent + * @see #ConstraintOverride_layout_editor_absoluteX + * @see #ConstraintOverride_layout_editor_absoluteY + * @see #ConstraintOverride_layout_goneMarginBaseline + * @see #ConstraintOverride_layout_goneMarginBottom + * @see #ConstraintOverride_layout_goneMarginEnd + * @see #ConstraintOverride_layout_goneMarginLeft + * @see #ConstraintOverride_layout_goneMarginRight + * @see #ConstraintOverride_layout_goneMarginStart + * @see #ConstraintOverride_layout_goneMarginTop + * @see #ConstraintOverride_layout_marginBaseline + * @see #ConstraintOverride_layout_wrapBehaviorInParent + * @see #ConstraintOverride_motionProgress + * @see #ConstraintOverride_motionStagger + * @see #ConstraintOverride_motionTarget + * @see #ConstraintOverride_pathMotionArc + * @see #ConstraintOverride_pivotAnchor + * @see #ConstraintOverride_polarRelativeTo + * @see #ConstraintOverride_quantizeMotionInterpolator + * @see #ConstraintOverride_quantizeMotionPhase + * @see #ConstraintOverride_quantizeMotionSteps + * @see #ConstraintOverride_transformPivotTarget + * @see #ConstraintOverride_transitionEasing + * @see #ConstraintOverride_transitionPathRotate + * @see #ConstraintOverride_visibilityMode + */ + public static final int[] ConstraintOverride={ + 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, + 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, + 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, + 0x01010140, 0x0101031f, 0x01010320, 0x01010321, + 0x01010322, 0x01010323, 0x01010324, 0x01010325, + 0x01010326, 0x01010327, 0x01010328, 0x010103b5, + 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, + 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, + 0x7f0300b5, 0x7f03013e, 0x7f030194, 0x7f0301fa, + 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, + 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, + 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, + 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, + 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, + 0x7f030296, 0x7f03029a, 0x7f03029e, 0x7f03029f, + 0x7f0302a0, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, + 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, + 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, + 0x7f0302ae, 0x7f0302b1, 0x7f0302b6, 0x7f0302b7, + 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, + 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, + 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, + 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, + 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, + 0x7f030367, 0x7f030368, 0x7f030395, 0x7f03039c, + 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, + 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int ConstraintOverride_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ConstraintOverride_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#visibility} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone2
invisible1
visible0
+ * + * @attr name android:visibility + */ + public static final int ConstraintOverride_android_visibility=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int ConstraintOverride_android_layout_width=3; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int ConstraintOverride_android_layout_height=4; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginLeft + */ + public static final int ConstraintOverride_android_layout_marginLeft=5; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginTop + */ + public static final int ConstraintOverride_android_layout_marginTop=6; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginRight + */ + public static final int ConstraintOverride_android_layout_marginRight=7; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginBottom + */ + public static final int ConstraintOverride_android_layout_marginBottom=8; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int ConstraintOverride_android_maxWidth=9; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int ConstraintOverride_android_maxHeight=10; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ConstraintOverride_android_minWidth=11; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int ConstraintOverride_android_minHeight=12; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ConstraintOverride_android_alpha=13; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotX} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotX + */ + public static final int ConstraintOverride_android_transformPivotX=14; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotY} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotY + */ + public static final int ConstraintOverride_android_transformPivotY=15; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int ConstraintOverride_android_translationX=16; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int ConstraintOverride_android_translationY=17; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int ConstraintOverride_android_scaleX=18; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int ConstraintOverride_android_scaleY=19; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int ConstraintOverride_android_rotation=20; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int ConstraintOverride_android_rotationX=21; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int ConstraintOverride_android_rotationY=22; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginStart + */ + public static final int ConstraintOverride_android_layout_marginStart=23; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginEnd + */ + public static final int ConstraintOverride_android_layout_marginEnd=24; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int ConstraintOverride_android_translationZ=25; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int ConstraintOverride_android_elevation=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateCircleAngleTo} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
antiClockwise3
bestChoice0
clockwise2
closest1
constraint4
+ * + * @attr name com.companyname.clipifrontc:animateCircleAngleTo + */ + public static final int ConstraintOverride_animateCircleAngleTo=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateRelativeTo} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:animateRelativeTo + */ + public static final int ConstraintOverride_animateRelativeTo=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierAllowsGoneWidgets} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:barrierAllowsGoneWidgets + */ + public static final int ConstraintOverride_barrierAllowsGoneWidgets=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierDirection} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ * + * @attr name com.companyname.clipifrontc:barrierDirection + */ + public static final int ConstraintOverride_barrierDirection=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierMargin} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barrierMargin + */ + public static final int ConstraintOverride_barrierMargin=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chainUseRtl} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chainUseRtl + */ + public static final int ConstraintOverride_chainUseRtl=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_ids} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_ids + */ + public static final int ConstraintOverride_constraint_referenced_ids=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawPath} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ * + * @attr name com.companyname.clipifrontc:drawPath + */ + public static final int ConstraintOverride_drawPath=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalBias + */ + public static final int ConstraintOverride_flow_firstHorizontalBias=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalStyle + */ + public static final int ConstraintOverride_flow_firstHorizontalStyle=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstVerticalBias + */ + public static final int ConstraintOverride_flow_firstVerticalBias=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstVerticalStyle + */ + public static final int ConstraintOverride_flow_firstVerticalStyle=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalAlign} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center2
end1
start0
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalAlign + */ + public static final int ConstraintOverride_flow_horizontalAlign=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_horizontalBias + */ + public static final int ConstraintOverride_flow_horizontalBias=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalGap} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_horizontalGap + */ + public static final int ConstraintOverride_flow_horizontalGap=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalStyle + */ + public static final int ConstraintOverride_flow_horizontalStyle=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalBias + */ + public static final int ConstraintOverride_flow_lastHorizontalBias=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalStyle + */ + public static final int ConstraintOverride_flow_lastHorizontalStyle=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastVerticalBias + */ + public static final int ConstraintOverride_flow_lastVerticalBias=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastVerticalStyle + */ + public static final int ConstraintOverride_flow_lastVerticalStyle=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_maxElementsWrap} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:flow_maxElementsWrap + */ + public static final int ConstraintOverride_flow_maxElementsWrap=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalAlign} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
baseline3
bottom1
center2
top0
+ * + * @attr name com.companyname.clipifrontc:flow_verticalAlign + */ + public static final int ConstraintOverride_flow_verticalAlign=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalBias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_verticalBias + */ + public static final int ConstraintOverride_flow_verticalBias=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalGap} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_verticalGap + */ + public static final int ConstraintOverride_flow_verticalGap=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_verticalStyle + */ + public static final int ConstraintOverride_flow_verticalStyle=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_wrapMode} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
aligned2
chain1
chain23
none0
+ * + * @attr name com.companyname.clipifrontc:flow_wrapMode + */ + public static final int ConstraintOverride_flow_wrapMode=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#guidelineUseRtl} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:guidelineUseRtl + */ + public static final int ConstraintOverride_guidelineUseRtl=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedHeight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedHeight + */ + public static final int ConstraintOverride_layout_constrainedHeight=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedWidth} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedWidth + */ + public static final int ConstraintOverride_layout_constrainedWidth=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_creator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_creator + */ + public static final int ConstraintOverride_layout_constraintBaseline_creator=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_creator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_creator + */ + public static final int ConstraintOverride_layout_constraintBottom_creator=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleAngle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleAngle + */ + public static final int ConstraintOverride_layout_constraintCircleAngle=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleRadius} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleRadius + */ + public static final int ConstraintOverride_layout_constraintCircleRadius=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintDimensionRatio} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintDimensionRatio + */ + public static final int ConstraintOverride_layout_constraintDimensionRatio=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_begin} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_begin + */ + public static final int ConstraintOverride_layout_constraintGuide_begin=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_end} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_end + */ + public static final int ConstraintOverride_layout_constraintGuide_end=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_percent} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_percent + */ + public static final int ConstraintOverride_layout_constraintGuide_percent=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight + */ + public static final int ConstraintOverride_layout_constraintHeight=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_default} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_default + */ + public static final int ConstraintOverride_layout_constraintHeight_default=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_max} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_max + */ + public static final int ConstraintOverride_layout_constraintHeight_max=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_min} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_min + */ + public static final int ConstraintOverride_layout_constraintHeight_min=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_percent} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_percent + */ + public static final int ConstraintOverride_layout_constraintHeight_percent=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_bias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_bias + */ + public static final int ConstraintOverride_layout_constraintHorizontal_bias=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_chainStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle + */ + public static final int ConstraintOverride_layout_constraintHorizontal_chainStyle=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_weight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_weight + */ + public static final int ConstraintOverride_layout_constraintHorizontal_weight=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_creator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_creator + */ + public static final int ConstraintOverride_layout_constraintLeft_creator=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_creator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintRight_creator + */ + public static final int ConstraintOverride_layout_constraintRight_creator=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTag} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintTag + */ + public static final int ConstraintOverride_layout_constraintTag=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_creator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintTop_creator + */ + public static final int ConstraintOverride_layout_constraintTop_creator=75; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_bias} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_bias + */ + public static final int ConstraintOverride_layout_constraintVertical_bias=76; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_chainStyle} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_chainStyle + */ + public static final int ConstraintOverride_layout_constraintVertical_chainStyle=77; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_weight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_weight + */ + public static final int ConstraintOverride_layout_constraintVertical_weight=78; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth + */ + public static final int ConstraintOverride_layout_constraintWidth=79; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_default} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_default + */ + public static final int ConstraintOverride_layout_constraintWidth_default=80; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_max} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_max + */ + public static final int ConstraintOverride_layout_constraintWidth_max=81; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_min} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_min + */ + public static final int ConstraintOverride_layout_constraintWidth_min=82; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_percent} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_percent + */ + public static final int ConstraintOverride_layout_constraintWidth_percent=83; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteX} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteX + */ + public static final int ConstraintOverride_layout_editor_absoluteX=84; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteY} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteY + */ + public static final int ConstraintOverride_layout_editor_absoluteY=85; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBaseline} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBaseline + */ + public static final int ConstraintOverride_layout_goneMarginBaseline=86; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBottom} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBottom + */ + public static final int ConstraintOverride_layout_goneMarginBottom=87; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginEnd} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginEnd + */ + public static final int ConstraintOverride_layout_goneMarginEnd=88; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginLeft} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginLeft + */ + public static final int ConstraintOverride_layout_goneMarginLeft=89; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginRight} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginRight + */ + public static final int ConstraintOverride_layout_goneMarginRight=90; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginStart} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginStart + */ + public static final int ConstraintOverride_layout_goneMarginStart=91; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginTop} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginTop + */ + public static final int ConstraintOverride_layout_goneMarginTop=92; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_marginBaseline} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_marginBaseline + */ + public static final int ConstraintOverride_layout_marginBaseline=93; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_wrapBehaviorInParent} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ * + * @attr name com.companyname.clipifrontc:layout_wrapBehaviorInParent + */ + public static final int ConstraintOverride_layout_wrapBehaviorInParent=94; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int ConstraintOverride_motionProgress=95; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionStagger} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionStagger + */ + public static final int ConstraintOverride_motionStagger=96; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int ConstraintOverride_motionTarget=97; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int ConstraintOverride_pathMotionArc=98; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pivotAnchor} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:pivotAnchor + */ + public static final int ConstraintOverride_pivotAnchor=99; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#polarRelativeTo} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:polarRelativeTo + */ + public static final int ConstraintOverride_polarRelativeTo=100; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionInterpolator} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ * + * @attr name com.companyname.clipifrontc:quantizeMotionInterpolator + */ + public static final int ConstraintOverride_quantizeMotionInterpolator=101; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionPhase} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:quantizeMotionPhase + */ + public static final int ConstraintOverride_quantizeMotionPhase=102; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionSteps} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:quantizeMotionSteps + */ + public static final int ConstraintOverride_quantizeMotionSteps=103; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transformPivotTarget} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:transformPivotTarget + */ + public static final int ConstraintOverride_transformPivotTarget=104; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int ConstraintOverride_transitionEasing=105; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int ConstraintOverride_transitionPathRotate=106; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#visibilityMode} + * attribute's value can be found in the {@link #ConstraintOverride} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
ignore1
normal0
+ * + * @attr name com.companyname.clipifrontc:visibilityMode + */ + public static final int ConstraintOverride_visibilityMode=107; + /** + * Attributes that can be used with a ConstraintSet. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ConstraintSet_android_orientation android:orientation}
{@link #ConstraintSet_android_id android:id}
{@link #ConstraintSet_android_visibility android:visibility}
{@link #ConstraintSet_android_layout_width android:layout_width}
{@link #ConstraintSet_android_layout_height android:layout_height}
{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}
{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}
{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}
{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}
{@link #ConstraintSet_android_maxWidth android:maxWidth}
{@link #ConstraintSet_android_maxHeight android:maxHeight}
{@link #ConstraintSet_android_minWidth android:minWidth}
{@link #ConstraintSet_android_minHeight android:minHeight}
{@link #ConstraintSet_android_pivotX android:pivotX}
{@link #ConstraintSet_android_pivotY android:pivotY}
{@link #ConstraintSet_android_alpha android:alpha}
{@link #ConstraintSet_android_transformPivotX android:transformPivotX}
{@link #ConstraintSet_android_transformPivotY android:transformPivotY}
{@link #ConstraintSet_android_translationX android:translationX}
{@link #ConstraintSet_android_translationY android:translationY}
{@link #ConstraintSet_android_scaleX android:scaleX}
{@link #ConstraintSet_android_scaleY android:scaleY}
{@link #ConstraintSet_android_rotation android:rotation}
{@link #ConstraintSet_android_rotationX android:rotationX}
{@link #ConstraintSet_android_rotationY android:rotationY}
{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}
{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}
{@link #ConstraintSet_android_translationZ android:translationZ}
{@link #ConstraintSet_android_elevation android:elevation}
{@link #ConstraintSet_animateCircleAngleTo com.companyname.clipifrontc:animateCircleAngleTo}
{@link #ConstraintSet_animateRelativeTo com.companyname.clipifrontc:animateRelativeTo}
{@link #ConstraintSet_barrierAllowsGoneWidgets com.companyname.clipifrontc:barrierAllowsGoneWidgets}
{@link #ConstraintSet_barrierDirection com.companyname.clipifrontc:barrierDirection}
{@link #ConstraintSet_barrierMargin com.companyname.clipifrontc:barrierMargin}
{@link #ConstraintSet_chainUseRtl com.companyname.clipifrontc:chainUseRtl}
{@link #ConstraintSet_constraintRotate com.companyname.clipifrontc:constraintRotate}
{@link #ConstraintSet_constraint_referenced_ids com.companyname.clipifrontc:constraint_referenced_ids}
{@link #ConstraintSet_constraint_referenced_tags com.companyname.clipifrontc:constraint_referenced_tags}
{@link #ConstraintSet_deriveConstraintsFrom com.companyname.clipifrontc:deriveConstraintsFrom}
{@link #ConstraintSet_drawPath com.companyname.clipifrontc:drawPath}
{@link #ConstraintSet_flow_firstHorizontalBias com.companyname.clipifrontc:flow_firstHorizontalBias}
{@link #ConstraintSet_flow_firstHorizontalStyle com.companyname.clipifrontc:flow_firstHorizontalStyle}
{@link #ConstraintSet_flow_firstVerticalBias com.companyname.clipifrontc:flow_firstVerticalBias}
{@link #ConstraintSet_flow_firstVerticalStyle com.companyname.clipifrontc:flow_firstVerticalStyle}
{@link #ConstraintSet_flow_horizontalAlign com.companyname.clipifrontc:flow_horizontalAlign}
{@link #ConstraintSet_flow_horizontalBias com.companyname.clipifrontc:flow_horizontalBias}
{@link #ConstraintSet_flow_horizontalGap com.companyname.clipifrontc:flow_horizontalGap}
{@link #ConstraintSet_flow_horizontalStyle com.companyname.clipifrontc:flow_horizontalStyle}
{@link #ConstraintSet_flow_lastHorizontalBias com.companyname.clipifrontc:flow_lastHorizontalBias}
{@link #ConstraintSet_flow_lastHorizontalStyle com.companyname.clipifrontc:flow_lastHorizontalStyle}
{@link #ConstraintSet_flow_lastVerticalBias com.companyname.clipifrontc:flow_lastVerticalBias}
{@link #ConstraintSet_flow_lastVerticalStyle com.companyname.clipifrontc:flow_lastVerticalStyle}
{@link #ConstraintSet_flow_maxElementsWrap com.companyname.clipifrontc:flow_maxElementsWrap}
{@link #ConstraintSet_flow_verticalAlign com.companyname.clipifrontc:flow_verticalAlign}
{@link #ConstraintSet_flow_verticalBias com.companyname.clipifrontc:flow_verticalBias}
{@link #ConstraintSet_flow_verticalGap com.companyname.clipifrontc:flow_verticalGap}
{@link #ConstraintSet_flow_verticalStyle com.companyname.clipifrontc:flow_verticalStyle}
{@link #ConstraintSet_flow_wrapMode com.companyname.clipifrontc:flow_wrapMode}
{@link #ConstraintSet_guidelineUseRtl com.companyname.clipifrontc:guidelineUseRtl}
{@link #ConstraintSet_layout_constrainedHeight com.companyname.clipifrontc:layout_constrainedHeight}
{@link #ConstraintSet_layout_constrainedWidth com.companyname.clipifrontc:layout_constrainedWidth}
{@link #ConstraintSet_layout_constraintBaseline_creator com.companyname.clipifrontc:layout_constraintBaseline_creator}
{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintSet_layout_constraintBaseline_toBottomOf com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf}
{@link #ConstraintSet_layout_constraintBaseline_toTopOf com.companyname.clipifrontc:layout_constraintBaseline_toTopOf}
{@link #ConstraintSet_layout_constraintBottom_creator com.companyname.clipifrontc:layout_constraintBottom_creator}
{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.companyname.clipifrontc:layout_constraintBottom_toBottomOf}
{@link #ConstraintSet_layout_constraintBottom_toTopOf com.companyname.clipifrontc:layout_constraintBottom_toTopOf}
{@link #ConstraintSet_layout_constraintCircle com.companyname.clipifrontc:layout_constraintCircle}
{@link #ConstraintSet_layout_constraintCircleAngle com.companyname.clipifrontc:layout_constraintCircleAngle}
{@link #ConstraintSet_layout_constraintCircleRadius com.companyname.clipifrontc:layout_constraintCircleRadius}
{@link #ConstraintSet_layout_constraintDimensionRatio com.companyname.clipifrontc:layout_constraintDimensionRatio}
{@link #ConstraintSet_layout_constraintEnd_toEndOf com.companyname.clipifrontc:layout_constraintEnd_toEndOf}
{@link #ConstraintSet_layout_constraintEnd_toStartOf com.companyname.clipifrontc:layout_constraintEnd_toStartOf}
{@link #ConstraintSet_layout_constraintGuide_begin com.companyname.clipifrontc:layout_constraintGuide_begin}
{@link #ConstraintSet_layout_constraintGuide_end com.companyname.clipifrontc:layout_constraintGuide_end}
{@link #ConstraintSet_layout_constraintGuide_percent com.companyname.clipifrontc:layout_constraintGuide_percent}
{@link #ConstraintSet_layout_constraintHeight_default com.companyname.clipifrontc:layout_constraintHeight_default}
{@link #ConstraintSet_layout_constraintHeight_max com.companyname.clipifrontc:layout_constraintHeight_max}
{@link #ConstraintSet_layout_constraintHeight_min com.companyname.clipifrontc:layout_constraintHeight_min}
{@link #ConstraintSet_layout_constraintHeight_percent com.companyname.clipifrontc:layout_constraintHeight_percent}
{@link #ConstraintSet_layout_constraintHorizontal_bias com.companyname.clipifrontc:layout_constraintHorizontal_bias}
{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle}
{@link #ConstraintSet_layout_constraintHorizontal_weight com.companyname.clipifrontc:layout_constraintHorizontal_weight}
{@link #ConstraintSet_layout_constraintLeft_creator com.companyname.clipifrontc:layout_constraintLeft_creator}
{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.companyname.clipifrontc:layout_constraintLeft_toLeftOf}
{@link #ConstraintSet_layout_constraintLeft_toRightOf com.companyname.clipifrontc:layout_constraintLeft_toRightOf}
{@link #ConstraintSet_layout_constraintRight_creator com.companyname.clipifrontc:layout_constraintRight_creator}
{@link #ConstraintSet_layout_constraintRight_toLeftOf com.companyname.clipifrontc:layout_constraintRight_toLeftOf}
{@link #ConstraintSet_layout_constraintRight_toRightOf com.companyname.clipifrontc:layout_constraintRight_toRightOf}
{@link #ConstraintSet_layout_constraintStart_toEndOf com.companyname.clipifrontc:layout_constraintStart_toEndOf}
{@link #ConstraintSet_layout_constraintStart_toStartOf com.companyname.clipifrontc:layout_constraintStart_toStartOf}
{@link #ConstraintSet_layout_constraintTag com.companyname.clipifrontc:layout_constraintTag}
{@link #ConstraintSet_layout_constraintTop_creator com.companyname.clipifrontc:layout_constraintTop_creator}
{@link #ConstraintSet_layout_constraintTop_toBottomOf com.companyname.clipifrontc:layout_constraintTop_toBottomOf}
{@link #ConstraintSet_layout_constraintTop_toTopOf com.companyname.clipifrontc:layout_constraintTop_toTopOf}
{@link #ConstraintSet_layout_constraintVertical_bias com.companyname.clipifrontc:layout_constraintVertical_bias}
{@link #ConstraintSet_layout_constraintVertical_chainStyle com.companyname.clipifrontc:layout_constraintVertical_chainStyle}
{@link #ConstraintSet_layout_constraintVertical_weight com.companyname.clipifrontc:layout_constraintVertical_weight}
{@link #ConstraintSet_layout_constraintWidth_default com.companyname.clipifrontc:layout_constraintWidth_default}
{@link #ConstraintSet_layout_constraintWidth_max com.companyname.clipifrontc:layout_constraintWidth_max}
{@link #ConstraintSet_layout_constraintWidth_min com.companyname.clipifrontc:layout_constraintWidth_min}
{@link #ConstraintSet_layout_constraintWidth_percent com.companyname.clipifrontc:layout_constraintWidth_percent}
{@link #ConstraintSet_layout_editor_absoluteX com.companyname.clipifrontc:layout_editor_absoluteX}
{@link #ConstraintSet_layout_editor_absoluteY com.companyname.clipifrontc:layout_editor_absoluteY}
{@link #ConstraintSet_layout_goneMarginBaseline com.companyname.clipifrontc:layout_goneMarginBaseline}
{@link #ConstraintSet_layout_goneMarginBottom com.companyname.clipifrontc:layout_goneMarginBottom}
{@link #ConstraintSet_layout_goneMarginEnd com.companyname.clipifrontc:layout_goneMarginEnd}
{@link #ConstraintSet_layout_goneMarginLeft com.companyname.clipifrontc:layout_goneMarginLeft}
{@link #ConstraintSet_layout_goneMarginRight com.companyname.clipifrontc:layout_goneMarginRight}
{@link #ConstraintSet_layout_goneMarginStart com.companyname.clipifrontc:layout_goneMarginStart}
{@link #ConstraintSet_layout_goneMarginTop com.companyname.clipifrontc:layout_goneMarginTop}
{@link #ConstraintSet_layout_marginBaseline com.companyname.clipifrontc:layout_marginBaseline}
{@link #ConstraintSet_layout_wrapBehaviorInParent com.companyname.clipifrontc:layout_wrapBehaviorInParent}
{@link #ConstraintSet_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #ConstraintSet_motionStagger com.companyname.clipifrontc:motionStagger}
{@link #ConstraintSet_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #ConstraintSet_pivotAnchor com.companyname.clipifrontc:pivotAnchor}
{@link #ConstraintSet_polarRelativeTo com.companyname.clipifrontc:polarRelativeTo}
{@link #ConstraintSet_quantizeMotionSteps com.companyname.clipifrontc:quantizeMotionSteps}
{@link #ConstraintSet_stateLabels com.companyname.clipifrontc:stateLabels}
{@link #ConstraintSet_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #ConstraintSet_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
+ * @see #ConstraintSet_android_orientation + * @see #ConstraintSet_android_id + * @see #ConstraintSet_android_visibility + * @see #ConstraintSet_android_layout_width + * @see #ConstraintSet_android_layout_height + * @see #ConstraintSet_android_layout_marginLeft + * @see #ConstraintSet_android_layout_marginTop + * @see #ConstraintSet_android_layout_marginRight + * @see #ConstraintSet_android_layout_marginBottom + * @see #ConstraintSet_android_maxWidth + * @see #ConstraintSet_android_maxHeight + * @see #ConstraintSet_android_minWidth + * @see #ConstraintSet_android_minHeight + * @see #ConstraintSet_android_pivotX + * @see #ConstraintSet_android_pivotY + * @see #ConstraintSet_android_alpha + * @see #ConstraintSet_android_transformPivotX + * @see #ConstraintSet_android_transformPivotY + * @see #ConstraintSet_android_translationX + * @see #ConstraintSet_android_translationY + * @see #ConstraintSet_android_scaleX + * @see #ConstraintSet_android_scaleY + * @see #ConstraintSet_android_rotation + * @see #ConstraintSet_android_rotationX + * @see #ConstraintSet_android_rotationY + * @see #ConstraintSet_android_layout_marginStart + * @see #ConstraintSet_android_layout_marginEnd + * @see #ConstraintSet_android_translationZ + * @see #ConstraintSet_android_elevation + * @see #ConstraintSet_animateCircleAngleTo + * @see #ConstraintSet_animateRelativeTo + * @see #ConstraintSet_barrierAllowsGoneWidgets + * @see #ConstraintSet_barrierDirection + * @see #ConstraintSet_barrierMargin + * @see #ConstraintSet_chainUseRtl + * @see #ConstraintSet_constraintRotate + * @see #ConstraintSet_constraint_referenced_ids + * @see #ConstraintSet_constraint_referenced_tags + * @see #ConstraintSet_deriveConstraintsFrom + * @see #ConstraintSet_drawPath + * @see #ConstraintSet_flow_firstHorizontalBias + * @see #ConstraintSet_flow_firstHorizontalStyle + * @see #ConstraintSet_flow_firstVerticalBias + * @see #ConstraintSet_flow_firstVerticalStyle + * @see #ConstraintSet_flow_horizontalAlign + * @see #ConstraintSet_flow_horizontalBias + * @see #ConstraintSet_flow_horizontalGap + * @see #ConstraintSet_flow_horizontalStyle + * @see #ConstraintSet_flow_lastHorizontalBias + * @see #ConstraintSet_flow_lastHorizontalStyle + * @see #ConstraintSet_flow_lastVerticalBias + * @see #ConstraintSet_flow_lastVerticalStyle + * @see #ConstraintSet_flow_maxElementsWrap + * @see #ConstraintSet_flow_verticalAlign + * @see #ConstraintSet_flow_verticalBias + * @see #ConstraintSet_flow_verticalGap + * @see #ConstraintSet_flow_verticalStyle + * @see #ConstraintSet_flow_wrapMode + * @see #ConstraintSet_guidelineUseRtl + * @see #ConstraintSet_layout_constrainedHeight + * @see #ConstraintSet_layout_constrainedWidth + * @see #ConstraintSet_layout_constraintBaseline_creator + * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf + * @see #ConstraintSet_layout_constraintBaseline_toBottomOf + * @see #ConstraintSet_layout_constraintBaseline_toTopOf + * @see #ConstraintSet_layout_constraintBottom_creator + * @see #ConstraintSet_layout_constraintBottom_toBottomOf + * @see #ConstraintSet_layout_constraintBottom_toTopOf + * @see #ConstraintSet_layout_constraintCircle + * @see #ConstraintSet_layout_constraintCircleAngle + * @see #ConstraintSet_layout_constraintCircleRadius + * @see #ConstraintSet_layout_constraintDimensionRatio + * @see #ConstraintSet_layout_constraintEnd_toEndOf + * @see #ConstraintSet_layout_constraintEnd_toStartOf + * @see #ConstraintSet_layout_constraintGuide_begin + * @see #ConstraintSet_layout_constraintGuide_end + * @see #ConstraintSet_layout_constraintGuide_percent + * @see #ConstraintSet_layout_constraintHeight_default + * @see #ConstraintSet_layout_constraintHeight_max + * @see #ConstraintSet_layout_constraintHeight_min + * @see #ConstraintSet_layout_constraintHeight_percent + * @see #ConstraintSet_layout_constraintHorizontal_bias + * @see #ConstraintSet_layout_constraintHorizontal_chainStyle + * @see #ConstraintSet_layout_constraintHorizontal_weight + * @see #ConstraintSet_layout_constraintLeft_creator + * @see #ConstraintSet_layout_constraintLeft_toLeftOf + * @see #ConstraintSet_layout_constraintLeft_toRightOf + * @see #ConstraintSet_layout_constraintRight_creator + * @see #ConstraintSet_layout_constraintRight_toLeftOf + * @see #ConstraintSet_layout_constraintRight_toRightOf + * @see #ConstraintSet_layout_constraintStart_toEndOf + * @see #ConstraintSet_layout_constraintStart_toStartOf + * @see #ConstraintSet_layout_constraintTag + * @see #ConstraintSet_layout_constraintTop_creator + * @see #ConstraintSet_layout_constraintTop_toBottomOf + * @see #ConstraintSet_layout_constraintTop_toTopOf + * @see #ConstraintSet_layout_constraintVertical_bias + * @see #ConstraintSet_layout_constraintVertical_chainStyle + * @see #ConstraintSet_layout_constraintVertical_weight + * @see #ConstraintSet_layout_constraintWidth_default + * @see #ConstraintSet_layout_constraintWidth_max + * @see #ConstraintSet_layout_constraintWidth_min + * @see #ConstraintSet_layout_constraintWidth_percent + * @see #ConstraintSet_layout_editor_absoluteX + * @see #ConstraintSet_layout_editor_absoluteY + * @see #ConstraintSet_layout_goneMarginBaseline + * @see #ConstraintSet_layout_goneMarginBottom + * @see #ConstraintSet_layout_goneMarginEnd + * @see #ConstraintSet_layout_goneMarginLeft + * @see #ConstraintSet_layout_goneMarginRight + * @see #ConstraintSet_layout_goneMarginStart + * @see #ConstraintSet_layout_goneMarginTop + * @see #ConstraintSet_layout_marginBaseline + * @see #ConstraintSet_layout_wrapBehaviorInParent + * @see #ConstraintSet_motionProgress + * @see #ConstraintSet_motionStagger + * @see #ConstraintSet_pathMotionArc + * @see #ConstraintSet_pivotAnchor + * @see #ConstraintSet_polarRelativeTo + * @see #ConstraintSet_quantizeMotionSteps + * @see #ConstraintSet_stateLabels + * @see #ConstraintSet_transitionEasing + * @see #ConstraintSet_transitionPathRotate + */ + public static final int[] ConstraintSet={ + 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, + 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, + 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, + 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, + 0x01010320, 0x01010321, 0x01010322, 0x01010323, + 0x01010324, 0x01010325, 0x01010326, 0x01010327, + 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, + 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, + 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013a, + 0x7f03013e, 0x7f03013f, 0x7f030183, 0x7f030194, + 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, + 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, + 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, + 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, + 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, + 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, + 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, + 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, + 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, + 0x7f0302a5, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, + 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, + 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, + 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, + 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, + 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302be, + 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, + 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, + 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, + 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, + 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b6, + 0x7f030423, 0x7f0304f4, 0x7f0304f6 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int ConstraintSet_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ConstraintSet_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#visibility} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone2
invisible1
visible0
+ * + * @attr name android:visibility + */ + public static final int ConstraintSet_android_visibility=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int ConstraintSet_android_layout_width=3; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int ConstraintSet_android_layout_height=4; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginLeft + */ + public static final int ConstraintSet_android_layout_marginLeft=5; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginTop + */ + public static final int ConstraintSet_android_layout_marginTop=6; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginRight + */ + public static final int ConstraintSet_android_layout_marginRight=7; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginBottom + */ + public static final int ConstraintSet_android_layout_marginBottom=8; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int ConstraintSet_android_maxWidth=9; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int ConstraintSet_android_maxHeight=10; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ConstraintSet_android_minWidth=11; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int ConstraintSet_android_minHeight=12; + /** + *

This symbol is the offset where the {@link android.R.attr#pivotX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:pivotX + */ + public static final int ConstraintSet_android_pivotX=13; + /** + *

This symbol is the offset where the {@link android.R.attr#pivotY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:pivotY + */ + public static final int ConstraintSet_android_pivotY=14; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ConstraintSet_android_alpha=15; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotX + */ + public static final int ConstraintSet_android_transformPivotX=16; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotY + */ + public static final int ConstraintSet_android_transformPivotY=17; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int ConstraintSet_android_translationX=18; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int ConstraintSet_android_translationY=19; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int ConstraintSet_android_scaleX=20; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int ConstraintSet_android_scaleY=21; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int ConstraintSet_android_rotation=22; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int ConstraintSet_android_rotationX=23; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int ConstraintSet_android_rotationY=24; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginStart + */ + public static final int ConstraintSet_android_layout_marginStart=25; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginEnd + */ + public static final int ConstraintSet_android_layout_marginEnd=26; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int ConstraintSet_android_translationZ=27; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int ConstraintSet_android_elevation=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateCircleAngleTo} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
antiClockwise3
bestChoice0
clockwise2
closest1
constraint4
+ * + * @attr name com.companyname.clipifrontc:animateCircleAngleTo + */ + public static final int ConstraintSet_animateCircleAngleTo=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateRelativeTo} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:animateRelativeTo + */ + public static final int ConstraintSet_animateRelativeTo=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierAllowsGoneWidgets} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:barrierAllowsGoneWidgets + */ + public static final int ConstraintSet_barrierAllowsGoneWidgets=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierDirection} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ * + * @attr name com.companyname.clipifrontc:barrierDirection + */ + public static final int ConstraintSet_barrierDirection=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierMargin} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barrierMargin + */ + public static final int ConstraintSet_barrierMargin=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chainUseRtl} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chainUseRtl + */ + public static final int ConstraintSet_chainUseRtl=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraintRotate} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
left2
none0
right1
x_left4
x_right3
+ * + * @attr name com.companyname.clipifrontc:constraintRotate + */ + public static final int ConstraintSet_constraintRotate=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_ids} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_ids + */ + public static final int ConstraintSet_constraint_referenced_ids=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_tags} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_tags + */ + public static final int ConstraintSet_constraint_referenced_tags=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#deriveConstraintsFrom} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:deriveConstraintsFrom + */ + public static final int ConstraintSet_deriveConstraintsFrom=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawPath} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ * + * @attr name com.companyname.clipifrontc:drawPath + */ + public static final int ConstraintSet_drawPath=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalBias + */ + public static final int ConstraintSet_flow_firstHorizontalBias=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstHorizontalStyle + */ + public static final int ConstraintSet_flow_firstHorizontalStyle=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_firstVerticalBias + */ + public static final int ConstraintSet_flow_firstVerticalBias=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_firstVerticalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_firstVerticalStyle + */ + public static final int ConstraintSet_flow_firstVerticalStyle=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalAlign} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center2
end1
start0
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalAlign + */ + public static final int ConstraintSet_flow_horizontalAlign=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_horizontalBias + */ + public static final int ConstraintSet_flow_horizontalBias=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalGap} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_horizontalGap + */ + public static final int ConstraintSet_flow_horizontalGap=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_horizontalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_horizontalStyle + */ + public static final int ConstraintSet_flow_horizontalStyle=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalBias + */ + public static final int ConstraintSet_flow_lastHorizontalBias=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastHorizontalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastHorizontalStyle + */ + public static final int ConstraintSet_flow_lastHorizontalStyle=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_lastVerticalBias + */ + public static final int ConstraintSet_flow_lastVerticalBias=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_lastVerticalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_lastVerticalStyle + */ + public static final int ConstraintSet_flow_lastVerticalStyle=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_maxElementsWrap} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:flow_maxElementsWrap + */ + public static final int ConstraintSet_flow_maxElementsWrap=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalAlign} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
baseline3
bottom1
center2
top0
+ * + * @attr name com.companyname.clipifrontc:flow_verticalAlign + */ + public static final int ConstraintSet_flow_verticalAlign=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalBias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:flow_verticalBias + */ + public static final int ConstraintSet_flow_verticalBias=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalGap} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:flow_verticalGap + */ + public static final int ConstraintSet_flow_verticalGap=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_verticalStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:flow_verticalStyle + */ + public static final int ConstraintSet_flow_verticalStyle=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#flow_wrapMode} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
aligned2
chain1
chain23
none0
+ * + * @attr name com.companyname.clipifrontc:flow_wrapMode + */ + public static final int ConstraintSet_flow_wrapMode=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#guidelineUseRtl} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:guidelineUseRtl + */ + public static final int ConstraintSet_guidelineUseRtl=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedHeight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedHeight + */ + public static final int ConstraintSet_layout_constrainedHeight=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedWidth} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedWidth + */ + public static final int ConstraintSet_layout_constrainedWidth=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_creator} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_creator + */ + public static final int ConstraintSet_layout_constraintBaseline_creator=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBaselineOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf + */ + public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBottomOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf + */ + public static final int ConstraintSet_layout_constraintBaseline_toBottomOf=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toTopOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toTopOf + */ + public static final int ConstraintSet_layout_constraintBaseline_toTopOf=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_creator} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_creator + */ + public static final int ConstraintSet_layout_constraintBottom_creator=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toBottomOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toBottomOf + */ + public static final int ConstraintSet_layout_constraintBottom_toBottomOf=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toTopOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toTopOf + */ + public static final int ConstraintSet_layout_constraintBottom_toTopOf=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircle + */ + public static final int ConstraintSet_layout_constraintCircle=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleAngle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleAngle + */ + public static final int ConstraintSet_layout_constraintCircleAngle=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleRadius} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleRadius + */ + public static final int ConstraintSet_layout_constraintCircleRadius=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintDimensionRatio} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintDimensionRatio + */ + public static final int ConstraintSet_layout_constraintDimensionRatio=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toEndOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toEndOf + */ + public static final int ConstraintSet_layout_constraintEnd_toEndOf=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toStartOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toStartOf + */ + public static final int ConstraintSet_layout_constraintEnd_toStartOf=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_begin} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_begin + */ + public static final int ConstraintSet_layout_constraintGuide_begin=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_end} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_end + */ + public static final int ConstraintSet_layout_constraintGuide_end=75; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_percent} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_percent + */ + public static final int ConstraintSet_layout_constraintGuide_percent=76; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_default} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_default + */ + public static final int ConstraintSet_layout_constraintHeight_default=77; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_max} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_max + */ + public static final int ConstraintSet_layout_constraintHeight_max=78; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_min} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_min + */ + public static final int ConstraintSet_layout_constraintHeight_min=79; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_percent} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_percent + */ + public static final int ConstraintSet_layout_constraintHeight_percent=80; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_bias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_bias + */ + public static final int ConstraintSet_layout_constraintHorizontal_bias=81; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_chainStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle + */ + public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=82; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_weight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_weight + */ + public static final int ConstraintSet_layout_constraintHorizontal_weight=83; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_creator} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_creator + */ + public static final int ConstraintSet_layout_constraintLeft_creator=84; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toLeftOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toLeftOf + */ + public static final int ConstraintSet_layout_constraintLeft_toLeftOf=85; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toRightOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toRightOf + */ + public static final int ConstraintSet_layout_constraintLeft_toRightOf=86; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_creator} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintRight_creator + */ + public static final int ConstraintSet_layout_constraintRight_creator=87; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toLeftOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toLeftOf + */ + public static final int ConstraintSet_layout_constraintRight_toLeftOf=88; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toRightOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toRightOf + */ + public static final int ConstraintSet_layout_constraintRight_toRightOf=89; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toEndOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toEndOf + */ + public static final int ConstraintSet_layout_constraintStart_toEndOf=90; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toStartOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toStartOf + */ + public static final int ConstraintSet_layout_constraintStart_toStartOf=91; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTag} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintTag + */ + public static final int ConstraintSet_layout_constraintTag=92; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_creator} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintTop_creator + */ + public static final int ConstraintSet_layout_constraintTop_creator=93; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toBottomOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toBottomOf + */ + public static final int ConstraintSet_layout_constraintTop_toBottomOf=94; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toTopOf} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toTopOf + */ + public static final int ConstraintSet_layout_constraintTop_toTopOf=95; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_bias} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_bias + */ + public static final int ConstraintSet_layout_constraintVertical_bias=96; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_chainStyle} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_chainStyle + */ + public static final int ConstraintSet_layout_constraintVertical_chainStyle=97; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_weight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_weight + */ + public static final int ConstraintSet_layout_constraintVertical_weight=98; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_default} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_default + */ + public static final int ConstraintSet_layout_constraintWidth_default=99; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_max} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_max + */ + public static final int ConstraintSet_layout_constraintWidth_max=100; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_min} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_min + */ + public static final int ConstraintSet_layout_constraintWidth_min=101; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_percent} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_percent + */ + public static final int ConstraintSet_layout_constraintWidth_percent=102; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteX} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteX + */ + public static final int ConstraintSet_layout_editor_absoluteX=103; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteY} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteY + */ + public static final int ConstraintSet_layout_editor_absoluteY=104; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBaseline} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBaseline + */ + public static final int ConstraintSet_layout_goneMarginBaseline=105; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBottom} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBottom + */ + public static final int ConstraintSet_layout_goneMarginBottom=106; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginEnd} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginEnd + */ + public static final int ConstraintSet_layout_goneMarginEnd=107; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginLeft} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginLeft + */ + public static final int ConstraintSet_layout_goneMarginLeft=108; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginRight} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginRight + */ + public static final int ConstraintSet_layout_goneMarginRight=109; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginStart} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginStart + */ + public static final int ConstraintSet_layout_goneMarginStart=110; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginTop} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginTop + */ + public static final int ConstraintSet_layout_goneMarginTop=111; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_marginBaseline} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_marginBaseline + */ + public static final int ConstraintSet_layout_marginBaseline=112; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_wrapBehaviorInParent} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ * + * @attr name com.companyname.clipifrontc:layout_wrapBehaviorInParent + */ + public static final int ConstraintSet_layout_wrapBehaviorInParent=113; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int ConstraintSet_motionProgress=114; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionStagger} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionStagger + */ + public static final int ConstraintSet_motionStagger=115; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int ConstraintSet_pathMotionArc=116; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pivotAnchor} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:pivotAnchor + */ + public static final int ConstraintSet_pivotAnchor=117; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#polarRelativeTo} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:polarRelativeTo + */ + public static final int ConstraintSet_polarRelativeTo=118; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionSteps} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:quantizeMotionSteps + */ + public static final int ConstraintSet_quantizeMotionSteps=119; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#stateLabels} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:stateLabels + */ + public static final int ConstraintSet_stateLabels=120; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int ConstraintSet_transitionEasing=121; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #ConstraintSet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int ConstraintSet_transitionPathRotate=122; + /** + * Attributes that can be used with a CoordinatorLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_keylines com.companyname.clipifrontc:keylines}
{@link #CoordinatorLayout_statusBarBackground com.companyname.clipifrontc:statusBarBackground}
+ * @see #CoordinatorLayout_keylines + * @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout={ + 0x7f030282, 0x7f03042d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#keylines} + * attribute's value can be found in the {@link #CoordinatorLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:keylines + */ + public static final int CoordinatorLayout_keylines=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#statusBarBackground} + * attribute's value can be found in the {@link #CoordinatorLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground=1; + /** + * Attributes that can be used with a CoordinatorLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.clipifrontc:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.clipifrontc:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.clipifrontc:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.clipifrontc:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.clipifrontc:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.clipifrontc:layout_keyline}
+ * @see #CoordinatorLayout_Layout_android_layout_gravity + * @see #CoordinatorLayout_Layout_layout_anchor + * @see #CoordinatorLayout_Layout_layout_anchorGravity + * @see #CoordinatorLayout_Layout_layout_behavior + * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + * @see #CoordinatorLayout_Layout_layout_insetEdge + * @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout={ + 0x010100b3, 0x7f03028f, 0x7f030290, 0x7f030291, + 0x7f0302c2, 0x7f0302cc, 0x7f0302cd + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_anchor} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_anchorGravity} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name com.companyname.clipifrontc:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_behavior} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_dodgeInsetEdges} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ * + * @attr name com.companyname.clipifrontc:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_insetEdge} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ * + * @attr name com.companyname.clipifrontc:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_keyline} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline=6; + /** + * Attributes that can be used with a CustomAttribute. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CustomAttribute_attributeName com.companyname.clipifrontc:attributeName}
{@link #CustomAttribute_customBoolean com.companyname.clipifrontc:customBoolean}
{@link #CustomAttribute_customColorDrawableValue com.companyname.clipifrontc:customColorDrawableValue}
{@link #CustomAttribute_customColorValue com.companyname.clipifrontc:customColorValue}
{@link #CustomAttribute_customDimension com.companyname.clipifrontc:customDimension}
{@link #CustomAttribute_customFloatValue com.companyname.clipifrontc:customFloatValue}
{@link #CustomAttribute_customIntegerValue com.companyname.clipifrontc:customIntegerValue}
{@link #CustomAttribute_customPixelDimension com.companyname.clipifrontc:customPixelDimension}
{@link #CustomAttribute_customReference com.companyname.clipifrontc:customReference}
{@link #CustomAttribute_customStringValue com.companyname.clipifrontc:customStringValue}
{@link #CustomAttribute_methodName com.companyname.clipifrontc:methodName}
+ * @see #CustomAttribute_attributeName + * @see #CustomAttribute_customBoolean + * @see #CustomAttribute_customColorDrawableValue + * @see #CustomAttribute_customColorValue + * @see #CustomAttribute_customDimension + * @see #CustomAttribute_customFloatValue + * @see #CustomAttribute_customIntegerValue + * @see #CustomAttribute_customPixelDimension + * @see #CustomAttribute_customReference + * @see #CustomAttribute_customStringValue + * @see #CustomAttribute_methodName + */ + public static final int[] CustomAttribute={ + 0x7f030041, 0x7f03016b, 0x7f03016c, 0x7f03016d, + 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030172, + 0x7f030173, 0x7f030174, 0x7f030331 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#attributeName} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:attributeName + */ + public static final int CustomAttribute_attributeName=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customBoolean} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:customBoolean + */ + public static final int CustomAttribute_customBoolean=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customColorDrawableValue} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:customColorDrawableValue + */ + public static final int CustomAttribute_customColorDrawableValue=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customColorValue} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:customColorValue + */ + public static final int CustomAttribute_customColorValue=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customDimension} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:customDimension + */ + public static final int CustomAttribute_customDimension=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customFloatValue} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:customFloatValue + */ + public static final int CustomAttribute_customFloatValue=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customIntegerValue} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:customIntegerValue + */ + public static final int CustomAttribute_customIntegerValue=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customPixelDimension} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:customPixelDimension + */ + public static final int CustomAttribute_customPixelDimension=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customReference} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:customReference + */ + public static final int CustomAttribute_customReference=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#customStringValue} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:customStringValue + */ + public static final int CustomAttribute_customStringValue=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#methodName} + * attribute's value can be found in the {@link #CustomAttribute} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:methodName + */ + public static final int CustomAttribute_methodName=10; + /** + * Attributes that can be used with a DialogFragmentNavigator. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #DialogFragmentNavigator_android_name android:name}
+ * @see #DialogFragmentNavigator_android_name + */ + public static final int[] DialogFragmentNavigator={ + 0x01010003 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #DialogFragmentNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int DialogFragmentNavigator_android_name=0; + /** + * Attributes that can be used with a DrawerArrowToggle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.companyname.clipifrontc:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.companyname.clipifrontc:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.companyname.clipifrontc:barLength}
{@link #DrawerArrowToggle_color com.companyname.clipifrontc:color}
{@link #DrawerArrowToggle_drawableSize com.companyname.clipifrontc:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.companyname.clipifrontc:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.companyname.clipifrontc:spinBars}
{@link #DrawerArrowToggle_thickness com.companyname.clipifrontc:thickness}
+ * @see #DrawerArrowToggle_arrowHeadLength + * @see #DrawerArrowToggle_arrowShaftLength + * @see #DrawerArrowToggle_barLength + * @see #DrawerArrowToggle_color + * @see #DrawerArrowToggle_drawableSize + * @see #DrawerArrowToggle_gapBetweenBars + * @see #DrawerArrowToggle_spinBars + * @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle={ + 0x7f03003f, 0x7f030040, 0x7f030069, 0x7f0300fb, + 0x7f030199, 0x7f03021e, 0x7f030408, 0x7f0304ac + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#arrowHeadLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#arrowShaftLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barLength + */ + public static final int DrawerArrowToggle_barLength=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#color} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:color + */ + public static final int DrawerArrowToggle_color=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawableSize} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#gapBetweenBars} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#spinBars} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:spinBars + */ + public static final int DrawerArrowToggle_spinBars=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thickness} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thickness + */ + public static final int DrawerArrowToggle_thickness=7; + /** + * Attributes that can be used with a DrawerLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #DrawerLayout_elevation com.companyname.clipifrontc:elevation}
+ * @see #DrawerLayout_elevation + */ + public static final int[] DrawerLayout={ + 0x7f0301a9 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #DrawerLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int DrawerLayout_elevation=0; + /** + * Attributes that can be used with a ExtendedFloatingActionButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ExtendedFloatingActionButton_collapsedSize com.companyname.clipifrontc:collapsedSize}
{@link #ExtendedFloatingActionButton_elevation com.companyname.clipifrontc:elevation}
{@link #ExtendedFloatingActionButton_extendMotionSpec com.companyname.clipifrontc:extendMotionSpec}
{@link #ExtendedFloatingActionButton_extendStrategy com.companyname.clipifrontc:extendStrategy}
{@link #ExtendedFloatingActionButton_hideMotionSpec com.companyname.clipifrontc:hideMotionSpec}
{@link #ExtendedFloatingActionButton_showMotionSpec com.companyname.clipifrontc:showMotionSpec}
{@link #ExtendedFloatingActionButton_shrinkMotionSpec com.companyname.clipifrontc:shrinkMotionSpec}
+ * @see #ExtendedFloatingActionButton_collapsedSize + * @see #ExtendedFloatingActionButton_elevation + * @see #ExtendedFloatingActionButton_extendMotionSpec + * @see #ExtendedFloatingActionButton_extendStrategy + * @see #ExtendedFloatingActionButton_hideMotionSpec + * @see #ExtendedFloatingActionButton_showMotionSpec + * @see #ExtendedFloatingActionButton_shrinkMotionSpec + */ + public static final int[] ExtendedFloatingActionButton={ + 0x7f0300f1, 0x7f0301a9, 0x7f0301d1, 0x7f0301d2, + 0x7f030237, 0x7f0303f4, 0x7f0303f8 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapsedSize} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:collapsedSize + */ + public static final int ExtendedFloatingActionButton_collapsedSize=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int ExtendedFloatingActionButton_elevation=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#extendMotionSpec} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:extendMotionSpec + */ + public static final int ExtendedFloatingActionButton_extendMotionSpec=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#extendStrategy} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
auto0Strategy to extend FAB back to the width it shrunk from.
match_parent2Strategy to extend FAB to match parent.
wrap_content1Strategy to extend FAB to wrap content.
+ * + * @attr name com.companyname.clipifrontc:extendStrategy + */ + public static final int ExtendedFloatingActionButton_extendStrategy=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:hideMotionSpec + */ + public static final int ExtendedFloatingActionButton_hideMotionSpec=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:showMotionSpec + */ + public static final int ExtendedFloatingActionButton_showMotionSpec=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shrinkMotionSpec} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shrinkMotionSpec + */ + public static final int ExtendedFloatingActionButton_shrinkMotionSpec=6; + /** + * Attributes that can be used with a ExtendedFloatingActionButton_Behavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.clipifrontc:behavior_autoHide}
{@link #ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink com.companyname.clipifrontc:behavior_autoShrink}
+ * @see #ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide + * @see #ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink + */ + public static final int[] ExtendedFloatingActionButton_Behavior_Layout={ + 0x7f03006d, 0x7f03006e + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_autoHide} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton_Behavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_autoHide + */ + public static final int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_autoShrink} + * attribute's value can be found in the {@link #ExtendedFloatingActionButton_Behavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_autoShrink + */ + public static final int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink=1; + /** + * Attributes that can be used with a FloatingActionButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_android_enabled android:enabled}
{@link #FloatingActionButton_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.companyname.clipifrontc:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.companyname.clipifrontc:borderWidth}
{@link #FloatingActionButton_elevation com.companyname.clipifrontc:elevation}
{@link #FloatingActionButton_ensureMinTouchTargetSize com.companyname.clipifrontc:ensureMinTouchTargetSize}
{@link #FloatingActionButton_fabCustomSize com.companyname.clipifrontc:fabCustomSize}
{@link #FloatingActionButton_fabSize com.companyname.clipifrontc:fabSize}
{@link #FloatingActionButton_hideMotionSpec com.companyname.clipifrontc:hideMotionSpec}
{@link #FloatingActionButton_hoveredFocusedTranslationZ com.companyname.clipifrontc:hoveredFocusedTranslationZ}
{@link #FloatingActionButton_maxImageSize com.companyname.clipifrontc:maxImageSize}
{@link #FloatingActionButton_pressedTranslationZ com.companyname.clipifrontc:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.companyname.clipifrontc:rippleColor}
{@link #FloatingActionButton_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #FloatingActionButton_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #FloatingActionButton_showMotionSpec com.companyname.clipifrontc:showMotionSpec}
{@link #FloatingActionButton_useCompatPadding com.companyname.clipifrontc:useCompatPadding}
+ * @see #FloatingActionButton_android_enabled + * @see #FloatingActionButton_backgroundTint + * @see #FloatingActionButton_backgroundTintMode + * @see #FloatingActionButton_borderWidth + * @see #FloatingActionButton_elevation + * @see #FloatingActionButton_ensureMinTouchTargetSize + * @see #FloatingActionButton_fabCustomSize + * @see #FloatingActionButton_fabSize + * @see #FloatingActionButton_hideMotionSpec + * @see #FloatingActionButton_hoveredFocusedTranslationZ + * @see #FloatingActionButton_maxImageSize + * @see #FloatingActionButton_pressedTranslationZ + * @see #FloatingActionButton_rippleColor + * @see #FloatingActionButton_shapeAppearance + * @see #FloatingActionButton_shapeAppearanceOverlay + * @see #FloatingActionButton_showMotionSpec + * @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton={ + 0x0101000e, 0x7f030056, 0x7f030057, 0x7f03007c, + 0x7f0301a9, 0x7f0301b9, 0x7f0301e0, 0x7f0301e1, + 0x7f030237, 0x7f030243, 0x7f030328, 0x7f0303b0, + 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, + 0x7f0304fe + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int FloatingActionButton_android_enabled=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTintMode} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderWidth} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:borderWidth + */ + public static final int FloatingActionButton_borderWidth=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int FloatingActionButton_elevation=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ensureMinTouchTargetSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:ensureMinTouchTargetSize + */ + public static final int FloatingActionButton_ensureMinTouchTargetSize=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabCustomSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:fabCustomSize + */ + public static final int FloatingActionButton_fabCustomSize=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fabSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffA size which will change based on the window size.
mini1The mini sized button.
normal0The normal sized button.
+ * + * @attr name com.companyname.clipifrontc:fabSize + */ + public static final int FloatingActionButton_fabSize=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:hideMotionSpec + */ + public static final int FloatingActionButton_hideMotionSpec=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hoveredFocusedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:hoveredFocusedTranslationZ + */ + public static final int FloatingActionButton_hoveredFocusedTranslationZ=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxImageSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:maxImageSize + */ + public static final int FloatingActionButton_maxImageSize=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pressedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rippleColor} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:rippleColor + */ + public static final int FloatingActionButton_rippleColor=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int FloatingActionButton_shapeAppearance=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int FloatingActionButton_shapeAppearanceOverlay=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:showMotionSpec + */ + public static final int FloatingActionButton_showMotionSpec=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#useCompatPadding} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding=16; + /** + * Attributes that can be used with a FloatingActionButton_Behavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.clipifrontc:behavior_autoHide}
+ * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout={ + 0x7f03006d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_autoHide} + * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; + /** + * Attributes that can be used with a FlowLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #FlowLayout_itemSpacing com.companyname.clipifrontc:itemSpacing}
{@link #FlowLayout_lineSpacing com.companyname.clipifrontc:lineSpacing}
+ * @see #FlowLayout_itemSpacing + * @see #FlowLayout_lineSpacing + */ + public static final int[] FlowLayout={ + 0x7f030277, 0x7f0302d9 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemSpacing + */ + public static final int FlowLayout_itemSpacing=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lineSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:lineSpacing + */ + public static final int FlowLayout_lineSpacing=1; + /** + * Attributes that can be used with a FontFamily. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamily_fontProviderAuthority com.companyname.clipifrontc:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts com.companyname.clipifrontc:fontProviderCerts}
{@link #FontFamily_fontProviderFallbackQuery com.companyname.clipifrontc:fontProviderFallbackQuery}
{@link #FontFamily_fontProviderFetchStrategy com.companyname.clipifrontc:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout com.companyname.clipifrontc:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage com.companyname.clipifrontc:fontProviderPackage}
{@link #FontFamily_fontProviderQuery com.companyname.clipifrontc:fontProviderQuery}
{@link #FontFamily_fontProviderSystemFontFamily com.companyname.clipifrontc:fontProviderSystemFontFamily}
+ * @see #FontFamily_fontProviderAuthority + * @see #FontFamily_fontProviderCerts + * @see #FontFamily_fontProviderFallbackQuery + * @see #FontFamily_fontProviderFetchStrategy + * @see #FontFamily_fontProviderFetchTimeout + * @see #FontFamily_fontProviderPackage + * @see #FontFamily_fontProviderQuery + * @see #FontFamily_fontProviderSystemFontFamily + */ + public static final int[] FontFamily={ + 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, + 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderAuthority} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderCerts} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderFallbackQuery} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontProviderFallbackQuery + */ + public static final int FontFamily_fontProviderFallbackQuery=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderFetchStrategy} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ * + * @attr name com.companyname.clipifrontc:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderFetchTimeout} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ * + * @attr name com.companyname.clipifrontc:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderPackage} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderQuery} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontProviderSystemFontFamily} + * attribute's value can be found in the {@link #FontFamily} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontProviderSystemFontFamily + */ + public static final int FontFamily_fontProviderSystemFontFamily=7; + /** + * Attributes that can be used with a FontFamilyFont. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_fontStyle android:fontStyle}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_font com.companyname.clipifrontc:font}
{@link #FontFamilyFont_fontStyle com.companyname.clipifrontc:fontStyle}
{@link #FontFamilyFont_fontVariationSettings com.companyname.clipifrontc:fontVariationSettings}
{@link #FontFamilyFont_fontWeight com.companyname.clipifrontc:fontWeight}
{@link #FontFamilyFont_ttcIndex com.companyname.clipifrontc:ttcIndex}
+ * @see #FontFamilyFont_android_font + * @see #FontFamilyFont_android_fontWeight + * @see #FontFamilyFont_android_fontStyle + * @see #FontFamilyFont_android_ttcIndex + * @see #FontFamilyFont_android_fontVariationSettings + * @see #FontFamilyFont_font + * @see #FontFamilyFont_fontStyle + * @see #FontFamilyFont_fontVariationSettings + * @see #FontFamilyFont_fontWeight + * @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont={ + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, + 0x7f030219, 0x7f0304fb + }; + /** + *

This symbol is the offset where the {@link android.R.attr#font} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:font + */ + public static final int FontFamilyFont_android_font=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fontWeight} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#fontStyle} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#ttcIndex} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#font} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:font + */ + public static final int FontFamilyFont_font=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontStyle} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name com.companyname.clipifrontc:fontStyle + */ + public static final int FontFamilyFont_fontStyle=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontWeight} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:fontWeight + */ + public static final int FontFamilyFont_fontWeight=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ttcIndex} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex=9; + /** + * Attributes that can be used with a ForegroundLinearLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.clipifrontc:foregroundInsidePadding}
+ * @see #ForegroundLinearLayout_android_foreground + * @see #ForegroundLinearLayout_android_foregroundGravity + * @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout={ + 0x01010109, 0x01010200, 0x7f03021c + }; + /** + *

This symbol is the offset where the {@link android.R.attr#foreground} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
fill77
fill_horizontal7
fill_vertical70
left3
right5
top30
+ * + * @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#foregroundInsidePadding} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding=2; + /** + * Attributes that can be used with a Fragment. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #Fragment_android_name android:name}
{@link #Fragment_android_id android:id}
{@link #Fragment_android_tag android:tag}
+ * @see #Fragment_android_name + * @see #Fragment_android_id + * @see #Fragment_android_tag + */ + public static final int[] Fragment={ + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #Fragment} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int Fragment_android_name=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #Fragment} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int Fragment_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#tag} + * attribute's value can be found in the {@link #Fragment} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:tag + */ + public static final int Fragment_android_tag=2; + /** + * Attributes that can be used with a FragmentContainerView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ * @see #FragmentContainerView_android_name + * @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView={ + 0x01010003, 0x010100d1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #FragmentContainerView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int FragmentContainerView_android_name=0; + /** + *

This symbol is the offset where the {@link android.R.attr#tag} + * attribute's value can be found in the {@link #FragmentContainerView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:tag + */ + public static final int FragmentContainerView_android_tag=1; + /** + * Attributes that can be used with a FragmentNavigator. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #FragmentNavigator_android_name android:name}
+ * @see #FragmentNavigator_android_name + */ + public static final int[] FragmentNavigator={ + 0x01010003 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #FragmentNavigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int FragmentNavigator_android_name=0; + /** + * Attributes that can be used with a GradientColor. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColor_android_startColor android:startColor}
{@link #GradientColor_android_endColor android:endColor}
{@link #GradientColor_android_type android:type}
{@link #GradientColor_android_centerX android:centerX}
{@link #GradientColor_android_centerY android:centerY}
{@link #GradientColor_android_gradientRadius android:gradientRadius}
{@link #GradientColor_android_tileMode android:tileMode}
{@link #GradientColor_android_centerColor android:centerColor}
{@link #GradientColor_android_startX android:startX}
{@link #GradientColor_android_startY android:startY}
{@link #GradientColor_android_endX android:endX}
{@link #GradientColor_android_endY android:endY}
+ * @see #GradientColor_android_startColor + * @see #GradientColor_android_endColor + * @see #GradientColor_android_type + * @see #GradientColor_android_centerX + * @see #GradientColor_android_centerY + * @see #GradientColor_android_gradientRadius + * @see #GradientColor_android_tileMode + * @see #GradientColor_android_centerColor + * @see #GradientColor_android_startX + * @see #GradientColor_android_startY + * @see #GradientColor_android_endX + * @see #GradientColor_android_endY + */ + public static final int[] GradientColor={ + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#startColor} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:startColor + */ + public static final int GradientColor_android_startColor=0; + /** + *

This symbol is the offset where the {@link android.R.attr#endColor} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:endColor + */ + public static final int GradientColor_android_endColor=1; + /** + *

This symbol is the offset where the {@link android.R.attr#type} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
linear0
radial1
sweep2
+ * + * @attr name android:type + */ + public static final int GradientColor_android_type=2; + /** + *

This symbol is the offset where the {@link android.R.attr#centerX} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerX + */ + public static final int GradientColor_android_centerX=3; + /** + *

This symbol is the offset where the {@link android.R.attr#centerY} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerY + */ + public static final int GradientColor_android_centerY=4; + /** + *

This symbol is the offset where the {@link android.R.attr#gradientRadius} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius=5; + /** + *

This symbol is the offset where the {@link android.R.attr#tileMode} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clamp0
disabledffffffff
mirror2
repeat1
+ * + * @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode=6; + /** + *

This symbol is the offset where the {@link android.R.attr#centerColor} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor=7; + /** + *

This symbol is the offset where the {@link android.R.attr#startX} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startX + */ + public static final int GradientColor_android_startX=8; + /** + *

This symbol is the offset where the {@link android.R.attr#startY} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startY + */ + public static final int GradientColor_android_startY=9; + /** + *

This symbol is the offset where the {@link android.R.attr#endX} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endX + */ + public static final int GradientColor_android_endX=10; + /** + *

This symbol is the offset where the {@link android.R.attr#endY} + * attribute's value can be found in the {@link #GradientColor} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endY + */ + public static final int GradientColor_android_endY=11; + /** + * Attributes that can be used with a GradientColorItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColorItem_android_color android:color}
{@link #GradientColorItem_android_offset android:offset}
+ * @see #GradientColorItem_android_color + * @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem={ + 0x010101a5, 0x01010514 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#color} + * attribute's value can be found in the {@link #GradientColorItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int GradientColorItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#offset} + * attribute's value can be found in the {@link #GradientColorItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:offset + */ + public static final int GradientColorItem_android_offset=1; + /** + * Attributes that can be used with a Grid. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Grid_grid_columnWeights com.companyname.clipifrontc:grid_columnWeights}
{@link #Grid_grid_columns com.companyname.clipifrontc:grid_columns}
{@link #Grid_grid_horizontalGaps com.companyname.clipifrontc:grid_horizontalGaps}
{@link #Grid_grid_orientation com.companyname.clipifrontc:grid_orientation}
{@link #Grid_grid_rowWeights com.companyname.clipifrontc:grid_rowWeights}
{@link #Grid_grid_rows com.companyname.clipifrontc:grid_rows}
{@link #Grid_grid_skips com.companyname.clipifrontc:grid_skips}
{@link #Grid_grid_spans com.companyname.clipifrontc:grid_spans}
{@link #Grid_grid_useRtl com.companyname.clipifrontc:grid_useRtl}
{@link #Grid_grid_validateInputs com.companyname.clipifrontc:grid_validateInputs}
{@link #Grid_grid_verticalGaps com.companyname.clipifrontc:grid_verticalGaps}
+ * @see #Grid_grid_columnWeights + * @see #Grid_grid_columns + * @see #Grid_grid_horizontalGaps + * @see #Grid_grid_orientation + * @see #Grid_grid_rowWeights + * @see #Grid_grid_rows + * @see #Grid_grid_skips + * @see #Grid_grid_spans + * @see #Grid_grid_useRtl + * @see #Grid_grid_validateInputs + * @see #Grid_grid_verticalGaps + */ + public static final int[] Grid={ + 0x7f030222, 0x7f030223, 0x7f030224, 0x7f030225, + 0x7f030226, 0x7f030227, 0x7f030228, 0x7f030229, + 0x7f03022a, 0x7f03022b, 0x7f03022c + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_columnWeights} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:grid_columnWeights + */ + public static final int Grid_grid_columnWeights=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_columns} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:grid_columns + */ + public static final int Grid_grid_columns=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_horizontalGaps} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:grid_horizontalGaps + */ + public static final int Grid_grid_horizontalGaps=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_orientation} + * attribute's value can be found in the {@link #Grid} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name com.companyname.clipifrontc:grid_orientation + */ + public static final int Grid_grid_orientation=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_rowWeights} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:grid_rowWeights + */ + public static final int Grid_grid_rowWeights=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_rows} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:grid_rows + */ + public static final int Grid_grid_rows=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_skips} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:grid_skips + */ + public static final int Grid_grid_skips=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_spans} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:grid_spans + */ + public static final int Grid_grid_spans=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_useRtl} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:grid_useRtl + */ + public static final int Grid_grid_useRtl=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_validateInputs} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:grid_validateInputs + */ + public static final int Grid_grid_validateInputs=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#grid_verticalGaps} + * attribute's value can be found in the {@link #Grid} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:grid_verticalGaps + */ + public static final int Grid_grid_verticalGaps=10; + /** + * Attributes that can be used with a ImageFilterView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ImageFilterView_altSrc com.companyname.clipifrontc:altSrc}
{@link #ImageFilterView_blendSrc com.companyname.clipifrontc:blendSrc}
{@link #ImageFilterView_brightness com.companyname.clipifrontc:brightness}
{@link #ImageFilterView_contrast com.companyname.clipifrontc:contrast}
{@link #ImageFilterView_crossfade com.companyname.clipifrontc:crossfade}
{@link #ImageFilterView_imagePanX com.companyname.clipifrontc:imagePanX}
{@link #ImageFilterView_imagePanY com.companyname.clipifrontc:imagePanY}
{@link #ImageFilterView_imageRotate com.companyname.clipifrontc:imageRotate}
{@link #ImageFilterView_imageZoom com.companyname.clipifrontc:imageZoom}
{@link #ImageFilterView_overlay com.companyname.clipifrontc:overlay}
{@link #ImageFilterView_round com.companyname.clipifrontc:round}
{@link #ImageFilterView_roundPercent com.companyname.clipifrontc:roundPercent}
{@link #ImageFilterView_saturation com.companyname.clipifrontc:saturation}
{@link #ImageFilterView_warmth com.companyname.clipifrontc:warmth}
+ * @see #ImageFilterView_altSrc + * @see #ImageFilterView_blendSrc + * @see #ImageFilterView_brightness + * @see #ImageFilterView_contrast + * @see #ImageFilterView_crossfade + * @see #ImageFilterView_imagePanX + * @see #ImageFilterView_imagePanY + * @see #ImageFilterView_imageRotate + * @see #ImageFilterView_imageZoom + * @see #ImageFilterView_overlay + * @see #ImageFilterView_round + * @see #ImageFilterView_roundPercent + * @see #ImageFilterView_saturation + * @see #ImageFilterView_warmth + */ + public static final int[] ImageFilterView={ + 0x7f030033, 0x7f030079, 0x7f030090, 0x7f030151, + 0x7f030166, 0x7f030250, 0x7f030251, 0x7f030252, + 0x7f030253, 0x7f030383, 0x7f0303cd, 0x7f0303ce, + 0x7f0303d0, 0x7f03050b + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#altSrc} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:altSrc + */ + public static final int ImageFilterView_altSrc=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#blendSrc} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:blendSrc + */ + public static final int ImageFilterView_blendSrc=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#brightness} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:brightness + */ + public static final int ImageFilterView_brightness=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contrast} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:contrast + */ + public static final int ImageFilterView_contrast=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#crossfade} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:crossfade + */ + public static final int ImageFilterView_crossfade=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#imagePanX} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:imagePanX + */ + public static final int ImageFilterView_imagePanX=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#imagePanY} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:imagePanY + */ + public static final int ImageFilterView_imagePanY=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#imageRotate} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:imageRotate + */ + public static final int ImageFilterView_imageRotate=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#imageZoom} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:imageZoom + */ + public static final int ImageFilterView_imageZoom=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#overlay} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:overlay + */ + public static final int ImageFilterView_overlay=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#round} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:round + */ + public static final int ImageFilterView_round=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#roundPercent} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:roundPercent + */ + public static final int ImageFilterView_roundPercent=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#saturation} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:saturation + */ + public static final int ImageFilterView_saturation=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#warmth} + * attribute's value can be found in the {@link #ImageFilterView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:warmth + */ + public static final int ImageFilterView_warmth=13; + /** + * Attributes that can be used with a Insets. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Insets_marginLeftSystemWindowInsets com.companyname.clipifrontc:marginLeftSystemWindowInsets}
{@link #Insets_marginRightSystemWindowInsets com.companyname.clipifrontc:marginRightSystemWindowInsets}
{@link #Insets_marginTopSystemWindowInsets com.companyname.clipifrontc:marginTopSystemWindowInsets}
{@link #Insets_paddingBottomSystemWindowInsets com.companyname.clipifrontc:paddingBottomSystemWindowInsets}
{@link #Insets_paddingLeftSystemWindowInsets com.companyname.clipifrontc:paddingLeftSystemWindowInsets}
{@link #Insets_paddingRightSystemWindowInsets com.companyname.clipifrontc:paddingRightSystemWindowInsets}
{@link #Insets_paddingStartSystemWindowInsets com.companyname.clipifrontc:paddingStartSystemWindowInsets}
{@link #Insets_paddingTopSystemWindowInsets com.companyname.clipifrontc:paddingTopSystemWindowInsets}
+ * @see #Insets_marginLeftSystemWindowInsets + * @see #Insets_marginRightSystemWindowInsets + * @see #Insets_marginTopSystemWindowInsets + * @see #Insets_paddingBottomSystemWindowInsets + * @see #Insets_paddingLeftSystemWindowInsets + * @see #Insets_paddingRightSystemWindowInsets + * @see #Insets_paddingStartSystemWindowInsets + * @see #Insets_paddingTopSystemWindowInsets + */ + public static final int[] Insets={ + 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f030385, + 0x7f030387, 0x7f030388, 0x7f03038a, 0x7f03038c + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginLeftSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginLeftSystemWindowInsets + */ + public static final int Insets_marginLeftSystemWindowInsets=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginRightSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginRightSystemWindowInsets + */ + public static final int Insets_marginRightSystemWindowInsets=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginTopSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:marginTopSystemWindowInsets + */ + public static final int Insets_marginTopSystemWindowInsets=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingBottomSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingBottomSystemWindowInsets + */ + public static final int Insets_paddingBottomSystemWindowInsets=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingLeftSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingLeftSystemWindowInsets + */ + public static final int Insets_paddingLeftSystemWindowInsets=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingRightSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingRightSystemWindowInsets + */ + public static final int Insets_paddingRightSystemWindowInsets=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingStartSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingStartSystemWindowInsets + */ + public static final int Insets_paddingStartSystemWindowInsets=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingTopSystemWindowInsets} + * attribute's value can be found in the {@link #Insets} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingTopSystemWindowInsets + */ + public static final int Insets_paddingTopSystemWindowInsets=7; + /** + * This defines the collectionViewStyle attribute so that we can use it + * to add the scrollbars style to the CollectionView/CarouselView renderers. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ItemsViewRendererTheme_collectionViewStyle com.companyname.clipifrontc:collectionViewStyle}
+ * @see #ItemsViewRendererTheme_collectionViewStyle + */ + public static final int[] ItemsViewRendererTheme={ + 0x7f0300fa + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collectionViewStyle} + * attribute's value can be found in the {@link #ItemsViewRendererTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:collectionViewStyle + */ + public static final int ItemsViewRendererTheme_collectionViewStyle=0; + /** + * Attributes that can be used with a KeyAttribute. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #KeyAttribute_android_alpha android:alpha}
{@link #KeyAttribute_android_transformPivotX android:transformPivotX}
{@link #KeyAttribute_android_transformPivotY android:transformPivotY}
{@link #KeyAttribute_android_translationX android:translationX}
{@link #KeyAttribute_android_translationY android:translationY}
{@link #KeyAttribute_android_scaleX android:scaleX}
{@link #KeyAttribute_android_scaleY android:scaleY}
{@link #KeyAttribute_android_rotation android:rotation}
{@link #KeyAttribute_android_rotationX android:rotationX}
{@link #KeyAttribute_android_rotationY android:rotationY}
{@link #KeyAttribute_android_translationZ android:translationZ}
{@link #KeyAttribute_android_elevation android:elevation}
{@link #KeyAttribute_curveFit com.companyname.clipifrontc:curveFit}
{@link #KeyAttribute_framePosition com.companyname.clipifrontc:framePosition}
{@link #KeyAttribute_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #KeyAttribute_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #KeyAttribute_transformPivotTarget com.companyname.clipifrontc:transformPivotTarget}
{@link #KeyAttribute_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #KeyAttribute_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
+ * @see #KeyAttribute_android_alpha + * @see #KeyAttribute_android_transformPivotX + * @see #KeyAttribute_android_transformPivotY + * @see #KeyAttribute_android_translationX + * @see #KeyAttribute_android_translationY + * @see #KeyAttribute_android_scaleX + * @see #KeyAttribute_android_scaleY + * @see #KeyAttribute_android_rotation + * @see #KeyAttribute_android_rotationX + * @see #KeyAttribute_android_rotationY + * @see #KeyAttribute_android_translationZ + * @see #KeyAttribute_android_elevation + * @see #KeyAttribute_curveFit + * @see #KeyAttribute_framePosition + * @see #KeyAttribute_motionProgress + * @see #KeyAttribute_motionTarget + * @see #KeyAttribute_transformPivotTarget + * @see #KeyAttribute_transitionEasing + * @see #KeyAttribute_transitionPathRotate + */ + public static final int[] KeyAttribute={ + 0x0101031f, 0x01010320, 0x01010321, 0x01010322, + 0x01010323, 0x01010324, 0x01010325, 0x01010326, + 0x01010327, 0x01010328, 0x010103fa, 0x01010440, + 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, + 0x7f0304f2, 0x7f0304f4, 0x7f0304f6 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int KeyAttribute_android_alpha=0; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotX} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotX + */ + public static final int KeyAttribute_android_transformPivotX=1; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotY} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotY + */ + public static final int KeyAttribute_android_transformPivotY=2; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int KeyAttribute_android_translationX=3; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int KeyAttribute_android_translationY=4; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int KeyAttribute_android_scaleX=5; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int KeyAttribute_android_scaleY=6; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int KeyAttribute_android_rotation=7; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int KeyAttribute_android_rotationX=8; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int KeyAttribute_android_rotationY=9; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int KeyAttribute_android_translationZ=10; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int KeyAttribute_android_elevation=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#curveFit} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
linear1
spline0
+ * + * @attr name com.companyname.clipifrontc:curveFit + */ + public static final int KeyAttribute_curveFit=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#framePosition} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:framePosition + */ + public static final int KeyAttribute_framePosition=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int KeyAttribute_motionProgress=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int KeyAttribute_motionTarget=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transformPivotTarget} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:transformPivotTarget + */ + public static final int KeyAttribute_transformPivotTarget=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int KeyAttribute_transitionEasing=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #KeyAttribute} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int KeyAttribute_transitionPathRotate=18; + /** + * Attributes that can be used with a KeyCycle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #KeyCycle_android_alpha android:alpha}
{@link #KeyCycle_android_translationX android:translationX}
{@link #KeyCycle_android_translationY android:translationY}
{@link #KeyCycle_android_scaleX android:scaleX}
{@link #KeyCycle_android_scaleY android:scaleY}
{@link #KeyCycle_android_rotation android:rotation}
{@link #KeyCycle_android_rotationX android:rotationX}
{@link #KeyCycle_android_rotationY android:rotationY}
{@link #KeyCycle_android_translationZ android:translationZ}
{@link #KeyCycle_android_elevation android:elevation}
{@link #KeyCycle_curveFit com.companyname.clipifrontc:curveFit}
{@link #KeyCycle_framePosition com.companyname.clipifrontc:framePosition}
{@link #KeyCycle_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #KeyCycle_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #KeyCycle_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #KeyCycle_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
{@link #KeyCycle_waveOffset com.companyname.clipifrontc:waveOffset}
{@link #KeyCycle_wavePeriod com.companyname.clipifrontc:wavePeriod}
{@link #KeyCycle_wavePhase com.companyname.clipifrontc:wavePhase}
{@link #KeyCycle_waveShape com.companyname.clipifrontc:waveShape}
{@link #KeyCycle_waveVariesBy com.companyname.clipifrontc:waveVariesBy}
+ * @see #KeyCycle_android_alpha + * @see #KeyCycle_android_translationX + * @see #KeyCycle_android_translationY + * @see #KeyCycle_android_scaleX + * @see #KeyCycle_android_scaleY + * @see #KeyCycle_android_rotation + * @see #KeyCycle_android_rotationX + * @see #KeyCycle_android_rotationY + * @see #KeyCycle_android_translationZ + * @see #KeyCycle_android_elevation + * @see #KeyCycle_curveFit + * @see #KeyCycle_framePosition + * @see #KeyCycle_motionProgress + * @see #KeyCycle_motionTarget + * @see #KeyCycle_transitionEasing + * @see #KeyCycle_transitionPathRotate + * @see #KeyCycle_waveOffset + * @see #KeyCycle_wavePeriod + * @see #KeyCycle_wavePhase + * @see #KeyCycle_waveShape + * @see #KeyCycle_waveVariesBy + */ + public static final int[] KeyCycle={ + 0x0101031f, 0x01010322, 0x01010323, 0x01010324, + 0x01010325, 0x01010326, 0x01010327, 0x01010328, + 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, + 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, + 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510, + 0x7f030511 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int KeyCycle_android_alpha=0; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int KeyCycle_android_translationX=1; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int KeyCycle_android_translationY=2; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int KeyCycle_android_scaleX=3; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int KeyCycle_android_scaleY=4; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int KeyCycle_android_rotation=5; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int KeyCycle_android_rotationX=6; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int KeyCycle_android_rotationY=7; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int KeyCycle_android_translationZ=8; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int KeyCycle_android_elevation=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#curveFit} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
linear1
spline0
+ * + * @attr name com.companyname.clipifrontc:curveFit + */ + public static final int KeyCycle_curveFit=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#framePosition} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:framePosition + */ + public static final int KeyCycle_framePosition=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int KeyCycle_motionProgress=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int KeyCycle_motionTarget=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int KeyCycle_transitionEasing=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int KeyCycle_transitionPathRotate=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveOffset} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:waveOffset + */ + public static final int KeyCycle_waveOffset=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#wavePeriod} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:wavePeriod + */ + public static final int KeyCycle_wavePeriod=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#wavePhase} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:wavePhase + */ + public static final int KeyCycle_wavePhase=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveShape} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce6
cos5
reverseSawtooth4
sawtooth3
sin0
square1
triangle2
+ * + * @attr name com.companyname.clipifrontc:waveShape + */ + public static final int KeyCycle_waveShape=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveVariesBy} + * attribute's value can be found in the {@link #KeyCycle} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
path1
position0
+ * + * @attr name com.companyname.clipifrontc:waveVariesBy + */ + public static final int KeyCycle_waveVariesBy=20; + public static final int[] KeyFrame={ + }; + public static final int[] KeyFramesAcceleration={ + }; + public static final int[] KeyFramesVelocity={ + }; + /** + * Attributes that can be used with a KeyPosition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #KeyPosition_curveFit com.companyname.clipifrontc:curveFit}
{@link #KeyPosition_drawPath com.companyname.clipifrontc:drawPath}
{@link #KeyPosition_framePosition com.companyname.clipifrontc:framePosition}
{@link #KeyPosition_keyPositionType com.companyname.clipifrontc:keyPositionType}
{@link #KeyPosition_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #KeyPosition_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #KeyPosition_percentHeight com.companyname.clipifrontc:percentHeight}
{@link #KeyPosition_percentWidth com.companyname.clipifrontc:percentWidth}
{@link #KeyPosition_percentX com.companyname.clipifrontc:percentX}
{@link #KeyPosition_percentY com.companyname.clipifrontc:percentY}
{@link #KeyPosition_sizePercent com.companyname.clipifrontc:sizePercent}
{@link #KeyPosition_transitionEasing com.companyname.clipifrontc:transitionEasing}
+ * @see #KeyPosition_curveFit + * @see #KeyPosition_drawPath + * @see #KeyPosition_framePosition + * @see #KeyPosition_keyPositionType + * @see #KeyPosition_motionTarget + * @see #KeyPosition_pathMotionArc + * @see #KeyPosition_percentHeight + * @see #KeyPosition_percentWidth + * @see #KeyPosition_percentX + * @see #KeyPosition_percentY + * @see #KeyPosition_sizePercent + * @see #KeyPosition_transitionEasing + */ + public static final int[] KeyPosition={ + 0x7f03016a, 0x7f030194, 0x7f03021d, 0x7f030280, + 0x7f030368, 0x7f030395, 0x7f030397, 0x7f030398, + 0x7f030399, 0x7f03039a, 0x7f030402, 0x7f0304f4 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#curveFit} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
linear1
spline0
+ * + * @attr name com.companyname.clipifrontc:curveFit + */ + public static final int KeyPosition_curveFit=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawPath} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ * + * @attr name com.companyname.clipifrontc:drawPath + */ + public static final int KeyPosition_drawPath=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#framePosition} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:framePosition + */ + public static final int KeyPosition_framePosition=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#keyPositionType} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
axisRelative3
deltaRelative0
parentRelative2
pathRelative1
+ * + * @attr name com.companyname.clipifrontc:keyPositionType + */ + public static final int KeyPosition_keyPositionType=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int KeyPosition_motionTarget=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int KeyPosition_pathMotionArc=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#percentHeight} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:percentHeight + */ + public static final int KeyPosition_percentHeight=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#percentWidth} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:percentWidth + */ + public static final int KeyPosition_percentWidth=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#percentX} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:percentX + */ + public static final int KeyPosition_percentX=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#percentY} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:percentY + */ + public static final int KeyPosition_percentY=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#sizePercent} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:sizePercent + */ + public static final int KeyPosition_sizePercent=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #KeyPosition} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int KeyPosition_transitionEasing=11; + /** + * Attributes that can be used with a KeyTimeCycle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #KeyTimeCycle_android_alpha android:alpha}
{@link #KeyTimeCycle_android_translationX android:translationX}
{@link #KeyTimeCycle_android_translationY android:translationY}
{@link #KeyTimeCycle_android_scaleX android:scaleX}
{@link #KeyTimeCycle_android_scaleY android:scaleY}
{@link #KeyTimeCycle_android_rotation android:rotation}
{@link #KeyTimeCycle_android_rotationX android:rotationX}
{@link #KeyTimeCycle_android_rotationY android:rotationY}
{@link #KeyTimeCycle_android_translationZ android:translationZ}
{@link #KeyTimeCycle_android_elevation android:elevation}
{@link #KeyTimeCycle_curveFit com.companyname.clipifrontc:curveFit}
{@link #KeyTimeCycle_framePosition com.companyname.clipifrontc:framePosition}
{@link #KeyTimeCycle_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #KeyTimeCycle_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #KeyTimeCycle_transitionEasing com.companyname.clipifrontc:transitionEasing}
{@link #KeyTimeCycle_transitionPathRotate com.companyname.clipifrontc:transitionPathRotate}
{@link #KeyTimeCycle_waveDecay com.companyname.clipifrontc:waveDecay}
{@link #KeyTimeCycle_waveOffset com.companyname.clipifrontc:waveOffset}
{@link #KeyTimeCycle_wavePeriod com.companyname.clipifrontc:wavePeriod}
{@link #KeyTimeCycle_wavePhase com.companyname.clipifrontc:wavePhase}
{@link #KeyTimeCycle_waveShape com.companyname.clipifrontc:waveShape}
+ * @see #KeyTimeCycle_android_alpha + * @see #KeyTimeCycle_android_translationX + * @see #KeyTimeCycle_android_translationY + * @see #KeyTimeCycle_android_scaleX + * @see #KeyTimeCycle_android_scaleY + * @see #KeyTimeCycle_android_rotation + * @see #KeyTimeCycle_android_rotationX + * @see #KeyTimeCycle_android_rotationY + * @see #KeyTimeCycle_android_translationZ + * @see #KeyTimeCycle_android_elevation + * @see #KeyTimeCycle_curveFit + * @see #KeyTimeCycle_framePosition + * @see #KeyTimeCycle_motionProgress + * @see #KeyTimeCycle_motionTarget + * @see #KeyTimeCycle_transitionEasing + * @see #KeyTimeCycle_transitionPathRotate + * @see #KeyTimeCycle_waveDecay + * @see #KeyTimeCycle_waveOffset + * @see #KeyTimeCycle_wavePeriod + * @see #KeyTimeCycle_wavePhase + * @see #KeyTimeCycle_waveShape + */ + public static final int[] KeyTimeCycle={ + 0x0101031f, 0x01010322, 0x01010323, 0x01010324, + 0x01010325, 0x01010326, 0x01010327, 0x01010328, + 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, + 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, + 0x7f03050c, 0x7f03050d, 0x7f03050e, 0x7f03050f, + 0x7f030510 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int KeyTimeCycle_android_alpha=0; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int KeyTimeCycle_android_translationX=1; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int KeyTimeCycle_android_translationY=2; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int KeyTimeCycle_android_scaleX=3; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int KeyTimeCycle_android_scaleY=4; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int KeyTimeCycle_android_rotation=5; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int KeyTimeCycle_android_rotationX=6; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int KeyTimeCycle_android_rotationY=7; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int KeyTimeCycle_android_translationZ=8; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int KeyTimeCycle_android_elevation=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#curveFit} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
linear1
spline0
+ * + * @attr name com.companyname.clipifrontc:curveFit + */ + public static final int KeyTimeCycle_curveFit=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#framePosition} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:framePosition + */ + public static final int KeyTimeCycle_framePosition=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int KeyTimeCycle_motionProgress=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int KeyTimeCycle_motionTarget=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int KeyTimeCycle_transitionEasing=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionPathRotate} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:transitionPathRotate + */ + public static final int KeyTimeCycle_transitionPathRotate=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveDecay} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:waveDecay + */ + public static final int KeyTimeCycle_waveDecay=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveOffset} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:waveOffset + */ + public static final int KeyTimeCycle_waveOffset=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#wavePeriod} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:wavePeriod + */ + public static final int KeyTimeCycle_wavePeriod=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#wavePhase} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:wavePhase + */ + public static final int KeyTimeCycle_wavePhase=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#waveShape} + * attribute's value can be found in the {@link #KeyTimeCycle} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce6
cos5
reverseSawtooth4
sawtooth3
sin0
square1
triangle2
+ * + * @attr name com.companyname.clipifrontc:waveShape + */ + public static final int KeyTimeCycle_waveShape=20; + /** + * Attributes that can be used with a KeyTrigger. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #KeyTrigger_framePosition com.companyname.clipifrontc:framePosition}
{@link #KeyTrigger_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #KeyTrigger_motion_postLayoutCollision com.companyname.clipifrontc:motion_postLayoutCollision}
{@link #KeyTrigger_motion_triggerOnCollision com.companyname.clipifrontc:motion_triggerOnCollision}
{@link #KeyTrigger_onCross com.companyname.clipifrontc:onCross}
{@link #KeyTrigger_onNegativeCross com.companyname.clipifrontc:onNegativeCross}
{@link #KeyTrigger_onPositiveCross com.companyname.clipifrontc:onPositiveCross}
{@link #KeyTrigger_triggerId com.companyname.clipifrontc:triggerId}
{@link #KeyTrigger_triggerReceiver com.companyname.clipifrontc:triggerReceiver}
{@link #KeyTrigger_triggerSlack com.companyname.clipifrontc:triggerSlack}
{@link #KeyTrigger_viewTransitionOnCross com.companyname.clipifrontc:viewTransitionOnCross}
{@link #KeyTrigger_viewTransitionOnNegativeCross com.companyname.clipifrontc:viewTransitionOnNegativeCross}
{@link #KeyTrigger_viewTransitionOnPositiveCross com.companyname.clipifrontc:viewTransitionOnPositiveCross}
+ * @see #KeyTrigger_framePosition + * @see #KeyTrigger_motionTarget + * @see #KeyTrigger_motion_postLayoutCollision + * @see #KeyTrigger_motion_triggerOnCollision + * @see #KeyTrigger_onCross + * @see #KeyTrigger_onNegativeCross + * @see #KeyTrigger_onPositiveCross + * @see #KeyTrigger_triggerId + * @see #KeyTrigger_triggerReceiver + * @see #KeyTrigger_triggerSlack + * @see #KeyTrigger_viewTransitionOnCross + * @see #KeyTrigger_viewTransitionOnNegativeCross + * @see #KeyTrigger_viewTransitionOnPositiveCross + */ + public static final int[] KeyTrigger={ + 0x7f03021d, 0x7f030368, 0x7f030369, 0x7f03036a, + 0x7f03037b, 0x7f03037d, 0x7f03037e, 0x7f0304f8, + 0x7f0304f9, 0x7f0304fa, 0x7f030506, 0x7f030507, + 0x7f030508 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#framePosition} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:framePosition + */ + public static final int KeyTrigger_framePosition=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int KeyTrigger_motionTarget=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motion_postLayoutCollision} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:motion_postLayoutCollision + */ + public static final int KeyTrigger_motion_postLayoutCollision=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motion_triggerOnCollision} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:motion_triggerOnCollision + */ + public static final int KeyTrigger_motion_triggerOnCollision=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:onCross + */ + public static final int KeyTrigger_onCross=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onNegativeCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:onNegativeCross + */ + public static final int KeyTrigger_onNegativeCross=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onPositiveCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:onPositiveCross + */ + public static final int KeyTrigger_onPositiveCross=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#triggerId} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:triggerId + */ + public static final int KeyTrigger_triggerId=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#triggerReceiver} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:triggerReceiver + */ + public static final int KeyTrigger_triggerReceiver=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#triggerSlack} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:triggerSlack + */ + public static final int KeyTrigger_triggerSlack=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#viewTransitionOnCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:viewTransitionOnCross + */ + public static final int KeyTrigger_viewTransitionOnCross=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#viewTransitionOnNegativeCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:viewTransitionOnNegativeCross + */ + public static final int KeyTrigger_viewTransitionOnNegativeCross=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#viewTransitionOnPositiveCross} + * attribute's value can be found in the {@link #KeyTrigger} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:viewTransitionOnPositiveCross + */ + public static final int KeyTrigger_viewTransitionOnPositiveCross=12; + /** + * Attributes that can be used with a Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Layout_android_orientation android:orientation}
{@link #Layout_android_layout_width android:layout_width}
{@link #Layout_android_layout_height android:layout_height}
{@link #Layout_android_layout_marginLeft android:layout_marginLeft}
{@link #Layout_android_layout_marginTop android:layout_marginTop}
{@link #Layout_android_layout_marginRight android:layout_marginRight}
{@link #Layout_android_layout_marginBottom android:layout_marginBottom}
{@link #Layout_android_layout_marginStart android:layout_marginStart}
{@link #Layout_android_layout_marginEnd android:layout_marginEnd}
{@link #Layout_barrierAllowsGoneWidgets com.companyname.clipifrontc:barrierAllowsGoneWidgets}
{@link #Layout_barrierDirection com.companyname.clipifrontc:barrierDirection}
{@link #Layout_barrierMargin com.companyname.clipifrontc:barrierMargin}
{@link #Layout_chainUseRtl com.companyname.clipifrontc:chainUseRtl}
{@link #Layout_constraint_referenced_ids com.companyname.clipifrontc:constraint_referenced_ids}
{@link #Layout_constraint_referenced_tags com.companyname.clipifrontc:constraint_referenced_tags}
{@link #Layout_guidelineUseRtl com.companyname.clipifrontc:guidelineUseRtl}
{@link #Layout_layout_constrainedHeight com.companyname.clipifrontc:layout_constrainedHeight}
{@link #Layout_layout_constrainedWidth com.companyname.clipifrontc:layout_constrainedWidth}
{@link #Layout_layout_constraintBaseline_creator com.companyname.clipifrontc:layout_constraintBaseline_creator}
{@link #Layout_layout_constraintBaseline_toBaselineOf com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf}
{@link #Layout_layout_constraintBaseline_toBottomOf com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf}
{@link #Layout_layout_constraintBaseline_toTopOf com.companyname.clipifrontc:layout_constraintBaseline_toTopOf}
{@link #Layout_layout_constraintBottom_creator com.companyname.clipifrontc:layout_constraintBottom_creator}
{@link #Layout_layout_constraintBottom_toBottomOf com.companyname.clipifrontc:layout_constraintBottom_toBottomOf}
{@link #Layout_layout_constraintBottom_toTopOf com.companyname.clipifrontc:layout_constraintBottom_toTopOf}
{@link #Layout_layout_constraintCircle com.companyname.clipifrontc:layout_constraintCircle}
{@link #Layout_layout_constraintCircleAngle com.companyname.clipifrontc:layout_constraintCircleAngle}
{@link #Layout_layout_constraintCircleRadius com.companyname.clipifrontc:layout_constraintCircleRadius}
{@link #Layout_layout_constraintDimensionRatio com.companyname.clipifrontc:layout_constraintDimensionRatio}
{@link #Layout_layout_constraintEnd_toEndOf com.companyname.clipifrontc:layout_constraintEnd_toEndOf}
{@link #Layout_layout_constraintEnd_toStartOf com.companyname.clipifrontc:layout_constraintEnd_toStartOf}
{@link #Layout_layout_constraintGuide_begin com.companyname.clipifrontc:layout_constraintGuide_begin}
{@link #Layout_layout_constraintGuide_end com.companyname.clipifrontc:layout_constraintGuide_end}
{@link #Layout_layout_constraintGuide_percent com.companyname.clipifrontc:layout_constraintGuide_percent}
{@link #Layout_layout_constraintHeight com.companyname.clipifrontc:layout_constraintHeight}
{@link #Layout_layout_constraintHeight_default com.companyname.clipifrontc:layout_constraintHeight_default}
{@link #Layout_layout_constraintHeight_max com.companyname.clipifrontc:layout_constraintHeight_max}
{@link #Layout_layout_constraintHeight_min com.companyname.clipifrontc:layout_constraintHeight_min}
{@link #Layout_layout_constraintHeight_percent com.companyname.clipifrontc:layout_constraintHeight_percent}
{@link #Layout_layout_constraintHorizontal_bias com.companyname.clipifrontc:layout_constraintHorizontal_bias}
{@link #Layout_layout_constraintHorizontal_chainStyle com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle}
{@link #Layout_layout_constraintHorizontal_weight com.companyname.clipifrontc:layout_constraintHorizontal_weight}
{@link #Layout_layout_constraintLeft_creator com.companyname.clipifrontc:layout_constraintLeft_creator}
{@link #Layout_layout_constraintLeft_toLeftOf com.companyname.clipifrontc:layout_constraintLeft_toLeftOf}
{@link #Layout_layout_constraintLeft_toRightOf com.companyname.clipifrontc:layout_constraintLeft_toRightOf}
{@link #Layout_layout_constraintRight_creator com.companyname.clipifrontc:layout_constraintRight_creator}
{@link #Layout_layout_constraintRight_toLeftOf com.companyname.clipifrontc:layout_constraintRight_toLeftOf}
{@link #Layout_layout_constraintRight_toRightOf com.companyname.clipifrontc:layout_constraintRight_toRightOf}
{@link #Layout_layout_constraintStart_toEndOf com.companyname.clipifrontc:layout_constraintStart_toEndOf}
{@link #Layout_layout_constraintStart_toStartOf com.companyname.clipifrontc:layout_constraintStart_toStartOf}
{@link #Layout_layout_constraintTop_creator com.companyname.clipifrontc:layout_constraintTop_creator}
{@link #Layout_layout_constraintTop_toBottomOf com.companyname.clipifrontc:layout_constraintTop_toBottomOf}
{@link #Layout_layout_constraintTop_toTopOf com.companyname.clipifrontc:layout_constraintTop_toTopOf}
{@link #Layout_layout_constraintVertical_bias com.companyname.clipifrontc:layout_constraintVertical_bias}
{@link #Layout_layout_constraintVertical_chainStyle com.companyname.clipifrontc:layout_constraintVertical_chainStyle}
{@link #Layout_layout_constraintVertical_weight com.companyname.clipifrontc:layout_constraintVertical_weight}
{@link #Layout_layout_constraintWidth com.companyname.clipifrontc:layout_constraintWidth}
{@link #Layout_layout_constraintWidth_default com.companyname.clipifrontc:layout_constraintWidth_default}
{@link #Layout_layout_constraintWidth_max com.companyname.clipifrontc:layout_constraintWidth_max}
{@link #Layout_layout_constraintWidth_min com.companyname.clipifrontc:layout_constraintWidth_min}
{@link #Layout_layout_constraintWidth_percent com.companyname.clipifrontc:layout_constraintWidth_percent}
{@link #Layout_layout_editor_absoluteX com.companyname.clipifrontc:layout_editor_absoluteX}
{@link #Layout_layout_editor_absoluteY com.companyname.clipifrontc:layout_editor_absoluteY}
{@link #Layout_layout_goneMarginBaseline com.companyname.clipifrontc:layout_goneMarginBaseline}
{@link #Layout_layout_goneMarginBottom com.companyname.clipifrontc:layout_goneMarginBottom}
{@link #Layout_layout_goneMarginEnd com.companyname.clipifrontc:layout_goneMarginEnd}
{@link #Layout_layout_goneMarginLeft com.companyname.clipifrontc:layout_goneMarginLeft}
{@link #Layout_layout_goneMarginRight com.companyname.clipifrontc:layout_goneMarginRight}
{@link #Layout_layout_goneMarginStart com.companyname.clipifrontc:layout_goneMarginStart}
{@link #Layout_layout_goneMarginTop com.companyname.clipifrontc:layout_goneMarginTop}
{@link #Layout_layout_marginBaseline com.companyname.clipifrontc:layout_marginBaseline}
{@link #Layout_layout_wrapBehaviorInParent com.companyname.clipifrontc:layout_wrapBehaviorInParent}
{@link #Layout_maxHeight com.companyname.clipifrontc:maxHeight}
{@link #Layout_maxWidth com.companyname.clipifrontc:maxWidth}
{@link #Layout_minHeight com.companyname.clipifrontc:minHeight}
{@link #Layout_minWidth com.companyname.clipifrontc:minWidth}
+ * @see #Layout_android_orientation + * @see #Layout_android_layout_width + * @see #Layout_android_layout_height + * @see #Layout_android_layout_marginLeft + * @see #Layout_android_layout_marginTop + * @see #Layout_android_layout_marginRight + * @see #Layout_android_layout_marginBottom + * @see #Layout_android_layout_marginStart + * @see #Layout_android_layout_marginEnd + * @see #Layout_barrierAllowsGoneWidgets + * @see #Layout_barrierDirection + * @see #Layout_barrierMargin + * @see #Layout_chainUseRtl + * @see #Layout_constraint_referenced_ids + * @see #Layout_constraint_referenced_tags + * @see #Layout_guidelineUseRtl + * @see #Layout_layout_constrainedHeight + * @see #Layout_layout_constrainedWidth + * @see #Layout_layout_constraintBaseline_creator + * @see #Layout_layout_constraintBaseline_toBaselineOf + * @see #Layout_layout_constraintBaseline_toBottomOf + * @see #Layout_layout_constraintBaseline_toTopOf + * @see #Layout_layout_constraintBottom_creator + * @see #Layout_layout_constraintBottom_toBottomOf + * @see #Layout_layout_constraintBottom_toTopOf + * @see #Layout_layout_constraintCircle + * @see #Layout_layout_constraintCircleAngle + * @see #Layout_layout_constraintCircleRadius + * @see #Layout_layout_constraintDimensionRatio + * @see #Layout_layout_constraintEnd_toEndOf + * @see #Layout_layout_constraintEnd_toStartOf + * @see #Layout_layout_constraintGuide_begin + * @see #Layout_layout_constraintGuide_end + * @see #Layout_layout_constraintGuide_percent + * @see #Layout_layout_constraintHeight + * @see #Layout_layout_constraintHeight_default + * @see #Layout_layout_constraintHeight_max + * @see #Layout_layout_constraintHeight_min + * @see #Layout_layout_constraintHeight_percent + * @see #Layout_layout_constraintHorizontal_bias + * @see #Layout_layout_constraintHorizontal_chainStyle + * @see #Layout_layout_constraintHorizontal_weight + * @see #Layout_layout_constraintLeft_creator + * @see #Layout_layout_constraintLeft_toLeftOf + * @see #Layout_layout_constraintLeft_toRightOf + * @see #Layout_layout_constraintRight_creator + * @see #Layout_layout_constraintRight_toLeftOf + * @see #Layout_layout_constraintRight_toRightOf + * @see #Layout_layout_constraintStart_toEndOf + * @see #Layout_layout_constraintStart_toStartOf + * @see #Layout_layout_constraintTop_creator + * @see #Layout_layout_constraintTop_toBottomOf + * @see #Layout_layout_constraintTop_toTopOf + * @see #Layout_layout_constraintVertical_bias + * @see #Layout_layout_constraintVertical_chainStyle + * @see #Layout_layout_constraintVertical_weight + * @see #Layout_layout_constraintWidth + * @see #Layout_layout_constraintWidth_default + * @see #Layout_layout_constraintWidth_max + * @see #Layout_layout_constraintWidth_min + * @see #Layout_layout_constraintWidth_percent + * @see #Layout_layout_editor_absoluteX + * @see #Layout_layout_editor_absoluteY + * @see #Layout_layout_goneMarginBaseline + * @see #Layout_layout_goneMarginBottom + * @see #Layout_layout_goneMarginEnd + * @see #Layout_layout_goneMarginLeft + * @see #Layout_layout_goneMarginRight + * @see #Layout_layout_goneMarginStart + * @see #Layout_layout_goneMarginTop + * @see #Layout_layout_marginBaseline + * @see #Layout_layout_wrapBehaviorInParent + * @see #Layout_maxHeight + * @see #Layout_maxWidth + * @see #Layout_minHeight + * @see #Layout_minWidth + */ + public static final int[] Layout={ + 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, + 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, + 0x010103b6, 0x7f03006a, 0x7f03006b, 0x7f03006c, + 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f03022d, + 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, + 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, + 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, + 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, + 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, + 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, + 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, + 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, + 0x7f0302b4, 0x7f0302b5, 0x7f0302b7, 0x7f0302b8, + 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, + 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, + 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, + 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, + 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, + 0x7f030327, 0x7f03032c, 0x7f030333, 0x7f030337 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int Layout_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginLeft + */ + public static final int Layout_android_layout_marginLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginTop + */ + public static final int Layout_android_layout_marginTop=4; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginRight + */ + public static final int Layout_android_layout_marginRight=5; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginBottom + */ + public static final int Layout_android_layout_marginBottom=6; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginStart + */ + public static final int Layout_android_layout_marginStart=7; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_marginEnd + */ + public static final int Layout_android_layout_marginEnd=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierAllowsGoneWidgets} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:barrierAllowsGoneWidgets + */ + public static final int Layout_barrierAllowsGoneWidgets=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierDirection} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
+ * + * @attr name com.companyname.clipifrontc:barrierDirection + */ + public static final int Layout_barrierDirection=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#barrierMargin} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:barrierMargin + */ + public static final int Layout_barrierMargin=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#chainUseRtl} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:chainUseRtl + */ + public static final int Layout_chainUseRtl=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_ids} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_ids + */ + public static final int Layout_constraint_referenced_ids=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraint_referenced_tags} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:constraint_referenced_tags + */ + public static final int Layout_constraint_referenced_tags=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#guidelineUseRtl} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:guidelineUseRtl + */ + public static final int Layout_guidelineUseRtl=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedHeight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedHeight + */ + public static final int Layout_layout_constrainedHeight=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constrainedWidth} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:layout_constrainedWidth + */ + public static final int Layout_layout_constrainedWidth=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_creator} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_creator + */ + public static final int Layout_layout_constraintBaseline_creator=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBaselineOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBaselineOf + */ + public static final int Layout_layout_constraintBaseline_toBaselineOf=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toBottomOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toBottomOf + */ + public static final int Layout_layout_constraintBaseline_toBottomOf=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBaseline_toTopOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBaseline_toTopOf + */ + public static final int Layout_layout_constraintBaseline_toTopOf=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_creator} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_creator + */ + public static final int Layout_layout_constraintBottom_creator=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toBottomOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toBottomOf + */ + public static final int Layout_layout_constraintBottom_toBottomOf=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintBottom_toTopOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintBottom_toTopOf + */ + public static final int Layout_layout_constraintBottom_toTopOf=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircle} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircle + */ + public static final int Layout_layout_constraintCircle=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleAngle} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleAngle + */ + public static final int Layout_layout_constraintCircleAngle=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintCircleRadius} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintCircleRadius + */ + public static final int Layout_layout_constraintCircleRadius=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintDimensionRatio} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintDimensionRatio + */ + public static final int Layout_layout_constraintDimensionRatio=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toEndOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toEndOf + */ + public static final int Layout_layout_constraintEnd_toEndOf=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintEnd_toStartOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintEnd_toStartOf + */ + public static final int Layout_layout_constraintEnd_toStartOf=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_begin} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_begin + */ + public static final int Layout_layout_constraintGuide_begin=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_end} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_end + */ + public static final int Layout_layout_constraintGuide_end=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintGuide_percent} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintGuide_percent + */ + public static final int Layout_layout_constraintGuide_percent=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight + */ + public static final int Layout_layout_constraintHeight=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_default} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_default + */ + public static final int Layout_layout_constraintHeight_default=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_max} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_max + */ + public static final int Layout_layout_constraintHeight_max=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_min} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_min + */ + public static final int Layout_layout_constraintHeight_min=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHeight_percent} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHeight_percent + */ + public static final int Layout_layout_constraintHeight_percent=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_bias} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_bias + */ + public static final int Layout_layout_constraintHorizontal_bias=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_chainStyle} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_chainStyle + */ + public static final int Layout_layout_constraintHorizontal_chainStyle=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintHorizontal_weight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintHorizontal_weight + */ + public static final int Layout_layout_constraintHorizontal_weight=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_creator} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_creator + */ + public static final int Layout_layout_constraintLeft_creator=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toLeftOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toLeftOf + */ + public static final int Layout_layout_constraintLeft_toLeftOf=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintLeft_toRightOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintLeft_toRightOf + */ + public static final int Layout_layout_constraintLeft_toRightOf=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_creator} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintRight_creator + */ + public static final int Layout_layout_constraintRight_creator=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toLeftOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toLeftOf + */ + public static final int Layout_layout_constraintRight_toLeftOf=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintRight_toRightOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintRight_toRightOf + */ + public static final int Layout_layout_constraintRight_toRightOf=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toEndOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toEndOf + */ + public static final int Layout_layout_constraintStart_toEndOf=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintStart_toStartOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintStart_toStartOf + */ + public static final int Layout_layout_constraintStart_toStartOf=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_creator} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:layout_constraintTop_creator + */ + public static final int Layout_layout_constraintTop_creator=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toBottomOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toBottomOf + */ + public static final int Layout_layout_constraintTop_toBottomOf=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTop_toTopOf} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
parent0
+ * + * @attr name com.companyname.clipifrontc:layout_constraintTop_toTopOf + */ + public static final int Layout_layout_constraintTop_toTopOf=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_bias} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_bias + */ + public static final int Layout_layout_constraintVertical_bias=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_chainStyle} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
packed2
spread0
spread_inside1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_chainStyle + */ + public static final int Layout_layout_constraintVertical_chainStyle=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintVertical_weight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintVertical_weight + */ + public static final int Layout_layout_constraintVertical_weight=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
match_constraintfffffffd
match_parentffffffff
wrap_contentfffffffe
wrap_content_constrainedfffffffc
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth + */ + public static final int Layout_layout_constraintWidth=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_default} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
percent2
spread0
wrap1
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_default + */ + public static final int Layout_layout_constraintWidth_default=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_max} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_max + */ + public static final int Layout_layout_constraintWidth_max=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_min} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrapfffffffe
+ * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_min + */ + public static final int Layout_layout_constraintWidth_min=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintWidth_percent} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:layout_constraintWidth_percent + */ + public static final int Layout_layout_constraintWidth_percent=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteX} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteX + */ + public static final int Layout_layout_editor_absoluteX=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_editor_absoluteY} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_editor_absoluteY + */ + public static final int Layout_layout_editor_absoluteY=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBaseline} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBaseline + */ + public static final int Layout_layout_goneMarginBaseline=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginBottom} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginBottom + */ + public static final int Layout_layout_goneMarginBottom=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginEnd} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginEnd + */ + public static final int Layout_layout_goneMarginEnd=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginLeft} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginLeft + */ + public static final int Layout_layout_goneMarginLeft=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginRight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginRight + */ + public static final int Layout_layout_goneMarginRight=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginStart} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginStart + */ + public static final int Layout_layout_goneMarginStart=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_goneMarginTop} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_goneMarginTop + */ + public static final int Layout_layout_goneMarginTop=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_marginBaseline} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:layout_marginBaseline + */ + public static final int Layout_layout_marginBaseline=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_wrapBehaviorInParent} + * attribute's value can be found in the {@link #Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal_only1
included0
skipped3
vertical_only2
+ * + * @attr name com.companyname.clipifrontc:layout_wrapBehaviorInParent + */ + public static final int Layout_layout_wrapBehaviorInParent=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxHeight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:maxHeight + */ + public static final int Layout_maxHeight=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxWidth} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:maxWidth + */ + public static final int Layout_maxWidth=73; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#minHeight} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:minHeight + */ + public static final int Layout_minHeight=74; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#minWidth} + * attribute's value can be found in the {@link #Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:minWidth + */ + public static final int Layout_minWidth=75; + /** + * Attributes that can be used with a LinearLayoutCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.companyname.clipifrontc:divider}
{@link #LinearLayoutCompat_dividerPadding com.companyname.clipifrontc:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.clipifrontc:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.companyname.clipifrontc:showDividers}
+ * @see #LinearLayoutCompat_android_gravity + * @see #LinearLayoutCompat_android_orientation + * @see #LinearLayoutCompat_android_baselineAligned + * @see #LinearLayoutCompat_android_baselineAlignedChildIndex + * @see #LinearLayoutCompat_android_weightSum + * @see #LinearLayoutCompat_divider + * @see #LinearLayoutCompat_dividerPadding + * @see #LinearLayoutCompat_measureWithLargestChild + * @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat={ + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f030189, 0x7f03018e, 0x7f03032d, + 0x7f0303f2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation=1; + /** + *

This symbol is the offset where the {@link android.R.attr#baselineAligned} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned=2; + /** + *

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#weightSum} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#divider} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:divider + */ + public static final int LinearLayoutCompat_divider=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerPadding} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#measureWithLargestChild} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showDividers} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ * + * @attr name com.companyname.clipifrontc:showDividers + */ + public static final int LinearLayoutCompat_showDividers=8; + /** + * Attributes that can be used with a LinearLayoutCompat_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ * @see #LinearLayoutCompat_Layout_android_layout_gravity + * @see #LinearLayoutCompat_Layout_android_layout_width + * @see #LinearLayoutCompat_Layout_android_layout_height + * @see #LinearLayoutCompat_Layout_android_layout_weight + */ + public static final int[] LinearLayoutCompat_Layout={ + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_weight} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight=3; + /** + * Attributes that can be used with a LinearProgressIndicator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearProgressIndicator_indeterminateAnimationType com.companyname.clipifrontc:indeterminateAnimationType}
{@link #LinearProgressIndicator_indicatorDirectionLinear com.companyname.clipifrontc:indicatorDirectionLinear}
{@link #LinearProgressIndicator_trackStopIndicatorSize com.companyname.clipifrontc:trackStopIndicatorSize}
+ * @see #LinearProgressIndicator_indeterminateAnimationType + * @see #LinearProgressIndicator_indicatorDirectionLinear + * @see #LinearProgressIndicator_trackStopIndicatorSize + */ + public static final int[] LinearProgressIndicator={ + 0x7f030254, 0x7f030258, 0x7f0304ee + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indeterminateAnimationType} + * attribute's value can be found in the {@link #LinearProgressIndicator} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
contiguous0The track will be filled with three adjacent segments in iterative different colors. + * This type is only available when there are three or more indicator + * colors.
disjoint1There will be two disjoint segments in the same color per cycle. The color iterates between cycles.
+ * + * @attr name com.companyname.clipifrontc:indeterminateAnimationType + */ + public static final int LinearProgressIndicator_indeterminateAnimationType=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#indicatorDirectionLinear} + * attribute's value can be found in the {@link #LinearProgressIndicator} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
endToStart3Animated from the end position to the start position of the track. + * This will be same as the rightToLeft for API before 17.
leftToRight0Animated from the left end to the right end of the track.
rightToLeft1Animated from the right end to the left end of the track.
startToEnd2Animated from the start position to the end position of the track. + * This will be same as the leftToRight for API before 17.
+ * + * @attr name com.companyname.clipifrontc:indicatorDirectionLinear + */ + public static final int LinearProgressIndicator_indicatorDirectionLinear=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackStopIndicatorSize} + * attribute's value can be found in the {@link #LinearProgressIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackStopIndicatorSize + */ + public static final int LinearProgressIndicator_trackStopIndicatorSize=2; + /** + * Attributes that can be used with a ListPopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ * @see #ListPopupWindow_android_dropDownHorizontalOffset + * @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow={ + 0x010102ac, 0x010102ad + }; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + * attribute's value can be found in the {@link #ListPopupWindow} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + * attribute's value can be found in the {@link #ListPopupWindow} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset=1; + /** + * Attributes that can be used with a MaterialAlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialAlertDialog_backgroundInsetBottom com.companyname.clipifrontc:backgroundInsetBottom}
{@link #MaterialAlertDialog_backgroundInsetEnd com.companyname.clipifrontc:backgroundInsetEnd}
{@link #MaterialAlertDialog_backgroundInsetStart com.companyname.clipifrontc:backgroundInsetStart}
{@link #MaterialAlertDialog_backgroundInsetTop com.companyname.clipifrontc:backgroundInsetTop}
{@link #MaterialAlertDialog_backgroundTint com.companyname.clipifrontc:backgroundTint}
+ * @see #MaterialAlertDialog_backgroundInsetBottom + * @see #MaterialAlertDialog_backgroundInsetEnd + * @see #MaterialAlertDialog_backgroundInsetStart + * @see #MaterialAlertDialog_backgroundInsetTop + * @see #MaterialAlertDialog_backgroundTint + */ + public static final int[] MaterialAlertDialog={ + 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030052, + 0x7f030056 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundInsetBottom} + * attribute's value can be found in the {@link #MaterialAlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:backgroundInsetBottom + */ + public static final int MaterialAlertDialog_backgroundInsetBottom=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundInsetEnd} + * attribute's value can be found in the {@link #MaterialAlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:backgroundInsetEnd + */ + public static final int MaterialAlertDialog_backgroundInsetEnd=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundInsetStart} + * attribute's value can be found in the {@link #MaterialAlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:backgroundInsetStart + */ + public static final int MaterialAlertDialog_backgroundInsetStart=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundInsetTop} + * attribute's value can be found in the {@link #MaterialAlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:backgroundInsetTop + */ + public static final int MaterialAlertDialog_backgroundInsetTop=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #MaterialAlertDialog} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int MaterialAlertDialog_backgroundTint=4; + /** + * Attributes that can be used with a MaterialAlertDialogTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle com.companyname.clipifrontc:materialAlertDialogBodyTextStyle}
{@link #MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility com.companyname.clipifrontc:materialAlertDialogButtonSpacerVisibility}
{@link #MaterialAlertDialogTheme_materialAlertDialogTheme com.companyname.clipifrontc:materialAlertDialogTheme}
{@link #MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle com.companyname.clipifrontc:materialAlertDialogTitleIconStyle}
{@link #MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle com.companyname.clipifrontc:materialAlertDialogTitlePanelStyle}
{@link #MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle com.companyname.clipifrontc:materialAlertDialogTitleTextStyle}
+ * @see #MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle + * @see #MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility + * @see #MaterialAlertDialogTheme_materialAlertDialogTheme + * @see #MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle + * @see #MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle + * @see #MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle + */ + public static final int[] MaterialAlertDialogTheme={ + 0x7f0302f2, 0x7f0302f3, 0x7f0302f4, 0x7f0302f5, + 0x7f0302f6, 0x7f0302f7 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogBodyTextStyle} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogBodyTextStyle + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogButtonSpacerVisibility} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogButtonSpacerVisibility + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogTheme} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogTheme + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogTheme=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogTitleIconStyle} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogTitleIconStyle + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogTitlePanelStyle} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogTitlePanelStyle + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialAlertDialogTitleTextStyle} + * attribute's value can be found in the {@link #MaterialAlertDialogTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:materialAlertDialogTitleTextStyle + */ + public static final int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle=5; + /** + * Attributes that can be used with a MaterialAutoCompleteTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialAutoCompleteTextView_android_inputType android:inputType}
{@link #MaterialAutoCompleteTextView_android_popupElevation android:popupElevation}
{@link #MaterialAutoCompleteTextView_dropDownBackgroundTint com.companyname.clipifrontc:dropDownBackgroundTint}
{@link #MaterialAutoCompleteTextView_simpleItemLayout com.companyname.clipifrontc:simpleItemLayout}
{@link #MaterialAutoCompleteTextView_simpleItemSelectedColor com.companyname.clipifrontc:simpleItemSelectedColor}
{@link #MaterialAutoCompleteTextView_simpleItemSelectedRippleColor com.companyname.clipifrontc:simpleItemSelectedRippleColor}
{@link #MaterialAutoCompleteTextView_simpleItems com.companyname.clipifrontc:simpleItems}
+ * @see #MaterialAutoCompleteTextView_android_inputType + * @see #MaterialAutoCompleteTextView_android_popupElevation + * @see #MaterialAutoCompleteTextView_dropDownBackgroundTint + * @see #MaterialAutoCompleteTextView_simpleItemLayout + * @see #MaterialAutoCompleteTextView_simpleItemSelectedColor + * @see #MaterialAutoCompleteTextView_simpleItemSelectedRippleColor + * @see #MaterialAutoCompleteTextView_simpleItems + */ + public static final int[] MaterialAutoCompleteTextView={ + 0x01010220, 0x0101048c, 0x7f0301a1, 0x7f0303fb, + 0x7f0303fc, 0x7f0303fd, 0x7f0303fe + }; + /** + *

This symbol is the offset where the {@link android.R.attr#inputType} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textEnableTextConversionSuggestions100001
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int MaterialAutoCompleteTextView_android_inputType=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupElevation} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:popupElevation + */ + public static final int MaterialAutoCompleteTextView_android_popupElevation=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dropDownBackgroundTint} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:dropDownBackgroundTint + */ + public static final int MaterialAutoCompleteTextView_dropDownBackgroundTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#simpleItemLayout} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:simpleItemLayout + */ + public static final int MaterialAutoCompleteTextView_simpleItemLayout=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#simpleItemSelectedColor} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:simpleItemSelectedColor + */ + public static final int MaterialAutoCompleteTextView_simpleItemSelectedColor=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#simpleItemSelectedRippleColor} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:simpleItemSelectedRippleColor + */ + public static final int MaterialAutoCompleteTextView_simpleItemSelectedRippleColor=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#simpleItems} + * attribute's value can be found in the {@link #MaterialAutoCompleteTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:simpleItems + */ + public static final int MaterialAutoCompleteTextView_simpleItems=6; + /** + * Attributes that can be used with a MaterialButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialButton_android_background android:background}
{@link #MaterialButton_android_insetLeft android:insetLeft}
{@link #MaterialButton_android_insetRight android:insetRight}
{@link #MaterialButton_android_insetTop android:insetTop}
{@link #MaterialButton_android_insetBottom android:insetBottom}
{@link #MaterialButton_android_checkable android:checkable}
{@link #MaterialButton_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #MaterialButton_backgroundTintMode com.companyname.clipifrontc:backgroundTintMode}
{@link #MaterialButton_cornerRadius com.companyname.clipifrontc:cornerRadius}
{@link #MaterialButton_elevation com.companyname.clipifrontc:elevation}
{@link #MaterialButton_icon com.companyname.clipifrontc:icon}
{@link #MaterialButton_iconGravity com.companyname.clipifrontc:iconGravity}
{@link #MaterialButton_iconPadding com.companyname.clipifrontc:iconPadding}
{@link #MaterialButton_iconSize com.companyname.clipifrontc:iconSize}
{@link #MaterialButton_iconTint com.companyname.clipifrontc:iconTint}
{@link #MaterialButton_iconTintMode com.companyname.clipifrontc:iconTintMode}
{@link #MaterialButton_rippleColor com.companyname.clipifrontc:rippleColor}
{@link #MaterialButton_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #MaterialButton_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #MaterialButton_strokeColor com.companyname.clipifrontc:strokeColor}
{@link #MaterialButton_strokeWidth com.companyname.clipifrontc:strokeWidth}
{@link #MaterialButton_toggleCheckedStateOnClick com.companyname.clipifrontc:toggleCheckedStateOnClick}
+ * @see #MaterialButton_android_background + * @see #MaterialButton_android_insetLeft + * @see #MaterialButton_android_insetRight + * @see #MaterialButton_android_insetTop + * @see #MaterialButton_android_insetBottom + * @see #MaterialButton_android_checkable + * @see #MaterialButton_backgroundTint + * @see #MaterialButton_backgroundTintMode + * @see #MaterialButton_cornerRadius + * @see #MaterialButton_elevation + * @see #MaterialButton_icon + * @see #MaterialButton_iconGravity + * @see #MaterialButton_iconPadding + * @see #MaterialButton_iconSize + * @see #MaterialButton_iconTint + * @see #MaterialButton_iconTintMode + * @see #MaterialButton_rippleColor + * @see #MaterialButton_shapeAppearance + * @see #MaterialButton_shapeAppearanceOverlay + * @see #MaterialButton_strokeColor + * @see #MaterialButton_strokeWidth + * @see #MaterialButton_toggleCheckedStateOnClick + */ + public static final int[] MaterialButton={ + 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, + 0x010101ba, 0x010101e5, 0x7f030056, 0x7f030057, + 0x7f03015a, 0x7f0301a9, 0x7f030244, 0x7f030246, + 0x7f030247, 0x7f030248, 0x7f03024a, 0x7f03024b, + 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f030431, + 0x7f030432, 0x7f0304d7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int MaterialButton_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#insetLeft} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetLeft + */ + public static final int MaterialButton_android_insetLeft=1; + /** + *

This symbol is the offset where the {@link android.R.attr#insetRight} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetRight + */ + public static final int MaterialButton_android_insetRight=2; + /** + *

This symbol is the offset where the {@link android.R.attr#insetTop} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetTop + */ + public static final int MaterialButton_android_insetTop=3; + /** + *

This symbol is the offset where the {@link android.R.attr#insetBottom} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetBottom + */ + public static final int MaterialButton_android_insetBottom=4; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MaterialButton_android_checkable=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int MaterialButton_backgroundTint=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTintMode} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:backgroundTintMode + */ + public static final int MaterialButton_backgroundTintMode=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerRadius} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:cornerRadius + */ + public static final int MaterialButton_cornerRadius=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int MaterialButton_elevation=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#icon} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:icon + */ + public static final int MaterialButton_icon=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconGravity} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end3Push icon to the end of the button.
start1Push icon to the start of the button.
textEnd4Push the icon to the end of the text keeping a distance equal to + * {@code iconPadding} from the text.
textStart2Push the icon to the start of the text keeping a distance equal to + * {@code iconPadding} from the text.
textTop20Push the icon to the top of the text keeping a distance equal to + * {@code iconPadding} from the text.
top10Push the icon to the top of the button.
+ * + * @attr name com.companyname.clipifrontc:iconGravity + */ + public static final int MaterialButton_iconGravity=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconPadding} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:iconPadding + */ + public static final int MaterialButton_iconPadding=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconSize} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:iconSize + */ + public static final int MaterialButton_iconSize=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconTint} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:iconTint + */ + public static final int MaterialButton_iconTint=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconTintMode} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:iconTintMode + */ + public static final int MaterialButton_iconTintMode=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rippleColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:rippleColor + */ + public static final int MaterialButton_rippleColor=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int MaterialButton_shapeAppearance=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int MaterialButton_shapeAppearanceOverlay=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:strokeColor + */ + public static final int MaterialButton_strokeColor=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:strokeWidth + */ + public static final int MaterialButton_strokeWidth=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#toggleCheckedStateOnClick} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:toggleCheckedStateOnClick + */ + public static final int MaterialButton_toggleCheckedStateOnClick=21; + /** + * Attributes that can be used with a MaterialButtonToggleGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialButtonToggleGroup_android_enabled android:enabled}
{@link #MaterialButtonToggleGroup_checkedButton com.companyname.clipifrontc:checkedButton}
{@link #MaterialButtonToggleGroup_selectionRequired com.companyname.clipifrontc:selectionRequired}
{@link #MaterialButtonToggleGroup_singleSelection com.companyname.clipifrontc:singleSelection}
+ * @see #MaterialButtonToggleGroup_android_enabled + * @see #MaterialButtonToggleGroup_checkedButton + * @see #MaterialButtonToggleGroup_selectionRequired + * @see #MaterialButtonToggleGroup_singleSelection + */ + public static final int[] MaterialButtonToggleGroup={ + 0x0101000e, 0x7f0300ba, 0x7f0303df, 0x7f030401 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #MaterialButtonToggleGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MaterialButtonToggleGroup_android_enabled=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedButton} + * attribute's value can be found in the {@link #MaterialButtonToggleGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkedButton + */ + public static final int MaterialButtonToggleGroup_checkedButton=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#selectionRequired} + * attribute's value can be found in the {@link #MaterialButtonToggleGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:selectionRequired + */ + public static final int MaterialButtonToggleGroup_selectionRequired=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#singleSelection} + * attribute's value can be found in the {@link #MaterialButtonToggleGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:singleSelection + */ + public static final int MaterialButtonToggleGroup_singleSelection=3; + /** + * Attributes that can be used with a MaterialCalendar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCalendar_android_windowFullscreen android:windowFullscreen}
{@link #MaterialCalendar_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #MaterialCalendar_dayInvalidStyle com.companyname.clipifrontc:dayInvalidStyle}
{@link #MaterialCalendar_daySelectedStyle com.companyname.clipifrontc:daySelectedStyle}
{@link #MaterialCalendar_dayStyle com.companyname.clipifrontc:dayStyle}
{@link #MaterialCalendar_dayTodayStyle com.companyname.clipifrontc:dayTodayStyle}
{@link #MaterialCalendar_nestedScrollable com.companyname.clipifrontc:nestedScrollable}
{@link #MaterialCalendar_rangeFillColor com.companyname.clipifrontc:rangeFillColor}
{@link #MaterialCalendar_yearSelectedStyle com.companyname.clipifrontc:yearSelectedStyle}
{@link #MaterialCalendar_yearStyle com.companyname.clipifrontc:yearStyle}
{@link #MaterialCalendar_yearTodayStyle com.companyname.clipifrontc:yearTodayStyle}
+ * @see #MaterialCalendar_android_windowFullscreen + * @see #MaterialCalendar_backgroundTint + * @see #MaterialCalendar_dayInvalidStyle + * @see #MaterialCalendar_daySelectedStyle + * @see #MaterialCalendar_dayStyle + * @see #MaterialCalendar_dayTodayStyle + * @see #MaterialCalendar_nestedScrollable + * @see #MaterialCalendar_rangeFillColor + * @see #MaterialCalendar_yearSelectedStyle + * @see #MaterialCalendar_yearStyle + * @see #MaterialCalendar_yearTodayStyle + */ + public static final int[] MaterialCalendar={ + 0x0101020d, 0x7f030056, 0x7f030177, 0x7f030178, + 0x7f030179, 0x7f03017a, 0x7f030376, 0x7f0303bb, + 0x7f03051c, 0x7f03051d, 0x7f03051e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowFullscreen} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowFullscreen + */ + public static final int MaterialCalendar_android_windowFullscreen=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int MaterialCalendar_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dayInvalidStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dayInvalidStyle + */ + public static final int MaterialCalendar_dayInvalidStyle=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#daySelectedStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:daySelectedStyle + */ + public static final int MaterialCalendar_daySelectedStyle=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dayStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dayStyle + */ + public static final int MaterialCalendar_dayStyle=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dayTodayStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:dayTodayStyle + */ + public static final int MaterialCalendar_dayTodayStyle=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#nestedScrollable} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:nestedScrollable + */ + public static final int MaterialCalendar_nestedScrollable=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rangeFillColor} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:rangeFillColor + */ + public static final int MaterialCalendar_rangeFillColor=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#yearSelectedStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:yearSelectedStyle + */ + public static final int MaterialCalendar_yearSelectedStyle=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#yearStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:yearStyle + */ + public static final int MaterialCalendar_yearStyle=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#yearTodayStyle} + * attribute's value can be found in the {@link #MaterialCalendar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:yearTodayStyle + */ + public static final int MaterialCalendar_yearTodayStyle=10; + /** + * Attributes that can be used with a MaterialCalendarItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCalendarItem_android_insetLeft android:insetLeft}
{@link #MaterialCalendarItem_android_insetRight android:insetRight}
{@link #MaterialCalendarItem_android_insetTop android:insetTop}
{@link #MaterialCalendarItem_android_insetBottom android:insetBottom}
{@link #MaterialCalendarItem_itemFillColor com.companyname.clipifrontc:itemFillColor}
{@link #MaterialCalendarItem_itemShapeAppearance com.companyname.clipifrontc:itemShapeAppearance}
{@link #MaterialCalendarItem_itemShapeAppearanceOverlay com.companyname.clipifrontc:itemShapeAppearanceOverlay}
{@link #MaterialCalendarItem_itemStrokeColor com.companyname.clipifrontc:itemStrokeColor}
{@link #MaterialCalendarItem_itemStrokeWidth com.companyname.clipifrontc:itemStrokeWidth}
{@link #MaterialCalendarItem_itemTextColor com.companyname.clipifrontc:itemTextColor}
+ * @see #MaterialCalendarItem_android_insetLeft + * @see #MaterialCalendarItem_android_insetRight + * @see #MaterialCalendarItem_android_insetTop + * @see #MaterialCalendarItem_android_insetBottom + * @see #MaterialCalendarItem_itemFillColor + * @see #MaterialCalendarItem_itemShapeAppearance + * @see #MaterialCalendarItem_itemShapeAppearanceOverlay + * @see #MaterialCalendarItem_itemStrokeColor + * @see #MaterialCalendarItem_itemStrokeWidth + * @see #MaterialCalendarItem_itemTextColor + */ + public static final int[] MaterialCalendarItem={ + 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, + 0x7f030264, 0x7f030270, 0x7f030271, 0x7f030278, + 0x7f030279, 0x7f03027e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#insetLeft} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetLeft + */ + public static final int MaterialCalendarItem_android_insetLeft=0; + /** + *

This symbol is the offset where the {@link android.R.attr#insetRight} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetRight + */ + public static final int MaterialCalendarItem_android_insetRight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#insetTop} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetTop + */ + public static final int MaterialCalendarItem_android_insetTop=2; + /** + *

This symbol is the offset where the {@link android.R.attr#insetBottom} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetBottom + */ + public static final int MaterialCalendarItem_android_insetBottom=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemFillColor} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemFillColor + */ + public static final int MaterialCalendarItem_itemFillColor=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeAppearance} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemShapeAppearance + */ + public static final int MaterialCalendarItem_itemShapeAppearance=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeAppearanceOverlay} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemShapeAppearanceOverlay + */ + public static final int MaterialCalendarItem_itemShapeAppearanceOverlay=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemStrokeColor} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemStrokeColor + */ + public static final int MaterialCalendarItem_itemStrokeColor=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemStrokeWidth} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemStrokeWidth + */ + public static final int MaterialCalendarItem_itemStrokeWidth=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextColor} + * attribute's value can be found in the {@link #MaterialCalendarItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemTextColor + */ + public static final int MaterialCalendarItem_itemTextColor=9; + /** + * Attributes that can be used with a MaterialCardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCardView_android_checkable android:checkable}
{@link #MaterialCardView_cardForegroundColor com.companyname.clipifrontc:cardForegroundColor}
{@link #MaterialCardView_checkedIcon com.companyname.clipifrontc:checkedIcon}
{@link #MaterialCardView_checkedIconGravity com.companyname.clipifrontc:checkedIconGravity}
{@link #MaterialCardView_checkedIconMargin com.companyname.clipifrontc:checkedIconMargin}
{@link #MaterialCardView_checkedIconSize com.companyname.clipifrontc:checkedIconSize}
{@link #MaterialCardView_checkedIconTint com.companyname.clipifrontc:checkedIconTint}
{@link #MaterialCardView_rippleColor com.companyname.clipifrontc:rippleColor}
{@link #MaterialCardView_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #MaterialCardView_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #MaterialCardView_state_dragged com.companyname.clipifrontc:state_dragged}
{@link #MaterialCardView_strokeColor com.companyname.clipifrontc:strokeColor}
{@link #MaterialCardView_strokeWidth com.companyname.clipifrontc:strokeWidth}
+ * @see #MaterialCardView_android_checkable + * @see #MaterialCardView_cardForegroundColor + * @see #MaterialCardView_checkedIcon + * @see #MaterialCardView_checkedIconGravity + * @see #MaterialCardView_checkedIconMargin + * @see #MaterialCardView_checkedIconSize + * @see #MaterialCardView_checkedIconTint + * @see #MaterialCardView_rippleColor + * @see #MaterialCardView_shapeAppearance + * @see #MaterialCardView_shapeAppearanceOverlay + * @see #MaterialCardView_state_dragged + * @see #MaterialCardView_strokeColor + * @see #MaterialCardView_strokeWidth + */ + public static final int[] MaterialCardView={ + 0x010101e5, 0x7f0300a4, 0x7f0300bc, 0x7f0300be, + 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0303cb, + 0x7f0303e2, 0x7f0303ea, 0x7f030427, 0x7f030431, + 0x7f030432 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MaterialCardView_android_checkable=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cardForegroundColor} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:cardForegroundColor + */ + public static final int MaterialCardView_cardForegroundColor=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIcon} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:checkedIcon + */ + public static final int MaterialCardView_checkedIcon=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconGravity} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
BOTTOM_END800055Gravity.BOTTOM | Gravity.END
BOTTOM_START800053Gravity.BOTTOM | Gravity.START
TOP_END800035Gravity.TOP | Gravity.END
TOP_START800033Gravity.TOP | Gravity.START
+ * + * @attr name com.companyname.clipifrontc:checkedIconGravity + */ + public static final int MaterialCardView_checkedIconGravity=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconMargin} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:checkedIconMargin + */ + public static final int MaterialCardView_checkedIconMargin=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconSize} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:checkedIconSize + */ + public static final int MaterialCardView_checkedIconSize=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedIconTint} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:checkedIconTint + */ + public static final int MaterialCardView_checkedIconTint=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rippleColor} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:rippleColor + */ + public static final int MaterialCardView_rippleColor=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int MaterialCardView_shapeAppearance=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int MaterialCardView_shapeAppearanceOverlay=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_dragged} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_dragged + */ + public static final int MaterialCardView_state_dragged=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:strokeColor + */ + public static final int MaterialCardView_strokeColor=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:strokeWidth + */ + public static final int MaterialCardView_strokeWidth=12; + /** + * Attributes that can be used with a MaterialCheckBox. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCheckBox_android_button android:button}
{@link #MaterialCheckBox_buttonCompat com.companyname.clipifrontc:buttonCompat}
{@link #MaterialCheckBox_buttonIcon com.companyname.clipifrontc:buttonIcon}
{@link #MaterialCheckBox_buttonIconTint com.companyname.clipifrontc:buttonIconTint}
{@link #MaterialCheckBox_buttonIconTintMode com.companyname.clipifrontc:buttonIconTintMode}
{@link #MaterialCheckBox_buttonTint com.companyname.clipifrontc:buttonTint}
{@link #MaterialCheckBox_centerIfNoTextEnabled com.companyname.clipifrontc:centerIfNoTextEnabled}
{@link #MaterialCheckBox_checkedState com.companyname.clipifrontc:checkedState}
{@link #MaterialCheckBox_errorAccessibilityLabel com.companyname.clipifrontc:errorAccessibilityLabel}
{@link #MaterialCheckBox_errorShown com.companyname.clipifrontc:errorShown}
{@link #MaterialCheckBox_useMaterialThemeColors com.companyname.clipifrontc:useMaterialThemeColors}
+ * @see #MaterialCheckBox_android_button + * @see #MaterialCheckBox_buttonCompat + * @see #MaterialCheckBox_buttonIcon + * @see #MaterialCheckBox_buttonIconTint + * @see #MaterialCheckBox_buttonIconTintMode + * @see #MaterialCheckBox_buttonTint + * @see #MaterialCheckBox_centerIfNoTextEnabled + * @see #MaterialCheckBox_checkedState + * @see #MaterialCheckBox_errorAccessibilityLabel + * @see #MaterialCheckBox_errorShown + * @see #MaterialCheckBox_useMaterialThemeColors + */ + public static final int[] MaterialCheckBox={ + 0x01010107, 0x7f030096, 0x7f030098, 0x7f03009a, + 0x7f03009b, 0x7f03009f, 0x7f0300b4, 0x7f0300c3, + 0x7f0301bb, 0x7f0301c2, 0x7f030500 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int MaterialCheckBox_android_button=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonCompat} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonCompat + */ + public static final int MaterialCheckBox_buttonCompat=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonIcon} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:buttonIcon + */ + public static final int MaterialCheckBox_buttonIcon=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonIconTint} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:buttonIconTint + */ + public static final int MaterialCheckBox_buttonIconTint=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonIconTintMode} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:buttonIconTintMode + */ + public static final int MaterialCheckBox_buttonIconTintMode=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonTint} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:buttonTint + */ + public static final int MaterialCheckBox_buttonTint=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#centerIfNoTextEnabled} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:centerIfNoTextEnabled + */ + public static final int MaterialCheckBox_centerIfNoTextEnabled=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#checkedState} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
checked1The checked state of the checkbox.
indeterminate2The indeterminate state of the checkbox.
unchecked0The unchecked state of the checkbox.
+ * + * @attr name com.companyname.clipifrontc:checkedState + */ + public static final int MaterialCheckBox_checkedState=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorAccessibilityLabel} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:errorAccessibilityLabel + */ + public static final int MaterialCheckBox_errorAccessibilityLabel=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorShown} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:errorShown + */ + public static final int MaterialCheckBox_errorShown=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#useMaterialThemeColors} + * attribute's value can be found in the {@link #MaterialCheckBox} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:useMaterialThemeColors + */ + public static final int MaterialCheckBox_useMaterialThemeColors=10; + /** + * Attributes that can be used with a MaterialCheckBoxStates. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCheckBoxStates_state_error com.companyname.clipifrontc:state_error}
{@link #MaterialCheckBoxStates_state_indeterminate com.companyname.clipifrontc:state_indeterminate}
+ * @see #MaterialCheckBoxStates_state_error + * @see #MaterialCheckBoxStates_state_indeterminate + */ + public static final int[] MaterialCheckBoxStates={ + 0x7f030428, 0x7f030429 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_error} + * attribute's value can be found in the {@link #MaterialCheckBoxStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_error + */ + public static final int MaterialCheckBoxStates_state_error=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_indeterminate} + * attribute's value can be found in the {@link #MaterialCheckBoxStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_indeterminate + */ + public static final int MaterialCheckBoxStates_state_indeterminate=1; + /** + * Attributes that can be used with a MaterialDivider. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialDivider_dividerColor com.companyname.clipifrontc:dividerColor}
{@link #MaterialDivider_dividerInsetEnd com.companyname.clipifrontc:dividerInsetEnd}
{@link #MaterialDivider_dividerInsetStart com.companyname.clipifrontc:dividerInsetStart}
{@link #MaterialDivider_dividerThickness com.companyname.clipifrontc:dividerThickness}
{@link #MaterialDivider_lastItemDecorated com.companyname.clipifrontc:lastItemDecorated}
+ * @see #MaterialDivider_dividerColor + * @see #MaterialDivider_dividerInsetEnd + * @see #MaterialDivider_dividerInsetStart + * @see #MaterialDivider_dividerThickness + * @see #MaterialDivider_lastItemDecorated + */ + public static final int[] MaterialDivider={ + 0x7f03018a, 0x7f03018c, 0x7f03018d, 0x7f03018f, + 0x7f030289 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerColor} + * attribute's value can be found in the {@link #MaterialDivider} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:dividerColor + */ + public static final int MaterialDivider_dividerColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerInsetEnd} + * attribute's value can be found in the {@link #MaterialDivider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerInsetEnd + */ + public static final int MaterialDivider_dividerInsetEnd=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerInsetStart} + * attribute's value can be found in the {@link #MaterialDivider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerInsetStart + */ + public static final int MaterialDivider_dividerInsetStart=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerThickness} + * attribute's value can be found in the {@link #MaterialDivider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerThickness + */ + public static final int MaterialDivider_dividerThickness=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lastItemDecorated} + * attribute's value can be found in the {@link #MaterialDivider} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:lastItemDecorated + */ + public static final int MaterialDivider_lastItemDecorated=4; + /** + * Attributes that can be used with a MaterialRadioButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialRadioButton_buttonTint com.companyname.clipifrontc:buttonTint}
{@link #MaterialRadioButton_useMaterialThemeColors com.companyname.clipifrontc:useMaterialThemeColors}
+ * @see #MaterialRadioButton_buttonTint + * @see #MaterialRadioButton_useMaterialThemeColors + */ + public static final int[] MaterialRadioButton={ + 0x7f03009f, 0x7f030500 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonTint} + * attribute's value can be found in the {@link #MaterialRadioButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:buttonTint + */ + public static final int MaterialRadioButton_buttonTint=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#useMaterialThemeColors} + * attribute's value can be found in the {@link #MaterialRadioButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:useMaterialThemeColors + */ + public static final int MaterialRadioButton_useMaterialThemeColors=1; + /** + * Attributes that can be used with a MaterialShape. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialShape_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #MaterialShape_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
+ * @see #MaterialShape_shapeAppearance + * @see #MaterialShape_shapeAppearanceOverlay + */ + public static final int[] MaterialShape={ + 0x7f0303e2, 0x7f0303ea + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #MaterialShape} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int MaterialShape_shapeAppearance=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #MaterialShape} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int MaterialShape_shapeAppearanceOverlay=1; + /** + * Attributes that can be used with a MaterialSwitch. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialSwitch_thumbIcon com.companyname.clipifrontc:thumbIcon}
{@link #MaterialSwitch_thumbIconSize com.companyname.clipifrontc:thumbIconSize}
{@link #MaterialSwitch_thumbIconTint com.companyname.clipifrontc:thumbIconTint}
{@link #MaterialSwitch_thumbIconTintMode com.companyname.clipifrontc:thumbIconTintMode}
{@link #MaterialSwitch_trackDecoration com.companyname.clipifrontc:trackDecoration}
{@link #MaterialSwitch_trackDecorationTint com.companyname.clipifrontc:trackDecorationTint}
{@link #MaterialSwitch_trackDecorationTintMode com.companyname.clipifrontc:trackDecorationTintMode}
+ * @see #MaterialSwitch_thumbIcon + * @see #MaterialSwitch_thumbIconSize + * @see #MaterialSwitch_thumbIconTint + * @see #MaterialSwitch_thumbIconTintMode + * @see #MaterialSwitch_trackDecoration + * @see #MaterialSwitch_trackDecorationTint + * @see #MaterialSwitch_trackDecorationTintMode + */ + public static final int[] MaterialSwitch={ + 0x7f0304b0, 0x7f0304b1, 0x7f0304b2, 0x7f0304b3, + 0x7f0304e9, 0x7f0304ea, 0x7f0304eb + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbIcon} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:thumbIcon + */ + public static final int MaterialSwitch_thumbIcon=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbIconSize} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbIconSize + */ + public static final int MaterialSwitch_thumbIconSize=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbIconTint} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:thumbIconTint + */ + public static final int MaterialSwitch_thumbIconTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbIconTintMode} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:thumbIconTintMode + */ + public static final int MaterialSwitch_thumbIconTintMode=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackDecoration} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:trackDecoration + */ + public static final int MaterialSwitch_trackDecoration=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackDecorationTint} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackDecorationTint + */ + public static final int MaterialSwitch_trackDecorationTint=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackDecorationTintMode} + * attribute's value can be found in the {@link #MaterialSwitch} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:trackDecorationTintMode + */ + public static final int MaterialSwitch_trackDecorationTintMode=6; + /** + * Attributes that can be used with a MaterialTextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialTextAppearance_android_letterSpacing android:letterSpacing}
{@link #MaterialTextAppearance_android_lineHeight android:lineHeight}
{@link #MaterialTextAppearance_lineHeight com.companyname.clipifrontc:lineHeight}
+ * @see #MaterialTextAppearance_android_letterSpacing + * @see #MaterialTextAppearance_android_lineHeight + * @see #MaterialTextAppearance_lineHeight + */ + public static final int[] MaterialTextAppearance={ + 0x010104b6, 0x0101057f, 0x7f0302d8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#letterSpacing} + * attribute's value can be found in the {@link #MaterialTextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:letterSpacing + */ + public static final int MaterialTextAppearance_android_letterSpacing=0; + /** + *

This symbol is the offset where the {@link android.R.attr#lineHeight} + * attribute's value can be found in the {@link #MaterialTextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:lineHeight + */ + public static final int MaterialTextAppearance_android_lineHeight=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lineHeight} + * attribute's value can be found in the {@link #MaterialTextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:lineHeight + */ + public static final int MaterialTextAppearance_lineHeight=2; + /** + * Attributes that can be used with a MaterialTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialTextView_android_textAppearance android:textAppearance}
{@link #MaterialTextView_android_lineHeight android:lineHeight}
{@link #MaterialTextView_lineHeight com.companyname.clipifrontc:lineHeight}
+ * @see #MaterialTextView_android_textAppearance + * @see #MaterialTextView_android_lineHeight + * @see #MaterialTextView_lineHeight + */ + public static final int[] MaterialTextView={ + 0x01010034, 0x0101057f, 0x7f0302d8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #MaterialTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int MaterialTextView_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#lineHeight} + * attribute's value can be found in the {@link #MaterialTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:lineHeight + */ + public static final int MaterialTextView_android_lineHeight=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#lineHeight} + * attribute's value can be found in the {@link #MaterialTextView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:lineHeight + */ + public static final int MaterialTextView_lineHeight=2; + /** + * Attributes that can be used with a MaterialTimePicker. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialTimePicker_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #MaterialTimePicker_clockIcon com.companyname.clipifrontc:clockIcon}
{@link #MaterialTimePicker_keyboardIcon com.companyname.clipifrontc:keyboardIcon}
+ * @see #MaterialTimePicker_backgroundTint + * @see #MaterialTimePicker_clockIcon + * @see #MaterialTimePicker_keyboardIcon + */ + public static final int[] MaterialTimePicker={ + 0x7f030056, 0x7f0300e5, 0x7f030281 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #MaterialTimePicker} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int MaterialTimePicker_backgroundTint=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clockIcon} + * attribute's value can be found in the {@link #MaterialTimePicker} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:clockIcon + */ + public static final int MaterialTimePicker_clockIcon=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#keyboardIcon} + * attribute's value can be found in the {@link #MaterialTimePicker} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:keyboardIcon + */ + public static final int MaterialTimePicker_keyboardIcon=2; + /** + * Attributes that can be used with a MaterialToolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialToolbar_logoAdjustViewBounds com.companyname.clipifrontc:logoAdjustViewBounds}
{@link #MaterialToolbar_logoScaleType com.companyname.clipifrontc:logoScaleType}
{@link #MaterialToolbar_navigationIconTint com.companyname.clipifrontc:navigationIconTint}
{@link #MaterialToolbar_subtitleCentered com.companyname.clipifrontc:subtitleCentered}
{@link #MaterialToolbar_titleCentered com.companyname.clipifrontc:titleCentered}
+ * @see #MaterialToolbar_logoAdjustViewBounds + * @see #MaterialToolbar_logoScaleType + * @see #MaterialToolbar_navigationIconTint + * @see #MaterialToolbar_subtitleCentered + * @see #MaterialToolbar_titleCentered + */ + public static final int[] MaterialToolbar={ + 0x7f0302eb, 0x7f0302ed, 0x7f030370, 0x7f03043a, + 0x7f0304c9 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#logoAdjustViewBounds} + * attribute's value can be found in the {@link #MaterialToolbar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:logoAdjustViewBounds + */ + public static final int MaterialToolbar_logoAdjustViewBounds=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#logoScaleType} + * attribute's value can be found in the {@link #MaterialToolbar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center5Center the image in the view, but perform no scaling.
centerCrop6Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside7Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter3Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd4Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart2Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY1Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
matrix0Scale using the image matrix when drawing. See + * {@link android.widget.ImageView#setImageMatrix(Matrix)}.
+ * + * @attr name com.companyname.clipifrontc:logoScaleType + */ + public static final int MaterialToolbar_logoScaleType=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationIconTint} + * attribute's value can be found in the {@link #MaterialToolbar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:navigationIconTint + */ + public static final int MaterialToolbar_navigationIconTint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitleCentered} + * attribute's value can be found in the {@link #MaterialToolbar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:subtitleCentered + */ + public static final int MaterialToolbar_subtitleCentered=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleCentered} + * attribute's value can be found in the {@link #MaterialToolbar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:titleCentered + */ + public static final int MaterialToolbar_titleCentered=4; + /** + * Attributes that can be used with a MenuGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ * @see #MenuGroup_android_enabled + * @see #MenuGroup_android_id + * @see #MenuGroup_android_visible + * @see #MenuGroup_android_menuCategory + * @see #MenuGroup_android_orderInCategory + * @see #MenuGroup_android_checkableBehavior + */ + public static final int[] MenuGroup={ + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuGroup_android_enabled=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuGroup_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuGroup_android_visible=2; + /** + *

This symbol is the offset where the {@link android.R.attr#menuCategory} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory=3; + /** + *

This symbol is the offset where the {@link android.R.attr#orderInCategory} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory=4; + /** + *

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
all1
none0
single2
+ * + * @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior=5; + /** + * Attributes that can be used with a MenuItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout com.companyname.clipifrontc:actionLayout}
{@link #MenuItem_actionProviderClass com.companyname.clipifrontc:actionProviderClass}
{@link #MenuItem_actionViewClass com.companyname.clipifrontc:actionViewClass}
{@link #MenuItem_alphabeticModifiers com.companyname.clipifrontc:alphabeticModifiers}
{@link #MenuItem_contentDescription com.companyname.clipifrontc:contentDescription}
{@link #MenuItem_iconTint com.companyname.clipifrontc:iconTint}
{@link #MenuItem_iconTintMode com.companyname.clipifrontc:iconTintMode}
{@link #MenuItem_numericModifiers com.companyname.clipifrontc:numericModifiers}
{@link #MenuItem_showAsAction com.companyname.clipifrontc:showAsAction}
{@link #MenuItem_tooltipText com.companyname.clipifrontc:tooltipText}
+ * @see #MenuItem_android_icon + * @see #MenuItem_android_enabled + * @see #MenuItem_android_id + * @see #MenuItem_android_checked + * @see #MenuItem_android_visible + * @see #MenuItem_android_menuCategory + * @see #MenuItem_android_orderInCategory + * @see #MenuItem_android_title + * @see #MenuItem_android_titleCondensed + * @see #MenuItem_android_alphabeticShortcut + * @see #MenuItem_android_numericShortcut + * @see #MenuItem_android_checkable + * @see #MenuItem_android_onClick + * @see #MenuItem_actionLayout + * @see #MenuItem_actionProviderClass + * @see #MenuItem_actionViewClass + * @see #MenuItem_alphabeticModifiers + * @see #MenuItem_contentDescription + * @see #MenuItem_iconTint + * @see #MenuItem_iconTintMode + * @see #MenuItem_numericModifiers + * @see #MenuItem_showAsAction + * @see #MenuItem_tooltipText + */ + public static final int[] MenuItem={ + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f030010, 0x7f030024, 0x7f030026, + 0x7f030032, 0x7f030142, 0x7f03024a, 0x7f03024b, + 0x7f030379, 0x7f0303f0, 0x7f0304df + }; + /** + *

This symbol is the offset where the {@link android.R.attr#icon} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int MenuItem_android_icon=0; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuItem_android_enabled=1; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuItem_android_id=2; + /** + *

This symbol is the offset where the {@link android.R.attr#checked} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checked + */ + public static final int MenuItem_android_checked=3; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuItem_android_visible=4; + /** + *

This symbol is the offset where the {@link android.R.attr#menuCategory} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory=5; + /** + *

This symbol is the offset where the {@link android.R.attr#orderInCategory} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory=6; + /** + *

This symbol is the offset where the {@link android.R.attr#title} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:title + */ + public static final int MenuItem_android_title=7; + /** + *

This symbol is the offset where the {@link android.R.attr#titleCondensed} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed=8; + /** + *

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut=9; + /** + *

This symbol is the offset where the {@link android.R.attr#numericShortcut} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut=10; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MenuItem_android_checkable=11; + /** + *

This symbol is the offset where the {@link android.R.attr#onClick} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:onClick + */ + public static final int MenuItem_android_onClick=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionLayout} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:actionLayout + */ + public static final int MenuItem_actionLayout=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionProviderClass} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:actionProviderClass + */ + public static final int MenuItem_actionProviderClass=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionViewClass} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:actionViewClass + */ + public static final int MenuItem_actionViewClass=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#alphabeticModifiers} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name com.companyname.clipifrontc:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentDescription} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:contentDescription + */ + public static final int MenuItem_contentDescription=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconTint} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:iconTint + */ + public static final int MenuItem_iconTint=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconTintMode} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:iconTintMode + */ + public static final int MenuItem_iconTintMode=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#numericModifiers} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name com.companyname.clipifrontc:numericModifiers + */ + public static final int MenuItem_numericModifiers=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showAsAction} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ * + * @attr name com.companyname.clipifrontc:showAsAction + */ + public static final int MenuItem_showAsAction=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tooltipText} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:tooltipText + */ + public static final int MenuItem_tooltipText=22; + /** + * Attributes that can be used with a MenuView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing com.companyname.clipifrontc:preserveIconSpacing}
{@link #MenuView_subMenuArrow com.companyname.clipifrontc:subMenuArrow}
+ * @see #MenuView_android_windowAnimationStyle + * @see #MenuView_android_itemTextAppearance + * @see #MenuView_android_horizontalDivider + * @see #MenuView_android_verticalDivider + * @see #MenuView_android_headerBackground + * @see #MenuView_android_itemBackground + * @see #MenuView_android_itemIconDisabledAlpha + * @see #MenuView_preserveIconSpacing + * @see #MenuView_subMenuArrow + */ + public static final int[] MenuView={ + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0303af, + 0x7f030433 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle=0; + /** + *

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance=1; + /** + *

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider=2; + /** + *

This symbol is the offset where the {@link android.R.attr#verticalDivider} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider=3; + /** + *

This symbol is the offset where the {@link android.R.attr#headerBackground} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground=4; + /** + *

This symbol is the offset where the {@link android.R.attr#itemBackground} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground=5; + /** + *

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#preserveIconSpacing} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subMenuArrow} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:subMenuArrow + */ + public static final int MenuView_subMenuArrow=8; + /** + * Attributes that can be used with a MockView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MockView_mock_diagonalsColor com.companyname.clipifrontc:mock_diagonalsColor}
{@link #MockView_mock_label com.companyname.clipifrontc:mock_label}
{@link #MockView_mock_labelBackgroundColor com.companyname.clipifrontc:mock_labelBackgroundColor}
{@link #MockView_mock_labelColor com.companyname.clipifrontc:mock_labelColor}
{@link #MockView_mock_showDiagonals com.companyname.clipifrontc:mock_showDiagonals}
{@link #MockView_mock_showLabel com.companyname.clipifrontc:mock_showLabel}
+ * @see #MockView_mock_diagonalsColor + * @see #MockView_mock_label + * @see #MockView_mock_labelBackgroundColor + * @see #MockView_mock_labelColor + * @see #MockView_mock_showDiagonals + * @see #MockView_mock_showLabel + */ + public static final int[] MockView={ + 0x7f030338, 0x7f030339, 0x7f03033a, 0x7f03033b, + 0x7f03033c, 0x7f03033d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_diagonalsColor} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:mock_diagonalsColor + */ + public static final int MockView_mock_diagonalsColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_label} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:mock_label + */ + public static final int MockView_mock_label=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_labelBackgroundColor} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:mock_labelBackgroundColor + */ + public static final int MockView_mock_labelBackgroundColor=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_labelColor} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:mock_labelColor + */ + public static final int MockView_mock_labelColor=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_showDiagonals} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:mock_showDiagonals + */ + public static final int MockView_mock_showDiagonals=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mock_showLabel} + * attribute's value can be found in the {@link #MockView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:mock_showLabel + */ + public static final int MockView_mock_showLabel=5; + /** + * Attributes that can be used with a Motion. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Motion_animateCircleAngleTo com.companyname.clipifrontc:animateCircleAngleTo}
{@link #Motion_animateRelativeTo com.companyname.clipifrontc:animateRelativeTo}
{@link #Motion_drawPath com.companyname.clipifrontc:drawPath}
{@link #Motion_motionPathRotate com.companyname.clipifrontc:motionPathRotate}
{@link #Motion_motionStagger com.companyname.clipifrontc:motionStagger}
{@link #Motion_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #Motion_quantizeMotionInterpolator com.companyname.clipifrontc:quantizeMotionInterpolator}
{@link #Motion_quantizeMotionPhase com.companyname.clipifrontc:quantizeMotionPhase}
{@link #Motion_quantizeMotionSteps com.companyname.clipifrontc:quantizeMotionSteps}
{@link #Motion_transitionEasing com.companyname.clipifrontc:transitionEasing}
+ * @see #Motion_animateCircleAngleTo + * @see #Motion_animateRelativeTo + * @see #Motion_drawPath + * @see #Motion_motionPathRotate + * @see #Motion_motionStagger + * @see #Motion_pathMotionArc + * @see #Motion_quantizeMotionInterpolator + * @see #Motion_quantizeMotionPhase + * @see #Motion_quantizeMotionSteps + * @see #Motion_transitionEasing + */ + public static final int[] Motion={ + 0x7f030035, 0x7f030038, 0x7f030194, 0x7f030365, + 0x7f030367, 0x7f030395, 0x7f0303b4, 0x7f0303b5, + 0x7f0303b6, 0x7f0304f4 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateCircleAngleTo} + * attribute's value can be found in the {@link #Motion} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
antiClockwise3
bestChoice0
clockwise2
closest1
constraint4
+ * + * @attr name com.companyname.clipifrontc:animateCircleAngleTo + */ + public static final int Motion_animateCircleAngleTo=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateRelativeTo} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:animateRelativeTo + */ + public static final int Motion_animateRelativeTo=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawPath} + * attribute's value can be found in the {@link #Motion} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
asConfigured4
deltaRelative3
none0
path1
pathRelative2
rectangles5
+ * + * @attr name com.companyname.clipifrontc:drawPath + */ + public static final int Motion_drawPath=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionPathRotate} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionPathRotate + */ + public static final int Motion_motionPathRotate=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionStagger} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionStagger + */ + public static final int Motion_motionStagger=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #Motion} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int Motion_pathMotionArc=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionInterpolator} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ * + * @attr name com.companyname.clipifrontc:quantizeMotionInterpolator + */ + public static final int Motion_quantizeMotionInterpolator=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionPhase} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:quantizeMotionPhase + */ + public static final int Motion_quantizeMotionPhase=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#quantizeMotionSteps} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:quantizeMotionSteps + */ + public static final int Motion_quantizeMotionSteps=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionEasing} + * attribute's value can be found in the {@link #Motion} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
accelerate1
decelerate2
linear3
standard0
+ * + * @attr name com.companyname.clipifrontc:transitionEasing + */ + public static final int Motion_transitionEasing=9; + /** + * Attributes that can be used with a MotionEffect. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MotionEffect_motionEffect_alpha com.companyname.clipifrontc:motionEffect_alpha}
{@link #MotionEffect_motionEffect_end com.companyname.clipifrontc:motionEffect_end}
{@link #MotionEffect_motionEffect_move com.companyname.clipifrontc:motionEffect_move}
{@link #MotionEffect_motionEffect_start com.companyname.clipifrontc:motionEffect_start}
{@link #MotionEffect_motionEffect_strict com.companyname.clipifrontc:motionEffect_strict}
{@link #MotionEffect_motionEffect_translationX com.companyname.clipifrontc:motionEffect_translationX}
{@link #MotionEffect_motionEffect_translationY com.companyname.clipifrontc:motionEffect_translationY}
{@link #MotionEffect_motionEffect_viewTransition com.companyname.clipifrontc:motionEffect_viewTransition}
+ * @see #MotionEffect_motionEffect_alpha + * @see #MotionEffect_motionEffect_end + * @see #MotionEffect_motionEffect_move + * @see #MotionEffect_motionEffect_start + * @see #MotionEffect_motionEffect_strict + * @see #MotionEffect_motionEffect_translationX + * @see #MotionEffect_motionEffect_translationY + * @see #MotionEffect_motionEffect_viewTransition + */ + public static final int[] MotionEffect={ + 0x7f03035b, 0x7f03035c, 0x7f03035d, 0x7f03035e, + 0x7f03035f, 0x7f030360, 0x7f030361, 0x7f030362 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_alpha} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionEffect_alpha + */ + public static final int MotionEffect_motionEffect_alpha=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_end} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:motionEffect_end + */ + public static final int MotionEffect_motionEffect_end=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_move} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
east2
north0
south1
west3
+ * + * @attr name com.companyname.clipifrontc:motionEffect_move + */ + public static final int MotionEffect_motionEffect_move=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_start} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:motionEffect_start + */ + public static final int MotionEffect_motionEffect_start=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_strict} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:motionEffect_strict + */ + public static final int MotionEffect_motionEffect_strict=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_translationX} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:motionEffect_translationX + */ + public static final int MotionEffect_motionEffect_translationX=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_translationY} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:motionEffect_translationY + */ + public static final int MotionEffect_motionEffect_translationY=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionEffect_viewTransition} + * attribute's value can be found in the {@link #MotionEffect} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:motionEffect_viewTransition + */ + public static final int MotionEffect_motionEffect_viewTransition=7; + /** + * Attributes that can be used with a MotionHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MotionHelper_onHide com.companyname.clipifrontc:onHide}
{@link #MotionHelper_onShow com.companyname.clipifrontc:onShow}
+ * @see #MotionHelper_onHide + * @see #MotionHelper_onShow + */ + public static final int[] MotionHelper={ + 0x7f03037c, 0x7f03037f + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onHide} + * attribute's value can be found in the {@link #MotionHelper} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:onHide + */ + public static final int MotionHelper_onHide=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onShow} + * attribute's value can be found in the {@link #MotionHelper} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:onShow + */ + public static final int MotionHelper_onShow=1; + /** + * Attributes that can be used with a MotionLabel. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MotionLabel_android_textSize android:textSize}
{@link #MotionLabel_android_typeface android:typeface}
{@link #MotionLabel_android_textStyle android:textStyle}
{@link #MotionLabel_android_textColor android:textColor}
{@link #MotionLabel_android_gravity android:gravity}
{@link #MotionLabel_android_text android:text}
{@link #MotionLabel_android_shadowRadius android:shadowRadius}
{@link #MotionLabel_android_fontFamily android:fontFamily}
{@link #MotionLabel_android_autoSizeTextType android:autoSizeTextType}
{@link #MotionLabel_borderRound com.companyname.clipifrontc:borderRound}
{@link #MotionLabel_borderRoundPercent com.companyname.clipifrontc:borderRoundPercent}
{@link #MotionLabel_scaleFromTextSize com.companyname.clipifrontc:scaleFromTextSize}
{@link #MotionLabel_textBackground com.companyname.clipifrontc:textBackground}
{@link #MotionLabel_textBackgroundPanX com.companyname.clipifrontc:textBackgroundPanX}
{@link #MotionLabel_textBackgroundPanY com.companyname.clipifrontc:textBackgroundPanY}
{@link #MotionLabel_textBackgroundRotate com.companyname.clipifrontc:textBackgroundRotate}
{@link #MotionLabel_textBackgroundZoom com.companyname.clipifrontc:textBackgroundZoom}
{@link #MotionLabel_textOutlineColor com.companyname.clipifrontc:textOutlineColor}
{@link #MotionLabel_textOutlineThickness com.companyname.clipifrontc:textOutlineThickness}
{@link #MotionLabel_textPanX com.companyname.clipifrontc:textPanX}
{@link #MotionLabel_textPanY com.companyname.clipifrontc:textPanY}
{@link #MotionLabel_textureBlurFactor com.companyname.clipifrontc:textureBlurFactor}
{@link #MotionLabel_textureEffect com.companyname.clipifrontc:textureEffect}
{@link #MotionLabel_textureHeight com.companyname.clipifrontc:textureHeight}
{@link #MotionLabel_textureWidth com.companyname.clipifrontc:textureWidth}
+ * @see #MotionLabel_android_textSize + * @see #MotionLabel_android_typeface + * @see #MotionLabel_android_textStyle + * @see #MotionLabel_android_textColor + * @see #MotionLabel_android_gravity + * @see #MotionLabel_android_text + * @see #MotionLabel_android_shadowRadius + * @see #MotionLabel_android_fontFamily + * @see #MotionLabel_android_autoSizeTextType + * @see #MotionLabel_borderRound + * @see #MotionLabel_borderRoundPercent + * @see #MotionLabel_scaleFromTextSize + * @see #MotionLabel_textBackground + * @see #MotionLabel_textBackgroundPanX + * @see #MotionLabel_textBackgroundPanY + * @see #MotionLabel_textBackgroundRotate + * @see #MotionLabel_textBackgroundZoom + * @see #MotionLabel_textOutlineColor + * @see #MotionLabel_textOutlineThickness + * @see #MotionLabel_textPanX + * @see #MotionLabel_textPanY + * @see #MotionLabel_textureBlurFactor + * @see #MotionLabel_textureEffect + * @see #MotionLabel_textureHeight + * @see #MotionLabel_textureWidth + */ + public static final int[] MotionLabel={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x010100af, 0x0101014f, 0x01010164, 0x010103ac, + 0x01010535, 0x7f03007a, 0x7f03007b, 0x7f0303d1, + 0x7f030490, 0x7f030491, 0x7f030492, 0x7f030493, + 0x7f030494, 0x7f0304a2, 0x7f0304a3, 0x7f0304a4, + 0x7f0304a5, 0x7f0304a7, 0x7f0304a8, 0x7f0304a9, + 0x7f0304aa + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int MotionLabel_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int MotionLabel_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int MotionLabel_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int MotionLabel_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int MotionLabel_android_gravity=4; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int MotionLabel_android_text=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int MotionLabel_android_shadowRadius=6; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int MotionLabel_android_fontFamily=7; + /** + *

This symbol is the offset where the {@link android.R.attr#autoSizeTextType} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0
uniform1
+ * + * @attr name android:autoSizeTextType + */ + public static final int MotionLabel_android_autoSizeTextType=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderRound} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:borderRound + */ + public static final int MotionLabel_borderRound=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderRoundPercent} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:borderRoundPercent + */ + public static final int MotionLabel_borderRoundPercent=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#scaleFromTextSize} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:scaleFromTextSize + */ + public static final int MotionLabel_scaleFromTextSize=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textBackground} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:textBackground + */ + public static final int MotionLabel_textBackground=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textBackgroundPanX} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textBackgroundPanX + */ + public static final int MotionLabel_textBackgroundPanX=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textBackgroundPanY} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textBackgroundPanY + */ + public static final int MotionLabel_textBackgroundPanY=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textBackgroundRotate} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textBackgroundRotate + */ + public static final int MotionLabel_textBackgroundRotate=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textBackgroundZoom} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textBackgroundZoom + */ + public static final int MotionLabel_textBackgroundZoom=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textOutlineColor} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:textOutlineColor + */ + public static final int MotionLabel_textOutlineColor=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textOutlineThickness} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textOutlineThickness + */ + public static final int MotionLabel_textOutlineThickness=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textPanX} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textPanX + */ + public static final int MotionLabel_textPanX=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textPanY} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:textPanY + */ + public static final int MotionLabel_textPanY=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textureBlurFactor} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:textureBlurFactor + */ + public static final int MotionLabel_textureBlurFactor=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textureEffect} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
frost1
none0
+ * + * @attr name com.companyname.clipifrontc:textureEffect + */ + public static final int MotionLabel_textureEffect=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textureHeight} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textureHeight + */ + public static final int MotionLabel_textureHeight=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textureWidth} + * attribute's value can be found in the {@link #MotionLabel} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textureWidth + */ + public static final int MotionLabel_textureWidth=24; + /** + * Attributes that can be used with a MotionLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MotionLayout_applyMotionScene com.companyname.clipifrontc:applyMotionScene}
{@link #MotionLayout_currentState com.companyname.clipifrontc:currentState}
{@link #MotionLayout_layoutDescription com.companyname.clipifrontc:layoutDescription}
{@link #MotionLayout_motionDebug com.companyname.clipifrontc:motionDebug}
{@link #MotionLayout_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #MotionLayout_showPaths com.companyname.clipifrontc:showPaths}
+ * @see #MotionLayout_applyMotionScene + * @see #MotionLayout_currentState + * @see #MotionLayout_layoutDescription + * @see #MotionLayout_motionDebug + * @see #MotionLayout_motionProgress + * @see #MotionLayout_showPaths + */ + public static final int[] MotionLayout={ + 0x7f03003c, 0x7f030167, 0x7f03028c, 0x7f03033e, + 0x7f030366, 0x7f0303f5 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#applyMotionScene} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:applyMotionScene + */ + public static final int MotionLayout_applyMotionScene=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#currentState} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:currentState + */ + public static final int MotionLayout_currentState=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layoutDescription} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layoutDescription + */ + public static final int MotionLayout_layoutDescription=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionDebug} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
NO_DEBUG0
SHOW_ALL3
SHOW_PATH2
SHOW_PROGRESS1
+ * + * @attr name com.companyname.clipifrontc:motionDebug + */ + public static final int MotionLayout_motionDebug=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int MotionLayout_motionProgress=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showPaths} + * attribute's value can be found in the {@link #MotionLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:showPaths + */ + public static final int MotionLayout_showPaths=5; + /** + * Attributes that can be used with a MotionScene. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MotionScene_defaultDuration com.companyname.clipifrontc:defaultDuration}
{@link #MotionScene_layoutDuringTransition com.companyname.clipifrontc:layoutDuringTransition}
+ * @see #MotionScene_defaultDuration + * @see #MotionScene_layoutDuringTransition + */ + public static final int[] MotionScene={ + 0x7f03017b, 0x7f03028d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultDuration} + * attribute's value can be found in the {@link #MotionScene} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:defaultDuration + */ + public static final int MotionScene_defaultDuration=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layoutDuringTransition} + * attribute's value can be found in the {@link #MotionScene} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
callMeasure2
honorRequest1
ignoreRequest0
+ * + * @attr name com.companyname.clipifrontc:layoutDuringTransition + */ + public static final int MotionScene_layoutDuringTransition=1; + /** + * Attributes that can be used with a MotionTelltales. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #MotionTelltales_telltales_tailColor com.companyname.clipifrontc:telltales_tailColor}
{@link #MotionTelltales_telltales_tailScale com.companyname.clipifrontc:telltales_tailScale}
{@link #MotionTelltales_telltales_velocityMode com.companyname.clipifrontc:telltales_velocityMode}
+ * @see #MotionTelltales_telltales_tailColor + * @see #MotionTelltales_telltales_tailScale + * @see #MotionTelltales_telltales_velocityMode + */ + public static final int[] MotionTelltales={ + 0x7f030467, 0x7f030468, 0x7f030469 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#telltales_tailColor} + * attribute's value can be found in the {@link #MotionTelltales} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:telltales_tailColor + */ + public static final int MotionTelltales_telltales_tailColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#telltales_tailScale} + * attribute's value can be found in the {@link #MotionTelltales} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:telltales_tailScale + */ + public static final int MotionTelltales_telltales_tailScale=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#telltales_velocityMode} + * attribute's value can be found in the {@link #MotionTelltales} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
layout0
postLayout1
staticLayout3
staticPostLayout2
+ * + * @attr name com.companyname.clipifrontc:telltales_velocityMode + */ + public static final int MotionTelltales_telltales_velocityMode=2; + /** + * Attributes that can be used with a NavAction. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavAction_android_id android:id}
{@link #NavAction_destination com.companyname.clipifrontc:destination}
{@link #NavAction_enterAnim com.companyname.clipifrontc:enterAnim}
{@link #NavAction_exitAnim com.companyname.clipifrontc:exitAnim}
{@link #NavAction_launchSingleTop com.companyname.clipifrontc:launchSingleTop}
{@link #NavAction_popEnterAnim com.companyname.clipifrontc:popEnterAnim}
{@link #NavAction_popExitAnim com.companyname.clipifrontc:popExitAnim}
{@link #NavAction_popUpTo com.companyname.clipifrontc:popUpTo}
{@link #NavAction_popUpToInclusive com.companyname.clipifrontc:popUpToInclusive}
{@link #NavAction_popUpToSaveState com.companyname.clipifrontc:popUpToSaveState}
{@link #NavAction_restoreState com.companyname.clipifrontc:restoreState}
+ * @see #NavAction_android_id + * @see #NavAction_destination + * @see #NavAction_enterAnim + * @see #NavAction_exitAnim + * @see #NavAction_launchSingleTop + * @see #NavAction_popEnterAnim + * @see #NavAction_popExitAnim + * @see #NavAction_popUpTo + * @see #NavAction_popUpToInclusive + * @see #NavAction_popUpToSaveState + * @see #NavAction_restoreState + */ + public static final int[] NavAction={ + 0x010100d0, 0x7f030184, 0x7f0301ba, 0x7f0301c5, + 0x7f03028a, 0x7f0303a3, 0x7f0303a4, 0x7f0303a5, + 0x7f0303a6, 0x7f0303a7, 0x7f0303c9 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int NavAction_android_id=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#destination} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:destination + */ + public static final int NavAction_destination=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#enterAnim} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:enterAnim + */ + public static final int NavAction_enterAnim=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#exitAnim} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:exitAnim + */ + public static final int NavAction_exitAnim=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#launchSingleTop} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:launchSingleTop + */ + public static final int NavAction_launchSingleTop=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popEnterAnim} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popEnterAnim + */ + public static final int NavAction_popEnterAnim=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popExitAnim} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popExitAnim + */ + public static final int NavAction_popExitAnim=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popUpTo} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popUpTo + */ + public static final int NavAction_popUpTo=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popUpToInclusive} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:popUpToInclusive + */ + public static final int NavAction_popUpToInclusive=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popUpToSaveState} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:popUpToSaveState + */ + public static final int NavAction_popUpToSaveState=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#restoreState} + * attribute's value can be found in the {@link #NavAction} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:restoreState + */ + public static final int NavAction_restoreState=10; + /** + * Attributes that can be used with a NavArgument. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavArgument_android_name android:name}
{@link #NavArgument_android_defaultValue android:defaultValue}
{@link #NavArgument_argType com.companyname.clipifrontc:argType}
{@link #NavArgument_nullable com.companyname.clipifrontc:nullable}
+ * @see #NavArgument_android_name + * @see #NavArgument_android_defaultValue + * @see #NavArgument_argType + * @see #NavArgument_nullable + */ + public static final int[] NavArgument={ + 0x01010003, 0x010101ed, 0x7f03003e, 0x7f030377 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#name} + * attribute's value can be found in the {@link #NavArgument} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:name + */ + public static final int NavArgument_android_name=0; + /** + *

This symbol is the offset where the {@link android.R.attr#defaultValue} + * attribute's value can be found in the {@link #NavArgument} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a floating point value, such as "1.2". + * + * @attr name android:defaultValue + */ + public static final int NavArgument_android_defaultValue=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#argType} + * attribute's value can be found in the {@link #NavArgument} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:argType + */ + public static final int NavArgument_argType=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#nullable} + * attribute's value can be found in the {@link #NavArgument} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:nullable + */ + public static final int NavArgument_nullable=3; + /** + * Attributes that can be used with a NavDeepLink. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavDeepLink_android_autoVerify android:autoVerify}
{@link #NavDeepLink_action com.companyname.clipifrontc:action}
{@link #NavDeepLink_mimeType com.companyname.clipifrontc:mimeType}
{@link #NavDeepLink_uri com.companyname.clipifrontc:uri}
+ * @see #NavDeepLink_android_autoVerify + * @see #NavDeepLink_action + * @see #NavDeepLink_mimeType + * @see #NavDeepLink_uri + */ + public static final int[] NavDeepLink={ + 0x010104ee, 0x7f030002, 0x7f030332, 0x7f0304fd + }; + /** + *

This symbol is the offset where the {@link android.R.attr#autoVerify} + * attribute's value can be found in the {@link #NavDeepLink} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:autoVerify + */ + public static final int NavDeepLink_android_autoVerify=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#action} + * attribute's value can be found in the {@link #NavDeepLink} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:action + */ + public static final int NavDeepLink_action=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#mimeType} + * attribute's value can be found in the {@link #NavDeepLink} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:mimeType + */ + public static final int NavDeepLink_mimeType=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#uri} + * attribute's value can be found in the {@link #NavDeepLink} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:uri + */ + public static final int NavDeepLink_uri=3; + /** + * Attributes that can be used with a NavGraphNavigator. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #NavGraphNavigator_startDestination com.companyname.clipifrontc:startDestination}
+ * @see #NavGraphNavigator_startDestination + */ + public static final int[] NavGraphNavigator={ + 0x7f03041b + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startDestination} + * attribute's value can be found in the {@link #NavGraphNavigator} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:startDestination + */ + public static final int NavGraphNavigator_startDestination=0; + /** + * Attributes that can be used with a NavHost. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #NavHost_navGraph com.companyname.clipifrontc:navGraph}
+ * @see #NavHost_navGraph + */ + public static final int[] NavHost={ + 0x7f03036d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navGraph} + * attribute's value can be found in the {@link #NavHost} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:navGraph + */ + public static final int NavHost_navGraph=0; + /** + * Attributes that can be used with a NavHostFragment. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #NavHostFragment_defaultNavHost com.companyname.clipifrontc:defaultNavHost}
+ * @see #NavHostFragment_defaultNavHost + */ + public static final int[] NavHostFragment={ + 0x7f03017d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultNavHost} + * attribute's value can be found in the {@link #NavHostFragment} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:defaultNavHost + */ + public static final int NavHostFragment_defaultNavHost=0; + /** + * Attributes that can be used with a NavInclude. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #NavInclude_graph com.companyname.clipifrontc:graph}
+ * @see #NavInclude_graph + */ + public static final int[] NavInclude={ + 0x7f030221 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#graph} + * attribute's value can be found in the {@link #NavInclude} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:graph + */ + public static final int NavInclude_graph=0; + /** + * Attributes that can be used with a NavigationBarActiveIndicator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationBarActiveIndicator_android_height android:height}
{@link #NavigationBarActiveIndicator_android_width android:width}
{@link #NavigationBarActiveIndicator_android_color android:color}
{@link #NavigationBarActiveIndicator_marginHorizontal com.companyname.clipifrontc:marginHorizontal}
{@link #NavigationBarActiveIndicator_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
+ * @see #NavigationBarActiveIndicator_android_height + * @see #NavigationBarActiveIndicator_android_width + * @see #NavigationBarActiveIndicator_android_color + * @see #NavigationBarActiveIndicator_marginHorizontal + * @see #NavigationBarActiveIndicator_shapeAppearance + */ + public static final int[] NavigationBarActiveIndicator={ + 0x01010155, 0x01010159, 0x010101a5, 0x7f0302ee, + 0x7f0303e2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#height} + * attribute's value can be found in the {@link #NavigationBarActiveIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:height + */ + public static final int NavigationBarActiveIndicator_android_height=0; + /** + *

This symbol is the offset where the {@link android.R.attr#width} + * attribute's value can be found in the {@link #NavigationBarActiveIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:width + */ + public static final int NavigationBarActiveIndicator_android_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#color} + * attribute's value can be found in the {@link #NavigationBarActiveIndicator} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int NavigationBarActiveIndicator_android_color=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#marginHorizontal} + * attribute's value can be found in the {@link #NavigationBarActiveIndicator} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:marginHorizontal + */ + public static final int NavigationBarActiveIndicator_marginHorizontal=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #NavigationBarActiveIndicator} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int NavigationBarActiveIndicator_shapeAppearance=4; + /** + * Attributes that can be used with a NavigationBarView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationBarView_activeIndicatorLabelPadding com.companyname.clipifrontc:activeIndicatorLabelPadding}
{@link #NavigationBarView_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #NavigationBarView_elevation com.companyname.clipifrontc:elevation}
{@link #NavigationBarView_itemActiveIndicatorStyle com.companyname.clipifrontc:itemActiveIndicatorStyle}
{@link #NavigationBarView_itemBackground com.companyname.clipifrontc:itemBackground}
{@link #NavigationBarView_itemIconSize com.companyname.clipifrontc:itemIconSize}
{@link #NavigationBarView_itemIconTint com.companyname.clipifrontc:itemIconTint}
{@link #NavigationBarView_itemPaddingBottom com.companyname.clipifrontc:itemPaddingBottom}
{@link #NavigationBarView_itemPaddingTop com.companyname.clipifrontc:itemPaddingTop}
{@link #NavigationBarView_itemRippleColor com.companyname.clipifrontc:itemRippleColor}
{@link #NavigationBarView_itemTextAppearanceActive com.companyname.clipifrontc:itemTextAppearanceActive}
{@link #NavigationBarView_itemTextAppearanceActiveBoldEnabled com.companyname.clipifrontc:itemTextAppearanceActiveBoldEnabled}
{@link #NavigationBarView_itemTextAppearanceInactive com.companyname.clipifrontc:itemTextAppearanceInactive}
{@link #NavigationBarView_itemTextColor com.companyname.clipifrontc:itemTextColor}
{@link #NavigationBarView_labelVisibilityMode com.companyname.clipifrontc:labelVisibilityMode}
{@link #NavigationBarView_menu com.companyname.clipifrontc:menu}
+ * @see #NavigationBarView_activeIndicatorLabelPadding + * @see #NavigationBarView_backgroundTint + * @see #NavigationBarView_elevation + * @see #NavigationBarView_itemActiveIndicatorStyle + * @see #NavigationBarView_itemBackground + * @see #NavigationBarView_itemIconSize + * @see #NavigationBarView_itemIconTint + * @see #NavigationBarView_itemPaddingBottom + * @see #NavigationBarView_itemPaddingTop + * @see #NavigationBarView_itemRippleColor + * @see #NavigationBarView_itemTextAppearanceActive + * @see #NavigationBarView_itemTextAppearanceActiveBoldEnabled + * @see #NavigationBarView_itemTextAppearanceInactive + * @see #NavigationBarView_itemTextColor + * @see #NavigationBarView_labelVisibilityMode + * @see #NavigationBarView_menu + */ + public static final int[] NavigationBarView={ + 0x7f030027, 0x7f030056, 0x7f0301a9, 0x7f030262, + 0x7f030263, 0x7f030268, 0x7f030269, 0x7f03026d, + 0x7f03026e, 0x7f03026f, 0x7f03027b, 0x7f03027c, + 0x7f03027d, 0x7f03027e, 0x7f030286, 0x7f03032e + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#activeIndicatorLabelPadding} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:activeIndicatorLabelPadding + */ + public static final int NavigationBarView_activeIndicatorLabelPadding=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int NavigationBarView_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int NavigationBarView_elevation=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemActiveIndicatorStyle} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemActiveIndicatorStyle + */ + public static final int NavigationBarView_itemActiveIndicatorStyle=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemBackground} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemBackground + */ + public static final int NavigationBarView_itemBackground=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemIconSize} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemIconSize + */ + public static final int NavigationBarView_itemIconSize=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemIconTint} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemIconTint + */ + public static final int NavigationBarView_itemIconTint=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemPaddingBottom} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemPaddingBottom + */ + public static final int NavigationBarView_itemPaddingBottom=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemPaddingTop} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemPaddingTop + */ + public static final int NavigationBarView_itemPaddingTop=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemRippleColor} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemRippleColor + */ + public static final int NavigationBarView_itemRippleColor=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextAppearanceActive} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemTextAppearanceActive + */ + public static final int NavigationBarView_itemTextAppearanceActive=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextAppearanceActiveBoldEnabled} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:itemTextAppearanceActiveBoldEnabled + */ + public static final int NavigationBarView_itemTextAppearanceActiveBoldEnabled=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextAppearanceInactive} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemTextAppearanceInactive + */ + public static final int NavigationBarView_itemTextAppearanceInactive=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextColor} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemTextColor + */ + public static final int NavigationBarView_itemTextColor=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#labelVisibilityMode} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffffLabel behaves as "labeled" when there are 3 items or less, or "selected" when there are + * 4 items or more.
labeled1Label is shown on all navigation items.
selected0Label is shown on the selected navigation item.
unlabeled2Label is not shown on any navigation items.
+ * + * @attr name com.companyname.clipifrontc:labelVisibilityMode + */ + public static final int NavigationBarView_labelVisibilityMode=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#menu} + * attribute's value can be found in the {@link #NavigationBarView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:menu + */ + public static final int NavigationBarView_menu=15; + /** + * Attributes that can be used with a NavigationRailView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationRailView_headerLayout com.companyname.clipifrontc:headerLayout}
{@link #NavigationRailView_itemMinHeight com.companyname.clipifrontc:itemMinHeight}
{@link #NavigationRailView_menuGravity com.companyname.clipifrontc:menuGravity}
{@link #NavigationRailView_paddingBottomSystemWindowInsets com.companyname.clipifrontc:paddingBottomSystemWindowInsets}
{@link #NavigationRailView_paddingStartSystemWindowInsets com.companyname.clipifrontc:paddingStartSystemWindowInsets}
{@link #NavigationRailView_paddingTopSystemWindowInsets com.companyname.clipifrontc:paddingTopSystemWindowInsets}
{@link #NavigationRailView_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #NavigationRailView_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
+ * @see #NavigationRailView_headerLayout + * @see #NavigationRailView_itemMinHeight + * @see #NavigationRailView_menuGravity + * @see #NavigationRailView_paddingBottomSystemWindowInsets + * @see #NavigationRailView_paddingStartSystemWindowInsets + * @see #NavigationRailView_paddingTopSystemWindowInsets + * @see #NavigationRailView_shapeAppearance + * @see #NavigationRailView_shapeAppearanceOverlay + */ + public static final int[] NavigationRailView={ + 0x7f030230, 0x7f03026b, 0x7f030330, 0x7f030385, + 0x7f03038a, 0x7f03038c, 0x7f0303e2, 0x7f0303ea + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#headerLayout} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:headerLayout + */ + public static final int NavigationRailView_headerLayout=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemMinHeight} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemMinHeight + */ + public static final int NavigationRailView_itemMinHeight=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#menuGravity} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom51Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL
center11Gravity.CENTER
top31Gravity.TOP | Gravity.CENTER_HORIZONTAL
+ * + * @attr name com.companyname.clipifrontc:menuGravity + */ + public static final int NavigationRailView_menuGravity=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingBottomSystemWindowInsets} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingBottomSystemWindowInsets + */ + public static final int NavigationRailView_paddingBottomSystemWindowInsets=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingStartSystemWindowInsets} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingStartSystemWindowInsets + */ + public static final int NavigationRailView_paddingStartSystemWindowInsets=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingTopSystemWindowInsets} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:paddingTopSystemWindowInsets + */ + public static final int NavigationRailView_paddingTopSystemWindowInsets=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int NavigationRailView_shapeAppearance=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #NavigationRailView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int NavigationRailView_shapeAppearanceOverlay=7; + /** + * Attributes that can be used with a NavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationView_android_layout_gravity android:layout_gravity}
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_bottomInsetScrimEnabled com.companyname.clipifrontc:bottomInsetScrimEnabled}
{@link #NavigationView_dividerInsetEnd com.companyname.clipifrontc:dividerInsetEnd}
{@link #NavigationView_dividerInsetStart com.companyname.clipifrontc:dividerInsetStart}
{@link #NavigationView_drawerLayoutCornerSize com.companyname.clipifrontc:drawerLayoutCornerSize}
{@link #NavigationView_elevation com.companyname.clipifrontc:elevation}
{@link #NavigationView_headerLayout com.companyname.clipifrontc:headerLayout}
{@link #NavigationView_itemBackground com.companyname.clipifrontc:itemBackground}
{@link #NavigationView_itemHorizontalPadding com.companyname.clipifrontc:itemHorizontalPadding}
{@link #NavigationView_itemIconPadding com.companyname.clipifrontc:itemIconPadding}
{@link #NavigationView_itemIconSize com.companyname.clipifrontc:itemIconSize}
{@link #NavigationView_itemIconTint com.companyname.clipifrontc:itemIconTint}
{@link #NavigationView_itemMaxLines com.companyname.clipifrontc:itemMaxLines}
{@link #NavigationView_itemRippleColor com.companyname.clipifrontc:itemRippleColor}
{@link #NavigationView_itemShapeAppearance com.companyname.clipifrontc:itemShapeAppearance}
{@link #NavigationView_itemShapeAppearanceOverlay com.companyname.clipifrontc:itemShapeAppearanceOverlay}
{@link #NavigationView_itemShapeFillColor com.companyname.clipifrontc:itemShapeFillColor}
{@link #NavigationView_itemShapeInsetBottom com.companyname.clipifrontc:itemShapeInsetBottom}
{@link #NavigationView_itemShapeInsetEnd com.companyname.clipifrontc:itemShapeInsetEnd}
{@link #NavigationView_itemShapeInsetStart com.companyname.clipifrontc:itemShapeInsetStart}
{@link #NavigationView_itemShapeInsetTop com.companyname.clipifrontc:itemShapeInsetTop}
{@link #NavigationView_itemTextAppearance com.companyname.clipifrontc:itemTextAppearance}
{@link #NavigationView_itemTextAppearanceActiveBoldEnabled com.companyname.clipifrontc:itemTextAppearanceActiveBoldEnabled}
{@link #NavigationView_itemTextColor com.companyname.clipifrontc:itemTextColor}
{@link #NavigationView_itemVerticalPadding com.companyname.clipifrontc:itemVerticalPadding}
{@link #NavigationView_menu com.companyname.clipifrontc:menu}
{@link #NavigationView_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #NavigationView_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #NavigationView_subheaderColor com.companyname.clipifrontc:subheaderColor}
{@link #NavigationView_subheaderInsetEnd com.companyname.clipifrontc:subheaderInsetEnd}
{@link #NavigationView_subheaderInsetStart com.companyname.clipifrontc:subheaderInsetStart}
{@link #NavigationView_subheaderTextAppearance com.companyname.clipifrontc:subheaderTextAppearance}
{@link #NavigationView_topInsetScrimEnabled com.companyname.clipifrontc:topInsetScrimEnabled}
+ * @see #NavigationView_android_layout_gravity + * @see #NavigationView_android_background + * @see #NavigationView_android_fitsSystemWindows + * @see #NavigationView_android_maxWidth + * @see #NavigationView_bottomInsetScrimEnabled + * @see #NavigationView_dividerInsetEnd + * @see #NavigationView_dividerInsetStart + * @see #NavigationView_drawerLayoutCornerSize + * @see #NavigationView_elevation + * @see #NavigationView_headerLayout + * @see #NavigationView_itemBackground + * @see #NavigationView_itemHorizontalPadding + * @see #NavigationView_itemIconPadding + * @see #NavigationView_itemIconSize + * @see #NavigationView_itemIconTint + * @see #NavigationView_itemMaxLines + * @see #NavigationView_itemRippleColor + * @see #NavigationView_itemShapeAppearance + * @see #NavigationView_itemShapeAppearanceOverlay + * @see #NavigationView_itemShapeFillColor + * @see #NavigationView_itemShapeInsetBottom + * @see #NavigationView_itemShapeInsetEnd + * @see #NavigationView_itemShapeInsetStart + * @see #NavigationView_itemShapeInsetTop + * @see #NavigationView_itemTextAppearance + * @see #NavigationView_itemTextAppearanceActiveBoldEnabled + * @see #NavigationView_itemTextColor + * @see #NavigationView_itemVerticalPadding + * @see #NavigationView_menu + * @see #NavigationView_shapeAppearance + * @see #NavigationView_shapeAppearanceOverlay + * @see #NavigationView_subheaderColor + * @see #NavigationView_subheaderInsetEnd + * @see #NavigationView_subheaderInsetStart + * @see #NavigationView_subheaderTextAppearance + * @see #NavigationView_topInsetScrimEnabled + */ + public static final int[] NavigationView={ + 0x010100b3, 0x010100d4, 0x010100dd, 0x0101011f, + 0x7f03007f, 0x7f03018c, 0x7f03018d, 0x7f03019f, + 0x7f0301a9, 0x7f030230, 0x7f030263, 0x7f030265, + 0x7f030267, 0x7f030268, 0x7f030269, 0x7f03026a, + 0x7f03026f, 0x7f030270, 0x7f030271, 0x7f030272, + 0x7f030273, 0x7f030274, 0x7f030275, 0x7f030276, + 0x7f03027a, 0x7f03027c, 0x7f03027e, 0x7f03027f, + 0x7f03032e, 0x7f0303e2, 0x7f0303ea, 0x7f030434, + 0x7f030435, 0x7f030436, 0x7f030437, 0x7f0304e0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int NavigationView_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int NavigationView_android_background=1; + /** + *

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows=2; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#bottomInsetScrimEnabled} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:bottomInsetScrimEnabled + */ + public static final int NavigationView_bottomInsetScrimEnabled=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerInsetEnd} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerInsetEnd + */ + public static final int NavigationView_dividerInsetEnd=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dividerInsetStart} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:dividerInsetStart + */ + public static final int NavigationView_dividerInsetStart=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#drawerLayoutCornerSize} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:drawerLayoutCornerSize + */ + public static final int NavigationView_drawerLayoutCornerSize=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int NavigationView_elevation=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#headerLayout} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:headerLayout + */ + public static final int NavigationView_headerLayout=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemBackground} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemBackground + */ + public static final int NavigationView_itemBackground=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemHorizontalPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemHorizontalPadding + */ + public static final int NavigationView_itemHorizontalPadding=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemIconPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemIconPadding + */ + public static final int NavigationView_itemIconPadding=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemIconSize} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemIconSize + */ + public static final int NavigationView_itemIconSize=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemIconTint} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemIconTint + */ + public static final int NavigationView_itemIconTint=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemMaxLines} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:itemMaxLines + */ + public static final int NavigationView_itemMaxLines=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemRippleColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemRippleColor + */ + public static final int NavigationView_itemRippleColor=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemShapeAppearance + */ + public static final int NavigationView_itemShapeAppearance=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeAppearanceOverlay} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemShapeAppearanceOverlay + */ + public static final int NavigationView_itemShapeAppearanceOverlay=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeFillColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemShapeFillColor + */ + public static final int NavigationView_itemShapeFillColor=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeInsetBottom} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemShapeInsetBottom + */ + public static final int NavigationView_itemShapeInsetBottom=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeInsetEnd} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemShapeInsetEnd + */ + public static final int NavigationView_itemShapeInsetEnd=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeInsetStart} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemShapeInsetStart + */ + public static final int NavigationView_itemShapeInsetStart=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemShapeInsetTop} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemShapeInsetTop + */ + public static final int NavigationView_itemShapeInsetTop=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextAppearanceActiveBoldEnabled} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:itemTextAppearanceActiveBoldEnabled + */ + public static final int NavigationView_itemTextAppearanceActiveBoldEnabled=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemTextColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:itemTextColor + */ + public static final int NavigationView_itemTextColor=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#itemVerticalPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:itemVerticalPadding + */ + public static final int NavigationView_itemVerticalPadding=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#menu} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:menu + */ + public static final int NavigationView_menu=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int NavigationView_shapeAppearance=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int NavigationView_shapeAppearanceOverlay=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subheaderColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:subheaderColor + */ + public static final int NavigationView_subheaderColor=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subheaderInsetEnd} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:subheaderInsetEnd + */ + public static final int NavigationView_subheaderInsetEnd=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subheaderInsetStart} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:subheaderInsetStart + */ + public static final int NavigationView_subheaderInsetStart=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subheaderTextAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:subheaderTextAppearance + */ + public static final int NavigationView_subheaderTextAppearance=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#topInsetScrimEnabled} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:topInsetScrimEnabled + */ + public static final int NavigationView_topInsetScrimEnabled=35; + /** + * Attributes that can be used with a Navigator. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #Navigator_android_label android:label}
{@link #Navigator_android_id android:id}
{@link #Navigator_route com.companyname.clipifrontc:route}
+ * @see #Navigator_android_label + * @see #Navigator_android_id + * @see #Navigator_route + */ + public static final int[] Navigator={ + 0x01010001, 0x010100d0, 0x7f0303cf + }; + /** + *

This symbol is the offset where the {@link android.R.attr#label} + * attribute's value can be found in the {@link #Navigator} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:label + */ + public static final int Navigator_android_label=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #Navigator} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int Navigator_android_id=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#route} + * attribute's value can be found in the {@link #Navigator} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:route + */ + public static final int Navigator_route=2; + /** + * Attributes that can be used with a OnClick. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #OnClick_clickAction com.companyname.clipifrontc:clickAction}
{@link #OnClick_targetId com.companyname.clipifrontc:targetId}
+ * @see #OnClick_clickAction + * @see #OnClick_targetId + */ + public static final int[] OnClick={ + 0x7f0300e2, 0x7f030465 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clickAction} + * attribute's value can be found in the {@link #OnClick} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
jumpToEnd100
jumpToStart1000
toggle11
transitionToEnd1
transitionToStart10
+ * + * @attr name com.companyname.clipifrontc:clickAction + */ + public static final int OnClick_clickAction=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#targetId} + * attribute's value can be found in the {@link #OnClick} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:targetId + */ + public static final int OnClick_targetId=1; + /** + * Attributes that can be used with a OnSwipe. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #OnSwipe_autoCompleteMode com.companyname.clipifrontc:autoCompleteMode}
{@link #OnSwipe_dragDirection com.companyname.clipifrontc:dragDirection}
{@link #OnSwipe_dragScale com.companyname.clipifrontc:dragScale}
{@link #OnSwipe_dragThreshold com.companyname.clipifrontc:dragThreshold}
{@link #OnSwipe_limitBoundsTo com.companyname.clipifrontc:limitBoundsTo}
{@link #OnSwipe_maxAcceleration com.companyname.clipifrontc:maxAcceleration}
{@link #OnSwipe_maxVelocity com.companyname.clipifrontc:maxVelocity}
{@link #OnSwipe_moveWhenScrollAtTop com.companyname.clipifrontc:moveWhenScrollAtTop}
{@link #OnSwipe_nestedScrollFlags com.companyname.clipifrontc:nestedScrollFlags}
{@link #OnSwipe_onTouchUp com.companyname.clipifrontc:onTouchUp}
{@link #OnSwipe_rotationCenterId com.companyname.clipifrontc:rotationCenterId}
{@link #OnSwipe_springBoundary com.companyname.clipifrontc:springBoundary}
{@link #OnSwipe_springDamping com.companyname.clipifrontc:springDamping}
{@link #OnSwipe_springMass com.companyname.clipifrontc:springMass}
{@link #OnSwipe_springStiffness com.companyname.clipifrontc:springStiffness}
{@link #OnSwipe_springStopThreshold com.companyname.clipifrontc:springStopThreshold}
{@link #OnSwipe_touchAnchorId com.companyname.clipifrontc:touchAnchorId}
{@link #OnSwipe_touchAnchorSide com.companyname.clipifrontc:touchAnchorSide}
{@link #OnSwipe_touchRegionId com.companyname.clipifrontc:touchRegionId}
+ * @see #OnSwipe_autoCompleteMode + * @see #OnSwipe_dragDirection + * @see #OnSwipe_dragScale + * @see #OnSwipe_dragThreshold + * @see #OnSwipe_limitBoundsTo + * @see #OnSwipe_maxAcceleration + * @see #OnSwipe_maxVelocity + * @see #OnSwipe_moveWhenScrollAtTop + * @see #OnSwipe_nestedScrollFlags + * @see #OnSwipe_onTouchUp + * @see #OnSwipe_rotationCenterId + * @see #OnSwipe_springBoundary + * @see #OnSwipe_springDamping + * @see #OnSwipe_springMass + * @see #OnSwipe_springStiffness + * @see #OnSwipe_springStopThreshold + * @see #OnSwipe_touchAnchorId + * @see #OnSwipe_touchAnchorSide + * @see #OnSwipe_touchRegionId + */ + public static final int[] OnSwipe={ + 0x7f030043, 0x7f030191, 0x7f030192, 0x7f030193, + 0x7f0302d7, 0x7f030323, 0x7f03032b, 0x7f03036b, + 0x7f030374, 0x7f030381, 0x7f0303cc, 0x7f030413, + 0x7f030414, 0x7f030415, 0x7f030416, 0x7f030417, + 0x7f0304e1, 0x7f0304e2, 0x7f0304e3 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoCompleteMode} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
continuousVelocity0
spring1
+ * + * @attr name com.companyname.clipifrontc:autoCompleteMode + */ + public static final int OnSwipe_autoCompleteMode=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dragDirection} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
dragAnticlockwise7
dragClockwise6
dragDown1
dragEnd5
dragLeft2
dragRight3
dragStart4
dragUp0
+ * + * @attr name com.companyname.clipifrontc:dragDirection + */ + public static final int OnSwipe_dragDirection=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dragScale} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:dragScale + */ + public static final int OnSwipe_dragScale=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#dragThreshold} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:dragThreshold + */ + public static final int OnSwipe_dragThreshold=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#limitBoundsTo} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:limitBoundsTo + */ + public static final int OnSwipe_limitBoundsTo=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxAcceleration} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:maxAcceleration + */ + public static final int OnSwipe_maxAcceleration=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxVelocity} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:maxVelocity + */ + public static final int OnSwipe_maxVelocity=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#moveWhenScrollAtTop} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:moveWhenScrollAtTop + */ + public static final int OnSwipe_moveWhenScrollAtTop=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#nestedScrollFlags} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disablePostScroll1
disableScroll2
none0
supportScrollUp4
+ * + * @attr name com.companyname.clipifrontc:nestedScrollFlags + */ + public static final int OnSwipe_nestedScrollFlags=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onTouchUp} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoComplete0
autoCompleteToEnd2
autoCompleteToStart1
decelerate4
decelerateAndComplete5
neverCompleteToEnd7
neverCompleteToStart6
stop3
+ * + * @attr name com.companyname.clipifrontc:onTouchUp + */ + public static final int OnSwipe_onTouchUp=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#rotationCenterId} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:rotationCenterId + */ + public static final int OnSwipe_rotationCenterId=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#springBoundary} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bounceBoth3
bounceEnd2
bounceStart1
overshoot0
+ * + * @attr name com.companyname.clipifrontc:springBoundary + */ + public static final int OnSwipe_springBoundary=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#springDamping} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:springDamping + */ + public static final int OnSwipe_springDamping=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#springMass} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:springMass + */ + public static final int OnSwipe_springMass=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#springStiffness} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:springStiffness + */ + public static final int OnSwipe_springStiffness=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#springStopThreshold} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:springStopThreshold + */ + public static final int OnSwipe_springStopThreshold=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#touchAnchorId} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:touchAnchorId + */ + public static final int OnSwipe_touchAnchorId=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#touchAnchorSide} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom3
end6
left1
middle4
right2
start5
top0
+ * + * @attr name com.companyname.clipifrontc:touchAnchorSide + */ + public static final int OnSwipe_touchAnchorSide=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#touchRegionId} + * attribute's value can be found in the {@link #OnSwipe} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:touchRegionId + */ + public static final int OnSwipe_touchRegionId=18; + /** + * Attributes that can be used with a PopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor com.companyname.clipifrontc:overlapAnchor}
+ * @see #PopupWindow_android_popupBackground + * @see #PopupWindow_android_popupAnimationStyle + * @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow={ + 0x01010176, 0x010102c9, 0x7f030382 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#overlapAnchor} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor=2; + /** + * Attributes that can be used with a PopupWindowBackgroundState. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.clipifrontc:state_above_anchor}
+ * @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState={ + 0x7f030424 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#state_above_anchor} + * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor=0; + /** + * Attributes that can be used with a PropertySet. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #PropertySet_android_visibility android:visibility}
{@link #PropertySet_android_alpha android:alpha}
{@link #PropertySet_layout_constraintTag com.companyname.clipifrontc:layout_constraintTag}
{@link #PropertySet_motionProgress com.companyname.clipifrontc:motionProgress}
{@link #PropertySet_visibilityMode com.companyname.clipifrontc:visibilityMode}
+ * @see #PropertySet_android_visibility + * @see #PropertySet_android_alpha + * @see #PropertySet_layout_constraintTag + * @see #PropertySet_motionProgress + * @see #PropertySet_visibilityMode + */ + public static final int[] PropertySet={ + 0x010100dc, 0x0101031f, 0x7f0302b6, 0x7f030366, + 0x7f030509 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#visibility} + * attribute's value can be found in the {@link #PropertySet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
gone2
invisible1
visible0
+ * + * @attr name android:visibility + */ + public static final int PropertySet_android_visibility=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #PropertySet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int PropertySet_android_alpha=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout_constraintTag} + * attribute's value can be found in the {@link #PropertySet} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layout_constraintTag + */ + public static final int PropertySet_layout_constraintTag=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionProgress} + * attribute's value can be found in the {@link #PropertySet} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:motionProgress + */ + public static final int PropertySet_motionProgress=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#visibilityMode} + * attribute's value can be found in the {@link #PropertySet} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
ignore1
normal0
+ * + * @attr name com.companyname.clipifrontc:visibilityMode + */ + public static final int PropertySet_visibilityMode=4; + /** + * Attributes that can be used with a RadialViewGroup. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #RadialViewGroup_materialCircleRadius com.companyname.clipifrontc:materialCircleRadius}
+ * @see #RadialViewGroup_materialCircleRadius + */ + public static final int[] RadialViewGroup={ + 0x7f03030e + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#materialCircleRadius} + * attribute's value can be found in the {@link #RadialViewGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:materialCircleRadius + */ + public static final int RadialViewGroup_materialCircleRadius=0; + /** + * Attributes that can be used with a RangeSlider. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RangeSlider_minSeparation com.companyname.clipifrontc:minSeparation}
{@link #RangeSlider_values com.companyname.clipifrontc:values}
+ * @see #RangeSlider_minSeparation + * @see #RangeSlider_values + */ + public static final int[] RangeSlider={ + 0x7f030335, 0x7f030501 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#minSeparation} + * attribute's value can be found in the {@link #RangeSlider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:minSeparation + */ + public static final int RangeSlider_minSeparation=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#values} + * attribute's value can be found in the {@link #RangeSlider} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:values + */ + public static final int RangeSlider_values=1; + /** + * Attributes that can be used with a RecycleListView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons com.companyname.clipifrontc:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle com.companyname.clipifrontc:paddingTopNoTitle}
+ * @see #RecycleListView_paddingBottomNoButtons + * @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView={ + 0x7f030384, 0x7f03038b + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingBottomNoButtons} + * attribute's value can be found in the {@link #RecycleListView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingTopNoTitle} + * attribute's value can be found in the {@link #RecycleListView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle=1; + /** + * Attributes that can be used with a RecyclerView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_android_clipToPadding android:clipToPadding}
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_fastScrollEnabled com.companyname.clipifrontc:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.clipifrontc:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.clipifrontc:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.clipifrontc:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.clipifrontc:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager com.companyname.clipifrontc:layoutManager}
{@link #RecyclerView_reverseLayout com.companyname.clipifrontc:reverseLayout}
{@link #RecyclerView_spanCount com.companyname.clipifrontc:spanCount}
{@link #RecyclerView_stackFromEnd com.companyname.clipifrontc:stackFromEnd}
+ * @see #RecyclerView_android_orientation + * @see #RecyclerView_android_clipToPadding + * @see #RecyclerView_android_descendantFocusability + * @see #RecyclerView_fastScrollEnabled + * @see #RecyclerView_fastScrollHorizontalThumbDrawable + * @see #RecyclerView_fastScrollHorizontalTrackDrawable + * @see #RecyclerView_fastScrollVerticalThumbDrawable + * @see #RecyclerView_fastScrollVerticalTrackDrawable + * @see #RecyclerView_layoutManager + * @see #RecyclerView_reverseLayout + * @see #RecyclerView_spanCount + * @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView={ + 0x010100c4, 0x010100eb, 0x010100f1, 0x7f0301e2, + 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, + 0x7f03028e, 0x7f0303ca, 0x7f030407, 0x7f030419 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int RecyclerView_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#clipToPadding} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:clipToPadding + */ + public static final int RecyclerView_android_clipToPadding=1; + /** + *

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
afterDescendants1
beforeDescendants0
blocksDescendants2
+ * + * @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fastScrollEnabled} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fastScrollHorizontalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fastScrollHorizontalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fastScrollVerticalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fastScrollVerticalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layoutManager} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:layoutManager + */ + public static final int RecyclerView_layoutManager=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#reverseLayout} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:reverseLayout + */ + public static final int RecyclerView_reverseLayout=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#spanCount} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:spanCount + */ + public static final int RecyclerView_spanCount=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#stackFromEnd} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd=11; + /** + * Attributes that can be used with a ScrimInsetsFrameLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.clipifrontc:insetForeground}
+ * @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout={ + 0x7f03025d + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#insetForeground} + * attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground=0; + /** + * Attributes that can be used with a ScrollViewRendererTheme. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrollViewRendererTheme_scrollViewStyle com.companyname.clipifrontc:scrollViewStyle}
+ * @see #ScrollViewRendererTheme_scrollViewStyle + */ + public static final int[] ScrollViewRendererTheme={ + 0x7f0303d5 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#scrollViewStyle} + * attribute's value can be found in the {@link #ScrollViewRendererTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:scrollViewStyle + */ + public static final int ScrollViewRendererTheme_scrollViewStyle=0; + /** + * Attributes that can be used with a ScrollingViewBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.clipifrontc:behavior_overlapTop}
+ * @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout={ + 0x7f030074 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_overlapTop} + * attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0; + /** + * Attributes that can be used with a SearchBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchBar_android_textAppearance android:textAppearance}
{@link #SearchBar_android_text android:text}
{@link #SearchBar_android_hint android:hint}
{@link #SearchBar_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #SearchBar_defaultMarginsEnabled com.companyname.clipifrontc:defaultMarginsEnabled}
{@link #SearchBar_defaultScrollFlagsEnabled com.companyname.clipifrontc:defaultScrollFlagsEnabled}
{@link #SearchBar_elevation com.companyname.clipifrontc:elevation}
{@link #SearchBar_forceDefaultNavigationOnClickListener com.companyname.clipifrontc:forceDefaultNavigationOnClickListener}
{@link #SearchBar_hideNavigationIcon com.companyname.clipifrontc:hideNavigationIcon}
{@link #SearchBar_navigationIconTint com.companyname.clipifrontc:navigationIconTint}
{@link #SearchBar_strokeColor com.companyname.clipifrontc:strokeColor}
{@link #SearchBar_strokeWidth com.companyname.clipifrontc:strokeWidth}
{@link #SearchBar_tintNavigationIcon com.companyname.clipifrontc:tintNavigationIcon}
+ * @see #SearchBar_android_textAppearance + * @see #SearchBar_android_text + * @see #SearchBar_android_hint + * @see #SearchBar_backgroundTint + * @see #SearchBar_defaultMarginsEnabled + * @see #SearchBar_defaultScrollFlagsEnabled + * @see #SearchBar_elevation + * @see #SearchBar_forceDefaultNavigationOnClickListener + * @see #SearchBar_hideNavigationIcon + * @see #SearchBar_navigationIconTint + * @see #SearchBar_strokeColor + * @see #SearchBar_strokeWidth + * @see #SearchBar_tintNavigationIcon + */ + public static final int[] SearchBar={ + 0x01010034, 0x0101014f, 0x01010150, 0x7f030056, + 0x7f03017c, 0x7f03017f, 0x7f0301a9, 0x7f03021b, + 0x7f030238, 0x7f030370, 0x7f030431, 0x7f030432, + 0x7f0304c7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int SearchBar_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int SearchBar_android_text=1; + /** + *

This symbol is the offset where the {@link android.R.attr#hint} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:hint + */ + public static final int SearchBar_android_hint=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int SearchBar_backgroundTint=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultMarginsEnabled} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:defaultMarginsEnabled + */ + public static final int SearchBar_defaultMarginsEnabled=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultScrollFlagsEnabled} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:defaultScrollFlagsEnabled + */ + public static final int SearchBar_defaultScrollFlagsEnabled=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int SearchBar_elevation=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#forceDefaultNavigationOnClickListener} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:forceDefaultNavigationOnClickListener + */ + public static final int SearchBar_forceDefaultNavigationOnClickListener=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideNavigationIcon} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hideNavigationIcon + */ + public static final int SearchBar_hideNavigationIcon=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationIconTint} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:navigationIconTint + */ + public static final int SearchBar_navigationIconTint=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeColor} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:strokeColor + */ + public static final int SearchBar_strokeColor=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeWidth} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:strokeWidth + */ + public static final int SearchBar_strokeWidth=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tintNavigationIcon} + * attribute's value can be found in the {@link #SearchBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:tintNavigationIcon + */ + public static final int SearchBar_tintNavigationIcon=12; + /** + * Attributes that can be used with a SearchView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchView_android_textAppearance android:textAppearance}
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_text android:text}
{@link #SearchView_android_hint android:hint}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_animateMenuItems com.companyname.clipifrontc:animateMenuItems}
{@link #SearchView_animateNavigationIcon com.companyname.clipifrontc:animateNavigationIcon}
{@link #SearchView_autoShowKeyboard com.companyname.clipifrontc:autoShowKeyboard}
{@link #SearchView_backHandlingEnabled com.companyname.clipifrontc:backHandlingEnabled}
{@link #SearchView_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #SearchView_closeIcon com.companyname.clipifrontc:closeIcon}
{@link #SearchView_commitIcon com.companyname.clipifrontc:commitIcon}
{@link #SearchView_defaultQueryHint com.companyname.clipifrontc:defaultQueryHint}
{@link #SearchView_goIcon com.companyname.clipifrontc:goIcon}
{@link #SearchView_headerLayout com.companyname.clipifrontc:headerLayout}
{@link #SearchView_hideNavigationIcon com.companyname.clipifrontc:hideNavigationIcon}
{@link #SearchView_iconifiedByDefault com.companyname.clipifrontc:iconifiedByDefault}
{@link #SearchView_layout com.companyname.clipifrontc:layout}
{@link #SearchView_queryBackground com.companyname.clipifrontc:queryBackground}
{@link #SearchView_queryHint com.companyname.clipifrontc:queryHint}
{@link #SearchView_searchHintIcon com.companyname.clipifrontc:searchHintIcon}
{@link #SearchView_searchIcon com.companyname.clipifrontc:searchIcon}
{@link #SearchView_searchPrefixText com.companyname.clipifrontc:searchPrefixText}
{@link #SearchView_submitBackground com.companyname.clipifrontc:submitBackground}
{@link #SearchView_suggestionRowLayout com.companyname.clipifrontc:suggestionRowLayout}
{@link #SearchView_useDrawerArrowDrawable com.companyname.clipifrontc:useDrawerArrowDrawable}
{@link #SearchView_voiceIcon com.companyname.clipifrontc:voiceIcon}
+ * @see #SearchView_android_textAppearance + * @see #SearchView_android_focusable + * @see #SearchView_android_maxWidth + * @see #SearchView_android_text + * @see #SearchView_android_hint + * @see #SearchView_android_inputType + * @see #SearchView_android_imeOptions + * @see #SearchView_animateMenuItems + * @see #SearchView_animateNavigationIcon + * @see #SearchView_autoShowKeyboard + * @see #SearchView_backHandlingEnabled + * @see #SearchView_backgroundTint + * @see #SearchView_closeIcon + * @see #SearchView_commitIcon + * @see #SearchView_defaultQueryHint + * @see #SearchView_goIcon + * @see #SearchView_headerLayout + * @see #SearchView_hideNavigationIcon + * @see #SearchView_iconifiedByDefault + * @see #SearchView_layout + * @see #SearchView_queryBackground + * @see #SearchView_queryHint + * @see #SearchView_searchHintIcon + * @see #SearchView_searchIcon + * @see #SearchView_searchPrefixText + * @see #SearchView_submitBackground + * @see #SearchView_suggestionRowLayout + * @see #SearchView_useDrawerArrowDrawable + * @see #SearchView_voiceIcon + */ + public static final int[] SearchView={ + 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, + 0x01010150, 0x01010220, 0x01010264, 0x7f030036, + 0x7f030037, 0x7f030045, 0x7f03004c, 0x7f030056, + 0x7f0300e7, 0x7f030138, 0x7f03017e, 0x7f030220, + 0x7f030230, 0x7f030238, 0x7f03024c, 0x7f03028b, + 0x7f0303b7, 0x7f0303b8, 0x7f0303d6, 0x7f0303d7, + 0x7f0303d8, 0x7f030438, 0x7f030441, 0x7f0304ff, + 0x7f03050a + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int SearchView_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int SearchView_android_focusable=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth=2; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int SearchView_android_text=3; + /** + *

This symbol is the offset where the {@link android.R.attr#hint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:hint + */ + public static final int SearchView_android_hint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#inputType} + * attribute's value can be found in the {@link #SearchView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textEnableTextConversionSuggestions100001
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int SearchView_android_inputType=5; + /** + *

This symbol is the offset where the {@link android.R.attr#imeOptions} + * attribute's value can be found in the {@link #SearchView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
+ * + * @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateMenuItems} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:animateMenuItems + */ + public static final int SearchView_animateMenuItems=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animateNavigationIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:animateNavigationIcon + */ + public static final int SearchView_animateNavigationIcon=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoShowKeyboard} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:autoShowKeyboard + */ + public static final int SearchView_autoShowKeyboard=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backHandlingEnabled} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:backHandlingEnabled + */ + public static final int SearchView_backHandlingEnabled=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int SearchView_backgroundTint=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#closeIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:closeIcon + */ + public static final int SearchView_closeIcon=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#commitIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:commitIcon + */ + public static final int SearchView_commitIcon=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultQueryHint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#goIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:goIcon + */ + public static final int SearchView_goIcon=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#headerLayout} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:headerLayout + */ + public static final int SearchView_headerLayout=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hideNavigationIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hideNavigationIcon + */ + public static final int SearchView_hideNavigationIcon=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#iconifiedByDefault} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layout} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:layout + */ + public static final int SearchView_layout=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#queryBackground} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:queryBackground + */ + public static final int SearchView_queryBackground=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#queryHint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:queryHint + */ + public static final int SearchView_queryHint=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#searchHintIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:searchHintIcon + */ + public static final int SearchView_searchHintIcon=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#searchIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:searchIcon + */ + public static final int SearchView_searchIcon=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#searchPrefixText} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:searchPrefixText + */ + public static final int SearchView_searchPrefixText=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#submitBackground} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:submitBackground + */ + public static final int SearchView_submitBackground=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#suggestionRowLayout} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#useDrawerArrowDrawable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:useDrawerArrowDrawable + */ + public static final int SearchView_useDrawerArrowDrawable=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#voiceIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:voiceIcon + */ + public static final int SearchView_voiceIcon=28; + /** + * Attributes that can be used with a ShapeAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ShapeAppearance_cornerFamily com.companyname.clipifrontc:cornerFamily}
{@link #ShapeAppearance_cornerFamilyBottomLeft com.companyname.clipifrontc:cornerFamilyBottomLeft}
{@link #ShapeAppearance_cornerFamilyBottomRight com.companyname.clipifrontc:cornerFamilyBottomRight}
{@link #ShapeAppearance_cornerFamilyTopLeft com.companyname.clipifrontc:cornerFamilyTopLeft}
{@link #ShapeAppearance_cornerFamilyTopRight com.companyname.clipifrontc:cornerFamilyTopRight}
{@link #ShapeAppearance_cornerSize com.companyname.clipifrontc:cornerSize}
{@link #ShapeAppearance_cornerSizeBottomLeft com.companyname.clipifrontc:cornerSizeBottomLeft}
{@link #ShapeAppearance_cornerSizeBottomRight com.companyname.clipifrontc:cornerSizeBottomRight}
{@link #ShapeAppearance_cornerSizeTopLeft com.companyname.clipifrontc:cornerSizeTopLeft}
{@link #ShapeAppearance_cornerSizeTopRight com.companyname.clipifrontc:cornerSizeTopRight}
+ * @see #ShapeAppearance_cornerFamily + * @see #ShapeAppearance_cornerFamilyBottomLeft + * @see #ShapeAppearance_cornerFamilyBottomRight + * @see #ShapeAppearance_cornerFamilyTopLeft + * @see #ShapeAppearance_cornerFamilyTopRight + * @see #ShapeAppearance_cornerSize + * @see #ShapeAppearance_cornerSizeBottomLeft + * @see #ShapeAppearance_cornerSizeBottomRight + * @see #ShapeAppearance_cornerSizeTopLeft + * @see #ShapeAppearance_cornerSizeTopRight + */ + public static final int[] ShapeAppearance={ + 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, + 0x7f030159, 0x7f03015b, 0x7f03015c, 0x7f03015d, + 0x7f03015e, 0x7f03015f + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerFamily} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ * + * @attr name com.companyname.clipifrontc:cornerFamily + */ + public static final int ShapeAppearance_cornerFamily=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerFamilyBottomLeft} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ * + * @attr name com.companyname.clipifrontc:cornerFamilyBottomLeft + */ + public static final int ShapeAppearance_cornerFamilyBottomLeft=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerFamilyBottomRight} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ * + * @attr name com.companyname.clipifrontc:cornerFamilyBottomRight + */ + public static final int ShapeAppearance_cornerFamilyBottomRight=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerFamilyTopLeft} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ * + * @attr name com.companyname.clipifrontc:cornerFamilyTopLeft + */ + public static final int ShapeAppearance_cornerFamilyTopLeft=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerFamilyTopRight} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
cut1
rounded0
+ * + * @attr name com.companyname.clipifrontc:cornerFamilyTopRight + */ + public static final int ShapeAppearance_cornerFamilyTopRight=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerSize} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:cornerSize + */ + public static final int ShapeAppearance_cornerSize=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerSizeBottomLeft} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:cornerSizeBottomLeft + */ + public static final int ShapeAppearance_cornerSizeBottomLeft=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerSizeBottomRight} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:cornerSizeBottomRight + */ + public static final int ShapeAppearance_cornerSizeBottomRight=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerSizeTopLeft} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:cornerSizeTopLeft + */ + public static final int ShapeAppearance_cornerSizeTopLeft=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cornerSizeTopRight} + * attribute's value can be found in the {@link #ShapeAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.companyname.clipifrontc:cornerSizeTopRight + */ + public static final int ShapeAppearance_cornerSizeTopRight=9; + /** + * Attributes that can be used with a ShapeableImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ShapeableImageView_contentPadding com.companyname.clipifrontc:contentPadding}Inner padding between the edges of the Card and children of the CardView.
{@link #ShapeableImageView_contentPaddingBottom com.companyname.clipifrontc:contentPaddingBottom}Inner padding between the bottom edge of the Card and children of the CardView.
{@link #ShapeableImageView_contentPaddingEnd com.companyname.clipifrontc:contentPaddingEnd}
{@link #ShapeableImageView_contentPaddingLeft com.companyname.clipifrontc:contentPaddingLeft}Inner padding between the left edge of the Card and children of the CardView.
{@link #ShapeableImageView_contentPaddingRight com.companyname.clipifrontc:contentPaddingRight}Inner padding between the right edge of the Card and children of the CardView.
{@link #ShapeableImageView_contentPaddingStart com.companyname.clipifrontc:contentPaddingStart}
{@link #ShapeableImageView_contentPaddingTop com.companyname.clipifrontc:contentPaddingTop}Inner padding between the top edge of the Card and children of the CardView.
{@link #ShapeableImageView_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #ShapeableImageView_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #ShapeableImageView_strokeColor com.companyname.clipifrontc:strokeColor}
{@link #ShapeableImageView_strokeWidth com.companyname.clipifrontc:strokeWidth}
+ * @see #ShapeableImageView_contentPadding + * @see #ShapeableImageView_contentPaddingBottom + * @see #ShapeableImageView_contentPaddingEnd + * @see #ShapeableImageView_contentPaddingLeft + * @see #ShapeableImageView_contentPaddingRight + * @see #ShapeableImageView_contentPaddingStart + * @see #ShapeableImageView_contentPaddingTop + * @see #ShapeableImageView_shapeAppearance + * @see #ShapeableImageView_shapeAppearanceOverlay + * @see #ShapeableImageView_strokeColor + * @see #ShapeableImageView_strokeWidth + */ + public static final int[] ShapeableImageView={ + 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, + 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f0303e2, + 0x7f0303ea, 0x7f030431, 0x7f030432 + }; + /** + *

+ * @attr description + * Inner padding between the edges of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPadding + */ + public static final int ShapeableImageView_contentPadding=0; + /** + *

+ * @attr description + * Inner padding between the bottom edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingBottom + */ + public static final int ShapeableImageView_contentPaddingBottom=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentPaddingEnd} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingEnd + */ + public static final int ShapeableImageView_contentPaddingEnd=2; + /** + *

+ * @attr description + * Inner padding between the left edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingLeft + */ + public static final int ShapeableImageView_contentPaddingLeft=3; + /** + *

+ * @attr description + * Inner padding between the right edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingRight + */ + public static final int ShapeableImageView_contentPaddingRight=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentPaddingStart} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingStart + */ + public static final int ShapeableImageView_contentPaddingStart=5; + /** + *

+ * @attr description + * Inner padding between the top edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentPaddingTop + */ + public static final int ShapeableImageView_contentPaddingTop=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int ShapeableImageView_shapeAppearance=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int ShapeableImageView_shapeAppearanceOverlay=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeColor} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:strokeColor + */ + public static final int ShapeableImageView_strokeColor=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#strokeWidth} + * attribute's value can be found in the {@link #ShapeableImageView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:strokeWidth + */ + public static final int ShapeableImageView_strokeWidth=10; + /** + * Attributes that can be used with a SideSheetBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SideSheetBehavior_Layout_android_maxWidth android:maxWidth}
{@link #SideSheetBehavior_Layout_android_maxHeight android:maxHeight}
{@link #SideSheetBehavior_Layout_android_elevation android:elevation}
{@link #SideSheetBehavior_Layout_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #SideSheetBehavior_Layout_behavior_draggable com.companyname.clipifrontc:behavior_draggable}
{@link #SideSheetBehavior_Layout_coplanarSiblingViewId com.companyname.clipifrontc:coplanarSiblingViewId}
{@link #SideSheetBehavior_Layout_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #SideSheetBehavior_Layout_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
+ * @see #SideSheetBehavior_Layout_android_maxWidth + * @see #SideSheetBehavior_Layout_android_maxHeight + * @see #SideSheetBehavior_Layout_android_elevation + * @see #SideSheetBehavior_Layout_backgroundTint + * @see #SideSheetBehavior_Layout_behavior_draggable + * @see #SideSheetBehavior_Layout_coplanarSiblingViewId + * @see #SideSheetBehavior_Layout_shapeAppearance + * @see #SideSheetBehavior_Layout_shapeAppearanceOverlay + */ + public static final int[] SideSheetBehavior_Layout={ + 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, + 0x7f03006f, 0x7f030154, 0x7f0303e2, 0x7f0303ea + }; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SideSheetBehavior_Layout_android_maxWidth=0; + /** + *

This symbol is the offset where the {@link android.R.attr#maxHeight} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxHeight + */ + public static final int SideSheetBehavior_Layout_android_maxHeight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int SideSheetBehavior_Layout_android_elevation=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int SideSheetBehavior_Layout_backgroundTint=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#behavior_draggable} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:behavior_draggable + */ + public static final int SideSheetBehavior_Layout_behavior_draggable=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#coplanarSiblingViewId} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:coplanarSiblingViewId + */ + public static final int SideSheetBehavior_Layout_coplanarSiblingViewId=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int SideSheetBehavior_Layout_shapeAppearance=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #SideSheetBehavior_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int SideSheetBehavior_Layout_shapeAppearanceOverlay=7; + /** + * Attributes that can be used with a Slider. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Slider_android_enabled android:enabled}
{@link #Slider_android_value android:value}
{@link #Slider_android_stepSize android:stepSize}
{@link #Slider_android_valueFrom android:valueFrom}
{@link #Slider_android_valueTo android:valueTo}
{@link #Slider_haloColor com.companyname.clipifrontc:haloColor}
{@link #Slider_haloRadius com.companyname.clipifrontc:haloRadius}
{@link #Slider_labelBehavior com.companyname.clipifrontc:labelBehavior}
{@link #Slider_labelStyle com.companyname.clipifrontc:labelStyle}
{@link #Slider_minTouchTargetSize com.companyname.clipifrontc:minTouchTargetSize}
{@link #Slider_thumbColor com.companyname.clipifrontc:thumbColor}
{@link #Slider_thumbElevation com.companyname.clipifrontc:thumbElevation}
{@link #Slider_thumbHeight com.companyname.clipifrontc:thumbHeight}
{@link #Slider_thumbRadius com.companyname.clipifrontc:thumbRadius}
{@link #Slider_thumbStrokeColor com.companyname.clipifrontc:thumbStrokeColor}
{@link #Slider_thumbStrokeWidth com.companyname.clipifrontc:thumbStrokeWidth}
{@link #Slider_thumbTrackGapSize com.companyname.clipifrontc:thumbTrackGapSize}
{@link #Slider_thumbWidth com.companyname.clipifrontc:thumbWidth}
{@link #Slider_tickColor com.companyname.clipifrontc:tickColor}
{@link #Slider_tickColorActive com.companyname.clipifrontc:tickColorActive}
{@link #Slider_tickColorInactive com.companyname.clipifrontc:tickColorInactive}
{@link #Slider_tickRadiusActive com.companyname.clipifrontc:tickRadiusActive}
{@link #Slider_tickRadiusInactive com.companyname.clipifrontc:tickRadiusInactive}
{@link #Slider_tickVisible com.companyname.clipifrontc:tickVisible}
{@link #Slider_trackColor com.companyname.clipifrontc:trackColor}
{@link #Slider_trackColorActive com.companyname.clipifrontc:trackColorActive}
{@link #Slider_trackColorInactive com.companyname.clipifrontc:trackColorInactive}
{@link #Slider_trackHeight com.companyname.clipifrontc:trackHeight}
{@link #Slider_trackInsideCornerSize com.companyname.clipifrontc:trackInsideCornerSize}
{@link #Slider_trackStopIndicatorSize com.companyname.clipifrontc:trackStopIndicatorSize}
+ * @see #Slider_android_enabled + * @see #Slider_android_value + * @see #Slider_android_stepSize + * @see #Slider_android_valueFrom + * @see #Slider_android_valueTo + * @see #Slider_haloColor + * @see #Slider_haloRadius + * @see #Slider_labelBehavior + * @see #Slider_labelStyle + * @see #Slider_minTouchTargetSize + * @see #Slider_thumbColor + * @see #Slider_thumbElevation + * @see #Slider_thumbHeight + * @see #Slider_thumbRadius + * @see #Slider_thumbStrokeColor + * @see #Slider_thumbStrokeWidth + * @see #Slider_thumbTrackGapSize + * @see #Slider_thumbWidth + * @see #Slider_tickColor + * @see #Slider_tickColorActive + * @see #Slider_tickColorInactive + * @see #Slider_tickRadiusActive + * @see #Slider_tickRadiusInactive + * @see #Slider_tickVisible + * @see #Slider_trackColor + * @see #Slider_trackColorActive + * @see #Slider_trackColorInactive + * @see #Slider_trackHeight + * @see #Slider_trackInsideCornerSize + * @see #Slider_trackStopIndicatorSize + */ + public static final int[] Slider={ + 0x0101000e, 0x01010024, 0x01010146, 0x010102de, + 0x010102df, 0x7f03022e, 0x7f03022f, 0x7f030284, + 0x7f030285, 0x7f030336, 0x7f0304ad, 0x7f0304ae, + 0x7f0304af, 0x7f0304b4, 0x7f0304b5, 0x7f0304b6, + 0x7f0304ba, 0x7f0304bb, 0x7f0304bc, 0x7f0304bd, + 0x7f0304be, 0x7f0304c2, 0x7f0304c3, 0x7f0304c4, + 0x7f0304e5, 0x7f0304e6, 0x7f0304e7, 0x7f0304ec, + 0x7f0304ed, 0x7f0304ee + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int Slider_android_enabled=0; + /** + *

This symbol is the offset where the {@link android.R.attr#value} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + * + * @attr name android:value + */ + public static final int Slider_android_value=1; + /** + *

This symbol is the offset where the {@link android.R.attr#stepSize} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:stepSize + */ + public static final int Slider_android_stepSize=2; + /** + *

This symbol is the offset where the {@link android.R.attr#valueFrom} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:valueFrom + */ + public static final int Slider_android_valueFrom=3; + /** + *

This symbol is the offset where the {@link android.R.attr#valueTo} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:valueTo + */ + public static final int Slider_android_valueTo=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#haloColor} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:haloColor + */ + public static final int Slider_haloColor=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#haloRadius} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:haloRadius + */ + public static final int Slider_haloRadius=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#labelBehavior} + * attribute's value can be found in the {@link #Slider} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
floating0Mode that draws the label floating above the bounds of this view.
gone2Mode that prevents the label from being drawn.
visible3Mode that always draws the label.
withinBounds1Mode that draws the label within the bounds of the view.
+ * + * @attr name com.companyname.clipifrontc:labelBehavior + */ + public static final int Slider_labelBehavior=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#labelStyle} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:labelStyle + */ + public static final int Slider_labelStyle=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#minTouchTargetSize} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:minTouchTargetSize + */ + public static final int Slider_minTouchTargetSize=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbColor} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:thumbColor + */ + public static final int Slider_thumbColor=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbElevation} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbElevation + */ + public static final int Slider_thumbElevation=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbHeight} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbHeight + */ + public static final int Slider_thumbHeight=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbRadius} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbRadius + */ + public static final int Slider_thumbRadius=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbStrokeColor} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:thumbStrokeColor + */ + public static final int Slider_thumbStrokeColor=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbStrokeWidth} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbStrokeWidth + */ + public static final int Slider_thumbStrokeWidth=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbTrackGapSize} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbTrackGapSize + */ + public static final int Slider_thumbTrackGapSize=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbWidth} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbWidth + */ + public static final int Slider_thumbWidth=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickColor} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tickColor + */ + public static final int Slider_tickColor=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickColorActive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tickColorActive + */ + public static final int Slider_tickColorActive=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickColorInactive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tickColorInactive + */ + public static final int Slider_tickColorInactive=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickRadiusActive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tickRadiusActive + */ + public static final int Slider_tickRadiusActive=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickRadiusInactive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tickRadiusInactive + */ + public static final int Slider_tickRadiusInactive=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tickVisible} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:tickVisible + */ + public static final int Slider_tickVisible=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackColor} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackColor + */ + public static final int Slider_trackColor=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackColorActive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackColorActive + */ + public static final int Slider_trackColorActive=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackColorInactive} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackColorInactive + */ + public static final int Slider_trackColorInactive=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackHeight} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackHeight + */ + public static final int Slider_trackHeight=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackInsideCornerSize} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackInsideCornerSize + */ + public static final int Slider_trackInsideCornerSize=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackStopIndicatorSize} + * attribute's value can be found in the {@link #Slider} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:trackStopIndicatorSize + */ + public static final int Slider_trackStopIndicatorSize=29; + /** + * Attributes that can be used with a Snackbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #Snackbar_snackbarButtonStyle com.companyname.clipifrontc:snackbarButtonStyle}
{@link #Snackbar_snackbarStyle com.companyname.clipifrontc:snackbarStyle}
{@link #Snackbar_snackbarTextViewStyle com.companyname.clipifrontc:snackbarTextViewStyle}
+ * @see #Snackbar_snackbarButtonStyle + * @see #Snackbar_snackbarStyle + * @see #Snackbar_snackbarTextViewStyle + */ + public static final int[] Snackbar={ + 0x7f030404, 0x7f030405, 0x7f030406 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#snackbarButtonStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:snackbarButtonStyle + */ + public static final int Snackbar_snackbarButtonStyle=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#snackbarStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:snackbarStyle + */ + public static final int Snackbar_snackbarStyle=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#snackbarTextViewStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:snackbarTextViewStyle + */ + public static final int Snackbar_snackbarTextViewStyle=2; + /** + * Attributes that can be used with a SnackbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_actionTextColorAlpha com.companyname.clipifrontc:actionTextColorAlpha}
{@link #SnackbarLayout_animationMode com.companyname.clipifrontc:animationMode}
{@link #SnackbarLayout_backgroundOverlayColorAlpha com.companyname.clipifrontc:backgroundOverlayColorAlpha}
{@link #SnackbarLayout_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #SnackbarLayout_backgroundTintMode com.companyname.clipifrontc:backgroundTintMode}
{@link #SnackbarLayout_elevation com.companyname.clipifrontc:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.companyname.clipifrontc:maxActionInlineWidth}
{@link #SnackbarLayout_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #SnackbarLayout_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
+ * @see #SnackbarLayout_android_maxWidth + * @see #SnackbarLayout_actionTextColorAlpha + * @see #SnackbarLayout_animationMode + * @see #SnackbarLayout_backgroundOverlayColorAlpha + * @see #SnackbarLayout_backgroundTint + * @see #SnackbarLayout_backgroundTintMode + * @see #SnackbarLayout_elevation + * @see #SnackbarLayout_maxActionInlineWidth + * @see #SnackbarLayout_shapeAppearance + * @see #SnackbarLayout_shapeAppearanceOverlay + */ + public static final int[] SnackbarLayout={ + 0x0101011f, 0x7f030025, 0x7f03003a, 0x7f030053, + 0x7f030056, 0x7f030057, 0x7f0301a9, 0x7f030324, + 0x7f0303e2, 0x7f0303ea + }; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#actionTextColorAlpha} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:actionTextColorAlpha + */ + public static final int SnackbarLayout_actionTextColorAlpha=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animationMode} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fade1Mode that corresponds to the fade in and out animations.
slide0Mode that corresponds to the slide in and out animations.
+ * + * @attr name com.companyname.clipifrontc:animationMode + */ + public static final int SnackbarLayout_animationMode=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundOverlayColorAlpha} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:backgroundOverlayColorAlpha + */ + public static final int SnackbarLayout_backgroundOverlayColorAlpha=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int SnackbarLayout_backgroundTint=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTintMode} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:backgroundTintMode + */ + public static final int SnackbarLayout_backgroundTintMode=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#elevation} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:elevation + */ + public static final int SnackbarLayout_elevation=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxActionInlineWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int SnackbarLayout_shapeAppearance=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int SnackbarLayout_shapeAppearanceOverlay=9; + /** + * Attributes that can be used with a Spinner. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme com.companyname.clipifrontc:popupTheme}
+ * @see #Spinner_android_entries + * @see #Spinner_android_popupBackground + * @see #Spinner_android_prompt + * @see #Spinner_android_dropDownWidth + * @see #Spinner_popupTheme + */ + public static final int[] Spinner={ + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f0303aa + }; + /** + *

This symbol is the offset where the {@link android.R.attr#entries} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:entries + */ + public static final int Spinner_android_entries=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground=1; + /** + *

This symbol is the offset where the {@link android.R.attr#prompt} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:prompt + */ + public static final int Spinner_android_prompt=2; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popupTheme} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popupTheme + */ + public static final int Spinner_popupTheme=4; + /** + * Attributes that can be used with a SplitPairFilter. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #SplitPairFilter_primaryActivityName com.companyname.clipifrontc:primaryActivityName}
{@link #SplitPairFilter_secondaryActivityAction com.companyname.clipifrontc:secondaryActivityAction}
{@link #SplitPairFilter_secondaryActivityName com.companyname.clipifrontc:secondaryActivityName}
+ * @see #SplitPairFilter_primaryActivityName + * @see #SplitPairFilter_secondaryActivityAction + * @see #SplitPairFilter_secondaryActivityName + */ + public static final int[] SplitPairFilter={ + 0x7f0303b1, 0x7f0303da, 0x7f0303db + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#primaryActivityName} + * attribute's value can be found in the {@link #SplitPairFilter} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:primaryActivityName + */ + public static final int SplitPairFilter_primaryActivityName=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#secondaryActivityAction} + * attribute's value can be found in the {@link #SplitPairFilter} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:secondaryActivityAction + */ + public static final int SplitPairFilter_secondaryActivityAction=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#secondaryActivityName} + * attribute's value can be found in the {@link #SplitPairFilter} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:secondaryActivityName + */ + public static final int SplitPairFilter_secondaryActivityName=2; + /** + * Attributes that can be used with a SplitPairRule. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SplitPairRule_animationBackgroundColor com.companyname.clipifrontc:animationBackgroundColor}
{@link #SplitPairRule_clearTop com.companyname.clipifrontc:clearTop}
{@link #SplitPairRule_finishPrimaryWithSecondary com.companyname.clipifrontc:finishPrimaryWithSecondary}
{@link #SplitPairRule_finishSecondaryWithPrimary com.companyname.clipifrontc:finishSecondaryWithPrimary}
{@link #SplitPairRule_splitLayoutDirection com.companyname.clipifrontc:splitLayoutDirection}
{@link #SplitPairRule_splitMaxAspectRatioInLandscape com.companyname.clipifrontc:splitMaxAspectRatioInLandscape}
{@link #SplitPairRule_splitMaxAspectRatioInPortrait com.companyname.clipifrontc:splitMaxAspectRatioInPortrait}
{@link #SplitPairRule_splitMinHeightDp com.companyname.clipifrontc:splitMinHeightDp}
{@link #SplitPairRule_splitMinSmallestWidthDp com.companyname.clipifrontc:splitMinSmallestWidthDp}
{@link #SplitPairRule_splitMinWidthDp com.companyname.clipifrontc:splitMinWidthDp}
{@link #SplitPairRule_splitRatio com.companyname.clipifrontc:splitRatio}
{@link #SplitPairRule_tag com.companyname.clipifrontc:tag}
+ * @see #SplitPairRule_animationBackgroundColor + * @see #SplitPairRule_clearTop + * @see #SplitPairRule_finishPrimaryWithSecondary + * @see #SplitPairRule_finishSecondaryWithPrimary + * @see #SplitPairRule_splitLayoutDirection + * @see #SplitPairRule_splitMaxAspectRatioInLandscape + * @see #SplitPairRule_splitMaxAspectRatioInPortrait + * @see #SplitPairRule_splitMinHeightDp + * @see #SplitPairRule_splitMinSmallestWidthDp + * @see #SplitPairRule_splitMinWidthDp + * @see #SplitPairRule_splitRatio + * @see #SplitPairRule_tag + */ + public static final int[] SplitPairRule={ + 0x7f030039, 0x7f0300e0, 0x7f0301e8, 0x7f0301e9, + 0x7f03040b, 0x7f03040c, 0x7f03040d, 0x7f03040e, + 0x7f03040f, 0x7f030410, 0x7f030411, 0x7f030464 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animationBackgroundColor} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:animationBackgroundColor + */ + public static final int SplitPairRule_animationBackgroundColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clearTop} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:clearTop + */ + public static final int SplitPairRule_clearTop=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#finishPrimaryWithSecondary} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
never0
+ * + * @attr name com.companyname.clipifrontc:finishPrimaryWithSecondary + */ + public static final int SplitPairRule_finishPrimaryWithSecondary=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#finishSecondaryWithPrimary} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
never0
+ * + * @attr name com.companyname.clipifrontc:finishSecondaryWithPrimary + */ + public static final int SplitPairRule_finishSecondaryWithPrimary=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitLayoutDirection} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottomToTop4
locale0
ltr1
rtl2
topToBottom3
+ * + * @attr name com.companyname.clipifrontc:splitLayoutDirection + */ + public static final int SplitPairRule_splitLayoutDirection=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMaxAspectRatioInLandscape} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ * + * @attr name com.companyname.clipifrontc:splitMaxAspectRatioInLandscape + */ + public static final int SplitPairRule_splitMaxAspectRatioInLandscape=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMaxAspectRatioInPortrait} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ * + * @attr name com.companyname.clipifrontc:splitMaxAspectRatioInPortrait + */ + public static final int SplitPairRule_splitMaxAspectRatioInPortrait=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinHeightDp} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinHeightDp + */ + public static final int SplitPairRule_splitMinHeightDp=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinSmallestWidthDp} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinSmallestWidthDp + */ + public static final int SplitPairRule_splitMinSmallestWidthDp=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinWidthDp} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinWidthDp + */ + public static final int SplitPairRule_splitMinWidthDp=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitRatio} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:splitRatio + */ + public static final int SplitPairRule_splitRatio=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tag} + * attribute's value can be found in the {@link #SplitPairRule} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:tag + */ + public static final int SplitPairRule_tag=11; + /** + * Attributes that can be used with a SplitPlaceholderRule. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SplitPlaceholderRule_animationBackgroundColor com.companyname.clipifrontc:animationBackgroundColor}
{@link #SplitPlaceholderRule_finishPrimaryWithPlaceholder com.companyname.clipifrontc:finishPrimaryWithPlaceholder}
{@link #SplitPlaceholderRule_placeholderActivityName com.companyname.clipifrontc:placeholderActivityName}
{@link #SplitPlaceholderRule_splitLayoutDirection com.companyname.clipifrontc:splitLayoutDirection}
{@link #SplitPlaceholderRule_splitMaxAspectRatioInLandscape com.companyname.clipifrontc:splitMaxAspectRatioInLandscape}
{@link #SplitPlaceholderRule_splitMaxAspectRatioInPortrait com.companyname.clipifrontc:splitMaxAspectRatioInPortrait}
{@link #SplitPlaceholderRule_splitMinHeightDp com.companyname.clipifrontc:splitMinHeightDp}
{@link #SplitPlaceholderRule_splitMinSmallestWidthDp com.companyname.clipifrontc:splitMinSmallestWidthDp}
{@link #SplitPlaceholderRule_splitMinWidthDp com.companyname.clipifrontc:splitMinWidthDp}
{@link #SplitPlaceholderRule_splitRatio com.companyname.clipifrontc:splitRatio}
{@link #SplitPlaceholderRule_stickyPlaceholder com.companyname.clipifrontc:stickyPlaceholder}
{@link #SplitPlaceholderRule_tag com.companyname.clipifrontc:tag}
+ * @see #SplitPlaceholderRule_animationBackgroundColor + * @see #SplitPlaceholderRule_finishPrimaryWithPlaceholder + * @see #SplitPlaceholderRule_placeholderActivityName + * @see #SplitPlaceholderRule_splitLayoutDirection + * @see #SplitPlaceholderRule_splitMaxAspectRatioInLandscape + * @see #SplitPlaceholderRule_splitMaxAspectRatioInPortrait + * @see #SplitPlaceholderRule_splitMinHeightDp + * @see #SplitPlaceholderRule_splitMinSmallestWidthDp + * @see #SplitPlaceholderRule_splitMinWidthDp + * @see #SplitPlaceholderRule_splitRatio + * @see #SplitPlaceholderRule_stickyPlaceholder + * @see #SplitPlaceholderRule_tag + */ + public static final int[] SplitPlaceholderRule={ + 0x7f030039, 0x7f0301e7, 0x7f03039d, 0x7f03040b, + 0x7f03040c, 0x7f03040d, 0x7f03040e, 0x7f03040f, + 0x7f030410, 0x7f030411, 0x7f030430, 0x7f030464 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#animationBackgroundColor} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:animationBackgroundColor + */ + public static final int SplitPlaceholderRule_animationBackgroundColor=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#finishPrimaryWithPlaceholder} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
adjacent2
always1
+ * + * @attr name com.companyname.clipifrontc:finishPrimaryWithPlaceholder + */ + public static final int SplitPlaceholderRule_finishPrimaryWithPlaceholder=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#placeholderActivityName} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:placeholderActivityName + */ + public static final int SplitPlaceholderRule_placeholderActivityName=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitLayoutDirection} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottomToTop4
locale0
ltr1
rtl2
topToBottom3
+ * + * @attr name com.companyname.clipifrontc:splitLayoutDirection + */ + public static final int SplitPlaceholderRule_splitLayoutDirection=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMaxAspectRatioInLandscape} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ * + * @attr name com.companyname.clipifrontc:splitMaxAspectRatioInLandscape + */ + public static final int SplitPlaceholderRule_splitMaxAspectRatioInLandscape=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMaxAspectRatioInPortrait} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a floating point value, such as "1.2". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
alwaysAllow0
alwaysDisallowffffffff
+ * + * @attr name com.companyname.clipifrontc:splitMaxAspectRatioInPortrait + */ + public static final int SplitPlaceholderRule_splitMaxAspectRatioInPortrait=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinHeightDp} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinHeightDp + */ + public static final int SplitPlaceholderRule_splitMinHeightDp=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinSmallestWidthDp} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinSmallestWidthDp + */ + public static final int SplitPlaceholderRule_splitMinSmallestWidthDp=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitMinWidthDp} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:splitMinWidthDp + */ + public static final int SplitPlaceholderRule_splitMinWidthDp=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitRatio} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:splitRatio + */ + public static final int SplitPlaceholderRule_splitRatio=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#stickyPlaceholder} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:stickyPlaceholder + */ + public static final int SplitPlaceholderRule_stickyPlaceholder=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tag} + * attribute's value can be found in the {@link #SplitPlaceholderRule} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:tag + */ + public static final int SplitPlaceholderRule_tag=11; + /** + * Attributes that can be used with a State. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #State_android_id android:id}
{@link #State_constraints com.companyname.clipifrontc:constraints}
+ * @see #State_android_id + * @see #State_constraints + */ + public static final int[] State={ + 0x010100d0, 0x7f030140 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #State} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int State_android_id=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraints} + * attribute's value can be found in the {@link #State} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraints + */ + public static final int State_constraints=1; + /** + * Attributes that can be used with a StateListDrawable. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawable_android_dither android:dither}
{@link #StateListDrawable_android_visible android:visible}
{@link #StateListDrawable_android_variablePadding android:variablePadding}
{@link #StateListDrawable_android_constantSize android:constantSize}
{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}
{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}
+ * @see #StateListDrawable_android_dither + * @see #StateListDrawable_android_visible + * @see #StateListDrawable_android_variablePadding + * @see #StateListDrawable_android_constantSize + * @see #StateListDrawable_android_enterFadeDuration + * @see #StateListDrawable_android_exitFadeDuration + */ + public static final int[] StateListDrawable={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

This symbol is the offset where the {@link android.R.attr#dither} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int StateListDrawable_android_dither=0; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int StateListDrawable_android_visible=1; + /** + *

This symbol is the offset where the {@link android.R.attr#variablePadding} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int StateListDrawable_android_variablePadding=2; + /** + *

This symbol is the offset where the {@link android.R.attr#constantSize} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int StateListDrawable_android_constantSize=3; + /** + *

This symbol is the offset where the {@link android.R.attr#enterFadeDuration} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int StateListDrawable_android_enterFadeDuration=4; + /** + *

This symbol is the offset where the {@link android.R.attr#exitFadeDuration} + * attribute's value can be found in the {@link #StateListDrawable} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int StateListDrawable_android_exitFadeDuration=5; + /** + * Attributes that can be used with a StateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawableItem_android_drawable android:drawable}
+ * @see #StateListDrawableItem_android_drawable + */ + public static final int[] StateListDrawableItem={ + 0x01010199 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#drawable} + * attribute's value can be found in the {@link #StateListDrawableItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int StateListDrawableItem_android_drawable=0; + /** + * Attributes that can be used with a StateSet. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #StateSet_defaultState com.companyname.clipifrontc:defaultState}
+ * @see #StateSet_defaultState + */ + public static final int[] StateSet={ + 0x7f030180 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#defaultState} + * attribute's value can be found in the {@link #StateSet} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:defaultState + */ + public static final int StateSet_defaultState=0; + /** + * Attributes that can be used with a SwipeRefreshLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor com.companyname.clipifrontc:swipeRefreshLayoutProgressSpinnerBackgroundColor}Background color for SwipeRefreshLayout progress spinner.
+ * @see #SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor + */ + public static final int[] SwipeRefreshLayout={ + 0x7f030442 + }; + /** + *

+ * @attr description + * Background color for SwipeRefreshLayout progress spinner. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:swipeRefreshLayoutProgressSpinnerBackgroundColor + */ + public static final int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor=0; + /** + * Attributes that can be used with a SwitchCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.companyname.clipifrontc:showText}
{@link #SwitchCompat_splitTrack com.companyname.clipifrontc:splitTrack}
{@link #SwitchCompat_switchMinWidth com.companyname.clipifrontc:switchMinWidth}
{@link #SwitchCompat_switchPadding com.companyname.clipifrontc:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.companyname.clipifrontc:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.companyname.clipifrontc:thumbTextPadding}
{@link #SwitchCompat_thumbTint com.companyname.clipifrontc:thumbTint}
{@link #SwitchCompat_thumbTintMode com.companyname.clipifrontc:thumbTintMode}
{@link #SwitchCompat_track com.companyname.clipifrontc:track}
{@link #SwitchCompat_trackTint com.companyname.clipifrontc:trackTint}
{@link #SwitchCompat_trackTintMode com.companyname.clipifrontc:trackTintMode}
+ * @see #SwitchCompat_android_textOn + * @see #SwitchCompat_android_textOff + * @see #SwitchCompat_android_thumb + * @see #SwitchCompat_showText + * @see #SwitchCompat_splitTrack + * @see #SwitchCompat_switchMinWidth + * @see #SwitchCompat_switchPadding + * @see #SwitchCompat_switchTextAppearance + * @see #SwitchCompat_thumbTextPadding + * @see #SwitchCompat_thumbTint + * @see #SwitchCompat_thumbTintMode + * @see #SwitchCompat_track + * @see #SwitchCompat_trackTint + * @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat={ + 0x01010124, 0x01010125, 0x01010142, 0x7f0303f6, + 0x7f030412, 0x7f030443, 0x7f030444, 0x7f030446, + 0x7f0304b7, 0x7f0304b8, 0x7f0304b9, 0x7f0304e4, + 0x7f0304f0, 0x7f0304f1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textOn} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn=0; + /** + *

This symbol is the offset where the {@link android.R.attr#textOff} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff=1; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showText} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:showText + */ + public static final int SwitchCompat_showText=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#splitTrack} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:splitTrack + */ + public static final int SwitchCompat_splitTrack=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#switchMinWidth} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#switchPadding} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:switchPadding + */ + public static final int SwitchCompat_switchPadding=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#switchTextAppearance} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbTextPadding} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbTint} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:thumbTint + */ + public static final int SwitchCompat_thumbTint=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#thumbTintMode} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#track} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:track + */ + public static final int SwitchCompat_track=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackTint} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:trackTint + */ + public static final int SwitchCompat_trackTint=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#trackTintMode} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:trackTintMode + */ + public static final int SwitchCompat_trackTintMode=13; + /** + * Attributes that can be used with a SwitchMaterial. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #SwitchMaterial_useMaterialThemeColors com.companyname.clipifrontc:useMaterialThemeColors}
+ * @see #SwitchMaterial_useMaterialThemeColors + */ + public static final int[] SwitchMaterial={ + 0x7f030500 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#useMaterialThemeColors} + * attribute's value can be found in the {@link #SwitchMaterial} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:useMaterialThemeColors + */ + public static final int SwitchMaterial_useMaterialThemeColors=0; + /** + * Attributes that can be used with a TabItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ * @see #TabItem_android_icon + * @see #TabItem_android_layout + * @see #TabItem_android_text + */ + public static final int[] TabItem={ + 0x01010002, 0x010100f2, 0x0101014f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#icon} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int TabItem_android_icon=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int TabItem_android_layout=1; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int TabItem_android_text=2; + /** + * Attributes that can be used with a TabLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabLayout_tabBackground com.companyname.clipifrontc:tabBackground}
{@link #TabLayout_tabContentStart com.companyname.clipifrontc:tabContentStart}
{@link #TabLayout_tabGravity com.companyname.clipifrontc:tabGravity}
{@link #TabLayout_tabIconTint com.companyname.clipifrontc:tabIconTint}
{@link #TabLayout_tabIconTintMode com.companyname.clipifrontc:tabIconTintMode}
{@link #TabLayout_tabIndicator com.companyname.clipifrontc:tabIndicator}
{@link #TabLayout_tabIndicatorAnimationDuration com.companyname.clipifrontc:tabIndicatorAnimationDuration}
{@link #TabLayout_tabIndicatorAnimationMode com.companyname.clipifrontc:tabIndicatorAnimationMode}
{@link #TabLayout_tabIndicatorColor com.companyname.clipifrontc:tabIndicatorColor}
{@link #TabLayout_tabIndicatorFullWidth com.companyname.clipifrontc:tabIndicatorFullWidth}
{@link #TabLayout_tabIndicatorGravity com.companyname.clipifrontc:tabIndicatorGravity}
{@link #TabLayout_tabIndicatorHeight com.companyname.clipifrontc:tabIndicatorHeight}
{@link #TabLayout_tabInlineLabel com.companyname.clipifrontc:tabInlineLabel}
{@link #TabLayout_tabMaxWidth com.companyname.clipifrontc:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.companyname.clipifrontc:tabMinWidth}
{@link #TabLayout_tabMode com.companyname.clipifrontc:tabMode}
{@link #TabLayout_tabPadding com.companyname.clipifrontc:tabPadding}
{@link #TabLayout_tabPaddingBottom com.companyname.clipifrontc:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.companyname.clipifrontc:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.companyname.clipifrontc:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.companyname.clipifrontc:tabPaddingTop}
{@link #TabLayout_tabRippleColor com.companyname.clipifrontc:tabRippleColor}
{@link #TabLayout_tabSelectedTextAppearance com.companyname.clipifrontc:tabSelectedTextAppearance}
{@link #TabLayout_tabSelectedTextColor com.companyname.clipifrontc:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.companyname.clipifrontc:tabTextAppearance}
{@link #TabLayout_tabTextColor com.companyname.clipifrontc:tabTextColor}
{@link #TabLayout_tabUnboundedRipple com.companyname.clipifrontc:tabUnboundedRipple}
+ * @see #TabLayout_tabBackground + * @see #TabLayout_tabContentStart + * @see #TabLayout_tabGravity + * @see #TabLayout_tabIconTint + * @see #TabLayout_tabIconTintMode + * @see #TabLayout_tabIndicator + * @see #TabLayout_tabIndicatorAnimationDuration + * @see #TabLayout_tabIndicatorAnimationMode + * @see #TabLayout_tabIndicatorColor + * @see #TabLayout_tabIndicatorFullWidth + * @see #TabLayout_tabIndicatorGravity + * @see #TabLayout_tabIndicatorHeight + * @see #TabLayout_tabInlineLabel + * @see #TabLayout_tabMaxWidth + * @see #TabLayout_tabMinWidth + * @see #TabLayout_tabMode + * @see #TabLayout_tabPadding + * @see #TabLayout_tabPaddingBottom + * @see #TabLayout_tabPaddingEnd + * @see #TabLayout_tabPaddingStart + * @see #TabLayout_tabPaddingTop + * @see #TabLayout_tabRippleColor + * @see #TabLayout_tabSelectedTextAppearance + * @see #TabLayout_tabSelectedTextColor + * @see #TabLayout_tabTextAppearance + * @see #TabLayout_tabTextColor + * @see #TabLayout_tabUnboundedRipple + */ + public static final int[] TabLayout={ + 0x7f030447, 0x7f030448, 0x7f030449, 0x7f03044a, + 0x7f03044b, 0x7f03044c, 0x7f03044d, 0x7f03044e, + 0x7f03044f, 0x7f030450, 0x7f030451, 0x7f030452, + 0x7f030453, 0x7f030454, 0x7f030455, 0x7f030456, + 0x7f030457, 0x7f030458, 0x7f030459, 0x7f03045a, + 0x7f03045b, 0x7f03045c, 0x7f03045e, 0x7f03045f, + 0x7f030461, 0x7f030462, 0x7f030463 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabBackground} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tabBackground + */ + public static final int TabLayout_tabBackground=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabContentStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabContentStart + */ + public static final int TabLayout_tabContentStart=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
start2
+ * + * @attr name com.companyname.clipifrontc:tabGravity + */ + public static final int TabLayout_tabGravity=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIconTint} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tabIconTint + */ + public static final int TabLayout_tabIconTint=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIconTintMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.companyname.clipifrontc:tabIconTintMode + */ + public static final int TabLayout_tabIconTintMode=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicator} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tabIndicator + */ + public static final int TabLayout_tabIndicator=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorAnimationDuration} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:tabIndicatorAnimationDuration + */ + public static final int TabLayout_tabIndicatorAnimationDuration=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorAnimationMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
elastic1Animate the selection indicator's left and right bounds out of step + * with each other, decelerating the front and accelerating the back. + * This causes the indicator to look like it stretches between destinations + * an then shrinks back down to fit the size of it's target tab.
fade2Animate the selection indicator by sequentially fading it out from + * its current destination and then fading it in at its new + * destination.
linear0Animate the selection indicator's left and right bounds in step with + * each other.
+ * + * @attr name com.companyname.clipifrontc:tabIndicatorAnimationMode + */ + public static final int TabLayout_tabIndicatorAnimationMode=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorFullWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:tabIndicatorFullWidth + */ + public static final int TabLayout_tabIndicatorFullWidth=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0Align indicator to the bottom of this tab layout.
center1Align indicator along the center of this tab layout.
stretch3Stretch indicator to match the height and width of a tab item in this layout.
top2Align indicator to the top of this tab layout.
+ * + * @attr name com.companyname.clipifrontc:tabIndicatorGravity + */ + public static final int TabLayout_tabIndicatorGravity=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabIndicatorHeight} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabInlineLabel} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:tabInlineLabel + */ + public static final int TabLayout_tabInlineLabel=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabMaxWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabMinWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabMinWidth + */ + public static final int TabLayout_tabMinWidth=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
auto2
fixed1
scrollable0
+ * + * @attr name com.companyname.clipifrontc:tabMode + */ + public static final int TabLayout_tabMode=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabPadding} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabPadding + */ + public static final int TabLayout_tabPadding=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabPaddingBottom} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabPaddingEnd} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabPaddingStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabPaddingTop} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabRippleColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tabRippleColor + */ + public static final int TabLayout_tabRippleColor=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabSelectedTextAppearance} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tabSelectedTextAppearance + */ + public static final int TabLayout_tabSelectedTextAppearance=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabSelectedTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabTextAppearance} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:tabTextColor + */ + public static final int TabLayout_tabTextColor=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#tabUnboundedRipple} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:tabUnboundedRipple + */ + public static final int TabLayout_tabUnboundedRipple=26; + /** + * Attributes that can be used with a TextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_textFontWeight android:textFontWeight}
{@link #TextAppearance_fontFamily com.companyname.clipifrontc:fontFamily}
{@link #TextAppearance_fontVariationSettings com.companyname.clipifrontc:fontVariationSettings}
{@link #TextAppearance_textAllCaps com.companyname.clipifrontc:textAllCaps}
{@link #TextAppearance_textLocale com.companyname.clipifrontc:textLocale}
+ * @see #TextAppearance_android_textSize + * @see #TextAppearance_android_typeface + * @see #TextAppearance_android_textStyle + * @see #TextAppearance_android_textColor + * @see #TextAppearance_android_textColorHint + * @see #TextAppearance_android_textColorLink + * @see #TextAppearance_android_shadowColor + * @see #TextAppearance_android_shadowDx + * @see #TextAppearance_android_shadowDy + * @see #TextAppearance_android_shadowRadius + * @see #TextAppearance_android_fontFamily + * @see #TextAppearance_android_textFontWeight + * @see #TextAppearance_fontFamily + * @see #TextAppearance_fontVariationSettings + * @see #TextAppearance_textAllCaps + * @see #TextAppearance_textLocale + */ + public static final int[] TextAppearance={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x01010585, + 0x7f03020e, 0x7f030218, 0x7f03046a, 0x7f0304a1 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextAppearance_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextAppearance_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int TextAppearance_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorLink} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx=7; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy=8; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius=9; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily=10; + /** + *

This symbol is the offset where the {@link android.R.attr#textFontWeight} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:textFontWeight + */ + public static final int TextAppearance_android_textFontWeight=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontFamily + */ + public static final int TextAppearance_fontFamily=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:fontVariationSettings + */ + public static final int TextAppearance_fontVariationSettings=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textAllCaps} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:textAllCaps + */ + public static final int TextAppearance_textAllCaps=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textLocale} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:textLocale + */ + public static final int TextAppearance_textLocale=15; + /** + * Attributes that can be used with a TextEffects. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextEffects_android_textSize android:textSize}
{@link #TextEffects_android_typeface android:typeface}
{@link #TextEffects_android_textStyle android:textStyle}
{@link #TextEffects_android_text android:text}
{@link #TextEffects_android_shadowColor android:shadowColor}
{@link #TextEffects_android_shadowDx android:shadowDx}
{@link #TextEffects_android_shadowDy android:shadowDy}
{@link #TextEffects_android_shadowRadius android:shadowRadius}
{@link #TextEffects_android_fontFamily android:fontFamily}
{@link #TextEffects_borderRound com.companyname.clipifrontc:borderRound}
{@link #TextEffects_borderRoundPercent com.companyname.clipifrontc:borderRoundPercent}
{@link #TextEffects_textFillColor com.companyname.clipifrontc:textFillColor}
{@link #TextEffects_textOutlineColor com.companyname.clipifrontc:textOutlineColor}
{@link #TextEffects_textOutlineThickness com.companyname.clipifrontc:textOutlineThickness}
+ * @see #TextEffects_android_textSize + * @see #TextEffects_android_typeface + * @see #TextEffects_android_textStyle + * @see #TextEffects_android_text + * @see #TextEffects_android_shadowColor + * @see #TextEffects_android_shadowDx + * @see #TextEffects_android_shadowDy + * @see #TextEffects_android_shadowRadius + * @see #TextEffects_android_fontFamily + * @see #TextEffects_borderRound + * @see #TextEffects_borderRoundPercent + * @see #TextEffects_textFillColor + * @see #TextEffects_textOutlineColor + * @see #TextEffects_textOutlineThickness + */ + public static final int[] TextEffects={ + 0x01010095, 0x01010096, 0x01010097, 0x0101014f, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x010103ac, 0x7f03007a, 0x7f03007b, 0x7f030498, + 0x7f0304a2, 0x7f0304a3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextEffects_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextEffects_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextEffects_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int TextEffects_android_text=3; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextEffects_android_shadowColor=4; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextEffects_android_shadowDx=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextEffects_android_shadowDy=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextEffects_android_shadowRadius=7; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int TextEffects_android_fontFamily=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderRound} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:borderRound + */ + public static final int TextEffects_borderRound=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#borderRoundPercent} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:borderRoundPercent + */ + public static final int TextEffects_borderRoundPercent=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textFillColor} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:textFillColor + */ + public static final int TextEffects_textFillColor=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textOutlineColor} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:textOutlineColor + */ + public static final int TextEffects_textOutlineColor=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textOutlineThickness} + * attribute's value can be found in the {@link #TextEffects} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:textOutlineThickness + */ + public static final int TextEffects_textOutlineThickness=13; + /** + * Attributes that can be used with a TextInputEditText. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #TextInputEditText_textInputLayoutFocusedRectEnabled com.companyname.clipifrontc:textInputLayoutFocusedRectEnabled}
+ * @see #TextInputEditText_textInputLayoutFocusedRectEnabled + */ + public static final int[] TextInputEditText={ + 0x7f03049c + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#textInputLayoutFocusedRectEnabled} + * attribute's value can be found in the {@link #TextInputEditText} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:textInputLayoutFocusedRectEnabled + */ + public static final int TextInputEditText_textInputLayoutFocusedRectEnabled=0; + /** + * Attributes that can be used with a TextInputLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextInputLayout_android_enabled android:enabled}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_android_maxWidth android:maxWidth}
{@link #TextInputLayout_android_minWidth android:minWidth}
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_maxEms android:maxEms}
{@link #TextInputLayout_android_minEms android:minEms}
{@link #TextInputLayout_boxBackgroundColor com.companyname.clipifrontc:boxBackgroundColor}
{@link #TextInputLayout_boxBackgroundMode com.companyname.clipifrontc:boxBackgroundMode}
{@link #TextInputLayout_boxCollapsedPaddingTop com.companyname.clipifrontc:boxCollapsedPaddingTop}
{@link #TextInputLayout_boxCornerRadiusBottomEnd com.companyname.clipifrontc:boxCornerRadiusBottomEnd}
{@link #TextInputLayout_boxCornerRadiusBottomStart com.companyname.clipifrontc:boxCornerRadiusBottomStart}
{@link #TextInputLayout_boxCornerRadiusTopEnd com.companyname.clipifrontc:boxCornerRadiusTopEnd}
{@link #TextInputLayout_boxCornerRadiusTopStart com.companyname.clipifrontc:boxCornerRadiusTopStart}
{@link #TextInputLayout_boxStrokeColor com.companyname.clipifrontc:boxStrokeColor}
{@link #TextInputLayout_boxStrokeErrorColor com.companyname.clipifrontc:boxStrokeErrorColor}
{@link #TextInputLayout_boxStrokeWidth com.companyname.clipifrontc:boxStrokeWidth}
{@link #TextInputLayout_boxStrokeWidthFocused com.companyname.clipifrontc:boxStrokeWidthFocused}
{@link #TextInputLayout_counterEnabled com.companyname.clipifrontc:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.companyname.clipifrontc:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.clipifrontc:counterOverflowTextAppearance}
{@link #TextInputLayout_counterOverflowTextColor com.companyname.clipifrontc:counterOverflowTextColor}
{@link #TextInputLayout_counterTextAppearance com.companyname.clipifrontc:counterTextAppearance}
{@link #TextInputLayout_counterTextColor com.companyname.clipifrontc:counterTextColor}
{@link #TextInputLayout_cursorColor com.companyname.clipifrontc:cursorColor}
{@link #TextInputLayout_cursorErrorColor com.companyname.clipifrontc:cursorErrorColor}
{@link #TextInputLayout_endIconCheckable com.companyname.clipifrontc:endIconCheckable}
{@link #TextInputLayout_endIconContentDescription com.companyname.clipifrontc:endIconContentDescription}
{@link #TextInputLayout_endIconDrawable com.companyname.clipifrontc:endIconDrawable}
{@link #TextInputLayout_endIconMinSize com.companyname.clipifrontc:endIconMinSize}
{@link #TextInputLayout_endIconMode com.companyname.clipifrontc:endIconMode}
{@link #TextInputLayout_endIconScaleType com.companyname.clipifrontc:endIconScaleType}
{@link #TextInputLayout_endIconTint com.companyname.clipifrontc:endIconTint}
{@link #TextInputLayout_endIconTintMode com.companyname.clipifrontc:endIconTintMode}
{@link #TextInputLayout_errorAccessibilityLiveRegion com.companyname.clipifrontc:errorAccessibilityLiveRegion}
{@link #TextInputLayout_errorContentDescription com.companyname.clipifrontc:errorContentDescription}
{@link #TextInputLayout_errorEnabled com.companyname.clipifrontc:errorEnabled}
{@link #TextInputLayout_errorIconDrawable com.companyname.clipifrontc:errorIconDrawable}
{@link #TextInputLayout_errorIconTint com.companyname.clipifrontc:errorIconTint}
{@link #TextInputLayout_errorIconTintMode com.companyname.clipifrontc:errorIconTintMode}
{@link #TextInputLayout_errorTextAppearance com.companyname.clipifrontc:errorTextAppearance}
{@link #TextInputLayout_errorTextColor com.companyname.clipifrontc:errorTextColor}
{@link #TextInputLayout_expandedHintEnabled com.companyname.clipifrontc:expandedHintEnabled}
{@link #TextInputLayout_helperText com.companyname.clipifrontc:helperText}
{@link #TextInputLayout_helperTextEnabled com.companyname.clipifrontc:helperTextEnabled}
{@link #TextInputLayout_helperTextTextAppearance com.companyname.clipifrontc:helperTextTextAppearance}
{@link #TextInputLayout_helperTextTextColor com.companyname.clipifrontc:helperTextTextColor}
{@link #TextInputLayout_hintAnimationEnabled com.companyname.clipifrontc:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.companyname.clipifrontc:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.companyname.clipifrontc:hintTextAppearance}
{@link #TextInputLayout_hintTextColor com.companyname.clipifrontc:hintTextColor}
{@link #TextInputLayout_passwordToggleContentDescription com.companyname.clipifrontc:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable com.companyname.clipifrontc:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled com.companyname.clipifrontc:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint com.companyname.clipifrontc:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode com.companyname.clipifrontc:passwordToggleTintMode}
{@link #TextInputLayout_placeholderText com.companyname.clipifrontc:placeholderText}
{@link #TextInputLayout_placeholderTextAppearance com.companyname.clipifrontc:placeholderTextAppearance}
{@link #TextInputLayout_placeholderTextColor com.companyname.clipifrontc:placeholderTextColor}
{@link #TextInputLayout_prefixText com.companyname.clipifrontc:prefixText}
{@link #TextInputLayout_prefixTextAppearance com.companyname.clipifrontc:prefixTextAppearance}
{@link #TextInputLayout_prefixTextColor com.companyname.clipifrontc:prefixTextColor}
{@link #TextInputLayout_shapeAppearance com.companyname.clipifrontc:shapeAppearance}
{@link #TextInputLayout_shapeAppearanceOverlay com.companyname.clipifrontc:shapeAppearanceOverlay}
{@link #TextInputLayout_startIconCheckable com.companyname.clipifrontc:startIconCheckable}
{@link #TextInputLayout_startIconContentDescription com.companyname.clipifrontc:startIconContentDescription}
{@link #TextInputLayout_startIconDrawable com.companyname.clipifrontc:startIconDrawable}
{@link #TextInputLayout_startIconMinSize com.companyname.clipifrontc:startIconMinSize}
{@link #TextInputLayout_startIconScaleType com.companyname.clipifrontc:startIconScaleType}
{@link #TextInputLayout_startIconTint com.companyname.clipifrontc:startIconTint}
{@link #TextInputLayout_startIconTintMode com.companyname.clipifrontc:startIconTintMode}
{@link #TextInputLayout_suffixText com.companyname.clipifrontc:suffixText}
{@link #TextInputLayout_suffixTextAppearance com.companyname.clipifrontc:suffixTextAppearance}
{@link #TextInputLayout_suffixTextColor com.companyname.clipifrontc:suffixTextColor}
+ * @see #TextInputLayout_android_enabled + * @see #TextInputLayout_android_textColorHint + * @see #TextInputLayout_android_maxWidth + * @see #TextInputLayout_android_minWidth + * @see #TextInputLayout_android_hint + * @see #TextInputLayout_android_maxEms + * @see #TextInputLayout_android_minEms + * @see #TextInputLayout_boxBackgroundColor + * @see #TextInputLayout_boxBackgroundMode + * @see #TextInputLayout_boxCollapsedPaddingTop + * @see #TextInputLayout_boxCornerRadiusBottomEnd + * @see #TextInputLayout_boxCornerRadiusBottomStart + * @see #TextInputLayout_boxCornerRadiusTopEnd + * @see #TextInputLayout_boxCornerRadiusTopStart + * @see #TextInputLayout_boxStrokeColor + * @see #TextInputLayout_boxStrokeErrorColor + * @see #TextInputLayout_boxStrokeWidth + * @see #TextInputLayout_boxStrokeWidthFocused + * @see #TextInputLayout_counterEnabled + * @see #TextInputLayout_counterMaxLength + * @see #TextInputLayout_counterOverflowTextAppearance + * @see #TextInputLayout_counterOverflowTextColor + * @see #TextInputLayout_counterTextAppearance + * @see #TextInputLayout_counterTextColor + * @see #TextInputLayout_cursorColor + * @see #TextInputLayout_cursorErrorColor + * @see #TextInputLayout_endIconCheckable + * @see #TextInputLayout_endIconContentDescription + * @see #TextInputLayout_endIconDrawable + * @see #TextInputLayout_endIconMinSize + * @see #TextInputLayout_endIconMode + * @see #TextInputLayout_endIconScaleType + * @see #TextInputLayout_endIconTint + * @see #TextInputLayout_endIconTintMode + * @see #TextInputLayout_errorAccessibilityLiveRegion + * @see #TextInputLayout_errorContentDescription + * @see #TextInputLayout_errorEnabled + * @see #TextInputLayout_errorIconDrawable + * @see #TextInputLayout_errorIconTint + * @see #TextInputLayout_errorIconTintMode + * @see #TextInputLayout_errorTextAppearance + * @see #TextInputLayout_errorTextColor + * @see #TextInputLayout_expandedHintEnabled + * @see #TextInputLayout_helperText + * @see #TextInputLayout_helperTextEnabled + * @see #TextInputLayout_helperTextTextAppearance + * @see #TextInputLayout_helperTextTextColor + * @see #TextInputLayout_hintAnimationEnabled + * @see #TextInputLayout_hintEnabled + * @see #TextInputLayout_hintTextAppearance + * @see #TextInputLayout_hintTextColor + * @see #TextInputLayout_passwordToggleContentDescription + * @see #TextInputLayout_passwordToggleDrawable + * @see #TextInputLayout_passwordToggleEnabled + * @see #TextInputLayout_passwordToggleTint + * @see #TextInputLayout_passwordToggleTintMode + * @see #TextInputLayout_placeholderText + * @see #TextInputLayout_placeholderTextAppearance + * @see #TextInputLayout_placeholderTextColor + * @see #TextInputLayout_prefixText + * @see #TextInputLayout_prefixTextAppearance + * @see #TextInputLayout_prefixTextColor + * @see #TextInputLayout_shapeAppearance + * @see #TextInputLayout_shapeAppearanceOverlay + * @see #TextInputLayout_startIconCheckable + * @see #TextInputLayout_startIconContentDescription + * @see #TextInputLayout_startIconDrawable + * @see #TextInputLayout_startIconMinSize + * @see #TextInputLayout_startIconScaleType + * @see #TextInputLayout_startIconTint + * @see #TextInputLayout_startIconTintMode + * @see #TextInputLayout_suffixText + * @see #TextInputLayout_suffixTextAppearance + * @see #TextInputLayout_suffixTextColor + */ + public static final int[] TextInputLayout={ + 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, + 0x01010150, 0x01010157, 0x0101015a, 0x7f030085, + 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, + 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, + 0x7f03008e, 0x7f03008f, 0x7f030160, 0x7f030161, + 0x7f030162, 0x7f030163, 0x7f030164, 0x7f030165, + 0x7f030168, 0x7f030169, 0x7f0301af, 0x7f0301b0, + 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, + 0x7f0301b5, 0x7f0301b6, 0x7f0301bc, 0x7f0301bd, + 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, + 0x7f0301c3, 0x7f0301c4, 0x7f0301c8, 0x7f030232, + 0x7f030233, 0x7f030234, 0x7f030235, 0x7f03023b, + 0x7f03023c, 0x7f03023d, 0x7f03023e, 0x7f030390, + 0x7f030391, 0x7f030392, 0x7f030393, 0x7f030394, + 0x7f03039e, 0x7f03039f, 0x7f0303a0, 0x7f0303ac, + 0x7f0303ad, 0x7f0303ae, 0x7f0303e2, 0x7f0303ea, + 0x7f03041c, 0x7f03041d, 0x7f03041e, 0x7f03041f, + 0x7f030420, 0x7f030421, 0x7f030422, 0x7f03043e, + 0x7f03043f, 0x7f030440 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int TextInputLayout_android_enabled=0; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int TextInputLayout_android_maxWidth=2; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int TextInputLayout_android_minWidth=3; + /** + *

This symbol is the offset where the {@link android.R.attr#hint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:hint + */ + public static final int TextInputLayout_android_hint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#maxEms} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:maxEms + */ + public static final int TextInputLayout_android_maxEms=5; + /** + *

This symbol is the offset where the {@link android.R.attr#minEms} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:minEms + */ + public static final int TextInputLayout_android_minEms=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxBackgroundColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:boxBackgroundColor + */ + public static final int TextInputLayout_boxBackgroundColor=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxBackgroundMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1Filled box mode for the text input box.
none0Specifies that there should be no box set on the text input area.
outline2Outline box mode for the text input box.
+ * + * @attr name com.companyname.clipifrontc:boxBackgroundMode + */ + public static final int TextInputLayout_boxBackgroundMode=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxCollapsedPaddingTop} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxCollapsedPaddingTop + */ + public static final int TextInputLayout_boxCollapsedPaddingTop=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxCornerRadiusBottomEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxCornerRadiusBottomEnd + */ + public static final int TextInputLayout_boxCornerRadiusBottomEnd=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxCornerRadiusBottomStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxCornerRadiusBottomStart + */ + public static final int TextInputLayout_boxCornerRadiusBottomStart=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxCornerRadiusTopEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxCornerRadiusTopEnd + */ + public static final int TextInputLayout_boxCornerRadiusTopEnd=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxCornerRadiusTopStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxCornerRadiusTopStart + */ + public static final int TextInputLayout_boxCornerRadiusTopStart=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxStrokeColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:boxStrokeColor + */ + public static final int TextInputLayout_boxStrokeColor=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxStrokeErrorColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:boxStrokeErrorColor + */ + public static final int TextInputLayout_boxStrokeErrorColor=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxStrokeWidth} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxStrokeWidth + */ + public static final int TextInputLayout_boxStrokeWidth=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#boxStrokeWidthFocused} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:boxStrokeWidthFocused + */ + public static final int TextInputLayout_boxStrokeWidthFocused=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:counterEnabled + */ + public static final int TextInputLayout_counterEnabled=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterMaxLength} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterOverflowTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterOverflowTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:counterOverflowTextColor + */ + public static final int TextInputLayout_counterOverflowTextColor=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#counterTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:counterTextColor + */ + public static final int TextInputLayout_counterTextColor=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cursorColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:cursorColor + */ + public static final int TextInputLayout_cursorColor=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#cursorErrorColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:cursorErrorColor + */ + public static final int TextInputLayout_cursorErrorColor=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconCheckable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:endIconCheckable + */ + public static final int TextInputLayout_endIconCheckable=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:endIconContentDescription + */ + public static final int TextInputLayout_endIconContentDescription=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:endIconDrawable + */ + public static final int TextInputLayout_endIconDrawable=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconMinSize} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:endIconMinSize + */ + public static final int TextInputLayout_endIconMinSize=29; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clear_text2The view will display a clear text button while the EditText contains input.
customffffffffThe view will display a custom icon specified by the user.
dropdown_menu3The view will display a toggle that displays/hides a dropdown menu.
none0No end icon.
password_toggle1The view will display a toggle when the EditText has a password.
+ * + * @attr name com.companyname.clipifrontc:endIconMode + */ + public static final int TextInputLayout_endIconMode=30; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconScaleType} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4Center the image in the view, but perform no scaling.
centerCrop5Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside6Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter2Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd3Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart1Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY0Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
+ * + * @attr name com.companyname.clipifrontc:endIconScaleType + */ + public static final int TextInputLayout_endIconScaleType=31; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:endIconTint + */ + public static final int TextInputLayout_endIconTint=32; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#endIconTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:endIconTintMode + */ + public static final int TextInputLayout_endIconTintMode=33; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorAccessibilityLiveRegion} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:errorAccessibilityLiveRegion + */ + public static final int TextInputLayout_errorAccessibilityLiveRegion=34; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:errorContentDescription + */ + public static final int TextInputLayout_errorContentDescription=35; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:errorEnabled + */ + public static final int TextInputLayout_errorEnabled=36; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorIconDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:errorIconDrawable + */ + public static final int TextInputLayout_errorIconDrawable=37; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorIconTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:errorIconTint + */ + public static final int TextInputLayout_errorIconTint=38; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorIconTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:errorIconTintMode + */ + public static final int TextInputLayout_errorIconTintMode=39; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance=40; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#errorTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:errorTextColor + */ + public static final int TextInputLayout_errorTextColor=41; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#expandedHintEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:expandedHintEnabled + */ + public static final int TextInputLayout_expandedHintEnabled=42; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#helperText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:helperText + */ + public static final int TextInputLayout_helperText=43; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#helperTextEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:helperTextEnabled + */ + public static final int TextInputLayout_helperTextEnabled=44; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#helperTextTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:helperTextTextAppearance + */ + public static final int TextInputLayout_helperTextTextAppearance=45; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#helperTextTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:helperTextTextColor + */ + public static final int TextInputLayout_helperTextTextColor=46; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hintAnimationEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled=47; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hintEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:hintEnabled + */ + public static final int TextInputLayout_hintEnabled=48; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hintTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance=49; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#hintTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:hintTextColor + */ + public static final int TextInputLayout_hintTextColor=50; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#passwordToggleContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription=51; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#passwordToggleDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable=52; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#passwordToggleEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled=53; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#passwordToggleTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint=54; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#passwordToggleTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode=55; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#placeholderText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:placeholderText + */ + public static final int TextInputLayout_placeholderText=56; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#placeholderTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:placeholderTextAppearance + */ + public static final int TextInputLayout_placeholderTextAppearance=57; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#placeholderTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:placeholderTextColor + */ + public static final int TextInputLayout_placeholderTextColor=58; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#prefixText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:prefixText + */ + public static final int TextInputLayout_prefixText=59; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#prefixTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:prefixTextAppearance + */ + public static final int TextInputLayout_prefixTextAppearance=60; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#prefixTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:prefixTextColor + */ + public static final int TextInputLayout_prefixTextColor=61; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearance + */ + public static final int TextInputLayout_shapeAppearance=62; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#shapeAppearanceOverlay} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:shapeAppearanceOverlay + */ + public static final int TextInputLayout_shapeAppearanceOverlay=63; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconCheckable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:startIconCheckable + */ + public static final int TextInputLayout_startIconCheckable=64; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:startIconContentDescription + */ + public static final int TextInputLayout_startIconContentDescription=65; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:startIconDrawable + */ + public static final int TextInputLayout_startIconDrawable=66; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconMinSize} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:startIconMinSize + */ + public static final int TextInputLayout_startIconMinSize=67; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconScaleType} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4Center the image in the view, but perform no scaling.
centerCrop5Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + * (width and height) of the image will be equal to or larger than the corresponding + * dimension of the view (minus padding). The image is then centered in the view.
centerInside6Scale the image uniformly (maintain the image's aspect ratio) so that both + * dimensions (width and height) of the image will be equal to or less than the + * corresponding dimension of the view (minus padding). The image is then centered in + * the view.
fitCenter2Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd3Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
fitStart1Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitXY0Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
+ * + * @attr name com.companyname.clipifrontc:startIconScaleType + */ + public static final int TextInputLayout_startIconScaleType=68; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:startIconTint + */ + public static final int TextInputLayout_startIconTint=69; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#startIconTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:startIconTintMode + */ + public static final int TextInputLayout_startIconTintMode=70; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#suffixText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:suffixText + */ + public static final int TextInputLayout_suffixText=71; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#suffixTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:suffixTextAppearance + */ + public static final int TextInputLayout_suffixTextAppearance=72; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#suffixTextColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:suffixTextColor + */ + public static final int TextInputLayout_suffixTextColor=73; + /** + * Attributes that can be used with a ThemeEnforcement. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ThemeEnforcement_android_textAppearance android:textAppearance}
{@link #ThemeEnforcement_enforceMaterialTheme com.companyname.clipifrontc:enforceMaterialTheme}
{@link #ThemeEnforcement_enforceTextAppearance com.companyname.clipifrontc:enforceTextAppearance}
+ * @see #ThemeEnforcement_android_textAppearance + * @see #ThemeEnforcement_enforceMaterialTheme + * @see #ThemeEnforcement_enforceTextAppearance + */ + public static final int[] ThemeEnforcement={ + 0x01010034, 0x7f0301b7, 0x7f0301b8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int ThemeEnforcement_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#enforceMaterialTheme} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:enforceMaterialTheme + */ + public static final int ThemeEnforcement_enforceMaterialTheme=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#enforceTextAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:enforceTextAppearance + */ + public static final int ThemeEnforcement_enforceTextAppearance=2; + /** + * Attributes that can be used with a Toolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity com.companyname.clipifrontc:buttonGravity}
{@link #Toolbar_collapseContentDescription com.companyname.clipifrontc:collapseContentDescription}
{@link #Toolbar_collapseIcon com.companyname.clipifrontc:collapseIcon}
{@link #Toolbar_contentInsetEnd com.companyname.clipifrontc:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions com.companyname.clipifrontc:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft com.companyname.clipifrontc:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.companyname.clipifrontc:contentInsetRight}
{@link #Toolbar_contentInsetStart com.companyname.clipifrontc:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation com.companyname.clipifrontc:contentInsetStartWithNavigation}
{@link #Toolbar_logo com.companyname.clipifrontc:logo}
{@link #Toolbar_logoDescription com.companyname.clipifrontc:logoDescription}
{@link #Toolbar_maxButtonHeight com.companyname.clipifrontc:maxButtonHeight}
{@link #Toolbar_menu com.companyname.clipifrontc:menu}
{@link #Toolbar_navigationContentDescription com.companyname.clipifrontc:navigationContentDescription}
{@link #Toolbar_navigationIcon com.companyname.clipifrontc:navigationIcon}
{@link #Toolbar_popupTheme com.companyname.clipifrontc:popupTheme}
{@link #Toolbar_subtitle com.companyname.clipifrontc:subtitle}
{@link #Toolbar_subtitleTextAppearance com.companyname.clipifrontc:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.companyname.clipifrontc:subtitleTextColor}
{@link #Toolbar_title com.companyname.clipifrontc:title}
{@link #Toolbar_titleMargin com.companyname.clipifrontc:titleMargin}
{@link #Toolbar_titleMarginBottom com.companyname.clipifrontc:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.companyname.clipifrontc:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.companyname.clipifrontc:titleMarginStart}
{@link #Toolbar_titleMarginTop com.companyname.clipifrontc:titleMarginTop}
{@link #Toolbar_titleMargins com.companyname.clipifrontc:titleMargins}
{@link #Toolbar_titleTextAppearance com.companyname.clipifrontc:titleTextAppearance}
{@link #Toolbar_titleTextColor com.companyname.clipifrontc:titleTextColor}
+ * @see #Toolbar_android_gravity + * @see #Toolbar_android_minHeight + * @see #Toolbar_buttonGravity + * @see #Toolbar_collapseContentDescription + * @see #Toolbar_collapseIcon + * @see #Toolbar_contentInsetEnd + * @see #Toolbar_contentInsetEndWithActions + * @see #Toolbar_contentInsetLeft + * @see #Toolbar_contentInsetRight + * @see #Toolbar_contentInsetStart + * @see #Toolbar_contentInsetStartWithNavigation + * @see #Toolbar_logo + * @see #Toolbar_logoDescription + * @see #Toolbar_maxButtonHeight + * @see #Toolbar_menu + * @see #Toolbar_navigationContentDescription + * @see #Toolbar_navigationIcon + * @see #Toolbar_popupTheme + * @see #Toolbar_subtitle + * @see #Toolbar_subtitleTextAppearance + * @see #Toolbar_subtitleTextColor + * @see #Toolbar_title + * @see #Toolbar_titleMargin + * @see #Toolbar_titleMarginBottom + * @see #Toolbar_titleMarginEnd + * @see #Toolbar_titleMarginStart + * @see #Toolbar_titleMarginTop + * @see #Toolbar_titleMargins + * @see #Toolbar_titleTextAppearance + * @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar={ + 0x010100af, 0x01010140, 0x7f030097, 0x7f0300ef, + 0x7f0300f0, 0x7f030143, 0x7f030144, 0x7f030145, + 0x7f030146, 0x7f030147, 0x7f030148, 0x7f0302ea, + 0x7f0302ec, 0x7f030325, 0x7f03032e, 0x7f03036e, + 0x7f03036f, 0x7f0303aa, 0x7f030439, 0x7f03043b, + 0x7f03043c, 0x7f0304c8, 0x7f0304cc, 0x7f0304cd, + 0x7f0304ce, 0x7f0304cf, 0x7f0304d0, 0x7f0304d1, + 0x7f0304d3, 0x7f0304d4 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int Toolbar_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#buttonGravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name com.companyname.clipifrontc:buttonGravity + */ + public static final int Toolbar_buttonGravity=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapseContentDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#collapseIcon} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:collapseIcon + */ + public static final int Toolbar_collapseIcon=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetEnd} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetEndWithActions} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetLeft} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetRight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetRight + */ + public static final int Toolbar_contentInsetRight=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetStart} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetStart + */ + public static final int Toolbar_contentInsetStart=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#contentInsetStartWithNavigation} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#logo} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:logo + */ + public static final int Toolbar_logo=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#logoDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:logoDescription + */ + public static final int Toolbar_logoDescription=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#maxButtonHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#menu} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:menu + */ + public static final int Toolbar_menu=14; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationContentDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription=15; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#navigationIcon} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:navigationIcon + */ + public static final int Toolbar_navigationIcon=16; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#popupTheme} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:popupTheme + */ + public static final int Toolbar_popupTheme=17; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitle} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:subtitle + */ + public static final int Toolbar_subtitle=18; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance=19; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#subtitleTextColor} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor=20; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#title} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:title + */ + public static final int Toolbar_title=21; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMargin} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMargin + */ + public static final int Toolbar_titleMargin=22; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMarginBottom} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom=23; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMarginEnd} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd=24; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMarginStart} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMarginStart + */ + public static final int Toolbar_titleMarginStart=25; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMarginTop} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMarginTop + */ + public static final int Toolbar_titleMarginTop=26; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleMargins} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:titleMargins + */ + public static final int Toolbar_titleMargins=27; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance=28; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#titleTextColor} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:titleTextColor + */ + public static final int Toolbar_titleTextColor=29; + /** + * Attributes that can be used with a Tooltip. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Tooltip_android_textAppearance android:textAppearance}
{@link #Tooltip_android_textColor android:textColor}
{@link #Tooltip_android_padding android:padding}
{@link #Tooltip_android_layout_margin android:layout_margin}
{@link #Tooltip_android_minWidth android:minWidth}
{@link #Tooltip_android_minHeight android:minHeight}
{@link #Tooltip_android_text android:text}
{@link #Tooltip_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #Tooltip_showMarker com.companyname.clipifrontc:showMarker}
+ * @see #Tooltip_android_textAppearance + * @see #Tooltip_android_textColor + * @see #Tooltip_android_padding + * @see #Tooltip_android_layout_margin + * @see #Tooltip_android_minWidth + * @see #Tooltip_android_minHeight + * @see #Tooltip_android_text + * @see #Tooltip_backgroundTint + * @see #Tooltip_showMarker + */ + public static final int[] Tooltip={ + 0x01010034, 0x01010098, 0x010100d5, 0x010100f6, + 0x0101013f, 0x01010140, 0x0101014f, 0x7f030056, + 0x7f0303f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int Tooltip_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int Tooltip_android_textColor=1; + /** + *

This symbol is the offset where the {@link android.R.attr#padding} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:padding + */ + public static final int Tooltip_android_padding=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_margin} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:layout_margin + */ + public static final int Tooltip_android_layout_margin=3; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int Tooltip_android_minWidth=4; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Tooltip_android_minHeight=5; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int Tooltip_android_text=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int Tooltip_backgroundTint=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#showMarker} + * attribute's value can be found in the {@link #Tooltip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:showMarker + */ + public static final int Tooltip_showMarker=8; + /** + * Attributes that can be used with a Transform. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Transform_android_transformPivotX android:transformPivotX}
{@link #Transform_android_transformPivotY android:transformPivotY}
{@link #Transform_android_translationX android:translationX}
{@link #Transform_android_translationY android:translationY}
{@link #Transform_android_scaleX android:scaleX}
{@link #Transform_android_scaleY android:scaleY}
{@link #Transform_android_rotation android:rotation}
{@link #Transform_android_rotationX android:rotationX}
{@link #Transform_android_rotationY android:rotationY}
{@link #Transform_android_translationZ android:translationZ}
{@link #Transform_android_elevation android:elevation}
{@link #Transform_transformPivotTarget com.companyname.clipifrontc:transformPivotTarget}
+ * @see #Transform_android_transformPivotX + * @see #Transform_android_transformPivotY + * @see #Transform_android_translationX + * @see #Transform_android_translationY + * @see #Transform_android_scaleX + * @see #Transform_android_scaleY + * @see #Transform_android_rotation + * @see #Transform_android_rotationX + * @see #Transform_android_rotationY + * @see #Transform_android_translationZ + * @see #Transform_android_elevation + * @see #Transform_transformPivotTarget + */ + public static final int[] Transform={ + 0x01010320, 0x01010321, 0x01010322, 0x01010323, + 0x01010324, 0x01010325, 0x01010326, 0x01010327, + 0x01010328, 0x010103fa, 0x01010440, 0x7f0304f2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotX} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotX + */ + public static final int Transform_android_transformPivotX=0; + /** + *

This symbol is the offset where the {@link android.R.attr#transformPivotY} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:transformPivotY + */ + public static final int Transform_android_transformPivotY=1; + /** + *

This symbol is the offset where the {@link android.R.attr#translationX} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationX + */ + public static final int Transform_android_translationX=2; + /** + *

This symbol is the offset where the {@link android.R.attr#translationY} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationY + */ + public static final int Transform_android_translationY=3; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleX} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleX + */ + public static final int Transform_android_scaleX=4; + /** + *

This symbol is the offset where the {@link android.R.attr#scaleY} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:scaleY + */ + public static final int Transform_android_scaleY=5; + /** + *

This symbol is the offset where the {@link android.R.attr#rotation} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotation + */ + public static final int Transform_android_rotation=6; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationX} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationX + */ + public static final int Transform_android_rotationX=7; + /** + *

This symbol is the offset where the {@link android.R.attr#rotationY} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:rotationY + */ + public static final int Transform_android_rotationY=8; + /** + *

This symbol is the offset where the {@link android.R.attr#translationZ} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:translationZ + */ + public static final int Transform_android_translationZ=9; + /** + *

This symbol is the offset where the {@link android.R.attr#elevation} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:elevation + */ + public static final int Transform_android_elevation=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transformPivotTarget} + * attribute's value can be found in the {@link #Transform} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:transformPivotTarget + */ + public static final int Transform_transformPivotTarget=11; + /** + * Attributes that can be used with a Transition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Transition_android_id android:id}
{@link #Transition_autoTransition com.companyname.clipifrontc:autoTransition}
{@link #Transition_constraintSetEnd com.companyname.clipifrontc:constraintSetEnd}
{@link #Transition_constraintSetStart com.companyname.clipifrontc:constraintSetStart}
{@link #Transition_duration com.companyname.clipifrontc:duration}
{@link #Transition_layoutDuringTransition com.companyname.clipifrontc:layoutDuringTransition}
{@link #Transition_motionInterpolator com.companyname.clipifrontc:motionInterpolator}
{@link #Transition_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #Transition_staggered com.companyname.clipifrontc:staggered}
{@link #Transition_transitionDisable com.companyname.clipifrontc:transitionDisable}
{@link #Transition_transitionFlags com.companyname.clipifrontc:transitionFlags}
+ * @see #Transition_android_id + * @see #Transition_autoTransition + * @see #Transition_constraintSetEnd + * @see #Transition_constraintSetStart + * @see #Transition_duration + * @see #Transition_layoutDuringTransition + * @see #Transition_motionInterpolator + * @see #Transition_pathMotionArc + * @see #Transition_staggered + * @see #Transition_transitionDisable + * @see #Transition_transitionFlags + */ + public static final int[] Transition={ + 0x010100d0, 0x7f03004b, 0x7f03013c, 0x7f03013d, + 0x7f0301a4, 0x7f03028d, 0x7f030363, 0x7f030395, + 0x7f03041a, 0x7f0304f3, 0x7f0304f5 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int Transition_android_id=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#autoTransition} + * attribute's value can be found in the {@link #Transition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
animateToEnd4
animateToStart3
jumpToEnd2
jumpToStart1
none0
+ * + * @attr name com.companyname.clipifrontc:autoTransition + */ + public static final int Transition_autoTransition=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraintSetEnd} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraintSetEnd + */ + public static final int Transition_constraintSetEnd=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraintSetStart} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraintSetStart + */ + public static final int Transition_constraintSetStart=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#duration} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:duration + */ + public static final int Transition_duration=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#layoutDuringTransition} + * attribute's value can be found in the {@link #Transition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
callMeasure2
honorRequest1
ignoreRequest0
+ * + * @attr name com.companyname.clipifrontc:layoutDuringTransition + */ + public static final int Transition_layoutDuringTransition=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionInterpolator} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
anticipate6
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ * + * @attr name com.companyname.clipifrontc:motionInterpolator + */ + public static final int Transition_motionInterpolator=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #Transition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int Transition_pathMotionArc=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#staggered} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.companyname.clipifrontc:staggered + */ + public static final int Transition_staggered=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionDisable} + * attribute's value can be found in the {@link #Transition} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:transitionDisable + */ + public static final int Transition_transitionDisable=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionFlags} + * attribute's value can be found in the {@link #Transition} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginOnFirstDraw1
disableIntraAutoTransition2
none0
onInterceptTouchReturnSwipe4
+ * + * @attr name com.companyname.clipifrontc:transitionFlags + */ + public static final int Transition_transitionFlags=10; + /** + * Attributes that can be used with a Variant. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Variant_constraints com.companyname.clipifrontc:constraints}
{@link #Variant_region_heightLessThan com.companyname.clipifrontc:region_heightLessThan}
{@link #Variant_region_heightMoreThan com.companyname.clipifrontc:region_heightMoreThan}
{@link #Variant_region_widthLessThan com.companyname.clipifrontc:region_widthLessThan}
{@link #Variant_region_widthMoreThan com.companyname.clipifrontc:region_widthMoreThan}
+ * @see #Variant_constraints + * @see #Variant_region_heightLessThan + * @see #Variant_region_heightMoreThan + * @see #Variant_region_widthLessThan + * @see #Variant_region_widthMoreThan + */ + public static final int[] Variant={ + 0x7f030140, 0x7f0303c4, 0x7f0303c5, 0x7f0303c6, + 0x7f0303c7 + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraints} + * attribute's value can be found in the {@link #Variant} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraints + */ + public static final int Variant_constraints=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#region_heightLessThan} + * attribute's value can be found in the {@link #Variant} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:region_heightLessThan + */ + public static final int Variant_region_heightLessThan=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#region_heightMoreThan} + * attribute's value can be found in the {@link #Variant} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:region_heightMoreThan + */ + public static final int Variant_region_heightMoreThan=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#region_widthLessThan} + * attribute's value can be found in the {@link #Variant} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:region_widthLessThan + */ + public static final int Variant_region_widthLessThan=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#region_widthMoreThan} + * attribute's value can be found in the {@link #Variant} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:region_widthMoreThan + */ + public static final int Variant_region_widthMoreThan=4; + /** + * Attributes that can be used with a View. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd com.companyname.clipifrontc:paddingEnd}
{@link #View_paddingStart com.companyname.clipifrontc:paddingStart}
{@link #View_theme com.companyname.clipifrontc:theme}
+ * @see #View_android_theme + * @see #View_android_focusable + * @see #View_paddingEnd + * @see #View_paddingStart + * @see #View_theme + */ + public static final int[] View={ + 0x01010000, 0x010100da, 0x7f030386, 0x7f030389, + 0x7f0304ab + }; + /** + *

This symbol is the offset where the {@link android.R.attr#theme} + * attribute's value can be found in the {@link #View} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:theme + */ + public static final int View_android_theme=0; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #View} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int View_android_focusable=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingEnd} + * attribute's value can be found in the {@link #View} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:paddingEnd + */ + public static final int View_paddingEnd=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#paddingStart} + * attribute's value can be found in the {@link #View} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.companyname.clipifrontc:paddingStart + */ + public static final int View_paddingStart=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#theme} + * attribute's value can be found in the {@link #View} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:theme + */ + public static final int View_theme=4; + /** + * Attributes that can be used with a ViewBackgroundHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.companyname.clipifrontc:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.clipifrontc:backgroundTintMode}
+ * @see #ViewBackgroundHelper_android_background + * @see #ViewBackgroundHelper_backgroundTint + * @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper={ + 0x010100d4, 0x7f030056, 0x7f030057 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTint} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.companyname.clipifrontc:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#backgroundTintMode} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.companyname.clipifrontc:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode=2; + /** + * Attributes that can be used with a ViewPager2. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ViewPager2_android_orientation android:orientation}
+ * @see #ViewPager2_android_orientation + */ + public static final int[] ViewPager2={ + 0x010100c4 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #ViewPager2} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int ViewPager2_android_orientation=0; + /** + * Attributes that can be used with a ViewStubCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ * @see #ViewStubCompat_android_id + * @see #ViewStubCompat_android_layout + * @see #ViewStubCompat_android_inflatedId + */ + public static final int[] ViewStubCompat={ + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewStubCompat_android_id=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int ViewStubCompat_android_layout=1; + /** + *

This symbol is the offset where the {@link android.R.attr#inflatedId} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId=2; + /** + * Attributes that can be used with a ViewTransition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewTransition_android_id android:id}
{@link #ViewTransition_SharedValue com.companyname.clipifrontc:SharedValue}
{@link #ViewTransition_SharedValueId com.companyname.clipifrontc:SharedValueId}
{@link #ViewTransition_clearsTag com.companyname.clipifrontc:clearsTag}
{@link #ViewTransition_duration com.companyname.clipifrontc:duration}
{@link #ViewTransition_ifTagNotSet com.companyname.clipifrontc:ifTagNotSet}
{@link #ViewTransition_ifTagSet com.companyname.clipifrontc:ifTagSet}
{@link #ViewTransition_motionInterpolator com.companyname.clipifrontc:motionInterpolator}
{@link #ViewTransition_motionTarget com.companyname.clipifrontc:motionTarget}
{@link #ViewTransition_onStateTransition com.companyname.clipifrontc:onStateTransition}
{@link #ViewTransition_pathMotionArc com.companyname.clipifrontc:pathMotionArc}
{@link #ViewTransition_setsTag com.companyname.clipifrontc:setsTag}
{@link #ViewTransition_transitionDisable com.companyname.clipifrontc:transitionDisable}
{@link #ViewTransition_upDuration com.companyname.clipifrontc:upDuration}
{@link #ViewTransition_viewTransitionMode com.companyname.clipifrontc:viewTransitionMode}
+ * @see #ViewTransition_android_id + * @see #ViewTransition_SharedValue + * @see #ViewTransition_SharedValueId + * @see #ViewTransition_clearsTag + * @see #ViewTransition_duration + * @see #ViewTransition_ifTagNotSet + * @see #ViewTransition_ifTagSet + * @see #ViewTransition_motionInterpolator + * @see #ViewTransition_motionTarget + * @see #ViewTransition_onStateTransition + * @see #ViewTransition_pathMotionArc + * @see #ViewTransition_setsTag + * @see #ViewTransition_transitionDisable + * @see #ViewTransition_upDuration + * @see #ViewTransition_viewTransitionMode + */ + public static final int[] ViewTransition={ + 0x010100d0, 0x7f030000, 0x7f030001, 0x7f0300e1, + 0x7f0301a4, 0x7f03024d, 0x7f03024e, 0x7f030363, + 0x7f030368, 0x7f030380, 0x7f030395, 0x7f0303e1, + 0x7f0304f3, 0x7f0304fc, 0x7f030505 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewTransition_android_id=0; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#SharedValue} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:SharedValue + */ + public static final int ViewTransition_SharedValue=1; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#SharedValueId} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:SharedValueId + */ + public static final int ViewTransition_SharedValueId=2; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#clearsTag} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:clearsTag + */ + public static final int ViewTransition_clearsTag=3; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#duration} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:duration + */ + public static final int ViewTransition_duration=4; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ifTagNotSet} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:ifTagNotSet + */ + public static final int ViewTransition_ifTagNotSet=5; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#ifTagSet} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:ifTagSet + */ + public static final int ViewTransition_ifTagSet=6; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionInterpolator} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
anticipate6
bounce4
easeIn1
easeInOut0
easeOut2
linear3
overshoot5
+ * + * @attr name com.companyname.clipifrontc:motionInterpolator + */ + public static final int ViewTransition_motionInterpolator=7; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#motionTarget} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.companyname.clipifrontc:motionTarget + */ + public static final int ViewTransition_motionTarget=8; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#onStateTransition} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDown1
actionDownUp3
actionUp2
sharedValueSet4
sharedValueUnset5
+ * + * @attr name com.companyname.clipifrontc:onStateTransition + */ + public static final int ViewTransition_onStateTransition=9; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#pathMotionArc} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
above5
below4
flip3
none0
startHorizontal2
startVertical1
+ * + * @attr name com.companyname.clipifrontc:pathMotionArc + */ + public static final int ViewTransition_pathMotionArc=10; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#setsTag} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:setsTag + */ + public static final int ViewTransition_setsTag=11; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#transitionDisable} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.companyname.clipifrontc:transitionDisable + */ + public static final int ViewTransition_transitionDisable=12; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#upDuration} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.companyname.clipifrontc:upDuration + */ + public static final int ViewTransition_upDuration=13; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#viewTransitionMode} + * attribute's value can be found in the {@link #ViewTransition} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
allStates1
currentState0
noState2
+ * + * @attr name com.companyname.clipifrontc:viewTransitionMode + */ + public static final int ViewTransition_viewTransitionMode=14; + /** + * Attributes that can be used with a include. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #include_constraintSet com.companyname.clipifrontc:constraintSet}
+ * @see #include_constraintSet + */ + public static final int[] include={ + 0x7f03013b + }; + /** + *

This symbol is the offset where the {@link com.companyname.clipifrontc.R.attr#constraintSet} + * attribute's value can be found in the {@link #include} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.companyname.clipifrontc:constraintSet + */ + public static final int include_constraintSet=0; + } + public static final class xml { + public static final int image_share_filepaths=0x7f120000; + public static final int microsoft_maui_essentials_fileprovider_file_paths=0x7f120001; + } +} \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/R.java new file mode 100644 index 0000000..e2c9cf2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/R.java @@ -0,0 +1,6731 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package com.google.android.material; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c; + public static final int btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d; + public static final int btn_checkbox_to_checked_icon_null_animation = 0x7f01000e; + public static final int btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f; + public static final int btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010; + public static final int btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011; + public static final int btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012; + public static final int btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013; + public static final int btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014; + public static final int btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015; + public static final int btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016; + public static final int btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017; + public static final int design_bottom_sheet_slide_in = 0x7f010018; + public static final int design_bottom_sheet_slide_out = 0x7f010019; + public static final int design_snackbar_in = 0x7f01001a; + public static final int design_snackbar_out = 0x7f01001b; + public static final int fragment_fast_out_extra_slow_in = 0x7f010020; + public static final int linear_indeterminate_line1_head_interpolator = 0x7f010021; + public static final int linear_indeterminate_line1_tail_interpolator = 0x7f010022; + public static final int linear_indeterminate_line2_head_interpolator = 0x7f010023; + public static final int linear_indeterminate_line2_tail_interpolator = 0x7f010024; + public static final int m3_bottom_sheet_slide_in = 0x7f010025; + public static final int m3_bottom_sheet_slide_out = 0x7f010026; + public static final int m3_motion_fade_enter = 0x7f010027; + public static final int m3_motion_fade_exit = 0x7f010028; + public static final int m3_side_sheet_enter_from_left = 0x7f010029; + public static final int m3_side_sheet_enter_from_right = 0x7f01002a; + public static final int m3_side_sheet_exit_to_left = 0x7f01002b; + public static final int m3_side_sheet_exit_to_right = 0x7f01002c; + public static final int mtrl_bottom_sheet_slide_in = 0x7f01002d; + public static final int mtrl_bottom_sheet_slide_out = 0x7f01002e; + public static final int mtrl_card_lowers_interpolator = 0x7f01002f; + } + public static final class animator { + public static final int design_appbar_state_list_animator = 0x7f020000; + public static final int design_fab_hide_motion_spec = 0x7f020001; + public static final int design_fab_show_motion_spec = 0x7f020002; + public static final int fragment_close_enter = 0x7f020003; + public static final int fragment_close_exit = 0x7f020004; + public static final int fragment_fade_enter = 0x7f020005; + public static final int fragment_fade_exit = 0x7f020006; + public static final int fragment_open_enter = 0x7f020007; + public static final int fragment_open_exit = 0x7f020008; + public static final int m3_appbar_state_list_animator = 0x7f020009; + public static final int m3_btn_elevated_btn_state_list_anim = 0x7f02000a; + public static final int m3_btn_state_list_anim = 0x7f02000b; + public static final int m3_card_elevated_state_list_anim = 0x7f02000c; + public static final int m3_card_state_list_anim = 0x7f02000d; + public static final int m3_chip_state_list_anim = 0x7f02000e; + public static final int m3_elevated_chip_state_list_anim = 0x7f02000f; + public static final int m3_extended_fab_change_size_collapse_motion_spec = 0x7f020010; + public static final int m3_extended_fab_change_size_expand_motion_spec = 0x7f020011; + public static final int m3_extended_fab_hide_motion_spec = 0x7f020012; + public static final int m3_extended_fab_show_motion_spec = 0x7f020013; + public static final int m3_extended_fab_state_list_animator = 0x7f020014; + public static final int mtrl_btn_state_list_anim = 0x7f020015; + public static final int mtrl_btn_unelevated_state_list_anim = 0x7f020016; + public static final int mtrl_card_state_list_anim = 0x7f020017; + public static final int mtrl_chip_state_list_anim = 0x7f020018; + public static final int mtrl_extended_fab_change_size_collapse_motion_spec = 0x7f020019; + public static final int mtrl_extended_fab_change_size_expand_motion_spec = 0x7f02001a; + public static final int mtrl_extended_fab_hide_motion_spec = 0x7f02001b; + public static final int mtrl_extended_fab_show_motion_spec = 0x7f02001c; + public static final int mtrl_extended_fab_state_list_animator = 0x7f02001d; + public static final int mtrl_fab_hide_motion_spec = 0x7f02001e; + public static final int mtrl_fab_show_motion_spec = 0x7f02001f; + public static final int mtrl_fab_transformation_sheet_collapse_spec = 0x7f020020; + public static final int mtrl_fab_transformation_sheet_expand_spec = 0x7f020021; + } + public static final class attr { + public static final int actionBarDivider = 0x7f030003; + public static final int actionBarItemBackground = 0x7f030004; + public static final int actionBarPopupTheme = 0x7f030005; + public static final int actionBarSize = 0x7f030006; + public static final int actionBarSplitStyle = 0x7f030007; + public static final int actionBarStyle = 0x7f030008; + public static final int actionBarTabBarStyle = 0x7f030009; + public static final int actionBarTabStyle = 0x7f03000a; + public static final int actionBarTabTextStyle = 0x7f03000b; + public static final int actionBarTheme = 0x7f03000c; + public static final int actionBarWidgetTheme = 0x7f03000d; + public static final int actionButtonStyle = 0x7f03000e; + public static final int actionDropDownStyle = 0x7f03000f; + public static final int actionLayout = 0x7f030010; + public static final int actionMenuTextAppearance = 0x7f030011; + public static final int actionMenuTextColor = 0x7f030012; + public static final int actionModeBackground = 0x7f030013; + public static final int actionModeCloseButtonStyle = 0x7f030014; + public static final int actionModeCloseContentDescription = 0x7f030015; + public static final int actionModeCloseDrawable = 0x7f030016; + public static final int actionModeCopyDrawable = 0x7f030017; + public static final int actionModeCutDrawable = 0x7f030018; + public static final int actionModeFindDrawable = 0x7f030019; + public static final int actionModePasteDrawable = 0x7f03001a; + public static final int actionModePopupWindowStyle = 0x7f03001b; + public static final int actionModeSelectAllDrawable = 0x7f03001c; + public static final int actionModeShareDrawable = 0x7f03001d; + public static final int actionModeSplitBackground = 0x7f03001e; + public static final int actionModeStyle = 0x7f03001f; + public static final int actionModeTheme = 0x7f030020; + public static final int actionModeWebSearchDrawable = 0x7f030021; + public static final int actionOverflowButtonStyle = 0x7f030022; + public static final int actionOverflowMenuStyle = 0x7f030023; + public static final int actionProviderClass = 0x7f030024; + public static final int actionTextColorAlpha = 0x7f030025; + public static final int actionViewClass = 0x7f030026; + public static final int activeIndicatorLabelPadding = 0x7f030027; + public static final int activityChooserViewStyle = 0x7f030029; + public static final int addElevationShadow = 0x7f03002b; + public static final int alertDialogButtonGroupStyle = 0x7f03002c; + public static final int alertDialogCenterButtons = 0x7f03002d; + public static final int alertDialogStyle = 0x7f03002e; + public static final int alertDialogTheme = 0x7f03002f; + public static final int allowStacking = 0x7f030030; + public static final int alpha = 0x7f030031; + public static final int alphabeticModifiers = 0x7f030032; + public static final int altSrc = 0x7f030033; + public static final int animateMenuItems = 0x7f030036; + public static final int animateNavigationIcon = 0x7f030037; + public static final int animationMode = 0x7f03003a; + public static final int appBarLayoutStyle = 0x7f03003b; + public static final int applyMotionScene = 0x7f03003c; + public static final int arcMode = 0x7f03003d; + public static final int arrowHeadLength = 0x7f03003f; + public static final int arrowShaftLength = 0x7f030040; + public static final int attributeName = 0x7f030041; + public static final int autoAdjustToWithinGrandparentBounds = 0x7f030042; + public static final int autoCompleteTextViewStyle = 0x7f030044; + public static final int autoShowKeyboard = 0x7f030045; + public static final int autoSizeMaxTextSize = 0x7f030046; + public static final int autoSizeMinTextSize = 0x7f030047; + public static final int autoSizePresetSizes = 0x7f030048; + public static final int autoSizeStepGranularity = 0x7f030049; + public static final int autoSizeTextType = 0x7f03004a; + public static final int autoTransition = 0x7f03004b; + public static final int backHandlingEnabled = 0x7f03004c; + public static final int background = 0x7f03004d; + public static final int backgroundColor = 0x7f03004e; + public static final int backgroundInsetBottom = 0x7f03004f; + public static final int backgroundInsetEnd = 0x7f030050; + public static final int backgroundInsetStart = 0x7f030051; + public static final int backgroundInsetTop = 0x7f030052; + public static final int backgroundOverlayColorAlpha = 0x7f030053; + public static final int backgroundSplit = 0x7f030054; + public static final int backgroundStacked = 0x7f030055; + public static final int backgroundTint = 0x7f030056; + public static final int backgroundTintMode = 0x7f030057; + public static final int badgeGravity = 0x7f030058; + public static final int badgeHeight = 0x7f030059; + public static final int badgeRadius = 0x7f03005a; + public static final int badgeShapeAppearance = 0x7f03005b; + public static final int badgeShapeAppearanceOverlay = 0x7f03005c; + public static final int badgeStyle = 0x7f03005d; + public static final int badgeText = 0x7f03005e; + public static final int badgeTextAppearance = 0x7f03005f; + public static final int badgeTextColor = 0x7f030060; + public static final int badgeVerticalPadding = 0x7f030061; + public static final int badgeWidePadding = 0x7f030062; + public static final int badgeWidth = 0x7f030063; + public static final int badgeWithTextHeight = 0x7f030064; + public static final int badgeWithTextRadius = 0x7f030065; + public static final int badgeWithTextShapeAppearance = 0x7f030066; + public static final int badgeWithTextShapeAppearanceOverlay = 0x7f030067; + public static final int badgeWithTextWidth = 0x7f030068; + public static final int barLength = 0x7f030069; + public static final int barrierAllowsGoneWidgets = 0x7f03006a; + public static final int barrierDirection = 0x7f03006b; + public static final int barrierMargin = 0x7f03006c; + public static final int behavior_autoHide = 0x7f03006d; + public static final int behavior_autoShrink = 0x7f03006e; + public static final int behavior_draggable = 0x7f03006f; + public static final int behavior_expandedOffset = 0x7f030070; + public static final int behavior_fitToContents = 0x7f030071; + public static final int behavior_halfExpandedRatio = 0x7f030072; + public static final int behavior_hideable = 0x7f030073; + public static final int behavior_overlapTop = 0x7f030074; + public static final int behavior_peekHeight = 0x7f030075; + public static final int behavior_saveFlags = 0x7f030076; + public static final int behavior_significantVelocityThreshold = 0x7f030077; + public static final int behavior_skipCollapsed = 0x7f030078; + public static final int borderWidth = 0x7f03007c; + public static final int borderlessButtonStyle = 0x7f03007d; + public static final int bottomAppBarStyle = 0x7f03007e; + public static final int bottomInsetScrimEnabled = 0x7f03007f; + public static final int bottomNavigationStyle = 0x7f030080; + public static final int bottomSheetDialogTheme = 0x7f030082; + public static final int bottomSheetDragHandleStyle = 0x7f030083; + public static final int bottomSheetStyle = 0x7f030084; + public static final int boxBackgroundColor = 0x7f030085; + public static final int boxBackgroundMode = 0x7f030086; + public static final int boxCollapsedPaddingTop = 0x7f030087; + public static final int boxCornerRadiusBottomEnd = 0x7f030088; + public static final int boxCornerRadiusBottomStart = 0x7f030089; + public static final int boxCornerRadiusTopEnd = 0x7f03008a; + public static final int boxCornerRadiusTopStart = 0x7f03008b; + public static final int boxStrokeColor = 0x7f03008c; + public static final int boxStrokeErrorColor = 0x7f03008d; + public static final int boxStrokeWidth = 0x7f03008e; + public static final int boxStrokeWidthFocused = 0x7f03008f; + public static final int brightness = 0x7f030090; + public static final int buttonBarButtonStyle = 0x7f030091; + public static final int buttonBarNegativeButtonStyle = 0x7f030092; + public static final int buttonBarNeutralButtonStyle = 0x7f030093; + public static final int buttonBarPositiveButtonStyle = 0x7f030094; + public static final int buttonBarStyle = 0x7f030095; + public static final int buttonCompat = 0x7f030096; + public static final int buttonGravity = 0x7f030097; + public static final int buttonIcon = 0x7f030098; + public static final int buttonIconDimen = 0x7f030099; + public static final int buttonIconTint = 0x7f03009a; + public static final int buttonIconTintMode = 0x7f03009b; + public static final int buttonPanelSideLayout = 0x7f03009c; + public static final int buttonStyle = 0x7f03009d; + public static final int buttonStyleSmall = 0x7f03009e; + public static final int buttonTint = 0x7f03009f; + public static final int buttonTintMode = 0x7f0300a0; + public static final int cardBackgroundColor = 0x7f0300a1; + public static final int cardCornerRadius = 0x7f0300a2; + public static final int cardElevation = 0x7f0300a3; + public static final int cardForegroundColor = 0x7f0300a4; + public static final int cardMaxElevation = 0x7f0300a5; + public static final int cardPreventCornerOverlap = 0x7f0300a6; + public static final int cardUseCompatPadding = 0x7f0300a7; + public static final int cardViewStyle = 0x7f0300a8; + public static final int carousel_alignment = 0x7f0300a9; + public static final int centerIfNoTextEnabled = 0x7f0300b4; + public static final int chainUseRtl = 0x7f0300b5; + public static final int checkMarkCompat = 0x7f0300b6; + public static final int checkMarkTint = 0x7f0300b7; + public static final int checkMarkTintMode = 0x7f0300b8; + public static final int checkboxStyle = 0x7f0300b9; + public static final int checkedButton = 0x7f0300ba; + public static final int checkedChip = 0x7f0300bb; + public static final int checkedIcon = 0x7f0300bc; + public static final int checkedIconEnabled = 0x7f0300bd; + public static final int checkedIconGravity = 0x7f0300be; + public static final int checkedIconMargin = 0x7f0300bf; + public static final int checkedIconSize = 0x7f0300c0; + public static final int checkedIconTint = 0x7f0300c1; + public static final int checkedIconVisible = 0x7f0300c2; + public static final int checkedState = 0x7f0300c3; + public static final int checkedTextViewStyle = 0x7f0300c4; + public static final int chipBackgroundColor = 0x7f0300c5; + public static final int chipCornerRadius = 0x7f0300c6; + public static final int chipEndPadding = 0x7f0300c7; + public static final int chipGroupStyle = 0x7f0300c8; + public static final int chipIcon = 0x7f0300c9; + public static final int chipIconEnabled = 0x7f0300ca; + public static final int chipIconSize = 0x7f0300cb; + public static final int chipIconTint = 0x7f0300cc; + public static final int chipIconVisible = 0x7f0300cd; + public static final int chipMinHeight = 0x7f0300ce; + public static final int chipMinTouchTargetSize = 0x7f0300cf; + public static final int chipSpacing = 0x7f0300d0; + public static final int chipSpacingHorizontal = 0x7f0300d1; + public static final int chipSpacingVertical = 0x7f0300d2; + public static final int chipStandaloneStyle = 0x7f0300d3; + public static final int chipStartPadding = 0x7f0300d4; + public static final int chipStrokeColor = 0x7f0300d5; + public static final int chipStrokeWidth = 0x7f0300d6; + public static final int chipStyle = 0x7f0300d7; + public static final int chipSurfaceColor = 0x7f0300d8; + public static final int circleRadius = 0x7f0300d9; + public static final int circularProgressIndicatorStyle = 0x7f0300da; + public static final int clickAction = 0x7f0300e2; + public static final int clockFaceBackgroundColor = 0x7f0300e3; + public static final int clockHandColor = 0x7f0300e4; + public static final int clockIcon = 0x7f0300e5; + public static final int clockNumberTextColor = 0x7f0300e6; + public static final int closeIcon = 0x7f0300e7; + public static final int closeIconEnabled = 0x7f0300e8; + public static final int closeIconEndPadding = 0x7f0300e9; + public static final int closeIconSize = 0x7f0300ea; + public static final int closeIconStartPadding = 0x7f0300eb; + public static final int closeIconTint = 0x7f0300ec; + public static final int closeIconVisible = 0x7f0300ed; + public static final int closeItemLayout = 0x7f0300ee; + public static final int collapseContentDescription = 0x7f0300ef; + public static final int collapseIcon = 0x7f0300f0; + public static final int collapsedSize = 0x7f0300f1; + public static final int collapsedTitleGravity = 0x7f0300f2; + public static final int collapsedTitleTextAppearance = 0x7f0300f3; + public static final int collapsedTitleTextColor = 0x7f0300f4; + public static final int collapsingToolbarLayoutLargeSize = 0x7f0300f5; + public static final int collapsingToolbarLayoutLargeStyle = 0x7f0300f6; + public static final int collapsingToolbarLayoutMediumSize = 0x7f0300f7; + public static final int collapsingToolbarLayoutMediumStyle = 0x7f0300f8; + public static final int collapsingToolbarLayoutStyle = 0x7f0300f9; + public static final int color = 0x7f0300fb; + public static final int colorAccent = 0x7f0300fc; + public static final int colorBackgroundFloating = 0x7f0300fd; + public static final int colorButtonNormal = 0x7f0300fe; + public static final int colorContainer = 0x7f0300ff; + public static final int colorControlActivated = 0x7f030100; + public static final int colorControlHighlight = 0x7f030101; + public static final int colorControlNormal = 0x7f030102; + public static final int colorError = 0x7f030103; + public static final int colorErrorContainer = 0x7f030104; + public static final int colorOnBackground = 0x7f030105; + public static final int colorOnContainer = 0x7f030106; + public static final int colorOnContainerUnchecked = 0x7f030107; + public static final int colorOnError = 0x7f030108; + public static final int colorOnErrorContainer = 0x7f030109; + public static final int colorOnPrimary = 0x7f03010a; + public static final int colorOnPrimaryContainer = 0x7f03010b; + public static final int colorOnPrimaryFixed = 0x7f03010c; + public static final int colorOnPrimaryFixedVariant = 0x7f03010d; + public static final int colorOnPrimarySurface = 0x7f03010e; + public static final int colorOnSecondary = 0x7f03010f; + public static final int colorOnSecondaryContainer = 0x7f030110; + public static final int colorOnSecondaryFixed = 0x7f030111; + public static final int colorOnSecondaryFixedVariant = 0x7f030112; + public static final int colorOnSurface = 0x7f030113; + public static final int colorOnSurfaceInverse = 0x7f030114; + public static final int colorOnSurfaceVariant = 0x7f030115; + public static final int colorOnTertiary = 0x7f030116; + public static final int colorOnTertiaryContainer = 0x7f030117; + public static final int colorOnTertiaryFixed = 0x7f030118; + public static final int colorOnTertiaryFixedVariant = 0x7f030119; + public static final int colorOutline = 0x7f03011a; + public static final int colorOutlineVariant = 0x7f03011b; + public static final int colorPrimary = 0x7f03011c; + public static final int colorPrimaryContainer = 0x7f03011d; + public static final int colorPrimaryDark = 0x7f03011e; + public static final int colorPrimaryFixed = 0x7f03011f; + public static final int colorPrimaryFixedDim = 0x7f030120; + public static final int colorPrimaryInverse = 0x7f030121; + public static final int colorPrimarySurface = 0x7f030122; + public static final int colorPrimaryVariant = 0x7f030123; + public static final int colorSecondary = 0x7f030124; + public static final int colorSecondaryContainer = 0x7f030125; + public static final int colorSecondaryFixed = 0x7f030126; + public static final int colorSecondaryFixedDim = 0x7f030127; + public static final int colorSecondaryVariant = 0x7f030128; + public static final int colorSurface = 0x7f030129; + public static final int colorSurfaceBright = 0x7f03012a; + public static final int colorSurfaceContainer = 0x7f03012b; + public static final int colorSurfaceContainerHigh = 0x7f03012c; + public static final int colorSurfaceContainerHighest = 0x7f03012d; + public static final int colorSurfaceContainerLow = 0x7f03012e; + public static final int colorSurfaceContainerLowest = 0x7f03012f; + public static final int colorSurfaceDim = 0x7f030130; + public static final int colorSurfaceInverse = 0x7f030131; + public static final int colorSurfaceVariant = 0x7f030132; + public static final int colorSwitchThumbNormal = 0x7f030133; + public static final int colorTertiary = 0x7f030134; + public static final int colorTertiaryContainer = 0x7f030135; + public static final int colorTertiaryFixed = 0x7f030136; + public static final int colorTertiaryFixedDim = 0x7f030137; + public static final int commitIcon = 0x7f030138; + public static final int compatShadowEnabled = 0x7f030139; + public static final int constraintSet = 0x7f03013b; + public static final int constraintSetEnd = 0x7f03013c; + public static final int constraintSetStart = 0x7f03013d; + public static final int constraint_referenced_ids = 0x7f03013e; + public static final int constraints = 0x7f030140; + public static final int content = 0x7f030141; + public static final int contentDescription = 0x7f030142; + public static final int contentInsetEnd = 0x7f030143; + public static final int contentInsetEndWithActions = 0x7f030144; + public static final int contentInsetLeft = 0x7f030145; + public static final int contentInsetRight = 0x7f030146; + public static final int contentInsetStart = 0x7f030147; + public static final int contentInsetStartWithNavigation = 0x7f030148; + public static final int contentPadding = 0x7f030149; + public static final int contentPaddingBottom = 0x7f03014a; + public static final int contentPaddingEnd = 0x7f03014b; + public static final int contentPaddingLeft = 0x7f03014c; + public static final int contentPaddingRight = 0x7f03014d; + public static final int contentPaddingStart = 0x7f03014e; + public static final int contentPaddingTop = 0x7f03014f; + public static final int contentScrim = 0x7f030150; + public static final int contrast = 0x7f030151; + public static final int controlBackground = 0x7f030152; + public static final int coordinatorLayoutStyle = 0x7f030153; + public static final int coplanarSiblingViewId = 0x7f030154; + public static final int cornerFamily = 0x7f030155; + public static final int cornerFamilyBottomLeft = 0x7f030156; + public static final int cornerFamilyBottomRight = 0x7f030157; + public static final int cornerFamilyTopLeft = 0x7f030158; + public static final int cornerFamilyTopRight = 0x7f030159; + public static final int cornerRadius = 0x7f03015a; + public static final int cornerSize = 0x7f03015b; + public static final int cornerSizeBottomLeft = 0x7f03015c; + public static final int cornerSizeBottomRight = 0x7f03015d; + public static final int cornerSizeTopLeft = 0x7f03015e; + public static final int cornerSizeTopRight = 0x7f03015f; + public static final int counterEnabled = 0x7f030160; + public static final int counterMaxLength = 0x7f030161; + public static final int counterOverflowTextAppearance = 0x7f030162; + public static final int counterOverflowTextColor = 0x7f030163; + public static final int counterTextAppearance = 0x7f030164; + public static final int counterTextColor = 0x7f030165; + public static final int crossfade = 0x7f030166; + public static final int currentState = 0x7f030167; + public static final int cursorColor = 0x7f030168; + public static final int cursorErrorColor = 0x7f030169; + public static final int curveFit = 0x7f03016a; + public static final int customBoolean = 0x7f03016b; + public static final int customColorDrawableValue = 0x7f03016c; + public static final int customColorValue = 0x7f03016d; + public static final int customDimension = 0x7f03016e; + public static final int customFloatValue = 0x7f03016f; + public static final int customIntegerValue = 0x7f030170; + public static final int customNavigationLayout = 0x7f030171; + public static final int customPixelDimension = 0x7f030172; + public static final int customStringValue = 0x7f030174; + public static final int dayInvalidStyle = 0x7f030177; + public static final int daySelectedStyle = 0x7f030178; + public static final int dayStyle = 0x7f030179; + public static final int dayTodayStyle = 0x7f03017a; + public static final int defaultDuration = 0x7f03017b; + public static final int defaultMarginsEnabled = 0x7f03017c; + public static final int defaultQueryHint = 0x7f03017e; + public static final int defaultScrollFlagsEnabled = 0x7f03017f; + public static final int defaultState = 0x7f030180; + public static final int deltaPolarAngle = 0x7f030181; + public static final int deltaPolarRadius = 0x7f030182; + public static final int deriveConstraintsFrom = 0x7f030183; + public static final int dialogCornerRadius = 0x7f030185; + public static final int dialogPreferredPadding = 0x7f030186; + public static final int dialogTheme = 0x7f030187; + public static final int displayOptions = 0x7f030188; + public static final int divider = 0x7f030189; + public static final int dividerColor = 0x7f03018a; + public static final int dividerHorizontal = 0x7f03018b; + public static final int dividerInsetEnd = 0x7f03018c; + public static final int dividerInsetStart = 0x7f03018d; + public static final int dividerPadding = 0x7f03018e; + public static final int dividerThickness = 0x7f03018f; + public static final int dividerVertical = 0x7f030190; + public static final int dragDirection = 0x7f030191; + public static final int dragScale = 0x7f030192; + public static final int dragThreshold = 0x7f030193; + public static final int drawPath = 0x7f030194; + public static final int drawableBottomCompat = 0x7f030195; + public static final int drawableEndCompat = 0x7f030196; + public static final int drawableLeftCompat = 0x7f030197; + public static final int drawableRightCompat = 0x7f030198; + public static final int drawableSize = 0x7f030199; + public static final int drawableStartCompat = 0x7f03019a; + public static final int drawableTint = 0x7f03019b; + public static final int drawableTintMode = 0x7f03019c; + public static final int drawableTopCompat = 0x7f03019d; + public static final int drawerArrowStyle = 0x7f03019e; + public static final int drawerLayoutCornerSize = 0x7f03019f; + public static final int drawerLayoutStyle = 0x7f0301a0; + public static final int dropDownBackgroundTint = 0x7f0301a1; + public static final int dropDownListViewStyle = 0x7f0301a2; + public static final int dropdownListPreferredItemHeight = 0x7f0301a3; + public static final int duration = 0x7f0301a4; + public static final int dynamicColorThemeOverlay = 0x7f0301a5; + public static final int editTextBackground = 0x7f0301a6; + public static final int editTextColor = 0x7f0301a7; + public static final int editTextStyle = 0x7f0301a8; + public static final int elevation = 0x7f0301a9; + public static final int elevationOverlayAccentColor = 0x7f0301aa; + public static final int elevationOverlayColor = 0x7f0301ab; + public static final int elevationOverlayEnabled = 0x7f0301ac; + public static final int emojiCompatEnabled = 0x7f0301ad; + public static final int enableEdgeToEdge = 0x7f0301ae; + public static final int endIconCheckable = 0x7f0301af; + public static final int endIconContentDescription = 0x7f0301b0; + public static final int endIconDrawable = 0x7f0301b1; + public static final int endIconMinSize = 0x7f0301b2; + public static final int endIconMode = 0x7f0301b3; + public static final int endIconScaleType = 0x7f0301b4; + public static final int endIconTint = 0x7f0301b5; + public static final int endIconTintMode = 0x7f0301b6; + public static final int enforceMaterialTheme = 0x7f0301b7; + public static final int enforceTextAppearance = 0x7f0301b8; + public static final int ensureMinTouchTargetSize = 0x7f0301b9; + public static final int errorAccessibilityLabel = 0x7f0301bb; + public static final int errorAccessibilityLiveRegion = 0x7f0301bc; + public static final int errorContentDescription = 0x7f0301bd; + public static final int errorEnabled = 0x7f0301be; + public static final int errorIconDrawable = 0x7f0301bf; + public static final int errorIconTint = 0x7f0301c0; + public static final int errorIconTintMode = 0x7f0301c1; + public static final int errorShown = 0x7f0301c2; + public static final int errorTextAppearance = 0x7f0301c3; + public static final int errorTextColor = 0x7f0301c4; + public static final int expandActivityOverflowButtonDrawable = 0x7f0301c6; + public static final int expanded = 0x7f0301c7; + public static final int expandedHintEnabled = 0x7f0301c8; + public static final int expandedTitleGravity = 0x7f0301c9; + public static final int expandedTitleMargin = 0x7f0301ca; + public static final int expandedTitleMarginBottom = 0x7f0301cb; + public static final int expandedTitleMarginEnd = 0x7f0301cc; + public static final int expandedTitleMarginStart = 0x7f0301cd; + public static final int expandedTitleMarginTop = 0x7f0301ce; + public static final int expandedTitleTextAppearance = 0x7f0301cf; + public static final int expandedTitleTextColor = 0x7f0301d0; + public static final int extendMotionSpec = 0x7f0301d1; + public static final int extendStrategy = 0x7f0301d2; + public static final int extendedFloatingActionButtonPrimaryStyle = 0x7f0301d3; + public static final int extendedFloatingActionButtonSecondaryStyle = 0x7f0301d4; + public static final int extendedFloatingActionButtonStyle = 0x7f0301d5; + public static final int extendedFloatingActionButtonSurfaceStyle = 0x7f0301d6; + public static final int extendedFloatingActionButtonTertiaryStyle = 0x7f0301d7; + public static final int extraMultilineHeightEnabled = 0x7f0301d8; + public static final int fabAlignmentMode = 0x7f0301d9; + public static final int fabAlignmentModeEndMargin = 0x7f0301da; + public static final int fabAnchorMode = 0x7f0301db; + public static final int fabAnimationMode = 0x7f0301dc; + public static final int fabCradleMargin = 0x7f0301dd; + public static final int fabCradleRoundedCornerRadius = 0x7f0301de; + public static final int fabCradleVerticalOffset = 0x7f0301df; + public static final int fabCustomSize = 0x7f0301e0; + public static final int fabSize = 0x7f0301e1; + public static final int fastScrollEnabled = 0x7f0301e2; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0301e3; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0301e4; + public static final int fastScrollVerticalThumbDrawable = 0x7f0301e5; + public static final int fastScrollVerticalTrackDrawable = 0x7f0301e6; + public static final int firstBaselineToTopHeight = 0x7f0301ea; + public static final int floatingActionButtonLargePrimaryStyle = 0x7f0301eb; + public static final int floatingActionButtonLargeSecondaryStyle = 0x7f0301ec; + public static final int floatingActionButtonLargeStyle = 0x7f0301ed; + public static final int floatingActionButtonLargeSurfaceStyle = 0x7f0301ee; + public static final int floatingActionButtonLargeTertiaryStyle = 0x7f0301ef; + public static final int floatingActionButtonPrimaryStyle = 0x7f0301f0; + public static final int floatingActionButtonSecondaryStyle = 0x7f0301f1; + public static final int floatingActionButtonSmallPrimaryStyle = 0x7f0301f2; + public static final int floatingActionButtonSmallSecondaryStyle = 0x7f0301f3; + public static final int floatingActionButtonSmallStyle = 0x7f0301f4; + public static final int floatingActionButtonSmallSurfaceStyle = 0x7f0301f5; + public static final int floatingActionButtonSmallTertiaryStyle = 0x7f0301f6; + public static final int floatingActionButtonStyle = 0x7f0301f7; + public static final int floatingActionButtonSurfaceStyle = 0x7f0301f8; + public static final int floatingActionButtonTertiaryStyle = 0x7f0301f9; + public static final int flow_firstHorizontalBias = 0x7f0301fa; + public static final int flow_firstHorizontalStyle = 0x7f0301fb; + public static final int flow_firstVerticalBias = 0x7f0301fc; + public static final int flow_firstVerticalStyle = 0x7f0301fd; + public static final int flow_horizontalAlign = 0x7f0301fe; + public static final int flow_horizontalBias = 0x7f0301ff; + public static final int flow_horizontalGap = 0x7f030200; + public static final int flow_horizontalStyle = 0x7f030201; + public static final int flow_lastHorizontalBias = 0x7f030202; + public static final int flow_lastHorizontalStyle = 0x7f030203; + public static final int flow_lastVerticalBias = 0x7f030204; + public static final int flow_lastVerticalStyle = 0x7f030205; + public static final int flow_maxElementsWrap = 0x7f030206; + public static final int flow_padding = 0x7f030207; + public static final int flow_verticalAlign = 0x7f030208; + public static final int flow_verticalBias = 0x7f030209; + public static final int flow_verticalGap = 0x7f03020a; + public static final int flow_verticalStyle = 0x7f03020b; + public static final int flow_wrapMode = 0x7f03020c; + public static final int font = 0x7f03020d; + public static final int fontFamily = 0x7f03020e; + public static final int fontProviderAuthority = 0x7f03020f; + public static final int fontProviderCerts = 0x7f030210; + public static final int fontProviderFetchStrategy = 0x7f030212; + public static final int fontProviderFetchTimeout = 0x7f030213; + public static final int fontProviderPackage = 0x7f030214; + public static final int fontProviderQuery = 0x7f030215; + public static final int fontProviderSystemFontFamily = 0x7f030216; + public static final int fontStyle = 0x7f030217; + public static final int fontVariationSettings = 0x7f030218; + public static final int fontWeight = 0x7f030219; + public static final int forceApplySystemWindowInsetTop = 0x7f03021a; + public static final int forceDefaultNavigationOnClickListener = 0x7f03021b; + public static final int foregroundInsidePadding = 0x7f03021c; + public static final int framePosition = 0x7f03021d; + public static final int gapBetweenBars = 0x7f03021e; + public static final int gestureInsetBottomIgnored = 0x7f03021f; + public static final int goIcon = 0x7f030220; + public static final int haloColor = 0x7f03022e; + public static final int haloRadius = 0x7f03022f; + public static final int headerLayout = 0x7f030230; + public static final int height = 0x7f030231; + public static final int helperText = 0x7f030232; + public static final int helperTextEnabled = 0x7f030233; + public static final int helperTextTextAppearance = 0x7f030234; + public static final int helperTextTextColor = 0x7f030235; + public static final int hideAnimationBehavior = 0x7f030236; + public static final int hideMotionSpec = 0x7f030237; + public static final int hideNavigationIcon = 0x7f030238; + public static final int hideOnContentScroll = 0x7f030239; + public static final int hideOnScroll = 0x7f03023a; + public static final int hintAnimationEnabled = 0x7f03023b; + public static final int hintEnabled = 0x7f03023c; + public static final int hintTextAppearance = 0x7f03023d; + public static final int hintTextColor = 0x7f03023e; + public static final int homeAsUpIndicator = 0x7f03023f; + public static final int homeLayout = 0x7f030240; + public static final int horizontalOffset = 0x7f030241; + public static final int horizontalOffsetWithText = 0x7f030242; + public static final int hoveredFocusedTranslationZ = 0x7f030243; + public static final int icon = 0x7f030244; + public static final int iconEndPadding = 0x7f030245; + public static final int iconGravity = 0x7f030246; + public static final int iconPadding = 0x7f030247; + public static final int iconSize = 0x7f030248; + public static final int iconStartPadding = 0x7f030249; + public static final int iconTint = 0x7f03024a; + public static final int iconTintMode = 0x7f03024b; + public static final int iconifiedByDefault = 0x7f03024c; + public static final int imageButtonStyle = 0x7f03024f; + public static final int indeterminateAnimationType = 0x7f030254; + public static final int indeterminateProgressStyle = 0x7f030255; + public static final int indicatorColor = 0x7f030256; + public static final int indicatorDirectionCircular = 0x7f030257; + public static final int indicatorDirectionLinear = 0x7f030258; + public static final int indicatorInset = 0x7f030259; + public static final int indicatorSize = 0x7f03025a; + public static final int indicatorTrackGapSize = 0x7f03025b; + public static final int initialActivityCount = 0x7f03025c; + public static final int insetForeground = 0x7f03025d; + public static final int isLightTheme = 0x7f03025e; + public static final int isMaterial3DynamicColorApplied = 0x7f03025f; + public static final int isMaterial3Theme = 0x7f030260; + public static final int isMaterialTheme = 0x7f030261; + public static final int itemActiveIndicatorStyle = 0x7f030262; + public static final int itemBackground = 0x7f030263; + public static final int itemFillColor = 0x7f030264; + public static final int itemHorizontalPadding = 0x7f030265; + public static final int itemHorizontalTranslationEnabled = 0x7f030266; + public static final int itemIconPadding = 0x7f030267; + public static final int itemIconSize = 0x7f030268; + public static final int itemIconTint = 0x7f030269; + public static final int itemMaxLines = 0x7f03026a; + public static final int itemMinHeight = 0x7f03026b; + public static final int itemPadding = 0x7f03026c; + public static final int itemPaddingBottom = 0x7f03026d; + public static final int itemPaddingTop = 0x7f03026e; + public static final int itemRippleColor = 0x7f03026f; + public static final int itemShapeAppearance = 0x7f030270; + public static final int itemShapeAppearanceOverlay = 0x7f030271; + public static final int itemShapeFillColor = 0x7f030272; + public static final int itemShapeInsetBottom = 0x7f030273; + public static final int itemShapeInsetEnd = 0x7f030274; + public static final int itemShapeInsetStart = 0x7f030275; + public static final int itemShapeInsetTop = 0x7f030276; + public static final int itemSpacing = 0x7f030277; + public static final int itemStrokeColor = 0x7f030278; + public static final int itemStrokeWidth = 0x7f030279; + public static final int itemTextAppearance = 0x7f03027a; + public static final int itemTextAppearanceActive = 0x7f03027b; + public static final int itemTextAppearanceActiveBoldEnabled = 0x7f03027c; + public static final int itemTextAppearanceInactive = 0x7f03027d; + public static final int itemTextColor = 0x7f03027e; + public static final int itemVerticalPadding = 0x7f03027f; + public static final int keyPositionType = 0x7f030280; + public static final int keyboardIcon = 0x7f030281; + public static final int keylines = 0x7f030282; + public static final int lStar = 0x7f030283; + public static final int labelBehavior = 0x7f030284; + public static final int labelStyle = 0x7f030285; + public static final int labelVisibilityMode = 0x7f030286; + public static final int largeFontVerticalOffsetAdjustment = 0x7f030287; + public static final int lastBaselineToBottomHeight = 0x7f030288; + public static final int lastItemDecorated = 0x7f030289; + public static final int layout = 0x7f03028b; + public static final int layoutDescription = 0x7f03028c; + public static final int layoutDuringTransition = 0x7f03028d; + public static final int layoutManager = 0x7f03028e; + public static final int layout_anchor = 0x7f03028f; + public static final int layout_anchorGravity = 0x7f030290; + public static final int layout_behavior = 0x7f030291; + public static final int layout_collapseMode = 0x7f030292; + public static final int layout_collapseParallaxMultiplier = 0x7f030293; + public static final int layout_constrainedHeight = 0x7f030294; + public static final int layout_constrainedWidth = 0x7f030295; + public static final int layout_constraintBaseline_creator = 0x7f030296; + public static final int layout_constraintBaseline_toBaselineOf = 0x7f030297; + public static final int layout_constraintBottom_creator = 0x7f03029a; + public static final int layout_constraintBottom_toBottomOf = 0x7f03029b; + public static final int layout_constraintBottom_toTopOf = 0x7f03029c; + public static final int layout_constraintCircle = 0x7f03029d; + public static final int layout_constraintCircleAngle = 0x7f03029e; + public static final int layout_constraintCircleRadius = 0x7f03029f; + public static final int layout_constraintDimensionRatio = 0x7f0302a0; + public static final int layout_constraintEnd_toEndOf = 0x7f0302a1; + public static final int layout_constraintEnd_toStartOf = 0x7f0302a2; + public static final int layout_constraintGuide_begin = 0x7f0302a3; + public static final int layout_constraintGuide_end = 0x7f0302a4; + public static final int layout_constraintGuide_percent = 0x7f0302a5; + public static final int layout_constraintHeight_default = 0x7f0302a7; + public static final int layout_constraintHeight_max = 0x7f0302a8; + public static final int layout_constraintHeight_min = 0x7f0302a9; + public static final int layout_constraintHeight_percent = 0x7f0302aa; + public static final int layout_constraintHorizontal_bias = 0x7f0302ab; + public static final int layout_constraintHorizontal_chainStyle = 0x7f0302ac; + public static final int layout_constraintHorizontal_weight = 0x7f0302ad; + public static final int layout_constraintLeft_creator = 0x7f0302ae; + public static final int layout_constraintLeft_toLeftOf = 0x7f0302af; + public static final int layout_constraintLeft_toRightOf = 0x7f0302b0; + public static final int layout_constraintRight_creator = 0x7f0302b1; + public static final int layout_constraintRight_toLeftOf = 0x7f0302b2; + public static final int layout_constraintRight_toRightOf = 0x7f0302b3; + public static final int layout_constraintStart_toEndOf = 0x7f0302b4; + public static final int layout_constraintStart_toStartOf = 0x7f0302b5; + public static final int layout_constraintTag = 0x7f0302b6; + public static final int layout_constraintTop_creator = 0x7f0302b7; + public static final int layout_constraintTop_toBottomOf = 0x7f0302b8; + public static final int layout_constraintTop_toTopOf = 0x7f0302b9; + public static final int layout_constraintVertical_bias = 0x7f0302ba; + public static final int layout_constraintVertical_chainStyle = 0x7f0302bb; + public static final int layout_constraintVertical_weight = 0x7f0302bc; + public static final int layout_constraintWidth_default = 0x7f0302be; + public static final int layout_constraintWidth_max = 0x7f0302bf; + public static final int layout_constraintWidth_min = 0x7f0302c0; + public static final int layout_constraintWidth_percent = 0x7f0302c1; + public static final int layout_dodgeInsetEdges = 0x7f0302c2; + public static final int layout_editor_absoluteX = 0x7f0302c3; + public static final int layout_editor_absoluteY = 0x7f0302c4; + public static final int layout_goneMarginBottom = 0x7f0302c6; + public static final int layout_goneMarginEnd = 0x7f0302c7; + public static final int layout_goneMarginLeft = 0x7f0302c8; + public static final int layout_goneMarginRight = 0x7f0302c9; + public static final int layout_goneMarginStart = 0x7f0302ca; + public static final int layout_goneMarginTop = 0x7f0302cb; + public static final int layout_insetEdge = 0x7f0302cc; + public static final int layout_keyline = 0x7f0302cd; + public static final int layout_optimizationLevel = 0x7f0302cf; + public static final int layout_scrollEffect = 0x7f0302d0; + public static final int layout_scrollFlags = 0x7f0302d1; + public static final int layout_scrollInterpolator = 0x7f0302d2; + public static final int liftOnScroll = 0x7f0302d4; + public static final int liftOnScrollColor = 0x7f0302d5; + public static final int liftOnScrollTargetViewId = 0x7f0302d6; + public static final int limitBoundsTo = 0x7f0302d7; + public static final int lineHeight = 0x7f0302d8; + public static final int lineSpacing = 0x7f0302d9; + public static final int linearProgressIndicatorStyle = 0x7f0302da; + public static final int listChoiceBackgroundIndicator = 0x7f0302db; + public static final int listChoiceIndicatorMultipleAnimated = 0x7f0302dc; + public static final int listChoiceIndicatorSingleAnimated = 0x7f0302dd; + public static final int listDividerAlertDialog = 0x7f0302de; + public static final int listItemLayout = 0x7f0302df; + public static final int listLayout = 0x7f0302e0; + public static final int listMenuViewStyle = 0x7f0302e1; + public static final int listPopupWindowStyle = 0x7f0302e2; + public static final int listPreferredItemHeight = 0x7f0302e3; + public static final int listPreferredItemHeightLarge = 0x7f0302e4; + public static final int listPreferredItemHeightSmall = 0x7f0302e5; + public static final int listPreferredItemPaddingEnd = 0x7f0302e6; + public static final int listPreferredItemPaddingLeft = 0x7f0302e7; + public static final int listPreferredItemPaddingRight = 0x7f0302e8; + public static final int listPreferredItemPaddingStart = 0x7f0302e9; + public static final int logo = 0x7f0302ea; + public static final int logoAdjustViewBounds = 0x7f0302eb; + public static final int logoDescription = 0x7f0302ec; + public static final int logoScaleType = 0x7f0302ed; + public static final int marginHorizontal = 0x7f0302ee; + public static final int marginLeftSystemWindowInsets = 0x7f0302ef; + public static final int marginRightSystemWindowInsets = 0x7f0302f0; + public static final int marginTopSystemWindowInsets = 0x7f0302f1; + public static final int materialAlertDialogBodyTextStyle = 0x7f0302f2; + public static final int materialAlertDialogButtonSpacerVisibility = 0x7f0302f3; + public static final int materialAlertDialogTheme = 0x7f0302f4; + public static final int materialAlertDialogTitleIconStyle = 0x7f0302f5; + public static final int materialAlertDialogTitlePanelStyle = 0x7f0302f6; + public static final int materialAlertDialogTitleTextStyle = 0x7f0302f7; + public static final int materialButtonOutlinedStyle = 0x7f0302f8; + public static final int materialButtonStyle = 0x7f0302f9; + public static final int materialButtonToggleGroupStyle = 0x7f0302fa; + public static final int materialCalendarDay = 0x7f0302fb; + public static final int materialCalendarDayOfWeekLabel = 0x7f0302fc; + public static final int materialCalendarFullscreenTheme = 0x7f0302fd; + public static final int materialCalendarHeaderCancelButton = 0x7f0302fe; + public static final int materialCalendarHeaderConfirmButton = 0x7f0302ff; + public static final int materialCalendarHeaderDivider = 0x7f030300; + public static final int materialCalendarHeaderLayout = 0x7f030301; + public static final int materialCalendarHeaderSelection = 0x7f030302; + public static final int materialCalendarHeaderTitle = 0x7f030303; + public static final int materialCalendarHeaderToggleButton = 0x7f030304; + public static final int materialCalendarMonth = 0x7f030305; + public static final int materialCalendarMonthNavigationButton = 0x7f030306; + public static final int materialCalendarStyle = 0x7f030307; + public static final int materialCalendarTheme = 0x7f030308; + public static final int materialCalendarYearNavigationButton = 0x7f030309; + public static final int materialCardViewElevatedStyle = 0x7f03030a; + public static final int materialCardViewFilledStyle = 0x7f03030b; + public static final int materialCardViewOutlinedStyle = 0x7f03030c; + public static final int materialCardViewStyle = 0x7f03030d; + public static final int materialCircleRadius = 0x7f03030e; + public static final int materialClockStyle = 0x7f03030f; + public static final int materialDisplayDividerStyle = 0x7f030310; + public static final int materialDividerHeavyStyle = 0x7f030311; + public static final int materialDividerStyle = 0x7f030312; + public static final int materialIconButtonFilledStyle = 0x7f030313; + public static final int materialIconButtonFilledTonalStyle = 0x7f030314; + public static final int materialIconButtonOutlinedStyle = 0x7f030315; + public static final int materialIconButtonStyle = 0x7f030316; + public static final int materialSearchBarStyle = 0x7f030317; + public static final int materialSearchViewPrefixStyle = 0x7f030318; + public static final int materialSearchViewStyle = 0x7f030319; + public static final int materialSearchViewToolbarHeight = 0x7f03031a; + public static final int materialSearchViewToolbarStyle = 0x7f03031b; + public static final int materialSwitchStyle = 0x7f03031c; + public static final int materialThemeOverlay = 0x7f03031d; + public static final int materialTimePickerStyle = 0x7f03031e; + public static final int materialTimePickerTheme = 0x7f03031f; + public static final int materialTimePickerTitleStyle = 0x7f030320; + public static final int maxAcceleration = 0x7f030323; + public static final int maxActionInlineWidth = 0x7f030324; + public static final int maxButtonHeight = 0x7f030325; + public static final int maxCharacterCount = 0x7f030326; + public static final int maxHeight = 0x7f030327; + public static final int maxImageSize = 0x7f030328; + public static final int maxLines = 0x7f030329; + public static final int maxNumber = 0x7f03032a; + public static final int maxVelocity = 0x7f03032b; + public static final int maxWidth = 0x7f03032c; + public static final int measureWithLargestChild = 0x7f03032d; + public static final int menu = 0x7f03032e; + public static final int menuAlignmentMode = 0x7f03032f; + public static final int menuGravity = 0x7f030330; + public static final int minHeight = 0x7f030333; + public static final int minHideDelay = 0x7f030334; + public static final int minSeparation = 0x7f030335; + public static final int minTouchTargetSize = 0x7f030336; + public static final int minWidth = 0x7f030337; + public static final int mock_diagonalsColor = 0x7f030338; + public static final int mock_label = 0x7f030339; + public static final int mock_labelBackgroundColor = 0x7f03033a; + public static final int mock_labelColor = 0x7f03033b; + public static final int mock_showDiagonals = 0x7f03033c; + public static final int mock_showLabel = 0x7f03033d; + public static final int motionDebug = 0x7f03033e; + public static final int motionDurationExtraLong1 = 0x7f03033f; + public static final int motionDurationExtraLong2 = 0x7f030340; + public static final int motionDurationExtraLong3 = 0x7f030341; + public static final int motionDurationExtraLong4 = 0x7f030342; + public static final int motionDurationLong1 = 0x7f030343; + public static final int motionDurationLong2 = 0x7f030344; + public static final int motionDurationLong3 = 0x7f030345; + public static final int motionDurationLong4 = 0x7f030346; + public static final int motionDurationMedium1 = 0x7f030347; + public static final int motionDurationMedium2 = 0x7f030348; + public static final int motionDurationMedium3 = 0x7f030349; + public static final int motionDurationMedium4 = 0x7f03034a; + public static final int motionDurationShort1 = 0x7f03034b; + public static final int motionDurationShort2 = 0x7f03034c; + public static final int motionDurationShort3 = 0x7f03034d; + public static final int motionDurationShort4 = 0x7f03034e; + public static final int motionEasingAccelerated = 0x7f03034f; + public static final int motionEasingDecelerated = 0x7f030350; + public static final int motionEasingEmphasized = 0x7f030351; + public static final int motionEasingEmphasizedAccelerateInterpolator = 0x7f030352; + public static final int motionEasingEmphasizedDecelerateInterpolator = 0x7f030353; + public static final int motionEasingEmphasizedInterpolator = 0x7f030354; + public static final int motionEasingLinear = 0x7f030355; + public static final int motionEasingLinearInterpolator = 0x7f030356; + public static final int motionEasingStandard = 0x7f030357; + public static final int motionEasingStandardAccelerateInterpolator = 0x7f030358; + public static final int motionEasingStandardDecelerateInterpolator = 0x7f030359; + public static final int motionEasingStandardInterpolator = 0x7f03035a; + public static final int motionInterpolator = 0x7f030363; + public static final int motionPath = 0x7f030364; + public static final int motionPathRotate = 0x7f030365; + public static final int motionProgress = 0x7f030366; + public static final int motionStagger = 0x7f030367; + public static final int motionTarget = 0x7f030368; + public static final int motion_postLayoutCollision = 0x7f030369; + public static final int motion_triggerOnCollision = 0x7f03036a; + public static final int moveWhenScrollAtTop = 0x7f03036b; + public static final int multiChoiceItemLayout = 0x7f03036c; + public static final int navigationContentDescription = 0x7f03036e; + public static final int navigationIcon = 0x7f03036f; + public static final int navigationIconTint = 0x7f030370; + public static final int navigationMode = 0x7f030371; + public static final int navigationRailStyle = 0x7f030372; + public static final int navigationViewStyle = 0x7f030373; + public static final int nestedScrollFlags = 0x7f030374; + public static final int nestedScrollViewStyle = 0x7f030375; + public static final int nestedScrollable = 0x7f030376; + public static final int number = 0x7f030378; + public static final int numericModifiers = 0x7f030379; + public static final int offsetAlignmentMode = 0x7f03037a; + public static final int onCross = 0x7f03037b; + public static final int onHide = 0x7f03037c; + public static final int onNegativeCross = 0x7f03037d; + public static final int onPositiveCross = 0x7f03037e; + public static final int onShow = 0x7f03037f; + public static final int onTouchUp = 0x7f030381; + public static final int overlapAnchor = 0x7f030382; + public static final int overlay = 0x7f030383; + public static final int paddingBottomNoButtons = 0x7f030384; + public static final int paddingBottomSystemWindowInsets = 0x7f030385; + public static final int paddingEnd = 0x7f030386; + public static final int paddingLeftSystemWindowInsets = 0x7f030387; + public static final int paddingRightSystemWindowInsets = 0x7f030388; + public static final int paddingStart = 0x7f030389; + public static final int paddingStartSystemWindowInsets = 0x7f03038a; + public static final int paddingTopNoTitle = 0x7f03038b; + public static final int paddingTopSystemWindowInsets = 0x7f03038c; + public static final int panelBackground = 0x7f03038d; + public static final int panelMenuListTheme = 0x7f03038e; + public static final int panelMenuListWidth = 0x7f03038f; + public static final int passwordToggleContentDescription = 0x7f030390; + public static final int passwordToggleDrawable = 0x7f030391; + public static final int passwordToggleEnabled = 0x7f030392; + public static final int passwordToggleTint = 0x7f030393; + public static final int passwordToggleTintMode = 0x7f030394; + public static final int pathMotionArc = 0x7f030395; + public static final int path_percent = 0x7f030396; + public static final int percentHeight = 0x7f030397; + public static final int percentWidth = 0x7f030398; + public static final int percentX = 0x7f030399; + public static final int percentY = 0x7f03039a; + public static final int perpendicularPath_percent = 0x7f03039b; + public static final int pivotAnchor = 0x7f03039c; + public static final int placeholderText = 0x7f03039e; + public static final int placeholderTextAppearance = 0x7f03039f; + public static final int placeholderTextColor = 0x7f0303a0; + public static final int placeholder_emptyVisibility = 0x7f0303a1; + public static final int popupMenuBackground = 0x7f0303a8; + public static final int popupMenuStyle = 0x7f0303a9; + public static final int popupTheme = 0x7f0303aa; + public static final int popupWindowStyle = 0x7f0303ab; + public static final int prefixText = 0x7f0303ac; + public static final int prefixTextAppearance = 0x7f0303ad; + public static final int prefixTextColor = 0x7f0303ae; + public static final int preserveIconSpacing = 0x7f0303af; + public static final int pressedTranslationZ = 0x7f0303b0; + public static final int progressBarPadding = 0x7f0303b2; + public static final int progressBarStyle = 0x7f0303b3; + public static final int queryBackground = 0x7f0303b7; + public static final int queryHint = 0x7f0303b8; + public static final int queryPatterns = 0x7f0303b9; + public static final int radioButtonStyle = 0x7f0303ba; + public static final int rangeFillColor = 0x7f0303bb; + public static final int ratingBarStyle = 0x7f0303bc; + public static final int ratingBarStyleIndicator = 0x7f0303bd; + public static final int ratingBarStyleSmall = 0x7f0303be; + public static final int recyclerViewStyle = 0x7f0303c3; + public static final int region_heightLessThan = 0x7f0303c4; + public static final int region_heightMoreThan = 0x7f0303c5; + public static final int region_widthLessThan = 0x7f0303c6; + public static final int region_widthMoreThan = 0x7f0303c7; + public static final int removeEmbeddedFabElevation = 0x7f0303c8; + public static final int reverseLayout = 0x7f0303ca; + public static final int rippleColor = 0x7f0303cb; + public static final int round = 0x7f0303cd; + public static final int roundPercent = 0x7f0303ce; + public static final int saturation = 0x7f0303d0; + public static final int scrimAnimationDuration = 0x7f0303d2; + public static final int scrimBackground = 0x7f0303d3; + public static final int scrimVisibleHeightTrigger = 0x7f0303d4; + public static final int searchHintIcon = 0x7f0303d6; + public static final int searchIcon = 0x7f0303d7; + public static final int searchPrefixText = 0x7f0303d8; + public static final int searchViewStyle = 0x7f0303d9; + public static final int seekBarStyle = 0x7f0303dc; + public static final int selectableItemBackground = 0x7f0303dd; + public static final int selectableItemBackgroundBorderless = 0x7f0303de; + public static final int selectionRequired = 0x7f0303df; + public static final int selectorSize = 0x7f0303e0; + public static final int shapeAppearance = 0x7f0303e2; + public static final int shapeAppearanceCornerExtraLarge = 0x7f0303e3; + public static final int shapeAppearanceCornerExtraSmall = 0x7f0303e4; + public static final int shapeAppearanceCornerLarge = 0x7f0303e5; + public static final int shapeAppearanceCornerMedium = 0x7f0303e6; + public static final int shapeAppearanceCornerSmall = 0x7f0303e7; + public static final int shapeAppearanceLargeComponent = 0x7f0303e8; + public static final int shapeAppearanceMediumComponent = 0x7f0303e9; + public static final int shapeAppearanceOverlay = 0x7f0303ea; + public static final int shapeAppearanceSmallComponent = 0x7f0303eb; + public static final int shapeCornerFamily = 0x7f0303ec; + public static final int shortcutMatchRequired = 0x7f0303ed; + public static final int shouldRemoveExpandedCorners = 0x7f0303ee; + public static final int showAnimationBehavior = 0x7f0303ef; + public static final int showAsAction = 0x7f0303f0; + public static final int showDelay = 0x7f0303f1; + public static final int showDividers = 0x7f0303f2; + public static final int showMarker = 0x7f0303f3; + public static final int showMotionSpec = 0x7f0303f4; + public static final int showPaths = 0x7f0303f5; + public static final int showText = 0x7f0303f6; + public static final int showTitle = 0x7f0303f7; + public static final int shrinkMotionSpec = 0x7f0303f8; + public static final int sideSheetDialogTheme = 0x7f0303f9; + public static final int sideSheetModalStyle = 0x7f0303fa; + public static final int simpleItemLayout = 0x7f0303fb; + public static final int simpleItemSelectedColor = 0x7f0303fc; + public static final int simpleItemSelectedRippleColor = 0x7f0303fd; + public static final int simpleItems = 0x7f0303fe; + public static final int singleChoiceItemLayout = 0x7f0303ff; + public static final int singleLine = 0x7f030400; + public static final int singleSelection = 0x7f030401; + public static final int sizePercent = 0x7f030402; + public static final int sliderStyle = 0x7f030403; + public static final int snackbarButtonStyle = 0x7f030404; + public static final int snackbarStyle = 0x7f030405; + public static final int snackbarTextViewStyle = 0x7f030406; + public static final int spanCount = 0x7f030407; + public static final int spinBars = 0x7f030408; + public static final int spinnerDropDownItemStyle = 0x7f030409; + public static final int spinnerStyle = 0x7f03040a; + public static final int splitTrack = 0x7f030412; + public static final int srcCompat = 0x7f030418; + public static final int stackFromEnd = 0x7f030419; + public static final int staggered = 0x7f03041a; + public static final int startIconCheckable = 0x7f03041c; + public static final int startIconContentDescription = 0x7f03041d; + public static final int startIconDrawable = 0x7f03041e; + public static final int startIconMinSize = 0x7f03041f; + public static final int startIconScaleType = 0x7f030420; + public static final int startIconTint = 0x7f030421; + public static final int startIconTintMode = 0x7f030422; + public static final int state_above_anchor = 0x7f030424; + public static final int state_collapsed = 0x7f030425; + public static final int state_collapsible = 0x7f030426; + public static final int state_dragged = 0x7f030427; + public static final int state_error = 0x7f030428; + public static final int state_indeterminate = 0x7f030429; + public static final int state_liftable = 0x7f03042a; + public static final int state_lifted = 0x7f03042b; + public static final int state_with_icon = 0x7f03042c; + public static final int statusBarBackground = 0x7f03042d; + public static final int statusBarForeground = 0x7f03042e; + public static final int statusBarScrim = 0x7f03042f; + public static final int strokeColor = 0x7f030431; + public static final int strokeWidth = 0x7f030432; + public static final int subMenuArrow = 0x7f030433; + public static final int subheaderColor = 0x7f030434; + public static final int subheaderInsetEnd = 0x7f030435; + public static final int subheaderInsetStart = 0x7f030436; + public static final int subheaderTextAppearance = 0x7f030437; + public static final int submitBackground = 0x7f030438; + public static final int subtitle = 0x7f030439; + public static final int subtitleCentered = 0x7f03043a; + public static final int subtitleTextAppearance = 0x7f03043b; + public static final int subtitleTextColor = 0x7f03043c; + public static final int subtitleTextStyle = 0x7f03043d; + public static final int suffixText = 0x7f03043e; + public static final int suffixTextAppearance = 0x7f03043f; + public static final int suffixTextColor = 0x7f030440; + public static final int suggestionRowLayout = 0x7f030441; + public static final int switchMinWidth = 0x7f030443; + public static final int switchPadding = 0x7f030444; + public static final int switchStyle = 0x7f030445; + public static final int switchTextAppearance = 0x7f030446; + public static final int tabBackground = 0x7f030447; + public static final int tabContentStart = 0x7f030448; + public static final int tabGravity = 0x7f030449; + public static final int tabIconTint = 0x7f03044a; + public static final int tabIconTintMode = 0x7f03044b; + public static final int tabIndicator = 0x7f03044c; + public static final int tabIndicatorAnimationDuration = 0x7f03044d; + public static final int tabIndicatorAnimationMode = 0x7f03044e; + public static final int tabIndicatorColor = 0x7f03044f; + public static final int tabIndicatorFullWidth = 0x7f030450; + public static final int tabIndicatorGravity = 0x7f030451; + public static final int tabIndicatorHeight = 0x7f030452; + public static final int tabInlineLabel = 0x7f030453; + public static final int tabMaxWidth = 0x7f030454; + public static final int tabMinWidth = 0x7f030455; + public static final int tabMode = 0x7f030456; + public static final int tabPadding = 0x7f030457; + public static final int tabPaddingBottom = 0x7f030458; + public static final int tabPaddingEnd = 0x7f030459; + public static final int tabPaddingStart = 0x7f03045a; + public static final int tabPaddingTop = 0x7f03045b; + public static final int tabRippleColor = 0x7f03045c; + public static final int tabSecondaryStyle = 0x7f03045d; + public static final int tabSelectedTextAppearance = 0x7f03045e; + public static final int tabSelectedTextColor = 0x7f03045f; + public static final int tabStyle = 0x7f030460; + public static final int tabTextAppearance = 0x7f030461; + public static final int tabTextColor = 0x7f030462; + public static final int tabUnboundedRipple = 0x7f030463; + public static final int targetId = 0x7f030465; + public static final int telltales_tailColor = 0x7f030467; + public static final int telltales_tailScale = 0x7f030468; + public static final int telltales_velocityMode = 0x7f030469; + public static final int textAllCaps = 0x7f03046a; + public static final int textAppearanceBody1 = 0x7f03046b; + public static final int textAppearanceBody2 = 0x7f03046c; + public static final int textAppearanceBodyLarge = 0x7f03046d; + public static final int textAppearanceBodyMedium = 0x7f03046e; + public static final int textAppearanceBodySmall = 0x7f03046f; + public static final int textAppearanceButton = 0x7f030470; + public static final int textAppearanceCaption = 0x7f030471; + public static final int textAppearanceDisplayLarge = 0x7f030472; + public static final int textAppearanceDisplayMedium = 0x7f030473; + public static final int textAppearanceDisplaySmall = 0x7f030474; + public static final int textAppearanceHeadline1 = 0x7f030475; + public static final int textAppearanceHeadline2 = 0x7f030476; + public static final int textAppearanceHeadline3 = 0x7f030477; + public static final int textAppearanceHeadline4 = 0x7f030478; + public static final int textAppearanceHeadline5 = 0x7f030479; + public static final int textAppearanceHeadline6 = 0x7f03047a; + public static final int textAppearanceHeadlineLarge = 0x7f03047b; + public static final int textAppearanceHeadlineMedium = 0x7f03047c; + public static final int textAppearanceHeadlineSmall = 0x7f03047d; + public static final int textAppearanceLabelLarge = 0x7f03047e; + public static final int textAppearanceLabelMedium = 0x7f03047f; + public static final int textAppearanceLabelSmall = 0x7f030480; + public static final int textAppearanceLargePopupMenu = 0x7f030481; + public static final int textAppearanceLineHeightEnabled = 0x7f030482; + public static final int textAppearanceListItem = 0x7f030483; + public static final int textAppearanceListItemSecondary = 0x7f030484; + public static final int textAppearanceListItemSmall = 0x7f030485; + public static final int textAppearanceOverline = 0x7f030486; + public static final int textAppearancePopupMenuHeader = 0x7f030487; + public static final int textAppearanceSearchResultSubtitle = 0x7f030488; + public static final int textAppearanceSearchResultTitle = 0x7f030489; + public static final int textAppearanceSmallPopupMenu = 0x7f03048a; + public static final int textAppearanceSubtitle1 = 0x7f03048b; + public static final int textAppearanceSubtitle2 = 0x7f03048c; + public static final int textAppearanceTitleLarge = 0x7f03048d; + public static final int textAppearanceTitleMedium = 0x7f03048e; + public static final int textAppearanceTitleSmall = 0x7f03048f; + public static final int textColorAlertDialogListItem = 0x7f030495; + public static final int textColorSearchUrl = 0x7f030496; + public static final int textEndPadding = 0x7f030497; + public static final int textInputFilledDenseStyle = 0x7f030499; + public static final int textInputFilledExposedDropdownMenuStyle = 0x7f03049a; + public static final int textInputFilledStyle = 0x7f03049b; + public static final int textInputLayoutFocusedRectEnabled = 0x7f03049c; + public static final int textInputOutlinedDenseStyle = 0x7f03049d; + public static final int textInputOutlinedExposedDropdownMenuStyle = 0x7f03049e; + public static final int textInputOutlinedStyle = 0x7f03049f; + public static final int textInputStyle = 0x7f0304a0; + public static final int textLocale = 0x7f0304a1; + public static final int textStartPadding = 0x7f0304a6; + public static final int theme = 0x7f0304ab; + public static final int thickness = 0x7f0304ac; + public static final int thumbColor = 0x7f0304ad; + public static final int thumbElevation = 0x7f0304ae; + public static final int thumbHeight = 0x7f0304af; + public static final int thumbIcon = 0x7f0304b0; + public static final int thumbIconSize = 0x7f0304b1; + public static final int thumbIconTint = 0x7f0304b2; + public static final int thumbIconTintMode = 0x7f0304b3; + public static final int thumbRadius = 0x7f0304b4; + public static final int thumbStrokeColor = 0x7f0304b5; + public static final int thumbStrokeWidth = 0x7f0304b6; + public static final int thumbTextPadding = 0x7f0304b7; + public static final int thumbTint = 0x7f0304b8; + public static final int thumbTintMode = 0x7f0304b9; + public static final int thumbTrackGapSize = 0x7f0304ba; + public static final int thumbWidth = 0x7f0304bb; + public static final int tickColor = 0x7f0304bc; + public static final int tickColorActive = 0x7f0304bd; + public static final int tickColorInactive = 0x7f0304be; + public static final int tickMark = 0x7f0304bf; + public static final int tickMarkTint = 0x7f0304c0; + public static final int tickMarkTintMode = 0x7f0304c1; + public static final int tickRadiusActive = 0x7f0304c2; + public static final int tickRadiusInactive = 0x7f0304c3; + public static final int tickVisible = 0x7f0304c4; + public static final int tint = 0x7f0304c5; + public static final int tintMode = 0x7f0304c6; + public static final int tintNavigationIcon = 0x7f0304c7; + public static final int title = 0x7f0304c8; + public static final int titleCentered = 0x7f0304c9; + public static final int titleCollapseMode = 0x7f0304ca; + public static final int titleEnabled = 0x7f0304cb; + public static final int titleMargin = 0x7f0304cc; + public static final int titleMarginBottom = 0x7f0304cd; + public static final int titleMarginEnd = 0x7f0304ce; + public static final int titleMarginStart = 0x7f0304cf; + public static final int titleMarginTop = 0x7f0304d0; + public static final int titleMargins = 0x7f0304d1; + public static final int titlePositionInterpolator = 0x7f0304d2; + public static final int titleTextAppearance = 0x7f0304d3; + public static final int titleTextColor = 0x7f0304d4; + public static final int titleTextEllipsize = 0x7f0304d5; + public static final int titleTextStyle = 0x7f0304d6; + public static final int toggleCheckedStateOnClick = 0x7f0304d7; + public static final int toolbarId = 0x7f0304d8; + public static final int toolbarNavigationButtonStyle = 0x7f0304d9; + public static final int toolbarStyle = 0x7f0304da; + public static final int toolbarSurfaceStyle = 0x7f0304db; + public static final int tooltipForegroundColor = 0x7f0304dc; + public static final int tooltipFrameBackground = 0x7f0304dd; + public static final int tooltipStyle = 0x7f0304de; + public static final int tooltipText = 0x7f0304df; + public static final int topInsetScrimEnabled = 0x7f0304e0; + public static final int touchAnchorId = 0x7f0304e1; + public static final int touchAnchorSide = 0x7f0304e2; + public static final int touchRegionId = 0x7f0304e3; + public static final int track = 0x7f0304e4; + public static final int trackColor = 0x7f0304e5; + public static final int trackColorActive = 0x7f0304e6; + public static final int trackColorInactive = 0x7f0304e7; + public static final int trackCornerRadius = 0x7f0304e8; + public static final int trackDecoration = 0x7f0304e9; + public static final int trackDecorationTint = 0x7f0304ea; + public static final int trackDecorationTintMode = 0x7f0304eb; + public static final int trackHeight = 0x7f0304ec; + public static final int trackInsideCornerSize = 0x7f0304ed; + public static final int trackStopIndicatorSize = 0x7f0304ee; + public static final int trackThickness = 0x7f0304ef; + public static final int trackTint = 0x7f0304f0; + public static final int trackTintMode = 0x7f0304f1; + public static final int transitionDisable = 0x7f0304f3; + public static final int transitionEasing = 0x7f0304f4; + public static final int transitionFlags = 0x7f0304f5; + public static final int transitionPathRotate = 0x7f0304f6; + public static final int transitionShapeAppearance = 0x7f0304f7; + public static final int triggerId = 0x7f0304f8; + public static final int triggerReceiver = 0x7f0304f9; + public static final int triggerSlack = 0x7f0304fa; + public static final int ttcIndex = 0x7f0304fb; + public static final int useCompatPadding = 0x7f0304fe; + public static final int useDrawerArrowDrawable = 0x7f0304ff; + public static final int useMaterialThemeColors = 0x7f030500; + public static final int values = 0x7f030501; + public static final int verticalOffset = 0x7f030502; + public static final int verticalOffsetWithText = 0x7f030503; + public static final int viewInflaterClass = 0x7f030504; + public static final int visibilityMode = 0x7f030509; + public static final int voiceIcon = 0x7f03050a; + public static final int warmth = 0x7f03050b; + public static final int waveDecay = 0x7f03050c; + public static final int waveOffset = 0x7f03050d; + public static final int wavePeriod = 0x7f03050e; + public static final int waveShape = 0x7f030510; + public static final int waveVariesBy = 0x7f030511; + public static final int windowActionBar = 0x7f030512; + public static final int windowActionBarOverlay = 0x7f030513; + public static final int windowActionModeOverlay = 0x7f030514; + public static final int windowFixedHeightMajor = 0x7f030515; + public static final int windowFixedHeightMinor = 0x7f030516; + public static final int windowFixedWidthMajor = 0x7f030517; + public static final int windowFixedWidthMinor = 0x7f030518; + public static final int windowMinWidthMajor = 0x7f030519; + public static final int windowMinWidthMinor = 0x7f03051a; + public static final int windowNoTitle = 0x7f03051b; + public static final int yearSelectedStyle = 0x7f03051c; + public static final int yearStyle = 0x7f03051d; + public static final int yearTodayStyle = 0x7f03051e; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040001; + public static final int mtrl_btn_textappearance_all_caps = 0x7f040002; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_decor_view_status_guard = 0x7f050005; + public static final int abc_decor_view_status_guard_light = 0x7f050006; + public static final int abc_hint_foreground_material_dark = 0x7f050007; + public static final int abc_hint_foreground_material_light = 0x7f050008; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050009; + public static final int abc_primary_text_disable_only_material_light = 0x7f05000a; + public static final int abc_primary_text_material_dark = 0x7f05000b; + public static final int abc_primary_text_material_light = 0x7f05000c; + public static final int abc_search_url_text = 0x7f05000d; + public static final int abc_search_url_text_normal = 0x7f05000e; + public static final int abc_search_url_text_pressed = 0x7f05000f; + public static final int abc_search_url_text_selected = 0x7f050010; + public static final int abc_secondary_text_material_dark = 0x7f050011; + public static final int abc_secondary_text_material_light = 0x7f050012; + public static final int abc_tint_btn_checkable = 0x7f050013; + public static final int abc_tint_default = 0x7f050014; + public static final int abc_tint_edittext = 0x7f050015; + public static final int abc_tint_seek_thumb = 0x7f050016; + public static final int abc_tint_spinner = 0x7f050017; + public static final int abc_tint_switch_track = 0x7f050018; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int androidx_core_ripple_material_light = 0x7f05001b; + public static final int androidx_core_secondary_text_default_material_light = 0x7f05001c; + public static final int background_floating_material_dark = 0x7f05001d; + public static final int background_floating_material_light = 0x7f05001e; + public static final int background_material_dark = 0x7f05001f; + public static final int background_material_light = 0x7f050020; + public static final int bright_foreground_disabled_material_dark = 0x7f050021; + public static final int bright_foreground_disabled_material_light = 0x7f050022; + public static final int bright_foreground_inverse_material_dark = 0x7f050023; + public static final int bright_foreground_inverse_material_light = 0x7f050024; + public static final int bright_foreground_material_dark = 0x7f050025; + public static final int bright_foreground_material_light = 0x7f050026; + public static final int button_material_dark = 0x7f05002b; + public static final int button_material_light = 0x7f05002c; + public static final int call_notification_answer_color = 0x7f05002d; + public static final int call_notification_decline_color = 0x7f05002e; + public static final int cardview_dark_background = 0x7f05002f; + public static final int cardview_light_background = 0x7f050030; + public static final int cardview_shadow_end_color = 0x7f050031; + public static final int cardview_shadow_start_color = 0x7f050032; + public static final int design_bottom_navigation_shadow_color = 0x7f050037; + public static final int design_box_stroke_color = 0x7f050038; + public static final int design_dark_default_color_background = 0x7f050039; + public static final int design_dark_default_color_error = 0x7f05003a; + public static final int design_dark_default_color_on_background = 0x7f05003b; + public static final int design_dark_default_color_on_error = 0x7f05003c; + public static final int design_dark_default_color_on_primary = 0x7f05003d; + public static final int design_dark_default_color_on_secondary = 0x7f05003e; + public static final int design_dark_default_color_on_surface = 0x7f05003f; + public static final int design_dark_default_color_primary = 0x7f050040; + public static final int design_dark_default_color_primary_dark = 0x7f050041; + public static final int design_dark_default_color_primary_variant = 0x7f050042; + public static final int design_dark_default_color_secondary = 0x7f050043; + public static final int design_dark_default_color_secondary_variant = 0x7f050044; + public static final int design_dark_default_color_surface = 0x7f050045; + public static final int design_default_color_background = 0x7f050046; + public static final int design_default_color_error = 0x7f050047; + public static final int design_default_color_on_background = 0x7f050048; + public static final int design_default_color_on_error = 0x7f050049; + public static final int design_default_color_on_primary = 0x7f05004a; + public static final int design_default_color_on_secondary = 0x7f05004b; + public static final int design_default_color_on_surface = 0x7f05004c; + public static final int design_default_color_primary = 0x7f05004d; + public static final int design_default_color_primary_dark = 0x7f05004e; + public static final int design_default_color_primary_variant = 0x7f05004f; + public static final int design_default_color_secondary = 0x7f050050; + public static final int design_default_color_secondary_variant = 0x7f050051; + public static final int design_default_color_surface = 0x7f050052; + public static final int design_error = 0x7f050053; + public static final int design_fab_shadow_end_color = 0x7f050054; + public static final int design_fab_shadow_mid_color = 0x7f050055; + public static final int design_fab_shadow_start_color = 0x7f050056; + public static final int design_fab_stroke_end_inner_color = 0x7f050057; + public static final int design_fab_stroke_end_outer_color = 0x7f050058; + public static final int design_fab_stroke_top_inner_color = 0x7f050059; + public static final int design_fab_stroke_top_outer_color = 0x7f05005a; + public static final int design_icon_tint = 0x7f05005b; + public static final int design_snackbar_background_color = 0x7f05005c; + public static final int dim_foreground_disabled_material_dark = 0x7f05005d; + public static final int dim_foreground_disabled_material_light = 0x7f05005e; + public static final int dim_foreground_material_dark = 0x7f05005f; + public static final int dim_foreground_material_light = 0x7f050060; + public static final int error_color_material_dark = 0x7f050061; + public static final int error_color_material_light = 0x7f050062; + public static final int foreground_material_dark = 0x7f050063; + public static final int foreground_material_light = 0x7f050064; + public static final int highlighted_text_material_dark = 0x7f050065; + public static final int highlighted_text_material_light = 0x7f050066; + public static final int m3_appbar_overlay_color = 0x7f050067; + public static final int m3_assist_chip_icon_tint_color = 0x7f050068; + public static final int m3_assist_chip_stroke_color = 0x7f050069; + public static final int m3_bottom_sheet_drag_handle_color = 0x7f05006a; + public static final int m3_button_background_color_selector = 0x7f05006b; + public static final int m3_button_foreground_color_selector = 0x7f05006c; + public static final int m3_button_outline_color_selector = 0x7f05006d; + public static final int m3_button_ripple_color = 0x7f05006e; + public static final int m3_button_ripple_color_selector = 0x7f05006f; + public static final int m3_calendar_item_disabled_text = 0x7f050070; + public static final int m3_calendar_item_stroke_color = 0x7f050071; + public static final int m3_card_foreground_color = 0x7f050072; + public static final int m3_card_ripple_color = 0x7f050073; + public static final int m3_card_stroke_color = 0x7f050074; + public static final int m3_checkbox_button_icon_tint = 0x7f050075; + public static final int m3_checkbox_button_tint = 0x7f050076; + public static final int m3_chip_assist_text_color = 0x7f050077; + public static final int m3_chip_background_color = 0x7f050078; + public static final int m3_chip_ripple_color = 0x7f050079; + public static final int m3_chip_stroke_color = 0x7f05007a; + public static final int m3_chip_text_color = 0x7f05007b; + public static final int m3_dark_default_color_primary_text = 0x7f05007c; + public static final int m3_dark_default_color_secondary_text = 0x7f05007d; + public static final int m3_dark_highlighted_text = 0x7f05007e; + public static final int m3_dark_hint_foreground = 0x7f05007f; + public static final int m3_dark_primary_text_disable_only = 0x7f050080; + public static final int m3_default_color_primary_text = 0x7f050081; + public static final int m3_default_color_secondary_text = 0x7f050082; + public static final int m3_dynamic_dark_default_color_primary_text = 0x7f050083; + public static final int m3_dynamic_dark_default_color_secondary_text = 0x7f050084; + public static final int m3_dynamic_dark_highlighted_text = 0x7f050085; + public static final int m3_dynamic_dark_hint_foreground = 0x7f050086; + public static final int m3_dynamic_dark_primary_text_disable_only = 0x7f050087; + public static final int m3_dynamic_default_color_primary_text = 0x7f050088; + public static final int m3_dynamic_default_color_secondary_text = 0x7f050089; + public static final int m3_dynamic_highlighted_text = 0x7f05008a; + public static final int m3_dynamic_hint_foreground = 0x7f05008b; + public static final int m3_dynamic_primary_text_disable_only = 0x7f05008c; + public static final int m3_efab_ripple_color_selector = 0x7f05008d; + public static final int m3_elevated_chip_background_color = 0x7f05008e; + public static final int m3_fab_efab_background_color_selector = 0x7f05008f; + public static final int m3_fab_efab_foreground_color_selector = 0x7f050090; + public static final int m3_fab_ripple_color_selector = 0x7f050091; + public static final int m3_filled_icon_button_container_color_selector = 0x7f050092; + public static final int m3_highlighted_text = 0x7f050093; + public static final int m3_hint_foreground = 0x7f050094; + public static final int m3_icon_button_icon_color_selector = 0x7f050095; + public static final int m3_navigation_bar_item_with_indicator_icon_tint = 0x7f050096; + public static final int m3_navigation_bar_item_with_indicator_label_tint = 0x7f050097; + public static final int m3_navigation_bar_ripple_color_selector = 0x7f050098; + public static final int m3_navigation_item_background_color = 0x7f050099; + public static final int m3_navigation_item_icon_tint = 0x7f05009a; + public static final int m3_navigation_item_ripple_color = 0x7f05009b; + public static final int m3_navigation_item_text_color = 0x7f05009c; + public static final int m3_navigation_rail_item_with_indicator_icon_tint = 0x7f05009d; + public static final int m3_navigation_rail_item_with_indicator_label_tint = 0x7f05009e; + public static final int m3_navigation_rail_ripple_color_selector = 0x7f05009f; + public static final int m3_popupmenu_overlay_color = 0x7f0500a0; + public static final int m3_primary_text_disable_only = 0x7f0500a1; + public static final int m3_radiobutton_button_tint = 0x7f0500a2; + public static final int m3_radiobutton_ripple_tint = 0x7f0500a3; + public static final int m3_ref_palette_black = 0x7f0500a4; + public static final int m3_ref_palette_dynamic_neutral0 = 0x7f0500a5; + public static final int m3_ref_palette_dynamic_neutral10 = 0x7f0500a6; + public static final int m3_ref_palette_dynamic_neutral100 = 0x7f0500a7; + public static final int m3_ref_palette_dynamic_neutral12 = 0x7f0500a8; + public static final int m3_ref_palette_dynamic_neutral17 = 0x7f0500a9; + public static final int m3_ref_palette_dynamic_neutral20 = 0x7f0500aa; + public static final int m3_ref_palette_dynamic_neutral22 = 0x7f0500ab; + public static final int m3_ref_palette_dynamic_neutral24 = 0x7f0500ac; + public static final int m3_ref_palette_dynamic_neutral30 = 0x7f0500ad; + public static final int m3_ref_palette_dynamic_neutral4 = 0x7f0500ae; + public static final int m3_ref_palette_dynamic_neutral40 = 0x7f0500af; + public static final int m3_ref_palette_dynamic_neutral50 = 0x7f0500b0; + public static final int m3_ref_palette_dynamic_neutral6 = 0x7f0500b1; + public static final int m3_ref_palette_dynamic_neutral60 = 0x7f0500b2; + public static final int m3_ref_palette_dynamic_neutral70 = 0x7f0500b3; + public static final int m3_ref_palette_dynamic_neutral80 = 0x7f0500b4; + public static final int m3_ref_palette_dynamic_neutral87 = 0x7f0500b5; + public static final int m3_ref_palette_dynamic_neutral90 = 0x7f0500b6; + public static final int m3_ref_palette_dynamic_neutral92 = 0x7f0500b7; + public static final int m3_ref_palette_dynamic_neutral94 = 0x7f0500b8; + public static final int m3_ref_palette_dynamic_neutral95 = 0x7f0500b9; + public static final int m3_ref_palette_dynamic_neutral96 = 0x7f0500ba; + public static final int m3_ref_palette_dynamic_neutral98 = 0x7f0500bb; + public static final int m3_ref_palette_dynamic_neutral99 = 0x7f0500bc; + public static final int m3_ref_palette_dynamic_neutral_variant0 = 0x7f0500bd; + public static final int m3_ref_palette_dynamic_neutral_variant10 = 0x7f0500be; + public static final int m3_ref_palette_dynamic_neutral_variant100 = 0x7f0500bf; + public static final int m3_ref_palette_dynamic_neutral_variant12 = 0x7f0500c0; + public static final int m3_ref_palette_dynamic_neutral_variant17 = 0x7f0500c1; + public static final int m3_ref_palette_dynamic_neutral_variant20 = 0x7f0500c2; + public static final int m3_ref_palette_dynamic_neutral_variant22 = 0x7f0500c3; + public static final int m3_ref_palette_dynamic_neutral_variant24 = 0x7f0500c4; + public static final int m3_ref_palette_dynamic_neutral_variant30 = 0x7f0500c5; + public static final int m3_ref_palette_dynamic_neutral_variant4 = 0x7f0500c6; + public static final int m3_ref_palette_dynamic_neutral_variant40 = 0x7f0500c7; + public static final int m3_ref_palette_dynamic_neutral_variant50 = 0x7f0500c8; + public static final int m3_ref_palette_dynamic_neutral_variant6 = 0x7f0500c9; + public static final int m3_ref_palette_dynamic_neutral_variant60 = 0x7f0500ca; + public static final int m3_ref_palette_dynamic_neutral_variant70 = 0x7f0500cb; + public static final int m3_ref_palette_dynamic_neutral_variant80 = 0x7f0500cc; + public static final int m3_ref_palette_dynamic_neutral_variant87 = 0x7f0500cd; + public static final int m3_ref_palette_dynamic_neutral_variant90 = 0x7f0500ce; + public static final int m3_ref_palette_dynamic_neutral_variant92 = 0x7f0500cf; + public static final int m3_ref_palette_dynamic_neutral_variant94 = 0x7f0500d0; + public static final int m3_ref_palette_dynamic_neutral_variant95 = 0x7f0500d1; + public static final int m3_ref_palette_dynamic_neutral_variant96 = 0x7f0500d2; + public static final int m3_ref_palette_dynamic_neutral_variant98 = 0x7f0500d3; + public static final int m3_ref_palette_dynamic_neutral_variant99 = 0x7f0500d4; + public static final int m3_ref_palette_dynamic_primary0 = 0x7f0500d5; + public static final int m3_ref_palette_dynamic_primary10 = 0x7f0500d6; + public static final int m3_ref_palette_dynamic_primary100 = 0x7f0500d7; + public static final int m3_ref_palette_dynamic_primary20 = 0x7f0500d8; + public static final int m3_ref_palette_dynamic_primary30 = 0x7f0500d9; + public static final int m3_ref_palette_dynamic_primary40 = 0x7f0500da; + public static final int m3_ref_palette_dynamic_primary50 = 0x7f0500db; + public static final int m3_ref_palette_dynamic_primary60 = 0x7f0500dc; + public static final int m3_ref_palette_dynamic_primary70 = 0x7f0500dd; + public static final int m3_ref_palette_dynamic_primary80 = 0x7f0500de; + public static final int m3_ref_palette_dynamic_primary90 = 0x7f0500df; + public static final int m3_ref_palette_dynamic_primary95 = 0x7f0500e0; + public static final int m3_ref_palette_dynamic_primary99 = 0x7f0500e1; + public static final int m3_ref_palette_dynamic_secondary0 = 0x7f0500e2; + public static final int m3_ref_palette_dynamic_secondary10 = 0x7f0500e3; + public static final int m3_ref_palette_dynamic_secondary100 = 0x7f0500e4; + public static final int m3_ref_palette_dynamic_secondary20 = 0x7f0500e5; + public static final int m3_ref_palette_dynamic_secondary30 = 0x7f0500e6; + public static final int m3_ref_palette_dynamic_secondary40 = 0x7f0500e7; + public static final int m3_ref_palette_dynamic_secondary50 = 0x7f0500e8; + public static final int m3_ref_palette_dynamic_secondary60 = 0x7f0500e9; + public static final int m3_ref_palette_dynamic_secondary70 = 0x7f0500ea; + public static final int m3_ref_palette_dynamic_secondary80 = 0x7f0500eb; + public static final int m3_ref_palette_dynamic_secondary90 = 0x7f0500ec; + public static final int m3_ref_palette_dynamic_secondary95 = 0x7f0500ed; + public static final int m3_ref_palette_dynamic_secondary99 = 0x7f0500ee; + public static final int m3_ref_palette_dynamic_tertiary0 = 0x7f0500ef; + public static final int m3_ref_palette_dynamic_tertiary10 = 0x7f0500f0; + public static final int m3_ref_palette_dynamic_tertiary100 = 0x7f0500f1; + public static final int m3_ref_palette_dynamic_tertiary20 = 0x7f0500f2; + public static final int m3_ref_palette_dynamic_tertiary30 = 0x7f0500f3; + public static final int m3_ref_palette_dynamic_tertiary40 = 0x7f0500f4; + public static final int m3_ref_palette_dynamic_tertiary50 = 0x7f0500f5; + public static final int m3_ref_palette_dynamic_tertiary60 = 0x7f0500f6; + public static final int m3_ref_palette_dynamic_tertiary70 = 0x7f0500f7; + public static final int m3_ref_palette_dynamic_tertiary80 = 0x7f0500f8; + public static final int m3_ref_palette_dynamic_tertiary90 = 0x7f0500f9; + public static final int m3_ref_palette_dynamic_tertiary95 = 0x7f0500fa; + public static final int m3_ref_palette_dynamic_tertiary99 = 0x7f0500fb; + public static final int m3_ref_palette_error0 = 0x7f0500fc; + public static final int m3_ref_palette_error10 = 0x7f0500fd; + public static final int m3_ref_palette_error100 = 0x7f0500fe; + public static final int m3_ref_palette_error20 = 0x7f0500ff; + public static final int m3_ref_palette_error30 = 0x7f050100; + public static final int m3_ref_palette_error40 = 0x7f050101; + public static final int m3_ref_palette_error50 = 0x7f050102; + public static final int m3_ref_palette_error60 = 0x7f050103; + public static final int m3_ref_palette_error70 = 0x7f050104; + public static final int m3_ref_palette_error80 = 0x7f050105; + public static final int m3_ref_palette_error90 = 0x7f050106; + public static final int m3_ref_palette_error95 = 0x7f050107; + public static final int m3_ref_palette_error99 = 0x7f050108; + public static final int m3_ref_palette_neutral0 = 0x7f050109; + public static final int m3_ref_palette_neutral10 = 0x7f05010a; + public static final int m3_ref_palette_neutral100 = 0x7f05010b; + public static final int m3_ref_palette_neutral12 = 0x7f05010c; + public static final int m3_ref_palette_neutral17 = 0x7f05010d; + public static final int m3_ref_palette_neutral20 = 0x7f05010e; + public static final int m3_ref_palette_neutral22 = 0x7f05010f; + public static final int m3_ref_palette_neutral24 = 0x7f050110; + public static final int m3_ref_palette_neutral30 = 0x7f050111; + public static final int m3_ref_palette_neutral4 = 0x7f050112; + public static final int m3_ref_palette_neutral40 = 0x7f050113; + public static final int m3_ref_palette_neutral50 = 0x7f050114; + public static final int m3_ref_palette_neutral6 = 0x7f050115; + public static final int m3_ref_palette_neutral60 = 0x7f050116; + public static final int m3_ref_palette_neutral70 = 0x7f050117; + public static final int m3_ref_palette_neutral80 = 0x7f050118; + public static final int m3_ref_palette_neutral87 = 0x7f050119; + public static final int m3_ref_palette_neutral90 = 0x7f05011a; + public static final int m3_ref_palette_neutral92 = 0x7f05011b; + public static final int m3_ref_palette_neutral94 = 0x7f05011c; + public static final int m3_ref_palette_neutral95 = 0x7f05011d; + public static final int m3_ref_palette_neutral96 = 0x7f05011e; + public static final int m3_ref_palette_neutral98 = 0x7f05011f; + public static final int m3_ref_palette_neutral99 = 0x7f050120; + public static final int m3_ref_palette_neutral_variant0 = 0x7f050121; + public static final int m3_ref_palette_neutral_variant10 = 0x7f050122; + public static final int m3_ref_palette_neutral_variant100 = 0x7f050123; + public static final int m3_ref_palette_neutral_variant20 = 0x7f050124; + public static final int m3_ref_palette_neutral_variant30 = 0x7f050125; + public static final int m3_ref_palette_neutral_variant40 = 0x7f050126; + public static final int m3_ref_palette_neutral_variant50 = 0x7f050127; + public static final int m3_ref_palette_neutral_variant60 = 0x7f050128; + public static final int m3_ref_palette_neutral_variant70 = 0x7f050129; + public static final int m3_ref_palette_neutral_variant80 = 0x7f05012a; + public static final int m3_ref_palette_neutral_variant90 = 0x7f05012b; + public static final int m3_ref_palette_neutral_variant95 = 0x7f05012c; + public static final int m3_ref_palette_neutral_variant99 = 0x7f05012d; + public static final int m3_ref_palette_primary0 = 0x7f05012e; + public static final int m3_ref_palette_primary10 = 0x7f05012f; + public static final int m3_ref_palette_primary100 = 0x7f050130; + public static final int m3_ref_palette_primary20 = 0x7f050131; + public static final int m3_ref_palette_primary30 = 0x7f050132; + public static final int m3_ref_palette_primary40 = 0x7f050133; + public static final int m3_ref_palette_primary50 = 0x7f050134; + public static final int m3_ref_palette_primary60 = 0x7f050135; + public static final int m3_ref_palette_primary70 = 0x7f050136; + public static final int m3_ref_palette_primary80 = 0x7f050137; + public static final int m3_ref_palette_primary90 = 0x7f050138; + public static final int m3_ref_palette_primary95 = 0x7f050139; + public static final int m3_ref_palette_primary99 = 0x7f05013a; + public static final int m3_ref_palette_secondary0 = 0x7f05013b; + public static final int m3_ref_palette_secondary10 = 0x7f05013c; + public static final int m3_ref_palette_secondary100 = 0x7f05013d; + public static final int m3_ref_palette_secondary20 = 0x7f05013e; + public static final int m3_ref_palette_secondary30 = 0x7f05013f; + public static final int m3_ref_palette_secondary40 = 0x7f050140; + public static final int m3_ref_palette_secondary50 = 0x7f050141; + public static final int m3_ref_palette_secondary60 = 0x7f050142; + public static final int m3_ref_palette_secondary70 = 0x7f050143; + public static final int m3_ref_palette_secondary80 = 0x7f050144; + public static final int m3_ref_palette_secondary90 = 0x7f050145; + public static final int m3_ref_palette_secondary95 = 0x7f050146; + public static final int m3_ref_palette_secondary99 = 0x7f050147; + public static final int m3_ref_palette_tertiary0 = 0x7f050148; + public static final int m3_ref_palette_tertiary10 = 0x7f050149; + public static final int m3_ref_palette_tertiary100 = 0x7f05014a; + public static final int m3_ref_palette_tertiary20 = 0x7f05014b; + public static final int m3_ref_palette_tertiary30 = 0x7f05014c; + public static final int m3_ref_palette_tertiary40 = 0x7f05014d; + public static final int m3_ref_palette_tertiary50 = 0x7f05014e; + public static final int m3_ref_palette_tertiary60 = 0x7f05014f; + public static final int m3_ref_palette_tertiary70 = 0x7f050150; + public static final int m3_ref_palette_tertiary80 = 0x7f050151; + public static final int m3_ref_palette_tertiary90 = 0x7f050152; + public static final int m3_ref_palette_tertiary95 = 0x7f050153; + public static final int m3_ref_palette_tertiary99 = 0x7f050154; + public static final int m3_ref_palette_white = 0x7f050155; + public static final int m3_selection_control_ripple_color_selector = 0x7f050156; + public static final int m3_simple_item_ripple_color = 0x7f050157; + public static final int m3_slider_active_track_color = 0x7f050158; + public static final int m3_slider_active_track_color_legacy = 0x7f050159; + public static final int m3_slider_halo_color_legacy = 0x7f05015a; + public static final int m3_slider_inactive_track_color = 0x7f05015b; + public static final int m3_slider_inactive_track_color_legacy = 0x7f05015c; + public static final int m3_slider_thumb_color = 0x7f05015d; + public static final int m3_slider_thumb_color_legacy = 0x7f05015e; + public static final int m3_switch_thumb_tint = 0x7f05015f; + public static final int m3_switch_track_tint = 0x7f050160; + public static final int m3_sys_color_dark_background = 0x7f050161; + public static final int m3_sys_color_dark_error = 0x7f050162; + public static final int m3_sys_color_dark_error_container = 0x7f050163; + public static final int m3_sys_color_dark_inverse_on_surface = 0x7f050164; + public static final int m3_sys_color_dark_inverse_primary = 0x7f050165; + public static final int m3_sys_color_dark_inverse_surface = 0x7f050166; + public static final int m3_sys_color_dark_on_background = 0x7f050167; + public static final int m3_sys_color_dark_on_error = 0x7f050168; + public static final int m3_sys_color_dark_on_error_container = 0x7f050169; + public static final int m3_sys_color_dark_on_primary = 0x7f05016a; + public static final int m3_sys_color_dark_on_primary_container = 0x7f05016b; + public static final int m3_sys_color_dark_on_secondary = 0x7f05016c; + public static final int m3_sys_color_dark_on_secondary_container = 0x7f05016d; + public static final int m3_sys_color_dark_on_surface = 0x7f05016e; + public static final int m3_sys_color_dark_on_surface_variant = 0x7f05016f; + public static final int m3_sys_color_dark_on_tertiary = 0x7f050170; + public static final int m3_sys_color_dark_on_tertiary_container = 0x7f050171; + public static final int m3_sys_color_dark_outline = 0x7f050172; + public static final int m3_sys_color_dark_outline_variant = 0x7f050173; + public static final int m3_sys_color_dark_primary = 0x7f050174; + public static final int m3_sys_color_dark_primary_container = 0x7f050175; + public static final int m3_sys_color_dark_secondary = 0x7f050176; + public static final int m3_sys_color_dark_secondary_container = 0x7f050177; + public static final int m3_sys_color_dark_surface = 0x7f050178; + public static final int m3_sys_color_dark_surface_bright = 0x7f050179; + public static final int m3_sys_color_dark_surface_container = 0x7f05017a; + public static final int m3_sys_color_dark_surface_container_high = 0x7f05017b; + public static final int m3_sys_color_dark_surface_container_highest = 0x7f05017c; + public static final int m3_sys_color_dark_surface_container_low = 0x7f05017d; + public static final int m3_sys_color_dark_surface_container_lowest = 0x7f05017e; + public static final int m3_sys_color_dark_surface_dim = 0x7f05017f; + public static final int m3_sys_color_dark_surface_variant = 0x7f050180; + public static final int m3_sys_color_dark_tertiary = 0x7f050181; + public static final int m3_sys_color_dark_tertiary_container = 0x7f050182; + public static final int m3_sys_color_dynamic_dark_background = 0x7f050183; + public static final int m3_sys_color_dynamic_dark_error = 0x7f050184; + public static final int m3_sys_color_dynamic_dark_error_container = 0x7f050185; + public static final int m3_sys_color_dynamic_dark_inverse_on_surface = 0x7f050186; + public static final int m3_sys_color_dynamic_dark_inverse_primary = 0x7f050187; + public static final int m3_sys_color_dynamic_dark_inverse_surface = 0x7f050188; + public static final int m3_sys_color_dynamic_dark_on_background = 0x7f050189; + public static final int m3_sys_color_dynamic_dark_on_error = 0x7f05018a; + public static final int m3_sys_color_dynamic_dark_on_error_container = 0x7f05018b; + public static final int m3_sys_color_dynamic_dark_on_primary = 0x7f05018c; + public static final int m3_sys_color_dynamic_dark_on_primary_container = 0x7f05018d; + public static final int m3_sys_color_dynamic_dark_on_secondary = 0x7f05018e; + public static final int m3_sys_color_dynamic_dark_on_secondary_container = 0x7f05018f; + public static final int m3_sys_color_dynamic_dark_on_surface = 0x7f050190; + public static final int m3_sys_color_dynamic_dark_on_surface_variant = 0x7f050191; + public static final int m3_sys_color_dynamic_dark_on_tertiary = 0x7f050192; + public static final int m3_sys_color_dynamic_dark_on_tertiary_container = 0x7f050193; + public static final int m3_sys_color_dynamic_dark_outline = 0x7f050194; + public static final int m3_sys_color_dynamic_dark_outline_variant = 0x7f050195; + public static final int m3_sys_color_dynamic_dark_primary = 0x7f050196; + public static final int m3_sys_color_dynamic_dark_primary_container = 0x7f050197; + public static final int m3_sys_color_dynamic_dark_secondary = 0x7f050198; + public static final int m3_sys_color_dynamic_dark_secondary_container = 0x7f050199; + public static final int m3_sys_color_dynamic_dark_surface = 0x7f05019a; + public static final int m3_sys_color_dynamic_dark_surface_bright = 0x7f05019b; + public static final int m3_sys_color_dynamic_dark_surface_container = 0x7f05019c; + public static final int m3_sys_color_dynamic_dark_surface_container_high = 0x7f05019d; + public static final int m3_sys_color_dynamic_dark_surface_container_highest = 0x7f05019e; + public static final int m3_sys_color_dynamic_dark_surface_container_low = 0x7f05019f; + public static final int m3_sys_color_dynamic_dark_surface_container_lowest = 0x7f0501a0; + public static final int m3_sys_color_dynamic_dark_surface_dim = 0x7f0501a1; + public static final int m3_sys_color_dynamic_dark_surface_variant = 0x7f0501a2; + public static final int m3_sys_color_dynamic_dark_tertiary = 0x7f0501a3; + public static final int m3_sys_color_dynamic_dark_tertiary_container = 0x7f0501a4; + public static final int m3_sys_color_dynamic_light_background = 0x7f0501a5; + public static final int m3_sys_color_dynamic_light_error = 0x7f0501a6; + public static final int m3_sys_color_dynamic_light_error_container = 0x7f0501a7; + public static final int m3_sys_color_dynamic_light_inverse_on_surface = 0x7f0501a8; + public static final int m3_sys_color_dynamic_light_inverse_primary = 0x7f0501a9; + public static final int m3_sys_color_dynamic_light_inverse_surface = 0x7f0501aa; + public static final int m3_sys_color_dynamic_light_on_background = 0x7f0501ab; + public static final int m3_sys_color_dynamic_light_on_error = 0x7f0501ac; + public static final int m3_sys_color_dynamic_light_on_error_container = 0x7f0501ad; + public static final int m3_sys_color_dynamic_light_on_primary = 0x7f0501ae; + public static final int m3_sys_color_dynamic_light_on_primary_container = 0x7f0501af; + public static final int m3_sys_color_dynamic_light_on_secondary = 0x7f0501b0; + public static final int m3_sys_color_dynamic_light_on_secondary_container = 0x7f0501b1; + public static final int m3_sys_color_dynamic_light_on_surface = 0x7f0501b2; + public static final int m3_sys_color_dynamic_light_on_surface_variant = 0x7f0501b3; + public static final int m3_sys_color_dynamic_light_on_tertiary = 0x7f0501b4; + public static final int m3_sys_color_dynamic_light_on_tertiary_container = 0x7f0501b5; + public static final int m3_sys_color_dynamic_light_outline = 0x7f0501b6; + public static final int m3_sys_color_dynamic_light_outline_variant = 0x7f0501b7; + public static final int m3_sys_color_dynamic_light_primary = 0x7f0501b8; + public static final int m3_sys_color_dynamic_light_primary_container = 0x7f0501b9; + public static final int m3_sys_color_dynamic_light_secondary = 0x7f0501ba; + public static final int m3_sys_color_dynamic_light_secondary_container = 0x7f0501bb; + public static final int m3_sys_color_dynamic_light_surface = 0x7f0501bc; + public static final int m3_sys_color_dynamic_light_surface_bright = 0x7f0501bd; + public static final int m3_sys_color_dynamic_light_surface_container = 0x7f0501be; + public static final int m3_sys_color_dynamic_light_surface_container_high = 0x7f0501bf; + public static final int m3_sys_color_dynamic_light_surface_container_highest = 0x7f0501c0; + public static final int m3_sys_color_dynamic_light_surface_container_low = 0x7f0501c1; + public static final int m3_sys_color_dynamic_light_surface_container_lowest = 0x7f0501c2; + public static final int m3_sys_color_dynamic_light_surface_dim = 0x7f0501c3; + public static final int m3_sys_color_dynamic_light_surface_variant = 0x7f0501c4; + public static final int m3_sys_color_dynamic_light_tertiary = 0x7f0501c5; + public static final int m3_sys_color_dynamic_light_tertiary_container = 0x7f0501c6; + public static final int m3_sys_color_dynamic_on_primary_fixed = 0x7f0501c7; + public static final int m3_sys_color_dynamic_on_primary_fixed_variant = 0x7f0501c8; + public static final int m3_sys_color_dynamic_on_secondary_fixed = 0x7f0501c9; + public static final int m3_sys_color_dynamic_on_secondary_fixed_variant = 0x7f0501ca; + public static final int m3_sys_color_dynamic_on_tertiary_fixed = 0x7f0501cb; + public static final int m3_sys_color_dynamic_on_tertiary_fixed_variant = 0x7f0501cc; + public static final int m3_sys_color_dynamic_primary_fixed = 0x7f0501cd; + public static final int m3_sys_color_dynamic_primary_fixed_dim = 0x7f0501ce; + public static final int m3_sys_color_dynamic_secondary_fixed = 0x7f0501cf; + public static final int m3_sys_color_dynamic_secondary_fixed_dim = 0x7f0501d0; + public static final int m3_sys_color_dynamic_tertiary_fixed = 0x7f0501d1; + public static final int m3_sys_color_dynamic_tertiary_fixed_dim = 0x7f0501d2; + public static final int m3_sys_color_light_background = 0x7f0501d3; + public static final int m3_sys_color_light_error = 0x7f0501d4; + public static final int m3_sys_color_light_error_container = 0x7f0501d5; + public static final int m3_sys_color_light_inverse_on_surface = 0x7f0501d6; + public static final int m3_sys_color_light_inverse_primary = 0x7f0501d7; + public static final int m3_sys_color_light_inverse_surface = 0x7f0501d8; + public static final int m3_sys_color_light_on_background = 0x7f0501d9; + public static final int m3_sys_color_light_on_error = 0x7f0501da; + public static final int m3_sys_color_light_on_error_container = 0x7f0501db; + public static final int m3_sys_color_light_on_primary = 0x7f0501dc; + public static final int m3_sys_color_light_on_primary_container = 0x7f0501dd; + public static final int m3_sys_color_light_on_secondary = 0x7f0501de; + public static final int m3_sys_color_light_on_secondary_container = 0x7f0501df; + public static final int m3_sys_color_light_on_surface = 0x7f0501e0; + public static final int m3_sys_color_light_on_surface_variant = 0x7f0501e1; + public static final int m3_sys_color_light_on_tertiary = 0x7f0501e2; + public static final int m3_sys_color_light_on_tertiary_container = 0x7f0501e3; + public static final int m3_sys_color_light_outline = 0x7f0501e4; + public static final int m3_sys_color_light_outline_variant = 0x7f0501e5; + public static final int m3_sys_color_light_primary = 0x7f0501e6; + public static final int m3_sys_color_light_primary_container = 0x7f0501e7; + public static final int m3_sys_color_light_secondary = 0x7f0501e8; + public static final int m3_sys_color_light_secondary_container = 0x7f0501e9; + public static final int m3_sys_color_light_surface = 0x7f0501ea; + public static final int m3_sys_color_light_surface_bright = 0x7f0501eb; + public static final int m3_sys_color_light_surface_container = 0x7f0501ec; + public static final int m3_sys_color_light_surface_container_high = 0x7f0501ed; + public static final int m3_sys_color_light_surface_container_highest = 0x7f0501ee; + public static final int m3_sys_color_light_surface_container_low = 0x7f0501ef; + public static final int m3_sys_color_light_surface_container_lowest = 0x7f0501f0; + public static final int m3_sys_color_light_surface_dim = 0x7f0501f1; + public static final int m3_sys_color_light_surface_variant = 0x7f0501f2; + public static final int m3_sys_color_light_tertiary = 0x7f0501f3; + public static final int m3_sys_color_light_tertiary_container = 0x7f0501f4; + public static final int m3_sys_color_on_primary_fixed = 0x7f0501f5; + public static final int m3_sys_color_on_primary_fixed_variant = 0x7f0501f6; + public static final int m3_sys_color_on_secondary_fixed = 0x7f0501f7; + public static final int m3_sys_color_on_secondary_fixed_variant = 0x7f0501f8; + public static final int m3_sys_color_on_tertiary_fixed = 0x7f0501f9; + public static final int m3_sys_color_on_tertiary_fixed_variant = 0x7f0501fa; + public static final int m3_sys_color_primary_fixed = 0x7f0501fb; + public static final int m3_sys_color_primary_fixed_dim = 0x7f0501fc; + public static final int m3_sys_color_secondary_fixed = 0x7f0501fd; + public static final int m3_sys_color_secondary_fixed_dim = 0x7f0501fe; + public static final int m3_sys_color_tertiary_fixed = 0x7f0501ff; + public static final int m3_sys_color_tertiary_fixed_dim = 0x7f050200; + public static final int m3_tabs_icon_color = 0x7f050201; + public static final int m3_tabs_icon_color_secondary = 0x7f050202; + public static final int m3_tabs_ripple_color = 0x7f050203; + public static final int m3_tabs_ripple_color_secondary = 0x7f050204; + public static final int m3_tabs_text_color = 0x7f050205; + public static final int m3_tabs_text_color_secondary = 0x7f050206; + public static final int m3_text_button_background_color_selector = 0x7f050207; + public static final int m3_text_button_foreground_color_selector = 0x7f050208; + public static final int m3_text_button_ripple_color_selector = 0x7f050209; + public static final int m3_textfield_filled_background_color = 0x7f05020a; + public static final int m3_textfield_indicator_text_color = 0x7f05020b; + public static final int m3_textfield_input_text_color = 0x7f05020c; + public static final int m3_textfield_label_color = 0x7f05020d; + public static final int m3_textfield_stroke_color = 0x7f05020e; + public static final int m3_timepicker_button_background_color = 0x7f05020f; + public static final int m3_timepicker_button_ripple_color = 0x7f050210; + public static final int m3_timepicker_button_text_color = 0x7f050211; + public static final int m3_timepicker_clock_text_color = 0x7f050212; + public static final int m3_timepicker_display_background_color = 0x7f050213; + public static final int m3_timepicker_display_ripple_color = 0x7f050214; + public static final int m3_timepicker_display_text_color = 0x7f050215; + public static final int m3_timepicker_secondary_text_button_ripple_color = 0x7f050216; + public static final int m3_timepicker_secondary_text_button_text_color = 0x7f050217; + public static final int m3_timepicker_time_input_stroke_color = 0x7f050218; + public static final int m3_tonal_button_ripple_color_selector = 0x7f050219; + public static final int material_blue_grey_800 = 0x7f05021a; + public static final int material_blue_grey_900 = 0x7f05021b; + public static final int material_blue_grey_950 = 0x7f05021c; + public static final int material_cursor_color = 0x7f05021d; + public static final int material_deep_teal_200 = 0x7f05021e; + public static final int material_deep_teal_500 = 0x7f05021f; + public static final int material_divider_color = 0x7f050220; + public static final int material_dynamic_color_dark_error = 0x7f050221; + public static final int material_dynamic_color_dark_error_container = 0x7f050222; + public static final int material_dynamic_color_dark_on_error = 0x7f050223; + public static final int material_dynamic_color_dark_on_error_container = 0x7f050224; + public static final int material_dynamic_color_light_error = 0x7f050225; + public static final int material_dynamic_color_light_error_container = 0x7f050226; + public static final int material_dynamic_color_light_on_error = 0x7f050227; + public static final int material_dynamic_color_light_on_error_container = 0x7f050228; + public static final int material_dynamic_neutral0 = 0x7f050229; + public static final int material_dynamic_neutral10 = 0x7f05022a; + public static final int material_dynamic_neutral100 = 0x7f05022b; + public static final int material_dynamic_neutral20 = 0x7f05022c; + public static final int material_dynamic_neutral30 = 0x7f05022d; + public static final int material_dynamic_neutral40 = 0x7f05022e; + public static final int material_dynamic_neutral50 = 0x7f05022f; + public static final int material_dynamic_neutral60 = 0x7f050230; + public static final int material_dynamic_neutral70 = 0x7f050231; + public static final int material_dynamic_neutral80 = 0x7f050232; + public static final int material_dynamic_neutral90 = 0x7f050233; + public static final int material_dynamic_neutral95 = 0x7f050234; + public static final int material_dynamic_neutral99 = 0x7f050235; + public static final int material_dynamic_neutral_variant0 = 0x7f050236; + public static final int material_dynamic_neutral_variant10 = 0x7f050237; + public static final int material_dynamic_neutral_variant100 = 0x7f050238; + public static final int material_dynamic_neutral_variant20 = 0x7f050239; + public static final int material_dynamic_neutral_variant30 = 0x7f05023a; + public static final int material_dynamic_neutral_variant40 = 0x7f05023b; + public static final int material_dynamic_neutral_variant50 = 0x7f05023c; + public static final int material_dynamic_neutral_variant60 = 0x7f05023d; + public static final int material_dynamic_neutral_variant70 = 0x7f05023e; + public static final int material_dynamic_neutral_variant80 = 0x7f05023f; + public static final int material_dynamic_neutral_variant90 = 0x7f050240; + public static final int material_dynamic_neutral_variant95 = 0x7f050241; + public static final int material_dynamic_neutral_variant99 = 0x7f050242; + public static final int material_dynamic_primary0 = 0x7f050243; + public static final int material_dynamic_primary10 = 0x7f050244; + public static final int material_dynamic_primary100 = 0x7f050245; + public static final int material_dynamic_primary20 = 0x7f050246; + public static final int material_dynamic_primary30 = 0x7f050247; + public static final int material_dynamic_primary40 = 0x7f050248; + public static final int material_dynamic_primary50 = 0x7f050249; + public static final int material_dynamic_primary60 = 0x7f05024a; + public static final int material_dynamic_primary70 = 0x7f05024b; + public static final int material_dynamic_primary80 = 0x7f05024c; + public static final int material_dynamic_primary90 = 0x7f05024d; + public static final int material_dynamic_primary95 = 0x7f05024e; + public static final int material_dynamic_primary99 = 0x7f05024f; + public static final int material_dynamic_secondary0 = 0x7f050250; + public static final int material_dynamic_secondary10 = 0x7f050251; + public static final int material_dynamic_secondary100 = 0x7f050252; + public static final int material_dynamic_secondary20 = 0x7f050253; + public static final int material_dynamic_secondary30 = 0x7f050254; + public static final int material_dynamic_secondary40 = 0x7f050255; + public static final int material_dynamic_secondary50 = 0x7f050256; + public static final int material_dynamic_secondary60 = 0x7f050257; + public static final int material_dynamic_secondary70 = 0x7f050258; + public static final int material_dynamic_secondary80 = 0x7f050259; + public static final int material_dynamic_secondary90 = 0x7f05025a; + public static final int material_dynamic_secondary95 = 0x7f05025b; + public static final int material_dynamic_secondary99 = 0x7f05025c; + public static final int material_dynamic_tertiary0 = 0x7f05025d; + public static final int material_dynamic_tertiary10 = 0x7f05025e; + public static final int material_dynamic_tertiary100 = 0x7f05025f; + public static final int material_dynamic_tertiary20 = 0x7f050260; + public static final int material_dynamic_tertiary30 = 0x7f050261; + public static final int material_dynamic_tertiary40 = 0x7f050262; + public static final int material_dynamic_tertiary50 = 0x7f050263; + public static final int material_dynamic_tertiary60 = 0x7f050264; + public static final int material_dynamic_tertiary70 = 0x7f050265; + public static final int material_dynamic_tertiary80 = 0x7f050266; + public static final int material_dynamic_tertiary90 = 0x7f050267; + public static final int material_dynamic_tertiary95 = 0x7f050268; + public static final int material_dynamic_tertiary99 = 0x7f050269; + public static final int material_grey_100 = 0x7f05026a; + public static final int material_grey_300 = 0x7f05026b; + public static final int material_grey_50 = 0x7f05026c; + public static final int material_grey_600 = 0x7f05026d; + public static final int material_grey_800 = 0x7f05026e; + public static final int material_grey_850 = 0x7f05026f; + public static final int material_grey_900 = 0x7f050270; + public static final int material_harmonized_color_error = 0x7f050271; + public static final int material_harmonized_color_error_container = 0x7f050272; + public static final int material_harmonized_color_on_error = 0x7f050273; + public static final int material_harmonized_color_on_error_container = 0x7f050274; + public static final int material_on_background_disabled = 0x7f050275; + public static final int material_on_background_emphasis_high_type = 0x7f050276; + public static final int material_on_background_emphasis_medium = 0x7f050277; + public static final int material_on_primary_disabled = 0x7f050278; + public static final int material_on_primary_emphasis_high_type = 0x7f050279; + public static final int material_on_primary_emphasis_medium = 0x7f05027a; + public static final int material_on_surface_disabled = 0x7f05027b; + public static final int material_on_surface_emphasis_high_type = 0x7f05027c; + public static final int material_on_surface_emphasis_medium = 0x7f05027d; + public static final int material_on_surface_stroke = 0x7f05027e; + public static final int material_personalized__highlighted_text = 0x7f05027f; + public static final int material_personalized__highlighted_text_inverse = 0x7f050280; + public static final int material_personalized_color_background = 0x7f050281; + public static final int material_personalized_color_control_activated = 0x7f050282; + public static final int material_personalized_color_control_highlight = 0x7f050283; + public static final int material_personalized_color_control_normal = 0x7f050284; + public static final int material_personalized_color_error = 0x7f050285; + public static final int material_personalized_color_error_container = 0x7f050286; + public static final int material_personalized_color_on_background = 0x7f050287; + public static final int material_personalized_color_on_error = 0x7f050288; + public static final int material_personalized_color_on_error_container = 0x7f050289; + public static final int material_personalized_color_on_primary = 0x7f05028a; + public static final int material_personalized_color_on_primary_container = 0x7f05028b; + public static final int material_personalized_color_on_secondary = 0x7f05028c; + public static final int material_personalized_color_on_secondary_container = 0x7f05028d; + public static final int material_personalized_color_on_surface = 0x7f05028e; + public static final int material_personalized_color_on_surface_inverse = 0x7f05028f; + public static final int material_personalized_color_on_surface_variant = 0x7f050290; + public static final int material_personalized_color_on_tertiary = 0x7f050291; + public static final int material_personalized_color_on_tertiary_container = 0x7f050292; + public static final int material_personalized_color_outline = 0x7f050293; + public static final int material_personalized_color_outline_variant = 0x7f050294; + public static final int material_personalized_color_primary = 0x7f050295; + public static final int material_personalized_color_primary_container = 0x7f050296; + public static final int material_personalized_color_primary_inverse = 0x7f050297; + public static final int material_personalized_color_primary_text = 0x7f050298; + public static final int material_personalized_color_primary_text_inverse = 0x7f050299; + public static final int material_personalized_color_secondary = 0x7f05029a; + public static final int material_personalized_color_secondary_container = 0x7f05029b; + public static final int material_personalized_color_secondary_text = 0x7f05029c; + public static final int material_personalized_color_secondary_text_inverse = 0x7f05029d; + public static final int material_personalized_color_surface = 0x7f05029e; + public static final int material_personalized_color_surface_bright = 0x7f05029f; + public static final int material_personalized_color_surface_container = 0x7f0502a0; + public static final int material_personalized_color_surface_container_high = 0x7f0502a1; + public static final int material_personalized_color_surface_container_highest = 0x7f0502a2; + public static final int material_personalized_color_surface_container_low = 0x7f0502a3; + public static final int material_personalized_color_surface_container_lowest = 0x7f0502a4; + public static final int material_personalized_color_surface_dim = 0x7f0502a5; + public static final int material_personalized_color_surface_inverse = 0x7f0502a6; + public static final int material_personalized_color_surface_variant = 0x7f0502a7; + public static final int material_personalized_color_tertiary = 0x7f0502a8; + public static final int material_personalized_color_tertiary_container = 0x7f0502a9; + public static final int material_personalized_color_text_hint_foreground_inverse = 0x7f0502aa; + public static final int material_personalized_color_text_primary_inverse = 0x7f0502ab; + public static final int material_personalized_color_text_primary_inverse_disable_only = 0x7f0502ac; + public static final int material_personalized_color_text_secondary_and_tertiary_inverse = 0x7f0502ad; + public static final int material_personalized_color_text_secondary_and_tertiary_inverse_disabled = 0x7f0502ae; + public static final int material_personalized_hint_foreground = 0x7f0502af; + public static final int material_personalized_hint_foreground_inverse = 0x7f0502b0; + public static final int material_personalized_primary_inverse_text_disable_only = 0x7f0502b1; + public static final int material_personalized_primary_text_disable_only = 0x7f0502b2; + public static final int material_slider_active_tick_marks_color = 0x7f0502b3; + public static final int material_slider_active_track_color = 0x7f0502b4; + public static final int material_slider_halo_color = 0x7f0502b5; + public static final int material_slider_inactive_tick_marks_color = 0x7f0502b6; + public static final int material_slider_inactive_track_color = 0x7f0502b7; + public static final int material_slider_thumb_color = 0x7f0502b8; + public static final int material_timepicker_button_background = 0x7f0502b9; + public static final int material_timepicker_button_stroke = 0x7f0502ba; + public static final int material_timepicker_clock_text_color = 0x7f0502bb; + public static final int material_timepicker_clockface = 0x7f0502bc; + public static final int material_timepicker_modebutton_tint = 0x7f0502bd; + public static final int mtrl_btn_bg_color_selector = 0x7f0502bf; + public static final int mtrl_btn_ripple_color = 0x7f0502c0; + public static final int mtrl_btn_stroke_color_selector = 0x7f0502c1; + public static final int mtrl_btn_text_btn_bg_color_selector = 0x7f0502c2; + public static final int mtrl_btn_text_btn_ripple_color = 0x7f0502c3; + public static final int mtrl_btn_text_color_disabled = 0x7f0502c4; + public static final int mtrl_btn_text_color_selector = 0x7f0502c5; + public static final int mtrl_btn_transparent_bg_color = 0x7f0502c6; + public static final int mtrl_calendar_item_stroke_color = 0x7f0502c7; + public static final int mtrl_calendar_selected_range = 0x7f0502c8; + public static final int mtrl_card_view_foreground = 0x7f0502c9; + public static final int mtrl_card_view_ripple = 0x7f0502ca; + public static final int mtrl_chip_background_color = 0x7f0502cb; + public static final int mtrl_chip_close_icon_tint = 0x7f0502cc; + public static final int mtrl_chip_surface_color = 0x7f0502cd; + public static final int mtrl_chip_text_color = 0x7f0502ce; + public static final int mtrl_choice_chip_background_color = 0x7f0502cf; + public static final int mtrl_choice_chip_ripple_color = 0x7f0502d0; + public static final int mtrl_choice_chip_text_color = 0x7f0502d1; + public static final int mtrl_error = 0x7f0502d2; + public static final int mtrl_fab_bg_color_selector = 0x7f0502d3; + public static final int mtrl_fab_icon_text_color_selector = 0x7f0502d4; + public static final int mtrl_fab_ripple_color = 0x7f0502d5; + public static final int mtrl_filled_background_color = 0x7f0502d6; + public static final int mtrl_filled_icon_tint = 0x7f0502d7; + public static final int mtrl_filled_stroke_color = 0x7f0502d8; + public static final int mtrl_indicator_text_color = 0x7f0502d9; + public static final int mtrl_navigation_bar_colored_item_tint = 0x7f0502da; + public static final int mtrl_navigation_bar_colored_ripple_color = 0x7f0502db; + public static final int mtrl_navigation_bar_item_tint = 0x7f0502dc; + public static final int mtrl_navigation_bar_ripple_color = 0x7f0502dd; + public static final int mtrl_navigation_item_background_color = 0x7f0502de; + public static final int mtrl_navigation_item_icon_tint = 0x7f0502df; + public static final int mtrl_navigation_item_text_color = 0x7f0502e0; + public static final int mtrl_on_primary_text_btn_text_color_selector = 0x7f0502e1; + public static final int mtrl_on_surface_ripple_color = 0x7f0502e2; + public static final int mtrl_outlined_icon_tint = 0x7f0502e3; + public static final int mtrl_outlined_stroke_color = 0x7f0502e4; + public static final int mtrl_popupmenu_overlay_color = 0x7f0502e5; + public static final int mtrl_scrim_color = 0x7f0502e6; + public static final int mtrl_switch_thumb_icon_tint = 0x7f0502e7; + public static final int mtrl_switch_thumb_tint = 0x7f0502e8; + public static final int mtrl_switch_track_decoration_tint = 0x7f0502e9; + public static final int mtrl_switch_track_tint = 0x7f0502ea; + public static final int mtrl_tabs_colored_ripple_color = 0x7f0502eb; + public static final int mtrl_tabs_icon_color_selector = 0x7f0502ec; + public static final int mtrl_tabs_icon_color_selector_colored = 0x7f0502ed; + public static final int mtrl_tabs_legacy_text_color_selector = 0x7f0502ee; + public static final int mtrl_tabs_ripple_color = 0x7f0502ef; + public static final int mtrl_text_btn_text_color_selector = 0x7f0502f0; + public static final int mtrl_textinput_default_box_stroke_color = 0x7f0502f1; + public static final int mtrl_textinput_disabled_color = 0x7f0502f2; + public static final int mtrl_textinput_filled_box_default_background_color = 0x7f0502f3; + public static final int mtrl_textinput_focused_box_stroke_color = 0x7f0502f4; + public static final int mtrl_textinput_hovered_box_stroke_color = 0x7f0502f5; + public static final int notification_action_color_filter = 0x7f0502f6; + public static final int notification_icon_bg_color = 0x7f0502f7; + public static final int primary_dark_material_dark = 0x7f0502f8; + public static final int primary_dark_material_light = 0x7f0502f9; + public static final int primary_material_dark = 0x7f0502fa; + public static final int primary_material_light = 0x7f0502fb; + public static final int primary_text_default_material_dark = 0x7f0502fc; + public static final int primary_text_default_material_light = 0x7f0502fd; + public static final int primary_text_disabled_material_dark = 0x7f0502fe; + public static final int primary_text_disabled_material_light = 0x7f0502ff; + public static final int ripple_material_dark = 0x7f050300; + public static final int ripple_material_light = 0x7f050301; + public static final int secondary_text_default_material_dark = 0x7f050302; + public static final int secondary_text_default_material_light = 0x7f050303; + public static final int secondary_text_disabled_material_dark = 0x7f050304; + public static final int secondary_text_disabled_material_light = 0x7f050305; + public static final int switch_thumb_disabled_material_dark = 0x7f050306; + public static final int switch_thumb_disabled_material_light = 0x7f050307; + public static final int switch_thumb_material_dark = 0x7f050308; + public static final int switch_thumb_material_light = 0x7f050309; + public static final int switch_thumb_normal_material_dark = 0x7f05030a; + public static final int switch_thumb_normal_material_light = 0x7f05030b; + public static final int tooltip_background_dark = 0x7f05030c; + public static final int tooltip_background_light = 0x7f05030d; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_height_large_material = 0x7f060030; + public static final int abc_list_item_height_material = 0x7f060031; + public static final int abc_list_item_height_small_material = 0x7f060032; + public static final int abc_list_item_padding_horizontal_material = 0x7f060033; + public static final int abc_panel_menu_list_width = 0x7f060034; + public static final int abc_progress_bar_height_material = 0x7f060035; + public static final int abc_search_view_preferred_height = 0x7f060036; + public static final int abc_search_view_preferred_width = 0x7f060037; + public static final int abc_seekbar_track_background_height_material = 0x7f060038; + public static final int abc_seekbar_track_progress_height_material = 0x7f060039; + public static final int abc_select_dialog_padding_start_material = 0x7f06003a; + public static final int abc_star_big = 0x7f06003b; + public static final int abc_star_medium = 0x7f06003c; + public static final int abc_star_small = 0x7f06003d; + public static final int abc_switch_padding = 0x7f06003e; + public static final int abc_text_size_body_1_material = 0x7f06003f; + public static final int abc_text_size_body_2_material = 0x7f060040; + public static final int abc_text_size_button_material = 0x7f060041; + public static final int abc_text_size_caption_material = 0x7f060042; + public static final int abc_text_size_display_1_material = 0x7f060043; + public static final int abc_text_size_display_2_material = 0x7f060044; + public static final int abc_text_size_display_3_material = 0x7f060045; + public static final int abc_text_size_display_4_material = 0x7f060046; + public static final int abc_text_size_headline_material = 0x7f060047; + public static final int abc_text_size_large_material = 0x7f060048; + public static final int abc_text_size_medium_material = 0x7f060049; + public static final int abc_text_size_menu_header_material = 0x7f06004a; + public static final int abc_text_size_menu_material = 0x7f06004b; + public static final int abc_text_size_small_material = 0x7f06004c; + public static final int abc_text_size_subhead_material = 0x7f06004d; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f06004e; + public static final int abc_text_size_title_material = 0x7f06004f; + public static final int abc_text_size_title_material_toolbar = 0x7f060050; + public static final int appcompat_dialog_background_inset = 0x7f060051; + public static final int cardview_compat_inset_shadow = 0x7f060054; + public static final int cardview_default_elevation = 0x7f060055; + public static final int cardview_default_radius = 0x7f060056; + public static final int clock_face_margin_start = 0x7f060057; + public static final int compat_button_inset_horizontal_material = 0x7f060058; + public static final int compat_button_inset_vertical_material = 0x7f060059; + public static final int compat_button_padding_horizontal_material = 0x7f06005a; + public static final int compat_button_padding_vertical_material = 0x7f06005b; + public static final int compat_control_corner_material = 0x7f06005c; + public static final int compat_notification_large_icon_max_height = 0x7f06005d; + public static final int compat_notification_large_icon_max_width = 0x7f06005e; + public static final int def_drawer_elevation = 0x7f06005f; + public static final int design_appbar_elevation = 0x7f060060; + public static final int design_bottom_navigation_active_item_max_width = 0x7f060061; + public static final int design_bottom_navigation_active_item_min_width = 0x7f060062; + public static final int design_bottom_navigation_active_text_size = 0x7f060063; + public static final int design_bottom_navigation_elevation = 0x7f060064; + public static final int design_bottom_navigation_height = 0x7f060065; + public static final int design_bottom_navigation_icon_size = 0x7f060066; + public static final int design_bottom_navigation_item_max_width = 0x7f060067; + public static final int design_bottom_navigation_item_min_width = 0x7f060068; + public static final int design_bottom_navigation_label_padding = 0x7f060069; + public static final int design_bottom_navigation_margin = 0x7f06006a; + public static final int design_bottom_navigation_shadow_height = 0x7f06006b; + public static final int design_bottom_navigation_text_size = 0x7f06006c; + public static final int design_bottom_sheet_elevation = 0x7f06006d; + public static final int design_bottom_sheet_modal_elevation = 0x7f06006e; + public static final int design_bottom_sheet_peek_height_min = 0x7f06006f; + public static final int design_fab_border_width = 0x7f060070; + public static final int design_fab_elevation = 0x7f060071; + public static final int design_fab_image_size = 0x7f060072; + public static final int design_fab_size_mini = 0x7f060073; + public static final int design_fab_size_normal = 0x7f060074; + public static final int design_fab_translation_z_hovered_focused = 0x7f060075; + public static final int design_fab_translation_z_pressed = 0x7f060076; + public static final int design_navigation_elevation = 0x7f060077; + public static final int design_navigation_icon_padding = 0x7f060078; + public static final int design_navigation_icon_size = 0x7f060079; + public static final int design_navigation_item_horizontal_padding = 0x7f06007a; + public static final int design_navigation_item_icon_padding = 0x7f06007b; + public static final int design_navigation_item_vertical_padding = 0x7f06007c; + public static final int design_navigation_max_width = 0x7f06007d; + public static final int design_navigation_padding_bottom = 0x7f06007e; + public static final int design_navigation_separator_vertical_padding = 0x7f06007f; + public static final int design_snackbar_action_inline_max_width = 0x7f060080; + public static final int design_snackbar_action_text_color_alpha = 0x7f060081; + public static final int design_snackbar_background_corner_radius = 0x7f060082; + public static final int design_snackbar_elevation = 0x7f060083; + public static final int design_snackbar_extra_spacing_horizontal = 0x7f060084; + public static final int design_snackbar_max_width = 0x7f060085; + public static final int design_snackbar_min_width = 0x7f060086; + public static final int design_snackbar_padding_horizontal = 0x7f060087; + public static final int design_snackbar_padding_vertical = 0x7f060088; + public static final int design_snackbar_padding_vertical_2lines = 0x7f060089; + public static final int design_snackbar_text_size = 0x7f06008a; + public static final int design_tab_max_width = 0x7f06008b; + public static final int design_tab_scrollable_min_width = 0x7f06008c; + public static final int design_tab_text_size = 0x7f06008d; + public static final int design_tab_text_size_2line = 0x7f06008e; + public static final int design_textinput_caption_translate_y = 0x7f06008f; + public static final int disabled_alpha_material_dark = 0x7f060090; + public static final int disabled_alpha_material_light = 0x7f060091; + public static final int fastscroll_default_thickness = 0x7f060092; + public static final int fastscroll_margin = 0x7f060093; + public static final int fastscroll_minimum_range = 0x7f060094; + public static final int highlight_alpha_material_colored = 0x7f060095; + public static final int highlight_alpha_material_dark = 0x7f060096; + public static final int highlight_alpha_material_light = 0x7f060097; + public static final int hint_alpha_material_dark = 0x7f060098; + public static final int hint_alpha_material_light = 0x7f060099; + public static final int hint_pressed_alpha_material_dark = 0x7f06009a; + public static final int hint_pressed_alpha_material_light = 0x7f06009b; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06009c; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06009d; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06009e; + public static final int m3_alert_dialog_action_bottom_padding = 0x7f06009f; + public static final int m3_alert_dialog_action_top_padding = 0x7f0600a0; + public static final int m3_alert_dialog_corner_size = 0x7f0600a1; + public static final int m3_alert_dialog_elevation = 0x7f0600a2; + public static final int m3_alert_dialog_icon_margin = 0x7f0600a3; + public static final int m3_alert_dialog_icon_size = 0x7f0600a4; + public static final int m3_alert_dialog_title_bottom_margin = 0x7f0600a5; + public static final int m3_appbar_expanded_title_margin_bottom = 0x7f0600a6; + public static final int m3_appbar_expanded_title_margin_horizontal = 0x7f0600a7; + public static final int m3_appbar_scrim_height_trigger = 0x7f0600a8; + public static final int m3_appbar_scrim_height_trigger_large = 0x7f0600a9; + public static final int m3_appbar_scrim_height_trigger_medium = 0x7f0600aa; + public static final int m3_appbar_size_compact = 0x7f0600ab; + public static final int m3_appbar_size_large = 0x7f0600ac; + public static final int m3_appbar_size_medium = 0x7f0600ad; + public static final int m3_back_progress_bottom_container_max_scale_x_distance = 0x7f0600ae; + public static final int m3_back_progress_bottom_container_max_scale_y_distance = 0x7f0600af; + public static final int m3_back_progress_main_container_max_translation_y = 0x7f0600b0; + public static final int m3_back_progress_main_container_min_edge_gap = 0x7f0600b1; + public static final int m3_back_progress_side_container_max_scale_x_distance_grow = 0x7f0600b2; + public static final int m3_back_progress_side_container_max_scale_x_distance_shrink = 0x7f0600b3; + public static final int m3_back_progress_side_container_max_scale_y_distance = 0x7f0600b4; + public static final int m3_badge_horizontal_offset = 0x7f0600b5; + public static final int m3_badge_offset = 0x7f0600b6; + public static final int m3_badge_size = 0x7f0600b7; + public static final int m3_badge_vertical_offset = 0x7f0600b8; + public static final int m3_badge_with_text_horizontal_offset = 0x7f0600b9; + public static final int m3_badge_with_text_offset = 0x7f0600ba; + public static final int m3_badge_with_text_size = 0x7f0600bb; + public static final int m3_badge_with_text_vertical_offset = 0x7f0600bc; + public static final int m3_badge_with_text_vertical_padding = 0x7f0600bd; + public static final int m3_bottom_nav_item_active_indicator_height = 0x7f0600be; + public static final int m3_bottom_nav_item_active_indicator_margin_horizontal = 0x7f0600bf; + public static final int m3_bottom_nav_item_active_indicator_width = 0x7f0600c0; + public static final int m3_bottom_nav_item_padding_bottom = 0x7f0600c1; + public static final int m3_bottom_nav_item_padding_top = 0x7f0600c2; + public static final int m3_bottom_nav_min_height = 0x7f0600c3; + public static final int m3_bottom_sheet_drag_handle_bottom_padding = 0x7f0600c4; + public static final int m3_bottom_sheet_elevation = 0x7f0600c5; + public static final int m3_bottom_sheet_modal_elevation = 0x7f0600c6; + public static final int m3_bottomappbar_fab_cradle_margin = 0x7f0600c7; + public static final int m3_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0600c8; + public static final int m3_bottomappbar_fab_cradle_vertical_offset = 0x7f0600c9; + public static final int m3_bottomappbar_fab_end_margin = 0x7f0600ca; + public static final int m3_bottomappbar_height = 0x7f0600cb; + public static final int m3_bottomappbar_horizontal_padding = 0x7f0600cc; + public static final int m3_btn_dialog_btn_min_width = 0x7f0600cd; + public static final int m3_btn_dialog_btn_spacing = 0x7f0600ce; + public static final int m3_btn_disabled_elevation = 0x7f0600cf; + public static final int m3_btn_disabled_translation_z = 0x7f0600d0; + public static final int m3_btn_elevated_btn_elevation = 0x7f0600d1; + public static final int m3_btn_elevation = 0x7f0600d2; + public static final int m3_btn_icon_btn_padding_left = 0x7f0600d3; + public static final int m3_btn_icon_btn_padding_right = 0x7f0600d4; + public static final int m3_btn_icon_only_default_padding = 0x7f0600d5; + public static final int m3_btn_icon_only_default_size = 0x7f0600d6; + public static final int m3_btn_icon_only_icon_padding = 0x7f0600d7; + public static final int m3_btn_icon_only_min_width = 0x7f0600d8; + public static final int m3_btn_inset = 0x7f0600d9; + public static final int m3_btn_max_width = 0x7f0600da; + public static final int m3_btn_padding_bottom = 0x7f0600db; + public static final int m3_btn_padding_left = 0x7f0600dc; + public static final int m3_btn_padding_right = 0x7f0600dd; + public static final int m3_btn_padding_top = 0x7f0600de; + public static final int m3_btn_stroke_size = 0x7f0600df; + public static final int m3_btn_text_btn_icon_padding_left = 0x7f0600e0; + public static final int m3_btn_text_btn_icon_padding_right = 0x7f0600e1; + public static final int m3_btn_text_btn_padding_left = 0x7f0600e2; + public static final int m3_btn_text_btn_padding_right = 0x7f0600e3; + public static final int m3_btn_translation_z_base = 0x7f0600e4; + public static final int m3_btn_translation_z_hovered = 0x7f0600e5; + public static final int m3_card_disabled_z = 0x7f0600e6; + public static final int m3_card_dragged_z = 0x7f0600e7; + public static final int m3_card_elevated_disabled_z = 0x7f0600e8; + public static final int m3_card_elevated_dragged_z = 0x7f0600e9; + public static final int m3_card_elevated_elevation = 0x7f0600ea; + public static final int m3_card_elevated_hovered_z = 0x7f0600eb; + public static final int m3_card_elevation = 0x7f0600ec; + public static final int m3_card_hovered_z = 0x7f0600ed; + public static final int m3_card_stroke_width = 0x7f0600ee; + public static final int m3_carousel_debug_keyline_width = 0x7f0600ef; + public static final int m3_carousel_extra_small_item_size = 0x7f0600f0; + public static final int m3_carousel_gone_size = 0x7f0600f1; + public static final int m3_carousel_small_item_default_corner_size = 0x7f0600f2; + public static final int m3_carousel_small_item_size_max = 0x7f0600f3; + public static final int m3_carousel_small_item_size_min = 0x7f0600f4; + public static final int m3_chip_checked_hovered_translation_z = 0x7f0600f5; + public static final int m3_chip_corner_size = 0x7f0600f6; + public static final int m3_chip_disabled_translation_z = 0x7f0600f7; + public static final int m3_chip_dragged_translation_z = 0x7f0600f8; + public static final int m3_chip_elevated_elevation = 0x7f0600f9; + public static final int m3_chip_hovered_translation_z = 0x7f0600fa; + public static final int m3_chip_icon_size = 0x7f0600fb; + public static final int m3_comp_assist_chip_container_height = 0x7f0600fc; + public static final int m3_comp_assist_chip_elevated_container_elevation = 0x7f0600fd; + public static final int m3_comp_assist_chip_flat_container_elevation = 0x7f0600fe; + public static final int m3_comp_assist_chip_flat_outline_width = 0x7f0600ff; + public static final int m3_comp_assist_chip_with_icon_icon_size = 0x7f060100; + public static final int m3_comp_badge_large_size = 0x7f060101; + public static final int m3_comp_badge_size = 0x7f060102; + public static final int m3_comp_bottom_app_bar_container_elevation = 0x7f060103; + public static final int m3_comp_bottom_app_bar_container_height = 0x7f060104; + public static final int m3_comp_checkbox_selected_disabled_container_opacity = 0x7f060105; + public static final int m3_comp_date_picker_modal_date_today_container_outline_width = 0x7f060106; + public static final int m3_comp_date_picker_modal_header_container_height = 0x7f060107; + public static final int m3_comp_date_picker_modal_range_selection_header_container_height = 0x7f060108; + public static final int m3_comp_divider_thickness = 0x7f060109; + public static final int m3_comp_elevated_button_container_elevation = 0x7f06010a; + public static final int m3_comp_elevated_button_disabled_container_elevation = 0x7f06010b; + public static final int m3_comp_elevated_card_container_elevation = 0x7f06010c; + public static final int m3_comp_elevated_card_icon_size = 0x7f06010d; + public static final int m3_comp_extended_fab_primary_container_elevation = 0x7f06010e; + public static final int m3_comp_extended_fab_primary_container_height = 0x7f06010f; + public static final int m3_comp_extended_fab_primary_focus_container_elevation = 0x7f060110; + public static final int m3_comp_extended_fab_primary_focus_state_layer_opacity = 0x7f060111; + public static final int m3_comp_extended_fab_primary_hover_container_elevation = 0x7f060112; + public static final int m3_comp_extended_fab_primary_hover_state_layer_opacity = 0x7f060113; + public static final int m3_comp_extended_fab_primary_icon_size = 0x7f060114; + public static final int m3_comp_extended_fab_primary_pressed_container_elevation = 0x7f060115; + public static final int m3_comp_extended_fab_primary_pressed_state_layer_opacity = 0x7f060116; + public static final int m3_comp_fab_primary_container_elevation = 0x7f060117; + public static final int m3_comp_fab_primary_container_height = 0x7f060118; + public static final int m3_comp_fab_primary_focus_state_layer_opacity = 0x7f060119; + public static final int m3_comp_fab_primary_hover_container_elevation = 0x7f06011a; + public static final int m3_comp_fab_primary_hover_state_layer_opacity = 0x7f06011b; + public static final int m3_comp_fab_primary_icon_size = 0x7f06011c; + public static final int m3_comp_fab_primary_large_container_height = 0x7f06011d; + public static final int m3_comp_fab_primary_large_icon_size = 0x7f06011e; + public static final int m3_comp_fab_primary_pressed_container_elevation = 0x7f06011f; + public static final int m3_comp_fab_primary_pressed_state_layer_opacity = 0x7f060120; + public static final int m3_comp_fab_primary_small_container_height = 0x7f060121; + public static final int m3_comp_fab_primary_small_icon_size = 0x7f060122; + public static final int m3_comp_filled_autocomplete_menu_container_elevation = 0x7f060123; + public static final int m3_comp_filled_button_container_elevation = 0x7f060124; + public static final int m3_comp_filled_button_with_icon_icon_size = 0x7f060125; + public static final int m3_comp_filled_card_container_elevation = 0x7f060126; + public static final int m3_comp_filled_card_dragged_state_layer_opacity = 0x7f060127; + public static final int m3_comp_filled_card_focus_state_layer_opacity = 0x7f060128; + public static final int m3_comp_filled_card_hover_state_layer_opacity = 0x7f060129; + public static final int m3_comp_filled_card_icon_size = 0x7f06012a; + public static final int m3_comp_filled_card_pressed_state_layer_opacity = 0x7f06012b; + public static final int m3_comp_filled_text_field_disabled_active_indicator_opacity = 0x7f06012c; + public static final int m3_comp_filter_chip_container_height = 0x7f06012d; + public static final int m3_comp_filter_chip_elevated_container_elevation = 0x7f06012e; + public static final int m3_comp_filter_chip_flat_container_elevation = 0x7f06012f; + public static final int m3_comp_filter_chip_flat_unselected_outline_width = 0x7f060130; + public static final int m3_comp_filter_chip_with_icon_icon_size = 0x7f060131; + public static final int m3_comp_input_chip_container_elevation = 0x7f060132; + public static final int m3_comp_input_chip_container_height = 0x7f060133; + public static final int m3_comp_input_chip_unselected_outline_width = 0x7f060134; + public static final int m3_comp_input_chip_with_avatar_avatar_size = 0x7f060135; + public static final int m3_comp_input_chip_with_leading_icon_leading_icon_size = 0x7f060136; + public static final int m3_comp_menu_container_elevation = 0x7f060137; + public static final int m3_comp_navigation_bar_active_indicator_height = 0x7f060138; + public static final int m3_comp_navigation_bar_active_indicator_width = 0x7f060139; + public static final int m3_comp_navigation_bar_container_elevation = 0x7f06013a; + public static final int m3_comp_navigation_bar_container_height = 0x7f06013b; + public static final int m3_comp_navigation_bar_focus_state_layer_opacity = 0x7f06013c; + public static final int m3_comp_navigation_bar_hover_state_layer_opacity = 0x7f06013d; + public static final int m3_comp_navigation_bar_icon_size = 0x7f06013e; + public static final int m3_comp_navigation_bar_pressed_state_layer_opacity = 0x7f06013f; + public static final int m3_comp_navigation_drawer_container_width = 0x7f060140; + public static final int m3_comp_navigation_drawer_focus_state_layer_opacity = 0x7f060141; + public static final int m3_comp_navigation_drawer_hover_state_layer_opacity = 0x7f060142; + public static final int m3_comp_navigation_drawer_icon_size = 0x7f060143; + public static final int m3_comp_navigation_drawer_modal_container_elevation = 0x7f060144; + public static final int m3_comp_navigation_drawer_pressed_state_layer_opacity = 0x7f060145; + public static final int m3_comp_navigation_drawer_standard_container_elevation = 0x7f060146; + public static final int m3_comp_navigation_rail_active_indicator_height = 0x7f060147; + public static final int m3_comp_navigation_rail_active_indicator_width = 0x7f060148; + public static final int m3_comp_navigation_rail_container_elevation = 0x7f060149; + public static final int m3_comp_navigation_rail_container_width = 0x7f06014a; + public static final int m3_comp_navigation_rail_focus_state_layer_opacity = 0x7f06014b; + public static final int m3_comp_navigation_rail_hover_state_layer_opacity = 0x7f06014c; + public static final int m3_comp_navigation_rail_icon_size = 0x7f06014d; + public static final int m3_comp_navigation_rail_pressed_state_layer_opacity = 0x7f06014e; + public static final int m3_comp_outlined_autocomplete_menu_container_elevation = 0x7f06014f; + public static final int m3_comp_outlined_button_disabled_outline_opacity = 0x7f060150; + public static final int m3_comp_outlined_button_outline_width = 0x7f060151; + public static final int m3_comp_outlined_card_container_elevation = 0x7f060152; + public static final int m3_comp_outlined_card_disabled_outline_opacity = 0x7f060153; + public static final int m3_comp_outlined_card_icon_size = 0x7f060154; + public static final int m3_comp_outlined_card_outline_width = 0x7f060155; + public static final int m3_comp_outlined_icon_button_unselected_outline_width = 0x7f060156; + public static final int m3_comp_outlined_text_field_disabled_input_text_opacity = 0x7f060157; + public static final int m3_comp_outlined_text_field_disabled_label_text_opacity = 0x7f060158; + public static final int m3_comp_outlined_text_field_disabled_supporting_text_opacity = 0x7f060159; + public static final int m3_comp_outlined_text_field_focus_outline_width = 0x7f06015a; + public static final int m3_comp_outlined_text_field_outline_width = 0x7f06015b; + public static final int m3_comp_primary_navigation_tab_active_focus_state_layer_opacity = 0x7f06015c; + public static final int m3_comp_primary_navigation_tab_active_hover_state_layer_opacity = 0x7f06015d; + public static final int m3_comp_primary_navigation_tab_active_indicator_height = 0x7f06015e; + public static final int m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity = 0x7f06015f; + public static final int m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity = 0x7f060160; + public static final int m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity = 0x7f060161; + public static final int m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity = 0x7f060162; + public static final int m3_comp_primary_navigation_tab_with_icon_icon_size = 0x7f060163; + public static final int m3_comp_progress_indicator_active_indicator_track_space = 0x7f060164; + public static final int m3_comp_progress_indicator_stop_indicator_size = 0x7f060165; + public static final int m3_comp_progress_indicator_track_thickness = 0x7f060166; + public static final int m3_comp_radio_button_disabled_selected_icon_opacity = 0x7f060167; + public static final int m3_comp_radio_button_disabled_unselected_icon_opacity = 0x7f060168; + public static final int m3_comp_radio_button_selected_focus_state_layer_opacity = 0x7f060169; + public static final int m3_comp_radio_button_selected_hover_state_layer_opacity = 0x7f06016a; + public static final int m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f06016b; + public static final int m3_comp_radio_button_unselected_focus_state_layer_opacity = 0x7f06016c; + public static final int m3_comp_radio_button_unselected_hover_state_layer_opacity = 0x7f06016d; + public static final int m3_comp_radio_button_unselected_pressed_state_layer_opacity = 0x7f06016e; + public static final int m3_comp_scrim_container_opacity = 0x7f06016f; + public static final int m3_comp_search_bar_avatar_size = 0x7f060170; + public static final int m3_comp_search_bar_container_elevation = 0x7f060171; + public static final int m3_comp_search_bar_container_height = 0x7f060172; + public static final int m3_comp_search_bar_hover_state_layer_opacity = 0x7f060173; + public static final int m3_comp_search_bar_pressed_state_layer_opacity = 0x7f060174; + public static final int m3_comp_search_view_container_elevation = 0x7f060175; + public static final int m3_comp_search_view_docked_header_container_height = 0x7f060176; + public static final int m3_comp_search_view_full_screen_header_container_height = 0x7f060177; + public static final int m3_comp_secondary_navigation_tab_active_indicator_height = 0x7f060178; + public static final int m3_comp_secondary_navigation_tab_focus_state_layer_opacity = 0x7f060179; + public static final int m3_comp_secondary_navigation_tab_hover_state_layer_opacity = 0x7f06017a; + public static final int m3_comp_secondary_navigation_tab_pressed_state_layer_opacity = 0x7f06017b; + public static final int m3_comp_sheet_bottom_docked_drag_handle_height = 0x7f06017c; + public static final int m3_comp_sheet_bottom_docked_drag_handle_width = 0x7f06017d; + public static final int m3_comp_sheet_bottom_docked_modal_container_elevation = 0x7f06017e; + public static final int m3_comp_sheet_bottom_docked_standard_container_elevation = 0x7f06017f; + public static final int m3_comp_sheet_side_docked_container_width = 0x7f060180; + public static final int m3_comp_sheet_side_docked_modal_container_elevation = 0x7f060181; + public static final int m3_comp_sheet_side_docked_standard_container_elevation = 0x7f060182; + public static final int m3_comp_slider_active_handle_height = 0x7f060183; + public static final int m3_comp_slider_active_handle_leading_space = 0x7f060184; + public static final int m3_comp_slider_active_handle_width = 0x7f060185; + public static final int m3_comp_slider_disabled_active_track_opacity = 0x7f060186; + public static final int m3_comp_slider_disabled_handle_opacity = 0x7f060187; + public static final int m3_comp_slider_disabled_inactive_track_opacity = 0x7f060188; + public static final int m3_comp_slider_inactive_track_height = 0x7f060189; + public static final int m3_comp_slider_stop_indicator_size = 0x7f06018a; + public static final int m3_comp_snackbar_container_elevation = 0x7f06018b; + public static final int m3_comp_suggestion_chip_container_height = 0x7f06018c; + public static final int m3_comp_suggestion_chip_elevated_container_elevation = 0x7f06018d; + public static final int m3_comp_suggestion_chip_flat_container_elevation = 0x7f06018e; + public static final int m3_comp_suggestion_chip_flat_outline_width = 0x7f06018f; + public static final int m3_comp_suggestion_chip_with_leading_icon_leading_icon_size = 0x7f060190; + public static final int m3_comp_switch_disabled_selected_handle_opacity = 0x7f060191; + public static final int m3_comp_switch_disabled_selected_icon_opacity = 0x7f060192; + public static final int m3_comp_switch_disabled_track_opacity = 0x7f060193; + public static final int m3_comp_switch_disabled_unselected_handle_opacity = 0x7f060194; + public static final int m3_comp_switch_disabled_unselected_icon_opacity = 0x7f060195; + public static final int m3_comp_switch_selected_focus_state_layer_opacity = 0x7f060196; + public static final int m3_comp_switch_selected_hover_state_layer_opacity = 0x7f060197; + public static final int m3_comp_switch_selected_pressed_state_layer_opacity = 0x7f060198; + public static final int m3_comp_switch_track_height = 0x7f060199; + public static final int m3_comp_switch_track_width = 0x7f06019a; + public static final int m3_comp_switch_unselected_focus_state_layer_opacity = 0x7f06019b; + public static final int m3_comp_switch_unselected_hover_state_layer_opacity = 0x7f06019c; + public static final int m3_comp_switch_unselected_pressed_state_layer_opacity = 0x7f06019d; + public static final int m3_comp_text_button_focus_state_layer_opacity = 0x7f06019e; + public static final int m3_comp_text_button_hover_state_layer_opacity = 0x7f06019f; + public static final int m3_comp_text_button_pressed_state_layer_opacity = 0x7f0601a0; + public static final int m3_comp_time_input_time_input_field_focus_outline_width = 0x7f0601a1; + public static final int m3_comp_time_picker_container_elevation = 0x7f0601a2; + public static final int m3_comp_time_picker_period_selector_focus_state_layer_opacity = 0x7f0601a3; + public static final int m3_comp_time_picker_period_selector_hover_state_layer_opacity = 0x7f0601a4; + public static final int m3_comp_time_picker_period_selector_outline_width = 0x7f0601a5; + public static final int m3_comp_time_picker_period_selector_pressed_state_layer_opacity = 0x7f0601a6; + public static final int m3_comp_time_picker_time_selector_focus_state_layer_opacity = 0x7f0601a7; + public static final int m3_comp_time_picker_time_selector_hover_state_layer_opacity = 0x7f0601a8; + public static final int m3_comp_time_picker_time_selector_pressed_state_layer_opacity = 0x7f0601a9; + public static final int m3_comp_top_app_bar_large_container_height = 0x7f0601aa; + public static final int m3_comp_top_app_bar_medium_container_height = 0x7f0601ab; + public static final int m3_comp_top_app_bar_small_container_elevation = 0x7f0601ac; + public static final int m3_comp_top_app_bar_small_container_height = 0x7f0601ad; + public static final int m3_comp_top_app_bar_small_on_scroll_container_elevation = 0x7f0601ae; + public static final int m3_datepicker_elevation = 0x7f0601af; + public static final int m3_divider_heavy_thickness = 0x7f0601b0; + public static final int m3_extended_fab_bottom_padding = 0x7f0601b1; + public static final int m3_extended_fab_end_padding = 0x7f0601b2; + public static final int m3_extended_fab_icon_padding = 0x7f0601b3; + public static final int m3_extended_fab_min_height = 0x7f0601b4; + public static final int m3_extended_fab_start_padding = 0x7f0601b5; + public static final int m3_extended_fab_top_padding = 0x7f0601b6; + public static final int m3_fab_border_width = 0x7f0601b7; + public static final int m3_fab_corner_size = 0x7f0601b8; + public static final int m3_fab_translation_z_hovered_focused = 0x7f0601b9; + public static final int m3_fab_translation_z_pressed = 0x7f0601ba; + public static final int m3_large_fab_max_image_size = 0x7f0601bb; + public static final int m3_large_fab_size = 0x7f0601bc; + public static final int m3_large_text_vertical_offset_adjustment = 0x7f0601bd; + public static final int m3_menu_elevation = 0x7f0601be; + public static final int m3_nav_badge_with_text_vertical_offset = 0x7f0601bf; + public static final int m3_navigation_drawer_layout_corner_size = 0x7f0601c0; + public static final int m3_navigation_item_active_indicator_label_padding = 0x7f0601c1; + public static final int m3_navigation_item_horizontal_padding = 0x7f0601c2; + public static final int m3_navigation_item_icon_padding = 0x7f0601c3; + public static final int m3_navigation_item_shape_inset_bottom = 0x7f0601c4; + public static final int m3_navigation_item_shape_inset_end = 0x7f0601c5; + public static final int m3_navigation_item_shape_inset_start = 0x7f0601c6; + public static final int m3_navigation_item_shape_inset_top = 0x7f0601c7; + public static final int m3_navigation_item_vertical_padding = 0x7f0601c8; + public static final int m3_navigation_menu_divider_horizontal_padding = 0x7f0601c9; + public static final int m3_navigation_menu_headline_horizontal_padding = 0x7f0601ca; + public static final int m3_navigation_rail_default_width = 0x7f0601cb; + public static final int m3_navigation_rail_elevation = 0x7f0601cc; + public static final int m3_navigation_rail_icon_size = 0x7f0601cd; + public static final int m3_navigation_rail_item_active_indicator_height = 0x7f0601ce; + public static final int m3_navigation_rail_item_active_indicator_margin_horizontal = 0x7f0601cf; + public static final int m3_navigation_rail_item_active_indicator_width = 0x7f0601d0; + public static final int m3_navigation_rail_item_min_height = 0x7f0601d1; + public static final int m3_navigation_rail_item_padding_bottom = 0x7f0601d2; + public static final int m3_navigation_rail_item_padding_bottom_with_large_font = 0x7f0601d3; + public static final int m3_navigation_rail_item_padding_top = 0x7f0601d4; + public static final int m3_navigation_rail_item_padding_top_with_large_font = 0x7f0601d5; + public static final int m3_navigation_rail_label_padding_horizontal = 0x7f0601d6; + public static final int m3_ripple_default_alpha = 0x7f0601d7; + public static final int m3_ripple_focused_alpha = 0x7f0601d8; + public static final int m3_ripple_hovered_alpha = 0x7f0601d9; + public static final int m3_ripple_pressed_alpha = 0x7f0601da; + public static final int m3_ripple_selectable_pressed_alpha = 0x7f0601db; + public static final int m3_searchbar_elevation = 0x7f0601dc; + public static final int m3_searchbar_height = 0x7f0601dd; + public static final int m3_searchbar_margin_horizontal = 0x7f0601de; + public static final int m3_searchbar_margin_vertical = 0x7f0601df; + public static final int m3_searchbar_outlined_stroke_width = 0x7f0601e0; + public static final int m3_searchbar_padding_start = 0x7f0601e1; + public static final int m3_searchbar_text_margin_start_no_navigation_icon = 0x7f0601e2; + public static final int m3_searchbar_text_size = 0x7f0601e3; + public static final int m3_searchview_divider_size = 0x7f0601e4; + public static final int m3_searchview_elevation = 0x7f0601e5; + public static final int m3_searchview_height = 0x7f0601e6; + public static final int m3_side_sheet_margin_detached = 0x7f0601e7; + public static final int m3_side_sheet_modal_elevation = 0x7f0601e8; + public static final int m3_side_sheet_standard_elevation = 0x7f0601e9; + public static final int m3_side_sheet_width = 0x7f0601ea; + public static final int m3_simple_item_color_hovered_alpha = 0x7f0601eb; + public static final int m3_simple_item_color_selected_alpha = 0x7f0601ec; + public static final int m3_slider_thumb_elevation = 0x7f0601ed; + public static final int m3_small_fab_max_image_size = 0x7f0601ee; + public static final int m3_small_fab_size = 0x7f0601ef; + public static final int m3_snackbar_action_text_color_alpha = 0x7f0601f0; + public static final int m3_snackbar_margin = 0x7f0601f1; + public static final int m3_sys_elevation_level0 = 0x7f0601f2; + public static final int m3_sys_elevation_level1 = 0x7f0601f3; + public static final int m3_sys_elevation_level2 = 0x7f0601f4; + public static final int m3_sys_elevation_level3 = 0x7f0601f5; + public static final int m3_sys_elevation_level4 = 0x7f0601f6; + public static final int m3_sys_elevation_level5 = 0x7f0601f7; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_x1 = 0x7f0601f8; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_x2 = 0x7f0601f9; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_y1 = 0x7f0601fa; + public static final int m3_sys_motion_easing_emphasized_accelerate_control_y2 = 0x7f0601fb; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_x1 = 0x7f0601fc; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_x2 = 0x7f0601fd; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_y1 = 0x7f0601fe; + public static final int m3_sys_motion_easing_emphasized_decelerate_control_y2 = 0x7f0601ff; + public static final int m3_sys_motion_easing_legacy_accelerate_control_x1 = 0x7f060200; + public static final int m3_sys_motion_easing_legacy_accelerate_control_x2 = 0x7f060201; + public static final int m3_sys_motion_easing_legacy_accelerate_control_y1 = 0x7f060202; + public static final int m3_sys_motion_easing_legacy_accelerate_control_y2 = 0x7f060203; + public static final int m3_sys_motion_easing_legacy_control_x1 = 0x7f060204; + public static final int m3_sys_motion_easing_legacy_control_x2 = 0x7f060205; + public static final int m3_sys_motion_easing_legacy_control_y1 = 0x7f060206; + public static final int m3_sys_motion_easing_legacy_control_y2 = 0x7f060207; + public static final int m3_sys_motion_easing_legacy_decelerate_control_x1 = 0x7f060208; + public static final int m3_sys_motion_easing_legacy_decelerate_control_x2 = 0x7f060209; + public static final int m3_sys_motion_easing_legacy_decelerate_control_y1 = 0x7f06020a; + public static final int m3_sys_motion_easing_legacy_decelerate_control_y2 = 0x7f06020b; + public static final int m3_sys_motion_easing_linear_control_x1 = 0x7f06020c; + public static final int m3_sys_motion_easing_linear_control_x2 = 0x7f06020d; + public static final int m3_sys_motion_easing_linear_control_y1 = 0x7f06020e; + public static final int m3_sys_motion_easing_linear_control_y2 = 0x7f06020f; + public static final int m3_sys_motion_easing_standard_accelerate_control_x1 = 0x7f060210; + public static final int m3_sys_motion_easing_standard_accelerate_control_x2 = 0x7f060211; + public static final int m3_sys_motion_easing_standard_accelerate_control_y1 = 0x7f060212; + public static final int m3_sys_motion_easing_standard_accelerate_control_y2 = 0x7f060213; + public static final int m3_sys_motion_easing_standard_control_x1 = 0x7f060214; + public static final int m3_sys_motion_easing_standard_control_x2 = 0x7f060215; + public static final int m3_sys_motion_easing_standard_control_y1 = 0x7f060216; + public static final int m3_sys_motion_easing_standard_control_y2 = 0x7f060217; + public static final int m3_sys_motion_easing_standard_decelerate_control_x1 = 0x7f060218; + public static final int m3_sys_motion_easing_standard_decelerate_control_x2 = 0x7f060219; + public static final int m3_sys_motion_easing_standard_decelerate_control_y1 = 0x7f06021a; + public static final int m3_sys_motion_easing_standard_decelerate_control_y2 = 0x7f06021b; + public static final int m3_sys_state_dragged_state_layer_opacity = 0x7f06021c; + public static final int m3_sys_state_focus_state_layer_opacity = 0x7f06021d; + public static final int m3_sys_state_hover_state_layer_opacity = 0x7f06021e; + public static final int m3_sys_state_pressed_state_layer_opacity = 0x7f06021f; + public static final int m3_timepicker_display_stroke_width = 0x7f060220; + public static final int m3_timepicker_window_elevation = 0x7f060221; + public static final int m3_toolbar_text_size_title = 0x7f060222; + public static final int material_bottom_sheet_max_width = 0x7f060223; + public static final int material_clock_display_height = 0x7f060224; + public static final int material_clock_display_padding = 0x7f060225; + public static final int material_clock_display_width = 0x7f060226; + public static final int material_clock_face_margin_bottom = 0x7f060227; + public static final int material_clock_face_margin_top = 0x7f060228; + public static final int material_clock_hand_center_dot_radius = 0x7f060229; + public static final int material_clock_hand_padding = 0x7f06022a; + public static final int material_clock_hand_stroke_width = 0x7f06022b; + public static final int material_clock_number_text_size = 0x7f06022c; + public static final int material_clock_period_toggle_height = 0x7f06022d; + public static final int material_clock_period_toggle_horizontal_gap = 0x7f06022e; + public static final int material_clock_period_toggle_vertical_gap = 0x7f06022f; + public static final int material_clock_period_toggle_width = 0x7f060230; + public static final int material_clock_size = 0x7f060231; + public static final int material_cursor_inset = 0x7f060232; + public static final int material_cursor_width = 0x7f060233; + public static final int material_divider_thickness = 0x7f060234; + public static final int material_emphasis_disabled = 0x7f060235; + public static final int material_emphasis_disabled_background = 0x7f060236; + public static final int material_emphasis_high_type = 0x7f060237; + public static final int material_emphasis_medium = 0x7f060238; + public static final int material_filled_edittext_font_1_3_padding_bottom = 0x7f060239; + public static final int material_filled_edittext_font_1_3_padding_top = 0x7f06023a; + public static final int material_filled_edittext_font_2_0_padding_bottom = 0x7f06023b; + public static final int material_filled_edittext_font_2_0_padding_top = 0x7f06023c; + public static final int material_font_1_3_box_collapsed_padding_top = 0x7f06023d; + public static final int material_font_2_0_box_collapsed_padding_top = 0x7f06023e; + public static final int material_helper_text_default_padding_top = 0x7f06023f; + public static final int material_helper_text_font_1_3_padding_horizontal = 0x7f060240; + public static final int material_helper_text_font_1_3_padding_top = 0x7f060241; + public static final int material_input_text_to_prefix_suffix_padding = 0x7f060242; + public static final int material_textinput_default_width = 0x7f060243; + public static final int material_textinput_max_width = 0x7f060244; + public static final int material_textinput_min_width = 0x7f060245; + public static final int material_time_picker_minimum_screen_height = 0x7f060246; + public static final int material_time_picker_minimum_screen_width = 0x7f060247; + public static final int mtrl_alert_dialog_background_inset_bottom = 0x7f060248; + public static final int mtrl_alert_dialog_background_inset_end = 0x7f060249; + public static final int mtrl_alert_dialog_background_inset_start = 0x7f06024a; + public static final int mtrl_alert_dialog_background_inset_top = 0x7f06024b; + public static final int mtrl_alert_dialog_picker_background_inset = 0x7f06024c; + public static final int mtrl_badge_horizontal_edge_offset = 0x7f06024d; + public static final int mtrl_badge_long_text_horizontal_padding = 0x7f06024e; + public static final int mtrl_badge_size = 0x7f06024f; + public static final int mtrl_badge_text_horizontal_edge_offset = 0x7f060250; + public static final int mtrl_badge_text_size = 0x7f060251; + public static final int mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f060252; + public static final int mtrl_badge_toolbar_action_menu_item_vertical_offset = 0x7f060253; + public static final int mtrl_badge_with_text_size = 0x7f060254; + public static final int mtrl_bottomappbar_fabOffsetEndMode = 0x7f060255; + public static final int mtrl_bottomappbar_fab_bottom_margin = 0x7f060256; + public static final int mtrl_bottomappbar_fab_cradle_margin = 0x7f060257; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f060258; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f060259; + public static final int mtrl_bottomappbar_height = 0x7f06025a; + public static final int mtrl_btn_corner_radius = 0x7f06025b; + public static final int mtrl_btn_dialog_btn_min_width = 0x7f06025c; + public static final int mtrl_btn_disabled_elevation = 0x7f06025d; + public static final int mtrl_btn_disabled_z = 0x7f06025e; + public static final int mtrl_btn_elevation = 0x7f06025f; + public static final int mtrl_btn_focused_z = 0x7f060260; + public static final int mtrl_btn_hovered_z = 0x7f060261; + public static final int mtrl_btn_icon_btn_padding_left = 0x7f060262; + public static final int mtrl_btn_icon_padding = 0x7f060263; + public static final int mtrl_btn_inset = 0x7f060264; + public static final int mtrl_btn_letter_spacing = 0x7f060265; + public static final int mtrl_btn_max_width = 0x7f060266; + public static final int mtrl_btn_padding_bottom = 0x7f060267; + public static final int mtrl_btn_padding_left = 0x7f060268; + public static final int mtrl_btn_padding_right = 0x7f060269; + public static final int mtrl_btn_padding_top = 0x7f06026a; + public static final int mtrl_btn_pressed_z = 0x7f06026b; + public static final int mtrl_btn_snackbar_margin_horizontal = 0x7f06026c; + public static final int mtrl_btn_stroke_size = 0x7f06026d; + public static final int mtrl_btn_text_btn_icon_padding = 0x7f06026e; + public static final int mtrl_btn_text_btn_padding_left = 0x7f06026f; + public static final int mtrl_btn_text_btn_padding_right = 0x7f060270; + public static final int mtrl_btn_text_size = 0x7f060271; + public static final int mtrl_btn_z = 0x7f060272; + public static final int mtrl_calendar_action_confirm_button_min_width = 0x7f060273; + public static final int mtrl_calendar_action_height = 0x7f060274; + public static final int mtrl_calendar_action_padding = 0x7f060275; + public static final int mtrl_calendar_bottom_padding = 0x7f060276; + public static final int mtrl_calendar_content_padding = 0x7f060277; + public static final int mtrl_calendar_day_corner = 0x7f060278; + public static final int mtrl_calendar_day_height = 0x7f060279; + public static final int mtrl_calendar_day_horizontal_padding = 0x7f06027a; + public static final int mtrl_calendar_day_today_stroke = 0x7f06027b; + public static final int mtrl_calendar_day_vertical_padding = 0x7f06027c; + public static final int mtrl_calendar_day_width = 0x7f06027d; + public static final int mtrl_calendar_days_of_week_height = 0x7f06027e; + public static final int mtrl_calendar_dialog_background_inset = 0x7f06027f; + public static final int mtrl_calendar_header_content_padding = 0x7f060280; + public static final int mtrl_calendar_header_content_padding_fullscreen = 0x7f060281; + public static final int mtrl_calendar_header_divider_thickness = 0x7f060282; + public static final int mtrl_calendar_header_height = 0x7f060283; + public static final int mtrl_calendar_header_height_fullscreen = 0x7f060284; + public static final int mtrl_calendar_header_selection_line_height = 0x7f060285; + public static final int mtrl_calendar_header_text_padding = 0x7f060286; + public static final int mtrl_calendar_header_toggle_margin_bottom = 0x7f060287; + public static final int mtrl_calendar_header_toggle_margin_top = 0x7f060288; + public static final int mtrl_calendar_landscape_header_width = 0x7f060289; + public static final int mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f06028a; + public static final int mtrl_calendar_month_horizontal_padding = 0x7f06028b; + public static final int mtrl_calendar_month_vertical_padding = 0x7f06028c; + public static final int mtrl_calendar_navigation_bottom_padding = 0x7f06028d; + public static final int mtrl_calendar_navigation_height = 0x7f06028e; + public static final int mtrl_calendar_navigation_top_padding = 0x7f06028f; + public static final int mtrl_calendar_pre_l_text_clip_padding = 0x7f060290; + public static final int mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f060291; + public static final int mtrl_calendar_selection_text_baseline_to_bottom = 0x7f060292; + public static final int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 0x7f060293; + public static final int mtrl_calendar_selection_text_baseline_to_top = 0x7f060294; + public static final int mtrl_calendar_text_input_padding_top = 0x7f060295; + public static final int mtrl_calendar_title_baseline_to_top = 0x7f060296; + public static final int mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f060297; + public static final int mtrl_calendar_year_corner = 0x7f060298; + public static final int mtrl_calendar_year_height = 0x7f060299; + public static final int mtrl_calendar_year_horizontal_padding = 0x7f06029a; + public static final int mtrl_calendar_year_vertical_padding = 0x7f06029b; + public static final int mtrl_calendar_year_width = 0x7f06029c; + public static final int mtrl_card_checked_icon_margin = 0x7f06029d; + public static final int mtrl_card_checked_icon_size = 0x7f06029e; + public static final int mtrl_card_corner_radius = 0x7f06029f; + public static final int mtrl_card_dragged_z = 0x7f0602a0; + public static final int mtrl_card_elevation = 0x7f0602a1; + public static final int mtrl_card_spacing = 0x7f0602a2; + public static final int mtrl_chip_pressed_translation_z = 0x7f0602a3; + public static final int mtrl_chip_text_size = 0x7f0602a4; + public static final int mtrl_exposed_dropdown_menu_popup_elevation = 0x7f0602a5; + public static final int mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f0602a6; + public static final int mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f0602a7; + public static final int mtrl_extended_fab_bottom_padding = 0x7f0602a8; + public static final int mtrl_extended_fab_disabled_elevation = 0x7f0602a9; + public static final int mtrl_extended_fab_disabled_translation_z = 0x7f0602aa; + public static final int mtrl_extended_fab_elevation = 0x7f0602ab; + public static final int mtrl_extended_fab_end_padding = 0x7f0602ac; + public static final int mtrl_extended_fab_end_padding_icon = 0x7f0602ad; + public static final int mtrl_extended_fab_icon_size = 0x7f0602ae; + public static final int mtrl_extended_fab_icon_text_spacing = 0x7f0602af; + public static final int mtrl_extended_fab_min_height = 0x7f0602b0; + public static final int mtrl_extended_fab_min_width = 0x7f0602b1; + public static final int mtrl_extended_fab_start_padding = 0x7f0602b2; + public static final int mtrl_extended_fab_start_padding_icon = 0x7f0602b3; + public static final int mtrl_extended_fab_top_padding = 0x7f0602b4; + public static final int mtrl_extended_fab_translation_z_base = 0x7f0602b5; + public static final int mtrl_extended_fab_translation_z_hovered_focused = 0x7f0602b6; + public static final int mtrl_extended_fab_translation_z_pressed = 0x7f0602b7; + public static final int mtrl_fab_elevation = 0x7f0602b8; + public static final int mtrl_fab_min_touch_target = 0x7f0602b9; + public static final int mtrl_fab_translation_z_hovered_focused = 0x7f0602ba; + public static final int mtrl_fab_translation_z_pressed = 0x7f0602bb; + public static final int mtrl_high_ripple_default_alpha = 0x7f0602bc; + public static final int mtrl_high_ripple_focused_alpha = 0x7f0602bd; + public static final int mtrl_high_ripple_hovered_alpha = 0x7f0602be; + public static final int mtrl_high_ripple_pressed_alpha = 0x7f0602bf; + public static final int mtrl_low_ripple_default_alpha = 0x7f0602c0; + public static final int mtrl_low_ripple_focused_alpha = 0x7f0602c1; + public static final int mtrl_low_ripple_hovered_alpha = 0x7f0602c2; + public static final int mtrl_low_ripple_pressed_alpha = 0x7f0602c3; + public static final int mtrl_min_touch_target_size = 0x7f0602c4; + public static final int mtrl_navigation_bar_item_default_icon_size = 0x7f0602c5; + public static final int mtrl_navigation_bar_item_default_margin = 0x7f0602c6; + public static final int mtrl_navigation_elevation = 0x7f0602c7; + public static final int mtrl_navigation_item_horizontal_padding = 0x7f0602c8; + public static final int mtrl_navigation_item_icon_padding = 0x7f0602c9; + public static final int mtrl_navigation_item_icon_size = 0x7f0602ca; + public static final int mtrl_navigation_item_shape_horizontal_margin = 0x7f0602cb; + public static final int mtrl_navigation_item_shape_vertical_margin = 0x7f0602cc; + public static final int mtrl_navigation_rail_active_text_size = 0x7f0602cd; + public static final int mtrl_navigation_rail_compact_width = 0x7f0602ce; + public static final int mtrl_navigation_rail_default_width = 0x7f0602cf; + public static final int mtrl_navigation_rail_elevation = 0x7f0602d0; + public static final int mtrl_navigation_rail_icon_margin = 0x7f0602d1; + public static final int mtrl_navigation_rail_icon_size = 0x7f0602d2; + public static final int mtrl_navigation_rail_margin = 0x7f0602d3; + public static final int mtrl_navigation_rail_text_bottom_margin = 0x7f0602d4; + public static final int mtrl_navigation_rail_text_size = 0x7f0602d5; + public static final int mtrl_progress_circular_inset = 0x7f0602d6; + public static final int mtrl_progress_circular_inset_extra_small = 0x7f0602d7; + public static final int mtrl_progress_circular_inset_medium = 0x7f0602d8; + public static final int mtrl_progress_circular_inset_small = 0x7f0602d9; + public static final int mtrl_progress_circular_radius = 0x7f0602da; + public static final int mtrl_progress_circular_size = 0x7f0602db; + public static final int mtrl_progress_circular_size_extra_small = 0x7f0602dc; + public static final int mtrl_progress_circular_size_medium = 0x7f0602dd; + public static final int mtrl_progress_circular_size_small = 0x7f0602de; + public static final int mtrl_progress_circular_track_thickness_extra_small = 0x7f0602df; + public static final int mtrl_progress_circular_track_thickness_medium = 0x7f0602e0; + public static final int mtrl_progress_circular_track_thickness_small = 0x7f0602e1; + public static final int mtrl_progress_indicator_full_rounded_corner_radius = 0x7f0602e2; + public static final int mtrl_progress_track_thickness = 0x7f0602e3; + public static final int mtrl_shape_corner_size_large_component = 0x7f0602e4; + public static final int mtrl_shape_corner_size_medium_component = 0x7f0602e5; + public static final int mtrl_shape_corner_size_small_component = 0x7f0602e6; + public static final int mtrl_slider_halo_radius = 0x7f0602e7; + public static final int mtrl_slider_label_padding = 0x7f0602e8; + public static final int mtrl_slider_label_radius = 0x7f0602e9; + public static final int mtrl_slider_label_square_side = 0x7f0602ea; + public static final int mtrl_slider_thumb_elevation = 0x7f0602eb; + public static final int mtrl_slider_thumb_radius = 0x7f0602ec; + public static final int mtrl_slider_tick_min_spacing = 0x7f0602ed; + public static final int mtrl_slider_tick_radius = 0x7f0602ee; + public static final int mtrl_slider_track_height = 0x7f0602ef; + public static final int mtrl_slider_track_side_padding = 0x7f0602f0; + public static final int mtrl_slider_widget_height = 0x7f0602f1; + public static final int mtrl_snackbar_action_text_color_alpha = 0x7f0602f2; + public static final int mtrl_snackbar_background_corner_radius = 0x7f0602f3; + public static final int mtrl_snackbar_background_overlay_color_alpha = 0x7f0602f4; + public static final int mtrl_snackbar_margin = 0x7f0602f5; + public static final int mtrl_snackbar_message_margin_horizontal = 0x7f0602f6; + public static final int mtrl_snackbar_padding_horizontal = 0x7f0602f7; + public static final int mtrl_switch_text_padding = 0x7f0602f8; + public static final int mtrl_switch_thumb_elevation = 0x7f0602f9; + public static final int mtrl_switch_thumb_icon_size = 0x7f0602fa; + public static final int mtrl_switch_thumb_size = 0x7f0602fb; + public static final int mtrl_switch_track_height = 0x7f0602fc; + public static final int mtrl_switch_track_width = 0x7f0602fd; + public static final int mtrl_textinput_box_corner_radius_medium = 0x7f0602fe; + public static final int mtrl_textinput_box_corner_radius_small = 0x7f0602ff; + public static final int mtrl_textinput_box_label_cutout_padding = 0x7f060300; + public static final int mtrl_textinput_box_stroke_width_default = 0x7f060301; + public static final int mtrl_textinput_box_stroke_width_focused = 0x7f060302; + public static final int mtrl_textinput_counter_margin_start = 0x7f060303; + public static final int mtrl_textinput_end_icon_margin_start = 0x7f060304; + public static final int mtrl_textinput_outline_box_expanded_padding = 0x7f060305; + public static final int mtrl_textinput_start_icon_margin_end = 0x7f060306; + public static final int mtrl_toolbar_default_height = 0x7f060307; + public static final int mtrl_tooltip_arrowSize = 0x7f060308; + public static final int mtrl_tooltip_cornerSize = 0x7f060309; + public static final int mtrl_tooltip_minHeight = 0x7f06030a; + public static final int mtrl_tooltip_minWidth = 0x7f06030b; + public static final int mtrl_tooltip_padding = 0x7f06030c; + public static final int mtrl_transition_shared_axis_slide_distance = 0x7f06030d; + public static final int notification_action_icon_size = 0x7f06030e; + public static final int notification_action_text_size = 0x7f06030f; + public static final int notification_big_circle_margin = 0x7f060310; + public static final int notification_content_margin_start = 0x7f060311; + public static final int notification_large_icon_height = 0x7f060312; + public static final int notification_large_icon_width = 0x7f060313; + public static final int notification_main_column_padding_top = 0x7f060314; + public static final int notification_media_narrow_margin = 0x7f060315; + public static final int notification_right_icon_size = 0x7f060316; + public static final int notification_right_side_padding_top = 0x7f060317; + public static final int notification_small_icon_background_padding = 0x7f060318; + public static final int notification_small_icon_size_as_large = 0x7f060319; + public static final int notification_subtext_size = 0x7f06031a; + public static final int notification_top_pad = 0x7f06031b; + public static final int notification_top_pad_large_text = 0x7f06031c; + public static final int tooltip_corner_radius = 0x7f06031e; + public static final int tooltip_horizontal_padding = 0x7f06031f; + public static final int tooltip_margin = 0x7f060320; + public static final int tooltip_precise_anchor_extra_offset = 0x7f060321; + public static final int tooltip_precise_anchor_threshold = 0x7f060322; + public static final int tooltip_vertical_padding = 0x7f060323; + public static final int tooltip_y_offset_non_touch = 0x7f060324; + public static final int tooltip_y_offset_touch = 0x7f060325; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070028; + public static final int abc_action_bar_item_background_material = 0x7f070029; + public static final int abc_btn_borderless_material = 0x7f07002a; + public static final int abc_btn_check_material = 0x7f07002b; + public static final int abc_btn_check_material_anim = 0x7f07002c; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07002d; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07002e; + public static final int abc_btn_colored_material = 0x7f07002f; + public static final int abc_btn_default_mtrl_shape = 0x7f070030; + public static final int abc_btn_radio_material = 0x7f070031; + public static final int abc_btn_radio_material_anim = 0x7f070032; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f070033; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070034; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070035; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070036; + public static final int abc_cab_background_internal_bg = 0x7f070037; + public static final int abc_cab_background_top_material = 0x7f070038; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070039; + public static final int abc_control_background_material = 0x7f07003a; + public static final int abc_dialog_material_background = 0x7f07003b; + public static final int abc_edit_text_material = 0x7f07003c; + public static final int abc_ic_ab_back_material = 0x7f07003d; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07003e; + public static final int abc_ic_clear_material = 0x7f07003f; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f070040; + public static final int abc_ic_go_search_api_material = 0x7f070041; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f070042; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f070043; + public static final int abc_ic_menu_overflow_material = 0x7f070044; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070045; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070046; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070047; + public static final int abc_ic_search_api_material = 0x7f070048; + public static final int abc_ic_voice_search_api_material = 0x7f070049; + public static final int abc_item_background_holo_dark = 0x7f07004a; + public static final int abc_item_background_holo_light = 0x7f07004b; + public static final int abc_list_divider_material = 0x7f07004c; + public static final int abc_list_divider_mtrl_alpha = 0x7f07004d; + public static final int abc_list_focused_holo = 0x7f07004e; + public static final int abc_list_longpressed_holo = 0x7f07004f; + public static final int abc_list_pressed_holo_dark = 0x7f070050; + public static final int abc_list_pressed_holo_light = 0x7f070051; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070052; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070053; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070054; + public static final int abc_list_selector_disabled_holo_light = 0x7f070055; + public static final int abc_list_selector_holo_dark = 0x7f070056; + public static final int abc_list_selector_holo_light = 0x7f070057; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f070058; + public static final int abc_popup_background_mtrl_mult = 0x7f070059; + public static final int abc_ratingbar_indicator_material = 0x7f07005a; + public static final int abc_ratingbar_material = 0x7f07005b; + public static final int abc_ratingbar_small_material = 0x7f07005c; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07005d; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f07005e; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f07005f; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070060; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070061; + public static final int abc_seekbar_thumb_material = 0x7f070062; + public static final int abc_seekbar_tick_mark_material = 0x7f070063; + public static final int abc_seekbar_track_material = 0x7f070064; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070065; + public static final int abc_spinner_textfield_background_material = 0x7f070066; + public static final int abc_star_black_48dp = 0x7f070067; + public static final int abc_star_half_black_48dp = 0x7f070068; + public static final int abc_switch_thumb_material = 0x7f070069; + public static final int abc_switch_track_mtrl_alpha = 0x7f07006a; + public static final int abc_tab_indicator_material = 0x7f07006b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07006c; + public static final int abc_text_cursor_material = 0x7f07006d; + public static final int abc_text_select_handle_left_mtrl = 0x7f07006e; + public static final int abc_text_select_handle_middle_mtrl = 0x7f07006f; + public static final int abc_text_select_handle_right_mtrl = 0x7f070070; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070071; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070072; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070073; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070074; + public static final int abc_textfield_search_material = 0x7f070075; + public static final int abc_vector_test = 0x7f070076; + public static final int avd_hide_password = 0x7f070077; + public static final int avd_show_password = 0x7f070078; + public static final int btn_checkbox_checked_mtrl = 0x7f070079; + public static final int btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f07007a; + public static final int btn_checkbox_unchecked_mtrl = 0x7f07007b; + public static final int btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f07007c; + public static final int btn_radio_off_mtrl = 0x7f07007d; + public static final int btn_radio_off_to_on_mtrl_animation = 0x7f07007e; + public static final int btn_radio_on_mtrl = 0x7f07007f; + public static final int btn_radio_on_to_off_mtrl_animation = 0x7f070080; + public static final int design_fab_background = 0x7f070081; + public static final int design_ic_visibility = 0x7f070082; + public static final int design_ic_visibility_off = 0x7f070083; + public static final int design_password_eye = 0x7f070084; + public static final int design_snackbar_background = 0x7f070085; + public static final int ic_arrow_back_black_24 = 0x7f070087; + public static final int ic_call_answer = 0x7f070088; + public static final int ic_call_answer_low = 0x7f070089; + public static final int ic_call_answer_video = 0x7f07008a; + public static final int ic_call_answer_video_low = 0x7f07008b; + public static final int ic_call_decline = 0x7f07008c; + public static final int ic_call_decline_low = 0x7f07008d; + public static final int ic_clear_black_24 = 0x7f07008e; + public static final int ic_clock_black_24dp = 0x7f07008f; + public static final int ic_keyboard_black_24dp = 0x7f070090; + public static final int ic_m3_chip_check = 0x7f070091; + public static final int ic_m3_chip_checked_circle = 0x7f070092; + public static final int ic_m3_chip_close = 0x7f070093; + public static final int ic_mtrl_checked_circle = 0x7f070094; + public static final int ic_mtrl_chip_checked_black = 0x7f070095; + public static final int ic_mtrl_chip_checked_circle = 0x7f070096; + public static final int ic_mtrl_chip_close_circle = 0x7f070097; + public static final int ic_search_black_24 = 0x7f070098; + public static final int indeterminate_static = 0x7f070099; + public static final int m3_avd_hide_password = 0x7f07009a; + public static final int m3_avd_show_password = 0x7f07009b; + public static final int m3_bottom_sheet_drag_handle = 0x7f07009c; + public static final int m3_password_eye = 0x7f07009d; + public static final int m3_popupmenu_background_overlay = 0x7f07009e; + public static final int m3_radiobutton_ripple = 0x7f07009f; + public static final int m3_selection_control_ripple = 0x7f0700a0; + public static final int m3_tabs_background = 0x7f0700a1; + public static final int m3_tabs_line_indicator = 0x7f0700a2; + public static final int m3_tabs_rounded_line_indicator = 0x7f0700a3; + public static final int m3_tabs_transparent_background = 0x7f0700a4; + public static final int material_cursor_drawable = 0x7f0700a5; + public static final int material_ic_calendar_black_24dp = 0x7f0700a6; + public static final int material_ic_clear_black_24dp = 0x7f0700a7; + public static final int material_ic_edit_black_24dp = 0x7f0700a8; + public static final int material_ic_keyboard_arrow_left_black_24dp = 0x7f0700a9; + public static final int material_ic_keyboard_arrow_next_black_24dp = 0x7f0700aa; + public static final int material_ic_keyboard_arrow_previous_black_24dp = 0x7f0700ab; + public static final int material_ic_keyboard_arrow_right_black_24dp = 0x7f0700ac; + public static final int material_ic_menu_arrow_down_black_24dp = 0x7f0700ad; + public static final int material_ic_menu_arrow_up_black_24dp = 0x7f0700ae; + public static final int mtrl_bottomsheet_drag_handle = 0x7f0700b1; + public static final int mtrl_checkbox_button = 0x7f0700b2; + public static final int mtrl_checkbox_button_checked_unchecked = 0x7f0700b3; + public static final int mtrl_checkbox_button_icon = 0x7f0700b4; + public static final int mtrl_checkbox_button_icon_checked_indeterminate = 0x7f0700b5; + public static final int mtrl_checkbox_button_icon_checked_unchecked = 0x7f0700b6; + public static final int mtrl_checkbox_button_icon_indeterminate_checked = 0x7f0700b7; + public static final int mtrl_checkbox_button_icon_indeterminate_unchecked = 0x7f0700b8; + public static final int mtrl_checkbox_button_icon_unchecked_checked = 0x7f0700b9; + public static final int mtrl_checkbox_button_icon_unchecked_indeterminate = 0x7f0700ba; + public static final int mtrl_checkbox_button_unchecked_checked = 0x7f0700bb; + public static final int mtrl_dialog_background = 0x7f0700bc; + public static final int mtrl_dropdown_arrow = 0x7f0700bd; + public static final int mtrl_ic_arrow_drop_down = 0x7f0700be; + public static final int mtrl_ic_arrow_drop_up = 0x7f0700bf; + public static final int mtrl_ic_cancel = 0x7f0700c0; + public static final int mtrl_ic_check_mark = 0x7f0700c1; + public static final int mtrl_ic_checkbox_checked = 0x7f0700c2; + public static final int mtrl_ic_checkbox_unchecked = 0x7f0700c3; + public static final int mtrl_ic_error = 0x7f0700c4; + public static final int mtrl_ic_indeterminate = 0x7f0700c5; + public static final int mtrl_navigation_bar_item_background = 0x7f0700c6; + public static final int mtrl_popupmenu_background = 0x7f0700c7; + public static final int mtrl_popupmenu_background_overlay = 0x7f0700c8; + public static final int mtrl_switch_thumb = 0x7f0700c9; + public static final int mtrl_switch_thumb_checked = 0x7f0700ca; + public static final int mtrl_switch_thumb_checked_pressed = 0x7f0700cb; + public static final int mtrl_switch_thumb_checked_unchecked = 0x7f0700cc; + public static final int mtrl_switch_thumb_pressed = 0x7f0700cd; + public static final int mtrl_switch_thumb_pressed_checked = 0x7f0700ce; + public static final int mtrl_switch_thumb_pressed_unchecked = 0x7f0700cf; + public static final int mtrl_switch_thumb_unchecked = 0x7f0700d0; + public static final int mtrl_switch_thumb_unchecked_checked = 0x7f0700d1; + public static final int mtrl_switch_thumb_unchecked_pressed = 0x7f0700d2; + public static final int mtrl_switch_track = 0x7f0700d3; + public static final int mtrl_switch_track_decoration = 0x7f0700d4; + public static final int mtrl_tabs_default_indicator = 0x7f0700d5; + public static final int navigation_empty_icon = 0x7f0700d6; + public static final int notification_action_background = 0x7f0700d7; + public static final int notification_bg = 0x7f0700d8; + public static final int notification_bg_low = 0x7f0700d9; + public static final int notification_bg_low_normal = 0x7f0700da; + public static final int notification_bg_low_pressed = 0x7f0700db; + public static final int notification_bg_normal = 0x7f0700dc; + public static final int notification_bg_normal_pressed = 0x7f0700dd; + public static final int notification_icon_background = 0x7f0700de; + public static final int notification_oversize_large_icon_bg = 0x7f0700df; + public static final int notification_template_icon_bg = 0x7f0700e0; + public static final int notification_template_icon_low_bg = 0x7f0700e1; + public static final int notification_tile_bg = 0x7f0700e2; + public static final int notify_panel_notification_icon_bg = 0x7f0700e3; + public static final int test_level_drawable = 0x7f0700e5; + public static final int tooltip_frame_dark = 0x7f0700e6; + public static final int tooltip_frame_light = 0x7f0700e7; + } + public static final class id { + public static final int BOTTOM_END = 0x7f080001; + public static final int BOTTOM_START = 0x7f080002; + public static final int NO_DEBUG = 0x7f080006; + public static final int SHOW_ALL = 0x7f080008; + public static final int SHOW_PATH = 0x7f080009; + public static final int SHOW_PROGRESS = 0x7f08000a; + public static final int TOP_END = 0x7f08000c; + public static final int TOP_START = 0x7f08000d; + public static final int accelerate = 0x7f08000f; + public static final int accessibility_action_clickable_span = 0x7f080010; + public static final int accessibility_custom_action_0 = 0x7f080011; + public static final int accessibility_custom_action_1 = 0x7f080012; + public static final int accessibility_custom_action_10 = 0x7f080013; + public static final int accessibility_custom_action_11 = 0x7f080014; + public static final int accessibility_custom_action_12 = 0x7f080015; + public static final int accessibility_custom_action_13 = 0x7f080016; + public static final int accessibility_custom_action_14 = 0x7f080017; + public static final int accessibility_custom_action_15 = 0x7f080018; + public static final int accessibility_custom_action_16 = 0x7f080019; + public static final int accessibility_custom_action_17 = 0x7f08001a; + public static final int accessibility_custom_action_18 = 0x7f08001b; + public static final int accessibility_custom_action_19 = 0x7f08001c; + public static final int accessibility_custom_action_2 = 0x7f08001d; + public static final int accessibility_custom_action_20 = 0x7f08001e; + public static final int accessibility_custom_action_21 = 0x7f08001f; + public static final int accessibility_custom_action_22 = 0x7f080020; + public static final int accessibility_custom_action_23 = 0x7f080021; + public static final int accessibility_custom_action_24 = 0x7f080022; + public static final int accessibility_custom_action_25 = 0x7f080023; + public static final int accessibility_custom_action_26 = 0x7f080024; + public static final int accessibility_custom_action_27 = 0x7f080025; + public static final int accessibility_custom_action_28 = 0x7f080026; + public static final int accessibility_custom_action_29 = 0x7f080027; + public static final int accessibility_custom_action_3 = 0x7f080028; + public static final int accessibility_custom_action_30 = 0x7f080029; + public static final int accessibility_custom_action_31 = 0x7f08002a; + public static final int accessibility_custom_action_4 = 0x7f08002b; + public static final int accessibility_custom_action_5 = 0x7f08002c; + public static final int accessibility_custom_action_6 = 0x7f08002d; + public static final int accessibility_custom_action_7 = 0x7f08002e; + public static final int accessibility_custom_action_8 = 0x7f08002f; + public static final int accessibility_custom_action_9 = 0x7f080030; + public static final int action_bar = 0x7f080034; + public static final int action_bar_activity_content = 0x7f080035; + public static final int action_bar_container = 0x7f080036; + public static final int action_bar_root = 0x7f080037; + public static final int action_bar_spinner = 0x7f080038; + public static final int action_bar_subtitle = 0x7f080039; + public static final int action_bar_title = 0x7f08003a; + public static final int action_container = 0x7f08003b; + public static final int action_context_bar = 0x7f08003c; + public static final int action_divider = 0x7f08003d; + public static final int action_image = 0x7f08003e; + public static final int action_menu_divider = 0x7f08003f; + public static final int action_menu_presenter = 0x7f080040; + public static final int action_mode_bar = 0x7f080041; + public static final int action_mode_bar_stub = 0x7f080042; + public static final int action_mode_close_button = 0x7f080043; + public static final int action_text = 0x7f080044; + public static final int actions = 0x7f080045; + public static final int activity_chooser_view_content = 0x7f080046; + public static final int add = 0x7f080047; + public static final int alertTitle = 0x7f080049; + public static final int aligned = 0x7f08004a; + public static final int animateToEnd = 0x7f080051; + public static final int animateToStart = 0x7f080052; + public static final int arc = 0x7f080055; + public static final int asConfigured = 0x7f080056; + public static final int async = 0x7f080057; + public static final int auto = 0x7f080058; + public static final int autoComplete = 0x7f080059; + public static final int autoCompleteToEnd = 0x7f08005a; + public static final int autoCompleteToStart = 0x7f08005b; + public static final int baseline = 0x7f08005e; + public static final int blocking = 0x7f080063; + public static final int bottom = 0x7f080064; + public static final int bounce = 0x7f080066; + public static final int buttonPanel = 0x7f08006f; + public static final int cancel_button = 0x7f080072; + public static final int center = 0x7f080074; + public static final int centerCrop = 0x7f080075; + public static final int centerInside = 0x7f080076; + public static final int chain = 0x7f080079; + public static final int checkbox = 0x7f08007c; + public static final int checked = 0x7f08007d; + public static final int chronometer = 0x7f08007e; + public static final int circle_center = 0x7f08007f; + public static final int clear_text = 0x7f080080; + public static final int clockwise = 0x7f080083; + public static final int compress = 0x7f080086; + public static final int confirm_button = 0x7f080087; + public static final int container = 0x7f080089; + public static final int content = 0x7f08008a; + public static final int contentPanel = 0x7f08008b; + public static final int contiguous = 0x7f08008c; + public static final int coordinator = 0x7f08008e; + public static final int cos = 0x7f08008f; + public static final int counterclockwise = 0x7f080090; + public static final int cradle = 0x7f080091; + public static final int custom = 0x7f080093; + public static final int customPanel = 0x7f080094; + public static final int cut = 0x7f080095; + public static final int date_picker_actions = 0x7f080096; + public static final int decelerate = 0x7f080097; + public static final int decelerateAndComplete = 0x7f080098; + public static final int decor_content_parent = 0x7f080099; + public static final int default_activity_button = 0x7f08009a; + public static final int deltaRelative = 0x7f08009b; + public static final int design_bottom_sheet = 0x7f08009d; + public static final int design_menu_item_action_area = 0x7f08009e; + public static final int design_menu_item_action_area_stub = 0x7f08009f; + public static final int design_menu_item_text = 0x7f0800a0; + public static final int design_navigation_view = 0x7f0800a1; + public static final int dialog_button = 0x7f0800a2; + public static final int disjoint = 0x7f0800a9; + public static final int dragDown = 0x7f0800ac; + public static final int dragEnd = 0x7f0800ad; + public static final int dragLeft = 0x7f0800ae; + public static final int dragRight = 0x7f0800af; + public static final int dragStart = 0x7f0800b0; + public static final int dragUp = 0x7f0800b1; + public static final int dropdown_menu = 0x7f0800b2; + public static final int easeIn = 0x7f0800b3; + public static final int easeInOut = 0x7f0800b4; + public static final int easeOut = 0x7f0800b5; + public static final int edge = 0x7f0800b7; + public static final int edit_query = 0x7f0800b8; + public static final int edit_text_id = 0x7f0800b9; + public static final int elastic = 0x7f0800ba; + public static final int embed = 0x7f0800bb; + public static final int end = 0x7f0800bc; + public static final int endToStart = 0x7f0800bd; + public static final int escape = 0x7f0800c0; + public static final int expand_activities_button = 0x7f0800c2; + public static final int expanded_menu = 0x7f0800c3; + public static final int fade = 0x7f0800c4; + public static final int fill = 0x7f0800c5; + public static final int filled = 0x7f0800c8; + public static final int fitCenter = 0x7f0800c9; + public static final int fitEnd = 0x7f0800ca; + public static final int fitStart = 0x7f0800cb; + public static final int fitXY = 0x7f0800cd; + public static final int fixed = 0x7f0800ce; + public static final int flip = 0x7f0800cf; + public static final int floating = 0x7f0800d0; + public static final int forever = 0x7f0800d2; + public static final int fragment_container_view_tag = 0x7f0800d3; + public static final int fullscreen_header = 0x7f0800d5; + public static final int ghost_view = 0x7f0800d6; + public static final int ghost_view_holder = 0x7f0800d7; + public static final int gone = 0x7f0800d9; + public static final int group_divider = 0x7f0800dc; + public static final int header_title = 0x7f0800df; + public static final int hide_ime_id = 0x7f0800e0; + public static final int home = 0x7f0800e2; + public static final int honorRequest = 0x7f0800e4; + public static final int icon = 0x7f0800e7; + public static final int icon_group = 0x7f0800e8; + public static final int ignore = 0x7f0800ea; + public static final int ignoreRequest = 0x7f0800eb; + public static final int image = 0x7f0800ec; + public static final int indeterminate = 0x7f0800ef; + public static final int info = 0x7f0800f0; + public static final int invisible = 0x7f0800f1; + public static final int inward = 0x7f0800f2; + public static final int italic = 0x7f0800f4; + public static final int item_touch_helper_previous_elevation = 0x7f0800f5; + public static final int jumpToEnd = 0x7f0800f6; + public static final int jumpToStart = 0x7f0800f7; + public static final int labeled = 0x7f0800f8; + public static final int layout = 0x7f0800f9; + public static final int left = 0x7f0800fa; + public static final int leftToRight = 0x7f0800fb; + public static final int legacy = 0x7f0800fc; + public static final int line1 = 0x7f0800fd; + public static final int line3 = 0x7f0800fe; + public static final int linear = 0x7f0800ff; + public static final int listMode = 0x7f080100; + public static final int list_item = 0x7f080101; + public static final int m3_side_sheet = 0x7f080104; + public static final int marquee = 0x7f080105; + public static final int masked = 0x7f080106; + public static final int match_parent = 0x7f080108; + public static final int material_clock_display = 0x7f080109; + public static final int material_clock_display_and_toggle = 0x7f08010a; + public static final int material_clock_face = 0x7f08010b; + public static final int material_clock_hand = 0x7f08010c; + public static final int material_clock_level = 0x7f08010d; + public static final int material_clock_period_am_button = 0x7f08010e; + public static final int material_clock_period_pm_button = 0x7f08010f; + public static final int material_clock_period_toggle = 0x7f080110; + public static final int material_hour_text_input = 0x7f080111; + public static final int material_hour_tv = 0x7f080112; + public static final int material_label = 0x7f080113; + public static final int material_minute_text_input = 0x7f080114; + public static final int material_minute_tv = 0x7f080115; + public static final int material_textinput_timepicker = 0x7f080116; + public static final int material_timepicker_cancel_button = 0x7f080117; + public static final int material_timepicker_container = 0x7f080118; + public static final int material_timepicker_mode_button = 0x7f080119; + public static final int material_timepicker_ok_button = 0x7f08011a; + public static final int material_timepicker_view = 0x7f08011b; + public static final int material_value_index = 0x7f08011c; + public static final int matrix = 0x7f08011d; + public static final int message = 0x7f08011f; + public static final int middle = 0x7f080120; + public static final int mini = 0x7f080121; + public static final int month_grid = 0x7f080122; + public static final int month_navigation_bar = 0x7f080123; + public static final int month_navigation_fragment_toggle = 0x7f080124; + public static final int month_navigation_next = 0x7f080125; + public static final int month_navigation_previous = 0x7f080126; + public static final int month_title = 0x7f080127; + public static final int motion_base = 0x7f080128; + public static final int mtrl_anchor_parent = 0x7f080129; + public static final int mtrl_calendar_day_selector_frame = 0x7f08012a; + public static final int mtrl_calendar_days_of_week = 0x7f08012b; + public static final int mtrl_calendar_frame = 0x7f08012c; + public static final int mtrl_calendar_main_pane = 0x7f08012d; + public static final int mtrl_calendar_months = 0x7f08012e; + public static final int mtrl_calendar_selection_frame = 0x7f08012f; + public static final int mtrl_calendar_text_input_frame = 0x7f080130; + public static final int mtrl_calendar_year_selector_frame = 0x7f080131; + public static final int mtrl_card_checked_layer_id = 0x7f080132; + public static final int mtrl_child_content_container = 0x7f080133; + public static final int mtrl_internal_children_alpha_tag = 0x7f080134; + public static final int mtrl_motion_snapshot_view = 0x7f080135; + public static final int mtrl_picker_fullscreen = 0x7f080136; + public static final int mtrl_picker_header = 0x7f080137; + public static final int mtrl_picker_header_selection_text = 0x7f080138; + public static final int mtrl_picker_header_title_and_selection = 0x7f080139; + public static final int mtrl_picker_header_toggle = 0x7f08013a; + public static final int mtrl_picker_text_input_date = 0x7f08013b; + public static final int mtrl_picker_text_input_range_end = 0x7f08013c; + public static final int mtrl_picker_text_input_range_start = 0x7f08013d; + public static final int mtrl_picker_title_text = 0x7f08013e; + public static final int mtrl_view_tag_bottom_padding = 0x7f08013f; + public static final int multiply = 0x7f080140; + public static final int navigation_bar_item_active_indicator_view = 0x7f080144; + public static final int navigation_bar_item_icon_container = 0x7f080145; + public static final int navigation_bar_item_icon_view = 0x7f080146; + public static final int navigation_bar_item_labels_group = 0x7f080147; + public static final int navigation_bar_item_large_label_view = 0x7f080148; + public static final int navigation_bar_item_small_label_view = 0x7f080149; + public static final int navigation_header_container = 0x7f08014a; + public static final int none = 0x7f080155; + public static final int normal = 0x7f080156; + public static final int notification_background = 0x7f080158; + public static final int notification_main_column = 0x7f080159; + public static final int notification_main_column_container = 0x7f08015a; + public static final int off = 0x7f08015b; + public static final int on = 0x7f08015c; + public static final int open_search_bar_text_view = 0x7f08015e; + public static final int open_search_view_background = 0x7f08015f; + public static final int open_search_view_clear_button = 0x7f080160; + public static final int open_search_view_content_container = 0x7f080161; + public static final int open_search_view_divider = 0x7f080162; + public static final int open_search_view_dummy_toolbar = 0x7f080163; + public static final int open_search_view_edit_text = 0x7f080164; + public static final int open_search_view_header_container = 0x7f080165; + public static final int open_search_view_root = 0x7f080166; + public static final int open_search_view_scrim = 0x7f080167; + public static final int open_search_view_search_prefix = 0x7f080168; + public static final int open_search_view_status_bar_spacer = 0x7f080169; + public static final int open_search_view_toolbar = 0x7f08016a; + public static final int open_search_view_toolbar_container = 0x7f08016b; + public static final int outline = 0x7f08016c; + public static final int outward = 0x7f08016d; + public static final int packed = 0x7f08016f; + public static final int parallax = 0x7f080170; + public static final int parent = 0x7f080171; + public static final int parentPanel = 0x7f080172; + public static final int parentRelative = 0x7f080173; + public static final int parent_matrix = 0x7f080174; + public static final int password_toggle = 0x7f080175; + public static final int path = 0x7f080176; + public static final int pathRelative = 0x7f080177; + public static final int percent = 0x7f080179; + public static final int pin = 0x7f08017a; + public static final int position = 0x7f08017c; + public static final int postLayout = 0x7f08017d; + public static final int pressed = 0x7f08017e; + public static final int progress_circular = 0x7f08017f; + public static final int progress_horizontal = 0x7f080180; + public static final int radio = 0x7f080181; + public static final int rectangles = 0x7f080183; + public static final int report_drawn = 0x7f080184; + public static final int reverseSawtooth = 0x7f080185; + public static final int right = 0x7f080186; + public static final int rightToLeft = 0x7f080187; + public static final int right_icon = 0x7f080188; + public static final int right_side = 0x7f080189; + public static final int rounded = 0x7f08018a; + public static final int row_index_key = 0x7f08018b; + public static final int save_non_transition_alpha = 0x7f08018d; + public static final int save_overlay_view = 0x7f08018e; + public static final int sawtooth = 0x7f08018f; + public static final int scale = 0x7f080190; + public static final int screen = 0x7f080191; + public static final int scrollIndicatorDown = 0x7f080193; + public static final int scrollIndicatorUp = 0x7f080194; + public static final int scrollView = 0x7f080195; + public static final int scrollable = 0x7f080196; + public static final int search_badge = 0x7f080197; + public static final int search_bar = 0x7f080198; + public static final int search_button = 0x7f080199; + public static final int search_close_btn = 0x7f08019a; + public static final int search_edit_frame = 0x7f08019b; + public static final int search_go_btn = 0x7f08019c; + public static final int search_mag_icon = 0x7f08019d; + public static final int search_plate = 0x7f08019e; + public static final int search_src_text = 0x7f08019f; + public static final int search_voice_btn = 0x7f0801a0; + public static final int select_dialog_listview = 0x7f0801a1; + public static final int selected = 0x7f0801a2; + public static final int selection_type = 0x7f0801a3; + public static final int shortcut = 0x7f0801a7; + public static final int sin = 0x7f0801ab; + public static final int slide = 0x7f0801ae; + public static final int snackbar_action = 0x7f0801b1; + public static final int snackbar_text = 0x7f0801b2; + public static final int spacer = 0x7f0801b6; + public static final int special_effects_controller_view_tag = 0x7f0801b7; + public static final int spline = 0x7f0801b8; + public static final int split_action_bar = 0x7f0801b9; + public static final int spread = 0x7f0801ba; + public static final int spread_inside = 0x7f0801bb; + public static final int square = 0x7f0801bd; + public static final int src_atop = 0x7f0801be; + public static final int src_in = 0x7f0801bf; + public static final int src_over = 0x7f0801c0; + public static final int standard = 0x7f0801c1; + public static final int start = 0x7f0801c2; + public static final int startHorizontal = 0x7f0801c3; + public static final int startToEnd = 0x7f0801c4; + public static final int startVertical = 0x7f0801c5; + public static final int staticLayout = 0x7f0801c6; + public static final int staticPostLayout = 0x7f0801c7; + public static final int stop = 0x7f0801c8; + public static final int stretch = 0x7f0801c9; + public static final int submenuarrow = 0x7f0801ca; + public static final int submit_area = 0x7f0801cb; + public static final int tabMode = 0x7f0801cd; + public static final int tag_accessibility_actions = 0x7f0801ce; + public static final int tag_accessibility_clickable_spans = 0x7f0801cf; + public static final int tag_accessibility_heading = 0x7f0801d0; + public static final int tag_accessibility_pane_title = 0x7f0801d1; + public static final int tag_on_apply_window_listener = 0x7f0801d3; + public static final int tag_on_receive_content_listener = 0x7f0801d4; + public static final int tag_on_receive_content_mime_types = 0x7f0801d5; + public static final int tag_screen_reader_focusable = 0x7f0801d6; + public static final int tag_state_description = 0x7f0801d7; + public static final int tag_transition_group = 0x7f0801d9; + public static final int tag_unhandled_key_event_manager = 0x7f0801da; + public static final int tag_unhandled_key_listeners = 0x7f0801db; + public static final int tag_window_insets_animation_callback = 0x7f0801dc; + public static final int text = 0x7f0801dd; + public static final int text2 = 0x7f0801de; + public static final int textSpacerNoButtons = 0x7f0801e0; + public static final int textSpacerNoTitle = 0x7f0801e1; + public static final int text_input_end_icon = 0x7f0801e4; + public static final int text_input_error_icon = 0x7f0801e5; + public static final int text_input_start_icon = 0x7f0801e6; + public static final int textinput_counter = 0x7f0801e7; + public static final int textinput_error = 0x7f0801e8; + public static final int textinput_helper_text = 0x7f0801e9; + public static final int textinput_placeholder = 0x7f0801ea; + public static final int textinput_prefix_text = 0x7f0801eb; + public static final int textinput_suffix_text = 0x7f0801ec; + public static final int time = 0x7f0801ed; + public static final int title = 0x7f0801ee; + public static final int titleDividerNoCustom = 0x7f0801ef; + public static final int title_template = 0x7f0801f0; + public static final int top = 0x7f0801f2; + public static final int topPanel = 0x7f0801f3; + public static final int touch_outside = 0x7f0801f5; + public static final int transition_clip = 0x7f0801f8; + public static final int transition_current_scene = 0x7f0801f9; + public static final int transition_image_transform = 0x7f0801fa; + public static final int transition_layout_save = 0x7f0801fb; + public static final int transition_pause_alpha = 0x7f0801fc; + public static final int transition_position = 0x7f0801fd; + public static final int transition_scene_layoutid_cache = 0x7f0801fe; + public static final int transition_transform = 0x7f0801ff; + public static final int triangle = 0x7f080200; + public static final int unchecked = 0x7f080201; + public static final int uniform = 0x7f080202; + public static final int unlabeled = 0x7f080203; + public static final int up = 0x7f080204; + public static final int view_offset_helper = 0x7f080208; + public static final int view_tree_lifecycle_owner = 0x7f08020b; + public static final int view_tree_on_back_pressed_dispatcher_owner = 0x7f08020c; + public static final int view_tree_saved_state_registry_owner = 0x7f08020d; + public static final int view_tree_view_model_store_owner = 0x7f08020e; + public static final int visible = 0x7f08020f; + public static final int visible_removing_fragment_view_tag = 0x7f080210; + public static final int with_icon = 0x7f080213; + public static final int withinBounds = 0x7f080214; + public static final int wrap = 0x7f080215; + public static final int wrap_content = 0x7f080216; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int app_bar_elevation_anim_duration = 0x7f090002; + public static final int bottom_sheet_slide_duration = 0x7f090003; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090006; + public static final int design_snackbar_text_max_lines = 0x7f090007; + public static final int design_tab_indicator_anim_duration_ms = 0x7f090008; + public static final int hide_password_duration = 0x7f090009; + public static final int m3_badge_max_number = 0x7f09000a; + public static final int m3_btn_anim_delay_ms = 0x7f09000b; + public static final int m3_btn_anim_duration_ms = 0x7f09000c; + public static final int m3_card_anim_delay_ms = 0x7f09000d; + public static final int m3_card_anim_duration_ms = 0x7f09000e; + public static final int m3_chip_anim_duration = 0x7f09000f; + public static final int m3_sys_motion_duration_extra_long1 = 0x7f090010; + public static final int m3_sys_motion_duration_extra_long2 = 0x7f090011; + public static final int m3_sys_motion_duration_extra_long3 = 0x7f090012; + public static final int m3_sys_motion_duration_extra_long4 = 0x7f090013; + public static final int m3_sys_motion_duration_long1 = 0x7f090014; + public static final int m3_sys_motion_duration_long2 = 0x7f090015; + public static final int m3_sys_motion_duration_long3 = 0x7f090016; + public static final int m3_sys_motion_duration_long4 = 0x7f090017; + public static final int m3_sys_motion_duration_medium1 = 0x7f090018; + public static final int m3_sys_motion_duration_medium2 = 0x7f090019; + public static final int m3_sys_motion_duration_medium3 = 0x7f09001a; + public static final int m3_sys_motion_duration_medium4 = 0x7f09001b; + public static final int m3_sys_motion_duration_short1 = 0x7f09001c; + public static final int m3_sys_motion_duration_short2 = 0x7f09001d; + public static final int m3_sys_motion_duration_short3 = 0x7f09001e; + public static final int m3_sys_motion_duration_short4 = 0x7f09001f; + public static final int m3_sys_motion_path = 0x7f090020; + public static final int m3_sys_shape_corner_extra_large_corner_family = 0x7f090021; + public static final int m3_sys_shape_corner_extra_small_corner_family = 0x7f090022; + public static final int m3_sys_shape_corner_full_corner_family = 0x7f090023; + public static final int m3_sys_shape_corner_large_corner_family = 0x7f090024; + public static final int m3_sys_shape_corner_medium_corner_family = 0x7f090025; + public static final int m3_sys_shape_corner_small_corner_family = 0x7f090026; + public static final int material_motion_duration_long_1 = 0x7f090027; + public static final int material_motion_duration_long_2 = 0x7f090028; + public static final int material_motion_duration_medium_1 = 0x7f090029; + public static final int material_motion_duration_medium_2 = 0x7f09002a; + public static final int material_motion_duration_short_1 = 0x7f09002b; + public static final int material_motion_duration_short_2 = 0x7f09002c; + public static final int material_motion_path = 0x7f09002d; + public static final int mtrl_badge_max_character_count = 0x7f09002e; + public static final int mtrl_btn_anim_delay_ms = 0x7f09002f; + public static final int mtrl_btn_anim_duration_ms = 0x7f090030; + public static final int mtrl_calendar_header_orientation = 0x7f090031; + public static final int mtrl_calendar_selection_text_lines = 0x7f090032; + public static final int mtrl_calendar_year_selector_span = 0x7f090033; + public static final int mtrl_card_anim_delay_ms = 0x7f090034; + public static final int mtrl_card_anim_duration_ms = 0x7f090035; + public static final int mtrl_chip_anim_duration = 0x7f090036; + public static final int mtrl_switch_thumb_motion_duration = 0x7f090037; + public static final int mtrl_switch_thumb_post_morphing_duration = 0x7f090038; + public static final int mtrl_switch_thumb_pre_morphing_duration = 0x7f090039; + public static final int mtrl_switch_thumb_pressed_duration = 0x7f09003a; + public static final int mtrl_switch_thumb_viewport_center_coordinate = 0x7f09003b; + public static final int mtrl_switch_thumb_viewport_size = 0x7f09003c; + public static final int mtrl_switch_track_viewport_height = 0x7f09003d; + public static final int mtrl_switch_track_viewport_width = 0x7f09003e; + public static final int mtrl_tab_indicator_anim_duration_ms = 0x7f09003f; + public static final int mtrl_view_gone = 0x7f090040; + public static final int mtrl_view_invisible = 0x7f090041; + public static final int mtrl_view_visible = 0x7f090042; + public static final int show_password_duration = 0x7f090043; + public static final int status_bar_notification_info_maxnum = 0x7f090044; + } + public static final class interpolator { + public static final int btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000; + public static final int btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002; + public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003; + public static final int btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004; + public static final int btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005; + public static final int fast_out_slow_in = 0x7f0a0006; + public static final int m3_sys_motion_easing_emphasized = 0x7f0a0007; + public static final int m3_sys_motion_easing_emphasized_accelerate = 0x7f0a0008; + public static final int m3_sys_motion_easing_emphasized_decelerate = 0x7f0a0009; + public static final int m3_sys_motion_easing_linear = 0x7f0a000a; + public static final int m3_sys_motion_easing_standard = 0x7f0a000b; + public static final int m3_sys_motion_easing_standard_accelerate = 0x7f0a000c; + public static final int m3_sys_motion_easing_standard_decelerate = 0x7f0a000d; + public static final int mtrl_fast_out_linear_in = 0x7f0a000e; + public static final int mtrl_fast_out_slow_in = 0x7f0a000f; + public static final int mtrl_linear = 0x7f0a0010; + public static final int mtrl_linear_out_slow_in = 0x7f0a0011; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int custom_dialog = 0x7f0b001e; + public static final int design_bottom_navigation_item = 0x7f0b001f; + public static final int design_bottom_sheet_dialog = 0x7f0b0020; + public static final int design_layout_snackbar = 0x7f0b0021; + public static final int design_layout_snackbar_include = 0x7f0b0022; + public static final int design_layout_tab_icon = 0x7f0b0023; + public static final int design_layout_tab_text = 0x7f0b0024; + public static final int design_menu_item_action_area = 0x7f0b0025; + public static final int design_navigation_item = 0x7f0b0026; + public static final int design_navigation_item_header = 0x7f0b0027; + public static final int design_navigation_item_separator = 0x7f0b0028; + public static final int design_navigation_item_subheader = 0x7f0b0029; + public static final int design_navigation_menu = 0x7f0b002a; + public static final int design_navigation_menu_item = 0x7f0b002b; + public static final int design_text_input_end_icon = 0x7f0b002c; + public static final int design_text_input_start_icon = 0x7f0b002d; + public static final int ime_base_split_test_activity = 0x7f0b0031; + public static final int ime_secondary_split_test_activity = 0x7f0b0032; + public static final int m3_alert_dialog = 0x7f0b0033; + public static final int m3_alert_dialog_actions = 0x7f0b0034; + public static final int m3_alert_dialog_title = 0x7f0b0035; + public static final int m3_auto_complete_simple_item = 0x7f0b0036; + public static final int m3_side_sheet_dialog = 0x7f0b0037; + public static final int material_chip_input_combo = 0x7f0b0038; + public static final int material_clock_display = 0x7f0b0039; + public static final int material_clock_display_divider = 0x7f0b003a; + public static final int material_clock_period_toggle = 0x7f0b003b; + public static final int material_clock_period_toggle_land = 0x7f0b003c; + public static final int material_clockface_textview = 0x7f0b003d; + public static final int material_clockface_view = 0x7f0b003e; + public static final int material_radial_view_group = 0x7f0b003f; + public static final int material_textinput_timepicker = 0x7f0b0040; + public static final int material_time_chip = 0x7f0b0041; + public static final int material_time_input = 0x7f0b0042; + public static final int material_timepicker = 0x7f0b0043; + public static final int material_timepicker_dialog = 0x7f0b0044; + public static final int material_timepicker_textinput_display = 0x7f0b0045; + public static final int mtrl_alert_dialog = 0x7f0b0046; + public static final int mtrl_alert_dialog_actions = 0x7f0b0047; + public static final int mtrl_alert_dialog_title = 0x7f0b0048; + public static final int mtrl_alert_select_dialog_item = 0x7f0b0049; + public static final int mtrl_alert_select_dialog_multichoice = 0x7f0b004a; + public static final int mtrl_alert_select_dialog_singlechoice = 0x7f0b004b; + public static final int mtrl_auto_complete_simple_item = 0x7f0b004c; + public static final int mtrl_calendar_day = 0x7f0b004d; + public static final int mtrl_calendar_day_of_week = 0x7f0b004e; + public static final int mtrl_calendar_days_of_week = 0x7f0b004f; + public static final int mtrl_calendar_horizontal = 0x7f0b0050; + public static final int mtrl_calendar_month = 0x7f0b0051; + public static final int mtrl_calendar_month_labeled = 0x7f0b0052; + public static final int mtrl_calendar_month_navigation = 0x7f0b0053; + public static final int mtrl_calendar_months = 0x7f0b0054; + public static final int mtrl_calendar_vertical = 0x7f0b0055; + public static final int mtrl_calendar_year = 0x7f0b0056; + public static final int mtrl_layout_snackbar = 0x7f0b0057; + public static final int mtrl_layout_snackbar_include = 0x7f0b0058; + public static final int mtrl_navigation_rail_item = 0x7f0b0059; + public static final int mtrl_picker_actions = 0x7f0b005a; + public static final int mtrl_picker_dialog = 0x7f0b005b; + public static final int mtrl_picker_fullscreen = 0x7f0b005c; + public static final int mtrl_picker_header_dialog = 0x7f0b005d; + public static final int mtrl_picker_header_fullscreen = 0x7f0b005e; + public static final int mtrl_picker_header_selection_text = 0x7f0b005f; + public static final int mtrl_picker_header_title_text = 0x7f0b0060; + public static final int mtrl_picker_header_toggle = 0x7f0b0061; + public static final int mtrl_picker_text_input_date = 0x7f0b0062; + public static final int mtrl_picker_text_input_date_range = 0x7f0b0063; + public static final int mtrl_search_bar = 0x7f0b0064; + public static final int mtrl_search_view = 0x7f0b0065; + public static final int notification_action = 0x7f0b0067; + public static final int notification_action_tombstone = 0x7f0b0068; + public static final int notification_template_custom_big = 0x7f0b0069; + public static final int notification_template_icon_group = 0x7f0b006a; + public static final int notification_template_part_chronometer = 0x7f0b006b; + public static final int notification_template_part_time = 0x7f0b006c; + public static final int select_dialog_item_material = 0x7f0b006d; + public static final int select_dialog_multichoice_material = 0x7f0b006e; + public static final int select_dialog_singlechoice_material = 0x7f0b006f; + public static final int support_simple_spinner_dropdown_item = 0x7f0b0071; + } + public static final class plurals { + public static final int mtrl_badge_content_description = 0x7f0e0000; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f0f0000; + public static final int abc_action_bar_up_description = 0x7f0f0001; + public static final int abc_action_menu_overflow_description = 0x7f0f0002; + public static final int abc_action_mode_done = 0x7f0f0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0f0004; + public static final int abc_activitychooserview_choose_application = 0x7f0f0005; + public static final int abc_capital_off = 0x7f0f0006; + public static final int abc_capital_on = 0x7f0f0007; + public static final int abc_menu_alt_shortcut_label = 0x7f0f0008; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0f0009; + public static final int abc_menu_delete_shortcut_label = 0x7f0f000a; + public static final int abc_menu_enter_shortcut_label = 0x7f0f000b; + public static final int abc_menu_function_shortcut_label = 0x7f0f000c; + public static final int abc_menu_meta_shortcut_label = 0x7f0f000d; + public static final int abc_menu_shift_shortcut_label = 0x7f0f000e; + public static final int abc_menu_space_shortcut_label = 0x7f0f000f; + public static final int abc_menu_sym_shortcut_label = 0x7f0f0010; + public static final int abc_prepend_shortcut_label = 0x7f0f0011; + public static final int abc_search_hint = 0x7f0f0012; + public static final int abc_searchview_description_clear = 0x7f0f0013; + public static final int abc_searchview_description_query = 0x7f0f0014; + public static final int abc_searchview_description_search = 0x7f0f0015; + public static final int abc_searchview_description_submit = 0x7f0f0016; + public static final int abc_searchview_description_voice = 0x7f0f0017; + public static final int abc_shareactionprovider_share_with = 0x7f0f0018; + public static final int abc_shareactionprovider_share_with_application = 0x7f0f0019; + public static final int abc_toolbar_collapse_description = 0x7f0f001a; + public static final int appbar_scrolling_view_behavior = 0x7f0f001c; + public static final int bottom_sheet_behavior = 0x7f0f001d; + public static final int bottomsheet_action_collapse = 0x7f0f001e; + public static final int bottomsheet_action_expand = 0x7f0f001f; + public static final int bottomsheet_action_expand_halfway = 0x7f0f0020; + public static final int bottomsheet_drag_handle_clicked = 0x7f0f0021; + public static final int bottomsheet_drag_handle_content_description = 0x7f0f0022; + public static final int call_notification_answer_action = 0x7f0f0023; + public static final int call_notification_answer_video_action = 0x7f0f0024; + public static final int call_notification_decline_action = 0x7f0f0025; + public static final int call_notification_hang_up_action = 0x7f0f0026; + public static final int call_notification_incoming_text = 0x7f0f0027; + public static final int call_notification_ongoing_text = 0x7f0f0028; + public static final int call_notification_screening_text = 0x7f0f0029; + public static final int character_counter_content_description = 0x7f0f002a; + public static final int character_counter_overflowed_content_description = 0x7f0f002b; + public static final int character_counter_pattern = 0x7f0f002c; + public static final int clear_text_end_icon_content_description = 0x7f0f002d; + public static final int error_a11y_label = 0x7f0f0030; + public static final int error_icon_content_description = 0x7f0f0031; + public static final int exposed_dropdown_menu_content_description = 0x7f0f0032; + public static final int fab_transformation_scrim_behavior = 0x7f0f0033; + public static final int fab_transformation_sheet_behavior = 0x7f0f0034; + public static final int hide_bottom_view_on_scroll_behavior = 0x7f0f0038; + public static final int icon_content_description = 0x7f0f0039; + public static final int item_view_role_description = 0x7f0f003a; + public static final int m3_exceed_max_badge_text_suffix = 0x7f0f003b; + public static final int m3_ref_typeface_brand_medium = 0x7f0f003c; + public static final int m3_ref_typeface_brand_regular = 0x7f0f003d; + public static final int m3_ref_typeface_plain_medium = 0x7f0f003e; + public static final int m3_ref_typeface_plain_regular = 0x7f0f003f; + public static final int m3_sys_motion_easing_emphasized = 0x7f0f0040; + public static final int m3_sys_motion_easing_emphasized_accelerate = 0x7f0f0041; + public static final int m3_sys_motion_easing_emphasized_decelerate = 0x7f0f0042; + public static final int m3_sys_motion_easing_emphasized_path_data = 0x7f0f0043; + public static final int m3_sys_motion_easing_legacy = 0x7f0f0044; + public static final int m3_sys_motion_easing_legacy_accelerate = 0x7f0f0045; + public static final int m3_sys_motion_easing_legacy_decelerate = 0x7f0f0046; + public static final int m3_sys_motion_easing_linear = 0x7f0f0047; + public static final int m3_sys_motion_easing_standard = 0x7f0f0048; + public static final int m3_sys_motion_easing_standard_accelerate = 0x7f0f0049; + public static final int m3_sys_motion_easing_standard_decelerate = 0x7f0f004a; + public static final int material_clock_display_divider = 0x7f0f004b; + public static final int material_clock_toggle_content_description = 0x7f0f004c; + public static final int material_hour_24h_suffix = 0x7f0f004d; + public static final int material_hour_selection = 0x7f0f004e; + public static final int material_hour_suffix = 0x7f0f004f; + public static final int material_minute_selection = 0x7f0f0050; + public static final int material_minute_suffix = 0x7f0f0051; + public static final int material_motion_easing_accelerated = 0x7f0f0052; + public static final int material_motion_easing_decelerated = 0x7f0f0053; + public static final int material_motion_easing_emphasized = 0x7f0f0054; + public static final int material_motion_easing_linear = 0x7f0f0055; + public static final int material_motion_easing_standard = 0x7f0f0056; + public static final int material_slider_range_end = 0x7f0f0057; + public static final int material_slider_range_start = 0x7f0f0058; + public static final int material_slider_value = 0x7f0f0059; + public static final int material_timepicker_am = 0x7f0f005a; + public static final int material_timepicker_clock_mode_description = 0x7f0f005b; + public static final int material_timepicker_hour = 0x7f0f005c; + public static final int material_timepicker_minute = 0x7f0f005d; + public static final int material_timepicker_pm = 0x7f0f005e; + public static final int material_timepicker_select_time = 0x7f0f005f; + public static final int material_timepicker_text_input_mode_description = 0x7f0f0060; + public static final int mtrl_badge_numberless_content_description = 0x7f0f0062; + public static final int mtrl_checkbox_button_icon_path_checked = 0x7f0f0063; + public static final int mtrl_checkbox_button_icon_path_group_name = 0x7f0f0064; + public static final int mtrl_checkbox_button_icon_path_indeterminate = 0x7f0f0065; + public static final int mtrl_checkbox_button_icon_path_name = 0x7f0f0066; + public static final int mtrl_checkbox_button_path_checked = 0x7f0f0067; + public static final int mtrl_checkbox_button_path_group_name = 0x7f0f0068; + public static final int mtrl_checkbox_button_path_name = 0x7f0f0069; + public static final int mtrl_checkbox_button_path_unchecked = 0x7f0f006a; + public static final int mtrl_checkbox_state_description_checked = 0x7f0f006b; + public static final int mtrl_checkbox_state_description_indeterminate = 0x7f0f006c; + public static final int mtrl_checkbox_state_description_unchecked = 0x7f0f006d; + public static final int mtrl_chip_close_icon_content_description = 0x7f0f006e; + public static final int mtrl_exceed_max_badge_number_content_description = 0x7f0f006f; + public static final int mtrl_exceed_max_badge_number_suffix = 0x7f0f0070; + public static final int mtrl_picker_a11y_next_month = 0x7f0f0071; + public static final int mtrl_picker_a11y_prev_month = 0x7f0f0072; + public static final int mtrl_picker_announce_current_range_selection = 0x7f0f0073; + public static final int mtrl_picker_announce_current_selection = 0x7f0f0074; + public static final int mtrl_picker_announce_current_selection_none = 0x7f0f0075; + public static final int mtrl_picker_cancel = 0x7f0f0076; + public static final int mtrl_picker_confirm = 0x7f0f0077; + public static final int mtrl_picker_date_header_selected = 0x7f0f0078; + public static final int mtrl_picker_date_header_title = 0x7f0f0079; + public static final int mtrl_picker_date_header_unselected = 0x7f0f007a; + public static final int mtrl_picker_day_of_week_column_header = 0x7f0f007b; + public static final int mtrl_picker_end_date_description = 0x7f0f007c; + public static final int mtrl_picker_invalid_format = 0x7f0f007d; + public static final int mtrl_picker_invalid_format_example = 0x7f0f007e; + public static final int mtrl_picker_invalid_format_use = 0x7f0f007f; + public static final int mtrl_picker_invalid_range = 0x7f0f0080; + public static final int mtrl_picker_navigate_to_current_year_description = 0x7f0f0081; + public static final int mtrl_picker_navigate_to_year_description = 0x7f0f0082; + public static final int mtrl_picker_out_of_range = 0x7f0f0083; + public static final int mtrl_picker_range_header_only_end_selected = 0x7f0f0084; + public static final int mtrl_picker_range_header_only_start_selected = 0x7f0f0085; + public static final int mtrl_picker_range_header_selected = 0x7f0f0086; + public static final int mtrl_picker_range_header_title = 0x7f0f0087; + public static final int mtrl_picker_range_header_unselected = 0x7f0f0088; + public static final int mtrl_picker_save = 0x7f0f0089; + public static final int mtrl_picker_start_date_description = 0x7f0f008a; + public static final int mtrl_picker_text_input_date_hint = 0x7f0f008b; + public static final int mtrl_picker_text_input_date_range_end_hint = 0x7f0f008c; + public static final int mtrl_picker_text_input_date_range_start_hint = 0x7f0f008d; + public static final int mtrl_picker_text_input_day_abbr = 0x7f0f008e; + public static final int mtrl_picker_text_input_month_abbr = 0x7f0f008f; + public static final int mtrl_picker_text_input_year_abbr = 0x7f0f0090; + public static final int mtrl_picker_today_description = 0x7f0f0091; + public static final int mtrl_picker_toggle_to_calendar_input_mode = 0x7f0f0092; + public static final int mtrl_picker_toggle_to_day_selection = 0x7f0f0093; + public static final int mtrl_picker_toggle_to_text_input_mode = 0x7f0f0094; + public static final int mtrl_picker_toggle_to_year_selection = 0x7f0f0095; + public static final int mtrl_switch_thumb_group_name = 0x7f0f0096; + public static final int mtrl_switch_thumb_path_checked = 0x7f0f0097; + public static final int mtrl_switch_thumb_path_morphing = 0x7f0f0098; + public static final int mtrl_switch_thumb_path_name = 0x7f0f0099; + public static final int mtrl_switch_thumb_path_pressed = 0x7f0f009a; + public static final int mtrl_switch_thumb_path_unchecked = 0x7f0f009b; + public static final int mtrl_switch_track_decoration_path = 0x7f0f009c; + public static final int mtrl_switch_track_path = 0x7f0f009d; + public static final int mtrl_timepicker_cancel = 0x7f0f009e; + public static final int mtrl_timepicker_confirm = 0x7f0f009f; + public static final int password_toggle_content_description = 0x7f0f00a3; + public static final int path_password_eye = 0x7f0f00a4; + public static final int path_password_eye_mask_strike_through = 0x7f0f00a5; + public static final int path_password_eye_mask_visible = 0x7f0f00a6; + public static final int path_password_strike_through = 0x7f0f00a7; + public static final int search_menu_title = 0x7f0f00a8; + public static final int searchbar_scrolling_view_behavior = 0x7f0f00a9; + public static final int searchview_clear_text_content_description = 0x7f0f00aa; + public static final int searchview_navigation_content_description = 0x7f0f00ab; + public static final int side_sheet_accessibility_pane_title = 0x7f0f00ac; + public static final int side_sheet_behavior = 0x7f0f00ad; + public static final int status_bar_notification_info_overflow = 0x7f0f00ae; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f100001; + public static final int AlertDialog_AppCompat_Light = 0x7f100002; + public static final int Animation_AppCompat_Dialog = 0x7f100003; + public static final int Animation_AppCompat_DropDownUp = 0x7f100004; + public static final int Animation_AppCompat_Tooltip = 0x7f100005; + public static final int Animation_Design_BottomSheetDialog = 0x7f100006; + public static final int Animation_Material3_BottomSheetDialog = 0x7f100007; + public static final int Animation_Material3_SideSheetDialog = 0x7f100008; + public static final int Animation_Material3_SideSheetDialog_Left = 0x7f100009; + public static final int Animation_Material3_SideSheetDialog_Right = 0x7f10000a; + public static final int Animation_MaterialComponents_BottomSheetDialog = 0x7f10000b; + public static final int Base_AlertDialog_AppCompat = 0x7f10000e; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f10000f; + public static final int Base_Animation_AppCompat_Dialog = 0x7f100010; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f100011; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f100012; + public static final int Base_CardView = 0x7f100013; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f100015; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f100014; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Icon = 0x7f100016; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Panel = 0x7f100017; + public static final int Base_MaterialAlertDialog_MaterialComponents_Title_Text = 0x7f100018; + public static final int Base_TextAppearance_AppCompat = 0x7f100019; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f10001a; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f10001b; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f10001c; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f10001d; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f10001e; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f10001f; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f100020; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f100021; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f100022; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f100023; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f100024; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f100025; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f100026; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f100027; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f100028; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f100029; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f10002a; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f10002b; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f10002c; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f10002d; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f10002e; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f10002f; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f100030; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f100031; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f100032; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f100033; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f100034; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f100035; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f100036; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f100037; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f100038; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f100039; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f10003a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f10003b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f10003c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f10003d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f10003e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f10003f; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f100040; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f100041; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f100042; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f100043; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f100044; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f100045; + public static final int Base_TextAppearance_Material3_Search = 0x7f100046; + public static final int Base_TextAppearance_MaterialComponents_Badge = 0x7f100047; + public static final int Base_TextAppearance_MaterialComponents_Button = 0x7f100048; + public static final int Base_TextAppearance_MaterialComponents_Headline6 = 0x7f100049; + public static final int Base_TextAppearance_MaterialComponents_Subtitle2 = 0x7f10004a; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f10004b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f10004c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f10004d; + public static final int Base_ThemeOverlay_AppCompat = 0x7f10007b; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f10007c; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f10007d; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f10007e; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f10007f; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100080; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f100081; + public static final int Base_ThemeOverlay_Material3_AutoCompleteTextView = 0x7f100082; + public static final int Base_ThemeOverlay_Material3_BottomSheetDialog = 0x7f100083; + public static final int Base_ThemeOverlay_Material3_Dialog = 0x7f100084; + public static final int Base_ThemeOverlay_Material3_SideSheetDialog = 0x7f100085; + public static final int Base_ThemeOverlay_Material3_TextInputEditText = 0x7f100086; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog = 0x7f100087; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f100088; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 0x7f100089; + public static final int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 0x7f10008a; + public static final int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 0x7f10008b; + public static final int Base_Theme_AppCompat = 0x7f10004e; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f10004f; + public static final int Base_Theme_AppCompat_Dialog = 0x7f100050; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f100054; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f100051; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f100052; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f100053; + public static final int Base_Theme_AppCompat_Light = 0x7f100055; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f100056; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f100057; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f10005b; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f100058; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f100059; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10005a; + public static final int Base_Theme_Material3_Dark = 0x7f10005c; + public static final int Base_Theme_Material3_Dark_BottomSheetDialog = 0x7f10005d; + public static final int Base_Theme_Material3_Dark_Dialog = 0x7f10005e; + public static final int Base_Theme_Material3_Dark_DialogWhenLarge = 0x7f100060; + public static final int Base_Theme_Material3_Dark_Dialog_FixedSize = 0x7f10005f; + public static final int Base_Theme_Material3_Dark_SideSheetDialog = 0x7f100061; + public static final int Base_Theme_Material3_Light = 0x7f100062; + public static final int Base_Theme_Material3_Light_BottomSheetDialog = 0x7f100063; + public static final int Base_Theme_Material3_Light_Dialog = 0x7f100064; + public static final int Base_Theme_Material3_Light_DialogWhenLarge = 0x7f100066; + public static final int Base_Theme_Material3_Light_Dialog_FixedSize = 0x7f100065; + public static final int Base_Theme_Material3_Light_SideSheetDialog = 0x7f100067; + public static final int Base_Theme_MaterialComponents = 0x7f100068; + public static final int Base_Theme_MaterialComponents_Bridge = 0x7f100069; + public static final int Base_Theme_MaterialComponents_CompactMenu = 0x7f10006a; + public static final int Base_Theme_MaterialComponents_Dialog = 0x7f10006b; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge = 0x7f100070; + public static final int Base_Theme_MaterialComponents_Dialog_Alert = 0x7f10006c; + public static final int Base_Theme_MaterialComponents_Dialog_Bridge = 0x7f10006d; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize = 0x7f10006e; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth = 0x7f10006f; + public static final int Base_Theme_MaterialComponents_Light = 0x7f100071; + public static final int Base_Theme_MaterialComponents_Light_Bridge = 0x7f100072; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar = 0x7f100073; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f100074; + public static final int Base_Theme_MaterialComponents_Light_Dialog = 0x7f100075; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f10007a; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert = 0x7f100076; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Bridge = 0x7f100077; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 0x7f100078; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f100079; + public static final int Base_V14_ThemeOverlay_Material3_BottomSheetDialog = 0x7f10009d; + public static final int Base_V14_ThemeOverlay_Material3_SideSheetDialog = 0x7f10009e; + public static final int Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog = 0x7f10009f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 0x7f1000a0; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f1000a1; + public static final int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 0x7f1000a2; + public static final int Base_V14_Theme_Material3_Dark = 0x7f10008c; + public static final int Base_V14_Theme_Material3_Dark_BottomSheetDialog = 0x7f10008d; + public static final int Base_V14_Theme_Material3_Dark_Dialog = 0x7f10008e; + public static final int Base_V14_Theme_Material3_Dark_SideSheetDialog = 0x7f10008f; + public static final int Base_V14_Theme_Material3_Light = 0x7f100090; + public static final int Base_V14_Theme_Material3_Light_BottomSheetDialog = 0x7f100091; + public static final int Base_V14_Theme_Material3_Light_Dialog = 0x7f100092; + public static final int Base_V14_Theme_Material3_Light_SideSheetDialog = 0x7f100093; + public static final int Base_V14_Theme_MaterialComponents = 0x7f100094; + public static final int Base_V14_Theme_MaterialComponents_Bridge = 0x7f100095; + public static final int Base_V14_Theme_MaterialComponents_Dialog = 0x7f100096; + public static final int Base_V14_Theme_MaterialComponents_Dialog_Bridge = 0x7f100097; + public static final int Base_V14_Theme_MaterialComponents_Light = 0x7f100098; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge = 0x7f100099; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f10009a; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog = 0x7f10009b; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = 0x7f10009c; + public static final int Base_V14_Widget_MaterialComponents_AutoCompleteTextView = 0x7f1000a3; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f1000ac; + public static final int Base_V21_ThemeOverlay_Material3_BottomSheetDialog = 0x7f1000ad; + public static final int Base_V21_ThemeOverlay_Material3_SideSheetDialog = 0x7f1000ae; + public static final int Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog = 0x7f1000af; + public static final int Base_V21_Theme_AppCompat = 0x7f1000a4; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f1000a5; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f1000a6; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f1000a7; + public static final int Base_V21_Theme_MaterialComponents = 0x7f1000a8; + public static final int Base_V21_Theme_MaterialComponents_Dialog = 0x7f1000a9; + public static final int Base_V21_Theme_MaterialComponents_Light = 0x7f1000aa; + public static final int Base_V21_Theme_MaterialComponents_Light_Dialog = 0x7f1000ab; + public static final int Base_V22_Theme_AppCompat = 0x7f1000b0; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f1000b1; + public static final int Base_V23_Theme_AppCompat = 0x7f1000b2; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f1000b3; + public static final int Base_V24_Theme_Material3_Dark = 0x7f1000b4; + public static final int Base_V24_Theme_Material3_Dark_Dialog = 0x7f1000b5; + public static final int Base_V24_Theme_Material3_Light = 0x7f1000b6; + public static final int Base_V24_Theme_Material3_Light_Dialog = 0x7f1000b7; + public static final int Base_V26_Theme_AppCompat = 0x7f1000b8; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f1000b9; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f1000ba; + public static final int Base_V28_Theme_AppCompat = 0x7f1000bb; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f1000bc; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f1000c1; + public static final int Base_V7_Theme_AppCompat = 0x7f1000bd; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f1000be; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f1000bf; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f1000c0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f1000c2; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f1000c3; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f1000c4; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f1000c5; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f1000c6; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f1000c7; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f1000c8; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f1000c9; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f1000ca; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f1000cb; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f1000cc; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f1000cd; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f1000ce; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f1000cf; + public static final int Base_Widget_AppCompat_Button = 0x7f1000d0; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f1000d6; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f1000d7; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f1000d1; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f1000d2; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f1000d3; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f1000d4; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f1000d5; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f1000d8; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f1000d9; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f1000da; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f1000db; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f1000dc; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f1000dd; + public static final int Base_Widget_AppCompat_EditText = 0x7f1000de; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f1000df; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f1000e0; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f1000e1; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f1000e2; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f1000e3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f1000e4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f1000e5; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f1000e6; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f1000e7; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f1000e8; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f1000e9; + public static final int Base_Widget_AppCompat_ListView = 0x7f1000ea; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f1000eb; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f1000ec; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f1000ed; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f1000ee; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f1000ef; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f1000f0; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f1000f1; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f1000f2; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f1000f3; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f1000f4; + public static final int Base_Widget_AppCompat_SearchView = 0x7f1000f5; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f1000f6; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f1000f7; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f1000f8; + public static final int Base_Widget_AppCompat_Spinner = 0x7f1000f9; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f1000fa; + public static final int Base_Widget_AppCompat_TextView = 0x7f1000fb; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f1000fc; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f1000fd; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1000fe; + public static final int Base_Widget_Design_TabLayout = 0x7f1000ff; + public static final int Base_Widget_Material3_ActionBar_Solid = 0x7f100100; + public static final int Base_Widget_Material3_ActionMode = 0x7f100101; + public static final int Base_Widget_Material3_BottomNavigationView = 0x7f100102; + public static final int Base_Widget_Material3_CardView = 0x7f100103; + public static final int Base_Widget_Material3_Chip = 0x7f100104; + public static final int Base_Widget_Material3_CollapsingToolbar = 0x7f100105; + public static final int Base_Widget_Material3_CompoundButton_CheckBox = 0x7f100106; + public static final int Base_Widget_Material3_CompoundButton_RadioButton = 0x7f100107; + public static final int Base_Widget_Material3_CompoundButton_Switch = 0x7f100108; + public static final int Base_Widget_Material3_ExtendedFloatingActionButton = 0x7f100109; + public static final int Base_Widget_Material3_ExtendedFloatingActionButton_Icon = 0x7f10010a; + public static final int Base_Widget_Material3_FloatingActionButton = 0x7f10010b; + public static final int Base_Widget_Material3_FloatingActionButton_Large = 0x7f10010c; + public static final int Base_Widget_Material3_FloatingActionButton_Small = 0x7f10010d; + public static final int Base_Widget_Material3_Light_ActionBar_Solid = 0x7f10010e; + public static final int Base_Widget_Material3_MaterialCalendar_NavigationButton = 0x7f10010f; + public static final int Base_Widget_Material3_Snackbar = 0x7f100110; + public static final int Base_Widget_Material3_TabLayout = 0x7f100111; + public static final int Base_Widget_Material3_TabLayout_OnSurface = 0x7f100112; + public static final int Base_Widget_Material3_TabLayout_Secondary = 0x7f100113; + public static final int Base_Widget_MaterialComponents_AutoCompleteTextView = 0x7f100114; + public static final int Base_Widget_MaterialComponents_CheckedTextView = 0x7f100115; + public static final int Base_Widget_MaterialComponents_Chip = 0x7f100116; + public static final int Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 0x7f100117; + public static final int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton = 0x7f100118; + public static final int Base_Widget_MaterialComponents_PopupMenu = 0x7f100119; + public static final int Base_Widget_MaterialComponents_PopupMenu_ContextMenu = 0x7f10011a; + public static final int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = 0x7f10011b; + public static final int Base_Widget_MaterialComponents_PopupMenu_Overflow = 0x7f10011c; + public static final int Base_Widget_MaterialComponents_Slider = 0x7f10011d; + public static final int Base_Widget_MaterialComponents_Snackbar = 0x7f10011e; + public static final int Base_Widget_MaterialComponents_TextInputEditText = 0x7f10011f; + public static final int Base_Widget_MaterialComponents_TextInputLayout = 0x7f100120; + public static final int Base_Widget_MaterialComponents_TextView = 0x7f100121; + public static final int CardView = 0x7f100122; + public static final int CardView_Dark = 0x7f100123; + public static final int CardView_Light = 0x7f100124; + public static final int MaterialAlertDialog_Material3 = 0x7f100128; + public static final int MaterialAlertDialog_Material3_Animation = 0x7f100129; + public static final int MaterialAlertDialog_Material3_Body_Text = 0x7f10012a; + public static final int MaterialAlertDialog_Material3_Body_Text_CenterStacked = 0x7f10012b; + public static final int MaterialAlertDialog_Material3_Title_Icon = 0x7f10012c; + public static final int MaterialAlertDialog_Material3_Title_Icon_CenterStacked = 0x7f10012d; + public static final int MaterialAlertDialog_Material3_Title_Panel = 0x7f10012e; + public static final int MaterialAlertDialog_Material3_Title_Panel_CenterStacked = 0x7f10012f; + public static final int MaterialAlertDialog_Material3_Title_Text = 0x7f100130; + public static final int MaterialAlertDialog_Material3_Title_Text_CenterStacked = 0x7f100131; + public static final int MaterialAlertDialog_MaterialComponents = 0x7f100132; + public static final int MaterialAlertDialog_MaterialComponents_Body_Text = 0x7f100133; + public static final int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = 0x7f100134; + public static final int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = 0x7f100135; + public static final int MaterialAlertDialog_MaterialComponents_Title_Icon = 0x7f100136; + public static final int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = 0x7f100137; + public static final int MaterialAlertDialog_MaterialComponents_Title_Panel = 0x7f100138; + public static final int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = 0x7f100139; + public static final int MaterialAlertDialog_MaterialComponents_Title_Text = 0x7f10013a; + public static final int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = 0x7f10013b; + public static final int Platform_AppCompat = 0x7f100143; + public static final int Platform_AppCompat_Light = 0x7f100144; + public static final int Platform_MaterialComponents = 0x7f100145; + public static final int Platform_MaterialComponents_Dialog = 0x7f100146; + public static final int Platform_MaterialComponents_Light = 0x7f100147; + public static final int Platform_MaterialComponents_Light_Dialog = 0x7f100148; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f100149; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f10014a; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f10014b; + public static final int Platform_V21_AppCompat = 0x7f10014c; + public static final int Platform_V21_AppCompat_Light = 0x7f10014d; + public static final int Platform_V25_AppCompat = 0x7f10014e; + public static final int Platform_V25_AppCompat_Light = 0x7f10014f; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f100150; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f100151; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f100152; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f100153; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f100154; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f100155; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f100156; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f100157; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f100158; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f100159; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f10015f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f10015a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f10015b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f10015c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f10015d; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f10015e; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f100160; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f100161; + public static final int ShapeAppearanceOverlay_Material3_Button = 0x7f10018d; + public static final int ShapeAppearanceOverlay_Material3_Chip = 0x7f10018e; + public static final int ShapeAppearanceOverlay_Material3_Corner_Bottom = 0x7f10018f; + public static final int ShapeAppearanceOverlay_Material3_Corner_Left = 0x7f100190; + public static final int ShapeAppearanceOverlay_Material3_Corner_Right = 0x7f100191; + public static final int ShapeAppearanceOverlay_Material3_Corner_Top = 0x7f100192; + public static final int ShapeAppearanceOverlay_Material3_FloatingActionButton = 0x7f100193; + public static final int ShapeAppearanceOverlay_Material3_NavigationView_Item = 0x7f100194; + public static final int ShapeAppearanceOverlay_Material3_SearchBar = 0x7f100195; + public static final int ShapeAppearanceOverlay_Material3_SearchView = 0x7f100196; + public static final int ShapeAppearanceOverlay_MaterialAlertDialog_Material3 = 0x7f100197; + public static final int ShapeAppearanceOverlay_MaterialComponents_BottomSheet = 0x7f100198; + public static final int ShapeAppearanceOverlay_MaterialComponents_Chip = 0x7f100199; + public static final int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = 0x7f10019a; + public static final int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = 0x7f10019b; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 0x7f10019c; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = 0x7f10019d; + public static final int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = 0x7f10019e; + public static final int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = 0x7f10019f; + public static final int ShapeAppearance_M3_Comp_Badge_Large_Shape = 0x7f100162; + public static final int ShapeAppearance_M3_Comp_Badge_Shape = 0x7f100163; + public static final int ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape = 0x7f100164; + public static final int ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape = 0x7f100165; + public static final int ShapeAppearance_M3_Comp_FilledButton_Container_Shape = 0x7f100166; + public static final int ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape = 0x7f100167; + public static final int ShapeAppearance_M3_Comp_NavigationBar_Container_Shape = 0x7f100168; + public static final int ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape = 0x7f100169; + public static final int ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape = 0x7f10016a; + public static final int ShapeAppearance_M3_Comp_NavigationRail_Container_Shape = 0x7f10016b; + public static final int ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape = 0x7f10016c; + public static final int ShapeAppearance_M3_Comp_SearchBar_Container_Shape = 0x7f10016d; + public static final int ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape = 0x7f10016e; + public static final int ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape = 0x7f10016f; + public static final int ShapeAppearance_M3_Comp_Switch_Handle_Shape = 0x7f100170; + public static final int ShapeAppearance_M3_Comp_Switch_StateLayer_Shape = 0x7f100171; + public static final int ShapeAppearance_M3_Comp_Switch_Track_Shape = 0x7f100172; + public static final int ShapeAppearance_M3_Comp_TextButton_Container_Shape = 0x7f100173; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge = 0x7f100174; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall = 0x7f100175; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Full = 0x7f100176; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Large = 0x7f100177; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Medium = 0x7f100178; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_None = 0x7f100179; + public static final int ShapeAppearance_M3_Sys_Shape_Corner_Small = 0x7f10017a; + public static final int ShapeAppearance_Material3_Corner_ExtraLarge = 0x7f10017b; + public static final int ShapeAppearance_Material3_Corner_ExtraSmall = 0x7f10017c; + public static final int ShapeAppearance_Material3_Corner_Full = 0x7f10017d; + public static final int ShapeAppearance_Material3_Corner_Large = 0x7f10017e; + public static final int ShapeAppearance_Material3_Corner_Medium = 0x7f10017f; + public static final int ShapeAppearance_Material3_Corner_None = 0x7f100180; + public static final int ShapeAppearance_Material3_Corner_Small = 0x7f100181; + public static final int ShapeAppearance_Material3_LargeComponent = 0x7f100182; + public static final int ShapeAppearance_Material3_MediumComponent = 0x7f100183; + public static final int ShapeAppearance_Material3_NavigationBarView_ActiveIndicator = 0x7f100184; + public static final int ShapeAppearance_Material3_SmallComponent = 0x7f100185; + public static final int ShapeAppearance_Material3_Tooltip = 0x7f100186; + public static final int ShapeAppearance_MaterialComponents = 0x7f100187; + public static final int ShapeAppearance_MaterialComponents_Badge = 0x7f100188; + public static final int ShapeAppearance_MaterialComponents_LargeComponent = 0x7f100189; + public static final int ShapeAppearance_MaterialComponents_MediumComponent = 0x7f10018a; + public static final int ShapeAppearance_MaterialComponents_SmallComponent = 0x7f10018b; + public static final int ShapeAppearance_MaterialComponents_Tooltip = 0x7f10018c; + public static final int TextAppearance_AppCompat = 0x7f1001a0; + public static final int TextAppearance_AppCompat_Body1 = 0x7f1001a1; + public static final int TextAppearance_AppCompat_Body2 = 0x7f1001a2; + public static final int TextAppearance_AppCompat_Button = 0x7f1001a3; + public static final int TextAppearance_AppCompat_Caption = 0x7f1001a4; + public static final int TextAppearance_AppCompat_Display1 = 0x7f1001a5; + public static final int TextAppearance_AppCompat_Display2 = 0x7f1001a6; + public static final int TextAppearance_AppCompat_Display3 = 0x7f1001a7; + public static final int TextAppearance_AppCompat_Display4 = 0x7f1001a8; + public static final int TextAppearance_AppCompat_Headline = 0x7f1001a9; + public static final int TextAppearance_AppCompat_Inverse = 0x7f1001aa; + public static final int TextAppearance_AppCompat_Large = 0x7f1001ab; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f1001ac; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f1001ad; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f1001ae; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f1001af; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f1001b0; + public static final int TextAppearance_AppCompat_Medium = 0x7f1001b1; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f1001b2; + public static final int TextAppearance_AppCompat_Menu = 0x7f1001b3; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f1001b4; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f1001b5; + public static final int TextAppearance_AppCompat_Small = 0x7f1001b6; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f1001b7; + public static final int TextAppearance_AppCompat_Subhead = 0x7f1001b8; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f1001b9; + public static final int TextAppearance_AppCompat_Title = 0x7f1001ba; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f1001bb; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f1001bc; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f1001bd; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f1001be; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f1001bf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f1001c0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f1001c1; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f1001c2; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f1001c3; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f1001c4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f1001c5; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f1001c6; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f1001c7; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f1001c8; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f1001c9; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f1001ca; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f1001cb; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f1001cc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f1001cd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f1001ce; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f1001cf; + public static final int TextAppearance_Compat_Notification = 0x7f1001d0; + public static final int TextAppearance_Compat_Notification_Info = 0x7f1001d1; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f1001d2; + public static final int TextAppearance_Compat_Notification_Time = 0x7f1001d3; + public static final int TextAppearance_Compat_Notification_Title = 0x7f1001d4; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f1001d5; + public static final int TextAppearance_Design_Counter = 0x7f1001d6; + public static final int TextAppearance_Design_Counter_Overflow = 0x7f1001d7; + public static final int TextAppearance_Design_Error = 0x7f1001d8; + public static final int TextAppearance_Design_HelperText = 0x7f1001d9; + public static final int TextAppearance_Design_Hint = 0x7f1001da; + public static final int TextAppearance_Design_Placeholder = 0x7f1001db; + public static final int TextAppearance_Design_Prefix = 0x7f1001dc; + public static final int TextAppearance_Design_Snackbar_Message = 0x7f1001dd; + public static final int TextAppearance_Design_Suffix = 0x7f1001de; + public static final int TextAppearance_Design_Tab = 0x7f1001df; + public static final int TextAppearance_M3_Sys_Typescale_BodyLarge = 0x7f1001e0; + public static final int TextAppearance_M3_Sys_Typescale_BodyMedium = 0x7f1001e1; + public static final int TextAppearance_M3_Sys_Typescale_BodySmall = 0x7f1001e2; + public static final int TextAppearance_M3_Sys_Typescale_DisplayLarge = 0x7f1001e3; + public static final int TextAppearance_M3_Sys_Typescale_DisplayMedium = 0x7f1001e4; + public static final int TextAppearance_M3_Sys_Typescale_DisplaySmall = 0x7f1001e5; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineLarge = 0x7f1001e6; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineMedium = 0x7f1001e7; + public static final int TextAppearance_M3_Sys_Typescale_HeadlineSmall = 0x7f1001e8; + public static final int TextAppearance_M3_Sys_Typescale_LabelLarge = 0x7f1001e9; + public static final int TextAppearance_M3_Sys_Typescale_LabelMedium = 0x7f1001ea; + public static final int TextAppearance_M3_Sys_Typescale_LabelSmall = 0x7f1001eb; + public static final int TextAppearance_M3_Sys_Typescale_TitleLarge = 0x7f1001ec; + public static final int TextAppearance_M3_Sys_Typescale_TitleMedium = 0x7f1001ed; + public static final int TextAppearance_M3_Sys_Typescale_TitleSmall = 0x7f1001ee; + public static final int TextAppearance_Material3_ActionBar_Subtitle = 0x7f1001ef; + public static final int TextAppearance_Material3_ActionBar_Title = 0x7f1001f0; + public static final int TextAppearance_Material3_BodyLarge = 0x7f1001f1; + public static final int TextAppearance_Material3_BodyMedium = 0x7f1001f2; + public static final int TextAppearance_Material3_BodySmall = 0x7f1001f3; + public static final int TextAppearance_Material3_DisplayLarge = 0x7f1001f4; + public static final int TextAppearance_Material3_DisplayMedium = 0x7f1001f5; + public static final int TextAppearance_Material3_DisplaySmall = 0x7f1001f6; + public static final int TextAppearance_Material3_HeadlineLarge = 0x7f1001f7; + public static final int TextAppearance_Material3_HeadlineMedium = 0x7f1001f8; + public static final int TextAppearance_Material3_HeadlineSmall = 0x7f1001f9; + public static final int TextAppearance_Material3_LabelLarge = 0x7f1001fa; + public static final int TextAppearance_Material3_LabelMedium = 0x7f1001fb; + public static final int TextAppearance_Material3_LabelSmall = 0x7f1001fc; + public static final int TextAppearance_Material3_MaterialTimePicker_Title = 0x7f1001fd; + public static final int TextAppearance_Material3_SearchBar = 0x7f1001fe; + public static final int TextAppearance_Material3_SearchView = 0x7f1001ff; + public static final int TextAppearance_Material3_SearchView_Prefix = 0x7f100200; + public static final int TextAppearance_Material3_TitleLarge = 0x7f100201; + public static final int TextAppearance_Material3_TitleMedium = 0x7f100202; + public static final int TextAppearance_Material3_TitleSmall = 0x7f100203; + public static final int TextAppearance_MaterialComponents_Badge = 0x7f100204; + public static final int TextAppearance_MaterialComponents_Body1 = 0x7f100205; + public static final int TextAppearance_MaterialComponents_Body2 = 0x7f100206; + public static final int TextAppearance_MaterialComponents_Button = 0x7f100207; + public static final int TextAppearance_MaterialComponents_Caption = 0x7f100208; + public static final int TextAppearance_MaterialComponents_Chip = 0x7f100209; + public static final int TextAppearance_MaterialComponents_Headline1 = 0x7f10020a; + public static final int TextAppearance_MaterialComponents_Headline2 = 0x7f10020b; + public static final int TextAppearance_MaterialComponents_Headline3 = 0x7f10020c; + public static final int TextAppearance_MaterialComponents_Headline4 = 0x7f10020d; + public static final int TextAppearance_MaterialComponents_Headline5 = 0x7f10020e; + public static final int TextAppearance_MaterialComponents_Headline6 = 0x7f10020f; + public static final int TextAppearance_MaterialComponents_Overline = 0x7f100210; + public static final int TextAppearance_MaterialComponents_Subtitle1 = 0x7f100211; + public static final int TextAppearance_MaterialComponents_Subtitle2 = 0x7f100212; + public static final int TextAppearance_MaterialComponents_TimePicker_Title = 0x7f100213; + public static final int TextAppearance_MaterialComponents_Tooltip = 0x7f100214; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f100215; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f100216; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f100217; + public static final int ThemeOverlay_AppCompat = 0x7f100281; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f100282; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f100283; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f100284; + public static final int ThemeOverlay_AppCompat_DayNight = 0x7f100285; + public static final int ThemeOverlay_AppCompat_DayNight_ActionBar = 0x7f100286; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f100287; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100288; + public static final int ThemeOverlay_AppCompat_Light = 0x7f100289; + public static final int ThemeOverlay_Design_TextInputEditText = 0x7f10028a; + public static final int ThemeOverlay_Material3 = 0x7f10028b; + public static final int ThemeOverlay_Material3_ActionBar = 0x7f10028c; + public static final int ThemeOverlay_Material3_AutoCompleteTextView = 0x7f10028d; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox = 0x7f10028e; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense = 0x7f10028f; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox = 0x7f100290; + public static final int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense = 0x7f100291; + public static final int ThemeOverlay_Material3_BottomAppBar = 0x7f100292; + public static final int ThemeOverlay_Material3_BottomAppBar_Legacy = 0x7f100293; + public static final int ThemeOverlay_Material3_BottomNavigationView = 0x7f100294; + public static final int ThemeOverlay_Material3_BottomSheetDialog = 0x7f100295; + public static final int ThemeOverlay_Material3_Button = 0x7f100296; + public static final int ThemeOverlay_Material3_Button_ElevatedButton = 0x7f100297; + public static final int ThemeOverlay_Material3_Button_IconButton = 0x7f100298; + public static final int ThemeOverlay_Material3_Button_IconButton_Filled = 0x7f100299; + public static final int ThemeOverlay_Material3_Button_IconButton_Filled_Tonal = 0x7f10029a; + public static final int ThemeOverlay_Material3_Button_TextButton = 0x7f10029b; + public static final int ThemeOverlay_Material3_Button_TextButton_Snackbar = 0x7f10029c; + public static final int ThemeOverlay_Material3_Button_TonalButton = 0x7f10029d; + public static final int ThemeOverlay_Material3_Chip = 0x7f10029e; + public static final int ThemeOverlay_Material3_Chip_Assist = 0x7f10029f; + public static final int ThemeOverlay_Material3_Dark = 0x7f1002a0; + public static final int ThemeOverlay_Material3_Dark_ActionBar = 0x7f1002a1; + public static final int ThemeOverlay_Material3_DayNight_BottomSheetDialog = 0x7f1002a2; + public static final int ThemeOverlay_Material3_DayNight_SideSheetDialog = 0x7f1002a3; + public static final int ThemeOverlay_Material3_Dialog = 0x7f1002a4; + public static final int ThemeOverlay_Material3_Dialog_Alert = 0x7f1002a5; + public static final int ThemeOverlay_Material3_Dialog_Alert_Framework = 0x7f1002a6; + public static final int ThemeOverlay_Material3_DynamicColors_Dark = 0x7f1002a7; + public static final int ThemeOverlay_Material3_DynamicColors_DayNight = 0x7f1002a8; + public static final int ThemeOverlay_Material3_DynamicColors_Light = 0x7f1002a9; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary = 0x7f1002aa; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary = 0x7f1002ab; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface = 0x7f1002ac; + public static final int ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary = 0x7f1002ad; + public static final int ThemeOverlay_Material3_FloatingActionButton_Primary = 0x7f1002ae; + public static final int ThemeOverlay_Material3_FloatingActionButton_Secondary = 0x7f1002af; + public static final int ThemeOverlay_Material3_FloatingActionButton_Surface = 0x7f1002b0; + public static final int ThemeOverlay_Material3_FloatingActionButton_Tertiary = 0x7f1002b1; + public static final int ThemeOverlay_Material3_HarmonizedColors = 0x7f1002b2; + public static final int ThemeOverlay_Material3_HarmonizedColors_Empty = 0x7f1002b3; + public static final int ThemeOverlay_Material3_Light = 0x7f1002b4; + public static final int ThemeOverlay_Material3_Light_Dialog_Alert_Framework = 0x7f1002b5; + public static final int ThemeOverlay_Material3_MaterialAlertDialog = 0x7f1002b6; + public static final int ThemeOverlay_Material3_MaterialAlertDialog_Centered = 0x7f1002b7; + public static final int ThemeOverlay_Material3_MaterialCalendar = 0x7f1002b8; + public static final int ThemeOverlay_Material3_MaterialCalendar_Fullscreen = 0x7f1002b9; + public static final int ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton = 0x7f1002ba; + public static final int ThemeOverlay_Material3_MaterialTimePicker = 0x7f1002bb; + public static final int ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText = 0x7f1002bc; + public static final int ThemeOverlay_Material3_NavigationRailView = 0x7f1002bd; + public static final int ThemeOverlay_Material3_NavigationView = 0x7f1002be; + public static final int ThemeOverlay_Material3_PersonalizedColors = 0x7f1002bf; + public static final int ThemeOverlay_Material3_Search = 0x7f1002c0; + public static final int ThemeOverlay_Material3_SideSheetDialog = 0x7f1002c1; + public static final int ThemeOverlay_Material3_Snackbar = 0x7f1002c2; + public static final int ThemeOverlay_Material3_TabLayout = 0x7f1002c3; + public static final int ThemeOverlay_Material3_TextInputEditText = 0x7f1002c4; + public static final int ThemeOverlay_Material3_TextInputEditText_FilledBox = 0x7f1002c5; + public static final int ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense = 0x7f1002c6; + public static final int ThemeOverlay_Material3_TextInputEditText_OutlinedBox = 0x7f1002c7; + public static final int ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense = 0x7f1002c8; + public static final int ThemeOverlay_Material3_Toolbar_Surface = 0x7f1002c9; + public static final int ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon = 0x7f1002ca; + public static final int ThemeOverlay_MaterialComponents = 0x7f1002cb; + public static final int ThemeOverlay_MaterialComponents_ActionBar = 0x7f1002cc; + public static final int ThemeOverlay_MaterialComponents_ActionBar_Primary = 0x7f1002cd; + public static final int ThemeOverlay_MaterialComponents_ActionBar_Surface = 0x7f1002ce; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView = 0x7f1002cf; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = 0x7f1002d0; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 0x7f1002d1; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = 0x7f1002d2; + public static final int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 0x7f1002d3; + public static final int ThemeOverlay_MaterialComponents_BottomAppBar_Primary = 0x7f1002d4; + public static final int ThemeOverlay_MaterialComponents_BottomAppBar_Surface = 0x7f1002d5; + public static final int ThemeOverlay_MaterialComponents_BottomSheetDialog = 0x7f1002d6; + public static final int ThemeOverlay_MaterialComponents_Dark = 0x7f1002d7; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar = 0x7f1002d8; + public static final int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = 0x7f1002d9; + public static final int ThemeOverlay_MaterialComponents_Dialog = 0x7f1002da; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f1002db; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 0x7f1002dc; + public static final int ThemeOverlay_MaterialComponents_Light = 0x7f1002dd; + public static final int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 0x7f1002de; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog = 0x7f1002df; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = 0x7f1002e0; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = 0x7f1002e1; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = 0x7f1002e2; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = 0x7f1002e3; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = 0x7f1002e4; + public static final int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = 0x7f1002e5; + public static final int ThemeOverlay_MaterialComponents_MaterialCalendar = 0x7f1002e6; + public static final int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = 0x7f1002e7; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText = 0x7f1002e8; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 0x7f1002e9; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f1002ea; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f1002eb; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f1002ec; + public static final int ThemeOverlay_MaterialComponents_TimePicker = 0x7f1002ed; + public static final int ThemeOverlay_MaterialComponents_TimePicker_Display = 0x7f1002ee; + public static final int ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText = 0x7f1002ef; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary = 0x7f1002f0; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Primary = 0x7f1002f1; + public static final int ThemeOverlay_MaterialComponents_Toolbar_Surface = 0x7f1002f2; + public static final int Theme_AppCompat = 0x7f100218; + public static final int Theme_AppCompat_CompactMenu = 0x7f100219; + public static final int Theme_AppCompat_DayNight = 0x7f10021a; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f10021b; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f10021c; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f10021f; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f10021d; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f10021e; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f100220; + public static final int Theme_AppCompat_Dialog = 0x7f100221; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f100224; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f100222; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f100223; + public static final int Theme_AppCompat_Empty = 0x7f100225; + public static final int Theme_AppCompat_Light = 0x7f100226; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f100227; + public static final int Theme_AppCompat_Light_Dialog = 0x7f100228; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f10022b; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f100229; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10022a; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f10022c; + public static final int Theme_AppCompat_NoActionBar = 0x7f10022d; + public static final int Theme_Design = 0x7f10022e; + public static final int Theme_Design_BottomSheetDialog = 0x7f10022f; + public static final int Theme_Design_Light = 0x7f100230; + public static final int Theme_Design_Light_BottomSheetDialog = 0x7f100231; + public static final int Theme_Design_Light_NoActionBar = 0x7f100232; + public static final int Theme_Design_NoActionBar = 0x7f100233; + public static final int Theme_Material3_Dark = 0x7f100234; + public static final int Theme_Material3_Dark_BottomSheetDialog = 0x7f100235; + public static final int Theme_Material3_Dark_Dialog = 0x7f100236; + public static final int Theme_Material3_Dark_DialogWhenLarge = 0x7f100239; + public static final int Theme_Material3_Dark_Dialog_Alert = 0x7f100237; + public static final int Theme_Material3_Dark_Dialog_MinWidth = 0x7f100238; + public static final int Theme_Material3_Dark_NoActionBar = 0x7f10023a; + public static final int Theme_Material3_Dark_SideSheetDialog = 0x7f10023b; + public static final int Theme_Material3_DayNight = 0x7f10023c; + public static final int Theme_Material3_DayNight_BottomSheetDialog = 0x7f10023d; + public static final int Theme_Material3_DayNight_Dialog = 0x7f10023e; + public static final int Theme_Material3_DayNight_DialogWhenLarge = 0x7f100241; + public static final int Theme_Material3_DayNight_Dialog_Alert = 0x7f10023f; + public static final int Theme_Material3_DayNight_Dialog_MinWidth = 0x7f100240; + public static final int Theme_Material3_DayNight_NoActionBar = 0x7f100242; + public static final int Theme_Material3_DayNight_SideSheetDialog = 0x7f100243; + public static final int Theme_Material3_DynamicColors_Dark = 0x7f100244; + public static final int Theme_Material3_DynamicColors_Dark_NoActionBar = 0x7f100245; + public static final int Theme_Material3_DynamicColors_DayNight = 0x7f100246; + public static final int Theme_Material3_DynamicColors_DayNight_NoActionBar = 0x7f100247; + public static final int Theme_Material3_DynamicColors_Light = 0x7f100248; + public static final int Theme_Material3_DynamicColors_Light_NoActionBar = 0x7f100249; + public static final int Theme_Material3_Light = 0x7f10024a; + public static final int Theme_Material3_Light_BottomSheetDialog = 0x7f10024b; + public static final int Theme_Material3_Light_Dialog = 0x7f10024c; + public static final int Theme_Material3_Light_DialogWhenLarge = 0x7f10024f; + public static final int Theme_Material3_Light_Dialog_Alert = 0x7f10024d; + public static final int Theme_Material3_Light_Dialog_MinWidth = 0x7f10024e; + public static final int Theme_Material3_Light_NoActionBar = 0x7f100250; + public static final int Theme_Material3_Light_SideSheetDialog = 0x7f100251; + public static final int Theme_MaterialComponents = 0x7f100252; + public static final int Theme_MaterialComponents_BottomSheetDialog = 0x7f100253; + public static final int Theme_MaterialComponents_Bridge = 0x7f100254; + public static final int Theme_MaterialComponents_CompactMenu = 0x7f100255; + public static final int Theme_MaterialComponents_DayNight = 0x7f100256; + public static final int Theme_MaterialComponents_DayNight_BottomSheetDialog = 0x7f100257; + public static final int Theme_MaterialComponents_DayNight_Bridge = 0x7f100258; + public static final int Theme_MaterialComponents_DayNight_DarkActionBar = 0x7f100259; + public static final int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = 0x7f10025a; + public static final int Theme_MaterialComponents_DayNight_Dialog = 0x7f10025b; + public static final int Theme_MaterialComponents_DayNight_DialogWhenLarge = 0x7f100263; + public static final int Theme_MaterialComponents_DayNight_Dialog_Alert = 0x7f10025c; + public static final int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = 0x7f10025d; + public static final int Theme_MaterialComponents_DayNight_Dialog_Bridge = 0x7f10025e; + public static final int Theme_MaterialComponents_DayNight_Dialog_FixedSize = 0x7f10025f; + public static final int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = 0x7f100260; + public static final int Theme_MaterialComponents_DayNight_Dialog_MinWidth = 0x7f100261; + public static final int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = 0x7f100262; + public static final int Theme_MaterialComponents_DayNight_NoActionBar = 0x7f100264; + public static final int Theme_MaterialComponents_DayNight_NoActionBar_Bridge = 0x7f100265; + public static final int Theme_MaterialComponents_Dialog = 0x7f100266; + public static final int Theme_MaterialComponents_DialogWhenLarge = 0x7f10026e; + public static final int Theme_MaterialComponents_Dialog_Alert = 0x7f100267; + public static final int Theme_MaterialComponents_Dialog_Alert_Bridge = 0x7f100268; + public static final int Theme_MaterialComponents_Dialog_Bridge = 0x7f100269; + public static final int Theme_MaterialComponents_Dialog_FixedSize = 0x7f10026a; + public static final int Theme_MaterialComponents_Dialog_FixedSize_Bridge = 0x7f10026b; + public static final int Theme_MaterialComponents_Dialog_MinWidth = 0x7f10026c; + public static final int Theme_MaterialComponents_Dialog_MinWidth_Bridge = 0x7f10026d; + public static final int Theme_MaterialComponents_Light = 0x7f10026f; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog = 0x7f100270; + public static final int Theme_MaterialComponents_Light_Bridge = 0x7f100271; + public static final int Theme_MaterialComponents_Light_DarkActionBar = 0x7f100272; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f100273; + public static final int Theme_MaterialComponents_Light_Dialog = 0x7f100274; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f10027c; + public static final int Theme_MaterialComponents_Light_Dialog_Alert = 0x7f100275; + public static final int Theme_MaterialComponents_Light_Dialog_Alert_Bridge = 0x7f100276; + public static final int Theme_MaterialComponents_Light_Dialog_Bridge = 0x7f100277; + public static final int Theme_MaterialComponents_Light_Dialog_FixedSize = 0x7f100278; + public static final int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = 0x7f100279; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f10027a; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = 0x7f10027b; + public static final int Theme_MaterialComponents_Light_NoActionBar = 0x7f10027d; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge = 0x7f10027e; + public static final int Theme_MaterialComponents_NoActionBar = 0x7f10027f; + public static final int Theme_MaterialComponents_NoActionBar_Bridge = 0x7f100280; + public static final int Widget_AppCompat_ActionBar = 0x7f1002f3; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f1002f4; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f1002f5; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f1002f6; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f1002f7; + public static final int Widget_AppCompat_ActionButton = 0x7f1002f8; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f1002f9; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f1002fa; + public static final int Widget_AppCompat_ActionMode = 0x7f1002fb; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f1002fc; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f1002fd; + public static final int Widget_AppCompat_Button = 0x7f1002fe; + public static final int Widget_AppCompat_ButtonBar = 0x7f100304; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f100305; + public static final int Widget_AppCompat_Button_Borderless = 0x7f1002ff; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f100300; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f100301; + public static final int Widget_AppCompat_Button_Colored = 0x7f100302; + public static final int Widget_AppCompat_Button_Small = 0x7f100303; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f100306; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f100307; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f100308; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f100309; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f10030a; + public static final int Widget_AppCompat_EditText = 0x7f10030b; + public static final int Widget_AppCompat_ImageButton = 0x7f10030c; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f10030d; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f10030e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f10030f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f100310; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f100311; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f100312; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f100313; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f100314; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f100315; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f100316; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f100317; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f100318; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f100319; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f10031a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f10031b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f10031c; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f10031d; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f10031e; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f10031f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f100320; + public static final int Widget_AppCompat_Light_SearchView = 0x7f100321; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f100322; + public static final int Widget_AppCompat_ListMenuView = 0x7f100323; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f100324; + public static final int Widget_AppCompat_ListView = 0x7f100325; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f100326; + public static final int Widget_AppCompat_ListView_Menu = 0x7f100327; + public static final int Widget_AppCompat_PopupMenu = 0x7f100328; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f100329; + public static final int Widget_AppCompat_PopupWindow = 0x7f10032a; + public static final int Widget_AppCompat_ProgressBar = 0x7f10032b; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f10032c; + public static final int Widget_AppCompat_RatingBar = 0x7f10032d; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f10032e; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f10032f; + public static final int Widget_AppCompat_SearchView = 0x7f100330; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f100331; + public static final int Widget_AppCompat_SeekBar = 0x7f100332; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f100333; + public static final int Widget_AppCompat_Spinner = 0x7f100334; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f100335; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f100336; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f100337; + public static final int Widget_AppCompat_TextView = 0x7f100338; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f100339; + public static final int Widget_AppCompat_Toolbar = 0x7f10033a; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f10033b; + public static final int Widget_Compat_NotificationActionContainer = 0x7f10033c; + public static final int Widget_Compat_NotificationActionText = 0x7f10033d; + public static final int Widget_Design_AppBarLayout = 0x7f10033e; + public static final int Widget_Design_BottomNavigationView = 0x7f10033f; + public static final int Widget_Design_BottomSheet_Modal = 0x7f100340; + public static final int Widget_Design_CollapsingToolbar = 0x7f100341; + public static final int Widget_Design_FloatingActionButton = 0x7f100342; + public static final int Widget_Design_NavigationView = 0x7f100343; + public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f100344; + public static final int Widget_Design_Snackbar = 0x7f100345; + public static final int Widget_Design_TabLayout = 0x7f100346; + public static final int Widget_Design_TextInputEditText = 0x7f100347; + public static final int Widget_Design_TextInputLayout = 0x7f100348; + public static final int Widget_Material3_ActionBar_Solid = 0x7f100349; + public static final int Widget_Material3_ActionMode = 0x7f10034a; + public static final int Widget_Material3_AppBarLayout = 0x7f10034b; + public static final int Widget_Material3_AutoCompleteTextView_FilledBox = 0x7f10034c; + public static final int Widget_Material3_AutoCompleteTextView_FilledBox_Dense = 0x7f10034d; + public static final int Widget_Material3_AutoCompleteTextView_OutlinedBox = 0x7f10034e; + public static final int Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense = 0x7f10034f; + public static final int Widget_Material3_Badge = 0x7f100350; + public static final int Widget_Material3_Badge_AdjustToBounds = 0x7f100351; + public static final int Widget_Material3_BottomAppBar = 0x7f100352; + public static final int Widget_Material3_BottomAppBar_Button_Navigation = 0x7f100353; + public static final int Widget_Material3_BottomAppBar_Legacy = 0x7f100354; + public static final int Widget_Material3_BottomNavigationView = 0x7f100356; + public static final int Widget_Material3_BottomNavigationView_ActiveIndicator = 0x7f100357; + public static final int Widget_Material3_BottomNavigation_Badge = 0x7f100355; + public static final int Widget_Material3_BottomSheet = 0x7f100358; + public static final int Widget_Material3_BottomSheet_DragHandle = 0x7f100359; + public static final int Widget_Material3_BottomSheet_Modal = 0x7f10035a; + public static final int Widget_Material3_Button = 0x7f10035b; + public static final int Widget_Material3_Button_ElevatedButton = 0x7f10035c; + public static final int Widget_Material3_Button_ElevatedButton_Icon = 0x7f10035d; + public static final int Widget_Material3_Button_Icon = 0x7f10035e; + public static final int Widget_Material3_Button_IconButton = 0x7f10035f; + public static final int Widget_Material3_Button_IconButton_Filled = 0x7f100360; + public static final int Widget_Material3_Button_IconButton_Filled_Tonal = 0x7f100361; + public static final int Widget_Material3_Button_IconButton_Outlined = 0x7f100362; + public static final int Widget_Material3_Button_OutlinedButton = 0x7f100363; + public static final int Widget_Material3_Button_OutlinedButton_Icon = 0x7f100364; + public static final int Widget_Material3_Button_TextButton = 0x7f100365; + public static final int Widget_Material3_Button_TextButton_Dialog = 0x7f100366; + public static final int Widget_Material3_Button_TextButton_Dialog_Flush = 0x7f100367; + public static final int Widget_Material3_Button_TextButton_Dialog_Icon = 0x7f100368; + public static final int Widget_Material3_Button_TextButton_Icon = 0x7f100369; + public static final int Widget_Material3_Button_TextButton_Snackbar = 0x7f10036a; + public static final int Widget_Material3_Button_TonalButton = 0x7f10036b; + public static final int Widget_Material3_Button_TonalButton_Icon = 0x7f10036c; + public static final int Widget_Material3_Button_UnelevatedButton = 0x7f10036d; + public static final int Widget_Material3_CardView_Elevated = 0x7f10036e; + public static final int Widget_Material3_CardView_Filled = 0x7f10036f; + public static final int Widget_Material3_CardView_Outlined = 0x7f100370; + public static final int Widget_Material3_CheckedTextView = 0x7f100371; + public static final int Widget_Material3_ChipGroup = 0x7f10037c; + public static final int Widget_Material3_Chip_Assist = 0x7f100372; + public static final int Widget_Material3_Chip_Assist_Elevated = 0x7f100373; + public static final int Widget_Material3_Chip_Filter = 0x7f100374; + public static final int Widget_Material3_Chip_Filter_Elevated = 0x7f100375; + public static final int Widget_Material3_Chip_Input = 0x7f100376; + public static final int Widget_Material3_Chip_Input_Elevated = 0x7f100377; + public static final int Widget_Material3_Chip_Input_Icon = 0x7f100378; + public static final int Widget_Material3_Chip_Input_Icon_Elevated = 0x7f100379; + public static final int Widget_Material3_Chip_Suggestion = 0x7f10037a; + public static final int Widget_Material3_Chip_Suggestion_Elevated = 0x7f10037b; + public static final int Widget_Material3_CircularProgressIndicator = 0x7f10037d; + public static final int Widget_Material3_CircularProgressIndicator_ExtraSmall = 0x7f10037e; + public static final int Widget_Material3_CircularProgressIndicator_Legacy = 0x7f10037f; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_ExtraSmall = 0x7f100380; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_Medium = 0x7f100381; + public static final int Widget_Material3_CircularProgressIndicator_Legacy_Small = 0x7f100382; + public static final int Widget_Material3_CircularProgressIndicator_Medium = 0x7f100383; + public static final int Widget_Material3_CircularProgressIndicator_Small = 0x7f100384; + public static final int Widget_Material3_CollapsingToolbar = 0x7f100385; + public static final int Widget_Material3_CollapsingToolbar_Large = 0x7f100386; + public static final int Widget_Material3_CollapsingToolbar_Medium = 0x7f100387; + public static final int Widget_Material3_CompoundButton_CheckBox = 0x7f100388; + public static final int Widget_Material3_CompoundButton_MaterialSwitch = 0x7f100389; + public static final int Widget_Material3_CompoundButton_RadioButton = 0x7f10038a; + public static final int Widget_Material3_CompoundButton_Switch = 0x7f10038b; + public static final int Widget_Material3_DrawerLayout = 0x7f10038c; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Primary = 0x7f10038d; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary = 0x7f10038e; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Surface = 0x7f10038f; + public static final int Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary = 0x7f100390; + public static final int Widget_Material3_ExtendedFloatingActionButton_Primary = 0x7f100391; + public static final int Widget_Material3_ExtendedFloatingActionButton_Secondary = 0x7f100392; + public static final int Widget_Material3_ExtendedFloatingActionButton_Surface = 0x7f100393; + public static final int Widget_Material3_ExtendedFloatingActionButton_Tertiary = 0x7f100394; + public static final int Widget_Material3_FloatingActionButton_Large_Primary = 0x7f100395; + public static final int Widget_Material3_FloatingActionButton_Large_Secondary = 0x7f100396; + public static final int Widget_Material3_FloatingActionButton_Large_Surface = 0x7f100397; + public static final int Widget_Material3_FloatingActionButton_Large_Tertiary = 0x7f100398; + public static final int Widget_Material3_FloatingActionButton_Primary = 0x7f100399; + public static final int Widget_Material3_FloatingActionButton_Secondary = 0x7f10039a; + public static final int Widget_Material3_FloatingActionButton_Small_Primary = 0x7f10039b; + public static final int Widget_Material3_FloatingActionButton_Small_Secondary = 0x7f10039c; + public static final int Widget_Material3_FloatingActionButton_Small_Surface = 0x7f10039d; + public static final int Widget_Material3_FloatingActionButton_Small_Tertiary = 0x7f10039e; + public static final int Widget_Material3_FloatingActionButton_Surface = 0x7f10039f; + public static final int Widget_Material3_FloatingActionButton_Tertiary = 0x7f1003a0; + public static final int Widget_Material3_Light_ActionBar_Solid = 0x7f1003a1; + public static final int Widget_Material3_LinearProgressIndicator = 0x7f1003a2; + public static final int Widget_Material3_LinearProgressIndicator_Legacy = 0x7f1003a3; + public static final int Widget_Material3_MaterialButtonToggleGroup = 0x7f1003a4; + public static final int Widget_Material3_MaterialCalendar = 0x7f1003a5; + public static final int Widget_Material3_MaterialCalendar_Day = 0x7f1003a6; + public static final int Widget_Material3_MaterialCalendar_DayOfWeekLabel = 0x7f1003aa; + public static final int Widget_Material3_MaterialCalendar_DayTextView = 0x7f1003ab; + public static final int Widget_Material3_MaterialCalendar_Day_Invalid = 0x7f1003a7; + public static final int Widget_Material3_MaterialCalendar_Day_Selected = 0x7f1003a8; + public static final int Widget_Material3_MaterialCalendar_Day_Today = 0x7f1003a9; + public static final int Widget_Material3_MaterialCalendar_Fullscreen = 0x7f1003ac; + public static final int Widget_Material3_MaterialCalendar_HeaderCancelButton = 0x7f1003ad; + public static final int Widget_Material3_MaterialCalendar_HeaderDivider = 0x7f1003ae; + public static final int Widget_Material3_MaterialCalendar_HeaderLayout = 0x7f1003af; + public static final int Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen = 0x7f1003b0; + public static final int Widget_Material3_MaterialCalendar_HeaderSelection = 0x7f1003b1; + public static final int Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen = 0x7f1003b2; + public static final int Widget_Material3_MaterialCalendar_HeaderTitle = 0x7f1003b3; + public static final int Widget_Material3_MaterialCalendar_HeaderToggleButton = 0x7f1003b4; + public static final int Widget_Material3_MaterialCalendar_Item = 0x7f1003b5; + public static final int Widget_Material3_MaterialCalendar_MonthNavigationButton = 0x7f1003b6; + public static final int Widget_Material3_MaterialCalendar_MonthTextView = 0x7f1003b7; + public static final int Widget_Material3_MaterialCalendar_Year = 0x7f1003b8; + public static final int Widget_Material3_MaterialCalendar_YearNavigationButton = 0x7f1003bb; + public static final int Widget_Material3_MaterialCalendar_Year_Selected = 0x7f1003b9; + public static final int Widget_Material3_MaterialCalendar_Year_Today = 0x7f1003ba; + public static final int Widget_Material3_MaterialDivider = 0x7f1003bc; + public static final int Widget_Material3_MaterialDivider_Heavy = 0x7f1003bd; + public static final int Widget_Material3_MaterialTimePicker = 0x7f1003be; + public static final int Widget_Material3_MaterialTimePicker_Button = 0x7f1003bf; + public static final int Widget_Material3_MaterialTimePicker_Clock = 0x7f1003c0; + public static final int Widget_Material3_MaterialTimePicker_Display = 0x7f1003c1; + public static final int Widget_Material3_MaterialTimePicker_Display_Divider = 0x7f1003c2; + public static final int Widget_Material3_MaterialTimePicker_Display_HelperText = 0x7f1003c3; + public static final int Widget_Material3_MaterialTimePicker_Display_TextInputEditText = 0x7f1003c4; + public static final int Widget_Material3_MaterialTimePicker_Display_TextInputLayout = 0x7f1003c5; + public static final int Widget_Material3_MaterialTimePicker_ImageButton = 0x7f1003c6; + public static final int Widget_Material3_NavigationRailView = 0x7f1003c7; + public static final int Widget_Material3_NavigationRailView_ActiveIndicator = 0x7f1003c8; + public static final int Widget_Material3_NavigationRailView_Badge = 0x7f1003c9; + public static final int Widget_Material3_NavigationView = 0x7f1003ca; + public static final int Widget_Material3_PopupMenu = 0x7f1003cb; + public static final int Widget_Material3_PopupMenu_ContextMenu = 0x7f1003cc; + public static final int Widget_Material3_PopupMenu_ListPopupWindow = 0x7f1003cd; + public static final int Widget_Material3_PopupMenu_Overflow = 0x7f1003ce; + public static final int Widget_Material3_SearchBar = 0x7f1003d1; + public static final int Widget_Material3_SearchBar_Outlined = 0x7f1003d2; + public static final int Widget_Material3_SearchView = 0x7f1003d3; + public static final int Widget_Material3_SearchView_Prefix = 0x7f1003d4; + public static final int Widget_Material3_SearchView_Toolbar = 0x7f1003d5; + public static final int Widget_Material3_Search_ActionButton_Overflow = 0x7f1003cf; + public static final int Widget_Material3_Search_Toolbar_Button_Navigation = 0x7f1003d0; + public static final int Widget_Material3_SideSheet = 0x7f1003d6; + public static final int Widget_Material3_SideSheet_Detached = 0x7f1003d7; + public static final int Widget_Material3_SideSheet_Modal = 0x7f1003d8; + public static final int Widget_Material3_SideSheet_Modal_Detached = 0x7f1003d9; + public static final int Widget_Material3_Slider = 0x7f1003da; + public static final int Widget_Material3_Slider_Label = 0x7f1003db; + public static final int Widget_Material3_Slider_Legacy = 0x7f1003dc; + public static final int Widget_Material3_Slider_Legacy_Label = 0x7f1003dd; + public static final int Widget_Material3_Snackbar = 0x7f1003de; + public static final int Widget_Material3_Snackbar_FullWidth = 0x7f1003df; + public static final int Widget_Material3_Snackbar_TextView = 0x7f1003e0; + public static final int Widget_Material3_TabLayout = 0x7f1003e1; + public static final int Widget_Material3_TabLayout_OnSurface = 0x7f1003e2; + public static final int Widget_Material3_TabLayout_Secondary = 0x7f1003e3; + public static final int Widget_Material3_TextInputEditText_FilledBox = 0x7f1003e4; + public static final int Widget_Material3_TextInputEditText_FilledBox_Dense = 0x7f1003e5; + public static final int Widget_Material3_TextInputEditText_OutlinedBox = 0x7f1003e6; + public static final int Widget_Material3_TextInputEditText_OutlinedBox_Dense = 0x7f1003e7; + public static final int Widget_Material3_TextInputLayout_FilledBox = 0x7f1003e8; + public static final int Widget_Material3_TextInputLayout_FilledBox_Dense = 0x7f1003e9; + public static final int Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 0x7f1003ea; + public static final int Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu = 0x7f1003eb; + public static final int Widget_Material3_TextInputLayout_OutlinedBox = 0x7f1003ec; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_Dense = 0x7f1003ed; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 0x7f1003ee; + public static final int Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 0x7f1003ef; + public static final int Widget_Material3_Toolbar = 0x7f1003f0; + public static final int Widget_Material3_Toolbar_OnSurface = 0x7f1003f1; + public static final int Widget_Material3_Toolbar_Surface = 0x7f1003f2; + public static final int Widget_Material3_Tooltip = 0x7f1003f3; + public static final int Widget_MaterialComponents_ActionBar_Primary = 0x7f1003f4; + public static final int Widget_MaterialComponents_ActionBar_PrimarySurface = 0x7f1003f5; + public static final int Widget_MaterialComponents_ActionBar_Solid = 0x7f1003f6; + public static final int Widget_MaterialComponents_ActionBar_Surface = 0x7f1003f7; + public static final int Widget_MaterialComponents_ActionMode = 0x7f1003f8; + public static final int Widget_MaterialComponents_AppBarLayout_Primary = 0x7f1003f9; + public static final int Widget_MaterialComponents_AppBarLayout_PrimarySurface = 0x7f1003fa; + public static final int Widget_MaterialComponents_AppBarLayout_Surface = 0x7f1003fb; + public static final int Widget_MaterialComponents_AutoCompleteTextView_FilledBox = 0x7f1003fc; + public static final int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 0x7f1003fd; + public static final int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = 0x7f1003fe; + public static final int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 0x7f1003ff; + public static final int Widget_MaterialComponents_Badge = 0x7f100400; + public static final int Widget_MaterialComponents_BottomAppBar = 0x7f100401; + public static final int Widget_MaterialComponents_BottomAppBar_Colored = 0x7f100402; + public static final int Widget_MaterialComponents_BottomAppBar_PrimarySurface = 0x7f100403; + public static final int Widget_MaterialComponents_BottomNavigationView = 0x7f100404; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored = 0x7f100405; + public static final int Widget_MaterialComponents_BottomNavigationView_PrimarySurface = 0x7f100406; + public static final int Widget_MaterialComponents_BottomSheet = 0x7f100407; + public static final int Widget_MaterialComponents_BottomSheet_Modal = 0x7f100408; + public static final int Widget_MaterialComponents_Button = 0x7f100409; + public static final int Widget_MaterialComponents_Button_Icon = 0x7f10040a; + public static final int Widget_MaterialComponents_Button_OutlinedButton = 0x7f10040b; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon = 0x7f10040c; + public static final int Widget_MaterialComponents_Button_TextButton = 0x7f10040d; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog = 0x7f10040e; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Flush = 0x7f10040f; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 0x7f100410; + public static final int Widget_MaterialComponents_Button_TextButton_Icon = 0x7f100411; + public static final int Widget_MaterialComponents_Button_TextButton_Snackbar = 0x7f100412; + public static final int Widget_MaterialComponents_Button_UnelevatedButton = 0x7f100413; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 0x7f100414; + public static final int Widget_MaterialComponents_CardView = 0x7f100415; + public static final int Widget_MaterialComponents_CheckedTextView = 0x7f100416; + public static final int Widget_MaterialComponents_ChipGroup = 0x7f10041b; + public static final int Widget_MaterialComponents_Chip_Action = 0x7f100417; + public static final int Widget_MaterialComponents_Chip_Choice = 0x7f100418; + public static final int Widget_MaterialComponents_Chip_Entry = 0x7f100419; + public static final int Widget_MaterialComponents_Chip_Filter = 0x7f10041a; + public static final int Widget_MaterialComponents_CircularProgressIndicator = 0x7f10041c; + public static final int Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall = 0x7f10041d; + public static final int Widget_MaterialComponents_CircularProgressIndicator_Medium = 0x7f10041e; + public static final int Widget_MaterialComponents_CircularProgressIndicator_Small = 0x7f10041f; + public static final int Widget_MaterialComponents_CollapsingToolbar = 0x7f100420; + public static final int Widget_MaterialComponents_CompoundButton_CheckBox = 0x7f100421; + public static final int Widget_MaterialComponents_CompoundButton_RadioButton = 0x7f100422; + public static final int Widget_MaterialComponents_CompoundButton_Switch = 0x7f100423; + public static final int Widget_MaterialComponents_ExtendedFloatingActionButton = 0x7f100424; + public static final int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = 0x7f100425; + public static final int Widget_MaterialComponents_FloatingActionButton = 0x7f100426; + public static final int Widget_MaterialComponents_Light_ActionBar_Solid = 0x7f100427; + public static final int Widget_MaterialComponents_LinearProgressIndicator = 0x7f100428; + public static final int Widget_MaterialComponents_MaterialButtonToggleGroup = 0x7f100429; + public static final int Widget_MaterialComponents_MaterialCalendar = 0x7f10042a; + public static final int Widget_MaterialComponents_MaterialCalendar_Day = 0x7f10042b; + public static final int Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel = 0x7f10042f; + public static final int Widget_MaterialComponents_MaterialCalendar_DayTextView = 0x7f100430; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Invalid = 0x7f10042c; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Selected = 0x7f10042d; + public static final int Widget_MaterialComponents_MaterialCalendar_Day_Today = 0x7f10042e; + public static final int Widget_MaterialComponents_MaterialCalendar_Fullscreen = 0x7f100431; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton = 0x7f100432; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = 0x7f100433; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderDivider = 0x7f100434; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderLayout = 0x7f100435; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen = 0x7f100436; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderSelection = 0x7f100437; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = 0x7f100438; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderTitle = 0x7f100439; + public static final int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 0x7f10043a; + public static final int Widget_MaterialComponents_MaterialCalendar_Item = 0x7f10043b; + public static final int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton = 0x7f10043c; + public static final int Widget_MaterialComponents_MaterialCalendar_MonthTextView = 0x7f10043d; + public static final int Widget_MaterialComponents_MaterialCalendar_Year = 0x7f10043e; + public static final int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton = 0x7f100441; + public static final int Widget_MaterialComponents_MaterialCalendar_Year_Selected = 0x7f10043f; + public static final int Widget_MaterialComponents_MaterialCalendar_Year_Today = 0x7f100440; + public static final int Widget_MaterialComponents_MaterialDivider = 0x7f100442; + public static final int Widget_MaterialComponents_NavigationRailView = 0x7f100443; + public static final int Widget_MaterialComponents_NavigationRailView_Colored = 0x7f100444; + public static final int Widget_MaterialComponents_NavigationRailView_Colored_Compact = 0x7f100445; + public static final int Widget_MaterialComponents_NavigationRailView_Compact = 0x7f100446; + public static final int Widget_MaterialComponents_NavigationRailView_PrimarySurface = 0x7f100447; + public static final int Widget_MaterialComponents_NavigationView = 0x7f100448; + public static final int Widget_MaterialComponents_PopupMenu = 0x7f100449; + public static final int Widget_MaterialComponents_PopupMenu_ContextMenu = 0x7f10044a; + public static final int Widget_MaterialComponents_PopupMenu_ListPopupWindow = 0x7f10044b; + public static final int Widget_MaterialComponents_PopupMenu_Overflow = 0x7f10044c; + public static final int Widget_MaterialComponents_ProgressIndicator = 0x7f10044d; + public static final int Widget_MaterialComponents_ShapeableImageView = 0x7f10044e; + public static final int Widget_MaterialComponents_Slider = 0x7f10044f; + public static final int Widget_MaterialComponents_Snackbar = 0x7f100450; + public static final int Widget_MaterialComponents_Snackbar_FullWidth = 0x7f100451; + public static final int Widget_MaterialComponents_Snackbar_TextView = 0x7f100452; + public static final int Widget_MaterialComponents_TabLayout = 0x7f100453; + public static final int Widget_MaterialComponents_TabLayout_Colored = 0x7f100454; + public static final int Widget_MaterialComponents_TabLayout_PrimarySurface = 0x7f100455; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox = 0x7f100456; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f100457; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f100458; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f100459; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox = 0x7f10045a; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 0x7f10045b; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 0x7f10045c; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = 0x7f10045d; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 0x7f10045e; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 0x7f10045f; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 0x7f100460; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 0x7f100461; + public static final int Widget_MaterialComponents_TextView = 0x7f100462; + public static final int Widget_MaterialComponents_TimePicker = 0x7f100463; + public static final int Widget_MaterialComponents_TimePicker_Button = 0x7f100464; + public static final int Widget_MaterialComponents_TimePicker_Clock = 0x7f100465; + public static final int Widget_MaterialComponents_TimePicker_Display = 0x7f100466; + public static final int Widget_MaterialComponents_TimePicker_Display_Divider = 0x7f100467; + public static final int Widget_MaterialComponents_TimePicker_Display_HelperText = 0x7f100468; + public static final int Widget_MaterialComponents_TimePicker_Display_TextInputEditText = 0x7f100469; + public static final int Widget_MaterialComponents_TimePicker_Display_TextInputLayout = 0x7f10046a; + public static final int Widget_MaterialComponents_TimePicker_ImageButton = 0x7f10046b; + public static final int Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance = 0x7f10046c; + public static final int Widget_MaterialComponents_Toolbar = 0x7f10046d; + public static final int Widget_MaterialComponents_Toolbar_Primary = 0x7f10046e; + public static final int Widget_MaterialComponents_Toolbar_PrimarySurface = 0x7f10046f; + public static final int Widget_MaterialComponents_Toolbar_Surface = 0x7f100470; + public static final int Widget_MaterialComponents_Tooltip = 0x7f100471; + public static final int Widget_Support_CoordinatorLayout = 0x7f100472; + } + public static final class styleable { + public static final int[] ActionBar = new int[] { 0x7f03004d, 0x7f030054, 0x7f030055, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030171, 0x7f030188, 0x7f030189, 0x7f0301a9, 0x7f030231, 0x7f030239, 0x7f03023f, 0x7f030240, 0x7f030244, 0x7f030255, 0x7f03026c, 0x7f0302ea, 0x7f030371, 0x7f0303aa, 0x7f0303b2, 0x7f0303b3, 0x7f030439, 0x7f03043d, 0x7f0304c8, 0x7f0304d6 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = new int[] { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = new int[] { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = new int[] { }; + public static final int[] ActionMode = new int[] { 0x7f03004d, 0x7f030054, 0x7f0300ee, 0x7f030231, 0x7f03043d, 0x7f0304d6 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = new int[] { 0x7f0301c6, 0x7f03025c }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = new int[] { 0x010100f2, 0x7f030099, 0x7f03009c, 0x7f0302df, 0x7f0302e0, 0x7f03036c, 0x7f0303f7, 0x7f0303ff }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int[] AnimatedStateListDrawableItem = new int[] { 0x010100d0, 0x01010199 }; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int[] AnimatedStateListDrawableTransition = new int[] { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int[] AppBarLayout = new int[] { 0x010100d4, 0x0101048f, 0x01010540, 0x7f0301a9, 0x7f0301c7, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f03042e }; + public static final int AppBarLayout_android_background = 0; + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + public static final int AppBarLayout_elevation = 3; + public static final int AppBarLayout_expanded = 4; + public static final int AppBarLayout_liftOnScroll = 5; + public static final int AppBarLayout_liftOnScrollColor = 6; + public static final int AppBarLayout_liftOnScrollTargetViewId = 7; + public static final int AppBarLayout_statusBarForeground = 8; + public static final int[] AppBarLayoutStates = new int[] { 0x7f030425, 0x7f030426, 0x7f03042a, 0x7f03042b }; + public static final int AppBarLayoutStates_state_collapsed = 0; + public static final int AppBarLayoutStates_state_collapsible = 1; + public static final int AppBarLayoutStates_state_liftable = 2; + public static final int AppBarLayoutStates_state_lifted = 3; + public static final int[] AppBarLayout_Layout = new int[] { 0x7f0302d0, 0x7f0302d1, 0x7f0302d2 }; + public static final int AppBarLayout_Layout_layout_scrollEffect = 0; + public static final int AppBarLayout_Layout_layout_scrollFlags = 1; + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 2; + public static final int[] AppCompatEmojiHelper = new int[] { }; + public static final int[] AppCompatImageView = new int[] { 0x01010119, 0x7f030418, 0x7f0304c5, 0x7f0304c6 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = new int[] { 0x01010142, 0x7f0304bf, 0x7f0304c0, 0x7f0304c1 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = new int[] { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int[] AppCompatTextView = new int[] { 0x01010034, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f0301ad, 0x7f0301ea, 0x7f03020e, 0x7f030218, 0x7f030288, 0x7f0302d8, 0x7f03046a, 0x7f0304a1 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_drawableBottomCompat = 6; + public static final int AppCompatTextView_drawableEndCompat = 7; + public static final int AppCompatTextView_drawableLeftCompat = 8; + public static final int AppCompatTextView_drawableRightCompat = 9; + public static final int AppCompatTextView_drawableStartCompat = 10; + public static final int AppCompatTextView_drawableTint = 11; + public static final int AppCompatTextView_drawableTintMode = 12; + public static final int AppCompatTextView_drawableTopCompat = 13; + public static final int AppCompatTextView_emojiCompatEnabled = 14; + public static final int AppCompatTextView_firstBaselineToTopHeight = 15; + public static final int AppCompatTextView_fontFamily = 16; + public static final int AppCompatTextView_fontVariationSettings = 17; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 18; + public static final int AppCompatTextView_lineHeight = 19; + public static final int AppCompatTextView_textAllCaps = 20; + public static final int AppCompatTextView_textLocale = 21; + public static final int[] AppCompatTheme = new int[] { 0x01010057, 0x010100ae, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030044, 0x7f03007d, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009d, 0x7f03009e, 0x7f0300b9, 0x7f0300c4, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03011c, 0x7f03011e, 0x7f030133, 0x7f030152, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f03018b, 0x7f030190, 0x7f0301a2, 0x7f0301a3, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f03023f, 0x7f03024f, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f03038d, 0x7f03038e, 0x7f03038f, 0x7f0303a9, 0x7f0303ab, 0x7f0303ba, 0x7f0303bc, 0x7f0303bd, 0x7f0303be, 0x7f0303d9, 0x7f0303dc, 0x7f0303dd, 0x7f0303de, 0x7f030409, 0x7f03040a, 0x7f030445, 0x7f030481, 0x7f030483, 0x7f030484, 0x7f030485, 0x7f030487, 0x7f030488, 0x7f030489, 0x7f03048a, 0x7f030495, 0x7f030496, 0x7f0304d9, 0x7f0304da, 0x7f0304dc, 0x7f0304dd, 0x7f030504, 0x7f030512, 0x7f030513, 0x7f030514, 0x7f030515, 0x7f030516, 0x7f030517, 0x7f030518, 0x7f030519, 0x7f03051a, 0x7f03051b }; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseContentDescription = 19; + public static final int AppCompatTheme_actionModeCloseDrawable = 20; + public static final int AppCompatTheme_actionModeCopyDrawable = 21; + public static final int AppCompatTheme_actionModeCutDrawable = 22; + public static final int AppCompatTheme_actionModeFindDrawable = 23; + public static final int AppCompatTheme_actionModePasteDrawable = 24; + public static final int AppCompatTheme_actionModePopupWindowStyle = 25; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 26; + public static final int AppCompatTheme_actionModeShareDrawable = 27; + public static final int AppCompatTheme_actionModeSplitBackground = 28; + public static final int AppCompatTheme_actionModeStyle = 29; + public static final int AppCompatTheme_actionModeTheme = 30; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 31; + public static final int AppCompatTheme_actionOverflowButtonStyle = 32; + public static final int AppCompatTheme_actionOverflowMenuStyle = 33; + public static final int AppCompatTheme_activityChooserViewStyle = 34; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 35; + public static final int AppCompatTheme_alertDialogCenterButtons = 36; + public static final int AppCompatTheme_alertDialogStyle = 37; + public static final int AppCompatTheme_alertDialogTheme = 38; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 39; + public static final int AppCompatTheme_borderlessButtonStyle = 40; + public static final int AppCompatTheme_buttonBarButtonStyle = 41; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 42; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 43; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 44; + public static final int AppCompatTheme_buttonBarStyle = 45; + public static final int AppCompatTheme_buttonStyle = 46; + public static final int AppCompatTheme_buttonStyleSmall = 47; + public static final int AppCompatTheme_checkboxStyle = 48; + public static final int AppCompatTheme_checkedTextViewStyle = 49; + public static final int AppCompatTheme_colorAccent = 50; + public static final int AppCompatTheme_colorBackgroundFloating = 51; + public static final int AppCompatTheme_colorButtonNormal = 52; + public static final int AppCompatTheme_colorControlActivated = 53; + public static final int AppCompatTheme_colorControlHighlight = 54; + public static final int AppCompatTheme_colorControlNormal = 55; + public static final int AppCompatTheme_colorError = 56; + public static final int AppCompatTheme_colorPrimary = 57; + public static final int AppCompatTheme_colorPrimaryDark = 58; + public static final int AppCompatTheme_colorSwitchThumbNormal = 59; + public static final int AppCompatTheme_controlBackground = 60; + public static final int AppCompatTheme_dialogCornerRadius = 61; + public static final int AppCompatTheme_dialogPreferredPadding = 62; + public static final int AppCompatTheme_dialogTheme = 63; + public static final int AppCompatTheme_dividerHorizontal = 64; + public static final int AppCompatTheme_dividerVertical = 65; + public static final int AppCompatTheme_dropDownListViewStyle = 66; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 67; + public static final int AppCompatTheme_editTextBackground = 68; + public static final int AppCompatTheme_editTextColor = 69; + public static final int AppCompatTheme_editTextStyle = 70; + public static final int AppCompatTheme_homeAsUpIndicator = 71; + public static final int AppCompatTheme_imageButtonStyle = 72; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 73; + public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 74; + public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated = 75; + public static final int AppCompatTheme_listDividerAlertDialog = 76; + public static final int AppCompatTheme_listMenuViewStyle = 77; + public static final int AppCompatTheme_listPopupWindowStyle = 78; + public static final int AppCompatTheme_listPreferredItemHeight = 79; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 80; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 81; + public static final int AppCompatTheme_listPreferredItemPaddingEnd = 82; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 83; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 84; + public static final int AppCompatTheme_listPreferredItemPaddingStart = 85; + public static final int AppCompatTheme_panelBackground = 86; + public static final int AppCompatTheme_panelMenuListTheme = 87; + public static final int AppCompatTheme_panelMenuListWidth = 88; + public static final int AppCompatTheme_popupMenuStyle = 89; + public static final int AppCompatTheme_popupWindowStyle = 90; + public static final int AppCompatTheme_radioButtonStyle = 91; + public static final int AppCompatTheme_ratingBarStyle = 92; + public static final int AppCompatTheme_ratingBarStyleIndicator = 93; + public static final int AppCompatTheme_ratingBarStyleSmall = 94; + public static final int AppCompatTheme_searchViewStyle = 95; + public static final int AppCompatTheme_seekBarStyle = 96; + public static final int AppCompatTheme_selectableItemBackground = 97; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 98; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 99; + public static final int AppCompatTheme_spinnerStyle = 100; + public static final int AppCompatTheme_switchStyle = 101; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 102; + public static final int AppCompatTheme_textAppearanceListItem = 103; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 104; + public static final int AppCompatTheme_textAppearanceListItemSmall = 105; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 106; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 107; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 108; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 109; + public static final int AppCompatTheme_textColorAlertDialogListItem = 110; + public static final int AppCompatTheme_textColorSearchUrl = 111; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 112; + public static final int AppCompatTheme_toolbarStyle = 113; + public static final int AppCompatTheme_tooltipForegroundColor = 114; + public static final int AppCompatTheme_tooltipFrameBackground = 115; + public static final int AppCompatTheme_viewInflaterClass = 116; + public static final int AppCompatTheme_windowActionBar = 117; + public static final int AppCompatTheme_windowActionBarOverlay = 118; + public static final int AppCompatTheme_windowActionModeOverlay = 119; + public static final int AppCompatTheme_windowFixedHeightMajor = 120; + public static final int AppCompatTheme_windowFixedHeightMinor = 121; + public static final int AppCompatTheme_windowFixedWidthMajor = 122; + public static final int AppCompatTheme_windowFixedWidthMinor = 123; + public static final int AppCompatTheme_windowMinWidthMajor = 124; + public static final int AppCompatTheme_windowMinWidthMinor = 125; + public static final int AppCompatTheme_windowNoTitle = 126; + public static final int[] Badge = new int[] { 0x7f030042, 0x7f03004e, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030241, 0x7f030242, 0x7f030287, 0x7f030326, 0x7f03032a, 0x7f030378, 0x7f03037a, 0x7f030502, 0x7f030503 }; + public static final int Badge_autoAdjustToWithinGrandparentBounds = 0; + public static final int Badge_backgroundColor = 1; + public static final int Badge_badgeGravity = 2; + public static final int Badge_badgeHeight = 3; + public static final int Badge_badgeRadius = 4; + public static final int Badge_badgeShapeAppearance = 5; + public static final int Badge_badgeShapeAppearanceOverlay = 6; + public static final int Badge_badgeText = 7; + public static final int Badge_badgeTextAppearance = 8; + public static final int Badge_badgeTextColor = 9; + public static final int Badge_badgeVerticalPadding = 10; + public static final int Badge_badgeWidePadding = 11; + public static final int Badge_badgeWidth = 12; + public static final int Badge_badgeWithTextHeight = 13; + public static final int Badge_badgeWithTextRadius = 14; + public static final int Badge_badgeWithTextShapeAppearance = 15; + public static final int Badge_badgeWithTextShapeAppearanceOverlay = 16; + public static final int Badge_badgeWithTextWidth = 17; + public static final int Badge_horizontalOffset = 18; + public static final int Badge_horizontalOffsetWithText = 19; + public static final int Badge_largeFontVerticalOffsetAdjustment = 20; + public static final int Badge_maxCharacterCount = 21; + public static final int Badge_maxNumber = 22; + public static final int Badge_number = 23; + public static final int Badge_offsetAlignmentMode = 24; + public static final int Badge_verticalOffset = 25; + public static final int Badge_verticalOffsetWithText = 26; + public static final int[] BaseProgressIndicator = new int[] { 0x01010139, 0x7f030236, 0x7f030256, 0x7f03025b, 0x7f030334, 0x7f0303ef, 0x7f0303f1, 0x7f0304e5, 0x7f0304e8, 0x7f0304ef }; + public static final int BaseProgressIndicator_android_indeterminate = 0; + public static final int BaseProgressIndicator_hideAnimationBehavior = 1; + public static final int BaseProgressIndicator_indicatorColor = 2; + public static final int BaseProgressIndicator_indicatorTrackGapSize = 3; + public static final int BaseProgressIndicator_minHideDelay = 4; + public static final int BaseProgressIndicator_showAnimationBehavior = 5; + public static final int BaseProgressIndicator_showDelay = 6; + public static final int BaseProgressIndicator_trackColor = 7; + public static final int BaseProgressIndicator_trackCornerRadius = 8; + public static final int BaseProgressIndicator_trackThickness = 9; + public static final int[] BottomAppBar = new int[] { 0x7f03002b, 0x7f030056, 0x7f0301a9, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f03023a, 0x7f03032f, 0x7f030370, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f0303c8 }; + public static final int BottomAppBar_addElevationShadow = 0; + public static final int BottomAppBar_backgroundTint = 1; + public static final int BottomAppBar_elevation = 2; + public static final int BottomAppBar_fabAlignmentMode = 3; + public static final int BottomAppBar_fabAlignmentModeEndMargin = 4; + public static final int BottomAppBar_fabAnchorMode = 5; + public static final int BottomAppBar_fabAnimationMode = 6; + public static final int BottomAppBar_fabCradleMargin = 7; + public static final int BottomAppBar_fabCradleRoundedCornerRadius = 8; + public static final int BottomAppBar_fabCradleVerticalOffset = 9; + public static final int BottomAppBar_hideOnScroll = 10; + public static final int BottomAppBar_menuAlignmentMode = 11; + public static final int BottomAppBar_navigationIconTint = 12; + public static final int BottomAppBar_paddingBottomSystemWindowInsets = 13; + public static final int BottomAppBar_paddingLeftSystemWindowInsets = 14; + public static final int BottomAppBar_paddingRightSystemWindowInsets = 15; + public static final int BottomAppBar_removeEmbeddedFabElevation = 16; + public static final int[] BottomNavigationView = new int[] { 0x01010140, 0x7f030139, 0x7f030266, 0x7f0303e2, 0x7f0303ea }; + public static final int BottomNavigationView_android_minHeight = 0; + public static final int BottomNavigationView_compatShadowEnabled = 1; + public static final int BottomNavigationView_itemHorizontalTranslationEnabled = 2; + public static final int BottomNavigationView_shapeAppearance = 3; + public static final int BottomNavigationView_shapeAppearanceOverlay = 4; + public static final int[] BottomSheetBehavior_Layout = new int[] { 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030075, 0x7f030076, 0x7f030077, 0x7f030078, 0x7f03021f, 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f03038c, 0x7f0303e2, 0x7f0303ea, 0x7f0303ee }; + public static final int BottomSheetBehavior_Layout_android_elevation = 2; + public static final int BottomSheetBehavior_Layout_android_maxHeight = 1; + public static final int BottomSheetBehavior_Layout_android_maxWidth = 0; + public static final int BottomSheetBehavior_Layout_backgroundTint = 3; + public static final int BottomSheetBehavior_Layout_behavior_draggable = 4; + public static final int BottomSheetBehavior_Layout_behavior_expandedOffset = 5; + public static final int BottomSheetBehavior_Layout_behavior_fitToContents = 6; + public static final int BottomSheetBehavior_Layout_behavior_halfExpandedRatio = 7; + public static final int BottomSheetBehavior_Layout_behavior_hideable = 8; + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 9; + public static final int BottomSheetBehavior_Layout_behavior_saveFlags = 10; + public static final int BottomSheetBehavior_Layout_behavior_significantVelocityThreshold = 11; + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 12; + public static final int BottomSheetBehavior_Layout_gestureInsetBottomIgnored = 13; + public static final int BottomSheetBehavior_Layout_marginLeftSystemWindowInsets = 14; + public static final int BottomSheetBehavior_Layout_marginRightSystemWindowInsets = 15; + public static final int BottomSheetBehavior_Layout_marginTopSystemWindowInsets = 16; + public static final int BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets = 17; + public static final int BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets = 18; + public static final int BottomSheetBehavior_Layout_paddingRightSystemWindowInsets = 19; + public static final int BottomSheetBehavior_Layout_paddingTopSystemWindowInsets = 20; + public static final int BottomSheetBehavior_Layout_shapeAppearance = 21; + public static final int BottomSheetBehavior_Layout_shapeAppearanceOverlay = 22; + public static final int BottomSheetBehavior_Layout_shouldRemoveExpandedCorners = 23; + public static final int[] ButtonBarLayout = new int[] { 0x7f030030 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] Capability = new int[] { 0x7f0303b9, 0x7f0303ed }; + public static final int Capability_queryPatterns = 0; + public static final int Capability_shortcutMatchRequired = 1; + public static final int[] CardView = new int[] { 0x0101013f, 0x01010140, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f030149, 0x7f03014a, 0x7f03014c, 0x7f03014d, 0x7f03014f }; + public static final int CardView_android_minHeight = 1; + public static final int CardView_android_minWidth = 0; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + public static final int[] Carousel = new int[] { 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 }; + public static final int Carousel_carousel_alignment = 0; + public static final int[] CheckedTextView = new int[] { 0x01010108, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8 }; + public static final int CheckedTextView_android_checkMark = 0; + public static final int CheckedTextView_checkMarkCompat = 1; + public static final int CheckedTextView_checkMarkTint = 2; + public static final int CheckedTextView_checkMarkTintMode = 3; + public static final int[] Chip = new int[] { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0300bc, 0x7f0300bd, 0x7f0300c1, 0x7f0300c2, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d8, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed, 0x7f0301b9, 0x7f030237, 0x7f030245, 0x7f030249, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, 0x7f030497, 0x7f0304a6 }; + public static final int Chip_android_checkable = 6; + public static final int Chip_android_ellipsize = 3; + public static final int Chip_android_maxWidth = 4; + public static final int Chip_android_text = 5; + public static final int Chip_android_textAppearance = 0; + public static final int Chip_android_textColor = 2; + public static final int Chip_android_textSize = 1; + public static final int Chip_checkedIcon = 7; + public static final int Chip_checkedIconEnabled = 8; + public static final int Chip_checkedIconTint = 9; + public static final int Chip_checkedIconVisible = 10; + public static final int Chip_chipBackgroundColor = 11; + public static final int Chip_chipCornerRadius = 12; + public static final int Chip_chipEndPadding = 13; + public static final int Chip_chipIcon = 14; + public static final int Chip_chipIconEnabled = 15; + public static final int Chip_chipIconSize = 16; + public static final int Chip_chipIconTint = 17; + public static final int Chip_chipIconVisible = 18; + public static final int Chip_chipMinHeight = 19; + public static final int Chip_chipMinTouchTargetSize = 20; + public static final int Chip_chipStartPadding = 21; + public static final int Chip_chipStrokeColor = 22; + public static final int Chip_chipStrokeWidth = 23; + public static final int Chip_chipSurfaceColor = 24; + public static final int Chip_closeIcon = 25; + public static final int Chip_closeIconEnabled = 26; + public static final int Chip_closeIconEndPadding = 27; + public static final int Chip_closeIconSize = 28; + public static final int Chip_closeIconStartPadding = 29; + public static final int Chip_closeIconTint = 30; + public static final int Chip_closeIconVisible = 31; + public static final int Chip_ensureMinTouchTargetSize = 32; + public static final int Chip_hideMotionSpec = 33; + public static final int Chip_iconEndPadding = 34; + public static final int Chip_iconStartPadding = 35; + public static final int Chip_rippleColor = 36; + public static final int Chip_shapeAppearance = 37; + public static final int Chip_shapeAppearanceOverlay = 38; + public static final int Chip_showMotionSpec = 39; + public static final int Chip_textEndPadding = 40; + public static final int Chip_textStartPadding = 41; + public static final int[] ChipGroup = new int[] { 0x7f0300bb, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f0303df, 0x7f030400, 0x7f030401 }; + public static final int ChipGroup_checkedChip = 0; + public static final int ChipGroup_chipSpacing = 1; + public static final int ChipGroup_chipSpacingHorizontal = 2; + public static final int ChipGroup_chipSpacingVertical = 3; + public static final int ChipGroup_selectionRequired = 4; + public static final int ChipGroup_singleLine = 5; + public static final int ChipGroup_singleSelection = 6; + public static final int[] CircularProgressIndicator = new int[] { 0x7f030257, 0x7f030259, 0x7f03025a }; + public static final int CircularProgressIndicator_indicatorDirectionCircular = 0; + public static final int CircularProgressIndicator_indicatorInset = 1; + public static final int CircularProgressIndicator_indicatorSize = 2; + public static final int[] ClockFaceView = new int[] { 0x7f0300e3, 0x7f0300e6 }; + public static final int ClockFaceView_clockFaceBackgroundColor = 0; + public static final int ClockFaceView_clockNumberTextColor = 1; + public static final int[] ClockHandView = new int[] { 0x7f0300e4, 0x7f03030e, 0x7f0303e0 }; + public static final int ClockHandView_clockHandColor = 0; + public static final int ClockHandView_materialCircleRadius = 1; + public static final int ClockHandView_selectorSize = 2; + public static final int[] CollapsingToolbarLayout = new int[] { 0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f030150, 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d8, 0x7f03021a, 0x7f030329, 0x7f0303d2, 0x7f0303d4, 0x7f03042f, 0x7f0304c8, 0x7f0304ca, 0x7f0304cb, 0x7f0304d2, 0x7f0304d5, 0x7f0304d8 }; + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 0; + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; + public static final int CollapsingToolbarLayout_collapsedTitleTextColor = 2; + public static final int CollapsingToolbarLayout_contentScrim = 3; + public static final int CollapsingToolbarLayout_expandedTitleGravity = 4; + public static final int CollapsingToolbarLayout_expandedTitleMargin = 5; + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 6; + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 7; + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 8; + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 9; + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 10; + public static final int CollapsingToolbarLayout_expandedTitleTextColor = 11; + public static final int CollapsingToolbarLayout_extraMultilineHeightEnabled = 12; + public static final int CollapsingToolbarLayout_forceApplySystemWindowInsetTop = 13; + public static final int CollapsingToolbarLayout_maxLines = 14; + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 15; + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 16; + public static final int CollapsingToolbarLayout_statusBarScrim = 17; + public static final int CollapsingToolbarLayout_title = 18; + public static final int CollapsingToolbarLayout_titleCollapseMode = 19; + public static final int CollapsingToolbarLayout_titleEnabled = 20; + public static final int CollapsingToolbarLayout_titlePositionInterpolator = 21; + public static final int CollapsingToolbarLayout_titleTextEllipsize = 22; + public static final int CollapsingToolbarLayout_toolbarId = 23; + public static final int[] CollapsingToolbarLayout_Layout = new int[] { 0x7f030292, 0x7f030293 }; + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + public static final int[] ColorStateListItem = new int[] { 0x010101a5, 0x0101031f, 0x01010647, 0x7f030031, 0x7f030283 }; + public static final int ColorStateListItem_alpha = 3; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_lStar = 2; + public static final int ColorStateListItem_lStar = 4; + public static final int[] CompoundButton = new int[] { 0x01010107, 0x7f030096, 0x7f03009f, 0x7f0300a0 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonCompat = 1; + public static final int CompoundButton_buttonTint = 2; + public static final int CompoundButton_buttonTintMode = 3; + public static final int[] Constraint = new int[] { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6, 0x7f030509 }; + public static final int Constraint_android_alpha = 13; + public static final int Constraint_android_elevation = 26; + public static final int Constraint_android_id = 1; + public static final int Constraint_android_layout_height = 4; + public static final int Constraint_android_layout_marginBottom = 8; + public static final int Constraint_android_layout_marginEnd = 24; + public static final int Constraint_android_layout_marginLeft = 5; + public static final int Constraint_android_layout_marginRight = 7; + public static final int Constraint_android_layout_marginStart = 23; + public static final int Constraint_android_layout_marginTop = 6; + public static final int Constraint_android_layout_width = 3; + public static final int Constraint_android_maxHeight = 10; + public static final int Constraint_android_maxWidth = 9; + public static final int Constraint_android_minHeight = 12; + public static final int Constraint_android_minWidth = 11; + public static final int Constraint_android_orientation = 0; + public static final int Constraint_android_rotation = 20; + public static final int Constraint_android_rotationX = 21; + public static final int Constraint_android_rotationY = 22; + public static final int Constraint_android_scaleX = 18; + public static final int Constraint_android_scaleY = 19; + public static final int Constraint_android_transformPivotX = 14; + public static final int Constraint_android_transformPivotY = 15; + public static final int Constraint_android_translationX = 16; + public static final int Constraint_android_translationY = 17; + public static final int Constraint_android_translationZ = 25; + public static final int Constraint_android_visibility = 2; + public static final int Constraint_barrierAllowsGoneWidgets = 29; + public static final int Constraint_barrierDirection = 30; + public static final int Constraint_barrierMargin = 31; + public static final int Constraint_chainUseRtl = 32; + public static final int Constraint_constraint_referenced_ids = 33; + public static final int Constraint_drawPath = 35; + public static final int Constraint_flow_firstHorizontalBias = 36; + public static final int Constraint_flow_firstHorizontalStyle = 37; + public static final int Constraint_flow_firstVerticalBias = 38; + public static final int Constraint_flow_firstVerticalStyle = 39; + public static final int Constraint_flow_horizontalAlign = 40; + public static final int Constraint_flow_horizontalBias = 41; + public static final int Constraint_flow_horizontalGap = 42; + public static final int Constraint_flow_horizontalStyle = 43; + public static final int Constraint_flow_lastHorizontalBias = 44; + public static final int Constraint_flow_lastHorizontalStyle = 45; + public static final int Constraint_flow_lastVerticalBias = 46; + public static final int Constraint_flow_lastVerticalStyle = 47; + public static final int Constraint_flow_maxElementsWrap = 48; + public static final int Constraint_flow_verticalAlign = 49; + public static final int Constraint_flow_verticalBias = 50; + public static final int Constraint_flow_verticalGap = 51; + public static final int Constraint_flow_verticalStyle = 52; + public static final int Constraint_flow_wrapMode = 53; + public static final int Constraint_layout_constrainedHeight = 55; + public static final int Constraint_layout_constrainedWidth = 56; + public static final int Constraint_layout_constraintBaseline_creator = 57; + public static final int Constraint_layout_constraintBaseline_toBaselineOf = 58; + public static final int Constraint_layout_constraintBottom_creator = 61; + public static final int Constraint_layout_constraintBottom_toBottomOf = 62; + public static final int Constraint_layout_constraintBottom_toTopOf = 63; + public static final int Constraint_layout_constraintCircle = 64; + public static final int Constraint_layout_constraintCircleAngle = 65; + public static final int Constraint_layout_constraintCircleRadius = 66; + public static final int Constraint_layout_constraintDimensionRatio = 67; + public static final int Constraint_layout_constraintEnd_toEndOf = 68; + public static final int Constraint_layout_constraintEnd_toStartOf = 69; + public static final int Constraint_layout_constraintGuide_begin = 70; + public static final int Constraint_layout_constraintGuide_end = 71; + public static final int Constraint_layout_constraintGuide_percent = 72; + public static final int Constraint_layout_constraintHeight_default = 74; + public static final int Constraint_layout_constraintHeight_max = 75; + public static final int Constraint_layout_constraintHeight_min = 76; + public static final int Constraint_layout_constraintHeight_percent = 77; + public static final int Constraint_layout_constraintHorizontal_bias = 78; + public static final int Constraint_layout_constraintHorizontal_chainStyle = 79; + public static final int Constraint_layout_constraintHorizontal_weight = 80; + public static final int Constraint_layout_constraintLeft_creator = 81; + public static final int Constraint_layout_constraintLeft_toLeftOf = 82; + public static final int Constraint_layout_constraintLeft_toRightOf = 83; + public static final int Constraint_layout_constraintRight_creator = 84; + public static final int Constraint_layout_constraintRight_toLeftOf = 85; + public static final int Constraint_layout_constraintRight_toRightOf = 86; + public static final int Constraint_layout_constraintStart_toEndOf = 87; + public static final int Constraint_layout_constraintStart_toStartOf = 88; + public static final int Constraint_layout_constraintTag = 89; + public static final int Constraint_layout_constraintTop_creator = 90; + public static final int Constraint_layout_constraintTop_toBottomOf = 91; + public static final int Constraint_layout_constraintTop_toTopOf = 92; + public static final int Constraint_layout_constraintVertical_bias = 93; + public static final int Constraint_layout_constraintVertical_chainStyle = 94; + public static final int Constraint_layout_constraintVertical_weight = 95; + public static final int Constraint_layout_constraintWidth_default = 97; + public static final int Constraint_layout_constraintWidth_max = 98; + public static final int Constraint_layout_constraintWidth_min = 99; + public static final int Constraint_layout_constraintWidth_percent = 100; + public static final int Constraint_layout_editor_absoluteX = 101; + public static final int Constraint_layout_editor_absoluteY = 102; + public static final int Constraint_layout_goneMarginBottom = 104; + public static final int Constraint_layout_goneMarginEnd = 105; + public static final int Constraint_layout_goneMarginLeft = 106; + public static final int Constraint_layout_goneMarginRight = 107; + public static final int Constraint_layout_goneMarginStart = 108; + public static final int Constraint_layout_goneMarginTop = 109; + public static final int Constraint_motionProgress = 112; + public static final int Constraint_motionStagger = 113; + public static final int Constraint_pathMotionArc = 114; + public static final int Constraint_pivotAnchor = 115; + public static final int Constraint_transitionEasing = 121; + public static final int Constraint_transitionPathRotate = 122; + public static final int Constraint_visibilityMode = 123; + public static final int[] ConstraintLayout_Layout = new int[] { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x010103b5, 0x010103b6, 0x01010440, 0x0101053b, 0x0101053c, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f03013b, 0x7f03013e, 0x7f03013f, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f03028c, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302cf, 0x7f0302d3 }; + public static final int ConstraintLayout_Layout_android_elevation = 22; + public static final int ConstraintLayout_Layout_android_maxHeight = 15; + public static final int ConstraintLayout_Layout_android_maxWidth = 14; + public static final int ConstraintLayout_Layout_android_minHeight = 17; + public static final int ConstraintLayout_Layout_android_minWidth = 16; + public static final int ConstraintLayout_Layout_android_orientation = 0; + public static final int ConstraintLayout_Layout_android_padding = 1; + public static final int ConstraintLayout_Layout_android_paddingBottom = 5; + public static final int ConstraintLayout_Layout_android_paddingEnd = 19; + public static final int ConstraintLayout_Layout_android_paddingLeft = 2; + public static final int ConstraintLayout_Layout_android_paddingRight = 4; + public static final int ConstraintLayout_Layout_android_paddingStart = 18; + public static final int ConstraintLayout_Layout_android_paddingTop = 3; + public static final int ConstraintLayout_Layout_android_visibility = 6; + public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets = 25; + public static final int ConstraintLayout_Layout_barrierDirection = 26; + public static final int ConstraintLayout_Layout_barrierMargin = 27; + public static final int ConstraintLayout_Layout_chainUseRtl = 28; + public static final int ConstraintLayout_Layout_constraintSet = 34; + public static final int ConstraintLayout_Layout_constraint_referenced_ids = 35; + public static final int ConstraintLayout_Layout_flow_firstHorizontalBias = 37; + public static final int ConstraintLayout_Layout_flow_firstHorizontalStyle = 38; + public static final int ConstraintLayout_Layout_flow_firstVerticalBias = 39; + public static final int ConstraintLayout_Layout_flow_firstVerticalStyle = 40; + public static final int ConstraintLayout_Layout_flow_horizontalAlign = 41; + public static final int ConstraintLayout_Layout_flow_horizontalBias = 42; + public static final int ConstraintLayout_Layout_flow_horizontalGap = 43; + public static final int ConstraintLayout_Layout_flow_horizontalStyle = 44; + public static final int ConstraintLayout_Layout_flow_lastHorizontalBias = 45; + public static final int ConstraintLayout_Layout_flow_lastHorizontalStyle = 46; + public static final int ConstraintLayout_Layout_flow_lastVerticalBias = 47; + public static final int ConstraintLayout_Layout_flow_lastVerticalStyle = 48; + public static final int ConstraintLayout_Layout_flow_maxElementsWrap = 49; + public static final int ConstraintLayout_Layout_flow_verticalAlign = 50; + public static final int ConstraintLayout_Layout_flow_verticalBias = 51; + public static final int ConstraintLayout_Layout_flow_verticalGap = 52; + public static final int ConstraintLayout_Layout_flow_verticalStyle = 53; + public static final int ConstraintLayout_Layout_flow_wrapMode = 54; + public static final int ConstraintLayout_Layout_layoutDescription = 56; + public static final int ConstraintLayout_Layout_layout_constrainedHeight = 57; + public static final int ConstraintLayout_Layout_layout_constrainedWidth = 58; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 59; + public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 60; + public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 63; + public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 64; + public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 65; + public static final int ConstraintLayout_Layout_layout_constraintCircle = 66; + public static final int ConstraintLayout_Layout_layout_constraintCircleAngle = 67; + public static final int ConstraintLayout_Layout_layout_constraintCircleRadius = 68; + public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 69; + public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 70; + public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 71; + public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 72; + public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 73; + public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 74; + public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 76; + public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 77; + public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 78; + public static final int ConstraintLayout_Layout_layout_constraintHeight_percent = 79; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 80; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 81; + public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 82; + public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 83; + public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 84; + public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 85; + public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 86; + public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 87; + public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 88; + public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 89; + public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 90; + public static final int ConstraintLayout_Layout_layout_constraintTag = 91; + public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 92; + public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 93; + public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 94; + public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 95; + public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 96; + public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 97; + public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 99; + public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 100; + public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 101; + public static final int ConstraintLayout_Layout_layout_constraintWidth_percent = 102; + public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 103; + public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 104; + public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 106; + public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 107; + public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 108; + public static final int ConstraintLayout_Layout_layout_goneMarginRight = 109; + public static final int ConstraintLayout_Layout_layout_goneMarginStart = 110; + public static final int ConstraintLayout_Layout_layout_goneMarginTop = 111; + public static final int ConstraintLayout_Layout_layout_optimizationLevel = 113; + public static final int[] ConstraintLayout_placeholder = new int[] { 0x7f030141, 0x7f0303a1 }; + public static final int ConstraintLayout_placeholder_content = 0; + public static final int ConstraintLayout_placeholder_placeholder_emptyVisibility = 1; + public static final int[] ConstraintSet = new int[] { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030035, 0x7f030038, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013a, 0x7f03013e, 0x7f03013f, 0x7f030183, 0x7f030194, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030366, 0x7f030367, 0x7f030395, 0x7f03039c, 0x7f0303a2, 0x7f0303b6, 0x7f030423, 0x7f0304f4, 0x7f0304f6 }; + public static final int ConstraintSet_android_alpha = 15; + public static final int ConstraintSet_android_elevation = 28; + public static final int ConstraintSet_android_id = 1; + public static final int ConstraintSet_android_layout_height = 4; + public static final int ConstraintSet_android_layout_marginBottom = 8; + public static final int ConstraintSet_android_layout_marginEnd = 26; + public static final int ConstraintSet_android_layout_marginLeft = 5; + public static final int ConstraintSet_android_layout_marginRight = 7; + public static final int ConstraintSet_android_layout_marginStart = 25; + public static final int ConstraintSet_android_layout_marginTop = 6; + public static final int ConstraintSet_android_layout_width = 3; + public static final int ConstraintSet_android_maxHeight = 10; + public static final int ConstraintSet_android_maxWidth = 9; + public static final int ConstraintSet_android_minHeight = 12; + public static final int ConstraintSet_android_minWidth = 11; + public static final int ConstraintSet_android_orientation = 0; + public static final int ConstraintSet_android_pivotX = 13; + public static final int ConstraintSet_android_pivotY = 14; + public static final int ConstraintSet_android_rotation = 22; + public static final int ConstraintSet_android_rotationX = 23; + public static final int ConstraintSet_android_rotationY = 24; + public static final int ConstraintSet_android_scaleX = 20; + public static final int ConstraintSet_android_scaleY = 21; + public static final int ConstraintSet_android_transformPivotX = 16; + public static final int ConstraintSet_android_transformPivotY = 17; + public static final int ConstraintSet_android_translationX = 18; + public static final int ConstraintSet_android_translationY = 19; + public static final int ConstraintSet_android_translationZ = 27; + public static final int ConstraintSet_android_visibility = 2; + public static final int ConstraintSet_barrierAllowsGoneWidgets = 31; + public static final int ConstraintSet_barrierDirection = 32; + public static final int ConstraintSet_barrierMargin = 33; + public static final int ConstraintSet_chainUseRtl = 34; + public static final int ConstraintSet_constraint_referenced_ids = 36; + public static final int ConstraintSet_deriveConstraintsFrom = 38; + public static final int ConstraintSet_drawPath = 39; + public static final int ConstraintSet_flow_firstHorizontalBias = 40; + public static final int ConstraintSet_flow_firstHorizontalStyle = 41; + public static final int ConstraintSet_flow_firstVerticalBias = 42; + public static final int ConstraintSet_flow_firstVerticalStyle = 43; + public static final int ConstraintSet_flow_horizontalAlign = 44; + public static final int ConstraintSet_flow_horizontalBias = 45; + public static final int ConstraintSet_flow_horizontalGap = 46; + public static final int ConstraintSet_flow_horizontalStyle = 47; + public static final int ConstraintSet_flow_lastHorizontalBias = 48; + public static final int ConstraintSet_flow_lastHorizontalStyle = 49; + public static final int ConstraintSet_flow_lastVerticalBias = 50; + public static final int ConstraintSet_flow_lastVerticalStyle = 51; + public static final int ConstraintSet_flow_maxElementsWrap = 52; + public static final int ConstraintSet_flow_verticalAlign = 53; + public static final int ConstraintSet_flow_verticalBias = 54; + public static final int ConstraintSet_flow_verticalGap = 55; + public static final int ConstraintSet_flow_verticalStyle = 56; + public static final int ConstraintSet_flow_wrapMode = 57; + public static final int ConstraintSet_layout_constrainedHeight = 59; + public static final int ConstraintSet_layout_constrainedWidth = 60; + public static final int ConstraintSet_layout_constraintBaseline_creator = 61; + public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 62; + public static final int ConstraintSet_layout_constraintBottom_creator = 65; + public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 66; + public static final int ConstraintSet_layout_constraintBottom_toTopOf = 67; + public static final int ConstraintSet_layout_constraintCircle = 68; + public static final int ConstraintSet_layout_constraintCircleAngle = 69; + public static final int ConstraintSet_layout_constraintCircleRadius = 70; + public static final int ConstraintSet_layout_constraintDimensionRatio = 71; + public static final int ConstraintSet_layout_constraintEnd_toEndOf = 72; + public static final int ConstraintSet_layout_constraintEnd_toStartOf = 73; + public static final int ConstraintSet_layout_constraintGuide_begin = 74; + public static final int ConstraintSet_layout_constraintGuide_end = 75; + public static final int ConstraintSet_layout_constraintGuide_percent = 76; + public static final int ConstraintSet_layout_constraintHeight_default = 77; + public static final int ConstraintSet_layout_constraintHeight_max = 78; + public static final int ConstraintSet_layout_constraintHeight_min = 79; + public static final int ConstraintSet_layout_constraintHeight_percent = 80; + public static final int ConstraintSet_layout_constraintHorizontal_bias = 81; + public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 82; + public static final int ConstraintSet_layout_constraintHorizontal_weight = 83; + public static final int ConstraintSet_layout_constraintLeft_creator = 84; + public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 85; + public static final int ConstraintSet_layout_constraintLeft_toRightOf = 86; + public static final int ConstraintSet_layout_constraintRight_creator = 87; + public static final int ConstraintSet_layout_constraintRight_toLeftOf = 88; + public static final int ConstraintSet_layout_constraintRight_toRightOf = 89; + public static final int ConstraintSet_layout_constraintStart_toEndOf = 90; + public static final int ConstraintSet_layout_constraintStart_toStartOf = 91; + public static final int ConstraintSet_layout_constraintTag = 92; + public static final int ConstraintSet_layout_constraintTop_creator = 93; + public static final int ConstraintSet_layout_constraintTop_toBottomOf = 94; + public static final int ConstraintSet_layout_constraintTop_toTopOf = 95; + public static final int ConstraintSet_layout_constraintVertical_bias = 96; + public static final int ConstraintSet_layout_constraintVertical_chainStyle = 97; + public static final int ConstraintSet_layout_constraintVertical_weight = 98; + public static final int ConstraintSet_layout_constraintWidth_default = 99; + public static final int ConstraintSet_layout_constraintWidth_max = 100; + public static final int ConstraintSet_layout_constraintWidth_min = 101; + public static final int ConstraintSet_layout_constraintWidth_percent = 102; + public static final int ConstraintSet_layout_editor_absoluteX = 103; + public static final int ConstraintSet_layout_editor_absoluteY = 104; + public static final int ConstraintSet_layout_goneMarginBottom = 106; + public static final int ConstraintSet_layout_goneMarginEnd = 107; + public static final int ConstraintSet_layout_goneMarginLeft = 108; + public static final int ConstraintSet_layout_goneMarginRight = 109; + public static final int ConstraintSet_layout_goneMarginStart = 110; + public static final int ConstraintSet_layout_goneMarginTop = 111; + public static final int ConstraintSet_motionProgress = 114; + public static final int ConstraintSet_motionStagger = 115; + public static final int ConstraintSet_pathMotionArc = 116; + public static final int ConstraintSet_pivotAnchor = 117; + public static final int ConstraintSet_transitionEasing = 121; + public static final int ConstraintSet_transitionPathRotate = 122; + public static final int[] CoordinatorLayout = new int[] { 0x7f030282, 0x7f03042d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = new int[] { 0x010100b3, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f0302c2, 0x7f0302cc, 0x7f0302cd }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] CustomAttribute = new int[] { 0x7f030041, 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030331 }; + public static final int CustomAttribute_attributeName = 0; + public static final int CustomAttribute_customBoolean = 1; + public static final int CustomAttribute_customColorDrawableValue = 2; + public static final int CustomAttribute_customColorValue = 3; + public static final int CustomAttribute_customDimension = 4; + public static final int CustomAttribute_customFloatValue = 5; + public static final int CustomAttribute_customIntegerValue = 6; + public static final int CustomAttribute_customPixelDimension = 7; + public static final int CustomAttribute_customStringValue = 9; + public static final int[] DrawerArrowToggle = new int[] { 0x7f03003f, 0x7f030040, 0x7f030069, 0x7f0300fb, 0x7f030199, 0x7f03021e, 0x7f030408, 0x7f0304ac }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] DrawerLayout = new int[] { 0x7f0301a9 }; + public static final int DrawerLayout_elevation = 0; + public static final int[] ExtendedFloatingActionButton = new int[] { 0x7f0300f1, 0x7f0301a9, 0x7f0301d1, 0x7f0301d2, 0x7f030237, 0x7f0303f4, 0x7f0303f8 }; + public static final int ExtendedFloatingActionButton_collapsedSize = 0; + public static final int ExtendedFloatingActionButton_elevation = 1; + public static final int ExtendedFloatingActionButton_extendMotionSpec = 2; + public static final int ExtendedFloatingActionButton_extendStrategy = 3; + public static final int ExtendedFloatingActionButton_hideMotionSpec = 4; + public static final int ExtendedFloatingActionButton_showMotionSpec = 5; + public static final int ExtendedFloatingActionButton_shrinkMotionSpec = 6; + public static final int[] ExtendedFloatingActionButton_Behavior_Layout = new int[] { 0x7f03006d, 0x7f03006e }; + public static final int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + public static final int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = 1; + public static final int[] FloatingActionButton = new int[] { 0x0101000e, 0x7f030056, 0x7f030057, 0x7f03007c, 0x7f0301a9, 0x7f0301b9, 0x7f0301e0, 0x7f0301e1, 0x7f030237, 0x7f030243, 0x7f030328, 0x7f0303b0, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f0303f4, 0x7f0304fe }; + public static final int FloatingActionButton_android_enabled = 0; + public static final int FloatingActionButton_backgroundTint = 1; + public static final int FloatingActionButton_backgroundTintMode = 2; + public static final int FloatingActionButton_borderWidth = 3; + public static final int FloatingActionButton_elevation = 4; + public static final int FloatingActionButton_ensureMinTouchTargetSize = 5; + public static final int FloatingActionButton_fabCustomSize = 6; + public static final int FloatingActionButton_fabSize = 7; + public static final int FloatingActionButton_hideMotionSpec = 8; + public static final int FloatingActionButton_hoveredFocusedTranslationZ = 9; + public static final int FloatingActionButton_maxImageSize = 10; + public static final int FloatingActionButton_pressedTranslationZ = 11; + public static final int FloatingActionButton_rippleColor = 12; + public static final int FloatingActionButton_shapeAppearance = 13; + public static final int FloatingActionButton_shapeAppearanceOverlay = 14; + public static final int FloatingActionButton_showMotionSpec = 15; + public static final int FloatingActionButton_useCompatPadding = 16; + public static final int[] FloatingActionButton_Behavior_Layout = new int[] { 0x7f03006d }; + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + public static final int[] FlowLayout = new int[] { 0x7f030277, 0x7f0302d9 }; + public static final int FlowLayout_itemSpacing = 0; + public static final int FlowLayout_lineSpacing = 1; + public static final int[] FontFamily = new int[] { 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 3; + public static final int FontFamily_fontProviderFetchTimeout = 4; + public static final int FontFamily_fontProviderPackage = 5; + public static final int FontFamily_fontProviderQuery = 6; + public static final int FontFamily_fontProviderSystemFontFamily = 7; + public static final int[] FontFamilyFont = new int[] { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03020d, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f0304fb }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] ForegroundLinearLayout = new int[] { 0x01010109, 0x01010200, 0x7f03021c }; + public static final int ForegroundLinearLayout_android_foreground = 0; + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + public static final int[] Fragment = new int[] { 0x01010003, 0x010100d0, 0x010100d1 }; + public static final int Fragment_android_id = 1; + public static final int Fragment_android_name = 0; + public static final int Fragment_android_tag = 2; + public static final int[] FragmentContainerView = new int[] { 0x01010003, 0x010100d1 }; + public static final int FragmentContainerView_android_name = 0; + public static final int FragmentContainerView_android_tag = 1; + public static final int[] GradientColor = new int[] { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_type = 2; + public static final int[] GradientColorItem = new int[] { 0x010101a5, 0x01010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] ImageFilterView = new int[] { 0x7f030033, 0x7f030079, 0x7f030090, 0x7f030151, 0x7f030166, 0x7f030250, 0x7f030251, 0x7f030252, 0x7f030253, 0x7f030383, 0x7f0303cd, 0x7f0303ce, 0x7f0303d0, 0x7f03050b }; + public static final int ImageFilterView_altSrc = 0; + public static final int ImageFilterView_brightness = 2; + public static final int ImageFilterView_contrast = 3; + public static final int ImageFilterView_crossfade = 4; + public static final int ImageFilterView_overlay = 9; + public static final int ImageFilterView_round = 10; + public static final int ImageFilterView_roundPercent = 11; + public static final int ImageFilterView_saturation = 12; + public static final int ImageFilterView_warmth = 13; + public static final int[] Insets = new int[] { 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f030385, 0x7f030387, 0x7f030388, 0x7f03038a, 0x7f03038c }; + public static final int Insets_marginLeftSystemWindowInsets = 0; + public static final int Insets_marginRightSystemWindowInsets = 1; + public static final int Insets_marginTopSystemWindowInsets = 2; + public static final int Insets_paddingBottomSystemWindowInsets = 3; + public static final int Insets_paddingLeftSystemWindowInsets = 4; + public static final int Insets_paddingRightSystemWindowInsets = 5; + public static final int Insets_paddingStartSystemWindowInsets = 6; + public static final int Insets_paddingTopSystemWindowInsets = 7; + public static final int[] KeyAttribute = new int[] { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f2, 0x7f0304f4, 0x7f0304f6 }; + public static final int KeyAttribute_android_alpha = 0; + public static final int KeyAttribute_android_elevation = 11; + public static final int KeyAttribute_android_rotation = 7; + public static final int KeyAttribute_android_rotationX = 8; + public static final int KeyAttribute_android_rotationY = 9; + public static final int KeyAttribute_android_scaleX = 5; + public static final int KeyAttribute_android_scaleY = 6; + public static final int KeyAttribute_android_transformPivotX = 1; + public static final int KeyAttribute_android_transformPivotY = 2; + public static final int KeyAttribute_android_translationX = 3; + public static final int KeyAttribute_android_translationY = 4; + public static final int KeyAttribute_android_translationZ = 10; + public static final int KeyAttribute_curveFit = 12; + public static final int KeyAttribute_framePosition = 13; + public static final int KeyAttribute_motionProgress = 14; + public static final int KeyAttribute_motionTarget = 15; + public static final int KeyAttribute_transitionEasing = 17; + public static final int KeyAttribute_transitionPathRotate = 18; + public static final int[] KeyCycle = new int[] { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510, 0x7f030511 }; + public static final int KeyCycle_android_alpha = 0; + public static final int KeyCycle_android_elevation = 9; + public static final int KeyCycle_android_rotation = 5; + public static final int KeyCycle_android_rotationX = 6; + public static final int KeyCycle_android_rotationY = 7; + public static final int KeyCycle_android_scaleX = 3; + public static final int KeyCycle_android_scaleY = 4; + public static final int KeyCycle_android_translationX = 1; + public static final int KeyCycle_android_translationY = 2; + public static final int KeyCycle_android_translationZ = 8; + public static final int KeyCycle_curveFit = 10; + public static final int KeyCycle_framePosition = 11; + public static final int KeyCycle_motionProgress = 12; + public static final int KeyCycle_motionTarget = 13; + public static final int KeyCycle_transitionEasing = 14; + public static final int KeyCycle_transitionPathRotate = 15; + public static final int KeyCycle_waveOffset = 16; + public static final int KeyCycle_wavePeriod = 17; + public static final int KeyCycle_waveShape = 19; + public static final int KeyCycle_waveVariesBy = 20; + public static final int[] KeyPosition = new int[] { 0x7f03016a, 0x7f030194, 0x7f03021d, 0x7f030280, 0x7f030368, 0x7f030395, 0x7f030397, 0x7f030398, 0x7f030399, 0x7f03039a, 0x7f030402, 0x7f0304f4 }; + public static final int KeyPosition_curveFit = 0; + public static final int KeyPosition_drawPath = 1; + public static final int KeyPosition_framePosition = 2; + public static final int KeyPosition_keyPositionType = 3; + public static final int KeyPosition_motionTarget = 4; + public static final int KeyPosition_pathMotionArc = 5; + public static final int KeyPosition_percentHeight = 6; + public static final int KeyPosition_percentWidth = 7; + public static final int KeyPosition_percentX = 8; + public static final int KeyPosition_percentY = 9; + public static final int KeyPosition_sizePercent = 10; + public static final int KeyPosition_transitionEasing = 11; + public static final int[] KeyTimeCycle = new int[] { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03016a, 0x7f03021d, 0x7f030366, 0x7f030368, 0x7f0304f4, 0x7f0304f6, 0x7f03050c, 0x7f03050d, 0x7f03050e, 0x7f03050f, 0x7f030510 }; + public static final int KeyTimeCycle_android_alpha = 0; + public static final int KeyTimeCycle_android_elevation = 9; + public static final int KeyTimeCycle_android_rotation = 5; + public static final int KeyTimeCycle_android_rotationX = 6; + public static final int KeyTimeCycle_android_rotationY = 7; + public static final int KeyTimeCycle_android_scaleX = 3; + public static final int KeyTimeCycle_android_scaleY = 4; + public static final int KeyTimeCycle_android_translationX = 1; + public static final int KeyTimeCycle_android_translationY = 2; + public static final int KeyTimeCycle_android_translationZ = 8; + public static final int KeyTimeCycle_curveFit = 10; + public static final int KeyTimeCycle_framePosition = 11; + public static final int KeyTimeCycle_motionProgress = 12; + public static final int KeyTimeCycle_motionTarget = 13; + public static final int KeyTimeCycle_transitionEasing = 14; + public static final int KeyTimeCycle_transitionPathRotate = 15; + public static final int KeyTimeCycle_waveDecay = 16; + public static final int KeyTimeCycle_waveOffset = 17; + public static final int KeyTimeCycle_wavePeriod = 18; + public static final int KeyTimeCycle_waveShape = 20; + public static final int[] KeyTrigger = new int[] { 0x7f03021d, 0x7f030368, 0x7f030369, 0x7f03036a, 0x7f03037b, 0x7f03037d, 0x7f03037e, 0x7f0304f8, 0x7f0304f9, 0x7f0304fa, 0x7f030506, 0x7f030507, 0x7f030508 }; + public static final int KeyTrigger_framePosition = 0; + public static final int KeyTrigger_motionTarget = 1; + public static final int KeyTrigger_motion_postLayoutCollision = 2; + public static final int KeyTrigger_motion_triggerOnCollision = 3; + public static final int KeyTrigger_onCross = 4; + public static final int KeyTrigger_onNegativeCross = 5; + public static final int KeyTrigger_onPositiveCross = 6; + public static final int KeyTrigger_triggerId = 7; + public static final int KeyTrigger_triggerReceiver = 8; + public static final int KeyTrigger_triggerSlack = 9; + public static final int[] Layout = new int[] { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f0300b5, 0x7f03013e, 0x7f03013f, 0x7f03022d, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302ba, 0x7f0302bb, 0x7f0302bc, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c3, 0x7f0302c4, 0x7f0302c5, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302ce, 0x7f0302d3, 0x7f030327, 0x7f03032c, 0x7f030333, 0x7f030337 }; + public static final int Layout_android_layout_height = 2; + public static final int Layout_android_layout_marginBottom = 6; + public static final int Layout_android_layout_marginEnd = 8; + public static final int Layout_android_layout_marginLeft = 3; + public static final int Layout_android_layout_marginRight = 5; + public static final int Layout_android_layout_marginStart = 7; + public static final int Layout_android_layout_marginTop = 4; + public static final int Layout_android_layout_width = 1; + public static final int Layout_android_orientation = 0; + public static final int Layout_barrierAllowsGoneWidgets = 9; + public static final int Layout_barrierDirection = 10; + public static final int Layout_barrierMargin = 11; + public static final int Layout_chainUseRtl = 12; + public static final int Layout_constraint_referenced_ids = 13; + public static final int Layout_layout_constrainedHeight = 16; + public static final int Layout_layout_constrainedWidth = 17; + public static final int Layout_layout_constraintBaseline_creator = 18; + public static final int Layout_layout_constraintBaseline_toBaselineOf = 19; + public static final int Layout_layout_constraintBottom_creator = 22; + public static final int Layout_layout_constraintBottom_toBottomOf = 23; + public static final int Layout_layout_constraintBottom_toTopOf = 24; + public static final int Layout_layout_constraintCircle = 25; + public static final int Layout_layout_constraintCircleAngle = 26; + public static final int Layout_layout_constraintCircleRadius = 27; + public static final int Layout_layout_constraintDimensionRatio = 28; + public static final int Layout_layout_constraintEnd_toEndOf = 29; + public static final int Layout_layout_constraintEnd_toStartOf = 30; + public static final int Layout_layout_constraintGuide_begin = 31; + public static final int Layout_layout_constraintGuide_end = 32; + public static final int Layout_layout_constraintGuide_percent = 33; + public static final int Layout_layout_constraintHeight_default = 35; + public static final int Layout_layout_constraintHeight_max = 36; + public static final int Layout_layout_constraintHeight_min = 37; + public static final int Layout_layout_constraintHeight_percent = 38; + public static final int Layout_layout_constraintHorizontal_bias = 39; + public static final int Layout_layout_constraintHorizontal_chainStyle = 40; + public static final int Layout_layout_constraintHorizontal_weight = 41; + public static final int Layout_layout_constraintLeft_creator = 42; + public static final int Layout_layout_constraintLeft_toLeftOf = 43; + public static final int Layout_layout_constraintLeft_toRightOf = 44; + public static final int Layout_layout_constraintRight_creator = 45; + public static final int Layout_layout_constraintRight_toLeftOf = 46; + public static final int Layout_layout_constraintRight_toRightOf = 47; + public static final int Layout_layout_constraintStart_toEndOf = 48; + public static final int Layout_layout_constraintStart_toStartOf = 49; + public static final int Layout_layout_constraintTop_creator = 50; + public static final int Layout_layout_constraintTop_toBottomOf = 51; + public static final int Layout_layout_constraintTop_toTopOf = 52; + public static final int Layout_layout_constraintVertical_bias = 53; + public static final int Layout_layout_constraintVertical_chainStyle = 54; + public static final int Layout_layout_constraintVertical_weight = 55; + public static final int Layout_layout_constraintWidth_default = 57; + public static final int Layout_layout_constraintWidth_max = 58; + public static final int Layout_layout_constraintWidth_min = 59; + public static final int Layout_layout_constraintWidth_percent = 60; + public static final int Layout_layout_editor_absoluteX = 61; + public static final int Layout_layout_editor_absoluteY = 62; + public static final int Layout_layout_goneMarginBottom = 64; + public static final int Layout_layout_goneMarginEnd = 65; + public static final int Layout_layout_goneMarginLeft = 66; + public static final int Layout_layout_goneMarginRight = 67; + public static final int Layout_layout_goneMarginStart = 68; + public static final int Layout_layout_goneMarginTop = 69; + public static final int Layout_maxHeight = 72; + public static final int Layout_maxWidth = 73; + public static final int Layout_minHeight = 74; + public static final int Layout_minWidth = 75; + public static final int[] LinearLayoutCompat = new int[] { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030189, 0x7f03018e, 0x7f03032d, 0x7f0303f2 }; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = new int[] { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int[] LinearProgressIndicator = new int[] { 0x7f030254, 0x7f030258, 0x7f0304ee }; + public static final int LinearProgressIndicator_indeterminateAnimationType = 0; + public static final int LinearProgressIndicator_indicatorDirectionLinear = 1; + public static final int LinearProgressIndicator_trackStopIndicatorSize = 2; + public static final int[] ListPopupWindow = new int[] { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MaterialAlertDialog = new int[] { 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030056 }; + public static final int MaterialAlertDialog_backgroundInsetBottom = 0; + public static final int MaterialAlertDialog_backgroundInsetEnd = 1; + public static final int MaterialAlertDialog_backgroundInsetStart = 2; + public static final int MaterialAlertDialog_backgroundInsetTop = 3; + public static final int MaterialAlertDialog_backgroundTint = 4; + public static final int[] MaterialAlertDialogTheme = new int[] { 0x7f0302f2, 0x7f0302f3, 0x7f0302f4, 0x7f0302f5, 0x7f0302f6, 0x7f0302f7 }; + public static final int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = 0; + public static final int MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility = 1; + public static final int MaterialAlertDialogTheme_materialAlertDialogTheme = 2; + public static final int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = 3; + public static final int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = 4; + public static final int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = 5; + public static final int[] MaterialAutoCompleteTextView = new int[] { 0x01010220, 0x0101048c, 0x7f0301a1, 0x7f0303fb, 0x7f0303fc, 0x7f0303fd, 0x7f0303fe }; + public static final int MaterialAutoCompleteTextView_android_inputType = 0; + public static final int MaterialAutoCompleteTextView_android_popupElevation = 1; + public static final int MaterialAutoCompleteTextView_dropDownBackgroundTint = 2; + public static final int MaterialAutoCompleteTextView_simpleItemLayout = 3; + public static final int MaterialAutoCompleteTextView_simpleItemSelectedColor = 4; + public static final int MaterialAutoCompleteTextView_simpleItemSelectedRippleColor = 5; + public static final int MaterialAutoCompleteTextView_simpleItems = 6; + public static final int[] MaterialButton = new int[] { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f030056, 0x7f030057, 0x7f03015a, 0x7f0301a9, 0x7f030244, 0x7f030246, 0x7f030247, 0x7f030248, 0x7f03024a, 0x7f03024b, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f030431, 0x7f030432, 0x7f0304d7 }; + public static final int MaterialButton_android_background = 0; + public static final int MaterialButton_android_checkable = 5; + public static final int MaterialButton_android_insetBottom = 4; + public static final int MaterialButton_android_insetLeft = 1; + public static final int MaterialButton_android_insetRight = 2; + public static final int MaterialButton_android_insetTop = 3; + public static final int MaterialButton_backgroundTint = 6; + public static final int MaterialButton_backgroundTintMode = 7; + public static final int MaterialButton_cornerRadius = 8; + public static final int MaterialButton_elevation = 9; + public static final int MaterialButton_icon = 10; + public static final int MaterialButton_iconGravity = 11; + public static final int MaterialButton_iconPadding = 12; + public static final int MaterialButton_iconSize = 13; + public static final int MaterialButton_iconTint = 14; + public static final int MaterialButton_iconTintMode = 15; + public static final int MaterialButton_rippleColor = 16; + public static final int MaterialButton_shapeAppearance = 17; + public static final int MaterialButton_shapeAppearanceOverlay = 18; + public static final int MaterialButton_strokeColor = 19; + public static final int MaterialButton_strokeWidth = 20; + public static final int MaterialButton_toggleCheckedStateOnClick = 21; + public static final int[] MaterialButtonToggleGroup = new int[] { 0x0101000e, 0x7f0300ba, 0x7f0303df, 0x7f030401 }; + public static final int MaterialButtonToggleGroup_android_enabled = 0; + public static final int MaterialButtonToggleGroup_checkedButton = 1; + public static final int MaterialButtonToggleGroup_selectionRequired = 2; + public static final int MaterialButtonToggleGroup_singleSelection = 3; + public static final int[] MaterialCalendar = new int[] { 0x0101020d, 0x7f030056, 0x7f030177, 0x7f030178, 0x7f030179, 0x7f03017a, 0x7f030376, 0x7f0303bb, 0x7f03051c, 0x7f03051d, 0x7f03051e }; + public static final int MaterialCalendar_android_windowFullscreen = 0; + public static final int MaterialCalendar_backgroundTint = 1; + public static final int MaterialCalendar_dayInvalidStyle = 2; + public static final int MaterialCalendar_daySelectedStyle = 3; + public static final int MaterialCalendar_dayStyle = 4; + public static final int MaterialCalendar_dayTodayStyle = 5; + public static final int MaterialCalendar_nestedScrollable = 6; + public static final int MaterialCalendar_rangeFillColor = 7; + public static final int MaterialCalendar_yearSelectedStyle = 8; + public static final int MaterialCalendar_yearStyle = 9; + public static final int MaterialCalendar_yearTodayStyle = 10; + public static final int[] MaterialCalendarItem = new int[] { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030264, 0x7f030270, 0x7f030271, 0x7f030278, 0x7f030279, 0x7f03027e }; + public static final int MaterialCalendarItem_android_insetBottom = 3; + public static final int MaterialCalendarItem_android_insetLeft = 0; + public static final int MaterialCalendarItem_android_insetRight = 1; + public static final int MaterialCalendarItem_android_insetTop = 2; + public static final int MaterialCalendarItem_itemFillColor = 4; + public static final int MaterialCalendarItem_itemShapeAppearance = 5; + public static final int MaterialCalendarItem_itemShapeAppearanceOverlay = 6; + public static final int MaterialCalendarItem_itemStrokeColor = 7; + public static final int MaterialCalendarItem_itemStrokeWidth = 8; + public static final int MaterialCalendarItem_itemTextColor = 9; + public static final int[] MaterialCardView = new int[] { 0x010101e5, 0x7f0300a4, 0x7f0300bc, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0303cb, 0x7f0303e2, 0x7f0303ea, 0x7f030427, 0x7f030431, 0x7f030432 }; + public static final int MaterialCardView_android_checkable = 0; + public static final int MaterialCardView_cardForegroundColor = 1; + public static final int MaterialCardView_checkedIcon = 2; + public static final int MaterialCardView_checkedIconGravity = 3; + public static final int MaterialCardView_checkedIconMargin = 4; + public static final int MaterialCardView_checkedIconSize = 5; + public static final int MaterialCardView_checkedIconTint = 6; + public static final int MaterialCardView_rippleColor = 7; + public static final int MaterialCardView_shapeAppearance = 8; + public static final int MaterialCardView_shapeAppearanceOverlay = 9; + public static final int MaterialCardView_state_dragged = 10; + public static final int MaterialCardView_strokeColor = 11; + public static final int MaterialCardView_strokeWidth = 12; + public static final int[] MaterialCheckBox = new int[] { 0x01010107, 0x7f030096, 0x7f030098, 0x7f03009a, 0x7f03009b, 0x7f03009f, 0x7f0300b4, 0x7f0300c3, 0x7f0301bb, 0x7f0301c2, 0x7f030500 }; + public static final int MaterialCheckBox_android_button = 0; + public static final int MaterialCheckBox_buttonCompat = 1; + public static final int MaterialCheckBox_buttonIcon = 2; + public static final int MaterialCheckBox_buttonIconTint = 3; + public static final int MaterialCheckBox_buttonIconTintMode = 4; + public static final int MaterialCheckBox_buttonTint = 5; + public static final int MaterialCheckBox_centerIfNoTextEnabled = 6; + public static final int MaterialCheckBox_checkedState = 7; + public static final int MaterialCheckBox_errorAccessibilityLabel = 8; + public static final int MaterialCheckBox_errorShown = 9; + public static final int MaterialCheckBox_useMaterialThemeColors = 10; + public static final int[] MaterialCheckBoxStates = new int[] { 0x7f030428, 0x7f030429 }; + public static final int MaterialCheckBoxStates_state_error = 0; + public static final int MaterialCheckBoxStates_state_indeterminate = 1; + public static final int[] MaterialDivider = new int[] { 0x7f03018a, 0x7f03018c, 0x7f03018d, 0x7f03018f, 0x7f030289 }; + public static final int MaterialDivider_dividerColor = 0; + public static final int MaterialDivider_dividerInsetEnd = 1; + public static final int MaterialDivider_dividerInsetStart = 2; + public static final int MaterialDivider_dividerThickness = 3; + public static final int MaterialDivider_lastItemDecorated = 4; + public static final int[] MaterialRadioButton = new int[] { 0x7f03009f, 0x7f030500 }; + public static final int MaterialRadioButton_buttonTint = 0; + public static final int MaterialRadioButton_useMaterialThemeColors = 1; + public static final int[] MaterialShape = new int[] { 0x7f0303e2, 0x7f0303ea }; + public static final int MaterialShape_shapeAppearance = 0; + public static final int MaterialShape_shapeAppearanceOverlay = 1; + public static final int[] MaterialSwitch = new int[] { 0x7f0304b0, 0x7f0304b1, 0x7f0304b2, 0x7f0304b3, 0x7f0304e9, 0x7f0304ea, 0x7f0304eb }; + public static final int MaterialSwitch_thumbIcon = 0; + public static final int MaterialSwitch_thumbIconSize = 1; + public static final int MaterialSwitch_thumbIconTint = 2; + public static final int MaterialSwitch_thumbIconTintMode = 3; + public static final int MaterialSwitch_trackDecoration = 4; + public static final int MaterialSwitch_trackDecorationTint = 5; + public static final int MaterialSwitch_trackDecorationTintMode = 6; + public static final int[] MaterialTextAppearance = new int[] { 0x010104b6, 0x0101057f, 0x7f0302d8 }; + public static final int MaterialTextAppearance_android_letterSpacing = 0; + public static final int MaterialTextAppearance_android_lineHeight = 1; + public static final int MaterialTextAppearance_lineHeight = 2; + public static final int[] MaterialTextView = new int[] { 0x01010034, 0x0101057f, 0x7f0302d8 }; + public static final int MaterialTextView_android_lineHeight = 1; + public static final int MaterialTextView_android_textAppearance = 0; + public static final int MaterialTextView_lineHeight = 2; + public static final int[] MaterialTimePicker = new int[] { 0x7f030056, 0x7f0300e5, 0x7f030281 }; + public static final int MaterialTimePicker_backgroundTint = 0; + public static final int MaterialTimePicker_clockIcon = 1; + public static final int MaterialTimePicker_keyboardIcon = 2; + public static final int[] MaterialToolbar = new int[] { 0x7f0302eb, 0x7f0302ed, 0x7f030370, 0x7f03043a, 0x7f0304c9 }; + public static final int MaterialToolbar_logoAdjustViewBounds = 0; + public static final int MaterialToolbar_logoScaleType = 1; + public static final int MaterialToolbar_navigationIconTint = 2; + public static final int MaterialToolbar_subtitleCentered = 3; + public static final int MaterialToolbar_titleCentered = 4; + public static final int[] MenuGroup = new int[] { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = new int[] { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x7f030142, 0x7f03024a, 0x7f03024b, 0x7f030379, 0x7f0303f0, 0x7f0304df }; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = new int[] { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0303af, 0x7f030433 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] MockView = new int[] { 0x7f030338, 0x7f030339, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d }; + public static final int MockView_mock_diagonalsColor = 0; + public static final int MockView_mock_label = 1; + public static final int MockView_mock_labelBackgroundColor = 2; + public static final int MockView_mock_labelColor = 3; + public static final int MockView_mock_showDiagonals = 4; + public static final int MockView_mock_showLabel = 5; + public static final int[] Motion = new int[] { 0x7f030035, 0x7f030038, 0x7f030194, 0x7f030365, 0x7f030367, 0x7f030395, 0x7f0303b4, 0x7f0303b5, 0x7f0303b6, 0x7f0304f4 }; + public static final int Motion_drawPath = 2; + public static final int Motion_motionPathRotate = 3; + public static final int Motion_motionStagger = 4; + public static final int Motion_pathMotionArc = 5; + public static final int Motion_transitionEasing = 9; + public static final int[] MotionHelper = new int[] { 0x7f03037c, 0x7f03037f }; + public static final int MotionHelper_onHide = 0; + public static final int MotionHelper_onShow = 1; + public static final int[] MotionLayout = new int[] { 0x7f03003c, 0x7f030167, 0x7f03028c, 0x7f03033e, 0x7f030366, 0x7f0303f5 }; + public static final int MotionLayout_applyMotionScene = 0; + public static final int MotionLayout_currentState = 1; + public static final int MotionLayout_layoutDescription = 2; + public static final int MotionLayout_motionDebug = 3; + public static final int MotionLayout_motionProgress = 4; + public static final int MotionLayout_showPaths = 5; + public static final int[] MotionScene = new int[] { 0x7f03017b, 0x7f03028d }; + public static final int MotionScene_defaultDuration = 0; + public static final int MotionScene_layoutDuringTransition = 1; + public static final int[] MotionTelltales = new int[] { 0x7f030467, 0x7f030468, 0x7f030469 }; + public static final int MotionTelltales_telltales_tailColor = 0; + public static final int MotionTelltales_telltales_tailScale = 1; + public static final int MotionTelltales_telltales_velocityMode = 2; + public static final int[] NavigationBarActiveIndicator = new int[] { 0x01010155, 0x01010159, 0x010101a5, 0x7f0302ee, 0x7f0303e2 }; + public static final int NavigationBarActiveIndicator_android_color = 2; + public static final int NavigationBarActiveIndicator_android_height = 0; + public static final int NavigationBarActiveIndicator_android_width = 1; + public static final int NavigationBarActiveIndicator_marginHorizontal = 3; + public static final int NavigationBarActiveIndicator_shapeAppearance = 4; + public static final int[] NavigationBarView = new int[] { 0x7f030027, 0x7f030056, 0x7f0301a9, 0x7f030262, 0x7f030263, 0x7f030268, 0x7f030269, 0x7f03026d, 0x7f03026e, 0x7f03026f, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f030286, 0x7f03032e }; + public static final int NavigationBarView_activeIndicatorLabelPadding = 0; + public static final int NavigationBarView_backgroundTint = 1; + public static final int NavigationBarView_elevation = 2; + public static final int NavigationBarView_itemActiveIndicatorStyle = 3; + public static final int NavigationBarView_itemBackground = 4; + public static final int NavigationBarView_itemIconSize = 5; + public static final int NavigationBarView_itemIconTint = 6; + public static final int NavigationBarView_itemPaddingBottom = 7; + public static final int NavigationBarView_itemPaddingTop = 8; + public static final int NavigationBarView_itemRippleColor = 9; + public static final int NavigationBarView_itemTextAppearanceActive = 10; + public static final int NavigationBarView_itemTextAppearanceActiveBoldEnabled = 11; + public static final int NavigationBarView_itemTextAppearanceInactive = 12; + public static final int NavigationBarView_itemTextColor = 13; + public static final int NavigationBarView_labelVisibilityMode = 14; + public static final int NavigationBarView_menu = 15; + public static final int[] NavigationRailView = new int[] { 0x7f030230, 0x7f03026b, 0x7f030330, 0x7f030385, 0x7f03038a, 0x7f03038c, 0x7f0303e2, 0x7f0303ea }; + public static final int NavigationRailView_headerLayout = 0; + public static final int NavigationRailView_itemMinHeight = 1; + public static final int NavigationRailView_menuGravity = 2; + public static final int NavigationRailView_paddingBottomSystemWindowInsets = 3; + public static final int NavigationRailView_paddingStartSystemWindowInsets = 4; + public static final int NavigationRailView_paddingTopSystemWindowInsets = 5; + public static final int NavigationRailView_shapeAppearance = 6; + public static final int NavigationRailView_shapeAppearanceOverlay = 7; + public static final int[] NavigationView = new int[] { 0x010100b3, 0x010100d4, 0x010100dd, 0x0101011f, 0x7f03007f, 0x7f03018c, 0x7f03018d, 0x7f03019f, 0x7f0301a9, 0x7f030230, 0x7f030263, 0x7f030265, 0x7f030267, 0x7f030268, 0x7f030269, 0x7f03026a, 0x7f03026f, 0x7f030270, 0x7f030271, 0x7f030272, 0x7f030273, 0x7f030274, 0x7f030275, 0x7f030276, 0x7f03027a, 0x7f03027c, 0x7f03027e, 0x7f03027f, 0x7f03032e, 0x7f0303e2, 0x7f0303ea, 0x7f030434, 0x7f030435, 0x7f030436, 0x7f030437, 0x7f0304e0 }; + public static final int NavigationView_android_background = 1; + public static final int NavigationView_android_fitsSystemWindows = 2; + public static final int NavigationView_android_layout_gravity = 0; + public static final int NavigationView_android_maxWidth = 3; + public static final int NavigationView_bottomInsetScrimEnabled = 4; + public static final int NavigationView_dividerInsetEnd = 5; + public static final int NavigationView_dividerInsetStart = 6; + public static final int NavigationView_drawerLayoutCornerSize = 7; + public static final int NavigationView_elevation = 8; + public static final int NavigationView_headerLayout = 9; + public static final int NavigationView_itemBackground = 10; + public static final int NavigationView_itemHorizontalPadding = 11; + public static final int NavigationView_itemIconPadding = 12; + public static final int NavigationView_itemIconSize = 13; + public static final int NavigationView_itemIconTint = 14; + public static final int NavigationView_itemMaxLines = 15; + public static final int NavigationView_itemRippleColor = 16; + public static final int NavigationView_itemShapeAppearance = 17; + public static final int NavigationView_itemShapeAppearanceOverlay = 18; + public static final int NavigationView_itemShapeFillColor = 19; + public static final int NavigationView_itemShapeInsetBottom = 20; + public static final int NavigationView_itemShapeInsetEnd = 21; + public static final int NavigationView_itemShapeInsetStart = 22; + public static final int NavigationView_itemShapeInsetTop = 23; + public static final int NavigationView_itemTextAppearance = 24; + public static final int NavigationView_itemTextAppearanceActiveBoldEnabled = 25; + public static final int NavigationView_itemTextColor = 26; + public static final int NavigationView_itemVerticalPadding = 27; + public static final int NavigationView_menu = 28; + public static final int NavigationView_shapeAppearance = 29; + public static final int NavigationView_shapeAppearanceOverlay = 30; + public static final int NavigationView_subheaderColor = 31; + public static final int NavigationView_subheaderInsetEnd = 32; + public static final int NavigationView_subheaderInsetStart = 33; + public static final int NavigationView_subheaderTextAppearance = 34; + public static final int NavigationView_topInsetScrimEnabled = 35; + public static final int[] OnClick = new int[] { 0x7f0300e2, 0x7f030465 }; + public static final int OnClick_clickAction = 0; + public static final int OnClick_targetId = 1; + public static final int[] OnSwipe = new int[] { 0x7f030043, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f0302d7, 0x7f030323, 0x7f03032b, 0x7f03036b, 0x7f030374, 0x7f030381, 0x7f0303cc, 0x7f030413, 0x7f030414, 0x7f030415, 0x7f030416, 0x7f030417, 0x7f0304e1, 0x7f0304e2, 0x7f0304e3 }; + public static final int OnSwipe_dragDirection = 1; + public static final int OnSwipe_dragScale = 2; + public static final int OnSwipe_dragThreshold = 3; + public static final int OnSwipe_limitBoundsTo = 4; + public static final int OnSwipe_maxAcceleration = 5; + public static final int OnSwipe_maxVelocity = 6; + public static final int OnSwipe_moveWhenScrollAtTop = 7; + public static final int OnSwipe_nestedScrollFlags = 8; + public static final int OnSwipe_onTouchUp = 9; + public static final int OnSwipe_touchAnchorId = 16; + public static final int OnSwipe_touchAnchorSide = 17; + public static final int OnSwipe_touchRegionId = 18; + public static final int[] PopupWindow = new int[] { 0x01010176, 0x010102c9, 0x7f030382 }; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = new int[] { 0x7f030424 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] PropertySet = new int[] { 0x010100dc, 0x0101031f, 0x7f0302b6, 0x7f030366, 0x7f030509 }; + public static final int PropertySet_android_alpha = 1; + public static final int PropertySet_android_visibility = 0; + public static final int PropertySet_layout_constraintTag = 2; + public static final int PropertySet_motionProgress = 3; + public static final int PropertySet_visibilityMode = 4; + public static final int[] RadialViewGroup = new int[] { 0x7f03030e }; + public static final int RadialViewGroup_materialCircleRadius = 0; + public static final int[] RangeSlider = new int[] { 0x7f030335, 0x7f030501 }; + public static final int RangeSlider_minSeparation = 0; + public static final int RangeSlider_values = 1; + public static final int[] RecycleListView = new int[] { 0x7f030384, 0x7f03038b }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] RecyclerView = new int[] { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f03028e, 0x7f0303ca, 0x7f030407, 0x7f030419 }; + public static final int RecyclerView_android_clipToPadding = 1; + public static final int RecyclerView_android_descendantFocusability = 2; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_fastScrollEnabled = 3; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 4; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 5; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 6; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 7; + public static final int RecyclerView_layoutManager = 8; + public static final int RecyclerView_reverseLayout = 9; + public static final int RecyclerView_spanCount = 10; + public static final int RecyclerView_stackFromEnd = 11; + public static final int[] ScrimInsetsFrameLayout = new int[] { 0x7f03025d }; + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + public static final int[] ScrollingViewBehavior_Layout = new int[] { 0x7f030074 }; + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + public static final int[] SearchBar = new int[] { 0x01010034, 0x0101014f, 0x01010150, 0x7f030056, 0x7f03017c, 0x7f03017f, 0x7f0301a9, 0x7f03021b, 0x7f030238, 0x7f030370, 0x7f030431, 0x7f030432, 0x7f0304c7 }; + public static final int SearchBar_android_hint = 2; + public static final int SearchBar_android_text = 1; + public static final int SearchBar_android_textAppearance = 0; + public static final int SearchBar_backgroundTint = 3; + public static final int SearchBar_defaultMarginsEnabled = 4; + public static final int SearchBar_defaultScrollFlagsEnabled = 5; + public static final int SearchBar_elevation = 6; + public static final int SearchBar_forceDefaultNavigationOnClickListener = 7; + public static final int SearchBar_hideNavigationIcon = 8; + public static final int SearchBar_navigationIconTint = 9; + public static final int SearchBar_strokeColor = 10; + public static final int SearchBar_strokeWidth = 11; + public static final int SearchBar_tintNavigationIcon = 12; + public static final int[] SearchView = new int[] { 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, 0x01010150, 0x01010220, 0x01010264, 0x7f030036, 0x7f030037, 0x7f030045, 0x7f03004c, 0x7f030056, 0x7f0300e7, 0x7f030138, 0x7f03017e, 0x7f030220, 0x7f030230, 0x7f030238, 0x7f03024c, 0x7f03028b, 0x7f0303b7, 0x7f0303b8, 0x7f0303d6, 0x7f0303d7, 0x7f0303d8, 0x7f030438, 0x7f030441, 0x7f0304ff, 0x7f03050a }; + public static final int SearchView_android_hint = 4; + public static final int SearchView_android_text = 3; + public static final int SearchView_android_textAppearance = 0; + public static final int SearchView_android_focusable = 1; + public static final int SearchView_android_imeOptions = 6; + public static final int SearchView_android_inputType = 5; + public static final int SearchView_android_maxWidth = 2; + public static final int SearchView_animateMenuItems = 7; + public static final int SearchView_animateNavigationIcon = 8; + public static final int SearchView_autoShowKeyboard = 9; + public static final int SearchView_backHandlingEnabled = 10; + public static final int SearchView_backgroundTint = 11; + public static final int SearchView_closeIcon = 12; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 14; + public static final int SearchView_goIcon = 15; + public static final int SearchView_headerLayout = 16; + public static final int SearchView_hideNavigationIcon = 17; + public static final int SearchView_iconifiedByDefault = 18; + public static final int SearchView_layout = 19; + public static final int SearchView_queryBackground = 20; + public static final int SearchView_queryHint = 21; + public static final int SearchView_searchHintIcon = 22; + public static final int SearchView_searchIcon = 23; + public static final int SearchView_searchPrefixText = 24; + public static final int SearchView_submitBackground = 25; + public static final int SearchView_suggestionRowLayout = 26; + public static final int SearchView_useDrawerArrowDrawable = 27; + public static final int SearchView_voiceIcon = 28; + public static final int[] ShapeAppearance = new int[] { 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f }; + public static final int ShapeAppearance_cornerFamily = 0; + public static final int ShapeAppearance_cornerFamilyBottomLeft = 1; + public static final int ShapeAppearance_cornerFamilyBottomRight = 2; + public static final int ShapeAppearance_cornerFamilyTopLeft = 3; + public static final int ShapeAppearance_cornerFamilyTopRight = 4; + public static final int ShapeAppearance_cornerSize = 5; + public static final int ShapeAppearance_cornerSizeBottomLeft = 6; + public static final int ShapeAppearance_cornerSizeBottomRight = 7; + public static final int ShapeAppearance_cornerSizeTopLeft = 8; + public static final int ShapeAppearance_cornerSizeTopRight = 9; + public static final int[] ShapeableImageView = new int[] { 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f0303e2, 0x7f0303ea, 0x7f030431, 0x7f030432 }; + public static final int ShapeableImageView_contentPadding = 0; + public static final int ShapeableImageView_contentPaddingBottom = 1; + public static final int ShapeableImageView_contentPaddingEnd = 2; + public static final int ShapeableImageView_contentPaddingLeft = 3; + public static final int ShapeableImageView_contentPaddingRight = 4; + public static final int ShapeableImageView_contentPaddingStart = 5; + public static final int ShapeableImageView_contentPaddingTop = 6; + public static final int ShapeableImageView_shapeAppearance = 7; + public static final int ShapeableImageView_shapeAppearanceOverlay = 8; + public static final int ShapeableImageView_strokeColor = 9; + public static final int ShapeableImageView_strokeWidth = 10; + public static final int[] SideSheetBehavior_Layout = new int[] { 0x0101011f, 0x01010120, 0x01010440, 0x7f030056, 0x7f03006f, 0x7f030154, 0x7f0303e2, 0x7f0303ea }; + public static final int SideSheetBehavior_Layout_android_elevation = 2; + public static final int SideSheetBehavior_Layout_android_maxHeight = 1; + public static final int SideSheetBehavior_Layout_android_maxWidth = 0; + public static final int SideSheetBehavior_Layout_backgroundTint = 3; + public static final int SideSheetBehavior_Layout_behavior_draggable = 4; + public static final int SideSheetBehavior_Layout_coplanarSiblingViewId = 5; + public static final int SideSheetBehavior_Layout_shapeAppearance = 6; + public static final int SideSheetBehavior_Layout_shapeAppearanceOverlay = 7; + public static final int[] Slider = new int[] { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f03022e, 0x7f03022f, 0x7f030284, 0x7f030285, 0x7f030336, 0x7f0304ad, 0x7f0304ae, 0x7f0304af, 0x7f0304b4, 0x7f0304b5, 0x7f0304b6, 0x7f0304ba, 0x7f0304bb, 0x7f0304bc, 0x7f0304bd, 0x7f0304be, 0x7f0304c2, 0x7f0304c3, 0x7f0304c4, 0x7f0304e5, 0x7f0304e6, 0x7f0304e7, 0x7f0304ec, 0x7f0304ed, 0x7f0304ee }; + public static final int Slider_android_enabled = 0; + public static final int Slider_android_stepSize = 2; + public static final int Slider_android_value = 1; + public static final int Slider_android_valueFrom = 3; + public static final int Slider_android_valueTo = 4; + public static final int Slider_haloColor = 5; + public static final int Slider_haloRadius = 6; + public static final int Slider_labelBehavior = 7; + public static final int Slider_labelStyle = 8; + public static final int Slider_minTouchTargetSize = 9; + public static final int Slider_thumbColor = 10; + public static final int Slider_thumbElevation = 11; + public static final int Slider_thumbHeight = 12; + public static final int Slider_thumbRadius = 13; + public static final int Slider_thumbStrokeColor = 14; + public static final int Slider_thumbStrokeWidth = 15; + public static final int Slider_thumbTrackGapSize = 16; + public static final int Slider_thumbWidth = 17; + public static final int Slider_tickColor = 18; + public static final int Slider_tickColorActive = 19; + public static final int Slider_tickColorInactive = 20; + public static final int Slider_tickRadiusActive = 21; + public static final int Slider_tickRadiusInactive = 22; + public static final int Slider_tickVisible = 23; + public static final int Slider_trackColor = 24; + public static final int Slider_trackColorActive = 25; + public static final int Slider_trackColorInactive = 26; + public static final int Slider_trackHeight = 27; + public static final int Slider_trackInsideCornerSize = 28; + public static final int Slider_trackStopIndicatorSize = 29; + public static final int[] Snackbar = new int[] { 0x7f030404, 0x7f030405, 0x7f030406 }; + public static final int Snackbar_snackbarButtonStyle = 0; + public static final int Snackbar_snackbarStyle = 1; + public static final int Snackbar_snackbarTextViewStyle = 2; + public static final int[] SnackbarLayout = new int[] { 0x0101011f, 0x7f030025, 0x7f03003a, 0x7f030053, 0x7f030056, 0x7f030057, 0x7f0301a9, 0x7f030324, 0x7f0303e2, 0x7f0303ea }; + public static final int SnackbarLayout_actionTextColorAlpha = 1; + public static final int SnackbarLayout_android_maxWidth = 0; + public static final int SnackbarLayout_animationMode = 2; + public static final int SnackbarLayout_backgroundOverlayColorAlpha = 3; + public static final int SnackbarLayout_backgroundTint = 4; + public static final int SnackbarLayout_backgroundTintMode = 5; + public static final int SnackbarLayout_elevation = 6; + public static final int SnackbarLayout_maxActionInlineWidth = 7; + public static final int SnackbarLayout_shapeAppearance = 8; + public static final int SnackbarLayout_shapeAppearanceOverlay = 9; + public static final int[] Spinner = new int[] { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0303aa }; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_popupTheme = 4; + public static final int[] State = new int[] { 0x010100d0, 0x7f030140 }; + public static final int State_android_id = 0; + public static final int State_constraints = 1; + public static final int[] StateListDrawable = new int[] { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_visible = 1; + public static final int[] StateListDrawableItem = new int[] { 0x01010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] StateSet = new int[] { 0x7f030180 }; + public static final int StateSet_defaultState = 0; + public static final int[] SwitchCompat = new int[] { 0x01010124, 0x01010125, 0x01010142, 0x7f0303f6, 0x7f030412, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f0304b7, 0x7f0304b8, 0x7f0304b9, 0x7f0304e4, 0x7f0304f0, 0x7f0304f1 }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] SwitchMaterial = new int[] { 0x7f030500 }; + public static final int SwitchMaterial_useMaterialThemeColors = 0; + public static final int[] TabItem = new int[] { 0x01010002, 0x010100f2, 0x0101014f }; + public static final int TabItem_android_icon = 0; + public static final int TabItem_android_layout = 1; + public static final int TabItem_android_text = 2; + public static final int[] TabLayout = new int[] { 0x7f030447, 0x7f030448, 0x7f030449, 0x7f03044a, 0x7f03044b, 0x7f03044c, 0x7f03044d, 0x7f03044e, 0x7f03044f, 0x7f030450, 0x7f030451, 0x7f030452, 0x7f030453, 0x7f030454, 0x7f030455, 0x7f030456, 0x7f030457, 0x7f030458, 0x7f030459, 0x7f03045a, 0x7f03045b, 0x7f03045c, 0x7f03045e, 0x7f03045f, 0x7f030461, 0x7f030462, 0x7f030463 }; + public static final int TabLayout_tabBackground = 0; + public static final int TabLayout_tabContentStart = 1; + public static final int TabLayout_tabGravity = 2; + public static final int TabLayout_tabIconTint = 3; + public static final int TabLayout_tabIconTintMode = 4; + public static final int TabLayout_tabIndicator = 5; + public static final int TabLayout_tabIndicatorAnimationDuration = 6; + public static final int TabLayout_tabIndicatorAnimationMode = 7; + public static final int TabLayout_tabIndicatorColor = 8; + public static final int TabLayout_tabIndicatorFullWidth = 9; + public static final int TabLayout_tabIndicatorGravity = 10; + public static final int TabLayout_tabIndicatorHeight = 11; + public static final int TabLayout_tabInlineLabel = 12; + public static final int TabLayout_tabMaxWidth = 13; + public static final int TabLayout_tabMinWidth = 14; + public static final int TabLayout_tabMode = 15; + public static final int TabLayout_tabPadding = 16; + public static final int TabLayout_tabPaddingBottom = 17; + public static final int TabLayout_tabPaddingEnd = 18; + public static final int TabLayout_tabPaddingStart = 19; + public static final int TabLayout_tabPaddingTop = 20; + public static final int TabLayout_tabRippleColor = 21; + public static final int TabLayout_tabSelectedTextAppearance = 22; + public static final int TabLayout_tabSelectedTextColor = 23; + public static final int TabLayout_tabTextAppearance = 24; + public static final int TabLayout_tabTextColor = 25; + public static final int TabLayout_tabUnboundedRipple = 26; + public static final int[] TextAppearance = new int[] { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03020e, 0x7f030218, 0x7f03046a, 0x7f0304a1 }; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_textFontWeight = 11; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_fontFamily = 12; + public static final int TextAppearance_fontVariationSettings = 13; + public static final int TextAppearance_textAllCaps = 14; + public static final int TextAppearance_textLocale = 15; + public static final int[] TextInputEditText = new int[] { 0x7f03049c }; + public static final int TextInputEditText_textInputLayoutFocusedRectEnabled = 0; + public static final int[] TextInputLayout = new int[] { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x01010157, 0x0101015a, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030163, 0x7f030164, 0x7f030165, 0x7f030168, 0x7f030169, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301bc, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c3, 0x7f0301c4, 0x7f0301c8, 0x7f030232, 0x7f030233, 0x7f030234, 0x7f030235, 0x7f03023b, 0x7f03023c, 0x7f03023d, 0x7f03023e, 0x7f030390, 0x7f030391, 0x7f030392, 0x7f030393, 0x7f030394, 0x7f03039e, 0x7f03039f, 0x7f0303a0, 0x7f0303ac, 0x7f0303ad, 0x7f0303ae, 0x7f0303e2, 0x7f0303ea, 0x7f03041c, 0x7f03041d, 0x7f03041e, 0x7f03041f, 0x7f030420, 0x7f030421, 0x7f030422, 0x7f03043e, 0x7f03043f, 0x7f030440 }; + public static final int TextInputLayout_android_enabled = 0; + public static final int TextInputLayout_android_hint = 4; + public static final int TextInputLayout_android_maxEms = 5; + public static final int TextInputLayout_android_maxWidth = 2; + public static final int TextInputLayout_android_minEms = 6; + public static final int TextInputLayout_android_minWidth = 3; + public static final int TextInputLayout_android_textColorHint = 1; + public static final int TextInputLayout_boxBackgroundColor = 7; + public static final int TextInputLayout_boxBackgroundMode = 8; + public static final int TextInputLayout_boxCollapsedPaddingTop = 9; + public static final int TextInputLayout_boxCornerRadiusBottomEnd = 10; + public static final int TextInputLayout_boxCornerRadiusBottomStart = 11; + public static final int TextInputLayout_boxCornerRadiusTopEnd = 12; + public static final int TextInputLayout_boxCornerRadiusTopStart = 13; + public static final int TextInputLayout_boxStrokeColor = 14; + public static final int TextInputLayout_boxStrokeErrorColor = 15; + public static final int TextInputLayout_boxStrokeWidth = 16; + public static final int TextInputLayout_boxStrokeWidthFocused = 17; + public static final int TextInputLayout_counterEnabled = 18; + public static final int TextInputLayout_counterMaxLength = 19; + public static final int TextInputLayout_counterOverflowTextAppearance = 20; + public static final int TextInputLayout_counterOverflowTextColor = 21; + public static final int TextInputLayout_counterTextAppearance = 22; + public static final int TextInputLayout_counterTextColor = 23; + public static final int TextInputLayout_cursorColor = 24; + public static final int TextInputLayout_cursorErrorColor = 25; + public static final int TextInputLayout_endIconCheckable = 26; + public static final int TextInputLayout_endIconContentDescription = 27; + public static final int TextInputLayout_endIconDrawable = 28; + public static final int TextInputLayout_endIconMinSize = 29; + public static final int TextInputLayout_endIconMode = 30; + public static final int TextInputLayout_endIconScaleType = 31; + public static final int TextInputLayout_endIconTint = 32; + public static final int TextInputLayout_endIconTintMode = 33; + public static final int TextInputLayout_errorAccessibilityLiveRegion = 34; + public static final int TextInputLayout_errorContentDescription = 35; + public static final int TextInputLayout_errorEnabled = 36; + public static final int TextInputLayout_errorIconDrawable = 37; + public static final int TextInputLayout_errorIconTint = 38; + public static final int TextInputLayout_errorIconTintMode = 39; + public static final int TextInputLayout_errorTextAppearance = 40; + public static final int TextInputLayout_errorTextColor = 41; + public static final int TextInputLayout_expandedHintEnabled = 42; + public static final int TextInputLayout_helperText = 43; + public static final int TextInputLayout_helperTextEnabled = 44; + public static final int TextInputLayout_helperTextTextAppearance = 45; + public static final int TextInputLayout_helperTextTextColor = 46; + public static final int TextInputLayout_hintAnimationEnabled = 47; + public static final int TextInputLayout_hintEnabled = 48; + public static final int TextInputLayout_hintTextAppearance = 49; + public static final int TextInputLayout_hintTextColor = 50; + public static final int TextInputLayout_passwordToggleContentDescription = 51; + public static final int TextInputLayout_passwordToggleDrawable = 52; + public static final int TextInputLayout_passwordToggleEnabled = 53; + public static final int TextInputLayout_passwordToggleTint = 54; + public static final int TextInputLayout_passwordToggleTintMode = 55; + public static final int TextInputLayout_placeholderText = 56; + public static final int TextInputLayout_placeholderTextAppearance = 57; + public static final int TextInputLayout_placeholderTextColor = 58; + public static final int TextInputLayout_prefixText = 59; + public static final int TextInputLayout_prefixTextAppearance = 60; + public static final int TextInputLayout_prefixTextColor = 61; + public static final int TextInputLayout_shapeAppearance = 62; + public static final int TextInputLayout_shapeAppearanceOverlay = 63; + public static final int TextInputLayout_startIconCheckable = 64; + public static final int TextInputLayout_startIconContentDescription = 65; + public static final int TextInputLayout_startIconDrawable = 66; + public static final int TextInputLayout_startIconMinSize = 67; + public static final int TextInputLayout_startIconScaleType = 68; + public static final int TextInputLayout_startIconTint = 69; + public static final int TextInputLayout_startIconTintMode = 70; + public static final int TextInputLayout_suffixText = 71; + public static final int TextInputLayout_suffixTextAppearance = 72; + public static final int TextInputLayout_suffixTextColor = 73; + public static final int[] ThemeEnforcement = new int[] { 0x01010034, 0x7f0301b7, 0x7f0301b8 }; + public static final int ThemeEnforcement_android_textAppearance = 0; + public static final int ThemeEnforcement_enforceMaterialTheme = 1; + public static final int ThemeEnforcement_enforceTextAppearance = 2; + public static final int[] Toolbar = new int[] { 0x010100af, 0x01010140, 0x7f030097, 0x7f0300ef, 0x7f0300f0, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f0302ea, 0x7f0302ec, 0x7f030325, 0x7f03032e, 0x7f03036e, 0x7f03036f, 0x7f0303aa, 0x7f030439, 0x7f03043b, 0x7f03043c, 0x7f0304c8, 0x7f0304cc, 0x7f0304cd, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0, 0x7f0304d1, 0x7f0304d3, 0x7f0304d4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_menu = 14; + public static final int Toolbar_navigationContentDescription = 15; + public static final int Toolbar_navigationIcon = 16; + public static final int Toolbar_popupTheme = 17; + public static final int Toolbar_subtitle = 18; + public static final int Toolbar_subtitleTextAppearance = 19; + public static final int Toolbar_subtitleTextColor = 20; + public static final int Toolbar_title = 21; + public static final int Toolbar_titleMargin = 22; + public static final int Toolbar_titleMarginBottom = 23; + public static final int Toolbar_titleMarginEnd = 24; + public static final int Toolbar_titleMarginStart = 25; + public static final int Toolbar_titleMarginTop = 26; + public static final int Toolbar_titleMargins = 27; + public static final int Toolbar_titleTextAppearance = 28; + public static final int Toolbar_titleTextColor = 29; + public static final int[] Tooltip = new int[] { 0x01010034, 0x01010098, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f030056, 0x7f0303f3 }; + public static final int Tooltip_android_layout_margin = 3; + public static final int Tooltip_android_minHeight = 5; + public static final int Tooltip_android_minWidth = 4; + public static final int Tooltip_android_padding = 2; + public static final int Tooltip_android_text = 6; + public static final int Tooltip_android_textAppearance = 0; + public static final int Tooltip_android_textColor = 1; + public static final int Tooltip_backgroundTint = 7; + public static final int Tooltip_showMarker = 8; + public static final int[] Transform = new int[] { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0304f2 }; + public static final int Transform_android_elevation = 10; + public static final int Transform_android_rotation = 6; + public static final int Transform_android_rotationX = 7; + public static final int Transform_android_rotationY = 8; + public static final int Transform_android_scaleX = 4; + public static final int Transform_android_scaleY = 5; + public static final int Transform_android_transformPivotX = 0; + public static final int Transform_android_transformPivotY = 1; + public static final int Transform_android_translationX = 2; + public static final int Transform_android_translationY = 3; + public static final int Transform_android_translationZ = 9; + public static final int[] Transition = new int[] { 0x010100d0, 0x7f03004b, 0x7f03013c, 0x7f03013d, 0x7f0301a4, 0x7f03028d, 0x7f030363, 0x7f030395, 0x7f03041a, 0x7f0304f3, 0x7f0304f5 }; + public static final int Transition_android_id = 0; + public static final int Transition_autoTransition = 1; + public static final int Transition_constraintSetEnd = 2; + public static final int Transition_constraintSetStart = 3; + public static final int Transition_duration = 4; + public static final int Transition_layoutDuringTransition = 5; + public static final int Transition_motionInterpolator = 6; + public static final int Transition_pathMotionArc = 7; + public static final int Transition_staggered = 8; + public static final int Transition_transitionDisable = 9; + public static final int Transition_transitionFlags = 10; + public static final int[] Variant = new int[] { 0x7f030140, 0x7f0303c4, 0x7f0303c5, 0x7f0303c6, 0x7f0303c7 }; + public static final int Variant_constraints = 0; + public static final int Variant_region_heightLessThan = 1; + public static final int Variant_region_heightMoreThan = 2; + public static final int Variant_region_widthLessThan = 3; + public static final int Variant_region_widthMoreThan = 4; + public static final int[] View = new int[] { 0x01010000, 0x010100da, 0x7f030386, 0x7f030389, 0x7f0304ab }; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = new int[] { 0x010100d4, 0x7f030056, 0x7f030057 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewPager2 = new int[] { 0x010100c4 }; + public static final int ViewPager2_android_orientation = 0; + public static final int[] ViewStubCompat = new int[] { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/snackbar/Snackbar_SnackbarActionClickImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/snackbar/Snackbar_SnackbarActionClickImplementor.java new file mode 100644 index 0000000..c41c94c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/com/google/android/material/snackbar/Snackbar_SnackbarActionClickImplementor.java @@ -0,0 +1,47 @@ +package com.google.android.material.snackbar; + + +public class Snackbar_SnackbarActionClickImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Snackbar.Snackbar+SnackbarActionClickImplementor, Xamarin.Google.Android.Material", Snackbar_SnackbarActionClickImplementor.class, __md_methods); + } + + public Snackbar_SnackbarActionClickImplementor () + { + super (); + if (getClass () == Snackbar_SnackbarActionClickImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Snackbar.Snackbar+SnackbarActionClickImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a1f4d108c17e3f1/ClipboardChangeListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a1f4d108c17e3f1/ClipboardChangeListener.java new file mode 100644 index 0000000..59c77c4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a1f4d108c17e3f1/ClipboardChangeListener.java @@ -0,0 +1,47 @@ +package crc640a1f4d108c17e3f1; + + +public class ClipboardChangeListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.ClipboardManager.OnPrimaryClipChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPrimaryClipChanged:()V:GetOnPrimaryClipChangedHandler:Android.Content.ClipboardManager/IOnPrimaryClipChangedListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.ApplicationModel.DataTransfer.ClipboardChangeListener, Microsoft.Maui.Essentials", ClipboardChangeListener.class, __md_methods); + } + + public ClipboardChangeListener () + { + super (); + if (getClass () == ClipboardChangeListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ApplicationModel.DataTransfer.ClipboardChangeListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onPrimaryClipChanged () + { + n_onPrimaryClipChanged (); + } + + private native void n_onPrimaryClipChanged (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/BatteryBroadcastReceiver.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/BatteryBroadcastReceiver.java new file mode 100644 index 0000000..37fe391 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/BatteryBroadcastReceiver.java @@ -0,0 +1,46 @@ +package crc640a8d9a12ddbf2cf2; + + +public class BatteryBroadcastReceiver + extends android.content.BroadcastReceiver + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceive:(Landroid/content/Context;Landroid/content/Intent;)V:GetOnReceive_Landroid_content_Context_Landroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.BatteryBroadcastReceiver, Microsoft.Maui.Essentials", BatteryBroadcastReceiver.class, __md_methods); + } + + public BatteryBroadcastReceiver () + { + super (); + if (getClass () == BatteryBroadcastReceiver.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.BatteryBroadcastReceiver, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onReceive (android.content.Context p0, android.content.Intent p1) + { + n_onReceive (p0, p1); + } + + private native void n_onReceive (android.content.Context p0, android.content.Intent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/DeviceDisplayImplementation_Listener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/DeviceDisplayImplementation_Listener.java new file mode 100644 index 0000000..0a7d100 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/DeviceDisplayImplementation_Listener.java @@ -0,0 +1,54 @@ +package crc640a8d9a12ddbf2cf2; + + +public class DeviceDisplayImplementation_Listener + extends android.view.OrientationEventListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onOrientationChanged:(I)V:GetOnOrientationChanged_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.DeviceDisplayImplementation+Listener, Microsoft.Maui.Essentials", DeviceDisplayImplementation_Listener.class, __md_methods); + } + + public DeviceDisplayImplementation_Listener (android.content.Context p0, int p1) + { + super (p0, p1); + if (getClass () == DeviceDisplayImplementation_Listener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.DeviceDisplayImplementation+Listener, Microsoft.Maui.Essentials", "Android.Content.Context, Mono.Android:Android.Hardware.SensorDelay, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public DeviceDisplayImplementation_Listener (android.content.Context p0) + { + super (p0); + if (getClass () == DeviceDisplayImplementation_Listener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.DeviceDisplayImplementation+Listener, Microsoft.Maui.Essentials", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onOrientationChanged (int p0) + { + n_onOrientationChanged (p0); + } + + private native void n_onOrientationChanged (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/EnergySaverBroadcastReceiver.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/EnergySaverBroadcastReceiver.java new file mode 100644 index 0000000..0fb3977 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640a8d9a12ddbf2cf2/EnergySaverBroadcastReceiver.java @@ -0,0 +1,46 @@ +package crc640a8d9a12ddbf2cf2; + + +public class EnergySaverBroadcastReceiver + extends android.content.BroadcastReceiver + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceive:(Landroid/content/Context;Landroid/content/Intent;)V:GetOnReceive_Landroid_content_Context_Landroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.EnergySaverBroadcastReceiver, Microsoft.Maui.Essentials", EnergySaverBroadcastReceiver.class, __md_methods); + } + + public EnergySaverBroadcastReceiver () + { + super (); + if (getClass () == EnergySaverBroadcastReceiver.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.EnergySaverBroadcastReceiver, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onReceive (android.content.Context p0, android.content.Intent p1) + { + n_onReceive (p0, p1); + } + + private native void n_onReceive (android.content.Context p0, android.content.Intent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ContainerView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ContainerView.java new file mode 100644 index 0000000..054268d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ContainerView.java @@ -0,0 +1,78 @@ +package crc640ec207abc449b2ca; + + +public class ContainerView + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls", ContainerView.class, __md_methods); + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ContainerView (android.content.Context p0) + { + super (p0); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/CustomFrameLayout.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/CustomFrameLayout.java new file mode 100644 index 0000000..6c6a2a6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/CustomFrameLayout.java @@ -0,0 +1,70 @@ +package crc640ec207abc449b2ca; + + +public class CustomFrameLayout + extends android.widget.FrameLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onApplyWindowInsets:(Landroid/view/WindowInsets;)Landroid/view/WindowInsets;:GetOnApplyWindowInsets_Landroid_view_WindowInsets_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls", CustomFrameLayout.class, __md_methods); + } + + public CustomFrameLayout (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == CustomFrameLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public CustomFrameLayout (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == CustomFrameLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public CustomFrameLayout (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == CustomFrameLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public CustomFrameLayout (android.content.Context p0) + { + super (p0); + if (getClass () == CustomFrameLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.WindowInsets onApplyWindowInsets (android.view.WindowInsets p0) + { + return n_onApplyWindowInsets (p0); + } + + private native android.view.WindowInsets n_onApplyWindowInsets (android.view.WindowInsets p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/RecyclerViewContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/RecyclerViewContainer.java new file mode 100644 index 0000000..75bc129 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/RecyclerViewContainer.java @@ -0,0 +1,54 @@ +package crc640ec207abc449b2ca; + + +public class RecyclerViewContainer + extends androidx.recyclerview.widget.RecyclerView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls", RecyclerViewContainer.class, __md_methods); + } + + public RecyclerViewContainer (android.content.Context p0) + { + super (p0); + if (getClass () == RecyclerViewContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public RecyclerViewContainer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == RecyclerViewContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public RecyclerViewContainer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == RecyclerViewContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ScrollLayoutManager.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ScrollLayoutManager.java new file mode 100644 index 0000000..537bc12 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ScrollLayoutManager.java @@ -0,0 +1,62 @@ +package crc640ec207abc449b2ca; + + +public class ScrollLayoutManager + extends androidx.recyclerview.widget.LinearLayoutManager + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_canScrollVertically:()Z:GetCanScrollVerticallyHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls", ScrollLayoutManager.class, __md_methods); + } + + public ScrollLayoutManager (android.content.Context p0) + { + super (p0); + if (getClass () == ScrollLayoutManager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ScrollLayoutManager (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ScrollLayoutManager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ScrollLayoutManager (android.content.Context p0, int p1, boolean p2) + { + super (p0, p1, p2); + if (getClass () == ScrollLayoutManager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:System.Int32, System.Private.CoreLib:System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public boolean canScrollVertically () + { + return n_canScrollVertically (); + } + + private native boolean n_canScrollVertically (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellContentFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellContentFragment.java new file mode 100644 index 0000000..80163c3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellContentFragment.java @@ -0,0 +1,103 @@ +package crc640ec207abc449b2ca; + + +public class ShellContentFragment + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer, + android.view.animation.Animation.AnimationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onResume:()V:GetOnResumeHandler\n" + + "n_onCreateAnimation:(IZI)Landroid/view/animation/Animation;:GetOnCreateAnimation_IZIHandler\n" + + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + "n_onAnimationEnd:(Landroid/view/animation/Animation;)V:GetOnAnimationEnd_Landroid_view_animation_Animation_Handler:Android.Views.Animations.Animation/IAnimationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onAnimationRepeat:(Landroid/view/animation/Animation;)V:GetOnAnimationRepeat_Landroid_view_animation_Animation_Handler:Android.Views.Animations.Animation/IAnimationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onAnimationStart:(Landroid/view/animation/Animation;)V:GetOnAnimationStart_Landroid_view_animation_Animation_Handler:Android.Views.Animations.Animation/IAnimationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment, Microsoft.Maui.Controls", ShellContentFragment.class, __md_methods); + } + + public ShellContentFragment () + { + super (); + if (getClass () == ShellContentFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellContentFragment (int p0) + { + super (p0); + if (getClass () == ShellContentFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onResume () + { + n_onResume (); + } + + private native void n_onResume (); + + public android.view.animation.Animation onCreateAnimation (int p0, boolean p1, int p2) + { + return n_onCreateAnimation (p0, p1, p2); + } + + private native android.view.animation.Animation n_onCreateAnimation (int p0, boolean p1, int p2); + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public void onAnimationEnd (android.view.animation.Animation p0) + { + n_onAnimationEnd (p0); + } + + private native void n_onAnimationEnd (android.view.animation.Animation p0); + + public void onAnimationRepeat (android.view.animation.Animation p0) + { + n_onAnimationRepeat (p0); + } + + private native void n_onAnimationRepeat (android.view.animation.Animation p0); + + public void onAnimationStart (android.view.animation.Animation p0) + { + n_onAnimationStart (p0); + } + + private native void n_onAnimationStart (android.view.animation.Animation p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutLayout.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutLayout.java new file mode 100644 index 0000000..f7d77a6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutLayout.java @@ -0,0 +1,62 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutLayout + extends androidx.coordinatorlayout.widget.CoordinatorLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls", ShellFlyoutLayout.class, __md_methods); + } + + public ShellFlyoutLayout (android.content.Context p0) + { + super (p0); + if (getClass () == ShellFlyoutLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ShellFlyoutLayout (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellFlyoutLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellFlyoutLayout (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellFlyoutLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter.java new file mode 100644 index 0000000..ae73575 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter.java @@ -0,0 +1,78 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutRecyclerAdapter + extends androidx.recyclerview.widget.RecyclerView.Adapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_onViewRecycled:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter, Microsoft.Maui.Controls", ShellFlyoutRecyclerAdapter.class, __md_methods); + } + + public ShellFlyoutRecyclerAdapter () + { + super (); + if (getClass () == ShellFlyoutRecyclerAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public void onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + public androidx.recyclerview.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native androidx.recyclerview.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ElementViewHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ElementViewHolder.java new file mode 100644 index 0000000..991a87b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ElementViewHolder.java @@ -0,0 +1,38 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutRecyclerAdapter_ElementViewHolder + extends androidx.recyclerview.widget.RecyclerView.ViewHolder + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ElementViewHolder, Microsoft.Maui.Controls", ShellFlyoutRecyclerAdapter_ElementViewHolder.class, __md_methods); + } + + public ShellFlyoutRecyclerAdapter_ElementViewHolder (android.view.View p0) + { + super (p0); + if (getClass () == ShellFlyoutRecyclerAdapter_ElementViewHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ElementViewHolder, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ShellLinearLayout.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ShellLinearLayout.java new file mode 100644 index 0000000..ed1908d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ShellLinearLayout.java @@ -0,0 +1,62 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutRecyclerAdapter_ShellLinearLayout + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls", ShellFlyoutRecyclerAdapter_ShellLinearLayout.class, __md_methods); + } + + public ShellFlyoutRecyclerAdapter_ShellLinearLayout (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ShellFlyoutRecyclerAdapter_ShellLinearLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ShellFlyoutRecyclerAdapter_ShellLinearLayout (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellFlyoutRecyclerAdapter_ShellLinearLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ShellFlyoutRecyclerAdapter_ShellLinearLayout (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellFlyoutRecyclerAdapter_ShellLinearLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellFlyoutRecyclerAdapter_ShellLinearLayout (android.content.Context p0) + { + super (p0); + if (getClass () == ShellFlyoutRecyclerAdapter_ShellLinearLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRenderer.java new file mode 100644 index 0000000..29dcc3d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutRenderer.java @@ -0,0 +1,70 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutRenderer + extends androidx.drawerlayout.widget.DrawerLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_drawChild:(Landroid/graphics/Canvas;Landroid/view/View;J)Z:GetDrawChild_Landroid_graphics_Canvas_Landroid_view_View_JHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls", ShellFlyoutRenderer.class, __md_methods); + } + + public ShellFlyoutRenderer (android.content.Context p0) + { + super (p0); + if (getClass () == ShellFlyoutRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ShellFlyoutRenderer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellFlyoutRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellFlyoutRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellFlyoutRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean drawChild (android.graphics.Canvas p0, android.view.View p1, long p2) + { + return n_drawChild (p0, p1, p2); + } + + private native boolean n_drawChild (android.graphics.Canvas p0, android.view.View p1, long p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer.java new file mode 100644 index 0000000..bdaf19b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer.java @@ -0,0 +1,47 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutTemplatedContentRenderer + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.appbar.AppBarLayout.OnOffsetChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onOffsetChanged:(Lcom/google/android/material/appbar/AppBarLayout;I)V:GetOnOffsetChanged_Lcom_google_android_material_appbar_AppBarLayout_IHandler:Google.Android.Material.AppBar.AppBarLayout/IOnOffsetChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer, Microsoft.Maui.Controls", ShellFlyoutTemplatedContentRenderer.class, __md_methods); + } + + public ShellFlyoutTemplatedContentRenderer () + { + super (); + if (getClass () == ShellFlyoutTemplatedContentRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onOffsetChanged (com.google.android.material.appbar.AppBarLayout p0, int p1) + { + n_onOffsetChanged (p0, p1); + } + + private native void n_onOffsetChanged (com.google.android.material.appbar.AppBarLayout p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer_HeaderContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer_HeaderContainer.java new file mode 100644 index 0000000..c9421ca --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer_HeaderContainer.java @@ -0,0 +1,78 @@ +package crc640ec207abc449b2ca; + + +public class ShellFlyoutTemplatedContentRenderer_HeaderContainer + extends crc640ec207abc449b2ca.ContainerView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls", ShellFlyoutTemplatedContentRenderer_HeaderContainer.class, __md_methods); + } + + public ShellFlyoutTemplatedContentRenderer_HeaderContainer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ShellFlyoutTemplatedContentRenderer_HeaderContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ShellFlyoutTemplatedContentRenderer_HeaderContainer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellFlyoutTemplatedContentRenderer_HeaderContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ShellFlyoutTemplatedContentRenderer_HeaderContainer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellFlyoutTemplatedContentRenderer_HeaderContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellFlyoutTemplatedContentRenderer_HeaderContainer (android.content.Context p0) + { + super (p0); + if (getClass () == ShellFlyoutTemplatedContentRenderer_HeaderContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentContainer.java new file mode 100644 index 0000000..0ff01d2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentContainer.java @@ -0,0 +1,70 @@ +package crc640ec207abc449b2ca; + + +public class ShellFragmentContainer + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroyView:()V:GetOnDestroyViewHandler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer, Microsoft.Maui.Controls", ShellFragmentContainer.class, __md_methods); + } + + public ShellFragmentContainer () + { + super (); + if (getClass () == ShellFragmentContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellFragmentContainer (int p0) + { + super (p0); + if (getClass () == ShellFragmentContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroyView () + { + n_onDestroyView (); + } + + private native void n_onDestroyView (); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentStateAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentStateAdapter.java new file mode 100644 index 0000000..0ee8962 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellFragmentStateAdapter.java @@ -0,0 +1,86 @@ +package crc640ec207abc449b2ca; + + +public class ShellFragmentStateAdapter + extends androidx.viewpager2.adapter.FragmentStateAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_createFragment:(I)Landroidx/fragment/app/Fragment;:GetCreateFragment_IHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + "n_containsItem:(J)Z:GetContainsItem_JHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls", ShellFragmentStateAdapter.class, __md_methods); + } + + public ShellFragmentStateAdapter (androidx.fragment.app.Fragment p0) + { + super (p0); + if (getClass () == ShellFragmentStateAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls", "AndroidX.Fragment.App.Fragment, Xamarin.AndroidX.Fragment", this, new java.lang.Object[] { p0 }); + } + } + + public ShellFragmentStateAdapter (androidx.fragment.app.FragmentActivity p0) + { + super (p0); + if (getClass () == ShellFragmentStateAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls", "AndroidX.Fragment.App.FragmentActivity, Xamarin.AndroidX.Fragment", this, new java.lang.Object[] { p0 }); + } + } + + public ShellFragmentStateAdapter (androidx.fragment.app.FragmentManager p0, androidx.lifecycle.Lifecycle p1) + { + super (p0, p1); + if (getClass () == ShellFragmentStateAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls", "AndroidX.Fragment.App.FragmentManager, Xamarin.AndroidX.Fragment:AndroidX.Lifecycle.Lifecycle, Xamarin.AndroidX.Lifecycle.Common.Jvm", this, new java.lang.Object[] { p0, p1 }); + } + } + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public androidx.fragment.app.Fragment createFragment (int p0) + { + return n_createFragment (p0); + } + + private native androidx.fragment.app.Fragment n_createFragment (int p0); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + public boolean containsItem (long p0) + { + return n_containsItem (p0); + } + + private native boolean n_containsItem (long p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRenderer.java new file mode 100644 index 0000000..5fe72aa --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRenderer.java @@ -0,0 +1,71 @@ +package crc640ec207abc449b2ca; + + +public class ShellItemRenderer + extends crc640ec207abc449b2ca.ShellItemRendererBase + implements + mono.android.IGCUserPeer, + com.google.android.material.navigation.NavigationBarView.OnItemSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + "n_onNavigationItemSelected:(Landroid/view/MenuItem;)Z:GetOnNavigationItemSelected_Landroid_view_MenuItem_Handler:Google.Android.Material.Navigation.NavigationBarView/IOnItemSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer, Microsoft.Maui.Controls", ShellItemRenderer.class, __md_methods); + } + + public ShellItemRenderer () + { + super (); + if (getClass () == ShellItemRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellItemRenderer (int p0) + { + super (p0); + if (getClass () == ShellItemRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public boolean onNavigationItemSelected (android.view.MenuItem p0) + { + return n_onNavigationItemSelected (p0); + } + + private native boolean n_onNavigationItemSelected (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRendererBase.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRendererBase.java new file mode 100644 index 0000000..aabdc1f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellItemRendererBase.java @@ -0,0 +1,54 @@ +package crc640ec207abc449b2ca; + + +public abstract class ShellItemRendererBase + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDestroy:()V:GetOnDestroyHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase, Microsoft.Maui.Controls", ShellItemRendererBase.class, __md_methods); + } + + public ShellItemRendererBase () + { + super (); + if (getClass () == ShellItemRendererBase.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellItemRendererBase (int p0) + { + super (p0); + if (getClass () == ShellItemRendererBase.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellPageContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellPageContainer.java new file mode 100644 index 0000000..cbb690f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellPageContainer.java @@ -0,0 +1,78 @@ +package crc640ec207abc449b2ca; + + +public class ShellPageContainer + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls", ShellPageContainer.class, __md_methods); + } + + public ShellPageContainer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ShellPageContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ShellPageContainer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellPageContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ShellPageContainer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellPageContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellPageContainer (android.content.Context p0) + { + super (p0); + if (getClass () == ShellPageContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView.java new file mode 100644 index 0000000..e2c4100 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView.java @@ -0,0 +1,121 @@ +package crc640ec207abc449b2ca; + + +public class ShellSearchView + extends android.widget.FrameLayout + implements + mono.android.IGCUserPeer, + android.widget.TextView.OnEditorActionListener, + android.text.TextWatcher, + android.text.NoCopySpan +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedToWindow:()V:GetOnAttachedToWindowHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onEditorAction:(Landroid/widget/TextView;ILandroid/view/KeyEvent;)Z:GetOnEditorAction_Landroid_widget_TextView_ILandroid_view_KeyEvent_Handler:Android.Widget.TextView/IOnEditorActionListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_afterTextChanged:(Landroid/text/Editable;)V:GetAfterTextChanged_Landroid_text_Editable_Handler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_beforeTextChanged:(Ljava/lang/CharSequence;III)V:GetBeforeTextChanged_Ljava_lang_CharSequence_IIIHandler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onTextChanged:(Ljava/lang/CharSequence;III)V:GetOnTextChanged_Ljava_lang_CharSequence_IIIHandler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls", ShellSearchView.class, __md_methods); + } + + public ShellSearchView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ShellSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ShellSearchView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ShellSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ShellSearchView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ShellSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ShellSearchView (android.content.Context p0) + { + super (p0); + if (getClass () == ShellSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onAttachedToWindow () + { + n_onAttachedToWindow (); + } + + private native void n_onAttachedToWindow (); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public boolean onEditorAction (android.widget.TextView p0, int p1, android.view.KeyEvent p2) + { + return n_onEditorAction (p0, p1, p2); + } + + private native boolean n_onEditorAction (android.widget.TextView p0, int p1, android.view.KeyEvent p2); + + public void afterTextChanged (android.text.Editable p0) + { + n_afterTextChanged (p0); + } + + private native void n_afterTextChanged (android.text.Editable p0); + + public void beforeTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3) + { + n_beforeTextChanged (p0, p1, p2, p3); + } + + private native void n_beforeTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3); + + public void onTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3) + { + n_onTextChanged (p0, p1, p2, p3); + } + + private native void n_onTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter.java new file mode 100644 index 0000000..712d9c1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter.java @@ -0,0 +1,79 @@ +package crc640ec207abc449b2ca; + + +public class ShellSearchViewAdapter + extends android.widget.BaseAdapter + implements + mono.android.IGCUserPeer, + android.widget.Filterable +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getCount:()I:GetGetCountHandler\n" + + "n_getItem:(I)Ljava/lang/Object;:GetGetItem_IHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + "n_getView:(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;:GetGetView_ILandroid_view_View_Landroid_view_ViewGroup_Handler\n" + + "n_getFilter:()Landroid/widget/Filter;:GetGetFilterHandler:Android.Widget.IFilterableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter, Microsoft.Maui.Controls", ShellSearchViewAdapter.class, __md_methods); + } + + public ShellSearchViewAdapter () + { + super (); + if (getClass () == ShellSearchViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getCount () + { + return n_getCount (); + } + + private native int n_getCount (); + + public java.lang.Object getItem (int p0) + { + return n_getItem (p0); + } + + private native java.lang.Object n_getItem (int p0); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + public android.view.View getView (int p0, android.view.View p1, android.view.ViewGroup p2) + { + return n_getView (p0, p1, p2); + } + + private native android.view.View n_getView (int p0, android.view.View p1, android.view.ViewGroup p2); + + public android.widget.Filter getFilter () + { + return n_getFilter (); + } + + private native android.widget.Filter n_getFilter (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_CustomFilter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_CustomFilter.java new file mode 100644 index 0000000..7ca07d9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_CustomFilter.java @@ -0,0 +1,62 @@ +package crc640ec207abc449b2ca; + + +public class ShellSearchViewAdapter_CustomFilter + extends android.widget.Filter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_performFiltering:(Ljava/lang/CharSequence;)Landroid/widget/Filter$FilterResults;:GetPerformFiltering_Ljava_lang_CharSequence_Handler\n" + + "n_publishResults:(Ljava/lang/CharSequence;Landroid/widget/Filter$FilterResults;)V:GetPublishResults_Ljava_lang_CharSequence_Landroid_widget_Filter_FilterResults_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+CustomFilter, Microsoft.Maui.Controls", ShellSearchViewAdapter_CustomFilter.class, __md_methods); + } + + public ShellSearchViewAdapter_CustomFilter () + { + super (); + if (getClass () == ShellSearchViewAdapter_CustomFilter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+CustomFilter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellSearchViewAdapter_CustomFilter (android.widget.BaseAdapter p0) + { + super (); + if (getClass () == ShellSearchViewAdapter_CustomFilter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+CustomFilter, Microsoft.Maui.Controls", "Android.Widget.BaseAdapter, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public android.widget.Filter.FilterResults performFiltering (java.lang.CharSequence p0) + { + return n_performFiltering (p0); + } + + private native android.widget.Filter.FilterResults n_performFiltering (java.lang.CharSequence p0); + + public void publishResults (java.lang.CharSequence p0, android.widget.Filter.FilterResults p1) + { + n_publishResults (p0, p1); + } + + private native void n_publishResults (java.lang.CharSequence p0, android.widget.Filter.FilterResults p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_ObjectWrapper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_ObjectWrapper.java new file mode 100644 index 0000000..9c81d48 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchViewAdapter_ObjectWrapper.java @@ -0,0 +1,46 @@ +package crc640ec207abc449b2ca; + + +public class ShellSearchViewAdapter_ObjectWrapper + extends java.lang.Object + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_toString:()Ljava/lang/String;:GetToStringHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+ObjectWrapper, Microsoft.Maui.Controls", ShellSearchViewAdapter_ObjectWrapper.class, __md_methods); + } + + public ShellSearchViewAdapter_ObjectWrapper () + { + super (); + if (getClass () == ShellSearchViewAdapter_ObjectWrapper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+ObjectWrapper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public java.lang.String toString () + { + return n_toString (); + } + + private native java.lang.String n_toString (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView_ClipDrawableWrapper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView_ClipDrawableWrapper.java new file mode 100644 index 0000000..54bb982 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSearchView_ClipDrawableWrapper.java @@ -0,0 +1,46 @@ +package crc640ec207abc449b2ca; + + +public class ShellSearchView_ClipDrawableWrapper + extends androidx.appcompat.graphics.drawable.DrawableWrapperCompat + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView+ClipDrawableWrapper, Microsoft.Maui.Controls", ShellSearchView_ClipDrawableWrapper.class, __md_methods); + } + + public ShellSearchView_ClipDrawableWrapper (android.graphics.drawable.Drawable p0) + { + super (p0); + if (getClass () == ShellSearchView_ClipDrawableWrapper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView+ClipDrawableWrapper, Microsoft.Maui.Controls", "Android.Graphics.Drawables.Drawable, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer.java new file mode 100644 index 0000000..0cc0464 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer.java @@ -0,0 +1,80 @@ +package crc640ec207abc449b2ca; + + +public class ShellSectionRenderer + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener, + com.google.android.material.tabs.TabLayoutMediator.TabConfigurationStrategy +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onConfigureTab:(Lcom/google/android/material/tabs/TabLayout$Tab;I)V:GetOnConfigureTab_Lcom_google_android_material_tabs_TabLayout_Tab_IHandler:Google.Android.Material.Tabs.TabLayoutMediator/ITabConfigurationStrategyInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls", ShellSectionRenderer.class, __md_methods); + } + + public ShellSectionRenderer () + { + super (); + if (getClass () == ShellSectionRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellSectionRenderer (int p0) + { + super (p0); + if (getClass () == ShellSectionRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + public void onConfigureTab (com.google.android.material.tabs.TabLayout.Tab p0, int p1) + { + n_onConfigureTab (p0, p1); + } + + private native void n_onConfigureTab (com.google.android.material.tabs.TabLayout.Tab p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer_ViewPagerPageChanged.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer_ViewPagerPageChanged.java new file mode 100644 index 0000000..7714805 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellSectionRenderer_ViewPagerPageChanged.java @@ -0,0 +1,54 @@ +package crc640ec207abc449b2ca; + + +public class ShellSectionRenderer_ViewPagerPageChanged + extends androidx.viewpager2.widget.ViewPager2.OnPageChangeCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPageSelected:(I)V:GetOnPageSelected_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer+ViewPagerPageChanged, Microsoft.Maui.Controls", ShellSectionRenderer_ViewPagerPageChanged.class, __md_methods); + } + + public ShellSectionRenderer_ViewPagerPageChanged () + { + super (); + if (getClass () == ShellSectionRenderer_ViewPagerPageChanged.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer+ViewPagerPageChanged, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ShellSectionRenderer_ViewPagerPageChanged (crc640ec207abc449b2ca.ShellSectionRenderer p0) + { + super (); + if (getClass () == ShellSectionRenderer_ViewPagerPageChanged.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer+ViewPagerPageChanged, Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls", this, new java.lang.Object[] { p0 }); + } + } + + public void onPageSelected (int p0) + { + n_onPageSelected (p0); + } + + private native void n_onPageSelected (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker.java new file mode 100644 index 0000000..430f419 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker.java @@ -0,0 +1,47 @@ +package crc640ec207abc449b2ca; + + +public class ShellToolbarTracker + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker, Microsoft.Maui.Controls", ShellToolbarTracker.class, __md_methods); + } + + public ShellToolbarTracker () + { + super (); + if (getClass () == ShellToolbarTracker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker_FlyoutIconDrawerDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker_FlyoutIconDrawerDrawable.java new file mode 100644 index 0000000..369638f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc640ec207abc449b2ca/ShellToolbarTracker_FlyoutIconDrawerDrawable.java @@ -0,0 +1,46 @@ +package crc640ec207abc449b2ca; + + +public class ShellToolbarTracker_FlyoutIconDrawerDrawable + extends androidx.appcompat.graphics.drawable.DrawerArrowDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker+FlyoutIconDrawerDrawable, Microsoft.Maui.Controls", ShellToolbarTracker_FlyoutIconDrawerDrawable.class, __md_methods); + } + + public ShellToolbarTracker_FlyoutIconDrawerDrawable (android.content.Context p0) + { + super (p0); + if (getClass () == ShellToolbarTracker_FlyoutIconDrawerDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker+FlyoutIconDrawerDrawable, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ColorChangeRevealDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ColorChangeRevealDrawable.java new file mode 100644 index 0000000..b7b4e4c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ColorChangeRevealDrawable.java @@ -0,0 +1,46 @@ +package crc64338477404e88479c; + + +public class ColorChangeRevealDrawable + extends android.graphics.drawable.AnimationDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable, Microsoft.Maui.Controls", ColorChangeRevealDrawable.class, __md_methods); + } + + public ColorChangeRevealDrawable () + { + super (); + if (getClass () == ColorChangeRevealDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ControlsAccessibilityDelegate.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ControlsAccessibilityDelegate.java new file mode 100644 index 0000000..ba17749 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ControlsAccessibilityDelegate.java @@ -0,0 +1,62 @@ +package crc64338477404e88479c; + + +public class ControlsAccessibilityDelegate + extends crc6452ffdc5b34af3a0f.AccessibilityDelegateCompatWrapper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInitializeAccessibilityNodeInfo:(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V:GetOnInitializeAccessibilityNodeInfo_Landroid_view_View_Landroidx_core_view_accessibility_AccessibilityNodeInfoCompat_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls", ControlsAccessibilityDelegate.class, __md_methods); + } + + public ControlsAccessibilityDelegate () + { + super (); + if (getClass () == ControlsAccessibilityDelegate.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ControlsAccessibilityDelegate (android.view.View.AccessibilityDelegate p0) + { + super (p0); + if (getClass () == ControlsAccessibilityDelegate.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls", "Android.Views.View+AccessibilityDelegate, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ControlsAccessibilityDelegate (androidx.core.view.AccessibilityDelegateCompat p0) + { + super (); + if (getClass () == ControlsAccessibilityDelegate.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls", "AndroidX.Core.View.AccessibilityDelegateCompat, Xamarin.AndroidX.Core", this, new java.lang.Object[] { p0 }); + } + } + + public void onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1) + { + n_onInitializeAccessibilityNodeInfo (p0, p1); + } + + private native void n_onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler.java new file mode 100644 index 0000000..d04741e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler.java @@ -0,0 +1,47 @@ +package crc64338477404e88479c; + + +public class DragAndDropGestureHandler + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnDragListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDrag:(Landroid/view/View;Landroid/view/DragEvent;)Z:GetOnDrag_Landroid_view_View_Landroid_view_DragEvent_Handler:Android.Views.View/IOnDragListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler, Microsoft.Maui.Controls", DragAndDropGestureHandler.class, __md_methods); + } + + public DragAndDropGestureHandler () + { + super (); + if (getClass () == DragAndDropGestureHandler.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onDrag (android.view.View p0, android.view.DragEvent p1) + { + return n_onDrag (p0, p1); + } + + private native boolean n_onDrag (android.view.View p0, android.view.DragEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler_CustomLocalStateData.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler_CustomLocalStateData.java new file mode 100644 index 0000000..9c4b399 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/DragAndDropGestureHandler_CustomLocalStateData.java @@ -0,0 +1,38 @@ +package crc64338477404e88479c; + + +public class DragAndDropGestureHandler_CustomLocalStateData + extends java.lang.Object + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler+CustomLocalStateData, Microsoft.Maui.Controls", DragAndDropGestureHandler_CustomLocalStateData.class, __md_methods); + } + + public DragAndDropGestureHandler_CustomLocalStateData () + { + super (); + if (getClass () == DragAndDropGestureHandler_CustomLocalStateData.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler+CustomLocalStateData, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/FragmentContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/FragmentContainer.java new file mode 100644 index 0000000..5e2bd25 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/FragmentContainer.java @@ -0,0 +1,70 @@ +package crc64338477404e88479c; + + +public class FragmentContainer + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + "n_onResume:()V:GetOnResumeHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.FragmentContainer, Microsoft.Maui.Controls", FragmentContainer.class, __md_methods); + } + + public FragmentContainer () + { + super (); + if (getClass () == FragmentContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.FragmentContainer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public FragmentContainer (int p0) + { + super (p0); + if (getClass () == FragmentContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.FragmentContainer, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public void onResume () + { + n_onResume (); + } + + private native void n_onResume (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericAnimatorListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericAnimatorListener.java new file mode 100644 index 0000000..5187af9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericAnimatorListener.java @@ -0,0 +1,70 @@ +package crc64338477404e88479c; + + +public class GenericAnimatorListener + extends android.animation.AnimatorListenerAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationCancel:(Landroid/animation/Animator;)V:GetOnAnimationCancel_Landroid_animation_Animator_Handler\n" + + "n_onAnimationEnd:(Landroid/animation/Animator;)V:GetOnAnimationEnd_Landroid_animation_Animator_Handler\n" + + "n_onAnimationRepeat:(Landroid/animation/Animator;)V:GetOnAnimationRepeat_Landroid_animation_Animator_Handler\n" + + "n_finalize:()V:GetJavaFinalizeHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.GenericAnimatorListener, Microsoft.Maui.Controls", GenericAnimatorListener.class, __md_methods); + } + + public GenericAnimatorListener () + { + super (); + if (getClass () == GenericAnimatorListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.GenericAnimatorListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationCancel (android.animation.Animator p0) + { + n_onAnimationCancel (p0); + } + + private native void n_onAnimationCancel (android.animation.Animator p0); + + public void onAnimationEnd (android.animation.Animator p0) + { + n_onAnimationEnd (p0); + } + + private native void n_onAnimationEnd (android.animation.Animator p0); + + public void onAnimationRepeat (android.animation.Animator p0) + { + n_onAnimationRepeat (p0); + } + + private native void n_onAnimationRepeat (android.animation.Animator p0); + + public void finalize () + { + n_finalize (); + } + + private native void n_finalize (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericGlobalLayoutListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericGlobalLayoutListener.java new file mode 100644 index 0000000..c358679 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericGlobalLayoutListener.java @@ -0,0 +1,47 @@ +package crc64338477404e88479c; + + +public class GenericGlobalLayoutListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.ViewTreeObserver.OnGlobalLayoutListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onGlobalLayout:()V:GetOnGlobalLayoutHandler:Android.Views.ViewTreeObserver/IOnGlobalLayoutListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.GenericGlobalLayoutListener, Microsoft.Maui.Controls", GenericGlobalLayoutListener.class, __md_methods); + } + + public GenericGlobalLayoutListener () + { + super (); + if (getClass () == GenericGlobalLayoutListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.GenericGlobalLayoutListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onGlobalLayout () + { + n_onGlobalLayout (); + } + + private native void n_onGlobalLayout (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericMenuClickListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericMenuClickListener.java new file mode 100644 index 0000000..d2f1f5d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GenericMenuClickListener.java @@ -0,0 +1,47 @@ +package crc64338477404e88479c; + + +public class GenericMenuClickListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.MenuItem.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:Android.Views.IMenuItemOnMenuItemClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.GenericMenuClickListener, Microsoft.Maui.Controls", GenericMenuClickListener.class, __md_methods); + } + + public GenericMenuClickListener () + { + super (); + if (getClass () == GenericMenuClickListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.GenericMenuClickListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GradientStrokeDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GradientStrokeDrawable.java new file mode 100644 index 0000000..7e67e7d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/GradientStrokeDrawable.java @@ -0,0 +1,54 @@ +package crc64338477404e88479c; + + +public class GradientStrokeDrawable + extends android.graphics.drawable.PaintDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDraw:(Landroid/graphics/drawable/shapes/Shape;Landroid/graphics/Canvas;Landroid/graphics/Paint;)V:GetOnDraw_Landroid_graphics_drawable_shapes_Shape_Landroid_graphics_Canvas_Landroid_graphics_Paint_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.GradientStrokeDrawable, Microsoft.Maui.Controls", GradientStrokeDrawable.class, __md_methods); + } + + public GradientStrokeDrawable () + { + super (); + if (getClass () == GradientStrokeDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.GradientStrokeDrawable, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public GradientStrokeDrawable (int p0) + { + super (p0); + if (getClass () == GradientStrokeDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.GradientStrokeDrawable, Microsoft.Maui.Controls", "Android.Graphics.Color, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2) + { + n_onDraw (p0, p1, p2); + } + + private native void n_onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerGestureListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerGestureListener.java new file mode 100644 index 0000000..b271432 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerGestureListener.java @@ -0,0 +1,112 @@ +package crc64338477404e88479c; + + +public class InnerGestureListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.GestureDetector.OnGestureListener, + android.view.GestureDetector.OnDoubleTapListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDown:(Landroid/view/MotionEvent;)Z:GetOnDown_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFling:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onLongPress:(Landroid/view/MotionEvent;)V:GetOnLongPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnScroll_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onShowPress:(Landroid/view/MotionEvent;)V:GetOnShowPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSingleTapUp:(Landroid/view/MotionEvent;)Z:GetOnSingleTapUp_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onDoubleTap:(Landroid/view/MotionEvent;)Z:GetOnDoubleTap_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnDoubleTapListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onDoubleTapEvent:(Landroid/view/MotionEvent;)Z:GetOnDoubleTapEvent_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnDoubleTapListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSingleTapConfirmed:(Landroid/view/MotionEvent;)Z:GetOnSingleTapConfirmed_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnDoubleTapListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.InnerGestureListener, Microsoft.Maui.Controls", InnerGestureListener.class, __md_methods); + } + + public InnerGestureListener () + { + super (); + if (getClass () == InnerGestureListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.InnerGestureListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onDown (android.view.MotionEvent p0) + { + return n_onDown (p0); + } + + private native boolean n_onDown (android.view.MotionEvent p0); + + public boolean onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onFling (p0, p1, p2, p3); + } + + private native boolean n_onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onLongPress (android.view.MotionEvent p0) + { + n_onLongPress (p0); + } + + private native void n_onLongPress (android.view.MotionEvent p0); + + public boolean onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onScroll (p0, p1, p2, p3); + } + + private native boolean n_onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onShowPress (android.view.MotionEvent p0) + { + n_onShowPress (p0); + } + + private native void n_onShowPress (android.view.MotionEvent p0); + + public boolean onSingleTapUp (android.view.MotionEvent p0) + { + return n_onSingleTapUp (p0); + } + + private native boolean n_onSingleTapUp (android.view.MotionEvent p0); + + public boolean onDoubleTap (android.view.MotionEvent p0) + { + return n_onDoubleTap (p0); + } + + private native boolean n_onDoubleTap (android.view.MotionEvent p0); + + public boolean onDoubleTapEvent (android.view.MotionEvent p0) + { + return n_onDoubleTapEvent (p0); + } + + private native boolean n_onDoubleTapEvent (android.view.MotionEvent p0); + + public boolean onSingleTapConfirmed (android.view.MotionEvent p0) + { + return n_onSingleTapConfirmed (p0); + } + + private native boolean n_onSingleTapConfirmed (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerScaleListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerScaleListener.java new file mode 100644 index 0000000..1dd9a18 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/InnerScaleListener.java @@ -0,0 +1,62 @@ +package crc64338477404e88479c; + + +public class InnerScaleListener + extends android.view.ScaleGestureDetector.SimpleOnScaleGestureListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScale:(Landroid/view/ScaleGestureDetector;)Z:GetOnScale_Landroid_view_ScaleGestureDetector_Handler\n" + + "n_onScaleBegin:(Landroid/view/ScaleGestureDetector;)Z:GetOnScaleBegin_Landroid_view_ScaleGestureDetector_Handler\n" + + "n_onScaleEnd:(Landroid/view/ScaleGestureDetector;)V:GetOnScaleEnd_Landroid_view_ScaleGestureDetector_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.InnerScaleListener, Microsoft.Maui.Controls", InnerScaleListener.class, __md_methods); + } + + public InnerScaleListener () + { + super (); + if (getClass () == InnerScaleListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.InnerScaleListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onScale (android.view.ScaleGestureDetector p0) + { + return n_onScale (p0); + } + + private native boolean n_onScale (android.view.ScaleGestureDetector p0); + + public boolean onScaleBegin (android.view.ScaleGestureDetector p0) + { + return n_onScaleBegin (p0); + } + + private native boolean n_onScaleBegin (android.view.ScaleGestureDetector p0); + + public void onScaleEnd (android.view.ScaleGestureDetector p0) + { + n_onScaleEnd (p0); + } + + private native void n_onScaleEnd (android.view.ScaleGestureDetector p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MauiViewPager.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MauiViewPager.java new file mode 100644 index 0000000..5dfb1f9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MauiViewPager.java @@ -0,0 +1,62 @@ +package crc64338477404e88479c; + + +public class MauiViewPager + extends androidx.viewpager.widget.ViewPager + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.MauiViewPager, Microsoft.Maui.Controls", MauiViewPager.class, __md_methods); + } + + public MauiViewPager (android.content.Context p0) + { + super (p0); + if (getClass () == MauiViewPager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.MauiViewPager, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiViewPager (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiViewPager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.MauiViewPager, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment.java new file mode 100644 index 0000000..d87332b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment.java @@ -0,0 +1,94 @@ +package crc64338477404e88479c; + + +public class ModalNavigationManager_ModalFragment + extends androidx.fragment.app.DialogFragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateDialog:(Landroid/os/Bundle;)Landroid/app/Dialog;:GetOnCreateDialog_Landroid_os_Bundle_Handler\n" + + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onStart:()V:GetOnStartHandler\n" + + "n_onDismiss:(Landroid/content/DialogInterface;)V:GetOnDismiss_Landroid_content_DialogInterface_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment, Microsoft.Maui.Controls", ModalNavigationManager_ModalFragment.class, __md_methods); + } + + public ModalNavigationManager_ModalFragment () + { + super (); + if (getClass () == ModalNavigationManager_ModalFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ModalNavigationManager_ModalFragment (int p0) + { + super (p0); + if (getClass () == ModalNavigationManager_ModalFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment, Microsoft.Maui.Controls", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.app.Dialog onCreateDialog (android.os.Bundle p0) + { + return n_onCreateDialog (p0); + } + + private native android.app.Dialog n_onCreateDialog (android.os.Bundle p0); + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + public void onDismiss (android.content.DialogInterface p0) + { + n_onDismiss (p0); + } + + private native void n_onDismiss (android.content.DialogInterface p0); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog.java new file mode 100644 index 0000000..ac9e468 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog.java @@ -0,0 +1,46 @@ +package crc64338477404e88479c; + + +public class ModalNavigationManager_ModalFragment_CustomComponentDialog + extends androidx.activity.ComponentDialog + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog, Microsoft.Maui.Controls", ModalNavigationManager_ModalFragment_CustomComponentDialog.class, __md_methods); + } + + public ModalNavigationManager_ModalFragment_CustomComponentDialog (android.content.Context p0) + { + super (p0); + if (getClass () == ModalNavigationManager_ModalFragment_CustomComponentDialog.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ModalNavigationManager_ModalFragment_CustomComponentDialog (android.content.Context p0, int p1) + { + super (p0, p1); + if (getClass () == ModalNavigationManager_ModalFragment_CustomComponentDialog.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack.java new file mode 100644 index 0000000..b6c0971 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack.java @@ -0,0 +1,46 @@ +package crc64338477404e88479c; + + +public class ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack + extends androidx.activity.OnBackPressedCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_handleOnBackPressed:()V:GetHandleOnBackPressedHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog+CallBack, Microsoft.Maui.Controls", ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack.class, __md_methods); + } + + public ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack (boolean p0) + { + super (p0); + if (getClass () == ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog+CallBack, Microsoft.Maui.Controls", "System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void handleOnBackPressed () + { + n_handleOnBackPressed (); + } + + private native void n_handleOnBackPressed (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MultiPageFragmentStateAdapter_1.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MultiPageFragmentStateAdapter_1.java new file mode 100644 index 0000000..13cbe47 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/MultiPageFragmentStateAdapter_1.java @@ -0,0 +1,86 @@ +package crc64338477404e88479c; + + +public class MultiPageFragmentStateAdapter_1 + extends androidx.viewpager2.adapter.FragmentStateAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_createFragment:(I)Landroidx/fragment/app/Fragment;:GetCreateFragment_IHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + "n_containsItem:(J)Z:GetContainsItem_JHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls", MultiPageFragmentStateAdapter_1.class, __md_methods); + } + + public MultiPageFragmentStateAdapter_1 (androidx.fragment.app.Fragment p0) + { + super (p0); + if (getClass () == MultiPageFragmentStateAdapter_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls", "AndroidX.Fragment.App.Fragment, Xamarin.AndroidX.Fragment", this, new java.lang.Object[] { p0 }); + } + } + + public MultiPageFragmentStateAdapter_1 (androidx.fragment.app.FragmentActivity p0) + { + super (p0); + if (getClass () == MultiPageFragmentStateAdapter_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls", "AndroidX.Fragment.App.FragmentActivity, Xamarin.AndroidX.Fragment", this, new java.lang.Object[] { p0 }); + } + } + + public MultiPageFragmentStateAdapter_1 (androidx.fragment.app.FragmentManager p0, androidx.lifecycle.Lifecycle p1) + { + super (p0, p1); + if (getClass () == MultiPageFragmentStateAdapter_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls", "AndroidX.Fragment.App.FragmentManager, Xamarin.AndroidX.Fragment:AndroidX.Lifecycle.Lifecycle, Xamarin.AndroidX.Lifecycle.Common.Jvm", this, new java.lang.Object[] { p0, p1 }); + } + } + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public androidx.fragment.app.Fragment createFragment (int p0) + { + return n_createFragment (p0); + } + + private native androidx.fragment.app.Fragment n_createFragment (int p0); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + public boolean containsItem (long p0) + { + return n_containsItem (p0); + } + + private native boolean n_containsItem (long p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/PointerGestureHandler.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/PointerGestureHandler.java new file mode 100644 index 0000000..70296e0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/PointerGestureHandler.java @@ -0,0 +1,47 @@ +package crc64338477404e88479c; + + +public class PointerGestureHandler + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnHoverListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onHover:(Landroid/view/View;Landroid/view/MotionEvent;)Z:GetOnHover_Landroid_view_View_Landroid_view_MotionEvent_Handler:Android.Views.View/IOnHoverListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.PointerGestureHandler, Microsoft.Maui.Controls", PointerGestureHandler.class, __md_methods); + } + + public PointerGestureHandler () + { + super (); + if (getClass () == PointerGestureHandler.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.PointerGestureHandler, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onHover (android.view.View p0, android.view.MotionEvent p1) + { + return n_onHover (p0, p1); + } + + private native boolean n_onHover (android.view.View p0, android.view.MotionEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/TapAndPanGestureDetector.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/TapAndPanGestureDetector.java new file mode 100644 index 0000000..dc28129 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/TapAndPanGestureDetector.java @@ -0,0 +1,78 @@ +package crc64338477404e88479c; + + +public class TapAndPanGestureDetector + extends android.view.GestureDetector + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", TapAndPanGestureDetector.class, __md_methods); + } + + public TapAndPanGestureDetector (android.content.Context p0, android.view.GestureDetector.OnGestureListener p1, android.os.Handler p2, boolean p3) + { + super (p0, p1, p2, p3); + if (getClass () == TapAndPanGestureDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Views.GestureDetector+IOnGestureListener, Mono.Android:Android.OS.Handler, Mono.Android:System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public TapAndPanGestureDetector (android.content.Context p0, android.view.GestureDetector.OnGestureListener p1, android.os.Handler p2) + { + super (p0, p1, p2); + if (getClass () == TapAndPanGestureDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Views.GestureDetector+IOnGestureListener, Mono.Android:Android.OS.Handler, Mono.Android", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public TapAndPanGestureDetector (android.content.Context p0, android.view.GestureDetector.OnGestureListener p1) + { + super (p0, p1); + if (getClass () == TapAndPanGestureDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Views.GestureDetector+IOnGestureListener, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public TapAndPanGestureDetector (android.view.GestureDetector.OnGestureListener p0, android.os.Handler p1) + { + super (p0, p1); + if (getClass () == TapAndPanGestureDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", "Android.Views.GestureDetector+IOnGestureListener, Mono.Android:Android.OS.Handler, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public TapAndPanGestureDetector (android.view.GestureDetector.OnGestureListener p0) + { + super (p0); + if (getClass () == TapAndPanGestureDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls", "Android.Views.GestureDetector+IOnGestureListener, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ToolbarExtensions_ToolbarTitleIconImageView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ToolbarExtensions_ToolbarTitleIconImageView.java new file mode 100644 index 0000000..3f61eaa --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64338477404e88479c/ToolbarExtensions_ToolbarTitleIconImageView.java @@ -0,0 +1,54 @@ +package crc64338477404e88479c; + + +public class ToolbarExtensions_ToolbarTitleIconImageView + extends androidx.appcompat.widget.AppCompatImageView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls", ToolbarExtensions_ToolbarTitleIconImageView.class, __md_methods); + } + + public ToolbarExtensions_ToolbarTitleIconImageView (android.content.Context p0) + { + super (p0); + if (getClass () == ToolbarExtensions_ToolbarTitleIconImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ToolbarExtensions_ToolbarTitleIconImageView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ToolbarExtensions_ToolbarTitleIconImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ToolbarExtensions_ToolbarTitleIconImageView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ToolbarExtensions_ToolbarTitleIconImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableContainer.java new file mode 100644 index 0000000..1e0e924 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableContainer.java @@ -0,0 +1,38 @@ +package crc6439358991bbf5dbbd; + + +public class DrawableContainer + extends androidx.appcompat.graphics.drawable.DrawableContainerCompat + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Graphics.Drawable.DrawableContainer, Xamarin.AndroidX.AppCompat.AppCompatResources", DrawableContainer.class, __md_methods); + } + + public DrawableContainer () + { + super (); + if (getClass () == DrawableContainer.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Graphics.Drawable.DrawableContainer, Xamarin.AndroidX.AppCompat.AppCompatResources", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableWrapper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableWrapper.java new file mode 100644 index 0000000..5c1ef9d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6439358991bbf5dbbd/DrawableWrapper.java @@ -0,0 +1,38 @@ +package crc6439358991bbf5dbbd; + + +public class DrawableWrapper + extends androidx.appcompat.graphics.drawable.DrawableWrapperCompat + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Graphics.Drawable.DrawableWrapper, Xamarin.AndroidX.AppCompat.AppCompatResources", DrawableWrapper.class, __md_methods); + } + + public DrawableWrapper (android.graphics.drawable.Drawable p0) + { + super (p0); + if (getClass () == DrawableWrapper.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Graphics.Drawable.DrawableWrapper, Xamarin.AndroidX.AppCompat.AppCompatResources", "Android.Graphics.Drawables.Drawable, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/CustomTabsServiceConnectionImpl.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/CustomTabsServiceConnectionImpl.java new file mode 100644 index 0000000..80abd44 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/CustomTabsServiceConnectionImpl.java @@ -0,0 +1,54 @@ +package crc64396a3fe5f8138e3f; + + +public class CustomTabsServiceConnectionImpl + extends androidx.browser.customtabs.CustomTabsServiceConnection + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCustomTabsServiceConnected:(Landroid/content/ComponentName;Landroidx/browser/customtabs/CustomTabsClient;)V:GetOnCustomTabsServiceConnected_Landroid_content_ComponentName_Landroidx_browser_customtabs_CustomTabsClient_Handler\n" + + "n_onServiceDisconnected:(Landroid/content/ComponentName;)V:GetOnServiceDisconnected_Landroid_content_ComponentName_Handler\n" + + ""; + mono.android.Runtime.register ("AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.AndroidX.Browser", CustomTabsServiceConnectionImpl.class, __md_methods); + } + + public CustomTabsServiceConnectionImpl () + { + super (); + if (getClass () == CustomTabsServiceConnectionImpl.class) { + mono.android.TypeManager.Activate ("AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.AndroidX.Browser", "", this, new java.lang.Object[] { }); + } + } + + public void onCustomTabsServiceConnected (android.content.ComponentName p0, androidx.browser.customtabs.CustomTabsClient p1) + { + n_onCustomTabsServiceConnected (p0, p1); + } + + private native void n_onCustomTabsServiceConnected (android.content.ComponentName p0, androidx.browser.customtabs.CustomTabsClient p1); + + public void onServiceDisconnected (android.content.ComponentName p0) + { + n_onServiceDisconnected (p0); + } + + private native void n_onServiceDisconnected (android.content.ComponentName p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/KeepAliveService.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/KeepAliveService.java new file mode 100644 index 0000000..278ea77 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64396a3fe5f8138e3f/KeepAliveService.java @@ -0,0 +1,46 @@ +package crc64396a3fe5f8138e3f; + + +public class KeepAliveService + extends android.app.Service + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBind:(Landroid/content/Intent;)Landroid/os/IBinder;:GetOnBind_Landroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("AndroidX.Browser.CustomTabs.KeepAliveService, Xamarin.AndroidX.Browser", KeepAliveService.class, __md_methods); + } + + public KeepAliveService () + { + super (); + if (getClass () == KeepAliveService.class) { + mono.android.TypeManager.Activate ("AndroidX.Browser.CustomTabs.KeepAliveService, Xamarin.AndroidX.Browser", "", this, new java.lang.Object[] { }); + } + } + + public android.os.IBinder onBind (android.content.Intent p0) + { + return n_onBind (p0); + } + + private native android.os.IBinder n_onBind (android.content.Intent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc643f2b18b2570eaa5a/PlatformGraphicsView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc643f2b18b2570eaa5a/PlatformGraphicsView.java new file mode 100644 index 0000000..3357a8b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc643f2b18b2570eaa5a/PlatformGraphicsView.java @@ -0,0 +1,78 @@ +package crc643f2b18b2570eaa5a; + + +public class PlatformGraphicsView + extends android.view.View + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + "n_onSizeChanged:(IIII)V:GetOnSizeChanged_IIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics", PlatformGraphicsView.class, __md_methods); + } + + public PlatformGraphicsView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == PlatformGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public PlatformGraphicsView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == PlatformGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public PlatformGraphicsView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == PlatformGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public PlatformGraphicsView (android.content.Context p0) + { + super (p0); + if (getClass () == PlatformGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + public void onSizeChanged (int p0, int p1, int p2, int p3) + { + n_onSizeChanged (p0, p1, p2, p3); + } + + private native void n_onSizeChanged (int p0, int p1, int p2, int p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/AccessibilityDelegateCompatWrapper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/AccessibilityDelegateCompatWrapper.java new file mode 100644 index 0000000..10e2f3e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/AccessibilityDelegateCompatWrapper.java @@ -0,0 +1,126 @@ +package crc6452ffdc5b34af3a0f; + + +public class AccessibilityDelegateCompatWrapper + extends androidx.core.view.AccessibilityDelegateCompat + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInitializeAccessibilityNodeInfo:(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V:GetOnInitializeAccessibilityNodeInfo_Landroid_view_View_Landroidx_core_view_accessibility_AccessibilityNodeInfoCompat_Handler\n" + + "n_sendAccessibilityEvent:(Landroid/view/View;I)V:GetSendAccessibilityEvent_Landroid_view_View_IHandler\n" + + "n_sendAccessibilityEventUnchecked:(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V:GetSendAccessibilityEventUnchecked_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler\n" + + "n_dispatchPopulateAccessibilityEvent:(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)Z:GetDispatchPopulateAccessibilityEvent_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler\n" + + "n_onPopulateAccessibilityEvent:(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V:GetOnPopulateAccessibilityEvent_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler\n" + + "n_onInitializeAccessibilityEvent:(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V:GetOnInitializeAccessibilityEvent_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler\n" + + "n_onRequestSendAccessibilityEvent:(Landroid/view/ViewGroup;Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)Z:GetOnRequestSendAccessibilityEvent_Landroid_view_ViewGroup_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler\n" + + "n_performAccessibilityAction:(Landroid/view/View;ILandroid/os/Bundle;)Z:GetPerformAccessibilityAction_Landroid_view_View_ILandroid_os_Bundle_Handler\n" + + "n_getAccessibilityNodeProvider:(Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;:GetGetAccessibilityNodeProvider_Landroid_view_View_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui", AccessibilityDelegateCompatWrapper.class, __md_methods); + } + + public AccessibilityDelegateCompatWrapper () + { + super (); + if (getClass () == AccessibilityDelegateCompatWrapper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public AccessibilityDelegateCompatWrapper (android.view.View.AccessibilityDelegate p0) + { + super (p0); + if (getClass () == AccessibilityDelegateCompatWrapper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui", "Android.Views.View+AccessibilityDelegate, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public AccessibilityDelegateCompatWrapper (androidx.core.view.AccessibilityDelegateCompat p0) + { + super (); + if (getClass () == AccessibilityDelegateCompatWrapper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui", "AndroidX.Core.View.AccessibilityDelegateCompat, Xamarin.AndroidX.Core", this, new java.lang.Object[] { p0 }); + } + } + + public void onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1) + { + n_onInitializeAccessibilityNodeInfo (p0, p1); + } + + private native void n_onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1); + + public void sendAccessibilityEvent (android.view.View p0, int p1) + { + n_sendAccessibilityEvent (p0, p1); + } + + private native void n_sendAccessibilityEvent (android.view.View p0, int p1); + + public void sendAccessibilityEventUnchecked (android.view.View p0, android.view.accessibility.AccessibilityEvent p1) + { + n_sendAccessibilityEventUnchecked (p0, p1); + } + + private native void n_sendAccessibilityEventUnchecked (android.view.View p0, android.view.accessibility.AccessibilityEvent p1); + + public boolean dispatchPopulateAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1) + { + return n_dispatchPopulateAccessibilityEvent (p0, p1); + } + + private native boolean n_dispatchPopulateAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1); + + public void onPopulateAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1) + { + n_onPopulateAccessibilityEvent (p0, p1); + } + + private native void n_onPopulateAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1); + + public void onInitializeAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1) + { + n_onInitializeAccessibilityEvent (p0, p1); + } + + private native void n_onInitializeAccessibilityEvent (android.view.View p0, android.view.accessibility.AccessibilityEvent p1); + + public boolean onRequestSendAccessibilityEvent (android.view.ViewGroup p0, android.view.View p1, android.view.accessibility.AccessibilityEvent p2) + { + return n_onRequestSendAccessibilityEvent (p0, p1, p2); + } + + private native boolean n_onRequestSendAccessibilityEvent (android.view.ViewGroup p0, android.view.View p1, android.view.accessibility.AccessibilityEvent p2); + + public boolean performAccessibilityAction (android.view.View p0, int p1, android.os.Bundle p2) + { + return n_performAccessibilityAction (p0, p1, p2); + } + + private native boolean n_performAccessibilityAction (android.view.View p0, int p1, android.os.Bundle p2); + + public androidx.core.view.accessibility.AccessibilityNodeProviderCompat getAccessibilityNodeProvider (android.view.View p0) + { + return n_getAccessibilityNodeProvider (p0); + } + + private native androidx.core.view.accessibility.AccessibilityNodeProviderCompat n_getAccessibilityNodeProvider (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/BorderDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/BorderDrawable.java new file mode 100644 index 0000000..0170c81 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/BorderDrawable.java @@ -0,0 +1,70 @@ +package crc6452ffdc5b34af3a0f; + + +public class BorderDrawable + extends android.graphics.drawable.PaintDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBoundsChange:(Landroid/graphics/Rect;)V:GetOnBoundsChange_Landroid_graphics_Rect_Handler\n" + + "n_onDraw:(Landroid/graphics/drawable/shapes/Shape;Landroid/graphics/Canvas;Landroid/graphics/Paint;)V:GetOnDraw_Landroid_graphics_drawable_shapes_Shape_Landroid_graphics_Canvas_Landroid_graphics_Paint_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui", BorderDrawable.class, __md_methods); + } + + public BorderDrawable () + { + super (); + if (getClass () == BorderDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public BorderDrawable (int p0) + { + super (p0); + if (getClass () == BorderDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui", "Android.Graphics.Color, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public BorderDrawable (android.content.Context p0) + { + super (); + if (getClass () == BorderDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onBoundsChange (android.graphics.Rect p0) + { + n_onBoundsChange (p0); + } + + private native void n_onBoundsChange (android.graphics.Rect p0); + + public void onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2) + { + n_onDraw (p0, p1, p2); + } + + private native void n_onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContainerView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContainerView.java new file mode 100644 index 0000000..2a37389 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContainerView.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class ContainerView + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.ContainerView, Microsoft.Maui", ContainerView.class, __md_methods); + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContainerView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContainerView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ContainerView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContainerView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ContainerView (android.content.Context p0) + { + super (p0); + if (getClass () == ContainerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContainerView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContentViewGroup.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContentViewGroup.java new file mode 100644 index 0000000..27d7d49 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ContentViewGroup.java @@ -0,0 +1,86 @@ +package crc6452ffdc5b34af3a0f; + + +public class ContentViewGroup + extends com.microsoft.maui.PlatformContentViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_getClipPath:(II)Landroid/graphics/Path;:GetGetClipPath_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui", ContentViewGroup.class, __md_methods); + } + + public ContentViewGroup (android.content.Context p0) + { + super (p0); + if (getClass () == ContentViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ContentViewGroup (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ContentViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ContentViewGroup (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ContentViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ContentViewGroup (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ContentViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public android.graphics.Path getClipPath (int p0, int p1) + { + return n_getClipPath (p0, p1); + } + + private native android.graphics.Path n_getClipPath (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/FragmentManagerExtensions_CallBacks.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/FragmentManagerExtensions_CallBacks.java new file mode 100644 index 0000000..29afc0c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/FragmentManagerExtensions_CallBacks.java @@ -0,0 +1,54 @@ +package crc6452ffdc5b34af3a0f; + + +public class FragmentManagerExtensions_CallBacks + extends androidx.fragment.app.FragmentManager.FragmentLifecycleCallbacks + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFragmentDestroyed:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnFragmentDestroyed_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler\n" + + "n_onFragmentResumed:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnFragmentResumed_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.FragmentManagerExtensions+CallBacks, Microsoft.Maui", FragmentManagerExtensions_CallBacks.class, __md_methods); + } + + public FragmentManagerExtensions_CallBacks () + { + super (); + if (getClass () == FragmentManagerExtensions_CallBacks.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.FragmentManagerExtensions+CallBacks, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onFragmentDestroyed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onFragmentDestroyed (p0, p1); + } + + private native void n_onFragmentDestroyed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + public void onFragmentResumed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onFragmentResumed (p0, p1); + } + + private native void n_onFragmentResumed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LayoutViewGroup.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LayoutViewGroup.java new file mode 100644 index 0000000..d01dbd3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LayoutViewGroup.java @@ -0,0 +1,86 @@ +package crc6452ffdc5b34af3a0f; + + +public class LayoutViewGroup + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui", LayoutViewGroup.class, __md_methods); + } + + public LayoutViewGroup (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == LayoutViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public LayoutViewGroup (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == LayoutViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public LayoutViewGroup (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == LayoutViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public LayoutViewGroup (android.content.Context p0) + { + super (p0); + if (getClass () == LayoutViewGroup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LocalizedDigitsKeyListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LocalizedDigitsKeyListener.java new file mode 100644 index 0000000..260d03c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/LocalizedDigitsKeyListener.java @@ -0,0 +1,70 @@ +package crc6452ffdc5b34af3a0f; + + +public class LocalizedDigitsKeyListener + extends android.text.method.NumberKeyListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getInputType:()I:GetGetInputTypeHandler\n" + + "n_getAcceptedChars:()[C:GetGetAcceptedCharsHandler\n" + + "n_filter:(Ljava/lang/CharSequence;IILandroid/text/Spanned;II)Ljava/lang/CharSequence;:GetFilter_Ljava_lang_CharSequence_IILandroid_text_Spanned_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.LocalizedDigitsKeyListener, Microsoft.Maui", LocalizedDigitsKeyListener.class, __md_methods); + } + + public LocalizedDigitsKeyListener () + { + super (); + if (getClass () == LocalizedDigitsKeyListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LocalizedDigitsKeyListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public LocalizedDigitsKeyListener (int p0, char p1) + { + super (); + if (getClass () == LocalizedDigitsKeyListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.LocalizedDigitsKeyListener, Microsoft.Maui", "Android.Text.InputTypes, Mono.Android:System.Char, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1 }); + } + } + + public int getInputType () + { + return n_getInputType (); + } + + private native int n_getInputType (); + + public char[] getAcceptedChars () + { + return n_getAcceptedChars (); + } + + private native char[] n_getAcceptedChars (); + + public java.lang.CharSequence filter (java.lang.CharSequence p0, int p1, int p2, android.text.Spanned p3, int p4, int p5) + { + return n_filter (p0, p1, p2, p3, p4, p5); + } + + private native java.lang.CharSequence n_filter (java.lang.CharSequence p0, int p1, int p2, android.text.Spanned p3, int p4, int p5); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAccessibilityDelegateCompat.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAccessibilityDelegateCompat.java new file mode 100644 index 0000000..4815cfb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAccessibilityDelegateCompat.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiAccessibilityDelegateCompat + extends crc6452ffdc5b34af3a0f.AccessibilityDelegateCompatWrapper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInitializeAccessibilityNodeInfo:(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V:GetOnInitializeAccessibilityNodeInfo_Landroid_view_View_Landroidx_core_view_accessibility_AccessibilityNodeInfoCompat_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui", MauiAccessibilityDelegateCompat.class, __md_methods); + } + + public MauiAccessibilityDelegateCompat () + { + super (); + if (getClass () == MauiAccessibilityDelegateCompat.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public MauiAccessibilityDelegateCompat (android.view.View.AccessibilityDelegate p0) + { + super (p0); + if (getClass () == MauiAccessibilityDelegateCompat.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui", "Android.Views.View+AccessibilityDelegate, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiAccessibilityDelegateCompat (androidx.core.view.AccessibilityDelegateCompat p0) + { + super (); + if (getClass () == MauiAccessibilityDelegateCompat.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui", "AndroidX.Core.View.AccessibilityDelegateCompat, Xamarin.AndroidX.Core", this, new java.lang.Object[] { p0 }); + } + } + + public void onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1) + { + n_onInitializeAccessibilityNodeInfo (p0, p1); + } + + private native void n_onInitializeAccessibilityNodeInfo (android.view.View p0, androidx.core.view.accessibility.AccessibilityNodeInfoCompat p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAppCompatEditText.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAppCompatEditText.java new file mode 100644 index 0000000..dde1d05 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiAppCompatEditText.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiAppCompatEditText + extends androidx.appcompat.widget.AppCompatEditText + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSelectionChanged:(II)V:GetOnSelectionChanged_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui", MauiAppCompatEditText.class, __md_methods); + } + + public MauiAppCompatEditText (android.content.Context p0) + { + super (p0); + if (getClass () == MauiAppCompatEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiAppCompatEditText (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiAppCompatEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiAppCompatEditText (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiAppCompatEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public void onSelectionChanged (int p0, int p1) + { + n_onSelectionChanged (p0, p1); + } + + private native void n_onSelectionChanged (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiBoxView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiBoxView.java new file mode 100644 index 0000000..6f788e2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiBoxView.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiBoxView + extends crc643f2b18b2570eaa5a.PlatformGraphicsView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui", MauiBoxView.class, __md_methods); + } + + public MauiBoxView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiBoxView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiBoxView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiBoxView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiBoxView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiBoxView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiBoxView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiBoxView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiDatePicker.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiDatePicker.java new file mode 100644 index 0000000..7007ae5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiDatePicker.java @@ -0,0 +1,71 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiDatePicker + extends androidx.appcompat.widget.AppCompatEditText + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getDefaultMovementMethod:()Landroid/text/method/MovementMethod;:GetGetDefaultMovementMethodHandler\n" + + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui", MauiDatePicker.class, __md_methods); + } + + public MauiDatePicker (android.content.Context p0) + { + super (p0); + if (getClass () == MauiDatePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiDatePicker (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiDatePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiDatePicker (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiDatePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public android.text.method.MovementMethod getDefaultMovementMethod () + { + return n_getDefaultMovementMethod (); + } + + private native android.text.method.MovementMethod n_getDefaultMovementMethod (); + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHorizontalScrollView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHorizontalScrollView.java new file mode 100644 index 0000000..a3e32d2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHorizontalScrollView.java @@ -0,0 +1,110 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiHorizontalScrollView + extends android.widget.HorizontalScrollView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_isHorizontalScrollBarEnabled:()Z:GetIsHorizontalScrollBarEnabledHandler\n" + + "n_setHorizontalScrollBarEnabled:(Z)V:GetSetHorizontalScrollBarEnabled_ZHandler\n" + + "n_onScrollChanged:(IIII)V:GetOnScrollChanged_IIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui", MauiHorizontalScrollView.class, __md_methods); + } + + public MauiHorizontalScrollView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiHorizontalScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiHorizontalScrollView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiHorizontalScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiHorizontalScrollView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiHorizontalScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiHorizontalScrollView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiHorizontalScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public boolean isHorizontalScrollBarEnabled () + { + return n_isHorizontalScrollBarEnabled (); + } + + private native boolean n_isHorizontalScrollBarEnabled (); + + public void setHorizontalScrollBarEnabled (boolean p0) + { + n_setHorizontalScrollBarEnabled (p0); + } + + private native void n_setHorizontalScrollBarEnabled (boolean p0); + + public void onScrollChanged (int p0, int p1, int p2, int p3) + { + n_onScrollChanged (p0, p1, p2, p3); + } + + private native void n_onScrollChanged (int p0, int p1, int p2, int p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebView.java new file mode 100644 index 0000000..362ee24 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebView.java @@ -0,0 +1,70 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiHybridWebView + extends android.webkit.WebView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", MauiHybridWebView.class, __md_methods); + } + + public MauiHybridWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, boolean p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiHybridWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiHybridWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiHybridWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiHybridWebView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiHybridWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiHybridWebView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiHybridWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiHybridWebView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiHybridWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebViewClient.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebViewClient.java new file mode 100644 index 0000000..c624a3f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiHybridWebViewClient.java @@ -0,0 +1,46 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiHybridWebViewClient + extends android.webkit.WebViewClient + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_shouldInterceptRequest:(Landroid/webkit/WebView;Landroid/webkit/WebResourceRequest;)Landroid/webkit/WebResourceResponse;:GetShouldInterceptRequest_Landroid_webkit_WebView_Landroid_webkit_WebResourceRequest_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiHybridWebViewClient, Microsoft.Maui", MauiHybridWebViewClient.class, __md_methods); + } + + public MauiHybridWebViewClient () + { + super (); + if (getClass () == MauiHybridWebViewClient.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiHybridWebViewClient, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public android.webkit.WebResourceResponse shouldInterceptRequest (android.webkit.WebView p0, android.webkit.WebResourceRequest p1) + { + return n_shouldInterceptRequest (p0, p1); + } + + private native android.webkit.WebResourceResponse n_shouldInterceptRequest (android.webkit.WebView p0, android.webkit.WebResourceRequest p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiLayerDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiLayerDrawable.java new file mode 100644 index 0000000..b867bc0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiLayerDrawable.java @@ -0,0 +1,38 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiLayerDrawable + extends android.graphics.drawable.LayerDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiLayerDrawable, Microsoft.Maui", MauiLayerDrawable.class, __md_methods); + } + + public MauiLayerDrawable (android.graphics.drawable.Drawable[] p0) + { + super (p0); + if (getClass () == MauiLayerDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiLayerDrawable, Microsoft.Maui", "Android.Graphics.Drawables.Drawable[], Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton.java new file mode 100644 index 0000000..0e50980 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton.java @@ -0,0 +1,86 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiMaterialButton + extends com.google.android.material.button.MaterialButton + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getIconGravity:()I:GetGetIconGravityHandler\n" + + "n_setIconGravity:(I)V:GetSetIconGravity_IHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui", MauiMaterialButton.class, __md_methods); + } + + public MauiMaterialButton (android.content.Context p0) + { + super (p0); + if (getClass () == MauiMaterialButton.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiMaterialButton (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiMaterialButton.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiMaterialButton (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiMaterialButton.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public int getIconGravity () + { + return n_getIconGravity (); + } + + private native int n_getIconGravity (); + + public void setIconGravity (int p0) + { + n_setIconGravity (p0); + } + + private native void n_setIconGravity (int p0); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton_MauiResizableDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton_MauiResizableDrawable.java new file mode 100644 index 0000000..2ee94ac --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiMaterialButton_MauiResizableDrawable.java @@ -0,0 +1,38 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiMaterialButton_MauiResizableDrawable + extends android.graphics.drawable.LayerDrawable + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiMaterialButton+MauiResizableDrawable, Microsoft.Maui", MauiMaterialButton_MauiResizableDrawable.class, __md_methods); + } + + public MauiMaterialButton_MauiResizableDrawable (android.graphics.drawable.Drawable[] p0) + { + super (p0); + if (getClass () == MauiMaterialButton_MauiResizableDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiMaterialButton+MauiResizableDrawable, Microsoft.Maui", "Android.Graphics.Drawables.Drawable[], Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl.java new file mode 100644 index 0000000..a6b01c8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiPageControl + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui", MauiPageControl.class, __md_methods); + } + + public MauiPageControl (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiPageControl.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiPageControl (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiPageControl.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiPageControl (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiPageControl.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiPageControl (android.content.Context p0) + { + super (p0); + if (getClass () == MauiPageControl.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl_TEditClickListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl_TEditClickListener.java new file mode 100644 index 0000000..8203bef --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPageControl_TEditClickListener.java @@ -0,0 +1,47 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiPageControl_TEditClickListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiPageControl+TEditClickListener, Microsoft.Maui", MauiPageControl_TEditClickListener.class, __md_methods); + } + + public MauiPageControl_TEditClickListener () + { + super (); + if (getClass () == MauiPageControl_TEditClickListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPageControl+TEditClickListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPicker.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPicker.java new file mode 100644 index 0000000..70cccdd --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPicker.java @@ -0,0 +1,54 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiPicker + extends crc6452ffdc5b34af3a0f.MauiPickerBase + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui", MauiPicker.class, __md_methods); + } + + public MauiPicker (android.content.Context p0) + { + super (p0); + if (getClass () == MauiPicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiPicker (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiPicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiPicker (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiPicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPickerBase.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPickerBase.java new file mode 100644 index 0000000..821c201 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiPickerBase.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiPickerBase + extends androidx.appcompat.widget.AppCompatEditText + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getDefaultMovementMethod:()Landroid/text/method/MovementMethod;:GetGetDefaultMovementMethodHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui", MauiPickerBase.class, __md_methods); + } + + public MauiPickerBase (android.content.Context p0) + { + super (p0); + if (getClass () == MauiPickerBase.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiPickerBase (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiPickerBase.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiPickerBase (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiPickerBase.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public android.text.method.MovementMethod getDefaultMovementMethod () + { + return n_getDefaultMovementMethod (); + } + + private native android.text.method.MovementMethod n_getDefaultMovementMethod (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiScrollView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiScrollView.java new file mode 100644 index 0000000..fd476f5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiScrollView.java @@ -0,0 +1,95 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiScrollView + extends androidx.core.widget.NestedScrollView + implements + mono.android.IGCUserPeer, + androidx.core.widget.NestedScrollView.OnScrollChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onScrollChange:(Landroidx/core/widget/NestedScrollView;IIII)V:GetOnScrollChange_Landroidx_core_widget_NestedScrollView_IIIIHandler:AndroidX.Core.Widget.NestedScrollView/IOnScrollChangeListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui", MauiScrollView.class, __md_methods); + } + + public MauiScrollView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiScrollView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiScrollView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiScrollView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onScrollChange (androidx.core.widget.NestedScrollView p0, int p1, int p2, int p3, int p4) + { + n_onScrollChange (p0, p1, p2, p3, p4); + } + + private native void n_onScrollChange (androidx.core.widget.NestedScrollView p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSearchView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSearchView.java new file mode 100644 index 0000000..40f0238 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSearchView.java @@ -0,0 +1,54 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiSearchView + extends androidx.appcompat.widget.SearchView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui", MauiSearchView.class, __md_methods); + } + + public MauiSearchView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiSearchView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiSearchView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiSearchView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeView.java new file mode 100644 index 0000000..cff6708 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeView.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiShapeView + extends crc643f2b18b2570eaa5a.PlatformGraphicsView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui", MauiShapeView.class, __md_methods); + } + + public MauiShapeView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiShapeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiShapeView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiShapeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiShapeView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiShapeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiShapeView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiShapeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeableImageView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeableImageView.java new file mode 100644 index 0000000..ec919d3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiShapeableImageView.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiShapeableImageView + extends com.google.android.material.imageview.ShapeableImageView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui", MauiShapeableImageView.class, __md_methods); + } + + public MauiShapeableImageView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiShapeableImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiShapeableImageView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiShapeableImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiShapeableImageView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiShapeableImageView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiStepper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiStepper.java new file mode 100644 index 0000000..c658bf7 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiStepper.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiStepper + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui", MauiStepper.class, __md_methods); + } + + public MauiStepper (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiStepper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiStepper (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiStepper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiStepper (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiStepper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiStepper (android.content.Context p0) + { + super (p0); + if (getClass () == MauiStepper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeRefreshLayout.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeRefreshLayout.java new file mode 100644 index 0000000..5c765cd --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeRefreshLayout.java @@ -0,0 +1,54 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiSwipeRefreshLayout + extends androidx.swiperefreshlayout.widget.SwipeRefreshLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_canChildScrollUp:()Z:GetCanChildScrollUpHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiSwipeRefreshLayout, Microsoft.Maui", MauiSwipeRefreshLayout.class, __md_methods); + } + + public MauiSwipeRefreshLayout (android.content.Context p0) + { + super (p0); + if (getClass () == MauiSwipeRefreshLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeRefreshLayout, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiSwipeRefreshLayout (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiSwipeRefreshLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeRefreshLayout, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public boolean canChildScrollUp () + { + return n_canChildScrollUp (); + } + + private native boolean n_canChildScrollUp (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeView.java new file mode 100644 index 0000000..c342ad2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiSwipeView.java @@ -0,0 +1,102 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiSwipeView + extends crc6452ffdc5b34af3a0f.ContentViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedToWindow:()V:GetOnAttachedToWindowHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_dispatchTouchEvent:(Landroid/view/MotionEvent;)Z:GetDispatchTouchEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui", MauiSwipeView.class, __md_methods); + } + + public MauiSwipeView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiSwipeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiSwipeView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiSwipeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiSwipeView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiSwipeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiSwipeView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiSwipeView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public void onAttachedToWindow () + { + n_onAttachedToWindow (); + } + + private native void n_onAttachedToWindow (); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean dispatchTouchEvent (android.view.MotionEvent p0) + { + return n_dispatchTouchEvent (p0); + } + + private native boolean n_dispatchTouchEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTextView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTextView.java new file mode 100644 index 0000000..b96caff --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTextView.java @@ -0,0 +1,46 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiTextView + extends com.microsoft.maui.PlatformAppCompatTextView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayoutFormatted:(ZIIII)V:GetOnLayoutFormatted_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiTextView, Microsoft.Maui", MauiTextView.class, __md_methods); + } + + public MauiTextView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiTextView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiTextView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayoutFormatted (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayoutFormatted (p0, p1, p2, p3, p4); + } + + private native void n_onLayoutFormatted (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTimePicker.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTimePicker.java new file mode 100644 index 0000000..c7042c2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiTimePicker.java @@ -0,0 +1,71 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiTimePicker + extends androidx.appcompat.widget.AppCompatEditText + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getDefaultMovementMethod:()Landroid/text/method/MovementMethod;:GetGetDefaultMovementMethodHandler\n" + + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui", MauiTimePicker.class, __md_methods); + } + + public MauiTimePicker (android.content.Context p0) + { + super (p0); + if (getClass () == MauiTimePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiTimePicker (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiTimePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiTimePicker (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiTimePicker.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public android.text.method.MovementMethod getDefaultMovementMethod () + { + return n_getDefaultMovementMethod (); + } + + private native android.text.method.MovementMethod n_getDefaultMovementMethod (); + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebChromeClient.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebChromeClient.java new file mode 100644 index 0000000..054740d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebChromeClient.java @@ -0,0 +1,46 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiWebChromeClient + extends android.webkit.WebChromeClient + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onShowFileChooser:(Landroid/webkit/WebView;Landroid/webkit/ValueCallback;Landroid/webkit/WebChromeClient$FileChooserParams;)Z:GetOnShowFileChooser_Landroid_webkit_WebView_Landroid_webkit_ValueCallback_Landroid_webkit_WebChromeClient_FileChooserParams_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiWebChromeClient, Microsoft.Maui", MauiWebChromeClient.class, __md_methods); + } + + public MauiWebChromeClient () + { + super (); + if (getClass () == MauiWebChromeClient.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebChromeClient, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public boolean onShowFileChooser (android.webkit.WebView p0, android.webkit.ValueCallback p1, android.webkit.WebChromeClient.FileChooserParams p2) + { + return n_onShowFileChooser (p0, p1, p2); + } + + private native boolean n_onShowFileChooser (android.webkit.WebView p0, android.webkit.ValueCallback p1, android.webkit.WebChromeClient.FileChooserParams p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebView.java new file mode 100644 index 0000000..0b8240a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebView.java @@ -0,0 +1,70 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiWebView + extends android.webkit.WebView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", MauiWebView.class, __md_methods); + } + + public MauiWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, boolean p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == MauiWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public MauiWebView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public MauiWebView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiWebView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebViewClient.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebViewClient.java new file mode 100644 index 0000000..21b62ec --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/MauiWebViewClient.java @@ -0,0 +1,78 @@ +package crc6452ffdc5b34af3a0f; + + +public class MauiWebViewClient + extends android.webkit.WebViewClient + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_shouldOverrideUrlLoading:(Landroid/webkit/WebView;Landroid/webkit/WebResourceRequest;)Z:GetShouldOverrideUrlLoading_Landroid_webkit_WebView_Landroid_webkit_WebResourceRequest_Handler\n" + + "n_onPageStarted:(Landroid/webkit/WebView;Ljava/lang/String;Landroid/graphics/Bitmap;)V:GetOnPageStarted_Landroid_webkit_WebView_Ljava_lang_String_Landroid_graphics_Bitmap_Handler\n" + + "n_onPageFinished:(Landroid/webkit/WebView;Ljava/lang/String;)V:GetOnPageFinished_Landroid_webkit_WebView_Ljava_lang_String_Handler\n" + + "n_onReceivedError:(Landroid/webkit/WebView;Landroid/webkit/WebResourceRequest;Landroid/webkit/WebResourceError;)V:GetOnReceivedError_Landroid_webkit_WebView_Landroid_webkit_WebResourceRequest_Landroid_webkit_WebResourceError_Handler\n" + + "n_onRenderProcessGone:(Landroid/webkit/WebView;Landroid/webkit/RenderProcessGoneDetail;)Z:GetOnRenderProcessGone_Landroid_webkit_WebView_Landroid_webkit_RenderProcessGoneDetail_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiWebViewClient, Microsoft.Maui", MauiWebViewClient.class, __md_methods); + } + + public MauiWebViewClient () + { + super (); + if (getClass () == MauiWebViewClient.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiWebViewClient, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public boolean shouldOverrideUrlLoading (android.webkit.WebView p0, android.webkit.WebResourceRequest p1) + { + return n_shouldOverrideUrlLoading (p0, p1); + } + + private native boolean n_shouldOverrideUrlLoading (android.webkit.WebView p0, android.webkit.WebResourceRequest p1); + + public void onPageStarted (android.webkit.WebView p0, java.lang.String p1, android.graphics.Bitmap p2) + { + n_onPageStarted (p0, p1, p2); + } + + private native void n_onPageStarted (android.webkit.WebView p0, java.lang.String p1, android.graphics.Bitmap p2); + + public void onPageFinished (android.webkit.WebView p0, java.lang.String p1) + { + n_onPageFinished (p0, p1); + } + + private native void n_onPageFinished (android.webkit.WebView p0, java.lang.String p1); + + public void onReceivedError (android.webkit.WebView p0, android.webkit.WebResourceRequest p1, android.webkit.WebResourceError p2) + { + n_onReceivedError (p0, p1, p2); + } + + private native void n_onReceivedError (android.webkit.WebView p0, android.webkit.WebResourceRequest p1, android.webkit.WebResourceError p2); + + public boolean onRenderProcessGone (android.webkit.WebView p0, android.webkit.RenderProcessGoneDetail p1) + { + return n_onRenderProcessGone (p0, p1); + } + + private native boolean n_onRenderProcessGone (android.webkit.WebView p0, android.webkit.RenderProcessGoneDetail p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationRootManager_ElementBasedFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationRootManager_ElementBasedFragment.java new file mode 100644 index 0000000..2eb926b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationRootManager_ElementBasedFragment.java @@ -0,0 +1,54 @@ +package crc6452ffdc5b34af3a0f; + + +public class NavigationRootManager_ElementBasedFragment + extends crc6452ffdc5b34af3a0f.ScopedFragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViewCreated:(Landroid/view/View;Landroid/os/Bundle;)V:GetOnViewCreated_Landroid_view_View_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.NavigationRootManager+ElementBasedFragment, Microsoft.Maui", NavigationRootManager_ElementBasedFragment.class, __md_methods); + } + + public NavigationRootManager_ElementBasedFragment () + { + super (); + if (getClass () == NavigationRootManager_ElementBasedFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.NavigationRootManager+ElementBasedFragment, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public NavigationRootManager_ElementBasedFragment (int p0) + { + super (p0); + if (getClass () == NavigationRootManager_ElementBasedFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.NavigationRootManager+ElementBasedFragment, Microsoft.Maui", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onViewCreated (android.view.View p0, android.os.Bundle p1) + { + n_onViewCreated (p0, p1); + } + + private native void n_onViewCreated (android.view.View p0, android.os.Bundle p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationViewFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationViewFragment.java new file mode 100644 index 0000000..3c4e383 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/NavigationViewFragment.java @@ -0,0 +1,78 @@ +package crc6452ffdc5b34af3a0f; + + +public class NavigationViewFragment + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onResume:()V:GetOnResumeHandler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + "n_onCreateAnimation:(IZI)Landroid/view/animation/Animation;:GetOnCreateAnimation_IZIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.NavigationViewFragment, Microsoft.Maui", NavigationViewFragment.class, __md_methods); + } + + public NavigationViewFragment () + { + super (); + if (getClass () == NavigationViewFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.NavigationViewFragment, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public NavigationViewFragment (int p0) + { + super (p0); + if (getClass () == NavigationViewFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.NavigationViewFragment, Microsoft.Maui", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onResume () + { + n_onResume (); + } + + private native void n_onResume (); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public android.view.animation.Animation onCreateAnimation (int p0, boolean p1, int p2) + { + return n_onCreateAnimation (p0, p1, p2); + } + + private native android.view.animation.Animation n_onCreateAnimation (int p0, boolean p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/PlatformTouchGraphicsView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/PlatformTouchGraphicsView.java new file mode 100644 index 0000000..b14284f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/PlatformTouchGraphicsView.java @@ -0,0 +1,86 @@ +package crc6452ffdc5b34af3a0f; + + +public class PlatformTouchGraphicsView + extends crc643f2b18b2570eaa5a.PlatformGraphicsView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onHoverEvent:(Landroid/view/MotionEvent;)Z:GetOnHoverEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui", PlatformTouchGraphicsView.class, __md_methods); + } + + public PlatformTouchGraphicsView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == PlatformTouchGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public PlatformTouchGraphicsView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == PlatformTouchGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public PlatformTouchGraphicsView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == PlatformTouchGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public PlatformTouchGraphicsView (android.content.Context p0) + { + super (p0); + if (getClass () == PlatformTouchGraphicsView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public boolean onHoverEvent (android.view.MotionEvent p0) + { + return n_onHoverEvent (p0); + } + + private native boolean n_onHoverEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ScopedFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ScopedFragment.java new file mode 100644 index 0000000..39a1aea --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ScopedFragment.java @@ -0,0 +1,70 @@ +package crc6452ffdc5b34af3a0f; + + +public class ScopedFragment + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViewStateRestored:(Landroid/os/Bundle;)V:GetOnViewStateRestored_Landroid_os_Bundle_Handler\n" + + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.ScopedFragment, Microsoft.Maui", ScopedFragment.class, __md_methods); + } + + public ScopedFragment () + { + super (); + if (getClass () == ScopedFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ScopedFragment, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public ScopedFragment (int p0) + { + super (p0); + if (getClass () == ScopedFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ScopedFragment, Microsoft.Maui", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onViewStateRestored (android.os.Bundle p0) + { + n_onViewStateRestored (p0); + } + + private native void n_onViewStateRestored (android.os.Bundle p0); + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StackNavigationManager_Callbacks.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StackNavigationManager_Callbacks.java new file mode 100644 index 0000000..50aeff2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StackNavigationManager_Callbacks.java @@ -0,0 +1,119 @@ +package crc6452ffdc5b34af3a0f; + + +public class StackNavigationManager_Callbacks + extends androidx.fragment.app.FragmentManager.FragmentLifecycleCallbacks + implements + mono.android.IGCUserPeer, + androidx.navigation.NavController.OnDestinationChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFragmentResumed:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnFragmentResumed_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler\n" + + "n_onFragmentViewDestroyed:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnFragmentViewDestroyed_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler\n" + + "n_onFragmentCreated:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V:GetOnFragmentCreated_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_os_Bundle_Handler\n" + + "n_onFragmentPreCreated:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V:GetOnFragmentPreCreated_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_os_Bundle_Handler\n" + + "n_onFragmentPreAttached:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V:GetOnFragmentPreAttached_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_content_Context_Handler\n" + + "n_onFragmentStarted:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnFragmentStarted_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler\n" + + "n_onFragmentAttached:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V:GetOnFragmentAttached_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_content_Context_Handler\n" + + "n_onFragmentSaveInstanceState:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V:GetOnFragmentSaveInstanceState_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_os_Bundle_Handler\n" + + "n_onFragmentViewCreated:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;)V:GetOnFragmentViewCreated_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Landroid_view_View_Landroid_os_Bundle_Handler\n" + + "n_onDestinationChanged:(Landroidx/navigation/NavController;Landroidx/navigation/NavDestination;Landroid/os/Bundle;)V:GetOnDestinationChanged_Landroidx_navigation_NavController_Landroidx_navigation_NavDestination_Landroid_os_Bundle_Handler:AndroidX.Navigation.NavController/IOnDestinationChangedListenerInvoker, Xamarin.AndroidX.Navigation.Runtime\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.StackNavigationManager+Callbacks, Microsoft.Maui", StackNavigationManager_Callbacks.class, __md_methods); + } + + public StackNavigationManager_Callbacks () + { + super (); + if (getClass () == StackNavigationManager_Callbacks.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.StackNavigationManager+Callbacks, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onFragmentResumed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onFragmentResumed (p0, p1); + } + + private native void n_onFragmentResumed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + public void onFragmentViewDestroyed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onFragmentViewDestroyed (p0, p1); + } + + private native void n_onFragmentViewDestroyed (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + public void onFragmentCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2) + { + n_onFragmentCreated (p0, p1, p2); + } + + private native void n_onFragmentCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2); + + public void onFragmentPreCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2) + { + n_onFragmentPreCreated (p0, p1, p2); + } + + private native void n_onFragmentPreCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2); + + public void onFragmentPreAttached (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.content.Context p2) + { + n_onFragmentPreAttached (p0, p1, p2); + } + + private native void n_onFragmentPreAttached (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.content.Context p2); + + public void onFragmentStarted (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onFragmentStarted (p0, p1); + } + + private native void n_onFragmentStarted (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + public void onFragmentAttached (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.content.Context p2) + { + n_onFragmentAttached (p0, p1, p2); + } + + private native void n_onFragmentAttached (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.content.Context p2); + + public void onFragmentSaveInstanceState (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2) + { + n_onFragmentSaveInstanceState (p0, p1, p2); + } + + private native void n_onFragmentSaveInstanceState (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.os.Bundle p2); + + public void onFragmentViewCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.view.View p2, android.os.Bundle p3) + { + n_onFragmentViewCreated (p0, p1, p2, p3); + } + + private native void n_onFragmentViewCreated (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1, android.view.View p2, android.os.Bundle p3); + + public void onDestinationChanged (androidx.navigation.NavController p0, androidx.navigation.NavDestination p1, android.os.Bundle p2) + { + n_onDestinationChanged (p0, p1, p2); + } + + private native void n_onDestinationChanged (androidx.navigation.NavController p0, androidx.navigation.NavDestination p1, android.os.Bundle p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerHolder.java new file mode 100644 index 0000000..bc5ee34 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerHolder.java @@ -0,0 +1,38 @@ +package crc6452ffdc5b34af3a0f; + + +public class StepperHandlerHolder + extends java.lang.Object + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.StepperHandlerHolder, Microsoft.Maui", StepperHandlerHolder.class, __md_methods); + } + + public StepperHandlerHolder () + { + super (); + if (getClass () == StepperHandlerHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.StepperHandlerHolder, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerManager_StepperListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerManager_StepperListener.java new file mode 100644 index 0000000..1ee29bb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/StepperHandlerManager_StepperListener.java @@ -0,0 +1,47 @@ +package crc6452ffdc5b34af3a0f; + + +public class StepperHandlerManager_StepperListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.StepperHandlerManager+StepperListener, Microsoft.Maui", StepperHandlerManager_StepperListener.class, __md_methods); + } + + public StepperHandlerManager_StepperListener () + { + super (); + if (getClass () == StepperHandlerManager_StepperListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.StepperHandlerManager+StepperListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/SwipeViewPager.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/SwipeViewPager.java new file mode 100644 index 0000000..3c5a06d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/SwipeViewPager.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class SwipeViewPager + extends androidx.viewpager.widget.ViewPager + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.SwipeViewPager, Microsoft.Maui", SwipeViewPager.class, __md_methods); + } + + public SwipeViewPager (android.content.Context p0) + { + super (p0); + if (getClass () == SwipeViewPager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.SwipeViewPager, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public SwipeViewPager (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == SwipeViewPager.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.SwipeViewPager, Microsoft.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ViewFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ViewFragment.java new file mode 100644 index 0000000..45b0943 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/ViewFragment.java @@ -0,0 +1,62 @@ +package crc6452ffdc5b34af3a0f; + + +public class ViewFragment + extends androidx.fragment.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui", ViewFragment.class, __md_methods); + } + + public ViewFragment () + { + super (); + if (getClass () == ViewFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public ViewFragment (int p0) + { + super (p0); + if (getClass () == ViewFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public ViewFragment (android.view.View p0) + { + super (); + if (getClass () == ViewFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WebViewExtensions_JavascriptResult.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WebViewExtensions_JavascriptResult.java new file mode 100644 index 0000000..651cba5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WebViewExtensions_JavascriptResult.java @@ -0,0 +1,47 @@ +package crc6452ffdc5b34af3a0f; + + +public class WebViewExtensions_JavascriptResult + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.webkit.ValueCallback +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceiveValue:(Ljava/lang/Object;)V:GetOnReceiveValue_Ljava_lang_Object_Handler:Android.Webkit.IValueCallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.WebViewExtensions+JavascriptResult, Microsoft.Maui", WebViewExtensions_JavascriptResult.class, __md_methods); + } + + public WebViewExtensions_JavascriptResult () + { + super (); + if (getClass () == WebViewExtensions_JavascriptResult.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.WebViewExtensions+JavascriptResult, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onReceiveValue (java.lang.Object p0) + { + n_onReceiveValue (p0); + } + + private native void n_onReceiveValue (java.lang.Object p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WrapperView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WrapperView.java new file mode 100644 index 0000000..a6dc6f5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6452ffdc5b34af3a0f/WrapperView.java @@ -0,0 +1,78 @@ +package crc6452ffdc5b34af3a0f; + + +public class WrapperView + extends com.microsoft.maui.PlatformWrapperView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_dispatchTouchEvent:(Landroid/view/MotionEvent;)Z:GetDispatchTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_getClipPath:(II)Landroid/graphics/Path;:GetGetClipPath_IIHandler\n" + + "n_getVisibility:()I:GetGetVisibilityHandler\n" + + "n_setVisibility:(I)V:GetSetVisibility_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.WrapperView, Microsoft.Maui", WrapperView.class, __md_methods); + } + + public WrapperView (android.content.Context p0) + { + super (p0); + if (getClass () == WrapperView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.WrapperView, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public boolean dispatchTouchEvent (android.view.MotionEvent p0) + { + return n_dispatchTouchEvent (p0); + } + + private native boolean n_dispatchTouchEvent (android.view.MotionEvent p0); + + public android.graphics.Path getClipPath (int p0, int p1) + { + return n_getClipPath (p0, p1); + } + + private native android.graphics.Path n_getClipPath (int p0, int p1); + + public int getVisibility () + { + return n_getVisibility (); + } + + private native int n_getVisibility (); + + public void setVisibility (int p0) + { + n_setVisibility (p0); + } + + private native void n_setVisibility (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselSpacingItemDecoration.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselSpacingItemDecoration.java new file mode 100644 index 0000000..5ead364 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselSpacingItemDecoration.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class CarouselSpacingItemDecoration + extends androidx.recyclerview.widget.RecyclerView.ItemDecoration + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemOffsets:(Landroid/graphics/Rect;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$State;)V:GetGetItemOffsets_Landroid_graphics_Rect_Landroid_view_View_Landroidx_recyclerview_widget_RecyclerView_Landroidx_recyclerview_widget_RecyclerView_State_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.CarouselSpacingItemDecoration, Microsoft.Maui.Controls", CarouselSpacingItemDecoration.class, __md_methods); + } + + public CarouselSpacingItemDecoration () + { + super (); + if (getClass () == CarouselSpacingItemDecoration.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.CarouselSpacingItemDecoration, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void getItemOffsets (android.graphics.Rect p0, android.view.View p1, androidx.recyclerview.widget.RecyclerView p2, androidx.recyclerview.widget.RecyclerView.State p3) + { + n_getItemOffsets (p0, p1, p2, p3); + } + + private native void n_getItemOffsets (android.graphics.Rect p0, android.view.View p1, androidx.recyclerview.widget.RecyclerView p2, androidx.recyclerview.widget.RecyclerView.State p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewAdapter_2.java new file mode 100644 index 0000000..eede612 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewAdapter_2.java @@ -0,0 +1,62 @@ +package crc645d80431ce5f73f11; + + +public class CarouselViewAdapter_2 + extends crc645d80431ce5f73f11.ItemsViewAdapter_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter`2, Microsoft.Maui.Controls", CarouselViewAdapter_2.class, __md_methods); + } + + public CarouselViewAdapter_2 () + { + super (); + if (getClass () == CarouselViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewOnScrollListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewOnScrollListener.java new file mode 100644 index 0000000..0d35f42 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CarouselViewOnScrollListener.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class CarouselViewOnScrollListener + extends crc645d80431ce5f73f11.RecyclerViewScrollListener_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrollStateChanged:(Landroidx/recyclerview/widget/RecyclerView;I)V:GetOnScrollStateChanged_Landroidx_recyclerview_widget_RecyclerView_IHandler\n" + + "n_onScrolled:(Landroidx/recyclerview/widget/RecyclerView;II)V:GetOnScrolled_Landroidx_recyclerview_widget_RecyclerView_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.CarouselViewOnScrollListener, Microsoft.Maui.Controls", CarouselViewOnScrollListener.class, __md_methods); + } + + public CarouselViewOnScrollListener () + { + super (); + if (getClass () == CarouselViewOnScrollListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.CarouselViewOnScrollListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onScrollStateChanged (androidx.recyclerview.widget.RecyclerView p0, int p1) + { + n_onScrollStateChanged (p0, p1); + } + + private native void n_onScrollStateChanged (androidx.recyclerview.widget.RecyclerView p0, int p1); + + public void onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2) + { + n_onScrolled (p0, p1, p2); + } + + private native void n_onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CenterSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CenterSnapHelper.java new file mode 100644 index 0000000..2930355 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/CenterSnapHelper.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class CenterSnapHelper + extends crc645d80431ce5f73f11.NongreedySnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_findSnapView:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroid/view/View;:GetFindSnapView_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.CenterSnapHelper, Microsoft.Maui.Controls", CenterSnapHelper.class, __md_methods); + } + + public CenterSnapHelper () + { + super (); + if (getClass () == CenterSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.CenterSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public android.view.View findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0) + { + return n_findSnapView (p0); + } + + private native android.view.View n_findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/DataChangeObserver.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/DataChangeObserver.java new file mode 100644 index 0000000..5d6763f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/DataChangeObserver.java @@ -0,0 +1,86 @@ +package crc645d80431ce5f73f11; + + +public class DataChangeObserver + extends androidx.recyclerview.widget.RecyclerView.AdapterDataObserver + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onChanged:()V:GetOnChangedHandler\n" + + "n_onItemRangeInserted:(II)V:GetOnItemRangeInserted_IIHandler\n" + + "n_onItemRangeChanged:(II)V:GetOnItemRangeChanged_IIHandler\n" + + "n_onItemRangeChanged:(IILjava/lang/Object;)V:GetOnItemRangeChanged_IILjava_lang_Object_Handler\n" + + "n_onItemRangeRemoved:(II)V:GetOnItemRangeRemoved_IIHandler\n" + + "n_onItemRangeMoved:(III)V:GetOnItemRangeMoved_IIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.DataChangeObserver, Microsoft.Maui.Controls", DataChangeObserver.class, __md_methods); + } + + public DataChangeObserver () + { + super (); + if (getClass () == DataChangeObserver.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.DataChangeObserver, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onChanged () + { + n_onChanged (); + } + + private native void n_onChanged (); + + public void onItemRangeInserted (int p0, int p1) + { + n_onItemRangeInserted (p0, p1); + } + + private native void n_onItemRangeInserted (int p0, int p1); + + public void onItemRangeChanged (int p0, int p1) + { + n_onItemRangeChanged (p0, p1); + } + + private native void n_onItemRangeChanged (int p0, int p1); + + public void onItemRangeChanged (int p0, int p1, java.lang.Object p2) + { + n_onItemRangeChanged (p0, p1, p2); + } + + private native void n_onItemRangeChanged (int p0, int p1, java.lang.Object p2); + + public void onItemRangeRemoved (int p0, int p1) + { + n_onItemRangeRemoved (p0, p1); + } + + private native void n_onItemRangeRemoved (int p0, int p1); + + public void onItemRangeMoved (int p0, int p1, int p2) + { + n_onItemRangeMoved (p0, p1, p2); + } + + private native void n_onItemRangeMoved (int p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EdgeSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EdgeSnapHelper.java new file mode 100644 index 0000000..fd04ee8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EdgeSnapHelper.java @@ -0,0 +1,38 @@ +package crc645d80431ce5f73f11; + + +public abstract class EdgeSnapHelper + extends crc645d80431ce5f73f11.NongreedySnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.EdgeSnapHelper, Microsoft.Maui.Controls", EdgeSnapHelper.class, __md_methods); + } + + public EdgeSnapHelper () + { + super (); + if (getClass () == EdgeSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.EdgeSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EmptyViewAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EmptyViewAdapter.java new file mode 100644 index 0000000..3878c6f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EmptyViewAdapter.java @@ -0,0 +1,78 @@ +package crc645d80431ce5f73f11; + + +public class EmptyViewAdapter + extends androidx.recyclerview.widget.RecyclerView.Adapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_onViewRecycled:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter, Microsoft.Maui.Controls", EmptyViewAdapter.class, __md_methods); + } + + public EmptyViewAdapter () + { + super (); + if (getClass () == EmptyViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public void onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + public androidx.recyclerview.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native androidx.recyclerview.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSingleSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSingleSnapHelper.java new file mode 100644 index 0000000..b3d7fe5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSingleSnapHelper.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class EndSingleSnapHelper + extends crc645d80431ce5f73f11.SingleSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_calculateDistanceToFinalSnap:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroid/view/View;)[I:GetCalculateDistanceToFinalSnap_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Landroid_view_View_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.EndSingleSnapHelper, Microsoft.Maui.Controls", EndSingleSnapHelper.class, __md_methods); + } + + public EndSingleSnapHelper () + { + super (); + if (getClass () == EndSingleSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.EndSingleSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int[] calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1) + { + return n_calculateDistanceToFinalSnap (p0, p1); + } + + private native int[] n_calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSnapHelper.java new file mode 100644 index 0000000..a51af7b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/EndSnapHelper.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class EndSnapHelper + extends crc645d80431ce5f73f11.EdgeSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_calculateDistanceToFinalSnap:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroid/view/View;)[I:GetCalculateDistanceToFinalSnap_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Landroid_view_View_Handler\n" + + "n_findSnapView:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroid/view/View;:GetFindSnapView_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.EndSnapHelper, Microsoft.Maui.Controls", EndSnapHelper.class, __md_methods); + } + + public EndSnapHelper () + { + super (); + if (getClass () == EndSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.EndSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int[] calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1) + { + return n_calculateDistanceToFinalSnap (p0, p1); + } + + private native int[] n_calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1); + + public android.view.View findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0) + { + return n_findSnapView (p0); + } + + private native android.view.View n_findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GridLayoutSpanSizeLookup.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GridLayoutSpanSizeLookup.java new file mode 100644 index 0000000..58eb64b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GridLayoutSpanSizeLookup.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class GridLayoutSpanSizeLookup + extends androidx.recyclerview.widget.GridLayoutManager.SpanSizeLookup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getSpanSize:(I)I:GetGetSpanSize_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.GridLayoutSpanSizeLookup, Microsoft.Maui.Controls", GridLayoutSpanSizeLookup.class, __md_methods); + } + + public GridLayoutSpanSizeLookup () + { + super (); + if (getClass () == GridLayoutSpanSizeLookup.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.GridLayoutSpanSizeLookup, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getSpanSize (int p0) + { + return n_getSpanSize (p0); + } + + private native int n_getSpanSize (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GroupableItemsViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GroupableItemsViewAdapter_2.java new file mode 100644 index 0000000..6fa9793 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/GroupableItemsViewAdapter_2.java @@ -0,0 +1,62 @@ +package crc645d80431ce5f73f11; + + +public class GroupableItemsViewAdapter_2 + extends crc645d80431ce5f73f11.SelectableItemsViewAdapter_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter`2, Microsoft.Maui.Controls", GroupableItemsViewAdapter_2.class, __md_methods); + } + + public GroupableItemsViewAdapter_2 () + { + super (); + if (getClass () == GroupableItemsViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public androidx.recyclerview.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native androidx.recyclerview.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemContentView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemContentView.java new file mode 100644 index 0000000..497dfe2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemContentView.java @@ -0,0 +1,78 @@ +package crc645d80431ce5f73f11; + + +public class ItemContentView + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls", ItemContentView.class, __md_methods); + } + + public ItemContentView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ItemContentView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ItemContentView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ItemContentView (android.content.Context p0) + { + super (p0); + if (getClass () == ItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemsViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemsViewAdapter_2.java new file mode 100644 index 0000000..ea72e2c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ItemsViewAdapter_2.java @@ -0,0 +1,86 @@ +package crc645d80431ce5f73f11; + + +public class ItemsViewAdapter_2 + extends androidx.recyclerview.widget.RecyclerView.Adapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViewRecycled:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_getItemCount:()I:GetGetItemCountHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter`2, Microsoft.Maui.Controls", ItemsViewAdapter_2.class, __md_methods); + } + + public ItemsViewAdapter_2 () + { + super (); + if (getClass () == ItemsViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + public androidx.recyclerview.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native androidx.recyclerview.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView.java new file mode 100644 index 0000000..3c8c5e5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView.java @@ -0,0 +1,94 @@ +package crc645d80431ce5f73f11; + + +public class MauiCarouselRecyclerView + extends crc645d80431ce5f73f11.MauiRecyclerView_3 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onAttachedToWindow:()V:GetOnAttachedToWindowHandler\n" + + "n_onDetachedFromWindow:()V:GetOnDetachedFromWindowHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls", MauiCarouselRecyclerView.class, __md_methods); + } + + public MauiCarouselRecyclerView (android.content.Context p0) + { + super (p0); + if (getClass () == MauiCarouselRecyclerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiCarouselRecyclerView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiCarouselRecyclerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiCarouselRecyclerView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiCarouselRecyclerView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public void onAttachedToWindow () + { + n_onAttachedToWindow (); + } + + private native void n_onAttachedToWindow (); + + public void onDetachedFromWindow () + { + n_onDetachedFromWindow (); + } + + private native void n_onDetachedFromWindow (); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.java new file mode 100644 index 0000000..44d6161 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.java @@ -0,0 +1,55 @@ +package crc645d80431ce5f73f11; + + +public class MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.ViewTreeObserver.OnGlobalLayoutListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onGlobalLayout:()V:GetOnGlobalLayoutHandler:Android.Views.ViewTreeObserver/IOnGlobalLayoutListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView+CarouselViewOnGlobalLayoutListener, Microsoft.Maui.Controls", MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.class, __md_methods); + } + + public MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener () + { + super (); + if (getClass () == MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView+CarouselViewOnGlobalLayoutListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener (crc645d80431ce5f73f11.MauiCarouselRecyclerView p0) + { + super (); + if (getClass () == MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView+CarouselViewOnGlobalLayoutListener, Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls", this, new java.lang.Object[] { p0 }); + } + } + + public void onGlobalLayout () + { + n_onGlobalLayout (); + } + + private native void n_onGlobalLayout (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiRecyclerView_3.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiRecyclerView_3.java new file mode 100644 index 0000000..0f74e28 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/MauiRecyclerView_3.java @@ -0,0 +1,62 @@ +package crc645d80431ce5f73f11; + + +public class MauiRecyclerView_3 + extends androidx.recyclerview.widget.RecyclerView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls", MauiRecyclerView_3.class, __md_methods); + } + + public MauiRecyclerView_3 (android.content.Context p0) + { + super (p0); + if (getClass () == MauiRecyclerView_3.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiRecyclerView_3 (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == MauiRecyclerView_3.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public MauiRecyclerView_3 (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == MauiRecyclerView_3.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper.java new file mode 100644 index 0000000..e535aa8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public abstract class NongreedySnapHelper + extends androidx.recyclerview.widget.LinearSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_attachToRecyclerView:(Landroidx/recyclerview/widget/RecyclerView;)V:GetAttachToRecyclerView_Landroidx_recyclerview_widget_RecyclerView_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper, Microsoft.Maui.Controls", NongreedySnapHelper.class, __md_methods); + } + + public NongreedySnapHelper () + { + super (); + if (getClass () == NongreedySnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void attachToRecyclerView (androidx.recyclerview.widget.RecyclerView p0) + { + n_attachToRecyclerView (p0); + } + + private native void n_attachToRecyclerView (androidx.recyclerview.widget.RecyclerView p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper_InitialScrollListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper_InitialScrollListener.java new file mode 100644 index 0000000..5a62e32 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/NongreedySnapHelper_InitialScrollListener.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class NongreedySnapHelper_InitialScrollListener + extends androidx.recyclerview.widget.RecyclerView.OnScrollListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrolled:(Landroidx/recyclerview/widget/RecyclerView;II)V:GetOnScrolled_Landroidx_recyclerview_widget_RecyclerView_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper+InitialScrollListener, Microsoft.Maui.Controls", NongreedySnapHelper_InitialScrollListener.class, __md_methods); + } + + public NongreedySnapHelper_InitialScrollListener () + { + super (); + if (getClass () == NongreedySnapHelper_InitialScrollListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper+InitialScrollListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public NongreedySnapHelper_InitialScrollListener (crc645d80431ce5f73f11.NongreedySnapHelper p0) + { + super (); + if (getClass () == NongreedySnapHelper_InitialScrollListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper+InitialScrollListener, Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper, Microsoft.Maui.Controls", this, new java.lang.Object[] { p0 }); + } + } + + public void onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2) + { + n_onScrolled (p0, p1, p2); + } + + private native void n_onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/PositionalSmoothScroller.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/PositionalSmoothScroller.java new file mode 100644 index 0000000..7a26f0a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/PositionalSmoothScroller.java @@ -0,0 +1,62 @@ +package crc645d80431ce5f73f11; + + +public class PositionalSmoothScroller + extends androidx.recyclerview.widget.LinearSmoothScroller + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getVerticalSnapPreference:()I:GetGetVerticalSnapPreferenceHandler\n" + + "n_getHorizontalSnapPreference:()I:GetGetHorizontalSnapPreferenceHandler\n" + + "n_calculateDtToFit:(IIIII)I:GetCalculateDtToFit_IIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.PositionalSmoothScroller, Microsoft.Maui.Controls", PositionalSmoothScroller.class, __md_methods); + } + + public PositionalSmoothScroller (android.content.Context p0) + { + super (p0); + if (getClass () == PositionalSmoothScroller.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.PositionalSmoothScroller, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public int getVerticalSnapPreference () + { + return n_getVerticalSnapPreference (); + } + + private native int n_getVerticalSnapPreference (); + + public int getHorizontalSnapPreference () + { + return n_getHorizontalSnapPreference (); + } + + private native int n_getHorizontalSnapPreference (); + + public int calculateDtToFit (int p0, int p1, int p2, int p3, int p4) + { + return n_calculateDtToFit (p0, p1, p2, p3, p4); + } + + private native int n_calculateDtToFit (int p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/RecyclerViewScrollListener_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/RecyclerViewScrollListener_2.java new file mode 100644 index 0000000..62854d8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/RecyclerViewScrollListener_2.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class RecyclerViewScrollListener_2 + extends androidx.recyclerview.widget.RecyclerView.OnScrollListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrolled:(Landroidx/recyclerview/widget/RecyclerView;II)V:GetOnScrolled_Landroidx_recyclerview_widget_RecyclerView_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener`2, Microsoft.Maui.Controls", RecyclerViewScrollListener_2.class, __md_methods); + } + + public RecyclerViewScrollListener_2 () + { + super (); + if (getClass () == RecyclerViewScrollListener_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2) + { + n_onScrolled (p0, p1, p2); + } + + private native void n_onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ReorderableItemsViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ReorderableItemsViewAdapter_2.java new file mode 100644 index 0000000..15f8b53 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ReorderableItemsViewAdapter_2.java @@ -0,0 +1,38 @@ +package crc645d80431ce5f73f11; + + +public class ReorderableItemsViewAdapter_2 + extends crc645d80431ce5f73f11.GroupableItemsViewAdapter_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter`2, Microsoft.Maui.Controls", ReorderableItemsViewAdapter_2.class, __md_methods); + } + + public ReorderableItemsViewAdapter_2 () + { + super (); + if (getClass () == ReorderableItemsViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ScrollHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ScrollHelper.java new file mode 100644 index 0000000..5651894 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/ScrollHelper.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class ScrollHelper + extends androidx.recyclerview.widget.RecyclerView.OnScrollListener + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrolled:(Landroidx/recyclerview/widget/RecyclerView;II)V:GetOnScrolled_Landroidx_recyclerview_widget_RecyclerView_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.ScrollHelper, Microsoft.Maui.Controls", ScrollHelper.class, __md_methods); + } + + public ScrollHelper () + { + super (); + if (getClass () == ScrollHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ScrollHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ScrollHelper (androidx.recyclerview.widget.RecyclerView p0) + { + super (); + if (getClass () == ScrollHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.ScrollHelper, Microsoft.Maui.Controls", "AndroidX.RecyclerView.Widget.RecyclerView, Xamarin.AndroidX.RecyclerView", this, new java.lang.Object[] { p0 }); + } + } + + public void onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2) + { + n_onScrolled (p0, p1, p2); + } + + private native void n_onScrolled (androidx.recyclerview.widget.RecyclerView p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableItemsViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableItemsViewAdapter_2.java new file mode 100644 index 0000000..a937e17 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableItemsViewAdapter_2.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class SelectableItemsViewAdapter_2 + extends crc645d80431ce5f73f11.StructuredItemsViewAdapter_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_onViewRecycled:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter`2, Microsoft.Maui.Controls", SelectableItemsViewAdapter_2.class, __md_methods); + } + + public SelectableItemsViewAdapter_2 () + { + super (); + if (getClass () == SelectableItemsViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + public void onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableViewHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableViewHolder.java new file mode 100644 index 0000000..f3837c9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SelectableViewHolder.java @@ -0,0 +1,47 @@ +package crc645d80431ce5f73f11; + + +public abstract class SelectableViewHolder + extends androidx.recyclerview.widget.RecyclerView.ViewHolder + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder, Microsoft.Maui.Controls", SelectableViewHolder.class, __md_methods); + } + + public SelectableViewHolder (android.view.View p0) + { + super (p0); + if (getClass () == SelectableViewHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleItemTouchHelperCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleItemTouchHelperCallback.java new file mode 100644 index 0000000..305c27b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleItemTouchHelperCallback.java @@ -0,0 +1,70 @@ +package crc645d80431ce5f73f11; + + +public class SimpleItemTouchHelperCallback + extends androidx.recyclerview.widget.ItemTouchHelper.Callback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_isLongPressDragEnabled:()Z:GetIsLongPressDragEnabledHandler\n" + + "n_getMovementFlags:(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)I:GetGetMovementFlags_Landroidx_recyclerview_widget_RecyclerView_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + "n_onMove:(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z:GetOnMove_Landroidx_recyclerview_widget_RecyclerView_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler\n" + + "n_onSwiped:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnSwiped_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback, Microsoft.Maui.Controls", SimpleItemTouchHelperCallback.class, __md_methods); + } + + public SimpleItemTouchHelperCallback () + { + super (); + if (getClass () == SimpleItemTouchHelperCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean isLongPressDragEnabled () + { + return n_isLongPressDragEnabled (); + } + + private native boolean n_isLongPressDragEnabled (); + + public int getMovementFlags (androidx.recyclerview.widget.RecyclerView p0, androidx.recyclerview.widget.RecyclerView.ViewHolder p1) + { + return n_getMovementFlags (p0, p1); + } + + private native int n_getMovementFlags (androidx.recyclerview.widget.RecyclerView p0, androidx.recyclerview.widget.RecyclerView.ViewHolder p1); + + public boolean onMove (androidx.recyclerview.widget.RecyclerView p0, androidx.recyclerview.widget.RecyclerView.ViewHolder p1, androidx.recyclerview.widget.RecyclerView.ViewHolder p2) + { + return n_onMove (p0, p1, p2); + } + + private native boolean n_onMove (androidx.recyclerview.widget.RecyclerView p0, androidx.recyclerview.widget.RecyclerView.ViewHolder p1, androidx.recyclerview.widget.RecyclerView.ViewHolder p2); + + public void onSwiped (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onSwiped (p0, p1); + } + + private native void n_onSwiped (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleViewHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleViewHolder.java new file mode 100644 index 0000000..a277f1b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SimpleViewHolder.java @@ -0,0 +1,38 @@ +package crc645d80431ce5f73f11; + + +public class SimpleViewHolder + extends androidx.recyclerview.widget.RecyclerView.ViewHolder + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SimpleViewHolder, Microsoft.Maui.Controls", SimpleViewHolder.class, __md_methods); + } + + public SimpleViewHolder (android.view.View p0) + { + super (p0); + if (getClass () == SimpleViewHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SimpleViewHolder, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SingleSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SingleSnapHelper.java new file mode 100644 index 0000000..f1d7749 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SingleSnapHelper.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class SingleSnapHelper + extends androidx.recyclerview.widget.PagerSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_findSnapView:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroid/view/View;:GetFindSnapView_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Handler\n" + + "n_findTargetSnapPosition:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;II)I:GetFindTargetSnapPosition_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SingleSnapHelper, Microsoft.Maui.Controls", SingleSnapHelper.class, __md_methods); + } + + public SingleSnapHelper () + { + super (); + if (getClass () == SingleSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SingleSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public android.view.View findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0) + { + return n_findSnapView (p0); + } + + private native android.view.View n_findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0); + + public int findTargetSnapPosition (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, int p1, int p2) + { + return n_findTargetSnapPosition (p0, p1, p2); + } + + private native int n_findTargetSnapPosition (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SizedItemContentView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SizedItemContentView.java new file mode 100644 index 0000000..e21aa81 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SizedItemContentView.java @@ -0,0 +1,70 @@ +package crc645d80431ce5f73f11; + + +public class SizedItemContentView + extends crc645d80431ce5f73f11.ItemContentView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls", SizedItemContentView.class, __md_methods); + } + + public SizedItemContentView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == SizedItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public SizedItemContentView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == SizedItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public SizedItemContentView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == SizedItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public SizedItemContentView (android.content.Context p0) + { + super (p0); + if (getClass () == SizedItemContentView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SpacingItemDecoration.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SpacingItemDecoration.java new file mode 100644 index 0000000..ae52d43 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/SpacingItemDecoration.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class SpacingItemDecoration + extends androidx.recyclerview.widget.RecyclerView.ItemDecoration + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemOffsets:(Landroid/graphics/Rect;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$State;)V:GetGetItemOffsets_Landroid_graphics_Rect_Landroid_view_View_Landroidx_recyclerview_widget_RecyclerView_Landroidx_recyclerview_widget_RecyclerView_State_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration, Microsoft.Maui.Controls", SpacingItemDecoration.class, __md_methods); + } + + public SpacingItemDecoration () + { + super (); + if (getClass () == SpacingItemDecoration.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void getItemOffsets (android.graphics.Rect p0, android.view.View p1, androidx.recyclerview.widget.RecyclerView p2, androidx.recyclerview.widget.RecyclerView.State p3) + { + n_getItemOffsets (p0, p1, p2, p3); + } + + private native void n_getItemOffsets (android.graphics.Rect p0, android.view.View p1, androidx.recyclerview.widget.RecyclerView p2, androidx.recyclerview.widget.RecyclerView.State p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSingleSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSingleSnapHelper.java new file mode 100644 index 0000000..b889bf4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSingleSnapHelper.java @@ -0,0 +1,46 @@ +package crc645d80431ce5f73f11; + + +public class StartSingleSnapHelper + extends crc645d80431ce5f73f11.SingleSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_calculateDistanceToFinalSnap:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroid/view/View;)[I:GetCalculateDistanceToFinalSnap_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Landroid_view_View_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.StartSingleSnapHelper, Microsoft.Maui.Controls", StartSingleSnapHelper.class, __md_methods); + } + + public StartSingleSnapHelper () + { + super (); + if (getClass () == StartSingleSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.StartSingleSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int[] calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1) + { + return n_calculateDistanceToFinalSnap (p0, p1); + } + + private native int[] n_calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSnapHelper.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSnapHelper.java new file mode 100644 index 0000000..5886cb5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StartSnapHelper.java @@ -0,0 +1,54 @@ +package crc645d80431ce5f73f11; + + +public class StartSnapHelper + extends crc645d80431ce5f73f11.EdgeSnapHelper + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_calculateDistanceToFinalSnap:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroid/view/View;)[I:GetCalculateDistanceToFinalSnap_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Landroid_view_View_Handler\n" + + "n_findSnapView:(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroid/view/View;:GetFindSnapView_Landroidx_recyclerview_widget_RecyclerView_LayoutManager_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.StartSnapHelper, Microsoft.Maui.Controls", StartSnapHelper.class, __md_methods); + } + + public StartSnapHelper () + { + super (); + if (getClass () == StartSnapHelper.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.StartSnapHelper, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int[] calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1) + { + return n_calculateDistanceToFinalSnap (p0, p1); + } + + private native int[] n_calculateDistanceToFinalSnap (androidx.recyclerview.widget.RecyclerView.LayoutManager p0, android.view.View p1); + + public android.view.View findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0) + { + return n_findSnapView (p0); + } + + private native android.view.View n_findSnapView (androidx.recyclerview.widget.RecyclerView.LayoutManager p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StructuredItemsViewAdapter_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StructuredItemsViewAdapter_2.java new file mode 100644 index 0000000..8f4264e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/StructuredItemsViewAdapter_2.java @@ -0,0 +1,62 @@ +package crc645d80431ce5f73f11; + + +public class StructuredItemsViewAdapter_2 + extends crc645d80431ce5f73f11.ItemsViewAdapter_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_onBindViewHolder:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter`2, Microsoft.Maui.Controls", StructuredItemsViewAdapter_2.class, __md_methods); + } + + public StructuredItemsViewAdapter_2 () + { + super (); + if (getClass () == StructuredItemsViewAdapter_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter`2, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public androidx.recyclerview.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native androidx.recyclerview.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + public void onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (androidx.recyclerview.widget.RecyclerView.ViewHolder p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TemplatedItemViewHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TemplatedItemViewHolder.java new file mode 100644 index 0000000..d3c35de --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TemplatedItemViewHolder.java @@ -0,0 +1,38 @@ +package crc645d80431ce5f73f11; + + +public class TemplatedItemViewHolder + extends crc645d80431ce5f73f11.SelectableViewHolder + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder, Microsoft.Maui.Controls", TemplatedItemViewHolder.class, __md_methods); + } + + public TemplatedItemViewHolder (android.view.View p0) + { + super (p0); + if (getClass () == TemplatedItemViewHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TextViewHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TextViewHolder.java new file mode 100644 index 0000000..6076bf9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc645d80431ce5f73f11/TextViewHolder.java @@ -0,0 +1,38 @@ +package crc645d80431ce5f73f11; + + +public class TextViewHolder + extends crc645d80431ce5f73f11.SelectableViewHolder + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Items.TextViewHolder, Microsoft.Maui.Controls", TextViewHolder.class, __md_methods); + } + + public TextViewHolder (android.view.View p0) + { + super (p0); + if (getClass () == TextViewHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Items.TextViewHolder, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorCallbackActivity.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorCallbackActivity.java new file mode 100644 index 0000000..3588279 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorCallbackActivity.java @@ -0,0 +1,46 @@ +package crc6468b6408a11370c2f; + + +public abstract class WebAuthenticatorCallbackActivity + extends android.app.Activity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity, Microsoft.Maui.Essentials", WebAuthenticatorCallbackActivity.class, __md_methods); + } + + public WebAuthenticatorCallbackActivity () + { + super (); + if (getClass () == WebAuthenticatorCallbackActivity.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorIntermediateActivity.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorIntermediateActivity.java new file mode 100644 index 0000000..64351c2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6468b6408a11370c2f/WebAuthenticatorIntermediateActivity.java @@ -0,0 +1,70 @@ +package crc6468b6408a11370c2f; + + +public class WebAuthenticatorIntermediateActivity + extends android.app.Activity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onResume:()V:GetOnResumeHandler\n" + + "n_onNewIntent:(Landroid/content/Intent;)V:GetOnNewIntent_Landroid_content_Intent_Handler\n" + + "n_onSaveInstanceState:(Landroid/os/Bundle;)V:GetOnSaveInstanceState_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials", WebAuthenticatorIntermediateActivity.class, __md_methods); + } + + public WebAuthenticatorIntermediateActivity () + { + super (); + if (getClass () == WebAuthenticatorIntermediateActivity.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + public void onResume () + { + n_onResume (); + } + + private native void n_onResume (); + + public void onNewIntent (android.content.Intent p0) + { + n_onNewIntent (p0); + } + + private native void n_onNewIntent (android.content.Intent p0); + + public void onSaveInstanceState (android.os.Bundle p0) + { + n_onSaveInstanceState (p0); + } + + private native void n_onSaveInstanceState (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallback.java new file mode 100644 index 0000000..20aecfb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallback.java @@ -0,0 +1,38 @@ +package crc6488302ad6e9e4df1a; + + +public class ImageLoaderCallback + extends crc6488302ad6e9e4df1a.ImageLoaderCallbackBase_1 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.ImageLoaderCallback, Microsoft.Maui", ImageLoaderCallback.class, __md_methods); + } + + public ImageLoaderCallback () + { + super (); + if (getClass () == ImageLoaderCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ImageLoaderCallback, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallbackBase_1.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallbackBase_1.java new file mode 100644 index 0000000..fd473d2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderCallbackBase_1.java @@ -0,0 +1,47 @@ +package crc6488302ad6e9e4df1a; + + +public abstract class ImageLoaderCallbackBase_1 + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.microsoft.maui.ImageLoaderCallback +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onComplete:(Ljava/lang/Boolean;Landroid/graphics/drawable/Drawable;Ljava/lang/Runnable;)V:GetOnComplete_Ljava_lang_Boolean_Landroid_graphics_drawable_Drawable_Ljava_lang_Runnable_Handler:Microsoft.Maui.IImageLoaderCallbackInvoker, Microsoft.Maui\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.ImageLoaderCallbackBase`1, Microsoft.Maui", ImageLoaderCallbackBase_1.class, __md_methods); + } + + public ImageLoaderCallbackBase_1 () + { + super (); + if (getClass () == ImageLoaderCallbackBase_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ImageLoaderCallbackBase`1, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onComplete (java.lang.Boolean p0, android.graphics.drawable.Drawable p1, java.lang.Runnable p2) + { + n_onComplete (p0, p1, p2); + } + + private native void n_onComplete (java.lang.Boolean p0, android.graphics.drawable.Drawable p1, java.lang.Runnable p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderResultCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderResultCallback.java new file mode 100644 index 0000000..31bbf0e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/ImageLoaderResultCallback.java @@ -0,0 +1,38 @@ +package crc6488302ad6e9e4df1a; + + +public class ImageLoaderResultCallback + extends crc6488302ad6e9e4df1a.ImageLoaderCallbackBase_1 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.ImageLoaderResultCallback, Microsoft.Maui", ImageLoaderResultCallback.class, __md_methods); + } + + public ImageLoaderResultCallback () + { + super (); + if (getClass () == ImageLoaderResultCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ImageLoaderResultCallback, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiAppCompatActivity.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiAppCompatActivity.java new file mode 100644 index 0000000..4d5eb3b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiAppCompatActivity.java @@ -0,0 +1,134 @@ +package crc6488302ad6e9e4df1a; + + +public class MauiAppCompatActivity + extends androidx.appcompat.app.AppCompatActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_dispatchTouchEvent:(Landroid/view/MotionEvent;)Z:GetDispatchTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onActivityResult:(IILandroid/content/Intent;)V:GetOnActivityResult_IILandroid_content_Intent_Handler\n" + + "n_onBackPressed:()V:GetOnBackPressedHandler\n" + + "n_onConfigurationChanged:(Landroid/content/res/Configuration;)V:GetOnConfigurationChanged_Landroid_content_res_Configuration_Handler\n" + + "n_onNewIntent:(Landroid/content/Intent;)V:GetOnNewIntent_Landroid_content_Intent_Handler\n" + + "n_onPostCreate:(Landroid/os/Bundle;)V:GetOnPostCreate_Landroid_os_Bundle_Handler\n" + + "n_onPostResume:()V:GetOnPostResumeHandler\n" + + "n_onRestart:()V:GetOnRestartHandler\n" + + "n_onRequestPermissionsResult:(I[Ljava/lang/String;[I)V:GetOnRequestPermissionsResult_IarrayLjava_lang_String_arrayIHandler\n" + + "n_onRestoreInstanceState:(Landroid/os/Bundle;)V:GetOnRestoreInstanceState_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.MauiAppCompatActivity, Microsoft.Maui", MauiAppCompatActivity.class, __md_methods); + } + + public MauiAppCompatActivity () + { + super (); + if (getClass () == MauiAppCompatActivity.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.MauiAppCompatActivity, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public MauiAppCompatActivity (int p0) + { + super (p0); + if (getClass () == MauiAppCompatActivity.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.MauiAppCompatActivity, Microsoft.Maui", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + public boolean dispatchTouchEvent (android.view.MotionEvent p0) + { + return n_dispatchTouchEvent (p0); + } + + private native boolean n_dispatchTouchEvent (android.view.MotionEvent p0); + + public void onActivityResult (int p0, int p1, android.content.Intent p2) + { + n_onActivityResult (p0, p1, p2); + } + + private native void n_onActivityResult (int p0, int p1, android.content.Intent p2); + + public void onBackPressed () + { + n_onBackPressed (); + } + + private native void n_onBackPressed (); + + public void onConfigurationChanged (android.content.res.Configuration p0) + { + n_onConfigurationChanged (p0); + } + + private native void n_onConfigurationChanged (android.content.res.Configuration p0); + + public void onNewIntent (android.content.Intent p0) + { + n_onNewIntent (p0); + } + + private native void n_onNewIntent (android.content.Intent p0); + + public void onPostCreate (android.os.Bundle p0) + { + n_onPostCreate (p0); + } + + private native void n_onPostCreate (android.os.Bundle p0); + + public void onPostResume () + { + n_onPostResume (); + } + + private native void n_onPostResume (); + + public void onRestart () + { + n_onRestart (); + } + + private native void n_onRestart (); + + public void onRequestPermissionsResult (int p0, java.lang.String[] p1, int[] p2) + { + n_onRequestPermissionsResult (p0, p1, p2); + } + + private native void n_onRequestPermissionsResult (int p0, java.lang.String[] p1, int[] p2); + + public void onRestoreInstanceState (android.os.Bundle p0) + { + n_onRestoreInstanceState (p0); + } + + private native void n_onRestoreInstanceState (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication.java new file mode 100644 index 0000000..40cb2e9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication.java @@ -0,0 +1,66 @@ +package crc6488302ad6e9e4df1a; + + +public abstract class MauiApplication + extends android.app.Application + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:()V:GetOnCreateHandler\n" + + "n_onLowMemory:()V:GetOnLowMemoryHandler\n" + + "n_onTrimMemory:(I)V:GetOnTrimMemory_IHandler\n" + + "n_onConfigurationChanged:(Landroid/content/res/Configuration;)V:GetOnConfigurationChanged_Landroid_content_res_Configuration_Handler\n" + + ""; + } + + public MauiApplication () + { + mono.MonoPackageManager.setContext (this); + } + + public void onCreate () + { + n_onCreate (); + } + + private native void n_onCreate (); + + public void onLowMemory () + { + n_onLowMemory (); + } + + private native void n_onLowMemory (); + + public void onTrimMemory (int p0) + { + n_onTrimMemory (p0); + } + + private native void n_onTrimMemory (int p0); + + public void onConfigurationChanged (android.content.res.Configuration p0) + { + n_onConfigurationChanged (p0); + } + + private native void n_onConfigurationChanged (android.content.res.Configuration p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication_ActivityLifecycleCallbacks.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication_ActivityLifecycleCallbacks.java new file mode 100644 index 0000000..2a5bfda --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6488302ad6e9e4df1a/MauiApplication_ActivityLifecycleCallbacks.java @@ -0,0 +1,207 @@ +package crc6488302ad6e9e4df1a; + + +public class MauiApplication_ActivityLifecycleCallbacks + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.app.Application.ActivityLifecycleCallbacks +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onActivityCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityDestroyed:(Landroid/app/Activity;)V:GetOnActivityDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPaused:(Landroid/app/Activity;)V:GetOnActivityPaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityResumed:(Landroid/app/Activity;)V:GetOnActivityResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivitySaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivitySaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStarted:(Landroid/app/Activity;)V:GetOnActivityStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStopped:(Landroid/app/Activity;)V:GetOnActivityStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPostCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostDestroyed:(Landroid/app/Activity;)V:GetOnActivityPostDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostPaused:(Landroid/app/Activity;)V:GetOnActivityPostPaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostResumed:(Landroid/app/Activity;)V:GetOnActivityPostResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostSaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPostSaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostStarted:(Landroid/app/Activity;)V:GetOnActivityPostStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostStopped:(Landroid/app/Activity;)V:GetOnActivityPostStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPreCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreDestroyed:(Landroid/app/Activity;)V:GetOnActivityPreDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPrePaused:(Landroid/app/Activity;)V:GetOnActivityPrePaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreResumed:(Landroid/app/Activity;)V:GetOnActivityPreResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreSaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPreSaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreStarted:(Landroid/app/Activity;)V:GetOnActivityPreStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreStopped:(Landroid/app/Activity;)V:GetOnActivityPreStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.MauiApplication+ActivityLifecycleCallbacks, Microsoft.Maui", MauiApplication_ActivityLifecycleCallbacks.class, __md_methods); + } + + public MauiApplication_ActivityLifecycleCallbacks () + { + super (); + if (getClass () == MauiApplication_ActivityLifecycleCallbacks.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.MauiApplication+ActivityLifecycleCallbacks, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onActivityCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityCreated (p0, p1); + } + + private native void n_onActivityCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityDestroyed (android.app.Activity p0) + { + n_onActivityDestroyed (p0); + } + + private native void n_onActivityDestroyed (android.app.Activity p0); + + public void onActivityPaused (android.app.Activity p0) + { + n_onActivityPaused (p0); + } + + private native void n_onActivityPaused (android.app.Activity p0); + + public void onActivityResumed (android.app.Activity p0) + { + n_onActivityResumed (p0); + } + + private native void n_onActivityResumed (android.app.Activity p0); + + public void onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivitySaveInstanceState (p0, p1); + } + + private native void n_onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityStarted (android.app.Activity p0) + { + n_onActivityStarted (p0); + } + + private native void n_onActivityStarted (android.app.Activity p0); + + public void onActivityStopped (android.app.Activity p0) + { + n_onActivityStopped (p0); + } + + private native void n_onActivityStopped (android.app.Activity p0); + + public void onActivityPostCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPostCreated (p0, p1); + } + + private native void n_onActivityPostCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPostDestroyed (android.app.Activity p0) + { + n_onActivityPostDestroyed (p0); + } + + private native void n_onActivityPostDestroyed (android.app.Activity p0); + + public void onActivityPostPaused (android.app.Activity p0) + { + n_onActivityPostPaused (p0); + } + + private native void n_onActivityPostPaused (android.app.Activity p0); + + public void onActivityPostResumed (android.app.Activity p0) + { + n_onActivityPostResumed (p0); + } + + private native void n_onActivityPostResumed (android.app.Activity p0); + + public void onActivityPostSaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPostSaveInstanceState (p0, p1); + } + + private native void n_onActivityPostSaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPostStarted (android.app.Activity p0) + { + n_onActivityPostStarted (p0); + } + + private native void n_onActivityPostStarted (android.app.Activity p0); + + public void onActivityPostStopped (android.app.Activity p0) + { + n_onActivityPostStopped (p0); + } + + private native void n_onActivityPostStopped (android.app.Activity p0); + + public void onActivityPreCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPreCreated (p0, p1); + } + + private native void n_onActivityPreCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPreDestroyed (android.app.Activity p0) + { + n_onActivityPreDestroyed (p0); + } + + private native void n_onActivityPreDestroyed (android.app.Activity p0); + + public void onActivityPrePaused (android.app.Activity p0) + { + n_onActivityPrePaused (p0); + } + + private native void n_onActivityPrePaused (android.app.Activity p0); + + public void onActivityPreResumed (android.app.Activity p0) + { + n_onActivityPreResumed (p0); + } + + private native void n_onActivityPreResumed (android.app.Activity p0); + + public void onActivityPreSaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPreSaveInstanceState (p0, p1); + } + + private native void n_onActivityPreSaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPreStarted (android.app.Activity p0) + { + n_onActivityPreStarted (p0); + } + + private native void n_onActivityPreStarted (android.app.Activity p0); + + public void onActivityPreStopped (android.app.Activity p0) + { + n_onActivityPreStopped (p0); + } + + private native void n_onActivityPreStopped (android.app.Activity p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6493855b22b6fa0721/TextToSpeechInternalImplementation.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6493855b22b6fa0721/TextToSpeechInternalImplementation.java new file mode 100644 index 0000000..18f073b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc6493855b22b6fa0721/TextToSpeechInternalImplementation.java @@ -0,0 +1,56 @@ +package crc6493855b22b6fa0721; + + +public class TextToSpeechInternalImplementation + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.speech.tts.TextToSpeech.OnInitListener, + android.speech.tts.TextToSpeech.OnUtteranceCompletedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInit:(I)V:GetOnInit_IHandler:Android.Speech.Tts.TextToSpeech/IOnInitListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onUtteranceCompleted:(Ljava/lang/String;)V:GetOnUtteranceCompleted_Ljava_lang_String_Handler:Android.Speech.Tts.TextToSpeech/IOnUtteranceCompletedListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Media.TextToSpeechInternalImplementation, Microsoft.Maui.Essentials", TextToSpeechInternalImplementation.class, __md_methods); + } + + public TextToSpeechInternalImplementation () + { + super (); + if (getClass () == TextToSpeechInternalImplementation.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Media.TextToSpeechInternalImplementation, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onInit (int p0) + { + n_onInit (p0); + } + + private native void n_onInit (int p0); + + public void onUtteranceCompleted (java.lang.String p0) + { + n_onUtteranceCompleted (p0); + } + + private native void n_onUtteranceCompleted (java.lang.String p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_Listeners.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_Listeners.java new file mode 100644 index 0000000..6d1594a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_Listeners.java @@ -0,0 +1,89 @@ +package crc649ff77a65592e7d55; + + +public class TabbedPageManager_Listeners + extends androidx.viewpager2.widget.ViewPager2.OnPageChangeCallback + implements + mono.android.IGCUserPeer, + com.google.android.material.tabs.TabLayout.BaseOnTabSelectedListener, + com.google.android.material.navigation.NavigationBarView.OnItemSelectedListener, + com.google.android.material.tabs.TabLayoutMediator.TabConfigurationStrategy +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPageSelected:(I)V:GetOnPageSelected_IHandler\n" + + "n_onTabReselected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabReselected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onTabSelected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabSelected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onTabUnselected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabUnselected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onNavigationItemSelected:(Landroid/view/MenuItem;)Z:GetOnNavigationItemSelected_Landroid_view_MenuItem_Handler:Google.Android.Material.Navigation.NavigationBarView/IOnItemSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onConfigureTab:(Lcom/google/android/material/tabs/TabLayout$Tab;I)V:GetOnConfigureTab_Lcom_google_android_material_tabs_TabLayout_Tab_IHandler:Google.Android.Material.Tabs.TabLayoutMediator/ITabConfigurationStrategyInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+Listeners, Microsoft.Maui.Controls", TabbedPageManager_Listeners.class, __md_methods); + } + + public TabbedPageManager_Listeners () + { + super (); + if (getClass () == TabbedPageManager_Listeners.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+Listeners, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public void onPageSelected (int p0) + { + n_onPageSelected (p0); + } + + private native void n_onPageSelected (int p0); + + public void onTabReselected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabReselected (p0); + } + + private native void n_onTabReselected (com.google.android.material.tabs.TabLayout.Tab p0); + + public void onTabSelected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabSelected (p0); + } + + private native void n_onTabSelected (com.google.android.material.tabs.TabLayout.Tab p0); + + public void onTabUnselected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabUnselected (p0); + } + + private native void n_onTabUnselected (com.google.android.material.tabs.TabLayout.Tab p0); + + public boolean onNavigationItemSelected (android.view.MenuItem p0) + { + return n_onNavigationItemSelected (p0); + } + + private native boolean n_onNavigationItemSelected (android.view.MenuItem p0); + + public void onConfigureTab (com.google.android.material.tabs.TabLayout.Tab p0, int p1) + { + n_onConfigureTab (p0, p1); + } + + private native void n_onConfigureTab (com.google.android.material.tabs.TabLayout.Tab p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_TempView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_TempView.java new file mode 100644 index 0000000..e85ab1c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc649ff77a65592e7d55/TabbedPageManager_TempView.java @@ -0,0 +1,62 @@ +package crc649ff77a65592e7d55; + + +public class TabbedPageManager_TempView + extends android.view.View + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls", TabbedPageManager_TempView.class, __md_methods); + } + + public TabbedPageManager_TempView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == TabbedPageManager_TempView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public TabbedPageManager_TempView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == TabbedPageManager_TempView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public TabbedPageManager_TempView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == TabbedPageManager_TempView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public TabbedPageManager_TempView (android.content.Context p0) + { + super (p0); + if (getClass () == TabbedPageManager_TempView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a096dc44ad241142/PlatformTicker_DurationScaleListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a096dc44ad241142/PlatformTicker_DurationScaleListener.java new file mode 100644 index 0000000..294de7a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a096dc44ad241142/PlatformTicker_DurationScaleListener.java @@ -0,0 +1,47 @@ +package crc64a096dc44ad241142; + + +public class PlatformTicker_DurationScaleListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.animation.ValueAnimator.DurationScaleChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onChanged:(F)V:GetOnChanged_FHandler:Android.Animation.ValueAnimator/IDurationScaleChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Animations.PlatformTicker+DurationScaleListener, Microsoft.Maui", PlatformTicker_DurationScaleListener.class, __md_methods); + } + + public PlatformTicker_DurationScaleListener () + { + super (); + if (getClass () == PlatformTicker_DurationScaleListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Animations.PlatformTicker+DurationScaleListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onChanged (float p0) + { + n_onChanged (p0); + } + + private native void n_onChanged (float p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/FloatArrayEvaluator.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/FloatArrayEvaluator.java new file mode 100644 index 0000000..b1de6fb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/FloatArrayEvaluator.java @@ -0,0 +1,47 @@ +package crc64a25b61d9f8ee364f; + + +public class FloatArrayEvaluator + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.animation.TypeEvaluator +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_evaluate:(FLjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;:GetEvaluate_FLjava_lang_Object_Ljava_lang_Object_Handler:Android.Animation.ITypeEvaluatorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.Transitions.FloatArrayEvaluator, Xamarin.AndroidX.Transition", FloatArrayEvaluator.class, __md_methods); + } + + public FloatArrayEvaluator () + { + super (); + if (getClass () == FloatArrayEvaluator.class) { + mono.android.TypeManager.Activate ("AndroidX.Transitions.FloatArrayEvaluator, Xamarin.AndroidX.Transition", "", this, new java.lang.Object[] { }); + } + } + + public java.lang.Object evaluate (float p0, java.lang.Object p1, java.lang.Object p2) + { + return n_evaluate (p0, p1, p2); + } + + private native java.lang.Object n_evaluate (float p0, java.lang.Object p1, java.lang.Object p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/RectEvaluator.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/RectEvaluator.java new file mode 100644 index 0000000..17f0dd3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/RectEvaluator.java @@ -0,0 +1,47 @@ +package crc64a25b61d9f8ee364f; + + +public class RectEvaluator + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.animation.TypeEvaluator +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_evaluate:(FLjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;:GetEvaluate_FLjava_lang_Object_Ljava_lang_Object_Handler:Android.Animation.ITypeEvaluatorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.Transitions.RectEvaluator, Xamarin.AndroidX.Transition", RectEvaluator.class, __md_methods); + } + + public RectEvaluator () + { + super (); + if (getClass () == RectEvaluator.class) { + mono.android.TypeManager.Activate ("AndroidX.Transitions.RectEvaluator, Xamarin.AndroidX.Transition", "", this, new java.lang.Object[] { }); + } + } + + public java.lang.Object evaluate (float p0, java.lang.Object p1, java.lang.Object p2) + { + return n_evaluate (p0, p1, p2); + } + + private native java.lang.Object n_evaluate (float p0, java.lang.Object p1, java.lang.Object p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils.java new file mode 100644 index 0000000..8632a7a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils.java @@ -0,0 +1,38 @@ +package crc64a25b61d9f8ee364f; + + +public class TransitionUtils + extends java.lang.Object + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("AndroidX.Transitions.TransitionUtils, Xamarin.AndroidX.Transition", TransitionUtils.class, __md_methods); + } + + public TransitionUtils () + { + super (); + if (getClass () == TransitionUtils.class) { + mono.android.TypeManager.Activate ("AndroidX.Transitions.TransitionUtils, Xamarin.AndroidX.Transition", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils_MatrixEvaluator.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils_MatrixEvaluator.java new file mode 100644 index 0000000..f652956 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64a25b61d9f8ee364f/TransitionUtils_MatrixEvaluator.java @@ -0,0 +1,47 @@ +package crc64a25b61d9f8ee364f; + + +public class TransitionUtils_MatrixEvaluator + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.animation.TypeEvaluator +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_evaluate:(FLjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;:GetEvaluate_FLjava_lang_Object_Ljava_lang_Object_Handler:Android.Animation.ITypeEvaluatorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("AndroidX.Transitions.TransitionUtils+MatrixEvaluator, Xamarin.AndroidX.Transition", TransitionUtils_MatrixEvaluator.class, __md_methods); + } + + public TransitionUtils_MatrixEvaluator () + { + super (); + if (getClass () == TransitionUtils_MatrixEvaluator.class) { + mono.android.TypeManager.Activate ("AndroidX.Transitions.TransitionUtils+MatrixEvaluator, Xamarin.AndroidX.Transition", "", this, new java.lang.Object[] { }); + } + } + + public java.lang.Object evaluate (float p0, java.lang.Object p1, java.lang.Object p2) + { + return n_evaluate (p0, p1, p2); + } + + private native java.lang.Object n_evaluate (float p0, java.lang.Object p1, java.lang.Object p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/LinearGradientShaderFactory.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/LinearGradientShaderFactory.java new file mode 100644 index 0000000..edec0a3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/LinearGradientShaderFactory.java @@ -0,0 +1,46 @@ +package crc64b5e713d400f589b7; + + +public class LinearGradientShaderFactory + extends android.graphics.drawable.ShapeDrawable.ShaderFactory + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_resize:(II)Landroid/graphics/Shader;:GetResize_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Graphics.LinearGradientShaderFactory, Microsoft.Maui", LinearGradientShaderFactory.class, __md_methods); + } + + public LinearGradientShaderFactory () + { + super (); + if (getClass () == LinearGradientShaderFactory.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.LinearGradientShaderFactory, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public android.graphics.Shader resize (int p0, int p1) + { + return n_resize (p0, p1); + } + + private native android.graphics.Shader n_resize (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/MauiDrawable.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/MauiDrawable.java new file mode 100644 index 0000000..8d77202 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/MauiDrawable.java @@ -0,0 +1,87 @@ +package crc64b5e713d400f589b7; + + +public class MauiDrawable + extends android.graphics.drawable.PaintDrawable + implements + mono.android.IGCUserPeer, + com.microsoft.maui.PlatformShadowDrawable +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBoundsChange:(Landroid/graphics/Rect;)V:GetOnBoundsChange_Landroid_graphics_Rect_Handler\n" + + "n_onDraw:(Landroid/graphics/drawable/shapes/Shape;Landroid/graphics/Canvas;Landroid/graphics/Paint;)V:GetOnDraw_Landroid_graphics_drawable_shapes_Shape_Landroid_graphics_Canvas_Landroid_graphics_Paint_Handler\n" + + "n_canDrawShadow:()Z:GetCanDrawShadowHandler:Microsoft.Maui.IPlatformShadowDrawableInvoker, Microsoft.Maui\n" + + "n_drawShadow:(Landroid/graphics/Canvas;Landroid/graphics/Paint;Landroid/graphics/Path;)V:GetDrawShadow_Landroid_graphics_Canvas_Landroid_graphics_Paint_Landroid_graphics_Path_Handler:Microsoft.Maui.IPlatformShadowDrawableInvoker, Microsoft.Maui\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui", MauiDrawable.class, __md_methods); + } + + public MauiDrawable () + { + super (); + if (getClass () == MauiDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public MauiDrawable (int p0) + { + super (p0); + if (getClass () == MauiDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui", "Android.Graphics.Color, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public MauiDrawable (android.content.Context p0) + { + super (); + if (getClass () == MauiDrawable.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onBoundsChange (android.graphics.Rect p0) + { + n_onBoundsChange (p0); + } + + private native void n_onBoundsChange (android.graphics.Rect p0); + + public void onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2) + { + n_onDraw (p0, p1, p2); + } + + private native void n_onDraw (android.graphics.drawable.shapes.Shape p0, android.graphics.Canvas p1, android.graphics.Paint p2); + + public boolean canDrawShadow () + { + return n_canDrawShadow (); + } + + private native boolean n_canDrawShadow (); + + public void drawShadow (android.graphics.Canvas p0, android.graphics.Paint p1, android.graphics.Path p2) + { + n_drawShadow (p0, p1, p2); + } + + private native void n_drawShadow (android.graphics.Canvas p0, android.graphics.Paint p1, android.graphics.Path p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/RadialGradientShaderFactory.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/RadialGradientShaderFactory.java new file mode 100644 index 0000000..dc142eb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64b5e713d400f589b7/RadialGradientShaderFactory.java @@ -0,0 +1,46 @@ +package crc64b5e713d400f589b7; + + +public class RadialGradientShaderFactory + extends android.graphics.drawable.ShapeDrawable.ShaderFactory + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_resize:(II)Landroid/graphics/Shader;:GetResize_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Graphics.RadialGradientShaderFactory, Microsoft.Maui", RadialGradientShaderFactory.class, __md_methods); + } + + public RadialGradientShaderFactory () + { + super (); + if (getClass () == RadialGradientShaderFactory.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Graphics.RadialGradientShaderFactory, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public android.graphics.Shader resize (int p0, int p1) + { + return n_resize (p0, p1); + } + + private native android.graphics.Shader n_resize (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/ActivityLifecycleContextListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/ActivityLifecycleContextListener.java new file mode 100644 index 0000000..e38d7c9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/ActivityLifecycleContextListener.java @@ -0,0 +1,207 @@ +package crc64ba438d8f48cf7e75; + + +public class ActivityLifecycleContextListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.app.Application.ActivityLifecycleCallbacks +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onActivityCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityDestroyed:(Landroid/app/Activity;)V:GetOnActivityDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPaused:(Landroid/app/Activity;)V:GetOnActivityPaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityResumed:(Landroid/app/Activity;)V:GetOnActivityResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivitySaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivitySaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStarted:(Landroid/app/Activity;)V:GetOnActivityStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStopped:(Landroid/app/Activity;)V:GetOnActivityStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPostCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostDestroyed:(Landroid/app/Activity;)V:GetOnActivityPostDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostPaused:(Landroid/app/Activity;)V:GetOnActivityPostPaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostResumed:(Landroid/app/Activity;)V:GetOnActivityPostResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostSaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPostSaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostStarted:(Landroid/app/Activity;)V:GetOnActivityPostStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPostStopped:(Landroid/app/Activity;)V:GetOnActivityPostStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPreCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreDestroyed:(Landroid/app/Activity;)V:GetOnActivityPreDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPrePaused:(Landroid/app/Activity;)V:GetOnActivityPrePaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreResumed:(Landroid/app/Activity;)V:GetOnActivityPreResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreSaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityPreSaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreStarted:(Landroid/app/Activity;)V:GetOnActivityPreStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPreStopped:(Landroid/app/Activity;)V:GetOnActivityPreStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacks, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.ApplicationModel.ActivityLifecycleContextListener, Microsoft.Maui.Essentials", ActivityLifecycleContextListener.class, __md_methods); + } + + public ActivityLifecycleContextListener () + { + super (); + if (getClass () == ActivityLifecycleContextListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ApplicationModel.ActivityLifecycleContextListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onActivityCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityCreated (p0, p1); + } + + private native void n_onActivityCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityDestroyed (android.app.Activity p0) + { + n_onActivityDestroyed (p0); + } + + private native void n_onActivityDestroyed (android.app.Activity p0); + + public void onActivityPaused (android.app.Activity p0) + { + n_onActivityPaused (p0); + } + + private native void n_onActivityPaused (android.app.Activity p0); + + public void onActivityResumed (android.app.Activity p0) + { + n_onActivityResumed (p0); + } + + private native void n_onActivityResumed (android.app.Activity p0); + + public void onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivitySaveInstanceState (p0, p1); + } + + private native void n_onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityStarted (android.app.Activity p0) + { + n_onActivityStarted (p0); + } + + private native void n_onActivityStarted (android.app.Activity p0); + + public void onActivityStopped (android.app.Activity p0) + { + n_onActivityStopped (p0); + } + + private native void n_onActivityStopped (android.app.Activity p0); + + public void onActivityPostCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPostCreated (p0, p1); + } + + private native void n_onActivityPostCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPostDestroyed (android.app.Activity p0) + { + n_onActivityPostDestroyed (p0); + } + + private native void n_onActivityPostDestroyed (android.app.Activity p0); + + public void onActivityPostPaused (android.app.Activity p0) + { + n_onActivityPostPaused (p0); + } + + private native void n_onActivityPostPaused (android.app.Activity p0); + + public void onActivityPostResumed (android.app.Activity p0) + { + n_onActivityPostResumed (p0); + } + + private native void n_onActivityPostResumed (android.app.Activity p0); + + public void onActivityPostSaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPostSaveInstanceState (p0, p1); + } + + private native void n_onActivityPostSaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPostStarted (android.app.Activity p0) + { + n_onActivityPostStarted (p0); + } + + private native void n_onActivityPostStarted (android.app.Activity p0); + + public void onActivityPostStopped (android.app.Activity p0) + { + n_onActivityPostStopped (p0); + } + + private native void n_onActivityPostStopped (android.app.Activity p0); + + public void onActivityPreCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPreCreated (p0, p1); + } + + private native void n_onActivityPreCreated (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPreDestroyed (android.app.Activity p0) + { + n_onActivityPreDestroyed (p0); + } + + private native void n_onActivityPreDestroyed (android.app.Activity p0); + + public void onActivityPrePaused (android.app.Activity p0) + { + n_onActivityPrePaused (p0); + } + + private native void n_onActivityPrePaused (android.app.Activity p0); + + public void onActivityPreResumed (android.app.Activity p0) + { + n_onActivityPreResumed (p0); + } + + private native void n_onActivityPreResumed (android.app.Activity p0); + + public void onActivityPreSaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityPreSaveInstanceState (p0, p1); + } + + private native void n_onActivityPreSaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + public void onActivityPreStarted (android.app.Activity p0) + { + n_onActivityPreStarted (p0); + } + + private native void n_onActivityPreStarted (android.app.Activity p0); + + public void onActivityPreStopped (android.app.Activity p0) + { + n_onActivityPreStopped (p0); + } + + private native void n_onActivityPreStopped (android.app.Activity p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/IntermediateActivity.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/IntermediateActivity.java new file mode 100644 index 0000000..067ede9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ba438d8f48cf7e75/IntermediateActivity.java @@ -0,0 +1,62 @@ +package crc64ba438d8f48cf7e75; + + +public class IntermediateActivity + extends android.app.Activity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onSaveInstanceState:(Landroid/os/Bundle;)V:GetOnSaveInstanceState_Landroid_os_Bundle_Handler\n" + + "n_onActivityResult:(IILandroid/content/Intent;)V:GetOnActivityResult_IILandroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.ApplicationModel.IntermediateActivity, Microsoft.Maui.Essentials", IntermediateActivity.class, __md_methods); + } + + public IntermediateActivity () + { + super (); + if (getClass () == IntermediateActivity.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.ApplicationModel.IntermediateActivity, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + public void onSaveInstanceState (android.os.Bundle p0) + { + n_onSaveInstanceState (p0); + } + + private native void n_onSaveInstanceState (android.os.Bundle p0); + + public void onActivityResult (int p0, int p1, android.content.Intent p2) + { + n_onActivityResult (p0, p1, p2); + } + + private native void n_onActivityResult (int p0, int p1, android.content.Intent p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainActivity.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainActivity.java new file mode 100644 index 0000000..fe8ffa9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainActivity.java @@ -0,0 +1,46 @@ +package crc64ca5cfae3d529160a; + + +public class MainActivity + extends crc6488302ad6e9e4df1a.MauiAppCompatActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("clipiFrontC.MainActivity, clipiFrontC", MainActivity.class, __md_methods); + } + + public MainActivity () + { + super (); + if (getClass () == MainActivity.class) { + mono.android.TypeManager.Activate ("clipiFrontC.MainActivity, clipiFrontC", "", this, new java.lang.Object[] { }); + } + } + + public MainActivity (int p0) + { + super (p0); + if (getClass () == MainActivity.class) { + mono.android.TypeManager.Activate ("clipiFrontC.MainActivity, clipiFrontC", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainApplication.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainApplication.java new file mode 100644 index 0000000..2878e91 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64ca5cfae3d529160a/MainApplication.java @@ -0,0 +1,34 @@ +package crc64ca5cfae3d529160a; + + +public class MainApplication + extends crc6488302ad6e9e4df1a.MauiApplication + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + } + + public MainApplication () + { + mono.MonoPackageManager.setContext (this); + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/AndroidWebKitWebViewManager_BlazorWebMessageCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/AndroidWebKitWebViewManager_BlazorWebMessageCallback.java new file mode 100644 index 0000000..34e28c9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/AndroidWebKitWebViewManager_BlazorWebMessageCallback.java @@ -0,0 +1,46 @@ +package crc64d693e2d9159537db; + + +public class AndroidWebKitWebViewManager_BlazorWebMessageCallback + extends android.webkit.WebMessagePort.WebMessageCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMessage:(Landroid/webkit/WebMessagePort;Landroid/webkit/WebMessage;)V:GetOnMessage_Landroid_webkit_WebMessagePort_Landroid_webkit_WebMessage_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.AspNetCore.Components.WebView.Maui.AndroidWebKitWebViewManager+BlazorWebMessageCallback, Microsoft.AspNetCore.Components.WebView.Maui", AndroidWebKitWebViewManager_BlazorWebMessageCallback.class, __md_methods); + } + + public AndroidWebKitWebViewManager_BlazorWebMessageCallback () + { + super (); + if (getClass () == AndroidWebKitWebViewManager_BlazorWebMessageCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.AndroidWebKitWebViewManager+BlazorWebMessageCallback, Microsoft.AspNetCore.Components.WebView.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onMessage (android.webkit.WebMessagePort p0, android.webkit.WebMessage p1) + { + n_onMessage (p0, p1); + } + + private native void n_onMessage (android.webkit.WebMessagePort p0, android.webkit.WebMessage p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorAndroidWebView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorAndroidWebView.java new file mode 100644 index 0000000..131762b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorAndroidWebView.java @@ -0,0 +1,78 @@ +package crc64d693e2d9159537db; + + +public class BlazorAndroidWebView + extends android.webkit.WebView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onKeyDown:(ILandroid/view/KeyEvent;)Z:GetOnKeyDown_ILandroid_view_KeyEvent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", BlazorAndroidWebView.class, __md_methods); + } + + public BlazorAndroidWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, boolean p3) + { + super (p0, p1, p2, p3); + if (getClass () == BlazorAndroidWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Boolean, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public BlazorAndroidWebView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == BlazorAndroidWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public BlazorAndroidWebView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == BlazorAndroidWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public BlazorAndroidWebView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == BlazorAndroidWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public BlazorAndroidWebView (android.content.Context p0) + { + super (p0); + if (getClass () == BlazorAndroidWebView.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onKeyDown (int p0, android.view.KeyEvent p1) + { + return n_onKeyDown (p0, p1); + } + + private native boolean n_onKeyDown (int p0, android.view.KeyEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorWebChromeClient.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorWebChromeClient.java new file mode 100644 index 0000000..99c7271 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/BlazorWebChromeClient.java @@ -0,0 +1,54 @@ +package crc64d693e2d9159537db; + + +public class BlazorWebChromeClient + extends android.webkit.WebChromeClient + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateWindow:(Landroid/webkit/WebView;ZZLandroid/os/Message;)Z:GetOnCreateWindow_Landroid_webkit_WebView_ZZLandroid_os_Message_Handler\n" + + "n_onShowFileChooser:(Landroid/webkit/WebView;Landroid/webkit/ValueCallback;Landroid/webkit/WebChromeClient$FileChooserParams;)Z:GetOnShowFileChooser_Landroid_webkit_WebView_Landroid_webkit_ValueCallback_Landroid_webkit_WebChromeClient_FileChooserParams_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebChromeClient, Microsoft.AspNetCore.Components.WebView.Maui", BlazorWebChromeClient.class, __md_methods); + } + + public BlazorWebChromeClient () + { + super (); + if (getClass () == BlazorWebChromeClient.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebChromeClient, Microsoft.AspNetCore.Components.WebView.Maui", "", this, new java.lang.Object[] { }); + } + } + + public boolean onCreateWindow (android.webkit.WebView p0, boolean p1, boolean p2, android.os.Message p3) + { + return n_onCreateWindow (p0, p1, p2, p3); + } + + private native boolean n_onCreateWindow (android.webkit.WebView p0, boolean p1, boolean p2, android.os.Message p3); + + public boolean onShowFileChooser (android.webkit.WebView p0, android.webkit.ValueCallback p1, android.webkit.WebChromeClient.FileChooserParams p2) + { + return n_onShowFileChooser (p0, p1, p2); + } + + private native boolean n_onShowFileChooser (android.webkit.WebView p0, android.webkit.ValueCallback p1, android.webkit.WebChromeClient.FileChooserParams p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient.java new file mode 100644 index 0000000..504396c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient.java @@ -0,0 +1,62 @@ +package crc64d693e2d9159537db; + + +public class WebKitWebViewClient + extends android.webkit.WebViewClient + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_shouldOverrideUrlLoading:(Landroid/webkit/WebView;Landroid/webkit/WebResourceRequest;)Z:GetShouldOverrideUrlLoading_Landroid_webkit_WebView_Landroid_webkit_WebResourceRequest_Handler\n" + + "n_shouldInterceptRequest:(Landroid/webkit/WebView;Landroid/webkit/WebResourceRequest;)Landroid/webkit/WebResourceResponse;:GetShouldInterceptRequest_Landroid_webkit_WebView_Landroid_webkit_WebResourceRequest_Handler\n" + + "n_onPageFinished:(Landroid/webkit/WebView;Ljava/lang/String;)V:GetOnPageFinished_Landroid_webkit_WebView_Ljava_lang_String_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient, Microsoft.AspNetCore.Components.WebView.Maui", WebKitWebViewClient.class, __md_methods); + } + + public WebKitWebViewClient () + { + super (); + if (getClass () == WebKitWebViewClient.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient, Microsoft.AspNetCore.Components.WebView.Maui", "", this, new java.lang.Object[] { }); + } + } + + public boolean shouldOverrideUrlLoading (android.webkit.WebView p0, android.webkit.WebResourceRequest p1) + { + return n_shouldOverrideUrlLoading (p0, p1); + } + + private native boolean n_shouldOverrideUrlLoading (android.webkit.WebView p0, android.webkit.WebResourceRequest p1); + + public android.webkit.WebResourceResponse shouldInterceptRequest (android.webkit.WebView p0, android.webkit.WebResourceRequest p1) + { + return n_shouldInterceptRequest (p0, p1); + } + + private native android.webkit.WebResourceResponse n_shouldInterceptRequest (android.webkit.WebView p0, android.webkit.WebResourceRequest p1); + + public void onPageFinished (android.webkit.WebView p0, java.lang.String p1) + { + n_onPageFinished (p0, p1); + } + + private native void n_onPageFinished (android.webkit.WebView p0, java.lang.String p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient_JavaScriptValueCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient_JavaScriptValueCallback.java new file mode 100644 index 0000000..0dc96eb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64d693e2d9159537db/WebKitWebViewClient_JavaScriptValueCallback.java @@ -0,0 +1,47 @@ +package crc64d693e2d9159537db; + + +public class WebKitWebViewClient_JavaScriptValueCallback + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.webkit.ValueCallback +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceiveValue:(Ljava/lang/Object;)V:GetOnReceiveValue_Ljava_lang_Object_Handler:Android.Webkit.IValueCallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient+JavaScriptValueCallback, Microsoft.AspNetCore.Components.WebView.Maui", WebKitWebViewClient_JavaScriptValueCallback.class, __md_methods); + } + + public WebKitWebViewClient_JavaScriptValueCallback () + { + super (); + if (getClass () == WebKitWebViewClient_JavaScriptValueCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient+JavaScriptValueCallback, Microsoft.AspNetCore.Components.WebView.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onReceiveValue (java.lang.Object p0) + { + n_onReceiveValue (p0); + } + + private native void n_onReceiveValue (java.lang.Object p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/BaseCellView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/BaseCellView.java new file mode 100644 index 0000000..5dba9da --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/BaseCellView.java @@ -0,0 +1,62 @@ +package crc64e1fb321c08285b90; + + +public class BaseCellView + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls", BaseCellView.class, __md_methods); + } + + public BaseCellView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == BaseCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public BaseCellView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == BaseCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public BaseCellView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == BaseCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public BaseCellView (android.content.Context p0) + { + super (p0); + if (getClass () == BaseCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellAdapter.java new file mode 100644 index 0000000..034586e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellAdapter.java @@ -0,0 +1,130 @@ +package crc64e1fb321c08285b90; + + +public abstract class CellAdapter + extends android.widget.BaseAdapter + implements + mono.android.IGCUserPeer, + android.widget.AdapterView.OnItemLongClickListener, + android.view.ActionMode.Callback, + android.widget.AdapterView.OnItemClickListener, + androidx.appcompat.view.ActionMode.Callback +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onItemLongClick:(Landroid/widget/AdapterView;Landroid/view/View;IJ)Z:GetOnItemLongClick_Landroid_widget_AdapterView_Landroid_view_View_IJHandler:Android.Widget.AdapterView/IOnItemLongClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActionItemClicked:(Landroid/view/ActionMode;Landroid/view/MenuItem;)Z:GetOnActionItemClicked_Landroid_view_ActionMode_Landroid_view_MenuItem_Handler:Android.Views.ActionMode/ICallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onCreateActionMode:(Landroid/view/ActionMode;Landroid/view/Menu;)Z:GetOnCreateActionMode_Landroid_view_ActionMode_Landroid_view_Menu_Handler:Android.Views.ActionMode/ICallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onDestroyActionMode:(Landroid/view/ActionMode;)V:GetOnDestroyActionMode_Landroid_view_ActionMode_Handler:Android.Views.ActionMode/ICallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onPrepareActionMode:(Landroid/view/ActionMode;Landroid/view/Menu;)Z:GetOnPrepareActionMode_Landroid_view_ActionMode_Landroid_view_Menu_Handler:Android.Views.ActionMode/ICallbackInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onItemClick:(Landroid/widget/AdapterView;Landroid/view/View;IJ)V:GetOnItemClick_Landroid_widget_AdapterView_Landroid_view_View_IJHandler:Android.Widget.AdapterView/IOnItemClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActionItemClicked:(Landroidx/appcompat/view/ActionMode;Landroid/view/MenuItem;)Z:GetOnActionItemClicked_Landroidx_appcompat_view_ActionMode_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.View.ActionMode/ICallbackInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onCreateActionMode:(Landroidx/appcompat/view/ActionMode;Landroid/view/Menu;)Z:GetOnCreateActionMode_Landroidx_appcompat_view_ActionMode_Landroid_view_Menu_Handler:AndroidX.AppCompat.View.ActionMode/ICallbackInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onDestroyActionMode:(Landroidx/appcompat/view/ActionMode;)V:GetOnDestroyActionMode_Landroidx_appcompat_view_ActionMode_Handler:AndroidX.AppCompat.View.ActionMode/ICallbackInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onPrepareActionMode:(Landroidx/appcompat/view/ActionMode;Landroid/view/Menu;)Z:GetOnPrepareActionMode_Landroidx_appcompat_view_ActionMode_Landroid_view_Menu_Handler:AndroidX.AppCompat.View.ActionMode/ICallbackInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter, Microsoft.Maui.Controls", CellAdapter.class, __md_methods); + } + + public CellAdapter () + { + super (); + if (getClass () == CellAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public CellAdapter (android.content.Context p0) + { + super (); + if (getClass () == CellAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onItemLongClick (android.widget.AdapterView p0, android.view.View p1, int p2, long p3) + { + return n_onItemLongClick (p0, p1, p2, p3); + } + + private native boolean n_onItemLongClick (android.widget.AdapterView p0, android.view.View p1, int p2, long p3); + + public boolean onActionItemClicked (android.view.ActionMode p0, android.view.MenuItem p1) + { + return n_onActionItemClicked (p0, p1); + } + + private native boolean n_onActionItemClicked (android.view.ActionMode p0, android.view.MenuItem p1); + + public boolean onCreateActionMode (android.view.ActionMode p0, android.view.Menu p1) + { + return n_onCreateActionMode (p0, p1); + } + + private native boolean n_onCreateActionMode (android.view.ActionMode p0, android.view.Menu p1); + + public void onDestroyActionMode (android.view.ActionMode p0) + { + n_onDestroyActionMode (p0); + } + + private native void n_onDestroyActionMode (android.view.ActionMode p0); + + public boolean onPrepareActionMode (android.view.ActionMode p0, android.view.Menu p1) + { + return n_onPrepareActionMode (p0, p1); + } + + private native boolean n_onPrepareActionMode (android.view.ActionMode p0, android.view.Menu p1); + + public void onItemClick (android.widget.AdapterView p0, android.view.View p1, int p2, long p3) + { + n_onItemClick (p0, p1, p2, p3); + } + + private native void n_onItemClick (android.widget.AdapterView p0, android.view.View p1, int p2, long p3); + + public boolean onActionItemClicked (androidx.appcompat.view.ActionMode p0, android.view.MenuItem p1) + { + return n_onActionItemClicked (p0, p1); + } + + private native boolean n_onActionItemClicked (androidx.appcompat.view.ActionMode p0, android.view.MenuItem p1); + + public boolean onCreateActionMode (androidx.appcompat.view.ActionMode p0, android.view.Menu p1) + { + return n_onCreateActionMode (p0, p1); + } + + private native boolean n_onCreateActionMode (androidx.appcompat.view.ActionMode p0, android.view.Menu p1); + + public void onDestroyActionMode (androidx.appcompat.view.ActionMode p0) + { + n_onDestroyActionMode (p0); + } + + private native void n_onDestroyActionMode (androidx.appcompat.view.ActionMode p0); + + public boolean onPrepareActionMode (androidx.appcompat.view.ActionMode p0, android.view.Menu p1) + { + return n_onPrepareActionMode (p0, p1); + } + + private native boolean n_onPrepareActionMode (androidx.appcompat.view.ActionMode p0, android.view.Menu p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellRenderer_RendererHolder.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellRenderer_RendererHolder.java new file mode 100644 index 0000000..e170f1d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/CellRenderer_RendererHolder.java @@ -0,0 +1,38 @@ +package crc64e1fb321c08285b90; + + +public class CellRenderer_RendererHolder + extends java.lang.Object + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer+RendererHolder, Microsoft.Maui.Controls", CellRenderer_RendererHolder.class, __md_methods); + } + + public CellRenderer_RendererHolder () + { + super (); + if (getClass () == CellRenderer_RendererHolder.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer+RendererHolder, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ConditionalFocusLayout.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ConditionalFocusLayout.java new file mode 100644 index 0000000..c08d38d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ConditionalFocusLayout.java @@ -0,0 +1,71 @@ +package crc64e1fb321c08285b90; + + +public class ConditionalFocusLayout + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer, + android.view.View.OnTouchListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTouch:(Landroid/view/View;Landroid/view/MotionEvent;)Z:GetOnTouch_Landroid_view_View_Landroid_view_MotionEvent_Handler:Android.Views.View/IOnTouchListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls", ConditionalFocusLayout.class, __md_methods); + } + + public ConditionalFocusLayout (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ConditionalFocusLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ConditionalFocusLayout (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ConditionalFocusLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ConditionalFocusLayout (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ConditionalFocusLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ConditionalFocusLayout (android.content.Context p0) + { + super (p0); + if (getClass () == ConditionalFocusLayout.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onTouch (android.view.View p0, android.view.MotionEvent p1) + { + return n_onTouch (p0, p1); + } + + private native boolean n_onTouch (android.view.View p0, android.view.MotionEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellEditText.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellEditText.java new file mode 100644 index 0000000..27d9e70 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellEditText.java @@ -0,0 +1,70 @@ +package crc64e1fb321c08285b90; + + +public class EntryCellEditText + extends androidx.appcompat.widget.AppCompatEditText + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onKeyPreIme:(ILandroid/view/KeyEvent;)Z:GetOnKeyPreIme_ILandroid_view_KeyEvent_Handler\n" + + "n_onFocusChanged:(ZILandroid/graphics/Rect;)V:GetOnFocusChanged_ZILandroid_graphics_Rect_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls", EntryCellEditText.class, __md_methods); + } + + public EntryCellEditText (android.content.Context p0) + { + super (p0); + if (getClass () == EntryCellEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public EntryCellEditText (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == EntryCellEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public EntryCellEditText (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == EntryCellEditText.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public boolean onKeyPreIme (int p0, android.view.KeyEvent p1) + { + return n_onKeyPreIme (p0, p1); + } + + private native boolean n_onKeyPreIme (int p0, android.view.KeyEvent p1); + + public void onFocusChanged (boolean p0, int p1, android.graphics.Rect p2) + { + n_onFocusChanged (p0, p1, p2); + } + + private native void n_onFocusChanged (boolean p0, int p1, android.graphics.Rect p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellView.java new file mode 100644 index 0000000..366df50 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/EntryCellView.java @@ -0,0 +1,106 @@ +package crc64e1fb321c08285b90; + + +public class EntryCellView + extends android.widget.LinearLayout + implements + mono.android.IGCUserPeer, + android.text.TextWatcher, + android.text.NoCopySpan, + android.view.View.OnFocusChangeListener, + android.widget.TextView.OnEditorActionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_afterTextChanged:(Landroid/text/Editable;)V:GetAfterTextChanged_Landroid_text_Editable_Handler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_beforeTextChanged:(Ljava/lang/CharSequence;III)V:GetBeforeTextChanged_Ljava_lang_CharSequence_IIIHandler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onTextChanged:(Ljava/lang/CharSequence;III)V:GetOnTextChanged_Ljava_lang_CharSequence_IIIHandler:Android.Text.ITextWatcherInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFocusChange:(Landroid/view/View;Z)V:GetOnFocusChange_Landroid_view_View_ZHandler:Android.Views.View/IOnFocusChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onEditorAction:(Landroid/widget/TextView;ILandroid/view/KeyEvent;)Z:GetOnEditorAction_Landroid_widget_TextView_ILandroid_view_KeyEvent_Handler:Android.Widget.TextView/IOnEditorActionListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls", EntryCellView.class, __md_methods); + } + + public EntryCellView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == EntryCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public EntryCellView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == EntryCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public EntryCellView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == EntryCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public EntryCellView (android.content.Context p0) + { + super (p0); + if (getClass () == EntryCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void afterTextChanged (android.text.Editable p0) + { + n_afterTextChanged (p0); + } + + private native void n_afterTextChanged (android.text.Editable p0); + + public void beforeTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3) + { + n_beforeTextChanged (p0, p1, p2, p3); + } + + private native void n_beforeTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3); + + public void onTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3) + { + n_onTextChanged (p0, p1, p2, p3); + } + + private native void n_onTextChanged (java.lang.CharSequence p0, int p1, int p2, int p3); + + public void onFocusChange (android.view.View p0, boolean p1) + { + n_onFocusChange (p0, p1); + } + + private native void n_onFocusChange (android.view.View p0, boolean p1); + + public boolean onEditorAction (android.widget.TextView p0, int p1, android.view.KeyEvent p2) + { + return n_onEditorAction (p0, p1, p2); + } + + private native boolean n_onEditorAction (android.widget.TextView p0, int p1, android.view.KeyEvent p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/FrameRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/FrameRenderer.java new file mode 100644 index 0000000..c549eac --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/FrameRenderer.java @@ -0,0 +1,94 @@ +package crc64e1fb321c08285b90; + + +public class FrameRenderer + extends androidx.cardview.widget.CardView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_draw:(Landroid/graphics/Canvas;)V:GetDraw_Landroid_graphics_Canvas_Handler\n" + + "n_onTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onSizeChanged:(IIII)V:GetOnSizeChanged_IIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls", FrameRenderer.class, __md_methods); + } + + public FrameRenderer (android.content.Context p0) + { + super (p0); + if (getClass () == FrameRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public FrameRenderer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == FrameRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public FrameRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == FrameRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void draw (android.graphics.Canvas p0) + { + n_draw (p0); + } + + private native void n_draw (android.graphics.Canvas p0); + + public boolean onTouchEvent (android.view.MotionEvent p0) + { + return n_onTouchEvent (p0); + } + + private native boolean n_onTouchEvent (android.view.MotionEvent p0); + + public void onSizeChanged (int p0, int p1, int p2, int p3) + { + n_onSizeChanged (p0, p1, p2, p3); + } + + private native void n_onSizeChanged (int p0, int p1, int p2, int p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/GroupedListViewAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/GroupedListViewAdapter.java new file mode 100644 index 0000000..748b58e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/GroupedListViewAdapter.java @@ -0,0 +1,71 @@ +package crc64e1fb321c08285b90; + + +public class GroupedListViewAdapter + extends crc64e1fb321c08285b90.ListViewAdapter + implements + mono.android.IGCUserPeer, + android.widget.SectionIndexer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getPositionForSection:(I)I:GetGetPositionForSection_IHandler:Android.Widget.ISectionIndexerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_getSectionForPosition:(I)I:GetGetSectionForPosition_IHandler:Android.Widget.ISectionIndexerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_getSections:()[Ljava/lang/Object;:GetGetSectionsHandler:Android.Widget.ISectionIndexerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter, Microsoft.Maui.Controls", GroupedListViewAdapter.class, __md_methods); + } + + public GroupedListViewAdapter () + { + super (); + if (getClass () == GroupedListViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public GroupedListViewAdapter (android.content.Context p0) + { + super (); + if (getClass () == GroupedListViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public int getPositionForSection (int p0) + { + return n_getPositionForSection (p0); + } + + private native int n_getPositionForSection (int p0); + + public int getSectionForPosition (int p0) + { + return n_getSectionForPosition (p0); + } + + private native int n_getSectionForPosition (int p0); + + public java.lang.Object[] getSections () + { + return n_getSections (); + } + + private native java.lang.Object[] n_getSections (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewAdapter.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewAdapter.java new file mode 100644 index 0000000..a64a9bc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewAdapter.java @@ -0,0 +1,118 @@ +package crc64e1fb321c08285b90; + + +public class ListViewAdapter + extends crc64e1fb321c08285b90.CellAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getCount:()I:GetGetCountHandler\n" + + "n_hasStableIds:()Z:GetHasStableIdsHandler\n" + + "n_getItem:(I)Ljava/lang/Object;:GetGetItem_IHandler\n" + + "n_getViewTypeCount:()I:GetGetViewTypeCountHandler\n" + + "n_areAllItemsEnabled:()Z:GetAreAllItemsEnabledHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_getView:(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;:GetGetView_ILandroid_view_View_Landroid_view_ViewGroup_Handler\n" + + "n_isEnabled:(I)Z:GetIsEnabled_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter, Microsoft.Maui.Controls", ListViewAdapter.class, __md_methods); + } + + public ListViewAdapter () + { + super (); + if (getClass () == ListViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ListViewAdapter (android.content.Context p0) + { + super (); + if (getClass () == ListViewAdapter.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public int getCount () + { + return n_getCount (); + } + + private native int n_getCount (); + + public boolean hasStableIds () + { + return n_hasStableIds (); + } + + private native boolean n_hasStableIds (); + + public java.lang.Object getItem (int p0) + { + return n_getItem (p0); + } + + private native java.lang.Object n_getItem (int p0); + + public int getViewTypeCount () + { + return n_getViewTypeCount (); + } + + private native int n_getViewTypeCount (); + + public boolean areAllItemsEnabled () + { + return n_areAllItemsEnabled (); + } + + private native boolean n_areAllItemsEnabled (); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public android.view.View getView (int p0, android.view.View p1, android.view.ViewGroup p2) + { + return n_getView (p0, p1, p2); + } + + private native android.view.View n_getView (int p0, android.view.View p1, android.view.ViewGroup p2); + + public boolean isEnabled (int p0) + { + return n_isEnabled (p0); + } + + private native boolean n_isEnabled (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer.java new file mode 100644 index 0000000..cbd3593 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer.java @@ -0,0 +1,86 @@ +package crc64e1fb321c08285b90; + + +public class ListViewRenderer + extends crc64e1fb321c08285b90.ViewRenderer_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedToWindow:()V:GetOnAttachedToWindowHandler\n" + + "n_onDetachedFromWindow:()V:GetOnDetachedFromWindowHandler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", ListViewRenderer.class, __md_methods); + } + + public ListViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ListViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ListViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ListViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ListViewRenderer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ListViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ListViewRenderer (android.content.Context p0) + { + super (p0); + if (getClass () == ListViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onAttachedToWindow () + { + n_onAttachedToWindow (); + } + + private native void n_onAttachedToWindow (); + + public void onDetachedFromWindow () + { + n_onDetachedFromWindow (); + } + + private native void n_onDetachedFromWindow (); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_Container.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_Container.java new file mode 100644 index 0000000..93a189e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_Container.java @@ -0,0 +1,78 @@ +package crc64e1fb321c08285b90; + + +public class ListViewRenderer_Container + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls", ListViewRenderer_Container.class, __md_methods); + } + + public ListViewRenderer_Container (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ListViewRenderer_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ListViewRenderer_Container (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ListViewRenderer_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ListViewRenderer_Container (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ListViewRenderer_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ListViewRenderer_Container (android.content.Context p0) + { + super (p0); + if (getClass () == ListViewRenderer_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewScrollDetector.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewScrollDetector.java new file mode 100644 index 0000000..77c074d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewScrollDetector.java @@ -0,0 +1,63 @@ +package crc64e1fb321c08285b90; + + +public class ListViewRenderer_ListViewScrollDetector + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.widget.AbsListView.OnScrollListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScroll:(Landroid/widget/AbsListView;III)V:GetOnScroll_Landroid_widget_AbsListView_IIIHandler:Android.Widget.AbsListView/IOnScrollListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onScrollStateChanged:(Landroid/widget/AbsListView;I)V:GetOnScrollStateChanged_Landroid_widget_AbsListView_IHandler:Android.Widget.AbsListView/IOnScrollListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewScrollDetector, Microsoft.Maui.Controls", ListViewRenderer_ListViewScrollDetector.class, __md_methods); + } + + public ListViewRenderer_ListViewScrollDetector () + { + super (); + if (getClass () == ListViewRenderer_ListViewScrollDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewScrollDetector, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ListViewRenderer_ListViewScrollDetector (crc64e1fb321c08285b90.ListViewRenderer p0) + { + super (); + if (getClass () == ListViewRenderer_ListViewScrollDetector.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewScrollDetector, Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", this, new java.lang.Object[] { p0 }); + } + } + + public void onScroll (android.widget.AbsListView p0, int p1, int p2, int p3) + { + n_onScroll (p0, p1, p2, p3); + } + + private native void n_onScroll (android.widget.AbsListView p0, int p1, int p2, int p3); + + public void onScrollStateChanged (android.widget.AbsListView p0, int p1) + { + n_onScrollStateChanged (p0, p1); + } + + private native void n_onScrollStateChanged (android.widget.AbsListView p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewSwipeRefreshLayoutListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewSwipeRefreshLayoutListener.java new file mode 100644 index 0000000..f6a9e5f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_ListViewSwipeRefreshLayoutListener.java @@ -0,0 +1,55 @@ +package crc64e1fb321c08285b90; + + +public class ListViewRenderer_ListViewSwipeRefreshLayoutListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.swiperefreshlayout.widget.SwipeRefreshLayout.OnRefreshListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onRefresh:()V:GetOnRefreshHandler:AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout/IOnRefreshListenerInvoker, Xamarin.AndroidX.SwipeRefreshLayout\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewSwipeRefreshLayoutListener, Microsoft.Maui.Controls", ListViewRenderer_ListViewSwipeRefreshLayoutListener.class, __md_methods); + } + + public ListViewRenderer_ListViewSwipeRefreshLayoutListener () + { + super (); + if (getClass () == ListViewRenderer_ListViewSwipeRefreshLayoutListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewSwipeRefreshLayoutListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public ListViewRenderer_ListViewSwipeRefreshLayoutListener (crc64e1fb321c08285b90.ListViewRenderer p0) + { + super (); + if (getClass () == ListViewRenderer_ListViewSwipeRefreshLayoutListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewSwipeRefreshLayoutListener, Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls", this, new java.lang.Object[] { p0 }); + } + } + + public void onRefresh () + { + n_onRefresh (); + } + + private native void n_onRefresh (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java new file mode 100644 index 0000000..b19fd6d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java @@ -0,0 +1,78 @@ +package crc64e1fb321c08285b90; + + +public class ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling + extends androidx.swiperefreshlayout.widget.SwipeRefreshLayout + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_onNestedScrollAccepted:(Landroid/view/View;Landroid/view/View;I)V:GetOnNestedScrollAccepted_Landroid_view_View_Landroid_view_View_IHandler\n" + + "n_onStopNestedScroll:(Landroid/view/View;)V:GetOnStopNestedScroll_Landroid_view_View_Handler\n" + + "n_onNestedScroll:(Landroid/view/View;IIII)V:GetOnNestedScroll_Landroid_view_View_IIIIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+SwipeRefreshLayoutWithFixedNestedScrolling, Microsoft.Maui.Controls", ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class, __md_methods); + } + + public ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling (android.content.Context p0) + { + super (p0); + if (getClass () == ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+SwipeRefreshLayoutWithFixedNestedScrolling, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+SwipeRefreshLayoutWithFixedNestedScrolling, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public void onNestedScrollAccepted (android.view.View p0, android.view.View p1, int p2) + { + n_onNestedScrollAccepted (p0, p1, p2); + } + + private native void n_onNestedScrollAccepted (android.view.View p0, android.view.View p1, int p2); + + public void onStopNestedScroll (android.view.View p0) + { + n_onStopNestedScroll (p0); + } + + private native void n_onStopNestedScroll (android.view.View p0); + + public void onNestedScroll (android.view.View p0, int p1, int p2, int p3, int p4) + { + n_onNestedScroll (p0, p1, p2, p3, p4); + } + + private native void n_onNestedScroll (android.view.View p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/SwitchCellView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/SwitchCellView.java new file mode 100644 index 0000000..71b749f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/SwitchCellView.java @@ -0,0 +1,71 @@ +package crc64e1fb321c08285b90; + + +public class SwitchCellView + extends crc64e1fb321c08285b90.BaseCellView + implements + mono.android.IGCUserPeer, + android.widget.CompoundButton.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Landroid/widget/CompoundButton;Z)V:GetOnCheckedChanged_Landroid_widget_CompoundButton_ZHandler:Android.Widget.CompoundButton/IOnCheckedChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls", SwitchCellView.class, __md_methods); + } + + public SwitchCellView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == SwitchCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public SwitchCellView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == SwitchCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public SwitchCellView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == SwitchCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public SwitchCellView (android.content.Context p0) + { + super (p0); + if (getClass () == SwitchCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onCheckedChanged (android.widget.CompoundButton p0, boolean p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (android.widget.CompoundButton p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewModelRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewModelRenderer.java new file mode 100644 index 0000000..4a87c84 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewModelRenderer.java @@ -0,0 +1,110 @@ +package crc64e1fb321c08285b90; + + +public class TableViewModelRenderer + extends crc64e1fb321c08285b90.CellAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getCount:()I:GetGetCountHandler\n" + + "n_getItem:(I)Ljava/lang/Object;:GetGetItem_IHandler\n" + + "n_getViewTypeCount:()I:GetGetViewTypeCountHandler\n" + + "n_getItemViewType:(I)I:GetGetItemViewType_IHandler\n" + + "n_areAllItemsEnabled:()Z:GetAreAllItemsEnabledHandler\n" + + "n_getItemId:(I)J:GetGetItemId_IHandler\n" + + "n_getView:(ILandroid/view/View;Landroid/view/ViewGroup;)Landroid/view/View;:GetGetView_ILandroid_view_View_Landroid_view_ViewGroup_Handler\n" + + "n_isEnabled:(I)Z:GetIsEnabled_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer, Microsoft.Maui.Controls", TableViewModelRenderer.class, __md_methods); + } + + public TableViewModelRenderer () + { + super (); + if (getClass () == TableViewModelRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public TableViewModelRenderer (android.content.Context p0) + { + super (); + if (getClass () == TableViewModelRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public int getCount () + { + return n_getCount (); + } + + private native int n_getCount (); + + public java.lang.Object getItem (int p0) + { + return n_getItem (p0); + } + + private native java.lang.Object n_getItem (int p0); + + public int getViewTypeCount () + { + return n_getViewTypeCount (); + } + + private native int n_getViewTypeCount (); + + public int getItemViewType (int p0) + { + return n_getItemViewType (p0); + } + + private native int n_getItemViewType (int p0); + + public boolean areAllItemsEnabled () + { + return n_areAllItemsEnabled (); + } + + private native boolean n_areAllItemsEnabled (); + + public long getItemId (int p0) + { + return n_getItemId (p0); + } + + private native long n_getItemId (int p0); + + public android.view.View getView (int p0, android.view.View p1, android.view.ViewGroup p2) + { + return n_getView (p0, p1, p2); + } + + private native android.view.View n_getView (int p0, android.view.View p1, android.view.ViewGroup p2); + + public boolean isEnabled (int p0) + { + return n_isEnabled (p0); + } + + private native boolean n_isEnabled (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewRenderer.java new file mode 100644 index 0000000..506d8f0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TableViewRenderer.java @@ -0,0 +1,78 @@ +package crc64e1fb321c08285b90; + + +public class TableViewRenderer + extends crc64e1fb321c08285b90.ViewRenderer_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedToWindow:()V:GetOnAttachedToWindowHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls", TableViewRenderer.class, __md_methods); + } + + public TableViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == TableViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public TableViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == TableViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public TableViewRenderer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == TableViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public TableViewRenderer (android.content.Context p0) + { + super (p0); + if (getClass () == TableViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onAttachedToWindow () + { + n_onAttachedToWindow (); + } + + private native void n_onAttachedToWindow (); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TextCellRenderer_TextCellView.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TextCellRenderer_TextCellView.java new file mode 100644 index 0000000..9484f26 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/TextCellRenderer_TextCellView.java @@ -0,0 +1,62 @@ +package crc64e1fb321c08285b90; + + +public class TextCellRenderer_TextCellView + extends crc64e1fb321c08285b90.BaseCellView + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls", TextCellRenderer_TextCellView.class, __md_methods); + } + + public TextCellRenderer_TextCellView (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == TextCellRenderer_TextCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public TextCellRenderer_TextCellView (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == TextCellRenderer_TextCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public TextCellRenderer_TextCellView (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == TextCellRenderer_TextCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public TextCellRenderer_TextCellView (android.content.Context p0) + { + super (p0); + if (getClass () == TextCellRenderer_TextCellView.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer.java new file mode 100644 index 0000000..9ee04e0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer.java @@ -0,0 +1,102 @@ +package crc64e1fb321c08285b90; + + +public class ViewCellRenderer_ViewCellContainer + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_dispatchTouchEvent:(Landroid/view/MotionEvent;)Z:GetDispatchTouchEvent_Landroid_view_MotionEvent_Handler\n" + + "n_addView:(Landroid/view/View;)V:GetAddView_Landroid_view_View_Handler\n" + + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls", ViewCellRenderer_ViewCellContainer.class, __md_methods); + } + + public ViewCellRenderer_ViewCellContainer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ViewCellRenderer_ViewCellContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ViewCellRenderer_ViewCellContainer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ViewCellRenderer_ViewCellContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ViewCellRenderer_ViewCellContainer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ViewCellRenderer_ViewCellContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ViewCellRenderer_ViewCellContainer (android.content.Context p0) + { + super (p0); + if (getClass () == ViewCellRenderer_ViewCellContainer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onInterceptTouchEvent (android.view.MotionEvent p0) + { + return n_onInterceptTouchEvent (p0); + } + + private native boolean n_onInterceptTouchEvent (android.view.MotionEvent p0); + + public boolean dispatchTouchEvent (android.view.MotionEvent p0) + { + return n_dispatchTouchEvent (p0); + } + + private native boolean n_dispatchTouchEvent (android.view.MotionEvent p0); + + public void addView (android.view.View p0) + { + n_addView (p0); + } + + private native void n_addView (android.view.View p0); + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java new file mode 100644 index 0000000..7d73f18 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java @@ -0,0 +1,87 @@ +package crc64e1fb321c08285b90; + + +public class ViewCellRenderer_ViewCellContainer_LongPressGestureListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.GestureDetector.OnGestureListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDown:(Landroid/view/MotionEvent;)Z:GetOnDown_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFling:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onLongPress:(Landroid/view/MotionEvent;)V:GetOnLongPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnScroll_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onShowPress:(Landroid/view/MotionEvent;)V:GetOnShowPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSingleTapUp:(Landroid/view/MotionEvent;)Z:GetOnSingleTapUp_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+LongPressGestureListener, Microsoft.Maui.Controls", ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class, __md_methods); + } + + public ViewCellRenderer_ViewCellContainer_LongPressGestureListener () + { + super (); + if (getClass () == ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+LongPressGestureListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onDown (android.view.MotionEvent p0) + { + return n_onDown (p0); + } + + private native boolean n_onDown (android.view.MotionEvent p0); + + public boolean onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onFling (p0, p1, p2, p3); + } + + private native boolean n_onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onLongPress (android.view.MotionEvent p0) + { + n_onLongPress (p0); + } + + private native void n_onLongPress (android.view.MotionEvent p0); + + public boolean onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onScroll (p0, p1, p2, p3); + } + + private native boolean n_onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onShowPress (android.view.MotionEvent p0) + { + n_onShowPress (p0); + } + + private native void n_onShowPress (android.view.MotionEvent p0); + + public boolean onSingleTapUp (android.view.MotionEvent p0) + { + return n_onSingleTapUp (p0); + } + + private native boolean n_onSingleTapUp (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_TapGestureListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_TapGestureListener.java new file mode 100644 index 0000000..cc389aa --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_TapGestureListener.java @@ -0,0 +1,87 @@ +package crc64e1fb321c08285b90; + + +public class ViewCellRenderer_ViewCellContainer_TapGestureListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.GestureDetector.OnGestureListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDown:(Landroid/view/MotionEvent;)Z:GetOnDown_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFling:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onLongPress:(Landroid/view/MotionEvent;)V:GetOnLongPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnScroll_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onShowPress:(Landroid/view/MotionEvent;)V:GetOnShowPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSingleTapUp:(Landroid/view/MotionEvent;)Z:GetOnSingleTapUp_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+TapGestureListener, Microsoft.Maui.Controls", ViewCellRenderer_ViewCellContainer_TapGestureListener.class, __md_methods); + } + + public ViewCellRenderer_ViewCellContainer_TapGestureListener () + { + super (); + if (getClass () == ViewCellRenderer_ViewCellContainer_TapGestureListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+TapGestureListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public boolean onDown (android.view.MotionEvent p0) + { + return n_onDown (p0); + } + + private native boolean n_onDown (android.view.MotionEvent p0); + + public boolean onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onFling (p0, p1, p2, p3); + } + + private native boolean n_onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onLongPress (android.view.MotionEvent p0) + { + n_onLongPress (p0); + } + + private native void n_onLongPress (android.view.MotionEvent p0); + + public boolean onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onScroll (p0, p1, p2, p3); + } + + private native boolean n_onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onShowPress (android.view.MotionEvent p0) + { + n_onShowPress (p0); + } + + private native void n_onShowPress (android.view.MotionEvent p0); + + public boolean onSingleTapUp (android.view.MotionEvent p0) + { + return n_onSingleTapUp (p0); + } + + private native boolean n_onSingleTapUp (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer.java new file mode 100644 index 0000000..3007cfc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer.java @@ -0,0 +1,62 @@ +package crc64e1fb321c08285b90; + + +public abstract class ViewRenderer + extends crc64e1fb321c08285b90.ViewRenderer_2 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls", ViewRenderer.class, __md_methods); + } + + public ViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ViewRenderer (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ViewRenderer (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ViewRenderer (android.content.Context p0) + { + super (p0); + if (getClass () == ViewRenderer.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer_2.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer_2.java new file mode 100644 index 0000000..bab740b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/ViewRenderer_2.java @@ -0,0 +1,62 @@ +package crc64e1fb321c08285b90; + + +public abstract class ViewRenderer_2 + extends crc64e1fb321c08285b90.VisualElementRenderer_1 + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls", ViewRenderer_2.class, __md_methods); + } + + public ViewRenderer_2 (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == ViewRenderer_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public ViewRenderer_2 (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == ViewRenderer_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public ViewRenderer_2 (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == ViewRenderer_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public ViewRenderer_2 (android.content.Context p0) + { + super (p0); + if (getClass () == ViewRenderer_2.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/VisualElementRenderer_1.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/VisualElementRenderer_1.java new file mode 100644 index 0000000..cee4fa0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e1fb321c08285b90/VisualElementRenderer_1.java @@ -0,0 +1,78 @@ +package crc64e1fb321c08285b90; + + +public abstract class VisualElementRenderer_1 + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls", VisualElementRenderer_1.class, __md_methods); + } + + public VisualElementRenderer_1 (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == VisualElementRenderer_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public VisualElementRenderer_1 (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == VisualElementRenderer_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public VisualElementRenderer_1 (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == VisualElementRenderer_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public VisualElementRenderer_1 (android.content.Context p0) + { + super (p0); + if (getClass () == VisualElementRenderer_1.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityBroadcastReceiver.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityBroadcastReceiver.java new file mode 100644 index 0000000..5aca733 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityBroadcastReceiver.java @@ -0,0 +1,46 @@ +package crc64e53d2f592022988e; + + +public class ConnectivityBroadcastReceiver + extends android.content.BroadcastReceiver + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceive:(Landroid/content/Context;Landroid/content/Intent;)V:GetOnReceive_Landroid_content_Context_Landroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Networking.ConnectivityBroadcastReceiver, Microsoft.Maui.Essentials", ConnectivityBroadcastReceiver.class, __md_methods); + } + + public ConnectivityBroadcastReceiver () + { + super (); + if (getClass () == ConnectivityBroadcastReceiver.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Networking.ConnectivityBroadcastReceiver, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onReceive (android.content.Context p0, android.content.Intent p1) + { + n_onReceive (p0, p1); + } + + private native void n_onReceive (android.content.Context p0, android.content.Intent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityImplementation_EssentialsNetworkCallback.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityImplementation_EssentialsNetworkCallback.java new file mode 100644 index 0000000..994124c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64e53d2f592022988e/ConnectivityImplementation_EssentialsNetworkCallback.java @@ -0,0 +1,94 @@ +package crc64e53d2f592022988e; + + +public class ConnectivityImplementation_EssentialsNetworkCallback + extends android.net.ConnectivityManager.NetworkCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAvailable:(Landroid/net/Network;)V:GetOnAvailable_Landroid_net_Network_Handler\n" + + "n_onLost:(Landroid/net/Network;)V:GetOnLost_Landroid_net_Network_Handler\n" + + "n_onCapabilitiesChanged:(Landroid/net/Network;Landroid/net/NetworkCapabilities;)V:GetOnCapabilitiesChanged_Landroid_net_Network_Landroid_net_NetworkCapabilities_Handler\n" + + "n_onUnavailable:()V:GetOnUnavailableHandler\n" + + "n_onLinkPropertiesChanged:(Landroid/net/Network;Landroid/net/LinkProperties;)V:GetOnLinkPropertiesChanged_Landroid_net_Network_Landroid_net_LinkProperties_Handler\n" + + "n_onLosing:(Landroid/net/Network;I)V:GetOnLosing_Landroid_net_Network_IHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Networking.ConnectivityImplementation+EssentialsNetworkCallback, Microsoft.Maui.Essentials", ConnectivityImplementation_EssentialsNetworkCallback.class, __md_methods); + } + + public ConnectivityImplementation_EssentialsNetworkCallback () + { + super (); + if (getClass () == ConnectivityImplementation_EssentialsNetworkCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Networking.ConnectivityImplementation+EssentialsNetworkCallback, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public ConnectivityImplementation_EssentialsNetworkCallback (int p0) + { + super (p0); + if (getClass () == ConnectivityImplementation_EssentialsNetworkCallback.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Networking.ConnectivityImplementation+EssentialsNetworkCallback, Microsoft.Maui.Essentials", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + public void onAvailable (android.net.Network p0) + { + n_onAvailable (p0); + } + + private native void n_onAvailable (android.net.Network p0); + + public void onLost (android.net.Network p0) + { + n_onLost (p0); + } + + private native void n_onLost (android.net.Network p0); + + public void onCapabilitiesChanged (android.net.Network p0, android.net.NetworkCapabilities p1) + { + n_onCapabilitiesChanged (p0, p1); + } + + private native void n_onCapabilitiesChanged (android.net.Network p0, android.net.NetworkCapabilities p1); + + public void onUnavailable () + { + n_onUnavailable (); + } + + private native void n_onUnavailable (); + + public void onLinkPropertiesChanged (android.net.Network p0, android.net.LinkProperties p1) + { + n_onLinkPropertiesChanged (p0, p1); + } + + private native void n_onLinkPropertiesChanged (android.net.Network p0, android.net.LinkProperties p1); + + public void onLosing (android.net.Network p0, int p1) + { + n_onLosing (p0, p1); + } + + private native void n_onLosing (android.net.Network p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/AccelerometerListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/AccelerometerListener.java new file mode 100644 index 0000000..abcdd90 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/AccelerometerListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class AccelerometerListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.AccelerometerListener, Microsoft.Maui.Essentials", AccelerometerListener.class, __md_methods); + } + + public AccelerometerListener () + { + super (); + if (getClass () == AccelerometerListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.AccelerometerListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/BarometerListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/BarometerListener.java new file mode 100644 index 0000000..e7f1c30 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/BarometerListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class BarometerListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.BarometerListener, Microsoft.Maui.Essentials", BarometerListener.class, __md_methods); + } + + public BarometerListener () + { + super (); + if (getClass () == BarometerListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.BarometerListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/ContinuousLocationListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/ContinuousLocationListener.java new file mode 100644 index 0000000..aec2036 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/ContinuousLocationListener.java @@ -0,0 +1,79 @@ +package crc64f62664462a8937a9; + + +public class ContinuousLocationListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.location.LocationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLocationChanged:(Landroid/location/Location;)V:GetOnLocationChanged_Landroid_location_Location_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onProviderDisabled:(Ljava/lang/String;)V:GetOnProviderDisabled_Ljava_lang_String_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onProviderEnabled:(Ljava/lang/String;)V:GetOnProviderEnabled_Ljava_lang_String_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onStatusChanged:(Ljava/lang/String;ILandroid/os/Bundle;)V:GetOnStatusChanged_Ljava_lang_String_ILandroid_os_Bundle_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFlushComplete:(I)V:GetOnFlushComplete_IHandler:Android.Locations.ILocationListener, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.ContinuousLocationListener, Microsoft.Maui.Essentials", ContinuousLocationListener.class, __md_methods); + } + + public ContinuousLocationListener () + { + super (); + if (getClass () == ContinuousLocationListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.ContinuousLocationListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onLocationChanged (android.location.Location p0) + { + n_onLocationChanged (p0); + } + + private native void n_onLocationChanged (android.location.Location p0); + + public void onProviderDisabled (java.lang.String p0) + { + n_onProviderDisabled (p0); + } + + private native void n_onProviderDisabled (java.lang.String p0); + + public void onProviderEnabled (java.lang.String p0) + { + n_onProviderEnabled (p0); + } + + private native void n_onProviderEnabled (java.lang.String p0); + + public void onStatusChanged (java.lang.String p0, int p1, android.os.Bundle p2) + { + n_onStatusChanged (p0, p1, p2); + } + + private native void n_onStatusChanged (java.lang.String p0, int p1, android.os.Bundle p2); + + public void onFlushComplete (int p0) + { + n_onFlushComplete (p0); + } + + private native void n_onFlushComplete (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/GyroscopeListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/GyroscopeListener.java new file mode 100644 index 0000000..6c54e9f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/GyroscopeListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class GyroscopeListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.GyroscopeListener, Microsoft.Maui.Essentials", GyroscopeListener.class, __md_methods); + } + + public GyroscopeListener () + { + super (); + if (getClass () == GyroscopeListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.GyroscopeListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/MagnetometerListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/MagnetometerListener.java new file mode 100644 index 0000000..cb35ac3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/MagnetometerListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class MagnetometerListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.MagnetometerListener, Microsoft.Maui.Essentials", MagnetometerListener.class, __md_methods); + } + + public MagnetometerListener () + { + super (); + if (getClass () == MagnetometerListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.MagnetometerListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/OrientationSensorListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/OrientationSensorListener.java new file mode 100644 index 0000000..8b1918d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/OrientationSensorListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class OrientationSensorListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.OrientationSensorListener, Microsoft.Maui.Essentials", OrientationSensorListener.class, __md_methods); + } + + public OrientationSensorListener () + { + super (); + if (getClass () == OrientationSensorListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.OrientationSensorListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SensorListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SensorListener.java new file mode 100644 index 0000000..3312ecd --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SensorListener.java @@ -0,0 +1,55 @@ +package crc64f62664462a8937a9; + + +public class SensorListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.hardware.SensorEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccuracyChanged:(Landroid/hardware/Sensor;I)V:GetOnAccuracyChanged_Landroid_hardware_Sensor_IHandler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSensorChanged:(Landroid/hardware/SensorEvent;)V:GetOnSensorChanged_Landroid_hardware_SensorEvent_Handler:Android.Hardware.ISensorEventListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.SensorListener, Microsoft.Maui.Essentials", SensorListener.class, __md_methods); + } + + public SensorListener () + { + super (); + if (getClass () == SensorListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.SensorListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onAccuracyChanged (android.hardware.Sensor p0, int p1) + { + n_onAccuracyChanged (p0, p1); + } + + private native void n_onAccuracyChanged (android.hardware.Sensor p0, int p1); + + public void onSensorChanged (android.hardware.SensorEvent p0) + { + n_onSensorChanged (p0); + } + + private native void n_onSensorChanged (android.hardware.SensorEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SingleLocationListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SingleLocationListener.java new file mode 100644 index 0000000..792d0f5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f62664462a8937a9/SingleLocationListener.java @@ -0,0 +1,79 @@ +package crc64f62664462a8937a9; + + +public class SingleLocationListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.location.LocationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLocationChanged:(Landroid/location/Location;)V:GetOnLocationChanged_Landroid_location_Location_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onProviderDisabled:(Ljava/lang/String;)V:GetOnProviderDisabled_Ljava_lang_String_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onProviderEnabled:(Ljava/lang/String;)V:GetOnProviderEnabled_Ljava_lang_String_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onStatusChanged:(Ljava/lang/String;ILandroid/os/Bundle;)V:GetOnStatusChanged_Ljava_lang_String_ILandroid_os_Bundle_Handler:Android.Locations.ILocationListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFlushComplete:(I)V:GetOnFlushComplete_IHandler:Android.Locations.ILocationListener, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Devices.Sensors.SingleLocationListener, Microsoft.Maui.Essentials", SingleLocationListener.class, __md_methods); + } + + public SingleLocationListener () + { + super (); + if (getClass () == SingleLocationListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Devices.Sensors.SingleLocationListener, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public void onLocationChanged (android.location.Location p0) + { + n_onLocationChanged (p0); + } + + private native void n_onLocationChanged (android.location.Location p0); + + public void onProviderDisabled (java.lang.String p0) + { + n_onProviderDisabled (p0); + } + + private native void n_onProviderDisabled (java.lang.String p0); + + public void onProviderEnabled (java.lang.String p0) + { + n_onProviderEnabled (p0); + } + + private native void n_onProviderEnabled (java.lang.String p0); + + public void onStatusChanged (java.lang.String p0, int p1, android.os.Bundle p2) + { + n_onStatusChanged (p0, p1, p2); + } + + private native void n_onStatusChanged (java.lang.String p0, int p1, android.os.Bundle p2); + + public void onFlushComplete (int p0) + { + n_onFlushComplete (p0); + } + + private native void n_onFlushComplete (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/TapWindowTracker_GestureListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/TapWindowTracker_GestureListener.java new file mode 100644 index 0000000..1f37642 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/TapWindowTracker_GestureListener.java @@ -0,0 +1,95 @@ +package crc64f728827fec74e9c3; + + +public class TapWindowTracker_GestureListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.GestureDetector.OnGestureListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDown:(Landroid/view/MotionEvent;)Z:GetOnDown_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onFling:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onLongPress:(Landroid/view/MotionEvent;)V:GetOnLongPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z:GetOnScroll_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onShowPress:(Landroid/view/MotionEvent;)V:GetOnShowPress_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onSingleTapUp:(Landroid/view/MotionEvent;)Z:GetOnSingleTapUp_Landroid_view_MotionEvent_Handler:Android.Views.GestureDetector/IOnGestureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.TapWindowTracker+GestureListener, Microsoft.Maui.Controls", TapWindowTracker_GestureListener.class, __md_methods); + } + + public TapWindowTracker_GestureListener () + { + super (); + if (getClass () == TapWindowTracker_GestureListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.TapWindowTracker+GestureListener, Microsoft.Maui.Controls", "", this, new java.lang.Object[] { }); + } + } + + public TapWindowTracker_GestureListener (android.view.View p0) + { + super (); + if (getClass () == TapWindowTracker_GestureListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.TapWindowTracker+GestureListener, Microsoft.Maui.Controls", "Android.Views.View, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public boolean onDown (android.view.MotionEvent p0) + { + return n_onDown (p0); + } + + private native boolean n_onDown (android.view.MotionEvent p0); + + public boolean onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onFling (p0, p1, p2, p3); + } + + private native boolean n_onFling (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onLongPress (android.view.MotionEvent p0) + { + n_onLongPress (p0); + } + + private native void n_onLongPress (android.view.MotionEvent p0); + + public boolean onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3) + { + return n_onScroll (p0, p1, p2, p3); + } + + private native boolean n_onScroll (android.view.MotionEvent p0, android.view.MotionEvent p1, float p2, float p3); + + public void onShowPress (android.view.MotionEvent p0) + { + n_onShowPress (p0); + } + + private native void n_onShowPress (android.view.MotionEvent p0); + + public boolean onSingleTapUp (android.view.MotionEvent p0) + { + return n_onSingleTapUp (p0); + } + + private native boolean n_onSingleTapUp (android.view.MotionEvent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/Toolbar_Container.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/Toolbar_Container.java new file mode 100644 index 0000000..bda922b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64f728827fec74e9c3/Toolbar_Container.java @@ -0,0 +1,78 @@ +package crc64f728827fec74e9c3; + + +public class Toolbar_Container + extends android.view.ViewGroup + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + + "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls", Toolbar_Container.class, __md_methods); + } + + public Toolbar_Container (android.content.Context p0, android.util.AttributeSet p1, int p2, int p3) + { + super (p0, p1, p2, p3); + if (getClass () == Toolbar_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2, p3 }); + } + } + + public Toolbar_Container (android.content.Context p0, android.util.AttributeSet p1, int p2) + { + super (p0, p1, p2); + if (getClass () == Toolbar_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android:System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0, p1, p2 }); + } + } + + public Toolbar_Container (android.content.Context p0, android.util.AttributeSet p1) + { + super (p0, p1); + if (getClass () == Toolbar_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android:Android.Util.IAttributeSet, Mono.Android", this, new java.lang.Object[] { p0, p1 }); + } + } + + public Toolbar_Container (android.content.Context p0) + { + super (p0); + if (getClass () == Toolbar_Container.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls", "Android.Content.Context, Mono.Android", this, new java.lang.Object[] { p0 }); + } + } + + public void onLayout (boolean p0, int p1, int p2, int p3, int p4) + { + n_onLayout (p0, p1, p2, p3, p4); + } + + private native void n_onLayout (boolean p0, int p1, int p2, int p3, int p4); + + public void onMeasure (int p0, int p1) + { + n_onMeasure (p0, p1); + } + + private native void n_onMeasure (int p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonClickListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonClickListener.java new file mode 100644 index 0000000..ab10fee --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonClickListener.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class ButtonHandler_ButtonClickListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.ButtonHandler+ButtonClickListener, Microsoft.Maui", ButtonHandler_ButtonClickListener.class, __md_methods); + } + + public ButtonHandler_ButtonClickListener () + { + super (); + if (getClass () == ButtonHandler_ButtonClickListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.ButtonHandler+ButtonClickListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonTouchListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonTouchListener.java new file mode 100644 index 0000000..d5e949a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ButtonHandler_ButtonTouchListener.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class ButtonHandler_ButtonTouchListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnTouchListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTouch:(Landroid/view/View;Landroid/view/MotionEvent;)Z:GetOnTouch_Landroid_view_View_Landroid_view_MotionEvent_Handler:Android.Views.View/IOnTouchListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.ButtonHandler+ButtonTouchListener, Microsoft.Maui", ButtonHandler_ButtonTouchListener.class, __md_methods); + } + + public ButtonHandler_ButtonTouchListener () + { + super (); + if (getClass () == ButtonHandler_ButtonTouchListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.ButtonHandler+ButtonTouchListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public boolean onTouch (android.view.View p0, android.view.MotionEvent p1) + { + return n_onTouch (p0, p1); + } + + private native boolean n_onTouch (android.view.View p0, android.view.MotionEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/HybridWebViewHandler_HybridWebViewJavaScriptInterface.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/HybridWebViewHandler_HybridWebViewJavaScriptInterface.java new file mode 100644 index 0000000..b2ff88d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/HybridWebViewHandler_HybridWebViewJavaScriptInterface.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class HybridWebViewHandler_HybridWebViewJavaScriptInterface + extends com.microsoft.maui.HybridJavaScriptInterface + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_sendMessage:(Ljava/lang/String;)V:GetSendMessage_Ljava_lang_String_Handler\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.HybridWebViewHandler+HybridWebViewJavaScriptInterface, Microsoft.Maui", HybridWebViewHandler_HybridWebViewJavaScriptInterface.class, __md_methods); + } + + public HybridWebViewHandler_HybridWebViewJavaScriptInterface () + { + super (); + if (getClass () == HybridWebViewHandler_HybridWebViewJavaScriptInterface.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.HybridWebViewHandler+HybridWebViewJavaScriptInterface, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + +@android.webkit.JavascriptInterface + public void sendMessage (java.lang.String p0) + { + n_sendMessage (p0); + } + + private native void n_sendMessage (java.lang.String p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SearchBarHandler_FocusChangeListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SearchBarHandler_FocusChangeListener.java new file mode 100644 index 0000000..4ce7488 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SearchBarHandler_FocusChangeListener.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class SearchBarHandler_FocusChangeListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnFocusChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFocusChange:(Landroid/view/View;Z)V:GetOnFocusChange_Landroid_view_View_ZHandler:Android.Views.View/IOnFocusChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.SearchBarHandler+FocusChangeListener, Microsoft.Maui", SearchBarHandler_FocusChangeListener.class, __md_methods); + } + + public SearchBarHandler_FocusChangeListener () + { + super (); + if (getClass () == SearchBarHandler_FocusChangeListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.SearchBarHandler+FocusChangeListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onFocusChange (android.view.View p0, boolean p1) + { + n_onFocusChange (p0, p1); + } + + private native void n_onFocusChange (android.view.View p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SliderHandler_SeekBarChangeListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SliderHandler_SeekBarChangeListener.java new file mode 100644 index 0000000..184dd84 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SliderHandler_SeekBarChangeListener.java @@ -0,0 +1,63 @@ +package crc64fcf28c0e24b4cc31; + + +public class SliderHandler_SeekBarChangeListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.widget.SeekBar.OnSeekBarChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onProgressChanged:(Landroid/widget/SeekBar;IZ)V:GetOnProgressChanged_Landroid_widget_SeekBar_IZHandler:Android.Widget.SeekBar/IOnSeekBarChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onStartTrackingTouch:(Landroid/widget/SeekBar;)V:GetOnStartTrackingTouch_Landroid_widget_SeekBar_Handler:Android.Widget.SeekBar/IOnSeekBarChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onStopTrackingTouch:(Landroid/widget/SeekBar;)V:GetOnStopTrackingTouch_Landroid_widget_SeekBar_Handler:Android.Widget.SeekBar/IOnSeekBarChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.SliderHandler+SeekBarChangeListener, Microsoft.Maui", SliderHandler_SeekBarChangeListener.class, __md_methods); + } + + public SliderHandler_SeekBarChangeListener () + { + super (); + if (getClass () == SliderHandler_SeekBarChangeListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.SliderHandler+SeekBarChangeListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onProgressChanged (android.widget.SeekBar p0, int p1, boolean p2) + { + n_onProgressChanged (p0, p1, p2); + } + + private native void n_onProgressChanged (android.widget.SeekBar p0, int p1, boolean p2); + + public void onStartTrackingTouch (android.widget.SeekBar p0) + { + n_onStartTrackingTouch (p0); + } + + private native void n_onStartTrackingTouch (android.widget.SeekBar p0); + + public void onStopTrackingTouch (android.widget.SeekBar p0) + { + n_onStopTrackingTouch (p0); + } + + private native void n_onStopTrackingTouch (android.widget.SeekBar p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SwitchHandler_CheckedChangeListener.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SwitchHandler_CheckedChangeListener.java new file mode 100644 index 0000000..274692d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/SwitchHandler_CheckedChangeListener.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class SwitchHandler_CheckedChangeListener + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.widget.CompoundButton.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Landroid/widget/CompoundButton;Z)V:GetOnCheckedChanged_Landroid_widget_CompoundButton_ZHandler:Android.Widget.CompoundButton/IOnCheckedChangeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.SwitchHandler+CheckedChangeListener, Microsoft.Maui", SwitchHandler_CheckedChangeListener.class, __md_methods); + } + + public SwitchHandler_CheckedChangeListener () + { + super (); + if (getClass () == SwitchHandler_CheckedChangeListener.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.SwitchHandler+CheckedChangeListener, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (android.widget.CompoundButton p0, boolean p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (android.widget.CompoundButton p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ToolbarHandler_ProcessBackClick.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ToolbarHandler_ProcessBackClick.java new file mode 100644 index 0000000..dab08a8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/crc64fcf28c0e24b4cc31/ToolbarHandler_ProcessBackClick.java @@ -0,0 +1,47 @@ +package crc64fcf28c0e24b4cc31; + + +public class ToolbarHandler_ProcessBackClick + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Microsoft.Maui.Handlers.ToolbarHandler+ProcessBackClick, Microsoft.Maui", ToolbarHandler_ProcessBackClick.class, __md_methods); + } + + public ToolbarHandler_ProcessBackClick () + { + super (); + if (getClass () == ToolbarHandler_ProcessBackClick.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Handlers.ToolbarHandler+ProcessBackClick, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/R.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/R.java new file mode 100644 index 0000000..874345d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/R.java @@ -0,0 +1,16 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by + * .NET for Android from the resource data it found. + * It should not be modified by hand. + */ +package microsoft.maui; + +public final class R { + public static final class id { + public static final int maui_custom_view_target_running_callbacks_tag = 0x7f08011e; + } + public static final class string { + public static final int maui_empty_unused = 0x7f0f0061; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/essentials/fileProvider.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/essentials/fileProvider.java new file mode 100644 index 0000000..0f8911c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/essentials/fileProvider.java @@ -0,0 +1,46 @@ +package microsoft.maui.essentials; + + +public class fileProvider + extends androidx.core.content.FileProvider + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Storage.FileProvider, Microsoft.Maui.Essentials", fileProvider.class, __md_methods); + } + + public fileProvider () + { + super (); + if (getClass () == fileProvider.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Storage.FileProvider, Microsoft.Maui.Essentials", "", this, new java.lang.Object[] { }); + } + } + + public fileProvider (int p0) + { + super (p0); + if (getClass () == fileProvider.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Storage.FileProvider, Microsoft.Maui.Essentials", "System.Int32, System.Private.CoreLib", this, new java.lang.Object[] { p0 }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/platform/MauiNavHostFragment.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/platform/MauiNavHostFragment.java new file mode 100644 index 0000000..1c608b1 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/microsoft/maui/platform/MauiNavHostFragment.java @@ -0,0 +1,38 @@ +package microsoft.maui.platform; + + +public class MauiNavHostFragment + extends androidx.navigation.fragment.NavHostFragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Microsoft.Maui.Platform.MauiNavHostFragment, Microsoft.Maui", MauiNavHostFragment.class, __md_methods); + } + + public MauiNavHostFragment () + { + super (); + if (getClass () == MauiNavHostFragment.class) { + mono.android.TypeManager.Activate ("Microsoft.Maui.Platform.MauiNavHostFragment, Microsoft.Maui", "", this, new java.lang.Object[] { }); + } + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoPackageManager_Resources.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoPackageManager_Resources.java new file mode 100644 index 0000000..bd819b4 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoPackageManager_Resources.java @@ -0,0 +1,168 @@ +package mono; +public class MonoPackageManager_Resources { + public static String[] Assemblies = new String[]{ + /* We need to ensure that "clipiFrontC.dll" comes first in this list. */ + "clipiFrontC.dll", + "GoogleGson.dll", + "Microsoft.AspNetCore.Authorization.dll", + "Microsoft.AspNetCore.Components.dll", + "Microsoft.AspNetCore.Components.Forms.dll", + "Microsoft.AspNetCore.Components.Web.dll", + "Microsoft.AspNetCore.Components.WebView.dll", + "Microsoft.AspNetCore.Components.WebView.Maui.dll", + "Microsoft.AspNetCore.Metadata.dll", + "Microsoft.Extensions.Configuration.dll", + "Microsoft.Extensions.Configuration.Abstractions.dll", + "Microsoft.Extensions.Configuration.Binder.dll", + "Microsoft.Extensions.Configuration.FileExtensions.dll", + "Microsoft.Extensions.Configuration.Json.dll", + "Microsoft.Extensions.DependencyInjection.dll", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "Microsoft.Extensions.FileProviders.Abstractions.dll", + "Microsoft.Extensions.FileProviders.Composite.dll", + "Microsoft.Extensions.FileProviders.Embedded.dll", + "Microsoft.Extensions.FileProviders.Physical.dll", + "Microsoft.Extensions.FileSystemGlobbing.dll", + "Microsoft.Extensions.Logging.dll", + "Microsoft.Extensions.Logging.Abstractions.dll", + "Microsoft.Extensions.Logging.Debug.dll", + "Microsoft.Extensions.Options.dll", + "Microsoft.Extensions.Primitives.dll", + "Microsoft.JSInterop.dll", + "Microsoft.Maui.Controls.dll", + "Microsoft.Maui.Controls.Xaml.dll", + "Microsoft.Maui.dll", + "Microsoft.Maui.Essentials.dll", + "Microsoft.Maui.Graphics.dll", + "Xamarin.Android.Glide.dll", + "Xamarin.Android.Glide.Annotations.dll", + "Xamarin.Android.Glide.DiskLruCache.dll", + "Xamarin.Android.Glide.GifDecoder.dll", + "Xamarin.AndroidX.Activity.dll", + "Xamarin.AndroidX.Activity.Ktx.dll", + "Xamarin.AndroidX.Annotation.dll", + "Xamarin.AndroidX.Annotation.Experimental.dll", + "Xamarin.AndroidX.Annotation.Jvm.dll", + "Xamarin.AndroidX.AppCompat.dll", + "Xamarin.AndroidX.AppCompat.AppCompatResources.dll", + "Xamarin.AndroidX.Arch.Core.Common.dll", + "Xamarin.AndroidX.Arch.Core.Runtime.dll", + "Xamarin.AndroidX.Browser.dll", + "Xamarin.AndroidX.CardView.dll", + "Xamarin.AndroidX.Collection.dll", + "Xamarin.AndroidX.Collection.Jvm.dll", + "Xamarin.AndroidX.Collection.Ktx.dll", + "Xamarin.AndroidX.Concurrent.Futures.dll", + "Xamarin.AndroidX.ConstraintLayout.dll", + "Xamarin.AndroidX.ConstraintLayout.Core.dll", + "Xamarin.AndroidX.CoordinatorLayout.dll", + "Xamarin.AndroidX.Core.dll", + "Xamarin.AndroidX.Core.Core.Ktx.dll", + "Xamarin.AndroidX.Core.ViewTree.dll", + "Xamarin.AndroidX.CursorAdapter.dll", + "Xamarin.AndroidX.CustomView.dll", + "Xamarin.AndroidX.CustomView.PoolingContainer.dll", + "Xamarin.AndroidX.DrawerLayout.dll", + "Xamarin.AndroidX.DynamicAnimation.dll", + "Xamarin.AndroidX.Emoji2.dll", + "Xamarin.AndroidX.Emoji2.ViewsHelper.dll", + "Xamarin.AndroidX.ExifInterface.dll", + "Xamarin.AndroidX.Fragment.dll", + "Xamarin.AndroidX.Fragment.Ktx.dll", + "Xamarin.AndroidX.Interpolator.dll", + "Xamarin.AndroidX.Lifecycle.Common.dll", + "Xamarin.AndroidX.Lifecycle.Common.Jvm.dll", + "Xamarin.AndroidX.Lifecycle.LiveData.dll", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.dll", + "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll", + "Xamarin.AndroidX.Lifecycle.Process.dll", + "Xamarin.AndroidX.Lifecycle.Runtime.dll", + "Xamarin.AndroidX.Lifecycle.Runtime.Android.dll", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll", + "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll", + "Xamarin.AndroidX.Lifecycle.ViewModel.dll", + "Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll", + "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll", + "Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll", + "Xamarin.AndroidX.Loader.dll", + "Xamarin.AndroidX.Navigation.Common.dll", + "Xamarin.AndroidX.Navigation.Fragment.dll", + "Xamarin.AndroidX.Navigation.Runtime.dll", + "Xamarin.AndroidX.Navigation.UI.dll", + "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll", + "Xamarin.AndroidX.RecyclerView.dll", + "Xamarin.AndroidX.ResourceInspection.Annotation.dll", + "Xamarin.AndroidX.SavedState.dll", + "Xamarin.AndroidX.SavedState.SavedState.Ktx.dll", + "Xamarin.AndroidX.Security.SecurityCrypto.dll", + "Xamarin.AndroidX.SlidingPaneLayout.dll", + "Xamarin.AndroidX.Startup.StartupRuntime.dll", + "Xamarin.AndroidX.SwipeRefreshLayout.dll", + "Xamarin.AndroidX.Tracing.Tracing.dll", + "Xamarin.AndroidX.Transition.dll", + "Xamarin.AndroidX.VectorDrawable.dll", + "Xamarin.AndroidX.VectorDrawable.Animated.dll", + "Xamarin.AndroidX.VersionedParcelable.dll", + "Xamarin.AndroidX.ViewPager.dll", + "Xamarin.AndroidX.ViewPager2.dll", + "Xamarin.AndroidX.Window.dll", + "Xamarin.AndroidX.Window.Extensions.Core.Core.dll", + "Xamarin.Google.Android.Material.dll", + "Jsr305Binding.dll", + "Xamarin.Google.Crypto.Tink.Android.dll", + "Xamarin.Google.ErrorProne.Annotations.dll", + "Xamarin.Google.ErrorProne.TypeAnnotations.dll", + "Xamarin.Google.Guava.ListenableFuture.dll", + "Xamarin.Jetbrains.Annotations.dll", + "Xamarin.JSpecify.dll", + "Xamarin.Kotlin.StdLib.dll", + "Xamarin.KotlinX.AtomicFU.dll", + "Xamarin.KotlinX.AtomicFU.Jvm.dll", + "Xamarin.KotlinX.Coroutines.Android.dll", + "Xamarin.KotlinX.Coroutines.Core.dll", + "Xamarin.KotlinX.Coroutines.Core.Jvm.dll", + "Xamarin.KotlinX.Serialization.Core.dll", + "Xamarin.KotlinX.Serialization.Core.Jvm.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.resources.dll", + "Microsoft.Maui.Controls.HotReload.Forms.dll", + "Microsoft.VisualStudio.DesignTools.MobileTapContracts.dll", + "Microsoft.VisualStudio.DesignTools.TapContract.dll", + "Microsoft.VisualStudio.DesignTools.XamlTapContract.dll", + "_Microsoft.Android.Resource.Designer.dll", + }; + public static String[] Dependencies = new String[]{ + }; +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoRuntimeProvider.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoRuntimeProvider.java new file mode 100644 index 0000000..9fb0f4f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/MonoRuntimeProvider.java @@ -0,0 +1,70 @@ +package mono; + +//NOTE: we can't use import, see Generator.GetMonoInitSource + +public class MonoRuntimeProvider + extends android.content.ContentProvider +{ + public MonoRuntimeProvider () + { + } + + @Override + public boolean onCreate () + { + return true; + } + + @Override + public void attachInfo (android.content.Context context, android.content.pm.ProviderInfo info) + { + // Mono Runtime Initialization {{{ + android.content.pm.ApplicationInfo applicationInfo = context.getApplicationInfo (); + String[] apks = null; + if (android.os.Build.VERSION.SDK_INT >= 21) { + String[] splitApks = applicationInfo.splitPublicSourceDirs; + if (splitApks != null && splitApks.length > 0) { + apks = new String[splitApks.length + 1]; + apks [0] = applicationInfo.sourceDir; + System.arraycopy (splitApks, 0, apks, 1, splitApks.length); + } + } + if (apks == null) { + apks = new String[] { applicationInfo.sourceDir }; + } + mono.MonoPackageManager.LoadApplication (context, applicationInfo, apks); + // }}} + super.attachInfo (context, info); + } + + @Override + public android.database.Cursor query (android.net.Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public String getType (android.net.Uri uri) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public android.net.Uri insert (android.net.Uri uri, android.content.ContentValues initialValues) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public int delete (android.net.Uri uri, String where, String[] whereArgs) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public int update (android.net.Uri uri, android.content.ContentValues values, String where, String[] whereArgs) + { + throw new RuntimeException ("This operation is not supported."); + } +} + diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/android/app/ApplicationRegistration.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/android/app/ApplicationRegistration.java new file mode 100644 index 0000000..6de1f49 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/android/app/ApplicationRegistration.java @@ -0,0 +1,12 @@ +package mono.android.app; + +public class ApplicationRegistration { + + public static void registerApplications () + { + // Application and Instrumentation ACWs must be registered first. + mono.android.Runtime.register ("clipiFrontC.MainApplication, clipiFrontC, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", crc64ca5cfae3d529160a.MainApplication.class, crc64ca5cfae3d529160a.MainApplication.__md_methods); + mono.android.Runtime.register ("Microsoft.Maui.MauiApplication, Microsoft.Maui, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", crc6488302ad6e9e4df1a.MauiApplication.class, crc6488302ad6e9e4df1a.MauiApplication.__md_methods); + + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/activity/contextaware/OnContextAvailableListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/activity/contextaware/OnContextAvailableListenerImplementor.java new file mode 100644 index 0000000..0fd30c3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/activity/contextaware/OnContextAvailableListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.activity.contextaware; + + +public class OnContextAvailableListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.activity.contextaware.OnContextAvailableListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onContextAvailable:(Landroid/content/Context;)V:GetOnContextAvailable_Landroid_content_Context_Handler:AndroidX.Activity.ContextAware.IOnContextAvailableListenerInvoker, Xamarin.AndroidX.Activity\n" + + ""; + mono.android.Runtime.register ("AndroidX.Activity.ContextAware.IOnContextAvailableListenerImplementor, Xamarin.AndroidX.Activity", OnContextAvailableListenerImplementor.class, __md_methods); + } + + public OnContextAvailableListenerImplementor () + { + super (); + if (getClass () == OnContextAvailableListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Activity.ContextAware.IOnContextAvailableListenerImplementor, Xamarin.AndroidX.Activity", "", this, new java.lang.Object[] { }); + } + } + + public void onContextAvailable (android.content.Context p0) + { + n_onContextAvailable (p0); + } + + private native void n_onContextAvailable (android.content.Context p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnMenuVisibilityListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnMenuVisibilityListenerImplementor.java new file mode 100644 index 0000000..59260ec --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnMenuVisibilityListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.app; + + +public class ActionBar_OnMenuVisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.app.ActionBar.OnMenuVisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuVisibilityChanged:(Z)V:GetOnMenuVisibilityChanged_ZHandler:AndroidX.AppCompat.App.ActionBar/IOnMenuVisibilityListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.AndroidX.AppCompat", ActionBar_OnMenuVisibilityListenerImplementor.class, __md_methods); + } + + public ActionBar_OnMenuVisibilityListenerImplementor () + { + super (); + if (getClass () == ActionBar_OnMenuVisibilityListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onMenuVisibilityChanged (boolean p0) + { + n_onMenuVisibilityChanged (p0); + } + + private native void n_onMenuVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnNavigationListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnNavigationListenerImplementor.java new file mode 100644 index 0000000..7a5e8a5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_OnNavigationListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.app; + + +public class ActionBar_OnNavigationListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.app.ActionBar.OnNavigationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemSelected:(IJ)Z:GetOnNavigationItemSelected_IJHandler:AndroidX.AppCompat.App.ActionBar/IOnNavigationListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.AndroidX.AppCompat", ActionBar_OnNavigationListenerImplementor.class, __md_methods); + } + + public ActionBar_OnNavigationListenerImplementor () + { + super (); + if (getClass () == ActionBar_OnNavigationListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onNavigationItemSelected (int p0, long p1) + { + return n_onNavigationItemSelected (p0, p1); + } + + private native boolean n_onNavigationItemSelected (int p0, long p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_TabListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_TabListenerImplementor.java new file mode 100644 index 0000000..1929880 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/app/ActionBar_TabListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.appcompat.app; + + +public class ActionBar_TabListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.app.ActionBar.TabListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTabReselected:(Landroidx/appcompat/app/ActionBar$Tab;Landroidx/fragment/app/FragmentTransaction;)V:GetOnTabReselected_Landroidx_appcompat_app_ActionBar_Tab_Landroidx_fragment_app_FragmentTransaction_Handler:AndroidX.AppCompat.App.ActionBar/ITabListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onTabSelected:(Landroidx/appcompat/app/ActionBar$Tab;Landroidx/fragment/app/FragmentTransaction;)V:GetOnTabSelected_Landroidx_appcompat_app_ActionBar_Tab_Landroidx_fragment_app_FragmentTransaction_Handler:AndroidX.AppCompat.App.ActionBar/ITabListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onTabUnselected:(Landroidx/appcompat/app/ActionBar$Tab;Landroidx/fragment/app/FragmentTransaction;)V:GetOnTabUnselected_Landroidx_appcompat_app_ActionBar_Tab_Landroidx_fragment_app_FragmentTransaction_Handler:AndroidX.AppCompat.App.ActionBar/ITabListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.App.ActionBar+ITabListenerImplementor, Xamarin.AndroidX.AppCompat", ActionBar_TabListenerImplementor.class, __md_methods); + } + + public ActionBar_TabListenerImplementor () + { + super (); + if (getClass () == ActionBar_TabListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.App.ActionBar+ITabListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onTabReselected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1) + { + n_onTabReselected (p0, p1); + } + + private native void n_onTabReselected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1); + + public void onTabSelected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1) + { + n_onTabSelected (p0, p1); + } + + private native void n_onTabSelected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1); + + public void onTabUnselected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1) + { + n_onTabUnselected (p0, p1); + } + + private native void n_onTabUnselected (androidx.appcompat.app.ActionBar.Tab p0, androidx.fragment.app.FragmentTransaction p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..7932ed3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class ActionMenuView_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.ActionMenuView.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.Widget.ActionMenuView/IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", ActionMenuView_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + public ActionMenuView_OnMenuItemClickListenerImplementor () + { + super (); + if (getClass () == ActionMenuView_OnMenuItemClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ContentFrameLayout_OnAttachListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ContentFrameLayout_OnAttachListenerImplementor.java new file mode 100644 index 0000000..0f7cf82 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ContentFrameLayout_OnAttachListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.appcompat.widget; + + +public class ContentFrameLayout_OnAttachListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.ContentFrameLayout.OnAttachListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedFromWindow:()V:GetOnAttachedFromWindowHandler:AndroidX.AppCompat.Widget.ContentFrameLayout/IOnAttachListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onDetachedFromWindow:()V:GetOnDetachedFromWindowHandler:AndroidX.AppCompat.Widget.ContentFrameLayout/IOnAttachListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.AndroidX.AppCompat", ContentFrameLayout_OnAttachListenerImplementor.class, __md_methods); + } + + public ContentFrameLayout_OnAttachListenerImplementor () + { + super (); + if (getClass () == ContentFrameLayout_OnAttachListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onAttachedFromWindow () + { + n_onAttachedFromWindow (); + } + + private native void n_onAttachedFromWindow (); + + public void onDetachedFromWindow () + { + n_onDetachedFromWindow (); + } + + private native void n_onDetachedFromWindow (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java new file mode 100644 index 0000000..74ceefd --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.FitWindowsViewGroup.OnFitSystemWindowsListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFitSystemWindows:(Landroid/graphics/Rect;)V:GetOnFitSystemWindows_Landroid_graphics_Rect_Handler:AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.AndroidX.AppCompat", FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class, __md_methods); + } + + public FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor () + { + super (); + if (getClass () == FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onFitSystemWindows (android.graphics.Rect p0) + { + n_onFitSystemWindows (p0); + } + + private native void n_onFitSystemWindows (android.graphics.Rect p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/MenuItemHoverListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/MenuItemHoverListenerImplementor.java new file mode 100644 index 0000000..4e5b5a3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/MenuItemHoverListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.appcompat.widget; + + +public class MenuItemHoverListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.MenuItemHoverListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onItemHoverEnter:(Landroidx/appcompat/view/menu/MenuBuilder;Landroid/view/MenuItem;)V:GetOnItemHoverEnter_Landroidx_appcompat_view_menu_MenuBuilder_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.Widget.IMenuItemHoverListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onItemHoverExit:(Landroidx/appcompat/view/menu/MenuBuilder;Landroid/view/MenuItem;)V:GetOnItemHoverExit_Landroidx_appcompat_view_menu_MenuBuilder_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.Widget.IMenuItemHoverListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.IMenuItemHoverListenerImplementor, Xamarin.AndroidX.AppCompat", MenuItemHoverListenerImplementor.class, __md_methods); + } + + public MenuItemHoverListenerImplementor () + { + super (); + if (getClass () == MenuItemHoverListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.IMenuItemHoverListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onItemHoverEnter (androidx.appcompat.view.menu.MenuBuilder p0, android.view.MenuItem p1) + { + n_onItemHoverEnter (p0, p1); + } + + private native void n_onItemHoverEnter (androidx.appcompat.view.menu.MenuBuilder p0, android.view.MenuItem p1); + + public void onItemHoverExit (androidx.appcompat.view.menu.MenuBuilder p0, android.view.MenuItem p1) + { + n_onItemHoverExit (p0, p1); + } + + private native void n_onItemHoverExit (androidx.appcompat.view.menu.MenuBuilder p0, android.view.MenuItem p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnDismissListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnDismissListenerImplementor.java new file mode 100644 index 0000000..79fc958 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnDismissListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class PopupMenu_OnDismissListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.PopupMenu.OnDismissListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDismiss:(Landroidx/appcompat/widget/PopupMenu;)V:GetOnDismiss_Landroidx_appcompat_widget_PopupMenu_Handler:AndroidX.AppCompat.Widget.PopupMenu/IOnDismissListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.AndroidX.AppCompat", PopupMenu_OnDismissListenerImplementor.class, __md_methods); + } + + public PopupMenu_OnDismissListenerImplementor () + { + super (); + if (getClass () == PopupMenu_OnDismissListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onDismiss (androidx.appcompat.widget.PopupMenu p0) + { + n_onDismiss (p0); + } + + private native void n_onDismiss (androidx.appcompat.widget.PopupMenu p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnMenuItemClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..3eb65d0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/PopupMenu_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class PopupMenu_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.PopupMenu.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.Widget.PopupMenu/IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", PopupMenu_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + public PopupMenu_OnMenuItemClickListenerImplementor () + { + super (); + if (getClass () == PopupMenu_OnMenuItemClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnCloseListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnCloseListenerImplementor.java new file mode 100644 index 0000000..ed77ab0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnCloseListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class SearchView_OnCloseListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.SearchView.OnCloseListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClose:()Z:GetOnCloseHandler:AndroidX.AppCompat.Widget.SearchView/IOnCloseListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.AndroidX.AppCompat", SearchView_OnCloseListenerImplementor.class, __md_methods); + } + + public SearchView_OnCloseListenerImplementor () + { + super (); + if (getClass () == SearchView_OnCloseListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onClose () + { + return n_onClose (); + } + + private native boolean n_onClose (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnQueryTextListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnQueryTextListenerImplementor.java new file mode 100644 index 0000000..17411fb --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnQueryTextListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.appcompat.widget; + + +public class SearchView_OnQueryTextListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.SearchView.OnQueryTextListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onQueryTextChange:(Ljava/lang/String;)Z:GetOnQueryTextChange_Ljava_lang_String_Handler:AndroidX.AppCompat.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onQueryTextSubmit:(Ljava/lang/String;)Z:GetOnQueryTextSubmit_Ljava_lang_String_Handler:AndroidX.AppCompat.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.AndroidX.AppCompat", SearchView_OnQueryTextListenerImplementor.class, __md_methods); + } + + public SearchView_OnQueryTextListenerImplementor () + { + super (); + if (getClass () == SearchView_OnQueryTextListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onQueryTextChange (java.lang.String p0) + { + return n_onQueryTextChange (p0); + } + + private native boolean n_onQueryTextChange (java.lang.String p0); + + public boolean onQueryTextSubmit (java.lang.String p0) + { + return n_onQueryTextSubmit (p0); + } + + private native boolean n_onQueryTextSubmit (java.lang.String p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnSuggestionListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnSuggestionListenerImplementor.java new file mode 100644 index 0000000..060f2c0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/SearchView_OnSuggestionListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.appcompat.widget; + + +public class SearchView_OnSuggestionListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.SearchView.OnSuggestionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSuggestionClick:(I)Z:GetOnSuggestionClick_IHandler:AndroidX.AppCompat.Widget.SearchView/IOnSuggestionListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + "n_onSuggestionSelect:(I)Z:GetOnSuggestionSelect_IHandler:AndroidX.AppCompat.Widget.SearchView/IOnSuggestionListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.AndroidX.AppCompat", SearchView_OnSuggestionListenerImplementor.class, __md_methods); + } + + public SearchView_OnSuggestionListenerImplementor () + { + super (); + if (getClass () == SearchView_OnSuggestionListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onSuggestionClick (int p0) + { + return n_onSuggestionClick (p0); + } + + private native boolean n_onSuggestionClick (int p0); + + public boolean onSuggestionSelect (int p0) + { + return n_onSuggestionSelect (p0); + } + + private native boolean n_onSuggestionSelect (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java new file mode 100644 index 0000000..e9a657b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class ShareActionProvider_OnShareTargetSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.ShareActionProvider.OnShareTargetSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onShareTargetSelected:(Landroidx/appcompat/widget/ShareActionProvider;Landroid/content/Intent;)Z:GetOnShareTargetSelected_Landroidx_appcompat_widget_ShareActionProvider_Landroid_content_Intent_Handler:AndroidX.AppCompat.Widget.ShareActionProvider/IOnShareTargetSelectedListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.AndroidX.AppCompat", ShareActionProvider_OnShareTargetSelectedListenerImplementor.class, __md_methods); + } + + public ShareActionProvider_OnShareTargetSelectedListenerImplementor () + { + super (); + if (getClass () == ShareActionProvider_OnShareTargetSelectedListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onShareTargetSelected (androidx.appcompat.widget.ShareActionProvider p0, android.content.Intent p1) + { + return n_onShareTargetSelected (p0, p1); + } + + private native boolean n_onShareTargetSelected (androidx.appcompat.widget.ShareActionProvider p0, android.content.Intent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/Toolbar_OnMenuItemClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/Toolbar_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..70b9bb8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/Toolbar_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class Toolbar_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.Toolbar.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:AndroidX.AppCompat.Widget.Toolbar/IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", Toolbar_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + public Toolbar_OnMenuItemClickListenerImplementor () + { + super (); + if (getClass () == Toolbar_OnMenuItemClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ViewStubCompat_OnInflateListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ViewStubCompat_OnInflateListenerImplementor.java new file mode 100644 index 0000000..81b035a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/appcompat/widget/ViewStubCompat_OnInflateListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.appcompat.widget; + + +public class ViewStubCompat_OnInflateListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.appcompat.widget.ViewStubCompat.OnInflateListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInflate:(Landroidx/appcompat/widget/ViewStubCompat;Landroid/view/View;)V:GetOnInflate_Landroidx_appcompat_widget_ViewStubCompat_Landroid_view_View_Handler:AndroidX.AppCompat.Widget.ViewStubCompat/IOnInflateListenerInvoker, Xamarin.AndroidX.AppCompat\n" + + ""; + mono.android.Runtime.register ("AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.AndroidX.AppCompat", ViewStubCompat_OnInflateListenerImplementor.class, __md_methods); + } + + public ViewStubCompat_OnInflateListenerImplementor () + { + super (); + if (getClass () == ViewStubCompat_OnInflateListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.AndroidX.AppCompat", "", this, new java.lang.Object[] { }); + } + } + + public void onInflate (androidx.appcompat.widget.ViewStubCompat p0, android.view.View p1) + { + n_onInflate (p0, p1); + } + + private native void n_onInflate (androidx.appcompat.widget.ViewStubCompat p0, android.view.View p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/motion/widget/MotionLayout_TransitionListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/motion/widget/MotionLayout_TransitionListenerImplementor.java new file mode 100644 index 0000000..73490c5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/motion/widget/MotionLayout_TransitionListenerImplementor.java @@ -0,0 +1,71 @@ +package mono.androidx.constraintlayout.motion.widget; + + +public class MotionLayout_TransitionListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTransitionChange:(Landroidx/constraintlayout/motion/widget/MotionLayout;IIF)V:GetOnTransitionChange_Landroidx_constraintlayout_motion_widget_MotionLayout_IIFHandler:AndroidX.ConstraintLayout.Motion.Widget.MotionLayout/ITransitionListenerInvoker, Xamarin.AndroidX.ConstraintLayout\n" + + "n_onTransitionCompleted:(Landroidx/constraintlayout/motion/widget/MotionLayout;I)V:GetOnTransitionCompleted_Landroidx_constraintlayout_motion_widget_MotionLayout_IHandler:AndroidX.ConstraintLayout.Motion.Widget.MotionLayout/ITransitionListenerInvoker, Xamarin.AndroidX.ConstraintLayout\n" + + "n_onTransitionStarted:(Landroidx/constraintlayout/motion/widget/MotionLayout;II)V:GetOnTransitionStarted_Landroidx_constraintlayout_motion_widget_MotionLayout_IIHandler:AndroidX.ConstraintLayout.Motion.Widget.MotionLayout/ITransitionListenerInvoker, Xamarin.AndroidX.ConstraintLayout\n" + + "n_onTransitionTrigger:(Landroidx/constraintlayout/motion/widget/MotionLayout;IZF)V:GetOnTransitionTrigger_Landroidx_constraintlayout_motion_widget_MotionLayout_IZFHandler:AndroidX.ConstraintLayout.Motion.Widget.MotionLayout/ITransitionListenerInvoker, Xamarin.AndroidX.ConstraintLayout\n" + + ""; + mono.android.Runtime.register ("AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListenerImplementor, Xamarin.AndroidX.ConstraintLayout", MotionLayout_TransitionListenerImplementor.class, __md_methods); + } + + public MotionLayout_TransitionListenerImplementor () + { + super (); + if (getClass () == MotionLayout_TransitionListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListenerImplementor, Xamarin.AndroidX.ConstraintLayout", "", this, new java.lang.Object[] { }); + } + } + + public void onTransitionChange (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, int p2, float p3) + { + n_onTransitionChange (p0, p1, p2, p3); + } + + private native void n_onTransitionChange (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, int p2, float p3); + + public void onTransitionCompleted (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1) + { + n_onTransitionCompleted (p0, p1); + } + + private native void n_onTransitionCompleted (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1); + + public void onTransitionStarted (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, int p2) + { + n_onTransitionStarted (p0, p1, p2); + } + + private native void n_onTransitionStarted (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, int p2); + + public void onTransitionTrigger (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, boolean p2, float p3) + { + n_onTransitionTrigger (p0, p1, p2, p3); + } + + private native void n_onTransitionTrigger (androidx.constraintlayout.motion.widget.MotionLayout p0, int p1, boolean p2, float p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/widget/SharedValues_SharedValuesListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/widget/SharedValues_SharedValuesListenerImplementor.java new file mode 100644 index 0000000..f068b68 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/constraintlayout/widget/SharedValues_SharedValuesListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.constraintlayout.widget; + + +public class SharedValues_SharedValuesListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.constraintlayout.widget.SharedValues.SharedValuesListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNewValue:(III)V:GetOnNewValue_IIIHandler:AndroidX.ConstraintLayout.Widget.SharedValues/ISharedValuesListenerInvoker, Xamarin.AndroidX.ConstraintLayout\n" + + ""; + mono.android.Runtime.register ("AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListenerImplementor, Xamarin.AndroidX.ConstraintLayout", SharedValues_SharedValuesListenerImplementor.class, __md_methods); + } + + public SharedValues_SharedValuesListenerImplementor () + { + super (); + if (getClass () == SharedValues_SharedValuesListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListenerImplementor, Xamarin.AndroidX.ConstraintLayout", "", this, new java.lang.Object[] { }); + } + } + + public void onNewValue (int p0, int p1, int p2) + { + n_onNewValue (p0, p1, p2); + } + + private native void n_onNewValue (int p0, int p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/app/SharedElementCallback_OnSharedElementsReadyListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/app/SharedElementCallback_OnSharedElementsReadyListenerImplementor.java new file mode 100644 index 0000000..ef1eba2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/app/SharedElementCallback_OnSharedElementsReadyListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.app; + + +public class SharedElementCallback_OnSharedElementsReadyListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.app.SharedElementCallback.OnSharedElementsReadyListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSharedElementsReady:()V:GetOnSharedElementsReadyHandler:AndroidX.Core.App.SharedElementCallback/IOnSharedElementsReadyListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListenerImplementor, Xamarin.AndroidX.Core", SharedElementCallback_OnSharedElementsReadyListenerImplementor.class, __md_methods); + } + + public SharedElementCallback_OnSharedElementsReadyListenerImplementor () + { + super (); + if (getClass () == SharedElementCallback_OnSharedElementsReadyListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onSharedElementsReady () + { + n_onSharedElementsReady (); + } + + private native void n_onSharedElementsReady (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/os/CancellationSignal_OnCancelListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/os/CancellationSignal_OnCancelListenerImplementor.java new file mode 100644 index 0000000..21975aa --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/os/CancellationSignal_OnCancelListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.os; + + +public class CancellationSignal_OnCancelListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.os.CancellationSignal.OnCancelListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCancel:()V:GetOnCancelHandler:AndroidX.Core.OS.CancellationSignal/IOnCancelListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.AndroidX.Core", CancellationSignal_OnCancelListenerImplementor.class, __md_methods); + } + + public CancellationSignal_OnCancelListenerImplementor () + { + super (); + if (getClass () == CancellationSignal_OnCancelListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onCancel () + { + n_onCancel (); + } + + private native void n_onCancel (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_SubUiVisibilityListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_SubUiVisibilityListenerImplementor.java new file mode 100644 index 0000000..3e714ca --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_SubUiVisibilityListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class ActionProvider_SubUiVisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.ActionProvider.SubUiVisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSubUiVisibilityChanged:(Z)V:GetOnSubUiVisibilityChanged_ZHandler:AndroidX.Core.View.ActionProvider/ISubUiVisibilityListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.AndroidX.Core", ActionProvider_SubUiVisibilityListenerImplementor.class, __md_methods); + } + + public ActionProvider_SubUiVisibilityListenerImplementor () + { + super (); + if (getClass () == ActionProvider_SubUiVisibilityListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onSubUiVisibilityChanged (boolean p0) + { + n_onSubUiVisibilityChanged (p0); + } + + private native void n_onSubUiVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_VisibilityListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_VisibilityListenerImplementor.java new file mode 100644 index 0000000..d98f963 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ActionProvider_VisibilityListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class ActionProvider_VisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.ActionProvider.VisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onActionProviderVisibilityChanged:(Z)V:GetOnActionProviderVisibilityChanged_ZHandler:AndroidX.Core.View.ActionProvider/IVisibilityListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.AndroidX.Core", ActionProvider_VisibilityListenerImplementor.class, __md_methods); + } + + public ActionProvider_VisibilityListenerImplementor () + { + super (); + if (getClass () == ActionProvider_VisibilityListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onActionProviderVisibilityChanged (boolean p0) + { + n_onActionProviderVisibilityChanged (p0); + } + + private native void n_onActionProviderVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/DragStartHelper_OnDragStartListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/DragStartHelper_OnDragStartListenerImplementor.java new file mode 100644 index 0000000..3936c28 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/DragStartHelper_OnDragStartListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class DragStartHelper_OnDragStartListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.DragStartHelper.OnDragStartListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDragStart:(Landroid/view/View;Landroidx/core/view/DragStartHelper;)Z:GetOnDragStart_Landroid_view_View_Landroidx_core_view_DragStartHelper_Handler:AndroidX.Core.View.DragStartHelper/IOnDragStartListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.DragStartHelper+IOnDragStartListenerImplementor, Xamarin.AndroidX.Core", DragStartHelper_OnDragStartListenerImplementor.class, __md_methods); + } + + public DragStartHelper_OnDragStartListenerImplementor () + { + super (); + if (getClass () == DragStartHelper_OnDragStartListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.DragStartHelper+IOnDragStartListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public boolean onDragStart (android.view.View p0, androidx.core.view.DragStartHelper p1) + { + return n_onDragStart (p0, p1); + } + + private native boolean n_onDragStart (android.view.View p0, androidx.core.view.DragStartHelper p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/MenuItemCompat_OnActionExpandListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/MenuItemCompat_OnActionExpandListenerImplementor.java new file mode 100644 index 0000000..7e40458 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/MenuItemCompat_OnActionExpandListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.core.view; + + +public class MenuItemCompat_OnActionExpandListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.MenuItemCompat.OnActionExpandListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemActionCollapse:(Landroid/view/MenuItem;)Z:GetOnMenuItemActionCollapse_Landroid_view_MenuItem_Handler:AndroidX.Core.View.MenuItemCompat/IOnActionExpandListenerInvoker, Xamarin.AndroidX.Core\n" + + "n_onMenuItemActionExpand:(Landroid/view/MenuItem;)Z:GetOnMenuItemActionExpand_Landroid_view_MenuItem_Handler:AndroidX.Core.View.MenuItemCompat/IOnActionExpandListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.AndroidX.Core", MenuItemCompat_OnActionExpandListenerImplementor.class, __md_methods); + } + + public MenuItemCompat_OnActionExpandListenerImplementor () + { + super (); + if (getClass () == MenuItemCompat_OnActionExpandListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public boolean onMenuItemActionCollapse (android.view.MenuItem p0) + { + return n_onMenuItemActionCollapse (p0); + } + + private native boolean n_onMenuItemActionCollapse (android.view.MenuItem p0); + + public boolean onMenuItemActionExpand (android.view.MenuItem p0) + { + return n_onMenuItemActionExpand (p0); + } + + private native boolean n_onMenuItemActionExpand (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnApplyWindowInsetsListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnApplyWindowInsetsListenerImplementor.java new file mode 100644 index 0000000..6bf25bc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnApplyWindowInsetsListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class OnApplyWindowInsetsListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.OnApplyWindowInsetsListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onApplyWindowInsets:(Landroid/view/View;Landroidx/core/view/WindowInsetsCompat;)Landroidx/core/view/WindowInsetsCompat;:GetOnApplyWindowInsets_Landroid_view_View_Landroidx_core_view_WindowInsetsCompat_Handler:AndroidX.Core.View.IOnApplyWindowInsetsListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.AndroidX.Core", OnApplyWindowInsetsListenerImplementor.class, __md_methods); + } + + public OnApplyWindowInsetsListenerImplementor () + { + super (); + if (getClass () == OnApplyWindowInsetsListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public androidx.core.view.WindowInsetsCompat onApplyWindowInsets (android.view.View p0, androidx.core.view.WindowInsetsCompat p1) + { + return n_onApplyWindowInsets (p0, p1); + } + + private native androidx.core.view.WindowInsetsCompat n_onApplyWindowInsets (android.view.View p0, androidx.core.view.WindowInsetsCompat p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnReceiveContentListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnReceiveContentListenerImplementor.java new file mode 100644 index 0000000..a2c2525 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/OnReceiveContentListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class OnReceiveContentListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.OnReceiveContentListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onReceiveContent:(Landroid/view/View;Landroidx/core/view/ContentInfoCompat;)Landroidx/core/view/ContentInfoCompat;:GetOnReceiveContent_Landroid_view_View_Landroidx_core_view_ContentInfoCompat_Handler:AndroidX.Core.View.IOnReceiveContentListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.IOnReceiveContentListenerImplementor, Xamarin.AndroidX.Core", OnReceiveContentListenerImplementor.class, __md_methods); + } + + public OnReceiveContentListenerImplementor () + { + super (); + if (getClass () == OnReceiveContentListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.IOnReceiveContentListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public androidx.core.view.ContentInfoCompat onReceiveContent (android.view.View p0, androidx.core.view.ContentInfoCompat p1) + { + return n_onReceiveContent (p0, p1); + } + + private native androidx.core.view.ContentInfoCompat n_onReceiveContent (android.view.View p0, androidx.core.view.ContentInfoCompat p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorListenerImplementor.java new file mode 100644 index 0000000..89cf36a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.core.view; + + +public class ViewPropertyAnimatorListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.ViewPropertyAnimatorListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationCancel:(Landroid/view/View;)V:GetOnAnimationCancel_Landroid_view_View_Handler:AndroidX.Core.View.IViewPropertyAnimatorListenerInvoker, Xamarin.AndroidX.Core\n" + + "n_onAnimationEnd:(Landroid/view/View;)V:GetOnAnimationEnd_Landroid_view_View_Handler:AndroidX.Core.View.IViewPropertyAnimatorListenerInvoker, Xamarin.AndroidX.Core\n" + + "n_onAnimationStart:(Landroid/view/View;)V:GetOnAnimationStart_Landroid_view_View_Handler:AndroidX.Core.View.IViewPropertyAnimatorListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.IViewPropertyAnimatorListenerImplementor, Xamarin.AndroidX.Core", ViewPropertyAnimatorListenerImplementor.class, __md_methods); + } + + public ViewPropertyAnimatorListenerImplementor () + { + super (); + if (getClass () == ViewPropertyAnimatorListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.IViewPropertyAnimatorListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationCancel (android.view.View p0) + { + n_onAnimationCancel (p0); + } + + private native void n_onAnimationCancel (android.view.View p0); + + public void onAnimationEnd (android.view.View p0) + { + n_onAnimationEnd (p0); + } + + private native void n_onAnimationEnd (android.view.View p0); + + public void onAnimationStart (android.view.View p0) + { + n_onAnimationStart (p0); + } + + private native void n_onAnimationStart (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorUpdateListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorUpdateListenerImplementor.java new file mode 100644 index 0000000..49e71e9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/ViewPropertyAnimatorUpdateListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class ViewPropertyAnimatorUpdateListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.ViewPropertyAnimatorUpdateListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationUpdate:(Landroid/view/View;)V:GetOnAnimationUpdate_Landroid_view_View_Handler:AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.AndroidX.Core", ViewPropertyAnimatorUpdateListenerImplementor.class, __md_methods); + } + + public ViewPropertyAnimatorUpdateListenerImplementor () + { + super (); + if (getClass () == ViewPropertyAnimatorUpdateListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationUpdate (android.view.View p0) + { + n_onAnimationUpdate (p0); + } + + private native void n_onAnimationUpdate (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.java new file mode 100644 index 0000000..bd68693 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view; + + +public class WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.WindowInsetsControllerCompat.OnControllableInsetsChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onControllableInsetsChanged:(Landroidx/core/view/WindowInsetsControllerCompat;I)V:GetOnControllableInsetsChanged_Landroidx_core_view_WindowInsetsControllerCompat_IHandler:AndroidX.Core.View.WindowInsetsControllerCompat/IOnControllableInsetsChangedListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListenerImplementor, Xamarin.AndroidX.Core", WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.class, __md_methods); + } + + public WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor () + { + super (); + if (getClass () == WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onControllableInsetsChanged (androidx.core.view.WindowInsetsControllerCompat p0, int p1) + { + n_onControllableInsetsChanged (p0, p1); + } + + private native void n_onControllableInsetsChanged (androidx.core.view.WindowInsetsControllerCompat p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java new file mode 100644 index 0000000..132292f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view.accessibility; + + +public class AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.accessibility.AccessibilityManagerCompat.AccessibilityStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAccessibilityStateChanged:(Z)V:GetOnAccessibilityStateChanged_ZHandler:AndroidX.Core.View.Accessibility.AccessibilityManagerCompat/IAccessibilityStateChangeListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListenerImplementor, Xamarin.AndroidX.Core", AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class, __md_methods); + } + + public AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor () + { + super (); + if (getClass () == AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onAccessibilityStateChanged (boolean p0) + { + n_onAccessibilityStateChanged (p0); + } + + private native void n_onAccessibilityStateChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java new file mode 100644 index 0000000..4be8720 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/accessibility/AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view.accessibility; + + +public class AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.accessibility.AccessibilityManagerCompat.TouchExplorationStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTouchExplorationStateChanged:(Z)V:GetOnTouchExplorationStateChanged_ZHandler:AndroidX.Core.View.Accessibility.AccessibilityManagerCompat/ITouchExplorationStateChangeListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListenerImplementor, Xamarin.AndroidX.Core", AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class, __md_methods); + } + + public AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor () + { + super (); + if (getClass () == AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onTouchExplorationStateChanged (boolean p0) + { + n_onTouchExplorationStateChanged (p0); + } + + private native void n_onTouchExplorationStateChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/inputmethod/InputConnectionCompat_OnCommitContentListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/inputmethod/InputConnectionCompat_OnCommitContentListenerImplementor.java new file mode 100644 index 0000000..6c4df2f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/view/inputmethod/InputConnectionCompat_OnCommitContentListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.view.inputmethod; + + +public class InputConnectionCompat_OnCommitContentListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.view.inputmethod.InputConnectionCompat.OnCommitContentListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCommitContent:(Landroidx/core/view/inputmethod/InputContentInfoCompat;ILandroid/os/Bundle;)Z:GetOnCommitContent_Landroidx_core_view_inputmethod_InputContentInfoCompat_ILandroid_os_Bundle_Handler:AndroidX.Core.View.InputMethod.InputConnectionCompat/IOnCommitContentListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListenerImplementor, Xamarin.AndroidX.Core", InputConnectionCompat_OnCommitContentListenerImplementor.class, __md_methods); + } + + public InputConnectionCompat_OnCommitContentListenerImplementor () + { + super (); + if (getClass () == InputConnectionCompat_OnCommitContentListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public boolean onCommitContent (androidx.core.view.inputmethod.InputContentInfoCompat p0, int p1, android.os.Bundle p2) + { + return n_onCommitContent (p0, p1, p2); + } + + private native boolean n_onCommitContent (androidx.core.view.inputmethod.InputContentInfoCompat p0, int p1, android.os.Bundle p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/widget/NestedScrollView_OnScrollChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/widget/NestedScrollView_OnScrollChangeListenerImplementor.java new file mode 100644 index 0000000..608a235 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/core/widget/NestedScrollView_OnScrollChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.core.widget; + + +public class NestedScrollView_OnScrollChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.core.widget.NestedScrollView.OnScrollChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrollChange:(Landroidx/core/widget/NestedScrollView;IIII)V:GetOnScrollChange_Landroidx_core_widget_NestedScrollView_IIIIHandler:AndroidX.Core.Widget.NestedScrollView/IOnScrollChangeListenerInvoker, Xamarin.AndroidX.Core\n" + + ""; + mono.android.Runtime.register ("AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.AndroidX.Core", NestedScrollView_OnScrollChangeListenerImplementor.class, __md_methods); + } + + public NestedScrollView_OnScrollChangeListenerImplementor () + { + super (); + if (getClass () == NestedScrollView_OnScrollChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.AndroidX.Core", "", this, new java.lang.Object[] { }); + } + } + + public void onScrollChange (androidx.core.widget.NestedScrollView p0, int p1, int p2, int p3, int p4) + { + n_onScrollChange (p0, p1, p2, p3, p4); + } + + private native void n_onScrollChange (androidx.core.widget.NestedScrollView p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/customview/poolingcontainer/PoolingContainerListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/customview/poolingcontainer/PoolingContainerListenerImplementor.java new file mode 100644 index 0000000..ab7ea2b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/customview/poolingcontainer/PoolingContainerListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.customview.poolingcontainer; + + +public class PoolingContainerListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.customview.poolingcontainer.PoolingContainerListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onRelease:()V:GetOnReleaseHandler:AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerInvoker, Xamarin.AndroidX.CustomView.PoolingContainer\n" + + ""; + mono.android.Runtime.register ("AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerImplementor, Xamarin.AndroidX.CustomView.PoolingContainer", PoolingContainerListenerImplementor.class, __md_methods); + } + + public PoolingContainerListenerImplementor () + { + super (); + if (getClass () == PoolingContainerListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerImplementor, Xamarin.AndroidX.CustomView.PoolingContainer", "", this, new java.lang.Object[] { }); + } + } + + public void onRelease () + { + n_onRelease (); + } + + private native void n_onRelease (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/drawerlayout/widget/DrawerLayout_DrawerListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/drawerlayout/widget/DrawerLayout_DrawerListenerImplementor.java new file mode 100644 index 0000000..26552f6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/drawerlayout/widget/DrawerLayout_DrawerListenerImplementor.java @@ -0,0 +1,71 @@ +package mono.androidx.drawerlayout.widget; + + +public class DrawerLayout_DrawerListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.drawerlayout.widget.DrawerLayout.DrawerListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDrawerClosed:(Landroid/view/View;)V:GetOnDrawerClosed_Landroid_view_View_Handler:AndroidX.DrawerLayout.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\n" + + "n_onDrawerOpened:(Landroid/view/View;)V:GetOnDrawerOpened_Landroid_view_View_Handler:AndroidX.DrawerLayout.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\n" + + "n_onDrawerSlide:(Landroid/view/View;F)V:GetOnDrawerSlide_Landroid_view_View_FHandler:AndroidX.DrawerLayout.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\n" + + "n_onDrawerStateChanged:(I)V:GetOnDrawerStateChanged_IHandler:AndroidX.DrawerLayout.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\n" + + ""; + mono.android.Runtime.register ("AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.AndroidX.DrawerLayout", DrawerLayout_DrawerListenerImplementor.class, __md_methods); + } + + public DrawerLayout_DrawerListenerImplementor () + { + super (); + if (getClass () == DrawerLayout_DrawerListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.AndroidX.DrawerLayout", "", this, new java.lang.Object[] { }); + } + } + + public void onDrawerClosed (android.view.View p0) + { + n_onDrawerClosed (p0); + } + + private native void n_onDrawerClosed (android.view.View p0); + + public void onDrawerOpened (android.view.View p0) + { + n_onDrawerOpened (p0); + } + + private native void n_onDrawerOpened (android.view.View p0); + + public void onDrawerSlide (android.view.View p0, float p1) + { + n_onDrawerSlide (p0, p1); + } + + private native void n_onDrawerSlide (android.view.View p0, float p1); + + public void onDrawerStateChanged (int p0) + { + n_onDrawerStateChanged (p0); + } + + private native void n_onDrawerStateChanged (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/AnimationHandler_DurationScaleChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/AnimationHandler_DurationScaleChangeListenerImplementor.java new file mode 100644 index 0000000..7ef502c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/AnimationHandler_DurationScaleChangeListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.dynamicanimation.animation; + + +public class AnimationHandler_DurationScaleChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.dynamicanimation.animation.AnimationHandler.DurationScaleChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_register:()Z:GetRegisterHandler:AndroidX.DynamicAnimation.AnimationHandler/IDurationScaleChangeListenerInvoker, Xamarin.AndroidX.DynamicAnimation\n" + + "n_unregister:()Z:GetUnregisterHandler:AndroidX.DynamicAnimation.AnimationHandler/IDurationScaleChangeListenerInvoker, Xamarin.AndroidX.DynamicAnimation\n" + + ""; + mono.android.Runtime.register ("AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListenerImplementor, Xamarin.AndroidX.DynamicAnimation", AnimationHandler_DurationScaleChangeListenerImplementor.class, __md_methods); + } + + public AnimationHandler_DurationScaleChangeListenerImplementor () + { + super (); + if (getClass () == AnimationHandler_DurationScaleChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListenerImplementor, Xamarin.AndroidX.DynamicAnimation", "", this, new java.lang.Object[] { }); + } + } + + public boolean register () + { + return n_register (); + } + + private native boolean n_register (); + + public boolean unregister () + { + return n_unregister (); + } + + private native boolean n_unregister (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationEndListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationEndListenerImplementor.java new file mode 100644 index 0000000..f3c8bd9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationEndListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.dynamicanimation.animation; + + +public class DynamicAnimation_OnAnimationEndListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.dynamicanimation.animation.DynamicAnimation.OnAnimationEndListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationEnd:(Landroidx/dynamicanimation/animation/DynamicAnimation;ZFF)V:GetOnAnimationEnd_Landroidx_dynamicanimation_animation_DynamicAnimation_ZFFHandler:AndroidX.DynamicAnimation.DynamicAnimation/IOnAnimationEndListenerInvoker, Xamarin.AndroidX.DynamicAnimation\n" + + ""; + mono.android.Runtime.register ("AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListenerImplementor, Xamarin.AndroidX.DynamicAnimation", DynamicAnimation_OnAnimationEndListenerImplementor.class, __md_methods); + } + + public DynamicAnimation_OnAnimationEndListenerImplementor () + { + super (); + if (getClass () == DynamicAnimation_OnAnimationEndListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListenerImplementor, Xamarin.AndroidX.DynamicAnimation", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationEnd (androidx.dynamicanimation.animation.DynamicAnimation p0, boolean p1, float p2, float p3) + { + n_onAnimationEnd (p0, p1, p2, p3); + } + + private native void n_onAnimationEnd (androidx.dynamicanimation.animation.DynamicAnimation p0, boolean p1, float p2, float p3); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationUpdateListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationUpdateListenerImplementor.java new file mode 100644 index 0000000..e9c865c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationUpdateListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.dynamicanimation.animation; + + +public class DynamicAnimation_OnAnimationUpdateListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.dynamicanimation.animation.DynamicAnimation.OnAnimationUpdateListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationUpdate:(Landroidx/dynamicanimation/animation/DynamicAnimation;FF)V:GetOnAnimationUpdate_Landroidx_dynamicanimation_animation_DynamicAnimation_FFHandler:AndroidX.DynamicAnimation.DynamicAnimation/IOnAnimationUpdateListenerInvoker, Xamarin.AndroidX.DynamicAnimation\n" + + ""; + mono.android.Runtime.register ("AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListenerImplementor, Xamarin.AndroidX.DynamicAnimation", DynamicAnimation_OnAnimationUpdateListenerImplementor.class, __md_methods); + } + + public DynamicAnimation_OnAnimationUpdateListenerImplementor () + { + super (); + if (getClass () == DynamicAnimation_OnAnimationUpdateListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListenerImplementor, Xamarin.AndroidX.DynamicAnimation", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationUpdate (androidx.dynamicanimation.animation.DynamicAnimation p0, float p1, float p2) + { + n_onAnimationUpdate (p0, p1, p2); + } + + private native void n_onAnimationUpdate (androidx.dynamicanimation.animation.DynamicAnimation p0, float p1, float p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentManager_OnBackStackChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentManager_OnBackStackChangedListenerImplementor.java new file mode 100644 index 0000000..93b7cfc --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentManager_OnBackStackChangedListenerImplementor.java @@ -0,0 +1,79 @@ +package mono.androidx.fragment.app; + + +public class FragmentManager_OnBackStackChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.fragment.app.FragmentManager.OnBackStackChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBackStackChanged:()V:GetOnBackStackChangedHandler:AndroidX.Fragment.App.FragmentManager/IOnBackStackChangedListenerInvoker, Xamarin.AndroidX.Fragment\n" + + "n_onBackStackChangeCancelled:()V:GetOnBackStackChangeCancelledHandler:AndroidX.Fragment.App.FragmentManager/IOnBackStackChangedListener, Xamarin.AndroidX.Fragment\n" + + "n_onBackStackChangeCommitted:(Landroidx/fragment/app/Fragment;Z)V:GetOnBackStackChangeCommitted_Landroidx_fragment_app_Fragment_ZHandler:AndroidX.Fragment.App.FragmentManager/IOnBackStackChangedListener, Xamarin.AndroidX.Fragment\n" + + "n_onBackStackChangeProgressed:(Landroidx/activity/BackEventCompat;)V:GetOnBackStackChangeProgressed_Landroidx_activity_BackEventCompat_Handler:AndroidX.Fragment.App.FragmentManager/IOnBackStackChangedListener, Xamarin.AndroidX.Fragment\n" + + "n_onBackStackChangeStarted:(Landroidx/fragment/app/Fragment;Z)V:GetOnBackStackChangeStarted_Landroidx_fragment_app_Fragment_ZHandler:AndroidX.Fragment.App.FragmentManager/IOnBackStackChangedListener, Xamarin.AndroidX.Fragment\n" + + ""; + mono.android.Runtime.register ("AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.AndroidX.Fragment", FragmentManager_OnBackStackChangedListenerImplementor.class, __md_methods); + } + + public FragmentManager_OnBackStackChangedListenerImplementor () + { + super (); + if (getClass () == FragmentManager_OnBackStackChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.AndroidX.Fragment", "", this, new java.lang.Object[] { }); + } + } + + public void onBackStackChanged () + { + n_onBackStackChanged (); + } + + private native void n_onBackStackChanged (); + + public void onBackStackChangeCancelled () + { + n_onBackStackChangeCancelled (); + } + + private native void n_onBackStackChangeCancelled (); + + public void onBackStackChangeCommitted (androidx.fragment.app.Fragment p0, boolean p1) + { + n_onBackStackChangeCommitted (p0, p1); + } + + private native void n_onBackStackChangeCommitted (androidx.fragment.app.Fragment p0, boolean p1); + + public void onBackStackChangeProgressed (androidx.activity.BackEventCompat p0) + { + n_onBackStackChangeProgressed (p0); + } + + private native void n_onBackStackChangeProgressed (androidx.activity.BackEventCompat p0); + + public void onBackStackChangeStarted (androidx.fragment.app.Fragment p0, boolean p1) + { + n_onBackStackChangeStarted (p0, p1); + } + + private native void n_onBackStackChangeStarted (androidx.fragment.app.Fragment p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentOnAttachListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentOnAttachListenerImplementor.java new file mode 100644 index 0000000..dc9bf07 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentOnAttachListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.fragment.app; + + +public class FragmentOnAttachListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.fragment.app.FragmentOnAttachListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachFragment:(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V:GetOnAttachFragment_Landroidx_fragment_app_FragmentManager_Landroidx_fragment_app_Fragment_Handler:AndroidX.Fragment.App.IFragmentOnAttachListenerInvoker, Xamarin.AndroidX.Fragment\n" + + ""; + mono.android.Runtime.register ("AndroidX.Fragment.App.IFragmentOnAttachListenerImplementor, Xamarin.AndroidX.Fragment", FragmentOnAttachListenerImplementor.class, __md_methods); + } + + public FragmentOnAttachListenerImplementor () + { + super (); + if (getClass () == FragmentOnAttachListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Fragment.App.IFragmentOnAttachListenerImplementor, Xamarin.AndroidX.Fragment", "", this, new java.lang.Object[] { }); + } + } + + public void onAttachFragment (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1) + { + n_onAttachFragment (p0, p1); + } + + private native void n_onAttachFragment (androidx.fragment.app.FragmentManager p0, androidx.fragment.app.Fragment p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentResultListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentResultListenerImplementor.java new file mode 100644 index 0000000..93a785d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/FragmentResultListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.fragment.app; + + +public class FragmentResultListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.fragment.app.FragmentResultListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFragmentResult:(Ljava/lang/String;Landroid/os/Bundle;)V:GetOnFragmentResult_Ljava_lang_String_Landroid_os_Bundle_Handler:AndroidX.Fragment.App.IFragmentResultListenerInvoker, Xamarin.AndroidX.Fragment\n" + + ""; + mono.android.Runtime.register ("AndroidX.Fragment.App.IFragmentResultListenerImplementor, Xamarin.AndroidX.Fragment", FragmentResultListenerImplementor.class, __md_methods); + } + + public FragmentResultListenerImplementor () + { + super (); + if (getClass () == FragmentResultListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Fragment.App.IFragmentResultListenerImplementor, Xamarin.AndroidX.Fragment", "", this, new java.lang.Object[] { }); + } + } + + public void onFragmentResult (java.lang.String p0, android.os.Bundle p1) + { + n_onFragmentResult (p0, p1); + } + + private native void n_onFragmentResult (java.lang.String p0, android.os.Bundle p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/strictmode/FragmentStrictMode_OnViolationListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/strictmode/FragmentStrictMode_OnViolationListenerImplementor.java new file mode 100644 index 0000000..897b0ad --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/fragment/app/strictmode/FragmentStrictMode_OnViolationListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.fragment.app.strictmode; + + +public class FragmentStrictMode_OnViolationListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.fragment.app.strictmode.FragmentStrictMode.OnViolationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViolation:(Landroidx/fragment/app/strictmode/Violation;)V:GetOnViolation_Landroidx_fragment_app_strictmode_Violation_Handler:AndroidX.Fragment.App.StrictMode.FragmentStrictMode/IOnViolationListenerInvoker, Xamarin.AndroidX.Fragment\n" + + ""; + mono.android.Runtime.register ("AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListenerImplementor, Xamarin.AndroidX.Fragment", FragmentStrictMode_OnViolationListenerImplementor.class, __md_methods); + } + + public FragmentStrictMode_OnViolationListenerImplementor () + { + super (); + if (getClass () == FragmentStrictMode_OnViolationListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListenerImplementor, Xamarin.AndroidX.Fragment", "", this, new java.lang.Object[] { }); + } + } + + public void onViolation (androidx.fragment.app.strictmode.Violation p0) + { + n_onViolation (p0); + } + + private native void n_onViolation (androidx.fragment.app.strictmode.Violation p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/lifecycle/ReportFragment_ActivityInitializationListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/lifecycle/ReportFragment_ActivityInitializationListenerImplementor.java new file mode 100644 index 0000000..5935f6d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/lifecycle/ReportFragment_ActivityInitializationListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.lifecycle; + + +public class ReportFragment_ActivityInitializationListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.lifecycle.ReportFragment.ActivityInitializationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:()V:GetOnCreateHandler:AndroidX.Lifecycle.ReportFragment/IActivityInitializationListenerInvoker, Xamarin.AndroidX.Lifecycle.Runtime.Android\n" + + "n_onResume:()V:GetOnResumeHandler:AndroidX.Lifecycle.ReportFragment/IActivityInitializationListenerInvoker, Xamarin.AndroidX.Lifecycle.Runtime.Android\n" + + "n_onStart:()V:GetOnStartHandler:AndroidX.Lifecycle.ReportFragment/IActivityInitializationListenerInvoker, Xamarin.AndroidX.Lifecycle.Runtime.Android\n" + + ""; + mono.android.Runtime.register ("AndroidX.Lifecycle.ReportFragment+IActivityInitializationListenerImplementor, Xamarin.AndroidX.Lifecycle.Runtime.Android", ReportFragment_ActivityInitializationListenerImplementor.class, __md_methods); + } + + public ReportFragment_ActivityInitializationListenerImplementor () + { + super (); + if (getClass () == ReportFragment_ActivityInitializationListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Lifecycle.ReportFragment+IActivityInitializationListenerImplementor, Xamarin.AndroidX.Lifecycle.Runtime.Android", "", this, new java.lang.Object[] { }); + } + } + + public void onCreate () + { + n_onCreate (); + } + + private native void n_onCreate (); + + public void onResume () + { + n_onResume (); + } + + private native void n_onResume (); + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCanceledListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCanceledListenerImplementor.java new file mode 100644 index 0000000..6ca1dfe --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCanceledListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.loader.content; + + +public class Loader_OnLoadCanceledListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.loader.content.Loader.OnLoadCanceledListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLoadCanceled:(Landroidx/loader/content/Loader;)V:GetOnLoadCanceled_Landroidx_loader_content_Loader_Handler:AndroidX.Loader.Content.Loader/IOnLoadCanceledListenerInvoker, Xamarin.AndroidX.Loader\n" + + ""; + mono.android.Runtime.register ("AndroidX.Loader.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.AndroidX.Loader", Loader_OnLoadCanceledListenerImplementor.class, __md_methods); + } + + public Loader_OnLoadCanceledListenerImplementor () + { + super (); + if (getClass () == Loader_OnLoadCanceledListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Loader.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.AndroidX.Loader", "", this, new java.lang.Object[] { }); + } + } + + public void onLoadCanceled (androidx.loader.content.Loader p0) + { + n_onLoadCanceled (p0); + } + + private native void n_onLoadCanceled (androidx.loader.content.Loader p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCompleteListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCompleteListenerImplementor.java new file mode 100644 index 0000000..c69997f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/loader/content/Loader_OnLoadCompleteListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.loader.content; + + +public class Loader_OnLoadCompleteListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.loader.content.Loader.OnLoadCompleteListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLoadComplete:(Landroidx/loader/content/Loader;Ljava/lang/Object;)V:GetOnLoadComplete_Landroidx_loader_content_Loader_Ljava_lang_Object_Handler:AndroidX.Loader.Content.Loader/IOnLoadCompleteListenerInvoker, Xamarin.AndroidX.Loader\n" + + ""; + mono.android.Runtime.register ("AndroidX.Loader.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.AndroidX.Loader", Loader_OnLoadCompleteListenerImplementor.class, __md_methods); + } + + public Loader_OnLoadCompleteListenerImplementor () + { + super (); + if (getClass () == Loader_OnLoadCompleteListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Loader.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.AndroidX.Loader", "", this, new java.lang.Object[] { }); + } + } + + public void onLoadComplete (androidx.loader.content.Loader p0, java.lang.Object p1) + { + n_onLoadComplete (p0, p1); + } + + private native void n_onLoadComplete (androidx.loader.content.Loader p0, java.lang.Object p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/NavController_OnDestinationChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/NavController_OnDestinationChangedListenerImplementor.java new file mode 100644 index 0000000..a15ef83 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/NavController_OnDestinationChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.navigation; + + +public class NavController_OnDestinationChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.navigation.NavController.OnDestinationChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDestinationChanged:(Landroidx/navigation/NavController;Landroidx/navigation/NavDestination;Landroid/os/Bundle;)V:GetOnDestinationChanged_Landroidx_navigation_NavController_Landroidx_navigation_NavDestination_Landroid_os_Bundle_Handler:AndroidX.Navigation.NavController/IOnDestinationChangedListenerInvoker, Xamarin.AndroidX.Navigation.Runtime\n" + + ""; + mono.android.Runtime.register ("AndroidX.Navigation.NavController+IOnDestinationChangedListenerImplementor, Xamarin.AndroidX.Navigation.Runtime", NavController_OnDestinationChangedListenerImplementor.class, __md_methods); + } + + public NavController_OnDestinationChangedListenerImplementor () + { + super (); + if (getClass () == NavController_OnDestinationChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Navigation.NavController+IOnDestinationChangedListenerImplementor, Xamarin.AndroidX.Navigation.Runtime", "", this, new java.lang.Object[] { }); + } + } + + public void onDestinationChanged (androidx.navigation.NavController p0, androidx.navigation.NavDestination p1, android.os.Bundle p2) + { + n_onDestinationChanged (p0, p1, p2); + } + + private native void n_onDestinationChanged (androidx.navigation.NavController p0, androidx.navigation.NavDestination p1, android.os.Bundle p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/ui/AppBarConfiguration_OnNavigateUpListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/ui/AppBarConfiguration_OnNavigateUpListenerImplementor.java new file mode 100644 index 0000000..9b1594e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/navigation/ui/AppBarConfiguration_OnNavigateUpListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.navigation.ui; + + +public class AppBarConfiguration_OnNavigateUpListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.navigation.ui.AppBarConfiguration.OnNavigateUpListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigateUp:()Z:GetOnNavigateUpHandler:AndroidX.Navigation.UI.AppBarConfiguration/IOnNavigateUpListenerInvoker, Xamarin.AndroidX.Navigation.UI\n" + + ""; + mono.android.Runtime.register ("AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListenerImplementor, Xamarin.AndroidX.Navigation.UI", AppBarConfiguration_OnNavigateUpListenerImplementor.class, __md_methods); + } + + public AppBarConfiguration_OnNavigateUpListenerImplementor () + { + super (); + if (getClass () == AppBarConfiguration_OnNavigateUpListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListenerImplementor, Xamarin.AndroidX.Navigation.UI", "", this, new java.lang.Object[] { }); + } + } + + public boolean onNavigateUp () + { + return n_onNavigateUp (); + } + + private native boolean n_onNavigateUp (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/AsyncListDiffer_ListListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/AsyncListDiffer_ListListenerImplementor.java new file mode 100644 index 0000000..2cd0a10 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/AsyncListDiffer_ListListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.recyclerview.widget; + + +public class AsyncListDiffer_ListListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.recyclerview.widget.AsyncListDiffer.ListListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCurrentListChanged:(Ljava/util/List;Ljava/util/List;)V:GetOnCurrentListChanged_Ljava_util_List_Ljava_util_List_Handler:AndroidX.RecyclerView.Widget.AsyncListDiffer/IListListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + ""; + mono.android.Runtime.register ("AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListenerImplementor, Xamarin.AndroidX.RecyclerView", AsyncListDiffer_ListListenerImplementor.class, __md_methods); + } + + public AsyncListDiffer_ListListenerImplementor () + { + super (); + if (getClass () == AsyncListDiffer_ListListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListenerImplementor, Xamarin.AndroidX.RecyclerView", "", this, new java.lang.Object[] { }); + } + } + + public void onCurrentListChanged (java.util.List p0, java.util.List p1) + { + n_onCurrentListChanged (p0, p1); + } + + private native void n_onCurrentListChanged (java.util.List p0, java.util.List p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java new file mode 100644 index 0000000..04317e2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.recyclerview.widget; + + +public class RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.recyclerview.widget.RecyclerView.ItemAnimator.ItemAnimatorFinishedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationsFinished:()V:GetOnAnimationsFinishedHandler:AndroidX.RecyclerView.Widget.RecyclerView/ItemAnimator/IItemAnimatorFinishedListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + ""; + mono.android.Runtime.register ("AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.AndroidX.RecyclerView", RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class, __md_methods); + } + + public RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor () + { + super (); + if (getClass () == RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.AndroidX.RecyclerView", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationsFinished () + { + n_onAnimationsFinished (); + } + + private native void n_onAnimationsFinished (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java new file mode 100644 index 0000000..3757644 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.androidx.recyclerview.widget; + + +public class RecyclerView_OnChildAttachStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.recyclerview.widget.RecyclerView.OnChildAttachStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onChildViewAttachedToWindow:(Landroid/view/View;)V:GetOnChildViewAttachedToWindow_Landroid_view_View_Handler:AndroidX.RecyclerView.Widget.RecyclerView/IOnChildAttachStateChangeListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + "n_onChildViewDetachedFromWindow:(Landroid/view/View;)V:GetOnChildViewDetachedFromWindow_Landroid_view_View_Handler:AndroidX.RecyclerView.Widget.RecyclerView/IOnChildAttachStateChangeListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + ""; + mono.android.Runtime.register ("AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.AndroidX.RecyclerView", RecyclerView_OnChildAttachStateChangeListenerImplementor.class, __md_methods); + } + + public RecyclerView_OnChildAttachStateChangeListenerImplementor () + { + super (); + if (getClass () == RecyclerView_OnChildAttachStateChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.AndroidX.RecyclerView", "", this, new java.lang.Object[] { }); + } + } + + public void onChildViewAttachedToWindow (android.view.View p0) + { + n_onChildViewAttachedToWindow (p0); + } + + private native void n_onChildViewAttachedToWindow (android.view.View p0); + + public void onChildViewDetachedFromWindow (android.view.View p0) + { + n_onChildViewDetachedFromWindow (p0); + } + + private native void n_onChildViewDetachedFromWindow (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnItemTouchListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnItemTouchListenerImplementor.java new file mode 100644 index 0000000..670968c --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_OnItemTouchListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.recyclerview.widget; + + +public class RecyclerView_OnItemTouchListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.recyclerview.widget.RecyclerView.OnItemTouchListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroidx/recyclerview/widget/RecyclerView;Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroidx_recyclerview_widget_RecyclerView_Landroid_view_MotionEvent_Handler:AndroidX.RecyclerView.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + "n_onRequestDisallowInterceptTouchEvent:(Z)V:GetOnRequestDisallowInterceptTouchEvent_ZHandler:AndroidX.RecyclerView.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + "n_onTouchEvent:(Landroidx/recyclerview/widget/RecyclerView;Landroid/view/MotionEvent;)V:GetOnTouchEvent_Landroidx_recyclerview_widget_RecyclerView_Landroid_view_MotionEvent_Handler:AndroidX.RecyclerView.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + ""; + mono.android.Runtime.register ("AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.AndroidX.RecyclerView", RecyclerView_OnItemTouchListenerImplementor.class, __md_methods); + } + + public RecyclerView_OnItemTouchListenerImplementor () + { + super (); + if (getClass () == RecyclerView_OnItemTouchListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.AndroidX.RecyclerView", "", this, new java.lang.Object[] { }); + } + } + + public boolean onInterceptTouchEvent (androidx.recyclerview.widget.RecyclerView p0, android.view.MotionEvent p1) + { + return n_onInterceptTouchEvent (p0, p1); + } + + private native boolean n_onInterceptTouchEvent (androidx.recyclerview.widget.RecyclerView p0, android.view.MotionEvent p1); + + public void onRequestDisallowInterceptTouchEvent (boolean p0) + { + n_onRequestDisallowInterceptTouchEvent (p0); + } + + private native void n_onRequestDisallowInterceptTouchEvent (boolean p0); + + public void onTouchEvent (androidx.recyclerview.widget.RecyclerView p0, android.view.MotionEvent p1) + { + n_onTouchEvent (p0, p1); + } + + private native void n_onTouchEvent (androidx.recyclerview.widget.RecyclerView p0, android.view.MotionEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_RecyclerListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_RecyclerListenerImplementor.java new file mode 100644 index 0000000..a33e67a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/recyclerview/widget/RecyclerView_RecyclerListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.recyclerview.widget; + + +public class RecyclerView_RecyclerListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.recyclerview.widget.RecyclerView.RecyclerListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViewRecycled:(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroidx_recyclerview_widget_RecyclerView_ViewHolder_Handler:AndroidX.RecyclerView.Widget.RecyclerView/IRecyclerListenerInvoker, Xamarin.AndroidX.RecyclerView\n" + + ""; + mono.android.Runtime.register ("AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.AndroidX.RecyclerView", RecyclerView_RecyclerListenerImplementor.class, __md_methods); + } + + public RecyclerView_RecyclerListenerImplementor () + { + super (); + if (getClass () == RecyclerView_RecyclerListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.AndroidX.RecyclerView", "", this, new java.lang.Object[] { }); + } + } + + public void onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (androidx.recyclerview.widget.RecyclerView.ViewHolder p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/slidingpanelayout/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/slidingpanelayout/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java new file mode 100644 index 0000000..fa70d8a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/slidingpanelayout/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.slidingpanelayout.widget; + + +public class SlidingPaneLayout_PanelSlideListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.slidingpanelayout.widget.SlidingPaneLayout.PanelSlideListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPanelClosed:(Landroid/view/View;)V:GetOnPanelClosed_Landroid_view_View_Handler:AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.AndroidX.SlidingPaneLayout\n" + + "n_onPanelOpened:(Landroid/view/View;)V:GetOnPanelOpened_Landroid_view_View_Handler:AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.AndroidX.SlidingPaneLayout\n" + + "n_onPanelSlide:(Landroid/view/View;F)V:GetOnPanelSlide_Landroid_view_View_FHandler:AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.AndroidX.SlidingPaneLayout\n" + + ""; + mono.android.Runtime.register ("AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.AndroidX.SlidingPaneLayout", SlidingPaneLayout_PanelSlideListenerImplementor.class, __md_methods); + } + + public SlidingPaneLayout_PanelSlideListenerImplementor () + { + super (); + if (getClass () == SlidingPaneLayout_PanelSlideListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.AndroidX.SlidingPaneLayout", "", this, new java.lang.Object[] { }); + } + } + + public void onPanelClosed (android.view.View p0) + { + n_onPanelClosed (p0); + } + + private native void n_onPanelClosed (android.view.View p0); + + public void onPanelOpened (android.view.View p0) + { + n_onPanelOpened (p0); + } + + private native void n_onPanelOpened (android.view.View p0); + + public void onPanelSlide (android.view.View p0, float p1) + { + n_onPanelSlide (p0, p1); + } + + private native void n_onPanelSlide (android.view.View p0, float p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/swiperefreshlayout/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/swiperefreshlayout/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java new file mode 100644 index 0000000..7f08281 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/swiperefreshlayout/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.swiperefreshlayout.widget; + + +public class SwipeRefreshLayout_OnRefreshListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.swiperefreshlayout.widget.SwipeRefreshLayout.OnRefreshListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onRefresh:()V:GetOnRefreshHandler:AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout/IOnRefreshListenerInvoker, Xamarin.AndroidX.SwipeRefreshLayout\n" + + ""; + mono.android.Runtime.register ("AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.AndroidX.SwipeRefreshLayout", SwipeRefreshLayout_OnRefreshListenerImplementor.class, __md_methods); + } + + public SwipeRefreshLayout_OnRefreshListenerImplementor () + { + super (); + if (getClass () == SwipeRefreshLayout_OnRefreshListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.AndroidX.SwipeRefreshLayout", "", this, new java.lang.Object[] { }); + } + } + + public void onRefresh () + { + n_onRefresh (); + } + + private native void n_onRefresh (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/transition/Transition_TransitionListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/transition/Transition_TransitionListenerImplementor.java new file mode 100644 index 0000000..5be78b6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/transition/Transition_TransitionListenerImplementor.java @@ -0,0 +1,95 @@ +package mono.androidx.transition; + + +public class Transition_TransitionListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.transition.Transition.TransitionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTransitionCancel:(Landroidx/transition/Transition;)V:GetOnTransitionCancel_Landroidx_transition_Transition_Handler:AndroidX.Transitions.Transition/ITransitionListenerInvoker, Xamarin.AndroidX.Transition\n" + + "n_onTransitionEnd:(Landroidx/transition/Transition;)V:GetOnTransitionEnd_Landroidx_transition_Transition_Handler:AndroidX.Transitions.Transition/ITransitionListenerInvoker, Xamarin.AndroidX.Transition\n" + + "n_onTransitionPause:(Landroidx/transition/Transition;)V:GetOnTransitionPause_Landroidx_transition_Transition_Handler:AndroidX.Transitions.Transition/ITransitionListenerInvoker, Xamarin.AndroidX.Transition\n" + + "n_onTransitionResume:(Landroidx/transition/Transition;)V:GetOnTransitionResume_Landroidx_transition_Transition_Handler:AndroidX.Transitions.Transition/ITransitionListenerInvoker, Xamarin.AndroidX.Transition\n" + + "n_onTransitionStart:(Landroidx/transition/Transition;)V:GetOnTransitionStart_Landroidx_transition_Transition_Handler:AndroidX.Transitions.Transition/ITransitionListenerInvoker, Xamarin.AndroidX.Transition\n" + + "n_onTransitionEnd:(Landroidx/transition/Transition;Z)V:GetOnTransitionEndReversed_Landroidx_transition_Transition_ZHandler:AndroidX.Transitions.Transition/ITransitionListener, Xamarin.AndroidX.Transition\n" + + "n_onTransitionStart:(Landroidx/transition/Transition;Z)V:GetOnTransitionStartReversed_Landroidx_transition_Transition_ZHandler:AndroidX.Transitions.Transition/ITransitionListener, Xamarin.AndroidX.Transition\n" + + ""; + mono.android.Runtime.register ("AndroidX.Transitions.Transition+ITransitionListenerImplementor, Xamarin.AndroidX.Transition", Transition_TransitionListenerImplementor.class, __md_methods); + } + + public Transition_TransitionListenerImplementor () + { + super (); + if (getClass () == Transition_TransitionListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.Transitions.Transition+ITransitionListenerImplementor, Xamarin.AndroidX.Transition", "", this, new java.lang.Object[] { }); + } + } + + public void onTransitionCancel (androidx.transition.Transition p0) + { + n_onTransitionCancel (p0); + } + + private native void n_onTransitionCancel (androidx.transition.Transition p0); + + public void onTransitionEnd (androidx.transition.Transition p0) + { + n_onTransitionEnd (p0); + } + + private native void n_onTransitionEnd (androidx.transition.Transition p0); + + public void onTransitionPause (androidx.transition.Transition p0) + { + n_onTransitionPause (p0); + } + + private native void n_onTransitionPause (androidx.transition.Transition p0); + + public void onTransitionResume (androidx.transition.Transition p0) + { + n_onTransitionResume (p0); + } + + private native void n_onTransitionResume (androidx.transition.Transition p0); + + public void onTransitionStart (androidx.transition.Transition p0) + { + n_onTransitionStart (p0); + } + + private native void n_onTransitionStart (androidx.transition.Transition p0); + + public void onTransitionEnd (androidx.transition.Transition p0, boolean p1) + { + n_onTransitionEnd (p0, p1); + } + + private native void n_onTransitionEnd (androidx.transition.Transition p0, boolean p1); + + public void onTransitionStart (androidx.transition.Transition p0, boolean p1) + { + n_onTransitionStart (p0, p1); + } + + private native void n_onTransitionStart (androidx.transition.Transition p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnAdapterChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnAdapterChangeListenerImplementor.java new file mode 100644 index 0000000..1959ee2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnAdapterChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.viewpager.widget; + + +public class ViewPager_OnAdapterChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.viewpager.widget.ViewPager.OnAdapterChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAdapterChanged:(Landroidx/viewpager/widget/ViewPager;Landroidx/viewpager/widget/PagerAdapter;Landroidx/viewpager/widget/PagerAdapter;)V:GetOnAdapterChanged_Landroidx_viewpager_widget_ViewPager_Landroidx_viewpager_widget_PagerAdapter_Landroidx_viewpager_widget_PagerAdapter_Handler:AndroidX.ViewPager.Widget.ViewPager/IOnAdapterChangeListenerInvoker, Xamarin.AndroidX.ViewPager\n" + + ""; + mono.android.Runtime.register ("AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListenerImplementor, Xamarin.AndroidX.ViewPager", ViewPager_OnAdapterChangeListenerImplementor.class, __md_methods); + } + + public ViewPager_OnAdapterChangeListenerImplementor () + { + super (); + if (getClass () == ViewPager_OnAdapterChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListenerImplementor, Xamarin.AndroidX.ViewPager", "", this, new java.lang.Object[] { }); + } + } + + public void onAdapterChanged (androidx.viewpager.widget.ViewPager p0, androidx.viewpager.widget.PagerAdapter p1, androidx.viewpager.widget.PagerAdapter p2) + { + n_onAdapterChanged (p0, p1, p2); + } + + private native void n_onAdapterChanged (androidx.viewpager.widget.ViewPager p0, androidx.viewpager.widget.PagerAdapter p1, androidx.viewpager.widget.PagerAdapter p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnPageChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnPageChangeListenerImplementor.java new file mode 100644 index 0000000..d579b4f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager/widget/ViewPager_OnPageChangeListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.androidx.viewpager.widget; + + +public class ViewPager_OnPageChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.viewpager.widget.ViewPager.OnPageChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPageScrollStateChanged:(I)V:GetOnPageScrollStateChanged_IHandler:AndroidX.ViewPager.Widget.ViewPager/IOnPageChangeListenerInvoker, Xamarin.AndroidX.ViewPager\n" + + "n_onPageScrolled:(IFI)V:GetOnPageScrolled_IFIHandler:AndroidX.ViewPager.Widget.ViewPager/IOnPageChangeListenerInvoker, Xamarin.AndroidX.ViewPager\n" + + "n_onPageSelected:(I)V:GetOnPageSelected_IHandler:AndroidX.ViewPager.Widget.ViewPager/IOnPageChangeListenerInvoker, Xamarin.AndroidX.ViewPager\n" + + ""; + mono.android.Runtime.register ("AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListenerImplementor, Xamarin.AndroidX.ViewPager", ViewPager_OnPageChangeListenerImplementor.class, __md_methods); + } + + public ViewPager_OnPageChangeListenerImplementor () + { + super (); + if (getClass () == ViewPager_OnPageChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListenerImplementor, Xamarin.AndroidX.ViewPager", "", this, new java.lang.Object[] { }); + } + } + + public void onPageScrollStateChanged (int p0) + { + n_onPageScrollStateChanged (p0); + } + + private native void n_onPageScrollStateChanged (int p0); + + public void onPageScrolled (int p0, float p1, int p2) + { + n_onPageScrolled (p0, p1, p2); + } + + private native void n_onPageScrolled (int p0, float p1, int p2); + + public void onPageSelected (int p0) + { + n_onPageSelected (p0); + } + + private native void n_onPageSelected (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager2/adapter/FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager2/adapter/FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor.java new file mode 100644 index 0000000..835c492 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/androidx/viewpager2/adapter/FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.androidx.viewpager2.adapter; + + +public class FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + androidx.viewpager2.adapter.FragmentStateAdapter.FragmentTransactionCallback.OnPostEventListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPost:()V:GetOnPostHandler:AndroidX.ViewPager2.Adapter.FragmentStateAdapter/FragmentTransactionCallback/IOnPostEventListenerInvoker, Xamarin.AndroidX.ViewPager2\n" + + ""; + mono.android.Runtime.register ("AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListenerImplementor, Xamarin.AndroidX.ViewPager2", FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor.class, __md_methods); + } + + public FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor () + { + super (); + if (getClass () == FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor.class) { + mono.android.TypeManager.Activate ("AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListenerImplementor, Xamarin.AndroidX.ViewPager2", "", this, new java.lang.Object[] { }); + } + } + + public void onPost () + { + n_onPost (); + } + + private native void n_onPost (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/load/engine/cache/MemoryCache_ResourceRemovedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/load/engine/cache/MemoryCache_ResourceRemovedListenerImplementor.java new file mode 100644 index 0000000..27c6111 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/load/engine/cache/MemoryCache_ResourceRemovedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.bumptech.glide.load.engine.cache; + + +public class MemoryCache_ResourceRemovedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.bumptech.glide.load.engine.cache.MemoryCache.ResourceRemovedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onResourceRemoved:(Lcom/bumptech/glide/load/engine/Resource;)V:GetOnResourceRemoved_Lcom_bumptech_glide_load_engine_Resource_Handler:Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerInvoker, Xamarin.Android.Glide\n" + + ""; + mono.android.Runtime.register ("Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerImplementor, Xamarin.Android.Glide", MemoryCache_ResourceRemovedListenerImplementor.class, __md_methods); + } + + public MemoryCache_ResourceRemovedListenerImplementor () + { + super (); + if (getClass () == MemoryCache_ResourceRemovedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerImplementor, Xamarin.Android.Glide", "", this, new java.lang.Object[] { }); + } + } + + public void onResourceRemoved (com.bumptech.glide.load.engine.Resource p0) + { + n_onResourceRemoved (p0); + } + + private native void n_onResourceRemoved (com.bumptech.glide.load.engine.Resource p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/ConnectivityMonitor_ConnectivityListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/ConnectivityMonitor_ConnectivityListenerImplementor.java new file mode 100644 index 0000000..a115325 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/ConnectivityMonitor_ConnectivityListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.bumptech.glide.manager; + + +public class ConnectivityMonitor_ConnectivityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.bumptech.glide.manager.ConnectivityMonitor.ConnectivityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onConnectivityChanged:(Z)V:GetOnConnectivityChanged_ZHandler:Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerInvoker, Xamarin.Android.Glide\n" + + ""; + mono.android.Runtime.register ("Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerImplementor, Xamarin.Android.Glide", ConnectivityMonitor_ConnectivityListenerImplementor.class, __md_methods); + } + + public ConnectivityMonitor_ConnectivityListenerImplementor () + { + super (); + if (getClass () == ConnectivityMonitor_ConnectivityListenerImplementor.class) { + mono.android.TypeManager.Activate ("Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerImplementor, Xamarin.Android.Glide", "", this, new java.lang.Object[] { }); + } + } + + public void onConnectivityChanged (boolean p0) + { + n_onConnectivityChanged (p0); + } + + private native void n_onConnectivityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/LifecycleListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/LifecycleListenerImplementor.java new file mode 100644 index 0000000..2e157b6 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/manager/LifecycleListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.com.bumptech.glide.manager; + + +public class LifecycleListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.bumptech.glide.manager.LifecycleListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDestroy:()V:GetOnDestroyHandler:Bumptech.Glide.Manager.ILifecycleListenerInvoker, Xamarin.Android.Glide\n" + + "n_onStart:()V:GetOnStartHandler:Bumptech.Glide.Manager.ILifecycleListenerInvoker, Xamarin.Android.Glide\n" + + "n_onStop:()V:GetOnStopHandler:Bumptech.Glide.Manager.ILifecycleListenerInvoker, Xamarin.Android.Glide\n" + + ""; + mono.android.Runtime.register ("Bumptech.Glide.Manager.ILifecycleListenerImplementor, Xamarin.Android.Glide", LifecycleListenerImplementor.class, __md_methods); + } + + public LifecycleListenerImplementor () + { + super (); + if (getClass () == LifecycleListenerImplementor.class) { + mono.android.TypeManager.Activate ("Bumptech.Glide.Manager.ILifecycleListenerImplementor, Xamarin.Android.Glide", "", this, new java.lang.Object[] { }); + } + } + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + public void onStop () + { + n_onStop (); + } + + private native void n_onStop (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/request/RequestListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/request/RequestListenerImplementor.java new file mode 100644 index 0000000..2be30f8 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/bumptech/glide/request/RequestListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.com.bumptech.glide.request; + + +public class RequestListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.bumptech.glide.request.RequestListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLoadFailed:(Lcom/bumptech/glide/load/engine/GlideException;Ljava/lang/Object;Lcom/bumptech/glide/request/target/Target;Z)Z:GetOnLoadFailed_Lcom_bumptech_glide_load_engine_GlideException_Ljava_lang_Object_Lcom_bumptech_glide_request_target_Target_ZHandler:Bumptech.Glide.Request.IRequestListenerInvoker, Xamarin.Android.Glide\n" + + "n_onResourceReady:(Ljava/lang/Object;Ljava/lang/Object;Lcom/bumptech/glide/request/target/Target;Lcom/bumptech/glide/load/DataSource;Z)Z:GetOnResourceReady_Ljava_lang_Object_Ljava_lang_Object_Lcom_bumptech_glide_request_target_Target_Lcom_bumptech_glide_load_DataSource_ZHandler:Bumptech.Glide.Request.IRequestListenerInvoker, Xamarin.Android.Glide\n" + + ""; + mono.android.Runtime.register ("Bumptech.Glide.Request.IRequestListenerImplementor, Xamarin.Android.Glide", RequestListenerImplementor.class, __md_methods); + } + + public RequestListenerImplementor () + { + super (); + if (getClass () == RequestListenerImplementor.class) { + mono.android.TypeManager.Activate ("Bumptech.Glide.Request.IRequestListenerImplementor, Xamarin.Android.Glide", "", this, new java.lang.Object[] { }); + } + } + + public boolean onLoadFailed (com.bumptech.glide.load.engine.GlideException p0, java.lang.Object p1, com.bumptech.glide.request.target.Target p2, boolean p3) + { + return n_onLoadFailed (p0, p1, p2, p3); + } + + private native boolean n_onLoadFailed (com.bumptech.glide.load.engine.GlideException p0, java.lang.Object p1, com.bumptech.glide.request.target.Target p2, boolean p3); + + public boolean onResourceReady (java.lang.Object p0, java.lang.Object p1, com.bumptech.glide.request.target.Target p2, com.bumptech.glide.load.DataSource p3, boolean p4) + { + return n_onResourceReady (p0, p1, p2, p3, p4); + } + + private native boolean n_onResourceReady (java.lang.Object p0, java.lang.Object p1, com.bumptech.glide.request.target.Target p2, com.bumptech.glide.load.DataSource p3, boolean p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/animation/AnimatableView_ListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/animation/AnimatableView_ListenerImplementor.java new file mode 100644 index 0000000..42a66a3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/animation/AnimatableView_ListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.animation; + + +public class AnimatableView_ListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.animation.AnimatableView.Listener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationEnd:()V:GetOnAnimationEndHandler:Google.Android.Material.Animation.IAnimatableViewListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Animation.IAnimatableViewListenerImplementor, Xamarin.Google.Android.Material", AnimatableView_ListenerImplementor.class, __md_methods); + } + + public AnimatableView_ListenerImplementor () + { + super (); + if (getClass () == AnimatableView_ListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Animation.IAnimatableViewListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onAnimationEnd () + { + n_onAnimationEnd (); + } + + private native void n_onAnimationEnd (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_LiftOnScrollListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_LiftOnScrollListenerImplementor.java new file mode 100644 index 0000000..43baf8b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_LiftOnScrollListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.appbar; + + +public class AppBarLayout_LiftOnScrollListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.appbar.AppBarLayout.LiftOnScrollListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onUpdate:(FI)V:GetOnUpdate_FIHandler:Google.Android.Material.AppBar.AppBarLayout/ILiftOnScrollListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListenerImplementor, Xamarin.Google.Android.Material", AppBarLayout_LiftOnScrollListenerImplementor.class, __md_methods); + } + + public AppBarLayout_LiftOnScrollListenerImplementor () + { + super (); + if (getClass () == AppBarLayout_LiftOnScrollListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onUpdate (float p0, int p1) + { + n_onUpdate (p0, p1); + } + + private native void n_onUpdate (float p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_OnOffsetChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_OnOffsetChangedListenerImplementor.java new file mode 100644 index 0000000..c78878a --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/appbar/AppBarLayout_OnOffsetChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.appbar; + + +public class AppBarLayout_OnOffsetChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.appbar.AppBarLayout.OnOffsetChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onOffsetChanged:(Lcom/google/android/material/appbar/AppBarLayout;I)V:GetOnOffsetChanged_Lcom_google_android_material_appbar_AppBarLayout_IHandler:Google.Android.Material.AppBar.AppBarLayout/IOnOffsetChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Google.Android.Material", AppBarLayout_OnOffsetChangedListenerImplementor.class, __md_methods); + } + + public AppBarLayout_OnOffsetChangedListenerImplementor () + { + super (); + if (getClass () == AppBarLayout_OnOffsetChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onOffsetChanged (com.google.android.material.appbar.AppBarLayout p0, int p1) + { + n_onOffsetChanged (p0, p1); + } + + private native void n_onOffsetChanged (com.google.android.material.appbar.AppBarLayout p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor.java new file mode 100644 index 0000000..52999d9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.behavior; + + +public class HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.behavior.HideBottomViewOnScrollBehavior.OnScrollStateChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onStateChanged:(Landroid/view/View;I)V:GetOnStateChanged_Landroid_view_View_IHandler:Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior/IOnScrollStateChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListenerImplementor, Xamarin.Google.Android.Material", HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor.class, __md_methods); + } + + public HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor () + { + super (); + if (getClass () == HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onStateChanged (android.view.View p0, int p1) + { + n_onStateChanged (p0, p1); + } + + private native void n_onStateChanged (android.view.View p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/SwipeDismissBehavior_OnDismissListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/SwipeDismissBehavior_OnDismissListenerImplementor.java new file mode 100644 index 0000000..6edbb00 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/behavior/SwipeDismissBehavior_OnDismissListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.com.google.android.material.behavior; + + +public class SwipeDismissBehavior_OnDismissListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.behavior.SwipeDismissBehavior.OnDismissListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDismiss:(Landroid/view/View;)V:GetOnDismiss_Landroid_view_View_Handler:Google.Android.Material.Behavior.SwipeDismissBehavior/IOnDismissListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onDragStateChanged:(I)V:GetOnDragStateChanged_IHandler:Google.Android.Material.Behavior.SwipeDismissBehavior/IOnDismissListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Google.Android.Material", SwipeDismissBehavior_OnDismissListenerImplementor.class, __md_methods); + } + + public SwipeDismissBehavior_OnDismissListenerImplementor () + { + super (); + if (getClass () == SwipeDismissBehavior_OnDismissListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onDismiss (android.view.View p0) + { + n_onDismiss (p0); + } + + private native void n_onDismiss (android.view.View p0); + + public void onDragStateChanged (int p0) + { + n_onDragStateChanged (p0); + } + + private native void n_onDragStateChanged (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.java new file mode 100644 index 0000000..c5e7b4f --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.button; + + +public class MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.button.MaterialButtonToggleGroup.OnButtonCheckedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onButtonChecked:(Lcom/google/android/material/button/MaterialButtonToggleGroup;IZ)V:GetOnButtonChecked_Lcom_google_android_material_button_MaterialButtonToggleGroup_IZHandler:Google.Android.Material.Button.MaterialButtonToggleGroup/IOnButtonCheckedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListenerImplementor, Xamarin.Google.Android.Material", MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.class, __md_methods); + } + + public MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor () + { + super (); + if (getClass () == MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onButtonChecked (com.google.android.material.button.MaterialButtonToggleGroup p0, int p1, boolean p2) + { + n_onButtonChecked (p0, p1, p2); + } + + private native void n_onButtonChecked (com.google.android.material.button.MaterialButtonToggleGroup p0, int p1, boolean p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButton_OnCheckedChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButton_OnCheckedChangeListenerImplementor.java new file mode 100644 index 0000000..f6a84a5 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/button/MaterialButton_OnCheckedChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.button; + + +public class MaterialButton_OnCheckedChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.button.MaterialButton.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Lcom/google/android/material/button/MaterialButton;Z)V:GetOnCheckedChanged_Lcom_google_android_material_button_MaterialButton_ZHandler:Google.Android.Material.Button.MaterialButton/IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", MaterialButton_OnCheckedChangeListenerImplementor.class, __md_methods); + } + + public MaterialButton_OnCheckedChangeListenerImplementor () + { + super (); + if (getClass () == MaterialButton_OnCheckedChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (com.google.android.material.button.MaterialButton p0, boolean p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (com.google.android.material.button.MaterialButton p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/card/MaterialCardView_OnCheckedChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/card/MaterialCardView_OnCheckedChangeListenerImplementor.java new file mode 100644 index 0000000..5a7f304 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/card/MaterialCardView_OnCheckedChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.card; + + +public class MaterialCardView_OnCheckedChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.card.MaterialCardView.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Lcom/google/android/material/card/MaterialCardView;Z)V:GetOnCheckedChanged_Lcom_google_android_material_card_MaterialCardView_ZHandler:Google.Android.Material.Card.MaterialCardView/IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", MaterialCardView_OnCheckedChangeListenerImplementor.class, __md_methods); + } + + public MaterialCardView_OnCheckedChangeListenerImplementor () + { + super (); + if (getClass () == MaterialCardView_OnCheckedChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (com.google.android.material.card.MaterialCardView p0, boolean p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (com.google.android.material.card.MaterialCardView p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/carousel/OnMaskChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/carousel/OnMaskChangedListenerImplementor.java new file mode 100644 index 0000000..6b9590b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/carousel/OnMaskChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.carousel; + + +public class OnMaskChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.carousel.OnMaskChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMaskChanged:(Landroid/graphics/RectF;)V:GetOnMaskChanged_Landroid_graphics_RectF_Handler:Google.Android.Material.Carousel.IOnMaskChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Carousel.IOnMaskChangedListenerImplementor, Xamarin.Google.Android.Material", OnMaskChangedListenerImplementor.class, __md_methods); + } + + public OnMaskChangedListenerImplementor () + { + super (); + if (getClass () == OnMaskChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Carousel.IOnMaskChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onMaskChanged (android.graphics.RectF p0) + { + n_onMaskChanged (p0); + } + + private native void n_onMaskChanged (android.graphics.RectF p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnCheckedStateChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnCheckedStateChangedListenerImplementor.java new file mode 100644 index 0000000..0d824b3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnCheckedStateChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.checkbox; + + +public class MaterialCheckBox_OnCheckedStateChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.checkbox.MaterialCheckBox.OnCheckedStateChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedStateChangedListener:(Lcom/google/android/material/checkbox/MaterialCheckBox;I)V:GetOnCheckedStateChangedListener_Lcom_google_android_material_checkbox_MaterialCheckBox_IHandler:Google.Android.Material.CheckBox.MaterialCheckBox/IOnCheckedStateChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListenerImplementor, Xamarin.Google.Android.Material", MaterialCheckBox_OnCheckedStateChangedListenerImplementor.class, __md_methods); + } + + public MaterialCheckBox_OnCheckedStateChangedListenerImplementor () + { + super (); + if (getClass () == MaterialCheckBox_OnCheckedStateChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedStateChangedListener (com.google.android.material.checkbox.MaterialCheckBox p0, int p1) + { + n_onCheckedStateChangedListener (p0, p1); + } + + private native void n_onCheckedStateChangedListener (com.google.android.material.checkbox.MaterialCheckBox p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnErrorChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnErrorChangedListenerImplementor.java new file mode 100644 index 0000000..d140a81 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/checkbox/MaterialCheckBox_OnErrorChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.checkbox; + + +public class MaterialCheckBox_OnErrorChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.checkbox.MaterialCheckBox.OnErrorChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onErrorChanged:(Lcom/google/android/material/checkbox/MaterialCheckBox;Z)V:GetOnErrorChanged_Lcom_google_android_material_checkbox_MaterialCheckBox_ZHandler:Google.Android.Material.CheckBox.MaterialCheckBox/IOnErrorChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListenerImplementor, Xamarin.Google.Android.Material", MaterialCheckBox_OnErrorChangedListenerImplementor.class, __md_methods); + } + + public MaterialCheckBox_OnErrorChangedListenerImplementor () + { + super (); + if (getClass () == MaterialCheckBox_OnErrorChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onErrorChanged (com.google.android.material.checkbox.MaterialCheckBox p0, boolean p1) + { + n_onErrorChanged (p0, p1); + } + + private native void n_onErrorChanged (com.google.android.material.checkbox.MaterialCheckBox p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedChangeListenerImplementor.java new file mode 100644 index 0000000..821cd17 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.chip; + + +public class ChipGroup_OnCheckedChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.chip.ChipGroup.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Lcom/google/android/material/chip/ChipGroup;I)V:GetOnCheckedChanged_Lcom_google_android_material_chip_ChipGroup_IHandler:Google.Android.Material.Chip.ChipGroup/IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", ChipGroup_OnCheckedChangeListenerImplementor.class, __md_methods); + } + + public ChipGroup_OnCheckedChangeListenerImplementor () + { + super (); + if (getClass () == ChipGroup_OnCheckedChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (com.google.android.material.chip.ChipGroup p0, int p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (com.google.android.material.chip.ChipGroup p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedStateChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedStateChangeListenerImplementor.java new file mode 100644 index 0000000..86c0039 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/chip/ChipGroup_OnCheckedStateChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.chip; + + +public class ChipGroup_OnCheckedStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.chip.ChipGroup.OnCheckedStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Lcom/google/android/material/chip/ChipGroup;Ljava/util/List;)V:GetOnCheckedChanged_Lcom_google_android_material_chip_ChipGroup_Ljava_util_List_Handler:Google.Android.Material.Chip.ChipGroup/IOnCheckedStateChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material", ChipGroup_OnCheckedStateChangeListenerImplementor.class, __md_methods); + } + + public ChipGroup_OnCheckedStateChangeListenerImplementor () + { + super (); + if (getClass () == ChipGroup_OnCheckedStateChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (com.google.android.material.chip.ChipGroup p0, java.util.List p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (com.google.android.material.chip.ChipGroup p0, java.util.List p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/datepicker/MaterialPickerOnPositiveButtonClickListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/datepicker/MaterialPickerOnPositiveButtonClickListenerImplementor.java new file mode 100644 index 0000000..4004938 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/datepicker/MaterialPickerOnPositiveButtonClickListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.datepicker; + + +public class MaterialPickerOnPositiveButtonClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.datepicker.MaterialPickerOnPositiveButtonClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPositiveButtonClick:(Ljava/lang/Object;)V:GetOnPositiveButtonClick_Ljava_lang_Object_Handler:Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerImplementor, Xamarin.Google.Android.Material", MaterialPickerOnPositiveButtonClickListenerImplementor.class, __md_methods); + } + + public MaterialPickerOnPositiveButtonClickListenerImplementor () + { + super (); + if (getClass () == MaterialPickerOnPositiveButtonClickListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onPositiveButtonClick (java.lang.Object p0) + { + n_onPositiveButtonClick (p0); + } + + private native void n_onPositiveButtonClick (java.lang.Object p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/CheckableGroup_OnCheckedStateChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/CheckableGroup_OnCheckedStateChangeListenerImplementor.java new file mode 100644 index 0000000..d7d6735 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/CheckableGroup_OnCheckedStateChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.internal; + + +public class CheckableGroup_OnCheckedStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.internal.CheckableGroup.OnCheckedStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedStateChanged:(Ljava/util/Set;)V:GetOnCheckedStateChanged_Ljava_util_Set_Handler:Google.Android.Material.Internal.CheckableGroup/IOnCheckedStateChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material", CheckableGroup_OnCheckedStateChangeListenerImplementor.class, __md_methods); + } + + public CheckableGroup_OnCheckedStateChangeListenerImplementor () + { + super (); + if (getClass () == CheckableGroup_OnCheckedStateChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedStateChanged (java.util.Set p0) + { + n_onCheckedStateChanged (p0); + } + + private native void n_onCheckedStateChanged (java.util.Set p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/MaterialCheckable_OnCheckedChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/MaterialCheckable_OnCheckedChangeListenerImplementor.java new file mode 100644 index 0000000..5590cbe --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/MaterialCheckable_OnCheckedChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.internal; + + +public class MaterialCheckable_OnCheckedChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.internal.MaterialCheckable.OnCheckedChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCheckedChanged:(Ljava/lang/Object;Z)V:GetOnCheckedChanged_Ljava_lang_Object_ZHandler:Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", MaterialCheckable_OnCheckedChangeListenerImplementor.class, __md_methods); + } + + public MaterialCheckable_OnCheckedChangeListenerImplementor () + { + super (); + if (getClass () == MaterialCheckable_OnCheckedChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCheckedChanged (java.lang.Object p0, boolean p1) + { + n_onCheckedChanged (p0, p1); + } + + private native void n_onCheckedChanged (java.lang.Object p0, boolean p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/ViewUtils_OnApplyWindowInsetsListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/ViewUtils_OnApplyWindowInsetsListenerImplementor.java new file mode 100644 index 0000000..5bb64e9 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/internal/ViewUtils_OnApplyWindowInsetsListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.internal; + + +public class ViewUtils_OnApplyWindowInsetsListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.internal.ViewUtils.OnApplyWindowInsetsListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onApplyWindowInsets:(Landroid/view/View;Landroidx/core/view/WindowInsetsCompat;Lcom/google/android/material/internal/ViewUtils$RelativePadding;)Landroidx/core/view/WindowInsetsCompat;:GetOnApplyWindowInsets_Landroid_view_View_Landroidx_core_view_WindowInsetsCompat_Lcom_google_android_material_internal_ViewUtils_RelativePadding_Handler:Google.Android.Material.Internal.ViewUtils/IOnApplyWindowInsetsListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListenerImplementor, Xamarin.Google.Android.Material", ViewUtils_OnApplyWindowInsetsListenerImplementor.class, __md_methods); + } + + public ViewUtils_OnApplyWindowInsetsListenerImplementor () + { + super (); + if (getClass () == ViewUtils_OnApplyWindowInsetsListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public androidx.core.view.WindowInsetsCompat onApplyWindowInsets (android.view.View p0, androidx.core.view.WindowInsetsCompat p1, com.google.android.material.internal.ViewUtils.RelativePadding p2) + { + return n_onApplyWindowInsets (p0, p1, p2); + } + + private native androidx.core.view.WindowInsetsCompat n_onApplyWindowInsets (android.view.View p0, androidx.core.view.WindowInsetsCompat p1, com.google.android.material.internal.ViewUtils.RelativePadding p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemReselectedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemReselectedListenerImplementor.java new file mode 100644 index 0000000..c8e1028 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemReselectedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.navigation; + + +public class NavigationBarView_OnItemReselectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.navigation.NavigationBarView.OnItemReselectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemReselected:(Landroid/view/MenuItem;)V:GetOnNavigationItemReselected_Landroid_view_MenuItem_Handler:Google.Android.Material.Navigation.NavigationBarView/IOnItemReselectedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListenerImplementor, Xamarin.Google.Android.Material", NavigationBarView_OnItemReselectedListenerImplementor.class, __md_methods); + } + + public NavigationBarView_OnItemReselectedListenerImplementor () + { + super (); + if (getClass () == NavigationBarView_OnItemReselectedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onNavigationItemReselected (android.view.MenuItem p0) + { + n_onNavigationItemReselected (p0); + } + + private native void n_onNavigationItemReselected (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemSelectedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemSelectedListenerImplementor.java new file mode 100644 index 0000000..cf6f029 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationBarView_OnItemSelectedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.navigation; + + +public class NavigationBarView_OnItemSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.navigation.NavigationBarView.OnItemSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemSelected:(Landroid/view/MenuItem;)Z:GetOnNavigationItemSelected_Landroid_view_MenuItem_Handler:Google.Android.Material.Navigation.NavigationBarView/IOnItemSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListenerImplementor, Xamarin.Google.Android.Material", NavigationBarView_OnItemSelectedListenerImplementor.class, __md_methods); + } + + public NavigationBarView_OnItemSelectedListenerImplementor () + { + super (); + if (getClass () == NavigationBarView_OnItemSelectedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public boolean onNavigationItemSelected (android.view.MenuItem p0) + { + return n_onNavigationItemSelected (p0); + } + + private native boolean n_onNavigationItemSelected (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationView_OnNavigationItemSelectedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationView_OnNavigationItemSelectedListenerImplementor.java new file mode 100644 index 0000000..02d4851 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/navigation/NavigationView_OnNavigationItemSelectedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.navigation; + + +public class NavigationView_OnNavigationItemSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.navigation.NavigationView.OnNavigationItemSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemSelected:(Landroid/view/MenuItem;)Z:GetOnNavigationItemSelected_Landroid_view_MenuItem_Handler:Google.Android.Material.Navigation.NavigationView/IOnNavigationItemSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Google.Android.Material", NavigationView_OnNavigationItemSelectedListenerImplementor.class, __md_methods); + } + + public NavigationView_OnNavigationItemSelectedListenerImplementor () + { + super (); + if (getClass () == NavigationView_OnNavigationItemSelectedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public boolean onNavigationItemSelected (android.view.MenuItem p0) + { + return n_onNavigationItemSelected (p0); + } + + private native boolean n_onNavigationItemSelected (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/search/SearchView_TransitionListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/search/SearchView_TransitionListenerImplementor.java new file mode 100644 index 0000000..8a7af22 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/search/SearchView_TransitionListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.search; + + +public class SearchView_TransitionListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.search.SearchView.TransitionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onStateChanged:(Lcom/google/android/material/search/SearchView;Lcom/google/android/material/search/SearchView$TransitionState;Lcom/google/android/material/search/SearchView$TransitionState;)V:GetOnStateChanged_Lcom_google_android_material_search_SearchView_Lcom_google_android_material_search_SearchView_TransitionState_Lcom_google_android_material_search_SearchView_TransitionState_Handler:Google.Android.Material.Search.SearchView/ITransitionListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Search.SearchView+ITransitionListenerImplementor, Xamarin.Google.Android.Material", SearchView_TransitionListenerImplementor.class, __md_methods); + } + + public SearchView_TransitionListenerImplementor () + { + super (); + if (getClass () == SearchView_TransitionListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Search.SearchView+ITransitionListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onStateChanged (com.google.android.material.search.SearchView p0, com.google.android.material.search.SearchView.TransitionState p1, com.google.android.material.search.SearchView.TransitionState p2) + { + n_onStateChanged (p0, p1, p2); + } + + private native void n_onStateChanged (com.google.android.material.search.SearchView p0, com.google.android.material.search.SearchView.TransitionState p1, com.google.android.material.search.SearchView.TransitionState p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/shape/ShapeAppearancePathProvider_PathListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/shape/ShapeAppearancePathProvider_PathListenerImplementor.java new file mode 100644 index 0000000..302d97e --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/shape/ShapeAppearancePathProvider_PathListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.com.google.android.material.shape; + + +public class ShapeAppearancePathProvider_PathListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.shape.ShapeAppearancePathProvider.PathListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCornerPathCreated:(Lcom/google/android/material/shape/ShapePath;Landroid/graphics/Matrix;I)V:GetOnCornerPathCreated_Lcom_google_android_material_shape_ShapePath_Landroid_graphics_Matrix_IHandler:Google.Android.Material.Shape.ShapeAppearancePathProvider/IPathListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onEdgePathCreated:(Lcom/google/android/material/shape/ShapePath;Landroid/graphics/Matrix;I)V:GetOnEdgePathCreated_Lcom_google_android_material_shape_ShapePath_Landroid_graphics_Matrix_IHandler:Google.Android.Material.Shape.ShapeAppearancePathProvider/IPathListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListenerImplementor, Xamarin.Google.Android.Material", ShapeAppearancePathProvider_PathListenerImplementor.class, __md_methods); + } + + public ShapeAppearancePathProvider_PathListenerImplementor () + { + super (); + if (getClass () == ShapeAppearancePathProvider_PathListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onCornerPathCreated (com.google.android.material.shape.ShapePath p0, android.graphics.Matrix p1, int p2) + { + n_onCornerPathCreated (p0, p1, p2); + } + + private native void n_onCornerPathCreated (com.google.android.material.shape.ShapePath p0, android.graphics.Matrix p1, int p2); + + public void onEdgePathCreated (com.google.android.material.shape.ShapePath p0, android.graphics.Matrix p1, int p2) + { + n_onEdgePathCreated (p0, p1, p2); + } + + private native void n_onEdgePathCreated (com.google.android.material.shape.ShapePath p0, android.graphics.Matrix p1, int p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnChangeListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnChangeListenerImplementor.java new file mode 100644 index 0000000..252bf64 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnChangeListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.slider; + + +public class BaseOnChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.slider.BaseOnChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onValueChange:(Ljava/lang/Object;FZ)V:GetOnValueChange_Ljava_lang_Object_FZHandler:Google.Android.Material.Slider.IBaseOnChangeListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Slider.IBaseOnChangeListenerImplementor, Xamarin.Google.Android.Material", BaseOnChangeListenerImplementor.class, __md_methods); + } + + public BaseOnChangeListenerImplementor () + { + super (); + if (getClass () == BaseOnChangeListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Slider.IBaseOnChangeListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onValueChange (java.lang.Object p0, float p1, boolean p2) + { + n_onValueChange (p0, p1, p2); + } + + private native void n_onValueChange (java.lang.Object p0, float p1, boolean p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnSliderTouchListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnSliderTouchListenerImplementor.java new file mode 100644 index 0000000..f852bde --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/slider/BaseOnSliderTouchListenerImplementor.java @@ -0,0 +1,55 @@ +package mono.com.google.android.material.slider; + + +public class BaseOnSliderTouchListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.slider.BaseOnSliderTouchListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onStartTrackingTouch:(Ljava/lang/Object;)V:GetOnStartTrackingTouch_Ljava_lang_Object_Handler:Google.Android.Material.Slider.IBaseOnSliderTouchListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onStopTrackingTouch:(Ljava/lang/Object;)V:GetOnStopTrackingTouch_Ljava_lang_Object_Handler:Google.Android.Material.Slider.IBaseOnSliderTouchListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Slider.IBaseOnSliderTouchListenerImplementor, Xamarin.Google.Android.Material", BaseOnSliderTouchListenerImplementor.class, __md_methods); + } + + public BaseOnSliderTouchListenerImplementor () + { + super (); + if (getClass () == BaseOnSliderTouchListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Slider.IBaseOnSliderTouchListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onStartTrackingTouch (java.lang.Object p0) + { + n_onStartTrackingTouch (p0); + } + + private native void n_onStartTrackingTouch (java.lang.Object p0); + + public void onStopTrackingTouch (java.lang.Object p0) + { + n_onStopTrackingTouch (p0); + } + + private native void n_onStopTrackingTouch (java.lang.Object p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/tabs/TabLayout_BaseOnTabSelectedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/tabs/TabLayout_BaseOnTabSelectedListenerImplementor.java new file mode 100644 index 0000000..6f9005b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/tabs/TabLayout_BaseOnTabSelectedListenerImplementor.java @@ -0,0 +1,63 @@ +package mono.com.google.android.material.tabs; + + +public class TabLayout_BaseOnTabSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.tabs.TabLayout.BaseOnTabSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTabReselected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabReselected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onTabSelected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabSelected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + "n_onTabUnselected:(Lcom/google/android/material/tabs/TabLayout$Tab;)V:GetOnTabUnselected_Lcom_google_android_material_tabs_TabLayout_Tab_Handler:Google.Android.Material.Tabs.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Google.Android.Material", TabLayout_BaseOnTabSelectedListenerImplementor.class, __md_methods); + } + + public TabLayout_BaseOnTabSelectedListenerImplementor () + { + super (); + if (getClass () == TabLayout_BaseOnTabSelectedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onTabReselected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabReselected (p0); + } + + private native void n_onTabReselected (com.google.android.material.tabs.TabLayout.Tab p0); + + public void onTabSelected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabSelected (p0); + } + + private native void n_onTabSelected (com.google.android.material.tabs.TabLayout.Tab p0); + + public void onTabUnselected (com.google.android.material.tabs.TabLayout.Tab p0) + { + n_onTabUnselected (p0); + } + + private native void n_onTabUnselected (com.google.android.material.tabs.TabLayout.Tab p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEditTextAttachedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEditTextAttachedListenerImplementor.java new file mode 100644 index 0000000..60a12c2 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEditTextAttachedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.textfield; + + +public class TextInputLayout_OnEditTextAttachedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.textfield.TextInputLayout.OnEditTextAttachedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onEditTextAttached:(Lcom/google/android/material/textfield/TextInputLayout;)V:GetOnEditTextAttached_Lcom_google_android_material_textfield_TextInputLayout_Handler:Google.Android.Material.TextField.TextInputLayout/IOnEditTextAttachedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListenerImplementor, Xamarin.Google.Android.Material", TextInputLayout_OnEditTextAttachedListenerImplementor.class, __md_methods); + } + + public TextInputLayout_OnEditTextAttachedListenerImplementor () + { + super (); + if (getClass () == TextInputLayout_OnEditTextAttachedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onEditTextAttached (com.google.android.material.textfield.TextInputLayout p0) + { + n_onEditTextAttached (p0); + } + + private native void n_onEditTextAttached (com.google.android.material.textfield.TextInputLayout p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEndIconChangedListenerImplementor.java b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEndIconChangedListenerImplementor.java new file mode 100644 index 0000000..0aab4e3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/src/mono/com/google/android/material/textfield/TextInputLayout_OnEndIconChangedListenerImplementor.java @@ -0,0 +1,47 @@ +package mono.com.google.android.material.textfield; + + +public class TextInputLayout_OnEndIconChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + com.google.android.material.textfield.TextInputLayout.OnEndIconChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onEndIconChanged:(Lcom/google/android/material/textfield/TextInputLayout;I)V:GetOnEndIconChanged_Lcom_google_android_material_textfield_TextInputLayout_IHandler:Google.Android.Material.TextField.TextInputLayout/IOnEndIconChangedListenerInvoker, Xamarin.Google.Android.Material\n" + + ""; + mono.android.Runtime.register ("Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListenerImplementor, Xamarin.Google.Android.Material", TextInputLayout_OnEndIconChangedListenerImplementor.class, __md_methods); + } + + public TextInputLayout_OnEndIconChangedListenerImplementor () + { + super (); + if (getClass () == TextInputLayout_OnEndIconChangedListenerImplementor.class) { + mono.android.TypeManager.Activate ("Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListenerImplementor, Xamarin.Google.Android.Material", "", this, new java.lang.Object[] { }); + } + } + + public void onEndIconChanged (com.google.android.material.textfield.TextInputLayout p0, int p1) + { + n_onEndIconChanged (p0, p1); + } + + private native void n_onEndIconChanged (com.google.android.material.textfield.TextInputLayout p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.ll b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.ll new file mode 100644 index 0000000..2901d6d --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.ll @@ -0,0 +1,150032 @@ +; ModuleID = 'typemaps.arm64-v8a.ll' +source_filename = "typemaps.arm64-v8a.ll" +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-android21" + +%struct.TypeMap = type { + i32, ; uint32_t entry_count + ptr, ; char* assembly_name + ptr, ; uint8_t data + ptr, ; TypeMapEntry java_to_managed + ptr ; TypeMapEntry managed_to_java +} + +%struct.TypeMapEntry = type { + ptr, ; char* from + ptr ; char* to +} + +@type_map = dso_local local_unnamed_addr constant %struct.TypeMap { + i32 15340, ; uint32_t entry_count + ptr null, ;assembly_name (unused in this mode) + ptr null, ;data (unused in this mode) + ptr @map_java_to_managed, ; TypeMapEntry* java_to_managed + ptr @map_managed_to_java; TypeMapEntry* managed_to_java +}, align 8 + +@map_managed_to_java = internal dso_local constant [15340 x %struct.TypeMapEntry] [ + %struct.TypeMapEntry { + ptr @.TypeMapEntry.0_from, ; char* from + ptr @.TypeMapEntry.1_to; char* to + }, ; 0 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2_from, ; char* from + ptr @.TypeMapEntry.1_to; char* to + }, ; 1 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3_from, ; char* from + ptr @.TypeMapEntry.4_to; char* to + }, ; 2 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5_from, ; char* from + ptr @.TypeMapEntry.6_to; char* to + }, ; 3 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7_from, ; char* from + ptr @.TypeMapEntry.8_to; char* to + }, ; 4 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9_from, ; char* from + ptr @.TypeMapEntry.8_to; char* to + }, ; 5 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10_from, ; char* from + ptr @.TypeMapEntry.11_to; char* to + }, ; 6 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12_from, ; char* from + ptr @.TypeMapEntry.11_to; char* to + }, ; 7 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13_from, ; char* from + ptr @.TypeMapEntry.14_to; char* to + }, ; 8 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15_from, ; char* from + ptr @.TypeMapEntry.16_to; char* to + }, ; 9 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17_from, ; char* from + ptr @.TypeMapEntry.14_to; char* to + }, ; 10 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18_from, ; char* from + ptr @.TypeMapEntry.19_to; char* to + }, ; 11 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20_from, ; char* from + ptr @.TypeMapEntry.21_to; char* to + }, ; 12 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22_from, ; char* from + ptr @.TypeMapEntry.23_to; char* to + }, ; 13 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24_from, ; char* from + ptr @.TypeMapEntry.25_to; char* to + }, ; 14 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26_from, ; char* from + ptr @.TypeMapEntry.23_to; char* to + }, ; 15 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27_from, ; char* from + ptr @.TypeMapEntry.28_to; char* to + }, ; 16 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.29_from, ; char* from + ptr @.TypeMapEntry.30_to; char* to + }, ; 17 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.31_from, ; char* from + ptr @.TypeMapEntry.32_to; char* to + }, ; 18 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.33_from, ; char* from + ptr @.TypeMapEntry.30_to; char* to + }, ; 19 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.34_from, ; char* from + ptr @.TypeMapEntry.35_to; char* to + }, ; 20 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.36_from, ; char* from + ptr @.TypeMapEntry.35_to; char* to + }, ; 21 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.37_from, ; char* from + ptr @.TypeMapEntry.38_to; char* to + }, ; 22 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.39_from, ; char* from + ptr @.TypeMapEntry.40_to; char* to + }, ; 23 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.41_from, ; char* from + ptr @.TypeMapEntry.42_to; char* to + }, ; 24 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.43_from, ; char* from + ptr @.TypeMapEntry.44_to; char* to + }, ; 25 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.45_from, ; char* from + ptr @.TypeMapEntry.46_to; char* to + }, ; 26 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.47_from, ; char* from + ptr @.TypeMapEntry.46_to; char* to + }, ; 27 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.48_from, ; char* from + ptr @.TypeMapEntry.49_to; char* to + }, ; 28 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.50_from, ; char* from + ptr @.TypeMapEntry.49_to; char* to + }, ; 29 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.51_from, ; char* from + ptr @.TypeMapEntry.52_to; char* to + }, ; 30 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.53_from, ; char* from + ptr @.TypeMapEntry.54_to; char* to + }, ; 31 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.55_from, ; char* from + ptr @.TypeMapEntry.56_to; char* to + }, ; 32 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.57_from, ; char* from + ptr @.TypeMapEntry.58_to; char* to + }, ; 33 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.59_from, ; char* from + ptr @.TypeMapEntry.60_to; char* to + }, ; 34 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.61_from, ; char* from + ptr @.TypeMapEntry.60_to; char* to + }, ; 35 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.62_from, ; char* from + ptr @.TypeMapEntry.63_to; char* to + }, ; 36 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.64_from, ; char* from + ptr @.TypeMapEntry.65_to; char* to + }, ; 37 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.66_from, ; char* from + ptr @.TypeMapEntry.65_to; char* to + }, ; 38 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.67_from, ; char* from + ptr @.TypeMapEntry.68_to; char* to + }, ; 39 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.69_from, ; char* from + ptr @.TypeMapEntry.70_to; char* to + }, ; 40 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.71_from, ; char* from + ptr @.TypeMapEntry.72_to; char* to + }, ; 41 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.73_from, ; char* from + ptr @.TypeMapEntry.74_to; char* to + }, ; 42 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.75_from, ; char* from + ptr @.TypeMapEntry.76_to; char* to + }, ; 43 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.77_from, ; char* from + ptr @.TypeMapEntry.78_to; char* to + }, ; 44 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.79_from, ; char* from + ptr @.TypeMapEntry.80_to; char* to + }, ; 45 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.81_from, ; char* from + ptr @.TypeMapEntry.82_to; char* to + }, ; 46 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.83_from, ; char* from + ptr @.TypeMapEntry.82_to; char* to + }, ; 47 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.84_from, ; char* from + ptr @.TypeMapEntry.85_to; char* to + }, ; 48 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.86_from, ; char* from + ptr @.TypeMapEntry.85_to; char* to + }, ; 49 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.87_from, ; char* from + ptr @.TypeMapEntry.88_to; char* to + }, ; 50 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.89_from, ; char* from + ptr @.TypeMapEntry.90_to; char* to + }, ; 51 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.91_from, ; char* from + ptr @.TypeMapEntry.88_to; char* to + }, ; 52 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.92_from, ; char* from + ptr @.TypeMapEntry.93_to; char* to + }, ; 53 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.94_from, ; char* from + ptr @.TypeMapEntry.95_to; char* to + }, ; 54 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.96_from, ; char* from + ptr @.TypeMapEntry.97_to; char* to + }, ; 55 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.98_from, ; char* from + ptr @.TypeMapEntry.99_to; char* to + }, ; 56 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.100_from, ; char* from + ptr @.TypeMapEntry.101_to; char* to + }, ; 57 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.102_from, ; char* from + ptr @.TypeMapEntry.103_to; char* to + }, ; 58 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.104_from, ; char* from + ptr @.TypeMapEntry.105_to; char* to + }, ; 59 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.106_from, ; char* from + ptr @.TypeMapEntry.107_to; char* to + }, ; 60 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.108_from, ; char* from + ptr @.TypeMapEntry.109_to; char* to + }, ; 61 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.110_from, ; char* from + ptr @.TypeMapEntry.111_to; char* to + }, ; 62 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.112_from, ; char* from + ptr @.TypeMapEntry.113_to; char* to + }, ; 63 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.114_from, ; char* from + ptr @.TypeMapEntry.115_to; char* to + }, ; 64 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.116_from, ; char* from + ptr @.TypeMapEntry.117_to; char* to + }, ; 65 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.118_from, ; char* from + ptr @.TypeMapEntry.119_to; char* to + }, ; 66 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.120_from, ; char* from + ptr @.TypeMapEntry.121_to; char* to + }, ; 67 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.122_from, ; char* from + ptr @.TypeMapEntry.123_to; char* to + }, ; 68 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.124_from, ; char* from + ptr @.TypeMapEntry.125_to; char* to + }, ; 69 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.126_from, ; char* from + ptr @.TypeMapEntry.127_to; char* to + }, ; 70 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.128_from, ; char* from + ptr @.TypeMapEntry.129_to; char* to + }, ; 71 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.130_from, ; char* from + ptr @.TypeMapEntry.131_to; char* to + }, ; 72 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.132_from, ; char* from + ptr @.TypeMapEntry.133_to; char* to + }, ; 73 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.134_from, ; char* from + ptr @.TypeMapEntry.135_to; char* to + }, ; 74 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.136_from, ; char* from + ptr @.TypeMapEntry.137_to; char* to + }, ; 75 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.138_from, ; char* from + ptr @.TypeMapEntry.139_to; char* to + }, ; 76 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.140_from, ; char* from + ptr @.TypeMapEntry.141_to; char* to + }, ; 77 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.142_from, ; char* from + ptr @.TypeMapEntry.143_to; char* to + }, ; 78 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.144_from, ; char* from + ptr @.TypeMapEntry.145_to; char* to + }, ; 79 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.146_from, ; char* from + ptr @.TypeMapEntry.147_to; char* to + }, ; 80 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.148_from, ; char* from + ptr @.TypeMapEntry.149_to; char* to + }, ; 81 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.150_from, ; char* from + ptr @.TypeMapEntry.151_to; char* to + }, ; 82 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.152_from, ; char* from + ptr @.TypeMapEntry.153_to; char* to + }, ; 83 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.154_from, ; char* from + ptr @.TypeMapEntry.155_to; char* to + }, ; 84 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.156_from, ; char* from + ptr @.TypeMapEntry.157_to; char* to + }, ; 85 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.158_from, ; char* from + ptr @.TypeMapEntry.159_to; char* to + }, ; 86 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.160_from, ; char* from + ptr @.TypeMapEntry.161_to; char* to + }, ; 87 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.162_from, ; char* from + ptr @.TypeMapEntry.163_to; char* to + }, ; 88 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.164_from, ; char* from + ptr @.TypeMapEntry.165_to; char* to + }, ; 89 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.166_from, ; char* from + ptr @.TypeMapEntry.167_to; char* to + }, ; 90 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.168_from, ; char* from + ptr @.TypeMapEntry.169_to; char* to + }, ; 91 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.170_from, ; char* from + ptr @.TypeMapEntry.171_to; char* to + }, ; 92 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.172_from, ; char* from + ptr @.TypeMapEntry.173_to; char* to + }, ; 93 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.174_from, ; char* from + ptr @.TypeMapEntry.175_to; char* to + }, ; 94 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.176_from, ; char* from + ptr @.TypeMapEntry.177_to; char* to + }, ; 95 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.178_from, ; char* from + ptr @.TypeMapEntry.179_to; char* to + }, ; 96 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.180_from, ; char* from + ptr @.TypeMapEntry.181_to; char* to + }, ; 97 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.182_from, ; char* from + ptr @.TypeMapEntry.183_to; char* to + }, ; 98 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.184_from, ; char* from + ptr @.TypeMapEntry.185_to; char* to + }, ; 99 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.186_from, ; char* from + ptr @.TypeMapEntry.187_to; char* to + }, ; 100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.188_from, ; char* from + ptr @.TypeMapEntry.189_to; char* to + }, ; 101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.190_from, ; char* from + ptr @.TypeMapEntry.189_to; char* to + }, ; 102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.191_from, ; char* from + ptr @.TypeMapEntry.192_to; char* to + }, ; 103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.193_from, ; char* from + ptr @.TypeMapEntry.194_to; char* to + }, ; 104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.195_from, ; char* from + ptr @.TypeMapEntry.196_to; char* to + }, ; 105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.197_from, ; char* from + ptr @.TypeMapEntry.198_to; char* to + }, ; 106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.199_from, ; char* from + ptr @.TypeMapEntry.200_to; char* to + }, ; 107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.201_from, ; char* from + ptr @.TypeMapEntry.202_to; char* to + }, ; 108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.203_from, ; char* from + ptr @.TypeMapEntry.204_to; char* to + }, ; 109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.205_from, ; char* from + ptr @.TypeMapEntry.206_to; char* to + }, ; 110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.207_from, ; char* from + ptr @.TypeMapEntry.208_to; char* to + }, ; 111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.209_from, ; char* from + ptr @.TypeMapEntry.210_to; char* to + }, ; 112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.211_from, ; char* from + ptr @.TypeMapEntry.212_to; char* to + }, ; 113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.213_from, ; char* from + ptr @.TypeMapEntry.214_to; char* to + }, ; 114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.215_from, ; char* from + ptr @.TypeMapEntry.216_to; char* to + }, ; 115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.217_from, ; char* from + ptr @.TypeMapEntry.218_to; char* to + }, ; 116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.219_from, ; char* from + ptr @.TypeMapEntry.220_to; char* to + }, ; 117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.221_from, ; char* from + ptr @.TypeMapEntry.222_to; char* to + }, ; 118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.223_from, ; char* from + ptr @.TypeMapEntry.224_to; char* to + }, ; 119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.225_from, ; char* from + ptr @.TypeMapEntry.226_to; char* to + }, ; 120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.227_from, ; char* from + ptr @.TypeMapEntry.228_to; char* to + }, ; 121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.229_from, ; char* from + ptr @.TypeMapEntry.230_to; char* to + }, ; 122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.231_from, ; char* from + ptr @.TypeMapEntry.232_to; char* to + }, ; 123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.233_from, ; char* from + ptr @.TypeMapEntry.234_to; char* to + }, ; 124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.235_from, ; char* from + ptr @.TypeMapEntry.236_to; char* to + }, ; 125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.237_from, ; char* from + ptr @.TypeMapEntry.238_to; char* to + }, ; 126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.239_from, ; char* from + ptr @.TypeMapEntry.240_to; char* to + }, ; 127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.241_from, ; char* from + ptr @.TypeMapEntry.242_to; char* to + }, ; 128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.243_from, ; char* from + ptr @.TypeMapEntry.244_to; char* to + }, ; 129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.245_from, ; char* from + ptr @.TypeMapEntry.246_to; char* to + }, ; 130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.247_from, ; char* from + ptr @.TypeMapEntry.248_to; char* to + }, ; 131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.249_from, ; char* from + ptr @.TypeMapEntry.250_to; char* to + }, ; 132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.251_from, ; char* from + ptr @.TypeMapEntry.252_to; char* to + }, ; 133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.253_from, ; char* from + ptr @.TypeMapEntry.254_to; char* to + }, ; 134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.255_from, ; char* from + ptr @.TypeMapEntry.256_to; char* to + }, ; 135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.257_from, ; char* from + ptr @.TypeMapEntry.258_to; char* to + }, ; 136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.259_from, ; char* from + ptr @.TypeMapEntry.260_to; char* to + }, ; 137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.261_from, ; char* from + ptr @.TypeMapEntry.262_to; char* to + }, ; 138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.263_from, ; char* from + ptr @.TypeMapEntry.264_to; char* to + }, ; 139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.265_from, ; char* from + ptr @.TypeMapEntry.266_to; char* to + }, ; 140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.267_from, ; char* from + ptr @.TypeMapEntry.268_to; char* to + }, ; 141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.269_from, ; char* from + ptr @.TypeMapEntry.270_to; char* to + }, ; 142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.271_from, ; char* from + ptr @.TypeMapEntry.272_to; char* to + }, ; 143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.273_from, ; char* from + ptr @.TypeMapEntry.274_to; char* to + }, ; 144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.275_from, ; char* from + ptr @.TypeMapEntry.276_to; char* to + }, ; 145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.277_from, ; char* from + ptr @.TypeMapEntry.278_to; char* to + }, ; 146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.279_from, ; char* from + ptr @.TypeMapEntry.280_to; char* to + }, ; 147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.281_from, ; char* from + ptr @.TypeMapEntry.282_to; char* to + }, ; 148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.283_from, ; char* from + ptr @.TypeMapEntry.284_to; char* to + }, ; 149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.285_from, ; char* from + ptr @.TypeMapEntry.286_to; char* to + }, ; 150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.287_from, ; char* from + ptr @.TypeMapEntry.288_to; char* to + }, ; 151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.289_from, ; char* from + ptr @.TypeMapEntry.290_to; char* to + }, ; 152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.291_from, ; char* from + ptr @.TypeMapEntry.292_to; char* to + }, ; 153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.293_from, ; char* from + ptr @.TypeMapEntry.294_to; char* to + }, ; 154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.295_from, ; char* from + ptr @.TypeMapEntry.296_to; char* to + }, ; 155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.297_from, ; char* from + ptr @.TypeMapEntry.298_to; char* to + }, ; 156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.299_from, ; char* from + ptr @.TypeMapEntry.298_to; char* to + }, ; 157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.300_from, ; char* from + ptr @.TypeMapEntry.301_to; char* to + }, ; 158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.302_from, ; char* from + ptr @.TypeMapEntry.301_to; char* to + }, ; 159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.303_from, ; char* from + ptr @.TypeMapEntry.304_to; char* to + }, ; 160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.305_from, ; char* from + ptr @.TypeMapEntry.304_to; char* to + }, ; 161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.306_from, ; char* from + ptr @.TypeMapEntry.307_to; char* to + }, ; 162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.308_from, ; char* from + ptr @.TypeMapEntry.309_to; char* to + }, ; 163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.310_from, ; char* from + ptr @.TypeMapEntry.311_to; char* to + }, ; 164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.312_from, ; char* from + ptr @.TypeMapEntry.313_to; char* to + }, ; 165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.314_from, ; char* from + ptr @.TypeMapEntry.315_to; char* to + }, ; 166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.316_from, ; char* from + ptr @.TypeMapEntry.317_to; char* to + }, ; 167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.318_from, ; char* from + ptr @.TypeMapEntry.319_to; char* to + }, ; 168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.320_from, ; char* from + ptr @.TypeMapEntry.321_to; char* to + }, ; 169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.322_from, ; char* from + ptr @.TypeMapEntry.319_to; char* to + }, ; 170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.323_from, ; char* from + ptr @.TypeMapEntry.324_to; char* to + }, ; 171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.325_from, ; char* from + ptr @.TypeMapEntry.326_to; char* to + }, ; 172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.327_from, ; char* from + ptr @.TypeMapEntry.328_to; char* to + }, ; 173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.329_from, ; char* from + ptr @.TypeMapEntry.330_to; char* to + }, ; 174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.331_from, ; char* from + ptr @.TypeMapEntry.332_to; char* to + }, ; 175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.333_from, ; char* from + ptr @.TypeMapEntry.334_to; char* to + }, ; 176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.335_from, ; char* from + ptr @.TypeMapEntry.336_to; char* to + }, ; 177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.337_from, ; char* from + ptr @.TypeMapEntry.338_to; char* to + }, ; 178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.339_from, ; char* from + ptr @.TypeMapEntry.340_to; char* to + }, ; 179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.341_from, ; char* from + ptr @.TypeMapEntry.342_to; char* to + }, ; 180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.343_from, ; char* from + ptr @.TypeMapEntry.344_to; char* to + }, ; 181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.345_from, ; char* from + ptr @.TypeMapEntry.346_to; char* to + }, ; 182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.347_from, ; char* from + ptr @.TypeMapEntry.348_to; char* to + }, ; 183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.349_from, ; char* from + ptr @.TypeMapEntry.350_to; char* to + }, ; 184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.351_from, ; char* from + ptr @.TypeMapEntry.352_to; char* to + }, ; 185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.353_from, ; char* from + ptr @.TypeMapEntry.354_to; char* to + }, ; 186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.355_from, ; char* from + ptr @.TypeMapEntry.356_to; char* to + }, ; 187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.357_from, ; char* from + ptr @.TypeMapEntry.358_to; char* to + }, ; 188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.359_from, ; char* from + ptr @.TypeMapEntry.360_to; char* to + }, ; 189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.361_from, ; char* from + ptr @.TypeMapEntry.362_to; char* to + }, ; 190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.363_from, ; char* from + ptr @.TypeMapEntry.364_to; char* to + }, ; 191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.365_from, ; char* from + ptr @.TypeMapEntry.366_to; char* to + }, ; 192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.367_from, ; char* from + ptr @.TypeMapEntry.368_to; char* to + }, ; 193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.369_from, ; char* from + ptr @.TypeMapEntry.370_to; char* to + }, ; 194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.371_from, ; char* from + ptr @.TypeMapEntry.372_to; char* to + }, ; 195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.373_from, ; char* from + ptr @.TypeMapEntry.374_to; char* to + }, ; 196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.375_from, ; char* from + ptr @.TypeMapEntry.376_to; char* to + }, ; 197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.377_from, ; char* from + ptr @.TypeMapEntry.378_to; char* to + }, ; 198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.379_from, ; char* from + ptr @.TypeMapEntry.380_to; char* to + }, ; 199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.381_from, ; char* from + ptr @.TypeMapEntry.382_to; char* to + }, ; 200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.383_from, ; char* from + ptr @.TypeMapEntry.384_to; char* to + }, ; 201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.385_from, ; char* from + ptr @.TypeMapEntry.386_to; char* to + }, ; 202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.387_from, ; char* from + ptr @.TypeMapEntry.388_to; char* to + }, ; 203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.389_from, ; char* from + ptr @.TypeMapEntry.390_to; char* to + }, ; 204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.391_from, ; char* from + ptr @.TypeMapEntry.392_to; char* to + }, ; 205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.393_from, ; char* from + ptr @.TypeMapEntry.394_to; char* to + }, ; 206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.395_from, ; char* from + ptr @.TypeMapEntry.396_to; char* to + }, ; 207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.397_from, ; char* from + ptr @.TypeMapEntry.394_to; char* to + }, ; 208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.398_from, ; char* from + ptr @.TypeMapEntry.399_to; char* to + }, ; 209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.400_from, ; char* from + ptr @.TypeMapEntry.401_to; char* to + }, ; 210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.402_from, ; char* from + ptr @.TypeMapEntry.399_to; char* to + }, ; 211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.403_from, ; char* from + ptr @.TypeMapEntry.404_to; char* to + }, ; 212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.405_from, ; char* from + ptr @.TypeMapEntry.406_to; char* to + }, ; 213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.407_from, ; char* from + ptr @.TypeMapEntry.408_to; char* to + }, ; 214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.409_from, ; char* from + ptr @.TypeMapEntry.404_to; char* to + }, ; 215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.410_from, ; char* from + ptr @.TypeMapEntry.411_to; char* to + }, ; 216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.412_from, ; char* from + ptr @.TypeMapEntry.411_to; char* to + }, ; 217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.413_from, ; char* from + ptr @.TypeMapEntry.414_to; char* to + }, ; 218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.415_from, ; char* from + ptr @.TypeMapEntry.416_to; char* to + }, ; 219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.417_from, ; char* from + ptr @.TypeMapEntry.418_to; char* to + }, ; 220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.419_from, ; char* from + ptr @.TypeMapEntry.420_to; char* to + }, ; 221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.421_from, ; char* from + ptr @.TypeMapEntry.420_to; char* to + }, ; 222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.422_from, ; char* from + ptr @.TypeMapEntry.423_to; char* to + }, ; 223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.424_from, ; char* from + ptr @.TypeMapEntry.425_to; char* to + }, ; 224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.426_from, ; char* from + ptr @.TypeMapEntry.427_to; char* to + }, ; 225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.428_from, ; char* from + ptr @.TypeMapEntry.427_to; char* to + }, ; 226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.429_from, ; char* from + ptr @.TypeMapEntry.430_to; char* to + }, ; 227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.431_from, ; char* from + ptr @.TypeMapEntry.430_to; char* to + }, ; 228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.432_from, ; char* from + ptr @.TypeMapEntry.433_to; char* to + }, ; 229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.434_from, ; char* from + ptr @.TypeMapEntry.435_to; char* to + }, ; 230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.436_from, ; char* from + ptr @.TypeMapEntry.437_to; char* to + }, ; 231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.438_from, ; char* from + ptr @.TypeMapEntry.437_to; char* to + }, ; 232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.439_from, ; char* from + ptr @.TypeMapEntry.440_to; char* to + }, ; 233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.441_from, ; char* from + ptr @.TypeMapEntry.442_to; char* to + }, ; 234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.443_from, ; char* from + ptr @.TypeMapEntry.440_to; char* to + }, ; 235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.444_from, ; char* from + ptr @.TypeMapEntry.445_to; char* to + }, ; 236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.446_from, ; char* from + ptr @.TypeMapEntry.447_to; char* to + }, ; 237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.448_from, ; char* from + ptr @.TypeMapEntry.449_to; char* to + }, ; 238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.450_from, ; char* from + ptr @.TypeMapEntry.451_to; char* to + }, ; 239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.452_from, ; char* from + ptr @.TypeMapEntry.453_to; char* to + }, ; 240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.454_from, ; char* from + ptr @.TypeMapEntry.455_to; char* to + }, ; 241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.456_from, ; char* from + ptr @.TypeMapEntry.457_to; char* to + }, ; 242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.458_from, ; char* from + ptr @.TypeMapEntry.459_to; char* to + }, ; 243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.460_from, ; char* from + ptr @.TypeMapEntry.457_to; char* to + }, ; 244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.461_from, ; char* from + ptr @.TypeMapEntry.462_to; char* to + }, ; 245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.463_from, ; char* from + ptr @.TypeMapEntry.464_to; char* to + }, ; 246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.465_from, ; char* from + ptr @.TypeMapEntry.464_to; char* to + }, ; 247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.466_from, ; char* from + ptr @.TypeMapEntry.467_to; char* to + }, ; 248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.468_from, ; char* from + ptr @.TypeMapEntry.469_to; char* to + }, ; 249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.470_from, ; char* from + ptr @.TypeMapEntry.467_to; char* to + }, ; 250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.471_from, ; char* from + ptr @.TypeMapEntry.472_to; char* to + }, ; 251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.473_from, ; char* from + ptr @.TypeMapEntry.474_to; char* to + }, ; 252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.475_from, ; char* from + ptr @.TypeMapEntry.472_to; char* to + }, ; 253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.476_from, ; char* from + ptr @.TypeMapEntry.477_to; char* to + }, ; 254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.478_from, ; char* from + ptr @.TypeMapEntry.479_to; char* to + }, ; 255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.480_from, ; char* from + ptr @.TypeMapEntry.479_to; char* to + }, ; 256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.481_from, ; char* from + ptr @.TypeMapEntry.482_to; char* to + }, ; 257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.483_from, ; char* from + ptr @.TypeMapEntry.482_to; char* to + }, ; 258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.484_from, ; char* from + ptr @.TypeMapEntry.479_to; char* to + }, ; 259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.485_from, ; char* from + ptr @.TypeMapEntry.479_to; char* to + }, ; 260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.486_from, ; char* from + ptr @.TypeMapEntry.482_to; char* to + }, ; 261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.487_from, ; char* from + ptr @.TypeMapEntry.482_to; char* to + }, ; 262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.488_from, ; char* from + ptr @.TypeMapEntry.489_to; char* to + }, ; 263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.490_from, ; char* from + ptr @.TypeMapEntry.491_to; char* to + }, ; 264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.492_from, ; char* from + ptr @.TypeMapEntry.489_to; char* to + }, ; 265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.493_from, ; char* from + ptr @.TypeMapEntry.494_to; char* to + }, ; 266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.495_from, ; char* from + ptr @.TypeMapEntry.496_to; char* to + }, ; 267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.497_from, ; char* from + ptr @.TypeMapEntry.494_to; char* to + }, ; 268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.498_from, ; char* from + ptr @.TypeMapEntry.499_to; char* to + }, ; 269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.500_from, ; char* from + ptr @.TypeMapEntry.501_to; char* to + }, ; 270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.502_from, ; char* from + ptr @.TypeMapEntry.499_to; char* to + }, ; 271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.503_from, ; char* from + ptr @.TypeMapEntry.504_to; char* to + }, ; 272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.505_from, ; char* from + ptr @.TypeMapEntry.506_to; char* to + }, ; 273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.507_from, ; char* from + ptr @.TypeMapEntry.506_to; char* to + }, ; 274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.508_from, ; char* from + ptr @.TypeMapEntry.509_to; char* to + }, ; 275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.510_from, ; char* from + ptr @.TypeMapEntry.509_to; char* to + }, ; 276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.511_from, ; char* from + ptr @.TypeMapEntry.512_to; char* to + }, ; 277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.513_from, ; char* from + ptr @.TypeMapEntry.512_to; char* to + }, ; 278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.514_from, ; char* from + ptr @.TypeMapEntry.515_to; char* to + }, ; 279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.516_from, ; char* from + ptr @.TypeMapEntry.517_to; char* to + }, ; 280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.518_from, ; char* from + ptr @.TypeMapEntry.519_to; char* to + }, ; 281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.520_from, ; char* from + ptr @.TypeMapEntry.521_to; char* to + }, ; 282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.522_from, ; char* from + ptr @.TypeMapEntry.523_to; char* to + }, ; 283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.524_from, ; char* from + ptr @.TypeMapEntry.525_to; char* to + }, ; 284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.526_from, ; char* from + ptr @.TypeMapEntry.527_to; char* to + }, ; 285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.528_from, ; char* from + ptr @.TypeMapEntry.529_to; char* to + }, ; 286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.530_from, ; char* from + ptr @.TypeMapEntry.531_to; char* to + }, ; 287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.532_from, ; char* from + ptr @.TypeMapEntry.533_to; char* to + }, ; 288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.534_from, ; char* from + ptr @.TypeMapEntry.535_to; char* to + }, ; 289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.536_from, ; char* from + ptr @.TypeMapEntry.537_to; char* to + }, ; 290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.538_from, ; char* from + ptr @.TypeMapEntry.539_to; char* to + }, ; 291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.540_from, ; char* from + ptr @.TypeMapEntry.541_to; char* to + }, ; 292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.542_from, ; char* from + ptr @.TypeMapEntry.543_to; char* to + }, ; 293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.544_from, ; char* from + ptr @.TypeMapEntry.545_to; char* to + }, ; 294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.546_from, ; char* from + ptr @.TypeMapEntry.547_to; char* to + }, ; 295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.548_from, ; char* from + ptr @.TypeMapEntry.549_to; char* to + }, ; 296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.550_from, ; char* from + ptr @.TypeMapEntry.551_to; char* to + }, ; 297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.552_from, ; char* from + ptr @.TypeMapEntry.553_to; char* to + }, ; 298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.554_from, ; char* from + ptr @.TypeMapEntry.555_to; char* to + }, ; 299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.556_from, ; char* from + ptr @.TypeMapEntry.557_to; char* to + }, ; 300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.558_from, ; char* from + ptr @.TypeMapEntry.555_to; char* to + }, ; 301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.559_from, ; char* from + ptr @.TypeMapEntry.560_to; char* to + }, ; 302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.561_from, ; char* from + ptr @.TypeMapEntry.560_to; char* to + }, ; 303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.562_from, ; char* from + ptr @.TypeMapEntry.563_to; char* to + }, ; 304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.564_from, ; char* from + ptr @.TypeMapEntry.565_to; char* to + }, ; 305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.566_from, ; char* from + ptr @.TypeMapEntry.567_to; char* to + }, ; 306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.568_from, ; char* from + ptr @.TypeMapEntry.569_to; char* to + }, ; 307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.570_from, ; char* from + ptr @.TypeMapEntry.571_to; char* to + }, ; 308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.572_from, ; char* from + ptr @.TypeMapEntry.573_to; char* to + }, ; 309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.574_from, ; char* from + ptr @.TypeMapEntry.575_to; char* to + }, ; 310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.576_from, ; char* from + ptr @.TypeMapEntry.577_to; char* to + }, ; 311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.578_from, ; char* from + ptr @.TypeMapEntry.579_to; char* to + }, ; 312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.580_from, ; char* from + ptr @.TypeMapEntry.579_to; char* to + }, ; 313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.581_from, ; char* from + ptr @.TypeMapEntry.582_to; char* to + }, ; 314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.583_from, ; char* from + ptr @.TypeMapEntry.584_to; char* to + }, ; 315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.585_from, ; char* from + ptr @.TypeMapEntry.584_to; char* to + }, ; 316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.586_from, ; char* from + ptr @.TypeMapEntry.587_to; char* to + }, ; 317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.588_from, ; char* from + ptr @.TypeMapEntry.589_to; char* to + }, ; 318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.590_from, ; char* from + ptr @.TypeMapEntry.591_to; char* to + }, ; 319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.592_from, ; char* from + ptr @.TypeMapEntry.593_to; char* to + }, ; 320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.594_from, ; char* from + ptr @.TypeMapEntry.595_to; char* to + }, ; 321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.596_from, ; char* from + ptr @.TypeMapEntry.597_to; char* to + }, ; 322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.598_from, ; char* from + ptr @.TypeMapEntry.599_to; char* to + }, ; 323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.600_from, ; char* from + ptr @.TypeMapEntry.601_to; char* to + }, ; 324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.602_from, ; char* from + ptr @.TypeMapEntry.603_to; char* to + }, ; 325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.604_from, ; char* from + ptr @.TypeMapEntry.605_to; char* to + }, ; 326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.606_from, ; char* from + ptr @.TypeMapEntry.607_to; char* to + }, ; 327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.608_from, ; char* from + ptr @.TypeMapEntry.609_to; char* to + }, ; 328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.610_from, ; char* from + ptr @.TypeMapEntry.611_to; char* to + }, ; 329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.612_from, ; char* from + ptr @.TypeMapEntry.613_to; char* to + }, ; 330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.614_from, ; char* from + ptr @.TypeMapEntry.611_to; char* to + }, ; 331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.615_from, ; char* from + ptr @.TypeMapEntry.616_to; char* to + }, ; 332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.617_from, ; char* from + ptr @.TypeMapEntry.618_to; char* to + }, ; 333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.619_from, ; char* from + ptr @.TypeMapEntry.620_to; char* to + }, ; 334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.621_from, ; char* from + ptr @.TypeMapEntry.622_to; char* to + }, ; 335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.623_from, ; char* from + ptr @.TypeMapEntry.624_to; char* to + }, ; 336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.625_from, ; char* from + ptr @.TypeMapEntry.626_to; char* to + }, ; 337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.627_from, ; char* from + ptr @.TypeMapEntry.628_to; char* to + }, ; 338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.629_from, ; char* from + ptr @.TypeMapEntry.626_to; char* to + }, ; 339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.630_from, ; char* from + ptr @.TypeMapEntry.631_to; char* to + }, ; 340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.632_from, ; char* from + ptr @.TypeMapEntry.633_to; char* to + }, ; 341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.634_from, ; char* from + ptr @.TypeMapEntry.631_to; char* to + }, ; 342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.635_from, ; char* from + ptr @.TypeMapEntry.636_to; char* to + }, ; 343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.637_from, ; char* from + ptr @.TypeMapEntry.636_to; char* to + }, ; 344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.638_from, ; char* from + ptr @.TypeMapEntry.639_to; char* to + }, ; 345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.640_from, ; char* from + ptr @.TypeMapEntry.641_to; char* to + }, ; 346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.642_from, ; char* from + ptr @.TypeMapEntry.643_to; char* to + }, ; 347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.644_from, ; char* from + ptr @.TypeMapEntry.645_to; char* to + }, ; 348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.646_from, ; char* from + ptr @.TypeMapEntry.647_to; char* to + }, ; 349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.648_from, ; char* from + ptr @.TypeMapEntry.649_to; char* to + }, ; 350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.650_from, ; char* from + ptr @.TypeMapEntry.651_to; char* to + }, ; 351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.652_from, ; char* from + ptr @.TypeMapEntry.653_to; char* to + }, ; 352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.654_from, ; char* from + ptr @.TypeMapEntry.655_to; char* to + }, ; 353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.656_from, ; char* from + ptr @.TypeMapEntry.657_to; char* to + }, ; 354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.658_from, ; char* from + ptr @.TypeMapEntry.659_to; char* to + }, ; 355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.660_from, ; char* from + ptr @.TypeMapEntry.661_to; char* to + }, ; 356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.662_from, ; char* from + ptr @.TypeMapEntry.663_to; char* to + }, ; 357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.664_from, ; char* from + ptr @.TypeMapEntry.665_to; char* to + }, ; 358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.666_from, ; char* from + ptr @.TypeMapEntry.667_to; char* to + }, ; 359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.668_from, ; char* from + ptr @.TypeMapEntry.669_to; char* to + }, ; 360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.670_from, ; char* from + ptr @.TypeMapEntry.671_to; char* to + }, ; 361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.672_from, ; char* from + ptr @.TypeMapEntry.673_to; char* to + }, ; 362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.674_from, ; char* from + ptr @.TypeMapEntry.675_to; char* to + }, ; 363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.676_from, ; char* from + ptr @.TypeMapEntry.675_to; char* to + }, ; 364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.677_from, ; char* from + ptr @.TypeMapEntry.678_to; char* to + }, ; 365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.679_from, ; char* from + ptr @.TypeMapEntry.680_to; char* to + }, ; 366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.681_from, ; char* from + ptr @.TypeMapEntry.682_to; char* to + }, ; 367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.683_from, ; char* from + ptr @.TypeMapEntry.684_to; char* to + }, ; 368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.685_from, ; char* from + ptr @.TypeMapEntry.686_to; char* to + }, ; 369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.687_from, ; char* from + ptr @.TypeMapEntry.688_to; char* to + }, ; 370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.689_from, ; char* from + ptr @.TypeMapEntry.690_to; char* to + }, ; 371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.691_from, ; char* from + ptr @.TypeMapEntry.692_to; char* to + }, ; 372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.693_from, ; char* from + ptr @.TypeMapEntry.694_to; char* to + }, ; 373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.695_from, ; char* from + ptr @.TypeMapEntry.696_to; char* to + }, ; 374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.697_from, ; char* from + ptr @.TypeMapEntry.698_to; char* to + }, ; 375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.699_from, ; char* from + ptr @.TypeMapEntry.700_to; char* to + }, ; 376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.701_from, ; char* from + ptr @.TypeMapEntry.702_to; char* to + }, ; 377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.703_from, ; char* from + ptr @.TypeMapEntry.704_to; char* to + }, ; 378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.705_from, ; char* from + ptr @.TypeMapEntry.704_to; char* to + }, ; 379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.706_from, ; char* from + ptr @.TypeMapEntry.707_to; char* to + }, ; 380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.708_from, ; char* from + ptr @.TypeMapEntry.709_to; char* to + }, ; 381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.710_from, ; char* from + ptr @.TypeMapEntry.711_to; char* to + }, ; 382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.712_from, ; char* from + ptr @.TypeMapEntry.711_to; char* to + }, ; 383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.713_from, ; char* from + ptr @.TypeMapEntry.714_to; char* to + }, ; 384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.715_from, ; char* from + ptr @.TypeMapEntry.716_to; char* to + }, ; 385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.717_from, ; char* from + ptr @.TypeMapEntry.716_to; char* to + }, ; 386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.718_from, ; char* from + ptr @.TypeMapEntry.719_to; char* to + }, ; 387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.720_from, ; char* from + ptr @.TypeMapEntry.721_to; char* to + }, ; 388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.722_from, ; char* from + ptr @.TypeMapEntry.723_to; char* to + }, ; 389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.724_from, ; char* from + ptr @.TypeMapEntry.725_to; char* to + }, ; 390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.726_from, ; char* from + ptr @.TypeMapEntry.727_to; char* to + }, ; 391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.728_from, ; char* from + ptr @.TypeMapEntry.729_to; char* to + }, ; 392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.730_from, ; char* from + ptr @.TypeMapEntry.731_to; char* to + }, ; 393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.732_from, ; char* from + ptr @.TypeMapEntry.733_to; char* to + }, ; 394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.734_from, ; char* from + ptr @.TypeMapEntry.735_to; char* to + }, ; 395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.736_from, ; char* from + ptr @.TypeMapEntry.737_to; char* to + }, ; 396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.738_from, ; char* from + ptr @.TypeMapEntry.739_to; char* to + }, ; 397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.740_from, ; char* from + ptr @.TypeMapEntry.741_to; char* to + }, ; 398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.742_from, ; char* from + ptr @.TypeMapEntry.743_to; char* to + }, ; 399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.744_from, ; char* from + ptr @.TypeMapEntry.745_to; char* to + }, ; 400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.746_from, ; char* from + ptr @.TypeMapEntry.747_to; char* to + }, ; 401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.748_from, ; char* from + ptr @.TypeMapEntry.749_to; char* to + }, ; 402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.750_from, ; char* from + ptr @.TypeMapEntry.751_to; char* to + }, ; 403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.752_from, ; char* from + ptr @.TypeMapEntry.753_to; char* to + }, ; 404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.754_from, ; char* from + ptr @.TypeMapEntry.755_to; char* to + }, ; 405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.756_from, ; char* from + ptr @.TypeMapEntry.757_to; char* to + }, ; 406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.758_from, ; char* from + ptr @.TypeMapEntry.759_to; char* to + }, ; 407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.760_from, ; char* from + ptr @.TypeMapEntry.761_to; char* to + }, ; 408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.762_from, ; char* from + ptr @.TypeMapEntry.763_to; char* to + }, ; 409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.764_from, ; char* from + ptr @.TypeMapEntry.765_to; char* to + }, ; 410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.766_from, ; char* from + ptr @.TypeMapEntry.767_to; char* to + }, ; 411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.768_from, ; char* from + ptr @.TypeMapEntry.769_to; char* to + }, ; 412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.770_from, ; char* from + ptr @.TypeMapEntry.771_to; char* to + }, ; 413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.772_from, ; char* from + ptr @.TypeMapEntry.773_to; char* to + }, ; 414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.774_from, ; char* from + ptr @.TypeMapEntry.775_to; char* to + }, ; 415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.776_from, ; char* from + ptr @.TypeMapEntry.777_to; char* to + }, ; 416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.778_from, ; char* from + ptr @.TypeMapEntry.779_to; char* to + }, ; 417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.780_from, ; char* from + ptr @.TypeMapEntry.781_to; char* to + }, ; 418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.782_from, ; char* from + ptr @.TypeMapEntry.783_to; char* to + }, ; 419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.784_from, ; char* from + ptr @.TypeMapEntry.785_to; char* to + }, ; 420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.786_from, ; char* from + ptr @.TypeMapEntry.787_to; char* to + }, ; 421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.788_from, ; char* from + ptr @.TypeMapEntry.789_to; char* to + }, ; 422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.790_from, ; char* from + ptr @.TypeMapEntry.791_to; char* to + }, ; 423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.792_from, ; char* from + ptr @.TypeMapEntry.791_to; char* to + }, ; 424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.793_from, ; char* from + ptr @.TypeMapEntry.794_to; char* to + }, ; 425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.795_from, ; char* from + ptr @.TypeMapEntry.796_to; char* to + }, ; 426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.797_from, ; char* from + ptr @.TypeMapEntry.794_to; char* to + }, ; 427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.798_from, ; char* from + ptr @.TypeMapEntry.799_to; char* to + }, ; 428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.800_from, ; char* from + ptr @.TypeMapEntry.801_to; char* to + }, ; 429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.802_from, ; char* from + ptr @.TypeMapEntry.803_to; char* to + }, ; 430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.804_from, ; char* from + ptr @.TypeMapEntry.805_to; char* to + }, ; 431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.806_from, ; char* from + ptr @.TypeMapEntry.807_to; char* to + }, ; 432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.808_from, ; char* from + ptr @.TypeMapEntry.809_to; char* to + }, ; 433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.810_from, ; char* from + ptr @.TypeMapEntry.811_to; char* to + }, ; 434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.812_from, ; char* from + ptr @.TypeMapEntry.813_to; char* to + }, ; 435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.814_from, ; char* from + ptr @.TypeMapEntry.815_to; char* to + }, ; 436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.816_from, ; char* from + ptr @.TypeMapEntry.817_to; char* to + }, ; 437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.818_from, ; char* from + ptr @.TypeMapEntry.819_to; char* to + }, ; 438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.820_from, ; char* from + ptr @.TypeMapEntry.821_to; char* to + }, ; 439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.822_from, ; char* from + ptr @.TypeMapEntry.823_to; char* to + }, ; 440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.824_from, ; char* from + ptr @.TypeMapEntry.825_to; char* to + }, ; 441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.826_from, ; char* from + ptr @.TypeMapEntry.827_to; char* to + }, ; 442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.828_from, ; char* from + ptr @.TypeMapEntry.829_to; char* to + }, ; 443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.830_from, ; char* from + ptr @.TypeMapEntry.831_to; char* to + }, ; 444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.832_from, ; char* from + ptr @.TypeMapEntry.833_to; char* to + }, ; 445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.834_from, ; char* from + ptr @.TypeMapEntry.835_to; char* to + }, ; 446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.836_from, ; char* from + ptr @.TypeMapEntry.833_to; char* to + }, ; 447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.837_from, ; char* from + ptr @.TypeMapEntry.838_to; char* to + }, ; 448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.839_from, ; char* from + ptr @.TypeMapEntry.840_to; char* to + }, ; 449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.841_from, ; char* from + ptr @.TypeMapEntry.842_to; char* to + }, ; 450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.843_from, ; char* from + ptr @.TypeMapEntry.844_to; char* to + }, ; 451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.845_from, ; char* from + ptr @.TypeMapEntry.846_to; char* to + }, ; 452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.847_from, ; char* from + ptr @.TypeMapEntry.848_to; char* to + }, ; 453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.849_from, ; char* from + ptr @.TypeMapEntry.850_to; char* to + }, ; 454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.851_from, ; char* from + ptr @.TypeMapEntry.852_to; char* to + }, ; 455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.853_from, ; char* from + ptr @.TypeMapEntry.852_to; char* to + }, ; 456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.854_from, ; char* from + ptr @.TypeMapEntry.855_to; char* to + }, ; 457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.856_from, ; char* from + ptr @.TypeMapEntry.855_to; char* to + }, ; 458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.857_from, ; char* from + ptr @.TypeMapEntry.858_to; char* to + }, ; 459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.859_from, ; char* from + ptr @.TypeMapEntry.860_to; char* to + }, ; 460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.861_from, ; char* from + ptr @.TypeMapEntry.862_to; char* to + }, ; 461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.863_from, ; char* from + ptr @.TypeMapEntry.864_to; char* to + }, ; 462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.865_from, ; char* from + ptr @.TypeMapEntry.866_to; char* to + }, ; 463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.867_from, ; char* from + ptr @.TypeMapEntry.868_to; char* to + }, ; 464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.869_from, ; char* from + ptr @.TypeMapEntry.870_to; char* to + }, ; 465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.871_from, ; char* from + ptr @.TypeMapEntry.872_to; char* to + }, ; 466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.873_from, ; char* from + ptr @.TypeMapEntry.870_to; char* to + }, ; 467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.874_from, ; char* from + ptr @.TypeMapEntry.875_to; char* to + }, ; 468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.876_from, ; char* from + ptr @.TypeMapEntry.877_to; char* to + }, ; 469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.878_from, ; char* from + ptr @.TypeMapEntry.879_to; char* to + }, ; 470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.880_from, ; char* from + ptr @.TypeMapEntry.881_to; char* to + }, ; 471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.882_from, ; char* from + ptr @.TypeMapEntry.883_to; char* to + }, ; 472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.884_from, ; char* from + ptr @.TypeMapEntry.885_to; char* to + }, ; 473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.886_from, ; char* from + ptr @.TypeMapEntry.887_to; char* to + }, ; 474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.888_from, ; char* from + ptr @.TypeMapEntry.889_to; char* to + }, ; 475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.890_from, ; char* from + ptr @.TypeMapEntry.891_to; char* to + }, ; 476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.892_from, ; char* from + ptr @.TypeMapEntry.893_to; char* to + }, ; 477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.894_from, ; char* from + ptr @.TypeMapEntry.895_to; char* to + }, ; 478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.896_from, ; char* from + ptr @.TypeMapEntry.895_to; char* to + }, ; 479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.897_from, ; char* from + ptr @.TypeMapEntry.898_to; char* to + }, ; 480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.899_from, ; char* from + ptr @.TypeMapEntry.900_to; char* to + }, ; 481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.901_from, ; char* from + ptr @.TypeMapEntry.902_to; char* to + }, ; 482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.903_from, ; char* from + ptr @.TypeMapEntry.904_to; char* to + }, ; 483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.905_from, ; char* from + ptr @.TypeMapEntry.906_to; char* to + }, ; 484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.907_from, ; char* from + ptr @.TypeMapEntry.904_to; char* to + }, ; 485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.908_from, ; char* from + ptr @.TypeMapEntry.909_to; char* to + }, ; 486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.910_from, ; char* from + ptr @.TypeMapEntry.911_to; char* to + }, ; 487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.912_from, ; char* from + ptr @.TypeMapEntry.911_to; char* to + }, ; 488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.913_from, ; char* from + ptr @.TypeMapEntry.914_to; char* to + }, ; 489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.915_from, ; char* from + ptr @.TypeMapEntry.916_to; char* to + }, ; 490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.917_from, ; char* from + ptr @.TypeMapEntry.916_to; char* to + }, ; 491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.918_from, ; char* from + ptr @.TypeMapEntry.919_to; char* to + }, ; 492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.920_from, ; char* from + ptr @.TypeMapEntry.919_to; char* to + }, ; 493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.921_from, ; char* from + ptr @.TypeMapEntry.922_to; char* to + }, ; 494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.923_from, ; char* from + ptr @.TypeMapEntry.922_to; char* to + }, ; 495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.924_from, ; char* from + ptr @.TypeMapEntry.925_to; char* to + }, ; 496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.926_from, ; char* from + ptr @.TypeMapEntry.927_to; char* to + }, ; 497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.928_from, ; char* from + ptr @.TypeMapEntry.925_to; char* to + }, ; 498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.929_from, ; char* from + ptr @.TypeMapEntry.930_to; char* to + }, ; 499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.931_from, ; char* from + ptr @.TypeMapEntry.930_to; char* to + }, ; 500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.932_from, ; char* from + ptr @.TypeMapEntry.933_to; char* to + }, ; 501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.934_from, ; char* from + ptr @.TypeMapEntry.935_to; char* to + }, ; 502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.936_from, ; char* from + ptr @.TypeMapEntry.935_to; char* to + }, ; 503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.937_from, ; char* from + ptr @.TypeMapEntry.938_to; char* to + }, ; 504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.939_from, ; char* from + ptr @.TypeMapEntry.940_to; char* to + }, ; 505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.941_from, ; char* from + ptr @.TypeMapEntry.942_to; char* to + }, ; 506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.943_from, ; char* from + ptr @.TypeMapEntry.944_to; char* to + }, ; 507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.945_from, ; char* from + ptr @.TypeMapEntry.944_to; char* to + }, ; 508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.946_from, ; char* from + ptr @.TypeMapEntry.947_to; char* to + }, ; 509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.948_from, ; char* from + ptr @.TypeMapEntry.949_to; char* to + }, ; 510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.950_from, ; char* from + ptr @.TypeMapEntry.951_to; char* to + }, ; 511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.952_from, ; char* from + ptr @.TypeMapEntry.953_to; char* to + }, ; 512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.954_from, ; char* from + ptr @.TypeMapEntry.953_to; char* to + }, ; 513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.955_from, ; char* from + ptr @.TypeMapEntry.956_to; char* to + }, ; 514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.957_from, ; char* from + ptr @.TypeMapEntry.958_to; char* to + }, ; 515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.959_from, ; char* from + ptr @.TypeMapEntry.960_to; char* to + }, ; 516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.961_from, ; char* from + ptr @.TypeMapEntry.962_to; char* to + }, ; 517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.963_from, ; char* from + ptr @.TypeMapEntry.964_to; char* to + }, ; 518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.965_from, ; char* from + ptr @.TypeMapEntry.966_to; char* to + }, ; 519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.967_from, ; char* from + ptr @.TypeMapEntry.966_to; char* to + }, ; 520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.968_from, ; char* from + ptr @.TypeMapEntry.969_to; char* to + }, ; 521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.970_from, ; char* from + ptr @.TypeMapEntry.971_to; char* to + }, ; 522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.972_from, ; char* from + ptr @.TypeMapEntry.971_to; char* to + }, ; 523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.973_from, ; char* from + ptr @.TypeMapEntry.969_to; char* to + }, ; 524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.974_from, ; char* from + ptr @.TypeMapEntry.975_to; char* to + }, ; 525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.976_from, ; char* from + ptr @.TypeMapEntry.977_to; char* to + }, ; 526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.978_from, ; char* from + ptr @.TypeMapEntry.979_to; char* to + }, ; 527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.980_from, ; char* from + ptr @.TypeMapEntry.981_to; char* to + }, ; 528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.982_from, ; char* from + ptr @.TypeMapEntry.979_to; char* to + }, ; 529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.983_from, ; char* from + ptr @.TypeMapEntry.984_to; char* to + }, ; 530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.985_from, ; char* from + ptr @.TypeMapEntry.984_to; char* to + }, ; 531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.986_from, ; char* from + ptr @.TypeMapEntry.987_to; char* to + }, ; 532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.988_from, ; char* from + ptr @.TypeMapEntry.987_to; char* to + }, ; 533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.989_from, ; char* from + ptr @.TypeMapEntry.990_to; char* to + }, ; 534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.991_from, ; char* from + ptr @.TypeMapEntry.992_to; char* to + }, ; 535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.993_from, ; char* from + ptr @.TypeMapEntry.994_to; char* to + }, ; 536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.995_from, ; char* from + ptr @.TypeMapEntry.996_to; char* to + }, ; 537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.997_from, ; char* from + ptr @.TypeMapEntry.998_to; char* to + }, ; 538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.999_from, ; char* from + ptr @.TypeMapEntry.998_to; char* to + }, ; 539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1000_from, ; char* from + ptr @.TypeMapEntry.1001_to; char* to + }, ; 540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1002_from, ; char* from + ptr @.TypeMapEntry.1003_to; char* to + }, ; 541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1004_from, ; char* from + ptr @.TypeMapEntry.1005_to; char* to + }, ; 542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1006_from, ; char* from + ptr @.TypeMapEntry.1005_to; char* to + }, ; 543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1007_from, ; char* from + ptr @.TypeMapEntry.1008_to; char* to + }, ; 544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1009_from, ; char* from + ptr @.TypeMapEntry.1008_to; char* to + }, ; 545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1010_from, ; char* from + ptr @.TypeMapEntry.1011_to; char* to + }, ; 546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1012_from, ; char* from + ptr @.TypeMapEntry.1013_to; char* to + }, ; 547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1014_from, ; char* from + ptr @.TypeMapEntry.1015_to; char* to + }, ; 548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1016_from, ; char* from + ptr @.TypeMapEntry.1017_to; char* to + }, ; 549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1018_from, ; char* from + ptr @.TypeMapEntry.1019_to; char* to + }, ; 550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1020_from, ; char* from + ptr @.TypeMapEntry.1021_to; char* to + }, ; 551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1022_from, ; char* from + ptr @.TypeMapEntry.1023_to; char* to + }, ; 552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1024_from, ; char* from + ptr @.TypeMapEntry.1025_to; char* to + }, ; 553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1026_from, ; char* from + ptr @.TypeMapEntry.1027_to; char* to + }, ; 554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1028_from, ; char* from + ptr @.TypeMapEntry.1027_to; char* to + }, ; 555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1029_from, ; char* from + ptr @.TypeMapEntry.1030_to; char* to + }, ; 556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1031_from, ; char* from + ptr @.TypeMapEntry.1032_to; char* to + }, ; 557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1033_from, ; char* from + ptr @.TypeMapEntry.1034_to; char* to + }, ; 558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1035_from, ; char* from + ptr @.TypeMapEntry.1036_to; char* to + }, ; 559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1037_from, ; char* from + ptr @.TypeMapEntry.1038_to; char* to + }, ; 560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1039_from, ; char* from + ptr @.TypeMapEntry.1040_to; char* to + }, ; 561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1041_from, ; char* from + ptr @.TypeMapEntry.1042_to; char* to + }, ; 562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1043_from, ; char* from + ptr @.TypeMapEntry.1044_to; char* to + }, ; 563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1045_from, ; char* from + ptr @.TypeMapEntry.1046_to; char* to + }, ; 564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1047_from, ; char* from + ptr @.TypeMapEntry.1048_to; char* to + }, ; 565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1049_from, ; char* from + ptr @.TypeMapEntry.1050_to; char* to + }, ; 566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1051_from, ; char* from + ptr @.TypeMapEntry.1052_to; char* to + }, ; 567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1053_from, ; char* from + ptr @.TypeMapEntry.1054_to; char* to + }, ; 568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1055_from, ; char* from + ptr @.TypeMapEntry.1056_to; char* to + }, ; 569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1057_from, ; char* from + ptr @.TypeMapEntry.1056_to; char* to + }, ; 570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1058_from, ; char* from + ptr @.TypeMapEntry.1059_to; char* to + }, ; 571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1060_from, ; char* from + ptr @.TypeMapEntry.1061_to; char* to + }, ; 572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1062_from, ; char* from + ptr @.TypeMapEntry.1063_to; char* to + }, ; 573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1064_from, ; char* from + ptr @.TypeMapEntry.1065_to; char* to + }, ; 574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1066_from, ; char* from + ptr @.TypeMapEntry.1067_to; char* to + }, ; 575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1068_from, ; char* from + ptr @.TypeMapEntry.1067_to; char* to + }, ; 576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1069_from, ; char* from + ptr @.TypeMapEntry.1070_to; char* to + }, ; 577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1071_from, ; char* from + ptr @.TypeMapEntry.1072_to; char* to + }, ; 578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1073_from, ; char* from + ptr @.TypeMapEntry.1074_to; char* to + }, ; 579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1075_from, ; char* from + ptr @.TypeMapEntry.1076_to; char* to + }, ; 580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1077_from, ; char* from + ptr @.TypeMapEntry.1078_to; char* to + }, ; 581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1079_from, ; char* from + ptr @.TypeMapEntry.1080_to; char* to + }, ; 582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1081_from, ; char* from + ptr @.TypeMapEntry.1082_to; char* to + }, ; 583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1083_from, ; char* from + ptr @.TypeMapEntry.1084_to; char* to + }, ; 584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1085_from, ; char* from + ptr @.TypeMapEntry.1086_to; char* to + }, ; 585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1087_from, ; char* from + ptr @.TypeMapEntry.1086_to; char* to + }, ; 586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1088_from, ; char* from + ptr @.TypeMapEntry.1089_to; char* to + }, ; 587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1090_from, ; char* from + ptr @.TypeMapEntry.1091_to; char* to + }, ; 588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1092_from, ; char* from + ptr @.TypeMapEntry.1093_to; char* to + }, ; 589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1094_from, ; char* from + ptr @.TypeMapEntry.1095_to; char* to + }, ; 590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1096_from, ; char* from + ptr @.TypeMapEntry.1097_to; char* to + }, ; 591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1098_from, ; char* from + ptr @.TypeMapEntry.1099_to; char* to + }, ; 592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1100_from, ; char* from + ptr @.TypeMapEntry.1101_to; char* to + }, ; 593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1102_from, ; char* from + ptr @.TypeMapEntry.1103_to; char* to + }, ; 594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1104_from, ; char* from + ptr @.TypeMapEntry.1105_to; char* to + }, ; 595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1106_from, ; char* from + ptr @.TypeMapEntry.1107_to; char* to + }, ; 596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1108_from, ; char* from + ptr @.TypeMapEntry.1109_to; char* to + }, ; 597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1110_from, ; char* from + ptr @.TypeMapEntry.1111_to; char* to + }, ; 598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1112_from, ; char* from + ptr @.TypeMapEntry.1113_to; char* to + }, ; 599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1114_from, ; char* from + ptr @.TypeMapEntry.1115_to; char* to + }, ; 600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1116_from, ; char* from + ptr @.TypeMapEntry.1117_to; char* to + }, ; 601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1118_from, ; char* from + ptr @.TypeMapEntry.1119_to; char* to + }, ; 602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1120_from, ; char* from + ptr @.TypeMapEntry.1121_to; char* to + }, ; 603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1122_from, ; char* from + ptr @.TypeMapEntry.1123_to; char* to + }, ; 604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1124_from, ; char* from + ptr @.TypeMapEntry.1125_to; char* to + }, ; 605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1126_from, ; char* from + ptr @.TypeMapEntry.1127_to; char* to + }, ; 606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1128_from, ; char* from + ptr @.TypeMapEntry.1129_to; char* to + }, ; 607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1130_from, ; char* from + ptr @.TypeMapEntry.1129_to; char* to + }, ; 608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1131_from, ; char* from + ptr @.TypeMapEntry.1132_to; char* to + }, ; 609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1133_from, ; char* from + ptr @.TypeMapEntry.1132_to; char* to + }, ; 610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1134_from, ; char* from + ptr @.TypeMapEntry.1135_to; char* to + }, ; 611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1136_from, ; char* from + ptr @.TypeMapEntry.1137_to; char* to + }, ; 612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1138_from, ; char* from + ptr @.TypeMapEntry.1137_to; char* to + }, ; 613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1139_from, ; char* from + ptr @.TypeMapEntry.1140_to; char* to + }, ; 614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1141_from, ; char* from + ptr @.TypeMapEntry.1142_to; char* to + }, ; 615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1143_from, ; char* from + ptr @.TypeMapEntry.1144_to; char* to + }, ; 616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1145_from, ; char* from + ptr @.TypeMapEntry.1142_to; char* to + }, ; 617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1146_from, ; char* from + ptr @.TypeMapEntry.1147_to; char* to + }, ; 618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1148_from, ; char* from + ptr @.TypeMapEntry.1149_to; char* to + }, ; 619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1150_from, ; char* from + ptr @.TypeMapEntry.1147_to; char* to + }, ; 620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1151_from, ; char* from + ptr @.TypeMapEntry.1152_to; char* to + }, ; 621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1153_from, ; char* from + ptr @.TypeMapEntry.1154_to; char* to + }, ; 622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1155_from, ; char* from + ptr @.TypeMapEntry.1156_to; char* to + }, ; 623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1157_from, ; char* from + ptr @.TypeMapEntry.1156_to; char* to + }, ; 624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1158_from, ; char* from + ptr @.TypeMapEntry.1159_to; char* to + }, ; 625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1160_from, ; char* from + ptr @.TypeMapEntry.1159_to; char* to + }, ; 626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1161_from, ; char* from + ptr @.TypeMapEntry.1162_to; char* to + }, ; 627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1163_from, ; char* from + ptr @.TypeMapEntry.1164_to; char* to + }, ; 628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1165_from, ; char* from + ptr @.TypeMapEntry.1162_to; char* to + }, ; 629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1166_from, ; char* from + ptr @.TypeMapEntry.1167_to; char* to + }, ; 630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1168_from, ; char* from + ptr @.TypeMapEntry.1167_to; char* to + }, ; 631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1169_from, ; char* from + ptr @.TypeMapEntry.1170_to; char* to + }, ; 632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1171_from, ; char* from + ptr @.TypeMapEntry.1172_to; char* to + }, ; 633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1173_from, ; char* from + ptr @.TypeMapEntry.1174_to; char* to + }, ; 634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1175_from, ; char* from + ptr @.TypeMapEntry.1176_to; char* to + }, ; 635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1177_from, ; char* from + ptr @.TypeMapEntry.1178_to; char* to + }, ; 636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1179_from, ; char* from + ptr @.TypeMapEntry.1180_to; char* to + }, ; 637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1181_from, ; char* from + ptr @.TypeMapEntry.1180_to; char* to + }, ; 638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1182_from, ; char* from + ptr @.TypeMapEntry.1183_to; char* to + }, ; 639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1184_from, ; char* from + ptr @.TypeMapEntry.1185_to; char* to + }, ; 640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1186_from, ; char* from + ptr @.TypeMapEntry.1187_to; char* to + }, ; 641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1188_from, ; char* from + ptr @.TypeMapEntry.1189_to; char* to + }, ; 642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1190_from, ; char* from + ptr @.TypeMapEntry.1191_to; char* to + }, ; 643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1192_from, ; char* from + ptr @.TypeMapEntry.1193_to; char* to + }, ; 644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1194_from, ; char* from + ptr @.TypeMapEntry.1195_to; char* to + }, ; 645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1196_from, ; char* from + ptr @.TypeMapEntry.1197_to; char* to + }, ; 646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1198_from, ; char* from + ptr @.TypeMapEntry.1199_to; char* to + }, ; 647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1200_from, ; char* from + ptr @.TypeMapEntry.1201_to; char* to + }, ; 648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1202_from, ; char* from + ptr @.TypeMapEntry.1199_to; char* to + }, ; 649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1203_from, ; char* from + ptr @.TypeMapEntry.1204_to; char* to + }, ; 650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1205_from, ; char* from + ptr @.TypeMapEntry.1206_to; char* to + }, ; 651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1207_from, ; char* from + ptr @.TypeMapEntry.1206_to; char* to + }, ; 652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1208_from, ; char* from + ptr @.TypeMapEntry.1209_to; char* to + }, ; 653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1210_from, ; char* from + ptr @.TypeMapEntry.1211_to; char* to + }, ; 654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1212_from, ; char* from + ptr @.TypeMapEntry.1209_to; char* to + }, ; 655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1213_from, ; char* from + ptr @.TypeMapEntry.1214_to; char* to + }, ; 656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1215_from, ; char* from + ptr @.TypeMapEntry.1216_to; char* to + }, ; 657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1217_from, ; char* from + ptr @.TypeMapEntry.1218_to; char* to + }, ; 658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1219_from, ; char* from + ptr @.TypeMapEntry.1216_to; char* to + }, ; 659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1220_from, ; char* from + ptr @.TypeMapEntry.1221_to; char* to + }, ; 660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1222_from, ; char* from + ptr @.TypeMapEntry.1223_to; char* to + }, ; 661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1224_from, ; char* from + ptr @.TypeMapEntry.1225_to; char* to + }, ; 662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1226_from, ; char* from + ptr @.TypeMapEntry.1227_to; char* to + }, ; 663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1228_from, ; char* from + ptr @.TypeMapEntry.1229_to; char* to + }, ; 664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1230_from, ; char* from + ptr @.TypeMapEntry.1231_to; char* to + }, ; 665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1232_from, ; char* from + ptr @.TypeMapEntry.1233_to; char* to + }, ; 666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1234_from, ; char* from + ptr @.TypeMapEntry.1233_to; char* to + }, ; 667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1235_from, ; char* from + ptr @.TypeMapEntry.1236_to; char* to + }, ; 668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1237_from, ; char* from + ptr @.TypeMapEntry.1238_to; char* to + }, ; 669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1239_from, ; char* from + ptr @.TypeMapEntry.1240_to; char* to + }, ; 670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1241_from, ; char* from + ptr @.TypeMapEntry.1242_to; char* to + }, ; 671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1243_from, ; char* from + ptr @.TypeMapEntry.1244_to; char* to + }, ; 672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1245_from, ; char* from + ptr @.TypeMapEntry.1246_to; char* to + }, ; 673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1247_from, ; char* from + ptr @.TypeMapEntry.1248_to; char* to + }, ; 674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1249_from, ; char* from + ptr @.TypeMapEntry.1250_to; char* to + }, ; 675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1251_from, ; char* from + ptr @.TypeMapEntry.1252_to; char* to + }, ; 676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1253_from, ; char* from + ptr @.TypeMapEntry.1254_to; char* to + }, ; 677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1255_from, ; char* from + ptr @.TypeMapEntry.1256_to; char* to + }, ; 678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1257_from, ; char* from + ptr @.TypeMapEntry.1258_to; char* to + }, ; 679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1259_from, ; char* from + ptr @.TypeMapEntry.1260_to; char* to + }, ; 680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1261_from, ; char* from + ptr @.TypeMapEntry.1262_to; char* to + }, ; 681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1263_from, ; char* from + ptr @.TypeMapEntry.1264_to; char* to + }, ; 682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1265_from, ; char* from + ptr @.TypeMapEntry.1266_to; char* to + }, ; 683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1267_from, ; char* from + ptr @.TypeMapEntry.1268_to; char* to + }, ; 684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1269_from, ; char* from + ptr @.TypeMapEntry.1268_to; char* to + }, ; 685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1270_from, ; char* from + ptr @.TypeMapEntry.1271_to; char* to + }, ; 686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1272_from, ; char* from + ptr @.TypeMapEntry.1273_to; char* to + }, ; 687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1274_from, ; char* from + ptr @.TypeMapEntry.1275_to; char* to + }, ; 688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1276_from, ; char* from + ptr @.TypeMapEntry.1277_to; char* to + }, ; 689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1278_from, ; char* from + ptr @.TypeMapEntry.1279_to; char* to + }, ; 690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1280_from, ; char* from + ptr @.TypeMapEntry.1277_to; char* to + }, ; 691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1281_from, ; char* from + ptr @.TypeMapEntry.1282_to; char* to + }, ; 692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1283_from, ; char* from + ptr @.TypeMapEntry.1284_to; char* to + }, ; 693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1285_from, ; char* from + ptr @.TypeMapEntry.1286_to; char* to + }, ; 694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1287_from, ; char* from + ptr @.TypeMapEntry.1288_to; char* to + }, ; 695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1289_from, ; char* from + ptr @.TypeMapEntry.1290_to; char* to + }, ; 696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1291_from, ; char* from + ptr @.TypeMapEntry.1292_to; char* to + }, ; 697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1293_from, ; char* from + ptr @.TypeMapEntry.1294_to; char* to + }, ; 698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1295_from, ; char* from + ptr @.TypeMapEntry.1296_to; char* to + }, ; 699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1297_from, ; char* from + ptr @.TypeMapEntry.1296_to; char* to + }, ; 700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1298_from, ; char* from + ptr @.TypeMapEntry.1299_to; char* to + }, ; 701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1300_from, ; char* from + ptr @.TypeMapEntry.1301_to; char* to + }, ; 702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1302_from, ; char* from + ptr @.TypeMapEntry.1303_to; char* to + }, ; 703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1304_from, ; char* from + ptr @.TypeMapEntry.1305_to; char* to + }, ; 704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1306_from, ; char* from + ptr @.TypeMapEntry.1307_to; char* to + }, ; 705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1308_from, ; char* from + ptr @.TypeMapEntry.1309_to; char* to + }, ; 706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1310_from, ; char* from + ptr @.TypeMapEntry.1311_to; char* to + }, ; 707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1312_from, ; char* from + ptr @.TypeMapEntry.1313_to; char* to + }, ; 708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1314_from, ; char* from + ptr @.TypeMapEntry.1315_to; char* to + }, ; 709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1316_from, ; char* from + ptr @.TypeMapEntry.1317_to; char* to + }, ; 710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1318_from, ; char* from + ptr @.TypeMapEntry.1319_to; char* to + }, ; 711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1320_from, ; char* from + ptr @.TypeMapEntry.1321_to; char* to + }, ; 712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1322_from, ; char* from + ptr @.TypeMapEntry.1323_to; char* to + }, ; 713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1324_from, ; char* from + ptr @.TypeMapEntry.1325_to; char* to + }, ; 714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1326_from, ; char* from + ptr @.TypeMapEntry.1327_to; char* to + }, ; 715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1328_from, ; char* from + ptr @.TypeMapEntry.1327_to; char* to + }, ; 716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1329_from, ; char* from + ptr @.TypeMapEntry.1330_to; char* to + }, ; 717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1331_from, ; char* from + ptr @.TypeMapEntry.1332_to; char* to + }, ; 718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1333_from, ; char* from + ptr @.TypeMapEntry.1334_to; char* to + }, ; 719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1335_from, ; char* from + ptr @.TypeMapEntry.1336_to; char* to + }, ; 720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1337_from, ; char* from + ptr @.TypeMapEntry.1336_to; char* to + }, ; 721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1338_from, ; char* from + ptr @.TypeMapEntry.1339_to; char* to + }, ; 722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1340_from, ; char* from + ptr @.TypeMapEntry.1341_to; char* to + }, ; 723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1342_from, ; char* from + ptr @.TypeMapEntry.1343_to; char* to + }, ; 724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1344_from, ; char* from + ptr @.TypeMapEntry.1345_to; char* to + }, ; 725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1346_from, ; char* from + ptr @.TypeMapEntry.1347_to; char* to + }, ; 726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1348_from, ; char* from + ptr @.TypeMapEntry.1347_to; char* to + }, ; 727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1349_from, ; char* from + ptr @.TypeMapEntry.1350_to; char* to + }, ; 728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1351_from, ; char* from + ptr @.TypeMapEntry.1352_to; char* to + }, ; 729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1353_from, ; char* from + ptr @.TypeMapEntry.1352_to; char* to + }, ; 730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1354_from, ; char* from + ptr @.TypeMapEntry.1355_to; char* to + }, ; 731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1356_from, ; char* from + ptr @.TypeMapEntry.1357_to; char* to + }, ; 732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1358_from, ; char* from + ptr @.TypeMapEntry.1359_to; char* to + }, ; 733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1360_from, ; char* from + ptr @.TypeMapEntry.1361_to; char* to + }, ; 734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1362_from, ; char* from + ptr @.TypeMapEntry.1363_to; char* to + }, ; 735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1364_from, ; char* from + ptr @.TypeMapEntry.1365_to; char* to + }, ; 736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1366_from, ; char* from + ptr @.TypeMapEntry.1367_to; char* to + }, ; 737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1368_from, ; char* from + ptr @.TypeMapEntry.1369_to; char* to + }, ; 738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1370_from, ; char* from + ptr @.TypeMapEntry.1371_to; char* to + }, ; 739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1372_from, ; char* from + ptr @.TypeMapEntry.1373_to; char* to + }, ; 740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1374_from, ; char* from + ptr @.TypeMapEntry.1375_to; char* to + }, ; 741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1376_from, ; char* from + ptr @.TypeMapEntry.1377_to; char* to + }, ; 742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1378_from, ; char* from + ptr @.TypeMapEntry.1379_to; char* to + }, ; 743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1380_from, ; char* from + ptr @.TypeMapEntry.1381_to; char* to + }, ; 744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1382_from, ; char* from + ptr @.TypeMapEntry.1381_to; char* to + }, ; 745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1383_from, ; char* from + ptr @.TypeMapEntry.1384_to; char* to + }, ; 746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1385_from, ; char* from + ptr @.TypeMapEntry.1386_to; char* to + }, ; 747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1387_from, ; char* from + ptr @.TypeMapEntry.1384_to; char* to + }, ; 748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1388_from, ; char* from + ptr @.TypeMapEntry.1389_to; char* to + }, ; 749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1390_from, ; char* from + ptr @.TypeMapEntry.1389_to; char* to + }, ; 750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1391_from, ; char* from + ptr @.TypeMapEntry.1392_to; char* to + }, ; 751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1393_from, ; char* from + ptr @.TypeMapEntry.1394_to; char* to + }, ; 752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1395_from, ; char* from + ptr @.TypeMapEntry.1396_to; char* to + }, ; 753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1397_from, ; char* from + ptr @.TypeMapEntry.1398_to; char* to + }, ; 754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1399_from, ; char* from + ptr @.TypeMapEntry.1400_to; char* to + }, ; 755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1401_from, ; char* from + ptr @.TypeMapEntry.1402_to; char* to + }, ; 756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1403_from, ; char* from + ptr @.TypeMapEntry.1402_to; char* to + }, ; 757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1404_from, ; char* from + ptr @.TypeMapEntry.1405_to; char* to + }, ; 758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1406_from, ; char* from + ptr @.TypeMapEntry.1407_to; char* to + }, ; 759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1408_from, ; char* from + ptr @.TypeMapEntry.1409_to; char* to + }, ; 760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1410_from, ; char* from + ptr @.TypeMapEntry.1411_to; char* to + }, ; 761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1412_from, ; char* from + ptr @.TypeMapEntry.1413_to; char* to + }, ; 762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1414_from, ; char* from + ptr @.TypeMapEntry.1415_to; char* to + }, ; 763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1416_from, ; char* from + ptr @.TypeMapEntry.1417_to; char* to + }, ; 764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1418_from, ; char* from + ptr @.TypeMapEntry.1417_to; char* to + }, ; 765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1419_from, ; char* from + ptr @.TypeMapEntry.1420_to; char* to + }, ; 766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1421_from, ; char* from + ptr @.TypeMapEntry.1422_to; char* to + }, ; 767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1423_from, ; char* from + ptr @.TypeMapEntry.1424_to; char* to + }, ; 768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1425_from, ; char* from + ptr @.TypeMapEntry.1426_to; char* to + }, ; 769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1427_from, ; char* from + ptr @.TypeMapEntry.1428_to; char* to + }, ; 770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1429_from, ; char* from + ptr @.TypeMapEntry.1430_to; char* to + }, ; 771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1431_from, ; char* from + ptr @.TypeMapEntry.1432_to; char* to + }, ; 772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1433_from, ; char* from + ptr @.TypeMapEntry.1434_to; char* to + }, ; 773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1435_from, ; char* from + ptr @.TypeMapEntry.1436_to; char* to + }, ; 774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1437_from, ; char* from + ptr @.TypeMapEntry.1438_to; char* to + }, ; 775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1439_from, ; char* from + ptr @.TypeMapEntry.1440_to; char* to + }, ; 776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1441_from, ; char* from + ptr @.TypeMapEntry.1442_to; char* to + }, ; 777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1443_from, ; char* from + ptr @.TypeMapEntry.1444_to; char* to + }, ; 778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1445_from, ; char* from + ptr @.TypeMapEntry.1446_to; char* to + }, ; 779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1447_from, ; char* from + ptr @.TypeMapEntry.1448_to; char* to + }, ; 780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1449_from, ; char* from + ptr @.TypeMapEntry.1450_to; char* to + }, ; 781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1451_from, ; char* from + ptr @.TypeMapEntry.1452_to; char* to + }, ; 782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1453_from, ; char* from + ptr @.TypeMapEntry.1452_to; char* to + }, ; 783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1454_from, ; char* from + ptr @.TypeMapEntry.1455_to; char* to + }, ; 784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1456_from, ; char* from + ptr @.TypeMapEntry.1457_to; char* to + }, ; 785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1458_from, ; char* from + ptr @.TypeMapEntry.1457_to; char* to + }, ; 786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1459_from, ; char* from + ptr @.TypeMapEntry.1460_to; char* to + }, ; 787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1461_from, ; char* from + ptr @.TypeMapEntry.1462_to; char* to + }, ; 788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1463_from, ; char* from + ptr @.TypeMapEntry.1464_to; char* to + }, ; 789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1465_from, ; char* from + ptr @.TypeMapEntry.1464_to; char* to + }, ; 790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1466_from, ; char* from + ptr @.TypeMapEntry.1467_to; char* to + }, ; 791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1468_from, ; char* from + ptr @.TypeMapEntry.1469_to; char* to + }, ; 792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1470_from, ; char* from + ptr @.TypeMapEntry.1471_to; char* to + }, ; 793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1472_from, ; char* from + ptr @.TypeMapEntry.1469_to; char* to + }, ; 794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1473_from, ; char* from + ptr @.TypeMapEntry.1474_to; char* to + }, ; 795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1475_from, ; char* from + ptr @.TypeMapEntry.1476_to; char* to + }, ; 796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1477_from, ; char* from + ptr @.TypeMapEntry.1478_to; char* to + }, ; 797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1479_from, ; char* from + ptr @.TypeMapEntry.1480_to; char* to + }, ; 798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1481_from, ; char* from + ptr @.TypeMapEntry.1480_to; char* to + }, ; 799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1482_from, ; char* from + ptr @.TypeMapEntry.1483_to; char* to + }, ; 800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1484_from, ; char* from + ptr @.TypeMapEntry.1485_to; char* to + }, ; 801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1486_from, ; char* from + ptr @.TypeMapEntry.1487_to; char* to + }, ; 802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1488_from, ; char* from + ptr @.TypeMapEntry.1489_to; char* to + }, ; 803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1490_from, ; char* from + ptr @.TypeMapEntry.1489_to; char* to + }, ; 804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1491_from, ; char* from + ptr @.TypeMapEntry.1492_to; char* to + }, ; 805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1493_from, ; char* from + ptr @.TypeMapEntry.1492_to; char* to + }, ; 806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1494_from, ; char* from + ptr @.TypeMapEntry.1495_to; char* to + }, ; 807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1496_from, ; char* from + ptr @.TypeMapEntry.1497_to; char* to + }, ; 808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1498_from, ; char* from + ptr @.TypeMapEntry.1499_to; char* to + }, ; 809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1500_from, ; char* from + ptr @.TypeMapEntry.1501_to; char* to + }, ; 810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1502_from, ; char* from + ptr @.TypeMapEntry.1501_to; char* to + }, ; 811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1503_from, ; char* from + ptr @.TypeMapEntry.1504_to; char* to + }, ; 812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1505_from, ; char* from + ptr @.TypeMapEntry.1506_to; char* to + }, ; 813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1507_from, ; char* from + ptr @.TypeMapEntry.1508_to; char* to + }, ; 814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1509_from, ; char* from + ptr @.TypeMapEntry.1510_to; char* to + }, ; 815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1511_from, ; char* from + ptr @.TypeMapEntry.1512_to; char* to + }, ; 816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1513_from, ; char* from + ptr @.TypeMapEntry.1514_to; char* to + }, ; 817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1515_from, ; char* from + ptr @.TypeMapEntry.1512_to; char* to + }, ; 818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1516_from, ; char* from + ptr @.TypeMapEntry.1517_to; char* to + }, ; 819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1518_from, ; char* from + ptr @.TypeMapEntry.1519_to; char* to + }, ; 820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1520_from, ; char* from + ptr @.TypeMapEntry.1521_to; char* to + }, ; 821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1522_from, ; char* from + ptr @.TypeMapEntry.1523_to; char* to + }, ; 822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1524_from, ; char* from + ptr @.TypeMapEntry.1525_to; char* to + }, ; 823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1526_from, ; char* from + ptr @.TypeMapEntry.1525_to; char* to + }, ; 824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1527_from, ; char* from + ptr @.TypeMapEntry.1528_to; char* to + }, ; 825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1529_from, ; char* from + ptr @.TypeMapEntry.1530_to; char* to + }, ; 826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1531_from, ; char* from + ptr @.TypeMapEntry.1528_to; char* to + }, ; 827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1532_from, ; char* from + ptr @.TypeMapEntry.1533_to; char* to + }, ; 828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1534_from, ; char* from + ptr @.TypeMapEntry.1535_to; char* to + }, ; 829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1536_from, ; char* from + ptr @.TypeMapEntry.1537_to; char* to + }, ; 830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1538_from, ; char* from + ptr @.TypeMapEntry.1539_to; char* to + }, ; 831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1540_from, ; char* from + ptr @.TypeMapEntry.1541_to; char* to + }, ; 832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1542_from, ; char* from + ptr @.TypeMapEntry.1543_to; char* to + }, ; 833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1544_from, ; char* from + ptr @.TypeMapEntry.1543_to; char* to + }, ; 834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1545_from, ; char* from + ptr @.TypeMapEntry.1546_to; char* to + }, ; 835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1547_from, ; char* from + ptr @.TypeMapEntry.1548_to; char* to + }, ; 836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1549_from, ; char* from + ptr @.TypeMapEntry.1550_to; char* to + }, ; 837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1551_from, ; char* from + ptr @.TypeMapEntry.1552_to; char* to + }, ; 838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1553_from, ; char* from + ptr @.TypeMapEntry.1552_to; char* to + }, ; 839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1554_from, ; char* from + ptr @.TypeMapEntry.1555_to; char* to + }, ; 840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1556_from, ; char* from + ptr @.TypeMapEntry.1557_to; char* to + }, ; 841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1558_from, ; char* from + ptr @.TypeMapEntry.1559_to; char* to + }, ; 842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1560_from, ; char* from + ptr @.TypeMapEntry.1561_to; char* to + }, ; 843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1562_from, ; char* from + ptr @.TypeMapEntry.1563_to; char* to + }, ; 844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1564_from, ; char* from + ptr @.TypeMapEntry.1565_to; char* to + }, ; 845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1566_from, ; char* from + ptr @.TypeMapEntry.1567_to; char* to + }, ; 846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1568_from, ; char* from + ptr @.TypeMapEntry.1569_to; char* to + }, ; 847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1570_from, ; char* from + ptr @.TypeMapEntry.1571_to; char* to + }, ; 848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1572_from, ; char* from + ptr @.TypeMapEntry.1571_to; char* to + }, ; 849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1573_from, ; char* from + ptr @.TypeMapEntry.1569_to; char* to + }, ; 850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1574_from, ; char* from + ptr @.TypeMapEntry.1575_to; char* to + }, ; 851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1576_from, ; char* from + ptr @.TypeMapEntry.1575_to; char* to + }, ; 852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1577_from, ; char* from + ptr @.TypeMapEntry.1578_to; char* to + }, ; 853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1579_from, ; char* from + ptr @.TypeMapEntry.1580_to; char* to + }, ; 854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1581_from, ; char* from + ptr @.TypeMapEntry.1578_to; char* to + }, ; 855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1582_from, ; char* from + ptr @.TypeMapEntry.1583_to; char* to + }, ; 856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1584_from, ; char* from + ptr @.TypeMapEntry.1585_to; char* to + }, ; 857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1586_from, ; char* from + ptr @.TypeMapEntry.1583_to; char* to + }, ; 858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1587_from, ; char* from + ptr @.TypeMapEntry.1588_to; char* to + }, ; 859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1589_from, ; char* from + ptr @.TypeMapEntry.1590_to; char* to + }, ; 860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1591_from, ; char* from + ptr @.TypeMapEntry.1588_to; char* to + }, ; 861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1592_from, ; char* from + ptr @.TypeMapEntry.1593_to; char* to + }, ; 862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1594_from, ; char* from + ptr @.TypeMapEntry.1595_to; char* to + }, ; 863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1596_from, ; char* from + ptr @.TypeMapEntry.1593_to; char* to + }, ; 864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1597_from, ; char* from + ptr @.TypeMapEntry.1598_to; char* to + }, ; 865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1599_from, ; char* from + ptr @.TypeMapEntry.1600_to; char* to + }, ; 866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1601_from, ; char* from + ptr @.TypeMapEntry.1598_to; char* to + }, ; 867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1602_from, ; char* from + ptr @.TypeMapEntry.1603_to; char* to + }, ; 868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1604_from, ; char* from + ptr @.TypeMapEntry.1605_to; char* to + }, ; 869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1606_from, ; char* from + ptr @.TypeMapEntry.1603_to; char* to + }, ; 870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1607_from, ; char* from + ptr @.TypeMapEntry.1608_to; char* to + }, ; 871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1609_from, ; char* from + ptr @.TypeMapEntry.1608_to; char* to + }, ; 872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1610_from, ; char* from + ptr @.TypeMapEntry.1611_to; char* to + }, ; 873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1612_from, ; char* from + ptr @.TypeMapEntry.1613_to; char* to + }, ; 874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1614_from, ; char* from + ptr @.TypeMapEntry.1613_to; char* to + }, ; 875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1615_from, ; char* from + ptr @.TypeMapEntry.1611_to; char* to + }, ; 876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1616_from, ; char* from + ptr @.TypeMapEntry.1617_to; char* to + }, ; 877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1618_from, ; char* from + ptr @.TypeMapEntry.1619_to; char* to + }, ; 878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1620_from, ; char* from + ptr @.TypeMapEntry.1617_to; char* to + }, ; 879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1621_from, ; char* from + ptr @.TypeMapEntry.1622_to; char* to + }, ; 880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1623_from, ; char* from + ptr @.TypeMapEntry.1622_to; char* to + }, ; 881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1624_from, ; char* from + ptr @.TypeMapEntry.1625_to; char* to + }, ; 882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1626_from, ; char* from + ptr @.TypeMapEntry.1627_to; char* to + }, ; 883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1628_from, ; char* from + ptr @.TypeMapEntry.1629_to; char* to + }, ; 884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1630_from, ; char* from + ptr @.TypeMapEntry.1631_to; char* to + }, ; 885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1632_from, ; char* from + ptr @.TypeMapEntry.1633_to; char* to + }, ; 886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1634_from, ; char* from + ptr @.TypeMapEntry.1635_to; char* to + }, ; 887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1636_from, ; char* from + ptr @.TypeMapEntry.1637_to; char* to + }, ; 888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1638_from, ; char* from + ptr @.TypeMapEntry.1637_to; char* to + }, ; 889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1639_from, ; char* from + ptr @.TypeMapEntry.1640_to; char* to + }, ; 890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1641_from, ; char* from + ptr @.TypeMapEntry.1642_to; char* to + }, ; 891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1643_from, ; char* from + ptr @.TypeMapEntry.1644_to; char* to + }, ; 892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1645_from, ; char* from + ptr @.TypeMapEntry.1646_to; char* to + }, ; 893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1647_from, ; char* from + ptr @.TypeMapEntry.1648_to; char* to + }, ; 894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1649_from, ; char* from + ptr @.TypeMapEntry.1646_to; char* to + }, ; 895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1650_from, ; char* from + ptr @.TypeMapEntry.1651_to; char* to + }, ; 896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1652_from, ; char* from + ptr @.TypeMapEntry.1653_to; char* to + }, ; 897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1654_from, ; char* from + ptr @.TypeMapEntry.1651_to; char* to + }, ; 898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1655_from, ; char* from + ptr @.TypeMapEntry.1656_to; char* to + }, ; 899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1657_from, ; char* from + ptr @.TypeMapEntry.1658_to; char* to + }, ; 900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1659_from, ; char* from + ptr @.TypeMapEntry.1660_to; char* to + }, ; 901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1661_from, ; char* from + ptr @.TypeMapEntry.1662_to; char* to + }, ; 902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1663_from, ; char* from + ptr @.TypeMapEntry.1664_to; char* to + }, ; 903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1665_from, ; char* from + ptr @.TypeMapEntry.1666_to; char* to + }, ; 904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1667_from, ; char* from + ptr @.TypeMapEntry.1668_to; char* to + }, ; 905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1669_from, ; char* from + ptr @.TypeMapEntry.1670_to; char* to + }, ; 906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1671_from, ; char* from + ptr @.TypeMapEntry.1672_to; char* to + }, ; 907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1673_from, ; char* from + ptr @.TypeMapEntry.1674_to; char* to + }, ; 908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1675_from, ; char* from + ptr @.TypeMapEntry.1676_to; char* to + }, ; 909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1677_from, ; char* from + ptr @.TypeMapEntry.1678_to; char* to + }, ; 910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1679_from, ; char* from + ptr @.TypeMapEntry.1680_to; char* to + }, ; 911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1681_from, ; char* from + ptr @.TypeMapEntry.1682_to; char* to + }, ; 912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1683_from, ; char* from + ptr @.TypeMapEntry.1684_to; char* to + }, ; 913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1685_from, ; char* from + ptr @.TypeMapEntry.1686_to; char* to + }, ; 914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1687_from, ; char* from + ptr @.TypeMapEntry.1688_to; char* to + }, ; 915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1689_from, ; char* from + ptr @.TypeMapEntry.1690_to; char* to + }, ; 916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1691_from, ; char* from + ptr @.TypeMapEntry.1692_to; char* to + }, ; 917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1693_from, ; char* from + ptr @.TypeMapEntry.1694_to; char* to + }, ; 918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1695_from, ; char* from + ptr @.TypeMapEntry.1696_to; char* to + }, ; 919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1697_from, ; char* from + ptr @.TypeMapEntry.1698_to; char* to + }, ; 920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1699_from, ; char* from + ptr @.TypeMapEntry.1700_to; char* to + }, ; 921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1701_from, ; char* from + ptr @.TypeMapEntry.1702_to; char* to + }, ; 922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1703_from, ; char* from + ptr @.TypeMapEntry.1704_to; char* to + }, ; 923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1705_from, ; char* from + ptr @.TypeMapEntry.1706_to; char* to + }, ; 924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1707_from, ; char* from + ptr @.TypeMapEntry.1708_to; char* to + }, ; 925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1709_from, ; char* from + ptr @.TypeMapEntry.1710_to; char* to + }, ; 926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1711_from, ; char* from + ptr @.TypeMapEntry.1712_to; char* to + }, ; 927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1713_from, ; char* from + ptr @.TypeMapEntry.1714_to; char* to + }, ; 928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1715_from, ; char* from + ptr @.TypeMapEntry.1716_to; char* to + }, ; 929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1717_from, ; char* from + ptr @.TypeMapEntry.1718_to; char* to + }, ; 930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1719_from, ; char* from + ptr @.TypeMapEntry.1720_to; char* to + }, ; 931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1721_from, ; char* from + ptr @.TypeMapEntry.1722_to; char* to + }, ; 932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1723_from, ; char* from + ptr @.TypeMapEntry.1722_to; char* to + }, ; 933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1724_from, ; char* from + ptr @.TypeMapEntry.1725_to; char* to + }, ; 934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1726_from, ; char* from + ptr @.TypeMapEntry.1727_to; char* to + }, ; 935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1728_from, ; char* from + ptr @.TypeMapEntry.1729_to; char* to + }, ; 936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1730_from, ; char* from + ptr @.TypeMapEntry.1731_to; char* to + }, ; 937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1732_from, ; char* from + ptr @.TypeMapEntry.1733_to; char* to + }, ; 938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1734_from, ; char* from + ptr @.TypeMapEntry.1735_to; char* to + }, ; 939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1736_from, ; char* from + ptr @.TypeMapEntry.1737_to; char* to + }, ; 940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1738_from, ; char* from + ptr @.TypeMapEntry.1739_to; char* to + }, ; 941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1740_from, ; char* from + ptr @.TypeMapEntry.1741_to; char* to + }, ; 942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1742_from, ; char* from + ptr @.TypeMapEntry.1743_to; char* to + }, ; 943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1744_from, ; char* from + ptr @.TypeMapEntry.1745_to; char* to + }, ; 944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1746_from, ; char* from + ptr @.TypeMapEntry.1747_to; char* to + }, ; 945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1748_from, ; char* from + ptr @.TypeMapEntry.1749_to; char* to + }, ; 946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1750_from, ; char* from + ptr @.TypeMapEntry.1749_to; char* to + }, ; 947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1751_from, ; char* from + ptr @.TypeMapEntry.1752_to; char* to + }, ; 948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1753_from, ; char* from + ptr @.TypeMapEntry.1754_to; char* to + }, ; 949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1755_from, ; char* from + ptr @.TypeMapEntry.1756_to; char* to + }, ; 950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1757_from, ; char* from + ptr @.TypeMapEntry.1758_to; char* to + }, ; 951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1759_from, ; char* from + ptr @.TypeMapEntry.1760_to; char* to + }, ; 952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1761_from, ; char* from + ptr @.TypeMapEntry.1762_to; char* to + }, ; 953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1763_from, ; char* from + ptr @.TypeMapEntry.1764_to; char* to + }, ; 954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1765_from, ; char* from + ptr @.TypeMapEntry.1766_to; char* to + }, ; 955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1767_from, ; char* from + ptr @.TypeMapEntry.1768_to; char* to + }, ; 956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1769_from, ; char* from + ptr @.TypeMapEntry.1770_to; char* to + }, ; 957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1771_from, ; char* from + ptr @.TypeMapEntry.1772_to; char* to + }, ; 958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1773_from, ; char* from + ptr @.TypeMapEntry.1770_to; char* to + }, ; 959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1774_from, ; char* from + ptr @.TypeMapEntry.1775_to; char* to + }, ; 960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1776_from, ; char* from + ptr @.TypeMapEntry.1777_to; char* to + }, ; 961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1778_from, ; char* from + ptr @.TypeMapEntry.1779_to; char* to + }, ; 962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1780_from, ; char* from + ptr @.TypeMapEntry.1781_to; char* to + }, ; 963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1782_from, ; char* from + ptr @.TypeMapEntry.1783_to; char* to + }, ; 964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1784_from, ; char* from + ptr @.TypeMapEntry.1783_to; char* to + }, ; 965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1785_from, ; char* from + ptr @.TypeMapEntry.1786_to; char* to + }, ; 966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1787_from, ; char* from + ptr @.TypeMapEntry.1788_to; char* to + }, ; 967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1789_from, ; char* from + ptr @.TypeMapEntry.1790_to; char* to + }, ; 968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1791_from, ; char* from + ptr @.TypeMapEntry.1792_to; char* to + }, ; 969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1793_from, ; char* from + ptr @.TypeMapEntry.1794_to; char* to + }, ; 970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1795_from, ; char* from + ptr @.TypeMapEntry.1796_to; char* to + }, ; 971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1797_from, ; char* from + ptr @.TypeMapEntry.1798_to; char* to + }, ; 972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1799_from, ; char* from + ptr @.TypeMapEntry.1800_to; char* to + }, ; 973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1801_from, ; char* from + ptr @.TypeMapEntry.1802_to; char* to + }, ; 974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1803_from, ; char* from + ptr @.TypeMapEntry.1804_to; char* to + }, ; 975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1805_from, ; char* from + ptr @.TypeMapEntry.1806_to; char* to + }, ; 976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1807_from, ; char* from + ptr @.TypeMapEntry.1808_to; char* to + }, ; 977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1809_from, ; char* from + ptr @.TypeMapEntry.1810_to; char* to + }, ; 978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1811_from, ; char* from + ptr @.TypeMapEntry.1812_to; char* to + }, ; 979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1813_from, ; char* from + ptr @.TypeMapEntry.1814_to; char* to + }, ; 980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1815_from, ; char* from + ptr @.TypeMapEntry.1816_to; char* to + }, ; 981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1817_from, ; char* from + ptr @.TypeMapEntry.1818_to; char* to + }, ; 982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1819_from, ; char* from + ptr @.TypeMapEntry.1820_to; char* to + }, ; 983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1821_from, ; char* from + ptr @.TypeMapEntry.1822_to; char* to + }, ; 984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1823_from, ; char* from + ptr @.TypeMapEntry.1824_to; char* to + }, ; 985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1825_from, ; char* from + ptr @.TypeMapEntry.1826_to; char* to + }, ; 986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1827_from, ; char* from + ptr @.TypeMapEntry.1828_to; char* to + }, ; 987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1829_from, ; char* from + ptr @.TypeMapEntry.1830_to; char* to + }, ; 988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1831_from, ; char* from + ptr @.TypeMapEntry.1832_to; char* to + }, ; 989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1833_from, ; char* from + ptr @.TypeMapEntry.1834_to; char* to + }, ; 990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1835_from, ; char* from + ptr @.TypeMapEntry.1836_to; char* to + }, ; 991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1837_from, ; char* from + ptr @.TypeMapEntry.1838_to; char* to + }, ; 992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1839_from, ; char* from + ptr @.TypeMapEntry.1840_to; char* to + }, ; 993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1841_from, ; char* from + ptr @.TypeMapEntry.1840_to; char* to + }, ; 994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1842_from, ; char* from + ptr @.TypeMapEntry.1843_to; char* to + }, ; 995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1844_from, ; char* from + ptr @.TypeMapEntry.1843_to; char* to + }, ; 996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1845_from, ; char* from + ptr @.TypeMapEntry.1846_to; char* to + }, ; 997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1847_from, ; char* from + ptr @.TypeMapEntry.1846_to; char* to + }, ; 998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1848_from, ; char* from + ptr @.TypeMapEntry.1849_to; char* to + }, ; 999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1850_from, ; char* from + ptr @.TypeMapEntry.1851_to; char* to + }, ; 1000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1852_from, ; char* from + ptr @.TypeMapEntry.1853_to; char* to + }, ; 1001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1854_from, ; char* from + ptr @.TypeMapEntry.1855_to; char* to + }, ; 1002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1856_from, ; char* from + ptr @.TypeMapEntry.1857_to; char* to + }, ; 1003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1858_from, ; char* from + ptr @.TypeMapEntry.1859_to; char* to + }, ; 1004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1860_from, ; char* from + ptr @.TypeMapEntry.1861_to; char* to + }, ; 1005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1862_from, ; char* from + ptr @.TypeMapEntry.1863_to; char* to + }, ; 1006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1864_from, ; char* from + ptr @.TypeMapEntry.1865_to; char* to + }, ; 1007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1866_from, ; char* from + ptr @.TypeMapEntry.1867_to; char* to + }, ; 1008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1868_from, ; char* from + ptr @.TypeMapEntry.1869_to; char* to + }, ; 1009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1870_from, ; char* from + ptr @.TypeMapEntry.1871_to; char* to + }, ; 1010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1872_from, ; char* from + ptr @.TypeMapEntry.1873_to; char* to + }, ; 1011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1874_from, ; char* from + ptr @.TypeMapEntry.1875_to; char* to + }, ; 1012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1876_from, ; char* from + ptr @.TypeMapEntry.1877_to; char* to + }, ; 1013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1878_from, ; char* from + ptr @.TypeMapEntry.1879_to; char* to + }, ; 1014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1880_from, ; char* from + ptr @.TypeMapEntry.1881_to; char* to + }, ; 1015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1882_from, ; char* from + ptr @.TypeMapEntry.1883_to; char* to + }, ; 1016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1884_from, ; char* from + ptr @.TypeMapEntry.1885_to; char* to + }, ; 1017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1886_from, ; char* from + ptr @.TypeMapEntry.1887_to; char* to + }, ; 1018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1888_from, ; char* from + ptr @.TypeMapEntry.1889_to; char* to + }, ; 1019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1890_from, ; char* from + ptr @.TypeMapEntry.1891_to; char* to + }, ; 1020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1892_from, ; char* from + ptr @.TypeMapEntry.1893_to; char* to + }, ; 1021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1894_from, ; char* from + ptr @.TypeMapEntry.1895_to; char* to + }, ; 1022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1896_from, ; char* from + ptr @.TypeMapEntry.1897_to; char* to + }, ; 1023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1898_from, ; char* from + ptr @.TypeMapEntry.1899_to; char* to + }, ; 1024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1900_from, ; char* from + ptr @.TypeMapEntry.1901_to; char* to + }, ; 1025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1902_from, ; char* from + ptr @.TypeMapEntry.1903_to; char* to + }, ; 1026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1904_from, ; char* from + ptr @.TypeMapEntry.1905_to; char* to + }, ; 1027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1906_from, ; char* from + ptr @.TypeMapEntry.1907_to; char* to + }, ; 1028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1908_from, ; char* from + ptr @.TypeMapEntry.1909_to; char* to + }, ; 1029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1910_from, ; char* from + ptr @.TypeMapEntry.1911_to; char* to + }, ; 1030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1912_from, ; char* from + ptr @.TypeMapEntry.1913_to; char* to + }, ; 1031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1914_from, ; char* from + ptr @.TypeMapEntry.1915_to; char* to + }, ; 1032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1916_from, ; char* from + ptr @.TypeMapEntry.1917_to; char* to + }, ; 1033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1918_from, ; char* from + ptr @.TypeMapEntry.1919_to; char* to + }, ; 1034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1920_from, ; char* from + ptr @.TypeMapEntry.1921_to; char* to + }, ; 1035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1922_from, ; char* from + ptr @.TypeMapEntry.1923_to; char* to + }, ; 1036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1924_from, ; char* from + ptr @.TypeMapEntry.1925_to; char* to + }, ; 1037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1926_from, ; char* from + ptr @.TypeMapEntry.1927_to; char* to + }, ; 1038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1928_from, ; char* from + ptr @.TypeMapEntry.1929_to; char* to + }, ; 1039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1930_from, ; char* from + ptr @.TypeMapEntry.1931_to; char* to + }, ; 1040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1932_from, ; char* from + ptr @.TypeMapEntry.1931_to; char* to + }, ; 1041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1933_from, ; char* from + ptr @.TypeMapEntry.1934_to; char* to + }, ; 1042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1935_from, ; char* from + ptr @.TypeMapEntry.1936_to; char* to + }, ; 1043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1937_from, ; char* from + ptr @.TypeMapEntry.1938_to; char* to + }, ; 1044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1939_from, ; char* from + ptr @.TypeMapEntry.1938_to; char* to + }, ; 1045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1940_from, ; char* from + ptr @.TypeMapEntry.1941_to; char* to + }, ; 1046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1942_from, ; char* from + ptr @.TypeMapEntry.1941_to; char* to + }, ; 1047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1943_from, ; char* from + ptr @.TypeMapEntry.1944_to; char* to + }, ; 1048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1945_from, ; char* from + ptr @.TypeMapEntry.1946_to; char* to + }, ; 1049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1947_from, ; char* from + ptr @.TypeMapEntry.1948_to; char* to + }, ; 1050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1949_from, ; char* from + ptr @.TypeMapEntry.1948_to; char* to + }, ; 1051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1950_from, ; char* from + ptr @.TypeMapEntry.1951_to; char* to + }, ; 1052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1952_from, ; char* from + ptr @.TypeMapEntry.1953_to; char* to + }, ; 1053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1954_from, ; char* from + ptr @.TypeMapEntry.1955_to; char* to + }, ; 1054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1956_from, ; char* from + ptr @.TypeMapEntry.1957_to; char* to + }, ; 1055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1958_from, ; char* from + ptr @.TypeMapEntry.1959_to; char* to + }, ; 1056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1960_from, ; char* from + ptr @.TypeMapEntry.1961_to; char* to + }, ; 1057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1962_from, ; char* from + ptr @.TypeMapEntry.1963_to; char* to + }, ; 1058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1964_from, ; char* from + ptr @.TypeMapEntry.1965_to; char* to + }, ; 1059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1966_from, ; char* from + ptr @.TypeMapEntry.1967_to; char* to + }, ; 1060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1968_from, ; char* from + ptr @.TypeMapEntry.1967_to; char* to + }, ; 1061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1969_from, ; char* from + ptr @.TypeMapEntry.1970_to; char* to + }, ; 1062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1971_from, ; char* from + ptr @.TypeMapEntry.1972_to; char* to + }, ; 1063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1973_from, ; char* from + ptr @.TypeMapEntry.1974_to; char* to + }, ; 1064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1975_from, ; char* from + ptr @.TypeMapEntry.1976_to; char* to + }, ; 1065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1977_from, ; char* from + ptr @.TypeMapEntry.1976_to; char* to + }, ; 1066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1978_from, ; char* from + ptr @.TypeMapEntry.1979_to; char* to + }, ; 1067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1980_from, ; char* from + ptr @.TypeMapEntry.1979_to; char* to + }, ; 1068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1981_from, ; char* from + ptr @.TypeMapEntry.1982_to; char* to + }, ; 1069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1983_from, ; char* from + ptr @.TypeMapEntry.1982_to; char* to + }, ; 1070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1984_from, ; char* from + ptr @.TypeMapEntry.1985_to; char* to + }, ; 1071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1986_from, ; char* from + ptr @.TypeMapEntry.1987_to; char* to + }, ; 1072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1988_from, ; char* from + ptr @.TypeMapEntry.1989_to; char* to + }, ; 1073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1990_from, ; char* from + ptr @.TypeMapEntry.1991_to; char* to + }, ; 1074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1992_from, ; char* from + ptr @.TypeMapEntry.1991_to; char* to + }, ; 1075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1993_from, ; char* from + ptr @.TypeMapEntry.1994_to; char* to + }, ; 1076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1995_from, ; char* from + ptr @.TypeMapEntry.1996_to; char* to + }, ; 1077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1997_from, ; char* from + ptr @.TypeMapEntry.1996_to; char* to + }, ; 1078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1998_from, ; char* from + ptr @.TypeMapEntry.1999_to; char* to + }, ; 1079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2000_from, ; char* from + ptr @.TypeMapEntry.2001_to; char* to + }, ; 1080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2002_from, ; char* from + ptr @.TypeMapEntry.1999_to; char* to + }, ; 1081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2003_from, ; char* from + ptr @.TypeMapEntry.2004_to; char* to + }, ; 1082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2005_from, ; char* from + ptr @.TypeMapEntry.2006_to; char* to + }, ; 1083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2007_from, ; char* from + ptr @.TypeMapEntry.2008_to; char* to + }, ; 1084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2009_from, ; char* from + ptr @.TypeMapEntry.2010_to; char* to + }, ; 1085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2011_from, ; char* from + ptr @.TypeMapEntry.2012_to; char* to + }, ; 1086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2013_from, ; char* from + ptr @.TypeMapEntry.2014_to; char* to + }, ; 1087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2015_from, ; char* from + ptr @.TypeMapEntry.2014_to; char* to + }, ; 1088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2016_from, ; char* from + ptr @.TypeMapEntry.2017_to; char* to + }, ; 1089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2018_from, ; char* from + ptr @.TypeMapEntry.2019_to; char* to + }, ; 1090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2020_from, ; char* from + ptr @.TypeMapEntry.2021_to; char* to + }, ; 1091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2022_from, ; char* from + ptr @.TypeMapEntry.2021_to; char* to + }, ; 1092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2023_from, ; char* from + ptr @.TypeMapEntry.2024_to; char* to + }, ; 1093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2025_from, ; char* from + ptr @.TypeMapEntry.2026_to; char* to + }, ; 1094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2027_from, ; char* from + ptr @.TypeMapEntry.2028_to; char* to + }, ; 1095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2029_from, ; char* from + ptr @.TypeMapEntry.2030_to; char* to + }, ; 1096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2031_from, ; char* from + ptr @.TypeMapEntry.2032_to; char* to + }, ; 1097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2033_from, ; char* from + ptr @.TypeMapEntry.2034_to; char* to + }, ; 1098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2035_from, ; char* from + ptr @.TypeMapEntry.2036_to; char* to + }, ; 1099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2037_from, ; char* from + ptr @.TypeMapEntry.2038_to; char* to + }, ; 1100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2039_from, ; char* from + ptr @.TypeMapEntry.2040_to; char* to + }, ; 1101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2041_from, ; char* from + ptr @.TypeMapEntry.2042_to; char* to + }, ; 1102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2043_from, ; char* from + ptr @.TypeMapEntry.2044_to; char* to + }, ; 1103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2045_from, ; char* from + ptr @.TypeMapEntry.2046_to; char* to + }, ; 1104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2047_from, ; char* from + ptr @.TypeMapEntry.2046_to; char* to + }, ; 1105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2048_from, ; char* from + ptr @.TypeMapEntry.2049_to; char* to + }, ; 1106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2050_from, ; char* from + ptr @.TypeMapEntry.2051_to; char* to + }, ; 1107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2052_from, ; char* from + ptr @.TypeMapEntry.2051_to; char* to + }, ; 1108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2053_from, ; char* from + ptr @.TypeMapEntry.2054_to; char* to + }, ; 1109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2055_from, ; char* from + ptr @.TypeMapEntry.2056_to; char* to + }, ; 1110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2057_from, ; char* from + ptr @.TypeMapEntry.2058_to; char* to + }, ; 1111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2059_from, ; char* from + ptr @.TypeMapEntry.2060_to; char* to + }, ; 1112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2061_from, ; char* from + ptr @.TypeMapEntry.2062_to; char* to + }, ; 1113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2063_from, ; char* from + ptr @.TypeMapEntry.2064_to; char* to + }, ; 1114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2065_from, ; char* from + ptr @.TypeMapEntry.2066_to; char* to + }, ; 1115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2067_from, ; char* from + ptr @.TypeMapEntry.2068_to; char* to + }, ; 1116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2069_from, ; char* from + ptr @.TypeMapEntry.2070_to; char* to + }, ; 1117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2071_from, ; char* from + ptr @.TypeMapEntry.2072_to; char* to + }, ; 1118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2073_from, ; char* from + ptr @.TypeMapEntry.2074_to; char* to + }, ; 1119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2075_from, ; char* from + ptr @.TypeMapEntry.2076_to; char* to + }, ; 1120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2077_from, ; char* from + ptr @.TypeMapEntry.2078_to; char* to + }, ; 1121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2079_from, ; char* from + ptr @.TypeMapEntry.2080_to; char* to + }, ; 1122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2081_from, ; char* from + ptr @.TypeMapEntry.2082_to; char* to + }, ; 1123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2083_from, ; char* from + ptr @.TypeMapEntry.2084_to; char* to + }, ; 1124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2085_from, ; char* from + ptr @.TypeMapEntry.2086_to; char* to + }, ; 1125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2087_from, ; char* from + ptr @.TypeMapEntry.2088_to; char* to + }, ; 1126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2089_from, ; char* from + ptr @.TypeMapEntry.2086_to; char* to + }, ; 1127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2090_from, ; char* from + ptr @.TypeMapEntry.2091_to; char* to + }, ; 1128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2092_from, ; char* from + ptr @.TypeMapEntry.2093_to; char* to + }, ; 1129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2094_from, ; char* from + ptr @.TypeMapEntry.2091_to; char* to + }, ; 1130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2095_from, ; char* from + ptr @.TypeMapEntry.2096_to; char* to + }, ; 1131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2097_from, ; char* from + ptr @.TypeMapEntry.2098_to; char* to + }, ; 1132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2099_from, ; char* from + ptr @.TypeMapEntry.2096_to; char* to + }, ; 1133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2100_from, ; char* from + ptr @.TypeMapEntry.2101_to; char* to + }, ; 1134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2102_from, ; char* from + ptr @.TypeMapEntry.2103_to; char* to + }, ; 1135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2104_from, ; char* from + ptr @.TypeMapEntry.2105_to; char* to + }, ; 1136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2106_from, ; char* from + ptr @.TypeMapEntry.2107_to; char* to + }, ; 1137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2108_from, ; char* from + ptr @.TypeMapEntry.2109_to; char* to + }, ; 1138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2110_from, ; char* from + ptr @.TypeMapEntry.2111_to; char* to + }, ; 1139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2112_from, ; char* from + ptr @.TypeMapEntry.2113_to; char* to + }, ; 1140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2114_from, ; char* from + ptr @.TypeMapEntry.2115_to; char* to + }, ; 1141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2116_from, ; char* from + ptr @.TypeMapEntry.2117_to; char* to + }, ; 1142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2118_from, ; char* from + ptr @.TypeMapEntry.2119_to; char* to + }, ; 1143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2120_from, ; char* from + ptr @.TypeMapEntry.2121_to; char* to + }, ; 1144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2122_from, ; char* from + ptr @.TypeMapEntry.2123_to; char* to + }, ; 1145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2124_from, ; char* from + ptr @.TypeMapEntry.2125_to; char* to + }, ; 1146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2126_from, ; char* from + ptr @.TypeMapEntry.2127_to; char* to + }, ; 1147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2128_from, ; char* from + ptr @.TypeMapEntry.2129_to; char* to + }, ; 1148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2130_from, ; char* from + ptr @.TypeMapEntry.2129_to; char* to + }, ; 1149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2131_from, ; char* from + ptr @.TypeMapEntry.2132_to; char* to + }, ; 1150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2133_from, ; char* from + ptr @.TypeMapEntry.2134_to; char* to + }, ; 1151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2135_from, ; char* from + ptr @.TypeMapEntry.2132_to; char* to + }, ; 1152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2136_from, ; char* from + ptr @.TypeMapEntry.2137_to; char* to + }, ; 1153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2138_from, ; char* from + ptr @.TypeMapEntry.2139_to; char* to + }, ; 1154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2140_from, ; char* from + ptr @.TypeMapEntry.2137_to; char* to + }, ; 1155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2141_from, ; char* from + ptr @.TypeMapEntry.2142_to; char* to + }, ; 1156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2143_from, ; char* from + ptr @.TypeMapEntry.2144_to; char* to + }, ; 1157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2145_from, ; char* from + ptr @.TypeMapEntry.2142_to; char* to + }, ; 1158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2146_from, ; char* from + ptr @.TypeMapEntry.2147_to; char* to + }, ; 1159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2148_from, ; char* from + ptr @.TypeMapEntry.2149_to; char* to + }, ; 1160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2150_from, ; char* from + ptr @.TypeMapEntry.2151_to; char* to + }, ; 1161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2152_from, ; char* from + ptr @.TypeMapEntry.2153_to; char* to + }, ; 1162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2154_from, ; char* from + ptr @.TypeMapEntry.2155_to; char* to + }, ; 1163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2156_from, ; char* from + ptr @.TypeMapEntry.2157_to; char* to + }, ; 1164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2158_from, ; char* from + ptr @.TypeMapEntry.2159_to; char* to + }, ; 1165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2160_from, ; char* from + ptr @.TypeMapEntry.2161_to; char* to + }, ; 1166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2162_from, ; char* from + ptr @.TypeMapEntry.2163_to; char* to + }, ; 1167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2164_from, ; char* from + ptr @.TypeMapEntry.2165_to; char* to + }, ; 1168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2166_from, ; char* from + ptr @.TypeMapEntry.2167_to; char* to + }, ; 1169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2168_from, ; char* from + ptr @.TypeMapEntry.2169_to; char* to + }, ; 1170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2170_from, ; char* from + ptr @.TypeMapEntry.2171_to; char* to + }, ; 1171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2172_from, ; char* from + ptr @.TypeMapEntry.2173_to; char* to + }, ; 1172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2174_from, ; char* from + ptr @.TypeMapEntry.2175_to; char* to + }, ; 1173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2176_from, ; char* from + ptr @.TypeMapEntry.2177_to; char* to + }, ; 1174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2178_from, ; char* from + ptr @.TypeMapEntry.2179_to; char* to + }, ; 1175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2180_from, ; char* from + ptr @.TypeMapEntry.2181_to; char* to + }, ; 1176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2182_from, ; char* from + ptr @.TypeMapEntry.2183_to; char* to + }, ; 1177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2184_from, ; char* from + ptr @.TypeMapEntry.2185_to; char* to + }, ; 1178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2186_from, ; char* from + ptr @.TypeMapEntry.2187_to; char* to + }, ; 1179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2188_from, ; char* from + ptr @.TypeMapEntry.2189_to; char* to + }, ; 1180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2190_from, ; char* from + ptr @.TypeMapEntry.2191_to; char* to + }, ; 1181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2192_from, ; char* from + ptr @.TypeMapEntry.2193_to; char* to + }, ; 1182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2194_from, ; char* from + ptr @.TypeMapEntry.2195_to; char* to + }, ; 1183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2196_from, ; char* from + ptr @.TypeMapEntry.2197_to; char* to + }, ; 1184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2198_from, ; char* from + ptr @.TypeMapEntry.2199_to; char* to + }, ; 1185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2200_from, ; char* from + ptr @.TypeMapEntry.2201_to; char* to + }, ; 1186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2202_from, ; char* from + ptr @.TypeMapEntry.2203_to; char* to + }, ; 1187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2204_from, ; char* from + ptr @.TypeMapEntry.2205_to; char* to + }, ; 1188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2206_from, ; char* from + ptr @.TypeMapEntry.2207_to; char* to + }, ; 1189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2208_from, ; char* from + ptr @.TypeMapEntry.2209_to; char* to + }, ; 1190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2210_from, ; char* from + ptr @.TypeMapEntry.2211_to; char* to + }, ; 1191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2212_from, ; char* from + ptr @.TypeMapEntry.2213_to; char* to + }, ; 1192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2214_from, ; char* from + ptr @.TypeMapEntry.2215_to; char* to + }, ; 1193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2216_from, ; char* from + ptr @.TypeMapEntry.2217_to; char* to + }, ; 1194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2218_from, ; char* from + ptr @.TypeMapEntry.2217_to; char* to + }, ; 1195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2219_from, ; char* from + ptr @.TypeMapEntry.2220_to; char* to + }, ; 1196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2221_from, ; char* from + ptr @.TypeMapEntry.2222_to; char* to + }, ; 1197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2223_from, ; char* from + ptr @.TypeMapEntry.2224_to; char* to + }, ; 1198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2225_from, ; char* from + ptr @.TypeMapEntry.2226_to; char* to + }, ; 1199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2227_from, ; char* from + ptr @.TypeMapEntry.2228_to; char* to + }, ; 1200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2229_from, ; char* from + ptr @.TypeMapEntry.2230_to; char* to + }, ; 1201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2231_from, ; char* from + ptr @.TypeMapEntry.2232_to; char* to + }, ; 1202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2233_from, ; char* from + ptr @.TypeMapEntry.2234_to; char* to + }, ; 1203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2235_from, ; char* from + ptr @.TypeMapEntry.2234_to; char* to + }, ; 1204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2236_from, ; char* from + ptr @.TypeMapEntry.2237_to; char* to + }, ; 1205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2238_from, ; char* from + ptr @.TypeMapEntry.2239_to; char* to + }, ; 1206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2240_from, ; char* from + ptr @.TypeMapEntry.2241_to; char* to + }, ; 1207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2242_from, ; char* from + ptr @.TypeMapEntry.2243_to; char* to + }, ; 1208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2244_from, ; char* from + ptr @.TypeMapEntry.2245_to; char* to + }, ; 1209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2246_from, ; char* from + ptr @.TypeMapEntry.2247_to; char* to + }, ; 1210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2248_from, ; char* from + ptr @.TypeMapEntry.2249_to; char* to + }, ; 1211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2250_from, ; char* from + ptr @.TypeMapEntry.2251_to; char* to + }, ; 1212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2252_from, ; char* from + ptr @.TypeMapEntry.2253_to; char* to + }, ; 1213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2254_from, ; char* from + ptr @.TypeMapEntry.2253_to; char* to + }, ; 1214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2255_from, ; char* from + ptr @.TypeMapEntry.2256_to; char* to + }, ; 1215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2257_from, ; char* from + ptr @.TypeMapEntry.2256_to; char* to + }, ; 1216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2258_from, ; char* from + ptr @.TypeMapEntry.2259_to; char* to + }, ; 1217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2260_from, ; char* from + ptr @.TypeMapEntry.2261_to; char* to + }, ; 1218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2262_from, ; char* from + ptr @.TypeMapEntry.2261_to; char* to + }, ; 1219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2263_from, ; char* from + ptr @.TypeMapEntry.2264_to; char* to + }, ; 1220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2265_from, ; char* from + ptr @.TypeMapEntry.2259_to; char* to + }, ; 1221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2266_from, ; char* from + ptr @.TypeMapEntry.2267_to; char* to + }, ; 1222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2268_from, ; char* from + ptr @.TypeMapEntry.2267_to; char* to + }, ; 1223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2269_from, ; char* from + ptr @.TypeMapEntry.2270_to; char* to + }, ; 1224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2271_from, ; char* from + ptr @.TypeMapEntry.2272_to; char* to + }, ; 1225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2273_from, ; char* from + ptr @.TypeMapEntry.2274_to; char* to + }, ; 1226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2275_from, ; char* from + ptr @.TypeMapEntry.2276_to; char* to + }, ; 1227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2277_from, ; char* from + ptr @.TypeMapEntry.2276_to; char* to + }, ; 1228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2278_from, ; char* from + ptr @.TypeMapEntry.2274_to; char* to + }, ; 1229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2279_from, ; char* from + ptr @.TypeMapEntry.2280_to; char* to + }, ; 1230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2281_from, ; char* from + ptr @.TypeMapEntry.2282_to; char* to + }, ; 1231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2283_from, ; char* from + ptr @.TypeMapEntry.2280_to; char* to + }, ; 1232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2284_from, ; char* from + ptr @.TypeMapEntry.2285_to; char* to + }, ; 1233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2286_from, ; char* from + ptr @.TypeMapEntry.2287_to; char* to + }, ; 1234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2288_from, ; char* from + ptr @.TypeMapEntry.2289_to; char* to + }, ; 1235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2290_from, ; char* from + ptr @.TypeMapEntry.2291_to; char* to + }, ; 1236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2292_from, ; char* from + ptr @.TypeMapEntry.2293_to; char* to + }, ; 1237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2294_from, ; char* from + ptr @.TypeMapEntry.2295_to; char* to + }, ; 1238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2296_from, ; char* from + ptr @.TypeMapEntry.2297_to; char* to + }, ; 1239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2298_from, ; char* from + ptr @.TypeMapEntry.2299_to; char* to + }, ; 1240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2300_from, ; char* from + ptr @.TypeMapEntry.2301_to; char* to + }, ; 1241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2302_from, ; char* from + ptr @.TypeMapEntry.2303_to; char* to + }, ; 1242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2304_from, ; char* from + ptr @.TypeMapEntry.2305_to; char* to + }, ; 1243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2306_from, ; char* from + ptr @.TypeMapEntry.2305_to; char* to + }, ; 1244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2307_from, ; char* from + ptr @.TypeMapEntry.2308_to; char* to + }, ; 1245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2309_from, ; char* from + ptr @.TypeMapEntry.2310_to; char* to + }, ; 1246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2311_from, ; char* from + ptr @.TypeMapEntry.2312_to; char* to + }, ; 1247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2313_from, ; char* from + ptr @.TypeMapEntry.2314_to; char* to + }, ; 1248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2315_from, ; char* from + ptr @.TypeMapEntry.2316_to; char* to + }, ; 1249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2317_from, ; char* from + ptr @.TypeMapEntry.2318_to; char* to + }, ; 1250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2319_from, ; char* from + ptr @.TypeMapEntry.2320_to; char* to + }, ; 1251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2321_from, ; char* from + ptr @.TypeMapEntry.2320_to; char* to + }, ; 1252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2322_from, ; char* from + ptr @.TypeMapEntry.2323_to; char* to + }, ; 1253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2324_from, ; char* from + ptr @.TypeMapEntry.2325_to; char* to + }, ; 1254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2326_from, ; char* from + ptr @.TypeMapEntry.2327_to; char* to + }, ; 1255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2328_from, ; char* from + ptr @.TypeMapEntry.2329_to; char* to + }, ; 1256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2330_from, ; char* from + ptr @.TypeMapEntry.2331_to; char* to + }, ; 1257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2332_from, ; char* from + ptr @.TypeMapEntry.2333_to; char* to + }, ; 1258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2334_from, ; char* from + ptr @.TypeMapEntry.2335_to; char* to + }, ; 1259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2336_from, ; char* from + ptr @.TypeMapEntry.2337_to; char* to + }, ; 1260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2338_from, ; char* from + ptr @.TypeMapEntry.2339_to; char* to + }, ; 1261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2340_from, ; char* from + ptr @.TypeMapEntry.2341_to; char* to + }, ; 1262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2342_from, ; char* from + ptr @.TypeMapEntry.2343_to; char* to + }, ; 1263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2344_from, ; char* from + ptr @.TypeMapEntry.2345_to; char* to + }, ; 1264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2346_from, ; char* from + ptr @.TypeMapEntry.2347_to; char* to + }, ; 1265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2348_from, ; char* from + ptr @.TypeMapEntry.2349_to; char* to + }, ; 1266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2350_from, ; char* from + ptr @.TypeMapEntry.2351_to; char* to + }, ; 1267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2352_from, ; char* from + ptr @.TypeMapEntry.2353_to; char* to + }, ; 1268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2354_from, ; char* from + ptr @.TypeMapEntry.2355_to; char* to + }, ; 1269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2356_from, ; char* from + ptr @.TypeMapEntry.2357_to; char* to + }, ; 1270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2358_from, ; char* from + ptr @.TypeMapEntry.2357_to; char* to + }, ; 1271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2359_from, ; char* from + ptr @.TypeMapEntry.2360_to; char* to + }, ; 1272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2361_from, ; char* from + ptr @.TypeMapEntry.2362_to; char* to + }, ; 1273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2363_from, ; char* from + ptr @.TypeMapEntry.2364_to; char* to + }, ; 1274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2365_from, ; char* from + ptr @.TypeMapEntry.2362_to; char* to + }, ; 1275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2366_from, ; char* from + ptr @.TypeMapEntry.2367_to; char* to + }, ; 1276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2368_from, ; char* from + ptr @.TypeMapEntry.2369_to; char* to + }, ; 1277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2370_from, ; char* from + ptr @.TypeMapEntry.2367_to; char* to + }, ; 1278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2371_from, ; char* from + ptr @.TypeMapEntry.2372_to; char* to + }, ; 1279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2373_from, ; char* from + ptr @.TypeMapEntry.2374_to; char* to + }, ; 1280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2375_from, ; char* from + ptr @.TypeMapEntry.2374_to; char* to + }, ; 1281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2376_from, ; char* from + ptr @.TypeMapEntry.2377_to; char* to + }, ; 1282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2378_from, ; char* from + ptr @.TypeMapEntry.2379_to; char* to + }, ; 1283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2380_from, ; char* from + ptr @.TypeMapEntry.2381_to; char* to + }, ; 1284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2382_from, ; char* from + ptr @.TypeMapEntry.2383_to; char* to + }, ; 1285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2384_from, ; char* from + ptr @.TypeMapEntry.2385_to; char* to + }, ; 1286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2386_from, ; char* from + ptr @.TypeMapEntry.2387_to; char* to + }, ; 1287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2388_from, ; char* from + ptr @.TypeMapEntry.2389_to; char* to + }, ; 1288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2390_from, ; char* from + ptr @.TypeMapEntry.2391_to; char* to + }, ; 1289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2392_from, ; char* from + ptr @.TypeMapEntry.2393_to; char* to + }, ; 1290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2394_from, ; char* from + ptr @.TypeMapEntry.2395_to; char* to + }, ; 1291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2396_from, ; char* from + ptr @.TypeMapEntry.2397_to; char* to + }, ; 1292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2398_from, ; char* from + ptr @.TypeMapEntry.2399_to; char* to + }, ; 1293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2400_from, ; char* from + ptr @.TypeMapEntry.2401_to; char* to + }, ; 1294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2402_from, ; char* from + ptr @.TypeMapEntry.2403_to; char* to + }, ; 1295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2404_from, ; char* from + ptr @.TypeMapEntry.2405_to; char* to + }, ; 1296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2406_from, ; char* from + ptr @.TypeMapEntry.2407_to; char* to + }, ; 1297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2408_from, ; char* from + ptr @.TypeMapEntry.2409_to; char* to + }, ; 1298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2410_from, ; char* from + ptr @.TypeMapEntry.2411_to; char* to + }, ; 1299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2412_from, ; char* from + ptr @.TypeMapEntry.2413_to; char* to + }, ; 1300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2414_from, ; char* from + ptr @.TypeMapEntry.2415_to; char* to + }, ; 1301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2416_from, ; char* from + ptr @.TypeMapEntry.2417_to; char* to + }, ; 1302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2418_from, ; char* from + ptr @.TypeMapEntry.2419_to; char* to + }, ; 1303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2420_from, ; char* from + ptr @.TypeMapEntry.2421_to; char* to + }, ; 1304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2422_from, ; char* from + ptr @.TypeMapEntry.2423_to; char* to + }, ; 1305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2424_from, ; char* from + ptr @.TypeMapEntry.2425_to; char* to + }, ; 1306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2426_from, ; char* from + ptr @.TypeMapEntry.2427_to; char* to + }, ; 1307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2428_from, ; char* from + ptr @.TypeMapEntry.2429_to; char* to + }, ; 1308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2430_from, ; char* from + ptr @.TypeMapEntry.2431_to; char* to + }, ; 1309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2432_from, ; char* from + ptr @.TypeMapEntry.2433_to; char* to + }, ; 1310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2434_from, ; char* from + ptr @.TypeMapEntry.2435_to; char* to + }, ; 1311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2436_from, ; char* from + ptr @.TypeMapEntry.2437_to; char* to + }, ; 1312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2438_from, ; char* from + ptr @.TypeMapEntry.2439_to; char* to + }, ; 1313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2440_from, ; char* from + ptr @.TypeMapEntry.2441_to; char* to + }, ; 1314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2442_from, ; char* from + ptr @.TypeMapEntry.2443_to; char* to + }, ; 1315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2444_from, ; char* from + ptr @.TypeMapEntry.2445_to; char* to + }, ; 1316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2446_from, ; char* from + ptr @.TypeMapEntry.2447_to; char* to + }, ; 1317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2448_from, ; char* from + ptr @.TypeMapEntry.2449_to; char* to + }, ; 1318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2450_from, ; char* from + ptr @.TypeMapEntry.2451_to; char* to + }, ; 1319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2452_from, ; char* from + ptr @.TypeMapEntry.2453_to; char* to + }, ; 1320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2454_from, ; char* from + ptr @.TypeMapEntry.2455_to; char* to + }, ; 1321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2456_from, ; char* from + ptr @.TypeMapEntry.2457_to; char* to + }, ; 1322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2458_from, ; char* from + ptr @.TypeMapEntry.2459_to; char* to + }, ; 1323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2460_from, ; char* from + ptr @.TypeMapEntry.2461_to; char* to + }, ; 1324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2462_from, ; char* from + ptr @.TypeMapEntry.2463_to; char* to + }, ; 1325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2464_from, ; char* from + ptr @.TypeMapEntry.2465_to; char* to + }, ; 1326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2466_from, ; char* from + ptr @.TypeMapEntry.2467_to; char* to + }, ; 1327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2468_from, ; char* from + ptr @.TypeMapEntry.2469_to; char* to + }, ; 1328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2470_from, ; char* from + ptr @.TypeMapEntry.2471_to; char* to + }, ; 1329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2472_from, ; char* from + ptr @.TypeMapEntry.2473_to; char* to + }, ; 1330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2474_from, ; char* from + ptr @.TypeMapEntry.2475_to; char* to + }, ; 1331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2476_from, ; char* from + ptr @.TypeMapEntry.2477_to; char* to + }, ; 1332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2478_from, ; char* from + ptr @.TypeMapEntry.2479_to; char* to + }, ; 1333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2480_from, ; char* from + ptr @.TypeMapEntry.2481_to; char* to + }, ; 1334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2482_from, ; char* from + ptr @.TypeMapEntry.2483_to; char* to + }, ; 1335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2484_from, ; char* from + ptr @.TypeMapEntry.2485_to; char* to + }, ; 1336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2486_from, ; char* from + ptr @.TypeMapEntry.2487_to; char* to + }, ; 1337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2488_from, ; char* from + ptr @.TypeMapEntry.2489_to; char* to + }, ; 1338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2490_from, ; char* from + ptr @.TypeMapEntry.2491_to; char* to + }, ; 1339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2492_from, ; char* from + ptr @.TypeMapEntry.2493_to; char* to + }, ; 1340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2494_from, ; char* from + ptr @.TypeMapEntry.2495_to; char* to + }, ; 1341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2496_from, ; char* from + ptr @.TypeMapEntry.2497_to; char* to + }, ; 1342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2498_from, ; char* from + ptr @.TypeMapEntry.2499_to; char* to + }, ; 1343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2500_from, ; char* from + ptr @.TypeMapEntry.2501_to; char* to + }, ; 1344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2502_from, ; char* from + ptr @.TypeMapEntry.2503_to; char* to + }, ; 1345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2504_from, ; char* from + ptr @.TypeMapEntry.2505_to; char* to + }, ; 1346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2506_from, ; char* from + ptr @.TypeMapEntry.2507_to; char* to + }, ; 1347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2508_from, ; char* from + ptr @.TypeMapEntry.2509_to; char* to + }, ; 1348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2510_from, ; char* from + ptr @.TypeMapEntry.2511_to; char* to + }, ; 1349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2512_from, ; char* from + ptr @.TypeMapEntry.2513_to; char* to + }, ; 1350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2514_from, ; char* from + ptr @.TypeMapEntry.2515_to; char* to + }, ; 1351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2516_from, ; char* from + ptr @.TypeMapEntry.2517_to; char* to + }, ; 1352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2518_from, ; char* from + ptr @.TypeMapEntry.2519_to; char* to + }, ; 1353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2520_from, ; char* from + ptr @.TypeMapEntry.2521_to; char* to + }, ; 1354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2522_from, ; char* from + ptr @.TypeMapEntry.2523_to; char* to + }, ; 1355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2524_from, ; char* from + ptr @.TypeMapEntry.2525_to; char* to + }, ; 1356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2526_from, ; char* from + ptr @.TypeMapEntry.2527_to; char* to + }, ; 1357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2528_from, ; char* from + ptr @.TypeMapEntry.2529_to; char* to + }, ; 1358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2530_from, ; char* from + ptr @.TypeMapEntry.2531_to; char* to + }, ; 1359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2532_from, ; char* from + ptr @.TypeMapEntry.2533_to; char* to + }, ; 1360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2534_from, ; char* from + ptr @.TypeMapEntry.2535_to; char* to + }, ; 1361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2536_from, ; char* from + ptr @.TypeMapEntry.2537_to; char* to + }, ; 1362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2538_from, ; char* from + ptr @.TypeMapEntry.2539_to; char* to + }, ; 1363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2540_from, ; char* from + ptr @.TypeMapEntry.2541_to; char* to + }, ; 1364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2542_from, ; char* from + ptr @.TypeMapEntry.2543_to; char* to + }, ; 1365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2544_from, ; char* from + ptr @.TypeMapEntry.2545_to; char* to + }, ; 1366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2546_from, ; char* from + ptr @.TypeMapEntry.2547_to; char* to + }, ; 1367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2548_from, ; char* from + ptr @.TypeMapEntry.2549_to; char* to + }, ; 1368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2550_from, ; char* from + ptr @.TypeMapEntry.2551_to; char* to + }, ; 1369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2552_from, ; char* from + ptr @.TypeMapEntry.2549_to; char* to + }, ; 1370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2553_from, ; char* from + ptr @.TypeMapEntry.2554_to; char* to + }, ; 1371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2555_from, ; char* from + ptr @.TypeMapEntry.2556_to; char* to + }, ; 1372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2557_from, ; char* from + ptr @.TypeMapEntry.2558_to; char* to + }, ; 1373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2559_from, ; char* from + ptr @.TypeMapEntry.2560_to; char* to + }, ; 1374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2561_from, ; char* from + ptr @.TypeMapEntry.2562_to; char* to + }, ; 1375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2563_from, ; char* from + ptr @.TypeMapEntry.2564_to; char* to + }, ; 1376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2565_from, ; char* from + ptr @.TypeMapEntry.2566_to; char* to + }, ; 1377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2567_from, ; char* from + ptr @.TypeMapEntry.2568_to; char* to + }, ; 1378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2569_from, ; char* from + ptr @.TypeMapEntry.2570_to; char* to + }, ; 1379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2571_from, ; char* from + ptr @.TypeMapEntry.2572_to; char* to + }, ; 1380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2573_from, ; char* from + ptr @.TypeMapEntry.2574_to; char* to + }, ; 1381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2575_from, ; char* from + ptr @.TypeMapEntry.2576_to; char* to + }, ; 1382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2577_from, ; char* from + ptr @.TypeMapEntry.2578_to; char* to + }, ; 1383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2579_from, ; char* from + ptr @.TypeMapEntry.2580_to; char* to + }, ; 1384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2581_from, ; char* from + ptr @.TypeMapEntry.2582_to; char* to + }, ; 1385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2583_from, ; char* from + ptr @.TypeMapEntry.2584_to; char* to + }, ; 1386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2585_from, ; char* from + ptr @.TypeMapEntry.2586_to; char* to + }, ; 1387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2587_from, ; char* from + ptr @.TypeMapEntry.2588_to; char* to + }, ; 1388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2589_from, ; char* from + ptr @.TypeMapEntry.2590_to; char* to + }, ; 1389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2591_from, ; char* from + ptr @.TypeMapEntry.2590_to; char* to + }, ; 1390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2592_from, ; char* from + ptr @.TypeMapEntry.2593_to; char* to + }, ; 1391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2594_from, ; char* from + ptr @.TypeMapEntry.2595_to; char* to + }, ; 1392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2596_from, ; char* from + ptr @.TypeMapEntry.2597_to; char* to + }, ; 1393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2598_from, ; char* from + ptr @.TypeMapEntry.2597_to; char* to + }, ; 1394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2599_from, ; char* from + ptr @.TypeMapEntry.2600_to; char* to + }, ; 1395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2601_from, ; char* from + ptr @.TypeMapEntry.2602_to; char* to + }, ; 1396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2603_from, ; char* from + ptr @.TypeMapEntry.2604_to; char* to + }, ; 1397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2605_from, ; char* from + ptr @.TypeMapEntry.2606_to; char* to + }, ; 1398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2607_from, ; char* from + ptr @.TypeMapEntry.2608_to; char* to + }, ; 1399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2609_from, ; char* from + ptr @.TypeMapEntry.2608_to; char* to + }, ; 1400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2610_from, ; char* from + ptr @.TypeMapEntry.2611_to; char* to + }, ; 1401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2612_from, ; char* from + ptr @.TypeMapEntry.2611_to; char* to + }, ; 1402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2613_from, ; char* from + ptr @.TypeMapEntry.2614_to; char* to + }, ; 1403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2615_from, ; char* from + ptr @.TypeMapEntry.2616_to; char* to + }, ; 1404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2617_from, ; char* from + ptr @.TypeMapEntry.2618_to; char* to + }, ; 1405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2619_from, ; char* from + ptr @.TypeMapEntry.2620_to; char* to + }, ; 1406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2621_from, ; char* from + ptr @.TypeMapEntry.2622_to; char* to + }, ; 1407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2623_from, ; char* from + ptr @.TypeMapEntry.2624_to; char* to + }, ; 1408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2625_from, ; char* from + ptr @.TypeMapEntry.2626_to; char* to + }, ; 1409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2627_from, ; char* from + ptr @.TypeMapEntry.2628_to; char* to + }, ; 1410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2629_from, ; char* from + ptr @.TypeMapEntry.2630_to; char* to + }, ; 1411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2631_from, ; char* from + ptr @.TypeMapEntry.2632_to; char* to + }, ; 1412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2633_from, ; char* from + ptr @.TypeMapEntry.2632_to; char* to + }, ; 1413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2634_from, ; char* from + ptr @.TypeMapEntry.2635_to; char* to + }, ; 1414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2636_from, ; char* from + ptr @.TypeMapEntry.2635_to; char* to + }, ; 1415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2637_from, ; char* from + ptr @.TypeMapEntry.2638_to; char* to + }, ; 1416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2639_from, ; char* from + ptr @.TypeMapEntry.2638_to; char* to + }, ; 1417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2640_from, ; char* from + ptr @.TypeMapEntry.2641_to; char* to + }, ; 1418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2642_from, ; char* from + ptr @.TypeMapEntry.2643_to; char* to + }, ; 1419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2644_from, ; char* from + ptr @.TypeMapEntry.2641_to; char* to + }, ; 1420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2645_from, ; char* from + ptr @.TypeMapEntry.2646_to; char* to + }, ; 1421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2647_from, ; char* from + ptr @.TypeMapEntry.2648_to; char* to + }, ; 1422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2649_from, ; char* from + ptr @.TypeMapEntry.2646_to; char* to + }, ; 1423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2650_from, ; char* from + ptr @.TypeMapEntry.2651_to; char* to + }, ; 1424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2652_from, ; char* from + ptr @.TypeMapEntry.2651_to; char* to + }, ; 1425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2653_from, ; char* from + ptr @.TypeMapEntry.2654_to; char* to + }, ; 1426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2655_from, ; char* from + ptr @.TypeMapEntry.2654_to; char* to + }, ; 1427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2656_from, ; char* from + ptr @.TypeMapEntry.2657_to; char* to + }, ; 1428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2658_from, ; char* from + ptr @.TypeMapEntry.2657_to; char* to + }, ; 1429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2659_from, ; char* from + ptr @.TypeMapEntry.2660_to; char* to + }, ; 1430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2661_from, ; char* from + ptr @.TypeMapEntry.2662_to; char* to + }, ; 1431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2663_from, ; char* from + ptr @.TypeMapEntry.2664_to; char* to + }, ; 1432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2665_from, ; char* from + ptr @.TypeMapEntry.2666_to; char* to + }, ; 1433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2667_from, ; char* from + ptr @.TypeMapEntry.2668_to; char* to + }, ; 1434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2669_from, ; char* from + ptr @.TypeMapEntry.2668_to; char* to + }, ; 1435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2670_from, ; char* from + ptr @.TypeMapEntry.2671_to; char* to + }, ; 1436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2672_from, ; char* from + ptr @.TypeMapEntry.2671_to; char* to + }, ; 1437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2673_from, ; char* from + ptr @.TypeMapEntry.2674_to; char* to + }, ; 1438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2675_from, ; char* from + ptr @.TypeMapEntry.2674_to; char* to + }, ; 1439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2676_from, ; char* from + ptr @.TypeMapEntry.2677_to; char* to + }, ; 1440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2678_from, ; char* from + ptr @.TypeMapEntry.2679_to; char* to + }, ; 1441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2680_from, ; char* from + ptr @.TypeMapEntry.2681_to; char* to + }, ; 1442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2682_from, ; char* from + ptr @.TypeMapEntry.2681_to; char* to + }, ; 1443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2683_from, ; char* from + ptr @.TypeMapEntry.2684_to; char* to + }, ; 1444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2685_from, ; char* from + ptr @.TypeMapEntry.2684_to; char* to + }, ; 1445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2686_from, ; char* from + ptr @.TypeMapEntry.2687_to; char* to + }, ; 1446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2688_from, ; char* from + ptr @.TypeMapEntry.2687_to; char* to + }, ; 1447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2689_from, ; char* from + ptr @.TypeMapEntry.2690_to; char* to + }, ; 1448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2691_from, ; char* from + ptr @.TypeMapEntry.2690_to; char* to + }, ; 1449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2692_from, ; char* from + ptr @.TypeMapEntry.2693_to; char* to + }, ; 1450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2694_from, ; char* from + ptr @.TypeMapEntry.2695_to; char* to + }, ; 1451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2696_from, ; char* from + ptr @.TypeMapEntry.2695_to; char* to + }, ; 1452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2697_from, ; char* from + ptr @.TypeMapEntry.2698_to; char* to + }, ; 1453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2699_from, ; char* from + ptr @.TypeMapEntry.2698_to; char* to + }, ; 1454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2700_from, ; char* from + ptr @.TypeMapEntry.2701_to; char* to + }, ; 1455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2702_from, ; char* from + ptr @.TypeMapEntry.2703_to; char* to + }, ; 1456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2704_from, ; char* from + ptr @.TypeMapEntry.2703_to; char* to + }, ; 1457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2705_from, ; char* from + ptr @.TypeMapEntry.2706_to; char* to + }, ; 1458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2707_from, ; char* from + ptr @.TypeMapEntry.2706_to; char* to + }, ; 1459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2708_from, ; char* from + ptr @.TypeMapEntry.2709_to; char* to + }, ; 1460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2710_from, ; char* from + ptr @.TypeMapEntry.2709_to; char* to + }, ; 1461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2711_from, ; char* from + ptr @.TypeMapEntry.2712_to; char* to + }, ; 1462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2713_from, ; char* from + ptr @.TypeMapEntry.2714_to; char* to + }, ; 1463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2715_from, ; char* from + ptr @.TypeMapEntry.2714_to; char* to + }, ; 1464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2716_from, ; char* from + ptr @.TypeMapEntry.2717_to; char* to + }, ; 1465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2718_from, ; char* from + ptr @.TypeMapEntry.2717_to; char* to + }, ; 1466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2719_from, ; char* from + ptr @.TypeMapEntry.2720_to; char* to + }, ; 1467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2721_from, ; char* from + ptr @.TypeMapEntry.2720_to; char* to + }, ; 1468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2722_from, ; char* from + ptr @.TypeMapEntry.2723_to; char* to + }, ; 1469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2724_from, ; char* from + ptr @.TypeMapEntry.2725_to; char* to + }, ; 1470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2726_from, ; char* from + ptr @.TypeMapEntry.2727_to; char* to + }, ; 1471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2728_from, ; char* from + ptr @.TypeMapEntry.2729_to; char* to + }, ; 1472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2730_from, ; char* from + ptr @.TypeMapEntry.2731_to; char* to + }, ; 1473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2732_from, ; char* from + ptr @.TypeMapEntry.2733_to; char* to + }, ; 1474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2734_from, ; char* from + ptr @.TypeMapEntry.2735_to; char* to + }, ; 1475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2736_from, ; char* from + ptr @.TypeMapEntry.2737_to; char* to + }, ; 1476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2738_from, ; char* from + ptr @.TypeMapEntry.2739_to; char* to + }, ; 1477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2740_from, ; char* from + ptr @.TypeMapEntry.2741_to; char* to + }, ; 1478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2742_from, ; char* from + ptr @.TypeMapEntry.2743_to; char* to + }, ; 1479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2744_from, ; char* from + ptr @.TypeMapEntry.2745_to; char* to + }, ; 1480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2746_from, ; char* from + ptr @.TypeMapEntry.2747_to; char* to + }, ; 1481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2748_from, ; char* from + ptr @.TypeMapEntry.2749_to; char* to + }, ; 1482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2750_from, ; char* from + ptr @.TypeMapEntry.2751_to; char* to + }, ; 1483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2752_from, ; char* from + ptr @.TypeMapEntry.2753_to; char* to + }, ; 1484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2754_from, ; char* from + ptr @.TypeMapEntry.2755_to; char* to + }, ; 1485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2756_from, ; char* from + ptr @.TypeMapEntry.2757_to; char* to + }, ; 1486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2758_from, ; char* from + ptr @.TypeMapEntry.2759_to; char* to + }, ; 1487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2760_from, ; char* from + ptr @.TypeMapEntry.2761_to; char* to + }, ; 1488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2762_from, ; char* from + ptr @.TypeMapEntry.2763_to; char* to + }, ; 1489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2764_from, ; char* from + ptr @.TypeMapEntry.2765_to; char* to + }, ; 1490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2766_from, ; char* from + ptr @.TypeMapEntry.2767_to; char* to + }, ; 1491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2768_from, ; char* from + ptr @.TypeMapEntry.2769_to; char* to + }, ; 1492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2770_from, ; char* from + ptr @.TypeMapEntry.2771_to; char* to + }, ; 1493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2772_from, ; char* from + ptr @.TypeMapEntry.2773_to; char* to + }, ; 1494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2774_from, ; char* from + ptr @.TypeMapEntry.2775_to; char* to + }, ; 1495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2776_from, ; char* from + ptr @.TypeMapEntry.2777_to; char* to + }, ; 1496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2778_from, ; char* from + ptr @.TypeMapEntry.2779_to; char* to + }, ; 1497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2780_from, ; char* from + ptr @.TypeMapEntry.2781_to; char* to + }, ; 1498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2782_from, ; char* from + ptr @.TypeMapEntry.2783_to; char* to + }, ; 1499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2784_from, ; char* from + ptr @.TypeMapEntry.2785_to; char* to + }, ; 1500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2786_from, ; char* from + ptr @.TypeMapEntry.2787_to; char* to + }, ; 1501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2788_from, ; char* from + ptr @.TypeMapEntry.2789_to; char* to + }, ; 1502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2790_from, ; char* from + ptr @.TypeMapEntry.2791_to; char* to + }, ; 1503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2792_from, ; char* from + ptr @.TypeMapEntry.2793_to; char* to + }, ; 1504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2794_from, ; char* from + ptr @.TypeMapEntry.2795_to; char* to + }, ; 1505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2796_from, ; char* from + ptr @.TypeMapEntry.2797_to; char* to + }, ; 1506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2798_from, ; char* from + ptr @.TypeMapEntry.2799_to; char* to + }, ; 1507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2800_from, ; char* from + ptr @.TypeMapEntry.2801_to; char* to + }, ; 1508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2802_from, ; char* from + ptr @.TypeMapEntry.2799_to; char* to + }, ; 1509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2803_from, ; char* from + ptr @.TypeMapEntry.2804_to; char* to + }, ; 1510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2805_from, ; char* from + ptr @.TypeMapEntry.2806_to; char* to + }, ; 1511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2807_from, ; char* from + ptr @.TypeMapEntry.2808_to; char* to + }, ; 1512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2809_from, ; char* from + ptr @.TypeMapEntry.2808_to; char* to + }, ; 1513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2810_from, ; char* from + ptr @.TypeMapEntry.2811_to; char* to + }, ; 1514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2812_from, ; char* from + ptr @.TypeMapEntry.2813_to; char* to + }, ; 1515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2814_from, ; char* from + ptr @.TypeMapEntry.2815_to; char* to + }, ; 1516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2816_from, ; char* from + ptr @.TypeMapEntry.2817_to; char* to + }, ; 1517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2818_from, ; char* from + ptr @.TypeMapEntry.2817_to; char* to + }, ; 1518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2819_from, ; char* from + ptr @.TypeMapEntry.2820_to; char* to + }, ; 1519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2821_from, ; char* from + ptr @.TypeMapEntry.2822_to; char* to + }, ; 1520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2823_from, ; char* from + ptr @.TypeMapEntry.2824_to; char* to + }, ; 1521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2825_from, ; char* from + ptr @.TypeMapEntry.2826_to; char* to + }, ; 1522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2827_from, ; char* from + ptr @.TypeMapEntry.2828_to; char* to + }, ; 1523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2829_from, ; char* from + ptr @.TypeMapEntry.2830_to; char* to + }, ; 1524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2831_from, ; char* from + ptr @.TypeMapEntry.2832_to; char* to + }, ; 1525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2833_from, ; char* from + ptr @.TypeMapEntry.2832_to; char* to + }, ; 1526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2834_from, ; char* from + ptr @.TypeMapEntry.2835_to; char* to + }, ; 1527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2836_from, ; char* from + ptr @.TypeMapEntry.2830_to; char* to + }, ; 1528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2837_from, ; char* from + ptr @.TypeMapEntry.2838_to; char* to + }, ; 1529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2839_from, ; char* from + ptr @.TypeMapEntry.2840_to; char* to + }, ; 1530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2841_from, ; char* from + ptr @.TypeMapEntry.2838_to; char* to + }, ; 1531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2842_from, ; char* from + ptr @.TypeMapEntry.2843_to; char* to + }, ; 1532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2844_from, ; char* from + ptr @.TypeMapEntry.2845_to; char* to + }, ; 1533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2846_from, ; char* from + ptr @.TypeMapEntry.2847_to; char* to + }, ; 1534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2848_from, ; char* from + ptr @.TypeMapEntry.2845_to; char* to + }, ; 1535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2849_from, ; char* from + ptr @.TypeMapEntry.2850_to; char* to + }, ; 1536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2851_from, ; char* from + ptr @.TypeMapEntry.2852_to; char* to + }, ; 1537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2853_from, ; char* from + ptr @.TypeMapEntry.2854_to; char* to + }, ; 1538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2855_from, ; char* from + ptr @.TypeMapEntry.2856_to; char* to + }, ; 1539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2857_from, ; char* from + ptr @.TypeMapEntry.2858_to; char* to + }, ; 1540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2859_from, ; char* from + ptr @.TypeMapEntry.2858_to; char* to + }, ; 1541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2860_from, ; char* from + ptr @.TypeMapEntry.2861_to; char* to + }, ; 1542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2862_from, ; char* from + ptr @.TypeMapEntry.2861_to; char* to + }, ; 1543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2863_from, ; char* from + ptr @.TypeMapEntry.2864_to; char* to + }, ; 1544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2865_from, ; char* from + ptr @.TypeMapEntry.2866_to; char* to + }, ; 1545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2867_from, ; char* from + ptr @.TypeMapEntry.2868_to; char* to + }, ; 1546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2869_from, ; char* from + ptr @.TypeMapEntry.2870_to; char* to + }, ; 1547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2871_from, ; char* from + ptr @.TypeMapEntry.2870_to; char* to + }, ; 1548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2872_from, ; char* from + ptr @.TypeMapEntry.2873_to; char* to + }, ; 1549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2874_from, ; char* from + ptr @.TypeMapEntry.2873_to; char* to + }, ; 1550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2875_from, ; char* from + ptr @.TypeMapEntry.2876_to; char* to + }, ; 1551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2877_from, ; char* from + ptr @.TypeMapEntry.2878_to; char* to + }, ; 1552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2879_from, ; char* from + ptr @.TypeMapEntry.2880_to; char* to + }, ; 1553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2881_from, ; char* from + ptr @.TypeMapEntry.2882_to; char* to + }, ; 1554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2883_from, ; char* from + ptr @.TypeMapEntry.2884_to; char* to + }, ; 1555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2885_from, ; char* from + ptr @.TypeMapEntry.2886_to; char* to + }, ; 1556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2887_from, ; char* from + ptr @.TypeMapEntry.2888_to; char* to + }, ; 1557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2889_from, ; char* from + ptr @.TypeMapEntry.2888_to; char* to + }, ; 1558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2890_from, ; char* from + ptr @.TypeMapEntry.2891_to; char* to + }, ; 1559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2892_from, ; char* from + ptr @.TypeMapEntry.2891_to; char* to + }, ; 1560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2893_from, ; char* from + ptr @.TypeMapEntry.2894_to; char* to + }, ; 1561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2895_from, ; char* from + ptr @.TypeMapEntry.2894_to; char* to + }, ; 1562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2896_from, ; char* from + ptr @.TypeMapEntry.2897_to; char* to + }, ; 1563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2898_from, ; char* from + ptr @.TypeMapEntry.2899_to; char* to + }, ; 1564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2900_from, ; char* from + ptr @.TypeMapEntry.2901_to; char* to + }, ; 1565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2902_from, ; char* from + ptr @.TypeMapEntry.2903_to; char* to + }, ; 1566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2904_from, ; char* from + ptr @.TypeMapEntry.2905_to; char* to + }, ; 1567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2906_from, ; char* from + ptr @.TypeMapEntry.2905_to; char* to + }, ; 1568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2907_from, ; char* from + ptr @.TypeMapEntry.2908_to; char* to + }, ; 1569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2909_from, ; char* from + ptr @.TypeMapEntry.2910_to; char* to + }, ; 1570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2911_from, ; char* from + ptr @.TypeMapEntry.2912_to; char* to + }, ; 1571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2913_from, ; char* from + ptr @.TypeMapEntry.2914_to; char* to + }, ; 1572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2915_from, ; char* from + ptr @.TypeMapEntry.2916_to; char* to + }, ; 1573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2917_from, ; char* from + ptr @.TypeMapEntry.2918_to; char* to + }, ; 1574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2919_from, ; char* from + ptr @.TypeMapEntry.2920_to; char* to + }, ; 1575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2921_from, ; char* from + ptr @.TypeMapEntry.2922_to; char* to + }, ; 1576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2923_from, ; char* from + ptr @.TypeMapEntry.2924_to; char* to + }, ; 1577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2925_from, ; char* from + ptr @.TypeMapEntry.2926_to; char* to + }, ; 1578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2927_from, ; char* from + ptr @.TypeMapEntry.2928_to; char* to + }, ; 1579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2929_from, ; char* from + ptr @.TypeMapEntry.2930_to; char* to + }, ; 1580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2931_from, ; char* from + ptr @.TypeMapEntry.2932_to; char* to + }, ; 1581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2933_from, ; char* from + ptr @.TypeMapEntry.2934_to; char* to + }, ; 1582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2935_from, ; char* from + ptr @.TypeMapEntry.2936_to; char* to + }, ; 1583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2937_from, ; char* from + ptr @.TypeMapEntry.2938_to; char* to + }, ; 1584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2939_from, ; char* from + ptr @.TypeMapEntry.2940_to; char* to + }, ; 1585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2941_from, ; char* from + ptr @.TypeMapEntry.2942_to; char* to + }, ; 1586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2943_from, ; char* from + ptr @.TypeMapEntry.2944_to; char* to + }, ; 1587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2945_from, ; char* from + ptr @.TypeMapEntry.2946_to; char* to + }, ; 1588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2947_from, ; char* from + ptr @.TypeMapEntry.2948_to; char* to + }, ; 1589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2949_from, ; char* from + ptr @.TypeMapEntry.2950_to; char* to + }, ; 1590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2951_from, ; char* from + ptr @.TypeMapEntry.2952_to; char* to + }, ; 1591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2953_from, ; char* from + ptr @.TypeMapEntry.2954_to; char* to + }, ; 1592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2955_from, ; char* from + ptr @.TypeMapEntry.2956_to; char* to + }, ; 1593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2957_from, ; char* from + ptr @.TypeMapEntry.2958_to; char* to + }, ; 1594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2959_from, ; char* from + ptr @.TypeMapEntry.2960_to; char* to + }, ; 1595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2961_from, ; char* from + ptr @.TypeMapEntry.2962_to; char* to + }, ; 1596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2963_from, ; char* from + ptr @.TypeMapEntry.2964_to; char* to + }, ; 1597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2965_from, ; char* from + ptr @.TypeMapEntry.2966_to; char* to + }, ; 1598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2967_from, ; char* from + ptr @.TypeMapEntry.2968_to; char* to + }, ; 1599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2969_from, ; char* from + ptr @.TypeMapEntry.2970_to; char* to + }, ; 1600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2971_from, ; char* from + ptr @.TypeMapEntry.2972_to; char* to + }, ; 1601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2973_from, ; char* from + ptr @.TypeMapEntry.2974_to; char* to + }, ; 1602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2975_from, ; char* from + ptr @.TypeMapEntry.2976_to; char* to + }, ; 1603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2977_from, ; char* from + ptr @.TypeMapEntry.2978_to; char* to + }, ; 1604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2979_from, ; char* from + ptr @.TypeMapEntry.2980_to; char* to + }, ; 1605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2981_from, ; char* from + ptr @.TypeMapEntry.2982_to; char* to + }, ; 1606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2983_from, ; char* from + ptr @.TypeMapEntry.2984_to; char* to + }, ; 1607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2985_from, ; char* from + ptr @.TypeMapEntry.2986_to; char* to + }, ; 1608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2987_from, ; char* from + ptr @.TypeMapEntry.2988_to; char* to + }, ; 1609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2989_from, ; char* from + ptr @.TypeMapEntry.2990_to; char* to + }, ; 1610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2991_from, ; char* from + ptr @.TypeMapEntry.2992_to; char* to + }, ; 1611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2993_from, ; char* from + ptr @.TypeMapEntry.2994_to; char* to + }, ; 1612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2995_from, ; char* from + ptr @.TypeMapEntry.2996_to; char* to + }, ; 1613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2997_from, ; char* from + ptr @.TypeMapEntry.2998_to; char* to + }, ; 1614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2999_from, ; char* from + ptr @.TypeMapEntry.3000_to; char* to + }, ; 1615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3001_from, ; char* from + ptr @.TypeMapEntry.3002_to; char* to + }, ; 1616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3003_from, ; char* from + ptr @.TypeMapEntry.3004_to; char* to + }, ; 1617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3005_from, ; char* from + ptr @.TypeMapEntry.3006_to; char* to + }, ; 1618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3007_from, ; char* from + ptr @.TypeMapEntry.3008_to; char* to + }, ; 1619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3009_from, ; char* from + ptr @.TypeMapEntry.3010_to; char* to + }, ; 1620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3011_from, ; char* from + ptr @.TypeMapEntry.3012_to; char* to + }, ; 1621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3013_from, ; char* from + ptr @.TypeMapEntry.3014_to; char* to + }, ; 1622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3015_from, ; char* from + ptr @.TypeMapEntry.3016_to; char* to + }, ; 1623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3017_from, ; char* from + ptr @.TypeMapEntry.3018_to; char* to + }, ; 1624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3019_from, ; char* from + ptr @.TypeMapEntry.3020_to; char* to + }, ; 1625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3021_from, ; char* from + ptr @.TypeMapEntry.3022_to; char* to + }, ; 1626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3023_from, ; char* from + ptr @.TypeMapEntry.3024_to; char* to + }, ; 1627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3025_from, ; char* from + ptr @.TypeMapEntry.3026_to; char* to + }, ; 1628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3027_from, ; char* from + ptr @.TypeMapEntry.3028_to; char* to + }, ; 1629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3029_from, ; char* from + ptr @.TypeMapEntry.3030_to; char* to + }, ; 1630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3031_from, ; char* from + ptr @.TypeMapEntry.3032_to; char* to + }, ; 1631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3033_from, ; char* from + ptr @.TypeMapEntry.3034_to; char* to + }, ; 1632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3035_from, ; char* from + ptr @.TypeMapEntry.3036_to; char* to + }, ; 1633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3037_from, ; char* from + ptr @.TypeMapEntry.3038_to; char* to + }, ; 1634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3039_from, ; char* from + ptr @.TypeMapEntry.3040_to; char* to + }, ; 1635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3041_from, ; char* from + ptr @.TypeMapEntry.3042_to; char* to + }, ; 1636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3043_from, ; char* from + ptr @.TypeMapEntry.3044_to; char* to + }, ; 1637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3045_from, ; char* from + ptr @.TypeMapEntry.3046_to; char* to + }, ; 1638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3047_from, ; char* from + ptr @.TypeMapEntry.3048_to; char* to + }, ; 1639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3049_from, ; char* from + ptr @.TypeMapEntry.3048_to; char* to + }, ; 1640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3050_from, ; char* from + ptr @.TypeMapEntry.3051_to; char* to + }, ; 1641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3052_from, ; char* from + ptr @.TypeMapEntry.3053_to; char* to + }, ; 1642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3054_from, ; char* from + ptr @.TypeMapEntry.3055_to; char* to + }, ; 1643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3056_from, ; char* from + ptr @.TypeMapEntry.3057_to; char* to + }, ; 1644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3058_from, ; char* from + ptr @.TypeMapEntry.3059_to; char* to + }, ; 1645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3060_from, ; char* from + ptr @.TypeMapEntry.3061_to; char* to + }, ; 1646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3062_from, ; char* from + ptr @.TypeMapEntry.3063_to; char* to + }, ; 1647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3064_from, ; char* from + ptr @.TypeMapEntry.3065_to; char* to + }, ; 1648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3066_from, ; char* from + ptr @.TypeMapEntry.3067_to; char* to + }, ; 1649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3068_from, ; char* from + ptr @.TypeMapEntry.3069_to; char* to + }, ; 1650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3070_from, ; char* from + ptr @.TypeMapEntry.3071_to; char* to + }, ; 1651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3072_from, ; char* from + ptr @.TypeMapEntry.3071_to; char* to + }, ; 1652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3073_from, ; char* from + ptr @.TypeMapEntry.3074_to; char* to + }, ; 1653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3075_from, ; char* from + ptr @.TypeMapEntry.3076_to; char* to + }, ; 1654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3077_from, ; char* from + ptr @.TypeMapEntry.3078_to; char* to + }, ; 1655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3079_from, ; char* from + ptr @.TypeMapEntry.3080_to; char* to + }, ; 1656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3081_from, ; char* from + ptr @.TypeMapEntry.3082_to; char* to + }, ; 1657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3083_from, ; char* from + ptr @.TypeMapEntry.3084_to; char* to + }, ; 1658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3085_from, ; char* from + ptr @.TypeMapEntry.3086_to; char* to + }, ; 1659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3087_from, ; char* from + ptr @.TypeMapEntry.3088_to; char* to + }, ; 1660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3089_from, ; char* from + ptr @.TypeMapEntry.3090_to; char* to + }, ; 1661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3091_from, ; char* from + ptr @.TypeMapEntry.3092_to; char* to + }, ; 1662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3093_from, ; char* from + ptr @.TypeMapEntry.3094_to; char* to + }, ; 1663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3095_from, ; char* from + ptr @.TypeMapEntry.3096_to; char* to + }, ; 1664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3097_from, ; char* from + ptr @.TypeMapEntry.3098_to; char* to + }, ; 1665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3099_from, ; char* from + ptr @.TypeMapEntry.3100_to; char* to + }, ; 1666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3101_from, ; char* from + ptr @.TypeMapEntry.3102_to; char* to + }, ; 1667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3103_from, ; char* from + ptr @.TypeMapEntry.3104_to; char* to + }, ; 1668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3105_from, ; char* from + ptr @.TypeMapEntry.3106_to; char* to + }, ; 1669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3107_from, ; char* from + ptr @.TypeMapEntry.3108_to; char* to + }, ; 1670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3109_from, ; char* from + ptr @.TypeMapEntry.3110_to; char* to + }, ; 1671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3111_from, ; char* from + ptr @.TypeMapEntry.3112_to; char* to + }, ; 1672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3113_from, ; char* from + ptr @.TypeMapEntry.3114_to; char* to + }, ; 1673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3115_from, ; char* from + ptr @.TypeMapEntry.3114_to; char* to + }, ; 1674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3116_from, ; char* from + ptr @.TypeMapEntry.3117_to; char* to + }, ; 1675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3118_from, ; char* from + ptr @.TypeMapEntry.3119_to; char* to + }, ; 1676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3120_from, ; char* from + ptr @.TypeMapEntry.3121_to; char* to + }, ; 1677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3122_from, ; char* from + ptr @.TypeMapEntry.3121_to; char* to + }, ; 1678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3123_from, ; char* from + ptr @.TypeMapEntry.3124_to; char* to + }, ; 1679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3125_from, ; char* from + ptr @.TypeMapEntry.3126_to; char* to + }, ; 1680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3127_from, ; char* from + ptr @.TypeMapEntry.3128_to; char* to + }, ; 1681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3129_from, ; char* from + ptr @.TypeMapEntry.3130_to; char* to + }, ; 1682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3131_from, ; char* from + ptr @.TypeMapEntry.3132_to; char* to + }, ; 1683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3133_from, ; char* from + ptr @.TypeMapEntry.3134_to; char* to + }, ; 1684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3135_from, ; char* from + ptr @.TypeMapEntry.3136_to; char* to + }, ; 1685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3137_from, ; char* from + ptr @.TypeMapEntry.3138_to; char* to + }, ; 1686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3139_from, ; char* from + ptr @.TypeMapEntry.3140_to; char* to + }, ; 1687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3141_from, ; char* from + ptr @.TypeMapEntry.3142_to; char* to + }, ; 1688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3143_from, ; char* from + ptr @.TypeMapEntry.3144_to; char* to + }, ; 1689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3145_from, ; char* from + ptr @.TypeMapEntry.3146_to; char* to + }, ; 1690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3147_from, ; char* from + ptr @.TypeMapEntry.3148_to; char* to + }, ; 1691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3149_from, ; char* from + ptr @.TypeMapEntry.3150_to; char* to + }, ; 1692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3151_from, ; char* from + ptr @.TypeMapEntry.3152_to; char* to + }, ; 1693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3153_from, ; char* from + ptr @.TypeMapEntry.3154_to; char* to + }, ; 1694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3155_from, ; char* from + ptr @.TypeMapEntry.3156_to; char* to + }, ; 1695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3157_from, ; char* from + ptr @.TypeMapEntry.3158_to; char* to + }, ; 1696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3159_from, ; char* from + ptr @.TypeMapEntry.3160_to; char* to + }, ; 1697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3161_from, ; char* from + ptr @.TypeMapEntry.3162_to; char* to + }, ; 1698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3163_from, ; char* from + ptr @.TypeMapEntry.3164_to; char* to + }, ; 1699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3165_from, ; char* from + ptr @.TypeMapEntry.3166_to; char* to + }, ; 1700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3167_from, ; char* from + ptr @.TypeMapEntry.3168_to; char* to + }, ; 1701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3169_from, ; char* from + ptr @.TypeMapEntry.3170_to; char* to + }, ; 1702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3171_from, ; char* from + ptr @.TypeMapEntry.3172_to; char* to + }, ; 1703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3173_from, ; char* from + ptr @.TypeMapEntry.3174_to; char* to + }, ; 1704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3175_from, ; char* from + ptr @.TypeMapEntry.3176_to; char* to + }, ; 1705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3177_from, ; char* from + ptr @.TypeMapEntry.3176_to; char* to + }, ; 1706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3178_from, ; char* from + ptr @.TypeMapEntry.3179_to; char* to + }, ; 1707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3180_from, ; char* from + ptr @.TypeMapEntry.3181_to; char* to + }, ; 1708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3182_from, ; char* from + ptr @.TypeMapEntry.3183_to; char* to + }, ; 1709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3184_from, ; char* from + ptr @.TypeMapEntry.3185_to; char* to + }, ; 1710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3186_from, ; char* from + ptr @.TypeMapEntry.3187_to; char* to + }, ; 1711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3188_from, ; char* from + ptr @.TypeMapEntry.3189_to; char* to + }, ; 1712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3190_from, ; char* from + ptr @.TypeMapEntry.3191_to; char* to + }, ; 1713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3192_from, ; char* from + ptr @.TypeMapEntry.3193_to; char* to + }, ; 1714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3194_from, ; char* from + ptr @.TypeMapEntry.3195_to; char* to + }, ; 1715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3196_from, ; char* from + ptr @.TypeMapEntry.3197_to; char* to + }, ; 1716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3198_from, ; char* from + ptr @.TypeMapEntry.3199_to; char* to + }, ; 1717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3200_from, ; char* from + ptr @.TypeMapEntry.3201_to; char* to + }, ; 1718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3202_from, ; char* from + ptr @.TypeMapEntry.3203_to; char* to + }, ; 1719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3204_from, ; char* from + ptr @.TypeMapEntry.3205_to; char* to + }, ; 1720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3206_from, ; char* from + ptr @.TypeMapEntry.3207_to; char* to + }, ; 1721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3208_from, ; char* from + ptr @.TypeMapEntry.3209_to; char* to + }, ; 1722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3210_from, ; char* from + ptr @.TypeMapEntry.3211_to; char* to + }, ; 1723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3212_from, ; char* from + ptr @.TypeMapEntry.3213_to; char* to + }, ; 1724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3214_from, ; char* from + ptr @.TypeMapEntry.3215_to; char* to + }, ; 1725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3216_from, ; char* from + ptr @.TypeMapEntry.3217_to; char* to + }, ; 1726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3218_from, ; char* from + ptr @.TypeMapEntry.3219_to; char* to + }, ; 1727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3220_from, ; char* from + ptr @.TypeMapEntry.3221_to; char* to + }, ; 1728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3222_from, ; char* from + ptr @.TypeMapEntry.3223_to; char* to + }, ; 1729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3224_from, ; char* from + ptr @.TypeMapEntry.3225_to; char* to + }, ; 1730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3226_from, ; char* from + ptr @.TypeMapEntry.3227_to; char* to + }, ; 1731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3228_from, ; char* from + ptr @.TypeMapEntry.3229_to; char* to + }, ; 1732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3230_from, ; char* from + ptr @.TypeMapEntry.3231_to; char* to + }, ; 1733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3232_from, ; char* from + ptr @.TypeMapEntry.3233_to; char* to + }, ; 1734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3234_from, ; char* from + ptr @.TypeMapEntry.3235_to; char* to + }, ; 1735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3236_from, ; char* from + ptr @.TypeMapEntry.3237_to; char* to + }, ; 1736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3238_from, ; char* from + ptr @.TypeMapEntry.3239_to; char* to + }, ; 1737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3240_from, ; char* from + ptr @.TypeMapEntry.3241_to; char* to + }, ; 1738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3242_from, ; char* from + ptr @.TypeMapEntry.3243_to; char* to + }, ; 1739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3244_from, ; char* from + ptr @.TypeMapEntry.3245_to; char* to + }, ; 1740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3246_from, ; char* from + ptr @.TypeMapEntry.3247_to; char* to + }, ; 1741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3248_from, ; char* from + ptr @.TypeMapEntry.3249_to; char* to + }, ; 1742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3250_from, ; char* from + ptr @.TypeMapEntry.3251_to; char* to + }, ; 1743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3252_from, ; char* from + ptr @.TypeMapEntry.3253_to; char* to + }, ; 1744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3254_from, ; char* from + ptr @.TypeMapEntry.3255_to; char* to + }, ; 1745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3256_from, ; char* from + ptr @.TypeMapEntry.3257_to; char* to + }, ; 1746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3258_from, ; char* from + ptr @.TypeMapEntry.3259_to; char* to + }, ; 1747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3260_from, ; char* from + ptr @.TypeMapEntry.3261_to; char* to + }, ; 1748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3262_from, ; char* from + ptr @.TypeMapEntry.3263_to; char* to + }, ; 1749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3264_from, ; char* from + ptr @.TypeMapEntry.3265_to; char* to + }, ; 1750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3266_from, ; char* from + ptr @.TypeMapEntry.3267_to; char* to + }, ; 1751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3268_from, ; char* from + ptr @.TypeMapEntry.3269_to; char* to + }, ; 1752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3270_from, ; char* from + ptr @.TypeMapEntry.3269_to; char* to + }, ; 1753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3271_from, ; char* from + ptr @.TypeMapEntry.3272_to; char* to + }, ; 1754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3273_from, ; char* from + ptr @.TypeMapEntry.3274_to; char* to + }, ; 1755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3275_from, ; char* from + ptr @.TypeMapEntry.3276_to; char* to + }, ; 1756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3277_from, ; char* from + ptr @.TypeMapEntry.3278_to; char* to + }, ; 1757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3279_from, ; char* from + ptr @.TypeMapEntry.3278_to; char* to + }, ; 1758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3280_from, ; char* from + ptr @.TypeMapEntry.3281_to; char* to + }, ; 1759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3282_from, ; char* from + ptr @.TypeMapEntry.3283_to; char* to + }, ; 1760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3284_from, ; char* from + ptr @.TypeMapEntry.3285_to; char* to + }, ; 1761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3286_from, ; char* from + ptr @.TypeMapEntry.3287_to; char* to + }, ; 1762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3288_from, ; char* from + ptr @.TypeMapEntry.3289_to; char* to + }, ; 1763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3290_from, ; char* from + ptr @.TypeMapEntry.3291_to; char* to + }, ; 1764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3292_from, ; char* from + ptr @.TypeMapEntry.3293_to; char* to + }, ; 1765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3294_from, ; char* from + ptr @.TypeMapEntry.3295_to; char* to + }, ; 1766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3296_from, ; char* from + ptr @.TypeMapEntry.3297_to; char* to + }, ; 1767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3298_from, ; char* from + ptr @.TypeMapEntry.3299_to; char* to + }, ; 1768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3300_from, ; char* from + ptr @.TypeMapEntry.3301_to; char* to + }, ; 1769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3302_from, ; char* from + ptr @.TypeMapEntry.3303_to; char* to + }, ; 1770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3304_from, ; char* from + ptr @.TypeMapEntry.3305_to; char* to + }, ; 1771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3306_from, ; char* from + ptr @.TypeMapEntry.3307_to; char* to + }, ; 1772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3308_from, ; char* from + ptr @.TypeMapEntry.3309_to; char* to + }, ; 1773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3310_from, ; char* from + ptr @.TypeMapEntry.3311_to; char* to + }, ; 1774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3312_from, ; char* from + ptr @.TypeMapEntry.3313_to; char* to + }, ; 1775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3314_from, ; char* from + ptr @.TypeMapEntry.3315_to; char* to + }, ; 1776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3316_from, ; char* from + ptr @.TypeMapEntry.3317_to; char* to + }, ; 1777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3318_from, ; char* from + ptr @.TypeMapEntry.3319_to; char* to + }, ; 1778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3320_from, ; char* from + ptr @.TypeMapEntry.3321_to; char* to + }, ; 1779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3322_from, ; char* from + ptr @.TypeMapEntry.3323_to; char* to + }, ; 1780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3324_from, ; char* from + ptr @.TypeMapEntry.3325_to; char* to + }, ; 1781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3326_from, ; char* from + ptr @.TypeMapEntry.3327_to; char* to + }, ; 1782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3328_from, ; char* from + ptr @.TypeMapEntry.3329_to; char* to + }, ; 1783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3330_from, ; char* from + ptr @.TypeMapEntry.3331_to; char* to + }, ; 1784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3332_from, ; char* from + ptr @.TypeMapEntry.3333_to; char* to + }, ; 1785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3334_from, ; char* from + ptr @.TypeMapEntry.3335_to; char* to + }, ; 1786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3336_from, ; char* from + ptr @.TypeMapEntry.3337_to; char* to + }, ; 1787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3338_from, ; char* from + ptr @.TypeMapEntry.3339_to; char* to + }, ; 1788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3340_from, ; char* from + ptr @.TypeMapEntry.3341_to; char* to + }, ; 1789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3342_from, ; char* from + ptr @.TypeMapEntry.3343_to; char* to + }, ; 1790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3344_from, ; char* from + ptr @.TypeMapEntry.3345_to; char* to + }, ; 1791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3346_from, ; char* from + ptr @.TypeMapEntry.3347_to; char* to + }, ; 1792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3348_from, ; char* from + ptr @.TypeMapEntry.3349_to; char* to + }, ; 1793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3350_from, ; char* from + ptr @.TypeMapEntry.3351_to; char* to + }, ; 1794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3352_from, ; char* from + ptr @.TypeMapEntry.3353_to; char* to + }, ; 1795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3354_from, ; char* from + ptr @.TypeMapEntry.3353_to; char* to + }, ; 1796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3355_from, ; char* from + ptr @.TypeMapEntry.3356_to; char* to + }, ; 1797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3357_from, ; char* from + ptr @.TypeMapEntry.3358_to; char* to + }, ; 1798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3359_from, ; char* from + ptr @.TypeMapEntry.3360_to; char* to + }, ; 1799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3361_from, ; char* from + ptr @.TypeMapEntry.3360_to; char* to + }, ; 1800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3362_from, ; char* from + ptr @.TypeMapEntry.3363_to; char* to + }, ; 1801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3364_from, ; char* from + ptr @.TypeMapEntry.3365_to; char* to + }, ; 1802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3366_from, ; char* from + ptr @.TypeMapEntry.3367_to; char* to + }, ; 1803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3368_from, ; char* from + ptr @.TypeMapEntry.3369_to; char* to + }, ; 1804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3370_from, ; char* from + ptr @.TypeMapEntry.3371_to; char* to + }, ; 1805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3372_from, ; char* from + ptr @.TypeMapEntry.3373_to; char* to + }, ; 1806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3374_from, ; char* from + ptr @.TypeMapEntry.3375_to; char* to + }, ; 1807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3376_from, ; char* from + ptr @.TypeMapEntry.3377_to; char* to + }, ; 1808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3378_from, ; char* from + ptr @.TypeMapEntry.3379_to; char* to + }, ; 1809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3380_from, ; char* from + ptr @.TypeMapEntry.3381_to; char* to + }, ; 1810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3382_from, ; char* from + ptr @.TypeMapEntry.3383_to; char* to + }, ; 1811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3384_from, ; char* from + ptr @.TypeMapEntry.3385_to; char* to + }, ; 1812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3386_from, ; char* from + ptr @.TypeMapEntry.3385_to; char* to + }, ; 1813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3387_from, ; char* from + ptr @.TypeMapEntry.3388_to; char* to + }, ; 1814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3389_from, ; char* from + ptr @.TypeMapEntry.3390_to; char* to + }, ; 1815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3391_from, ; char* from + ptr @.TypeMapEntry.3392_to; char* to + }, ; 1816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3393_from, ; char* from + ptr @.TypeMapEntry.3394_to; char* to + }, ; 1817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3395_from, ; char* from + ptr @.TypeMapEntry.3394_to; char* to + }, ; 1818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3396_from, ; char* from + ptr @.TypeMapEntry.3397_to; char* to + }, ; 1819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3398_from, ; char* from + ptr @.TypeMapEntry.3397_to; char* to + }, ; 1820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3399_from, ; char* from + ptr @.TypeMapEntry.3400_to; char* to + }, ; 1821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3401_from, ; char* from + ptr @.TypeMapEntry.3400_to; char* to + }, ; 1822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3402_from, ; char* from + ptr @.TypeMapEntry.3403_to; char* to + }, ; 1823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3404_from, ; char* from + ptr @.TypeMapEntry.3405_to; char* to + }, ; 1824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3406_from, ; char* from + ptr @.TypeMapEntry.3407_to; char* to + }, ; 1825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3408_from, ; char* from + ptr @.TypeMapEntry.3409_to; char* to + }, ; 1826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3410_from, ; char* from + ptr @.TypeMapEntry.3411_to; char* to + }, ; 1827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3412_from, ; char* from + ptr @.TypeMapEntry.3413_to; char* to + }, ; 1828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3414_from, ; char* from + ptr @.TypeMapEntry.3415_to; char* to + }, ; 1829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3416_from, ; char* from + ptr @.TypeMapEntry.3417_to; char* to + }, ; 1830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3418_from, ; char* from + ptr @.TypeMapEntry.3419_to; char* to + }, ; 1831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3420_from, ; char* from + ptr @.TypeMapEntry.3421_to; char* to + }, ; 1832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3422_from, ; char* from + ptr @.TypeMapEntry.3423_to; char* to + }, ; 1833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3424_from, ; char* from + ptr @.TypeMapEntry.3425_to; char* to + }, ; 1834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3426_from, ; char* from + ptr @.TypeMapEntry.3427_to; char* to + }, ; 1835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3428_from, ; char* from + ptr @.TypeMapEntry.3429_to; char* to + }, ; 1836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3430_from, ; char* from + ptr @.TypeMapEntry.3429_to; char* to + }, ; 1837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3431_from, ; char* from + ptr @.TypeMapEntry.3432_to; char* to + }, ; 1838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3433_from, ; char* from + ptr @.TypeMapEntry.3434_to; char* to + }, ; 1839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3435_from, ; char* from + ptr @.TypeMapEntry.3436_to; char* to + }, ; 1840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3437_from, ; char* from + ptr @.TypeMapEntry.3438_to; char* to + }, ; 1841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3439_from, ; char* from + ptr @.TypeMapEntry.3440_to; char* to + }, ; 1842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3441_from, ; char* from + ptr @.TypeMapEntry.3440_to; char* to + }, ; 1843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3442_from, ; char* from + ptr @.TypeMapEntry.3443_to; char* to + }, ; 1844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3444_from, ; char* from + ptr @.TypeMapEntry.3445_to; char* to + }, ; 1845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3446_from, ; char* from + ptr @.TypeMapEntry.3447_to; char* to + }, ; 1846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3448_from, ; char* from + ptr @.TypeMapEntry.3449_to; char* to + }, ; 1847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3450_from, ; char* from + ptr @.TypeMapEntry.3451_to; char* to + }, ; 1848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3452_from, ; char* from + ptr @.TypeMapEntry.3451_to; char* to + }, ; 1849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3453_from, ; char* from + ptr @.TypeMapEntry.3454_to; char* to + }, ; 1850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3455_from, ; char* from + ptr @.TypeMapEntry.3456_to; char* to + }, ; 1851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3457_from, ; char* from + ptr @.TypeMapEntry.3458_to; char* to + }, ; 1852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3459_from, ; char* from + ptr @.TypeMapEntry.3460_to; char* to + }, ; 1853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3461_from, ; char* from + ptr @.TypeMapEntry.3462_to; char* to + }, ; 1854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3463_from, ; char* from + ptr @.TypeMapEntry.3464_to; char* to + }, ; 1855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3465_from, ; char* from + ptr @.TypeMapEntry.3466_to; char* to + }, ; 1856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3467_from, ; char* from + ptr @.TypeMapEntry.3468_to; char* to + }, ; 1857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3469_from, ; char* from + ptr @.TypeMapEntry.3468_to; char* to + }, ; 1858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3470_from, ; char* from + ptr @.TypeMapEntry.3471_to; char* to + }, ; 1859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3472_from, ; char* from + ptr @.TypeMapEntry.3473_to; char* to + }, ; 1860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3474_from, ; char* from + ptr @.TypeMapEntry.3475_to; char* to + }, ; 1861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3476_from, ; char* from + ptr @.TypeMapEntry.3477_to; char* to + }, ; 1862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3478_from, ; char* from + ptr @.TypeMapEntry.3479_to; char* to + }, ; 1863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3480_from, ; char* from + ptr @.TypeMapEntry.3481_to; char* to + }, ; 1864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3482_from, ; char* from + ptr @.TypeMapEntry.3483_to; char* to + }, ; 1865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3484_from, ; char* from + ptr @.TypeMapEntry.3485_to; char* to + }, ; 1866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3486_from, ; char* from + ptr @.TypeMapEntry.3487_to; char* to + }, ; 1867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3488_from, ; char* from + ptr @.TypeMapEntry.3489_to; char* to + }, ; 1868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3490_from, ; char* from + ptr @.TypeMapEntry.3491_to; char* to + }, ; 1869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3492_from, ; char* from + ptr @.TypeMapEntry.3493_to; char* to + }, ; 1870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3494_from, ; char* from + ptr @.TypeMapEntry.3495_to; char* to + }, ; 1871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3496_from, ; char* from + ptr @.TypeMapEntry.3497_to; char* to + }, ; 1872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3498_from, ; char* from + ptr @.TypeMapEntry.3499_to; char* to + }, ; 1873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3500_from, ; char* from + ptr @.TypeMapEntry.3501_to; char* to + }, ; 1874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3502_from, ; char* from + ptr @.TypeMapEntry.3503_to; char* to + }, ; 1875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3504_from, ; char* from + ptr @.TypeMapEntry.3505_to; char* to + }, ; 1876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3506_from, ; char* from + ptr @.TypeMapEntry.3507_to; char* to + }, ; 1877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3508_from, ; char* from + ptr @.TypeMapEntry.3509_to; char* to + }, ; 1878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3510_from, ; char* from + ptr @.TypeMapEntry.3511_to; char* to + }, ; 1879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3512_from, ; char* from + ptr @.TypeMapEntry.3513_to; char* to + }, ; 1880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3514_from, ; char* from + ptr @.TypeMapEntry.3515_to; char* to + }, ; 1881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3516_from, ; char* from + ptr @.TypeMapEntry.3517_to; char* to + }, ; 1882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3518_from, ; char* from + ptr @.TypeMapEntry.3519_to; char* to + }, ; 1883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3520_from, ; char* from + ptr @.TypeMapEntry.3521_to; char* to + }, ; 1884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3522_from, ; char* from + ptr @.TypeMapEntry.3521_to; char* to + }, ; 1885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3523_from, ; char* from + ptr @.TypeMapEntry.3524_to; char* to + }, ; 1886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3525_from, ; char* from + ptr @.TypeMapEntry.3524_to; char* to + }, ; 1887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3526_from, ; char* from + ptr @.TypeMapEntry.3527_to; char* to + }, ; 1888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3528_from, ; char* from + ptr @.TypeMapEntry.3527_to; char* to + }, ; 1889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3529_from, ; char* from + ptr @.TypeMapEntry.3530_to; char* to + }, ; 1890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3531_from, ; char* from + ptr @.TypeMapEntry.3530_to; char* to + }, ; 1891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3532_from, ; char* from + ptr @.TypeMapEntry.3533_to; char* to + }, ; 1892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3534_from, ; char* from + ptr @.TypeMapEntry.3533_to; char* to + }, ; 1893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3535_from, ; char* from + ptr @.TypeMapEntry.3536_to; char* to + }, ; 1894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3537_from, ; char* from + ptr @.TypeMapEntry.3538_to; char* to + }, ; 1895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3539_from, ; char* from + ptr @.TypeMapEntry.3540_to; char* to + }, ; 1896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3541_from, ; char* from + ptr @.TypeMapEntry.3542_to; char* to + }, ; 1897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3543_from, ; char* from + ptr @.TypeMapEntry.3544_to; char* to + }, ; 1898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3545_from, ; char* from + ptr @.TypeMapEntry.3546_to; char* to + }, ; 1899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3547_from, ; char* from + ptr @.TypeMapEntry.3548_to; char* to + }, ; 1900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3549_from, ; char* from + ptr @.TypeMapEntry.3548_to; char* to + }, ; 1901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3550_from, ; char* from + ptr @.TypeMapEntry.3551_to; char* to + }, ; 1902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3552_from, ; char* from + ptr @.TypeMapEntry.3553_to; char* to + }, ; 1903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3554_from, ; char* from + ptr @.TypeMapEntry.3555_to; char* to + }, ; 1904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3556_from, ; char* from + ptr @.TypeMapEntry.3557_to; char* to + }, ; 1905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3558_from, ; char* from + ptr @.TypeMapEntry.3559_to; char* to + }, ; 1906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3560_from, ; char* from + ptr @.TypeMapEntry.3561_to; char* to + }, ; 1907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3562_from, ; char* from + ptr @.TypeMapEntry.3563_to; char* to + }, ; 1908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3564_from, ; char* from + ptr @.TypeMapEntry.3565_to; char* to + }, ; 1909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3566_from, ; char* from + ptr @.TypeMapEntry.3567_to; char* to + }, ; 1910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3568_from, ; char* from + ptr @.TypeMapEntry.3569_to; char* to + }, ; 1911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3570_from, ; char* from + ptr @.TypeMapEntry.3571_to; char* to + }, ; 1912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3572_from, ; char* from + ptr @.TypeMapEntry.3573_to; char* to + }, ; 1913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3574_from, ; char* from + ptr @.TypeMapEntry.3575_to; char* to + }, ; 1914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3576_from, ; char* from + ptr @.TypeMapEntry.3575_to; char* to + }, ; 1915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3577_from, ; char* from + ptr @.TypeMapEntry.3578_to; char* to + }, ; 1916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3579_from, ; char* from + ptr @.TypeMapEntry.3580_to; char* to + }, ; 1917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3581_from, ; char* from + ptr @.TypeMapEntry.3580_to; char* to + }, ; 1918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3582_from, ; char* from + ptr @.TypeMapEntry.3583_to; char* to + }, ; 1919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3584_from, ; char* from + ptr @.TypeMapEntry.3585_to; char* to + }, ; 1920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3586_from, ; char* from + ptr @.TypeMapEntry.3587_to; char* to + }, ; 1921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3588_from, ; char* from + ptr @.TypeMapEntry.3589_to; char* to + }, ; 1922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3590_from, ; char* from + ptr @.TypeMapEntry.3591_to; char* to + }, ; 1923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3592_from, ; char* from + ptr @.TypeMapEntry.3593_to; char* to + }, ; 1924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3594_from, ; char* from + ptr @.TypeMapEntry.3595_to; char* to + }, ; 1925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3596_from, ; char* from + ptr @.TypeMapEntry.3597_to; char* to + }, ; 1926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3598_from, ; char* from + ptr @.TypeMapEntry.3599_to; char* to + }, ; 1927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3600_from, ; char* from + ptr @.TypeMapEntry.3601_to; char* to + }, ; 1928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3602_from, ; char* from + ptr @.TypeMapEntry.3603_to; char* to + }, ; 1929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3604_from, ; char* from + ptr @.TypeMapEntry.3605_to; char* to + }, ; 1930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3606_from, ; char* from + ptr @.TypeMapEntry.3607_to; char* to + }, ; 1931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3608_from, ; char* from + ptr @.TypeMapEntry.3609_to; char* to + }, ; 1932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3610_from, ; char* from + ptr @.TypeMapEntry.3611_to; char* to + }, ; 1933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3612_from, ; char* from + ptr @.TypeMapEntry.3611_to; char* to + }, ; 1934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3613_from, ; char* from + ptr @.TypeMapEntry.3614_to; char* to + }, ; 1935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3615_from, ; char* from + ptr @.TypeMapEntry.3616_to; char* to + }, ; 1936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3617_from, ; char* from + ptr @.TypeMapEntry.3618_to; char* to + }, ; 1937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3619_from, ; char* from + ptr @.TypeMapEntry.3620_to; char* to + }, ; 1938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3621_from, ; char* from + ptr @.TypeMapEntry.3622_to; char* to + }, ; 1939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3623_from, ; char* from + ptr @.TypeMapEntry.3624_to; char* to + }, ; 1940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3625_from, ; char* from + ptr @.TypeMapEntry.3626_to; char* to + }, ; 1941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3627_from, ; char* from + ptr @.TypeMapEntry.3628_to; char* to + }, ; 1942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3629_from, ; char* from + ptr @.TypeMapEntry.3630_to; char* to + }, ; 1943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3631_from, ; char* from + ptr @.TypeMapEntry.3632_to; char* to + }, ; 1944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3633_from, ; char* from + ptr @.TypeMapEntry.3634_to; char* to + }, ; 1945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3635_from, ; char* from + ptr @.TypeMapEntry.3636_to; char* to + }, ; 1946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3637_from, ; char* from + ptr @.TypeMapEntry.3636_to; char* to + }, ; 1947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3638_from, ; char* from + ptr @.TypeMapEntry.3639_to; char* to + }, ; 1948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3640_from, ; char* from + ptr @.TypeMapEntry.3641_to; char* to + }, ; 1949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3642_from, ; char* from + ptr @.TypeMapEntry.3641_to; char* to + }, ; 1950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3643_from, ; char* from + ptr @.TypeMapEntry.3644_to; char* to + }, ; 1951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3645_from, ; char* from + ptr @.TypeMapEntry.3644_to; char* to + }, ; 1952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3646_from, ; char* from + ptr @.TypeMapEntry.3647_to; char* to + }, ; 1953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3648_from, ; char* from + ptr @.TypeMapEntry.3647_to; char* to + }, ; 1954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3649_from, ; char* from + ptr @.TypeMapEntry.3650_to; char* to + }, ; 1955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3651_from, ; char* from + ptr @.TypeMapEntry.3650_to; char* to + }, ; 1956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3652_from, ; char* from + ptr @.TypeMapEntry.3653_to; char* to + }, ; 1957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3654_from, ; char* from + ptr @.TypeMapEntry.3655_to; char* to + }, ; 1958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3656_from, ; char* from + ptr @.TypeMapEntry.3657_to; char* to + }, ; 1959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3658_from, ; char* from + ptr @.TypeMapEntry.3659_to; char* to + }, ; 1960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3660_from, ; char* from + ptr @.TypeMapEntry.3661_to; char* to + }, ; 1961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3662_from, ; char* from + ptr @.TypeMapEntry.3663_to; char* to + }, ; 1962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3664_from, ; char* from + ptr @.TypeMapEntry.3665_to; char* to + }, ; 1963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3666_from, ; char* from + ptr @.TypeMapEntry.3667_to; char* to + }, ; 1964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3668_from, ; char* from + ptr @.TypeMapEntry.3669_to; char* to + }, ; 1965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3670_from, ; char* from + ptr @.TypeMapEntry.3671_to; char* to + }, ; 1966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3672_from, ; char* from + ptr @.TypeMapEntry.3673_to; char* to + }, ; 1967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3674_from, ; char* from + ptr @.TypeMapEntry.3673_to; char* to + }, ; 1968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3675_from, ; char* from + ptr @.TypeMapEntry.3676_to; char* to + }, ; 1969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3677_from, ; char* from + ptr @.TypeMapEntry.3678_to; char* to + }, ; 1970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3679_from, ; char* from + ptr @.TypeMapEntry.3678_to; char* to + }, ; 1971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3680_from, ; char* from + ptr @.TypeMapEntry.3681_to; char* to + }, ; 1972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3682_from, ; char* from + ptr @.TypeMapEntry.3683_to; char* to + }, ; 1973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3684_from, ; char* from + ptr @.TypeMapEntry.3685_to; char* to + }, ; 1974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3686_from, ; char* from + ptr @.TypeMapEntry.3687_to; char* to + }, ; 1975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3688_from, ; char* from + ptr @.TypeMapEntry.3689_to; char* to + }, ; 1976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3690_from, ; char* from + ptr @.TypeMapEntry.3691_to; char* to + }, ; 1977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3692_from, ; char* from + ptr @.TypeMapEntry.3693_to; char* to + }, ; 1978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3694_from, ; char* from + ptr @.TypeMapEntry.3695_to; char* to + }, ; 1979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3696_from, ; char* from + ptr @.TypeMapEntry.3697_to; char* to + }, ; 1980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3698_from, ; char* from + ptr @.TypeMapEntry.3699_to; char* to + }, ; 1981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3700_from, ; char* from + ptr @.TypeMapEntry.3701_to; char* to + }, ; 1982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3702_from, ; char* from + ptr @.TypeMapEntry.3701_to; char* to + }, ; 1983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3703_from, ; char* from + ptr @.TypeMapEntry.3704_to; char* to + }, ; 1984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3705_from, ; char* from + ptr @.TypeMapEntry.3704_to; char* to + }, ; 1985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3706_from, ; char* from + ptr @.TypeMapEntry.3707_to; char* to + }, ; 1986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3708_from, ; char* from + ptr @.TypeMapEntry.3707_to; char* to + }, ; 1987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3709_from, ; char* from + ptr @.TypeMapEntry.3710_to; char* to + }, ; 1988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3711_from, ; char* from + ptr @.TypeMapEntry.3712_to; char* to + }, ; 1989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3713_from, ; char* from + ptr @.TypeMapEntry.3714_to; char* to + }, ; 1990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3715_from, ; char* from + ptr @.TypeMapEntry.3716_to; char* to + }, ; 1991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3717_from, ; char* from + ptr @.TypeMapEntry.3718_to; char* to + }, ; 1992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3719_from, ; char* from + ptr @.TypeMapEntry.3720_to; char* to + }, ; 1993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3721_from, ; char* from + ptr @.TypeMapEntry.3722_to; char* to + }, ; 1994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3723_from, ; char* from + ptr @.TypeMapEntry.3724_to; char* to + }, ; 1995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3725_from, ; char* from + ptr @.TypeMapEntry.3726_to; char* to + }, ; 1996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3727_from, ; char* from + ptr @.TypeMapEntry.3728_to; char* to + }, ; 1997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3729_from, ; char* from + ptr @.TypeMapEntry.3730_to; char* to + }, ; 1998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3731_from, ; char* from + ptr @.TypeMapEntry.3732_to; char* to + }, ; 1999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3733_from, ; char* from + ptr @.TypeMapEntry.3734_to; char* to + }, ; 2000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3735_from, ; char* from + ptr @.TypeMapEntry.3736_to; char* to + }, ; 2001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3737_from, ; char* from + ptr @.TypeMapEntry.3738_to; char* to + }, ; 2002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3739_from, ; char* from + ptr @.TypeMapEntry.3740_to; char* to + }, ; 2003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3741_from, ; char* from + ptr @.TypeMapEntry.3742_to; char* to + }, ; 2004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3743_from, ; char* from + ptr @.TypeMapEntry.3744_to; char* to + }, ; 2005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3745_from, ; char* from + ptr @.TypeMapEntry.3744_to; char* to + }, ; 2006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3746_from, ; char* from + ptr @.TypeMapEntry.3747_to; char* to + }, ; 2007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3748_from, ; char* from + ptr @.TypeMapEntry.3749_to; char* to + }, ; 2008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3750_from, ; char* from + ptr @.TypeMapEntry.3751_to; char* to + }, ; 2009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3752_from, ; char* from + ptr @.TypeMapEntry.3753_to; char* to + }, ; 2010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3754_from, ; char* from + ptr @.TypeMapEntry.3755_to; char* to + }, ; 2011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3756_from, ; char* from + ptr @.TypeMapEntry.3757_to; char* to + }, ; 2012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3758_from, ; char* from + ptr @.TypeMapEntry.3759_to; char* to + }, ; 2013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3760_from, ; char* from + ptr @.TypeMapEntry.3761_to; char* to + }, ; 2014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3762_from, ; char* from + ptr @.TypeMapEntry.3761_to; char* to + }, ; 2015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3763_from, ; char* from + ptr @.TypeMapEntry.3764_to; char* to + }, ; 2016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3765_from, ; char* from + ptr @.TypeMapEntry.3764_to; char* to + }, ; 2017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3766_from, ; char* from + ptr @.TypeMapEntry.3767_to; char* to + }, ; 2018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3768_from, ; char* from + ptr @.TypeMapEntry.3767_to; char* to + }, ; 2019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3769_from, ; char* from + ptr @.TypeMapEntry.3770_to; char* to + }, ; 2020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3771_from, ; char* from + ptr @.TypeMapEntry.3772_to; char* to + }, ; 2021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3773_from, ; char* from + ptr @.TypeMapEntry.3774_to; char* to + }, ; 2022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3775_from, ; char* from + ptr @.TypeMapEntry.3776_to; char* to + }, ; 2023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3777_from, ; char* from + ptr @.TypeMapEntry.3778_to; char* to + }, ; 2024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3779_from, ; char* from + ptr @.TypeMapEntry.3780_to; char* to + }, ; 2025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3781_from, ; char* from + ptr @.TypeMapEntry.3782_to; char* to + }, ; 2026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3783_from, ; char* from + ptr @.TypeMapEntry.3784_to; char* to + }, ; 2027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3785_from, ; char* from + ptr @.TypeMapEntry.3786_to; char* to + }, ; 2028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3787_from, ; char* from + ptr @.TypeMapEntry.3788_to; char* to + }, ; 2029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3789_from, ; char* from + ptr @.TypeMapEntry.3786_to; char* to + }, ; 2030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3790_from, ; char* from + ptr @.TypeMapEntry.3791_to; char* to + }, ; 2031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3792_from, ; char* from + ptr @.TypeMapEntry.3793_to; char* to + }, ; 2032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3794_from, ; char* from + ptr @.TypeMapEntry.3795_to; char* to + }, ; 2033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3796_from, ; char* from + ptr @.TypeMapEntry.3797_to; char* to + }, ; 2034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3798_from, ; char* from + ptr @.TypeMapEntry.3799_to; char* to + }, ; 2035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3800_from, ; char* from + ptr @.TypeMapEntry.3801_to; char* to + }, ; 2036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3802_from, ; char* from + ptr @.TypeMapEntry.3799_to; char* to + }, ; 2037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3803_from, ; char* from + ptr @.TypeMapEntry.3804_to; char* to + }, ; 2038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3805_from, ; char* from + ptr @.TypeMapEntry.3806_to; char* to + }, ; 2039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3807_from, ; char* from + ptr @.TypeMapEntry.3808_to; char* to + }, ; 2040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3809_from, ; char* from + ptr @.TypeMapEntry.3810_to; char* to + }, ; 2041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3811_from, ; char* from + ptr @.TypeMapEntry.3808_to; char* to + }, ; 2042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3812_from, ; char* from + ptr @.TypeMapEntry.3813_to; char* to + }, ; 2043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3814_from, ; char* from + ptr @.TypeMapEntry.3815_to; char* to + }, ; 2044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3816_from, ; char* from + ptr @.TypeMapEntry.3817_to; char* to + }, ; 2045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3818_from, ; char* from + ptr @.TypeMapEntry.3819_to; char* to + }, ; 2046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3820_from, ; char* from + ptr @.TypeMapEntry.3821_to; char* to + }, ; 2047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3822_from, ; char* from + ptr @.TypeMapEntry.3823_to; char* to + }, ; 2048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3824_from, ; char* from + ptr @.TypeMapEntry.3825_to; char* to + }, ; 2049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3826_from, ; char* from + ptr @.TypeMapEntry.3827_to; char* to + }, ; 2050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3828_from, ; char* from + ptr @.TypeMapEntry.3829_to; char* to + }, ; 2051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3830_from, ; char* from + ptr @.TypeMapEntry.3831_to; char* to + }, ; 2052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3832_from, ; char* from + ptr @.TypeMapEntry.3833_to; char* to + }, ; 2053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3834_from, ; char* from + ptr @.TypeMapEntry.3835_to; char* to + }, ; 2054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3836_from, ; char* from + ptr @.TypeMapEntry.3837_to; char* to + }, ; 2055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3838_from, ; char* from + ptr @.TypeMapEntry.3837_to; char* to + }, ; 2056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3839_from, ; char* from + ptr @.TypeMapEntry.3840_to; char* to + }, ; 2057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3841_from, ; char* from + ptr @.TypeMapEntry.3842_to; char* to + }, ; 2058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3843_from, ; char* from + ptr @.TypeMapEntry.3842_to; char* to + }, ; 2059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3844_from, ; char* from + ptr @.TypeMapEntry.3845_to; char* to + }, ; 2060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3846_from, ; char* from + ptr @.TypeMapEntry.3847_to; char* to + }, ; 2061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3848_from, ; char* from + ptr @.TypeMapEntry.3849_to; char* to + }, ; 2062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3850_from, ; char* from + ptr @.TypeMapEntry.3851_to; char* to + }, ; 2063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3852_from, ; char* from + ptr @.TypeMapEntry.3851_to; char* to + }, ; 2064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3853_from, ; char* from + ptr @.TypeMapEntry.3854_to; char* to + }, ; 2065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3855_from, ; char* from + ptr @.TypeMapEntry.3856_to; char* to + }, ; 2066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3857_from, ; char* from + ptr @.TypeMapEntry.3858_to; char* to + }, ; 2067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3859_from, ; char* from + ptr @.TypeMapEntry.3860_to; char* to + }, ; 2068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3861_from, ; char* from + ptr @.TypeMapEntry.3858_to; char* to + }, ; 2069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3862_from, ; char* from + ptr @.TypeMapEntry.3863_to; char* to + }, ; 2070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3864_from, ; char* from + ptr @.TypeMapEntry.3865_to; char* to + }, ; 2071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3866_from, ; char* from + ptr @.TypeMapEntry.3863_to; char* to + }, ; 2072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3867_from, ; char* from + ptr @.TypeMapEntry.3868_to; char* to + }, ; 2073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3869_from, ; char* from + ptr @.TypeMapEntry.3870_to; char* to + }, ; 2074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3871_from, ; char* from + ptr @.TypeMapEntry.3872_to; char* to + }, ; 2075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3873_from, ; char* from + ptr @.TypeMapEntry.3870_to; char* to + }, ; 2076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3874_from, ; char* from + ptr @.TypeMapEntry.3875_to; char* to + }, ; 2077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3876_from, ; char* from + ptr @.TypeMapEntry.3877_to; char* to + }, ; 2078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3878_from, ; char* from + ptr @.TypeMapEntry.3875_to; char* to + }, ; 2079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3879_from, ; char* from + ptr @.TypeMapEntry.3880_to; char* to + }, ; 2080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3881_from, ; char* from + ptr @.TypeMapEntry.3882_to; char* to + }, ; 2081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3883_from, ; char* from + ptr @.TypeMapEntry.3884_to; char* to + }, ; 2082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3885_from, ; char* from + ptr @.TypeMapEntry.3886_to; char* to + }, ; 2083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3887_from, ; char* from + ptr @.TypeMapEntry.3888_to; char* to + }, ; 2084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3889_from, ; char* from + ptr @.TypeMapEntry.3890_to; char* to + }, ; 2085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3891_from, ; char* from + ptr @.TypeMapEntry.3892_to; char* to + }, ; 2086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3893_from, ; char* from + ptr @.TypeMapEntry.3894_to; char* to + }, ; 2087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3895_from, ; char* from + ptr @.TypeMapEntry.3894_to; char* to + }, ; 2088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3896_from, ; char* from + ptr @.TypeMapEntry.3897_to; char* to + }, ; 2089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3898_from, ; char* from + ptr @.TypeMapEntry.3899_to; char* to + }, ; 2090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3900_from, ; char* from + ptr @.TypeMapEntry.3901_to; char* to + }, ; 2091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3902_from, ; char* from + ptr @.TypeMapEntry.3903_to; char* to + }, ; 2092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3904_from, ; char* from + ptr @.TypeMapEntry.3905_to; char* to + }, ; 2093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3906_from, ; char* from + ptr @.TypeMapEntry.3907_to; char* to + }, ; 2094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3908_from, ; char* from + ptr @.TypeMapEntry.3909_to; char* to + }, ; 2095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3910_from, ; char* from + ptr @.TypeMapEntry.3911_to; char* to + }, ; 2096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3912_from, ; char* from + ptr @.TypeMapEntry.3913_to; char* to + }, ; 2097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3914_from, ; char* from + ptr @.TypeMapEntry.3915_to; char* to + }, ; 2098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3916_from, ; char* from + ptr @.TypeMapEntry.3915_to; char* to + }, ; 2099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3917_from, ; char* from + ptr @.TypeMapEntry.3918_to; char* to + }, ; 2100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3919_from, ; char* from + ptr @.TypeMapEntry.3920_to; char* to + }, ; 2101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3921_from, ; char* from + ptr @.TypeMapEntry.3922_to; char* to + }, ; 2102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3923_from, ; char* from + ptr @.TypeMapEntry.3924_to; char* to + }, ; 2103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3925_from, ; char* from + ptr @.TypeMapEntry.3926_to; char* to + }, ; 2104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3927_from, ; char* from + ptr @.TypeMapEntry.3928_to; char* to + }, ; 2105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3929_from, ; char* from + ptr @.TypeMapEntry.3928_to; char* to + }, ; 2106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3930_from, ; char* from + ptr @.TypeMapEntry.3931_to; char* to + }, ; 2107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3932_from, ; char* from + ptr @.TypeMapEntry.3931_to; char* to + }, ; 2108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3933_from, ; char* from + ptr @.TypeMapEntry.3934_to; char* to + }, ; 2109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3935_from, ; char* from + ptr @.TypeMapEntry.3936_to; char* to + }, ; 2110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3937_from, ; char* from + ptr @.TypeMapEntry.3934_to; char* to + }, ; 2111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3938_from, ; char* from + ptr @.TypeMapEntry.3939_to; char* to + }, ; 2112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3940_from, ; char* from + ptr @.TypeMapEntry.3941_to; char* to + }, ; 2113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3942_from, ; char* from + ptr @.TypeMapEntry.3939_to; char* to + }, ; 2114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3943_from, ; char* from + ptr @.TypeMapEntry.3944_to; char* to + }, ; 2115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3945_from, ; char* from + ptr @.TypeMapEntry.3946_to; char* to + }, ; 2116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3947_from, ; char* from + ptr @.TypeMapEntry.3944_to; char* to + }, ; 2117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3948_from, ; char* from + ptr @.TypeMapEntry.3949_to; char* to + }, ; 2118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3950_from, ; char* from + ptr @.TypeMapEntry.3951_to; char* to + }, ; 2119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3952_from, ; char* from + ptr @.TypeMapEntry.3949_to; char* to + }, ; 2120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3953_from, ; char* from + ptr @.TypeMapEntry.3954_to; char* to + }, ; 2121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3955_from, ; char* from + ptr @.TypeMapEntry.3956_to; char* to + }, ; 2122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3957_from, ; char* from + ptr @.TypeMapEntry.3958_to; char* to + }, ; 2123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3959_from, ; char* from + ptr @.TypeMapEntry.3958_to; char* to + }, ; 2124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3960_from, ; char* from + ptr @.TypeMapEntry.3961_to; char* to + }, ; 2125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3962_from, ; char* from + ptr @.TypeMapEntry.3963_to; char* to + }, ; 2126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3964_from, ; char* from + ptr @.TypeMapEntry.3965_to; char* to + }, ; 2127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3966_from, ; char* from + ptr @.TypeMapEntry.3967_to; char* to + }, ; 2128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3968_from, ; char* from + ptr @.TypeMapEntry.3969_to; char* to + }, ; 2129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3970_from, ; char* from + ptr @.TypeMapEntry.3971_to; char* to + }, ; 2130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3972_from, ; char* from + ptr @.TypeMapEntry.3973_to; char* to + }, ; 2131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3974_from, ; char* from + ptr @.TypeMapEntry.3975_to; char* to + }, ; 2132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3976_from, ; char* from + ptr @.TypeMapEntry.3977_to; char* to + }, ; 2133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3978_from, ; char* from + ptr @.TypeMapEntry.3979_to; char* to + }, ; 2134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3980_from, ; char* from + ptr @.TypeMapEntry.3981_to; char* to + }, ; 2135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3982_from, ; char* from + ptr @.TypeMapEntry.3983_to; char* to + }, ; 2136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3984_from, ; char* from + ptr @.TypeMapEntry.3981_to; char* to + }, ; 2137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3985_from, ; char* from + ptr @.TypeMapEntry.3986_to; char* to + }, ; 2138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3987_from, ; char* from + ptr @.TypeMapEntry.3986_to; char* to + }, ; 2139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3988_from, ; char* from + ptr @.TypeMapEntry.3989_to; char* to + }, ; 2140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3990_from, ; char* from + ptr @.TypeMapEntry.3991_to; char* to + }, ; 2141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3992_from, ; char* from + ptr @.TypeMapEntry.3993_to; char* to + }, ; 2142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3994_from, ; char* from + ptr @.TypeMapEntry.3995_to; char* to + }, ; 2143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3996_from, ; char* from + ptr @.TypeMapEntry.3997_to; char* to + }, ; 2144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3998_from, ; char* from + ptr @.TypeMapEntry.3999_to; char* to + }, ; 2145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4000_from, ; char* from + ptr @.TypeMapEntry.4001_to; char* to + }, ; 2146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4002_from, ; char* from + ptr @.TypeMapEntry.3999_to; char* to + }, ; 2147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4003_from, ; char* from + ptr @.TypeMapEntry.4004_to; char* to + }, ; 2148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4005_from, ; char* from + ptr @.TypeMapEntry.4006_to; char* to + }, ; 2149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4007_from, ; char* from + ptr @.TypeMapEntry.4004_to; char* to + }, ; 2150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4008_from, ; char* from + ptr @.TypeMapEntry.4009_to; char* to + }, ; 2151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4010_from, ; char* from + ptr @.TypeMapEntry.4009_to; char* to + }, ; 2152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4011_from, ; char* from + ptr @.TypeMapEntry.4012_to; char* to + }, ; 2153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4013_from, ; char* from + ptr @.TypeMapEntry.4014_to; char* to + }, ; 2154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4015_from, ; char* from + ptr @.TypeMapEntry.4014_to; char* to + }, ; 2155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4016_from, ; char* from + ptr @.TypeMapEntry.4017_to; char* to + }, ; 2156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4018_from, ; char* from + ptr @.TypeMapEntry.4019_to; char* to + }, ; 2157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4020_from, ; char* from + ptr @.TypeMapEntry.4021_to; char* to + }, ; 2158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4022_from, ; char* from + ptr @.TypeMapEntry.4023_to; char* to + }, ; 2159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4024_from, ; char* from + ptr @.TypeMapEntry.4025_to; char* to + }, ; 2160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4026_from, ; char* from + ptr @.TypeMapEntry.4023_to; char* to + }, ; 2161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4027_from, ; char* from + ptr @.TypeMapEntry.4028_to; char* to + }, ; 2162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4029_from, ; char* from + ptr @.TypeMapEntry.4030_to; char* to + }, ; 2163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4031_from, ; char* from + ptr @.TypeMapEntry.4028_to; char* to + }, ; 2164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4032_from, ; char* from + ptr @.TypeMapEntry.4033_to; char* to + }, ; 2165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4034_from, ; char* from + ptr @.TypeMapEntry.4035_to; char* to + }, ; 2166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4036_from, ; char* from + ptr @.TypeMapEntry.4037_to; char* to + }, ; 2167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4038_from, ; char* from + ptr @.TypeMapEntry.4039_to; char* to + }, ; 2168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4040_from, ; char* from + ptr @.TypeMapEntry.4037_to; char* to + }, ; 2169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4041_from, ; char* from + ptr @.TypeMapEntry.4042_to; char* to + }, ; 2170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4043_from, ; char* from + ptr @.TypeMapEntry.4044_to; char* to + }, ; 2171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4045_from, ; char* from + ptr @.TypeMapEntry.4046_to; char* to + }, ; 2172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4047_from, ; char* from + ptr @.TypeMapEntry.4048_to; char* to + }, ; 2173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4049_from, ; char* from + ptr @.TypeMapEntry.4050_to; char* to + }, ; 2174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4051_from, ; char* from + ptr @.TypeMapEntry.4052_to; char* to + }, ; 2175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4053_from, ; char* from + ptr @.TypeMapEntry.4054_to; char* to + }, ; 2176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4055_from, ; char* from + ptr @.TypeMapEntry.4056_to; char* to + }, ; 2177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4057_from, ; char* from + ptr @.TypeMapEntry.4058_to; char* to + }, ; 2178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4059_from, ; char* from + ptr @.TypeMapEntry.4060_to; char* to + }, ; 2179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4061_from, ; char* from + ptr @.TypeMapEntry.4062_to; char* to + }, ; 2180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4063_from, ; char* from + ptr @.TypeMapEntry.4064_to; char* to + }, ; 2181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4065_from, ; char* from + ptr @.TypeMapEntry.4066_to; char* to + }, ; 2182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4067_from, ; char* from + ptr @.TypeMapEntry.4068_to; char* to + }, ; 2183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4069_from, ; char* from + ptr @.TypeMapEntry.4070_to; char* to + }, ; 2184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4071_from, ; char* from + ptr @.TypeMapEntry.4072_to; char* to + }, ; 2185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4073_from, ; char* from + ptr @.TypeMapEntry.4070_to; char* to + }, ; 2186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4074_from, ; char* from + ptr @.TypeMapEntry.4075_to; char* to + }, ; 2187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4076_from, ; char* from + ptr @.TypeMapEntry.4077_to; char* to + }, ; 2188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4078_from, ; char* from + ptr @.TypeMapEntry.4079_to; char* to + }, ; 2189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4080_from, ; char* from + ptr @.TypeMapEntry.4081_to; char* to + }, ; 2190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4082_from, ; char* from + ptr @.TypeMapEntry.4079_to; char* to + }, ; 2191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4083_from, ; char* from + ptr @.TypeMapEntry.4084_to; char* to + }, ; 2192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4085_from, ; char* from + ptr @.TypeMapEntry.4086_to; char* to + }, ; 2193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4087_from, ; char* from + ptr @.TypeMapEntry.4088_to; char* to + }, ; 2194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4089_from, ; char* from + ptr @.TypeMapEntry.4090_to; char* to + }, ; 2195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4091_from, ; char* from + ptr @.TypeMapEntry.4092_to; char* to + }, ; 2196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4093_from, ; char* from + ptr @.TypeMapEntry.4094_to; char* to + }, ; 2197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4095_from, ; char* from + ptr @.TypeMapEntry.4096_to; char* to + }, ; 2198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4097_from, ; char* from + ptr @.TypeMapEntry.4094_to; char* to + }, ; 2199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4098_from, ; char* from + ptr @.TypeMapEntry.4099_to; char* to + }, ; 2200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4100_from, ; char* from + ptr @.TypeMapEntry.4101_to; char* to + }, ; 2201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4102_from, ; char* from + ptr @.TypeMapEntry.4103_to; char* to + }, ; 2202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4104_from, ; char* from + ptr @.TypeMapEntry.4105_to; char* to + }, ; 2203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4106_from, ; char* from + ptr @.TypeMapEntry.4103_to; char* to + }, ; 2204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4107_from, ; char* from + ptr @.TypeMapEntry.4108_to; char* to + }, ; 2205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4109_from, ; char* from + ptr @.TypeMapEntry.4110_to; char* to + }, ; 2206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4111_from, ; char* from + ptr @.TypeMapEntry.4112_to; char* to + }, ; 2207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4113_from, ; char* from + ptr @.TypeMapEntry.4114_to; char* to + }, ; 2208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4115_from, ; char* from + ptr @.TypeMapEntry.4112_to; char* to + }, ; 2209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4116_from, ; char* from + ptr @.TypeMapEntry.4117_to; char* to + }, ; 2210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4118_from, ; char* from + ptr @.TypeMapEntry.4119_to; char* to + }, ; 2211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4120_from, ; char* from + ptr @.TypeMapEntry.4121_to; char* to + }, ; 2212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4122_from, ; char* from + ptr @.TypeMapEntry.4123_to; char* to + }, ; 2213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4124_from, ; char* from + ptr @.TypeMapEntry.4123_to; char* to + }, ; 2214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4125_from, ; char* from + ptr @.TypeMapEntry.4126_to; char* to + }, ; 2215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4127_from, ; char* from + ptr @.TypeMapEntry.4128_to; char* to + }, ; 2216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4129_from, ; char* from + ptr @.TypeMapEntry.4128_to; char* to + }, ; 2217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4130_from, ; char* from + ptr @.TypeMapEntry.4131_to; char* to + }, ; 2218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4132_from, ; char* from + ptr @.TypeMapEntry.4133_to; char* to + }, ; 2219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4134_from, ; char* from + ptr @.TypeMapEntry.4135_to; char* to + }, ; 2220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4136_from, ; char* from + ptr @.TypeMapEntry.4137_to; char* to + }, ; 2221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4138_from, ; char* from + ptr @.TypeMapEntry.4139_to; char* to + }, ; 2222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4140_from, ; char* from + ptr @.TypeMapEntry.4141_to; char* to + }, ; 2223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4142_from, ; char* from + ptr @.TypeMapEntry.4141_to; char* to + }, ; 2224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4143_from, ; char* from + ptr @.TypeMapEntry.4144_to; char* to + }, ; 2225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4145_from, ; char* from + ptr @.TypeMapEntry.4146_to; char* to + }, ; 2226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4147_from, ; char* from + ptr @.TypeMapEntry.4148_to; char* to + }, ; 2227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4149_from, ; char* from + ptr @.TypeMapEntry.4144_to; char* to + }, ; 2228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4150_from, ; char* from + ptr @.TypeMapEntry.4151_to; char* to + }, ; 2229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4152_from, ; char* from + ptr @.TypeMapEntry.4153_to; char* to + }, ; 2230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4154_from, ; char* from + ptr @.TypeMapEntry.4151_to; char* to + }, ; 2231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4155_from, ; char* from + ptr @.TypeMapEntry.4156_to; char* to + }, ; 2232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4157_from, ; char* from + ptr @.TypeMapEntry.4158_to; char* to + }, ; 2233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4159_from, ; char* from + ptr @.TypeMapEntry.4160_to; char* to + }, ; 2234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4161_from, ; char* from + ptr @.TypeMapEntry.4162_to; char* to + }, ; 2235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4163_from, ; char* from + ptr @.TypeMapEntry.4164_to; char* to + }, ; 2236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4165_from, ; char* from + ptr @.TypeMapEntry.4166_to; char* to + }, ; 2237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4167_from, ; char* from + ptr @.TypeMapEntry.4168_to; char* to + }, ; 2238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4169_from, ; char* from + ptr @.TypeMapEntry.4168_to; char* to + }, ; 2239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4170_from, ; char* from + ptr @.TypeMapEntry.4171_to; char* to + }, ; 2240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4172_from, ; char* from + ptr @.TypeMapEntry.4171_to; char* to + }, ; 2241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4173_from, ; char* from + ptr @.TypeMapEntry.4174_to; char* to + }, ; 2242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4175_from, ; char* from + ptr @.TypeMapEntry.4174_to; char* to + }, ; 2243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4176_from, ; char* from + ptr @.TypeMapEntry.4177_to; char* to + }, ; 2244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4178_from, ; char* from + ptr @.TypeMapEntry.4177_to; char* to + }, ; 2245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4179_from, ; char* from + ptr @.TypeMapEntry.4180_to; char* to + }, ; 2246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4181_from, ; char* from + ptr @.TypeMapEntry.4182_to; char* to + }, ; 2247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4183_from, ; char* from + ptr @.TypeMapEntry.4180_to; char* to + }, ; 2248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4184_from, ; char* from + ptr @.TypeMapEntry.4185_to; char* to + }, ; 2249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4186_from, ; char* from + ptr @.TypeMapEntry.4185_to; char* to + }, ; 2250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4187_from, ; char* from + ptr @.TypeMapEntry.4188_to; char* to + }, ; 2251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4189_from, ; char* from + ptr @.TypeMapEntry.4188_to; char* to + }, ; 2252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4190_from, ; char* from + ptr @.TypeMapEntry.4191_to; char* to + }, ; 2253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4192_from, ; char* from + ptr @.TypeMapEntry.4191_to; char* to + }, ; 2254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4193_from, ; char* from + ptr @.TypeMapEntry.4194_to; char* to + }, ; 2255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4195_from, ; char* from + ptr @.TypeMapEntry.4194_to; char* to + }, ; 2256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4196_from, ; char* from + ptr @.TypeMapEntry.4197_to; char* to + }, ; 2257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4198_from, ; char* from + ptr @.TypeMapEntry.4197_to; char* to + }, ; 2258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4199_from, ; char* from + ptr @.TypeMapEntry.4200_to; char* to + }, ; 2259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4201_from, ; char* from + ptr @.TypeMapEntry.4202_to; char* to + }, ; 2260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4203_from, ; char* from + ptr @.TypeMapEntry.4204_to; char* to + }, ; 2261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4205_from, ; char* from + ptr @.TypeMapEntry.4202_to; char* to + }, ; 2262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4206_from, ; char* from + ptr @.TypeMapEntry.4207_to; char* to + }, ; 2263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4208_from, ; char* from + ptr @.TypeMapEntry.4209_to; char* to + }, ; 2264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4210_from, ; char* from + ptr @.TypeMapEntry.4211_to; char* to + }, ; 2265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4212_from, ; char* from + ptr @.TypeMapEntry.4213_to; char* to + }, ; 2266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4214_from, ; char* from + ptr @.TypeMapEntry.4211_to; char* to + }, ; 2267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4215_from, ; char* from + ptr @.TypeMapEntry.4216_to; char* to + }, ; 2268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4217_from, ; char* from + ptr @.TypeMapEntry.4218_to; char* to + }, ; 2269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4219_from, ; char* from + ptr @.TypeMapEntry.4220_to; char* to + }, ; 2270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4221_from, ; char* from + ptr @.TypeMapEntry.4218_to; char* to + }, ; 2271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4222_from, ; char* from + ptr @.TypeMapEntry.4223_to; char* to + }, ; 2272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4224_from, ; char* from + ptr @.TypeMapEntry.4225_to; char* to + }, ; 2273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4226_from, ; char* from + ptr @.TypeMapEntry.4227_to; char* to + }, ; 2274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4228_from, ; char* from + ptr @.TypeMapEntry.4225_to; char* to + }, ; 2275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4229_from, ; char* from + ptr @.TypeMapEntry.4230_to; char* to + }, ; 2276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4231_from, ; char* from + ptr @.TypeMapEntry.4232_to; char* to + }, ; 2277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4233_from, ; char* from + ptr @.TypeMapEntry.4234_to; char* to + }, ; 2278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4235_from, ; char* from + ptr @.TypeMapEntry.4236_to; char* to + }, ; 2279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4237_from, ; char* from + ptr @.TypeMapEntry.4234_to; char* to + }, ; 2280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4238_from, ; char* from + ptr @.TypeMapEntry.4239_to; char* to + }, ; 2281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4240_from, ; char* from + ptr @.TypeMapEntry.4241_to; char* to + }, ; 2282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4242_from, ; char* from + ptr @.TypeMapEntry.4243_to; char* to + }, ; 2283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4244_from, ; char* from + ptr @.TypeMapEntry.4245_to; char* to + }, ; 2284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4246_from, ; char* from + ptr @.TypeMapEntry.4247_to; char* to + }, ; 2285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4248_from, ; char* from + ptr @.TypeMapEntry.4249_to; char* to + }, ; 2286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4250_from, ; char* from + ptr @.TypeMapEntry.4251_to; char* to + }, ; 2287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4252_from, ; char* from + ptr @.TypeMapEntry.4253_to; char* to + }, ; 2288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4254_from, ; char* from + ptr @.TypeMapEntry.4255_to; char* to + }, ; 2289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4256_from, ; char* from + ptr @.TypeMapEntry.4257_to; char* to + }, ; 2290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4258_from, ; char* from + ptr @.TypeMapEntry.4259_to; char* to + }, ; 2291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4260_from, ; char* from + ptr @.TypeMapEntry.4261_to; char* to + }, ; 2292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4262_from, ; char* from + ptr @.TypeMapEntry.4261_to; char* to + }, ; 2293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4263_from, ; char* from + ptr @.TypeMapEntry.4264_to; char* to + }, ; 2294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4265_from, ; char* from + ptr @.TypeMapEntry.4266_to; char* to + }, ; 2295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4267_from, ; char* from + ptr @.TypeMapEntry.4268_to; char* to + }, ; 2296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4269_from, ; char* from + ptr @.TypeMapEntry.4270_to; char* to + }, ; 2297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4271_from, ; char* from + ptr @.TypeMapEntry.4272_to; char* to + }, ; 2298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4273_from, ; char* from + ptr @.TypeMapEntry.4274_to; char* to + }, ; 2299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4275_from, ; char* from + ptr @.TypeMapEntry.4272_to; char* to + }, ; 2300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4276_from, ; char* from + ptr @.TypeMapEntry.4277_to; char* to + }, ; 2301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4278_from, ; char* from + ptr @.TypeMapEntry.4279_to; char* to + }, ; 2302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4280_from, ; char* from + ptr @.TypeMapEntry.4277_to; char* to + }, ; 2303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4281_from, ; char* from + ptr @.TypeMapEntry.4282_to; char* to + }, ; 2304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4283_from, ; char* from + ptr @.TypeMapEntry.4284_to; char* to + }, ; 2305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4285_from, ; char* from + ptr @.TypeMapEntry.4286_to; char* to + }, ; 2306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4287_from, ; char* from + ptr @.TypeMapEntry.4288_to; char* to + }, ; 2307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4289_from, ; char* from + ptr @.TypeMapEntry.4290_to; char* to + }, ; 2308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4291_from, ; char* from + ptr @.TypeMapEntry.4292_to; char* to + }, ; 2309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4293_from, ; char* from + ptr @.TypeMapEntry.4294_to; char* to + }, ; 2310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4295_from, ; char* from + ptr @.TypeMapEntry.4296_to; char* to + }, ; 2311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4297_from, ; char* from + ptr @.TypeMapEntry.4298_to; char* to + }, ; 2312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4299_from, ; char* from + ptr @.TypeMapEntry.4300_to; char* to + }, ; 2313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4301_from, ; char* from + ptr @.TypeMapEntry.4302_to; char* to + }, ; 2314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4303_from, ; char* from + ptr @.TypeMapEntry.4304_to; char* to + }, ; 2315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4305_from, ; char* from + ptr @.TypeMapEntry.4306_to; char* to + }, ; 2316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4307_from, ; char* from + ptr @.TypeMapEntry.4308_to; char* to + }, ; 2317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4309_from, ; char* from + ptr @.TypeMapEntry.4310_to; char* to + }, ; 2318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4311_from, ; char* from + ptr @.TypeMapEntry.4312_to; char* to + }, ; 2319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4313_from, ; char* from + ptr @.TypeMapEntry.4314_to; char* to + }, ; 2320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4315_from, ; char* from + ptr @.TypeMapEntry.4316_to; char* to + }, ; 2321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4317_from, ; char* from + ptr @.TypeMapEntry.4318_to; char* to + }, ; 2322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4319_from, ; char* from + ptr @.TypeMapEntry.4318_to; char* to + }, ; 2323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4320_from, ; char* from + ptr @.TypeMapEntry.4321_to; char* to + }, ; 2324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4322_from, ; char* from + ptr @.TypeMapEntry.4323_to; char* to + }, ; 2325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4324_from, ; char* from + ptr @.TypeMapEntry.4325_to; char* to + }, ; 2326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4326_from, ; char* from + ptr @.TypeMapEntry.4327_to; char* to + }, ; 2327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4328_from, ; char* from + ptr @.TypeMapEntry.4327_to; char* to + }, ; 2328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4329_from, ; char* from + ptr @.TypeMapEntry.4330_to; char* to + }, ; 2329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4331_from, ; char* from + ptr @.TypeMapEntry.4332_to; char* to + }, ; 2330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4333_from, ; char* from + ptr @.TypeMapEntry.4334_to; char* to + }, ; 2331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4335_from, ; char* from + ptr @.TypeMapEntry.4336_to; char* to + }, ; 2332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4337_from, ; char* from + ptr @.TypeMapEntry.4338_to; char* to + }, ; 2333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4339_from, ; char* from + ptr @.TypeMapEntry.4340_to; char* to + }, ; 2334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4341_from, ; char* from + ptr @.TypeMapEntry.4340_to; char* to + }, ; 2335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4342_from, ; char* from + ptr @.TypeMapEntry.4343_to; char* to + }, ; 2336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4344_from, ; char* from + ptr @.TypeMapEntry.4345_to; char* to + }, ; 2337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4346_from, ; char* from + ptr @.TypeMapEntry.4343_to; char* to + }, ; 2338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4347_from, ; char* from + ptr @.TypeMapEntry.4348_to; char* to + }, ; 2339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4349_from, ; char* from + ptr @.TypeMapEntry.4350_to; char* to + }, ; 2340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4351_from, ; char* from + ptr @.TypeMapEntry.4348_to; char* to + }, ; 2341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4352_from, ; char* from + ptr @.TypeMapEntry.4353_to; char* to + }, ; 2342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4354_from, ; char* from + ptr @.TypeMapEntry.4355_to; char* to + }, ; 2343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4356_from, ; char* from + ptr @.TypeMapEntry.4353_to; char* to + }, ; 2344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4357_from, ; char* from + ptr @.TypeMapEntry.4358_to; char* to + }, ; 2345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4359_from, ; char* from + ptr @.TypeMapEntry.4360_to; char* to + }, ; 2346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4361_from, ; char* from + ptr @.TypeMapEntry.4358_to; char* to + }, ; 2347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4362_from, ; char* from + ptr @.TypeMapEntry.4363_to; char* to + }, ; 2348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4364_from, ; char* from + ptr @.TypeMapEntry.4363_to; char* to + }, ; 2349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4365_from, ; char* from + ptr @.TypeMapEntry.4366_to; char* to + }, ; 2350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4367_from, ; char* from + ptr @.TypeMapEntry.4368_to; char* to + }, ; 2351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4369_from, ; char* from + ptr @.TypeMapEntry.4370_to; char* to + }, ; 2352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4371_from, ; char* from + ptr @.TypeMapEntry.4372_to; char* to + }, ; 2353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4373_from, ; char* from + ptr @.TypeMapEntry.4374_to; char* to + }, ; 2354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4375_from, ; char* from + ptr @.TypeMapEntry.4376_to; char* to + }, ; 2355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4377_from, ; char* from + ptr @.TypeMapEntry.4378_to; char* to + }, ; 2356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4379_from, ; char* from + ptr @.TypeMapEntry.4380_to; char* to + }, ; 2357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4381_from, ; char* from + ptr @.TypeMapEntry.4382_to; char* to + }, ; 2358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4383_from, ; char* from + ptr @.TypeMapEntry.4384_to; char* to + }, ; 2359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4385_from, ; char* from + ptr @.TypeMapEntry.4386_to; char* to + }, ; 2360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4387_from, ; char* from + ptr @.TypeMapEntry.4388_to; char* to + }, ; 2361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4389_from, ; char* from + ptr @.TypeMapEntry.4390_to; char* to + }, ; 2362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4391_from, ; char* from + ptr @.TypeMapEntry.4392_to; char* to + }, ; 2363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4393_from, ; char* from + ptr @.TypeMapEntry.4394_to; char* to + }, ; 2364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4395_from, ; char* from + ptr @.TypeMapEntry.4396_to; char* to + }, ; 2365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4397_from, ; char* from + ptr @.TypeMapEntry.4398_to; char* to + }, ; 2366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4399_from, ; char* from + ptr @.TypeMapEntry.4400_to; char* to + }, ; 2367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4401_from, ; char* from + ptr @.TypeMapEntry.4402_to; char* to + }, ; 2368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4403_from, ; char* from + ptr @.TypeMapEntry.4404_to; char* to + }, ; 2369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4405_from, ; char* from + ptr @.TypeMapEntry.4406_to; char* to + }, ; 2370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4407_from, ; char* from + ptr @.TypeMapEntry.4406_to; char* to + }, ; 2371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4408_from, ; char* from + ptr @.TypeMapEntry.4409_to; char* to + }, ; 2372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4410_from, ; char* from + ptr @.TypeMapEntry.4411_to; char* to + }, ; 2373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4412_from, ; char* from + ptr @.TypeMapEntry.4413_to; char* to + }, ; 2374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4414_from, ; char* from + ptr @.TypeMapEntry.4415_to; char* to + }, ; 2375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4416_from, ; char* from + ptr @.TypeMapEntry.4417_to; char* to + }, ; 2376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4418_from, ; char* from + ptr @.TypeMapEntry.4417_to; char* to + }, ; 2377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4419_from, ; char* from + ptr @.TypeMapEntry.4420_to; char* to + }, ; 2378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4421_from, ; char* from + ptr @.TypeMapEntry.4420_to; char* to + }, ; 2379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4422_from, ; char* from + ptr @.TypeMapEntry.4423_to; char* to + }, ; 2380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4424_from, ; char* from + ptr @.TypeMapEntry.4423_to; char* to + }, ; 2381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4425_from, ; char* from + ptr @.TypeMapEntry.4426_to; char* to + }, ; 2382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4427_from, ; char* from + ptr @.TypeMapEntry.4428_to; char* to + }, ; 2383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4429_from, ; char* from + ptr @.TypeMapEntry.4430_to; char* to + }, ; 2384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4431_from, ; char* from + ptr @.TypeMapEntry.4432_to; char* to + }, ; 2385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4433_from, ; char* from + ptr @.TypeMapEntry.4434_to; char* to + }, ; 2386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4435_from, ; char* from + ptr @.TypeMapEntry.4436_to; char* to + }, ; 2387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4437_from, ; char* from + ptr @.TypeMapEntry.4438_to; char* to + }, ; 2388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4439_from, ; char* from + ptr @.TypeMapEntry.4440_to; char* to + }, ; 2389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4441_from, ; char* from + ptr @.TypeMapEntry.4442_to; char* to + }, ; 2390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4443_from, ; char* from + ptr @.TypeMapEntry.4440_to; char* to + }, ; 2391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4444_from, ; char* from + ptr @.TypeMapEntry.4445_to; char* to + }, ; 2392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4446_from, ; char* from + ptr @.TypeMapEntry.4447_to; char* to + }, ; 2393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4448_from, ; char* from + ptr @.TypeMapEntry.4445_to; char* to + }, ; 2394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4449_from, ; char* from + ptr @.TypeMapEntry.4450_to; char* to + }, ; 2395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4451_from, ; char* from + ptr @.TypeMapEntry.4450_to; char* to + }, ; 2396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4452_from, ; char* from + ptr @.TypeMapEntry.4453_to; char* to + }, ; 2397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4454_from, ; char* from + ptr @.TypeMapEntry.4455_to; char* to + }, ; 2398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4456_from, ; char* from + ptr @.TypeMapEntry.4453_to; char* to + }, ; 2399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4457_from, ; char* from + ptr @.TypeMapEntry.4458_to; char* to + }, ; 2400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4459_from, ; char* from + ptr @.TypeMapEntry.4460_to; char* to + }, ; 2401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4461_from, ; char* from + ptr @.TypeMapEntry.4458_to; char* to + }, ; 2402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4462_from, ; char* from + ptr @.TypeMapEntry.4463_to; char* to + }, ; 2403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4464_from, ; char* from + ptr @.TypeMapEntry.4465_to; char* to + }, ; 2404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4466_from, ; char* from + ptr @.TypeMapEntry.4463_to; char* to + }, ; 2405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4467_from, ; char* from + ptr @.TypeMapEntry.4468_to; char* to + }, ; 2406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4469_from, ; char* from + ptr @.TypeMapEntry.4470_to; char* to + }, ; 2407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4471_from, ; char* from + ptr @.TypeMapEntry.4468_to; char* to + }, ; 2408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4472_from, ; char* from + ptr @.TypeMapEntry.4473_to; char* to + }, ; 2409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4474_from, ; char* from + ptr @.TypeMapEntry.4475_to; char* to + }, ; 2410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4476_from, ; char* from + ptr @.TypeMapEntry.4473_to; char* to + }, ; 2411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4477_from, ; char* from + ptr @.TypeMapEntry.4478_to; char* to + }, ; 2412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4479_from, ; char* from + ptr @.TypeMapEntry.4480_to; char* to + }, ; 2413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4481_from, ; char* from + ptr @.TypeMapEntry.4478_to; char* to + }, ; 2414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4482_from, ; char* from + ptr @.TypeMapEntry.4483_to; char* to + }, ; 2415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4484_from, ; char* from + ptr @.TypeMapEntry.4485_to; char* to + }, ; 2416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4486_from, ; char* from + ptr @.TypeMapEntry.4483_to; char* to + }, ; 2417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4487_from, ; char* from + ptr @.TypeMapEntry.4488_to; char* to + }, ; 2418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4489_from, ; char* from + ptr @.TypeMapEntry.4490_to; char* to + }, ; 2419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4491_from, ; char* from + ptr @.TypeMapEntry.4488_to; char* to + }, ; 2420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4492_from, ; char* from + ptr @.TypeMapEntry.4493_to; char* to + }, ; 2421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4494_from, ; char* from + ptr @.TypeMapEntry.4495_to; char* to + }, ; 2422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4496_from, ; char* from + ptr @.TypeMapEntry.4493_to; char* to + }, ; 2423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4497_from, ; char* from + ptr @.TypeMapEntry.4498_to; char* to + }, ; 2424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4499_from, ; char* from + ptr @.TypeMapEntry.4500_to; char* to + }, ; 2425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4501_from, ; char* from + ptr @.TypeMapEntry.4498_to; char* to + }, ; 2426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4502_from, ; char* from + ptr @.TypeMapEntry.4503_to; char* to + }, ; 2427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4504_from, ; char* from + ptr @.TypeMapEntry.4505_to; char* to + }, ; 2428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4506_from, ; char* from + ptr @.TypeMapEntry.4503_to; char* to + }, ; 2429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4507_from, ; char* from + ptr @.TypeMapEntry.4508_to; char* to + }, ; 2430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4509_from, ; char* from + ptr @.TypeMapEntry.4510_to; char* to + }, ; 2431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4511_from, ; char* from + ptr @.TypeMapEntry.4512_to; char* to + }, ; 2432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4513_from, ; char* from + ptr @.TypeMapEntry.4514_to; char* to + }, ; 2433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4515_from, ; char* from + ptr @.TypeMapEntry.4516_to; char* to + }, ; 2434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4517_from, ; char* from + ptr @.TypeMapEntry.4518_to; char* to + }, ; 2435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4519_from, ; char* from + ptr @.TypeMapEntry.4520_to; char* to + }, ; 2436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4521_from, ; char* from + ptr @.TypeMapEntry.4522_to; char* to + }, ; 2437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4523_from, ; char* from + ptr @.TypeMapEntry.4524_to; char* to + }, ; 2438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4525_from, ; char* from + ptr @.TypeMapEntry.4526_to; char* to + }, ; 2439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4527_from, ; char* from + ptr @.TypeMapEntry.4524_to; char* to + }, ; 2440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4528_from, ; char* from + ptr @.TypeMapEntry.4529_to; char* to + }, ; 2441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4530_from, ; char* from + ptr @.TypeMapEntry.4531_to; char* to + }, ; 2442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4532_from, ; char* from + ptr @.TypeMapEntry.4529_to; char* to + }, ; 2443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4533_from, ; char* from + ptr @.TypeMapEntry.4534_to; char* to + }, ; 2444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4535_from, ; char* from + ptr @.TypeMapEntry.4536_to; char* to + }, ; 2445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4537_from, ; char* from + ptr @.TypeMapEntry.4538_to; char* to + }, ; 2446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4539_from, ; char* from + ptr @.TypeMapEntry.4540_to; char* to + }, ; 2447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4541_from, ; char* from + ptr @.TypeMapEntry.4542_to; char* to + }, ; 2448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4543_from, ; char* from + ptr @.TypeMapEntry.4544_to; char* to + }, ; 2449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4545_from, ; char* from + ptr @.TypeMapEntry.4546_to; char* to + }, ; 2450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4547_from, ; char* from + ptr @.TypeMapEntry.4548_to; char* to + }, ; 2451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4549_from, ; char* from + ptr @.TypeMapEntry.4548_to; char* to + }, ; 2452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4550_from, ; char* from + ptr @.TypeMapEntry.4551_to; char* to + }, ; 2453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4552_from, ; char* from + ptr @.TypeMapEntry.4551_to; char* to + }, ; 2454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4553_from, ; char* from + ptr @.TypeMapEntry.4554_to; char* to + }, ; 2455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4555_from, ; char* from + ptr @.TypeMapEntry.4556_to; char* to + }, ; 2456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4557_from, ; char* from + ptr @.TypeMapEntry.4558_to; char* to + }, ; 2457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4559_from, ; char* from + ptr @.TypeMapEntry.4560_to; char* to + }, ; 2458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4561_from, ; char* from + ptr @.TypeMapEntry.4562_to; char* to + }, ; 2459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4563_from, ; char* from + ptr @.TypeMapEntry.4564_to; char* to + }, ; 2460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4565_from, ; char* from + ptr @.TypeMapEntry.4564_to; char* to + }, ; 2461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4566_from, ; char* from + ptr @.TypeMapEntry.4567_to; char* to + }, ; 2462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4568_from, ; char* from + ptr @.TypeMapEntry.4569_to; char* to + }, ; 2463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4570_from, ; char* from + ptr @.TypeMapEntry.4569_to; char* to + }, ; 2464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4571_from, ; char* from + ptr @.TypeMapEntry.4572_to; char* to + }, ; 2465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4573_from, ; char* from + ptr @.TypeMapEntry.4574_to; char* to + }, ; 2466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4575_from, ; char* from + ptr @.TypeMapEntry.4572_to; char* to + }, ; 2467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4576_from, ; char* from + ptr @.TypeMapEntry.4577_to; char* to + }, ; 2468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4578_from, ; char* from + ptr @.TypeMapEntry.4577_to; char* to + }, ; 2469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4579_from, ; char* from + ptr @.TypeMapEntry.4580_to; char* to + }, ; 2470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4581_from, ; char* from + ptr @.TypeMapEntry.4582_to; char* to + }, ; 2471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4583_from, ; char* from + ptr @.TypeMapEntry.4584_to; char* to + }, ; 2472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4585_from, ; char* from + ptr @.TypeMapEntry.4586_to; char* to + }, ; 2473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4587_from, ; char* from + ptr @.TypeMapEntry.4588_to; char* to + }, ; 2474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4589_from, ; char* from + ptr @.TypeMapEntry.4588_to; char* to + }, ; 2475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4590_from, ; char* from + ptr @.TypeMapEntry.4591_to; char* to + }, ; 2476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4592_from, ; char* from + ptr @.TypeMapEntry.4593_to; char* to + }, ; 2477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4594_from, ; char* from + ptr @.TypeMapEntry.4593_to; char* to + }, ; 2478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4595_from, ; char* from + ptr @.TypeMapEntry.4596_to; char* to + }, ; 2479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4597_from, ; char* from + ptr @.TypeMapEntry.4598_to; char* to + }, ; 2480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4599_from, ; char* from + ptr @.TypeMapEntry.4596_to; char* to + }, ; 2481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4600_from, ; char* from + ptr @.TypeMapEntry.4601_to; char* to + }, ; 2482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4602_from, ; char* from + ptr @.TypeMapEntry.4603_to; char* to + }, ; 2483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4604_from, ; char* from + ptr @.TypeMapEntry.4605_to; char* to + }, ; 2484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4606_from, ; char* from + ptr @.TypeMapEntry.4607_to; char* to + }, ; 2485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4608_from, ; char* from + ptr @.TypeMapEntry.4607_to; char* to + }, ; 2486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4609_from, ; char* from + ptr @.TypeMapEntry.4610_to; char* to + }, ; 2487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4611_from, ; char* from + ptr @.TypeMapEntry.4612_to; char* to + }, ; 2488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4613_from, ; char* from + ptr @.TypeMapEntry.4614_to; char* to + }, ; 2489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4615_from, ; char* from + ptr @.TypeMapEntry.4614_to; char* to + }, ; 2490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4616_from, ; char* from + ptr @.TypeMapEntry.4617_to; char* to + }, ; 2491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4618_from, ; char* from + ptr @.TypeMapEntry.4617_to; char* to + }, ; 2492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4619_from, ; char* from + ptr @.TypeMapEntry.4620_to; char* to + }, ; 2493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4621_from, ; char* from + ptr @.TypeMapEntry.4622_to; char* to + }, ; 2494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4623_from, ; char* from + ptr @.TypeMapEntry.4620_to; char* to + }, ; 2495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4624_from, ; char* from + ptr @.TypeMapEntry.4625_to; char* to + }, ; 2496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4626_from, ; char* from + ptr @.TypeMapEntry.4627_to; char* to + }, ; 2497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4628_from, ; char* from + ptr @.TypeMapEntry.4629_to; char* to + }, ; 2498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4630_from, ; char* from + ptr @.TypeMapEntry.4631_to; char* to + }, ; 2499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4632_from, ; char* from + ptr @.TypeMapEntry.4633_to; char* to + }, ; 2500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4634_from, ; char* from + ptr @.TypeMapEntry.4635_to; char* to + }, ; 2501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4636_from, ; char* from + ptr @.TypeMapEntry.4637_to; char* to + }, ; 2502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4638_from, ; char* from + ptr @.TypeMapEntry.4639_to; char* to + }, ; 2503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4640_from, ; char* from + ptr @.TypeMapEntry.4639_to; char* to + }, ; 2504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4641_from, ; char* from + ptr @.TypeMapEntry.4642_to; char* to + }, ; 2505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4643_from, ; char* from + ptr @.TypeMapEntry.4644_to; char* to + }, ; 2506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4645_from, ; char* from + ptr @.TypeMapEntry.4646_to; char* to + }, ; 2507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4647_from, ; char* from + ptr @.TypeMapEntry.4648_to; char* to + }, ; 2508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4649_from, ; char* from + ptr @.TypeMapEntry.4650_to; char* to + }, ; 2509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4651_from, ; char* from + ptr @.TypeMapEntry.4652_to; char* to + }, ; 2510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4653_from, ; char* from + ptr @.TypeMapEntry.4654_to; char* to + }, ; 2511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4655_from, ; char* from + ptr @.TypeMapEntry.4656_to; char* to + }, ; 2512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4657_from, ; char* from + ptr @.TypeMapEntry.4658_to; char* to + }, ; 2513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4659_from, ; char* from + ptr @.TypeMapEntry.4660_to; char* to + }, ; 2514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4661_from, ; char* from + ptr @.TypeMapEntry.4662_to; char* to + }, ; 2515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4663_from, ; char* from + ptr @.TypeMapEntry.4664_to; char* to + }, ; 2516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4665_from, ; char* from + ptr @.TypeMapEntry.4666_to; char* to + }, ; 2517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4667_from, ; char* from + ptr @.TypeMapEntry.4668_to; char* to + }, ; 2518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4669_from, ; char* from + ptr @.TypeMapEntry.4670_to; char* to + }, ; 2519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4671_from, ; char* from + ptr @.TypeMapEntry.4672_to; char* to + }, ; 2520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4673_from, ; char* from + ptr @.TypeMapEntry.4674_to; char* to + }, ; 2521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4675_from, ; char* from + ptr @.TypeMapEntry.4676_to; char* to + }, ; 2522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4677_from, ; char* from + ptr @.TypeMapEntry.4678_to; char* to + }, ; 2523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4679_from, ; char* from + ptr @.TypeMapEntry.4680_to; char* to + }, ; 2524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4681_from, ; char* from + ptr @.TypeMapEntry.4682_to; char* to + }, ; 2525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4683_from, ; char* from + ptr @.TypeMapEntry.4684_to; char* to + }, ; 2526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4685_from, ; char* from + ptr @.TypeMapEntry.4686_to; char* to + }, ; 2527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4687_from, ; char* from + ptr @.TypeMapEntry.4688_to; char* to + }, ; 2528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4689_from, ; char* from + ptr @.TypeMapEntry.4690_to; char* to + }, ; 2529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4691_from, ; char* from + ptr @.TypeMapEntry.4690_to; char* to + }, ; 2530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4692_from, ; char* from + ptr @.TypeMapEntry.4693_to; char* to + }, ; 2531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4694_from, ; char* from + ptr @.TypeMapEntry.4695_to; char* to + }, ; 2532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4696_from, ; char* from + ptr @.TypeMapEntry.4697_to; char* to + }, ; 2533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4698_from, ; char* from + ptr @.TypeMapEntry.4699_to; char* to + }, ; 2534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4700_from, ; char* from + ptr @.TypeMapEntry.4701_to; char* to + }, ; 2535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4702_from, ; char* from + ptr @.TypeMapEntry.4699_to; char* to + }, ; 2536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4703_from, ; char* from + ptr @.TypeMapEntry.4704_to; char* to + }, ; 2537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4705_from, ; char* from + ptr @.TypeMapEntry.4706_to; char* to + }, ; 2538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4707_from, ; char* from + ptr @.TypeMapEntry.4708_to; char* to + }, ; 2539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4709_from, ; char* from + ptr @.TypeMapEntry.4708_to; char* to + }, ; 2540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4710_from, ; char* from + ptr @.TypeMapEntry.4711_to; char* to + }, ; 2541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4712_from, ; char* from + ptr @.TypeMapEntry.4711_to; char* to + }, ; 2542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4713_from, ; char* from + ptr @.TypeMapEntry.4714_to; char* to + }, ; 2543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4715_from, ; char* from + ptr @.TypeMapEntry.4714_to; char* to + }, ; 2544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4716_from, ; char* from + ptr @.TypeMapEntry.4717_to; char* to + }, ; 2545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4718_from, ; char* from + ptr @.TypeMapEntry.4719_to; char* to + }, ; 2546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4720_from, ; char* from + ptr @.TypeMapEntry.4721_to; char* to + }, ; 2547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4722_from, ; char* from + ptr @.TypeMapEntry.4721_to; char* to + }, ; 2548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4723_from, ; char* from + ptr @.TypeMapEntry.4724_to; char* to + }, ; 2549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4725_from, ; char* from + ptr @.TypeMapEntry.4726_to; char* to + }, ; 2550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4727_from, ; char* from + ptr @.TypeMapEntry.4728_to; char* to + }, ; 2551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4729_from, ; char* from + ptr @.TypeMapEntry.4730_to; char* to + }, ; 2552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4731_from, ; char* from + ptr @.TypeMapEntry.4732_to; char* to + }, ; 2553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4733_from, ; char* from + ptr @.TypeMapEntry.4734_to; char* to + }, ; 2554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4735_from, ; char* from + ptr @.TypeMapEntry.4732_to; char* to + }, ; 2555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4736_from, ; char* from + ptr @.TypeMapEntry.4737_to; char* to + }, ; 2556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4738_from, ; char* from + ptr @.TypeMapEntry.4739_to; char* to + }, ; 2557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4740_from, ; char* from + ptr @.TypeMapEntry.4737_to; char* to + }, ; 2558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4741_from, ; char* from + ptr @.TypeMapEntry.4742_to; char* to + }, ; 2559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4743_from, ; char* from + ptr @.TypeMapEntry.4744_to; char* to + }, ; 2560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4745_from, ; char* from + ptr @.TypeMapEntry.4742_to; char* to + }, ; 2561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4746_from, ; char* from + ptr @.TypeMapEntry.4747_to; char* to + }, ; 2562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4748_from, ; char* from + ptr @.TypeMapEntry.4749_to; char* to + }, ; 2563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4750_from, ; char* from + ptr @.TypeMapEntry.4751_to; char* to + }, ; 2564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4752_from, ; char* from + ptr @.TypeMapEntry.4753_to; char* to + }, ; 2565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4754_from, ; char* from + ptr @.TypeMapEntry.4751_to; char* to + }, ; 2566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4755_from, ; char* from + ptr @.TypeMapEntry.4756_to; char* to + }, ; 2567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4757_from, ; char* from + ptr @.TypeMapEntry.4758_to; char* to + }, ; 2568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4759_from, ; char* from + ptr @.TypeMapEntry.4760_to; char* to + }, ; 2569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4761_from, ; char* from + ptr @.TypeMapEntry.4762_to; char* to + }, ; 2570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4763_from, ; char* from + ptr @.TypeMapEntry.4764_to; char* to + }, ; 2571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4765_from, ; char* from + ptr @.TypeMapEntry.4766_to; char* to + }, ; 2572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4767_from, ; char* from + ptr @.TypeMapEntry.4768_to; char* to + }, ; 2573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4769_from, ; char* from + ptr @.TypeMapEntry.4770_to; char* to + }, ; 2574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4771_from, ; char* from + ptr @.TypeMapEntry.4772_to; char* to + }, ; 2575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4773_from, ; char* from + ptr @.TypeMapEntry.4774_to; char* to + }, ; 2576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4775_from, ; char* from + ptr @.TypeMapEntry.4776_to; char* to + }, ; 2577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4777_from, ; char* from + ptr @.TypeMapEntry.4778_to; char* to + }, ; 2578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4779_from, ; char* from + ptr @.TypeMapEntry.4780_to; char* to + }, ; 2579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4781_from, ; char* from + ptr @.TypeMapEntry.4782_to; char* to + }, ; 2580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4783_from, ; char* from + ptr @.TypeMapEntry.4782_to; char* to + }, ; 2581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4784_from, ; char* from + ptr @.TypeMapEntry.4785_to; char* to + }, ; 2582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4786_from, ; char* from + ptr @.TypeMapEntry.4787_to; char* to + }, ; 2583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4788_from, ; char* from + ptr @.TypeMapEntry.4789_to; char* to + }, ; 2584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4790_from, ; char* from + ptr @.TypeMapEntry.4791_to; char* to + }, ; 2585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4792_from, ; char* from + ptr @.TypeMapEntry.4791_to; char* to + }, ; 2586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4793_from, ; char* from + ptr @.TypeMapEntry.4794_to; char* to + }, ; 2587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4795_from, ; char* from + ptr @.TypeMapEntry.4796_to; char* to + }, ; 2588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4797_from, ; char* from + ptr @.TypeMapEntry.4798_to; char* to + }, ; 2589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4799_from, ; char* from + ptr @.TypeMapEntry.4800_to; char* to + }, ; 2590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4801_from, ; char* from + ptr @.TypeMapEntry.4802_to; char* to + }, ; 2591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4803_from, ; char* from + ptr @.TypeMapEntry.4800_to; char* to + }, ; 2592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4804_from, ; char* from + ptr @.TypeMapEntry.4805_to; char* to + }, ; 2593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4806_from, ; char* from + ptr @.TypeMapEntry.4807_to; char* to + }, ; 2594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4808_from, ; char* from + ptr @.TypeMapEntry.4805_to; char* to + }, ; 2595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4809_from, ; char* from + ptr @.TypeMapEntry.4810_to; char* to + }, ; 2596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4811_from, ; char* from + ptr @.TypeMapEntry.4812_to; char* to + }, ; 2597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4813_from, ; char* from + ptr @.TypeMapEntry.4810_to; char* to + }, ; 2598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4814_from, ; char* from + ptr @.TypeMapEntry.4815_to; char* to + }, ; 2599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4816_from, ; char* from + ptr @.TypeMapEntry.4817_to; char* to + }, ; 2600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4818_from, ; char* from + ptr @.TypeMapEntry.4819_to; char* to + }, ; 2601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4820_from, ; char* from + ptr @.TypeMapEntry.4821_to; char* to + }, ; 2602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4822_from, ; char* from + ptr @.TypeMapEntry.4823_to; char* to + }, ; 2603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4824_from, ; char* from + ptr @.TypeMapEntry.4825_to; char* to + }, ; 2604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4826_from, ; char* from + ptr @.TypeMapEntry.4827_to; char* to + }, ; 2605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4828_from, ; char* from + ptr @.TypeMapEntry.4829_to; char* to + }, ; 2606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4830_from, ; char* from + ptr @.TypeMapEntry.4831_to; char* to + }, ; 2607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4832_from, ; char* from + ptr @.TypeMapEntry.4833_to; char* to + }, ; 2608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4834_from, ; char* from + ptr @.TypeMapEntry.4835_to; char* to + }, ; 2609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4836_from, ; char* from + ptr @.TypeMapEntry.4837_to; char* to + }, ; 2610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4838_from, ; char* from + ptr @.TypeMapEntry.4839_to; char* to + }, ; 2611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4840_from, ; char* from + ptr @.TypeMapEntry.4841_to; char* to + }, ; 2612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4842_from, ; char* from + ptr @.TypeMapEntry.4839_to; char* to + }, ; 2613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4843_from, ; char* from + ptr @.TypeMapEntry.4844_to; char* to + }, ; 2614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4845_from, ; char* from + ptr @.TypeMapEntry.4846_to; char* to + }, ; 2615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4847_from, ; char* from + ptr @.TypeMapEntry.4848_to; char* to + }, ; 2616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4849_from, ; char* from + ptr @.TypeMapEntry.4846_to; char* to + }, ; 2617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4850_from, ; char* from + ptr @.TypeMapEntry.4851_to; char* to + }, ; 2618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4852_from, ; char* from + ptr @.TypeMapEntry.4853_to; char* to + }, ; 2619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4854_from, ; char* from + ptr @.TypeMapEntry.4851_to; char* to + }, ; 2620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4855_from, ; char* from + ptr @.TypeMapEntry.4856_to; char* to + }, ; 2621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4857_from, ; char* from + ptr @.TypeMapEntry.4858_to; char* to + }, ; 2622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4859_from, ; char* from + ptr @.TypeMapEntry.4860_to; char* to + }, ; 2623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4861_from, ; char* from + ptr @.TypeMapEntry.4862_to; char* to + }, ; 2624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4863_from, ; char* from + ptr @.TypeMapEntry.4864_to; char* to + }, ; 2625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4865_from, ; char* from + ptr @.TypeMapEntry.4866_to; char* to + }, ; 2626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4867_from, ; char* from + ptr @.TypeMapEntry.4868_to; char* to + }, ; 2627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4869_from, ; char* from + ptr @.TypeMapEntry.4870_to; char* to + }, ; 2628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4871_from, ; char* from + ptr @.TypeMapEntry.4870_to; char* to + }, ; 2629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4872_from, ; char* from + ptr @.TypeMapEntry.4873_to; char* to + }, ; 2630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4874_from, ; char* from + ptr @.TypeMapEntry.4873_to; char* to + }, ; 2631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4875_from, ; char* from + ptr @.TypeMapEntry.4876_to; char* to + }, ; 2632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4877_from, ; char* from + ptr @.TypeMapEntry.4878_to; char* to + }, ; 2633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4879_from, ; char* from + ptr @.TypeMapEntry.4880_to; char* to + }, ; 2634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4881_from, ; char* from + ptr @.TypeMapEntry.4882_to; char* to + }, ; 2635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4883_from, ; char* from + ptr @.TypeMapEntry.4884_to; char* to + }, ; 2636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4885_from, ; char* from + ptr @.TypeMapEntry.4886_to; char* to + }, ; 2637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4887_from, ; char* from + ptr @.TypeMapEntry.4886_to; char* to + }, ; 2638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4888_from, ; char* from + ptr @.TypeMapEntry.4889_to; char* to + }, ; 2639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4890_from, ; char* from + ptr @.TypeMapEntry.4891_to; char* to + }, ; 2640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4892_from, ; char* from + ptr @.TypeMapEntry.4891_to; char* to + }, ; 2641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4893_from, ; char* from + ptr @.TypeMapEntry.4894_to; char* to + }, ; 2642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4895_from, ; char* from + ptr @.TypeMapEntry.4896_to; char* to + }, ; 2643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4897_from, ; char* from + ptr @.TypeMapEntry.4894_to; char* to + }, ; 2644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4898_from, ; char* from + ptr @.TypeMapEntry.4899_to; char* to + }, ; 2645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4900_from, ; char* from + ptr @.TypeMapEntry.4901_to; char* to + }, ; 2646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4902_from, ; char* from + ptr @.TypeMapEntry.4899_to; char* to + }, ; 2647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4903_from, ; char* from + ptr @.TypeMapEntry.4904_to; char* to + }, ; 2648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4905_from, ; char* from + ptr @.TypeMapEntry.4904_to; char* to + }, ; 2649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4906_from, ; char* from + ptr @.TypeMapEntry.4907_to; char* to + }, ; 2650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4908_from, ; char* from + ptr @.TypeMapEntry.4909_to; char* to + }, ; 2651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4910_from, ; char* from + ptr @.TypeMapEntry.4911_to; char* to + }, ; 2652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4912_from, ; char* from + ptr @.TypeMapEntry.4913_to; char* to + }, ; 2653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4914_from, ; char* from + ptr @.TypeMapEntry.4915_to; char* to + }, ; 2654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4916_from, ; char* from + ptr @.TypeMapEntry.4917_to; char* to + }, ; 2655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4918_from, ; char* from + ptr @.TypeMapEntry.4919_to; char* to + }, ; 2656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4920_from, ; char* from + ptr @.TypeMapEntry.4921_to; char* to + }, ; 2657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4922_from, ; char* from + ptr @.TypeMapEntry.4923_to; char* to + }, ; 2658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4924_from, ; char* from + ptr @.TypeMapEntry.4925_to; char* to + }, ; 2659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4926_from, ; char* from + ptr @.TypeMapEntry.4927_to; char* to + }, ; 2660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4928_from, ; char* from + ptr @.TypeMapEntry.4929_to; char* to + }, ; 2661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4930_from, ; char* from + ptr @.TypeMapEntry.4931_to; char* to + }, ; 2662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4932_from, ; char* from + ptr @.TypeMapEntry.4933_to; char* to + }, ; 2663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4934_from, ; char* from + ptr @.TypeMapEntry.4935_to; char* to + }, ; 2664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4936_from, ; char* from + ptr @.TypeMapEntry.4937_to; char* to + }, ; 2665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4938_from, ; char* from + ptr @.TypeMapEntry.4939_to; char* to + }, ; 2666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4940_from, ; char* from + ptr @.TypeMapEntry.4941_to; char* to + }, ; 2667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4942_from, ; char* from + ptr @.TypeMapEntry.4943_to; char* to + }, ; 2668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4944_from, ; char* from + ptr @.TypeMapEntry.4945_to; char* to + }, ; 2669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4946_from, ; char* from + ptr @.TypeMapEntry.4947_to; char* to + }, ; 2670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4948_from, ; char* from + ptr @.TypeMapEntry.4949_to; char* to + }, ; 2671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4950_from, ; char* from + ptr @.TypeMapEntry.4951_to; char* to + }, ; 2672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4952_from, ; char* from + ptr @.TypeMapEntry.4953_to; char* to + }, ; 2673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4954_from, ; char* from + ptr @.TypeMapEntry.4955_to; char* to + }, ; 2674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4956_from, ; char* from + ptr @.TypeMapEntry.4957_to; char* to + }, ; 2675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4958_from, ; char* from + ptr @.TypeMapEntry.4959_to; char* to + }, ; 2676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4960_from, ; char* from + ptr @.TypeMapEntry.4959_to; char* to + }, ; 2677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4961_from, ; char* from + ptr @.TypeMapEntry.4962_to; char* to + }, ; 2678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4963_from, ; char* from + ptr @.TypeMapEntry.4964_to; char* to + }, ; 2679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4965_from, ; char* from + ptr @.TypeMapEntry.4964_to; char* to + }, ; 2680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4966_from, ; char* from + ptr @.TypeMapEntry.4967_to; char* to + }, ; 2681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4968_from, ; char* from + ptr @.TypeMapEntry.4967_to; char* to + }, ; 2682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4969_from, ; char* from + ptr @.TypeMapEntry.4970_to; char* to + }, ; 2683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4971_from, ; char* from + ptr @.TypeMapEntry.4970_to; char* to + }, ; 2684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4972_from, ; char* from + ptr @.TypeMapEntry.4973_to; char* to + }, ; 2685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4974_from, ; char* from + ptr @.TypeMapEntry.4973_to; char* to + }, ; 2686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4975_from, ; char* from + ptr @.TypeMapEntry.4976_to; char* to + }, ; 2687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4977_from, ; char* from + ptr @.TypeMapEntry.4976_to; char* to + }, ; 2688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4978_from, ; char* from + ptr @.TypeMapEntry.4979_to; char* to + }, ; 2689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4980_from, ; char* from + ptr @.TypeMapEntry.4981_to; char* to + }, ; 2690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4982_from, ; char* from + ptr @.TypeMapEntry.4983_to; char* to + }, ; 2691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4984_from, ; char* from + ptr @.TypeMapEntry.4985_to; char* to + }, ; 2692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4986_from, ; char* from + ptr @.TypeMapEntry.4987_to; char* to + }, ; 2693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4988_from, ; char* from + ptr @.TypeMapEntry.4989_to; char* to + }, ; 2694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4990_from, ; char* from + ptr @.TypeMapEntry.4987_to; char* to + }, ; 2695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4991_from, ; char* from + ptr @.TypeMapEntry.4992_to; char* to + }, ; 2696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4993_from, ; char* from + ptr @.TypeMapEntry.4992_to; char* to + }, ; 2697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4994_from, ; char* from + ptr @.TypeMapEntry.4995_to; char* to + }, ; 2698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4996_from, ; char* from + ptr @.TypeMapEntry.4995_to; char* to + }, ; 2699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4997_from, ; char* from + ptr @.TypeMapEntry.4998_to; char* to + }, ; 2700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4999_from, ; char* from + ptr @.TypeMapEntry.5000_to; char* to + }, ; 2701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5001_from, ; char* from + ptr @.TypeMapEntry.5002_to; char* to + }, ; 2702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5003_from, ; char* from + ptr @.TypeMapEntry.5004_to; char* to + }, ; 2703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5005_from, ; char* from + ptr @.TypeMapEntry.5006_to; char* to + }, ; 2704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5007_from, ; char* from + ptr @.TypeMapEntry.5008_to; char* to + }, ; 2705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5009_from, ; char* from + ptr @.TypeMapEntry.5010_to; char* to + }, ; 2706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5011_from, ; char* from + ptr @.TypeMapEntry.5010_to; char* to + }, ; 2707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5012_from, ; char* from + ptr @.TypeMapEntry.5013_to; char* to + }, ; 2708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5014_from, ; char* from + ptr @.TypeMapEntry.5015_to; char* to + }, ; 2709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5016_from, ; char* from + ptr @.TypeMapEntry.5017_to; char* to + }, ; 2710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5018_from, ; char* from + ptr @.TypeMapEntry.5019_to; char* to + }, ; 2711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5020_from, ; char* from + ptr @.TypeMapEntry.5021_to; char* to + }, ; 2712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5022_from, ; char* from + ptr @.TypeMapEntry.5023_to; char* to + }, ; 2713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5024_from, ; char* from + ptr @.TypeMapEntry.5025_to; char* to + }, ; 2714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5026_from, ; char* from + ptr @.TypeMapEntry.5027_to; char* to + }, ; 2715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5028_from, ; char* from + ptr @.TypeMapEntry.5029_to; char* to + }, ; 2716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5030_from, ; char* from + ptr @.TypeMapEntry.5031_to; char* to + }, ; 2717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5032_from, ; char* from + ptr @.TypeMapEntry.5033_to; char* to + }, ; 2718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5034_from, ; char* from + ptr @.TypeMapEntry.5035_to; char* to + }, ; 2719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5036_from, ; char* from + ptr @.TypeMapEntry.5037_to; char* to + }, ; 2720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5038_from, ; char* from + ptr @.TypeMapEntry.5037_to; char* to + }, ; 2721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5039_from, ; char* from + ptr @.TypeMapEntry.5040_to; char* to + }, ; 2722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5041_from, ; char* from + ptr @.TypeMapEntry.5042_to; char* to + }, ; 2723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5043_from, ; char* from + ptr @.TypeMapEntry.5044_to; char* to + }, ; 2724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5045_from, ; char* from + ptr @.TypeMapEntry.5046_to; char* to + }, ; 2725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5047_from, ; char* from + ptr @.TypeMapEntry.5048_to; char* to + }, ; 2726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5049_from, ; char* from + ptr @.TypeMapEntry.5046_to; char* to + }, ; 2727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5050_from, ; char* from + ptr @.TypeMapEntry.5051_to; char* to + }, ; 2728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5052_from, ; char* from + ptr @.TypeMapEntry.5053_to; char* to + }, ; 2729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5054_from, ; char* from + ptr @.TypeMapEntry.5055_to; char* to + }, ; 2730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5056_from, ; char* from + ptr @.TypeMapEntry.5057_to; char* to + }, ; 2731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5058_from, ; char* from + ptr @.TypeMapEntry.5059_to; char* to + }, ; 2732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5060_from, ; char* from + ptr @.TypeMapEntry.5061_to; char* to + }, ; 2733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5062_from, ; char* from + ptr @.TypeMapEntry.5061_to; char* to + }, ; 2734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5063_from, ; char* from + ptr @.TypeMapEntry.5064_to; char* to + }, ; 2735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5065_from, ; char* from + ptr @.TypeMapEntry.5066_to; char* to + }, ; 2736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5067_from, ; char* from + ptr @.TypeMapEntry.5068_to; char* to + }, ; 2737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5069_from, ; char* from + ptr @.TypeMapEntry.5070_to; char* to + }, ; 2738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5071_from, ; char* from + ptr @.TypeMapEntry.5070_to; char* to + }, ; 2739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5072_from, ; char* from + ptr @.TypeMapEntry.5073_to; char* to + }, ; 2740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5074_from, ; char* from + ptr @.TypeMapEntry.5075_to; char* to + }, ; 2741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5076_from, ; char* from + ptr @.TypeMapEntry.5077_to; char* to + }, ; 2742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5078_from, ; char* from + ptr @.TypeMapEntry.5079_to; char* to + }, ; 2743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5080_from, ; char* from + ptr @.TypeMapEntry.5081_to; char* to + }, ; 2744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5082_from, ; char* from + ptr @.TypeMapEntry.5083_to; char* to + }, ; 2745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5084_from, ; char* from + ptr @.TypeMapEntry.5083_to; char* to + }, ; 2746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5085_from, ; char* from + ptr @.TypeMapEntry.5086_to; char* to + }, ; 2747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5087_from, ; char* from + ptr @.TypeMapEntry.5088_to; char* to + }, ; 2748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5089_from, ; char* from + ptr @.TypeMapEntry.5090_to; char* to + }, ; 2749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5091_from, ; char* from + ptr @.TypeMapEntry.5092_to; char* to + }, ; 2750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5093_from, ; char* from + ptr @.TypeMapEntry.5094_to; char* to + }, ; 2751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5095_from, ; char* from + ptr @.TypeMapEntry.5096_to; char* to + }, ; 2752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5097_from, ; char* from + ptr @.TypeMapEntry.5098_to; char* to + }, ; 2753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5099_from, ; char* from + ptr @.TypeMapEntry.5098_to; char* to + }, ; 2754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5100_from, ; char* from + ptr @.TypeMapEntry.5101_to; char* to + }, ; 2755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5102_from, ; char* from + ptr @.TypeMapEntry.5101_to; char* to + }, ; 2756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5103_from, ; char* from + ptr @.TypeMapEntry.5104_to; char* to + }, ; 2757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5105_from, ; char* from + ptr @.TypeMapEntry.5104_to; char* to + }, ; 2758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5106_from, ; char* from + ptr @.TypeMapEntry.5107_to; char* to + }, ; 2759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5108_from, ; char* from + ptr @.TypeMapEntry.5107_to; char* to + }, ; 2760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5109_from, ; char* from + ptr @.TypeMapEntry.5110_to; char* to + }, ; 2761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5111_from, ; char* from + ptr @.TypeMapEntry.5112_to; char* to + }, ; 2762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5113_from, ; char* from + ptr @.TypeMapEntry.5114_to; char* to + }, ; 2763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5115_from, ; char* from + ptr @.TypeMapEntry.5116_to; char* to + }, ; 2764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5117_from, ; char* from + ptr @.TypeMapEntry.5118_to; char* to + }, ; 2765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5119_from, ; char* from + ptr @.TypeMapEntry.5120_to; char* to + }, ; 2766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5121_from, ; char* from + ptr @.TypeMapEntry.5122_to; char* to + }, ; 2767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5123_from, ; char* from + ptr @.TypeMapEntry.5122_to; char* to + }, ; 2768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5124_from, ; char* from + ptr @.TypeMapEntry.5125_to; char* to + }, ; 2769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5126_from, ; char* from + ptr @.TypeMapEntry.5127_to; char* to + }, ; 2770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5128_from, ; char* from + ptr @.TypeMapEntry.5127_to; char* to + }, ; 2771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5129_from, ; char* from + ptr @.TypeMapEntry.5130_to; char* to + }, ; 2772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5131_from, ; char* from + ptr @.TypeMapEntry.5132_to; char* to + }, ; 2773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5133_from, ; char* from + ptr @.TypeMapEntry.5134_to; char* to + }, ; 2774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5135_from, ; char* from + ptr @.TypeMapEntry.5136_to; char* to + }, ; 2775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5137_from, ; char* from + ptr @.TypeMapEntry.5136_to; char* to + }, ; 2776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5138_from, ; char* from + ptr @.TypeMapEntry.5139_to; char* to + }, ; 2777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5140_from, ; char* from + ptr @.TypeMapEntry.5139_to; char* to + }, ; 2778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5141_from, ; char* from + ptr @.TypeMapEntry.5142_to; char* to + }, ; 2779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5143_from, ; char* from + ptr @.TypeMapEntry.5144_to; char* to + }, ; 2780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5145_from, ; char* from + ptr @.TypeMapEntry.5146_to; char* to + }, ; 2781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5147_from, ; char* from + ptr @.TypeMapEntry.5148_to; char* to + }, ; 2782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5149_from, ; char* from + ptr @.TypeMapEntry.5150_to; char* to + }, ; 2783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5151_from, ; char* from + ptr @.TypeMapEntry.5152_to; char* to + }, ; 2784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5153_from, ; char* from + ptr @.TypeMapEntry.5152_to; char* to + }, ; 2785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5154_from, ; char* from + ptr @.TypeMapEntry.5155_to; char* to + }, ; 2786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5156_from, ; char* from + ptr @.TypeMapEntry.5155_to; char* to + }, ; 2787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5157_from, ; char* from + ptr @.TypeMapEntry.5158_to; char* to + }, ; 2788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5159_from, ; char* from + ptr @.TypeMapEntry.5158_to; char* to + }, ; 2789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5160_from, ; char* from + ptr @.TypeMapEntry.5161_to; char* to + }, ; 2790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5162_from, ; char* from + ptr @.TypeMapEntry.5161_to; char* to + }, ; 2791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5163_from, ; char* from + ptr @.TypeMapEntry.5164_to; char* to + }, ; 2792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5165_from, ; char* from + ptr @.TypeMapEntry.5166_to; char* to + }, ; 2793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5167_from, ; char* from + ptr @.TypeMapEntry.5164_to; char* to + }, ; 2794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5168_from, ; char* from + ptr @.TypeMapEntry.5169_to; char* to + }, ; 2795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5170_from, ; char* from + ptr @.TypeMapEntry.5171_to; char* to + }, ; 2796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5172_from, ; char* from + ptr @.TypeMapEntry.5171_to; char* to + }, ; 2797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5173_from, ; char* from + ptr @.TypeMapEntry.5174_to; char* to + }, ; 2798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5175_from, ; char* from + ptr @.TypeMapEntry.5174_to; char* to + }, ; 2799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5176_from, ; char* from + ptr @.TypeMapEntry.5177_to; char* to + }, ; 2800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5178_from, ; char* from + ptr @.TypeMapEntry.5179_to; char* to + }, ; 2801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5180_from, ; char* from + ptr @.TypeMapEntry.5179_to; char* to + }, ; 2802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5181_from, ; char* from + ptr @.TypeMapEntry.5182_to; char* to + }, ; 2803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5183_from, ; char* from + ptr @.TypeMapEntry.5184_to; char* to + }, ; 2804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5185_from, ; char* from + ptr @.TypeMapEntry.5186_to; char* to + }, ; 2805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5187_from, ; char* from + ptr @.TypeMapEntry.5188_to; char* to + }, ; 2806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5189_from, ; char* from + ptr @.TypeMapEntry.5190_to; char* to + }, ; 2807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5191_from, ; char* from + ptr @.TypeMapEntry.5192_to; char* to + }, ; 2808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5193_from, ; char* from + ptr @.TypeMapEntry.5194_to; char* to + }, ; 2809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5195_from, ; char* from + ptr @.TypeMapEntry.5196_to; char* to + }, ; 2810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5197_from, ; char* from + ptr @.TypeMapEntry.5198_to; char* to + }, ; 2811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5199_from, ; char* from + ptr @.TypeMapEntry.5200_to; char* to + }, ; 2812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5201_from, ; char* from + ptr @.TypeMapEntry.5202_to; char* to + }, ; 2813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5203_from, ; char* from + ptr @.TypeMapEntry.5202_to; char* to + }, ; 2814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5204_from, ; char* from + ptr @.TypeMapEntry.5205_to; char* to + }, ; 2815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5206_from, ; char* from + ptr @.TypeMapEntry.5205_to; char* to + }, ; 2816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5207_from, ; char* from + ptr @.TypeMapEntry.5208_to; char* to + }, ; 2817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5209_from, ; char* from + ptr @.TypeMapEntry.5210_to; char* to + }, ; 2818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5211_from, ; char* from + ptr @.TypeMapEntry.5212_to; char* to + }, ; 2819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5213_from, ; char* from + ptr @.TypeMapEntry.5214_to; char* to + }, ; 2820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5215_from, ; char* from + ptr @.TypeMapEntry.5214_to; char* to + }, ; 2821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5216_from, ; char* from + ptr @.TypeMapEntry.5217_to; char* to + }, ; 2822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5218_from, ; char* from + ptr @.TypeMapEntry.5217_to; char* to + }, ; 2823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5219_from, ; char* from + ptr @.TypeMapEntry.5220_to; char* to + }, ; 2824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5221_from, ; char* from + ptr @.TypeMapEntry.5222_to; char* to + }, ; 2825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5223_from, ; char* from + ptr @.TypeMapEntry.5224_to; char* to + }, ; 2826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5225_from, ; char* from + ptr @.TypeMapEntry.5226_to; char* to + }, ; 2827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5227_from, ; char* from + ptr @.TypeMapEntry.5228_to; char* to + }, ; 2828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5229_from, ; char* from + ptr @.TypeMapEntry.5228_to; char* to + }, ; 2829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5230_from, ; char* from + ptr @.TypeMapEntry.5231_to; char* to + }, ; 2830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5232_from, ; char* from + ptr @.TypeMapEntry.5231_to; char* to + }, ; 2831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5233_from, ; char* from + ptr @.TypeMapEntry.5234_to; char* to + }, ; 2832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5235_from, ; char* from + ptr @.TypeMapEntry.5236_to; char* to + }, ; 2833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5237_from, ; char* from + ptr @.TypeMapEntry.5238_to; char* to + }, ; 2834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5239_from, ; char* from + ptr @.TypeMapEntry.5238_to; char* to + }, ; 2835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5240_from, ; char* from + ptr @.TypeMapEntry.5241_to; char* to + }, ; 2836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5242_from, ; char* from + ptr @.TypeMapEntry.5243_to; char* to + }, ; 2837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5244_from, ; char* from + ptr @.TypeMapEntry.5245_to; char* to + }, ; 2838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5246_from, ; char* from + ptr @.TypeMapEntry.5247_to; char* to + }, ; 2839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5248_from, ; char* from + ptr @.TypeMapEntry.5249_to; char* to + }, ; 2840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5250_from, ; char* from + ptr @.TypeMapEntry.5251_to; char* to + }, ; 2841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5252_from, ; char* from + ptr @.TypeMapEntry.5253_to; char* to + }, ; 2842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5254_from, ; char* from + ptr @.TypeMapEntry.5255_to; char* to + }, ; 2843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5256_from, ; char* from + ptr @.TypeMapEntry.5257_to; char* to + }, ; 2844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5258_from, ; char* from + ptr @.TypeMapEntry.5259_to; char* to + }, ; 2845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5260_from, ; char* from + ptr @.TypeMapEntry.5261_to; char* to + }, ; 2846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5262_from, ; char* from + ptr @.TypeMapEntry.5263_to; char* to + }, ; 2847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5264_from, ; char* from + ptr @.TypeMapEntry.5263_to; char* to + }, ; 2848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5265_from, ; char* from + ptr @.TypeMapEntry.5266_to; char* to + }, ; 2849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5267_from, ; char* from + ptr @.TypeMapEntry.5268_to; char* to + }, ; 2850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5269_from, ; char* from + ptr @.TypeMapEntry.5270_to; char* to + }, ; 2851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5271_from, ; char* from + ptr @.TypeMapEntry.5272_to; char* to + }, ; 2852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5273_from, ; char* from + ptr @.TypeMapEntry.5274_to; char* to + }, ; 2853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5275_from, ; char* from + ptr @.TypeMapEntry.5276_to; char* to + }, ; 2854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5277_from, ; char* from + ptr @.TypeMapEntry.5278_to; char* to + }, ; 2855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5279_from, ; char* from + ptr @.TypeMapEntry.5280_to; char* to + }, ; 2856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5281_from, ; char* from + ptr @.TypeMapEntry.5280_to; char* to + }, ; 2857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5282_from, ; char* from + ptr @.TypeMapEntry.5283_to; char* to + }, ; 2858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5284_from, ; char* from + ptr @.TypeMapEntry.5285_to; char* to + }, ; 2859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5286_from, ; char* from + ptr @.TypeMapEntry.5287_to; char* to + }, ; 2860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5288_from, ; char* from + ptr @.TypeMapEntry.5289_to; char* to + }, ; 2861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5290_from, ; char* from + ptr @.TypeMapEntry.5289_to; char* to + }, ; 2862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5291_from, ; char* from + ptr @.TypeMapEntry.5292_to; char* to + }, ; 2863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5293_from, ; char* from + ptr @.TypeMapEntry.5292_to; char* to + }, ; 2864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5294_from, ; char* from + ptr @.TypeMapEntry.5295_to; char* to + }, ; 2865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5296_from, ; char* from + ptr @.TypeMapEntry.5295_to; char* to + }, ; 2866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5297_from, ; char* from + ptr @.TypeMapEntry.5298_to; char* to + }, ; 2867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5299_from, ; char* from + ptr @.TypeMapEntry.5298_to; char* to + }, ; 2868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5300_from, ; char* from + ptr @.TypeMapEntry.5301_to; char* to + }, ; 2869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5302_from, ; char* from + ptr @.TypeMapEntry.5301_to; char* to + }, ; 2870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5303_from, ; char* from + ptr @.TypeMapEntry.5304_to; char* to + }, ; 2871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5305_from, ; char* from + ptr @.TypeMapEntry.5304_to; char* to + }, ; 2872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5306_from, ; char* from + ptr @.TypeMapEntry.5307_to; char* to + }, ; 2873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5308_from, ; char* from + ptr @.TypeMapEntry.5307_to; char* to + }, ; 2874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5309_from, ; char* from + ptr @.TypeMapEntry.5310_to; char* to + }, ; 2875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5311_from, ; char* from + ptr @.TypeMapEntry.5312_to; char* to + }, ; 2876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5313_from, ; char* from + ptr @.TypeMapEntry.5314_to; char* to + }, ; 2877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5315_from, ; char* from + ptr @.TypeMapEntry.5316_to; char* to + }, ; 2878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5317_from, ; char* from + ptr @.TypeMapEntry.5318_to; char* to + }, ; 2879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5319_from, ; char* from + ptr @.TypeMapEntry.5320_to; char* to + }, ; 2880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5321_from, ; char* from + ptr @.TypeMapEntry.5322_to; char* to + }, ; 2881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5323_from, ; char* from + ptr @.TypeMapEntry.5324_to; char* to + }, ; 2882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5325_from, ; char* from + ptr @.TypeMapEntry.5326_to; char* to + }, ; 2883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5327_from, ; char* from + ptr @.TypeMapEntry.5328_to; char* to + }, ; 2884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5329_from, ; char* from + ptr @.TypeMapEntry.5330_to; char* to + }, ; 2885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5331_from, ; char* from + ptr @.TypeMapEntry.5332_to; char* to + }, ; 2886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5333_from, ; char* from + ptr @.TypeMapEntry.5334_to; char* to + }, ; 2887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5335_from, ; char* from + ptr @.TypeMapEntry.5336_to; char* to + }, ; 2888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5337_from, ; char* from + ptr @.TypeMapEntry.5338_to; char* to + }, ; 2889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5339_from, ; char* from + ptr @.TypeMapEntry.5340_to; char* to + }, ; 2890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5341_from, ; char* from + ptr @.TypeMapEntry.5342_to; char* to + }, ; 2891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5343_from, ; char* from + ptr @.TypeMapEntry.5344_to; char* to + }, ; 2892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5345_from, ; char* from + ptr @.TypeMapEntry.5346_to; char* to + }, ; 2893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5347_from, ; char* from + ptr @.TypeMapEntry.5348_to; char* to + }, ; 2894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5349_from, ; char* from + ptr @.TypeMapEntry.5350_to; char* to + }, ; 2895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5351_from, ; char* from + ptr @.TypeMapEntry.5352_to; char* to + }, ; 2896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5353_from, ; char* from + ptr @.TypeMapEntry.5354_to; char* to + }, ; 2897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5355_from, ; char* from + ptr @.TypeMapEntry.5356_to; char* to + }, ; 2898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5357_from, ; char* from + ptr @.TypeMapEntry.5358_to; char* to + }, ; 2899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5359_from, ; char* from + ptr @.TypeMapEntry.5360_to; char* to + }, ; 2900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5361_from, ; char* from + ptr @.TypeMapEntry.5362_to; char* to + }, ; 2901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5363_from, ; char* from + ptr @.TypeMapEntry.5362_to; char* to + }, ; 2902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5364_from, ; char* from + ptr @.TypeMapEntry.5365_to; char* to + }, ; 2903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5366_from, ; char* from + ptr @.TypeMapEntry.5367_to; char* to + }, ; 2904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5368_from, ; char* from + ptr @.TypeMapEntry.5369_to; char* to + }, ; 2905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5370_from, ; char* from + ptr @.TypeMapEntry.5371_to; char* to + }, ; 2906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5372_from, ; char* from + ptr @.TypeMapEntry.5369_to; char* to + }, ; 2907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5373_from, ; char* from + ptr @.TypeMapEntry.5374_to; char* to + }, ; 2908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5375_from, ; char* from + ptr @.TypeMapEntry.5376_to; char* to + }, ; 2909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5377_from, ; char* from + ptr @.TypeMapEntry.5374_to; char* to + }, ; 2910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5378_from, ; char* from + ptr @.TypeMapEntry.5379_to; char* to + }, ; 2911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5380_from, ; char* from + ptr @.TypeMapEntry.5381_to; char* to + }, ; 2912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5382_from, ; char* from + ptr @.TypeMapEntry.5379_to; char* to + }, ; 2913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5383_from, ; char* from + ptr @.TypeMapEntry.5384_to; char* to + }, ; 2914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5385_from, ; char* from + ptr @.TypeMapEntry.5384_to; char* to + }, ; 2915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5386_from, ; char* from + ptr @.TypeMapEntry.5387_to; char* to + }, ; 2916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5388_from, ; char* from + ptr @.TypeMapEntry.5389_to; char* to + }, ; 2917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5390_from, ; char* from + ptr @.TypeMapEntry.5391_to; char* to + }, ; 2918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5392_from, ; char* from + ptr @.TypeMapEntry.5393_to; char* to + }, ; 2919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5394_from, ; char* from + ptr @.TypeMapEntry.5393_to; char* to + }, ; 2920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5395_from, ; char* from + ptr @.TypeMapEntry.5396_to; char* to + }, ; 2921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5397_from, ; char* from + ptr @.TypeMapEntry.5398_to; char* to + }, ; 2922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5399_from, ; char* from + ptr @.TypeMapEntry.5400_to; char* to + }, ; 2923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5401_from, ; char* from + ptr @.TypeMapEntry.5400_to; char* to + }, ; 2924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5402_from, ; char* from + ptr @.TypeMapEntry.5403_to; char* to + }, ; 2925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5404_from, ; char* from + ptr @.TypeMapEntry.5405_to; char* to + }, ; 2926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5406_from, ; char* from + ptr @.TypeMapEntry.5407_to; char* to + }, ; 2927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5408_from, ; char* from + ptr @.TypeMapEntry.5409_to; char* to + }, ; 2928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5410_from, ; char* from + ptr @.TypeMapEntry.5411_to; char* to + }, ; 2929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5412_from, ; char* from + ptr @.TypeMapEntry.5413_to; char* to + }, ; 2930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5414_from, ; char* from + ptr @.TypeMapEntry.5415_to; char* to + }, ; 2931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5416_from, ; char* from + ptr @.TypeMapEntry.5417_to; char* to + }, ; 2932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5418_from, ; char* from + ptr @.TypeMapEntry.5419_to; char* to + }, ; 2933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5420_from, ; char* from + ptr @.TypeMapEntry.5417_to; char* to + }, ; 2934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5421_from, ; char* from + ptr @.TypeMapEntry.5422_to; char* to + }, ; 2935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5423_from, ; char* from + ptr @.TypeMapEntry.5424_to; char* to + }, ; 2936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5425_from, ; char* from + ptr @.TypeMapEntry.5426_to; char* to + }, ; 2937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5427_from, ; char* from + ptr @.TypeMapEntry.5428_to; char* to + }, ; 2938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5429_from, ; char* from + ptr @.TypeMapEntry.5430_to; char* to + }, ; 2939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5431_from, ; char* from + ptr @.TypeMapEntry.5432_to; char* to + }, ; 2940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5433_from, ; char* from + ptr @.TypeMapEntry.5434_to; char* to + }, ; 2941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5435_from, ; char* from + ptr @.TypeMapEntry.5436_to; char* to + }, ; 2942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5437_from, ; char* from + ptr @.TypeMapEntry.5438_to; char* to + }, ; 2943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5439_from, ; char* from + ptr @.TypeMapEntry.5440_to; char* to + }, ; 2944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5441_from, ; char* from + ptr @.TypeMapEntry.5442_to; char* to + }, ; 2945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5443_from, ; char* from + ptr @.TypeMapEntry.5444_to; char* to + }, ; 2946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5445_from, ; char* from + ptr @.TypeMapEntry.5444_to; char* to + }, ; 2947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5446_from, ; char* from + ptr @.TypeMapEntry.5447_to; char* to + }, ; 2948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5448_from, ; char* from + ptr @.TypeMapEntry.5449_to; char* to + }, ; 2949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5450_from, ; char* from + ptr @.TypeMapEntry.5451_to; char* to + }, ; 2950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5452_from, ; char* from + ptr @.TypeMapEntry.5453_to; char* to + }, ; 2951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5454_from, ; char* from + ptr @.TypeMapEntry.5455_to; char* to + }, ; 2952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5456_from, ; char* from + ptr @.TypeMapEntry.5457_to; char* to + }, ; 2953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5458_from, ; char* from + ptr @.TypeMapEntry.5459_to; char* to + }, ; 2954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5460_from, ; char* from + ptr @.TypeMapEntry.5461_to; char* to + }, ; 2955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5462_from, ; char* from + ptr @.TypeMapEntry.5463_to; char* to + }, ; 2956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5464_from, ; char* from + ptr @.TypeMapEntry.5463_to; char* to + }, ; 2957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5465_from, ; char* from + ptr @.TypeMapEntry.5466_to; char* to + }, ; 2958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5467_from, ; char* from + ptr @.TypeMapEntry.5466_to; char* to + }, ; 2959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5468_from, ; char* from + ptr @.TypeMapEntry.5469_to; char* to + }, ; 2960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5470_from, ; char* from + ptr @.TypeMapEntry.5471_to; char* to + }, ; 2961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5472_from, ; char* from + ptr @.TypeMapEntry.5473_to; char* to + }, ; 2962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5474_from, ; char* from + ptr @.TypeMapEntry.5475_to; char* to + }, ; 2963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5476_from, ; char* from + ptr @.TypeMapEntry.5477_to; char* to + }, ; 2964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5478_from, ; char* from + ptr @.TypeMapEntry.5479_to; char* to + }, ; 2965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5480_from, ; char* from + ptr @.TypeMapEntry.5481_to; char* to + }, ; 2966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5482_from, ; char* from + ptr @.TypeMapEntry.5483_to; char* to + }, ; 2967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5484_from, ; char* from + ptr @.TypeMapEntry.5485_to; char* to + }, ; 2968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5486_from, ; char* from + ptr @.TypeMapEntry.5487_to; char* to + }, ; 2969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5488_from, ; char* from + ptr @.TypeMapEntry.5487_to; char* to + }, ; 2970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5489_from, ; char* from + ptr @.TypeMapEntry.5490_to; char* to + }, ; 2971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5491_from, ; char* from + ptr @.TypeMapEntry.5492_to; char* to + }, ; 2972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5493_from, ; char* from + ptr @.TypeMapEntry.5492_to; char* to + }, ; 2973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5494_from, ; char* from + ptr @.TypeMapEntry.5495_to; char* to + }, ; 2974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5496_from, ; char* from + ptr @.TypeMapEntry.5497_to; char* to + }, ; 2975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5498_from, ; char* from + ptr @.TypeMapEntry.5499_to; char* to + }, ; 2976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5500_from, ; char* from + ptr @.TypeMapEntry.5501_to; char* to + }, ; 2977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5502_from, ; char* from + ptr @.TypeMapEntry.5503_to; char* to + }, ; 2978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5504_from, ; char* from + ptr @.TypeMapEntry.5505_to; char* to + }, ; 2979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5506_from, ; char* from + ptr @.TypeMapEntry.5507_to; char* to + }, ; 2980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5508_from, ; char* from + ptr @.TypeMapEntry.5509_to; char* to + }, ; 2981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5510_from, ; char* from + ptr @.TypeMapEntry.5511_to; char* to + }, ; 2982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5512_from, ; char* from + ptr @.TypeMapEntry.5513_to; char* to + }, ; 2983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5514_from, ; char* from + ptr @.TypeMapEntry.5515_to; char* to + }, ; 2984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5516_from, ; char* from + ptr @.TypeMapEntry.5517_to; char* to + }, ; 2985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5518_from, ; char* from + ptr @.TypeMapEntry.5519_to; char* to + }, ; 2986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5520_from, ; char* from + ptr @.TypeMapEntry.5521_to; char* to + }, ; 2987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5522_from, ; char* from + ptr @.TypeMapEntry.5523_to; char* to + }, ; 2988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5524_from, ; char* from + ptr @.TypeMapEntry.5525_to; char* to + }, ; 2989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5526_from, ; char* from + ptr @.TypeMapEntry.5527_to; char* to + }, ; 2990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5528_from, ; char* from + ptr @.TypeMapEntry.5529_to; char* to + }, ; 2991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5530_from, ; char* from + ptr @.TypeMapEntry.5531_to; char* to + }, ; 2992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5532_from, ; char* from + ptr @.TypeMapEntry.5533_to; char* to + }, ; 2993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5534_from, ; char* from + ptr @.TypeMapEntry.5535_to; char* to + }, ; 2994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5536_from, ; char* from + ptr @.TypeMapEntry.5537_to; char* to + }, ; 2995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5538_from, ; char* from + ptr @.TypeMapEntry.5539_to; char* to + }, ; 2996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5540_from, ; char* from + ptr @.TypeMapEntry.5541_to; char* to + }, ; 2997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5542_from, ; char* from + ptr @.TypeMapEntry.5543_to; char* to + }, ; 2998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5544_from, ; char* from + ptr @.TypeMapEntry.5545_to; char* to + }, ; 2999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5546_from, ; char* from + ptr @.TypeMapEntry.5547_to; char* to + }, ; 3000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5548_from, ; char* from + ptr @.TypeMapEntry.5549_to; char* to + }, ; 3001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5550_from, ; char* from + ptr @.TypeMapEntry.5551_to; char* to + }, ; 3002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5552_from, ; char* from + ptr @.TypeMapEntry.5553_to; char* to + }, ; 3003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5554_from, ; char* from + ptr @.TypeMapEntry.5555_to; char* to + }, ; 3004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5556_from, ; char* from + ptr @.TypeMapEntry.5557_to; char* to + }, ; 3005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5558_from, ; char* from + ptr @.TypeMapEntry.5557_to; char* to + }, ; 3006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5559_from, ; char* from + ptr @.TypeMapEntry.5560_to; char* to + }, ; 3007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5561_from, ; char* from + ptr @.TypeMapEntry.5562_to; char* to + }, ; 3008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5563_from, ; char* from + ptr @.TypeMapEntry.5564_to; char* to + }, ; 3009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5565_from, ; char* from + ptr @.TypeMapEntry.5566_to; char* to + }, ; 3010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5567_from, ; char* from + ptr @.TypeMapEntry.5568_to; char* to + }, ; 3011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5569_from, ; char* from + ptr @.TypeMapEntry.5570_to; char* to + }, ; 3012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5571_from, ; char* from + ptr @.TypeMapEntry.5572_to; char* to + }, ; 3013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5573_from, ; char* from + ptr @.TypeMapEntry.5574_to; char* to + }, ; 3014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5575_from, ; char* from + ptr @.TypeMapEntry.5576_to; char* to + }, ; 3015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5577_from, ; char* from + ptr @.TypeMapEntry.5578_to; char* to + }, ; 3016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5579_from, ; char* from + ptr @.TypeMapEntry.5580_to; char* to + }, ; 3017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5581_from, ; char* from + ptr @.TypeMapEntry.5582_to; char* to + }, ; 3018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5583_from, ; char* from + ptr @.TypeMapEntry.5584_to; char* to + }, ; 3019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5585_from, ; char* from + ptr @.TypeMapEntry.5586_to; char* to + }, ; 3020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5587_from, ; char* from + ptr @.TypeMapEntry.5588_to; char* to + }, ; 3021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5589_from, ; char* from + ptr @.TypeMapEntry.5590_to; char* to + }, ; 3022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5591_from, ; char* from + ptr @.TypeMapEntry.5592_to; char* to + }, ; 3023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5593_from, ; char* from + ptr @.TypeMapEntry.5594_to; char* to + }, ; 3024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5595_from, ; char* from + ptr @.TypeMapEntry.5596_to; char* to + }, ; 3025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5597_from, ; char* from + ptr @.TypeMapEntry.5598_to; char* to + }, ; 3026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5599_from, ; char* from + ptr @.TypeMapEntry.5600_to; char* to + }, ; 3027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5601_from, ; char* from + ptr @.TypeMapEntry.5602_to; char* to + }, ; 3028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5603_from, ; char* from + ptr @.TypeMapEntry.5604_to; char* to + }, ; 3029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5605_from, ; char* from + ptr @.TypeMapEntry.5606_to; char* to + }, ; 3030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5607_from, ; char* from + ptr @.TypeMapEntry.5608_to; char* to + }, ; 3031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5609_from, ; char* from + ptr @.TypeMapEntry.5610_to; char* to + }, ; 3032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5611_from, ; char* from + ptr @.TypeMapEntry.5608_to; char* to + }, ; 3033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5612_from, ; char* from + ptr @.TypeMapEntry.5613_to; char* to + }, ; 3034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5614_from, ; char* from + ptr @.TypeMapEntry.5615_to; char* to + }, ; 3035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5616_from, ; char* from + ptr @.TypeMapEntry.5613_to; char* to + }, ; 3036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5617_from, ; char* from + ptr @.TypeMapEntry.5618_to; char* to + }, ; 3037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5619_from, ; char* from + ptr @.TypeMapEntry.5620_to; char* to + }, ; 3038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5621_from, ; char* from + ptr @.TypeMapEntry.5618_to; char* to + }, ; 3039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5622_from, ; char* from + ptr @.TypeMapEntry.5623_to; char* to + }, ; 3040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5624_from, ; char* from + ptr @.TypeMapEntry.5625_to; char* to + }, ; 3041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5626_from, ; char* from + ptr @.TypeMapEntry.5623_to; char* to + }, ; 3042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5627_from, ; char* from + ptr @.TypeMapEntry.5628_to; char* to + }, ; 3043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5629_from, ; char* from + ptr @.TypeMapEntry.5630_to; char* to + }, ; 3044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5631_from, ; char* from + ptr @.TypeMapEntry.5628_to; char* to + }, ; 3045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5632_from, ; char* from + ptr @.TypeMapEntry.5633_to; char* to + }, ; 3046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5634_from, ; char* from + ptr @.TypeMapEntry.5635_to; char* to + }, ; 3047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5636_from, ; char* from + ptr @.TypeMapEntry.5633_to; char* to + }, ; 3048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5637_from, ; char* from + ptr @.TypeMapEntry.5638_to; char* to + }, ; 3049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5639_from, ; char* from + ptr @.TypeMapEntry.5640_to; char* to + }, ; 3050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5641_from, ; char* from + ptr @.TypeMapEntry.5638_to; char* to + }, ; 3051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5642_from, ; char* from + ptr @.TypeMapEntry.5643_to; char* to + }, ; 3052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5644_from, ; char* from + ptr @.TypeMapEntry.5645_to; char* to + }, ; 3053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5646_from, ; char* from + ptr @.TypeMapEntry.5643_to; char* to + }, ; 3054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5647_from, ; char* from + ptr @.TypeMapEntry.5648_to; char* to + }, ; 3055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5649_from, ; char* from + ptr @.TypeMapEntry.5650_to; char* to + }, ; 3056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5651_from, ; char* from + ptr @.TypeMapEntry.5648_to; char* to + }, ; 3057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5652_from, ; char* from + ptr @.TypeMapEntry.5653_to; char* to + }, ; 3058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5654_from, ; char* from + ptr @.TypeMapEntry.5655_to; char* to + }, ; 3059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5656_from, ; char* from + ptr @.TypeMapEntry.5653_to; char* to + }, ; 3060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5657_from, ; char* from + ptr @.TypeMapEntry.5658_to; char* to + }, ; 3061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5659_from, ; char* from + ptr @.TypeMapEntry.5660_to; char* to + }, ; 3062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5661_from, ; char* from + ptr @.TypeMapEntry.5658_to; char* to + }, ; 3063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5662_from, ; char* from + ptr @.TypeMapEntry.5663_to; char* to + }, ; 3064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5664_from, ; char* from + ptr @.TypeMapEntry.5665_to; char* to + }, ; 3065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5666_from, ; char* from + ptr @.TypeMapEntry.5663_to; char* to + }, ; 3066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5667_from, ; char* from + ptr @.TypeMapEntry.5668_to; char* to + }, ; 3067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5669_from, ; char* from + ptr @.TypeMapEntry.5670_to; char* to + }, ; 3068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5671_from, ; char* from + ptr @.TypeMapEntry.5668_to; char* to + }, ; 3069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5672_from, ; char* from + ptr @.TypeMapEntry.5673_to; char* to + }, ; 3070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5674_from, ; char* from + ptr @.TypeMapEntry.5675_to; char* to + }, ; 3071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5676_from, ; char* from + ptr @.TypeMapEntry.5673_to; char* to + }, ; 3072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5677_from, ; char* from + ptr @.TypeMapEntry.5678_to; char* to + }, ; 3073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5679_from, ; char* from + ptr @.TypeMapEntry.5680_to; char* to + }, ; 3074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5681_from, ; char* from + ptr @.TypeMapEntry.5678_to; char* to + }, ; 3075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5682_from, ; char* from + ptr @.TypeMapEntry.5683_to; char* to + }, ; 3076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5684_from, ; char* from + ptr @.TypeMapEntry.5685_to; char* to + }, ; 3077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5686_from, ; char* from + ptr @.TypeMapEntry.5687_to; char* to + }, ; 3078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5688_from, ; char* from + ptr @.TypeMapEntry.5689_to; char* to + }, ; 3079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5690_from, ; char* from + ptr @.TypeMapEntry.5691_to; char* to + }, ; 3080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5692_from, ; char* from + ptr @.TypeMapEntry.5693_to; char* to + }, ; 3081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5694_from, ; char* from + ptr @.TypeMapEntry.5695_to; char* to + }, ; 3082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5696_from, ; char* from + ptr @.TypeMapEntry.5697_to; char* to + }, ; 3083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5698_from, ; char* from + ptr @.TypeMapEntry.5697_to; char* to + }, ; 3084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5699_from, ; char* from + ptr @.TypeMapEntry.5700_to; char* to + }, ; 3085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5701_from, ; char* from + ptr @.TypeMapEntry.5702_to; char* to + }, ; 3086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5703_from, ; char* from + ptr @.TypeMapEntry.5704_to; char* to + }, ; 3087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5705_from, ; char* from + ptr @.TypeMapEntry.5706_to; char* to + }, ; 3088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5707_from, ; char* from + ptr @.TypeMapEntry.5708_to; char* to + }, ; 3089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5709_from, ; char* from + ptr @.TypeMapEntry.5710_to; char* to + }, ; 3090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5711_from, ; char* from + ptr @.TypeMapEntry.5712_to; char* to + }, ; 3091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5713_from, ; char* from + ptr @.TypeMapEntry.5714_to; char* to + }, ; 3092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5715_from, ; char* from + ptr @.TypeMapEntry.5716_to; char* to + }, ; 3093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5717_from, ; char* from + ptr @.TypeMapEntry.5718_to; char* to + }, ; 3094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5719_from, ; char* from + ptr @.TypeMapEntry.5720_to; char* to + }, ; 3095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5721_from, ; char* from + ptr @.TypeMapEntry.5722_to; char* to + }, ; 3096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5723_from, ; char* from + ptr @.TypeMapEntry.5724_to; char* to + }, ; 3097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5725_from, ; char* from + ptr @.TypeMapEntry.5726_to; char* to + }, ; 3098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5727_from, ; char* from + ptr @.TypeMapEntry.5728_to; char* to + }, ; 3099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5729_from, ; char* from + ptr @.TypeMapEntry.5730_to; char* to + }, ; 3100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5731_from, ; char* from + ptr @.TypeMapEntry.5732_to; char* to + }, ; 3101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5733_from, ; char* from + ptr @.TypeMapEntry.5734_to; char* to + }, ; 3102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5735_from, ; char* from + ptr @.TypeMapEntry.5736_to; char* to + }, ; 3103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5737_from, ; char* from + ptr @.TypeMapEntry.5738_to; char* to + }, ; 3104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5739_from, ; char* from + ptr @.TypeMapEntry.5740_to; char* to + }, ; 3105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5741_from, ; char* from + ptr @.TypeMapEntry.5742_to; char* to + }, ; 3106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5743_from, ; char* from + ptr @.TypeMapEntry.5744_to; char* to + }, ; 3107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5745_from, ; char* from + ptr @.TypeMapEntry.5746_to; char* to + }, ; 3108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5747_from, ; char* from + ptr @.TypeMapEntry.5748_to; char* to + }, ; 3109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5749_from, ; char* from + ptr @.TypeMapEntry.5746_to; char* to + }, ; 3110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5750_from, ; char* from + ptr @.TypeMapEntry.5751_to; char* to + }, ; 3111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5752_from, ; char* from + ptr @.TypeMapEntry.5753_to; char* to + }, ; 3112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5754_from, ; char* from + ptr @.TypeMapEntry.5751_to; char* to + }, ; 3113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5755_from, ; char* from + ptr @.TypeMapEntry.5756_to; char* to + }, ; 3114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5757_from, ; char* from + ptr @.TypeMapEntry.5758_to; char* to + }, ; 3115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5759_from, ; char* from + ptr @.TypeMapEntry.5756_to; char* to + }, ; 3116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5760_from, ; char* from + ptr @.TypeMapEntry.5761_to; char* to + }, ; 3117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5762_from, ; char* from + ptr @.TypeMapEntry.5763_to; char* to + }, ; 3118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5764_from, ; char* from + ptr @.TypeMapEntry.5765_to; char* to + }, ; 3119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5766_from, ; char* from + ptr @.TypeMapEntry.5767_to; char* to + }, ; 3120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5768_from, ; char* from + ptr @.TypeMapEntry.5769_to; char* to + }, ; 3121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5770_from, ; char* from + ptr @.TypeMapEntry.5769_to; char* to + }, ; 3122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5771_from, ; char* from + ptr @.TypeMapEntry.5772_to; char* to + }, ; 3123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5773_from, ; char* from + ptr @.TypeMapEntry.5772_to; char* to + }, ; 3124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5774_from, ; char* from + ptr @.TypeMapEntry.5775_to; char* to + }, ; 3125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5776_from, ; char* from + ptr @.TypeMapEntry.5777_to; char* to + }, ; 3126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5778_from, ; char* from + ptr @.TypeMapEntry.5777_to; char* to + }, ; 3127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5779_from, ; char* from + ptr @.TypeMapEntry.5780_to; char* to + }, ; 3128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5781_from, ; char* from + ptr @.TypeMapEntry.5782_to; char* to + }, ; 3129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5783_from, ; char* from + ptr @.TypeMapEntry.5784_to; char* to + }, ; 3130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5785_from, ; char* from + ptr @.TypeMapEntry.5786_to; char* to + }, ; 3131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5787_from, ; char* from + ptr @.TypeMapEntry.5788_to; char* to + }, ; 3132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5789_from, ; char* from + ptr @.TypeMapEntry.5790_to; char* to + }, ; 3133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5791_from, ; char* from + ptr @.TypeMapEntry.5792_to; char* to + }, ; 3134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5793_from, ; char* from + ptr @.TypeMapEntry.5794_to; char* to + }, ; 3135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5795_from, ; char* from + ptr @.TypeMapEntry.5796_to; char* to + }, ; 3136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5797_from, ; char* from + ptr @.TypeMapEntry.5798_to; char* to + }, ; 3137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5799_from, ; char* from + ptr @.TypeMapEntry.5798_to; char* to + }, ; 3138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5800_from, ; char* from + ptr @.TypeMapEntry.5801_to; char* to + }, ; 3139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5802_from, ; char* from + ptr @.TypeMapEntry.5801_to; char* to + }, ; 3140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5803_from, ; char* from + ptr @.TypeMapEntry.5804_to; char* to + }, ; 3141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5805_from, ; char* from + ptr @.TypeMapEntry.5806_to; char* to + }, ; 3142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5807_from, ; char* from + ptr @.TypeMapEntry.5806_to; char* to + }, ; 3143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5808_from, ; char* from + ptr @.TypeMapEntry.5809_to; char* to + }, ; 3144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5810_from, ; char* from + ptr @.TypeMapEntry.5811_to; char* to + }, ; 3145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5812_from, ; char* from + ptr @.TypeMapEntry.5813_to; char* to + }, ; 3146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5814_from, ; char* from + ptr @.TypeMapEntry.5815_to; char* to + }, ; 3147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5816_from, ; char* from + ptr @.TypeMapEntry.5817_to; char* to + }, ; 3148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5818_from, ; char* from + ptr @.TypeMapEntry.5817_to; char* to + }, ; 3149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5819_from, ; char* from + ptr @.TypeMapEntry.5820_to; char* to + }, ; 3150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5821_from, ; char* from + ptr @.TypeMapEntry.5820_to; char* to + }, ; 3151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5822_from, ; char* from + ptr @.TypeMapEntry.5823_to; char* to + }, ; 3152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5824_from, ; char* from + ptr @.TypeMapEntry.5823_to; char* to + }, ; 3153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5825_from, ; char* from + ptr @.TypeMapEntry.5826_to; char* to + }, ; 3154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5827_from, ; char* from + ptr @.TypeMapEntry.5828_to; char* to + }, ; 3155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5829_from, ; char* from + ptr @.TypeMapEntry.5826_to; char* to + }, ; 3156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5830_from, ; char* from + ptr @.TypeMapEntry.5831_to; char* to + }, ; 3157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5832_from, ; char* from + ptr @.TypeMapEntry.5831_to; char* to + }, ; 3158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5833_from, ; char* from + ptr @.TypeMapEntry.5834_to; char* to + }, ; 3159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5835_from, ; char* from + ptr @.TypeMapEntry.5836_to; char* to + }, ; 3160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5837_from, ; char* from + ptr @.TypeMapEntry.5838_to; char* to + }, ; 3161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5839_from, ; char* from + ptr @.TypeMapEntry.5840_to; char* to + }, ; 3162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5841_from, ; char* from + ptr @.TypeMapEntry.5842_to; char* to + }, ; 3163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5843_from, ; char* from + ptr @.TypeMapEntry.5844_to; char* to + }, ; 3164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5845_from, ; char* from + ptr @.TypeMapEntry.5846_to; char* to + }, ; 3165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5847_from, ; char* from + ptr @.TypeMapEntry.5846_to; char* to + }, ; 3166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5848_from, ; char* from + ptr @.TypeMapEntry.5849_to; char* to + }, ; 3167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5850_from, ; char* from + ptr @.TypeMapEntry.5849_to; char* to + }, ; 3168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5851_from, ; char* from + ptr @.TypeMapEntry.5852_to; char* to + }, ; 3169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5853_from, ; char* from + ptr @.TypeMapEntry.5854_to; char* to + }, ; 3170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5855_from, ; char* from + ptr @.TypeMapEntry.5856_to; char* to + }, ; 3171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5857_from, ; char* from + ptr @.TypeMapEntry.5858_to; char* to + }, ; 3172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5859_from, ; char* from + ptr @.TypeMapEntry.5860_to; char* to + }, ; 3173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5861_from, ; char* from + ptr @.TypeMapEntry.5862_to; char* to + }, ; 3174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5863_from, ; char* from + ptr @.TypeMapEntry.5864_to; char* to + }, ; 3175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5865_from, ; char* from + ptr @.TypeMapEntry.5866_to; char* to + }, ; 3176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5867_from, ; char* from + ptr @.TypeMapEntry.5868_to; char* to + }, ; 3177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5869_from, ; char* from + ptr @.TypeMapEntry.5870_to; char* to + }, ; 3178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5871_from, ; char* from + ptr @.TypeMapEntry.5872_to; char* to + }, ; 3179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5873_from, ; char* from + ptr @.TypeMapEntry.5874_to; char* to + }, ; 3180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5875_from, ; char* from + ptr @.TypeMapEntry.5876_to; char* to + }, ; 3181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5877_from, ; char* from + ptr @.TypeMapEntry.5876_to; char* to + }, ; 3182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5878_from, ; char* from + ptr @.TypeMapEntry.5876_to; char* to + }, ; 3183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5879_from, ; char* from + ptr @.TypeMapEntry.5880_to; char* to + }, ; 3184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5881_from, ; char* from + ptr @.TypeMapEntry.5882_to; char* to + }, ; 3185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5883_from, ; char* from + ptr @.TypeMapEntry.5884_to; char* to + }, ; 3186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5885_from, ; char* from + ptr @.TypeMapEntry.5886_to; char* to + }, ; 3187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5887_from, ; char* from + ptr @.TypeMapEntry.5888_to; char* to + }, ; 3188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5889_from, ; char* from + ptr @.TypeMapEntry.5890_to; char* to + }, ; 3189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5891_from, ; char* from + ptr @.TypeMapEntry.5890_to; char* to + }, ; 3190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5892_from, ; char* from + ptr @.TypeMapEntry.5893_to; char* to + }, ; 3191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5894_from, ; char* from + ptr @.TypeMapEntry.5895_to; char* to + }, ; 3192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5896_from, ; char* from + ptr @.TypeMapEntry.5897_to; char* to + }, ; 3193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5898_from, ; char* from + ptr @.TypeMapEntry.5899_to; char* to + }, ; 3194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5900_from, ; char* from + ptr @.TypeMapEntry.5901_to; char* to + }, ; 3195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5902_from, ; char* from + ptr @.TypeMapEntry.5903_to; char* to + }, ; 3196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5904_from, ; char* from + ptr @.TypeMapEntry.5905_to; char* to + }, ; 3197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5906_from, ; char* from + ptr @.TypeMapEntry.5907_to; char* to + }, ; 3198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5908_from, ; char* from + ptr @.TypeMapEntry.5905_to; char* to + }, ; 3199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5909_from, ; char* from + ptr @.TypeMapEntry.5910_to; char* to + }, ; 3200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5911_from, ; char* from + ptr @.TypeMapEntry.5912_to; char* to + }, ; 3201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5913_from, ; char* from + ptr @.TypeMapEntry.5914_to; char* to + }, ; 3202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5915_from, ; char* from + ptr @.TypeMapEntry.5914_to; char* to + }, ; 3203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5916_from, ; char* from + ptr @.TypeMapEntry.5917_to; char* to + }, ; 3204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5918_from, ; char* from + ptr @.TypeMapEntry.5919_to; char* to + }, ; 3205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5920_from, ; char* from + ptr @.TypeMapEntry.5919_to; char* to + }, ; 3206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5921_from, ; char* from + ptr @.TypeMapEntry.5922_to; char* to + }, ; 3207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5923_from, ; char* from + ptr @.TypeMapEntry.5924_to; char* to + }, ; 3208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5925_from, ; char* from + ptr @.TypeMapEntry.5926_to; char* to + }, ; 3209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5927_from, ; char* from + ptr @.TypeMapEntry.5928_to; char* to + }, ; 3210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5929_from, ; char* from + ptr @.TypeMapEntry.5930_to; char* to + }, ; 3211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5931_from, ; char* from + ptr @.TypeMapEntry.5932_to; char* to + }, ; 3212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5933_from, ; char* from + ptr @.TypeMapEntry.5934_to; char* to + }, ; 3213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5935_from, ; char* from + ptr @.TypeMapEntry.5936_to; char* to + }, ; 3214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5937_from, ; char* from + ptr @.TypeMapEntry.5938_to; char* to + }, ; 3215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5939_from, ; char* from + ptr @.TypeMapEntry.5940_to; char* to + }, ; 3216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5941_from, ; char* from + ptr @.TypeMapEntry.5942_to; char* to + }, ; 3217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5943_from, ; char* from + ptr @.TypeMapEntry.5942_to; char* to + }, ; 3218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5944_from, ; char* from + ptr @.TypeMapEntry.5945_to; char* to + }, ; 3219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5946_from, ; char* from + ptr @.TypeMapEntry.5947_to; char* to + }, ; 3220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5948_from, ; char* from + ptr @.TypeMapEntry.5949_to; char* to + }, ; 3221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5950_from, ; char* from + ptr @.TypeMapEntry.5947_to; char* to + }, ; 3222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5951_from, ; char* from + ptr @.TypeMapEntry.5952_to; char* to + }, ; 3223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5953_from, ; char* from + ptr @.TypeMapEntry.5954_to; char* to + }, ; 3224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5955_from, ; char* from + ptr @.TypeMapEntry.5954_to; char* to + }, ; 3225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5956_from, ; char* from + ptr @.TypeMapEntry.5957_to; char* to + }, ; 3226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5958_from, ; char* from + ptr @.TypeMapEntry.5959_to; char* to + }, ; 3227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5960_from, ; char* from + ptr @.TypeMapEntry.5961_to; char* to + }, ; 3228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5962_from, ; char* from + ptr @.TypeMapEntry.5963_to; char* to + }, ; 3229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5964_from, ; char* from + ptr @.TypeMapEntry.5965_to; char* to + }, ; 3230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5966_from, ; char* from + ptr @.TypeMapEntry.5967_to; char* to + }, ; 3231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5968_from, ; char* from + ptr @.TypeMapEntry.5969_to; char* to + }, ; 3232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5970_from, ; char* from + ptr @.TypeMapEntry.5971_to; char* to + }, ; 3233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5972_from, ; char* from + ptr @.TypeMapEntry.5973_to; char* to + }, ; 3234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5974_from, ; char* from + ptr @.TypeMapEntry.5975_to; char* to + }, ; 3235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5976_from, ; char* from + ptr @.TypeMapEntry.5977_to; char* to + }, ; 3236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5978_from, ; char* from + ptr @.TypeMapEntry.5979_to; char* to + }, ; 3237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5980_from, ; char* from + ptr @.TypeMapEntry.5981_to; char* to + }, ; 3238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5982_from, ; char* from + ptr @.TypeMapEntry.5981_to; char* to + }, ; 3239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5983_from, ; char* from + ptr @.TypeMapEntry.5979_to; char* to + }, ; 3240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5984_from, ; char* from + ptr @.TypeMapEntry.5985_to; char* to + }, ; 3241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5986_from, ; char* from + ptr @.TypeMapEntry.5985_to; char* to + }, ; 3242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5987_from, ; char* from + ptr @.TypeMapEntry.5988_to; char* to + }, ; 3243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5989_from, ; char* from + ptr @.TypeMapEntry.5988_to; char* to + }, ; 3244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5990_from, ; char* from + ptr @.TypeMapEntry.5991_to; char* to + }, ; 3245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5992_from, ; char* from + ptr @.TypeMapEntry.5993_to; char* to + }, ; 3246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5994_from, ; char* from + ptr @.TypeMapEntry.5993_to; char* to + }, ; 3247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5995_from, ; char* from + ptr @.TypeMapEntry.5996_to; char* to + }, ; 3248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5997_from, ; char* from + ptr @.TypeMapEntry.5996_to; char* to + }, ; 3249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5998_from, ; char* from + ptr @.TypeMapEntry.5991_to; char* to + }, ; 3250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5999_from, ; char* from + ptr @.TypeMapEntry.6000_to; char* to + }, ; 3251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6001_from, ; char* from + ptr @.TypeMapEntry.6002_to; char* to + }, ; 3252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6003_from, ; char* from + ptr @.TypeMapEntry.6004_to; char* to + }, ; 3253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6005_from, ; char* from + ptr @.TypeMapEntry.6006_to; char* to + }, ; 3254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6007_from, ; char* from + ptr @.TypeMapEntry.6008_to; char* to + }, ; 3255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6009_from, ; char* from + ptr @.TypeMapEntry.6010_to; char* to + }, ; 3256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6011_from, ; char* from + ptr @.TypeMapEntry.6010_to; char* to + }, ; 3257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6012_from, ; char* from + ptr @.TypeMapEntry.6013_to; char* to + }, ; 3258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6014_from, ; char* from + ptr @.TypeMapEntry.6015_to; char* to + }, ; 3259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6016_from, ; char* from + ptr @.TypeMapEntry.6013_to; char* to + }, ; 3260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6017_from, ; char* from + ptr @.TypeMapEntry.6018_to; char* to + }, ; 3261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6019_from, ; char* from + ptr @.TypeMapEntry.6020_to; char* to + }, ; 3262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6021_from, ; char* from + ptr @.TypeMapEntry.6022_to; char* to + }, ; 3263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6023_from, ; char* from + ptr @.TypeMapEntry.6024_to; char* to + }, ; 3264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6025_from, ; char* from + ptr @.TypeMapEntry.6026_to; char* to + }, ; 3265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6027_from, ; char* from + ptr @.TypeMapEntry.6028_to; char* to + }, ; 3266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6029_from, ; char* from + ptr @.TypeMapEntry.6030_to; char* to + }, ; 3267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6031_from, ; char* from + ptr @.TypeMapEntry.6032_to; char* to + }, ; 3268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6033_from, ; char* from + ptr @.TypeMapEntry.6034_to; char* to + }, ; 3269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6035_from, ; char* from + ptr @.TypeMapEntry.6036_to; char* to + }, ; 3270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6037_from, ; char* from + ptr @.TypeMapEntry.6034_to; char* to + }, ; 3271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6038_from, ; char* from + ptr @.TypeMapEntry.6039_to; char* to + }, ; 3272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6040_from, ; char* from + ptr @.TypeMapEntry.6041_to; char* to + }, ; 3273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6042_from, ; char* from + ptr @.TypeMapEntry.6043_to; char* to + }, ; 3274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6044_from, ; char* from + ptr @.TypeMapEntry.6045_to; char* to + }, ; 3275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6046_from, ; char* from + ptr @.TypeMapEntry.6047_to; char* to + }, ; 3276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6048_from, ; char* from + ptr @.TypeMapEntry.6049_to; char* to + }, ; 3277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6050_from, ; char* from + ptr @.TypeMapEntry.6051_to; char* to + }, ; 3278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6052_from, ; char* from + ptr @.TypeMapEntry.6053_to; char* to + }, ; 3279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6054_from, ; char* from + ptr @.TypeMapEntry.6055_to; char* to + }, ; 3280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6056_from, ; char* from + ptr @.TypeMapEntry.6057_to; char* to + }, ; 3281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6058_from, ; char* from + ptr @.TypeMapEntry.6055_to; char* to + }, ; 3282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6059_from, ; char* from + ptr @.TypeMapEntry.6060_to; char* to + }, ; 3283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6061_from, ; char* from + ptr @.TypeMapEntry.6062_to; char* to + }, ; 3284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6063_from, ; char* from + ptr @.TypeMapEntry.6060_to; char* to + }, ; 3285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6064_from, ; char* from + ptr @.TypeMapEntry.6065_to; char* to + }, ; 3286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6066_from, ; char* from + ptr @.TypeMapEntry.6067_to; char* to + }, ; 3287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6068_from, ; char* from + ptr @.TypeMapEntry.6069_to; char* to + }, ; 3288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6070_from, ; char* from + ptr @.TypeMapEntry.6071_to; char* to + }, ; 3289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6072_from, ; char* from + ptr @.TypeMapEntry.6073_to; char* to + }, ; 3290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6074_from, ; char* from + ptr @.TypeMapEntry.6075_to; char* to + }, ; 3291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6076_from, ; char* from + ptr @.TypeMapEntry.6077_to; char* to + }, ; 3292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6078_from, ; char* from + ptr @.TypeMapEntry.6079_to; char* to + }, ; 3293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6080_from, ; char* from + ptr @.TypeMapEntry.6079_to; char* to + }, ; 3294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6081_from, ; char* from + ptr @.TypeMapEntry.6082_to; char* to + }, ; 3295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6083_from, ; char* from + ptr @.TypeMapEntry.6084_to; char* to + }, ; 3296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6085_from, ; char* from + ptr @.TypeMapEntry.6082_to; char* to + }, ; 3297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6086_from, ; char* from + ptr @.TypeMapEntry.6087_to; char* to + }, ; 3298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6088_from, ; char* from + ptr @.TypeMapEntry.6089_to; char* to + }, ; 3299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6090_from, ; char* from + ptr @.TypeMapEntry.6091_to; char* to + }, ; 3300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6092_from, ; char* from + ptr @.TypeMapEntry.6093_to; char* to + }, ; 3301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6094_from, ; char* from + ptr @.TypeMapEntry.6095_to; char* to + }, ; 3302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6096_from, ; char* from + ptr @.TypeMapEntry.6097_to; char* to + }, ; 3303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6098_from, ; char* from + ptr @.TypeMapEntry.6099_to; char* to + }, ; 3304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6100_from, ; char* from + ptr @.TypeMapEntry.6101_to; char* to + }, ; 3305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6102_from, ; char* from + ptr @.TypeMapEntry.6101_to; char* to + }, ; 3306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6103_from, ; char* from + ptr @.TypeMapEntry.6104_to; char* to + }, ; 3307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6105_from, ; char* from + ptr @.TypeMapEntry.6106_to; char* to + }, ; 3308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6107_from, ; char* from + ptr @.TypeMapEntry.6108_to; char* to + }, ; 3309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6109_from, ; char* from + ptr @.TypeMapEntry.6110_to; char* to + }, ; 3310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6111_from, ; char* from + ptr @.TypeMapEntry.6112_to; char* to + }, ; 3311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6113_from, ; char* from + ptr @.TypeMapEntry.6110_to; char* to + }, ; 3312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6114_from, ; char* from + ptr @.TypeMapEntry.6115_to; char* to + }, ; 3313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6116_from, ; char* from + ptr @.TypeMapEntry.6117_to; char* to + }, ; 3314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6118_from, ; char* from + ptr @.TypeMapEntry.6115_to; char* to + }, ; 3315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6119_from, ; char* from + ptr @.TypeMapEntry.6120_to; char* to + }, ; 3316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6121_from, ; char* from + ptr @.TypeMapEntry.6122_to; char* to + }, ; 3317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6123_from, ; char* from + ptr @.TypeMapEntry.6124_to; char* to + }, ; 3318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6125_from, ; char* from + ptr @.TypeMapEntry.6126_to; char* to + }, ; 3319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6127_from, ; char* from + ptr @.TypeMapEntry.6128_to; char* to + }, ; 3320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6129_from, ; char* from + ptr @.TypeMapEntry.6130_to; char* to + }, ; 3321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6131_from, ; char* from + ptr @.TypeMapEntry.6132_to; char* to + }, ; 3322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6133_from, ; char* from + ptr @.TypeMapEntry.6134_to; char* to + }, ; 3323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6135_from, ; char* from + ptr @.TypeMapEntry.6136_to; char* to + }, ; 3324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6137_from, ; char* from + ptr @.TypeMapEntry.6138_to; char* to + }, ; 3325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6139_from, ; char* from + ptr @.TypeMapEntry.6140_to; char* to + }, ; 3326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6141_from, ; char* from + ptr @.TypeMapEntry.6142_to; char* to + }, ; 3327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6143_from, ; char* from + ptr @.TypeMapEntry.6144_to; char* to + }, ; 3328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6145_from, ; char* from + ptr @.TypeMapEntry.6146_to; char* to + }, ; 3329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6147_from, ; char* from + ptr @.TypeMapEntry.6148_to; char* to + }, ; 3330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6149_from, ; char* from + ptr @.TypeMapEntry.6150_to; char* to + }, ; 3331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6151_from, ; char* from + ptr @.TypeMapEntry.6152_to; char* to + }, ; 3332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6153_from, ; char* from + ptr @.TypeMapEntry.6154_to; char* to + }, ; 3333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6155_from, ; char* from + ptr @.TypeMapEntry.6156_to; char* to + }, ; 3334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6157_from, ; char* from + ptr @.TypeMapEntry.6158_to; char* to + }, ; 3335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6159_from, ; char* from + ptr @.TypeMapEntry.6160_to; char* to + }, ; 3336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6161_from, ; char* from + ptr @.TypeMapEntry.6162_to; char* to + }, ; 3337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6163_from, ; char* from + ptr @.TypeMapEntry.6164_to; char* to + }, ; 3338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6165_from, ; char* from + ptr @.TypeMapEntry.6166_to; char* to + }, ; 3339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6167_from, ; char* from + ptr @.TypeMapEntry.6168_to; char* to + }, ; 3340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6169_from, ; char* from + ptr @.TypeMapEntry.6170_to; char* to + }, ; 3341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6171_from, ; char* from + ptr @.TypeMapEntry.6172_to; char* to + }, ; 3342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6173_from, ; char* from + ptr @.TypeMapEntry.6172_to; char* to + }, ; 3343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6174_from, ; char* from + ptr @.TypeMapEntry.6175_to; char* to + }, ; 3344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6176_from, ; char* from + ptr @.TypeMapEntry.6177_to; char* to + }, ; 3345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6178_from, ; char* from + ptr @.TypeMapEntry.6179_to; char* to + }, ; 3346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6180_from, ; char* from + ptr @.TypeMapEntry.6181_to; char* to + }, ; 3347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6182_from, ; char* from + ptr @.TypeMapEntry.6181_to; char* to + }, ; 3348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6183_from, ; char* from + ptr @.TypeMapEntry.6184_to; char* to + }, ; 3349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6185_from, ; char* from + ptr @.TypeMapEntry.6186_to; char* to + }, ; 3350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6187_from, ; char* from + ptr @.TypeMapEntry.6188_to; char* to + }, ; 3351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6189_from, ; char* from + ptr @.TypeMapEntry.6190_to; char* to + }, ; 3352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6191_from, ; char* from + ptr @.TypeMapEntry.6192_to; char* to + }, ; 3353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6193_from, ; char* from + ptr @.TypeMapEntry.6194_to; char* to + }, ; 3354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6195_from, ; char* from + ptr @.TypeMapEntry.6196_to; char* to + }, ; 3355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6197_from, ; char* from + ptr @.TypeMapEntry.6198_to; char* to + }, ; 3356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6199_from, ; char* from + ptr @.TypeMapEntry.6200_to; char* to + }, ; 3357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6201_from, ; char* from + ptr @.TypeMapEntry.6200_to; char* to + }, ; 3358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6202_from, ; char* from + ptr @.TypeMapEntry.6203_to; char* to + }, ; 3359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6204_from, ; char* from + ptr @.TypeMapEntry.6203_to; char* to + }, ; 3360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6205_from, ; char* from + ptr @.TypeMapEntry.6206_to; char* to + }, ; 3361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6207_from, ; char* from + ptr @.TypeMapEntry.6206_to; char* to + }, ; 3362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6208_from, ; char* from + ptr @.TypeMapEntry.6209_to; char* to + }, ; 3363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6210_from, ; char* from + ptr @.TypeMapEntry.6211_to; char* to + }, ; 3364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6212_from, ; char* from + ptr @.TypeMapEntry.6213_to; char* to + }, ; 3365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6214_from, ; char* from + ptr @.TypeMapEntry.6215_to; char* to + }, ; 3366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6216_from, ; char* from + ptr @.TypeMapEntry.6217_to; char* to + }, ; 3367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6218_from, ; char* from + ptr @.TypeMapEntry.6219_to; char* to + }, ; 3368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6220_from, ; char* from + ptr @.TypeMapEntry.6221_to; char* to + }, ; 3369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6222_from, ; char* from + ptr @.TypeMapEntry.6223_to; char* to + }, ; 3370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6224_from, ; char* from + ptr @.TypeMapEntry.6225_to; char* to + }, ; 3371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6226_from, ; char* from + ptr @.TypeMapEntry.6227_to; char* to + }, ; 3372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6228_from, ; char* from + ptr @.TypeMapEntry.6227_to; char* to + }, ; 3373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6229_from, ; char* from + ptr @.TypeMapEntry.6230_to; char* to + }, ; 3374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6231_from, ; char* from + ptr @.TypeMapEntry.6232_to; char* to + }, ; 3375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6233_from, ; char* from + ptr @.TypeMapEntry.6234_to; char* to + }, ; 3376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6235_from, ; char* from + ptr @.TypeMapEntry.6236_to; char* to + }, ; 3377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6237_from, ; char* from + ptr @.TypeMapEntry.6238_to; char* to + }, ; 3378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6239_from, ; char* from + ptr @.TypeMapEntry.6240_to; char* to + }, ; 3379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6241_from, ; char* from + ptr @.TypeMapEntry.6242_to; char* to + }, ; 3380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6243_from, ; char* from + ptr @.TypeMapEntry.6244_to; char* to + }, ; 3381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6245_from, ; char* from + ptr @.TypeMapEntry.6246_to; char* to + }, ; 3382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6247_from, ; char* from + ptr @.TypeMapEntry.6248_to; char* to + }, ; 3383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6249_from, ; char* from + ptr @.TypeMapEntry.6250_to; char* to + }, ; 3384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6251_from, ; char* from + ptr @.TypeMapEntry.6252_to; char* to + }, ; 3385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6253_from, ; char* from + ptr @.TypeMapEntry.6254_to; char* to + }, ; 3386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6255_from, ; char* from + ptr @.TypeMapEntry.6256_to; char* to + }, ; 3387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6257_from, ; char* from + ptr @.TypeMapEntry.6256_to; char* to + }, ; 3388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6258_from, ; char* from + ptr @.TypeMapEntry.6259_to; char* to + }, ; 3389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6260_from, ; char* from + ptr @.TypeMapEntry.6261_to; char* to + }, ; 3390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6262_from, ; char* from + ptr @.TypeMapEntry.6261_to; char* to + }, ; 3391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6263_from, ; char* from + ptr @.TypeMapEntry.6264_to; char* to + }, ; 3392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6265_from, ; char* from + ptr @.TypeMapEntry.6266_to; char* to + }, ; 3393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6267_from, ; char* from + ptr @.TypeMapEntry.6268_to; char* to + }, ; 3394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6269_from, ; char* from + ptr @.TypeMapEntry.6268_to; char* to + }, ; 3395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6270_from, ; char* from + ptr @.TypeMapEntry.6271_to; char* to + }, ; 3396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6272_from, ; char* from + ptr @.TypeMapEntry.6271_to; char* to + }, ; 3397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6273_from, ; char* from + ptr @.TypeMapEntry.6274_to; char* to + }, ; 3398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6275_from, ; char* from + ptr @.TypeMapEntry.6274_to; char* to + }, ; 3399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6276_from, ; char* from + ptr @.TypeMapEntry.6277_to; char* to + }, ; 3400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6278_from, ; char* from + ptr @.TypeMapEntry.6277_to; char* to + }, ; 3401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6279_from, ; char* from + ptr @.TypeMapEntry.6280_to; char* to + }, ; 3402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6281_from, ; char* from + ptr @.TypeMapEntry.6280_to; char* to + }, ; 3403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6282_from, ; char* from + ptr @.TypeMapEntry.6283_to; char* to + }, ; 3404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6284_from, ; char* from + ptr @.TypeMapEntry.6285_to; char* to + }, ; 3405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6286_from, ; char* from + ptr @.TypeMapEntry.6287_to; char* to + }, ; 3406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6288_from, ; char* from + ptr @.TypeMapEntry.6289_to; char* to + }, ; 3407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6290_from, ; char* from + ptr @.TypeMapEntry.6291_to; char* to + }, ; 3408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6292_from, ; char* from + ptr @.TypeMapEntry.6293_to; char* to + }, ; 3409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6294_from, ; char* from + ptr @.TypeMapEntry.6295_to; char* to + }, ; 3410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6296_from, ; char* from + ptr @.TypeMapEntry.6295_to; char* to + }, ; 3411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6297_from, ; char* from + ptr @.TypeMapEntry.6298_to; char* to + }, ; 3412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6299_from, ; char* from + ptr @.TypeMapEntry.6300_to; char* to + }, ; 3413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6301_from, ; char* from + ptr @.TypeMapEntry.6300_to; char* to + }, ; 3414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6302_from, ; char* from + ptr @.TypeMapEntry.6303_to; char* to + }, ; 3415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6304_from, ; char* from + ptr @.TypeMapEntry.6305_to; char* to + }, ; 3416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6306_from, ; char* from + ptr @.TypeMapEntry.6307_to; char* to + }, ; 3417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6308_from, ; char* from + ptr @.TypeMapEntry.6309_to; char* to + }, ; 3418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6310_from, ; char* from + ptr @.TypeMapEntry.6311_to; char* to + }, ; 3419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6312_from, ; char* from + ptr @.TypeMapEntry.6309_to; char* to + }, ; 3420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6313_from, ; char* from + ptr @.TypeMapEntry.6314_to; char* to + }, ; 3421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6315_from, ; char* from + ptr @.TypeMapEntry.6316_to; char* to + }, ; 3422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6317_from, ; char* from + ptr @.TypeMapEntry.6314_to; char* to + }, ; 3423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6318_from, ; char* from + ptr @.TypeMapEntry.6319_to; char* to + }, ; 3424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6320_from, ; char* from + ptr @.TypeMapEntry.6321_to; char* to + }, ; 3425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6322_from, ; char* from + ptr @.TypeMapEntry.6323_to; char* to + }, ; 3426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6324_from, ; char* from + ptr @.TypeMapEntry.6323_to; char* to + }, ; 3427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6325_from, ; char* from + ptr @.TypeMapEntry.6326_to; char* to + }, ; 3428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6327_from, ; char* from + ptr @.TypeMapEntry.6328_to; char* to + }, ; 3429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6329_from, ; char* from + ptr @.TypeMapEntry.6328_to; char* to + }, ; 3430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6330_from, ; char* from + ptr @.TypeMapEntry.6331_to; char* to + }, ; 3431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6332_from, ; char* from + ptr @.TypeMapEntry.6331_to; char* to + }, ; 3432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6333_from, ; char* from + ptr @.TypeMapEntry.6334_to; char* to + }, ; 3433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6335_from, ; char* from + ptr @.TypeMapEntry.6334_to; char* to + }, ; 3434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6336_from, ; char* from + ptr @.TypeMapEntry.6337_to; char* to + }, ; 3435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6338_from, ; char* from + ptr @.TypeMapEntry.6339_to; char* to + }, ; 3436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6340_from, ; char* from + ptr @.TypeMapEntry.6337_to; char* to + }, ; 3437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6341_from, ; char* from + ptr @.TypeMapEntry.6342_to; char* to + }, ; 3438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6343_from, ; char* from + ptr @.TypeMapEntry.6344_to; char* to + }, ; 3439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6345_from, ; char* from + ptr @.TypeMapEntry.6342_to; char* to + }, ; 3440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6346_from, ; char* from + ptr @.TypeMapEntry.6347_to; char* to + }, ; 3441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6348_from, ; char* from + ptr @.TypeMapEntry.6349_to; char* to + }, ; 3442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6350_from, ; char* from + ptr @.TypeMapEntry.6347_to; char* to + }, ; 3443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6351_from, ; char* from + ptr @.TypeMapEntry.6352_to; char* to + }, ; 3444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6353_from, ; char* from + ptr @.TypeMapEntry.6354_to; char* to + }, ; 3445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6355_from, ; char* from + ptr @.TypeMapEntry.6356_to; char* to + }, ; 3446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6357_from, ; char* from + ptr @.TypeMapEntry.6358_to; char* to + }, ; 3447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6359_from, ; char* from + ptr @.TypeMapEntry.6360_to; char* to + }, ; 3448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6361_from, ; char* from + ptr @.TypeMapEntry.6360_to; char* to + }, ; 3449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6362_from, ; char* from + ptr @.TypeMapEntry.6363_to; char* to + }, ; 3450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6364_from, ; char* from + ptr @.TypeMapEntry.6365_to; char* to + }, ; 3451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6366_from, ; char* from + ptr @.TypeMapEntry.6367_to; char* to + }, ; 3452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6368_from, ; char* from + ptr @.TypeMapEntry.6369_to; char* to + }, ; 3453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6370_from, ; char* from + ptr @.TypeMapEntry.6371_to; char* to + }, ; 3454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6372_from, ; char* from + ptr @.TypeMapEntry.6373_to; char* to + }, ; 3455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6374_from, ; char* from + ptr @.TypeMapEntry.6375_to; char* to + }, ; 3456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6376_from, ; char* from + ptr @.TypeMapEntry.6377_to; char* to + }, ; 3457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6378_from, ; char* from + ptr @.TypeMapEntry.6377_to; char* to + }, ; 3458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6379_from, ; char* from + ptr @.TypeMapEntry.6380_to; char* to + }, ; 3459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6381_from, ; char* from + ptr @.TypeMapEntry.6380_to; char* to + }, ; 3460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6382_from, ; char* from + ptr @.TypeMapEntry.6383_to; char* to + }, ; 3461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6384_from, ; char* from + ptr @.TypeMapEntry.6383_to; char* to + }, ; 3462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6385_from, ; char* from + ptr @.TypeMapEntry.6386_to; char* to + }, ; 3463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6387_from, ; char* from + ptr @.TypeMapEntry.6388_to; char* to + }, ; 3464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6389_from, ; char* from + ptr @.TypeMapEntry.6390_to; char* to + }, ; 3465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6391_from, ; char* from + ptr @.TypeMapEntry.6392_to; char* to + }, ; 3466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6393_from, ; char* from + ptr @.TypeMapEntry.6394_to; char* to + }, ; 3467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6395_from, ; char* from + ptr @.TypeMapEntry.6396_to; char* to + }, ; 3468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6397_from, ; char* from + ptr @.TypeMapEntry.6398_to; char* to + }, ; 3469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6399_from, ; char* from + ptr @.TypeMapEntry.6400_to; char* to + }, ; 3470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6401_from, ; char* from + ptr @.TypeMapEntry.6402_to; char* to + }, ; 3471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6403_from, ; char* from + ptr @.TypeMapEntry.6404_to; char* to + }, ; 3472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6405_from, ; char* from + ptr @.TypeMapEntry.6406_to; char* to + }, ; 3473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6407_from, ; char* from + ptr @.TypeMapEntry.6408_to; char* to + }, ; 3474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6409_from, ; char* from + ptr @.TypeMapEntry.6410_to; char* to + }, ; 3475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6411_from, ; char* from + ptr @.TypeMapEntry.6412_to; char* to + }, ; 3476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6413_from, ; char* from + ptr @.TypeMapEntry.6414_to; char* to + }, ; 3477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6415_from, ; char* from + ptr @.TypeMapEntry.6416_to; char* to + }, ; 3478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6417_from, ; char* from + ptr @.TypeMapEntry.6416_to; char* to + }, ; 3479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6418_from, ; char* from + ptr @.TypeMapEntry.6419_to; char* to + }, ; 3480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6420_from, ; char* from + ptr @.TypeMapEntry.6419_to; char* to + }, ; 3481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6421_from, ; char* from + ptr @.TypeMapEntry.6422_to; char* to + }, ; 3482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6423_from, ; char* from + ptr @.TypeMapEntry.6424_to; char* to + }, ; 3483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6425_from, ; char* from + ptr @.TypeMapEntry.6426_to; char* to + }, ; 3484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6427_from, ; char* from + ptr @.TypeMapEntry.6428_to; char* to + }, ; 3485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6429_from, ; char* from + ptr @.TypeMapEntry.6430_to; char* to + }, ; 3486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6431_from, ; char* from + ptr @.TypeMapEntry.6432_to; char* to + }, ; 3487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6433_from, ; char* from + ptr @.TypeMapEntry.6434_to; char* to + }, ; 3488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6435_from, ; char* from + ptr @.TypeMapEntry.6436_to; char* to + }, ; 3489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6437_from, ; char* from + ptr @.TypeMapEntry.6438_to; char* to + }, ; 3490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6439_from, ; char* from + ptr @.TypeMapEntry.6440_to; char* to + }, ; 3491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6441_from, ; char* from + ptr @.TypeMapEntry.6442_to; char* to + }, ; 3492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6443_from, ; char* from + ptr @.TypeMapEntry.6444_to; char* to + }, ; 3493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6445_from, ; char* from + ptr @.TypeMapEntry.6446_to; char* to + }, ; 3494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6447_from, ; char* from + ptr @.TypeMapEntry.6448_to; char* to + }, ; 3495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6449_from, ; char* from + ptr @.TypeMapEntry.6450_to; char* to + }, ; 3496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6451_from, ; char* from + ptr @.TypeMapEntry.6452_to; char* to + }, ; 3497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6453_from, ; char* from + ptr @.TypeMapEntry.6454_to; char* to + }, ; 3498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6455_from, ; char* from + ptr @.TypeMapEntry.6456_to; char* to + }, ; 3499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6457_from, ; char* from + ptr @.TypeMapEntry.6458_to; char* to + }, ; 3500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6459_from, ; char* from + ptr @.TypeMapEntry.6460_to; char* to + }, ; 3501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6461_from, ; char* from + ptr @.TypeMapEntry.6462_to; char* to + }, ; 3502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6463_from, ; char* from + ptr @.TypeMapEntry.6464_to; char* to + }, ; 3503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6465_from, ; char* from + ptr @.TypeMapEntry.6466_to; char* to + }, ; 3504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6467_from, ; char* from + ptr @.TypeMapEntry.6468_to; char* to + }, ; 3505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6469_from, ; char* from + ptr @.TypeMapEntry.6470_to; char* to + }, ; 3506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6471_from, ; char* from + ptr @.TypeMapEntry.6472_to; char* to + }, ; 3507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6473_from, ; char* from + ptr @.TypeMapEntry.6474_to; char* to + }, ; 3508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6475_from, ; char* from + ptr @.TypeMapEntry.6476_to; char* to + }, ; 3509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6477_from, ; char* from + ptr @.TypeMapEntry.6478_to; char* to + }, ; 3510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6479_from, ; char* from + ptr @.TypeMapEntry.6480_to; char* to + }, ; 3511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6481_from, ; char* from + ptr @.TypeMapEntry.6482_to; char* to + }, ; 3512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6483_from, ; char* from + ptr @.TypeMapEntry.6484_to; char* to + }, ; 3513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6485_from, ; char* from + ptr @.TypeMapEntry.6486_to; char* to + }, ; 3514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6487_from, ; char* from + ptr @.TypeMapEntry.6488_to; char* to + }, ; 3515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6489_from, ; char* from + ptr @.TypeMapEntry.6490_to; char* to + }, ; 3516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6491_from, ; char* from + ptr @.TypeMapEntry.6492_to; char* to + }, ; 3517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6493_from, ; char* from + ptr @.TypeMapEntry.6492_to; char* to + }, ; 3518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6494_from, ; char* from + ptr @.TypeMapEntry.6495_to; char* to + }, ; 3519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6496_from, ; char* from + ptr @.TypeMapEntry.6497_to; char* to + }, ; 3520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6498_from, ; char* from + ptr @.TypeMapEntry.6499_to; char* to + }, ; 3521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6500_from, ; char* from + ptr @.TypeMapEntry.6501_to; char* to + }, ; 3522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6502_from, ; char* from + ptr @.TypeMapEntry.6503_to; char* to + }, ; 3523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6504_from, ; char* from + ptr @.TypeMapEntry.6505_to; char* to + }, ; 3524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6506_from, ; char* from + ptr @.TypeMapEntry.6497_to; char* to + }, ; 3525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6507_from, ; char* from + ptr @.TypeMapEntry.6508_to; char* to + }, ; 3526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6509_from, ; char* from + ptr @.TypeMapEntry.6510_to; char* to + }, ; 3527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6511_from, ; char* from + ptr @.TypeMapEntry.6512_to; char* to + }, ; 3528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6513_from, ; char* from + ptr @.TypeMapEntry.6514_to; char* to + }, ; 3529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6515_from, ; char* from + ptr @.TypeMapEntry.6516_to; char* to + }, ; 3530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6517_from, ; char* from + ptr @.TypeMapEntry.6518_to; char* to + }, ; 3531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6519_from, ; char* from + ptr @.TypeMapEntry.6520_to; char* to + }, ; 3532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6521_from, ; char* from + ptr @.TypeMapEntry.6522_to; char* to + }, ; 3533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6523_from, ; char* from + ptr @.TypeMapEntry.6524_to; char* to + }, ; 3534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6525_from, ; char* from + ptr @.TypeMapEntry.6526_to; char* to + }, ; 3535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6527_from, ; char* from + ptr @.TypeMapEntry.6528_to; char* to + }, ; 3536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6529_from, ; char* from + ptr @.TypeMapEntry.6530_to; char* to + }, ; 3537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6531_from, ; char* from + ptr @.TypeMapEntry.6532_to; char* to + }, ; 3538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6533_from, ; char* from + ptr @.TypeMapEntry.6534_to; char* to + }, ; 3539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6535_from, ; char* from + ptr @.TypeMapEntry.6536_to; char* to + }, ; 3540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6537_from, ; char* from + ptr @.TypeMapEntry.6538_to; char* to + }, ; 3541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6539_from, ; char* from + ptr @.TypeMapEntry.6540_to; char* to + }, ; 3542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6541_from, ; char* from + ptr @.TypeMapEntry.6542_to; char* to + }, ; 3543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6543_from, ; char* from + ptr @.TypeMapEntry.6544_to; char* to + }, ; 3544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6545_from, ; char* from + ptr @.TypeMapEntry.6546_to; char* to + }, ; 3545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6547_from, ; char* from + ptr @.TypeMapEntry.6548_to; char* to + }, ; 3546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6549_from, ; char* from + ptr @.TypeMapEntry.6550_to; char* to + }, ; 3547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6551_from, ; char* from + ptr @.TypeMapEntry.6552_to; char* to + }, ; 3548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6553_from, ; char* from + ptr @.TypeMapEntry.6554_to; char* to + }, ; 3549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6555_from, ; char* from + ptr @.TypeMapEntry.6556_to; char* to + }, ; 3550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6557_from, ; char* from + ptr @.TypeMapEntry.6558_to; char* to + }, ; 3551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6559_from, ; char* from + ptr @.TypeMapEntry.6560_to; char* to + }, ; 3552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6561_from, ; char* from + ptr @.TypeMapEntry.6562_to; char* to + }, ; 3553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6563_from, ; char* from + ptr @.TypeMapEntry.6564_to; char* to + }, ; 3554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6565_from, ; char* from + ptr @.TypeMapEntry.6566_to; char* to + }, ; 3555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6567_from, ; char* from + ptr @.TypeMapEntry.6568_to; char* to + }, ; 3556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6569_from, ; char* from + ptr @.TypeMapEntry.6570_to; char* to + }, ; 3557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6571_from, ; char* from + ptr @.TypeMapEntry.6572_to; char* to + }, ; 3558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6573_from, ; char* from + ptr @.TypeMapEntry.6574_to; char* to + }, ; 3559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6575_from, ; char* from + ptr @.TypeMapEntry.6576_to; char* to + }, ; 3560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6577_from, ; char* from + ptr @.TypeMapEntry.6578_to; char* to + }, ; 3561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6579_from, ; char* from + ptr @.TypeMapEntry.6580_to; char* to + }, ; 3562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6581_from, ; char* from + ptr @.TypeMapEntry.6582_to; char* to + }, ; 3563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6583_from, ; char* from + ptr @.TypeMapEntry.6584_to; char* to + }, ; 3564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6585_from, ; char* from + ptr @.TypeMapEntry.6586_to; char* to + }, ; 3565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6587_from, ; char* from + ptr @.TypeMapEntry.6588_to; char* to + }, ; 3566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6589_from, ; char* from + ptr @.TypeMapEntry.6590_to; char* to + }, ; 3567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6591_from, ; char* from + ptr @.TypeMapEntry.6592_to; char* to + }, ; 3568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6593_from, ; char* from + ptr @.TypeMapEntry.6594_to; char* to + }, ; 3569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6595_from, ; char* from + ptr @.TypeMapEntry.6596_to; char* to + }, ; 3570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6597_from, ; char* from + ptr @.TypeMapEntry.6598_to; char* to + }, ; 3571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6599_from, ; char* from + ptr @.TypeMapEntry.6600_to; char* to + }, ; 3572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6601_from, ; char* from + ptr @.TypeMapEntry.6602_to; char* to + }, ; 3573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6603_from, ; char* from + ptr @.TypeMapEntry.6604_to; char* to + }, ; 3574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6605_from, ; char* from + ptr @.TypeMapEntry.6606_to; char* to + }, ; 3575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6607_from, ; char* from + ptr @.TypeMapEntry.6608_to; char* to + }, ; 3576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6609_from, ; char* from + ptr @.TypeMapEntry.6610_to; char* to + }, ; 3577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6611_from, ; char* from + ptr @.TypeMapEntry.6612_to; char* to + }, ; 3578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6613_from, ; char* from + ptr @.TypeMapEntry.6614_to; char* to + }, ; 3579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6615_from, ; char* from + ptr @.TypeMapEntry.6616_to; char* to + }, ; 3580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6617_from, ; char* from + ptr @.TypeMapEntry.6618_to; char* to + }, ; 3581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6619_from, ; char* from + ptr @.TypeMapEntry.6620_to; char* to + }, ; 3582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6621_from, ; char* from + ptr @.TypeMapEntry.6622_to; char* to + }, ; 3583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6623_from, ; char* from + ptr @.TypeMapEntry.6624_to; char* to + }, ; 3584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6625_from, ; char* from + ptr @.TypeMapEntry.6626_to; char* to + }, ; 3585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6627_from, ; char* from + ptr @.TypeMapEntry.6628_to; char* to + }, ; 3586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6629_from, ; char* from + ptr @.TypeMapEntry.6630_to; char* to + }, ; 3587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6631_from, ; char* from + ptr @.TypeMapEntry.6632_to; char* to + }, ; 3588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6633_from, ; char* from + ptr @.TypeMapEntry.6634_to; char* to + }, ; 3589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6635_from, ; char* from + ptr @.TypeMapEntry.6636_to; char* to + }, ; 3590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6637_from, ; char* from + ptr @.TypeMapEntry.6638_to; char* to + }, ; 3591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6639_from, ; char* from + ptr @.TypeMapEntry.6640_to; char* to + }, ; 3592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6641_from, ; char* from + ptr @.TypeMapEntry.6642_to; char* to + }, ; 3593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6643_from, ; char* from + ptr @.TypeMapEntry.6644_to; char* to + }, ; 3594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6645_from, ; char* from + ptr @.TypeMapEntry.6646_to; char* to + }, ; 3595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6647_from, ; char* from + ptr @.TypeMapEntry.6648_to; char* to + }, ; 3596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6649_from, ; char* from + ptr @.TypeMapEntry.6650_to; char* to + }, ; 3597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6651_from, ; char* from + ptr @.TypeMapEntry.6652_to; char* to + }, ; 3598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6653_from, ; char* from + ptr @.TypeMapEntry.6654_to; char* to + }, ; 3599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6655_from, ; char* from + ptr @.TypeMapEntry.6656_to; char* to + }, ; 3600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6657_from, ; char* from + ptr @.TypeMapEntry.6658_to; char* to + }, ; 3601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6659_from, ; char* from + ptr @.TypeMapEntry.6660_to; char* to + }, ; 3602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6661_from, ; char* from + ptr @.TypeMapEntry.6662_to; char* to + }, ; 3603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6663_from, ; char* from + ptr @.TypeMapEntry.6664_to; char* to + }, ; 3604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6665_from, ; char* from + ptr @.TypeMapEntry.6666_to; char* to + }, ; 3605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6667_from, ; char* from + ptr @.TypeMapEntry.6668_to; char* to + }, ; 3606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6669_from, ; char* from + ptr @.TypeMapEntry.6670_to; char* to + }, ; 3607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6671_from, ; char* from + ptr @.TypeMapEntry.6672_to; char* to + }, ; 3608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6673_from, ; char* from + ptr @.TypeMapEntry.6674_to; char* to + }, ; 3609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6675_from, ; char* from + ptr @.TypeMapEntry.6676_to; char* to + }, ; 3610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6677_from, ; char* from + ptr @.TypeMapEntry.6678_to; char* to + }, ; 3611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6679_from, ; char* from + ptr @.TypeMapEntry.6680_to; char* to + }, ; 3612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6681_from, ; char* from + ptr @.TypeMapEntry.6682_to; char* to + }, ; 3613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6683_from, ; char* from + ptr @.TypeMapEntry.6684_to; char* to + }, ; 3614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6685_from, ; char* from + ptr @.TypeMapEntry.6686_to; char* to + }, ; 3615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6687_from, ; char* from + ptr @.TypeMapEntry.6688_to; char* to + }, ; 3616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6689_from, ; char* from + ptr @.TypeMapEntry.6690_to; char* to + }, ; 3617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6691_from, ; char* from + ptr @.TypeMapEntry.6692_to; char* to + }, ; 3618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6693_from, ; char* from + ptr @.TypeMapEntry.6694_to; char* to + }, ; 3619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6695_from, ; char* from + ptr @.TypeMapEntry.6696_to; char* to + }, ; 3620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6697_from, ; char* from + ptr @.TypeMapEntry.6698_to; char* to + }, ; 3621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6699_from, ; char* from + ptr @.TypeMapEntry.6700_to; char* to + }, ; 3622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6701_from, ; char* from + ptr @.TypeMapEntry.6702_to; char* to + }, ; 3623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6703_from, ; char* from + ptr @.TypeMapEntry.6704_to; char* to + }, ; 3624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6705_from, ; char* from + ptr @.TypeMapEntry.6706_to; char* to + }, ; 3625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6707_from, ; char* from + ptr @.TypeMapEntry.6708_to; char* to + }, ; 3626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6709_from, ; char* from + ptr @.TypeMapEntry.6710_to; char* to + }, ; 3627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6711_from, ; char* from + ptr @.TypeMapEntry.6712_to; char* to + }, ; 3628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6713_from, ; char* from + ptr @.TypeMapEntry.6714_to; char* to + }, ; 3629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6715_from, ; char* from + ptr @.TypeMapEntry.6716_to; char* to + }, ; 3630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6717_from, ; char* from + ptr @.TypeMapEntry.6718_to; char* to + }, ; 3631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6719_from, ; char* from + ptr @.TypeMapEntry.6720_to; char* to + }, ; 3632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6721_from, ; char* from + ptr @.TypeMapEntry.6722_to; char* to + }, ; 3633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6723_from, ; char* from + ptr @.TypeMapEntry.6724_to; char* to + }, ; 3634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6725_from, ; char* from + ptr @.TypeMapEntry.6724_to; char* to + }, ; 3635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6726_from, ; char* from + ptr @.TypeMapEntry.6727_to; char* to + }, ; 3636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6728_from, ; char* from + ptr @.TypeMapEntry.6729_to; char* to + }, ; 3637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6730_from, ; char* from + ptr @.TypeMapEntry.6731_to; char* to + }, ; 3638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6732_from, ; char* from + ptr @.TypeMapEntry.6733_to; char* to + }, ; 3639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6734_from, ; char* from + ptr @.TypeMapEntry.6735_to; char* to + }, ; 3640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6736_from, ; char* from + ptr @.TypeMapEntry.6737_to; char* to + }, ; 3641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6738_from, ; char* from + ptr @.TypeMapEntry.6739_to; char* to + }, ; 3642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6740_from, ; char* from + ptr @.TypeMapEntry.6741_to; char* to + }, ; 3643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6742_from, ; char* from + ptr @.TypeMapEntry.6743_to; char* to + }, ; 3644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6744_from, ; char* from + ptr @.TypeMapEntry.6745_to; char* to + }, ; 3645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6746_from, ; char* from + ptr @.TypeMapEntry.6747_to; char* to + }, ; 3646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6748_from, ; char* from + ptr @.TypeMapEntry.6749_to; char* to + }, ; 3647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6750_from, ; char* from + ptr @.TypeMapEntry.6751_to; char* to + }, ; 3648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6752_from, ; char* from + ptr @.TypeMapEntry.6753_to; char* to + }, ; 3649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6754_from, ; char* from + ptr @.TypeMapEntry.6755_to; char* to + }, ; 3650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6756_from, ; char* from + ptr @.TypeMapEntry.6757_to; char* to + }, ; 3651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6758_from, ; char* from + ptr @.TypeMapEntry.6759_to; char* to + }, ; 3652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6760_from, ; char* from + ptr @.TypeMapEntry.6761_to; char* to + }, ; 3653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6762_from, ; char* from + ptr @.TypeMapEntry.6763_to; char* to + }, ; 3654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6764_from, ; char* from + ptr @.TypeMapEntry.6765_to; char* to + }, ; 3655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6766_from, ; char* from + ptr @.TypeMapEntry.6767_to; char* to + }, ; 3656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6768_from, ; char* from + ptr @.TypeMapEntry.6769_to; char* to + }, ; 3657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6770_from, ; char* from + ptr @.TypeMapEntry.6771_to; char* to + }, ; 3658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6772_from, ; char* from + ptr @.TypeMapEntry.6773_to; char* to + }, ; 3659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6774_from, ; char* from + ptr @.TypeMapEntry.6775_to; char* to + }, ; 3660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6776_from, ; char* from + ptr @.TypeMapEntry.6777_to; char* to + }, ; 3661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6778_from, ; char* from + ptr @.TypeMapEntry.6779_to; char* to + }, ; 3662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6780_from, ; char* from + ptr @.TypeMapEntry.6781_to; char* to + }, ; 3663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6782_from, ; char* from + ptr @.TypeMapEntry.6783_to; char* to + }, ; 3664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6784_from, ; char* from + ptr @.TypeMapEntry.6785_to; char* to + }, ; 3665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6786_from, ; char* from + ptr @.TypeMapEntry.6787_to; char* to + }, ; 3666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6788_from, ; char* from + ptr @.TypeMapEntry.6789_to; char* to + }, ; 3667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6790_from, ; char* from + ptr @.TypeMapEntry.6791_to; char* to + }, ; 3668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6792_from, ; char* from + ptr @.TypeMapEntry.6793_to; char* to + }, ; 3669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6794_from, ; char* from + ptr @.TypeMapEntry.6795_to; char* to + }, ; 3670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6796_from, ; char* from + ptr @.TypeMapEntry.6797_to; char* to + }, ; 3671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6798_from, ; char* from + ptr @.TypeMapEntry.6799_to; char* to + }, ; 3672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6800_from, ; char* from + ptr @.TypeMapEntry.6801_to; char* to + }, ; 3673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6802_from, ; char* from + ptr @.TypeMapEntry.6803_to; char* to + }, ; 3674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6804_from, ; char* from + ptr @.TypeMapEntry.6805_to; char* to + }, ; 3675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6806_from, ; char* from + ptr @.TypeMapEntry.6807_to; char* to + }, ; 3676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6808_from, ; char* from + ptr @.TypeMapEntry.6809_to; char* to + }, ; 3677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6810_from, ; char* from + ptr @.TypeMapEntry.6811_to; char* to + }, ; 3678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6812_from, ; char* from + ptr @.TypeMapEntry.6813_to; char* to + }, ; 3679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6814_from, ; char* from + ptr @.TypeMapEntry.6815_to; char* to + }, ; 3680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6816_from, ; char* from + ptr @.TypeMapEntry.6817_to; char* to + }, ; 3681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6818_from, ; char* from + ptr @.TypeMapEntry.6819_to; char* to + }, ; 3682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6820_from, ; char* from + ptr @.TypeMapEntry.6821_to; char* to + }, ; 3683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6822_from, ; char* from + ptr @.TypeMapEntry.6823_to; char* to + }, ; 3684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6824_from, ; char* from + ptr @.TypeMapEntry.6825_to; char* to + }, ; 3685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6826_from, ; char* from + ptr @.TypeMapEntry.6827_to; char* to + }, ; 3686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6828_from, ; char* from + ptr @.TypeMapEntry.6829_to; char* to + }, ; 3687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6830_from, ; char* from + ptr @.TypeMapEntry.6831_to; char* to + }, ; 3688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6832_from, ; char* from + ptr @.TypeMapEntry.6833_to; char* to + }, ; 3689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6834_from, ; char* from + ptr @.TypeMapEntry.6835_to; char* to + }, ; 3690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6836_from, ; char* from + ptr @.TypeMapEntry.6837_to; char* to + }, ; 3691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6838_from, ; char* from + ptr @.TypeMapEntry.6839_to; char* to + }, ; 3692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6840_from, ; char* from + ptr @.TypeMapEntry.6841_to; char* to + }, ; 3693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6842_from, ; char* from + ptr @.TypeMapEntry.6843_to; char* to + }, ; 3694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6844_from, ; char* from + ptr @.TypeMapEntry.6845_to; char* to + }, ; 3695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6846_from, ; char* from + ptr @.TypeMapEntry.6847_to; char* to + }, ; 3696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6848_from, ; char* from + ptr @.TypeMapEntry.6849_to; char* to + }, ; 3697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6850_from, ; char* from + ptr @.TypeMapEntry.6851_to; char* to + }, ; 3698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6852_from, ; char* from + ptr @.TypeMapEntry.6853_to; char* to + }, ; 3699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6854_from, ; char* from + ptr @.TypeMapEntry.6855_to; char* to + }, ; 3700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6856_from, ; char* from + ptr @.TypeMapEntry.6857_to; char* to + }, ; 3701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6858_from, ; char* from + ptr @.TypeMapEntry.6859_to; char* to + }, ; 3702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6860_from, ; char* from + ptr @.TypeMapEntry.6861_to; char* to + }, ; 3703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6862_from, ; char* from + ptr @.TypeMapEntry.6863_to; char* to + }, ; 3704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6864_from, ; char* from + ptr @.TypeMapEntry.6865_to; char* to + }, ; 3705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6866_from, ; char* from + ptr @.TypeMapEntry.6867_to; char* to + }, ; 3706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6868_from, ; char* from + ptr @.TypeMapEntry.6869_to; char* to + }, ; 3707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6870_from, ; char* from + ptr @.TypeMapEntry.6871_to; char* to + }, ; 3708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6872_from, ; char* from + ptr @.TypeMapEntry.6873_to; char* to + }, ; 3709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6874_from, ; char* from + ptr @.TypeMapEntry.6875_to; char* to + }, ; 3710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6876_from, ; char* from + ptr @.TypeMapEntry.6877_to; char* to + }, ; 3711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6878_from, ; char* from + ptr @.TypeMapEntry.6879_to; char* to + }, ; 3712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6880_from, ; char* from + ptr @.TypeMapEntry.6881_to; char* to + }, ; 3713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6882_from, ; char* from + ptr @.TypeMapEntry.6883_to; char* to + }, ; 3714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6884_from, ; char* from + ptr @.TypeMapEntry.6885_to; char* to + }, ; 3715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6886_from, ; char* from + ptr @.TypeMapEntry.6887_to; char* to + }, ; 3716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6888_from, ; char* from + ptr @.TypeMapEntry.6889_to; char* to + }, ; 3717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6890_from, ; char* from + ptr @.TypeMapEntry.6891_to; char* to + }, ; 3718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6892_from, ; char* from + ptr @.TypeMapEntry.6893_to; char* to + }, ; 3719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6894_from, ; char* from + ptr @.TypeMapEntry.6895_to; char* to + }, ; 3720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6896_from, ; char* from + ptr @.TypeMapEntry.6897_to; char* to + }, ; 3721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6898_from, ; char* from + ptr @.TypeMapEntry.6899_to; char* to + }, ; 3722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6900_from, ; char* from + ptr @.TypeMapEntry.6901_to; char* to + }, ; 3723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6902_from, ; char* from + ptr @.TypeMapEntry.6903_to; char* to + }, ; 3724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6904_from, ; char* from + ptr @.TypeMapEntry.6905_to; char* to + }, ; 3725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6906_from, ; char* from + ptr @.TypeMapEntry.6907_to; char* to + }, ; 3726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6908_from, ; char* from + ptr @.TypeMapEntry.6905_to; char* to + }, ; 3727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6909_from, ; char* from + ptr @.TypeMapEntry.6910_to; char* to + }, ; 3728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6911_from, ; char* from + ptr @.TypeMapEntry.6912_to; char* to + }, ; 3729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6913_from, ; char* from + ptr @.TypeMapEntry.6914_to; char* to + }, ; 3730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6915_from, ; char* from + ptr @.TypeMapEntry.6916_to; char* to + }, ; 3731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6917_from, ; char* from + ptr @.TypeMapEntry.6918_to; char* to + }, ; 3732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6919_from, ; char* from + ptr @.TypeMapEntry.6920_to; char* to + }, ; 3733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6921_from, ; char* from + ptr @.TypeMapEntry.6922_to; char* to + }, ; 3734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6923_from, ; char* from + ptr @.TypeMapEntry.6924_to; char* to + }, ; 3735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6925_from, ; char* from + ptr @.TypeMapEntry.6926_to; char* to + }, ; 3736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6927_from, ; char* from + ptr @.TypeMapEntry.6928_to; char* to + }, ; 3737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6929_from, ; char* from + ptr @.TypeMapEntry.6930_to; char* to + }, ; 3738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6931_from, ; char* from + ptr @.TypeMapEntry.6932_to; char* to + }, ; 3739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6933_from, ; char* from + ptr @.TypeMapEntry.6934_to; char* to + }, ; 3740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6935_from, ; char* from + ptr @.TypeMapEntry.6936_to; char* to + }, ; 3741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6937_from, ; char* from + ptr @.TypeMapEntry.6938_to; char* to + }, ; 3742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6939_from, ; char* from + ptr @.TypeMapEntry.6940_to; char* to + }, ; 3743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6941_from, ; char* from + ptr @.TypeMapEntry.6942_to; char* to + }, ; 3744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6943_from, ; char* from + ptr @.TypeMapEntry.6944_to; char* to + }, ; 3745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6945_from, ; char* from + ptr @.TypeMapEntry.6946_to; char* to + }, ; 3746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6947_from, ; char* from + ptr @.TypeMapEntry.6948_to; char* to + }, ; 3747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6949_from, ; char* from + ptr @.TypeMapEntry.6950_to; char* to + }, ; 3748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6951_from, ; char* from + ptr @.TypeMapEntry.6952_to; char* to + }, ; 3749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6953_from, ; char* from + ptr @.TypeMapEntry.6954_to; char* to + }, ; 3750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6955_from, ; char* from + ptr @.TypeMapEntry.6956_to; char* to + }, ; 3751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6957_from, ; char* from + ptr @.TypeMapEntry.6958_to; char* to + }, ; 3752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6959_from, ; char* from + ptr @.TypeMapEntry.6960_to; char* to + }, ; 3753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6961_from, ; char* from + ptr @.TypeMapEntry.6962_to; char* to + }, ; 3754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6963_from, ; char* from + ptr @.TypeMapEntry.6964_to; char* to + }, ; 3755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6965_from, ; char* from + ptr @.TypeMapEntry.6966_to; char* to + }, ; 3756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6967_from, ; char* from + ptr @.TypeMapEntry.6968_to; char* to + }, ; 3757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6969_from, ; char* from + ptr @.TypeMapEntry.6970_to; char* to + }, ; 3758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6971_from, ; char* from + ptr @.TypeMapEntry.6972_to; char* to + }, ; 3759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6973_from, ; char* from + ptr @.TypeMapEntry.6974_to; char* to + }, ; 3760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6975_from, ; char* from + ptr @.TypeMapEntry.6976_to; char* to + }, ; 3761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6977_from, ; char* from + ptr @.TypeMapEntry.6978_to; char* to + }, ; 3762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6979_from, ; char* from + ptr @.TypeMapEntry.6980_to; char* to + }, ; 3763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6981_from, ; char* from + ptr @.TypeMapEntry.6982_to; char* to + }, ; 3764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6983_from, ; char* from + ptr @.TypeMapEntry.6984_to; char* to + }, ; 3765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6985_from, ; char* from + ptr @.TypeMapEntry.6986_to; char* to + }, ; 3766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6987_from, ; char* from + ptr @.TypeMapEntry.6988_to; char* to + }, ; 3767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6989_from, ; char* from + ptr @.TypeMapEntry.6990_to; char* to + }, ; 3768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6991_from, ; char* from + ptr @.TypeMapEntry.6992_to; char* to + }, ; 3769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6993_from, ; char* from + ptr @.TypeMapEntry.6994_to; char* to + }, ; 3770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6995_from, ; char* from + ptr @.TypeMapEntry.6996_to; char* to + }, ; 3771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6997_from, ; char* from + ptr @.TypeMapEntry.6998_to; char* to + }, ; 3772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6999_from, ; char* from + ptr @.TypeMapEntry.7000_to; char* to + }, ; 3773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7001_from, ; char* from + ptr @.TypeMapEntry.7002_to; char* to + }, ; 3774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7003_from, ; char* from + ptr @.TypeMapEntry.7004_to; char* to + }, ; 3775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7005_from, ; char* from + ptr @.TypeMapEntry.7006_to; char* to + }, ; 3776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7007_from, ; char* from + ptr @.TypeMapEntry.7008_to; char* to + }, ; 3777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7009_from, ; char* from + ptr @.TypeMapEntry.7010_to; char* to + }, ; 3778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7011_from, ; char* from + ptr @.TypeMapEntry.7012_to; char* to + }, ; 3779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7013_from, ; char* from + ptr @.TypeMapEntry.7014_to; char* to + }, ; 3780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7015_from, ; char* from + ptr @.TypeMapEntry.7016_to; char* to + }, ; 3781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7017_from, ; char* from + ptr @.TypeMapEntry.7018_to; char* to + }, ; 3782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7019_from, ; char* from + ptr @.TypeMapEntry.7020_to; char* to + }, ; 3783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7021_from, ; char* from + ptr @.TypeMapEntry.7022_to; char* to + }, ; 3784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7023_from, ; char* from + ptr @.TypeMapEntry.7024_to; char* to + }, ; 3785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7025_from, ; char* from + ptr @.TypeMapEntry.7026_to; char* to + }, ; 3786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7027_from, ; char* from + ptr @.TypeMapEntry.7028_to; char* to + }, ; 3787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7029_from, ; char* from + ptr @.TypeMapEntry.7030_to; char* to + }, ; 3788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7031_from, ; char* from + ptr @.TypeMapEntry.7032_to; char* to + }, ; 3789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7033_from, ; char* from + ptr @.TypeMapEntry.7034_to; char* to + }, ; 3790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7035_from, ; char* from + ptr @.TypeMapEntry.7036_to; char* to + }, ; 3791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7037_from, ; char* from + ptr @.TypeMapEntry.7038_to; char* to + }, ; 3792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7039_from, ; char* from + ptr @.TypeMapEntry.7040_to; char* to + }, ; 3793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7041_from, ; char* from + ptr @.TypeMapEntry.7042_to; char* to + }, ; 3794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7043_from, ; char* from + ptr @.TypeMapEntry.7044_to; char* to + }, ; 3795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7045_from, ; char* from + ptr @.TypeMapEntry.7046_to; char* to + }, ; 3796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7047_from, ; char* from + ptr @.TypeMapEntry.7048_to; char* to + }, ; 3797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7049_from, ; char* from + ptr @.TypeMapEntry.7050_to; char* to + }, ; 3798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7051_from, ; char* from + ptr @.TypeMapEntry.7052_to; char* to + }, ; 3799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7053_from, ; char* from + ptr @.TypeMapEntry.7054_to; char* to + }, ; 3800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7055_from, ; char* from + ptr @.TypeMapEntry.7056_to; char* to + }, ; 3801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7057_from, ; char* from + ptr @.TypeMapEntry.7058_to; char* to + }, ; 3802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7059_from, ; char* from + ptr @.TypeMapEntry.7060_to; char* to + }, ; 3803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7061_from, ; char* from + ptr @.TypeMapEntry.7062_to; char* to + }, ; 3804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7063_from, ; char* from + ptr @.TypeMapEntry.7064_to; char* to + }, ; 3805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7065_from, ; char* from + ptr @.TypeMapEntry.7066_to; char* to + }, ; 3806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7067_from, ; char* from + ptr @.TypeMapEntry.7068_to; char* to + }, ; 3807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7069_from, ; char* from + ptr @.TypeMapEntry.7070_to; char* to + }, ; 3808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7071_from, ; char* from + ptr @.TypeMapEntry.7072_to; char* to + }, ; 3809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7073_from, ; char* from + ptr @.TypeMapEntry.7074_to; char* to + }, ; 3810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7075_from, ; char* from + ptr @.TypeMapEntry.7076_to; char* to + }, ; 3811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7077_from, ; char* from + ptr @.TypeMapEntry.7078_to; char* to + }, ; 3812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7079_from, ; char* from + ptr @.TypeMapEntry.7080_to; char* to + }, ; 3813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7081_from, ; char* from + ptr @.TypeMapEntry.7082_to; char* to + }, ; 3814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7083_from, ; char* from + ptr @.TypeMapEntry.7084_to; char* to + }, ; 3815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7085_from, ; char* from + ptr @.TypeMapEntry.7086_to; char* to + }, ; 3816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7087_from, ; char* from + ptr @.TypeMapEntry.7088_to; char* to + }, ; 3817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7089_from, ; char* from + ptr @.TypeMapEntry.7090_to; char* to + }, ; 3818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7091_from, ; char* from + ptr @.TypeMapEntry.7092_to; char* to + }, ; 3819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7093_from, ; char* from + ptr @.TypeMapEntry.7094_to; char* to + }, ; 3820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7095_from, ; char* from + ptr @.TypeMapEntry.7096_to; char* to + }, ; 3821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7097_from, ; char* from + ptr @.TypeMapEntry.7098_to; char* to + }, ; 3822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7099_from, ; char* from + ptr @.TypeMapEntry.7100_to; char* to + }, ; 3823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7101_from, ; char* from + ptr @.TypeMapEntry.7102_to; char* to + }, ; 3824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7103_from, ; char* from + ptr @.TypeMapEntry.7104_to; char* to + }, ; 3825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7105_from, ; char* from + ptr @.TypeMapEntry.7106_to; char* to + }, ; 3826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7107_from, ; char* from + ptr @.TypeMapEntry.7090_to; char* to + }, ; 3827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7108_from, ; char* from + ptr @.TypeMapEntry.7109_to; char* to + }, ; 3828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7110_from, ; char* from + ptr @.TypeMapEntry.7111_to; char* to + }, ; 3829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7112_from, ; char* from + ptr @.TypeMapEntry.7113_to; char* to + }, ; 3830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7114_from, ; char* from + ptr @.TypeMapEntry.7115_to; char* to + }, ; 3831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7116_from, ; char* from + ptr @.TypeMapEntry.7117_to; char* to + }, ; 3832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7118_from, ; char* from + ptr @.TypeMapEntry.7119_to; char* to + }, ; 3833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7120_from, ; char* from + ptr @.TypeMapEntry.7121_to; char* to + }, ; 3834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7122_from, ; char* from + ptr @.TypeMapEntry.7123_to; char* to + }, ; 3835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7124_from, ; char* from + ptr @.TypeMapEntry.7125_to; char* to + }, ; 3836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7126_from, ; char* from + ptr @.TypeMapEntry.7127_to; char* to + }, ; 3837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7128_from, ; char* from + ptr @.TypeMapEntry.7129_to; char* to + }, ; 3838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7130_from, ; char* from + ptr @.TypeMapEntry.7131_to; char* to + }, ; 3839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7132_from, ; char* from + ptr @.TypeMapEntry.7133_to; char* to + }, ; 3840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7134_from, ; char* from + ptr @.TypeMapEntry.7135_to; char* to + }, ; 3841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7136_from, ; char* from + ptr @.TypeMapEntry.7137_to; char* to + }, ; 3842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7138_from, ; char* from + ptr @.TypeMapEntry.7139_to; char* to + }, ; 3843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7140_from, ; char* from + ptr @.TypeMapEntry.7141_to; char* to + }, ; 3844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7142_from, ; char* from + ptr @.TypeMapEntry.7143_to; char* to + }, ; 3845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7144_from, ; char* from + ptr @.TypeMapEntry.7145_to; char* to + }, ; 3846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7146_from, ; char* from + ptr @.TypeMapEntry.7147_to; char* to + }, ; 3847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7148_from, ; char* from + ptr @.TypeMapEntry.7149_to; char* to + }, ; 3848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7150_from, ; char* from + ptr @.TypeMapEntry.7151_to; char* to + }, ; 3849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7152_from, ; char* from + ptr @.TypeMapEntry.7153_to; char* to + }, ; 3850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7154_from, ; char* from + ptr @.TypeMapEntry.7155_to; char* to + }, ; 3851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7156_from, ; char* from + ptr @.TypeMapEntry.7157_to; char* to + }, ; 3852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7158_from, ; char* from + ptr @.TypeMapEntry.7159_to; char* to + }, ; 3853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7160_from, ; char* from + ptr @.TypeMapEntry.7161_to; char* to + }, ; 3854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7162_from, ; char* from + ptr @.TypeMapEntry.7163_to; char* to + }, ; 3855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7164_from, ; char* from + ptr @.TypeMapEntry.7165_to; char* to + }, ; 3856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7166_from, ; char* from + ptr @.TypeMapEntry.7167_to; char* to + }, ; 3857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7168_from, ; char* from + ptr @.TypeMapEntry.7169_to; char* to + }, ; 3858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7170_from, ; char* from + ptr @.TypeMapEntry.7171_to; char* to + }, ; 3859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7172_from, ; char* from + ptr @.TypeMapEntry.7173_to; char* to + }, ; 3860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7174_from, ; char* from + ptr @.TypeMapEntry.7175_to; char* to + }, ; 3861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7176_from, ; char* from + ptr @.TypeMapEntry.7175_to; char* to + }, ; 3862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7177_from, ; char* from + ptr @.TypeMapEntry.7178_to; char* to + }, ; 3863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7179_from, ; char* from + ptr @.TypeMapEntry.7178_to; char* to + }, ; 3864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7180_from, ; char* from + ptr @.TypeMapEntry.7181_to; char* to + }, ; 3865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7182_from, ; char* from + ptr @.TypeMapEntry.7181_to; char* to + }, ; 3866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7183_from, ; char* from + ptr @.TypeMapEntry.7184_to; char* to + }, ; 3867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7185_from, ; char* from + ptr @.TypeMapEntry.7186_to; char* to + }, ; 3868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7187_from, ; char* from + ptr @.TypeMapEntry.7188_to; char* to + }, ; 3869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7189_from, ; char* from + ptr @.TypeMapEntry.7188_to; char* to + }, ; 3870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7190_from, ; char* from + ptr @.TypeMapEntry.7191_to; char* to + }, ; 3871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7192_from, ; char* from + ptr @.TypeMapEntry.7193_to; char* to + }, ; 3872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7194_from, ; char* from + ptr @.TypeMapEntry.7195_to; char* to + }, ; 3873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7196_from, ; char* from + ptr @.TypeMapEntry.7197_to; char* to + }, ; 3874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7198_from, ; char* from + ptr @.TypeMapEntry.7199_to; char* to + }, ; 3875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7200_from, ; char* from + ptr @.TypeMapEntry.7201_to; char* to + }, ; 3876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7202_from, ; char* from + ptr @.TypeMapEntry.7203_to; char* to + }, ; 3877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7204_from, ; char* from + ptr @.TypeMapEntry.7201_to; char* to + }, ; 3878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7205_from, ; char* from + ptr @.TypeMapEntry.7206_to; char* to + }, ; 3879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7207_from, ; char* from + ptr @.TypeMapEntry.7208_to; char* to + }, ; 3880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7209_from, ; char* from + ptr @.TypeMapEntry.7210_to; char* to + }, ; 3881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7211_from, ; char* from + ptr @.TypeMapEntry.7212_to; char* to + }, ; 3882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7213_from, ; char* from + ptr @.TypeMapEntry.7212_to; char* to + }, ; 3883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7214_from, ; char* from + ptr @.TypeMapEntry.7215_to; char* to + }, ; 3884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7216_from, ; char* from + ptr @.TypeMapEntry.7217_to; char* to + }, ; 3885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7218_from, ; char* from + ptr @.TypeMapEntry.7215_to; char* to + }, ; 3886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7219_from, ; char* from + ptr @.TypeMapEntry.7220_to; char* to + }, ; 3887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7221_from, ; char* from + ptr @.TypeMapEntry.7222_to; char* to + }, ; 3888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7223_from, ; char* from + ptr @.TypeMapEntry.7220_to; char* to + }, ; 3889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7224_from, ; char* from + ptr @.TypeMapEntry.7225_to; char* to + }, ; 3890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7226_from, ; char* from + ptr @.TypeMapEntry.7227_to; char* to + }, ; 3891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7228_from, ; char* from + ptr @.TypeMapEntry.7225_to; char* to + }, ; 3892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7229_from, ; char* from + ptr @.TypeMapEntry.7230_to; char* to + }, ; 3893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7231_from, ; char* from + ptr @.TypeMapEntry.7230_to; char* to + }, ; 3894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7232_from, ; char* from + ptr @.TypeMapEntry.7233_to; char* to + }, ; 3895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7234_from, ; char* from + ptr @.TypeMapEntry.7235_to; char* to + }, ; 3896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7236_from, ; char* from + ptr @.TypeMapEntry.7237_to; char* to + }, ; 3897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7238_from, ; char* from + ptr @.TypeMapEntry.7239_to; char* to + }, ; 3898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7240_from, ; char* from + ptr @.TypeMapEntry.7241_to; char* to + }, ; 3899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7242_from, ; char* from + ptr @.TypeMapEntry.7243_to; char* to + }, ; 3900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7244_from, ; char* from + ptr @.TypeMapEntry.7243_to; char* to + }, ; 3901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7245_from, ; char* from + ptr @.TypeMapEntry.7246_to; char* to + }, ; 3902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7247_from, ; char* from + ptr @.TypeMapEntry.7248_to; char* to + }, ; 3903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7249_from, ; char* from + ptr @.TypeMapEntry.7250_to; char* to + }, ; 3904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7251_from, ; char* from + ptr @.TypeMapEntry.7252_to; char* to + }, ; 3905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7253_from, ; char* from + ptr @.TypeMapEntry.7254_to; char* to + }, ; 3906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7255_from, ; char* from + ptr @.TypeMapEntry.7254_to; char* to + }, ; 3907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7256_from, ; char* from + ptr @.TypeMapEntry.7257_to; char* to + }, ; 3908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7258_from, ; char* from + ptr @.TypeMapEntry.7259_to; char* to + }, ; 3909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7260_from, ; char* from + ptr @.TypeMapEntry.7261_to; char* to + }, ; 3910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7262_from, ; char* from + ptr @.TypeMapEntry.7263_to; char* to + }, ; 3911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7264_from, ; char* from + ptr @.TypeMapEntry.7265_to; char* to + }, ; 3912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7266_from, ; char* from + ptr @.TypeMapEntry.7267_to; char* to + }, ; 3913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7268_from, ; char* from + ptr @.TypeMapEntry.7269_to; char* to + }, ; 3914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7270_from, ; char* from + ptr @.TypeMapEntry.7271_to; char* to + }, ; 3915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7272_from, ; char* from + ptr @.TypeMapEntry.7273_to; char* to + }, ; 3916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7274_from, ; char* from + ptr @.TypeMapEntry.7273_to; char* to + }, ; 3917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7275_from, ; char* from + ptr @.TypeMapEntry.7276_to; char* to + }, ; 3918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7277_from, ; char* from + ptr @.TypeMapEntry.7276_to; char* to + }, ; 3919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7278_from, ; char* from + ptr @.TypeMapEntry.7279_to; char* to + }, ; 3920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7280_from, ; char* from + ptr @.TypeMapEntry.7281_to; char* to + }, ; 3921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7282_from, ; char* from + ptr @.TypeMapEntry.7283_to; char* to + }, ; 3922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7284_from, ; char* from + ptr @.TypeMapEntry.7285_to; char* to + }, ; 3923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7286_from, ; char* from + ptr @.TypeMapEntry.7283_to; char* to + }, ; 3924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7287_from, ; char* from + ptr @.TypeMapEntry.7288_to; char* to + }, ; 3925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7289_from, ; char* from + ptr @.TypeMapEntry.7288_to; char* to + }, ; 3926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7290_from, ; char* from + ptr @.TypeMapEntry.7291_to; char* to + }, ; 3927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7292_from, ; char* from + ptr @.TypeMapEntry.7293_to; char* to + }, ; 3928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7294_from, ; char* from + ptr @.TypeMapEntry.7295_to; char* to + }, ; 3929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7296_from, ; char* from + ptr @.TypeMapEntry.7297_to; char* to + }, ; 3930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7298_from, ; char* from + ptr @.TypeMapEntry.7299_to; char* to + }, ; 3931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7300_from, ; char* from + ptr @.TypeMapEntry.7301_to; char* to + }, ; 3932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7302_from, ; char* from + ptr @.TypeMapEntry.7303_to; char* to + }, ; 3933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7304_from, ; char* from + ptr @.TypeMapEntry.7303_to; char* to + }, ; 3934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7305_from, ; char* from + ptr @.TypeMapEntry.7306_to; char* to + }, ; 3935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7307_from, ; char* from + ptr @.TypeMapEntry.7306_to; char* to + }, ; 3936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7308_from, ; char* from + ptr @.TypeMapEntry.7309_to; char* to + }, ; 3937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7310_from, ; char* from + ptr @.TypeMapEntry.7311_to; char* to + }, ; 3938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7312_from, ; char* from + ptr @.TypeMapEntry.7313_to; char* to + }, ; 3939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7314_from, ; char* from + ptr @.TypeMapEntry.7313_to; char* to + }, ; 3940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7315_from, ; char* from + ptr @.TypeMapEntry.7316_to; char* to + }, ; 3941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7317_from, ; char* from + ptr @.TypeMapEntry.7318_to; char* to + }, ; 3942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7319_from, ; char* from + ptr @.TypeMapEntry.7320_to; char* to + }, ; 3943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7321_from, ; char* from + ptr @.TypeMapEntry.7322_to; char* to + }, ; 3944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7323_from, ; char* from + ptr @.TypeMapEntry.7324_to; char* to + }, ; 3945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7325_from, ; char* from + ptr @.TypeMapEntry.7326_to; char* to + }, ; 3946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7327_from, ; char* from + ptr @.TypeMapEntry.7328_to; char* to + }, ; 3947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7329_from, ; char* from + ptr @.TypeMapEntry.7330_to; char* to + }, ; 3948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7331_from, ; char* from + ptr @.TypeMapEntry.7332_to; char* to + }, ; 3949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7333_from, ; char* from + ptr @.TypeMapEntry.7334_to; char* to + }, ; 3950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7335_from, ; char* from + ptr @.TypeMapEntry.7336_to; char* to + }, ; 3951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7337_from, ; char* from + ptr @.TypeMapEntry.7338_to; char* to + }, ; 3952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7339_from, ; char* from + ptr @.TypeMapEntry.7340_to; char* to + }, ; 3953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7341_from, ; char* from + ptr @.TypeMapEntry.7342_to; char* to + }, ; 3954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7343_from, ; char* from + ptr @.TypeMapEntry.7344_to; char* to + }, ; 3955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7345_from, ; char* from + ptr @.TypeMapEntry.7346_to; char* to + }, ; 3956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7347_from, ; char* from + ptr @.TypeMapEntry.7346_to; char* to + }, ; 3957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7348_from, ; char* from + ptr @.TypeMapEntry.7349_to; char* to + }, ; 3958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7350_from, ; char* from + ptr @.TypeMapEntry.7351_to; char* to + }, ; 3959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7352_from, ; char* from + ptr @.TypeMapEntry.7353_to; char* to + }, ; 3960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7354_from, ; char* from + ptr @.TypeMapEntry.7355_to; char* to + }, ; 3961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7356_from, ; char* from + ptr @.TypeMapEntry.7357_to; char* to + }, ; 3962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7358_from, ; char* from + ptr @.TypeMapEntry.7359_to; char* to + }, ; 3963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7360_from, ; char* from + ptr @.TypeMapEntry.7361_to; char* to + }, ; 3964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7362_from, ; char* from + ptr @.TypeMapEntry.7363_to; char* to + }, ; 3965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7364_from, ; char* from + ptr @.TypeMapEntry.7365_to; char* to + }, ; 3966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7366_from, ; char* from + ptr @.TypeMapEntry.7367_to; char* to + }, ; 3967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7368_from, ; char* from + ptr @.TypeMapEntry.7367_to; char* to + }, ; 3968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7369_from, ; char* from + ptr @.TypeMapEntry.7370_to; char* to + }, ; 3969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7371_from, ; char* from + ptr @.TypeMapEntry.7372_to; char* to + }, ; 3970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7373_from, ; char* from + ptr @.TypeMapEntry.7374_to; char* to + }, ; 3971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7375_from, ; char* from + ptr @.TypeMapEntry.7376_to; char* to + }, ; 3972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7377_from, ; char* from + ptr @.TypeMapEntry.7378_to; char* to + }, ; 3973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7379_from, ; char* from + ptr @.TypeMapEntry.7380_to; char* to + }, ; 3974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7381_from, ; char* from + ptr @.TypeMapEntry.7382_to; char* to + }, ; 3975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7383_from, ; char* from + ptr @.TypeMapEntry.7384_to; char* to + }, ; 3976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7385_from, ; char* from + ptr @.TypeMapEntry.7386_to; char* to + }, ; 3977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7387_from, ; char* from + ptr @.TypeMapEntry.7388_to; char* to + }, ; 3978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7389_from, ; char* from + ptr @.TypeMapEntry.7390_to; char* to + }, ; 3979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7391_from, ; char* from + ptr @.TypeMapEntry.7392_to; char* to + }, ; 3980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7393_from, ; char* from + ptr @.TypeMapEntry.7394_to; char* to + }, ; 3981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7395_from, ; char* from + ptr @.TypeMapEntry.7396_to; char* to + }, ; 3982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7397_from, ; char* from + ptr @.TypeMapEntry.7398_to; char* to + }, ; 3983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7399_from, ; char* from + ptr @.TypeMapEntry.7400_to; char* to + }, ; 3984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7401_from, ; char* from + ptr @.TypeMapEntry.7402_to; char* to + }, ; 3985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7403_from, ; char* from + ptr @.TypeMapEntry.7404_to; char* to + }, ; 3986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7405_from, ; char* from + ptr @.TypeMapEntry.7406_to; char* to + }, ; 3987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7407_from, ; char* from + ptr @.TypeMapEntry.7408_to; char* to + }, ; 3988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7409_from, ; char* from + ptr @.TypeMapEntry.7410_to; char* to + }, ; 3989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7411_from, ; char* from + ptr @.TypeMapEntry.7412_to; char* to + }, ; 3990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7413_from, ; char* from + ptr @.TypeMapEntry.7412_to; char* to + }, ; 3991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7414_from, ; char* from + ptr @.TypeMapEntry.7415_to; char* to + }, ; 3992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7416_from, ; char* from + ptr @.TypeMapEntry.7415_to; char* to + }, ; 3993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7417_from, ; char* from + ptr @.TypeMapEntry.7418_to; char* to + }, ; 3994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7419_from, ; char* from + ptr @.TypeMapEntry.7418_to; char* to + }, ; 3995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7420_from, ; char* from + ptr @.TypeMapEntry.7421_to; char* to + }, ; 3996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7422_from, ; char* from + ptr @.TypeMapEntry.7421_to; char* to + }, ; 3997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7423_from, ; char* from + ptr @.TypeMapEntry.7424_to; char* to + }, ; 3998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7425_from, ; char* from + ptr @.TypeMapEntry.7424_to; char* to + }, ; 3999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7426_from, ; char* from + ptr @.TypeMapEntry.7427_to; char* to + }, ; 4000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7428_from, ; char* from + ptr @.TypeMapEntry.7429_to; char* to + }, ; 4001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7430_from, ; char* from + ptr @.TypeMapEntry.7431_to; char* to + }, ; 4002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7432_from, ; char* from + ptr @.TypeMapEntry.7433_to; char* to + }, ; 4003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7434_from, ; char* from + ptr @.TypeMapEntry.7435_to; char* to + }, ; 4004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7436_from, ; char* from + ptr @.TypeMapEntry.7437_to; char* to + }, ; 4005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7438_from, ; char* from + ptr @.TypeMapEntry.7439_to; char* to + }, ; 4006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7440_from, ; char* from + ptr @.TypeMapEntry.7441_to; char* to + }, ; 4007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7442_from, ; char* from + ptr @.TypeMapEntry.7443_to; char* to + }, ; 4008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7444_from, ; char* from + ptr @.TypeMapEntry.7445_to; char* to + }, ; 4009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7446_from, ; char* from + ptr @.TypeMapEntry.7447_to; char* to + }, ; 4010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7448_from, ; char* from + ptr @.TypeMapEntry.7449_to; char* to + }, ; 4011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7450_from, ; char* from + ptr @.TypeMapEntry.7451_to; char* to + }, ; 4012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7452_from, ; char* from + ptr @.TypeMapEntry.7453_to; char* to + }, ; 4013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7454_from, ; char* from + ptr @.TypeMapEntry.7455_to; char* to + }, ; 4014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7456_from, ; char* from + ptr @.TypeMapEntry.7457_to; char* to + }, ; 4015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7458_from, ; char* from + ptr @.TypeMapEntry.7459_to; char* to + }, ; 4016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7460_from, ; char* from + ptr @.TypeMapEntry.7461_to; char* to + }, ; 4017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7462_from, ; char* from + ptr @.TypeMapEntry.7463_to; char* to + }, ; 4018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7464_from, ; char* from + ptr @.TypeMapEntry.7465_to; char* to + }, ; 4019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7466_from, ; char* from + ptr @.TypeMapEntry.7467_to; char* to + }, ; 4020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7468_from, ; char* from + ptr @.TypeMapEntry.7467_to; char* to + }, ; 4021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7469_from, ; char* from + ptr @.TypeMapEntry.7470_to; char* to + }, ; 4022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7471_from, ; char* from + ptr @.TypeMapEntry.7472_to; char* to + }, ; 4023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7473_from, ; char* from + ptr @.TypeMapEntry.7474_to; char* to + }, ; 4024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7475_from, ; char* from + ptr @.TypeMapEntry.7476_to; char* to + }, ; 4025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7477_from, ; char* from + ptr @.TypeMapEntry.7476_to; char* to + }, ; 4026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7478_from, ; char* from + ptr @.TypeMapEntry.7479_to; char* to + }, ; 4027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7480_from, ; char* from + ptr @.TypeMapEntry.7479_to; char* to + }, ; 4028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7481_from, ; char* from + ptr @.TypeMapEntry.7482_to; char* to + }, ; 4029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7483_from, ; char* from + ptr @.TypeMapEntry.7484_to; char* to + }, ; 4030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7485_from, ; char* from + ptr @.TypeMapEntry.7486_to; char* to + }, ; 4031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7487_from, ; char* from + ptr @.TypeMapEntry.7488_to; char* to + }, ; 4032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7489_from, ; char* from + ptr @.TypeMapEntry.7490_to; char* to + }, ; 4033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7491_from, ; char* from + ptr @.TypeMapEntry.7492_to; char* to + }, ; 4034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7493_from, ; char* from + ptr @.TypeMapEntry.7492_to; char* to + }, ; 4035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7494_from, ; char* from + ptr @.TypeMapEntry.7495_to; char* to + }, ; 4036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7496_from, ; char* from + ptr @.TypeMapEntry.7495_to; char* to + }, ; 4037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7497_from, ; char* from + ptr @.TypeMapEntry.7498_to; char* to + }, ; 4038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7499_from, ; char* from + ptr @.TypeMapEntry.7500_to; char* to + }, ; 4039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7501_from, ; char* from + ptr @.TypeMapEntry.7502_to; char* to + }, ; 4040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7503_from, ; char* from + ptr @.TypeMapEntry.7502_to; char* to + }, ; 4041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7504_from, ; char* from + ptr @.TypeMapEntry.7505_to; char* to + }, ; 4042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7506_from, ; char* from + ptr @.TypeMapEntry.7507_to; char* to + }, ; 4043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7508_from, ; char* from + ptr @.TypeMapEntry.7509_to; char* to + }, ; 4044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7510_from, ; char* from + ptr @.TypeMapEntry.7511_to; char* to + }, ; 4045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7512_from, ; char* from + ptr @.TypeMapEntry.7513_to; char* to + }, ; 4046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7514_from, ; char* from + ptr @.TypeMapEntry.7515_to; char* to + }, ; 4047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7516_from, ; char* from + ptr @.TypeMapEntry.7515_to; char* to + }, ; 4048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7517_from, ; char* from + ptr @.TypeMapEntry.7518_to; char* to + }, ; 4049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7519_from, ; char* from + ptr @.TypeMapEntry.7520_to; char* to + }, ; 4050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7521_from, ; char* from + ptr @.TypeMapEntry.7522_to; char* to + }, ; 4051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7523_from, ; char* from + ptr @.TypeMapEntry.7522_to; char* to + }, ; 4052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7524_from, ; char* from + ptr @.TypeMapEntry.7525_to; char* to + }, ; 4053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7526_from, ; char* from + ptr @.TypeMapEntry.7527_to; char* to + }, ; 4054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7528_from, ; char* from + ptr @.TypeMapEntry.7529_to; char* to + }, ; 4055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7530_from, ; char* from + ptr @.TypeMapEntry.7531_to; char* to + }, ; 4056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7532_from, ; char* from + ptr @.TypeMapEntry.7533_to; char* to + }, ; 4057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7534_from, ; char* from + ptr @.TypeMapEntry.7535_to; char* to + }, ; 4058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7536_from, ; char* from + ptr @.TypeMapEntry.7537_to; char* to + }, ; 4059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7538_from, ; char* from + ptr @.TypeMapEntry.7539_to; char* to + }, ; 4060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7540_from, ; char* from + ptr @.TypeMapEntry.7541_to; char* to + }, ; 4061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7542_from, ; char* from + ptr @.TypeMapEntry.7543_to; char* to + }, ; 4062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7544_from, ; char* from + ptr @.TypeMapEntry.7545_to; char* to + }, ; 4063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7546_from, ; char* from + ptr @.TypeMapEntry.7547_to; char* to + }, ; 4064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7548_from, ; char* from + ptr @.TypeMapEntry.7549_to; char* to + }, ; 4065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7550_from, ; char* from + ptr @.TypeMapEntry.7551_to; char* to + }, ; 4066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7552_from, ; char* from + ptr @.TypeMapEntry.7553_to; char* to + }, ; 4067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7554_from, ; char* from + ptr @.TypeMapEntry.7555_to; char* to + }, ; 4068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7556_from, ; char* from + ptr @.TypeMapEntry.7557_to; char* to + }, ; 4069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7558_from, ; char* from + ptr @.TypeMapEntry.7559_to; char* to + }, ; 4070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7560_from, ; char* from + ptr @.TypeMapEntry.7561_to; char* to + }, ; 4071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7562_from, ; char* from + ptr @.TypeMapEntry.7563_to; char* to + }, ; 4072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7564_from, ; char* from + ptr @.TypeMapEntry.7565_to; char* to + }, ; 4073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7566_from, ; char* from + ptr @.TypeMapEntry.7565_to; char* to + }, ; 4074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7567_from, ; char* from + ptr @.TypeMapEntry.7568_to; char* to + }, ; 4075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7569_from, ; char* from + ptr @.TypeMapEntry.7570_to; char* to + }, ; 4076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7571_from, ; char* from + ptr @.TypeMapEntry.7572_to; char* to + }, ; 4077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7573_from, ; char* from + ptr @.TypeMapEntry.7574_to; char* to + }, ; 4078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7575_from, ; char* from + ptr @.TypeMapEntry.7574_to; char* to + }, ; 4079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7576_from, ; char* from + ptr @.TypeMapEntry.7577_to; char* to + }, ; 4080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7578_from, ; char* from + ptr @.TypeMapEntry.7579_to; char* to + }, ; 4081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7580_from, ; char* from + ptr @.TypeMapEntry.7581_to; char* to + }, ; 4082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7582_from, ; char* from + ptr @.TypeMapEntry.7581_to; char* to + }, ; 4083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7583_from, ; char* from + ptr @.TypeMapEntry.7584_to; char* to + }, ; 4084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7585_from, ; char* from + ptr @.TypeMapEntry.7586_to; char* to + }, ; 4085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7587_from, ; char* from + ptr @.TypeMapEntry.7586_to; char* to + }, ; 4086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7588_from, ; char* from + ptr @.TypeMapEntry.7589_to; char* to + }, ; 4087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7590_from, ; char* from + ptr @.TypeMapEntry.7591_to; char* to + }, ; 4088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7592_from, ; char* from + ptr @.TypeMapEntry.7593_to; char* to + }, ; 4089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7594_from, ; char* from + ptr @.TypeMapEntry.7593_to; char* to + }, ; 4090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7595_from, ; char* from + ptr @.TypeMapEntry.7596_to; char* to + }, ; 4091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7597_from, ; char* from + ptr @.TypeMapEntry.7598_to; char* to + }, ; 4092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7599_from, ; char* from + ptr @.TypeMapEntry.7600_to; char* to + }, ; 4093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7601_from, ; char* from + ptr @.TypeMapEntry.7602_to; char* to + }, ; 4094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7603_from, ; char* from + ptr @.TypeMapEntry.7604_to; char* to + }, ; 4095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7605_from, ; char* from + ptr @.TypeMapEntry.7606_to; char* to + }, ; 4096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7607_from, ; char* from + ptr @.TypeMapEntry.7608_to; char* to + }, ; 4097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7609_from, ; char* from + ptr @.TypeMapEntry.7610_to; char* to + }, ; 4098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7611_from, ; char* from + ptr @.TypeMapEntry.7612_to; char* to + }, ; 4099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7613_from, ; char* from + ptr @.TypeMapEntry.7614_to; char* to + }, ; 4100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7615_from, ; char* from + ptr @.TypeMapEntry.7614_to; char* to + }, ; 4101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7616_from, ; char* from + ptr @.TypeMapEntry.7617_to; char* to + }, ; 4102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7618_from, ; char* from + ptr @.TypeMapEntry.7617_to; char* to + }, ; 4103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7619_from, ; char* from + ptr @.TypeMapEntry.7620_to; char* to + }, ; 4104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7621_from, ; char* from + ptr @.TypeMapEntry.7622_to; char* to + }, ; 4105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7623_from, ; char* from + ptr @.TypeMapEntry.7624_to; char* to + }, ; 4106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7625_from, ; char* from + ptr @.TypeMapEntry.7626_to; char* to + }, ; 4107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7627_from, ; char* from + ptr @.TypeMapEntry.7628_to; char* to + }, ; 4108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7629_from, ; char* from + ptr @.TypeMapEntry.7630_to; char* to + }, ; 4109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7631_from, ; char* from + ptr @.TypeMapEntry.7632_to; char* to + }, ; 4110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7633_from, ; char* from + ptr @.TypeMapEntry.7632_to; char* to + }, ; 4111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7634_from, ; char* from + ptr @.TypeMapEntry.7635_to; char* to + }, ; 4112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7636_from, ; char* from + ptr @.TypeMapEntry.7635_to; char* to + }, ; 4113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7637_from, ; char* from + ptr @.TypeMapEntry.7638_to; char* to + }, ; 4114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7639_from, ; char* from + ptr @.TypeMapEntry.7638_to; char* to + }, ; 4115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7640_from, ; char* from + ptr @.TypeMapEntry.7641_to; char* to + }, ; 4116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7642_from, ; char* from + ptr @.TypeMapEntry.7641_to; char* to + }, ; 4117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7643_from, ; char* from + ptr @.TypeMapEntry.7644_to; char* to + }, ; 4118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7645_from, ; char* from + ptr @.TypeMapEntry.7644_to; char* to + }, ; 4119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7646_from, ; char* from + ptr @.TypeMapEntry.7647_to; char* to + }, ; 4120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7648_from, ; char* from + ptr @.TypeMapEntry.7649_to; char* to + }, ; 4121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7650_from, ; char* from + ptr @.TypeMapEntry.7651_to; char* to + }, ; 4122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7652_from, ; char* from + ptr @.TypeMapEntry.7653_to; char* to + }, ; 4123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7654_from, ; char* from + ptr @.TypeMapEntry.7655_to; char* to + }, ; 4124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7656_from, ; char* from + ptr @.TypeMapEntry.7657_to; char* to + }, ; 4125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7658_from, ; char* from + ptr @.TypeMapEntry.7659_to; char* to + }, ; 4126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7660_from, ; char* from + ptr @.TypeMapEntry.7661_to; char* to + }, ; 4127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7662_from, ; char* from + ptr @.TypeMapEntry.7663_to; char* to + }, ; 4128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7664_from, ; char* from + ptr @.TypeMapEntry.7665_to; char* to + }, ; 4129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7666_from, ; char* from + ptr @.TypeMapEntry.7667_to; char* to + }, ; 4130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7668_from, ; char* from + ptr @.TypeMapEntry.7669_to; char* to + }, ; 4131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7670_from, ; char* from + ptr @.TypeMapEntry.7669_to; char* to + }, ; 4132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7671_from, ; char* from + ptr @.TypeMapEntry.7672_to; char* to + }, ; 4133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7673_from, ; char* from + ptr @.TypeMapEntry.7674_to; char* to + }, ; 4134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7675_from, ; char* from + ptr @.TypeMapEntry.7676_to; char* to + }, ; 4135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7677_from, ; char* from + ptr @.TypeMapEntry.7678_to; char* to + }, ; 4136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7679_from, ; char* from + ptr @.TypeMapEntry.7680_to; char* to + }, ; 4137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7681_from, ; char* from + ptr @.TypeMapEntry.7680_to; char* to + }, ; 4138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7682_from, ; char* from + ptr @.TypeMapEntry.7683_to; char* to + }, ; 4139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7684_from, ; char* from + ptr @.TypeMapEntry.7685_to; char* to + }, ; 4140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7686_from, ; char* from + ptr @.TypeMapEntry.7685_to; char* to + }, ; 4141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7687_from, ; char* from + ptr @.TypeMapEntry.7688_to; char* to + }, ; 4142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7689_from, ; char* from + ptr @.TypeMapEntry.7690_to; char* to + }, ; 4143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7691_from, ; char* from + ptr @.TypeMapEntry.7692_to; char* to + }, ; 4144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7693_from, ; char* from + ptr @.TypeMapEntry.7694_to; char* to + }, ; 4145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7695_from, ; char* from + ptr @.TypeMapEntry.7692_to; char* to + }, ; 4146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7696_from, ; char* from + ptr @.TypeMapEntry.7697_to; char* to + }, ; 4147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7698_from, ; char* from + ptr @.TypeMapEntry.7699_to; char* to + }, ; 4148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7700_from, ; char* from + ptr @.TypeMapEntry.7697_to; char* to + }, ; 4149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7701_from, ; char* from + ptr @.TypeMapEntry.7702_to; char* to + }, ; 4150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7703_from, ; char* from + ptr @.TypeMapEntry.7702_to; char* to + }, ; 4151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7704_from, ; char* from + ptr @.TypeMapEntry.7705_to; char* to + }, ; 4152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7706_from, ; char* from + ptr @.TypeMapEntry.7707_to; char* to + }, ; 4153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7708_from, ; char* from + ptr @.TypeMapEntry.7709_to; char* to + }, ; 4154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7710_from, ; char* from + ptr @.TypeMapEntry.7711_to; char* to + }, ; 4155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7712_from, ; char* from + ptr @.TypeMapEntry.7713_to; char* to + }, ; 4156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7714_from, ; char* from + ptr @.TypeMapEntry.7713_to; char* to + }, ; 4157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7715_from, ; char* from + ptr @.TypeMapEntry.7716_to; char* to + }, ; 4158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7717_from, ; char* from + ptr @.TypeMapEntry.7718_to; char* to + }, ; 4159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7719_from, ; char* from + ptr @.TypeMapEntry.7720_to; char* to + }, ; 4160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7721_from, ; char* from + ptr @.TypeMapEntry.7722_to; char* to + }, ; 4161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7723_from, ; char* from + ptr @.TypeMapEntry.7724_to; char* to + }, ; 4162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7725_from, ; char* from + ptr @.TypeMapEntry.7726_to; char* to + }, ; 4163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7727_from, ; char* from + ptr @.TypeMapEntry.7726_to; char* to + }, ; 4164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7728_from, ; char* from + ptr @.TypeMapEntry.7729_to; char* to + }, ; 4165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7730_from, ; char* from + ptr @.TypeMapEntry.7731_to; char* to + }, ; 4166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7732_from, ; char* from + ptr @.TypeMapEntry.7733_to; char* to + }, ; 4167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7734_from, ; char* from + ptr @.TypeMapEntry.7735_to; char* to + }, ; 4168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7736_from, ; char* from + ptr @.TypeMapEntry.7737_to; char* to + }, ; 4169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7738_from, ; char* from + ptr @.TypeMapEntry.7735_to; char* to + }, ; 4170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7739_from, ; char* from + ptr @.TypeMapEntry.7740_to; char* to + }, ; 4171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7741_from, ; char* from + ptr @.TypeMapEntry.7742_to; char* to + }, ; 4172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7743_from, ; char* from + ptr @.TypeMapEntry.7740_to; char* to + }, ; 4173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7744_from, ; char* from + ptr @.TypeMapEntry.7745_to; char* to + }, ; 4174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7746_from, ; char* from + ptr @.TypeMapEntry.7747_to; char* to + }, ; 4175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7748_from, ; char* from + ptr @.TypeMapEntry.7747_to; char* to + }, ; 4176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7749_from, ; char* from + ptr @.TypeMapEntry.7750_to; char* to + }, ; 4177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7751_from, ; char* from + ptr @.TypeMapEntry.7750_to; char* to + }, ; 4178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7752_from, ; char* from + ptr @.TypeMapEntry.7753_to; char* to + }, ; 4179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7754_from, ; char* from + ptr @.TypeMapEntry.7755_to; char* to + }, ; 4180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7756_from, ; char* from + ptr @.TypeMapEntry.7755_to; char* to + }, ; 4181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7757_from, ; char* from + ptr @.TypeMapEntry.7758_to; char* to + }, ; 4182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7759_from, ; char* from + ptr @.TypeMapEntry.7760_to; char* to + }, ; 4183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7761_from, ; char* from + ptr @.TypeMapEntry.7760_to; char* to + }, ; 4184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7762_from, ; char* from + ptr @.TypeMapEntry.7763_to; char* to + }, ; 4185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7764_from, ; char* from + ptr @.TypeMapEntry.7765_to; char* to + }, ; 4186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7766_from, ; char* from + ptr @.TypeMapEntry.7765_to; char* to + }, ; 4187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7767_from, ; char* from + ptr @.TypeMapEntry.7768_to; char* to + }, ; 4188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7769_from, ; char* from + ptr @.TypeMapEntry.7770_to; char* to + }, ; 4189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7771_from, ; char* from + ptr @.TypeMapEntry.7770_to; char* to + }, ; 4190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7772_from, ; char* from + ptr @.TypeMapEntry.7773_to; char* to + }, ; 4191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7774_from, ; char* from + ptr @.TypeMapEntry.7775_to; char* to + }, ; 4192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7776_from, ; char* from + ptr @.TypeMapEntry.7775_to; char* to + }, ; 4193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7777_from, ; char* from + ptr @.TypeMapEntry.7778_to; char* to + }, ; 4194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7779_from, ; char* from + ptr @.TypeMapEntry.7780_to; char* to + }, ; 4195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7781_from, ; char* from + ptr @.TypeMapEntry.7780_to; char* to + }, ; 4196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7782_from, ; char* from + ptr @.TypeMapEntry.7783_to; char* to + }, ; 4197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7784_from, ; char* from + ptr @.TypeMapEntry.7755_to; char* to + }, ; 4198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7785_from, ; char* from + ptr @.TypeMapEntry.7755_to; char* to + }, ; 4199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7786_from, ; char* from + ptr @.TypeMapEntry.7765_to; char* to + }, ; 4200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7787_from, ; char* from + ptr @.TypeMapEntry.7765_to; char* to + }, ; 4201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7788_from, ; char* from + ptr @.TypeMapEntry.7775_to; char* to + }, ; 4202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7789_from, ; char* from + ptr @.TypeMapEntry.7775_to; char* to + }, ; 4203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7790_from, ; char* from + ptr @.TypeMapEntry.7791_to; char* to + }, ; 4204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7792_from, ; char* from + ptr @.TypeMapEntry.7791_to; char* to + }, ; 4205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7793_from, ; char* from + ptr @.TypeMapEntry.7791_to; char* to + }, ; 4206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7794_from, ; char* from + ptr @.TypeMapEntry.7791_to; char* to + }, ; 4207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7795_from, ; char* from + ptr @.TypeMapEntry.7796_to; char* to + }, ; 4208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7797_from, ; char* from + ptr @.TypeMapEntry.7798_to; char* to + }, ; 4209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7799_from, ; char* from + ptr @.TypeMapEntry.7798_to; char* to + }, ; 4210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7800_from, ; char* from + ptr @.TypeMapEntry.7801_to; char* to + }, ; 4211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7802_from, ; char* from + ptr @.TypeMapEntry.7803_to; char* to + }, ; 4212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7804_from, ; char* from + ptr @.TypeMapEntry.7803_to; char* to + }, ; 4213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7805_from, ; char* from + ptr @.TypeMapEntry.7806_to; char* to + }, ; 4214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7807_from, ; char* from + ptr @.TypeMapEntry.7806_to; char* to + }, ; 4215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7808_from, ; char* from + ptr @.TypeMapEntry.7803_to; char* to + }, ; 4216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7809_from, ; char* from + ptr @.TypeMapEntry.7803_to; char* to + }, ; 4217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7810_from, ; char* from + ptr @.TypeMapEntry.7811_to; char* to + }, ; 4218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7812_from, ; char* from + ptr @.TypeMapEntry.7813_to; char* to + }, ; 4219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7814_from, ; char* from + ptr @.TypeMapEntry.7813_to; char* to + }, ; 4220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7815_from, ; char* from + ptr @.TypeMapEntry.7816_to; char* to + }, ; 4221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7817_from, ; char* from + ptr @.TypeMapEntry.7806_to; char* to + }, ; 4222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7818_from, ; char* from + ptr @.TypeMapEntry.7806_to; char* to + }, ; 4223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7819_from, ; char* from + ptr @.TypeMapEntry.7820_to; char* to + }, ; 4224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7821_from, ; char* from + ptr @.TypeMapEntry.7822_to; char* to + }, ; 4225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7823_from, ; char* from + ptr @.TypeMapEntry.7822_to; char* to + }, ; 4226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7824_from, ; char* from + ptr @.TypeMapEntry.7825_to; char* to + }, ; 4227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7826_from, ; char* from + ptr @.TypeMapEntry.7827_to; char* to + }, ; 4228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7828_from, ; char* from + ptr @.TypeMapEntry.7827_to; char* to + }, ; 4229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7829_from, ; char* from + ptr @.TypeMapEntry.7827_to; char* to + }, ; 4230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7830_from, ; char* from + ptr @.TypeMapEntry.7827_to; char* to + }, ; 4231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7831_from, ; char* from + ptr @.TypeMapEntry.7832_to; char* to + }, ; 4232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7833_from, ; char* from + ptr @.TypeMapEntry.7834_to; char* to + }, ; 4233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7835_from, ; char* from + ptr @.TypeMapEntry.7834_to; char* to + }, ; 4234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7836_from, ; char* from + ptr @.TypeMapEntry.7837_to; char* to + }, ; 4235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7838_from, ; char* from + ptr @.TypeMapEntry.7839_to; char* to + }, ; 4236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7840_from, ; char* from + ptr @.TypeMapEntry.7841_to; char* to + }, ; 4237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7842_from, ; char* from + ptr @.TypeMapEntry.7843_to; char* to + }, ; 4238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7844_from, ; char* from + ptr @.TypeMapEntry.7845_to; char* to + }, ; 4239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7846_from, ; char* from + ptr @.TypeMapEntry.7845_to; char* to + }, ; 4240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7847_from, ; char* from + ptr @.TypeMapEntry.7843_to; char* to + }, ; 4241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7848_from, ; char* from + ptr @.TypeMapEntry.7849_to; char* to + }, ; 4242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7850_from, ; char* from + ptr @.TypeMapEntry.7845_to; char* to + }, ; 4243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7851_from, ; char* from + ptr @.TypeMapEntry.7845_to; char* to + }, ; 4244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7852_from, ; char* from + ptr @.TypeMapEntry.7853_to; char* to + }, ; 4245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7854_from, ; char* from + ptr @.TypeMapEntry.7855_to; char* to + }, ; 4246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7856_from, ; char* from + ptr @.TypeMapEntry.7855_to; char* to + }, ; 4247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7857_from, ; char* from + ptr @.TypeMapEntry.7858_to; char* to + }, ; 4248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7859_from, ; char* from + ptr @.TypeMapEntry.7860_to; char* to + }, ; 4249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7861_from, ; char* from + ptr @.TypeMapEntry.7862_to; char* to + }, ; 4250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7863_from, ; char* from + ptr @.TypeMapEntry.7862_to; char* to + }, ; 4251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7864_from, ; char* from + ptr @.TypeMapEntry.7865_to; char* to + }, ; 4252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7866_from, ; char* from + ptr @.TypeMapEntry.7867_to; char* to + }, ; 4253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7868_from, ; char* from + ptr @.TypeMapEntry.7869_to; char* to + }, ; 4254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7870_from, ; char* from + ptr @.TypeMapEntry.7871_to; char* to + }, ; 4255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7872_from, ; char* from + ptr @.TypeMapEntry.7873_to; char* to + }, ; 4256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7874_from, ; char* from + ptr @.TypeMapEntry.7875_to; char* to + }, ; 4257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7876_from, ; char* from + ptr @.TypeMapEntry.7877_to; char* to + }, ; 4258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7878_from, ; char* from + ptr @.TypeMapEntry.7879_to; char* to + }, ; 4259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7880_from, ; char* from + ptr @.TypeMapEntry.7881_to; char* to + }, ; 4260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7882_from, ; char* from + ptr @.TypeMapEntry.7883_to; char* to + }, ; 4261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7884_from, ; char* from + ptr @.TypeMapEntry.7885_to; char* to + }, ; 4262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7886_from, ; char* from + ptr @.TypeMapEntry.7887_to; char* to + }, ; 4263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7888_from, ; char* from + ptr @.TypeMapEntry.7889_to; char* to + }, ; 4264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7890_from, ; char* from + ptr @.TypeMapEntry.7891_to; char* to + }, ; 4265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7892_from, ; char* from + ptr @.TypeMapEntry.7893_to; char* to + }, ; 4266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7894_from, ; char* from + ptr @.TypeMapEntry.7895_to; char* to + }, ; 4267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7896_from, ; char* from + ptr @.TypeMapEntry.7895_to; char* to + }, ; 4268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7897_from, ; char* from + ptr @.TypeMapEntry.7898_to; char* to + }, ; 4269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7899_from, ; char* from + ptr @.TypeMapEntry.7900_to; char* to + }, ; 4270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7901_from, ; char* from + ptr @.TypeMapEntry.7902_to; char* to + }, ; 4271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7903_from, ; char* from + ptr @.TypeMapEntry.7904_to; char* to + }, ; 4272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7905_from, ; char* from + ptr @.TypeMapEntry.7906_to; char* to + }, ; 4273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7907_from, ; char* from + ptr @.TypeMapEntry.7908_to; char* to + }, ; 4274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7909_from, ; char* from + ptr @.TypeMapEntry.7910_to; char* to + }, ; 4275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7911_from, ; char* from + ptr @.TypeMapEntry.7912_to; char* to + }, ; 4276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7913_from, ; char* from + ptr @.TypeMapEntry.7914_to; char* to + }, ; 4277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7915_from, ; char* from + ptr @.TypeMapEntry.7916_to; char* to + }, ; 4278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7917_from, ; char* from + ptr @.TypeMapEntry.7918_to; char* to + }, ; 4279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7919_from, ; char* from + ptr @.TypeMapEntry.7918_to; char* to + }, ; 4280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7920_from, ; char* from + ptr @.TypeMapEntry.7921_to; char* to + }, ; 4281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7922_from, ; char* from + ptr @.TypeMapEntry.7923_to; char* to + }, ; 4282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7924_from, ; char* from + ptr @.TypeMapEntry.7925_to; char* to + }, ; 4283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7926_from, ; char* from + ptr @.TypeMapEntry.7925_to; char* to + }, ; 4284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7927_from, ; char* from + ptr @.TypeMapEntry.7928_to; char* to + }, ; 4285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7929_from, ; char* from + ptr @.TypeMapEntry.7928_to; char* to + }, ; 4286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7930_from, ; char* from + ptr @.TypeMapEntry.7931_to; char* to + }, ; 4287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7932_from, ; char* from + ptr @.TypeMapEntry.7931_to; char* to + }, ; 4288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7933_from, ; char* from + ptr @.TypeMapEntry.7934_to; char* to + }, ; 4289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7935_from, ; char* from + ptr @.TypeMapEntry.7936_to; char* to + }, ; 4290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7937_from, ; char* from + ptr @.TypeMapEntry.7938_to; char* to + }, ; 4291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7939_from, ; char* from + ptr @.TypeMapEntry.7938_to; char* to + }, ; 4292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7940_from, ; char* from + ptr @.TypeMapEntry.7941_to; char* to + }, ; 4293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7942_from, ; char* from + ptr @.TypeMapEntry.7941_to; char* to + }, ; 4294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7943_from, ; char* from + ptr @.TypeMapEntry.7944_to; char* to + }, ; 4295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7945_from, ; char* from + ptr @.TypeMapEntry.7946_to; char* to + }, ; 4296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7947_from, ; char* from + ptr @.TypeMapEntry.7946_to; char* to + }, ; 4297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7948_from, ; char* from + ptr @.TypeMapEntry.7949_to; char* to + }, ; 4298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7950_from, ; char* from + ptr @.TypeMapEntry.7951_to; char* to + }, ; 4299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7952_from, ; char* from + ptr @.TypeMapEntry.7953_to; char* to + }, ; 4300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7954_from, ; char* from + ptr @.TypeMapEntry.7953_to; char* to + }, ; 4301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7955_from, ; char* from + ptr @.TypeMapEntry.7956_to; char* to + }, ; 4302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7957_from, ; char* from + ptr @.TypeMapEntry.7956_to; char* to + }, ; 4303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7958_from, ; char* from + ptr @.TypeMapEntry.7959_to; char* to + }, ; 4304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7960_from, ; char* from + ptr @.TypeMapEntry.7959_to; char* to + }, ; 4305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7961_from, ; char* from + ptr @.TypeMapEntry.7962_to; char* to + }, ; 4306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7963_from, ; char* from + ptr @.TypeMapEntry.7962_to; char* to + }, ; 4307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7964_from, ; char* from + ptr @.TypeMapEntry.7965_to; char* to + }, ; 4308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7966_from, ; char* from + ptr @.TypeMapEntry.7965_to; char* to + }, ; 4309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7967_from, ; char* from + ptr @.TypeMapEntry.7968_to; char* to + }, ; 4310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7969_from, ; char* from + ptr @.TypeMapEntry.7970_to; char* to + }, ; 4311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7971_from, ; char* from + ptr @.TypeMapEntry.7972_to; char* to + }, ; 4312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7973_from, ; char* from + ptr @.TypeMapEntry.7974_to; char* to + }, ; 4313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7975_from, ; char* from + ptr @.TypeMapEntry.7976_to; char* to + }, ; 4314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7977_from, ; char* from + ptr @.TypeMapEntry.7978_to; char* to + }, ; 4315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7979_from, ; char* from + ptr @.TypeMapEntry.7978_to; char* to + }, ; 4316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7980_from, ; char* from + ptr @.TypeMapEntry.7981_to; char* to + }, ; 4317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7982_from, ; char* from + ptr @.TypeMapEntry.7983_to; char* to + }, ; 4318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7984_from, ; char* from + ptr @.TypeMapEntry.7983_to; char* to + }, ; 4319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7985_from, ; char* from + ptr @.TypeMapEntry.7986_to; char* to + }, ; 4320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7987_from, ; char* from + ptr @.TypeMapEntry.7986_to; char* to + }, ; 4321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7988_from, ; char* from + ptr @.TypeMapEntry.7989_to; char* to + }, ; 4322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7990_from, ; char* from + ptr @.TypeMapEntry.7991_to; char* to + }, ; 4323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7992_from, ; char* from + ptr @.TypeMapEntry.7993_to; char* to + }, ; 4324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7994_from, ; char* from + ptr @.TypeMapEntry.7995_to; char* to + }, ; 4325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7996_from, ; char* from + ptr @.TypeMapEntry.7997_to; char* to + }, ; 4326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7998_from, ; char* from + ptr @.TypeMapEntry.7999_to; char* to + }, ; 4327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8000_from, ; char* from + ptr @.TypeMapEntry.8001_to; char* to + }, ; 4328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8002_from, ; char* from + ptr @.TypeMapEntry.8003_to; char* to + }, ; 4329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8004_from, ; char* from + ptr @.TypeMapEntry.8005_to; char* to + }, ; 4330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8006_from, ; char* from + ptr @.TypeMapEntry.8007_to; char* to + }, ; 4331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8008_from, ; char* from + ptr @.TypeMapEntry.8009_to; char* to + }, ; 4332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8010_from, ; char* from + ptr @.TypeMapEntry.8011_to; char* to + }, ; 4333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8012_from, ; char* from + ptr @.TypeMapEntry.8013_to; char* to + }, ; 4334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8014_from, ; char* from + ptr @.TypeMapEntry.8015_to; char* to + }, ; 4335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8016_from, ; char* from + ptr @.TypeMapEntry.8017_to; char* to + }, ; 4336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8018_from, ; char* from + ptr @.TypeMapEntry.8019_to; char* to + }, ; 4337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8020_from, ; char* from + ptr @.TypeMapEntry.8021_to; char* to + }, ; 4338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8022_from, ; char* from + ptr @.TypeMapEntry.8023_to; char* to + }, ; 4339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8024_from, ; char* from + ptr @.TypeMapEntry.8025_to; char* to + }, ; 4340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8026_from, ; char* from + ptr @.TypeMapEntry.8027_to; char* to + }, ; 4341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8028_from, ; char* from + ptr @.TypeMapEntry.8029_to; char* to + }, ; 4342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8030_from, ; char* from + ptr @.TypeMapEntry.8027_to; char* to + }, ; 4343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8031_from, ; char* from + ptr @.TypeMapEntry.8032_to; char* to + }, ; 4344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8033_from, ; char* from + ptr @.TypeMapEntry.8034_to; char* to + }, ; 4345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8035_from, ; char* from + ptr @.TypeMapEntry.8036_to; char* to + }, ; 4346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8037_from, ; char* from + ptr @.TypeMapEntry.8038_to; char* to + }, ; 4347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8039_from, ; char* from + ptr @.TypeMapEntry.8040_to; char* to + }, ; 4348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8041_from, ; char* from + ptr @.TypeMapEntry.8042_to; char* to + }, ; 4349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8043_from, ; char* from + ptr @.TypeMapEntry.8044_to; char* to + }, ; 4350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8045_from, ; char* from + ptr @.TypeMapEntry.8046_to; char* to + }, ; 4351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8047_from, ; char* from + ptr @.TypeMapEntry.8048_to; char* to + }, ; 4352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8049_from, ; char* from + ptr @.TypeMapEntry.8050_to; char* to + }, ; 4353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8051_from, ; char* from + ptr @.TypeMapEntry.8052_to; char* to + }, ; 4354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8053_from, ; char* from + ptr @.TypeMapEntry.8054_to; char* to + }, ; 4355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8055_from, ; char* from + ptr @.TypeMapEntry.8056_to; char* to + }, ; 4356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8057_from, ; char* from + ptr @.TypeMapEntry.8058_to; char* to + }, ; 4357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8059_from, ; char* from + ptr @.TypeMapEntry.8060_to; char* to + }, ; 4358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8061_from, ; char* from + ptr @.TypeMapEntry.8056_to; char* to + }, ; 4359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8062_from, ; char* from + ptr @.TypeMapEntry.8063_to; char* to + }, ; 4360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8064_from, ; char* from + ptr @.TypeMapEntry.8065_to; char* to + }, ; 4361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8066_from, ; char* from + ptr @.TypeMapEntry.8067_to; char* to + }, ; 4362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8068_from, ; char* from + ptr @.TypeMapEntry.8069_to; char* to + }, ; 4363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8070_from, ; char* from + ptr @.TypeMapEntry.8071_to; char* to + }, ; 4364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8072_from, ; char* from + ptr @.TypeMapEntry.8073_to; char* to + }, ; 4365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8074_from, ; char* from + ptr @.TypeMapEntry.8075_to; char* to + }, ; 4366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8076_from, ; char* from + ptr @.TypeMapEntry.8071_to; char* to + }, ; 4367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8077_from, ; char* from + ptr @.TypeMapEntry.8078_to; char* to + }, ; 4368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8079_from, ; char* from + ptr @.TypeMapEntry.8080_to; char* to + }, ; 4369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8081_from, ; char* from + ptr @.TypeMapEntry.8082_to; char* to + }, ; 4370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8083_from, ; char* from + ptr @.TypeMapEntry.8084_to; char* to + }, ; 4371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8085_from, ; char* from + ptr @.TypeMapEntry.8086_to; char* to + }, ; 4372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8087_from, ; char* from + ptr @.TypeMapEntry.8086_to; char* to + }, ; 4373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8088_from, ; char* from + ptr @.TypeMapEntry.8089_to; char* to + }, ; 4374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8090_from, ; char* from + ptr @.TypeMapEntry.8091_to; char* to + }, ; 4375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8092_from, ; char* from + ptr @.TypeMapEntry.8093_to; char* to + }, ; 4376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8094_from, ; char* from + ptr @.TypeMapEntry.8089_to; char* to + }, ; 4377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8095_from, ; char* from + ptr @.TypeMapEntry.8096_to; char* to + }, ; 4378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8097_from, ; char* from + ptr @.TypeMapEntry.8098_to; char* to + }, ; 4379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8099_from, ; char* from + ptr @.TypeMapEntry.8100_to; char* to + }, ; 4380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8101_from, ; char* from + ptr @.TypeMapEntry.8102_to; char* to + }, ; 4381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8103_from, ; char* from + ptr @.TypeMapEntry.8104_to; char* to + }, ; 4382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8105_from, ; char* from + ptr @.TypeMapEntry.8106_to; char* to + }, ; 4383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8107_from, ; char* from + ptr @.TypeMapEntry.8108_to; char* to + }, ; 4384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8109_from, ; char* from + ptr @.TypeMapEntry.8110_to; char* to + }, ; 4385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8111_from, ; char* from + ptr @.TypeMapEntry.8112_to; char* to + }, ; 4386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8113_from, ; char* from + ptr @.TypeMapEntry.8114_to; char* to + }, ; 4387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8115_from, ; char* from + ptr @.TypeMapEntry.8116_to; char* to + }, ; 4388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8117_from, ; char* from + ptr @.TypeMapEntry.8118_to; char* to + }, ; 4389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8119_from, ; char* from + ptr @.TypeMapEntry.8120_to; char* to + }, ; 4390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8121_from, ; char* from + ptr @.TypeMapEntry.8122_to; char* to + }, ; 4391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8123_from, ; char* from + ptr @.TypeMapEntry.8124_to; char* to + }, ; 4392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8125_from, ; char* from + ptr @.TypeMapEntry.8126_to; char* to + }, ; 4393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8127_from, ; char* from + ptr @.TypeMapEntry.8128_to; char* to + }, ; 4394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8129_from, ; char* from + ptr @.TypeMapEntry.8130_to; char* to + }, ; 4395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8131_from, ; char* from + ptr @.TypeMapEntry.8132_to; char* to + }, ; 4396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8133_from, ; char* from + ptr @.TypeMapEntry.8134_to; char* to + }, ; 4397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8135_from, ; char* from + ptr @.TypeMapEntry.8136_to; char* to + }, ; 4398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8137_from, ; char* from + ptr @.TypeMapEntry.8138_to; char* to + }, ; 4399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8139_from, ; char* from + ptr @.TypeMapEntry.8140_to; char* to + }, ; 4400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8141_from, ; char* from + ptr @.TypeMapEntry.8142_to; char* to + }, ; 4401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8143_from, ; char* from + ptr @.TypeMapEntry.8144_to; char* to + }, ; 4402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8145_from, ; char* from + ptr @.TypeMapEntry.8146_to; char* to + }, ; 4403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8147_from, ; char* from + ptr @.TypeMapEntry.8148_to; char* to + }, ; 4404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8149_from, ; char* from + ptr @.TypeMapEntry.8150_to; char* to + }, ; 4405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8151_from, ; char* from + ptr @.TypeMapEntry.8152_to; char* to + }, ; 4406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8153_from, ; char* from + ptr @.TypeMapEntry.8154_to; char* to + }, ; 4407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8155_from, ; char* from + ptr @.TypeMapEntry.8154_to; char* to + }, ; 4408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8156_from, ; char* from + ptr @.TypeMapEntry.8157_to; char* to + }, ; 4409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8158_from, ; char* from + ptr @.TypeMapEntry.8159_to; char* to + }, ; 4410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8160_from, ; char* from + ptr @.TypeMapEntry.8161_to; char* to + }, ; 4411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8162_from, ; char* from + ptr @.TypeMapEntry.8163_to; char* to + }, ; 4412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8164_from, ; char* from + ptr @.TypeMapEntry.8165_to; char* to + }, ; 4413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8166_from, ; char* from + ptr @.TypeMapEntry.8167_to; char* to + }, ; 4414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8168_from, ; char* from + ptr @.TypeMapEntry.8169_to; char* to + }, ; 4415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8170_from, ; char* from + ptr @.TypeMapEntry.8171_to; char* to + }, ; 4416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8172_from, ; char* from + ptr @.TypeMapEntry.8171_to; char* to + }, ; 4417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8173_from, ; char* from + ptr @.TypeMapEntry.8174_to; char* to + }, ; 4418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8175_from, ; char* from + ptr @.TypeMapEntry.8174_to; char* to + }, ; 4419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8176_from, ; char* from + ptr @.TypeMapEntry.8177_to; char* to + }, ; 4420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8178_from, ; char* from + ptr @.TypeMapEntry.8179_to; char* to + }, ; 4421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8180_from, ; char* from + ptr @.TypeMapEntry.8181_to; char* to + }, ; 4422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8182_from, ; char* from + ptr @.TypeMapEntry.8183_to; char* to + }, ; 4423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8184_from, ; char* from + ptr @.TypeMapEntry.8185_to; char* to + }, ; 4424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8186_from, ; char* from + ptr @.TypeMapEntry.8187_to; char* to + }, ; 4425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8188_from, ; char* from + ptr @.TypeMapEntry.8189_to; char* to + }, ; 4426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8190_from, ; char* from + ptr @.TypeMapEntry.8191_to; char* to + }, ; 4427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8192_from, ; char* from + ptr @.TypeMapEntry.8193_to; char* to + }, ; 4428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8194_from, ; char* from + ptr @.TypeMapEntry.8195_to; char* to + }, ; 4429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8196_from, ; char* from + ptr @.TypeMapEntry.8197_to; char* to + }, ; 4430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8198_from, ; char* from + ptr @.TypeMapEntry.8199_to; char* to + }, ; 4431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8200_from, ; char* from + ptr @.TypeMapEntry.8201_to; char* to + }, ; 4432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8202_from, ; char* from + ptr @.TypeMapEntry.8203_to; char* to + }, ; 4433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8204_from, ; char* from + ptr @.TypeMapEntry.8205_to; char* to + }, ; 4434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8206_from, ; char* from + ptr @.TypeMapEntry.8205_to; char* to + }, ; 4435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8207_from, ; char* from + ptr @.TypeMapEntry.8208_to; char* to + }, ; 4436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8209_from, ; char* from + ptr @.TypeMapEntry.8208_to; char* to + }, ; 4437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8210_from, ; char* from + ptr @.TypeMapEntry.8211_to; char* to + }, ; 4438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8212_from, ; char* from + ptr @.TypeMapEntry.8213_to; char* to + }, ; 4439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8214_from, ; char* from + ptr @.TypeMapEntry.8215_to; char* to + }, ; 4440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8216_from, ; char* from + ptr @.TypeMapEntry.8217_to; char* to + }, ; 4441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8218_from, ; char* from + ptr @.TypeMapEntry.8219_to; char* to + }, ; 4442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8220_from, ; char* from + ptr @.TypeMapEntry.8221_to; char* to + }, ; 4443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8222_from, ; char* from + ptr @.TypeMapEntry.8223_to; char* to + }, ; 4444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8224_from, ; char* from + ptr @.TypeMapEntry.8225_to; char* to + }, ; 4445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8226_from, ; char* from + ptr @.TypeMapEntry.8227_to; char* to + }, ; 4446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8228_from, ; char* from + ptr @.TypeMapEntry.8229_to; char* to + }, ; 4447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8230_from, ; char* from + ptr @.TypeMapEntry.8231_to; char* to + }, ; 4448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8232_from, ; char* from + ptr @.TypeMapEntry.8233_to; char* to + }, ; 4449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8234_from, ; char* from + ptr @.TypeMapEntry.8235_to; char* to + }, ; 4450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8236_from, ; char* from + ptr @.TypeMapEntry.8237_to; char* to + }, ; 4451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8238_from, ; char* from + ptr @.TypeMapEntry.8239_to; char* to + }, ; 4452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8240_from, ; char* from + ptr @.TypeMapEntry.8241_to; char* to + }, ; 4453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8242_from, ; char* from + ptr @.TypeMapEntry.8243_to; char* to + }, ; 4454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8244_from, ; char* from + ptr @.TypeMapEntry.8245_to; char* to + }, ; 4455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8246_from, ; char* from + ptr @.TypeMapEntry.8247_to; char* to + }, ; 4456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8248_from, ; char* from + ptr @.TypeMapEntry.8249_to; char* to + }, ; 4457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8250_from, ; char* from + ptr @.TypeMapEntry.8251_to; char* to + }, ; 4458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8252_from, ; char* from + ptr @.TypeMapEntry.8253_to; char* to + }, ; 4459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8254_from, ; char* from + ptr @.TypeMapEntry.8255_to; char* to + }, ; 4460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8256_from, ; char* from + ptr @.TypeMapEntry.8257_to; char* to + }, ; 4461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8258_from, ; char* from + ptr @.TypeMapEntry.8259_to; char* to + }, ; 4462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8260_from, ; char* from + ptr @.TypeMapEntry.8261_to; char* to + }, ; 4463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8262_from, ; char* from + ptr @.TypeMapEntry.8263_to; char* to + }, ; 4464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8264_from, ; char* from + ptr @.TypeMapEntry.8265_to; char* to + }, ; 4465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8266_from, ; char* from + ptr @.TypeMapEntry.8267_to; char* to + }, ; 4466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8268_from, ; char* from + ptr @.TypeMapEntry.8269_to; char* to + }, ; 4467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8270_from, ; char* from + ptr @.TypeMapEntry.8271_to; char* to + }, ; 4468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8272_from, ; char* from + ptr @.TypeMapEntry.8273_to; char* to + }, ; 4469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8274_from, ; char* from + ptr @.TypeMapEntry.8275_to; char* to + }, ; 4470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8276_from, ; char* from + ptr @.TypeMapEntry.8275_to; char* to + }, ; 4471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8277_from, ; char* from + ptr @.TypeMapEntry.8278_to; char* to + }, ; 4472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8279_from, ; char* from + ptr @.TypeMapEntry.8280_to; char* to + }, ; 4473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8281_from, ; char* from + ptr @.TypeMapEntry.8282_to; char* to + }, ; 4474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8283_from, ; char* from + ptr @.TypeMapEntry.8284_to; char* to + }, ; 4475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8285_from, ; char* from + ptr @.TypeMapEntry.8286_to; char* to + }, ; 4476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8287_from, ; char* from + ptr @.TypeMapEntry.8288_to; char* to + }, ; 4477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8289_from, ; char* from + ptr @.TypeMapEntry.8290_to; char* to + }, ; 4478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8291_from, ; char* from + ptr @.TypeMapEntry.8292_to; char* to + }, ; 4479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8293_from, ; char* from + ptr @.TypeMapEntry.8294_to; char* to + }, ; 4480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8295_from, ; char* from + ptr @.TypeMapEntry.8296_to; char* to + }, ; 4481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8297_from, ; char* from + ptr @.TypeMapEntry.8298_to; char* to + }, ; 4482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8299_from, ; char* from + ptr @.TypeMapEntry.8300_to; char* to + }, ; 4483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8301_from, ; char* from + ptr @.TypeMapEntry.8298_to; char* to + }, ; 4484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8302_from, ; char* from + ptr @.TypeMapEntry.8303_to; char* to + }, ; 4485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8304_from, ; char* from + ptr @.TypeMapEntry.8305_to; char* to + }, ; 4486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8306_from, ; char* from + ptr @.TypeMapEntry.8303_to; char* to + }, ; 4487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8307_from, ; char* from + ptr @.TypeMapEntry.8308_to; char* to + }, ; 4488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8309_from, ; char* from + ptr @.TypeMapEntry.8310_to; char* to + }, ; 4489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8311_from, ; char* from + ptr @.TypeMapEntry.8308_to; char* to + }, ; 4490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8312_from, ; char* from + ptr @.TypeMapEntry.8313_to; char* to + }, ; 4491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8314_from, ; char* from + ptr @.TypeMapEntry.8315_to; char* to + }, ; 4492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8316_from, ; char* from + ptr @.TypeMapEntry.8313_to; char* to + }, ; 4493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8317_from, ; char* from + ptr @.TypeMapEntry.8318_to; char* to + }, ; 4494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8319_from, ; char* from + ptr @.TypeMapEntry.8320_to; char* to + }, ; 4495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8321_from, ; char* from + ptr @.TypeMapEntry.8318_to; char* to + }, ; 4496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8322_from, ; char* from + ptr @.TypeMapEntry.8323_to; char* to + }, ; 4497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8324_from, ; char* from + ptr @.TypeMapEntry.8325_to; char* to + }, ; 4498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8326_from, ; char* from + ptr @.TypeMapEntry.8323_to; char* to + }, ; 4499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8327_from, ; char* from + ptr @.TypeMapEntry.8328_to; char* to + }, ; 4500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8329_from, ; char* from + ptr @.TypeMapEntry.8330_to; char* to + }, ; 4501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8331_from, ; char* from + ptr @.TypeMapEntry.8328_to; char* to + }, ; 4502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8332_from, ; char* from + ptr @.TypeMapEntry.8333_to; char* to + }, ; 4503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8334_from, ; char* from + ptr @.TypeMapEntry.8335_to; char* to + }, ; 4504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8336_from, ; char* from + ptr @.TypeMapEntry.8333_to; char* to + }, ; 4505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8337_from, ; char* from + ptr @.TypeMapEntry.8338_to; char* to + }, ; 4506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8339_from, ; char* from + ptr @.TypeMapEntry.8340_to; char* to + }, ; 4507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8341_from, ; char* from + ptr @.TypeMapEntry.8338_to; char* to + }, ; 4508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8342_from, ; char* from + ptr @.TypeMapEntry.8343_to; char* to + }, ; 4509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8344_from, ; char* from + ptr @.TypeMapEntry.8345_to; char* to + }, ; 4510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8346_from, ; char* from + ptr @.TypeMapEntry.8343_to; char* to + }, ; 4511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8347_from, ; char* from + ptr @.TypeMapEntry.8348_to; char* to + }, ; 4512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8349_from, ; char* from + ptr @.TypeMapEntry.8350_to; char* to + }, ; 4513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8351_from, ; char* from + ptr @.TypeMapEntry.8348_to; char* to + }, ; 4514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8352_from, ; char* from + ptr @.TypeMapEntry.8353_to; char* to + }, ; 4515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8354_from, ; char* from + ptr @.TypeMapEntry.8355_to; char* to + }, ; 4516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8356_from, ; char* from + ptr @.TypeMapEntry.8353_to; char* to + }, ; 4517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8357_from, ; char* from + ptr @.TypeMapEntry.8358_to; char* to + }, ; 4518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8359_from, ; char* from + ptr @.TypeMapEntry.8360_to; char* to + }, ; 4519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8361_from, ; char* from + ptr @.TypeMapEntry.8358_to; char* to + }, ; 4520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8362_from, ; char* from + ptr @.TypeMapEntry.8363_to; char* to + }, ; 4521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8364_from, ; char* from + ptr @.TypeMapEntry.8365_to; char* to + }, ; 4522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8366_from, ; char* from + ptr @.TypeMapEntry.8363_to; char* to + }, ; 4523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8367_from, ; char* from + ptr @.TypeMapEntry.8368_to; char* to + }, ; 4524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8369_from, ; char* from + ptr @.TypeMapEntry.8370_to; char* to + }, ; 4525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8371_from, ; char* from + ptr @.TypeMapEntry.8368_to; char* to + }, ; 4526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8372_from, ; char* from + ptr @.TypeMapEntry.8373_to; char* to + }, ; 4527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8374_from, ; char* from + ptr @.TypeMapEntry.8375_to; char* to + }, ; 4528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8376_from, ; char* from + ptr @.TypeMapEntry.8373_to; char* to + }, ; 4529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8377_from, ; char* from + ptr @.TypeMapEntry.8378_to; char* to + }, ; 4530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8379_from, ; char* from + ptr @.TypeMapEntry.8380_to; char* to + }, ; 4531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8381_from, ; char* from + ptr @.TypeMapEntry.8378_to; char* to + }, ; 4532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8382_from, ; char* from + ptr @.TypeMapEntry.8383_to; char* to + }, ; 4533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8384_from, ; char* from + ptr @.TypeMapEntry.8385_to; char* to + }, ; 4534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8386_from, ; char* from + ptr @.TypeMapEntry.8383_to; char* to + }, ; 4535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8387_from, ; char* from + ptr @.TypeMapEntry.8388_to; char* to + }, ; 4536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8389_from, ; char* from + ptr @.TypeMapEntry.8390_to; char* to + }, ; 4537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8391_from, ; char* from + ptr @.TypeMapEntry.8388_to; char* to + }, ; 4538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8392_from, ; char* from + ptr @.TypeMapEntry.8393_to; char* to + }, ; 4539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8394_from, ; char* from + ptr @.TypeMapEntry.8395_to; char* to + }, ; 4540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8396_from, ; char* from + ptr @.TypeMapEntry.8393_to; char* to + }, ; 4541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8397_from, ; char* from + ptr @.TypeMapEntry.8398_to; char* to + }, ; 4542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8399_from, ; char* from + ptr @.TypeMapEntry.8400_to; char* to + }, ; 4543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8401_from, ; char* from + ptr @.TypeMapEntry.8398_to; char* to + }, ; 4544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8402_from, ; char* from + ptr @.TypeMapEntry.8403_to; char* to + }, ; 4545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8404_from, ; char* from + ptr @.TypeMapEntry.8405_to; char* to + }, ; 4546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8406_from, ; char* from + ptr @.TypeMapEntry.8407_to; char* to + }, ; 4547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8408_from, ; char* from + ptr @.TypeMapEntry.8409_to; char* to + }, ; 4548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8410_from, ; char* from + ptr @.TypeMapEntry.8409_to; char* to + }, ; 4549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8411_from, ; char* from + ptr @.TypeMapEntry.8412_to; char* to + }, ; 4550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8413_from, ; char* from + ptr @.TypeMapEntry.8414_to; char* to + }, ; 4551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8415_from, ; char* from + ptr @.TypeMapEntry.8416_to; char* to + }, ; 4552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8417_from, ; char* from + ptr @.TypeMapEntry.8418_to; char* to + }, ; 4553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8419_from, ; char* from + ptr @.TypeMapEntry.8418_to; char* to + }, ; 4554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8420_from, ; char* from + ptr @.TypeMapEntry.8421_to; char* to + }, ; 4555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8422_from, ; char* from + ptr @.TypeMapEntry.8423_to; char* to + }, ; 4556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8424_from, ; char* from + ptr @.TypeMapEntry.8423_to; char* to + }, ; 4557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8425_from, ; char* from + ptr @.TypeMapEntry.8426_to; char* to + }, ; 4558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8427_from, ; char* from + ptr @.TypeMapEntry.8428_to; char* to + }, ; 4559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8429_from, ; char* from + ptr @.TypeMapEntry.8430_to; char* to + }, ; 4560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8431_from, ; char* from + ptr @.TypeMapEntry.8432_to; char* to + }, ; 4561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8433_from, ; char* from + ptr @.TypeMapEntry.8434_to; char* to + }, ; 4562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8435_from, ; char* from + ptr @.TypeMapEntry.8434_to; char* to + }, ; 4563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8436_from, ; char* from + ptr @.TypeMapEntry.8437_to; char* to + }, ; 4564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8438_from, ; char* from + ptr @.TypeMapEntry.8439_to; char* to + }, ; 4565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8440_from, ; char* from + ptr @.TypeMapEntry.8441_to; char* to + }, ; 4566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8442_from, ; char* from + ptr @.TypeMapEntry.8443_to; char* to + }, ; 4567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8444_from, ; char* from + ptr @.TypeMapEntry.8445_to; char* to + }, ; 4568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8446_from, ; char* from + ptr @.TypeMapEntry.8447_to; char* to + }, ; 4569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8448_from, ; char* from + ptr @.TypeMapEntry.8447_to; char* to + }, ; 4570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8449_from, ; char* from + ptr @.TypeMapEntry.8447_to; char* to + }, ; 4571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8450_from, ; char* from + ptr @.TypeMapEntry.8447_to; char* to + }, ; 4572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8451_from, ; char* from + ptr @.TypeMapEntry.8452_to; char* to + }, ; 4573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8453_from, ; char* from + ptr @.TypeMapEntry.8454_to; char* to + }, ; 4574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8455_from, ; char* from + ptr @.TypeMapEntry.8454_to; char* to + }, ; 4575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8456_from, ; char* from + ptr @.TypeMapEntry.8452_to; char* to + }, ; 4576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8457_from, ; char* from + ptr @.TypeMapEntry.8458_to; char* to + }, ; 4577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8459_from, ; char* from + ptr @.TypeMapEntry.8458_to; char* to + }, ; 4578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8460_from, ; char* from + ptr @.TypeMapEntry.8461_to; char* to + }, ; 4579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8462_from, ; char* from + ptr @.TypeMapEntry.8463_to; char* to + }, ; 4580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8464_from, ; char* from + ptr @.TypeMapEntry.8465_to; char* to + }, ; 4581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8466_from, ; char* from + ptr @.TypeMapEntry.8467_to; char* to + }, ; 4582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8468_from, ; char* from + ptr @.TypeMapEntry.8469_to; char* to + }, ; 4583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8470_from, ; char* from + ptr @.TypeMapEntry.8471_to; char* to + }, ; 4584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8472_from, ; char* from + ptr @.TypeMapEntry.8473_to; char* to + }, ; 4585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8474_from, ; char* from + ptr @.TypeMapEntry.8475_to; char* to + }, ; 4586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8476_from, ; char* from + ptr @.TypeMapEntry.8477_to; char* to + }, ; 4587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8478_from, ; char* from + ptr @.TypeMapEntry.8479_to; char* to + }, ; 4588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8480_from, ; char* from + ptr @.TypeMapEntry.8481_to; char* to + }, ; 4589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8482_from, ; char* from + ptr @.TypeMapEntry.8483_to; char* to + }, ; 4590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8484_from, ; char* from + ptr @.TypeMapEntry.8485_to; char* to + }, ; 4591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8486_from, ; char* from + ptr @.TypeMapEntry.8485_to; char* to + }, ; 4592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8487_from, ; char* from + ptr @.TypeMapEntry.8488_to; char* to + }, ; 4593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8489_from, ; char* from + ptr @.TypeMapEntry.8488_to; char* to + }, ; 4594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8490_from, ; char* from + ptr @.TypeMapEntry.8491_to; char* to + }, ; 4595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8492_from, ; char* from + ptr @.TypeMapEntry.8491_to; char* to + }, ; 4596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8493_from, ; char* from + ptr @.TypeMapEntry.8494_to; char* to + }, ; 4597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8495_from, ; char* from + ptr @.TypeMapEntry.8494_to; char* to + }, ; 4598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8496_from, ; char* from + ptr @.TypeMapEntry.8497_to; char* to + }, ; 4599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8498_from, ; char* from + ptr @.TypeMapEntry.8497_to; char* to + }, ; 4600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8499_from, ; char* from + ptr @.TypeMapEntry.8485_to; char* to + }, ; 4601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8500_from, ; char* from + ptr @.TypeMapEntry.8485_to; char* to + }, ; 4602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8501_from, ; char* from + ptr @.TypeMapEntry.8488_to; char* to + }, ; 4603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8502_from, ; char* from + ptr @.TypeMapEntry.8488_to; char* to + }, ; 4604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8503_from, ; char* from + ptr @.TypeMapEntry.8491_to; char* to + }, ; 4605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8504_from, ; char* from + ptr @.TypeMapEntry.8491_to; char* to + }, ; 4606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8505_from, ; char* from + ptr @.TypeMapEntry.8494_to; char* to + }, ; 4607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8506_from, ; char* from + ptr @.TypeMapEntry.8494_to; char* to + }, ; 4608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8507_from, ; char* from + ptr @.TypeMapEntry.8497_to; char* to + }, ; 4609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8508_from, ; char* from + ptr @.TypeMapEntry.8497_to; char* to + }, ; 4610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8509_from, ; char* from + ptr @.TypeMapEntry.8510_to; char* to + }, ; 4611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8511_from, ; char* from + ptr @.TypeMapEntry.8512_to; char* to + }, ; 4612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8513_from, ; char* from + ptr @.TypeMapEntry.8514_to; char* to + }, ; 4613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8515_from, ; char* from + ptr @.TypeMapEntry.8458_to; char* to + }, ; 4614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8516_from, ; char* from + ptr @.TypeMapEntry.8458_to; char* to + }, ; 4615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8517_from, ; char* from + ptr @.TypeMapEntry.8518_to; char* to + }, ; 4616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8519_from, ; char* from + ptr @.TypeMapEntry.8520_to; char* to + }, ; 4617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8521_from, ; char* from + ptr @.TypeMapEntry.8522_to; char* to + }, ; 4618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8523_from, ; char* from + ptr @.TypeMapEntry.8524_to; char* to + }, ; 4619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8525_from, ; char* from + ptr @.TypeMapEntry.8526_to; char* to + }, ; 4620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8527_from, ; char* from + ptr @.TypeMapEntry.8528_to; char* to + }, ; 4621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8529_from, ; char* from + ptr @.TypeMapEntry.8530_to; char* to + }, ; 4622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8531_from, ; char* from + ptr @.TypeMapEntry.8532_to; char* to + }, ; 4623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8533_from, ; char* from + ptr @.TypeMapEntry.8534_to; char* to + }, ; 4624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8535_from, ; char* from + ptr @.TypeMapEntry.8536_to; char* to + }, ; 4625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8537_from, ; char* from + ptr @.TypeMapEntry.8536_to; char* to + }, ; 4626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8538_from, ; char* from + ptr @.TypeMapEntry.8539_to; char* to + }, ; 4627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8540_from, ; char* from + ptr @.TypeMapEntry.8541_to; char* to + }, ; 4628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8542_from, ; char* from + ptr @.TypeMapEntry.8543_to; char* to + }, ; 4629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8544_from, ; char* from + ptr @.TypeMapEntry.8545_to; char* to + }, ; 4630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8546_from, ; char* from + ptr @.TypeMapEntry.8547_to; char* to + }, ; 4631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8548_from, ; char* from + ptr @.TypeMapEntry.8549_to; char* to + }, ; 4632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8550_from, ; char* from + ptr @.TypeMapEntry.8551_to; char* to + }, ; 4633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8552_from, ; char* from + ptr @.TypeMapEntry.8553_to; char* to + }, ; 4634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8554_from, ; char* from + ptr @.TypeMapEntry.8555_to; char* to + }, ; 4635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8556_from, ; char* from + ptr @.TypeMapEntry.8557_to; char* to + }, ; 4636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8558_from, ; char* from + ptr @.TypeMapEntry.8559_to; char* to + }, ; 4637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8560_from, ; char* from + ptr @.TypeMapEntry.8561_to; char* to + }, ; 4638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8562_from, ; char* from + ptr @.TypeMapEntry.8561_to; char* to + }, ; 4639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8563_from, ; char* from + ptr @.TypeMapEntry.8564_to; char* to + }, ; 4640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8565_from, ; char* from + ptr @.TypeMapEntry.8564_to; char* to + }, ; 4641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8566_from, ; char* from + ptr @.TypeMapEntry.8567_to; char* to + }, ; 4642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8568_from, ; char* from + ptr @.TypeMapEntry.8569_to; char* to + }, ; 4643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8570_from, ; char* from + ptr @.TypeMapEntry.8569_to; char* to + }, ; 4644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8571_from, ; char* from + ptr @.TypeMapEntry.8572_to; char* to + }, ; 4645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8573_from, ; char* from + ptr @.TypeMapEntry.8572_to; char* to + }, ; 4646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8574_from, ; char* from + ptr @.TypeMapEntry.8575_to; char* to + }, ; 4647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8576_from, ; char* from + ptr @.TypeMapEntry.8575_to; char* to + }, ; 4648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8577_from, ; char* from + ptr @.TypeMapEntry.8578_to; char* to + }, ; 4649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8579_from, ; char* from + ptr @.TypeMapEntry.8578_to; char* to + }, ; 4650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8580_from, ; char* from + ptr @.TypeMapEntry.8581_to; char* to + }, ; 4651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8582_from, ; char* from + ptr @.TypeMapEntry.8581_to; char* to + }, ; 4652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8583_from, ; char* from + ptr @.TypeMapEntry.8584_to; char* to + }, ; 4653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8585_from, ; char* from + ptr @.TypeMapEntry.8584_to; char* to + }, ; 4654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8586_from, ; char* from + ptr @.TypeMapEntry.8587_to; char* to + }, ; 4655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8588_from, ; char* from + ptr @.TypeMapEntry.8587_to; char* to + }, ; 4656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8589_from, ; char* from + ptr @.TypeMapEntry.8590_to; char* to + }, ; 4657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8591_from, ; char* from + ptr @.TypeMapEntry.8590_to; char* to + }, ; 4658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8592_from, ; char* from + ptr @.TypeMapEntry.8593_to; char* to + }, ; 4659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8594_from, ; char* from + ptr @.TypeMapEntry.8593_to; char* to + }, ; 4660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8595_from, ; char* from + ptr @.TypeMapEntry.8596_to; char* to + }, ; 4661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8597_from, ; char* from + ptr @.TypeMapEntry.8596_to; char* to + }, ; 4662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8598_from, ; char* from + ptr @.TypeMapEntry.8599_to; char* to + }, ; 4663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8600_from, ; char* from + ptr @.TypeMapEntry.8599_to; char* to + }, ; 4664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8601_from, ; char* from + ptr @.TypeMapEntry.8602_to; char* to + }, ; 4665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8603_from, ; char* from + ptr @.TypeMapEntry.8604_to; char* to + }, ; 4666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8605_from, ; char* from + ptr @.TypeMapEntry.8606_to; char* to + }, ; 4667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8607_from, ; char* from + ptr @.TypeMapEntry.8608_to; char* to + }, ; 4668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8609_from, ; char* from + ptr @.TypeMapEntry.8610_to; char* to + }, ; 4669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8611_from, ; char* from + ptr @.TypeMapEntry.8612_to; char* to + }, ; 4670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8613_from, ; char* from + ptr @.TypeMapEntry.8612_to; char* to + }, ; 4671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8614_from, ; char* from + ptr @.TypeMapEntry.8615_to; char* to + }, ; 4672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8616_from, ; char* from + ptr @.TypeMapEntry.8615_to; char* to + }, ; 4673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8617_from, ; char* from + ptr @.TypeMapEntry.8618_to; char* to + }, ; 4674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8619_from, ; char* from + ptr @.TypeMapEntry.8620_to; char* to + }, ; 4675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8621_from, ; char* from + ptr @.TypeMapEntry.8622_to; char* to + }, ; 4676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8623_from, ; char* from + ptr @.TypeMapEntry.8624_to; char* to + }, ; 4677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8625_from, ; char* from + ptr @.TypeMapEntry.8624_to; char* to + }, ; 4678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8626_from, ; char* from + ptr @.TypeMapEntry.8627_to; char* to + }, ; 4679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8628_from, ; char* from + ptr @.TypeMapEntry.8629_to; char* to + }, ; 4680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8630_from, ; char* from + ptr @.TypeMapEntry.8629_to; char* to + }, ; 4681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8631_from, ; char* from + ptr @.TypeMapEntry.8632_to; char* to + }, ; 4682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8633_from, ; char* from + ptr @.TypeMapEntry.8634_to; char* to + }, ; 4683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8635_from, ; char* from + ptr @.TypeMapEntry.8636_to; char* to + }, ; 4684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8637_from, ; char* from + ptr @.TypeMapEntry.8638_to; char* to + }, ; 4685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8639_from, ; char* from + ptr @.TypeMapEntry.8640_to; char* to + }, ; 4686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8641_from, ; char* from + ptr @.TypeMapEntry.8642_to; char* to + }, ; 4687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8643_from, ; char* from + ptr @.TypeMapEntry.8644_to; char* to + }, ; 4688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8645_from, ; char* from + ptr @.TypeMapEntry.8646_to; char* to + }, ; 4689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8647_from, ; char* from + ptr @.TypeMapEntry.8646_to; char* to + }, ; 4690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8648_from, ; char* from + ptr @.TypeMapEntry.8649_to; char* to + }, ; 4691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8650_from, ; char* from + ptr @.TypeMapEntry.8649_to; char* to + }, ; 4692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8651_from, ; char* from + ptr @.TypeMapEntry.8652_to; char* to + }, ; 4693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8653_from, ; char* from + ptr @.TypeMapEntry.8652_to; char* to + }, ; 4694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8654_from, ; char* from + ptr @.TypeMapEntry.8655_to; char* to + }, ; 4695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8656_from, ; char* from + ptr @.TypeMapEntry.8657_to; char* to + }, ; 4696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8658_from, ; char* from + ptr @.TypeMapEntry.8657_to; char* to + }, ; 4697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8659_from, ; char* from + ptr @.TypeMapEntry.8660_to; char* to + }, ; 4698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8661_from, ; char* from + ptr @.TypeMapEntry.8662_to; char* to + }, ; 4699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8663_from, ; char* from + ptr @.TypeMapEntry.8662_to; char* to + }, ; 4700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8664_from, ; char* from + ptr @.TypeMapEntry.8665_to; char* to + }, ; 4701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8666_from, ; char* from + ptr @.TypeMapEntry.8667_to; char* to + }, ; 4702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8668_from, ; char* from + ptr @.TypeMapEntry.8669_to; char* to + }, ; 4703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8670_from, ; char* from + ptr @.TypeMapEntry.8669_to; char* to + }, ; 4704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8671_from, ; char* from + ptr @.TypeMapEntry.8672_to; char* to + }, ; 4705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8673_from, ; char* from + ptr @.TypeMapEntry.8674_to; char* to + }, ; 4706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8675_from, ; char* from + ptr @.TypeMapEntry.8676_to; char* to + }, ; 4707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8677_from, ; char* from + ptr @.TypeMapEntry.8678_to; char* to + }, ; 4708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8679_from, ; char* from + ptr @.TypeMapEntry.8680_to; char* to + }, ; 4709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8681_from, ; char* from + ptr @.TypeMapEntry.8682_to; char* to + }, ; 4710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8683_from, ; char* from + ptr @.TypeMapEntry.8684_to; char* to + }, ; 4711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8685_from, ; char* from + ptr @.TypeMapEntry.8686_to; char* to + }, ; 4712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8687_from, ; char* from + ptr @.TypeMapEntry.8688_to; char* to + }, ; 4713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8689_from, ; char* from + ptr @.TypeMapEntry.8688_to; char* to + }, ; 4714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8690_from, ; char* from + ptr @.TypeMapEntry.8691_to; char* to + }, ; 4715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8692_from, ; char* from + ptr @.TypeMapEntry.8693_to; char* to + }, ; 4716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8694_from, ; char* from + ptr @.TypeMapEntry.8695_to; char* to + }, ; 4717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8696_from, ; char* from + ptr @.TypeMapEntry.8697_to; char* to + }, ; 4718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8698_from, ; char* from + ptr @.TypeMapEntry.8699_to; char* to + }, ; 4719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8700_from, ; char* from + ptr @.TypeMapEntry.8699_to; char* to + }, ; 4720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8701_from, ; char* from + ptr @.TypeMapEntry.8702_to; char* to + }, ; 4721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8703_from, ; char* from + ptr @.TypeMapEntry.8704_to; char* to + }, ; 4722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8705_from, ; char* from + ptr @.TypeMapEntry.8706_to; char* to + }, ; 4723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8707_from, ; char* from + ptr @.TypeMapEntry.8708_to; char* to + }, ; 4724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8709_from, ; char* from + ptr @.TypeMapEntry.8710_to; char* to + }, ; 4725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8711_from, ; char* from + ptr @.TypeMapEntry.8712_to; char* to + }, ; 4726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8713_from, ; char* from + ptr @.TypeMapEntry.8714_to; char* to + }, ; 4727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8715_from, ; char* from + ptr @.TypeMapEntry.8716_to; char* to + }, ; 4728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8717_from, ; char* from + ptr @.TypeMapEntry.8716_to; char* to + }, ; 4729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8718_from, ; char* from + ptr @.TypeMapEntry.8719_to; char* to + }, ; 4730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8720_from, ; char* from + ptr @.TypeMapEntry.8719_to; char* to + }, ; 4731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8721_from, ; char* from + ptr @.TypeMapEntry.8722_to; char* to + }, ; 4732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8723_from, ; char* from + ptr @.TypeMapEntry.8724_to; char* to + }, ; 4733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8725_from, ; char* from + ptr @.TypeMapEntry.8724_to; char* to + }, ; 4734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8726_from, ; char* from + ptr @.TypeMapEntry.8727_to; char* to + }, ; 4735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8728_from, ; char* from + ptr @.TypeMapEntry.8729_to; char* to + }, ; 4736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8730_from, ; char* from + ptr @.TypeMapEntry.8731_to; char* to + }, ; 4737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8732_from, ; char* from + ptr @.TypeMapEntry.8731_to; char* to + }, ; 4738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8733_from, ; char* from + ptr @.TypeMapEntry.8734_to; char* to + }, ; 4739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8735_from, ; char* from + ptr @.TypeMapEntry.8734_to; char* to + }, ; 4740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8736_from, ; char* from + ptr @.TypeMapEntry.8737_to; char* to + }, ; 4741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8738_from, ; char* from + ptr @.TypeMapEntry.8737_to; char* to + }, ; 4742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8739_from, ; char* from + ptr @.TypeMapEntry.8740_to; char* to + }, ; 4743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8741_from, ; char* from + ptr @.TypeMapEntry.8740_to; char* to + }, ; 4744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8742_from, ; char* from + ptr @.TypeMapEntry.8743_to; char* to + }, ; 4745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8744_from, ; char* from + ptr @.TypeMapEntry.8743_to; char* to + }, ; 4746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8745_from, ; char* from + ptr @.TypeMapEntry.8746_to; char* to + }, ; 4747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8747_from, ; char* from + ptr @.TypeMapEntry.8746_to; char* to + }, ; 4748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8748_from, ; char* from + ptr @.TypeMapEntry.8749_to; char* to + }, ; 4749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8750_from, ; char* from + ptr @.TypeMapEntry.8749_to; char* to + }, ; 4750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8751_from, ; char* from + ptr @.TypeMapEntry.8752_to; char* to + }, ; 4751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8753_from, ; char* from + ptr @.TypeMapEntry.8752_to; char* to + }, ; 4752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8754_from, ; char* from + ptr @.TypeMapEntry.8755_to; char* to + }, ; 4753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8756_from, ; char* from + ptr @.TypeMapEntry.8755_to; char* to + }, ; 4754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8757_from, ; char* from + ptr @.TypeMapEntry.8758_to; char* to + }, ; 4755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8759_from, ; char* from + ptr @.TypeMapEntry.8758_to; char* to + }, ; 4756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8760_from, ; char* from + ptr @.TypeMapEntry.8761_to; char* to + }, ; 4757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8762_from, ; char* from + ptr @.TypeMapEntry.8761_to; char* to + }, ; 4758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8763_from, ; char* from + ptr @.TypeMapEntry.8764_to; char* to + }, ; 4759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8765_from, ; char* from + ptr @.TypeMapEntry.8766_to; char* to + }, ; 4760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8767_from, ; char* from + ptr @.TypeMapEntry.8768_to; char* to + }, ; 4761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8769_from, ; char* from + ptr @.TypeMapEntry.8770_to; char* to + }, ; 4762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8771_from, ; char* from + ptr @.TypeMapEntry.8772_to; char* to + }, ; 4763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8773_from, ; char* from + ptr @.TypeMapEntry.8774_to; char* to + }, ; 4764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8775_from, ; char* from + ptr @.TypeMapEntry.8776_to; char* to + }, ; 4765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8777_from, ; char* from + ptr @.TypeMapEntry.8778_to; char* to + }, ; 4766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8779_from, ; char* from + ptr @.TypeMapEntry.8780_to; char* to + }, ; 4767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8781_from, ; char* from + ptr @.TypeMapEntry.8780_to; char* to + }, ; 4768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8782_from, ; char* from + ptr @.TypeMapEntry.8783_to; char* to + }, ; 4769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8784_from, ; char* from + ptr @.TypeMapEntry.8785_to; char* to + }, ; 4770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8786_from, ; char* from + ptr @.TypeMapEntry.8787_to; char* to + }, ; 4771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8788_from, ; char* from + ptr @.TypeMapEntry.8789_to; char* to + }, ; 4772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8790_from, ; char* from + ptr @.TypeMapEntry.8789_to; char* to + }, ; 4773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8791_from, ; char* from + ptr @.TypeMapEntry.8792_to; char* to + }, ; 4774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8793_from, ; char* from + ptr @.TypeMapEntry.8794_to; char* to + }, ; 4775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8795_from, ; char* from + ptr @.TypeMapEntry.8796_to; char* to + }, ; 4776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8797_from, ; char* from + ptr @.TypeMapEntry.8798_to; char* to + }, ; 4777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8799_from, ; char* from + ptr @.TypeMapEntry.8800_to; char* to + }, ; 4778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8801_from, ; char* from + ptr @.TypeMapEntry.8802_to; char* to + }, ; 4779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8803_from, ; char* from + ptr @.TypeMapEntry.8804_to; char* to + }, ; 4780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8805_from, ; char* from + ptr @.TypeMapEntry.8806_to; char* to + }, ; 4781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8807_from, ; char* from + ptr @.TypeMapEntry.8808_to; char* to + }, ; 4782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8809_from, ; char* from + ptr @.TypeMapEntry.8810_to; char* to + }, ; 4783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8811_from, ; char* from + ptr @.TypeMapEntry.8812_to; char* to + }, ; 4784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8813_from, ; char* from + ptr @.TypeMapEntry.8814_to; char* to + }, ; 4785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8815_from, ; char* from + ptr @.TypeMapEntry.8816_to; char* to + }, ; 4786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8817_from, ; char* from + ptr @.TypeMapEntry.8818_to; char* to + }, ; 4787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8819_from, ; char* from + ptr @.TypeMapEntry.8820_to; char* to + }, ; 4788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8821_from, ; char* from + ptr @.TypeMapEntry.8822_to; char* to + }, ; 4789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8823_from, ; char* from + ptr @.TypeMapEntry.8824_to; char* to + }, ; 4790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8825_from, ; char* from + ptr @.TypeMapEntry.8826_to; char* to + }, ; 4791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8827_from, ; char* from + ptr @.TypeMapEntry.8828_to; char* to + }, ; 4792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8829_from, ; char* from + ptr @.TypeMapEntry.8830_to; char* to + }, ; 4793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8831_from, ; char* from + ptr @.TypeMapEntry.8832_to; char* to + }, ; 4794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8833_from, ; char* from + ptr @.TypeMapEntry.8834_to; char* to + }, ; 4795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8835_from, ; char* from + ptr @.TypeMapEntry.8836_to; char* to + }, ; 4796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8837_from, ; char* from + ptr @.TypeMapEntry.8838_to; char* to + }, ; 4797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8839_from, ; char* from + ptr @.TypeMapEntry.8840_to; char* to + }, ; 4798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8841_from, ; char* from + ptr @.TypeMapEntry.8842_to; char* to + }, ; 4799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8843_from, ; char* from + ptr @.TypeMapEntry.8844_to; char* to + }, ; 4800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8845_from, ; char* from + ptr @.TypeMapEntry.8846_to; char* to + }, ; 4801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8847_from, ; char* from + ptr @.TypeMapEntry.8848_to; char* to + }, ; 4802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8849_from, ; char* from + ptr @.TypeMapEntry.8850_to; char* to + }, ; 4803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8851_from, ; char* from + ptr @.TypeMapEntry.8852_to; char* to + }, ; 4804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8853_from, ; char* from + ptr @.TypeMapEntry.8852_to; char* to + }, ; 4805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8854_from, ; char* from + ptr @.TypeMapEntry.8855_to; char* to + }, ; 4806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8856_from, ; char* from + ptr @.TypeMapEntry.8857_to; char* to + }, ; 4807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8858_from, ; char* from + ptr @.TypeMapEntry.8857_to; char* to + }, ; 4808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8859_from, ; char* from + ptr @.TypeMapEntry.8860_to; char* to + }, ; 4809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8861_from, ; char* from + ptr @.TypeMapEntry.8860_to; char* to + }, ; 4810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8862_from, ; char* from + ptr @.TypeMapEntry.8863_to; char* to + }, ; 4811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8864_from, ; char* from + ptr @.TypeMapEntry.8865_to; char* to + }, ; 4812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8866_from, ; char* from + ptr @.TypeMapEntry.8867_to; char* to + }, ; 4813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8868_from, ; char* from + ptr @.TypeMapEntry.8869_to; char* to + }, ; 4814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8870_from, ; char* from + ptr @.TypeMapEntry.8871_to; char* to + }, ; 4815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8872_from, ; char* from + ptr @.TypeMapEntry.8871_to; char* to + }, ; 4816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8873_from, ; char* from + ptr @.TypeMapEntry.8874_to; char* to + }, ; 4817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8875_from, ; char* from + ptr @.TypeMapEntry.8874_to; char* to + }, ; 4818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8876_from, ; char* from + ptr @.TypeMapEntry.8877_to; char* to + }, ; 4819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8878_from, ; char* from + ptr @.TypeMapEntry.8879_to; char* to + }, ; 4820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8880_from, ; char* from + ptr @.TypeMapEntry.8881_to; char* to + }, ; 4821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8882_from, ; char* from + ptr @.TypeMapEntry.8883_to; char* to + }, ; 4822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8884_from, ; char* from + ptr @.TypeMapEntry.8885_to; char* to + }, ; 4823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8886_from, ; char* from + ptr @.TypeMapEntry.8887_to; char* to + }, ; 4824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8888_from, ; char* from + ptr @.TypeMapEntry.8889_to; char* to + }, ; 4825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8890_from, ; char* from + ptr @.TypeMapEntry.8891_to; char* to + }, ; 4826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8892_from, ; char* from + ptr @.TypeMapEntry.8893_to; char* to + }, ; 4827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8894_from, ; char* from + ptr @.TypeMapEntry.8895_to; char* to + }, ; 4828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8896_from, ; char* from + ptr @.TypeMapEntry.8897_to; char* to + }, ; 4829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8898_from, ; char* from + ptr @.TypeMapEntry.8899_to; char* to + }, ; 4830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8900_from, ; char* from + ptr @.TypeMapEntry.8901_to; char* to + }, ; 4831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8902_from, ; char* from + ptr @.TypeMapEntry.8903_to; char* to + }, ; 4832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8904_from, ; char* from + ptr @.TypeMapEntry.8905_to; char* to + }, ; 4833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8906_from, ; char* from + ptr @.TypeMapEntry.8905_to; char* to + }, ; 4834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8907_from, ; char* from + ptr @.TypeMapEntry.8908_to; char* to + }, ; 4835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8909_from, ; char* from + ptr @.TypeMapEntry.8910_to; char* to + }, ; 4836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8911_from, ; char* from + ptr @.TypeMapEntry.8912_to; char* to + }, ; 4837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8913_from, ; char* from + ptr @.TypeMapEntry.8914_to; char* to + }, ; 4838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8915_from, ; char* from + ptr @.TypeMapEntry.8916_to; char* to + }, ; 4839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8917_from, ; char* from + ptr @.TypeMapEntry.8916_to; char* to + }, ; 4840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8918_from, ; char* from + ptr @.TypeMapEntry.8919_to; char* to + }, ; 4841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8920_from, ; char* from + ptr @.TypeMapEntry.8921_to; char* to + }, ; 4842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8922_from, ; char* from + ptr @.TypeMapEntry.8919_to; char* to + }, ; 4843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8923_from, ; char* from + ptr @.TypeMapEntry.8924_to; char* to + }, ; 4844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8925_from, ; char* from + ptr @.TypeMapEntry.8926_to; char* to + }, ; 4845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8927_from, ; char* from + ptr @.TypeMapEntry.8924_to; char* to + }, ; 4846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8928_from, ; char* from + ptr @.TypeMapEntry.8929_to; char* to + }, ; 4847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8930_from, ; char* from + ptr @.TypeMapEntry.8929_to; char* to + }, ; 4848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8931_from, ; char* from + ptr @.TypeMapEntry.8932_to; char* to + }, ; 4849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8933_from, ; char* from + ptr @.TypeMapEntry.8934_to; char* to + }, ; 4850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8935_from, ; char* from + ptr @.TypeMapEntry.8934_to; char* to + }, ; 4851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8936_from, ; char* from + ptr @.TypeMapEntry.8937_to; char* to + }, ; 4852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8938_from, ; char* from + ptr @.TypeMapEntry.8939_to; char* to + }, ; 4853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8940_from, ; char* from + ptr @.TypeMapEntry.8941_to; char* to + }, ; 4854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8942_from, ; char* from + ptr @.TypeMapEntry.8941_to; char* to + }, ; 4855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8943_from, ; char* from + ptr @.TypeMapEntry.8944_to; char* to + }, ; 4856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8945_from, ; char* from + ptr @.TypeMapEntry.8944_to; char* to + }, ; 4857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8946_from, ; char* from + ptr @.TypeMapEntry.8947_to; char* to + }, ; 4858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8948_from, ; char* from + ptr @.TypeMapEntry.8949_to; char* to + }, ; 4859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8950_from, ; char* from + ptr @.TypeMapEntry.8951_to; char* to + }, ; 4860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8952_from, ; char* from + ptr @.TypeMapEntry.8953_to; char* to + }, ; 4861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8954_from, ; char* from + ptr @.TypeMapEntry.8955_to; char* to + }, ; 4862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8956_from, ; char* from + ptr @.TypeMapEntry.8957_to; char* to + }, ; 4863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8958_from, ; char* from + ptr @.TypeMapEntry.8959_to; char* to + }, ; 4864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8960_from, ; char* from + ptr @.TypeMapEntry.8961_to; char* to + }, ; 4865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8962_from, ; char* from + ptr @.TypeMapEntry.8963_to; char* to + }, ; 4866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8964_from, ; char* from + ptr @.TypeMapEntry.8965_to; char* to + }, ; 4867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8966_from, ; char* from + ptr @.TypeMapEntry.8967_to; char* to + }, ; 4868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8968_from, ; char* from + ptr @.TypeMapEntry.8969_to; char* to + }, ; 4869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8970_from, ; char* from + ptr @.TypeMapEntry.8971_to; char* to + }, ; 4870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8972_from, ; char* from + ptr @.TypeMapEntry.8973_to; char* to + }, ; 4871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8974_from, ; char* from + ptr @.TypeMapEntry.8975_to; char* to + }, ; 4872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8976_from, ; char* from + ptr @.TypeMapEntry.8977_to; char* to + }, ; 4873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8978_from, ; char* from + ptr @.TypeMapEntry.8979_to; char* to + }, ; 4874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8980_from, ; char* from + ptr @.TypeMapEntry.8981_to; char* to + }, ; 4875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8982_from, ; char* from + ptr @.TypeMapEntry.8983_to; char* to + }, ; 4876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8984_from, ; char* from + ptr @.TypeMapEntry.8983_to; char* to + }, ; 4877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8985_from, ; char* from + ptr @.TypeMapEntry.8986_to; char* to + }, ; 4878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8987_from, ; char* from + ptr @.TypeMapEntry.8988_to; char* to + }, ; 4879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8989_from, ; char* from + ptr @.TypeMapEntry.8988_to; char* to + }, ; 4880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8990_from, ; char* from + ptr @.TypeMapEntry.8991_to; char* to + }, ; 4881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8992_from, ; char* from + ptr @.TypeMapEntry.8993_to; char* to + }, ; 4882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8994_from, ; char* from + ptr @.TypeMapEntry.8993_to; char* to + }, ; 4883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8995_from, ; char* from + ptr @.TypeMapEntry.8991_to; char* to + }, ; 4884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8996_from, ; char* from + ptr @.TypeMapEntry.8997_to; char* to + }, ; 4885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8998_from, ; char* from + ptr @.TypeMapEntry.8997_to; char* to + }, ; 4886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8999_from, ; char* from + ptr @.TypeMapEntry.9000_to; char* to + }, ; 4887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9001_from, ; char* from + ptr @.TypeMapEntry.9000_to; char* to + }, ; 4888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9002_from, ; char* from + ptr @.TypeMapEntry.9003_to; char* to + }, ; 4889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9004_from, ; char* from + ptr @.TypeMapEntry.9005_to; char* to + }, ; 4890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9006_from, ; char* from + ptr @.TypeMapEntry.9007_to; char* to + }, ; 4891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9008_from, ; char* from + ptr @.TypeMapEntry.9009_to; char* to + }, ; 4892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9010_from, ; char* from + ptr @.TypeMapEntry.9011_to; char* to + }, ; 4893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9012_from, ; char* from + ptr @.TypeMapEntry.9013_to; char* to + }, ; 4894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9014_from, ; char* from + ptr @.TypeMapEntry.9015_to; char* to + }, ; 4895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9016_from, ; char* from + ptr @.TypeMapEntry.9017_to; char* to + }, ; 4896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9018_from, ; char* from + ptr @.TypeMapEntry.9019_to; char* to + }, ; 4897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9020_from, ; char* from + ptr @.TypeMapEntry.9021_to; char* to + }, ; 4898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9022_from, ; char* from + ptr @.TypeMapEntry.9023_to; char* to + }, ; 4899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9024_from, ; char* from + ptr @.TypeMapEntry.9025_to; char* to + }, ; 4900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9026_from, ; char* from + ptr @.TypeMapEntry.9027_to; char* to + }, ; 4901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9028_from, ; char* from + ptr @.TypeMapEntry.9029_to; char* to + }, ; 4902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9030_from, ; char* from + ptr @.TypeMapEntry.9031_to; char* to + }, ; 4903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9032_from, ; char* from + ptr @.TypeMapEntry.9033_to; char* to + }, ; 4904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9034_from, ; char* from + ptr @.TypeMapEntry.9035_to; char* to + }, ; 4905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9036_from, ; char* from + ptr @.TypeMapEntry.9037_to; char* to + }, ; 4906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9038_from, ; char* from + ptr @.TypeMapEntry.9039_to; char* to + }, ; 4907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9040_from, ; char* from + ptr @.TypeMapEntry.9041_to; char* to + }, ; 4908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9042_from, ; char* from + ptr @.TypeMapEntry.9043_to; char* to + }, ; 4909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9044_from, ; char* from + ptr @.TypeMapEntry.9045_to; char* to + }, ; 4910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9046_from, ; char* from + ptr @.TypeMapEntry.9047_to; char* to + }, ; 4911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9048_from, ; char* from + ptr @.TypeMapEntry.9049_to; char* to + }, ; 4912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9050_from, ; char* from + ptr @.TypeMapEntry.9049_to; char* to + }, ; 4913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9051_from, ; char* from + ptr @.TypeMapEntry.9052_to; char* to + }, ; 4914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9053_from, ; char* from + ptr @.TypeMapEntry.9054_to; char* to + }, ; 4915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9055_from, ; char* from + ptr @.TypeMapEntry.9056_to; char* to + }, ; 4916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9057_from, ; char* from + ptr @.TypeMapEntry.9058_to; char* to + }, ; 4917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9059_from, ; char* from + ptr @.TypeMapEntry.9060_to; char* to + }, ; 4918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9061_from, ; char* from + ptr @.TypeMapEntry.9062_to; char* to + }, ; 4919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9063_from, ; char* from + ptr @.TypeMapEntry.9062_to; char* to + }, ; 4920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9064_from, ; char* from + ptr @.TypeMapEntry.9065_to; char* to + }, ; 4921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9066_from, ; char* from + ptr @.TypeMapEntry.9067_to; char* to + }, ; 4922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9068_from, ; char* from + ptr @.TypeMapEntry.9069_to; char* to + }, ; 4923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9070_from, ; char* from + ptr @.TypeMapEntry.9071_to; char* to + }, ; 4924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9072_from, ; char* from + ptr @.TypeMapEntry.9073_to; char* to + }, ; 4925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9074_from, ; char* from + ptr @.TypeMapEntry.9075_to; char* to + }, ; 4926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9076_from, ; char* from + ptr @.TypeMapEntry.9077_to; char* to + }, ; 4927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9078_from, ; char* from + ptr @.TypeMapEntry.9079_to; char* to + }, ; 4928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9080_from, ; char* from + ptr @.TypeMapEntry.9081_to; char* to + }, ; 4929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9082_from, ; char* from + ptr @.TypeMapEntry.9083_to; char* to + }, ; 4930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9084_from, ; char* from + ptr @.TypeMapEntry.9085_to; char* to + }, ; 4931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9086_from, ; char* from + ptr @.TypeMapEntry.9087_to; char* to + }, ; 4932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9088_from, ; char* from + ptr @.TypeMapEntry.9089_to; char* to + }, ; 4933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9090_from, ; char* from + ptr @.TypeMapEntry.9089_to; char* to + }, ; 4934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9091_from, ; char* from + ptr @.TypeMapEntry.9092_to; char* to + }, ; 4935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9093_from, ; char* from + ptr @.TypeMapEntry.9094_to; char* to + }, ; 4936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9095_from, ; char* from + ptr @.TypeMapEntry.9096_to; char* to + }, ; 4937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9097_from, ; char* from + ptr @.TypeMapEntry.9094_to; char* to + }, ; 4938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9098_from, ; char* from + ptr @.TypeMapEntry.9099_to; char* to + }, ; 4939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9100_from, ; char* from + ptr @.TypeMapEntry.9101_to; char* to + }, ; 4940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9102_from, ; char* from + ptr @.TypeMapEntry.9099_to; char* to + }, ; 4941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9103_from, ; char* from + ptr @.TypeMapEntry.9104_to; char* to + }, ; 4942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9105_from, ; char* from + ptr @.TypeMapEntry.9106_to; char* to + }, ; 4943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9107_from, ; char* from + ptr @.TypeMapEntry.9104_to; char* to + }, ; 4944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9108_from, ; char* from + ptr @.TypeMapEntry.9109_to; char* to + }, ; 4945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9110_from, ; char* from + ptr @.TypeMapEntry.9111_to; char* to + }, ; 4946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9112_from, ; char* from + ptr @.TypeMapEntry.9109_to; char* to + }, ; 4947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9113_from, ; char* from + ptr @.TypeMapEntry.9114_to; char* to + }, ; 4948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9115_from, ; char* from + ptr @.TypeMapEntry.9116_to; char* to + }, ; 4949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9117_from, ; char* from + ptr @.TypeMapEntry.9118_to; char* to + }, ; 4950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9119_from, ; char* from + ptr @.TypeMapEntry.9120_to; char* to + }, ; 4951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9121_from, ; char* from + ptr @.TypeMapEntry.9122_to; char* to + }, ; 4952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9123_from, ; char* from + ptr @.TypeMapEntry.9124_to; char* to + }, ; 4953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9125_from, ; char* from + ptr @.TypeMapEntry.9126_to; char* to + }, ; 4954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9127_from, ; char* from + ptr @.TypeMapEntry.9128_to; char* to + }, ; 4955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9129_from, ; char* from + ptr @.TypeMapEntry.9130_to; char* to + }, ; 4956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9131_from, ; char* from + ptr @.TypeMapEntry.9132_to; char* to + }, ; 4957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9133_from, ; char* from + ptr @.TypeMapEntry.9134_to; char* to + }, ; 4958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9135_from, ; char* from + ptr @.TypeMapEntry.9134_to; char* to + }, ; 4959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9136_from, ; char* from + ptr @.TypeMapEntry.9137_to; char* to + }, ; 4960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9138_from, ; char* from + ptr @.TypeMapEntry.9139_to; char* to + }, ; 4961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9140_from, ; char* from + ptr @.TypeMapEntry.9139_to; char* to + }, ; 4962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9141_from, ; char* from + ptr @.TypeMapEntry.9142_to; char* to + }, ; 4963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9143_from, ; char* from + ptr @.TypeMapEntry.9144_to; char* to + }, ; 4964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9145_from, ; char* from + ptr @.TypeMapEntry.9146_to; char* to + }, ; 4965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9147_from, ; char* from + ptr @.TypeMapEntry.9146_to; char* to + }, ; 4966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9148_from, ; char* from + ptr @.TypeMapEntry.9149_to; char* to + }, ; 4967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9150_from, ; char* from + ptr @.TypeMapEntry.9151_to; char* to + }, ; 4968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9152_from, ; char* from + ptr @.TypeMapEntry.9151_to; char* to + }, ; 4969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9153_from, ; char* from + ptr @.TypeMapEntry.9154_to; char* to + }, ; 4970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9155_from, ; char* from + ptr @.TypeMapEntry.9154_to; char* to + }, ; 4971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9156_from, ; char* from + ptr @.TypeMapEntry.9157_to; char* to + }, ; 4972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9158_from, ; char* from + ptr @.TypeMapEntry.9157_to; char* to + }, ; 4973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9159_from, ; char* from + ptr @.TypeMapEntry.9160_to; char* to + }, ; 4974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9161_from, ; char* from + ptr @.TypeMapEntry.9160_to; char* to + }, ; 4975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9162_from, ; char* from + ptr @.TypeMapEntry.9163_to; char* to + }, ; 4976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9164_from, ; char* from + ptr @.TypeMapEntry.9165_to; char* to + }, ; 4977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9166_from, ; char* from + ptr @.TypeMapEntry.9163_to; char* to + }, ; 4978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9167_from, ; char* from + ptr @.TypeMapEntry.9168_to; char* to + }, ; 4979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9169_from, ; char* from + ptr @.TypeMapEntry.9168_to; char* to + }, ; 4980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9170_from, ; char* from + ptr @.TypeMapEntry.9171_to; char* to + }, ; 4981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9172_from, ; char* from + ptr @.TypeMapEntry.9173_to; char* to + }, ; 4982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9174_from, ; char* from + ptr @.TypeMapEntry.9175_to; char* to + }, ; 4983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9176_from, ; char* from + ptr @.TypeMapEntry.9177_to; char* to + }, ; 4984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9178_from, ; char* from + ptr @.TypeMapEntry.9179_to; char* to + }, ; 4985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9180_from, ; char* from + ptr @.TypeMapEntry.9181_to; char* to + }, ; 4986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9182_from, ; char* from + ptr @.TypeMapEntry.9179_to; char* to + }, ; 4987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9183_from, ; char* from + ptr @.TypeMapEntry.9184_to; char* to + }, ; 4988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9185_from, ; char* from + ptr @.TypeMapEntry.9184_to; char* to + }, ; 4989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9186_from, ; char* from + ptr @.TypeMapEntry.9187_to; char* to + }, ; 4990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9188_from, ; char* from + ptr @.TypeMapEntry.9189_to; char* to + }, ; 4991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9190_from, ; char* from + ptr @.TypeMapEntry.9191_to; char* to + }, ; 4992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9192_from, ; char* from + ptr @.TypeMapEntry.9193_to; char* to + }, ; 4993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9194_from, ; char* from + ptr @.TypeMapEntry.9195_to; char* to + }, ; 4994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9196_from, ; char* from + ptr @.TypeMapEntry.9195_to; char* to + }, ; 4995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9197_from, ; char* from + ptr @.TypeMapEntry.9198_to; char* to + }, ; 4996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9199_from, ; char* from + ptr @.TypeMapEntry.9200_to; char* to + }, ; 4997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9201_from, ; char* from + ptr @.TypeMapEntry.9202_to; char* to + }, ; 4998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9203_from, ; char* from + ptr @.TypeMapEntry.9204_to; char* to + }, ; 4999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9205_from, ; char* from + ptr @.TypeMapEntry.9206_to; char* to + }, ; 5000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9207_from, ; char* from + ptr @.TypeMapEntry.9208_to; char* to + }, ; 5001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9209_from, ; char* from + ptr @.TypeMapEntry.9208_to; char* to + }, ; 5002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9210_from, ; char* from + ptr @.TypeMapEntry.9211_to; char* to + }, ; 5003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9212_from, ; char* from + ptr @.TypeMapEntry.9213_to; char* to + }, ; 5004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9214_from, ; char* from + ptr @.TypeMapEntry.9215_to; char* to + }, ; 5005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9216_from, ; char* from + ptr @.TypeMapEntry.9217_to; char* to + }, ; 5006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9218_from, ; char* from + ptr @.TypeMapEntry.9219_to; char* to + }, ; 5007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9220_from, ; char* from + ptr @.TypeMapEntry.9221_to; char* to + }, ; 5008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9222_from, ; char* from + ptr @.TypeMapEntry.9223_to; char* to + }, ; 5009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9224_from, ; char* from + ptr @.TypeMapEntry.9225_to; char* to + }, ; 5010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9226_from, ; char* from + ptr @.TypeMapEntry.9227_to; char* to + }, ; 5011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9228_from, ; char* from + ptr @.TypeMapEntry.9229_to; char* to + }, ; 5012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9230_from, ; char* from + ptr @.TypeMapEntry.9231_to; char* to + }, ; 5013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9232_from, ; char* from + ptr @.TypeMapEntry.9231_to; char* to + }, ; 5014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9233_from, ; char* from + ptr @.TypeMapEntry.9234_to; char* to + }, ; 5015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9235_from, ; char* from + ptr @.TypeMapEntry.9236_to; char* to + }, ; 5016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9237_from, ; char* from + ptr @.TypeMapEntry.9238_to; char* to + }, ; 5017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9239_from, ; char* from + ptr @.TypeMapEntry.9240_to; char* to + }, ; 5018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9241_from, ; char* from + ptr @.TypeMapEntry.9242_to; char* to + }, ; 5019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9243_from, ; char* from + ptr @.TypeMapEntry.9244_to; char* to + }, ; 5020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9245_from, ; char* from + ptr @.TypeMapEntry.9246_to; char* to + }, ; 5021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9247_from, ; char* from + ptr @.TypeMapEntry.9246_to; char* to + }, ; 5022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9248_from, ; char* from + ptr @.TypeMapEntry.9249_to; char* to + }, ; 5023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9250_from, ; char* from + ptr @.TypeMapEntry.9249_to; char* to + }, ; 5024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9251_from, ; char* from + ptr @.TypeMapEntry.9252_to; char* to + }, ; 5025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9253_from, ; char* from + ptr @.TypeMapEntry.9254_to; char* to + }, ; 5026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9255_from, ; char* from + ptr @.TypeMapEntry.9256_to; char* to + }, ; 5027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9257_from, ; char* from + ptr @.TypeMapEntry.9258_to; char* to + }, ; 5028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9259_from, ; char* from + ptr @.TypeMapEntry.9260_to; char* to + }, ; 5029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9261_from, ; char* from + ptr @.TypeMapEntry.9262_to; char* to + }, ; 5030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9263_from, ; char* from + ptr @.TypeMapEntry.9264_to; char* to + }, ; 5031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9265_from, ; char* from + ptr @.TypeMapEntry.9262_to; char* to + }, ; 5032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9266_from, ; char* from + ptr @.TypeMapEntry.9267_to; char* to + }, ; 5033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9268_from, ; char* from + ptr @.TypeMapEntry.9269_to; char* to + }, ; 5034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9270_from, ; char* from + ptr @.TypeMapEntry.9271_to; char* to + }, ; 5035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9272_from, ; char* from + ptr @.TypeMapEntry.9273_to; char* to + }, ; 5036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9274_from, ; char* from + ptr @.TypeMapEntry.9275_to; char* to + }, ; 5037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9276_from, ; char* from + ptr @.TypeMapEntry.9275_to; char* to + }, ; 5038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9277_from, ; char* from + ptr @.TypeMapEntry.9278_to; char* to + }, ; 5039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9279_from, ; char* from + ptr @.TypeMapEntry.9280_to; char* to + }, ; 5040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9281_from, ; char* from + ptr @.TypeMapEntry.9282_to; char* to + }, ; 5041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9283_from, ; char* from + ptr @.TypeMapEntry.9284_to; char* to + }, ; 5042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9285_from, ; char* from + ptr @.TypeMapEntry.9286_to; char* to + }, ; 5043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9287_from, ; char* from + ptr @.TypeMapEntry.9288_to; char* to + }, ; 5044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9289_from, ; char* from + ptr @.TypeMapEntry.9290_to; char* to + }, ; 5045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9291_from, ; char* from + ptr @.TypeMapEntry.9292_to; char* to + }, ; 5046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9293_from, ; char* from + ptr @.TypeMapEntry.9294_to; char* to + }, ; 5047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9295_from, ; char* from + ptr @.TypeMapEntry.9296_to; char* to + }, ; 5048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9297_from, ; char* from + ptr @.TypeMapEntry.9298_to; char* to + }, ; 5049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9299_from, ; char* from + ptr @.TypeMapEntry.9300_to; char* to + }, ; 5050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9301_from, ; char* from + ptr @.TypeMapEntry.9300_to; char* to + }, ; 5051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9302_from, ; char* from + ptr @.TypeMapEntry.9303_to; char* to + }, ; 5052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9304_from, ; char* from + ptr @.TypeMapEntry.9305_to; char* to + }, ; 5053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9306_from, ; char* from + ptr @.TypeMapEntry.9307_to; char* to + }, ; 5054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9308_from, ; char* from + ptr @.TypeMapEntry.9309_to; char* to + }, ; 5055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9310_from, ; char* from + ptr @.TypeMapEntry.9311_to; char* to + }, ; 5056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9312_from, ; char* from + ptr @.TypeMapEntry.9313_to; char* to + }, ; 5057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9314_from, ; char* from + ptr @.TypeMapEntry.9315_to; char* to + }, ; 5058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9316_from, ; char* from + ptr @.TypeMapEntry.9315_to; char* to + }, ; 5059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9317_from, ; char* from + ptr @.TypeMapEntry.9318_to; char* to + }, ; 5060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9319_from, ; char* from + ptr @.TypeMapEntry.9320_to; char* to + }, ; 5061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9321_from, ; char* from + ptr @.TypeMapEntry.9318_to; char* to + }, ; 5062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9322_from, ; char* from + ptr @.TypeMapEntry.9323_to; char* to + }, ; 5063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9324_from, ; char* from + ptr @.TypeMapEntry.9325_to; char* to + }, ; 5064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9326_from, ; char* from + ptr @.TypeMapEntry.9323_to; char* to + }, ; 5065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9327_from, ; char* from + ptr @.TypeMapEntry.9328_to; char* to + }, ; 5066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9329_from, ; char* from + ptr @.TypeMapEntry.9330_to; char* to + }, ; 5067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9331_from, ; char* from + ptr @.TypeMapEntry.9328_to; char* to + }, ; 5068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9332_from, ; char* from + ptr @.TypeMapEntry.9333_to; char* to + }, ; 5069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9334_from, ; char* from + ptr @.TypeMapEntry.9335_to; char* to + }, ; 5070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9336_from, ; char* from + ptr @.TypeMapEntry.9337_to; char* to + }, ; 5071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9338_from, ; char* from + ptr @.TypeMapEntry.9339_to; char* to + }, ; 5072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9340_from, ; char* from + ptr @.TypeMapEntry.9341_to; char* to + }, ; 5073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9342_from, ; char* from + ptr @.TypeMapEntry.9343_to; char* to + }, ; 5074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9344_from, ; char* from + ptr @.TypeMapEntry.9341_to; char* to + }, ; 5075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9345_from, ; char* from + ptr @.TypeMapEntry.9346_to; char* to + }, ; 5076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9347_from, ; char* from + ptr @.TypeMapEntry.9346_to; char* to + }, ; 5077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9348_from, ; char* from + ptr @.TypeMapEntry.9349_to; char* to + }, ; 5078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9350_from, ; char* from + ptr @.TypeMapEntry.9349_to; char* to + }, ; 5079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9351_from, ; char* from + ptr @.TypeMapEntry.9352_to; char* to + }, ; 5080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9353_from, ; char* from + ptr @.TypeMapEntry.9354_to; char* to + }, ; 5081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9355_from, ; char* from + ptr @.TypeMapEntry.9354_to; char* to + }, ; 5082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9356_from, ; char* from + ptr @.TypeMapEntry.9352_to; char* to + }, ; 5083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9357_from, ; char* from + ptr @.TypeMapEntry.9358_to; char* to + }, ; 5084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9359_from, ; char* from + ptr @.TypeMapEntry.9358_to; char* to + }, ; 5085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9360_from, ; char* from + ptr @.TypeMapEntry.9361_to; char* to + }, ; 5086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9362_from, ; char* from + ptr @.TypeMapEntry.9361_to; char* to + }, ; 5087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9363_from, ; char* from + ptr @.TypeMapEntry.9364_to; char* to + }, ; 5088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9365_from, ; char* from + ptr @.TypeMapEntry.9366_to; char* to + }, ; 5089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9367_from, ; char* from + ptr @.TypeMapEntry.9364_to; char* to + }, ; 5090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9368_from, ; char* from + ptr @.TypeMapEntry.9369_to; char* to + }, ; 5091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9370_from, ; char* from + ptr @.TypeMapEntry.9371_to; char* to + }, ; 5092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9372_from, ; char* from + ptr @.TypeMapEntry.9369_to; char* to + }, ; 5093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9373_from, ; char* from + ptr @.TypeMapEntry.9374_to; char* to + }, ; 5094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9375_from, ; char* from + ptr @.TypeMapEntry.9376_to; char* to + }, ; 5095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9377_from, ; char* from + ptr @.TypeMapEntry.9374_to; char* to + }, ; 5096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9378_from, ; char* from + ptr @.TypeMapEntry.9379_to; char* to + }, ; 5097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9380_from, ; char* from + ptr @.TypeMapEntry.9379_to; char* to + }, ; 5098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9381_from, ; char* from + ptr @.TypeMapEntry.9382_to; char* to + }, ; 5099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9383_from, ; char* from + ptr @.TypeMapEntry.9382_to; char* to + }, ; 5100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9384_from, ; char* from + ptr @.TypeMapEntry.9385_to; char* to + }, ; 5101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9386_from, ; char* from + ptr @.TypeMapEntry.9385_to; char* to + }, ; 5102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9387_from, ; char* from + ptr @.TypeMapEntry.9388_to; char* to + }, ; 5103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9389_from, ; char* from + ptr @.TypeMapEntry.9388_to; char* to + }, ; 5104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9390_from, ; char* from + ptr @.TypeMapEntry.9391_to; char* to + }, ; 5105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9392_from, ; char* from + ptr @.TypeMapEntry.9393_to; char* to + }, ; 5106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9394_from, ; char* from + ptr @.TypeMapEntry.9395_to; char* to + }, ; 5107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9396_from, ; char* from + ptr @.TypeMapEntry.9395_to; char* to + }, ; 5108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9397_from, ; char* from + ptr @.TypeMapEntry.9393_to; char* to + }, ; 5109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9398_from, ; char* from + ptr @.TypeMapEntry.9391_to; char* to + }, ; 5110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9399_from, ; char* from + ptr @.TypeMapEntry.9400_to; char* to + }, ; 5111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9401_from, ; char* from + ptr @.TypeMapEntry.9400_to; char* to + }, ; 5112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9402_from, ; char* from + ptr @.TypeMapEntry.9403_to; char* to + }, ; 5113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9404_from, ; char* from + ptr @.TypeMapEntry.9403_to; char* to + }, ; 5114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9405_from, ; char* from + ptr @.TypeMapEntry.9406_to; char* to + }, ; 5115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9407_from, ; char* from + ptr @.TypeMapEntry.9408_to; char* to + }, ; 5116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9409_from, ; char* from + ptr @.TypeMapEntry.9406_to; char* to + }, ; 5117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9410_from, ; char* from + ptr @.TypeMapEntry.9411_to; char* to + }, ; 5118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9412_from, ; char* from + ptr @.TypeMapEntry.9411_to; char* to + }, ; 5119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9413_from, ; char* from + ptr @.TypeMapEntry.9414_to; char* to + }, ; 5120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9415_from, ; char* from + ptr @.TypeMapEntry.9416_to; char* to + }, ; 5121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9417_from, ; char* from + ptr @.TypeMapEntry.9414_to; char* to + }, ; 5122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9418_from, ; char* from + ptr @.TypeMapEntry.9419_to; char* to + }, ; 5123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9420_from, ; char* from + ptr @.TypeMapEntry.9419_to; char* to + }, ; 5124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9421_from, ; char* from + ptr @.TypeMapEntry.9422_to; char* to + }, ; 5125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9423_from, ; char* from + ptr @.TypeMapEntry.9422_to; char* to + }, ; 5126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9424_from, ; char* from + ptr @.TypeMapEntry.9425_to; char* to + }, ; 5127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9426_from, ; char* from + ptr @.TypeMapEntry.9427_to; char* to + }, ; 5128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9428_from, ; char* from + ptr @.TypeMapEntry.9429_to; char* to + }, ; 5129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9430_from, ; char* from + ptr @.TypeMapEntry.9431_to; char* to + }, ; 5130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9432_from, ; char* from + ptr @.TypeMapEntry.9433_to; char* to + }, ; 5131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9434_from, ; char* from + ptr @.TypeMapEntry.9433_to; char* to + }, ; 5132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9435_from, ; char* from + ptr @.TypeMapEntry.9436_to; char* to + }, ; 5133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9437_from, ; char* from + ptr @.TypeMapEntry.9438_to; char* to + }, ; 5134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9439_from, ; char* from + ptr @.TypeMapEntry.9440_to; char* to + }, ; 5135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9441_from, ; char* from + ptr @.TypeMapEntry.9442_to; char* to + }, ; 5136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9443_from, ; char* from + ptr @.TypeMapEntry.9444_to; char* to + }, ; 5137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9445_from, ; char* from + ptr @.TypeMapEntry.9446_to; char* to + }, ; 5138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9447_from, ; char* from + ptr @.TypeMapEntry.9448_to; char* to + }, ; 5139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9449_from, ; char* from + ptr @.TypeMapEntry.9450_to; char* to + }, ; 5140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9451_from, ; char* from + ptr @.TypeMapEntry.9452_to; char* to + }, ; 5141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9453_from, ; char* from + ptr @.TypeMapEntry.9454_to; char* to + }, ; 5142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9455_from, ; char* from + ptr @.TypeMapEntry.9456_to; char* to + }, ; 5143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9457_from, ; char* from + ptr @.TypeMapEntry.9458_to; char* to + }, ; 5144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9459_from, ; char* from + ptr @.TypeMapEntry.9460_to; char* to + }, ; 5145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9461_from, ; char* from + ptr @.TypeMapEntry.9462_to; char* to + }, ; 5146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9463_from, ; char* from + ptr @.TypeMapEntry.9464_to; char* to + }, ; 5147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9465_from, ; char* from + ptr @.TypeMapEntry.9464_to; char* to + }, ; 5148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9466_from, ; char* from + ptr @.TypeMapEntry.9467_to; char* to + }, ; 5149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9468_from, ; char* from + ptr @.TypeMapEntry.9467_to; char* to + }, ; 5150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9469_from, ; char* from + ptr @.TypeMapEntry.9470_to; char* to + }, ; 5151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9471_from, ; char* from + ptr @.TypeMapEntry.9470_to; char* to + }, ; 5152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9472_from, ; char* from + ptr @.TypeMapEntry.9473_to; char* to + }, ; 5153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9474_from, ; char* from + ptr @.TypeMapEntry.9473_to; char* to + }, ; 5154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9475_from, ; char* from + ptr @.TypeMapEntry.9476_to; char* to + }, ; 5155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9477_from, ; char* from + ptr @.TypeMapEntry.9478_to; char* to + }, ; 5156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9479_from, ; char* from + ptr @.TypeMapEntry.9478_to; char* to + }, ; 5157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9480_from, ; char* from + ptr @.TypeMapEntry.9481_to; char* to + }, ; 5158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9482_from, ; char* from + ptr @.TypeMapEntry.9481_to; char* to + }, ; 5159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9483_from, ; char* from + ptr @.TypeMapEntry.9476_to; char* to + }, ; 5160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9484_from, ; char* from + ptr @.TypeMapEntry.9485_to; char* to + }, ; 5161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9486_from, ; char* from + ptr @.TypeMapEntry.9487_to; char* to + }, ; 5162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9488_from, ; char* from + ptr @.TypeMapEntry.9489_to; char* to + }, ; 5163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9490_from, ; char* from + ptr @.TypeMapEntry.9491_to; char* to + }, ; 5164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9492_from, ; char* from + ptr @.TypeMapEntry.9493_to; char* to + }, ; 5165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9494_from, ; char* from + ptr @.TypeMapEntry.9495_to; char* to + }, ; 5166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9496_from, ; char* from + ptr @.TypeMapEntry.9497_to; char* to + }, ; 5167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9498_from, ; char* from + ptr @.TypeMapEntry.9499_to; char* to + }, ; 5168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9500_from, ; char* from + ptr @.TypeMapEntry.9501_to; char* to + }, ; 5169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9502_from, ; char* from + ptr @.TypeMapEntry.9503_to; char* to + }, ; 5170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9504_from, ; char* from + ptr @.TypeMapEntry.9505_to; char* to + }, ; 5171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9506_from, ; char* from + ptr @.TypeMapEntry.9507_to; char* to + }, ; 5172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9508_from, ; char* from + ptr @.TypeMapEntry.9509_to; char* to + }, ; 5173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9510_from, ; char* from + ptr @.TypeMapEntry.9511_to; char* to + }, ; 5174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9512_from, ; char* from + ptr @.TypeMapEntry.9513_to; char* to + }, ; 5175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9514_from, ; char* from + ptr @.TypeMapEntry.9515_to; char* to + }, ; 5176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9516_from, ; char* from + ptr @.TypeMapEntry.9517_to; char* to + }, ; 5177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9518_from, ; char* from + ptr @.TypeMapEntry.9519_to; char* to + }, ; 5178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9520_from, ; char* from + ptr @.TypeMapEntry.9521_to; char* to + }, ; 5179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9522_from, ; char* from + ptr @.TypeMapEntry.9523_to; char* to + }, ; 5180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9524_from, ; char* from + ptr @.TypeMapEntry.9525_to; char* to + }, ; 5181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9526_from, ; char* from + ptr @.TypeMapEntry.9525_to; char* to + }, ; 5182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9527_from, ; char* from + ptr @.TypeMapEntry.9528_to; char* to + }, ; 5183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9529_from, ; char* from + ptr @.TypeMapEntry.9530_to; char* to + }, ; 5184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9531_from, ; char* from + ptr @.TypeMapEntry.9532_to; char* to + }, ; 5185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9533_from, ; char* from + ptr @.TypeMapEntry.9534_to; char* to + }, ; 5186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9535_from, ; char* from + ptr @.TypeMapEntry.9536_to; char* to + }, ; 5187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9537_from, ; char* from + ptr @.TypeMapEntry.9538_to; char* to + }, ; 5188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9539_from, ; char* from + ptr @.TypeMapEntry.9540_to; char* to + }, ; 5189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9541_from, ; char* from + ptr @.TypeMapEntry.9542_to; char* to + }, ; 5190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9543_from, ; char* from + ptr @.TypeMapEntry.9544_to; char* to + }, ; 5191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9545_from, ; char* from + ptr @.TypeMapEntry.9546_to; char* to + }, ; 5192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9547_from, ; char* from + ptr @.TypeMapEntry.9548_to; char* to + }, ; 5193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9549_from, ; char* from + ptr @.TypeMapEntry.9550_to; char* to + }, ; 5194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9551_from, ; char* from + ptr @.TypeMapEntry.9552_to; char* to + }, ; 5195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9553_from, ; char* from + ptr @.TypeMapEntry.9554_to; char* to + }, ; 5196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9555_from, ; char* from + ptr @.TypeMapEntry.9556_to; char* to + }, ; 5197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9557_from, ; char* from + ptr @.TypeMapEntry.9558_to; char* to + }, ; 5198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9559_from, ; char* from + ptr @.TypeMapEntry.9558_to; char* to + }, ; 5199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9560_from, ; char* from + ptr @.TypeMapEntry.9561_to; char* to + }, ; 5200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9562_from, ; char* from + ptr @.TypeMapEntry.9563_to; char* to + }, ; 5201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9564_from, ; char* from + ptr @.TypeMapEntry.9563_to; char* to + }, ; 5202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9565_from, ; char* from + ptr @.TypeMapEntry.9566_to; char* to + }, ; 5203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9567_from, ; char* from + ptr @.TypeMapEntry.9566_to; char* to + }, ; 5204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9568_from, ; char* from + ptr @.TypeMapEntry.9569_to; char* to + }, ; 5205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9570_from, ; char* from + ptr @.TypeMapEntry.9569_to; char* to + }, ; 5206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9571_from, ; char* from + ptr @.TypeMapEntry.9572_to; char* to + }, ; 5207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9573_from, ; char* from + ptr @.TypeMapEntry.9572_to; char* to + }, ; 5208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9574_from, ; char* from + ptr @.TypeMapEntry.9575_to; char* to + }, ; 5209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9576_from, ; char* from + ptr @.TypeMapEntry.9577_to; char* to + }, ; 5210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9578_from, ; char* from + ptr @.TypeMapEntry.9579_to; char* to + }, ; 5211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9580_from, ; char* from + ptr @.TypeMapEntry.9581_to; char* to + }, ; 5212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9582_from, ; char* from + ptr @.TypeMapEntry.9583_to; char* to + }, ; 5213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9584_from, ; char* from + ptr @.TypeMapEntry.9585_to; char* to + }, ; 5214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9586_from, ; char* from + ptr @.TypeMapEntry.9587_to; char* to + }, ; 5215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9588_from, ; char* from + ptr @.TypeMapEntry.9589_to; char* to + }, ; 5216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9590_from, ; char* from + ptr @.TypeMapEntry.9591_to; char* to + }, ; 5217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9592_from, ; char* from + ptr @.TypeMapEntry.9593_to; char* to + }, ; 5218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9594_from, ; char* from + ptr @.TypeMapEntry.9595_to; char* to + }, ; 5219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9596_from, ; char* from + ptr @.TypeMapEntry.9595_to; char* to + }, ; 5220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9597_from, ; char* from + ptr @.TypeMapEntry.9598_to; char* to + }, ; 5221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9599_from, ; char* from + ptr @.TypeMapEntry.9600_to; char* to + }, ; 5222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9601_from, ; char* from + ptr @.TypeMapEntry.9602_to; char* to + }, ; 5223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9603_from, ; char* from + ptr @.TypeMapEntry.9604_to; char* to + }, ; 5224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9605_from, ; char* from + ptr @.TypeMapEntry.9606_to; char* to + }, ; 5225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9607_from, ; char* from + ptr @.TypeMapEntry.9606_to; char* to + }, ; 5226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9608_from, ; char* from + ptr @.TypeMapEntry.9604_to; char* to + }, ; 5227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9609_from, ; char* from + ptr @.TypeMapEntry.9610_to; char* to + }, ; 5228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9611_from, ; char* from + ptr @.TypeMapEntry.9610_to; char* to + }, ; 5229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9612_from, ; char* from + ptr @.TypeMapEntry.9613_to; char* to + }, ; 5230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9614_from, ; char* from + ptr @.TypeMapEntry.9613_to; char* to + }, ; 5231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9615_from, ; char* from + ptr @.TypeMapEntry.9616_to; char* to + }, ; 5232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9617_from, ; char* from + ptr @.TypeMapEntry.9618_to; char* to + }, ; 5233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9619_from, ; char* from + ptr @.TypeMapEntry.9620_to; char* to + }, ; 5234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9621_from, ; char* from + ptr @.TypeMapEntry.9622_to; char* to + }, ; 5235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9623_from, ; char* from + ptr @.TypeMapEntry.9624_to; char* to + }, ; 5236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9625_from, ; char* from + ptr @.TypeMapEntry.9626_to; char* to + }, ; 5237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9627_from, ; char* from + ptr @.TypeMapEntry.9628_to; char* to + }, ; 5238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9629_from, ; char* from + ptr @.TypeMapEntry.9628_to; char* to + }, ; 5239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9630_from, ; char* from + ptr @.TypeMapEntry.9631_to; char* to + }, ; 5240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9632_from, ; char* from + ptr @.TypeMapEntry.9631_to; char* to + }, ; 5241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9633_from, ; char* from + ptr @.TypeMapEntry.9634_to; char* to + }, ; 5242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9635_from, ; char* from + ptr @.TypeMapEntry.9636_to; char* to + }, ; 5243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9637_from, ; char* from + ptr @.TypeMapEntry.9634_to; char* to + }, ; 5244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9638_from, ; char* from + ptr @.TypeMapEntry.9639_to; char* to + }, ; 5245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9640_from, ; char* from + ptr @.TypeMapEntry.9641_to; char* to + }, ; 5246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9642_from, ; char* from + ptr @.TypeMapEntry.9643_to; char* to + }, ; 5247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9644_from, ; char* from + ptr @.TypeMapEntry.9645_to; char* to + }, ; 5248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9646_from, ; char* from + ptr @.TypeMapEntry.9647_to; char* to + }, ; 5249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9648_from, ; char* from + ptr @.TypeMapEntry.9649_to; char* to + }, ; 5250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9650_from, ; char* from + ptr @.TypeMapEntry.9651_to; char* to + }, ; 5251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9652_from, ; char* from + ptr @.TypeMapEntry.9653_to; char* to + }, ; 5252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9654_from, ; char* from + ptr @.TypeMapEntry.9651_to; char* to + }, ; 5253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9655_from, ; char* from + ptr @.TypeMapEntry.9656_to; char* to + }, ; 5254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9657_from, ; char* from + ptr @.TypeMapEntry.9658_to; char* to + }, ; 5255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9659_from, ; char* from + ptr @.TypeMapEntry.9660_to; char* to + }, ; 5256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9661_from, ; char* from + ptr @.TypeMapEntry.9662_to; char* to + }, ; 5257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9663_from, ; char* from + ptr @.TypeMapEntry.9664_to; char* to + }, ; 5258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9665_from, ; char* from + ptr @.TypeMapEntry.9666_to; char* to + }, ; 5259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9667_from, ; char* from + ptr @.TypeMapEntry.9668_to; char* to + }, ; 5260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9669_from, ; char* from + ptr @.TypeMapEntry.9670_to; char* to + }, ; 5261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9671_from, ; char* from + ptr @.TypeMapEntry.9672_to; char* to + }, ; 5262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9673_from, ; char* from + ptr @.TypeMapEntry.9674_to; char* to + }, ; 5263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9675_from, ; char* from + ptr @.TypeMapEntry.9676_to; char* to + }, ; 5264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9677_from, ; char* from + ptr @.TypeMapEntry.9674_to; char* to + }, ; 5265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9678_from, ; char* from + ptr @.TypeMapEntry.9679_to; char* to + }, ; 5266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9680_from, ; char* from + ptr @.TypeMapEntry.9681_to; char* to + }, ; 5267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9682_from, ; char* from + ptr @.TypeMapEntry.9683_to; char* to + }, ; 5268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9684_from, ; char* from + ptr @.TypeMapEntry.9685_to; char* to + }, ; 5269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9686_from, ; char* from + ptr @.TypeMapEntry.9687_to; char* to + }, ; 5270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9688_from, ; char* from + ptr @.TypeMapEntry.9689_to; char* to + }, ; 5271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9690_from, ; char* from + ptr @.TypeMapEntry.9691_to; char* to + }, ; 5272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9692_from, ; char* from + ptr @.TypeMapEntry.9693_to; char* to + }, ; 5273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9694_from, ; char* from + ptr @.TypeMapEntry.9695_to; char* to + }, ; 5274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9696_from, ; char* from + ptr @.TypeMapEntry.9697_to; char* to + }, ; 5275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9698_from, ; char* from + ptr @.TypeMapEntry.9699_to; char* to + }, ; 5276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9700_from, ; char* from + ptr @.TypeMapEntry.9701_to; char* to + }, ; 5277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9702_from, ; char* from + ptr @.TypeMapEntry.9703_to; char* to + }, ; 5278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9704_from, ; char* from + ptr @.TypeMapEntry.9705_to; char* to + }, ; 5279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9706_from, ; char* from + ptr @.TypeMapEntry.9707_to; char* to + }, ; 5280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9708_from, ; char* from + ptr @.TypeMapEntry.9709_to; char* to + }, ; 5281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9710_from, ; char* from + ptr @.TypeMapEntry.9709_to; char* to + }, ; 5282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9711_from, ; char* from + ptr @.TypeMapEntry.9712_to; char* to + }, ; 5283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9713_from, ; char* from + ptr @.TypeMapEntry.9712_to; char* to + }, ; 5284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9714_from, ; char* from + ptr @.TypeMapEntry.9715_to; char* to + }, ; 5285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9716_from, ; char* from + ptr @.TypeMapEntry.9717_to; char* to + }, ; 5286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9718_from, ; char* from + ptr @.TypeMapEntry.9719_to; char* to + }, ; 5287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9720_from, ; char* from + ptr @.TypeMapEntry.9721_to; char* to + }, ; 5288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9722_from, ; char* from + ptr @.TypeMapEntry.9723_to; char* to + }, ; 5289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9724_from, ; char* from + ptr @.TypeMapEntry.9725_to; char* to + }, ; 5290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9726_from, ; char* from + ptr @.TypeMapEntry.9727_to; char* to + }, ; 5291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9728_from, ; char* from + ptr @.TypeMapEntry.9729_to; char* to + }, ; 5292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9730_from, ; char* from + ptr @.TypeMapEntry.9731_to; char* to + }, ; 5293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9732_from, ; char* from + ptr @.TypeMapEntry.9733_to; char* to + }, ; 5294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9734_from, ; char* from + ptr @.TypeMapEntry.9735_to; char* to + }, ; 5295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9736_from, ; char* from + ptr @.TypeMapEntry.9737_to; char* to + }, ; 5296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9738_from, ; char* from + ptr @.TypeMapEntry.9739_to; char* to + }, ; 5297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9740_from, ; char* from + ptr @.TypeMapEntry.9739_to; char* to + }, ; 5298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9741_from, ; char* from + ptr @.TypeMapEntry.9742_to; char* to + }, ; 5299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9743_from, ; char* from + ptr @.TypeMapEntry.9744_to; char* to + }, ; 5300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9745_from, ; char* from + ptr @.TypeMapEntry.9746_to; char* to + }, ; 5301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9747_from, ; char* from + ptr @.TypeMapEntry.9748_to; char* to + }, ; 5302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9749_from, ; char* from + ptr @.TypeMapEntry.9750_to; char* to + }, ; 5303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9751_from, ; char* from + ptr @.TypeMapEntry.9752_to; char* to + }, ; 5304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9753_from, ; char* from + ptr @.TypeMapEntry.9754_to; char* to + }, ; 5305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9755_from, ; char* from + ptr @.TypeMapEntry.9756_to; char* to + }, ; 5306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9757_from, ; char* from + ptr @.TypeMapEntry.9758_to; char* to + }, ; 5307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9759_from, ; char* from + ptr @.TypeMapEntry.9758_to; char* to + }, ; 5308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9760_from, ; char* from + ptr @.TypeMapEntry.9761_to; char* to + }, ; 5309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9762_from, ; char* from + ptr @.TypeMapEntry.9763_to; char* to + }, ; 5310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9764_from, ; char* from + ptr @.TypeMapEntry.9765_to; char* to + }, ; 5311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9766_from, ; char* from + ptr @.TypeMapEntry.9767_to; char* to + }, ; 5312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9768_from, ; char* from + ptr @.TypeMapEntry.9769_to; char* to + }, ; 5313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9770_from, ; char* from + ptr @.TypeMapEntry.9771_to; char* to + }, ; 5314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9772_from, ; char* from + ptr @.TypeMapEntry.9773_to; char* to + }, ; 5315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9774_from, ; char* from + ptr @.TypeMapEntry.9775_to; char* to + }, ; 5316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9776_from, ; char* from + ptr @.TypeMapEntry.9777_to; char* to + }, ; 5317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9778_from, ; char* from + ptr @.TypeMapEntry.9779_to; char* to + }, ; 5318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9780_from, ; char* from + ptr @.TypeMapEntry.9781_to; char* to + }, ; 5319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9782_from, ; char* from + ptr @.TypeMapEntry.9783_to; char* to + }, ; 5320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9784_from, ; char* from + ptr @.TypeMapEntry.9785_to; char* to + }, ; 5321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9786_from, ; char* from + ptr @.TypeMapEntry.9787_to; char* to + }, ; 5322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9788_from, ; char* from + ptr @.TypeMapEntry.9789_to; char* to + }, ; 5323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9790_from, ; char* from + ptr @.TypeMapEntry.9791_to; char* to + }, ; 5324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9792_from, ; char* from + ptr @.TypeMapEntry.9793_to; char* to + }, ; 5325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9794_from, ; char* from + ptr @.TypeMapEntry.9795_to; char* to + }, ; 5326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9796_from, ; char* from + ptr @.TypeMapEntry.9793_to; char* to + }, ; 5327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9797_from, ; char* from + ptr @.TypeMapEntry.9798_to; char* to + }, ; 5328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9799_from, ; char* from + ptr @.TypeMapEntry.9800_to; char* to + }, ; 5329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9801_from, ; char* from + ptr @.TypeMapEntry.9802_to; char* to + }, ; 5330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9803_from, ; char* from + ptr @.TypeMapEntry.9804_to; char* to + }, ; 5331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9805_from, ; char* from + ptr @.TypeMapEntry.9806_to; char* to + }, ; 5332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9807_from, ; char* from + ptr @.TypeMapEntry.9808_to; char* to + }, ; 5333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9809_from, ; char* from + ptr @.TypeMapEntry.9810_to; char* to + }, ; 5334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9811_from, ; char* from + ptr @.TypeMapEntry.9812_to; char* to + }, ; 5335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9813_from, ; char* from + ptr @.TypeMapEntry.9814_to; char* to + }, ; 5336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9815_from, ; char* from + ptr @.TypeMapEntry.9812_to; char* to + }, ; 5337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9816_from, ; char* from + ptr @.TypeMapEntry.9817_to; char* to + }, ; 5338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9818_from, ; char* from + ptr @.TypeMapEntry.9819_to; char* to + }, ; 5339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9820_from, ; char* from + ptr @.TypeMapEntry.9821_to; char* to + }, ; 5340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9822_from, ; char* from + ptr @.TypeMapEntry.9821_to; char* to + }, ; 5341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9823_from, ; char* from + ptr @.TypeMapEntry.9824_to; char* to + }, ; 5342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9825_from, ; char* from + ptr @.TypeMapEntry.9824_to; char* to + }, ; 5343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9826_from, ; char* from + ptr @.TypeMapEntry.9827_to; char* to + }, ; 5344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9828_from, ; char* from + ptr @.TypeMapEntry.9829_to; char* to + }, ; 5345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9830_from, ; char* from + ptr @.TypeMapEntry.9831_to; char* to + }, ; 5346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9832_from, ; char* from + ptr @.TypeMapEntry.9833_to; char* to + }, ; 5347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9834_from, ; char* from + ptr @.TypeMapEntry.9835_to; char* to + }, ; 5348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9836_from, ; char* from + ptr @.TypeMapEntry.9837_to; char* to + }, ; 5349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9838_from, ; char* from + ptr @.TypeMapEntry.9839_to; char* to + }, ; 5350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9840_from, ; char* from + ptr @.TypeMapEntry.9841_to; char* to + }, ; 5351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9842_from, ; char* from + ptr @.TypeMapEntry.9843_to; char* to + }, ; 5352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9844_from, ; char* from + ptr @.TypeMapEntry.9845_to; char* to + }, ; 5353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9846_from, ; char* from + ptr @.TypeMapEntry.9847_to; char* to + }, ; 5354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9848_from, ; char* from + ptr @.TypeMapEntry.9849_to; char* to + }, ; 5355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9850_from, ; char* from + ptr @.TypeMapEntry.9851_to; char* to + }, ; 5356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9852_from, ; char* from + ptr @.TypeMapEntry.9853_to; char* to + }, ; 5357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9854_from, ; char* from + ptr @.TypeMapEntry.9855_to; char* to + }, ; 5358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9856_from, ; char* from + ptr @.TypeMapEntry.9857_to; char* to + }, ; 5359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9858_from, ; char* from + ptr @.TypeMapEntry.9859_to; char* to + }, ; 5360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9860_from, ; char* from + ptr @.TypeMapEntry.9861_to; char* to + }, ; 5361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9862_from, ; char* from + ptr @.TypeMapEntry.9863_to; char* to + }, ; 5362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9864_from, ; char* from + ptr @.TypeMapEntry.9865_to; char* to + }, ; 5363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9866_from, ; char* from + ptr @.TypeMapEntry.9865_to; char* to + }, ; 5364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9867_from, ; char* from + ptr @.TypeMapEntry.9868_to; char* to + }, ; 5365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9869_from, ; char* from + ptr @.TypeMapEntry.9870_to; char* to + }, ; 5366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9871_from, ; char* from + ptr @.TypeMapEntry.9872_to; char* to + }, ; 5367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9873_from, ; char* from + ptr @.TypeMapEntry.9874_to; char* to + }, ; 5368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9875_from, ; char* from + ptr @.TypeMapEntry.9876_to; char* to + }, ; 5369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9877_from, ; char* from + ptr @.TypeMapEntry.9878_to; char* to + }, ; 5370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9879_from, ; char* from + ptr @.TypeMapEntry.9880_to; char* to + }, ; 5371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9881_from, ; char* from + ptr @.TypeMapEntry.9878_to; char* to + }, ; 5372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9882_from, ; char* from + ptr @.TypeMapEntry.9883_to; char* to + }, ; 5373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9884_from, ; char* from + ptr @.TypeMapEntry.9885_to; char* to + }, ; 5374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9886_from, ; char* from + ptr @.TypeMapEntry.9883_to; char* to + }, ; 5375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9887_from, ; char* from + ptr @.TypeMapEntry.9888_to; char* to + }, ; 5376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9889_from, ; char* from + ptr @.TypeMapEntry.9890_to; char* to + }, ; 5377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9891_from, ; char* from + ptr @.TypeMapEntry.9888_to; char* to + }, ; 5378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9892_from, ; char* from + ptr @.TypeMapEntry.9893_to; char* to + }, ; 5379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9894_from, ; char* from + ptr @.TypeMapEntry.9895_to; char* to + }, ; 5380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9896_from, ; char* from + ptr @.TypeMapEntry.9893_to; char* to + }, ; 5381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9897_from, ; char* from + ptr @.TypeMapEntry.9898_to; char* to + }, ; 5382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9899_from, ; char* from + ptr @.TypeMapEntry.9900_to; char* to + }, ; 5383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9901_from, ; char* from + ptr @.TypeMapEntry.9898_to; char* to + }, ; 5384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9902_from, ; char* from + ptr @.TypeMapEntry.9903_to; char* to + }, ; 5385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9904_from, ; char* from + ptr @.TypeMapEntry.9905_to; char* to + }, ; 5386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9906_from, ; char* from + ptr @.TypeMapEntry.9903_to; char* to + }, ; 5387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9907_from, ; char* from + ptr @.TypeMapEntry.9908_to; char* to + }, ; 5388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9909_from, ; char* from + ptr @.TypeMapEntry.9910_to; char* to + }, ; 5389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9911_from, ; char* from + ptr @.TypeMapEntry.9908_to; char* to + }, ; 5390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9912_from, ; char* from + ptr @.TypeMapEntry.9913_to; char* to + }, ; 5391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9914_from, ; char* from + ptr @.TypeMapEntry.9915_to; char* to + }, ; 5392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9916_from, ; char* from + ptr @.TypeMapEntry.9913_to; char* to + }, ; 5393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9917_from, ; char* from + ptr @.TypeMapEntry.9918_to; char* to + }, ; 5394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9919_from, ; char* from + ptr @.TypeMapEntry.9920_to; char* to + }, ; 5395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9921_from, ; char* from + ptr @.TypeMapEntry.9918_to; char* to + }, ; 5396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9922_from, ; char* from + ptr @.TypeMapEntry.9923_to; char* to + }, ; 5397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9924_from, ; char* from + ptr @.TypeMapEntry.9925_to; char* to + }, ; 5398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9926_from, ; char* from + ptr @.TypeMapEntry.9923_to; char* to + }, ; 5399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9927_from, ; char* from + ptr @.TypeMapEntry.9928_to; char* to + }, ; 5400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9929_from, ; char* from + ptr @.TypeMapEntry.9930_to; char* to + }, ; 5401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9931_from, ; char* from + ptr @.TypeMapEntry.9928_to; char* to + }, ; 5402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9932_from, ; char* from + ptr @.TypeMapEntry.9933_to; char* to + }, ; 5403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9934_from, ; char* from + ptr @.TypeMapEntry.9935_to; char* to + }, ; 5404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9936_from, ; char* from + ptr @.TypeMapEntry.9933_to; char* to + }, ; 5405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9937_from, ; char* from + ptr @.TypeMapEntry.9938_to; char* to + }, ; 5406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9939_from, ; char* from + ptr @.TypeMapEntry.9940_to; char* to + }, ; 5407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9941_from, ; char* from + ptr @.TypeMapEntry.9938_to; char* to + }, ; 5408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9942_from, ; char* from + ptr @.TypeMapEntry.9943_to; char* to + }, ; 5409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9944_from, ; char* from + ptr @.TypeMapEntry.9945_to; char* to + }, ; 5410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9946_from, ; char* from + ptr @.TypeMapEntry.9943_to; char* to + }, ; 5411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9947_from, ; char* from + ptr @.TypeMapEntry.9948_to; char* to + }, ; 5412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9949_from, ; char* from + ptr @.TypeMapEntry.9950_to; char* to + }, ; 5413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9951_from, ; char* from + ptr @.TypeMapEntry.9948_to; char* to + }, ; 5414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9952_from, ; char* from + ptr @.TypeMapEntry.9953_to; char* to + }, ; 5415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9954_from, ; char* from + ptr @.TypeMapEntry.9955_to; char* to + }, ; 5416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9956_from, ; char* from + ptr @.TypeMapEntry.9953_to; char* to + }, ; 5417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9957_from, ; char* from + ptr @.TypeMapEntry.9958_to; char* to + }, ; 5418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9959_from, ; char* from + ptr @.TypeMapEntry.9960_to; char* to + }, ; 5419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9961_from, ; char* from + ptr @.TypeMapEntry.9958_to; char* to + }, ; 5420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9962_from, ; char* from + ptr @.TypeMapEntry.9963_to; char* to + }, ; 5421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9964_from, ; char* from + ptr @.TypeMapEntry.9965_to; char* to + }, ; 5422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9966_from, ; char* from + ptr @.TypeMapEntry.9967_to; char* to + }, ; 5423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9968_from, ; char* from + ptr @.TypeMapEntry.9969_to; char* to + }, ; 5424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9970_from, ; char* from + ptr @.TypeMapEntry.9971_to; char* to + }, ; 5425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9972_from, ; char* from + ptr @.TypeMapEntry.9971_to; char* to + }, ; 5426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9973_from, ; char* from + ptr @.TypeMapEntry.9974_to; char* to + }, ; 5427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9975_from, ; char* from + ptr @.TypeMapEntry.9974_to; char* to + }, ; 5428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9976_from, ; char* from + ptr @.TypeMapEntry.9977_to; char* to + }, ; 5429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9978_from, ; char* from + ptr @.TypeMapEntry.9977_to; char* to + }, ; 5430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9979_from, ; char* from + ptr @.TypeMapEntry.9980_to; char* to + }, ; 5431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9981_from, ; char* from + ptr @.TypeMapEntry.9982_to; char* to + }, ; 5432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9983_from, ; char* from + ptr @.TypeMapEntry.9982_to; char* to + }, ; 5433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9984_from, ; char* from + ptr @.TypeMapEntry.9985_to; char* to + }, ; 5434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9986_from, ; char* from + ptr @.TypeMapEntry.9987_to; char* to + }, ; 5435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9988_from, ; char* from + ptr @.TypeMapEntry.9989_to; char* to + }, ; 5436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9990_from, ; char* from + ptr @.TypeMapEntry.9991_to; char* to + }, ; 5437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9992_from, ; char* from + ptr @.TypeMapEntry.9989_to; char* to + }, ; 5438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9993_from, ; char* from + ptr @.TypeMapEntry.9994_to; char* to + }, ; 5439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9995_from, ; char* from + ptr @.TypeMapEntry.9996_to; char* to + }, ; 5440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9997_from, ; char* from + ptr @.TypeMapEntry.9998_to; char* to + }, ; 5441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9999_from, ; char* from + ptr @.TypeMapEntry.9998_to; char* to + }, ; 5442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10000_from, ; char* from + ptr @.TypeMapEntry.10001_to; char* to + }, ; 5443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10002_from, ; char* from + ptr @.TypeMapEntry.10003_to; char* to + }, ; 5444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10004_from, ; char* from + ptr @.TypeMapEntry.10003_to; char* to + }, ; 5445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10005_from, ; char* from + ptr @.TypeMapEntry.10006_to; char* to + }, ; 5446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10007_from, ; char* from + ptr @.TypeMapEntry.10008_to; char* to + }, ; 5447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10009_from, ; char* from + ptr @.TypeMapEntry.10010_to; char* to + }, ; 5448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10011_from, ; char* from + ptr @.TypeMapEntry.10010_to; char* to + }, ; 5449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10012_from, ; char* from + ptr @.TypeMapEntry.10013_to; char* to + }, ; 5450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10014_from, ; char* from + ptr @.TypeMapEntry.10013_to; char* to + }, ; 5451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10015_from, ; char* from + ptr @.TypeMapEntry.10016_to; char* to + }, ; 5452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10017_from, ; char* from + ptr @.TypeMapEntry.10016_to; char* to + }, ; 5453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10018_from, ; char* from + ptr @.TypeMapEntry.10019_to; char* to + }, ; 5454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10020_from, ; char* from + ptr @.TypeMapEntry.10021_to; char* to + }, ; 5455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10022_from, ; char* from + ptr @.TypeMapEntry.10019_to; char* to + }, ; 5456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10023_from, ; char* from + ptr @.TypeMapEntry.10024_to; char* to + }, ; 5457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10025_from, ; char* from + ptr @.TypeMapEntry.10026_to; char* to + }, ; 5458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10027_from, ; char* from + ptr @.TypeMapEntry.10028_to; char* to + }, ; 5459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10029_from, ; char* from + ptr @.TypeMapEntry.10026_to; char* to + }, ; 5460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10030_from, ; char* from + ptr @.TypeMapEntry.10031_to; char* to + }, ; 5461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10032_from, ; char* from + ptr @.TypeMapEntry.10033_to; char* to + }, ; 5462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10034_from, ; char* from + ptr @.TypeMapEntry.10031_to; char* to + }, ; 5463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10035_from, ; char* from + ptr @.TypeMapEntry.10036_to; char* to + }, ; 5464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10037_from, ; char* from + ptr @.TypeMapEntry.10038_to; char* to + }, ; 5465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10039_from, ; char* from + ptr @.TypeMapEntry.10036_to; char* to + }, ; 5466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10040_from, ; char* from + ptr @.TypeMapEntry.10041_to; char* to + }, ; 5467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10042_from, ; char* from + ptr @.TypeMapEntry.10043_to; char* to + }, ; 5468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10044_from, ; char* from + ptr @.TypeMapEntry.10041_to; char* to + }, ; 5469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10045_from, ; char* from + ptr @.TypeMapEntry.10046_to; char* to + }, ; 5470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10047_from, ; char* from + ptr @.TypeMapEntry.10048_to; char* to + }, ; 5471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10049_from, ; char* from + ptr @.TypeMapEntry.10046_to; char* to + }, ; 5472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10050_from, ; char* from + ptr @.TypeMapEntry.10051_to; char* to + }, ; 5473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10052_from, ; char* from + ptr @.TypeMapEntry.10053_to; char* to + }, ; 5474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10054_from, ; char* from + ptr @.TypeMapEntry.10051_to; char* to + }, ; 5475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10055_from, ; char* from + ptr @.TypeMapEntry.10056_to; char* to + }, ; 5476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10057_from, ; char* from + ptr @.TypeMapEntry.10058_to; char* to + }, ; 5477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10059_from, ; char* from + ptr @.TypeMapEntry.10056_to; char* to + }, ; 5478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10060_from, ; char* from + ptr @.TypeMapEntry.10061_to; char* to + }, ; 5479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10062_from, ; char* from + ptr @.TypeMapEntry.10063_to; char* to + }, ; 5480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10064_from, ; char* from + ptr @.TypeMapEntry.10061_to; char* to + }, ; 5481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10065_from, ; char* from + ptr @.TypeMapEntry.10066_to; char* to + }, ; 5482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10067_from, ; char* from + ptr @.TypeMapEntry.10068_to; char* to + }, ; 5483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10069_from, ; char* from + ptr @.TypeMapEntry.10066_to; char* to + }, ; 5484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10070_from, ; char* from + ptr @.TypeMapEntry.10071_to; char* to + }, ; 5485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10072_from, ; char* from + ptr @.TypeMapEntry.10073_to; char* to + }, ; 5486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10074_from, ; char* from + ptr @.TypeMapEntry.10073_to; char* to + }, ; 5487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10075_from, ; char* from + ptr @.TypeMapEntry.10076_to; char* to + }, ; 5488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10077_from, ; char* from + ptr @.TypeMapEntry.10078_to; char* to + }, ; 5489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10079_from, ; char* from + ptr @.TypeMapEntry.10076_to; char* to + }, ; 5490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10080_from, ; char* from + ptr @.TypeMapEntry.10081_to; char* to + }, ; 5491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10082_from, ; char* from + ptr @.TypeMapEntry.10083_to; char* to + }, ; 5492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10084_from, ; char* from + ptr @.TypeMapEntry.10081_to; char* to + }, ; 5493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10085_from, ; char* from + ptr @.TypeMapEntry.10086_to; char* to + }, ; 5494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10087_from, ; char* from + ptr @.TypeMapEntry.10088_to; char* to + }, ; 5495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10089_from, ; char* from + ptr @.TypeMapEntry.10090_to; char* to + }, ; 5496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10091_from, ; char* from + ptr @.TypeMapEntry.10092_to; char* to + }, ; 5497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10093_from, ; char* from + ptr @.TypeMapEntry.10092_to; char* to + }, ; 5498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10094_from, ; char* from + ptr @.TypeMapEntry.10095_to; char* to + }, ; 5499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10096_from, ; char* from + ptr @.TypeMapEntry.10097_to; char* to + }, ; 5500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10098_from, ; char* from + ptr @.TypeMapEntry.10099_to; char* to + }, ; 5501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10100_from, ; char* from + ptr @.TypeMapEntry.10101_to; char* to + }, ; 5502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10102_from, ; char* from + ptr @.TypeMapEntry.10103_to; char* to + }, ; 5503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10104_from, ; char* from + ptr @.TypeMapEntry.10105_to; char* to + }, ; 5504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10106_from, ; char* from + ptr @.TypeMapEntry.10107_to; char* to + }, ; 5505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10108_from, ; char* from + ptr @.TypeMapEntry.10107_to; char* to + }, ; 5506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10109_from, ; char* from + ptr @.TypeMapEntry.10110_to; char* to + }, ; 5507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10111_from, ; char* from + ptr @.TypeMapEntry.10086_to; char* to + }, ; 5508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10112_from, ; char* from + ptr @.TypeMapEntry.10113_to; char* to + }, ; 5509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10114_from, ; char* from + ptr @.TypeMapEntry.10115_to; char* to + }, ; 5510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10116_from, ; char* from + ptr @.TypeMapEntry.10117_to; char* to + }, ; 5511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10118_from, ; char* from + ptr @.TypeMapEntry.10119_to; char* to + }, ; 5512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10120_from, ; char* from + ptr @.TypeMapEntry.10121_to; char* to + }, ; 5513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10122_from, ; char* from + ptr @.TypeMapEntry.10123_to; char* to + }, ; 5514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10124_from, ; char* from + ptr @.TypeMapEntry.10125_to; char* to + }, ; 5515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10126_from, ; char* from + ptr @.TypeMapEntry.10127_to; char* to + }, ; 5516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10128_from, ; char* from + ptr @.TypeMapEntry.10127_to; char* to + }, ; 5517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10129_from, ; char* from + ptr @.TypeMapEntry.10130_to; char* to + }, ; 5518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10131_from, ; char* from + ptr @.TypeMapEntry.10132_to; char* to + }, ; 5519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10133_from, ; char* from + ptr @.TypeMapEntry.10134_to; char* to + }, ; 5520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10135_from, ; char* from + ptr @.TypeMapEntry.10134_to; char* to + }, ; 5521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10136_from, ; char* from + ptr @.TypeMapEntry.10137_to; char* to + }, ; 5522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10138_from, ; char* from + ptr @.TypeMapEntry.10139_to; char* to + }, ; 5523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10140_from, ; char* from + ptr @.TypeMapEntry.10141_to; char* to + }, ; 5524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10142_from, ; char* from + ptr @.TypeMapEntry.10141_to; char* to + }, ; 5525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10143_from, ; char* from + ptr @.TypeMapEntry.10144_to; char* to + }, ; 5526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10145_from, ; char* from + ptr @.TypeMapEntry.10146_to; char* to + }, ; 5527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10147_from, ; char* from + ptr @.TypeMapEntry.10148_to; char* to + }, ; 5528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10149_from, ; char* from + ptr @.TypeMapEntry.10150_to; char* to + }, ; 5529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10151_from, ; char* from + ptr @.TypeMapEntry.10148_to; char* to + }, ; 5530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10152_from, ; char* from + ptr @.TypeMapEntry.10153_to; char* to + }, ; 5531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10154_from, ; char* from + ptr @.TypeMapEntry.10153_to; char* to + }, ; 5532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10155_from, ; char* from + ptr @.TypeMapEntry.10156_to; char* to + }, ; 5533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10157_from, ; char* from + ptr @.TypeMapEntry.10156_to; char* to + }, ; 5534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10158_from, ; char* from + ptr @.TypeMapEntry.10159_to; char* to + }, ; 5535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10160_from, ; char* from + ptr @.TypeMapEntry.10159_to; char* to + }, ; 5536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10161_from, ; char* from + ptr @.TypeMapEntry.10162_to; char* to + }, ; 5537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10163_from, ; char* from + ptr @.TypeMapEntry.10162_to; char* to + }, ; 5538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10164_from, ; char* from + ptr @.TypeMapEntry.10165_to; char* to + }, ; 5539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10166_from, ; char* from + ptr @.TypeMapEntry.10165_to; char* to + }, ; 5540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10167_from, ; char* from + ptr @.TypeMapEntry.10153_to; char* to + }, ; 5541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10168_from, ; char* from + ptr @.TypeMapEntry.10153_to; char* to + }, ; 5542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10169_from, ; char* from + ptr @.TypeMapEntry.10170_to; char* to + }, ; 5543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10171_from, ; char* from + ptr @.TypeMapEntry.10172_to; char* to + }, ; 5544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10173_from, ; char* from + ptr @.TypeMapEntry.10174_to; char* to + }, ; 5545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10175_from, ; char* from + ptr @.TypeMapEntry.10176_to; char* to + }, ; 5546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10177_from, ; char* from + ptr @.TypeMapEntry.10176_to; char* to + }, ; 5547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10178_from, ; char* from + ptr @.TypeMapEntry.10179_to; char* to + }, ; 5548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10180_from, ; char* from + ptr @.TypeMapEntry.10179_to; char* to + }, ; 5549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10181_from, ; char* from + ptr @.TypeMapEntry.10182_to; char* to + }, ; 5550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10183_from, ; char* from + ptr @.TypeMapEntry.10184_to; char* to + }, ; 5551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10185_from, ; char* from + ptr @.TypeMapEntry.10186_to; char* to + }, ; 5552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10187_from, ; char* from + ptr @.TypeMapEntry.10188_to; char* to + }, ; 5553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10189_from, ; char* from + ptr @.TypeMapEntry.10188_to; char* to + }, ; 5554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10190_from, ; char* from + ptr @.TypeMapEntry.10191_to; char* to + }, ; 5555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10192_from, ; char* from + ptr @.TypeMapEntry.10191_to; char* to + }, ; 5556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10193_from, ; char* from + ptr @.TypeMapEntry.10194_to; char* to + }, ; 5557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10195_from, ; char* from + ptr @.TypeMapEntry.10196_to; char* to + }, ; 5558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10197_from, ; char* from + ptr @.TypeMapEntry.10196_to; char* to + }, ; 5559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10198_from, ; char* from + ptr @.TypeMapEntry.10199_to; char* to + }, ; 5560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10200_from, ; char* from + ptr @.TypeMapEntry.10199_to; char* to + }, ; 5561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10201_from, ; char* from + ptr @.TypeMapEntry.10202_to; char* to + }, ; 5562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10203_from, ; char* from + ptr @.TypeMapEntry.10204_to; char* to + }, ; 5563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10205_from, ; char* from + ptr @.TypeMapEntry.10206_to; char* to + }, ; 5564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10207_from, ; char* from + ptr @.TypeMapEntry.10208_to; char* to + }, ; 5565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10209_from, ; char* from + ptr @.TypeMapEntry.10208_to; char* to + }, ; 5566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10210_from, ; char* from + ptr @.TypeMapEntry.10211_to; char* to + }, ; 5567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10212_from, ; char* from + ptr @.TypeMapEntry.10213_to; char* to + }, ; 5568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10214_from, ; char* from + ptr @.TypeMapEntry.10215_to; char* to + }, ; 5569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10216_from, ; char* from + ptr @.TypeMapEntry.10215_to; char* to + }, ; 5570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10217_from, ; char* from + ptr @.TypeMapEntry.10218_to; char* to + }, ; 5571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10219_from, ; char* from + ptr @.TypeMapEntry.10218_to; char* to + }, ; 5572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10220_from, ; char* from + ptr @.TypeMapEntry.10221_to; char* to + }, ; 5573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10222_from, ; char* from + ptr @.TypeMapEntry.10221_to; char* to + }, ; 5574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10223_from, ; char* from + ptr @.TypeMapEntry.10224_to; char* to + }, ; 5575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10225_from, ; char* from + ptr @.TypeMapEntry.10226_to; char* to + }, ; 5576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10227_from, ; char* from + ptr @.TypeMapEntry.10226_to; char* to + }, ; 5577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10228_from, ; char* from + ptr @.TypeMapEntry.10229_to; char* to + }, ; 5578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10230_from, ; char* from + ptr @.TypeMapEntry.10231_to; char* to + }, ; 5579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10232_from, ; char* from + ptr @.TypeMapEntry.10229_to; char* to + }, ; 5580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10233_from, ; char* from + ptr @.TypeMapEntry.10234_to; char* to + }, ; 5581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10235_from, ; char* from + ptr @.TypeMapEntry.10234_to; char* to + }, ; 5582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10236_from, ; char* from + ptr @.TypeMapEntry.10237_to; char* to + }, ; 5583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10238_from, ; char* from + ptr @.TypeMapEntry.10239_to; char* to + }, ; 5584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10240_from, ; char* from + ptr @.TypeMapEntry.10239_to; char* to + }, ; 5585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10241_from, ; char* from + ptr @.TypeMapEntry.10242_to; char* to + }, ; 5586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10243_from, ; char* from + ptr @.TypeMapEntry.10242_to; char* to + }, ; 5587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10244_from, ; char* from + ptr @.TypeMapEntry.10245_to; char* to + }, ; 5588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10246_from, ; char* from + ptr @.TypeMapEntry.10245_to; char* to + }, ; 5589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10247_from, ; char* from + ptr @.TypeMapEntry.10248_to; char* to + }, ; 5590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10249_from, ; char* from + ptr @.TypeMapEntry.10250_to; char* to + }, ; 5591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10251_from, ; char* from + ptr @.TypeMapEntry.10252_to; char* to + }, ; 5592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10253_from, ; char* from + ptr @.TypeMapEntry.10254_to; char* to + }, ; 5593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10255_from, ; char* from + ptr @.TypeMapEntry.10256_to; char* to + }, ; 5594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10257_from, ; char* from + ptr @.TypeMapEntry.10258_to; char* to + }, ; 5595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10259_from, ; char* from + ptr @.TypeMapEntry.10260_to; char* to + }, ; 5596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10261_from, ; char* from + ptr @.TypeMapEntry.10260_to; char* to + }, ; 5597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10262_from, ; char* from + ptr @.TypeMapEntry.10263_to; char* to + }, ; 5598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10264_from, ; char* from + ptr @.TypeMapEntry.10263_to; char* to + }, ; 5599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10265_from, ; char* from + ptr @.TypeMapEntry.10266_to; char* to + }, ; 5600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10267_from, ; char* from + ptr @.TypeMapEntry.10268_to; char* to + }, ; 5601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10269_from, ; char* from + ptr @.TypeMapEntry.10270_to; char* to + }, ; 5602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10271_from, ; char* from + ptr @.TypeMapEntry.10270_to; char* to + }, ; 5603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10272_from, ; char* from + ptr @.TypeMapEntry.10273_to; char* to + }, ; 5604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10274_from, ; char* from + ptr @.TypeMapEntry.10275_to; char* to + }, ; 5605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10276_from, ; char* from + ptr @.TypeMapEntry.10277_to; char* to + }, ; 5606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10278_from, ; char* from + ptr @.TypeMapEntry.10275_to; char* to + }, ; 5607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10279_from, ; char* from + ptr @.TypeMapEntry.10280_to; char* to + }, ; 5608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10281_from, ; char* from + ptr @.TypeMapEntry.10282_to; char* to + }, ; 5609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10283_from, ; char* from + ptr @.TypeMapEntry.10280_to; char* to + }, ; 5610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10284_from, ; char* from + ptr @.TypeMapEntry.10285_to; char* to + }, ; 5611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10286_from, ; char* from + ptr @.TypeMapEntry.10285_to; char* to + }, ; 5612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10287_from, ; char* from + ptr @.TypeMapEntry.10288_to; char* to + }, ; 5613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10289_from, ; char* from + ptr @.TypeMapEntry.10290_to; char* to + }, ; 5614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10291_from, ; char* from + ptr @.TypeMapEntry.10292_to; char* to + }, ; 5615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10293_from, ; char* from + ptr @.TypeMapEntry.10294_to; char* to + }, ; 5616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10295_from, ; char* from + ptr @.TypeMapEntry.10294_to; char* to + }, ; 5617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10296_from, ; char* from + ptr @.TypeMapEntry.10297_to; char* to + }, ; 5618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10298_from, ; char* from + ptr @.TypeMapEntry.10299_to; char* to + }, ; 5619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10300_from, ; char* from + ptr @.TypeMapEntry.10301_to; char* to + }, ; 5620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10302_from, ; char* from + ptr @.TypeMapEntry.10301_to; char* to + }, ; 5621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10303_from, ; char* from + ptr @.TypeMapEntry.10299_to; char* to + }, ; 5622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10304_from, ; char* from + ptr @.TypeMapEntry.10305_to; char* to + }, ; 5623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10306_from, ; char* from + ptr @.TypeMapEntry.10305_to; char* to + }, ; 5624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10307_from, ; char* from + ptr @.TypeMapEntry.10308_to; char* to + }, ; 5625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10309_from, ; char* from + ptr @.TypeMapEntry.10310_to; char* to + }, ; 5626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10311_from, ; char* from + ptr @.TypeMapEntry.10308_to; char* to + }, ; 5627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10312_from, ; char* from + ptr @.TypeMapEntry.10313_to; char* to + }, ; 5628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10314_from, ; char* from + ptr @.TypeMapEntry.10315_to; char* to + }, ; 5629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10316_from, ; char* from + ptr @.TypeMapEntry.10313_to; char* to + }, ; 5630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10317_from, ; char* from + ptr @.TypeMapEntry.10318_to; char* to + }, ; 5631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10319_from, ; char* from + ptr @.TypeMapEntry.10318_to; char* to + }, ; 5632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10320_from, ; char* from + ptr @.TypeMapEntry.10321_to; char* to + }, ; 5633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10322_from, ; char* from + ptr @.TypeMapEntry.10323_to; char* to + }, ; 5634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10324_from, ; char* from + ptr @.TypeMapEntry.10323_to; char* to + }, ; 5635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10325_from, ; char* from + ptr @.TypeMapEntry.10326_to; char* to + }, ; 5636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10327_from, ; char* from + ptr @.TypeMapEntry.10326_to; char* to + }, ; 5637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10328_from, ; char* from + ptr @.TypeMapEntry.10329_to; char* to + }, ; 5638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10330_from, ; char* from + ptr @.TypeMapEntry.10329_to; char* to + }, ; 5639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10331_from, ; char* from + ptr @.TypeMapEntry.10332_to; char* to + }, ; 5640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10333_from, ; char* from + ptr @.TypeMapEntry.10334_to; char* to + }, ; 5641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10335_from, ; char* from + ptr @.TypeMapEntry.10336_to; char* to + }, ; 5642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10337_from, ; char* from + ptr @.TypeMapEntry.10338_to; char* to + }, ; 5643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10339_from, ; char* from + ptr @.TypeMapEntry.10336_to; char* to + }, ; 5644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10340_from, ; char* from + ptr @.TypeMapEntry.10341_to; char* to + }, ; 5645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10342_from, ; char* from + ptr @.TypeMapEntry.10343_to; char* to + }, ; 5646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10344_from, ; char* from + ptr @.TypeMapEntry.10345_to; char* to + }, ; 5647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10346_from, ; char* from + ptr @.TypeMapEntry.10347_to; char* to + }, ; 5648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10348_from, ; char* from + ptr @.TypeMapEntry.10349_to; char* to + }, ; 5649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10350_from, ; char* from + ptr @.TypeMapEntry.10351_to; char* to + }, ; 5650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10352_from, ; char* from + ptr @.TypeMapEntry.10349_to; char* to + }, ; 5651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10353_from, ; char* from + ptr @.TypeMapEntry.10354_to; char* to + }, ; 5652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10355_from, ; char* from + ptr @.TypeMapEntry.10356_to; char* to + }, ; 5653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10357_from, ; char* from + ptr @.TypeMapEntry.10354_to; char* to + }, ; 5654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10358_from, ; char* from + ptr @.TypeMapEntry.10359_to; char* to + }, ; 5655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10360_from, ; char* from + ptr @.TypeMapEntry.10361_to; char* to + }, ; 5656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10362_from, ; char* from + ptr @.TypeMapEntry.10359_to; char* to + }, ; 5657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10363_from, ; char* from + ptr @.TypeMapEntry.10364_to; char* to + }, ; 5658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10365_from, ; char* from + ptr @.TypeMapEntry.10366_to; char* to + }, ; 5659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10367_from, ; char* from + ptr @.TypeMapEntry.10366_to; char* to + }, ; 5660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10368_from, ; char* from + ptr @.TypeMapEntry.10369_to; char* to + }, ; 5661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10370_from, ; char* from + ptr @.TypeMapEntry.10364_to; char* to + }, ; 5662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10371_from, ; char* from + ptr @.TypeMapEntry.10364_to; char* to + }, ; 5663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10372_from, ; char* from + ptr @.TypeMapEntry.10373_to; char* to + }, ; 5664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10374_from, ; char* from + ptr @.TypeMapEntry.10375_to; char* to + }, ; 5665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10376_from, ; char* from + ptr @.TypeMapEntry.10377_to; char* to + }, ; 5666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10378_from, ; char* from + ptr @.TypeMapEntry.10377_to; char* to + }, ; 5667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10379_from, ; char* from + ptr @.TypeMapEntry.10380_to; char* to + }, ; 5668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10381_from, ; char* from + ptr @.TypeMapEntry.10382_to; char* to + }, ; 5669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10383_from, ; char* from + ptr @.TypeMapEntry.10380_to; char* to + }, ; 5670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10384_from, ; char* from + ptr @.TypeMapEntry.10385_to; char* to + }, ; 5671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10386_from, ; char* from + ptr @.TypeMapEntry.10385_to; char* to + }, ; 5672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10387_from, ; char* from + ptr @.TypeMapEntry.10388_to; char* to + }, ; 5673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10389_from, ; char* from + ptr @.TypeMapEntry.10390_to; char* to + }, ; 5674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10391_from, ; char* from + ptr @.TypeMapEntry.10390_to; char* to + }, ; 5675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10392_from, ; char* from + ptr @.TypeMapEntry.10390_to; char* to + }, ; 5676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10393_from, ; char* from + ptr @.TypeMapEntry.10394_to; char* to + }, ; 5677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10395_from, ; char* from + ptr @.TypeMapEntry.10394_to; char* to + }, ; 5678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10396_from, ; char* from + ptr @.TypeMapEntry.10397_to; char* to + }, ; 5679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10398_from, ; char* from + ptr @.TypeMapEntry.10399_to; char* to + }, ; 5680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10400_from, ; char* from + ptr @.TypeMapEntry.10401_to; char* to + }, ; 5681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10402_from, ; char* from + ptr @.TypeMapEntry.10399_to; char* to + }, ; 5682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10403_from, ; char* from + ptr @.TypeMapEntry.10404_to; char* to + }, ; 5683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10405_from, ; char* from + ptr @.TypeMapEntry.10406_to; char* to + }, ; 5684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10407_from, ; char* from + ptr @.TypeMapEntry.10408_to; char* to + }, ; 5685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10409_from, ; char* from + ptr @.TypeMapEntry.10410_to; char* to + }, ; 5686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10411_from, ; char* from + ptr @.TypeMapEntry.10412_to; char* to + }, ; 5687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10413_from, ; char* from + ptr @.TypeMapEntry.10410_to; char* to + }, ; 5688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10414_from, ; char* from + ptr @.TypeMapEntry.10415_to; char* to + }, ; 5689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10416_from, ; char* from + ptr @.TypeMapEntry.10417_to; char* to + }, ; 5690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10418_from, ; char* from + ptr @.TypeMapEntry.10419_to; char* to + }, ; 5691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10420_from, ; char* from + ptr @.TypeMapEntry.10417_to; char* to + }, ; 5692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10421_from, ; char* from + ptr @.TypeMapEntry.10422_to; char* to + }, ; 5693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10423_from, ; char* from + ptr @.TypeMapEntry.10422_to; char* to + }, ; 5694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10424_from, ; char* from + ptr @.TypeMapEntry.10425_to; char* to + }, ; 5695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10426_from, ; char* from + ptr @.TypeMapEntry.10425_to; char* to + }, ; 5696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10427_from, ; char* from + ptr @.TypeMapEntry.10428_to; char* to + }, ; 5697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10429_from, ; char* from + ptr @.TypeMapEntry.10428_to; char* to + }, ; 5698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10430_from, ; char* from + ptr @.TypeMapEntry.10431_to; char* to + }, ; 5699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10432_from, ; char* from + ptr @.TypeMapEntry.10433_to; char* to + }, ; 5700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10434_from, ; char* from + ptr @.TypeMapEntry.10431_to; char* to + }, ; 5701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10435_from, ; char* from + ptr @.TypeMapEntry.10436_to; char* to + }, ; 5702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10437_from, ; char* from + ptr @.TypeMapEntry.10438_to; char* to + }, ; 5703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10439_from, ; char* from + ptr @.TypeMapEntry.10440_to; char* to + }, ; 5704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10441_from, ; char* from + ptr @.TypeMapEntry.10442_to; char* to + }, ; 5705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10443_from, ; char* from + ptr @.TypeMapEntry.10444_to; char* to + }, ; 5706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10445_from, ; char* from + ptr @.TypeMapEntry.10446_to; char* to + }, ; 5707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10447_from, ; char* from + ptr @.TypeMapEntry.10448_to; char* to + }, ; 5708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10449_from, ; char* from + ptr @.TypeMapEntry.10450_to; char* to + }, ; 5709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10451_from, ; char* from + ptr @.TypeMapEntry.10448_to; char* to + }, ; 5710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10452_from, ; char* from + ptr @.TypeMapEntry.10453_to; char* to + }, ; 5711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10454_from, ; char* from + ptr @.TypeMapEntry.10455_to; char* to + }, ; 5712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10456_from, ; char* from + ptr @.TypeMapEntry.10453_to; char* to + }, ; 5713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10457_from, ; char* from + ptr @.TypeMapEntry.10458_to; char* to + }, ; 5714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10459_from, ; char* from + ptr @.TypeMapEntry.10460_to; char* to + }, ; 5715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10461_from, ; char* from + ptr @.TypeMapEntry.10458_to; char* to + }, ; 5716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10462_from, ; char* from + ptr @.TypeMapEntry.10463_to; char* to + }, ; 5717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10464_from, ; char* from + ptr @.TypeMapEntry.10465_to; char* to + }, ; 5718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10466_from, ; char* from + ptr @.TypeMapEntry.10463_to; char* to + }, ; 5719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10467_from, ; char* from + ptr @.TypeMapEntry.10468_to; char* to + }, ; 5720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10469_from, ; char* from + ptr @.TypeMapEntry.10470_to; char* to + }, ; 5721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10471_from, ; char* from + ptr @.TypeMapEntry.10472_to; char* to + }, ; 5722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10473_from, ; char* from + ptr @.TypeMapEntry.10474_to; char* to + }, ; 5723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10475_from, ; char* from + ptr @.TypeMapEntry.10472_to; char* to + }, ; 5724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10476_from, ; char* from + ptr @.TypeMapEntry.10477_to; char* to + }, ; 5725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10478_from, ; char* from + ptr @.TypeMapEntry.10477_to; char* to + }, ; 5726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10479_from, ; char* from + ptr @.TypeMapEntry.10480_to; char* to + }, ; 5727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10481_from, ; char* from + ptr @.TypeMapEntry.10482_to; char* to + }, ; 5728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10483_from, ; char* from + ptr @.TypeMapEntry.10484_to; char* to + }, ; 5729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10485_from, ; char* from + ptr @.TypeMapEntry.10486_to; char* to + }, ; 5730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10487_from, ; char* from + ptr @.TypeMapEntry.10488_to; char* to + }, ; 5731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10489_from, ; char* from + ptr @.TypeMapEntry.10488_to; char* to + }, ; 5732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10490_from, ; char* from + ptr @.TypeMapEntry.10491_to; char* to + }, ; 5733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10492_from, ; char* from + ptr @.TypeMapEntry.10493_to; char* to + }, ; 5734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10494_from, ; char* from + ptr @.TypeMapEntry.10495_to; char* to + }, ; 5735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10496_from, ; char* from + ptr @.TypeMapEntry.10497_to; char* to + }, ; 5736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10498_from, ; char* from + ptr @.TypeMapEntry.10499_to; char* to + }, ; 5737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10500_from, ; char* from + ptr @.TypeMapEntry.10501_to; char* to + }, ; 5738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10502_from, ; char* from + ptr @.TypeMapEntry.10503_to; char* to + }, ; 5739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10504_from, ; char* from + ptr @.TypeMapEntry.10503_to; char* to + }, ; 5740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10505_from, ; char* from + ptr @.TypeMapEntry.10506_to; char* to + }, ; 5741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10507_from, ; char* from + ptr @.TypeMapEntry.10506_to; char* to + }, ; 5742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10508_from, ; char* from + ptr @.TypeMapEntry.10509_to; char* to + }, ; 5743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10510_from, ; char* from + ptr @.TypeMapEntry.10509_to; char* to + }, ; 5744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10511_from, ; char* from + ptr @.TypeMapEntry.10512_to; char* to + }, ; 5745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10513_from, ; char* from + ptr @.TypeMapEntry.10512_to; char* to + }, ; 5746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10514_from, ; char* from + ptr @.TypeMapEntry.10515_to; char* to + }, ; 5747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10516_from, ; char* from + ptr @.TypeMapEntry.10515_to; char* to + }, ; 5748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10517_from, ; char* from + ptr @.TypeMapEntry.10518_to; char* to + }, ; 5749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10519_from, ; char* from + ptr @.TypeMapEntry.10518_to; char* to + }, ; 5750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10520_from, ; char* from + ptr @.TypeMapEntry.10521_to; char* to + }, ; 5751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10522_from, ; char* from + ptr @.TypeMapEntry.10521_to; char* to + }, ; 5752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10523_from, ; char* from + ptr @.TypeMapEntry.10524_to; char* to + }, ; 5753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10525_from, ; char* from + ptr @.TypeMapEntry.10524_to; char* to + }, ; 5754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10526_from, ; char* from + ptr @.TypeMapEntry.10527_to; char* to + }, ; 5755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10528_from, ; char* from + ptr @.TypeMapEntry.10527_to; char* to + }, ; 5756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10529_from, ; char* from + ptr @.TypeMapEntry.10530_to; char* to + }, ; 5757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10531_from, ; char* from + ptr @.TypeMapEntry.10530_to; char* to + }, ; 5758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10532_from, ; char* from + ptr @.TypeMapEntry.10533_to; char* to + }, ; 5759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10534_from, ; char* from + ptr @.TypeMapEntry.10533_to; char* to + }, ; 5760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10535_from, ; char* from + ptr @.TypeMapEntry.10536_to; char* to + }, ; 5761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10537_from, ; char* from + ptr @.TypeMapEntry.10536_to; char* to + }, ; 5762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10538_from, ; char* from + ptr @.TypeMapEntry.10539_to; char* to + }, ; 5763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10540_from, ; char* from + ptr @.TypeMapEntry.10541_to; char* to + }, ; 5764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10542_from, ; char* from + ptr @.TypeMapEntry.10543_to; char* to + }, ; 5765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10544_from, ; char* from + ptr @.TypeMapEntry.10545_to; char* to + }, ; 5766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10546_from, ; char* from + ptr @.TypeMapEntry.10547_to; char* to + }, ; 5767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10548_from, ; char* from + ptr @.TypeMapEntry.10547_to; char* to + }, ; 5768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10549_from, ; char* from + ptr @.TypeMapEntry.10550_to; char* to + }, ; 5769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10551_from, ; char* from + ptr @.TypeMapEntry.10552_to; char* to + }, ; 5770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10553_from, ; char* from + ptr @.TypeMapEntry.10554_to; char* to + }, ; 5771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10555_from, ; char* from + ptr @.TypeMapEntry.10556_to; char* to + }, ; 5772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10557_from, ; char* from + ptr @.TypeMapEntry.10558_to; char* to + }, ; 5773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10559_from, ; char* from + ptr @.TypeMapEntry.10560_to; char* to + }, ; 5774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10561_from, ; char* from + ptr @.TypeMapEntry.10562_to; char* to + }, ; 5775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10563_from, ; char* from + ptr @.TypeMapEntry.10564_to; char* to + }, ; 5776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10565_from, ; char* from + ptr @.TypeMapEntry.10566_to; char* to + }, ; 5777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10567_from, ; char* from + ptr @.TypeMapEntry.10568_to; char* to + }, ; 5778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10569_from, ; char* from + ptr @.TypeMapEntry.10570_to; char* to + }, ; 5779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10571_from, ; char* from + ptr @.TypeMapEntry.10570_to; char* to + }, ; 5780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10572_from, ; char* from + ptr @.TypeMapEntry.10573_to; char* to + }, ; 5781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10574_from, ; char* from + ptr @.TypeMapEntry.10575_to; char* to + }, ; 5782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10576_from, ; char* from + ptr @.TypeMapEntry.10577_to; char* to + }, ; 5783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10578_from, ; char* from + ptr @.TypeMapEntry.10577_to; char* to + }, ; 5784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10579_from, ; char* from + ptr @.TypeMapEntry.10580_to; char* to + }, ; 5785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10581_from, ; char* from + ptr @.TypeMapEntry.10582_to; char* to + }, ; 5786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10583_from, ; char* from + ptr @.TypeMapEntry.10582_to; char* to + }, ; 5787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10584_from, ; char* from + ptr @.TypeMapEntry.10585_to; char* to + }, ; 5788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10586_from, ; char* from + ptr @.TypeMapEntry.10587_to; char* to + }, ; 5789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10588_from, ; char* from + ptr @.TypeMapEntry.10585_to; char* to + }, ; 5790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10589_from, ; char* from + ptr @.TypeMapEntry.10590_to; char* to + }, ; 5791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10591_from, ; char* from + ptr @.TypeMapEntry.10592_to; char* to + }, ; 5792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10593_from, ; char* from + ptr @.TypeMapEntry.10590_to; char* to + }, ; 5793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10594_from, ; char* from + ptr @.TypeMapEntry.10595_to; char* to + }, ; 5794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10596_from, ; char* from + ptr @.TypeMapEntry.10597_to; char* to + }, ; 5795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10598_from, ; char* from + ptr @.TypeMapEntry.10599_to; char* to + }, ; 5796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10600_from, ; char* from + ptr @.TypeMapEntry.10601_to; char* to + }, ; 5797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10602_from, ; char* from + ptr @.TypeMapEntry.10599_to; char* to + }, ; 5798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10603_from, ; char* from + ptr @.TypeMapEntry.10604_to; char* to + }, ; 5799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10605_from, ; char* from + ptr @.TypeMapEntry.10606_to; char* to + }, ; 5800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10607_from, ; char* from + ptr @.TypeMapEntry.10604_to; char* to + }, ; 5801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10608_from, ; char* from + ptr @.TypeMapEntry.10609_to; char* to + }, ; 5802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10610_from, ; char* from + ptr @.TypeMapEntry.10611_to; char* to + }, ; 5803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10612_from, ; char* from + ptr @.TypeMapEntry.10613_to; char* to + }, ; 5804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10614_from, ; char* from + ptr @.TypeMapEntry.10611_to; char* to + }, ; 5805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10615_from, ; char* from + ptr @.TypeMapEntry.10616_to; char* to + }, ; 5806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10617_from, ; char* from + ptr @.TypeMapEntry.10618_to; char* to + }, ; 5807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10619_from, ; char* from + ptr @.TypeMapEntry.10620_to; char* to + }, ; 5808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10621_from, ; char* from + ptr @.TypeMapEntry.10622_to; char* to + }, ; 5809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10623_from, ; char* from + ptr @.TypeMapEntry.10624_to; char* to + }, ; 5810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10625_from, ; char* from + ptr @.TypeMapEntry.10626_to; char* to + }, ; 5811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10627_from, ; char* from + ptr @.TypeMapEntry.10624_to; char* to + }, ; 5812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10628_from, ; char* from + ptr @.TypeMapEntry.10629_to; char* to + }, ; 5813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10630_from, ; char* from + ptr @.TypeMapEntry.10631_to; char* to + }, ; 5814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10632_from, ; char* from + ptr @.TypeMapEntry.10633_to; char* to + }, ; 5815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10634_from, ; char* from + ptr @.TypeMapEntry.10635_to; char* to + }, ; 5816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10636_from, ; char* from + ptr @.TypeMapEntry.10633_to; char* to + }, ; 5817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10637_from, ; char* from + ptr @.TypeMapEntry.10638_to; char* to + }, ; 5818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10639_from, ; char* from + ptr @.TypeMapEntry.10640_to; char* to + }, ; 5819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10641_from, ; char* from + ptr @.TypeMapEntry.10642_to; char* to + }, ; 5820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10643_from, ; char* from + ptr @.TypeMapEntry.10644_to; char* to + }, ; 5821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10645_from, ; char* from + ptr @.TypeMapEntry.10646_to; char* to + }, ; 5822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10647_from, ; char* from + ptr @.TypeMapEntry.10648_to; char* to + }, ; 5823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10649_from, ; char* from + ptr @.TypeMapEntry.10650_to; char* to + }, ; 5824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10651_from, ; char* from + ptr @.TypeMapEntry.10652_to; char* to + }, ; 5825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10653_from, ; char* from + ptr @.TypeMapEntry.10654_to; char* to + }, ; 5826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10655_from, ; char* from + ptr @.TypeMapEntry.10656_to; char* to + }, ; 5827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10657_from, ; char* from + ptr @.TypeMapEntry.10656_to; char* to + }, ; 5828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10658_from, ; char* from + ptr @.TypeMapEntry.10659_to; char* to + }, ; 5829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10660_from, ; char* from + ptr @.TypeMapEntry.10661_to; char* to + }, ; 5830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10662_from, ; char* from + ptr @.TypeMapEntry.10663_to; char* to + }, ; 5831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10664_from, ; char* from + ptr @.TypeMapEntry.10663_to; char* to + }, ; 5832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10665_from, ; char* from + ptr @.TypeMapEntry.10666_to; char* to + }, ; 5833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10667_from, ; char* from + ptr @.TypeMapEntry.10666_to; char* to + }, ; 5834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10668_from, ; char* from + ptr @.TypeMapEntry.10669_to; char* to + }, ; 5835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10670_from, ; char* from + ptr @.TypeMapEntry.10669_to; char* to + }, ; 5836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10671_from, ; char* from + ptr @.TypeMapEntry.10672_to; char* to + }, ; 5837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10673_from, ; char* from + ptr @.TypeMapEntry.10672_to; char* to + }, ; 5838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10674_from, ; char* from + ptr @.TypeMapEntry.10675_to; char* to + }, ; 5839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10676_from, ; char* from + ptr @.TypeMapEntry.10677_to; char* to + }, ; 5840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10678_from, ; char* from + ptr @.TypeMapEntry.10679_to; char* to + }, ; 5841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10680_from, ; char* from + ptr @.TypeMapEntry.10681_to; char* to + }, ; 5842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10682_from, ; char* from + ptr @.TypeMapEntry.10679_to; char* to + }, ; 5843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10683_from, ; char* from + ptr @.TypeMapEntry.10684_to; char* to + }, ; 5844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10685_from, ; char* from + ptr @.TypeMapEntry.10686_to; char* to + }, ; 5845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10687_from, ; char* from + ptr @.TypeMapEntry.10684_to; char* to + }, ; 5846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10688_from, ; char* from + ptr @.TypeMapEntry.10689_to; char* to + }, ; 5847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10690_from, ; char* from + ptr @.TypeMapEntry.10691_to; char* to + }, ; 5848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10692_from, ; char* from + ptr @.TypeMapEntry.10689_to; char* to + }, ; 5849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10693_from, ; char* from + ptr @.TypeMapEntry.10694_to; char* to + }, ; 5850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10695_from, ; char* from + ptr @.TypeMapEntry.10696_to; char* to + }, ; 5851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10697_from, ; char* from + ptr @.TypeMapEntry.10698_to; char* to + }, ; 5852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10699_from, ; char* from + ptr @.TypeMapEntry.10696_to; char* to + }, ; 5853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10700_from, ; char* from + ptr @.TypeMapEntry.10701_to; char* to + }, ; 5854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10702_from, ; char* from + ptr @.TypeMapEntry.10703_to; char* to + }, ; 5855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10704_from, ; char* from + ptr @.TypeMapEntry.10705_to; char* to + }, ; 5856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10706_from, ; char* from + ptr @.TypeMapEntry.10703_to; char* to + }, ; 5857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10707_from, ; char* from + ptr @.TypeMapEntry.10708_to; char* to + }, ; 5858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10709_from, ; char* from + ptr @.TypeMapEntry.10710_to; char* to + }, ; 5859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10711_from, ; char* from + ptr @.TypeMapEntry.10710_to; char* to + }, ; 5860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10712_from, ; char* from + ptr @.TypeMapEntry.10713_to; char* to + }, ; 5861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10714_from, ; char* from + ptr @.TypeMapEntry.10715_to; char* to + }, ; 5862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10716_from, ; char* from + ptr @.TypeMapEntry.10715_to; char* to + }, ; 5863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10717_from, ; char* from + ptr @.TypeMapEntry.10718_to; char* to + }, ; 5864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10719_from, ; char* from + ptr @.TypeMapEntry.10718_to; char* to + }, ; 5865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10720_from, ; char* from + ptr @.TypeMapEntry.10721_to; char* to + }, ; 5866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10722_from, ; char* from + ptr @.TypeMapEntry.10723_to; char* to + }, ; 5867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10724_from, ; char* from + ptr @.TypeMapEntry.10723_to; char* to + }, ; 5868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10725_from, ; char* from + ptr @.TypeMapEntry.10726_to; char* to + }, ; 5869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10727_from, ; char* from + ptr @.TypeMapEntry.10726_to; char* to + }, ; 5870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10728_from, ; char* from + ptr @.TypeMapEntry.10729_to; char* to + }, ; 5871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10730_from, ; char* from + ptr @.TypeMapEntry.10731_to; char* to + }, ; 5872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10732_from, ; char* from + ptr @.TypeMapEntry.10733_to; char* to + }, ; 5873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10734_from, ; char* from + ptr @.TypeMapEntry.10731_to; char* to + }, ; 5874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10735_from, ; char* from + ptr @.TypeMapEntry.10736_to; char* to + }, ; 5875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10737_from, ; char* from + ptr @.TypeMapEntry.10738_to; char* to + }, ; 5876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10739_from, ; char* from + ptr @.TypeMapEntry.10736_to; char* to + }, ; 5877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10740_from, ; char* from + ptr @.TypeMapEntry.10741_to; char* to + }, ; 5878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10742_from, ; char* from + ptr @.TypeMapEntry.10743_to; char* to + }, ; 5879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10744_from, ; char* from + ptr @.TypeMapEntry.10741_to; char* to + }, ; 5880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10745_from, ; char* from + ptr @.TypeMapEntry.10746_to; char* to + }, ; 5881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10747_from, ; char* from + ptr @.TypeMapEntry.10748_to; char* to + }, ; 5882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10749_from, ; char* from + ptr @.TypeMapEntry.10750_to; char* to + }, ; 5883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10751_from, ; char* from + ptr @.TypeMapEntry.10752_to; char* to + }, ; 5884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10753_from, ; char* from + ptr @.TypeMapEntry.10754_to; char* to + }, ; 5885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10755_from, ; char* from + ptr @.TypeMapEntry.10756_to; char* to + }, ; 5886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10757_from, ; char* from + ptr @.TypeMapEntry.10758_to; char* to + }, ; 5887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10759_from, ; char* from + ptr @.TypeMapEntry.10756_to; char* to + }, ; 5888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10760_from, ; char* from + ptr @.TypeMapEntry.10761_to; char* to + }, ; 5889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10762_from, ; char* from + ptr @.TypeMapEntry.10761_to; char* to + }, ; 5890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10763_from, ; char* from + ptr @.TypeMapEntry.10764_to; char* to + }, ; 5891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10765_from, ; char* from + ptr @.TypeMapEntry.10766_to; char* to + }, ; 5892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10767_from, ; char* from + ptr @.TypeMapEntry.10768_to; char* to + }, ; 5893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10769_from, ; char* from + ptr @.TypeMapEntry.10770_to; char* to + }, ; 5894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10771_from, ; char* from + ptr @.TypeMapEntry.10772_to; char* to + }, ; 5895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10773_from, ; char* from + ptr @.TypeMapEntry.10774_to; char* to + }, ; 5896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10775_from, ; char* from + ptr @.TypeMapEntry.10776_to; char* to + }, ; 5897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10777_from, ; char* from + ptr @.TypeMapEntry.10778_to; char* to + }, ; 5898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10779_from, ; char* from + ptr @.TypeMapEntry.10780_to; char* to + }, ; 5899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10781_from, ; char* from + ptr @.TypeMapEntry.10782_to; char* to + }, ; 5900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10783_from, ; char* from + ptr @.TypeMapEntry.10784_to; char* to + }, ; 5901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10785_from, ; char* from + ptr @.TypeMapEntry.10786_to; char* to + }, ; 5902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10787_from, ; char* from + ptr @.TypeMapEntry.10784_to; char* to + }, ; 5903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10788_from, ; char* from + ptr @.TypeMapEntry.10789_to; char* to + }, ; 5904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10790_from, ; char* from + ptr @.TypeMapEntry.10791_to; char* to + }, ; 5905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10792_from, ; char* from + ptr @.TypeMapEntry.10793_to; char* to + }, ; 5906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10794_from, ; char* from + ptr @.TypeMapEntry.10795_to; char* to + }, ; 5907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10796_from, ; char* from + ptr @.TypeMapEntry.10793_to; char* to + }, ; 5908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10797_from, ; char* from + ptr @.TypeMapEntry.10798_to; char* to + }, ; 5909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10799_from, ; char* from + ptr @.TypeMapEntry.10800_to; char* to + }, ; 5910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10801_from, ; char* from + ptr @.TypeMapEntry.10800_to; char* to + }, ; 5911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10802_from, ; char* from + ptr @.TypeMapEntry.10803_to; char* to + }, ; 5912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10804_from, ; char* from + ptr @.TypeMapEntry.10805_to; char* to + }, ; 5913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10806_from, ; char* from + ptr @.TypeMapEntry.10807_to; char* to + }, ; 5914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10808_from, ; char* from + ptr @.TypeMapEntry.10809_to; char* to + }, ; 5915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10810_from, ; char* from + ptr @.TypeMapEntry.10807_to; char* to + }, ; 5916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10811_from, ; char* from + ptr @.TypeMapEntry.10812_to; char* to + }, ; 5917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10813_from, ; char* from + ptr @.TypeMapEntry.10814_to; char* to + }, ; 5918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10815_from, ; char* from + ptr @.TypeMapEntry.10816_to; char* to + }, ; 5919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10817_from, ; char* from + ptr @.TypeMapEntry.10818_to; char* to + }, ; 5920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10819_from, ; char* from + ptr @.TypeMapEntry.10820_to; char* to + }, ; 5921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10821_from, ; char* from + ptr @.TypeMapEntry.10822_to; char* to + }, ; 5922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10823_from, ; char* from + ptr @.TypeMapEntry.10824_to; char* to + }, ; 5923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10825_from, ; char* from + ptr @.TypeMapEntry.10824_to; char* to + }, ; 5924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10826_from, ; char* from + ptr @.TypeMapEntry.10827_to; char* to + }, ; 5925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10828_from, ; char* from + ptr @.TypeMapEntry.10829_to; char* to + }, ; 5926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10830_from, ; char* from + ptr @.TypeMapEntry.10831_to; char* to + }, ; 5927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10832_from, ; char* from + ptr @.TypeMapEntry.10833_to; char* to + }, ; 5928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10834_from, ; char* from + ptr @.TypeMapEntry.10831_to; char* to + }, ; 5929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10835_from, ; char* from + ptr @.TypeMapEntry.10836_to; char* to + }, ; 5930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10837_from, ; char* from + ptr @.TypeMapEntry.10838_to; char* to + }, ; 5931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10839_from, ; char* from + ptr @.TypeMapEntry.10840_to; char* to + }, ; 5932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10841_from, ; char* from + ptr @.TypeMapEntry.10842_to; char* to + }, ; 5933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10843_from, ; char* from + ptr @.TypeMapEntry.10842_to; char* to + }, ; 5934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10844_from, ; char* from + ptr @.TypeMapEntry.10845_to; char* to + }, ; 5935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10846_from, ; char* from + ptr @.TypeMapEntry.10845_to; char* to + }, ; 5936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10847_from, ; char* from + ptr @.TypeMapEntry.10848_to; char* to + }, ; 5937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10849_from, ; char* from + ptr @.TypeMapEntry.10848_to; char* to + }, ; 5938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10850_from, ; char* from + ptr @.TypeMapEntry.10851_to; char* to + }, ; 5939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10852_from, ; char* from + ptr @.TypeMapEntry.10851_to; char* to + }, ; 5940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10853_from, ; char* from + ptr @.TypeMapEntry.10854_to; char* to + }, ; 5941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10855_from, ; char* from + ptr @.TypeMapEntry.10856_to; char* to + }, ; 5942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10857_from, ; char* from + ptr @.TypeMapEntry.10854_to; char* to + }, ; 5943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10858_from, ; char* from + ptr @.TypeMapEntry.10859_to; char* to + }, ; 5944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10860_from, ; char* from + ptr @.TypeMapEntry.10861_to; char* to + }, ; 5945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10862_from, ; char* from + ptr @.TypeMapEntry.10863_to; char* to + }, ; 5946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10864_from, ; char* from + ptr @.TypeMapEntry.10865_to; char* to + }, ; 5947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10866_from, ; char* from + ptr @.TypeMapEntry.10867_to; char* to + }, ; 5948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10868_from, ; char* from + ptr @.TypeMapEntry.10869_to; char* to + }, ; 5949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10870_from, ; char* from + ptr @.TypeMapEntry.10871_to; char* to + }, ; 5950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10872_from, ; char* from + ptr @.TypeMapEntry.10873_to; char* to + }, ; 5951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10874_from, ; char* from + ptr @.TypeMapEntry.10873_to; char* to + }, ; 5952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10875_from, ; char* from + ptr @.TypeMapEntry.10876_to; char* to + }, ; 5953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10877_from, ; char* from + ptr @.TypeMapEntry.10878_to; char* to + }, ; 5954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10879_from, ; char* from + ptr @.TypeMapEntry.10880_to; char* to + }, ; 5955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10881_from, ; char* from + ptr @.TypeMapEntry.10882_to; char* to + }, ; 5956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10883_from, ; char* from + ptr @.TypeMapEntry.10884_to; char* to + }, ; 5957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10885_from, ; char* from + ptr @.TypeMapEntry.10886_to; char* to + }, ; 5958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10887_from, ; char* from + ptr @.TypeMapEntry.10888_to; char* to + }, ; 5959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10889_from, ; char* from + ptr @.TypeMapEntry.10888_to; char* to + }, ; 5960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10890_from, ; char* from + ptr @.TypeMapEntry.10891_to; char* to + }, ; 5961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10892_from, ; char* from + ptr @.TypeMapEntry.10893_to; char* to + }, ; 5962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10894_from, ; char* from + ptr @.TypeMapEntry.10891_to; char* to + }, ; 5963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10895_from, ; char* from + ptr @.TypeMapEntry.10896_to; char* to + }, ; 5964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10897_from, ; char* from + ptr @.TypeMapEntry.10898_to; char* to + }, ; 5965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10899_from, ; char* from + ptr @.TypeMapEntry.10900_to; char* to + }, ; 5966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10901_from, ; char* from + ptr @.TypeMapEntry.10902_to; char* to + }, ; 5967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10903_from, ; char* from + ptr @.TypeMapEntry.10902_to; char* to + }, ; 5968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10904_from, ; char* from + ptr @.TypeMapEntry.10905_to; char* to + }, ; 5969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10906_from, ; char* from + ptr @.TypeMapEntry.10905_to; char* to + }, ; 5970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10907_from, ; char* from + ptr @.TypeMapEntry.10908_to; char* to + }, ; 5971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10909_from, ; char* from + ptr @.TypeMapEntry.10908_to; char* to + }, ; 5972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10910_from, ; char* from + ptr @.TypeMapEntry.10911_to; char* to + }, ; 5973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10912_from, ; char* from + ptr @.TypeMapEntry.10913_to; char* to + }, ; 5974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10914_from, ; char* from + ptr @.TypeMapEntry.10915_to; char* to + }, ; 5975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10916_from, ; char* from + ptr @.TypeMapEntry.10917_to; char* to + }, ; 5976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10918_from, ; char* from + ptr @.TypeMapEntry.10919_to; char* to + }, ; 5977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10920_from, ; char* from + ptr @.TypeMapEntry.10921_to; char* to + }, ; 5978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10922_from, ; char* from + ptr @.TypeMapEntry.10923_to; char* to + }, ; 5979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10924_from, ; char* from + ptr @.TypeMapEntry.10925_to; char* to + }, ; 5980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10926_from, ; char* from + ptr @.TypeMapEntry.10925_to; char* to + }, ; 5981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10927_from, ; char* from + ptr @.TypeMapEntry.10928_to; char* to + }, ; 5982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10929_from, ; char* from + ptr @.TypeMapEntry.10930_to; char* to + }, ; 5983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10931_from, ; char* from + ptr @.TypeMapEntry.10930_to; char* to + }, ; 5984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10932_from, ; char* from + ptr @.TypeMapEntry.10933_to; char* to + }, ; 5985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10934_from, ; char* from + ptr @.TypeMapEntry.10935_to; char* to + }, ; 5986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10936_from, ; char* from + ptr @.TypeMapEntry.10935_to; char* to + }, ; 5987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10937_from, ; char* from + ptr @.TypeMapEntry.10938_to; char* to + }, ; 5988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10939_from, ; char* from + ptr @.TypeMapEntry.10940_to; char* to + }, ; 5989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10941_from, ; char* from + ptr @.TypeMapEntry.10942_to; char* to + }, ; 5990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10943_from, ; char* from + ptr @.TypeMapEntry.10944_to; char* to + }, ; 5991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10945_from, ; char* from + ptr @.TypeMapEntry.10946_to; char* to + }, ; 5992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10947_from, ; char* from + ptr @.TypeMapEntry.10948_to; char* to + }, ; 5993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10949_from, ; char* from + ptr @.TypeMapEntry.10950_to; char* to + }, ; 5994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10951_from, ; char* from + ptr @.TypeMapEntry.10952_to; char* to + }, ; 5995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10953_from, ; char* from + ptr @.TypeMapEntry.10954_to; char* to + }, ; 5996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10955_from, ; char* from + ptr @.TypeMapEntry.10956_to; char* to + }, ; 5997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10957_from, ; char* from + ptr @.TypeMapEntry.10958_to; char* to + }, ; 5998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10959_from, ; char* from + ptr @.TypeMapEntry.10960_to; char* to + }, ; 5999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10961_from, ; char* from + ptr @.TypeMapEntry.10962_to; char* to + }, ; 6000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10963_from, ; char* from + ptr @.TypeMapEntry.10962_to; char* to + }, ; 6001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10964_from, ; char* from + ptr @.TypeMapEntry.10965_to; char* to + }, ; 6002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10966_from, ; char* from + ptr @.TypeMapEntry.10965_to; char* to + }, ; 6003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10967_from, ; char* from + ptr @.TypeMapEntry.10968_to; char* to + }, ; 6004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10969_from, ; char* from + ptr @.TypeMapEntry.10970_to; char* to + }, ; 6005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10971_from, ; char* from + ptr @.TypeMapEntry.10972_to; char* to + }, ; 6006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10973_from, ; char* from + ptr @.TypeMapEntry.10974_to; char* to + }, ; 6007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10975_from, ; char* from + ptr @.TypeMapEntry.10976_to; char* to + }, ; 6008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10977_from, ; char* from + ptr @.TypeMapEntry.10978_to; char* to + }, ; 6009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10979_from, ; char* from + ptr @.TypeMapEntry.10980_to; char* to + }, ; 6010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10981_from, ; char* from + ptr @.TypeMapEntry.10982_to; char* to + }, ; 6011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10983_from, ; char* from + ptr @.TypeMapEntry.10984_to; char* to + }, ; 6012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10985_from, ; char* from + ptr @.TypeMapEntry.10986_to; char* to + }, ; 6013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10987_from, ; char* from + ptr @.TypeMapEntry.10988_to; char* to + }, ; 6014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10989_from, ; char* from + ptr @.TypeMapEntry.10990_to; char* to + }, ; 6015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10991_from, ; char* from + ptr @.TypeMapEntry.10992_to; char* to + }, ; 6016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10993_from, ; char* from + ptr @.TypeMapEntry.10994_to; char* to + }, ; 6017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10995_from, ; char* from + ptr @.TypeMapEntry.10996_to; char* to + }, ; 6018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10997_from, ; char* from + ptr @.TypeMapEntry.10998_to; char* to + }, ; 6019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10999_from, ; char* from + ptr @.TypeMapEntry.11000_to; char* to + }, ; 6020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11001_from, ; char* from + ptr @.TypeMapEntry.11000_to; char* to + }, ; 6021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11002_from, ; char* from + ptr @.TypeMapEntry.11003_to; char* to + }, ; 6022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11004_from, ; char* from + ptr @.TypeMapEntry.11003_to; char* to + }, ; 6023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11005_from, ; char* from + ptr @.TypeMapEntry.11006_to; char* to + }, ; 6024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11007_from, ; char* from + ptr @.TypeMapEntry.11006_to; char* to + }, ; 6025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11008_from, ; char* from + ptr @.TypeMapEntry.11009_to; char* to + }, ; 6026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11010_from, ; char* from + ptr @.TypeMapEntry.11011_to; char* to + }, ; 6027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11012_from, ; char* from + ptr @.TypeMapEntry.11013_to; char* to + }, ; 6028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11014_from, ; char* from + ptr @.TypeMapEntry.11015_to; char* to + }, ; 6029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11016_from, ; char* from + ptr @.TypeMapEntry.11017_to; char* to + }, ; 6030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11018_from, ; char* from + ptr @.TypeMapEntry.11019_to; char* to + }, ; 6031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11020_from, ; char* from + ptr @.TypeMapEntry.11021_to; char* to + }, ; 6032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11022_from, ; char* from + ptr @.TypeMapEntry.11023_to; char* to + }, ; 6033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11024_from, ; char* from + ptr @.TypeMapEntry.11025_to; char* to + }, ; 6034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11026_from, ; char* from + ptr @.TypeMapEntry.11027_to; char* to + }, ; 6035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11028_from, ; char* from + ptr @.TypeMapEntry.11029_to; char* to + }, ; 6036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11030_from, ; char* from + ptr @.TypeMapEntry.11031_to; char* to + }, ; 6037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11032_from, ; char* from + ptr @.TypeMapEntry.11029_to; char* to + }, ; 6038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11033_from, ; char* from + ptr @.TypeMapEntry.11034_to; char* to + }, ; 6039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11035_from, ; char* from + ptr @.TypeMapEntry.11036_to; char* to + }, ; 6040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11037_from, ; char* from + ptr @.TypeMapEntry.11036_to; char* to + }, ; 6041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11038_from, ; char* from + ptr @.TypeMapEntry.11039_to; char* to + }, ; 6042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11040_from, ; char* from + ptr @.TypeMapEntry.11039_to; char* to + }, ; 6043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11041_from, ; char* from + ptr @.TypeMapEntry.11042_to; char* to + }, ; 6044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11043_from, ; char* from + ptr @.TypeMapEntry.11042_to; char* to + }, ; 6045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11044_from, ; char* from + ptr @.TypeMapEntry.11045_to; char* to + }, ; 6046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11046_from, ; char* from + ptr @.TypeMapEntry.11045_to; char* to + }, ; 6047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11047_from, ; char* from + ptr @.TypeMapEntry.11048_to; char* to + }, ; 6048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11049_from, ; char* from + ptr @.TypeMapEntry.11048_to; char* to + }, ; 6049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11050_from, ; char* from + ptr @.TypeMapEntry.11051_to; char* to + }, ; 6050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11052_from, ; char* from + ptr @.TypeMapEntry.11051_to; char* to + }, ; 6051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11053_from, ; char* from + ptr @.TypeMapEntry.11054_to; char* to + }, ; 6052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11055_from, ; char* from + ptr @.TypeMapEntry.11054_to; char* to + }, ; 6053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11056_from, ; char* from + ptr @.TypeMapEntry.11057_to; char* to + }, ; 6054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11058_from, ; char* from + ptr @.TypeMapEntry.11057_to; char* to + }, ; 6055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11059_from, ; char* from + ptr @.TypeMapEntry.11060_to; char* to + }, ; 6056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11061_from, ; char* from + ptr @.TypeMapEntry.11060_to; char* to + }, ; 6057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11062_from, ; char* from + ptr @.TypeMapEntry.11063_to; char* to + }, ; 6058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11064_from, ; char* from + ptr @.TypeMapEntry.11063_to; char* to + }, ; 6059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11065_from, ; char* from + ptr @.TypeMapEntry.11066_to; char* to + }, ; 6060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11067_from, ; char* from + ptr @.TypeMapEntry.11066_to; char* to + }, ; 6061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11068_from, ; char* from + ptr @.TypeMapEntry.11069_to; char* to + }, ; 6062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11070_from, ; char* from + ptr @.TypeMapEntry.11069_to; char* to + }, ; 6063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11071_from, ; char* from + ptr @.TypeMapEntry.11072_to; char* to + }, ; 6064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11073_from, ; char* from + ptr @.TypeMapEntry.11072_to; char* to + }, ; 6065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11074_from, ; char* from + ptr @.TypeMapEntry.11075_to; char* to + }, ; 6066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11076_from, ; char* from + ptr @.TypeMapEntry.11075_to; char* to + }, ; 6067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11077_from, ; char* from + ptr @.TypeMapEntry.11078_to; char* to + }, ; 6068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11079_from, ; char* from + ptr @.TypeMapEntry.11078_to; char* to + }, ; 6069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11080_from, ; char* from + ptr @.TypeMapEntry.11081_to; char* to + }, ; 6070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11082_from, ; char* from + ptr @.TypeMapEntry.11081_to; char* to + }, ; 6071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11083_from, ; char* from + ptr @.TypeMapEntry.11084_to; char* to + }, ; 6072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11085_from, ; char* from + ptr @.TypeMapEntry.11084_to; char* to + }, ; 6073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11086_from, ; char* from + ptr @.TypeMapEntry.11087_to; char* to + }, ; 6074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11088_from, ; char* from + ptr @.TypeMapEntry.11087_to; char* to + }, ; 6075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11089_from, ; char* from + ptr @.TypeMapEntry.11090_to; char* to + }, ; 6076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11091_from, ; char* from + ptr @.TypeMapEntry.11090_to; char* to + }, ; 6077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11092_from, ; char* from + ptr @.TypeMapEntry.11029_to; char* to + }, ; 6078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11093_from, ; char* from + ptr @.TypeMapEntry.11029_to; char* to + }, ; 6079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11094_from, ; char* from + ptr @.TypeMapEntry.11095_to; char* to + }, ; 6080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11096_from, ; char* from + ptr @.TypeMapEntry.11095_to; char* to + }, ; 6081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11097_from, ; char* from + ptr @.TypeMapEntry.11098_to; char* to + }, ; 6082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11099_from, ; char* from + ptr @.TypeMapEntry.11098_to; char* to + }, ; 6083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11100_from, ; char* from + ptr @.TypeMapEntry.11101_to; char* to + }, ; 6084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11102_from, ; char* from + ptr @.TypeMapEntry.11101_to; char* to + }, ; 6085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11103_from, ; char* from + ptr @.TypeMapEntry.11104_to; char* to + }, ; 6086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11105_from, ; char* from + ptr @.TypeMapEntry.11104_to; char* to + }, ; 6087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11106_from, ; char* from + ptr @.TypeMapEntry.11107_to; char* to + }, ; 6088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11108_from, ; char* from + ptr @.TypeMapEntry.11107_to; char* to + }, ; 6089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11109_from, ; char* from + ptr @.TypeMapEntry.11110_to; char* to + }, ; 6090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11111_from, ; char* from + ptr @.TypeMapEntry.11110_to; char* to + }, ; 6091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11112_from, ; char* from + ptr @.TypeMapEntry.11113_to; char* to + }, ; 6092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11114_from, ; char* from + ptr @.TypeMapEntry.11113_to; char* to + }, ; 6093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11115_from, ; char* from + ptr @.TypeMapEntry.11116_to; char* to + }, ; 6094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11117_from, ; char* from + ptr @.TypeMapEntry.11116_to; char* to + }, ; 6095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11118_from, ; char* from + ptr @.TypeMapEntry.11119_to; char* to + }, ; 6096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11120_from, ; char* from + ptr @.TypeMapEntry.11119_to; char* to + }, ; 6097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11121_from, ; char* from + ptr @.TypeMapEntry.11122_to; char* to + }, ; 6098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11123_from, ; char* from + ptr @.TypeMapEntry.11122_to; char* to + }, ; 6099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11124_from, ; char* from + ptr @.TypeMapEntry.11125_to; char* to + }, ; 6100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11126_from, ; char* from + ptr @.TypeMapEntry.11125_to; char* to + }, ; 6101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11127_from, ; char* from + ptr @.TypeMapEntry.11128_to; char* to + }, ; 6102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11129_from, ; char* from + ptr @.TypeMapEntry.11128_to; char* to + }, ; 6103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11130_from, ; char* from + ptr @.TypeMapEntry.11131_to; char* to + }, ; 6104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11132_from, ; char* from + ptr @.TypeMapEntry.11133_to; char* to + }, ; 6105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11134_from, ; char* from + ptr @.TypeMapEntry.11133_to; char* to + }, ; 6106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11135_from, ; char* from + ptr @.TypeMapEntry.11136_to; char* to + }, ; 6107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11137_from, ; char* from + ptr @.TypeMapEntry.11136_to; char* to + }, ; 6108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11138_from, ; char* from + ptr @.TypeMapEntry.11131_to; char* to + }, ; 6109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11139_from, ; char* from + ptr @.TypeMapEntry.11140_to; char* to + }, ; 6110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11141_from, ; char* from + ptr @.TypeMapEntry.11140_to; char* to + }, ; 6111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11142_from, ; char* from + ptr @.TypeMapEntry.11143_to; char* to + }, ; 6112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11144_from, ; char* from + ptr @.TypeMapEntry.11143_to; char* to + }, ; 6113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11145_from, ; char* from + ptr @.TypeMapEntry.11146_to; char* to + }, ; 6114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11147_from, ; char* from + ptr @.TypeMapEntry.11146_to; char* to + }, ; 6115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11148_from, ; char* from + ptr @.TypeMapEntry.11149_to; char* to + }, ; 6116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11150_from, ; char* from + ptr @.TypeMapEntry.11149_to; char* to + }, ; 6117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11151_from, ; char* from + ptr @.TypeMapEntry.11152_to; char* to + }, ; 6118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11153_from, ; char* from + ptr @.TypeMapEntry.11152_to; char* to + }, ; 6119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11154_from, ; char* from + ptr @.TypeMapEntry.11155_to; char* to + }, ; 6120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11156_from, ; char* from + ptr @.TypeMapEntry.11155_to; char* to + }, ; 6121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11157_from, ; char* from + ptr @.TypeMapEntry.11158_to; char* to + }, ; 6122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11159_from, ; char* from + ptr @.TypeMapEntry.11158_to; char* to + }, ; 6123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11160_from, ; char* from + ptr @.TypeMapEntry.11161_to; char* to + }, ; 6124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11162_from, ; char* from + ptr @.TypeMapEntry.11161_to; char* to + }, ; 6125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11163_from, ; char* from + ptr @.TypeMapEntry.11164_to; char* to + }, ; 6126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11165_from, ; char* from + ptr @.TypeMapEntry.11164_to; char* to + }, ; 6127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11166_from, ; char* from + ptr @.TypeMapEntry.11167_to; char* to + }, ; 6128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11168_from, ; char* from + ptr @.TypeMapEntry.11167_to; char* to + }, ; 6129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11169_from, ; char* from + ptr @.TypeMapEntry.11170_to; char* to + }, ; 6130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11171_from, ; char* from + ptr @.TypeMapEntry.11170_to; char* to + }, ; 6131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11172_from, ; char* from + ptr @.TypeMapEntry.11173_to; char* to + }, ; 6132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11174_from, ; char* from + ptr @.TypeMapEntry.11173_to; char* to + }, ; 6133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11175_from, ; char* from + ptr @.TypeMapEntry.11176_to; char* to + }, ; 6134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11177_from, ; char* from + ptr @.TypeMapEntry.11176_to; char* to + }, ; 6135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11178_from, ; char* from + ptr @.TypeMapEntry.11179_to; char* to + }, ; 6136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11180_from, ; char* from + ptr @.TypeMapEntry.11179_to; char* to + }, ; 6137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11181_from, ; char* from + ptr @.TypeMapEntry.11182_to; char* to + }, ; 6138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11183_from, ; char* from + ptr @.TypeMapEntry.11182_to; char* to + }, ; 6139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11184_from, ; char* from + ptr @.TypeMapEntry.11185_to; char* to + }, ; 6140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11186_from, ; char* from + ptr @.TypeMapEntry.11185_to; char* to + }, ; 6141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11187_from, ; char* from + ptr @.TypeMapEntry.11188_to; char* to + }, ; 6142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11189_from, ; char* from + ptr @.TypeMapEntry.11188_to; char* to + }, ; 6143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11190_from, ; char* from + ptr @.TypeMapEntry.11191_to; char* to + }, ; 6144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11192_from, ; char* from + ptr @.TypeMapEntry.11191_to; char* to + }, ; 6145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11193_from, ; char* from + ptr @.TypeMapEntry.11194_to; char* to + }, ; 6146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11195_from, ; char* from + ptr @.TypeMapEntry.11194_to; char* to + }, ; 6147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11196_from, ; char* from + ptr @.TypeMapEntry.11197_to; char* to + }, ; 6148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11198_from, ; char* from + ptr @.TypeMapEntry.11197_to; char* to + }, ; 6149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11199_from, ; char* from + ptr @.TypeMapEntry.11200_to; char* to + }, ; 6150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11201_from, ; char* from + ptr @.TypeMapEntry.11202_to; char* to + }, ; 6151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11203_from, ; char* from + ptr @.TypeMapEntry.11202_to; char* to + }, ; 6152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11204_from, ; char* from + ptr @.TypeMapEntry.11200_to; char* to + }, ; 6153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11205_from, ; char* from + ptr @.TypeMapEntry.11206_to; char* to + }, ; 6154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11207_from, ; char* from + ptr @.TypeMapEntry.11206_to; char* to + }, ; 6155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11208_from, ; char* from + ptr @.TypeMapEntry.11209_to; char* to + }, ; 6156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11210_from, ; char* from + ptr @.TypeMapEntry.11209_to; char* to + }, ; 6157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11211_from, ; char* from + ptr @.TypeMapEntry.11212_to; char* to + }, ; 6158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11213_from, ; char* from + ptr @.TypeMapEntry.11212_to; char* to + }, ; 6159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11214_from, ; char* from + ptr @.TypeMapEntry.11215_to; char* to + }, ; 6160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11216_from, ; char* from + ptr @.TypeMapEntry.11215_to; char* to + }, ; 6161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11217_from, ; char* from + ptr @.TypeMapEntry.11218_to; char* to + }, ; 6162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11219_from, ; char* from + ptr @.TypeMapEntry.11218_to; char* to + }, ; 6163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11220_from, ; char* from + ptr @.TypeMapEntry.11221_to; char* to + }, ; 6164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11222_from, ; char* from + ptr @.TypeMapEntry.11221_to; char* to + }, ; 6165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11223_from, ; char* from + ptr @.TypeMapEntry.11224_to; char* to + }, ; 6166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11225_from, ; char* from + ptr @.TypeMapEntry.11224_to; char* to + }, ; 6167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11226_from, ; char* from + ptr @.TypeMapEntry.11227_to; char* to + }, ; 6168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11228_from, ; char* from + ptr @.TypeMapEntry.11227_to; char* to + }, ; 6169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11229_from, ; char* from + ptr @.TypeMapEntry.11230_to; char* to + }, ; 6170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11231_from, ; char* from + ptr @.TypeMapEntry.11230_to; char* to + }, ; 6171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11232_from, ; char* from + ptr @.TypeMapEntry.11233_to; char* to + }, ; 6172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11234_from, ; char* from + ptr @.TypeMapEntry.11233_to; char* to + }, ; 6173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11235_from, ; char* from + ptr @.TypeMapEntry.11236_to; char* to + }, ; 6174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11237_from, ; char* from + ptr @.TypeMapEntry.11236_to; char* to + }, ; 6175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11238_from, ; char* from + ptr @.TypeMapEntry.11239_to; char* to + }, ; 6176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11240_from, ; char* from + ptr @.TypeMapEntry.11239_to; char* to + }, ; 6177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11241_from, ; char* from + ptr @.TypeMapEntry.11242_to; char* to + }, ; 6178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11243_from, ; char* from + ptr @.TypeMapEntry.11242_to; char* to + }, ; 6179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11244_from, ; char* from + ptr @.TypeMapEntry.11245_to; char* to + }, ; 6180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11246_from, ; char* from + ptr @.TypeMapEntry.11245_to; char* to + }, ; 6181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11247_from, ; char* from + ptr @.TypeMapEntry.11248_to; char* to + }, ; 6182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11249_from, ; char* from + ptr @.TypeMapEntry.11248_to; char* to + }, ; 6183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11250_from, ; char* from + ptr @.TypeMapEntry.11251_to; char* to + }, ; 6184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11252_from, ; char* from + ptr @.TypeMapEntry.11251_to; char* to + }, ; 6185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11253_from, ; char* from + ptr @.TypeMapEntry.11254_to; char* to + }, ; 6186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11255_from, ; char* from + ptr @.TypeMapEntry.11254_to; char* to + }, ; 6187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11256_from, ; char* from + ptr @.TypeMapEntry.11257_to; char* to + }, ; 6188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11258_from, ; char* from + ptr @.TypeMapEntry.11257_to; char* to + }, ; 6189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11259_from, ; char* from + ptr @.TypeMapEntry.11260_to; char* to + }, ; 6190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11261_from, ; char* from + ptr @.TypeMapEntry.11262_to; char* to + }, ; 6191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11263_from, ; char* from + ptr @.TypeMapEntry.11264_to; char* to + }, ; 6192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11265_from, ; char* from + ptr @.TypeMapEntry.11251_to; char* to + }, ; 6193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11266_from, ; char* from + ptr @.TypeMapEntry.11267_to; char* to + }, ; 6194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11268_from, ; char* from + ptr @.TypeMapEntry.11251_to; char* to + }, ; 6195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11269_from, ; char* from + ptr @.TypeMapEntry.11270_to; char* to + }, ; 6196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11271_from, ; char* from + ptr @.TypeMapEntry.11270_to; char* to + }, ; 6197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11272_from, ; char* from + ptr @.TypeMapEntry.11273_to; char* to + }, ; 6198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11274_from, ; char* from + ptr @.TypeMapEntry.11273_to; char* to + }, ; 6199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11275_from, ; char* from + ptr @.TypeMapEntry.11276_to; char* to + }, ; 6200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11277_from, ; char* from + ptr @.TypeMapEntry.11278_to; char* to + }, ; 6201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11279_from, ; char* from + ptr @.TypeMapEntry.11276_to; char* to + }, ; 6202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11280_from, ; char* from + ptr @.TypeMapEntry.11281_to; char* to + }, ; 6203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11282_from, ; char* from + ptr @.TypeMapEntry.11283_to; char* to + }, ; 6204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11284_from, ; char* from + ptr @.TypeMapEntry.11281_to; char* to + }, ; 6205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11285_from, ; char* from + ptr @.TypeMapEntry.11286_to; char* to + }, ; 6206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11287_from, ; char* from + ptr @.TypeMapEntry.11288_to; char* to + }, ; 6207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11289_from, ; char* from + ptr @.TypeMapEntry.11286_to; char* to + }, ; 6208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11290_from, ; char* from + ptr @.TypeMapEntry.11291_to; char* to + }, ; 6209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11292_from, ; char* from + ptr @.TypeMapEntry.11293_to; char* to + }, ; 6210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11294_from, ; char* from + ptr @.TypeMapEntry.11293_to; char* to + }, ; 6211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11295_from, ; char* from + ptr @.TypeMapEntry.11296_to; char* to + }, ; 6212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11297_from, ; char* from + ptr @.TypeMapEntry.11298_to; char* to + }, ; 6213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11299_from, ; char* from + ptr @.TypeMapEntry.11298_to; char* to + }, ; 6214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11300_from, ; char* from + ptr @.TypeMapEntry.11301_to; char* to + }, ; 6215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11302_from, ; char* from + ptr @.TypeMapEntry.11301_to; char* to + }, ; 6216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11303_from, ; char* from + ptr @.TypeMapEntry.11304_to; char* to + }, ; 6217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11305_from, ; char* from + ptr @.TypeMapEntry.11296_to; char* to + }, ; 6218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11306_from, ; char* from + ptr @.TypeMapEntry.11307_to; char* to + }, ; 6219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11308_from, ; char* from + ptr @.TypeMapEntry.11309_to; char* to + }, ; 6220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11310_from, ; char* from + ptr @.TypeMapEntry.11311_to; char* to + }, ; 6221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11312_from, ; char* from + ptr @.TypeMapEntry.11313_to; char* to + }, ; 6222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11314_from, ; char* from + ptr @.TypeMapEntry.11315_to; char* to + }, ; 6223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11316_from, ; char* from + ptr @.TypeMapEntry.11317_to; char* to + }, ; 6224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11318_from, ; char* from + ptr @.TypeMapEntry.11319_to; char* to + }, ; 6225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11320_from, ; char* from + ptr @.TypeMapEntry.11319_to; char* to + }, ; 6226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11321_from, ; char* from + ptr @.TypeMapEntry.11322_to; char* to + }, ; 6227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11323_from, ; char* from + ptr @.TypeMapEntry.11322_to; char* to + }, ; 6228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11324_from, ; char* from + ptr @.TypeMapEntry.11325_to; char* to + }, ; 6229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11326_from, ; char* from + ptr @.TypeMapEntry.11327_to; char* to + }, ; 6230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11328_from, ; char* from + ptr @.TypeMapEntry.11329_to; char* to + }, ; 6231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11330_from, ; char* from + ptr @.TypeMapEntry.11331_to; char* to + }, ; 6232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11332_from, ; char* from + ptr @.TypeMapEntry.11333_to; char* to + }, ; 6233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11334_from, ; char* from + ptr @.TypeMapEntry.11333_to; char* to + }, ; 6234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11335_from, ; char* from + ptr @.TypeMapEntry.11336_to; char* to + }, ; 6235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11337_from, ; char* from + ptr @.TypeMapEntry.11338_to; char* to + }, ; 6236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11339_from, ; char* from + ptr @.TypeMapEntry.11340_to; char* to + }, ; 6237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11341_from, ; char* from + ptr @.TypeMapEntry.11342_to; char* to + }, ; 6238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11343_from, ; char* from + ptr @.TypeMapEntry.11344_to; char* to + }, ; 6239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11345_from, ; char* from + ptr @.TypeMapEntry.11346_to; char* to + }, ; 6240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11347_from, ; char* from + ptr @.TypeMapEntry.11348_to; char* to + }, ; 6241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11349_from, ; char* from + ptr @.TypeMapEntry.11350_to; char* to + }, ; 6242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11351_from, ; char* from + ptr @.TypeMapEntry.11352_to; char* to + }, ; 6243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11353_from, ; char* from + ptr @.TypeMapEntry.11354_to; char* to + }, ; 6244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11355_from, ; char* from + ptr @.TypeMapEntry.11354_to; char* to + }, ; 6245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11356_from, ; char* from + ptr @.TypeMapEntry.11357_to; char* to + }, ; 6246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11358_from, ; char* from + ptr @.TypeMapEntry.11359_to; char* to + }, ; 6247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11360_from, ; char* from + ptr @.TypeMapEntry.11361_to; char* to + }, ; 6248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11362_from, ; char* from + ptr @.TypeMapEntry.11363_to; char* to + }, ; 6249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11364_from, ; char* from + ptr @.TypeMapEntry.11365_to; char* to + }, ; 6250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11366_from, ; char* from + ptr @.TypeMapEntry.11367_to; char* to + }, ; 6251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11368_from, ; char* from + ptr @.TypeMapEntry.11367_to; char* to + }, ; 6252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11369_from, ; char* from + ptr @.TypeMapEntry.11370_to; char* to + }, ; 6253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11371_from, ; char* from + ptr @.TypeMapEntry.11370_to; char* to + }, ; 6254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11372_from, ; char* from + ptr @.TypeMapEntry.11373_to; char* to + }, ; 6255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11374_from, ; char* from + ptr @.TypeMapEntry.11375_to; char* to + }, ; 6256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11376_from, ; char* from + ptr @.TypeMapEntry.11375_to; char* to + }, ; 6257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11377_from, ; char* from + ptr @.TypeMapEntry.11378_to; char* to + }, ; 6258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11379_from, ; char* from + ptr @.TypeMapEntry.11380_to; char* to + }, ; 6259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11381_from, ; char* from + ptr @.TypeMapEntry.11380_to; char* to + }, ; 6260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11382_from, ; char* from + ptr @.TypeMapEntry.11383_to; char* to + }, ; 6261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11384_from, ; char* from + ptr @.TypeMapEntry.11385_to; char* to + }, ; 6262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11386_from, ; char* from + ptr @.TypeMapEntry.11385_to; char* to + }, ; 6263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11387_from, ; char* from + ptr @.TypeMapEntry.11388_to; char* to + }, ; 6264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11389_from, ; char* from + ptr @.TypeMapEntry.11390_to; char* to + }, ; 6265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11391_from, ; char* from + ptr @.TypeMapEntry.11392_to; char* to + }, ; 6266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11393_from, ; char* from + ptr @.TypeMapEntry.11392_to; char* to + }, ; 6267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11394_from, ; char* from + ptr @.TypeMapEntry.11390_to; char* to + }, ; 6268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11395_from, ; char* from + ptr @.TypeMapEntry.11396_to; char* to + }, ; 6269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11397_from, ; char* from + ptr @.TypeMapEntry.11396_to; char* to + }, ; 6270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11398_from, ; char* from + ptr @.TypeMapEntry.11399_to; char* to + }, ; 6271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11400_from, ; char* from + ptr @.TypeMapEntry.11399_to; char* to + }, ; 6272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11401_from, ; char* from + ptr @.TypeMapEntry.11402_to; char* to + }, ; 6273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11403_from, ; char* from + ptr @.TypeMapEntry.11402_to; char* to + }, ; 6274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11404_from, ; char* from + ptr @.TypeMapEntry.11405_to; char* to + }, ; 6275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11406_from, ; char* from + ptr @.TypeMapEntry.11407_to; char* to + }, ; 6276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11408_from, ; char* from + ptr @.TypeMapEntry.11409_to; char* to + }, ; 6277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11410_from, ; char* from + ptr @.TypeMapEntry.11411_to; char* to + }, ; 6278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11412_from, ; char* from + ptr @.TypeMapEntry.11411_to; char* to + }, ; 6279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11413_from, ; char* from + ptr @.TypeMapEntry.11414_to; char* to + }, ; 6280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11415_from, ; char* from + ptr @.TypeMapEntry.11414_to; char* to + }, ; 6281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11416_from, ; char* from + ptr @.TypeMapEntry.11417_to; char* to + }, ; 6282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11418_from, ; char* from + ptr @.TypeMapEntry.11419_to; char* to + }, ; 6283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11420_from, ; char* from + ptr @.TypeMapEntry.11421_to; char* to + }, ; 6284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11422_from, ; char* from + ptr @.TypeMapEntry.11423_to; char* to + }, ; 6285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11424_from, ; char* from + ptr @.TypeMapEntry.11421_to; char* to + }, ; 6286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11425_from, ; char* from + ptr @.TypeMapEntry.11426_to; char* to + }, ; 6287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11427_from, ; char* from + ptr @.TypeMapEntry.11428_to; char* to + }, ; 6288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11429_from, ; char* from + ptr @.TypeMapEntry.11430_to; char* to + }, ; 6289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11431_from, ; char* from + ptr @.TypeMapEntry.11432_to; char* to + }, ; 6290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11433_from, ; char* from + ptr @.TypeMapEntry.11434_to; char* to + }, ; 6291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11435_from, ; char* from + ptr @.TypeMapEntry.11436_to; char* to + }, ; 6292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11437_from, ; char* from + ptr @.TypeMapEntry.11438_to; char* to + }, ; 6293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11439_from, ; char* from + ptr @.TypeMapEntry.11440_to; char* to + }, ; 6294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11441_from, ; char* from + ptr @.TypeMapEntry.11442_to; char* to + }, ; 6295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11443_from, ; char* from + ptr @.TypeMapEntry.11444_to; char* to + }, ; 6296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11445_from, ; char* from + ptr @.TypeMapEntry.11444_to; char* to + }, ; 6297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11446_from, ; char* from + ptr @.TypeMapEntry.11447_to; char* to + }, ; 6298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11448_from, ; char* from + ptr @.TypeMapEntry.11449_to; char* to + }, ; 6299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11450_from, ; char* from + ptr @.TypeMapEntry.11451_to; char* to + }, ; 6300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11452_from, ; char* from + ptr @.TypeMapEntry.11451_to; char* to + }, ; 6301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11453_from, ; char* from + ptr @.TypeMapEntry.11454_to; char* to + }, ; 6302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11455_from, ; char* from + ptr @.TypeMapEntry.11456_to; char* to + }, ; 6303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11457_from, ; char* from + ptr @.TypeMapEntry.11458_to; char* to + }, ; 6304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11459_from, ; char* from + ptr @.TypeMapEntry.11460_to; char* to + }, ; 6305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11461_from, ; char* from + ptr @.TypeMapEntry.11460_to; char* to + }, ; 6306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11462_from, ; char* from + ptr @.TypeMapEntry.11463_to; char* to + }, ; 6307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11464_from, ; char* from + ptr @.TypeMapEntry.11465_to; char* to + }, ; 6308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11466_from, ; char* from + ptr @.TypeMapEntry.11463_to; char* to + }, ; 6309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11467_from, ; char* from + ptr @.TypeMapEntry.11468_to; char* to + }, ; 6310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11469_from, ; char* from + ptr @.TypeMapEntry.11470_to; char* to + }, ; 6311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11471_from, ; char* from + ptr @.TypeMapEntry.11472_to; char* to + }, ; 6312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11473_from, ; char* from + ptr @.TypeMapEntry.11474_to; char* to + }, ; 6313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11475_from, ; char* from + ptr @.TypeMapEntry.11476_to; char* to + }, ; 6314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11477_from, ; char* from + ptr @.TypeMapEntry.11478_to; char* to + }, ; 6315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11479_from, ; char* from + ptr @.TypeMapEntry.11480_to; char* to + }, ; 6316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11481_from, ; char* from + ptr @.TypeMapEntry.11482_to; char* to + }, ; 6317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11483_from, ; char* from + ptr @.TypeMapEntry.11484_to; char* to + }, ; 6318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11485_from, ; char* from + ptr @.TypeMapEntry.11486_to; char* to + }, ; 6319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11487_from, ; char* from + ptr @.TypeMapEntry.11488_to; char* to + }, ; 6320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11489_from, ; char* from + ptr @.TypeMapEntry.11490_to; char* to + }, ; 6321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11491_from, ; char* from + ptr @.TypeMapEntry.11492_to; char* to + }, ; 6322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11493_from, ; char* from + ptr @.TypeMapEntry.11494_to; char* to + }, ; 6323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11495_from, ; char* from + ptr @.TypeMapEntry.11496_to; char* to + }, ; 6324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11497_from, ; char* from + ptr @.TypeMapEntry.11498_to; char* to + }, ; 6325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11499_from, ; char* from + ptr @.TypeMapEntry.11500_to; char* to + }, ; 6326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11501_from, ; char* from + ptr @.TypeMapEntry.11502_to; char* to + }, ; 6327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11503_from, ; char* from + ptr @.TypeMapEntry.11504_to; char* to + }, ; 6328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11505_from, ; char* from + ptr @.TypeMapEntry.11506_to; char* to + }, ; 6329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11507_from, ; char* from + ptr @.TypeMapEntry.11508_to; char* to + }, ; 6330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11509_from, ; char* from + ptr @.TypeMapEntry.11510_to; char* to + }, ; 6331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11511_from, ; char* from + ptr @.TypeMapEntry.11512_to; char* to + }, ; 6332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11513_from, ; char* from + ptr @.TypeMapEntry.11514_to; char* to + }, ; 6333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11515_from, ; char* from + ptr @.TypeMapEntry.11516_to; char* to + }, ; 6334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11517_from, ; char* from + ptr @.TypeMapEntry.11518_to; char* to + }, ; 6335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11519_from, ; char* from + ptr @.TypeMapEntry.11520_to; char* to + }, ; 6336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11521_from, ; char* from + ptr @.TypeMapEntry.11522_to; char* to + }, ; 6337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11523_from, ; char* from + ptr @.TypeMapEntry.11524_to; char* to + }, ; 6338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11525_from, ; char* from + ptr @.TypeMapEntry.11526_to; char* to + }, ; 6339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11527_from, ; char* from + ptr @.TypeMapEntry.11528_to; char* to + }, ; 6340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11529_from, ; char* from + ptr @.TypeMapEntry.11530_to; char* to + }, ; 6341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11531_from, ; char* from + ptr @.TypeMapEntry.11532_to; char* to + }, ; 6342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11533_from, ; char* from + ptr @.TypeMapEntry.11534_to; char* to + }, ; 6343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11535_from, ; char* from + ptr @.TypeMapEntry.11536_to; char* to + }, ; 6344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11537_from, ; char* from + ptr @.TypeMapEntry.11538_to; char* to + }, ; 6345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11539_from, ; char* from + ptr @.TypeMapEntry.11540_to; char* to + }, ; 6346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11541_from, ; char* from + ptr @.TypeMapEntry.11542_to; char* to + }, ; 6347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11543_from, ; char* from + ptr @.TypeMapEntry.11544_to; char* to + }, ; 6348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11545_from, ; char* from + ptr @.TypeMapEntry.11542_to; char* to + }, ; 6349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11546_from, ; char* from + ptr @.TypeMapEntry.11547_to; char* to + }, ; 6350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11548_from, ; char* from + ptr @.TypeMapEntry.11549_to; char* to + }, ; 6351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11550_from, ; char* from + ptr @.TypeMapEntry.11551_to; char* to + }, ; 6352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11552_from, ; char* from + ptr @.TypeMapEntry.11553_to; char* to + }, ; 6353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11554_from, ; char* from + ptr @.TypeMapEntry.11555_to; char* to + }, ; 6354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11556_from, ; char* from + ptr @.TypeMapEntry.11557_to; char* to + }, ; 6355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11558_from, ; char* from + ptr @.TypeMapEntry.11559_to; char* to + }, ; 6356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11560_from, ; char* from + ptr @.TypeMapEntry.11559_to; char* to + }, ; 6357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11561_from, ; char* from + ptr @.TypeMapEntry.11562_to; char* to + }, ; 6358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11563_from, ; char* from + ptr @.TypeMapEntry.11562_to; char* to + }, ; 6359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11564_from, ; char* from + ptr @.TypeMapEntry.11565_to; char* to + }, ; 6360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11566_from, ; char* from + ptr @.TypeMapEntry.11565_to; char* to + }, ; 6361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11567_from, ; char* from + ptr @.TypeMapEntry.11568_to; char* to + }, ; 6362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11569_from, ; char* from + ptr @.TypeMapEntry.11568_to; char* to + }, ; 6363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11570_from, ; char* from + ptr @.TypeMapEntry.11571_to; char* to + }, ; 6364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11572_from, ; char* from + ptr @.TypeMapEntry.11571_to; char* to + }, ; 6365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11573_from, ; char* from + ptr @.TypeMapEntry.11574_to; char* to + }, ; 6366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11575_from, ; char* from + ptr @.TypeMapEntry.11576_to; char* to + }, ; 6367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11577_from, ; char* from + ptr @.TypeMapEntry.11574_to; char* to + }, ; 6368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11578_from, ; char* from + ptr @.TypeMapEntry.11579_to; char* to + }, ; 6369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11580_from, ; char* from + ptr @.TypeMapEntry.11581_to; char* to + }, ; 6370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11582_from, ; char* from + ptr @.TypeMapEntry.11579_to; char* to + }, ; 6371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11583_from, ; char* from + ptr @.TypeMapEntry.11584_to; char* to + }, ; 6372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11585_from, ; char* from + ptr @.TypeMapEntry.11584_to; char* to + }, ; 6373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11586_from, ; char* from + ptr @.TypeMapEntry.11587_to; char* to + }, ; 6374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11588_from, ; char* from + ptr @.TypeMapEntry.11587_to; char* to + }, ; 6375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11589_from, ; char* from + ptr @.TypeMapEntry.11590_to; char* to + }, ; 6376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11591_from, ; char* from + ptr @.TypeMapEntry.11590_to; char* to + }, ; 6377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11592_from, ; char* from + ptr @.TypeMapEntry.11593_to; char* to + }, ; 6378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11594_from, ; char* from + ptr @.TypeMapEntry.11593_to; char* to + }, ; 6379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11595_from, ; char* from + ptr @.TypeMapEntry.11596_to; char* to + }, ; 6380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11597_from, ; char* from + ptr @.TypeMapEntry.11598_to; char* to + }, ; 6381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11599_from, ; char* from + ptr @.TypeMapEntry.11600_to; char* to + }, ; 6382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11601_from, ; char* from + ptr @.TypeMapEntry.11602_to; char* to + }, ; 6383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11603_from, ; char* from + ptr @.TypeMapEntry.11604_to; char* to + }, ; 6384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11605_from, ; char* from + ptr @.TypeMapEntry.11606_to; char* to + }, ; 6385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11607_from, ; char* from + ptr @.TypeMapEntry.11608_to; char* to + }, ; 6386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11609_from, ; char* from + ptr @.TypeMapEntry.11610_to; char* to + }, ; 6387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11611_from, ; char* from + ptr @.TypeMapEntry.11608_to; char* to + }, ; 6388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11612_from, ; char* from + ptr @.TypeMapEntry.11613_to; char* to + }, ; 6389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11614_from, ; char* from + ptr @.TypeMapEntry.11615_to; char* to + }, ; 6390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11616_from, ; char* from + ptr @.TypeMapEntry.11613_to; char* to + }, ; 6391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11617_from, ; char* from + ptr @.TypeMapEntry.11618_to; char* to + }, ; 6392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11619_from, ; char* from + ptr @.TypeMapEntry.11620_to; char* to + }, ; 6393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11621_from, ; char* from + ptr @.TypeMapEntry.11622_to; char* to + }, ; 6394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11623_from, ; char* from + ptr @.TypeMapEntry.11622_to; char* to + }, ; 6395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11624_from, ; char* from + ptr @.TypeMapEntry.11625_to; char* to + }, ; 6396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11626_from, ; char* from + ptr @.TypeMapEntry.11627_to; char* to + }, ; 6397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11628_from, ; char* from + ptr @.TypeMapEntry.11629_to; char* to + }, ; 6398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11630_from, ; char* from + ptr @.TypeMapEntry.11631_to; char* to + }, ; 6399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11632_from, ; char* from + ptr @.TypeMapEntry.11633_to; char* to + }, ; 6400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11634_from, ; char* from + ptr @.TypeMapEntry.11631_to; char* to + }, ; 6401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11635_from, ; char* from + ptr @.TypeMapEntry.11636_to; char* to + }, ; 6402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11637_from, ; char* from + ptr @.TypeMapEntry.11638_to; char* to + }, ; 6403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11639_from, ; char* from + ptr @.TypeMapEntry.11636_to; char* to + }, ; 6404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11640_from, ; char* from + ptr @.TypeMapEntry.11641_to; char* to + }, ; 6405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11642_from, ; char* from + ptr @.TypeMapEntry.11643_to; char* to + }, ; 6406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11644_from, ; char* from + ptr @.TypeMapEntry.11641_to; char* to + }, ; 6407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11645_from, ; char* from + ptr @.TypeMapEntry.11646_to; char* to + }, ; 6408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11647_from, ; char* from + ptr @.TypeMapEntry.11648_to; char* to + }, ; 6409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11649_from, ; char* from + ptr @.TypeMapEntry.11650_to; char* to + }, ; 6410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11651_from, ; char* from + ptr @.TypeMapEntry.11652_to; char* to + }, ; 6411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11653_from, ; char* from + ptr @.TypeMapEntry.11654_to; char* to + }, ; 6412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11655_from, ; char* from + ptr @.TypeMapEntry.11652_to; char* to + }, ; 6413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11656_from, ; char* from + ptr @.TypeMapEntry.11657_to; char* to + }, ; 6414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11658_from, ; char* from + ptr @.TypeMapEntry.11659_to; char* to + }, ; 6415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11660_from, ; char* from + ptr @.TypeMapEntry.11661_to; char* to + }, ; 6416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11662_from, ; char* from + ptr @.TypeMapEntry.11663_to; char* to + }, ; 6417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11664_from, ; char* from + ptr @.TypeMapEntry.11665_to; char* to + }, ; 6418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11666_from, ; char* from + ptr @.TypeMapEntry.11667_to; char* to + }, ; 6419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11668_from, ; char* from + ptr @.TypeMapEntry.11669_to; char* to + }, ; 6420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11670_from, ; char* from + ptr @.TypeMapEntry.11671_to; char* to + }, ; 6421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11672_from, ; char* from + ptr @.TypeMapEntry.11673_to; char* to + }, ; 6422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11674_from, ; char* from + ptr @.TypeMapEntry.11675_to; char* to + }, ; 6423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11676_from, ; char* from + ptr @.TypeMapEntry.11673_to; char* to + }, ; 6424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11677_from, ; char* from + ptr @.TypeMapEntry.11678_to; char* to + }, ; 6425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11679_from, ; char* from + ptr @.TypeMapEntry.11680_to; char* to + }, ; 6426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11681_from, ; char* from + ptr @.TypeMapEntry.11682_to; char* to + }, ; 6427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11683_from, ; char* from + ptr @.TypeMapEntry.11684_to; char* to + }, ; 6428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11685_from, ; char* from + ptr @.TypeMapEntry.11686_to; char* to + }, ; 6429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11687_from, ; char* from + ptr @.TypeMapEntry.11688_to; char* to + }, ; 6430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11689_from, ; char* from + ptr @.TypeMapEntry.11690_to; char* to + }, ; 6431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11691_from, ; char* from + ptr @.TypeMapEntry.11692_to; char* to + }, ; 6432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11693_from, ; char* from + ptr @.TypeMapEntry.11694_to; char* to + }, ; 6433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11695_from, ; char* from + ptr @.TypeMapEntry.11696_to; char* to + }, ; 6434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11697_from, ; char* from + ptr @.TypeMapEntry.11694_to; char* to + }, ; 6435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11698_from, ; char* from + ptr @.TypeMapEntry.11699_to; char* to + }, ; 6436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11700_from, ; char* from + ptr @.TypeMapEntry.11701_to; char* to + }, ; 6437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11702_from, ; char* from + ptr @.TypeMapEntry.11703_to; char* to + }, ; 6438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11704_from, ; char* from + ptr @.TypeMapEntry.11705_to; char* to + }, ; 6439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11706_from, ; char* from + ptr @.TypeMapEntry.11707_to; char* to + }, ; 6440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11708_from, ; char* from + ptr @.TypeMapEntry.11707_to; char* to + }, ; 6441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11709_from, ; char* from + ptr @.TypeMapEntry.11710_to; char* to + }, ; 6442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11711_from, ; char* from + ptr @.TypeMapEntry.11712_to; char* to + }, ; 6443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11713_from, ; char* from + ptr @.TypeMapEntry.11714_to; char* to + }, ; 6444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11715_from, ; char* from + ptr @.TypeMapEntry.11716_to; char* to + }, ; 6445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11717_from, ; char* from + ptr @.TypeMapEntry.11716_to; char* to + }, ; 6446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11718_from, ; char* from + ptr @.TypeMapEntry.11719_to; char* to + }, ; 6447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11720_from, ; char* from + ptr @.TypeMapEntry.11719_to; char* to + }, ; 6448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11721_from, ; char* from + ptr @.TypeMapEntry.11722_to; char* to + }, ; 6449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11723_from, ; char* from + ptr @.TypeMapEntry.11724_to; char* to + }, ; 6450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11725_from, ; char* from + ptr @.TypeMapEntry.11724_to; char* to + }, ; 6451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11726_from, ; char* from + ptr @.TypeMapEntry.11727_to; char* to + }, ; 6452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11728_from, ; char* from + ptr @.TypeMapEntry.11729_to; char* to + }, ; 6453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11730_from, ; char* from + ptr @.TypeMapEntry.11731_to; char* to + }, ; 6454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11732_from, ; char* from + ptr @.TypeMapEntry.11733_to; char* to + }, ; 6455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11734_from, ; char* from + ptr @.TypeMapEntry.11733_to; char* to + }, ; 6456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11735_from, ; char* from + ptr @.TypeMapEntry.11736_to; char* to + }, ; 6457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11737_from, ; char* from + ptr @.TypeMapEntry.11736_to; char* to + }, ; 6458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11738_from, ; char* from + ptr @.TypeMapEntry.11739_to; char* to + }, ; 6459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11740_from, ; char* from + ptr @.TypeMapEntry.11741_to; char* to + }, ; 6460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11742_from, ; char* from + ptr @.TypeMapEntry.11743_to; char* to + }, ; 6461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11744_from, ; char* from + ptr @.TypeMapEntry.11745_to; char* to + }, ; 6462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11746_from, ; char* from + ptr @.TypeMapEntry.11747_to; char* to + }, ; 6463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11748_from, ; char* from + ptr @.TypeMapEntry.11747_to; char* to + }, ; 6464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11749_from, ; char* from + ptr @.TypeMapEntry.11750_to; char* to + }, ; 6465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11751_from, ; char* from + ptr @.TypeMapEntry.11752_to; char* to + }, ; 6466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11753_from, ; char* from + ptr @.TypeMapEntry.11754_to; char* to + }, ; 6467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11755_from, ; char* from + ptr @.TypeMapEntry.11756_to; char* to + }, ; 6468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11757_from, ; char* from + ptr @.TypeMapEntry.11756_to; char* to + }, ; 6469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11758_from, ; char* from + ptr @.TypeMapEntry.11759_to; char* to + }, ; 6470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11760_from, ; char* from + ptr @.TypeMapEntry.11761_to; char* to + }, ; 6471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11762_from, ; char* from + ptr @.TypeMapEntry.11763_to; char* to + }, ; 6472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11764_from, ; char* from + ptr @.TypeMapEntry.11763_to; char* to + }, ; 6473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11765_from, ; char* from + ptr @.TypeMapEntry.11766_to; char* to + }, ; 6474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11767_from, ; char* from + ptr @.TypeMapEntry.11766_to; char* to + }, ; 6475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11768_from, ; char* from + ptr @.TypeMapEntry.11769_to; char* to + }, ; 6476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11770_from, ; char* from + ptr @.TypeMapEntry.11769_to; char* to + }, ; 6477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11771_from, ; char* from + ptr @.TypeMapEntry.11772_to; char* to + }, ; 6478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11773_from, ; char* from + ptr @.TypeMapEntry.11772_to; char* to + }, ; 6479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11774_from, ; char* from + ptr @.TypeMapEntry.11775_to; char* to + }, ; 6480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11776_from, ; char* from + ptr @.TypeMapEntry.11775_to; char* to + }, ; 6481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11777_from, ; char* from + ptr @.TypeMapEntry.11778_to; char* to + }, ; 6482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11779_from, ; char* from + ptr @.TypeMapEntry.11778_to; char* to + }, ; 6483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11780_from, ; char* from + ptr @.TypeMapEntry.11781_to; char* to + }, ; 6484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11782_from, ; char* from + ptr @.TypeMapEntry.11781_to; char* to + }, ; 6485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11783_from, ; char* from + ptr @.TypeMapEntry.11784_to; char* to + }, ; 6486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11785_from, ; char* from + ptr @.TypeMapEntry.11786_to; char* to + }, ; 6487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11787_from, ; char* from + ptr @.TypeMapEntry.11786_to; char* to + }, ; 6488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11788_from, ; char* from + ptr @.TypeMapEntry.11789_to; char* to + }, ; 6489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11790_from, ; char* from + ptr @.TypeMapEntry.11789_to; char* to + }, ; 6490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11791_from, ; char* from + ptr @.TypeMapEntry.11792_to; char* to + }, ; 6491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11793_from, ; char* from + ptr @.TypeMapEntry.11792_to; char* to + }, ; 6492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11794_from, ; char* from + ptr @.TypeMapEntry.11795_to; char* to + }, ; 6493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11796_from, ; char* from + ptr @.TypeMapEntry.11797_to; char* to + }, ; 6494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11798_from, ; char* from + ptr @.TypeMapEntry.11799_to; char* to + }, ; 6495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11800_from, ; char* from + ptr @.TypeMapEntry.11797_to; char* to + }, ; 6496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11801_from, ; char* from + ptr @.TypeMapEntry.11795_to; char* to + }, ; 6497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11802_from, ; char* from + ptr @.TypeMapEntry.11803_to; char* to + }, ; 6498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11804_from, ; char* from + ptr @.TypeMapEntry.11805_to; char* to + }, ; 6499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11806_from, ; char* from + ptr @.TypeMapEntry.11807_to; char* to + }, ; 6500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11808_from, ; char* from + ptr @.TypeMapEntry.11809_to; char* to + }, ; 6501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11810_from, ; char* from + ptr @.TypeMapEntry.11809_to; char* to + }, ; 6502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11811_from, ; char* from + ptr @.TypeMapEntry.11812_to; char* to + }, ; 6503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11813_from, ; char* from + ptr @.TypeMapEntry.11812_to; char* to + }, ; 6504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11814_from, ; char* from + ptr @.TypeMapEntry.11815_to; char* to + }, ; 6505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11816_from, ; char* from + ptr @.TypeMapEntry.11815_to; char* to + }, ; 6506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11817_from, ; char* from + ptr @.TypeMapEntry.11818_to; char* to + }, ; 6507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11819_from, ; char* from + ptr @.TypeMapEntry.11820_to; char* to + }, ; 6508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11821_from, ; char* from + ptr @.TypeMapEntry.11822_to; char* to + }, ; 6509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11823_from, ; char* from + ptr @.TypeMapEntry.11822_to; char* to + }, ; 6510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11824_from, ; char* from + ptr @.TypeMapEntry.11825_to; char* to + }, ; 6511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11826_from, ; char* from + ptr @.TypeMapEntry.11827_to; char* to + }, ; 6512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11828_from, ; char* from + ptr @.TypeMapEntry.11827_to; char* to + }, ; 6513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11829_from, ; char* from + ptr @.TypeMapEntry.11830_to; char* to + }, ; 6514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11831_from, ; char* from + ptr @.TypeMapEntry.11830_to; char* to + }, ; 6515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11832_from, ; char* from + ptr @.TypeMapEntry.11833_to; char* to + }, ; 6516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11834_from, ; char* from + ptr @.TypeMapEntry.11835_to; char* to + }, ; 6517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11836_from, ; char* from + ptr @.TypeMapEntry.11835_to; char* to + }, ; 6518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11837_from, ; char* from + ptr @.TypeMapEntry.11838_to; char* to + }, ; 6519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11839_from, ; char* from + ptr @.TypeMapEntry.11840_to; char* to + }, ; 6520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11841_from, ; char* from + ptr @.TypeMapEntry.11842_to; char* to + }, ; 6521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11843_from, ; char* from + ptr @.TypeMapEntry.11844_to; char* to + }, ; 6522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11845_from, ; char* from + ptr @.TypeMapEntry.11844_to; char* to + }, ; 6523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11846_from, ; char* from + ptr @.TypeMapEntry.11847_to; char* to + }, ; 6524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11848_from, ; char* from + ptr @.TypeMapEntry.11847_to; char* to + }, ; 6525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11849_from, ; char* from + ptr @.TypeMapEntry.11850_to; char* to + }, ; 6526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11851_from, ; char* from + ptr @.TypeMapEntry.11852_to; char* to + }, ; 6527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11853_from, ; char* from + ptr @.TypeMapEntry.11854_to; char* to + }, ; 6528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11855_from, ; char* from + ptr @.TypeMapEntry.11856_to; char* to + }, ; 6529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11857_from, ; char* from + ptr @.TypeMapEntry.11858_to; char* to + }, ; 6530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11859_from, ; char* from + ptr @.TypeMapEntry.11860_to; char* to + }, ; 6531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11861_from, ; char* from + ptr @.TypeMapEntry.11860_to; char* to + }, ; 6532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11862_from, ; char* from + ptr @.TypeMapEntry.11863_to; char* to + }, ; 6533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11864_from, ; char* from + ptr @.TypeMapEntry.11830_to; char* to + }, ; 6534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11865_from, ; char* from + ptr @.TypeMapEntry.11830_to; char* to + }, ; 6535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11866_from, ; char* from + ptr @.TypeMapEntry.11867_to; char* to + }, ; 6536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11868_from, ; char* from + ptr @.TypeMapEntry.11869_to; char* to + }, ; 6537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11870_from, ; char* from + ptr @.TypeMapEntry.11871_to; char* to + }, ; 6538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11872_from, ; char* from + ptr @.TypeMapEntry.11873_to; char* to + }, ; 6539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11874_from, ; char* from + ptr @.TypeMapEntry.11875_to; char* to + }, ; 6540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11876_from, ; char* from + ptr @.TypeMapEntry.11877_to; char* to + }, ; 6541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11878_from, ; char* from + ptr @.TypeMapEntry.11879_to; char* to + }, ; 6542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11880_from, ; char* from + ptr @.TypeMapEntry.11875_to; char* to + }, ; 6543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11881_from, ; char* from + ptr @.TypeMapEntry.11882_to; char* to + }, ; 6544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11883_from, ; char* from + ptr @.TypeMapEntry.11884_to; char* to + }, ; 6545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11885_from, ; char* from + ptr @.TypeMapEntry.11886_to; char* to + }, ; 6546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11887_from, ; char* from + ptr @.TypeMapEntry.11888_to; char* to + }, ; 6547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11889_from, ; char* from + ptr @.TypeMapEntry.11890_to; char* to + }, ; 6548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11891_from, ; char* from + ptr @.TypeMapEntry.11892_to; char* to + }, ; 6549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11893_from, ; char* from + ptr @.TypeMapEntry.11894_to; char* to + }, ; 6550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11895_from, ; char* from + ptr @.TypeMapEntry.11896_to; char* to + }, ; 6551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11897_from, ; char* from + ptr @.TypeMapEntry.11898_to; char* to + }, ; 6552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11899_from, ; char* from + ptr @.TypeMapEntry.11898_to; char* to + }, ; 6553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11900_from, ; char* from + ptr @.TypeMapEntry.11901_to; char* to + }, ; 6554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11902_from, ; char* from + ptr @.TypeMapEntry.11903_to; char* to + }, ; 6555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11904_from, ; char* from + ptr @.TypeMapEntry.11905_to; char* to + }, ; 6556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11906_from, ; char* from + ptr @.TypeMapEntry.11905_to; char* to + }, ; 6557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11907_from, ; char* from + ptr @.TypeMapEntry.11908_to; char* to + }, ; 6558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11909_from, ; char* from + ptr @.TypeMapEntry.11910_to; char* to + }, ; 6559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11911_from, ; char* from + ptr @.TypeMapEntry.11912_to; char* to + }, ; 6560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11913_from, ; char* from + ptr @.TypeMapEntry.11912_to; char* to + }, ; 6561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11914_from, ; char* from + ptr @.TypeMapEntry.11915_to; char* to + }, ; 6562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11916_from, ; char* from + ptr @.TypeMapEntry.11917_to; char* to + }, ; 6563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11918_from, ; char* from + ptr @.TypeMapEntry.11917_to; char* to + }, ; 6564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11919_from, ; char* from + ptr @.TypeMapEntry.11920_to; char* to + }, ; 6565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11921_from, ; char* from + ptr @.TypeMapEntry.11922_to; char* to + }, ; 6566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11923_from, ; char* from + ptr @.TypeMapEntry.11922_to; char* to + }, ; 6567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11924_from, ; char* from + ptr @.TypeMapEntry.11925_to; char* to + }, ; 6568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11926_from, ; char* from + ptr @.TypeMapEntry.11927_to; char* to + }, ; 6569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11928_from, ; char* from + ptr @.TypeMapEntry.11927_to; char* to + }, ; 6570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11929_from, ; char* from + ptr @.TypeMapEntry.11930_to; char* to + }, ; 6571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11931_from, ; char* from + ptr @.TypeMapEntry.11932_to; char* to + }, ; 6572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11933_from, ; char* from + ptr @.TypeMapEntry.11932_to; char* to + }, ; 6573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11934_from, ; char* from + ptr @.TypeMapEntry.11935_to; char* to + }, ; 6574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11936_from, ; char* from + ptr @.TypeMapEntry.11937_to; char* to + }, ; 6575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11938_from, ; char* from + ptr @.TypeMapEntry.11937_to; char* to + }, ; 6576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11939_from, ; char* from + ptr @.TypeMapEntry.11940_to; char* to + }, ; 6577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11941_from, ; char* from + ptr @.TypeMapEntry.11942_to; char* to + }, ; 6578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11943_from, ; char* from + ptr @.TypeMapEntry.11942_to; char* to + }, ; 6579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11944_from, ; char* from + ptr @.TypeMapEntry.11945_to; char* to + }, ; 6580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11946_from, ; char* from + ptr @.TypeMapEntry.11947_to; char* to + }, ; 6581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11948_from, ; char* from + ptr @.TypeMapEntry.11949_to; char* to + }, ; 6582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11950_from, ; char* from + ptr @.TypeMapEntry.11949_to; char* to + }, ; 6583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11951_from, ; char* from + ptr @.TypeMapEntry.11952_to; char* to + }, ; 6584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11953_from, ; char* from + ptr @.TypeMapEntry.11954_to; char* to + }, ; 6585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11955_from, ; char* from + ptr @.TypeMapEntry.11954_to; char* to + }, ; 6586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11956_from, ; char* from + ptr @.TypeMapEntry.11957_to; char* to + }, ; 6587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11958_from, ; char* from + ptr @.TypeMapEntry.11959_to; char* to + }, ; 6588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11960_from, ; char* from + ptr @.TypeMapEntry.11959_to; char* to + }, ; 6589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11961_from, ; char* from + ptr @.TypeMapEntry.11962_to; char* to + }, ; 6590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11963_from, ; char* from + ptr @.TypeMapEntry.11964_to; char* to + }, ; 6591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11965_from, ; char* from + ptr @.TypeMapEntry.11964_to; char* to + }, ; 6592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11966_from, ; char* from + ptr @.TypeMapEntry.11967_to; char* to + }, ; 6593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11968_from, ; char* from + ptr @.TypeMapEntry.11969_to; char* to + }, ; 6594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11970_from, ; char* from + ptr @.TypeMapEntry.11971_to; char* to + }, ; 6595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11972_from, ; char* from + ptr @.TypeMapEntry.11973_to; char* to + }, ; 6596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11974_from, ; char* from + ptr @.TypeMapEntry.11975_to; char* to + }, ; 6597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11976_from, ; char* from + ptr @.TypeMapEntry.11977_to; char* to + }, ; 6598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11978_from, ; char* from + ptr @.TypeMapEntry.11977_to; char* to + }, ; 6599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11979_from, ; char* from + ptr @.TypeMapEntry.11980_to; char* to + }, ; 6600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11981_from, ; char* from + ptr @.TypeMapEntry.11982_to; char* to + }, ; 6601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11983_from, ; char* from + ptr @.TypeMapEntry.11982_to; char* to + }, ; 6602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11984_from, ; char* from + ptr @.TypeMapEntry.11985_to; char* to + }, ; 6603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11986_from, ; char* from + ptr @.TypeMapEntry.11987_to; char* to + }, ; 6604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11988_from, ; char* from + ptr @.TypeMapEntry.11987_to; char* to + }, ; 6605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11989_from, ; char* from + ptr @.TypeMapEntry.11990_to; char* to + }, ; 6606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11991_from, ; char* from + ptr @.TypeMapEntry.11992_to; char* to + }, ; 6607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11993_from, ; char* from + ptr @.TypeMapEntry.11992_to; char* to + }, ; 6608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11994_from, ; char* from + ptr @.TypeMapEntry.11995_to; char* to + }, ; 6609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11996_from, ; char* from + ptr @.TypeMapEntry.11997_to; char* to + }, ; 6610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11998_from, ; char* from + ptr @.TypeMapEntry.11999_to; char* to + }, ; 6611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12000_from, ; char* from + ptr @.TypeMapEntry.11999_to; char* to + }, ; 6612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12001_from, ; char* from + ptr @.TypeMapEntry.12002_to; char* to + }, ; 6613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12003_from, ; char* from + ptr @.TypeMapEntry.12004_to; char* to + }, ; 6614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12005_from, ; char* from + ptr @.TypeMapEntry.12004_to; char* to + }, ; 6615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12006_from, ; char* from + ptr @.TypeMapEntry.12007_to; char* to + }, ; 6616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12008_from, ; char* from + ptr @.TypeMapEntry.12009_to; char* to + }, ; 6617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12010_from, ; char* from + ptr @.TypeMapEntry.12011_to; char* to + }, ; 6618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12012_from, ; char* from + ptr @.TypeMapEntry.12013_to; char* to + }, ; 6619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12014_from, ; char* from + ptr @.TypeMapEntry.12015_to; char* to + }, ; 6620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12016_from, ; char* from + ptr @.TypeMapEntry.12017_to; char* to + }, ; 6621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12018_from, ; char* from + ptr @.TypeMapEntry.12019_to; char* to + }, ; 6622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12020_from, ; char* from + ptr @.TypeMapEntry.12021_to; char* to + }, ; 6623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12022_from, ; char* from + ptr @.TypeMapEntry.12023_to; char* to + }, ; 6624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12024_from, ; char* from + ptr @.TypeMapEntry.12025_to; char* to + }, ; 6625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12026_from, ; char* from + ptr @.TypeMapEntry.12027_to; char* to + }, ; 6626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12028_from, ; char* from + ptr @.TypeMapEntry.12029_to; char* to + }, ; 6627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12030_from, ; char* from + ptr @.TypeMapEntry.12031_to; char* to + }, ; 6628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12032_from, ; char* from + ptr @.TypeMapEntry.12033_to; char* to + }, ; 6629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12034_from, ; char* from + ptr @.TypeMapEntry.12035_to; char* to + }, ; 6630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12036_from, ; char* from + ptr @.TypeMapEntry.12037_to; char* to + }, ; 6631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12038_from, ; char* from + ptr @.TypeMapEntry.12039_to; char* to + }, ; 6632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12040_from, ; char* from + ptr @.TypeMapEntry.12041_to; char* to + }, ; 6633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12042_from, ; char* from + ptr @.TypeMapEntry.12043_to; char* to + }, ; 6634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12044_from, ; char* from + ptr @.TypeMapEntry.12045_to; char* to + }, ; 6635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12046_from, ; char* from + ptr @.TypeMapEntry.12047_to; char* to + }, ; 6636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12048_from, ; char* from + ptr @.TypeMapEntry.12049_to; char* to + }, ; 6637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12050_from, ; char* from + ptr @.TypeMapEntry.12051_to; char* to + }, ; 6638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12052_from, ; char* from + ptr @.TypeMapEntry.12053_to; char* to + }, ; 6639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12054_from, ; char* from + ptr @.TypeMapEntry.12055_to; char* to + }, ; 6640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12056_from, ; char* from + ptr @.TypeMapEntry.12057_to; char* to + }, ; 6641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12058_from, ; char* from + ptr @.TypeMapEntry.12059_to; char* to + }, ; 6642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12060_from, ; char* from + ptr @.TypeMapEntry.12061_to; char* to + }, ; 6643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12062_from, ; char* from + ptr @.TypeMapEntry.12063_to; char* to + }, ; 6644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12064_from, ; char* from + ptr @.TypeMapEntry.12065_to; char* to + }, ; 6645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12066_from, ; char* from + ptr @.TypeMapEntry.12067_to; char* to + }, ; 6646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12068_from, ; char* from + ptr @.TypeMapEntry.12069_to; char* to + }, ; 6647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12070_from, ; char* from + ptr @.TypeMapEntry.12069_to; char* to + }, ; 6648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12071_from, ; char* from + ptr @.TypeMapEntry.12072_to; char* to + }, ; 6649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12073_from, ; char* from + ptr @.TypeMapEntry.12074_to; char* to + }, ; 6650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12075_from, ; char* from + ptr @.TypeMapEntry.12074_to; char* to + }, ; 6651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12076_from, ; char* from + ptr @.TypeMapEntry.12077_to; char* to + }, ; 6652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12078_from, ; char* from + ptr @.TypeMapEntry.12079_to; char* to + }, ; 6653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12080_from, ; char* from + ptr @.TypeMapEntry.12079_to; char* to + }, ; 6654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12081_from, ; char* from + ptr @.TypeMapEntry.12082_to; char* to + }, ; 6655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12083_from, ; char* from + ptr @.TypeMapEntry.12084_to; char* to + }, ; 6656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12085_from, ; char* from + ptr @.TypeMapEntry.12084_to; char* to + }, ; 6657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12086_from, ; char* from + ptr @.TypeMapEntry.12087_to; char* to + }, ; 6658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12088_from, ; char* from + ptr @.TypeMapEntry.12089_to; char* to + }, ; 6659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12090_from, ; char* from + ptr @.TypeMapEntry.12089_to; char* to + }, ; 6660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12091_from, ; char* from + ptr @.TypeMapEntry.12092_to; char* to + }, ; 6661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12093_from, ; char* from + ptr @.TypeMapEntry.12094_to; char* to + }, ; 6662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12095_from, ; char* from + ptr @.TypeMapEntry.12096_to; char* to + }, ; 6663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12097_from, ; char* from + ptr @.TypeMapEntry.12096_to; char* to + }, ; 6664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12098_from, ; char* from + ptr @.TypeMapEntry.12099_to; char* to + }, ; 6665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12100_from, ; char* from + ptr @.TypeMapEntry.12101_to; char* to + }, ; 6666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12102_from, ; char* from + ptr @.TypeMapEntry.12101_to; char* to + }, ; 6667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12103_from, ; char* from + ptr @.TypeMapEntry.12104_to; char* to + }, ; 6668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12105_from, ; char* from + ptr @.TypeMapEntry.12106_to; char* to + }, ; 6669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12107_from, ; char* from + ptr @.TypeMapEntry.12108_to; char* to + }, ; 6670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12109_from, ; char* from + ptr @.TypeMapEntry.12110_to; char* to + }, ; 6671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12111_from, ; char* from + ptr @.TypeMapEntry.12112_to; char* to + }, ; 6672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12113_from, ; char* from + ptr @.TypeMapEntry.12114_to; char* to + }, ; 6673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12115_from, ; char* from + ptr @.TypeMapEntry.12116_to; char* to + }, ; 6674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12117_from, ; char* from + ptr @.TypeMapEntry.12118_to; char* to + }, ; 6675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12119_from, ; char* from + ptr @.TypeMapEntry.12120_to; char* to + }, ; 6676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12121_from, ; char* from + ptr @.TypeMapEntry.12120_to; char* to + }, ; 6677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12122_from, ; char* from + ptr @.TypeMapEntry.12123_to; char* to + }, ; 6678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12124_from, ; char* from + ptr @.TypeMapEntry.12125_to; char* to + }, ; 6679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12126_from, ; char* from + ptr @.TypeMapEntry.12125_to; char* to + }, ; 6680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12127_from, ; char* from + ptr @.TypeMapEntry.12128_to; char* to + }, ; 6681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12129_from, ; char* from + ptr @.TypeMapEntry.12130_to; char* to + }, ; 6682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12131_from, ; char* from + ptr @.TypeMapEntry.12132_to; char* to + }, ; 6683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12133_from, ; char* from + ptr @.TypeMapEntry.12134_to; char* to + }, ; 6684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12135_from, ; char* from + ptr @.TypeMapEntry.12136_to; char* to + }, ; 6685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12137_from, ; char* from + ptr @.TypeMapEntry.12136_to; char* to + }, ; 6686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12138_from, ; char* from + ptr @.TypeMapEntry.12139_to; char* to + }, ; 6687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12140_from, ; char* from + ptr @.TypeMapEntry.12141_to; char* to + }, ; 6688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12142_from, ; char* from + ptr @.TypeMapEntry.12143_to; char* to + }, ; 6689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12144_from, ; char* from + ptr @.TypeMapEntry.12145_to; char* to + }, ; 6690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12146_from, ; char* from + ptr @.TypeMapEntry.12147_to; char* to + }, ; 6691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12148_from, ; char* from + ptr @.TypeMapEntry.12149_to; char* to + }, ; 6692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12150_from, ; char* from + ptr @.TypeMapEntry.12149_to; char* to + }, ; 6693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12151_from, ; char* from + ptr @.TypeMapEntry.12152_to; char* to + }, ; 6694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12153_from, ; char* from + ptr @.TypeMapEntry.12154_to; char* to + }, ; 6695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12155_from, ; char* from + ptr @.TypeMapEntry.12156_to; char* to + }, ; 6696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12157_from, ; char* from + ptr @.TypeMapEntry.12158_to; char* to + }, ; 6697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12159_from, ; char* from + ptr @.TypeMapEntry.12160_to; char* to + }, ; 6698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12161_from, ; char* from + ptr @.TypeMapEntry.12162_to; char* to + }, ; 6699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12163_from, ; char* from + ptr @.TypeMapEntry.12164_to; char* to + }, ; 6700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12165_from, ; char* from + ptr @.TypeMapEntry.12166_to; char* to + }, ; 6701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12167_from, ; char* from + ptr @.TypeMapEntry.12168_to; char* to + }, ; 6702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12169_from, ; char* from + ptr @.TypeMapEntry.12170_to; char* to + }, ; 6703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12171_from, ; char* from + ptr @.TypeMapEntry.12172_to; char* to + }, ; 6704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12173_from, ; char* from + ptr @.TypeMapEntry.12172_to; char* to + }, ; 6705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12174_from, ; char* from + ptr @.TypeMapEntry.12175_to; char* to + }, ; 6706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12176_from, ; char* from + ptr @.TypeMapEntry.12177_to; char* to + }, ; 6707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12178_from, ; char* from + ptr @.TypeMapEntry.12179_to; char* to + }, ; 6708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12180_from, ; char* from + ptr @.TypeMapEntry.12181_to; char* to + }, ; 6709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12182_from, ; char* from + ptr @.TypeMapEntry.12183_to; char* to + }, ; 6710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12184_from, ; char* from + ptr @.TypeMapEntry.12185_to; char* to + }, ; 6711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12186_from, ; char* from + ptr @.TypeMapEntry.12187_to; char* to + }, ; 6712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12188_from, ; char* from + ptr @.TypeMapEntry.12189_to; char* to + }, ; 6713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12190_from, ; char* from + ptr @.TypeMapEntry.12191_to; char* to + }, ; 6714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12192_from, ; char* from + ptr @.TypeMapEntry.12193_to; char* to + }, ; 6715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12194_from, ; char* from + ptr @.TypeMapEntry.12195_to; char* to + }, ; 6716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12196_from, ; char* from + ptr @.TypeMapEntry.12197_to; char* to + }, ; 6717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12198_from, ; char* from + ptr @.TypeMapEntry.12199_to; char* to + }, ; 6718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12200_from, ; char* from + ptr @.TypeMapEntry.12201_to; char* to + }, ; 6719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12202_from, ; char* from + ptr @.TypeMapEntry.12203_to; char* to + }, ; 6720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12204_from, ; char* from + ptr @.TypeMapEntry.12205_to; char* to + }, ; 6721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12206_from, ; char* from + ptr @.TypeMapEntry.12207_to; char* to + }, ; 6722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12208_from, ; char* from + ptr @.TypeMapEntry.12209_to; char* to + }, ; 6723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12210_from, ; char* from + ptr @.TypeMapEntry.12211_to; char* to + }, ; 6724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12212_from, ; char* from + ptr @.TypeMapEntry.12213_to; char* to + }, ; 6725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12214_from, ; char* from + ptr @.TypeMapEntry.12215_to; char* to + }, ; 6726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12216_from, ; char* from + ptr @.TypeMapEntry.12217_to; char* to + }, ; 6727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12218_from, ; char* from + ptr @.TypeMapEntry.12219_to; char* to + }, ; 6728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12220_from, ; char* from + ptr @.TypeMapEntry.12221_to; char* to + }, ; 6729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12222_from, ; char* from + ptr @.TypeMapEntry.12223_to; char* to + }, ; 6730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12224_from, ; char* from + ptr @.TypeMapEntry.12225_to; char* to + }, ; 6731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12226_from, ; char* from + ptr @.TypeMapEntry.12227_to; char* to + }, ; 6732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12228_from, ; char* from + ptr @.TypeMapEntry.12229_to; char* to + }, ; 6733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12230_from, ; char* from + ptr @.TypeMapEntry.12231_to; char* to + }, ; 6734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12232_from, ; char* from + ptr @.TypeMapEntry.12233_to; char* to + }, ; 6735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12234_from, ; char* from + ptr @.TypeMapEntry.12235_to; char* to + }, ; 6736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12236_from, ; char* from + ptr @.TypeMapEntry.12237_to; char* to + }, ; 6737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12238_from, ; char* from + ptr @.TypeMapEntry.12239_to; char* to + }, ; 6738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12240_from, ; char* from + ptr @.TypeMapEntry.12241_to; char* to + }, ; 6739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12242_from, ; char* from + ptr @.TypeMapEntry.12243_to; char* to + }, ; 6740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12244_from, ; char* from + ptr @.TypeMapEntry.12245_to; char* to + }, ; 6741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12246_from, ; char* from + ptr @.TypeMapEntry.12247_to; char* to + }, ; 6742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12248_from, ; char* from + ptr @.TypeMapEntry.12249_to; char* to + }, ; 6743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12250_from, ; char* from + ptr @.TypeMapEntry.12251_to; char* to + }, ; 6744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12252_from, ; char* from + ptr @.TypeMapEntry.12253_to; char* to + }, ; 6745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12254_from, ; char* from + ptr @.TypeMapEntry.12255_to; char* to + }, ; 6746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12256_from, ; char* from + ptr @.TypeMapEntry.12257_to; char* to + }, ; 6747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12258_from, ; char* from + ptr @.TypeMapEntry.12259_to; char* to + }, ; 6748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12260_from, ; char* from + ptr @.TypeMapEntry.12255_to; char* to + }, ; 6749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12261_from, ; char* from + ptr @.TypeMapEntry.12262_to; char* to + }, ; 6750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12263_from, ; char* from + ptr @.TypeMapEntry.12264_to; char* to + }, ; 6751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12265_from, ; char* from + ptr @.TypeMapEntry.12266_to; char* to + }, ; 6752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12267_from, ; char* from + ptr @.TypeMapEntry.12268_to; char* to + }, ; 6753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12269_from, ; char* from + ptr @.TypeMapEntry.12270_to; char* to + }, ; 6754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12271_from, ; char* from + ptr @.TypeMapEntry.12272_to; char* to + }, ; 6755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12273_from, ; char* from + ptr @.TypeMapEntry.12274_to; char* to + }, ; 6756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12275_from, ; char* from + ptr @.TypeMapEntry.12276_to; char* to + }, ; 6757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12277_from, ; char* from + ptr @.TypeMapEntry.12278_to; char* to + }, ; 6758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12279_from, ; char* from + ptr @.TypeMapEntry.12280_to; char* to + }, ; 6759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12281_from, ; char* from + ptr @.TypeMapEntry.12282_to; char* to + }, ; 6760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12283_from, ; char* from + ptr @.TypeMapEntry.12282_to; char* to + }, ; 6761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12284_from, ; char* from + ptr @.TypeMapEntry.12285_to; char* to + }, ; 6762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12286_from, ; char* from + ptr @.TypeMapEntry.12287_to; char* to + }, ; 6763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12288_from, ; char* from + ptr @.TypeMapEntry.12289_to; char* to + }, ; 6764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12290_from, ; char* from + ptr @.TypeMapEntry.12291_to; char* to + }, ; 6765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12292_from, ; char* from + ptr @.TypeMapEntry.12293_to; char* to + }, ; 6766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12294_from, ; char* from + ptr @.TypeMapEntry.12293_to; char* to + }, ; 6767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12295_from, ; char* from + ptr @.TypeMapEntry.12296_to; char* to + }, ; 6768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12297_from, ; char* from + ptr @.TypeMapEntry.12296_to; char* to + }, ; 6769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12298_from, ; char* from + ptr @.TypeMapEntry.12299_to; char* to + }, ; 6770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12300_from, ; char* from + ptr @.TypeMapEntry.12301_to; char* to + }, ; 6771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12302_from, ; char* from + ptr @.TypeMapEntry.12301_to; char* to + }, ; 6772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12303_from, ; char* from + ptr @.TypeMapEntry.12304_to; char* to + }, ; 6773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12305_from, ; char* from + ptr @.TypeMapEntry.12304_to; char* to + }, ; 6774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12306_from, ; char* from + ptr @.TypeMapEntry.12307_to; char* to + }, ; 6775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12308_from, ; char* from + ptr @.TypeMapEntry.12307_to; char* to + }, ; 6776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12309_from, ; char* from + ptr @.TypeMapEntry.12299_to; char* to + }, ; 6777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12310_from, ; char* from + ptr @.TypeMapEntry.12311_to; char* to + }, ; 6778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12312_from, ; char* from + ptr @.TypeMapEntry.12311_to; char* to + }, ; 6779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12313_from, ; char* from + ptr @.TypeMapEntry.12314_to; char* to + }, ; 6780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12315_from, ; char* from + ptr @.TypeMapEntry.12314_to; char* to + }, ; 6781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12316_from, ; char* from + ptr @.TypeMapEntry.12317_to; char* to + }, ; 6782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12318_from, ; char* from + ptr @.TypeMapEntry.12317_to; char* to + }, ; 6783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12319_from, ; char* from + ptr @.TypeMapEntry.12320_to; char* to + }, ; 6784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12321_from, ; char* from + ptr @.TypeMapEntry.12320_to; char* to + }, ; 6785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12322_from, ; char* from + ptr @.TypeMapEntry.12323_to; char* to + }, ; 6786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12324_from, ; char* from + ptr @.TypeMapEntry.12323_to; char* to + }, ; 6787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12325_from, ; char* from + ptr @.TypeMapEntry.12326_to; char* to + }, ; 6788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12327_from, ; char* from + ptr @.TypeMapEntry.12326_to; char* to + }, ; 6789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12328_from, ; char* from + ptr @.TypeMapEntry.12329_to; char* to + }, ; 6790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12330_from, ; char* from + ptr @.TypeMapEntry.12331_to; char* to + }, ; 6791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12332_from, ; char* from + ptr @.TypeMapEntry.12333_to; char* to + }, ; 6792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12334_from, ; char* from + ptr @.TypeMapEntry.12333_to; char* to + }, ; 6793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12335_from, ; char* from + ptr @.TypeMapEntry.12336_to; char* to + }, ; 6794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12337_from, ; char* from + ptr @.TypeMapEntry.12338_to; char* to + }, ; 6795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12339_from, ; char* from + ptr @.TypeMapEntry.12340_to; char* to + }, ; 6796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12341_from, ; char* from + ptr @.TypeMapEntry.12342_to; char* to + }, ; 6797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12343_from, ; char* from + ptr @.TypeMapEntry.12344_to; char* to + }, ; 6798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12345_from, ; char* from + ptr @.TypeMapEntry.12346_to; char* to + }, ; 6799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12347_from, ; char* from + ptr @.TypeMapEntry.12348_to; char* to + }, ; 6800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12349_from, ; char* from + ptr @.TypeMapEntry.12350_to; char* to + }, ; 6801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12351_from, ; char* from + ptr @.TypeMapEntry.12352_to; char* to + }, ; 6802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12353_from, ; char* from + ptr @.TypeMapEntry.12354_to; char* to + }, ; 6803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12355_from, ; char* from + ptr @.TypeMapEntry.12356_to; char* to + }, ; 6804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12357_from, ; char* from + ptr @.TypeMapEntry.12356_to; char* to + }, ; 6805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12358_from, ; char* from + ptr @.TypeMapEntry.12359_to; char* to + }, ; 6806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12360_from, ; char* from + ptr @.TypeMapEntry.12361_to; char* to + }, ; 6807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12362_from, ; char* from + ptr @.TypeMapEntry.12363_to; char* to + }, ; 6808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12364_from, ; char* from + ptr @.TypeMapEntry.12365_to; char* to + }, ; 6809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12366_from, ; char* from + ptr @.TypeMapEntry.12367_to; char* to + }, ; 6810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12368_from, ; char* from + ptr @.TypeMapEntry.12369_to; char* to + }, ; 6811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12370_from, ; char* from + ptr @.TypeMapEntry.12371_to; char* to + }, ; 6812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12372_from, ; char* from + ptr @.TypeMapEntry.12373_to; char* to + }, ; 6813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12374_from, ; char* from + ptr @.TypeMapEntry.12373_to; char* to + }, ; 6814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12375_from, ; char* from + ptr @.TypeMapEntry.12376_to; char* to + }, ; 6815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12377_from, ; char* from + ptr @.TypeMapEntry.12299_to; char* to + }, ; 6816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12378_from, ; char* from + ptr @.TypeMapEntry.12301_to; char* to + }, ; 6817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12379_from, ; char* from + ptr @.TypeMapEntry.12301_to; char* to + }, ; 6818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12380_from, ; char* from + ptr @.TypeMapEntry.12299_to; char* to + }, ; 6819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12381_from, ; char* from + ptr @.TypeMapEntry.12304_to; char* to + }, ; 6820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12382_from, ; char* from + ptr @.TypeMapEntry.12304_to; char* to + }, ; 6821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12383_from, ; char* from + ptr @.TypeMapEntry.12307_to; char* to + }, ; 6822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12384_from, ; char* from + ptr @.TypeMapEntry.12307_to; char* to + }, ; 6823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12385_from, ; char* from + ptr @.TypeMapEntry.12311_to; char* to + }, ; 6824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12386_from, ; char* from + ptr @.TypeMapEntry.12311_to; char* to + }, ; 6825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12387_from, ; char* from + ptr @.TypeMapEntry.12314_to; char* to + }, ; 6826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12388_from, ; char* from + ptr @.TypeMapEntry.12314_to; char* to + }, ; 6827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12389_from, ; char* from + ptr @.TypeMapEntry.12317_to; char* to + }, ; 6828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12390_from, ; char* from + ptr @.TypeMapEntry.12317_to; char* to + }, ; 6829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12391_from, ; char* from + ptr @.TypeMapEntry.12320_to; char* to + }, ; 6830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12392_from, ; char* from + ptr @.TypeMapEntry.12320_to; char* to + }, ; 6831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12393_from, ; char* from + ptr @.TypeMapEntry.12323_to; char* to + }, ; 6832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12394_from, ; char* from + ptr @.TypeMapEntry.12323_to; char* to + }, ; 6833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12395_from, ; char* from + ptr @.TypeMapEntry.12326_to; char* to + }, ; 6834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12396_from, ; char* from + ptr @.TypeMapEntry.12326_to; char* to + }, ; 6835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12397_from, ; char* from + ptr @.TypeMapEntry.12398_to; char* to + }, ; 6836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12399_from, ; char* from + ptr @.TypeMapEntry.12398_to; char* to + }, ; 6837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12400_from, ; char* from + ptr @.TypeMapEntry.12401_to; char* to + }, ; 6838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12402_from, ; char* from + ptr @.TypeMapEntry.12403_to; char* to + }, ; 6839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12404_from, ; char* from + ptr @.TypeMapEntry.12405_to; char* to + }, ; 6840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12406_from, ; char* from + ptr @.TypeMapEntry.12407_to; char* to + }, ; 6841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12408_from, ; char* from + ptr @.TypeMapEntry.12409_to; char* to + }, ; 6842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12410_from, ; char* from + ptr @.TypeMapEntry.12411_to; char* to + }, ; 6843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12412_from, ; char* from + ptr @.TypeMapEntry.12413_to; char* to + }, ; 6844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12414_from, ; char* from + ptr @.TypeMapEntry.12415_to; char* to + }, ; 6845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12416_from, ; char* from + ptr @.TypeMapEntry.12417_to; char* to + }, ; 6846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12418_from, ; char* from + ptr @.TypeMapEntry.12419_to; char* to + }, ; 6847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12420_from, ; char* from + ptr @.TypeMapEntry.12421_to; char* to + }, ; 6848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12422_from, ; char* from + ptr @.TypeMapEntry.12423_to; char* to + }, ; 6849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12424_from, ; char* from + ptr @.TypeMapEntry.12425_to; char* to + }, ; 6850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12426_from, ; char* from + ptr @.TypeMapEntry.12427_to; char* to + }, ; 6851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12428_from, ; char* from + ptr @.TypeMapEntry.12429_to; char* to + }, ; 6852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12430_from, ; char* from + ptr @.TypeMapEntry.12431_to; char* to + }, ; 6853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12432_from, ; char* from + ptr @.TypeMapEntry.12433_to; char* to + }, ; 6854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12434_from, ; char* from + ptr @.TypeMapEntry.12435_to; char* to + }, ; 6855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12436_from, ; char* from + ptr @.TypeMapEntry.12435_to; char* to + }, ; 6856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12437_from, ; char* from + ptr @.TypeMapEntry.12438_to; char* to + }, ; 6857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12439_from, ; char* from + ptr @.TypeMapEntry.12440_to; char* to + }, ; 6858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12441_from, ; char* from + ptr @.TypeMapEntry.12442_to; char* to + }, ; 6859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12443_from, ; char* from + ptr @.TypeMapEntry.12444_to; char* to + }, ; 6860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12445_from, ; char* from + ptr @.TypeMapEntry.12446_to; char* to + }, ; 6861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12447_from, ; char* from + ptr @.TypeMapEntry.12448_to; char* to + }, ; 6862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12449_from, ; char* from + ptr @.TypeMapEntry.12450_to; char* to + }, ; 6863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12451_from, ; char* from + ptr @.TypeMapEntry.12452_to; char* to + }, ; 6864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12453_from, ; char* from + ptr @.TypeMapEntry.12454_to; char* to + }, ; 6865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12455_from, ; char* from + ptr @.TypeMapEntry.12456_to; char* to + }, ; 6866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12457_from, ; char* from + ptr @.TypeMapEntry.12458_to; char* to + }, ; 6867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12459_from, ; char* from + ptr @.TypeMapEntry.12460_to; char* to + }, ; 6868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12461_from, ; char* from + ptr @.TypeMapEntry.12462_to; char* to + }, ; 6869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12463_from, ; char* from + ptr @.TypeMapEntry.12464_to; char* to + }, ; 6870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12465_from, ; char* from + ptr @.TypeMapEntry.12466_to; char* to + }, ; 6871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12467_from, ; char* from + ptr @.TypeMapEntry.12468_to; char* to + }, ; 6872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12469_from, ; char* from + ptr @.TypeMapEntry.12470_to; char* to + }, ; 6873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12471_from, ; char* from + ptr @.TypeMapEntry.12470_to; char* to + }, ; 6874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12472_from, ; char* from + ptr @.TypeMapEntry.12473_to; char* to + }, ; 6875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12474_from, ; char* from + ptr @.TypeMapEntry.12475_to; char* to + }, ; 6876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12476_from, ; char* from + ptr @.TypeMapEntry.12475_to; char* to + }, ; 6877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12477_from, ; char* from + ptr @.TypeMapEntry.12478_to; char* to + }, ; 6878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12479_from, ; char* from + ptr @.TypeMapEntry.12478_to; char* to + }, ; 6879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12480_from, ; char* from + ptr @.TypeMapEntry.12481_to; char* to + }, ; 6880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12482_from, ; char* from + ptr @.TypeMapEntry.12481_to; char* to + }, ; 6881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12483_from, ; char* from + ptr @.TypeMapEntry.12484_to; char* to + }, ; 6882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12485_from, ; char* from + ptr @.TypeMapEntry.12484_to; char* to + }, ; 6883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12486_from, ; char* from + ptr @.TypeMapEntry.12487_to; char* to + }, ; 6884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12488_from, ; char* from + ptr @.TypeMapEntry.12487_to; char* to + }, ; 6885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12489_from, ; char* from + ptr @.TypeMapEntry.12490_to; char* to + }, ; 6886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12491_from, ; char* from + ptr @.TypeMapEntry.12492_to; char* to + }, ; 6887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12493_from, ; char* from + ptr @.TypeMapEntry.12494_to; char* to + }, ; 6888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12495_from, ; char* from + ptr @.TypeMapEntry.12496_to; char* to + }, ; 6889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12497_from, ; char* from + ptr @.TypeMapEntry.12498_to; char* to + }, ; 6890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12499_from, ; char* from + ptr @.TypeMapEntry.12500_to; char* to + }, ; 6891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12501_from, ; char* from + ptr @.TypeMapEntry.12502_to; char* to + }, ; 6892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12503_from, ; char* from + ptr @.TypeMapEntry.12504_to; char* to + }, ; 6893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12505_from, ; char* from + ptr @.TypeMapEntry.12506_to; char* to + }, ; 6894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12507_from, ; char* from + ptr @.TypeMapEntry.12508_to; char* to + }, ; 6895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12509_from, ; char* from + ptr @.TypeMapEntry.12510_to; char* to + }, ; 6896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12511_from, ; char* from + ptr @.TypeMapEntry.12512_to; char* to + }, ; 6897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12513_from, ; char* from + ptr @.TypeMapEntry.12514_to; char* to + }, ; 6898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12515_from, ; char* from + ptr @.TypeMapEntry.12516_to; char* to + }, ; 6899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12517_from, ; char* from + ptr @.TypeMapEntry.12516_to; char* to + }, ; 6900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12518_from, ; char* from + ptr @.TypeMapEntry.12519_to; char* to + }, ; 6901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12520_from, ; char* from + ptr @.TypeMapEntry.12521_to; char* to + }, ; 6902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12522_from, ; char* from + ptr @.TypeMapEntry.12523_to; char* to + }, ; 6903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12524_from, ; char* from + ptr @.TypeMapEntry.12525_to; char* to + }, ; 6904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12526_from, ; char* from + ptr @.TypeMapEntry.12527_to; char* to + }, ; 6905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12528_from, ; char* from + ptr @.TypeMapEntry.12529_to; char* to + }, ; 6906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12530_from, ; char* from + ptr @.TypeMapEntry.12531_to; char* to + }, ; 6907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12532_from, ; char* from + ptr @.TypeMapEntry.12533_to; char* to + }, ; 6908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12534_from, ; char* from + ptr @.TypeMapEntry.12535_to; char* to + }, ; 6909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12536_from, ; char* from + ptr @.TypeMapEntry.12535_to; char* to + }, ; 6910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12537_from, ; char* from + ptr @.TypeMapEntry.12538_to; char* to + }, ; 6911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12539_from, ; char* from + ptr @.TypeMapEntry.12540_to; char* to + }, ; 6912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12541_from, ; char* from + ptr @.TypeMapEntry.12542_to; char* to + }, ; 6913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12543_from, ; char* from + ptr @.TypeMapEntry.12544_to; char* to + }, ; 6914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12545_from, ; char* from + ptr @.TypeMapEntry.12544_to; char* to + }, ; 6915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12546_from, ; char* from + ptr @.TypeMapEntry.12547_to; char* to + }, ; 6916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12548_from, ; char* from + ptr @.TypeMapEntry.12549_to; char* to + }, ; 6917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12550_from, ; char* from + ptr @.TypeMapEntry.12551_to; char* to + }, ; 6918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12552_from, ; char* from + ptr @.TypeMapEntry.12553_to; char* to + }, ; 6919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12554_from, ; char* from + ptr @.TypeMapEntry.12555_to; char* to + }, ; 6920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12556_from, ; char* from + ptr @.TypeMapEntry.12557_to; char* to + }, ; 6921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12558_from, ; char* from + ptr @.TypeMapEntry.12559_to; char* to + }, ; 6922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12560_from, ; char* from + ptr @.TypeMapEntry.12561_to; char* to + }, ; 6923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12562_from, ; char* from + ptr @.TypeMapEntry.12563_to; char* to + }, ; 6924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12564_from, ; char* from + ptr @.TypeMapEntry.12565_to; char* to + }, ; 6925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12566_from, ; char* from + ptr @.TypeMapEntry.12567_to; char* to + }, ; 6926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12568_from, ; char* from + ptr @.TypeMapEntry.12569_to; char* to + }, ; 6927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12570_from, ; char* from + ptr @.TypeMapEntry.12569_to; char* to + }, ; 6928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12571_from, ; char* from + ptr @.TypeMapEntry.12572_to; char* to + }, ; 6929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12573_from, ; char* from + ptr @.TypeMapEntry.12574_to; char* to + }, ; 6930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12575_from, ; char* from + ptr @.TypeMapEntry.12576_to; char* to + }, ; 6931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12577_from, ; char* from + ptr @.TypeMapEntry.12578_to; char* to + }, ; 6932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12579_from, ; char* from + ptr @.TypeMapEntry.12580_to; char* to + }, ; 6933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12581_from, ; char* from + ptr @.TypeMapEntry.12582_to; char* to + }, ; 6934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12583_from, ; char* from + ptr @.TypeMapEntry.12582_to; char* to + }, ; 6935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12584_from, ; char* from + ptr @.TypeMapEntry.12585_to; char* to + }, ; 6936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12586_from, ; char* from + ptr @.TypeMapEntry.12587_to; char* to + }, ; 6937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12588_from, ; char* from + ptr @.TypeMapEntry.12589_to; char* to + }, ; 6938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12590_from, ; char* from + ptr @.TypeMapEntry.12591_to; char* to + }, ; 6939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12592_from, ; char* from + ptr @.TypeMapEntry.12593_to; char* to + }, ; 6940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12594_from, ; char* from + ptr @.TypeMapEntry.12595_to; char* to + }, ; 6941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12596_from, ; char* from + ptr @.TypeMapEntry.12597_to; char* to + }, ; 6942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12598_from, ; char* from + ptr @.TypeMapEntry.12599_to; char* to + }, ; 6943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12600_from, ; char* from + ptr @.TypeMapEntry.12601_to; char* to + }, ; 6944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12602_from, ; char* from + ptr @.TypeMapEntry.12603_to; char* to + }, ; 6945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12604_from, ; char* from + ptr @.TypeMapEntry.12605_to; char* to + }, ; 6946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12606_from, ; char* from + ptr @.TypeMapEntry.12605_to; char* to + }, ; 6947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12607_from, ; char* from + ptr @.TypeMapEntry.12608_to; char* to + }, ; 6948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12609_from, ; char* from + ptr @.TypeMapEntry.12610_to; char* to + }, ; 6949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12611_from, ; char* from + ptr @.TypeMapEntry.12612_to; char* to + }, ; 6950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12613_from, ; char* from + ptr @.TypeMapEntry.12612_to; char* to + }, ; 6951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12614_from, ; char* from + ptr @.TypeMapEntry.12615_to; char* to + }, ; 6952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12616_from, ; char* from + ptr @.TypeMapEntry.12617_to; char* to + }, ; 6953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12618_from, ; char* from + ptr @.TypeMapEntry.12619_to; char* to + }, ; 6954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12620_from, ; char* from + ptr @.TypeMapEntry.12621_to; char* to + }, ; 6955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12622_from, ; char* from + ptr @.TypeMapEntry.12621_to; char* to + }, ; 6956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12623_from, ; char* from + ptr @.TypeMapEntry.12624_to; char* to + }, ; 6957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12625_from, ; char* from + ptr @.TypeMapEntry.12626_to; char* to + }, ; 6958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12627_from, ; char* from + ptr @.TypeMapEntry.12628_to; char* to + }, ; 6959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12629_from, ; char* from + ptr @.TypeMapEntry.12628_to; char* to + }, ; 6960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12630_from, ; char* from + ptr @.TypeMapEntry.12631_to; char* to + }, ; 6961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12632_from, ; char* from + ptr @.TypeMapEntry.12631_to; char* to + }, ; 6962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12633_from, ; char* from + ptr @.TypeMapEntry.12634_to; char* to + }, ; 6963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12635_from, ; char* from + ptr @.TypeMapEntry.12634_to; char* to + }, ; 6964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12636_from, ; char* from + ptr @.TypeMapEntry.12637_to; char* to + }, ; 6965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12638_from, ; char* from + ptr @.TypeMapEntry.12637_to; char* to + }, ; 6966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12639_from, ; char* from + ptr @.TypeMapEntry.12640_to; char* to + }, ; 6967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12641_from, ; char* from + ptr @.TypeMapEntry.12642_to; char* to + }, ; 6968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12643_from, ; char* from + ptr @.TypeMapEntry.12644_to; char* to + }, ; 6969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12645_from, ; char* from + ptr @.TypeMapEntry.12646_to; char* to + }, ; 6970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12647_from, ; char* from + ptr @.TypeMapEntry.12640_to; char* to + }, ; 6971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12648_from, ; char* from + ptr @.TypeMapEntry.12649_to; char* to + }, ; 6972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12650_from, ; char* from + ptr @.TypeMapEntry.12651_to; char* to + }, ; 6973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12652_from, ; char* from + ptr @.TypeMapEntry.12653_to; char* to + }, ; 6974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12654_from, ; char* from + ptr @.TypeMapEntry.12655_to; char* to + }, ; 6975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12656_from, ; char* from + ptr @.TypeMapEntry.12657_to; char* to + }, ; 6976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12658_from, ; char* from + ptr @.TypeMapEntry.12659_to; char* to + }, ; 6977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12660_from, ; char* from + ptr @.TypeMapEntry.12659_to; char* to + }, ; 6978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12661_from, ; char* from + ptr @.TypeMapEntry.12662_to; char* to + }, ; 6979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12663_from, ; char* from + ptr @.TypeMapEntry.12662_to; char* to + }, ; 6980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12664_from, ; char* from + ptr @.TypeMapEntry.12665_to; char* to + }, ; 6981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12666_from, ; char* from + ptr @.TypeMapEntry.12667_to; char* to + }, ; 6982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12668_from, ; char* from + ptr @.TypeMapEntry.12665_to; char* to + }, ; 6983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12669_from, ; char* from + ptr @.TypeMapEntry.12670_to; char* to + }, ; 6984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12671_from, ; char* from + ptr @.TypeMapEntry.12672_to; char* to + }, ; 6985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12673_from, ; char* from + ptr @.TypeMapEntry.12674_to; char* to + }, ; 6986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12675_from, ; char* from + ptr @.TypeMapEntry.12676_to; char* to + }, ; 6987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12677_from, ; char* from + ptr @.TypeMapEntry.12678_to; char* to + }, ; 6988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12679_from, ; char* from + ptr @.TypeMapEntry.12680_to; char* to + }, ; 6989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12681_from, ; char* from + ptr @.TypeMapEntry.12680_to; char* to + }, ; 6990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12682_from, ; char* from + ptr @.TypeMapEntry.12683_to; char* to + }, ; 6991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12684_from, ; char* from + ptr @.TypeMapEntry.12685_to; char* to + }, ; 6992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12686_from, ; char* from + ptr @.TypeMapEntry.12687_to; char* to + }, ; 6993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12688_from, ; char* from + ptr @.TypeMapEntry.12689_to; char* to + }, ; 6994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12690_from, ; char* from + ptr @.TypeMapEntry.12691_to; char* to + }, ; 6995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12692_from, ; char* from + ptr @.TypeMapEntry.12693_to; char* to + }, ; 6996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12694_from, ; char* from + ptr @.TypeMapEntry.12695_to; char* to + }, ; 6997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12696_from, ; char* from + ptr @.TypeMapEntry.12697_to; char* to + }, ; 6998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12698_from, ; char* from + ptr @.TypeMapEntry.12699_to; char* to + }, ; 6999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12700_from, ; char* from + ptr @.TypeMapEntry.12701_to; char* to + }, ; 7000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12702_from, ; char* from + ptr @.TypeMapEntry.12703_to; char* to + }, ; 7001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12704_from, ; char* from + ptr @.TypeMapEntry.12705_to; char* to + }, ; 7002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12706_from, ; char* from + ptr @.TypeMapEntry.12707_to; char* to + }, ; 7003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12708_from, ; char* from + ptr @.TypeMapEntry.12707_to; char* to + }, ; 7004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12709_from, ; char* from + ptr @.TypeMapEntry.12710_to; char* to + }, ; 7005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12711_from, ; char* from + ptr @.TypeMapEntry.12710_to; char* to + }, ; 7006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12712_from, ; char* from + ptr @.TypeMapEntry.12713_to; char* to + }, ; 7007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12714_from, ; char* from + ptr @.TypeMapEntry.12715_to; char* to + }, ; 7008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12716_from, ; char* from + ptr @.TypeMapEntry.12717_to; char* to + }, ; 7009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12718_from, ; char* from + ptr @.TypeMapEntry.12719_to; char* to + }, ; 7010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12720_from, ; char* from + ptr @.TypeMapEntry.12721_to; char* to + }, ; 7011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12722_from, ; char* from + ptr @.TypeMapEntry.12723_to; char* to + }, ; 7012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12724_from, ; char* from + ptr @.TypeMapEntry.12725_to; char* to + }, ; 7013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12726_from, ; char* from + ptr @.TypeMapEntry.12727_to; char* to + }, ; 7014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12728_from, ; char* from + ptr @.TypeMapEntry.12729_to; char* to + }, ; 7015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12730_from, ; char* from + ptr @.TypeMapEntry.12731_to; char* to + }, ; 7016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12732_from, ; char* from + ptr @.TypeMapEntry.12733_to; char* to + }, ; 7017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12734_from, ; char* from + ptr @.TypeMapEntry.12735_to; char* to + }, ; 7018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12736_from, ; char* from + ptr @.TypeMapEntry.12737_to; char* to + }, ; 7019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12738_from, ; char* from + ptr @.TypeMapEntry.12739_to; char* to + }, ; 7020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12740_from, ; char* from + ptr @.TypeMapEntry.12741_to; char* to + }, ; 7021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12742_from, ; char* from + ptr @.TypeMapEntry.12741_to; char* to + }, ; 7022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12743_from, ; char* from + ptr @.TypeMapEntry.12744_to; char* to + }, ; 7023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12745_from, ; char* from + ptr @.TypeMapEntry.12746_to; char* to + }, ; 7024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12747_from, ; char* from + ptr @.TypeMapEntry.12748_to; char* to + }, ; 7025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12749_from, ; char* from + ptr @.TypeMapEntry.12750_to; char* to + }, ; 7026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12751_from, ; char* from + ptr @.TypeMapEntry.12752_to; char* to + }, ; 7027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12753_from, ; char* from + ptr @.TypeMapEntry.12754_to; char* to + }, ; 7028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12755_from, ; char* from + ptr @.TypeMapEntry.12752_to; char* to + }, ; 7029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12756_from, ; char* from + ptr @.TypeMapEntry.12757_to; char* to + }, ; 7030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12758_from, ; char* from + ptr @.TypeMapEntry.12759_to; char* to + }, ; 7031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12760_from, ; char* from + ptr @.TypeMapEntry.12761_to; char* to + }, ; 7032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12762_from, ; char* from + ptr @.TypeMapEntry.12761_to; char* to + }, ; 7033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12763_from, ; char* from + ptr @.TypeMapEntry.12764_to; char* to + }, ; 7034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12765_from, ; char* from + ptr @.TypeMapEntry.12764_to; char* to + }, ; 7035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12766_from, ; char* from + ptr @.TypeMapEntry.12767_to; char* to + }, ; 7036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12768_from, ; char* from + ptr @.TypeMapEntry.12767_to; char* to + }, ; 7037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12769_from, ; char* from + ptr @.TypeMapEntry.12770_to; char* to + }, ; 7038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12771_from, ; char* from + ptr @.TypeMapEntry.12770_to; char* to + }, ; 7039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12772_from, ; char* from + ptr @.TypeMapEntry.12773_to; char* to + }, ; 7040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12774_from, ; char* from + ptr @.TypeMapEntry.12773_to; char* to + }, ; 7041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12775_from, ; char* from + ptr @.TypeMapEntry.12776_to; char* to + }, ; 7042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12777_from, ; char* from + ptr @.TypeMapEntry.12778_to; char* to + }, ; 7043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12779_from, ; char* from + ptr @.TypeMapEntry.12780_to; char* to + }, ; 7044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12781_from, ; char* from + ptr @.TypeMapEntry.12782_to; char* to + }, ; 7045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12783_from, ; char* from + ptr @.TypeMapEntry.12784_to; char* to + }, ; 7046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12785_from, ; char* from + ptr @.TypeMapEntry.12786_to; char* to + }, ; 7047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12787_from, ; char* from + ptr @.TypeMapEntry.12788_to; char* to + }, ; 7048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12789_from, ; char* from + ptr @.TypeMapEntry.12790_to; char* to + }, ; 7049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12791_from, ; char* from + ptr @.TypeMapEntry.12790_to; char* to + }, ; 7050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12792_from, ; char* from + ptr @.TypeMapEntry.12793_to; char* to + }, ; 7051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12794_from, ; char* from + ptr @.TypeMapEntry.12793_to; char* to + }, ; 7052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12795_from, ; char* from + ptr @.TypeMapEntry.12796_to; char* to + }, ; 7053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12797_from, ; char* from + ptr @.TypeMapEntry.12796_to; char* to + }, ; 7054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12798_from, ; char* from + ptr @.TypeMapEntry.12799_to; char* to + }, ; 7055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12800_from, ; char* from + ptr @.TypeMapEntry.12801_to; char* to + }, ; 7056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12802_from, ; char* from + ptr @.TypeMapEntry.12803_to; char* to + }, ; 7057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12804_from, ; char* from + ptr @.TypeMapEntry.12803_to; char* to + }, ; 7058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12805_from, ; char* from + ptr @.TypeMapEntry.12806_to; char* to + }, ; 7059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12807_from, ; char* from + ptr @.TypeMapEntry.12808_to; char* to + }, ; 7060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12809_from, ; char* from + ptr @.TypeMapEntry.12810_to; char* to + }, ; 7061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12811_from, ; char* from + ptr @.TypeMapEntry.12812_to; char* to + }, ; 7062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12813_from, ; char* from + ptr @.TypeMapEntry.12814_to; char* to + }, ; 7063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12815_from, ; char* from + ptr @.TypeMapEntry.12816_to; char* to + }, ; 7064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12817_from, ; char* from + ptr @.TypeMapEntry.12818_to; char* to + }, ; 7065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12819_from, ; char* from + ptr @.TypeMapEntry.12820_to; char* to + }, ; 7066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12821_from, ; char* from + ptr @.TypeMapEntry.12822_to; char* to + }, ; 7067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12823_from, ; char* from + ptr @.TypeMapEntry.12824_to; char* to + }, ; 7068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12825_from, ; char* from + ptr @.TypeMapEntry.12824_to; char* to + }, ; 7069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12826_from, ; char* from + ptr @.TypeMapEntry.12827_to; char* to + }, ; 7070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12828_from, ; char* from + ptr @.TypeMapEntry.12829_to; char* to + }, ; 7071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12830_from, ; char* from + ptr @.TypeMapEntry.12831_to; char* to + }, ; 7072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12832_from, ; char* from + ptr @.TypeMapEntry.12831_to; char* to + }, ; 7073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12833_from, ; char* from + ptr @.TypeMapEntry.12834_to; char* to + }, ; 7074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12835_from, ; char* from + ptr @.TypeMapEntry.12836_to; char* to + }, ; 7075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12837_from, ; char* from + ptr @.TypeMapEntry.12836_to; char* to + }, ; 7076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12838_from, ; char* from + ptr @.TypeMapEntry.12839_to; char* to + }, ; 7077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12840_from, ; char* from + ptr @.TypeMapEntry.12841_to; char* to + }, ; 7078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12842_from, ; char* from + ptr @.TypeMapEntry.12841_to; char* to + }, ; 7079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12843_from, ; char* from + ptr @.TypeMapEntry.12844_to; char* to + }, ; 7080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12845_from, ; char* from + ptr @.TypeMapEntry.12844_to; char* to + }, ; 7081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12846_from, ; char* from + ptr @.TypeMapEntry.12847_to; char* to + }, ; 7082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12848_from, ; char* from + ptr @.TypeMapEntry.12847_to; char* to + }, ; 7083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12849_from, ; char* from + ptr @.TypeMapEntry.12850_to; char* to + }, ; 7084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12851_from, ; char* from + ptr @.TypeMapEntry.12850_to; char* to + }, ; 7085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12852_from, ; char* from + ptr @.TypeMapEntry.12853_to; char* to + }, ; 7086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12854_from, ; char* from + ptr @.TypeMapEntry.12853_to; char* to + }, ; 7087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12855_from, ; char* from + ptr @.TypeMapEntry.12856_to; char* to + }, ; 7088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12857_from, ; char* from + ptr @.TypeMapEntry.12856_to; char* to + }, ; 7089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12858_from, ; char* from + ptr @.TypeMapEntry.12859_to; char* to + }, ; 7090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12860_from, ; char* from + ptr @.TypeMapEntry.12861_to; char* to + }, ; 7091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12862_from, ; char* from + ptr @.TypeMapEntry.12863_to; char* to + }, ; 7092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12864_from, ; char* from + ptr @.TypeMapEntry.12865_to; char* to + }, ; 7093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12866_from, ; char* from + ptr @.TypeMapEntry.12867_to; char* to + }, ; 7094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12868_from, ; char* from + ptr @.TypeMapEntry.12869_to; char* to + }, ; 7095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12870_from, ; char* from + ptr @.TypeMapEntry.12871_to; char* to + }, ; 7096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12872_from, ; char* from + ptr @.TypeMapEntry.12873_to; char* to + }, ; 7097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12874_from, ; char* from + ptr @.TypeMapEntry.12875_to; char* to + }, ; 7098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12876_from, ; char* from + ptr @.TypeMapEntry.12877_to; char* to + }, ; 7099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12878_from, ; char* from + ptr @.TypeMapEntry.12877_to; char* to + }, ; 7100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12879_from, ; char* from + ptr @.TypeMapEntry.12880_to; char* to + }, ; 7101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12881_from, ; char* from + ptr @.TypeMapEntry.12880_to; char* to + }, ; 7102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12882_from, ; char* from + ptr @.TypeMapEntry.12883_to; char* to + }, ; 7103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12884_from, ; char* from + ptr @.TypeMapEntry.12885_to; char* to + }, ; 7104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12886_from, ; char* from + ptr @.TypeMapEntry.12887_to; char* to + }, ; 7105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12888_from, ; char* from + ptr @.TypeMapEntry.12889_to; char* to + }, ; 7106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12890_from, ; char* from + ptr @.TypeMapEntry.12891_to; char* to + }, ; 7107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12892_from, ; char* from + ptr @.TypeMapEntry.12893_to; char* to + }, ; 7108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12894_from, ; char* from + ptr @.TypeMapEntry.12895_to; char* to + }, ; 7109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12896_from, ; char* from + ptr @.TypeMapEntry.12897_to; char* to + }, ; 7110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12898_from, ; char* from + ptr @.TypeMapEntry.12899_to; char* to + }, ; 7111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12900_from, ; char* from + ptr @.TypeMapEntry.12899_to; char* to + }, ; 7112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12901_from, ; char* from + ptr @.TypeMapEntry.12902_to; char* to + }, ; 7113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12903_from, ; char* from + ptr @.TypeMapEntry.12904_to; char* to + }, ; 7114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12905_from, ; char* from + ptr @.TypeMapEntry.12906_to; char* to + }, ; 7115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12907_from, ; char* from + ptr @.TypeMapEntry.12908_to; char* to + }, ; 7116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12909_from, ; char* from + ptr @.TypeMapEntry.12910_to; char* to + }, ; 7117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12911_from, ; char* from + ptr @.TypeMapEntry.12912_to; char* to + }, ; 7118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12913_from, ; char* from + ptr @.TypeMapEntry.12912_to; char* to + }, ; 7119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12914_from, ; char* from + ptr @.TypeMapEntry.12915_to; char* to + }, ; 7120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12916_from, ; char* from + ptr @.TypeMapEntry.12915_to; char* to + }, ; 7121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12917_from, ; char* from + ptr @.TypeMapEntry.12918_to; char* to + }, ; 7122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12919_from, ; char* from + ptr @.TypeMapEntry.12918_to; char* to + }, ; 7123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12920_from, ; char* from + ptr @.TypeMapEntry.12921_to; char* to + }, ; 7124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12922_from, ; char* from + ptr @.TypeMapEntry.12921_to; char* to + }, ; 7125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12923_from, ; char* from + ptr @.TypeMapEntry.12924_to; char* to + }, ; 7126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12925_from, ; char* from + ptr @.TypeMapEntry.12924_to; char* to + }, ; 7127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12926_from, ; char* from + ptr @.TypeMapEntry.12927_to; char* to + }, ; 7128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12928_from, ; char* from + ptr @.TypeMapEntry.12927_to; char* to + }, ; 7129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12929_from, ; char* from + ptr @.TypeMapEntry.12930_to; char* to + }, ; 7130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12931_from, ; char* from + ptr @.TypeMapEntry.12932_to; char* to + }, ; 7131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12933_from, ; char* from + ptr @.TypeMapEntry.12934_to; char* to + }, ; 7132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12935_from, ; char* from + ptr @.TypeMapEntry.12936_to; char* to + }, ; 7133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12937_from, ; char* from + ptr @.TypeMapEntry.12936_to; char* to + }, ; 7134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12938_from, ; char* from + ptr @.TypeMapEntry.12939_to; char* to + }, ; 7135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12940_from, ; char* from + ptr @.TypeMapEntry.12941_to; char* to + }, ; 7136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12942_from, ; char* from + ptr @.TypeMapEntry.12943_to; char* to + }, ; 7137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12944_from, ; char* from + ptr @.TypeMapEntry.12945_to; char* to + }, ; 7138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12946_from, ; char* from + ptr @.TypeMapEntry.12947_to; char* to + }, ; 7139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12948_from, ; char* from + ptr @.TypeMapEntry.12949_to; char* to + }, ; 7140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12950_from, ; char* from + ptr @.TypeMapEntry.12949_to; char* to + }, ; 7141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12951_from, ; char* from + ptr @.TypeMapEntry.12952_to; char* to + }, ; 7142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12953_from, ; char* from + ptr @.TypeMapEntry.12952_to; char* to + }, ; 7143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12954_from, ; char* from + ptr @.TypeMapEntry.12955_to; char* to + }, ; 7144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12956_from, ; char* from + ptr @.TypeMapEntry.12957_to; char* to + }, ; 7145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12958_from, ; char* from + ptr @.TypeMapEntry.12959_to; char* to + }, ; 7146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12960_from, ; char* from + ptr @.TypeMapEntry.12959_to; char* to + }, ; 7147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12961_from, ; char* from + ptr @.TypeMapEntry.12962_to; char* to + }, ; 7148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12963_from, ; char* from + ptr @.TypeMapEntry.12964_to; char* to + }, ; 7149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12965_from, ; char* from + ptr @.TypeMapEntry.12966_to; char* to + }, ; 7150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12967_from, ; char* from + ptr @.TypeMapEntry.12968_to; char* to + }, ; 7151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12969_from, ; char* from + ptr @.TypeMapEntry.12970_to; char* to + }, ; 7152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12971_from, ; char* from + ptr @.TypeMapEntry.12972_to; char* to + }, ; 7153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12973_from, ; char* from + ptr @.TypeMapEntry.12974_to; char* to + }, ; 7154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12975_from, ; char* from + ptr @.TypeMapEntry.12976_to; char* to + }, ; 7155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12977_from, ; char* from + ptr @.TypeMapEntry.12976_to; char* to + }, ; 7156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12978_from, ; char* from + ptr @.TypeMapEntry.12979_to; char* to + }, ; 7157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12980_from, ; char* from + ptr @.TypeMapEntry.12979_to; char* to + }, ; 7158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12981_from, ; char* from + ptr @.TypeMapEntry.12982_to; char* to + }, ; 7159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12983_from, ; char* from + ptr @.TypeMapEntry.12984_to; char* to + }, ; 7160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12985_from, ; char* from + ptr @.TypeMapEntry.12984_to; char* to + }, ; 7161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12986_from, ; char* from + ptr @.TypeMapEntry.12987_to; char* to + }, ; 7162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12988_from, ; char* from + ptr @.TypeMapEntry.12989_to; char* to + }, ; 7163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12990_from, ; char* from + ptr @.TypeMapEntry.12991_to; char* to + }, ; 7164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12992_from, ; char* from + ptr @.TypeMapEntry.12993_to; char* to + }, ; 7165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12994_from, ; char* from + ptr @.TypeMapEntry.12995_to; char* to + }, ; 7166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12996_from, ; char* from + ptr @.TypeMapEntry.12997_to; char* to + }, ; 7167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12998_from, ; char* from + ptr @.TypeMapEntry.12995_to; char* to + }, ; 7168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12999_from, ; char* from + ptr @.TypeMapEntry.13000_to; char* to + }, ; 7169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13001_from, ; char* from + ptr @.TypeMapEntry.13000_to; char* to + }, ; 7170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13002_from, ; char* from + ptr @.TypeMapEntry.13003_to; char* to + }, ; 7171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13004_from, ; char* from + ptr @.TypeMapEntry.13003_to; char* to + }, ; 7172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13005_from, ; char* from + ptr @.TypeMapEntry.13006_to; char* to + }, ; 7173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13007_from, ; char* from + ptr @.TypeMapEntry.13008_to; char* to + }, ; 7174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13009_from, ; char* from + ptr @.TypeMapEntry.13008_to; char* to + }, ; 7175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13010_from, ; char* from + ptr @.TypeMapEntry.13011_to; char* to + }, ; 7176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13012_from, ; char* from + ptr @.TypeMapEntry.13011_to; char* to + }, ; 7177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13013_from, ; char* from + ptr @.TypeMapEntry.13008_to; char* to + }, ; 7178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13014_from, ; char* from + ptr @.TypeMapEntry.13008_to; char* to + }, ; 7179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13015_from, ; char* from + ptr @.TypeMapEntry.13016_to; char* to + }, ; 7180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13017_from, ; char* from + ptr @.TypeMapEntry.13018_to; char* to + }, ; 7181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13019_from, ; char* from + ptr @.TypeMapEntry.13018_to; char* to + }, ; 7182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13020_from, ; char* from + ptr @.TypeMapEntry.13011_to; char* to + }, ; 7183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13021_from, ; char* from + ptr @.TypeMapEntry.13011_to; char* to + }, ; 7184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13022_from, ; char* from + ptr @.TypeMapEntry.13023_to; char* to + }, ; 7185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13024_from, ; char* from + ptr @.TypeMapEntry.13025_to; char* to + }, ; 7186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13026_from, ; char* from + ptr @.TypeMapEntry.13025_to; char* to + }, ; 7187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13027_from, ; char* from + ptr @.TypeMapEntry.13028_to; char* to + }, ; 7188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13029_from, ; char* from + ptr @.TypeMapEntry.13030_to; char* to + }, ; 7189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13031_from, ; char* from + ptr @.TypeMapEntry.13032_to; char* to + }, ; 7190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13033_from, ; char* from + ptr @.TypeMapEntry.13034_to; char* to + }, ; 7191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13035_from, ; char* from + ptr @.TypeMapEntry.13034_to; char* to + }, ; 7192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13036_from, ; char* from + ptr @.TypeMapEntry.13037_to; char* to + }, ; 7193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13038_from, ; char* from + ptr @.TypeMapEntry.13039_to; char* to + }, ; 7194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13040_from, ; char* from + ptr @.TypeMapEntry.13041_to; char* to + }, ; 7195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13042_from, ; char* from + ptr @.TypeMapEntry.13043_to; char* to + }, ; 7196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13044_from, ; char* from + ptr @.TypeMapEntry.13043_to; char* to + }, ; 7197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13045_from, ; char* from + ptr @.TypeMapEntry.13046_to; char* to + }, ; 7198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13047_from, ; char* from + ptr @.TypeMapEntry.13046_to; char* to + }, ; 7199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13048_from, ; char* from + ptr @.TypeMapEntry.13049_to; char* to + }, ; 7200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13050_from, ; char* from + ptr @.TypeMapEntry.13051_to; char* to + }, ; 7201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13052_from, ; char* from + ptr @.TypeMapEntry.13053_to; char* to + }, ; 7202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13054_from, ; char* from + ptr @.TypeMapEntry.13055_to; char* to + }, ; 7203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13056_from, ; char* from + ptr @.TypeMapEntry.13057_to; char* to + }, ; 7204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13058_from, ; char* from + ptr @.TypeMapEntry.13059_to; char* to + }, ; 7205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13060_from, ; char* from + ptr @.TypeMapEntry.13061_to; char* to + }, ; 7206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13062_from, ; char* from + ptr @.TypeMapEntry.13063_to; char* to + }, ; 7207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13064_from, ; char* from + ptr @.TypeMapEntry.13065_to; char* to + }, ; 7208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13066_from, ; char* from + ptr @.TypeMapEntry.13065_to; char* to + }, ; 7209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13067_from, ; char* from + ptr @.TypeMapEntry.13063_to; char* to + }, ; 7210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13068_from, ; char* from + ptr @.TypeMapEntry.13069_to; char* to + }, ; 7211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13070_from, ; char* from + ptr @.TypeMapEntry.13071_to; char* to + }, ; 7212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13072_from, ; char* from + ptr @.TypeMapEntry.13071_to; char* to + }, ; 7213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13073_from, ; char* from + ptr @.TypeMapEntry.13074_to; char* to + }, ; 7214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13075_from, ; char* from + ptr @.TypeMapEntry.13076_to; char* to + }, ; 7215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13077_from, ; char* from + ptr @.TypeMapEntry.13076_to; char* to + }, ; 7216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13078_from, ; char* from + ptr @.TypeMapEntry.13079_to; char* to + }, ; 7217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13080_from, ; char* from + ptr @.TypeMapEntry.13081_to; char* to + }, ; 7218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13082_from, ; char* from + ptr @.TypeMapEntry.13083_to; char* to + }, ; 7219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13084_from, ; char* from + ptr @.TypeMapEntry.13083_to; char* to + }, ; 7220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13085_from, ; char* from + ptr @.TypeMapEntry.13086_to; char* to + }, ; 7221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13087_from, ; char* from + ptr @.TypeMapEntry.13086_to; char* to + }, ; 7222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13088_from, ; char* from + ptr @.TypeMapEntry.13089_to; char* to + }, ; 7223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13090_from, ; char* from + ptr @.TypeMapEntry.13091_to; char* to + }, ; 7224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13092_from, ; char* from + ptr @.TypeMapEntry.13093_to; char* to + }, ; 7225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13094_from, ; char* from + ptr @.TypeMapEntry.13093_to; char* to + }, ; 7226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13095_from, ; char* from + ptr @.TypeMapEntry.13096_to; char* to + }, ; 7227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13097_from, ; char* from + ptr @.TypeMapEntry.13098_to; char* to + }, ; 7228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13099_from, ; char* from + ptr @.TypeMapEntry.13098_to; char* to + }, ; 7229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13100_from, ; char* from + ptr @.TypeMapEntry.13101_to; char* to + }, ; 7230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13102_from, ; char* from + ptr @.TypeMapEntry.13103_to; char* to + }, ; 7231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13104_from, ; char* from + ptr @.TypeMapEntry.13105_to; char* to + }, ; 7232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13106_from, ; char* from + ptr @.TypeMapEntry.13107_to; char* to + }, ; 7233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13108_from, ; char* from + ptr @.TypeMapEntry.13109_to; char* to + }, ; 7234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13110_from, ; char* from + ptr @.TypeMapEntry.13111_to; char* to + }, ; 7235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13112_from, ; char* from + ptr @.TypeMapEntry.13113_to; char* to + }, ; 7236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13114_from, ; char* from + ptr @.TypeMapEntry.13115_to; char* to + }, ; 7237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13116_from, ; char* from + ptr @.TypeMapEntry.13115_to; char* to + }, ; 7238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13117_from, ; char* from + ptr @.TypeMapEntry.13118_to; char* to + }, ; 7239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13119_from, ; char* from + ptr @.TypeMapEntry.13118_to; char* to + }, ; 7240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13120_from, ; char* from + ptr @.TypeMapEntry.13121_to; char* to + }, ; 7241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13122_from, ; char* from + ptr @.TypeMapEntry.13123_to; char* to + }, ; 7242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13124_from, ; char* from + ptr @.TypeMapEntry.13125_to; char* to + }, ; 7243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13126_from, ; char* from + ptr @.TypeMapEntry.13125_to; char* to + }, ; 7244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13127_from, ; char* from + ptr @.TypeMapEntry.13128_to; char* to + }, ; 7245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13129_from, ; char* from + ptr @.TypeMapEntry.13130_to; char* to + }, ; 7246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13131_from, ; char* from + ptr @.TypeMapEntry.13132_to; char* to + }, ; 7247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13133_from, ; char* from + ptr @.TypeMapEntry.13134_to; char* to + }, ; 7248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13135_from, ; char* from + ptr @.TypeMapEntry.13136_to; char* to + }, ; 7249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13137_from, ; char* from + ptr @.TypeMapEntry.13138_to; char* to + }, ; 7250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13139_from, ; char* from + ptr @.TypeMapEntry.13140_to; char* to + }, ; 7251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13141_from, ; char* from + ptr @.TypeMapEntry.13142_to; char* to + }, ; 7252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13143_from, ; char* from + ptr @.TypeMapEntry.13144_to; char* to + }, ; 7253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13145_from, ; char* from + ptr @.TypeMapEntry.13144_to; char* to + }, ; 7254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13146_from, ; char* from + ptr @.TypeMapEntry.13147_to; char* to + }, ; 7255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13148_from, ; char* from + ptr @.TypeMapEntry.13149_to; char* to + }, ; 7256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13150_from, ; char* from + ptr @.TypeMapEntry.13151_to; char* to + }, ; 7257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13152_from, ; char* from + ptr @.TypeMapEntry.13153_to; char* to + }, ; 7258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13154_from, ; char* from + ptr @.TypeMapEntry.13155_to; char* to + }, ; 7259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13156_from, ; char* from + ptr @.TypeMapEntry.13157_to; char* to + }, ; 7260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13158_from, ; char* from + ptr @.TypeMapEntry.13159_to; char* to + }, ; 7261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13160_from, ; char* from + ptr @.TypeMapEntry.13161_to; char* to + }, ; 7262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13162_from, ; char* from + ptr @.TypeMapEntry.13163_to; char* to + }, ; 7263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13164_from, ; char* from + ptr @.TypeMapEntry.13165_to; char* to + }, ; 7264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13166_from, ; char* from + ptr @.TypeMapEntry.13167_to; char* to + }, ; 7265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13168_from, ; char* from + ptr @.TypeMapEntry.13169_to; char* to + }, ; 7266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13170_from, ; char* from + ptr @.TypeMapEntry.13171_to; char* to + }, ; 7267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13172_from, ; char* from + ptr @.TypeMapEntry.13173_to; char* to + }, ; 7268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13174_from, ; char* from + ptr @.TypeMapEntry.13175_to; char* to + }, ; 7269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13176_from, ; char* from + ptr @.TypeMapEntry.13177_to; char* to + }, ; 7270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13178_from, ; char* from + ptr @.TypeMapEntry.13179_to; char* to + }, ; 7271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13180_from, ; char* from + ptr @.TypeMapEntry.13181_to; char* to + }, ; 7272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13182_from, ; char* from + ptr @.TypeMapEntry.13183_to; char* to + }, ; 7273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13184_from, ; char* from + ptr @.TypeMapEntry.13183_to; char* to + }, ; 7274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13185_from, ; char* from + ptr @.TypeMapEntry.13186_to; char* to + }, ; 7275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13187_from, ; char* from + ptr @.TypeMapEntry.13186_to; char* to + }, ; 7276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13188_from, ; char* from + ptr @.TypeMapEntry.13189_to; char* to + }, ; 7277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13190_from, ; char* from + ptr @.TypeMapEntry.13189_to; char* to + }, ; 7278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13191_from, ; char* from + ptr @.TypeMapEntry.13192_to; char* to + }, ; 7279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13193_from, ; char* from + ptr @.TypeMapEntry.13194_to; char* to + }, ; 7280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13195_from, ; char* from + ptr @.TypeMapEntry.13196_to; char* to + }, ; 7281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13197_from, ; char* from + ptr @.TypeMapEntry.13198_to; char* to + }, ; 7282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13199_from, ; char* from + ptr @.TypeMapEntry.13200_to; char* to + }, ; 7283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13201_from, ; char* from + ptr @.TypeMapEntry.13198_to; char* to + }, ; 7284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13202_from, ; char* from + ptr @.TypeMapEntry.13203_to; char* to + }, ; 7285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13204_from, ; char* from + ptr @.TypeMapEntry.13205_to; char* to + }, ; 7286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13206_from, ; char* from + ptr @.TypeMapEntry.13207_to; char* to + }, ; 7287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13208_from, ; char* from + ptr @.TypeMapEntry.13209_to; char* to + }, ; 7288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13210_from, ; char* from + ptr @.TypeMapEntry.13211_to; char* to + }, ; 7289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13212_from, ; char* from + ptr @.TypeMapEntry.13213_to; char* to + }, ; 7290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13214_from, ; char* from + ptr @.TypeMapEntry.13215_to; char* to + }, ; 7291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13216_from, ; char* from + ptr @.TypeMapEntry.13217_to; char* to + }, ; 7292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13218_from, ; char* from + ptr @.TypeMapEntry.13219_to; char* to + }, ; 7293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13220_from, ; char* from + ptr @.TypeMapEntry.13221_to; char* to + }, ; 7294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13222_from, ; char* from + ptr @.TypeMapEntry.13223_to; char* to + }, ; 7295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13224_from, ; char* from + ptr @.TypeMapEntry.13225_to; char* to + }, ; 7296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13226_from, ; char* from + ptr @.TypeMapEntry.13227_to; char* to + }, ; 7297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13228_from, ; char* from + ptr @.TypeMapEntry.13229_to; char* to + }, ; 7298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13230_from, ; char* from + ptr @.TypeMapEntry.13231_to; char* to + }, ; 7299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13232_from, ; char* from + ptr @.TypeMapEntry.13233_to; char* to + }, ; 7300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13234_from, ; char* from + ptr @.TypeMapEntry.13235_to; char* to + }, ; 7301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13236_from, ; char* from + ptr @.TypeMapEntry.13237_to; char* to + }, ; 7302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13238_from, ; char* from + ptr @.TypeMapEntry.13239_to; char* to + }, ; 7303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13240_from, ; char* from + ptr @.TypeMapEntry.13241_to; char* to + }, ; 7304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13242_from, ; char* from + ptr @.TypeMapEntry.13243_to; char* to + }, ; 7305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13244_from, ; char* from + ptr @.TypeMapEntry.13243_to; char* to + }, ; 7306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13245_from, ; char* from + ptr @.TypeMapEntry.13246_to; char* to + }, ; 7307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13247_from, ; char* from + ptr @.TypeMapEntry.13246_to; char* to + }, ; 7308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13248_from, ; char* from + ptr @.TypeMapEntry.13249_to; char* to + }, ; 7309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13250_from, ; char* from + ptr @.TypeMapEntry.13251_to; char* to + }, ; 7310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13252_from, ; char* from + ptr @.TypeMapEntry.13253_to; char* to + }, ; 7311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13254_from, ; char* from + ptr @.TypeMapEntry.13255_to; char* to + }, ; 7312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13256_from, ; char* from + ptr @.TypeMapEntry.13255_to; char* to + }, ; 7313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13257_from, ; char* from + ptr @.TypeMapEntry.13258_to; char* to + }, ; 7314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13259_from, ; char* from + ptr @.TypeMapEntry.13258_to; char* to + }, ; 7315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13260_from, ; char* from + ptr @.TypeMapEntry.13261_to; char* to + }, ; 7316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13262_from, ; char* from + ptr @.TypeMapEntry.13261_to; char* to + }, ; 7317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13263_from, ; char* from + ptr @.TypeMapEntry.13255_to; char* to + }, ; 7318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13264_from, ; char* from + ptr @.TypeMapEntry.13255_to; char* to + }, ; 7319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13265_from, ; char* from + ptr @.TypeMapEntry.13258_to; char* to + }, ; 7320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13266_from, ; char* from + ptr @.TypeMapEntry.13258_to; char* to + }, ; 7321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13267_from, ; char* from + ptr @.TypeMapEntry.13268_to; char* to + }, ; 7322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13269_from, ; char* from + ptr @.TypeMapEntry.13268_to; char* to + }, ; 7323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13270_from, ; char* from + ptr @.TypeMapEntry.13271_to; char* to + }, ; 7324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13272_from, ; char* from + ptr @.TypeMapEntry.13271_to; char* to + }, ; 7325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13273_from, ; char* from + ptr @.TypeMapEntry.13274_to; char* to + }, ; 7326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13275_from, ; char* from + ptr @.TypeMapEntry.13274_to; char* to + }, ; 7327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13276_from, ; char* from + ptr @.TypeMapEntry.13277_to; char* to + }, ; 7328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13278_from, ; char* from + ptr @.TypeMapEntry.13277_to; char* to + }, ; 7329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13279_from, ; char* from + ptr @.TypeMapEntry.13280_to; char* to + }, ; 7330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13281_from, ; char* from + ptr @.TypeMapEntry.13282_to; char* to + }, ; 7331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13283_from, ; char* from + ptr @.TypeMapEntry.13284_to; char* to + }, ; 7332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13285_from, ; char* from + ptr @.TypeMapEntry.13286_to; char* to + }, ; 7333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13287_from, ; char* from + ptr @.TypeMapEntry.13288_to; char* to + }, ; 7334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13289_from, ; char* from + ptr @.TypeMapEntry.13288_to; char* to + }, ; 7335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13290_from, ; char* from + ptr @.TypeMapEntry.13291_to; char* to + }, ; 7336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13292_from, ; char* from + ptr @.TypeMapEntry.13293_to; char* to + }, ; 7337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13294_from, ; char* from + ptr @.TypeMapEntry.13295_to; char* to + }, ; 7338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13296_from, ; char* from + ptr @.TypeMapEntry.13295_to; char* to + }, ; 7339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13297_from, ; char* from + ptr @.TypeMapEntry.13298_to; char* to + }, ; 7340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13299_from, ; char* from + ptr @.TypeMapEntry.13300_to; char* to + }, ; 7341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13301_from, ; char* from + ptr @.TypeMapEntry.13302_to; char* to + }, ; 7342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13303_from, ; char* from + ptr @.TypeMapEntry.13304_to; char* to + }, ; 7343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13305_from, ; char* from + ptr @.TypeMapEntry.13306_to; char* to + }, ; 7344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13307_from, ; char* from + ptr @.TypeMapEntry.13308_to; char* to + }, ; 7345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13309_from, ; char* from + ptr @.TypeMapEntry.13310_to; char* to + }, ; 7346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13311_from, ; char* from + ptr @.TypeMapEntry.13312_to; char* to + }, ; 7347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13313_from, ; char* from + ptr @.TypeMapEntry.13312_to; char* to + }, ; 7348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13314_from, ; char* from + ptr @.TypeMapEntry.13315_to; char* to + }, ; 7349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13316_from, ; char* from + ptr @.TypeMapEntry.13315_to; char* to + }, ; 7350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13317_from, ; char* from + ptr @.TypeMapEntry.13318_to; char* to + }, ; 7351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13319_from, ; char* from + ptr @.TypeMapEntry.13320_to; char* to + }, ; 7352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13321_from, ; char* from + ptr @.TypeMapEntry.13322_to; char* to + }, ; 7353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13323_from, ; char* from + ptr @.TypeMapEntry.13324_to; char* to + }, ; 7354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13325_from, ; char* from + ptr @.TypeMapEntry.13326_to; char* to + }, ; 7355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13327_from, ; char* from + ptr @.TypeMapEntry.13324_to; char* to + }, ; 7356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13328_from, ; char* from + ptr @.TypeMapEntry.13329_to; char* to + }, ; 7357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13330_from, ; char* from + ptr @.TypeMapEntry.13331_to; char* to + }, ; 7358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13332_from, ; char* from + ptr @.TypeMapEntry.13333_to; char* to + }, ; 7359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13334_from, ; char* from + ptr @.TypeMapEntry.13335_to; char* to + }, ; 7360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13336_from, ; char* from + ptr @.TypeMapEntry.13337_to; char* to + }, ; 7361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13338_from, ; char* from + ptr @.TypeMapEntry.13339_to; char* to + }, ; 7362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13340_from, ; char* from + ptr @.TypeMapEntry.13341_to; char* to + }, ; 7363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13342_from, ; char* from + ptr @.TypeMapEntry.13343_to; char* to + }, ; 7364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13344_from, ; char* from + ptr @.TypeMapEntry.13343_to; char* to + }, ; 7365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13345_from, ; char* from + ptr @.TypeMapEntry.13346_to; char* to + }, ; 7366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13347_from, ; char* from + ptr @.TypeMapEntry.13346_to; char* to + }, ; 7367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13348_from, ; char* from + ptr @.TypeMapEntry.13349_to; char* to + }, ; 7368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13350_from, ; char* from + ptr @.TypeMapEntry.13351_to; char* to + }, ; 7369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13352_from, ; char* from + ptr @.TypeMapEntry.13353_to; char* to + }, ; 7370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13354_from, ; char* from + ptr @.TypeMapEntry.13355_to; char* to + }, ; 7371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13356_from, ; char* from + ptr @.TypeMapEntry.13357_to; char* to + }, ; 7372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13358_from, ; char* from + ptr @.TypeMapEntry.13359_to; char* to + }, ; 7373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13360_from, ; char* from + ptr @.TypeMapEntry.13361_to; char* to + }, ; 7374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13362_from, ; char* from + ptr @.TypeMapEntry.13363_to; char* to + }, ; 7375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13364_from, ; char* from + ptr @.TypeMapEntry.13365_to; char* to + }, ; 7376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13366_from, ; char* from + ptr @.TypeMapEntry.13367_to; char* to + }, ; 7377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13368_from, ; char* from + ptr @.TypeMapEntry.13369_to; char* to + }, ; 7378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13370_from, ; char* from + ptr @.TypeMapEntry.13371_to; char* to + }, ; 7379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13372_from, ; char* from + ptr @.TypeMapEntry.13371_to; char* to + }, ; 7380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13373_from, ; char* from + ptr @.TypeMapEntry.13374_to; char* to + }, ; 7381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13375_from, ; char* from + ptr @.TypeMapEntry.13376_to; char* to + }, ; 7382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13377_from, ; char* from + ptr @.TypeMapEntry.13378_to; char* to + }, ; 7383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13379_from, ; char* from + ptr @.TypeMapEntry.13380_to; char* to + }, ; 7384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13381_from, ; char* from + ptr @.TypeMapEntry.13382_to; char* to + }, ; 7385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13383_from, ; char* from + ptr @.TypeMapEntry.13384_to; char* to + }, ; 7386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13385_from, ; char* from + ptr @.TypeMapEntry.13386_to; char* to + }, ; 7387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13387_from, ; char* from + ptr @.TypeMapEntry.13388_to; char* to + }, ; 7388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13389_from, ; char* from + ptr @.TypeMapEntry.13390_to; char* to + }, ; 7389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13391_from, ; char* from + ptr @.TypeMapEntry.13392_to; char* to + }, ; 7390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13393_from, ; char* from + ptr @.TypeMapEntry.13394_to; char* to + }, ; 7391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13395_from, ; char* from + ptr @.TypeMapEntry.13396_to; char* to + }, ; 7392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13397_from, ; char* from + ptr @.TypeMapEntry.13398_to; char* to + }, ; 7393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13399_from, ; char* from + ptr @.TypeMapEntry.13398_to; char* to + }, ; 7394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13400_from, ; char* from + ptr @.TypeMapEntry.13401_to; char* to + }, ; 7395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13402_from, ; char* from + ptr @.TypeMapEntry.13403_to; char* to + }, ; 7396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13404_from, ; char* from + ptr @.TypeMapEntry.13403_to; char* to + }, ; 7397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13405_from, ; char* from + ptr @.TypeMapEntry.13406_to; char* to + }, ; 7398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13407_from, ; char* from + ptr @.TypeMapEntry.13408_to; char* to + }, ; 7399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13409_from, ; char* from + ptr @.TypeMapEntry.13408_to; char* to + }, ; 7400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13410_from, ; char* from + ptr @.TypeMapEntry.13411_to; char* to + }, ; 7401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13412_from, ; char* from + ptr @.TypeMapEntry.13413_to; char* to + }, ; 7402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13414_from, ; char* from + ptr @.TypeMapEntry.13415_to; char* to + }, ; 7403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13416_from, ; char* from + ptr @.TypeMapEntry.13417_to; char* to + }, ; 7404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13418_from, ; char* from + ptr @.TypeMapEntry.13419_to; char* to + }, ; 7405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13420_from, ; char* from + ptr @.TypeMapEntry.13421_to; char* to + }, ; 7406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13422_from, ; char* from + ptr @.TypeMapEntry.13423_to; char* to + }, ; 7407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13424_from, ; char* from + ptr @.TypeMapEntry.13425_to; char* to + }, ; 7408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13426_from, ; char* from + ptr @.TypeMapEntry.13427_to; char* to + }, ; 7409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13428_from, ; char* from + ptr @.TypeMapEntry.13429_to; char* to + }, ; 7410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13430_from, ; char* from + ptr @.TypeMapEntry.13431_to; char* to + }, ; 7411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13432_from, ; char* from + ptr @.TypeMapEntry.13433_to; char* to + }, ; 7412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13434_from, ; char* from + ptr @.TypeMapEntry.13435_to; char* to + }, ; 7413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13436_from, ; char* from + ptr @.TypeMapEntry.13435_to; char* to + }, ; 7414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13437_from, ; char* from + ptr @.TypeMapEntry.13438_to; char* to + }, ; 7415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13439_from, ; char* from + ptr @.TypeMapEntry.13440_to; char* to + }, ; 7416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13441_from, ; char* from + ptr @.TypeMapEntry.13442_to; char* to + }, ; 7417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13443_from, ; char* from + ptr @.TypeMapEntry.13444_to; char* to + }, ; 7418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13445_from, ; char* from + ptr @.TypeMapEntry.13446_to; char* to + }, ; 7419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13447_from, ; char* from + ptr @.TypeMapEntry.13448_to; char* to + }, ; 7420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13449_from, ; char* from + ptr @.TypeMapEntry.13450_to; char* to + }, ; 7421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13451_from, ; char* from + ptr @.TypeMapEntry.13452_to; char* to + }, ; 7422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13453_from, ; char* from + ptr @.TypeMapEntry.13454_to; char* to + }, ; 7423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13455_from, ; char* from + ptr @.TypeMapEntry.13456_to; char* to + }, ; 7424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13457_from, ; char* from + ptr @.TypeMapEntry.13456_to; char* to + }, ; 7425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13458_from, ; char* from + ptr @.TypeMapEntry.13459_to; char* to + }, ; 7426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13460_from, ; char* from + ptr @.TypeMapEntry.13461_to; char* to + }, ; 7427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13462_from, ; char* from + ptr @.TypeMapEntry.13463_to; char* to + }, ; 7428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13464_from, ; char* from + ptr @.TypeMapEntry.13463_to; char* to + }, ; 7429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13465_from, ; char* from + ptr @.TypeMapEntry.13466_to; char* to + }, ; 7430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13467_from, ; char* from + ptr @.TypeMapEntry.13468_to; char* to + }, ; 7431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13469_from, ; char* from + ptr @.TypeMapEntry.13468_to; char* to + }, ; 7432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13470_from, ; char* from + ptr @.TypeMapEntry.13471_to; char* to + }, ; 7433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13472_from, ; char* from + ptr @.TypeMapEntry.13473_to; char* to + }, ; 7434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13474_from, ; char* from + ptr @.TypeMapEntry.13473_to; char* to + }, ; 7435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13475_from, ; char* from + ptr @.TypeMapEntry.13476_to; char* to + }, ; 7436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13477_from, ; char* from + ptr @.TypeMapEntry.13478_to; char* to + }, ; 7437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13479_from, ; char* from + ptr @.TypeMapEntry.13478_to; char* to + }, ; 7438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13480_from, ; char* from + ptr @.TypeMapEntry.13481_to; char* to + }, ; 7439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13482_from, ; char* from + ptr @.TypeMapEntry.13483_to; char* to + }, ; 7440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13484_from, ; char* from + ptr @.TypeMapEntry.13483_to; char* to + }, ; 7441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13485_from, ; char* from + ptr @.TypeMapEntry.13486_to; char* to + }, ; 7442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13487_from, ; char* from + ptr @.TypeMapEntry.13488_to; char* to + }, ; 7443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13489_from, ; char* from + ptr @.TypeMapEntry.13490_to; char* to + }, ; 7444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13491_from, ; char* from + ptr @.TypeMapEntry.13492_to; char* to + }, ; 7445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13493_from, ; char* from + ptr @.TypeMapEntry.13494_to; char* to + }, ; 7446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13495_from, ; char* from + ptr @.TypeMapEntry.13496_to; char* to + }, ; 7447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13497_from, ; char* from + ptr @.TypeMapEntry.13498_to; char* to + }, ; 7448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13499_from, ; char* from + ptr @.TypeMapEntry.13500_to; char* to + }, ; 7449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13501_from, ; char* from + ptr @.TypeMapEntry.13502_to; char* to + }, ; 7450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13503_from, ; char* from + ptr @.TypeMapEntry.13504_to; char* to + }, ; 7451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13505_from, ; char* from + ptr @.TypeMapEntry.13504_to; char* to + }, ; 7452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13506_from, ; char* from + ptr @.TypeMapEntry.13507_to; char* to + }, ; 7453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13508_from, ; char* from + ptr @.TypeMapEntry.13507_to; char* to + }, ; 7454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13509_from, ; char* from + ptr @.TypeMapEntry.13510_to; char* to + }, ; 7455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13511_from, ; char* from + ptr @.TypeMapEntry.13510_to; char* to + }, ; 7456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13512_from, ; char* from + ptr @.TypeMapEntry.13513_to; char* to + }, ; 7457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13514_from, ; char* from + ptr @.TypeMapEntry.13513_to; char* to + }, ; 7458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13515_from, ; char* from + ptr @.TypeMapEntry.13516_to; char* to + }, ; 7459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13517_from, ; char* from + ptr @.TypeMapEntry.13518_to; char* to + }, ; 7460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13519_from, ; char* from + ptr @.TypeMapEntry.13520_to; char* to + }, ; 7461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13521_from, ; char* from + ptr @.TypeMapEntry.13522_to; char* to + }, ; 7462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13523_from, ; char* from + ptr @.TypeMapEntry.13524_to; char* to + }, ; 7463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13525_from, ; char* from + ptr @.TypeMapEntry.13526_to; char* to + }, ; 7464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13527_from, ; char* from + ptr @.TypeMapEntry.13528_to; char* to + }, ; 7465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13529_from, ; char* from + ptr @.TypeMapEntry.13530_to; char* to + }, ; 7466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13531_from, ; char* from + ptr @.TypeMapEntry.13530_to; char* to + }, ; 7467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13532_from, ; char* from + ptr @.TypeMapEntry.13533_to; char* to + }, ; 7468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13534_from, ; char* from + ptr @.TypeMapEntry.13535_to; char* to + }, ; 7469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13536_from, ; char* from + ptr @.TypeMapEntry.13537_to; char* to + }, ; 7470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13538_from, ; char* from + ptr @.TypeMapEntry.13539_to; char* to + }, ; 7471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13540_from, ; char* from + ptr @.TypeMapEntry.13510_to; char* to + }, ; 7472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13541_from, ; char* from + ptr @.TypeMapEntry.13510_to; char* to + }, ; 7473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13542_from, ; char* from + ptr @.TypeMapEntry.13543_to; char* to + }, ; 7474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13544_from, ; char* from + ptr @.TypeMapEntry.13545_to; char* to + }, ; 7475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13546_from, ; char* from + ptr @.TypeMapEntry.13547_to; char* to + }, ; 7476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13548_from, ; char* from + ptr @.TypeMapEntry.13549_to; char* to + }, ; 7477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13550_from, ; char* from + ptr @.TypeMapEntry.13551_to; char* to + }, ; 7478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13552_from, ; char* from + ptr @.TypeMapEntry.13553_to; char* to + }, ; 7479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13554_from, ; char* from + ptr @.TypeMapEntry.13555_to; char* to + }, ; 7480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13556_from, ; char* from + ptr @.TypeMapEntry.13557_to; char* to + }, ; 7481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13558_from, ; char* from + ptr @.TypeMapEntry.13559_to; char* to + }, ; 7482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13560_from, ; char* from + ptr @.TypeMapEntry.13561_to; char* to + }, ; 7483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13562_from, ; char* from + ptr @.TypeMapEntry.13561_to; char* to + }, ; 7484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13563_from, ; char* from + ptr @.TypeMapEntry.13564_to; char* to + }, ; 7485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13565_from, ; char* from + ptr @.TypeMapEntry.13566_to; char* to + }, ; 7486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13567_from, ; char* from + ptr @.TypeMapEntry.13568_to; char* to + }, ; 7487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13569_from, ; char* from + ptr @.TypeMapEntry.13568_to; char* to + }, ; 7488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13570_from, ; char* from + ptr @.TypeMapEntry.13571_to; char* to + }, ; 7489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13572_from, ; char* from + ptr @.TypeMapEntry.13573_to; char* to + }, ; 7490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13574_from, ; char* from + ptr @.TypeMapEntry.13573_to; char* to + }, ; 7491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13575_from, ; char* from + ptr @.TypeMapEntry.13576_to; char* to + }, ; 7492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13577_from, ; char* from + ptr @.TypeMapEntry.13578_to; char* to + }, ; 7493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13579_from, ; char* from + ptr @.TypeMapEntry.13576_to; char* to + }, ; 7494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13580_from, ; char* from + ptr @.TypeMapEntry.13581_to; char* to + }, ; 7495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13582_from, ; char* from + ptr @.TypeMapEntry.13583_to; char* to + }, ; 7496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13584_from, ; char* from + ptr @.TypeMapEntry.13581_to; char* to + }, ; 7497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13585_from, ; char* from + ptr @.TypeMapEntry.13586_to; char* to + }, ; 7498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13587_from, ; char* from + ptr @.TypeMapEntry.13588_to; char* to + }, ; 7499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13589_from, ; char* from + ptr @.TypeMapEntry.13590_to; char* to + }, ; 7500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13591_from, ; char* from + ptr @.TypeMapEntry.13592_to; char* to + }, ; 7501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13593_from, ; char* from + ptr @.TypeMapEntry.13594_to; char* to + }, ; 7502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13595_from, ; char* from + ptr @.TypeMapEntry.13596_to; char* to + }, ; 7503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13597_from, ; char* from + ptr @.TypeMapEntry.13598_to; char* to + }, ; 7504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13599_from, ; char* from + ptr @.TypeMapEntry.13600_to; char* to + }, ; 7505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13601_from, ; char* from + ptr @.TypeMapEntry.13602_to; char* to + }, ; 7506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13603_from, ; char* from + ptr @.TypeMapEntry.13604_to; char* to + }, ; 7507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13605_from, ; char* from + ptr @.TypeMapEntry.13606_to; char* to + }, ; 7508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13607_from, ; char* from + ptr @.TypeMapEntry.13608_to; char* to + }, ; 7509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13609_from, ; char* from + ptr @.TypeMapEntry.13608_to; char* to + }, ; 7510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13610_from, ; char* from + ptr @.TypeMapEntry.13611_to; char* to + }, ; 7511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13612_from, ; char* from + ptr @.TypeMapEntry.13613_to; char* to + }, ; 7512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13614_from, ; char* from + ptr @.TypeMapEntry.13615_to; char* to + }, ; 7513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13616_from, ; char* from + ptr @.TypeMapEntry.13617_to; char* to + }, ; 7514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13618_from, ; char* from + ptr @.TypeMapEntry.13619_to; char* to + }, ; 7515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13620_from, ; char* from + ptr @.TypeMapEntry.13621_to; char* to + }, ; 7516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13622_from, ; char* from + ptr @.TypeMapEntry.13623_to; char* to + }, ; 7517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13624_from, ; char* from + ptr @.TypeMapEntry.13625_to; char* to + }, ; 7518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13626_from, ; char* from + ptr @.TypeMapEntry.13627_to; char* to + }, ; 7519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13628_from, ; char* from + ptr @.TypeMapEntry.13627_to; char* to + }, ; 7520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13629_from, ; char* from + ptr @.TypeMapEntry.13630_to; char* to + }, ; 7521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13631_from, ; char* from + ptr @.TypeMapEntry.13632_to; char* to + }, ; 7522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13633_from, ; char* from + ptr @.TypeMapEntry.13634_to; char* to + }, ; 7523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13635_from, ; char* from + ptr @.TypeMapEntry.13632_to; char* to + }, ; 7524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13636_from, ; char* from + ptr @.TypeMapEntry.13637_to; char* to + }, ; 7525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13638_from, ; char* from + ptr @.TypeMapEntry.13639_to; char* to + }, ; 7526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13640_from, ; char* from + ptr @.TypeMapEntry.13637_to; char* to + }, ; 7527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13641_from, ; char* from + ptr @.TypeMapEntry.13642_to; char* to + }, ; 7528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13643_from, ; char* from + ptr @.TypeMapEntry.13642_to; char* to + }, ; 7529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13644_from, ; char* from + ptr @.TypeMapEntry.13645_to; char* to + }, ; 7530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13646_from, ; char* from + ptr @.TypeMapEntry.13647_to; char* to + }, ; 7531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13648_from, ; char* from + ptr @.TypeMapEntry.13649_to; char* to + }, ; 7532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13650_from, ; char* from + ptr @.TypeMapEntry.13651_to; char* to + }, ; 7533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13652_from, ; char* from + ptr @.TypeMapEntry.13653_to; char* to + }, ; 7534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13654_from, ; char* from + ptr @.TypeMapEntry.13653_to; char* to + }, ; 7535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13655_from, ; char* from + ptr @.TypeMapEntry.13656_to; char* to + }, ; 7536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13657_from, ; char* from + ptr @.TypeMapEntry.13656_to; char* to + }, ; 7537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13658_from, ; char* from + ptr @.TypeMapEntry.13659_to; char* to + }, ; 7538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13660_from, ; char* from + ptr @.TypeMapEntry.13661_to; char* to + }, ; 7539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13662_from, ; char* from + ptr @.TypeMapEntry.13663_to; char* to + }, ; 7540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13664_from, ; char* from + ptr @.TypeMapEntry.13665_to; char* to + }, ; 7541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13666_from, ; char* from + ptr @.TypeMapEntry.13667_to; char* to + }, ; 7542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13668_from, ; char* from + ptr @.TypeMapEntry.13669_to; char* to + }, ; 7543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13670_from, ; char* from + ptr @.TypeMapEntry.13671_to; char* to + }, ; 7544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13672_from, ; char* from + ptr @.TypeMapEntry.13673_to; char* to + }, ; 7545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13674_from, ; char* from + ptr @.TypeMapEntry.13671_to; char* to + }, ; 7546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13675_from, ; char* from + ptr @.TypeMapEntry.13676_to; char* to + }, ; 7547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13677_from, ; char* from + ptr @.TypeMapEntry.13678_to; char* to + }, ; 7548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13679_from, ; char* from + ptr @.TypeMapEntry.13680_to; char* to + }, ; 7549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13681_from, ; char* from + ptr @.TypeMapEntry.13682_to; char* to + }, ; 7550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13683_from, ; char* from + ptr @.TypeMapEntry.13682_to; char* to + }, ; 7551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13684_from, ; char* from + ptr @.TypeMapEntry.13685_to; char* to + }, ; 7552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13686_from, ; char* from + ptr @.TypeMapEntry.13685_to; char* to + }, ; 7553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13687_from, ; char* from + ptr @.TypeMapEntry.13688_to; char* to + }, ; 7554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13689_from, ; char* from + ptr @.TypeMapEntry.13690_to; char* to + }, ; 7555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13691_from, ; char* from + ptr @.TypeMapEntry.13690_to; char* to + }, ; 7556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13692_from, ; char* from + ptr @.TypeMapEntry.13693_to; char* to + }, ; 7557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13694_from, ; char* from + ptr @.TypeMapEntry.13693_to; char* to + }, ; 7558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13695_from, ; char* from + ptr @.TypeMapEntry.13696_to; char* to + }, ; 7559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13697_from, ; char* from + ptr @.TypeMapEntry.13696_to; char* to + }, ; 7560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13698_from, ; char* from + ptr @.TypeMapEntry.13699_to; char* to + }, ; 7561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13700_from, ; char* from + ptr @.TypeMapEntry.13699_to; char* to + }, ; 7562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13701_from, ; char* from + ptr @.TypeMapEntry.13702_to; char* to + }, ; 7563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13703_from, ; char* from + ptr @.TypeMapEntry.13704_to; char* to + }, ; 7564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13705_from, ; char* from + ptr @.TypeMapEntry.13704_to; char* to + }, ; 7565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13706_from, ; char* from + ptr @.TypeMapEntry.13707_to; char* to + }, ; 7566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13708_from, ; char* from + ptr @.TypeMapEntry.13707_to; char* to + }, ; 7567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13709_from, ; char* from + ptr @.TypeMapEntry.13702_to; char* to + }, ; 7568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13710_from, ; char* from + ptr @.TypeMapEntry.13711_to; char* to + }, ; 7569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13712_from, ; char* from + ptr @.TypeMapEntry.13713_to; char* to + }, ; 7570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13714_from, ; char* from + ptr @.TypeMapEntry.13713_to; char* to + }, ; 7571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13715_from, ; char* from + ptr @.TypeMapEntry.13716_to; char* to + }, ; 7572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13717_from, ; char* from + ptr @.TypeMapEntry.13716_to; char* to + }, ; 7573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13718_from, ; char* from + ptr @.TypeMapEntry.13711_to; char* to + }, ; 7574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13719_from, ; char* from + ptr @.TypeMapEntry.13720_to; char* to + }, ; 7575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13721_from, ; char* from + ptr @.TypeMapEntry.13722_to; char* to + }, ; 7576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13723_from, ; char* from + ptr @.TypeMapEntry.13720_to; char* to + }, ; 7577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13724_from, ; char* from + ptr @.TypeMapEntry.13725_to; char* to + }, ; 7578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13726_from, ; char* from + ptr @.TypeMapEntry.13727_to; char* to + }, ; 7579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13728_from, ; char* from + ptr @.TypeMapEntry.13725_to; char* to + }, ; 7580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13729_from, ; char* from + ptr @.TypeMapEntry.13730_to; char* to + }, ; 7581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13731_from, ; char* from + ptr @.TypeMapEntry.13730_to; char* to + }, ; 7582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13732_from, ; char* from + ptr @.TypeMapEntry.13733_to; char* to + }, ; 7583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13734_from, ; char* from + ptr @.TypeMapEntry.13733_to; char* to + }, ; 7584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13735_from, ; char* from + ptr @.TypeMapEntry.13736_to; char* to + }, ; 7585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13737_from, ; char* from + ptr @.TypeMapEntry.13736_to; char* to + }, ; 7586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13738_from, ; char* from + ptr @.TypeMapEntry.13739_to; char* to + }, ; 7587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13740_from, ; char* from + ptr @.TypeMapEntry.13741_to; char* to + }, ; 7588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13742_from, ; char* from + ptr @.TypeMapEntry.13739_to; char* to + }, ; 7589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13743_from, ; char* from + ptr @.TypeMapEntry.13744_to; char* to + }, ; 7590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13745_from, ; char* from + ptr @.TypeMapEntry.13746_to; char* to + }, ; 7591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13747_from, ; char* from + ptr @.TypeMapEntry.13744_to; char* to + }, ; 7592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13748_from, ; char* from + ptr @.TypeMapEntry.13749_to; char* to + }, ; 7593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13750_from, ; char* from + ptr @.TypeMapEntry.13749_to; char* to + }, ; 7594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13751_from, ; char* from + ptr @.TypeMapEntry.13752_to; char* to + }, ; 7595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13753_from, ; char* from + ptr @.TypeMapEntry.13754_to; char* to + }, ; 7596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13755_from, ; char* from + ptr @.TypeMapEntry.13756_to; char* to + }, ; 7597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13757_from, ; char* from + ptr @.TypeMapEntry.13758_to; char* to + }, ; 7598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13759_from, ; char* from + ptr @.TypeMapEntry.13756_to; char* to + }, ; 7599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13760_from, ; char* from + ptr @.TypeMapEntry.13761_to; char* to + }, ; 7600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13762_from, ; char* from + ptr @.TypeMapEntry.13763_to; char* to + }, ; 7601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13764_from, ; char* from + ptr @.TypeMapEntry.13765_to; char* to + }, ; 7602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13766_from, ; char* from + ptr @.TypeMapEntry.13767_to; char* to + }, ; 7603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13768_from, ; char* from + ptr @.TypeMapEntry.13769_to; char* to + }, ; 7604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13770_from, ; char* from + ptr @.TypeMapEntry.13769_to; char* to + }, ; 7605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13771_from, ; char* from + ptr @.TypeMapEntry.13772_to; char* to + }, ; 7606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13773_from, ; char* from + ptr @.TypeMapEntry.13774_to; char* to + }, ; 7607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13775_from, ; char* from + ptr @.TypeMapEntry.13774_to; char* to + }, ; 7608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13776_from, ; char* from + ptr @.TypeMapEntry.13777_to; char* to + }, ; 7609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13778_from, ; char* from + ptr @.TypeMapEntry.13779_to; char* to + }, ; 7610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13780_from, ; char* from + ptr @.TypeMapEntry.13781_to; char* to + }, ; 7611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13782_from, ; char* from + ptr @.TypeMapEntry.13783_to; char* to + }, ; 7612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13784_from, ; char* from + ptr @.TypeMapEntry.13785_to; char* to + }, ; 7613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13786_from, ; char* from + ptr @.TypeMapEntry.13787_to; char* to + }, ; 7614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13788_from, ; char* from + ptr @.TypeMapEntry.13789_to; char* to + }, ; 7615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13790_from, ; char* from + ptr @.TypeMapEntry.13787_to; char* to + }, ; 7616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13791_from, ; char* from + ptr @.TypeMapEntry.13792_to; char* to + }, ; 7617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13793_from, ; char* from + ptr @.TypeMapEntry.13794_to; char* to + }, ; 7618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13795_from, ; char* from + ptr @.TypeMapEntry.13796_to; char* to + }, ; 7619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13797_from, ; char* from + ptr @.TypeMapEntry.13798_to; char* to + }, ; 7620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13799_from, ; char* from + ptr @.TypeMapEntry.13800_to; char* to + }, ; 7621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13801_from, ; char* from + ptr @.TypeMapEntry.13802_to; char* to + }, ; 7622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13803_from, ; char* from + ptr @.TypeMapEntry.13804_to; char* to + }, ; 7623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13805_from, ; char* from + ptr @.TypeMapEntry.13806_to; char* to + }, ; 7624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13807_from, ; char* from + ptr @.TypeMapEntry.13808_to; char* to + }, ; 7625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13809_from, ; char* from + ptr @.TypeMapEntry.13810_to; char* to + }, ; 7626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13811_from, ; char* from + ptr @.TypeMapEntry.13812_to; char* to + }, ; 7627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13813_from, ; char* from + ptr @.TypeMapEntry.13812_to; char* to + }, ; 7628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13814_from, ; char* from + ptr @.TypeMapEntry.13815_to; char* to + }, ; 7629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13816_from, ; char* from + ptr @.TypeMapEntry.13817_to; char* to + }, ; 7630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13818_from, ; char* from + ptr @.TypeMapEntry.13817_to; char* to + }, ; 7631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13819_from, ; char* from + ptr @.TypeMapEntry.13820_to; char* to + }, ; 7632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13821_from, ; char* from + ptr @.TypeMapEntry.13820_to; char* to + }, ; 7633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13822_from, ; char* from + ptr @.TypeMapEntry.13823_to; char* to + }, ; 7634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13824_from, ; char* from + ptr @.TypeMapEntry.13823_to; char* to + }, ; 7635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13825_from, ; char* from + ptr @.TypeMapEntry.13826_to; char* to + }, ; 7636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13827_from, ; char* from + ptr @.TypeMapEntry.13826_to; char* to + }, ; 7637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13828_from, ; char* from + ptr @.TypeMapEntry.13829_to; char* to + }, ; 7638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13830_from, ; char* from + ptr @.TypeMapEntry.13829_to; char* to + }, ; 7639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13831_from, ; char* from + ptr @.TypeMapEntry.13832_to; char* to + }, ; 7640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13833_from, ; char* from + ptr @.TypeMapEntry.13832_to; char* to + }, ; 7641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13834_from, ; char* from + ptr @.TypeMapEntry.13835_to; char* to + }, ; 7642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13836_from, ; char* from + ptr @.TypeMapEntry.13835_to; char* to + }, ; 7643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13837_from, ; char* from + ptr @.TypeMapEntry.13838_to; char* to + }, ; 7644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13839_from, ; char* from + ptr @.TypeMapEntry.13840_to; char* to + }, ; 7645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13841_from, ; char* from + ptr @.TypeMapEntry.13842_to; char* to + }, ; 7646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13843_from, ; char* from + ptr @.TypeMapEntry.13844_to; char* to + }, ; 7647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13845_from, ; char* from + ptr @.TypeMapEntry.13846_to; char* to + }, ; 7648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13847_from, ; char* from + ptr @.TypeMapEntry.13848_to; char* to + }, ; 7649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13849_from, ; char* from + ptr @.TypeMapEntry.13850_to; char* to + }, ; 7650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13851_from, ; char* from + ptr @.TypeMapEntry.13852_to; char* to + }, ; 7651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13853_from, ; char* from + ptr @.TypeMapEntry.13854_to; char* to + }, ; 7652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13855_from, ; char* from + ptr @.TypeMapEntry.13856_to; char* to + }, ; 7653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13857_from, ; char* from + ptr @.TypeMapEntry.13858_to; char* to + }, ; 7654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13859_from, ; char* from + ptr @.TypeMapEntry.13860_to; char* to + }, ; 7655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13861_from, ; char* from + ptr @.TypeMapEntry.13860_to; char* to + }, ; 7656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13862_from, ; char* from + ptr @.TypeMapEntry.13863_to; char* to + }, ; 7657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13864_from, ; char* from + ptr @.TypeMapEntry.13863_to; char* to + }, ; 7658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13865_from, ; char* from + ptr @.TypeMapEntry.13866_to; char* to + }, ; 7659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13867_from, ; char* from + ptr @.TypeMapEntry.13868_to; char* to + }, ; 7660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13869_from, ; char* from + ptr @.TypeMapEntry.13870_to; char* to + }, ; 7661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13871_from, ; char* from + ptr @.TypeMapEntry.13872_to; char* to + }, ; 7662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13873_from, ; char* from + ptr @.TypeMapEntry.13872_to; char* to + }, ; 7663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13874_from, ; char* from + ptr @.TypeMapEntry.13875_to; char* to + }, ; 7664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13876_from, ; char* from + ptr @.TypeMapEntry.13877_to; char* to + }, ; 7665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13878_from, ; char* from + ptr @.TypeMapEntry.13877_to; char* to + }, ; 7666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13879_from, ; char* from + ptr @.TypeMapEntry.13880_to; char* to + }, ; 7667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13881_from, ; char* from + ptr @.TypeMapEntry.13882_to; char* to + }, ; 7668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13883_from, ; char* from + ptr @.TypeMapEntry.13884_to; char* to + }, ; 7669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13885_from, ; char* from + ptr @.TypeMapEntry.13886_to; char* to + }, ; 7670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13887_from, ; char* from + ptr @.TypeMapEntry.13884_to; char* to + }, ; 7671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13888_from, ; char* from + ptr @.TypeMapEntry.13889_to; char* to + }, ; 7672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13890_from, ; char* from + ptr @.TypeMapEntry.13891_to; char* to + }, ; 7673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13892_from, ; char* from + ptr @.TypeMapEntry.13893_to; char* to + }, ; 7674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13894_from, ; char* from + ptr @.TypeMapEntry.13893_to; char* to + }, ; 7675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13895_from, ; char* from + ptr @.TypeMapEntry.13896_to; char* to + }, ; 7676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13897_from, ; char* from + ptr @.TypeMapEntry.13896_to; char* to + }, ; 7677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13898_from, ; char* from + ptr @.TypeMapEntry.13899_to; char* to + }, ; 7678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13900_from, ; char* from + ptr @.TypeMapEntry.13901_to; char* to + }, ; 7679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13902_from, ; char* from + ptr @.TypeMapEntry.13903_to; char* to + }, ; 7680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13904_from, ; char* from + ptr @.TypeMapEntry.13905_to; char* to + }, ; 7681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13906_from, ; char* from + ptr @.TypeMapEntry.13896_to; char* to + }, ; 7682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13907_from, ; char* from + ptr @.TypeMapEntry.13896_to; char* to + }, ; 7683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13908_from, ; char* from + ptr @.TypeMapEntry.13909_to; char* to + }, ; 7684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13910_from, ; char* from + ptr @.TypeMapEntry.13909_to; char* to + }, ; 7685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13911_from, ; char* from + ptr @.TypeMapEntry.13912_to; char* to + }, ; 7686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13913_from, ; char* from + ptr @.TypeMapEntry.13912_to; char* to + }, ; 7687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13914_from, ; char* from + ptr @.TypeMapEntry.13915_to; char* to + }, ; 7688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13916_from, ; char* from + ptr @.TypeMapEntry.13915_to; char* to + }, ; 7689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13917_from, ; char* from + ptr @.TypeMapEntry.13918_to; char* to + }, ; 7690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13919_from, ; char* from + ptr @.TypeMapEntry.13918_to; char* to + }, ; 7691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13920_from, ; char* from + ptr @.TypeMapEntry.13921_to; char* to + }, ; 7692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13922_from, ; char* from + ptr @.TypeMapEntry.13923_to; char* to + }, ; 7693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13924_from, ; char* from + ptr @.TypeMapEntry.13925_to; char* to + }, ; 7694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13926_from, ; char* from + ptr @.TypeMapEntry.13927_to; char* to + }, ; 7695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13928_from, ; char* from + ptr @.TypeMapEntry.13929_to; char* to + }, ; 7696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13930_from, ; char* from + ptr @.TypeMapEntry.13931_to; char* to + }, ; 7697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13932_from, ; char* from + ptr @.TypeMapEntry.13929_to; char* to + }, ; 7698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13933_from, ; char* from + ptr @.TypeMapEntry.13934_to; char* to + }, ; 7699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13935_from, ; char* from + ptr @.TypeMapEntry.13936_to; char* to + }, ; 7700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13937_from, ; char* from + ptr @.TypeMapEntry.13938_to; char* to + }, ; 7701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13939_from, ; char* from + ptr @.TypeMapEntry.13940_to; char* to + }, ; 7702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13941_from, ; char* from + ptr @.TypeMapEntry.13942_to; char* to + }, ; 7703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13943_from, ; char* from + ptr @.TypeMapEntry.13942_to; char* to + }, ; 7704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13944_from, ; char* from + ptr @.TypeMapEntry.13945_to; char* to + }, ; 7705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13946_from, ; char* from + ptr @.TypeMapEntry.13947_to; char* to + }, ; 7706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13948_from, ; char* from + ptr @.TypeMapEntry.13949_to; char* to + }, ; 7707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13950_from, ; char* from + ptr @.TypeMapEntry.13951_to; char* to + }, ; 7708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13952_from, ; char* from + ptr @.TypeMapEntry.13951_to; char* to + }, ; 7709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13953_from, ; char* from + ptr @.TypeMapEntry.13954_to; char* to + }, ; 7710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13955_from, ; char* from + ptr @.TypeMapEntry.13956_to; char* to + }, ; 7711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13957_from, ; char* from + ptr @.TypeMapEntry.13956_to; char* to + }, ; 7712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13958_from, ; char* from + ptr @.TypeMapEntry.13959_to; char* to + }, ; 7713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13960_from, ; char* from + ptr @.TypeMapEntry.13959_to; char* to + }, ; 7714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13961_from, ; char* from + ptr @.TypeMapEntry.13962_to; char* to + }, ; 7715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13963_from, ; char* from + ptr @.TypeMapEntry.13962_to; char* to + }, ; 7716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13964_from, ; char* from + ptr @.TypeMapEntry.13965_to; char* to + }, ; 7717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13966_from, ; char* from + ptr @.TypeMapEntry.13967_to; char* to + }, ; 7718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13968_from, ; char* from + ptr @.TypeMapEntry.13969_to; char* to + }, ; 7719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13970_from, ; char* from + ptr @.TypeMapEntry.13967_to; char* to + }, ; 7720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13971_from, ; char* from + ptr @.TypeMapEntry.13972_to; char* to + }, ; 7721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13973_from, ; char* from + ptr @.TypeMapEntry.13974_to; char* to + }, ; 7722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13975_from, ; char* from + ptr @.TypeMapEntry.13974_to; char* to + }, ; 7723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13976_from, ; char* from + ptr @.TypeMapEntry.13977_to; char* to + }, ; 7724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13978_from, ; char* from + ptr @.TypeMapEntry.13977_to; char* to + }, ; 7725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13979_from, ; char* from + ptr @.TypeMapEntry.13980_to; char* to + }, ; 7726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13981_from, ; char* from + ptr @.TypeMapEntry.13980_to; char* to + }, ; 7727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13982_from, ; char* from + ptr @.TypeMapEntry.13983_to; char* to + }, ; 7728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13984_from, ; char* from + ptr @.TypeMapEntry.13983_to; char* to + }, ; 7729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13985_from, ; char* from + ptr @.TypeMapEntry.13986_to; char* to + }, ; 7730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13987_from, ; char* from + ptr @.TypeMapEntry.13988_to; char* to + }, ; 7731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13989_from, ; char* from + ptr @.TypeMapEntry.13990_to; char* to + }, ; 7732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13991_from, ; char* from + ptr @.TypeMapEntry.13988_to; char* to + }, ; 7733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13992_from, ; char* from + ptr @.TypeMapEntry.13993_to; char* to + }, ; 7734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13994_from, ; char* from + ptr @.TypeMapEntry.13995_to; char* to + }, ; 7735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13996_from, ; char* from + ptr @.TypeMapEntry.13997_to; char* to + }, ; 7736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13998_from, ; char* from + ptr @.TypeMapEntry.13997_to; char* to + }, ; 7737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13999_from, ; char* from + ptr @.TypeMapEntry.14000_to; char* to + }, ; 7738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14001_from, ; char* from + ptr @.TypeMapEntry.14002_to; char* to + }, ; 7739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14003_from, ; char* from + ptr @.TypeMapEntry.14004_to; char* to + }, ; 7740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14005_from, ; char* from + ptr @.TypeMapEntry.14006_to; char* to + }, ; 7741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14007_from, ; char* from + ptr @.TypeMapEntry.14004_to; char* to + }, ; 7742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14008_from, ; char* from + ptr @.TypeMapEntry.14009_to; char* to + }, ; 7743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14010_from, ; char* from + ptr @.TypeMapEntry.14011_to; char* to + }, ; 7744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14012_from, ; char* from + ptr @.TypeMapEntry.14013_to; char* to + }, ; 7745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14014_from, ; char* from + ptr @.TypeMapEntry.14011_to; char* to + }, ; 7746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14015_from, ; char* from + ptr @.TypeMapEntry.14016_to; char* to + }, ; 7747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14017_from, ; char* from + ptr @.TypeMapEntry.14018_to; char* to + }, ; 7748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14019_from, ; char* from + ptr @.TypeMapEntry.14016_to; char* to + }, ; 7749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14020_from, ; char* from + ptr @.TypeMapEntry.14021_to; char* to + }, ; 7750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14022_from, ; char* from + ptr @.TypeMapEntry.14021_to; char* to + }, ; 7751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14023_from, ; char* from + ptr @.TypeMapEntry.14024_to; char* to + }, ; 7752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14025_from, ; char* from + ptr @.TypeMapEntry.14024_to; char* to + }, ; 7753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14026_from, ; char* from + ptr @.TypeMapEntry.14027_to; char* to + }, ; 7754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14028_from, ; char* from + ptr @.TypeMapEntry.14029_to; char* to + }, ; 7755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14030_from, ; char* from + ptr @.TypeMapEntry.14029_to; char* to + }, ; 7756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14031_from, ; char* from + ptr @.TypeMapEntry.14032_to; char* to + }, ; 7757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14033_from, ; char* from + ptr @.TypeMapEntry.14034_to; char* to + }, ; 7758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14035_from, ; char* from + ptr @.TypeMapEntry.14034_to; char* to + }, ; 7759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14036_from, ; char* from + ptr @.TypeMapEntry.14037_to; char* to + }, ; 7760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14038_from, ; char* from + ptr @.TypeMapEntry.14039_to; char* to + }, ; 7761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14040_from, ; char* from + ptr @.TypeMapEntry.14041_to; char* to + }, ; 7762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14042_from, ; char* from + ptr @.TypeMapEntry.14043_to; char* to + }, ; 7763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14044_from, ; char* from + ptr @.TypeMapEntry.14045_to; char* to + }, ; 7764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14046_from, ; char* from + ptr @.TypeMapEntry.14047_to; char* to + }, ; 7765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14048_from, ; char* from + ptr @.TypeMapEntry.14049_to; char* to + }, ; 7766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14050_from, ; char* from + ptr @.TypeMapEntry.14049_to; char* to + }, ; 7767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14051_from, ; char* from + ptr @.TypeMapEntry.14052_to; char* to + }, ; 7768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14053_from, ; char* from + ptr @.TypeMapEntry.14054_to; char* to + }, ; 7769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14055_from, ; char* from + ptr @.TypeMapEntry.14054_to; char* to + }, ; 7770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14056_from, ; char* from + ptr @.TypeMapEntry.14057_to; char* to + }, ; 7771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14058_from, ; char* from + ptr @.TypeMapEntry.14057_to; char* to + }, ; 7772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14059_from, ; char* from + ptr @.TypeMapEntry.14060_to; char* to + }, ; 7773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14061_from, ; char* from + ptr @.TypeMapEntry.14060_to; char* to + }, ; 7774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14062_from, ; char* from + ptr @.TypeMapEntry.14063_to; char* to + }, ; 7775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14064_from, ; char* from + ptr @.TypeMapEntry.14063_to; char* to + }, ; 7776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14065_from, ; char* from + ptr @.TypeMapEntry.14066_to; char* to + }, ; 7777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14067_from, ; char* from + ptr @.TypeMapEntry.14066_to; char* to + }, ; 7778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14068_from, ; char* from + ptr @.TypeMapEntry.14069_to; char* to + }, ; 7779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14070_from, ; char* from + ptr @.TypeMapEntry.14069_to; char* to + }, ; 7780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14071_from, ; char* from + ptr @.TypeMapEntry.14072_to; char* to + }, ; 7781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14073_from, ; char* from + ptr @.TypeMapEntry.14072_to; char* to + }, ; 7782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14074_from, ; char* from + ptr @.TypeMapEntry.14075_to; char* to + }, ; 7783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14076_from, ; char* from + ptr @.TypeMapEntry.14075_to; char* to + }, ; 7784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14077_from, ; char* from + ptr @.TypeMapEntry.14078_to; char* to + }, ; 7785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14079_from, ; char* from + ptr @.TypeMapEntry.14080_to; char* to + }, ; 7786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14081_from, ; char* from + ptr @.TypeMapEntry.14082_to; char* to + }, ; 7787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14083_from, ; char* from + ptr @.TypeMapEntry.14084_to; char* to + }, ; 7788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14085_from, ; char* from + ptr @.TypeMapEntry.14084_to; char* to + }, ; 7789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14086_from, ; char* from + ptr @.TypeMapEntry.14087_to; char* to + }, ; 7790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14088_from, ; char* from + ptr @.TypeMapEntry.14089_to; char* to + }, ; 7791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14090_from, ; char* from + ptr @.TypeMapEntry.14091_to; char* to + }, ; 7792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14092_from, ; char* from + ptr @.TypeMapEntry.14093_to; char* to + }, ; 7793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14094_from, ; char* from + ptr @.TypeMapEntry.14095_to; char* to + }, ; 7794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14096_from, ; char* from + ptr @.TypeMapEntry.14097_to; char* to + }, ; 7795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14098_from, ; char* from + ptr @.TypeMapEntry.14099_to; char* to + }, ; 7796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14100_from, ; char* from + ptr @.TypeMapEntry.14101_to; char* to + }, ; 7797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14102_from, ; char* from + ptr @.TypeMapEntry.14103_to; char* to + }, ; 7798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14104_from, ; char* from + ptr @.TypeMapEntry.14103_to; char* to + }, ; 7799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14105_from, ; char* from + ptr @.TypeMapEntry.14106_to; char* to + }, ; 7800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14107_from, ; char* from + ptr @.TypeMapEntry.14108_to; char* to + }, ; 7801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14109_from, ; char* from + ptr @.TypeMapEntry.14110_to; char* to + }, ; 7802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14111_from, ; char* from + ptr @.TypeMapEntry.14112_to; char* to + }, ; 7803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14113_from, ; char* from + ptr @.TypeMapEntry.14114_to; char* to + }, ; 7804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14115_from, ; char* from + ptr @.TypeMapEntry.14116_to; char* to + }, ; 7805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14117_from, ; char* from + ptr @.TypeMapEntry.14118_to; char* to + }, ; 7806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14119_from, ; char* from + ptr @.TypeMapEntry.14120_to; char* to + }, ; 7807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14121_from, ; char* from + ptr @.TypeMapEntry.14122_to; char* to + }, ; 7808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14123_from, ; char* from + ptr @.TypeMapEntry.14124_to; char* to + }, ; 7809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14125_from, ; char* from + ptr @.TypeMapEntry.14126_to; char* to + }, ; 7810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14127_from, ; char* from + ptr @.TypeMapEntry.14128_to; char* to + }, ; 7811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14129_from, ; char* from + ptr @.TypeMapEntry.14130_to; char* to + }, ; 7812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14131_from, ; char* from + ptr @.TypeMapEntry.14132_to; char* to + }, ; 7813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14133_from, ; char* from + ptr @.TypeMapEntry.14134_to; char* to + }, ; 7814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14135_from, ; char* from + ptr @.TypeMapEntry.14136_to; char* to + }, ; 7815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14137_from, ; char* from + ptr @.TypeMapEntry.14138_to; char* to + }, ; 7816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14139_from, ; char* from + ptr @.TypeMapEntry.14140_to; char* to + }, ; 7817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14141_from, ; char* from + ptr @.TypeMapEntry.14142_to; char* to + }, ; 7818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14143_from, ; char* from + ptr @.TypeMapEntry.14144_to; char* to + }, ; 7819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14145_from, ; char* from + ptr @.TypeMapEntry.14144_to; char* to + }, ; 7820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14146_from, ; char* from + ptr @.TypeMapEntry.14147_to; char* to + }, ; 7821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14148_from, ; char* from + ptr @.TypeMapEntry.14149_to; char* to + }, ; 7822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14150_from, ; char* from + ptr @.TypeMapEntry.14151_to; char* to + }, ; 7823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14152_from, ; char* from + ptr @.TypeMapEntry.14153_to; char* to + }, ; 7824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14154_from, ; char* from + ptr @.TypeMapEntry.14155_to; char* to + }, ; 7825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14156_from, ; char* from + ptr @.TypeMapEntry.14155_to; char* to + }, ; 7826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14157_from, ; char* from + ptr @.TypeMapEntry.14158_to; char* to + }, ; 7827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14159_from, ; char* from + ptr @.TypeMapEntry.14160_to; char* to + }, ; 7828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14161_from, ; char* from + ptr @.TypeMapEntry.14162_to; char* to + }, ; 7829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14163_from, ; char* from + ptr @.TypeMapEntry.14164_to; char* to + }, ; 7830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14165_from, ; char* from + ptr @.TypeMapEntry.14164_to; char* to + }, ; 7831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14166_from, ; char* from + ptr @.TypeMapEntry.14167_to; char* to + }, ; 7832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14168_from, ; char* from + ptr @.TypeMapEntry.14169_to; char* to + }, ; 7833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14170_from, ; char* from + ptr @.TypeMapEntry.14171_to; char* to + }, ; 7834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14172_from, ; char* from + ptr @.TypeMapEntry.14173_to; char* to + }, ; 7835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14174_from, ; char* from + ptr @.TypeMapEntry.14175_to; char* to + }, ; 7836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14176_from, ; char* from + ptr @.TypeMapEntry.14175_to; char* to + }, ; 7837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14177_from, ; char* from + ptr @.TypeMapEntry.14178_to; char* to + }, ; 7838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14179_from, ; char* from + ptr @.TypeMapEntry.14178_to; char* to + }, ; 7839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14180_from, ; char* from + ptr @.TypeMapEntry.14181_to; char* to + }, ; 7840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14182_from, ; char* from + ptr @.TypeMapEntry.14183_to; char* to + }, ; 7841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14184_from, ; char* from + ptr @.TypeMapEntry.14185_to; char* to + }, ; 7842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14186_from, ; char* from + ptr @.TypeMapEntry.14187_to; char* to + }, ; 7843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14188_from, ; char* from + ptr @.TypeMapEntry.14189_to; char* to + }, ; 7844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14190_from, ; char* from + ptr @.TypeMapEntry.14191_to; char* to + }, ; 7845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14192_from, ; char* from + ptr @.TypeMapEntry.14193_to; char* to + }, ; 7846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14194_from, ; char* from + ptr @.TypeMapEntry.14195_to; char* to + }, ; 7847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14196_from, ; char* from + ptr @.TypeMapEntry.14195_to; char* to + }, ; 7848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14197_from, ; char* from + ptr @.TypeMapEntry.14198_to; char* to + }, ; 7849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14199_from, ; char* from + ptr @.TypeMapEntry.14200_to; char* to + }, ; 7850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14201_from, ; char* from + ptr @.TypeMapEntry.14202_to; char* to + }, ; 7851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14203_from, ; char* from + ptr @.TypeMapEntry.14204_to; char* to + }, ; 7852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14205_from, ; char* from + ptr @.TypeMapEntry.14204_to; char* to + }, ; 7853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14206_from, ; char* from + ptr @.TypeMapEntry.14207_to; char* to + }, ; 7854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14208_from, ; char* from + ptr @.TypeMapEntry.14209_to; char* to + }, ; 7855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14210_from, ; char* from + ptr @.TypeMapEntry.14209_to; char* to + }, ; 7856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14211_from, ; char* from + ptr @.TypeMapEntry.14212_to; char* to + }, ; 7857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14213_from, ; char* from + ptr @.TypeMapEntry.14212_to; char* to + }, ; 7858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14214_from, ; char* from + ptr @.TypeMapEntry.14215_to; char* to + }, ; 7859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14216_from, ; char* from + ptr @.TypeMapEntry.14217_to; char* to + }, ; 7860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14218_from, ; char* from + ptr @.TypeMapEntry.14215_to; char* to + }, ; 7861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14219_from, ; char* from + ptr @.TypeMapEntry.14220_to; char* to + }, ; 7862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14221_from, ; char* from + ptr @.TypeMapEntry.14220_to; char* to + }, ; 7863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14222_from, ; char* from + ptr @.TypeMapEntry.14223_to; char* to + }, ; 7864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14224_from, ; char* from + ptr @.TypeMapEntry.14225_to; char* to + }, ; 7865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14226_from, ; char* from + ptr @.TypeMapEntry.14227_to; char* to + }, ; 7866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14228_from, ; char* from + ptr @.TypeMapEntry.14227_to; char* to + }, ; 7867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14229_from, ; char* from + ptr @.TypeMapEntry.14230_to; char* to + }, ; 7868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14231_from, ; char* from + ptr @.TypeMapEntry.14230_to; char* to + }, ; 7869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14232_from, ; char* from + ptr @.TypeMapEntry.14233_to; char* to + }, ; 7870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14234_from, ; char* from + ptr @.TypeMapEntry.14235_to; char* to + }, ; 7871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14236_from, ; char* from + ptr @.TypeMapEntry.14235_to; char* to + }, ; 7872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14237_from, ; char* from + ptr @.TypeMapEntry.14238_to; char* to + }, ; 7873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14239_from, ; char* from + ptr @.TypeMapEntry.14240_to; char* to + }, ; 7874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14241_from, ; char* from + ptr @.TypeMapEntry.14240_to; char* to + }, ; 7875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14242_from, ; char* from + ptr @.TypeMapEntry.14243_to; char* to + }, ; 7876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14244_from, ; char* from + ptr @.TypeMapEntry.14245_to; char* to + }, ; 7877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14246_from, ; char* from + ptr @.TypeMapEntry.14247_to; char* to + }, ; 7878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14248_from, ; char* from + ptr @.TypeMapEntry.14245_to; char* to + }, ; 7879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14249_from, ; char* from + ptr @.TypeMapEntry.14250_to; char* to + }, ; 7880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14251_from, ; char* from + ptr @.TypeMapEntry.14252_to; char* to + }, ; 7881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14253_from, ; char* from + ptr @.TypeMapEntry.14250_to; char* to + }, ; 7882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14254_from, ; char* from + ptr @.TypeMapEntry.14255_to; char* to + }, ; 7883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14256_from, ; char* from + ptr @.TypeMapEntry.14255_to; char* to + }, ; 7884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14257_from, ; char* from + ptr @.TypeMapEntry.14258_to; char* to + }, ; 7885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14259_from, ; char* from + ptr @.TypeMapEntry.14258_to; char* to + }, ; 7886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14260_from, ; char* from + ptr @.TypeMapEntry.14261_to; char* to + }, ; 7887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14262_from, ; char* from + ptr @.TypeMapEntry.14263_to; char* to + }, ; 7888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14264_from, ; char* from + ptr @.TypeMapEntry.14265_to; char* to + }, ; 7889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14266_from, ; char* from + ptr @.TypeMapEntry.14267_to; char* to + }, ; 7890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14268_from, ; char* from + ptr @.TypeMapEntry.14265_to; char* to + }, ; 7891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14269_from, ; char* from + ptr @.TypeMapEntry.14270_to; char* to + }, ; 7892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14271_from, ; char* from + ptr @.TypeMapEntry.14272_to; char* to + }, ; 7893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14273_from, ; char* from + ptr @.TypeMapEntry.14274_to; char* to + }, ; 7894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14275_from, ; char* from + ptr @.TypeMapEntry.14276_to; char* to + }, ; 7895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14277_from, ; char* from + ptr @.TypeMapEntry.14278_to; char* to + }, ; 7896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14279_from, ; char* from + ptr @.TypeMapEntry.14280_to; char* to + }, ; 7897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14281_from, ; char* from + ptr @.TypeMapEntry.14282_to; char* to + }, ; 7898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14283_from, ; char* from + ptr @.TypeMapEntry.14284_to; char* to + }, ; 7899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14285_from, ; char* from + ptr @.TypeMapEntry.14284_to; char* to + }, ; 7900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14286_from, ; char* from + ptr @.TypeMapEntry.14287_to; char* to + }, ; 7901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14288_from, ; char* from + ptr @.TypeMapEntry.14289_to; char* to + }, ; 7902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14290_from, ; char* from + ptr @.TypeMapEntry.14291_to; char* to + }, ; 7903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14292_from, ; char* from + ptr @.TypeMapEntry.14293_to; char* to + }, ; 7904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14294_from, ; char* from + ptr @.TypeMapEntry.14293_to; char* to + }, ; 7905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14295_from, ; char* from + ptr @.TypeMapEntry.14296_to; char* to + }, ; 7906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14297_from, ; char* from + ptr @.TypeMapEntry.14296_to; char* to + }, ; 7907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14298_from, ; char* from + ptr @.TypeMapEntry.14299_to; char* to + }, ; 7908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14300_from, ; char* from + ptr @.TypeMapEntry.14301_to; char* to + }, ; 7909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14302_from, ; char* from + ptr @.TypeMapEntry.14303_to; char* to + }, ; 7910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14304_from, ; char* from + ptr @.TypeMapEntry.14305_to; char* to + }, ; 7911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14306_from, ; char* from + ptr @.TypeMapEntry.14307_to; char* to + }, ; 7912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14308_from, ; char* from + ptr @.TypeMapEntry.14309_to; char* to + }, ; 7913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14310_from, ; char* from + ptr @.TypeMapEntry.14311_to; char* to + }, ; 7914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14312_from, ; char* from + ptr @.TypeMapEntry.14311_to; char* to + }, ; 7915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14313_from, ; char* from + ptr @.TypeMapEntry.14314_to; char* to + }, ; 7916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14315_from, ; char* from + ptr @.TypeMapEntry.14314_to; char* to + }, ; 7917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14316_from, ; char* from + ptr @.TypeMapEntry.14317_to; char* to + }, ; 7918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14318_from, ; char* from + ptr @.TypeMapEntry.14319_to; char* to + }, ; 7919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14320_from, ; char* from + ptr @.TypeMapEntry.14321_to; char* to + }, ; 7920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14322_from, ; char* from + ptr @.TypeMapEntry.14321_to; char* to + }, ; 7921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14323_from, ; char* from + ptr @.TypeMapEntry.14324_to; char* to + }, ; 7922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14325_from, ; char* from + ptr @.TypeMapEntry.14326_to; char* to + }, ; 7923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14327_from, ; char* from + ptr @.TypeMapEntry.14328_to; char* to + }, ; 7924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14329_from, ; char* from + ptr @.TypeMapEntry.14330_to; char* to + }, ; 7925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14331_from, ; char* from + ptr @.TypeMapEntry.14330_to; char* to + }, ; 7926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14332_from, ; char* from + ptr @.TypeMapEntry.14333_to; char* to + }, ; 7927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14334_from, ; char* from + ptr @.TypeMapEntry.14333_to; char* to + }, ; 7928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14335_from, ; char* from + ptr @.TypeMapEntry.14336_to; char* to + }, ; 7929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14337_from, ; char* from + ptr @.TypeMapEntry.14336_to; char* to + }, ; 7930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14338_from, ; char* from + ptr @.TypeMapEntry.14339_to; char* to + }, ; 7931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14340_from, ; char* from + ptr @.TypeMapEntry.14339_to; char* to + }, ; 7932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14341_from, ; char* from + ptr @.TypeMapEntry.14342_to; char* to + }, ; 7933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14343_from, ; char* from + ptr @.TypeMapEntry.14342_to; char* to + }, ; 7934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14344_from, ; char* from + ptr @.TypeMapEntry.14345_to; char* to + }, ; 7935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14346_from, ; char* from + ptr @.TypeMapEntry.14345_to; char* to + }, ; 7936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14347_from, ; char* from + ptr @.TypeMapEntry.14348_to; char* to + }, ; 7937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14349_from, ; char* from + ptr @.TypeMapEntry.14348_to; char* to + }, ; 7938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14350_from, ; char* from + ptr @.TypeMapEntry.14351_to; char* to + }, ; 7939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14352_from, ; char* from + ptr @.TypeMapEntry.14351_to; char* to + }, ; 7940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14353_from, ; char* from + ptr @.TypeMapEntry.14354_to; char* to + }, ; 7941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14355_from, ; char* from + ptr @.TypeMapEntry.14354_to; char* to + }, ; 7942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14356_from, ; char* from + ptr @.TypeMapEntry.14357_to; char* to + }, ; 7943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14358_from, ; char* from + ptr @.TypeMapEntry.14357_to; char* to + }, ; 7944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14359_from, ; char* from + ptr @.TypeMapEntry.14360_to; char* to + }, ; 7945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14361_from, ; char* from + ptr @.TypeMapEntry.14360_to; char* to + }, ; 7946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14362_from, ; char* from + ptr @.TypeMapEntry.14363_to; char* to + }, ; 7947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14364_from, ; char* from + ptr @.TypeMapEntry.14365_to; char* to + }, ; 7948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14366_from, ; char* from + ptr @.TypeMapEntry.14367_to; char* to + }, ; 7949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14368_from, ; char* from + ptr @.TypeMapEntry.14369_to; char* to + }, ; 7950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14370_from, ; char* from + ptr @.TypeMapEntry.14371_to; char* to + }, ; 7951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14372_from, ; char* from + ptr @.TypeMapEntry.14373_to; char* to + }, ; 7952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14374_from, ; char* from + ptr @.TypeMapEntry.14375_to; char* to + }, ; 7953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14376_from, ; char* from + ptr @.TypeMapEntry.14375_to; char* to + }, ; 7954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14377_from, ; char* from + ptr @.TypeMapEntry.14378_to; char* to + }, ; 7955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14379_from, ; char* from + ptr @.TypeMapEntry.14373_to; char* to + }, ; 7956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14380_from, ; char* from + ptr @.TypeMapEntry.14381_to; char* to + }, ; 7957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14382_from, ; char* from + ptr @.TypeMapEntry.14383_to; char* to + }, ; 7958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14384_from, ; char* from + ptr @.TypeMapEntry.14385_to; char* to + }, ; 7959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14386_from, ; char* from + ptr @.TypeMapEntry.14387_to; char* to + }, ; 7960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14388_from, ; char* from + ptr @.TypeMapEntry.14389_to; char* to + }, ; 7961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14390_from, ; char* from + ptr @.TypeMapEntry.14391_to; char* to + }, ; 7962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14392_from, ; char* from + ptr @.TypeMapEntry.14393_to; char* to + }, ; 7963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14394_from, ; char* from + ptr @.TypeMapEntry.14395_to; char* to + }, ; 7964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14396_from, ; char* from + ptr @.TypeMapEntry.14397_to; char* to + }, ; 7965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14398_from, ; char* from + ptr @.TypeMapEntry.14397_to; char* to + }, ; 7966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14399_from, ; char* from + ptr @.TypeMapEntry.14400_to; char* to + }, ; 7967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14401_from, ; char* from + ptr @.TypeMapEntry.14400_to; char* to + }, ; 7968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14402_from, ; char* from + ptr @.TypeMapEntry.14403_to; char* to + }, ; 7969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14404_from, ; char* from + ptr @.TypeMapEntry.14405_to; char* to + }, ; 7970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14406_from, ; char* from + ptr @.TypeMapEntry.14407_to; char* to + }, ; 7971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14408_from, ; char* from + ptr @.TypeMapEntry.14409_to; char* to + }, ; 7972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14410_from, ; char* from + ptr @.TypeMapEntry.14411_to; char* to + }, ; 7973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14412_from, ; char* from + ptr @.TypeMapEntry.14413_to; char* to + }, ; 7974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14414_from, ; char* from + ptr @.TypeMapEntry.14415_to; char* to + }, ; 7975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14416_from, ; char* from + ptr @.TypeMapEntry.14417_to; char* to + }, ; 7976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14418_from, ; char* from + ptr @.TypeMapEntry.14419_to; char* to + }, ; 7977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14420_from, ; char* from + ptr @.TypeMapEntry.14421_to; char* to + }, ; 7978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14422_from, ; char* from + ptr @.TypeMapEntry.14423_to; char* to + }, ; 7979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14424_from, ; char* from + ptr @.TypeMapEntry.14425_to; char* to + }, ; 7980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14426_from, ; char* from + ptr @.TypeMapEntry.14423_to; char* to + }, ; 7981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14427_from, ; char* from + ptr @.TypeMapEntry.14428_to; char* to + }, ; 7982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14429_from, ; char* from + ptr @.TypeMapEntry.14430_to; char* to + }, ; 7983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14431_from, ; char* from + ptr @.TypeMapEntry.14432_to; char* to + }, ; 7984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14433_from, ; char* from + ptr @.TypeMapEntry.14434_to; char* to + }, ; 7985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14435_from, ; char* from + ptr @.TypeMapEntry.14436_to; char* to + }, ; 7986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14437_from, ; char* from + ptr @.TypeMapEntry.14438_to; char* to + }, ; 7987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14439_from, ; char* from + ptr @.TypeMapEntry.14440_to; char* to + }, ; 7988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14441_from, ; char* from + ptr @.TypeMapEntry.14442_to; char* to + }, ; 7989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14443_from, ; char* from + ptr @.TypeMapEntry.14444_to; char* to + }, ; 7990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14445_from, ; char* from + ptr @.TypeMapEntry.14446_to; char* to + }, ; 7991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14447_from, ; char* from + ptr @.TypeMapEntry.14446_to; char* to + }, ; 7992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14448_from, ; char* from + ptr @.TypeMapEntry.14449_to; char* to + }, ; 7993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14450_from, ; char* from + ptr @.TypeMapEntry.14451_to; char* to + }, ; 7994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14452_from, ; char* from + ptr @.TypeMapEntry.14453_to; char* to + }, ; 7995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14454_from, ; char* from + ptr @.TypeMapEntry.14455_to; char* to + }, ; 7996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14456_from, ; char* from + ptr @.TypeMapEntry.14457_to; char* to + }, ; 7997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14458_from, ; char* from + ptr @.TypeMapEntry.14459_to; char* to + }, ; 7998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14460_from, ; char* from + ptr @.TypeMapEntry.14461_to; char* to + }, ; 7999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14462_from, ; char* from + ptr @.TypeMapEntry.14459_to; char* to + }, ; 8000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14463_from, ; char* from + ptr @.TypeMapEntry.14459_to; char* to + }, ; 8001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14464_from, ; char* from + ptr @.TypeMapEntry.14459_to; char* to + }, ; 8002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14465_from, ; char* from + ptr @.TypeMapEntry.14466_to; char* to + }, ; 8003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14467_from, ; char* from + ptr @.TypeMapEntry.14468_to; char* to + }, ; 8004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14469_from, ; char* from + ptr @.TypeMapEntry.14470_to; char* to + }, ; 8005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14471_from, ; char* from + ptr @.TypeMapEntry.14472_to; char* to + }, ; 8006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14473_from, ; char* from + ptr @.TypeMapEntry.14474_to; char* to + }, ; 8007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14475_from, ; char* from + ptr @.TypeMapEntry.14476_to; char* to + }, ; 8008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14477_from, ; char* from + ptr @.TypeMapEntry.14478_to; char* to + }, ; 8009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14479_from, ; char* from + ptr @.TypeMapEntry.14480_to; char* to + }, ; 8010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14481_from, ; char* from + ptr @.TypeMapEntry.14480_to; char* to + }, ; 8011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14482_from, ; char* from + ptr @.TypeMapEntry.14483_to; char* to + }, ; 8012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14484_from, ; char* from + ptr @.TypeMapEntry.14483_to; char* to + }, ; 8013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14485_from, ; char* from + ptr @.TypeMapEntry.14486_to; char* to + }, ; 8014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14487_from, ; char* from + ptr @.TypeMapEntry.14486_to; char* to + }, ; 8015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14488_from, ; char* from + ptr @.TypeMapEntry.14489_to; char* to + }, ; 8016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14490_from, ; char* from + ptr @.TypeMapEntry.14491_to; char* to + }, ; 8017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14492_from, ; char* from + ptr @.TypeMapEntry.14493_to; char* to + }, ; 8018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14494_from, ; char* from + ptr @.TypeMapEntry.14495_to; char* to + }, ; 8019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14496_from, ; char* from + ptr @.TypeMapEntry.14497_to; char* to + }, ; 8020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14498_from, ; char* from + ptr @.TypeMapEntry.14499_to; char* to + }, ; 8021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14500_from, ; char* from + ptr @.TypeMapEntry.14501_to; char* to + }, ; 8022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14502_from, ; char* from + ptr @.TypeMapEntry.14503_to; char* to + }, ; 8023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14504_from, ; char* from + ptr @.TypeMapEntry.14505_to; char* to + }, ; 8024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14506_from, ; char* from + ptr @.TypeMapEntry.14507_to; char* to + }, ; 8025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14508_from, ; char* from + ptr @.TypeMapEntry.14509_to; char* to + }, ; 8026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14510_from, ; char* from + ptr @.TypeMapEntry.14511_to; char* to + }, ; 8027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14512_from, ; char* from + ptr @.TypeMapEntry.14513_to; char* to + }, ; 8028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14514_from, ; char* from + ptr @.TypeMapEntry.14515_to; char* to + }, ; 8029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14516_from, ; char* from + ptr @.TypeMapEntry.14515_to; char* to + }, ; 8030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14517_from, ; char* from + ptr @.TypeMapEntry.14518_to; char* to + }, ; 8031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14519_from, ; char* from + ptr @.TypeMapEntry.14518_to; char* to + }, ; 8032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14520_from, ; char* from + ptr @.TypeMapEntry.14521_to; char* to + }, ; 8033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14522_from, ; char* from + ptr @.TypeMapEntry.14521_to; char* to + }, ; 8034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14523_from, ; char* from + ptr @.TypeMapEntry.14524_to; char* to + }, ; 8035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14525_from, ; char* from + ptr @.TypeMapEntry.14526_to; char* to + }, ; 8036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14527_from, ; char* from + ptr @.TypeMapEntry.14528_to; char* to + }, ; 8037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14529_from, ; char* from + ptr @.TypeMapEntry.14530_to; char* to + }, ; 8038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14531_from, ; char* from + ptr @.TypeMapEntry.14528_to; char* to + }, ; 8039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14532_from, ; char* from + ptr @.TypeMapEntry.14533_to; char* to + }, ; 8040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14534_from, ; char* from + ptr @.TypeMapEntry.14535_to; char* to + }, ; 8041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14536_from, ; char* from + ptr @.TypeMapEntry.14533_to; char* to + }, ; 8042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14537_from, ; char* from + ptr @.TypeMapEntry.14538_to; char* to + }, ; 8043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14539_from, ; char* from + ptr @.TypeMapEntry.14540_to; char* to + }, ; 8044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14541_from, ; char* from + ptr @.TypeMapEntry.14542_to; char* to + }, ; 8045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14543_from, ; char* from + ptr @.TypeMapEntry.14544_to; char* to + }, ; 8046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14545_from, ; char* from + ptr @.TypeMapEntry.14546_to; char* to + }, ; 8047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14547_from, ; char* from + ptr @.TypeMapEntry.14548_to; char* to + }, ; 8048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14549_from, ; char* from + ptr @.TypeMapEntry.14550_to; char* to + }, ; 8049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14551_from, ; char* from + ptr @.TypeMapEntry.14552_to; char* to + }, ; 8050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14553_from, ; char* from + ptr @.TypeMapEntry.14554_to; char* to + }, ; 8051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14555_from, ; char* from + ptr @.TypeMapEntry.14556_to; char* to + }, ; 8052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14557_from, ; char* from + ptr @.TypeMapEntry.14558_to; char* to + }, ; 8053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14559_from, ; char* from + ptr @.TypeMapEntry.14560_to; char* to + }, ; 8054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14561_from, ; char* from + ptr @.TypeMapEntry.14562_to; char* to + }, ; 8055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14563_from, ; char* from + ptr @.TypeMapEntry.14564_to; char* to + }, ; 8056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14565_from, ; char* from + ptr @.TypeMapEntry.14564_to; char* to + }, ; 8057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14566_from, ; char* from + ptr @.TypeMapEntry.14567_to; char* to + }, ; 8058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14568_from, ; char* from + ptr @.TypeMapEntry.14567_to; char* to + }, ; 8059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14569_from, ; char* from + ptr @.TypeMapEntry.14570_to; char* to + }, ; 8060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14571_from, ; char* from + ptr @.TypeMapEntry.14572_to; char* to + }, ; 8061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14573_from, ; char* from + ptr @.TypeMapEntry.14574_to; char* to + }, ; 8062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14575_from, ; char* from + ptr @.TypeMapEntry.14576_to; char* to + }, ; 8063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14577_from, ; char* from + ptr @.TypeMapEntry.14578_to; char* to + }, ; 8064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14579_from, ; char* from + ptr @.TypeMapEntry.14580_to; char* to + }, ; 8065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14581_from, ; char* from + ptr @.TypeMapEntry.14582_to; char* to + }, ; 8066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14583_from, ; char* from + ptr @.TypeMapEntry.14584_to; char* to + }, ; 8067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14585_from, ; char* from + ptr @.TypeMapEntry.14586_to; char* to + }, ; 8068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14587_from, ; char* from + ptr @.TypeMapEntry.14588_to; char* to + }, ; 8069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14589_from, ; char* from + ptr @.TypeMapEntry.14590_to; char* to + }, ; 8070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14591_from, ; char* from + ptr @.TypeMapEntry.14592_to; char* to + }, ; 8071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14593_from, ; char* from + ptr @.TypeMapEntry.14594_to; char* to + }, ; 8072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14595_from, ; char* from + ptr @.TypeMapEntry.14596_to; char* to + }, ; 8073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14597_from, ; char* from + ptr @.TypeMapEntry.14598_to; char* to + }, ; 8074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14599_from, ; char* from + ptr @.TypeMapEntry.14600_to; char* to + }, ; 8075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14601_from, ; char* from + ptr @.TypeMapEntry.14600_to; char* to + }, ; 8076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14602_from, ; char* from + ptr @.TypeMapEntry.14603_to; char* to + }, ; 8077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14604_from, ; char* from + ptr @.TypeMapEntry.14603_to; char* to + }, ; 8078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14605_from, ; char* from + ptr @.TypeMapEntry.14606_to; char* to + }, ; 8079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14607_from, ; char* from + ptr @.TypeMapEntry.14606_to; char* to + }, ; 8080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14608_from, ; char* from + ptr @.TypeMapEntry.14609_to; char* to + }, ; 8081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14610_from, ; char* from + ptr @.TypeMapEntry.14609_to; char* to + }, ; 8082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14611_from, ; char* from + ptr @.TypeMapEntry.14612_to; char* to + }, ; 8083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14613_from, ; char* from + ptr @.TypeMapEntry.14612_to; char* to + }, ; 8084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14614_from, ; char* from + ptr @.TypeMapEntry.14615_to; char* to + }, ; 8085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14616_from, ; char* from + ptr @.TypeMapEntry.14615_to; char* to + }, ; 8086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14617_from, ; char* from + ptr @.TypeMapEntry.14618_to; char* to + }, ; 8087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14619_from, ; char* from + ptr @.TypeMapEntry.14618_to; char* to + }, ; 8088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14620_from, ; char* from + ptr @.TypeMapEntry.14621_to; char* to + }, ; 8089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14622_from, ; char* from + ptr @.TypeMapEntry.14621_to; char* to + }, ; 8090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14623_from, ; char* from + ptr @.TypeMapEntry.14624_to; char* to + }, ; 8091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14625_from, ; char* from + ptr @.TypeMapEntry.14624_to; char* to + }, ; 8092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14626_from, ; char* from + ptr @.TypeMapEntry.14627_to; char* to + }, ; 8093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14628_from, ; char* from + ptr @.TypeMapEntry.14629_to; char* to + }, ; 8094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14630_from, ; char* from + ptr @.TypeMapEntry.14631_to; char* to + }, ; 8095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14632_from, ; char* from + ptr @.TypeMapEntry.14633_to; char* to + }, ; 8096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14634_from, ; char* from + ptr @.TypeMapEntry.14635_to; char* to + }, ; 8097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14636_from, ; char* from + ptr @.TypeMapEntry.14637_to; char* to + }, ; 8098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14638_from, ; char* from + ptr @.TypeMapEntry.14639_to; char* to + }, ; 8099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14640_from, ; char* from + ptr @.TypeMapEntry.14641_to; char* to + }, ; 8100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14642_from, ; char* from + ptr @.TypeMapEntry.14643_to; char* to + }, ; 8101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14644_from, ; char* from + ptr @.TypeMapEntry.14645_to; char* to + }, ; 8102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14646_from, ; char* from + ptr @.TypeMapEntry.14647_to; char* to + }, ; 8103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14648_from, ; char* from + ptr @.TypeMapEntry.14649_to; char* to + }, ; 8104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14650_from, ; char* from + ptr @.TypeMapEntry.14651_to; char* to + }, ; 8105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14652_from, ; char* from + ptr @.TypeMapEntry.14653_to; char* to + }, ; 8106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14654_from, ; char* from + ptr @.TypeMapEntry.14655_to; char* to + }, ; 8107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14656_from, ; char* from + ptr @.TypeMapEntry.14657_to; char* to + }, ; 8108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14658_from, ; char* from + ptr @.TypeMapEntry.14655_to; char* to + }, ; 8109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14659_from, ; char* from + ptr @.TypeMapEntry.14660_to; char* to + }, ; 8110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14661_from, ; char* from + ptr @.TypeMapEntry.14662_to; char* to + }, ; 8111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14663_from, ; char* from + ptr @.TypeMapEntry.14664_to; char* to + }, ; 8112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14665_from, ; char* from + ptr @.TypeMapEntry.14666_to; char* to + }, ; 8113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14667_from, ; char* from + ptr @.TypeMapEntry.14668_to; char* to + }, ; 8114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14669_from, ; char* from + ptr @.TypeMapEntry.14670_to; char* to + }, ; 8115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14671_from, ; char* from + ptr @.TypeMapEntry.14672_to; char* to + }, ; 8116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14673_from, ; char* from + ptr @.TypeMapEntry.14674_to; char* to + }, ; 8117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14675_from, ; char* from + ptr @.TypeMapEntry.14676_to; char* to + }, ; 8118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14677_from, ; char* from + ptr @.TypeMapEntry.14678_to; char* to + }, ; 8119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14679_from, ; char* from + ptr @.TypeMapEntry.14680_to; char* to + }, ; 8120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14681_from, ; char* from + ptr @.TypeMapEntry.14682_to; char* to + }, ; 8121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14683_from, ; char* from + ptr @.TypeMapEntry.14684_to; char* to + }, ; 8122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14685_from, ; char* from + ptr @.TypeMapEntry.14684_to; char* to + }, ; 8123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14686_from, ; char* from + ptr @.TypeMapEntry.14687_to; char* to + }, ; 8124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14688_from, ; char* from + ptr @.TypeMapEntry.14689_to; char* to + }, ; 8125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14690_from, ; char* from + ptr @.TypeMapEntry.14691_to; char* to + }, ; 8126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14692_from, ; char* from + ptr @.TypeMapEntry.14693_to; char* to + }, ; 8127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14694_from, ; char* from + ptr @.TypeMapEntry.14695_to; char* to + }, ; 8128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14696_from, ; char* from + ptr @.TypeMapEntry.14697_to; char* to + }, ; 8129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14698_from, ; char* from + ptr @.TypeMapEntry.14699_to; char* to + }, ; 8130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14700_from, ; char* from + ptr @.TypeMapEntry.14701_to; char* to + }, ; 8131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14702_from, ; char* from + ptr @.TypeMapEntry.14703_to; char* to + }, ; 8132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14704_from, ; char* from + ptr @.TypeMapEntry.14705_to; char* to + }, ; 8133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14706_from, ; char* from + ptr @.TypeMapEntry.14707_to; char* to + }, ; 8134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14708_from, ; char* from + ptr @.TypeMapEntry.14709_to; char* to + }, ; 8135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14710_from, ; char* from + ptr @.TypeMapEntry.14711_to; char* to + }, ; 8136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14712_from, ; char* from + ptr @.TypeMapEntry.14713_to; char* to + }, ; 8137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14714_from, ; char* from + ptr @.TypeMapEntry.14715_to; char* to + }, ; 8138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14716_from, ; char* from + ptr @.TypeMapEntry.14717_to; char* to + }, ; 8139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14718_from, ; char* from + ptr @.TypeMapEntry.14719_to; char* to + }, ; 8140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14720_from, ; char* from + ptr @.TypeMapEntry.14721_to; char* to + }, ; 8141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14722_from, ; char* from + ptr @.TypeMapEntry.14723_to; char* to + }, ; 8142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14724_from, ; char* from + ptr @.TypeMapEntry.14725_to; char* to + }, ; 8143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14726_from, ; char* from + ptr @.TypeMapEntry.14727_to; char* to + }, ; 8144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14728_from, ; char* from + ptr @.TypeMapEntry.14729_to; char* to + }, ; 8145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14730_from, ; char* from + ptr @.TypeMapEntry.14731_to; char* to + }, ; 8146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14732_from, ; char* from + ptr @.TypeMapEntry.14733_to; char* to + }, ; 8147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14734_from, ; char* from + ptr @.TypeMapEntry.14733_to; char* to + }, ; 8148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14735_from, ; char* from + ptr @.TypeMapEntry.14736_to; char* to + }, ; 8149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14737_from, ; char* from + ptr @.TypeMapEntry.14738_to; char* to + }, ; 8150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14739_from, ; char* from + ptr @.TypeMapEntry.14738_to; char* to + }, ; 8151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14740_from, ; char* from + ptr @.TypeMapEntry.14741_to; char* to + }, ; 8152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14742_from, ; char* from + ptr @.TypeMapEntry.14741_to; char* to + }, ; 8153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14743_from, ; char* from + ptr @.TypeMapEntry.14744_to; char* to + }, ; 8154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14745_from, ; char* from + ptr @.TypeMapEntry.14744_to; char* to + }, ; 8155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14746_from, ; char* from + ptr @.TypeMapEntry.14747_to; char* to + }, ; 8156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14748_from, ; char* from + ptr @.TypeMapEntry.14749_to; char* to + }, ; 8157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14750_from, ; char* from + ptr @.TypeMapEntry.14751_to; char* to + }, ; 8158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14752_from, ; char* from + ptr @.TypeMapEntry.14751_to; char* to + }, ; 8159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14753_from, ; char* from + ptr @.TypeMapEntry.14754_to; char* to + }, ; 8160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14755_from, ; char* from + ptr @.TypeMapEntry.14756_to; char* to + }, ; 8161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14757_from, ; char* from + ptr @.TypeMapEntry.14758_to; char* to + }, ; 8162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14759_from, ; char* from + ptr @.TypeMapEntry.14760_to; char* to + }, ; 8163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14761_from, ; char* from + ptr @.TypeMapEntry.14762_to; char* to + }, ; 8164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14763_from, ; char* from + ptr @.TypeMapEntry.14764_to; char* to + }, ; 8165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14765_from, ; char* from + ptr @.TypeMapEntry.14766_to; char* to + }, ; 8166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14767_from, ; char* from + ptr @.TypeMapEntry.14768_to; char* to + }, ; 8167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14769_from, ; char* from + ptr @.TypeMapEntry.14770_to; char* to + }, ; 8168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14771_from, ; char* from + ptr @.TypeMapEntry.14772_to; char* to + }, ; 8169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14773_from, ; char* from + ptr @.TypeMapEntry.14774_to; char* to + }, ; 8170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14775_from, ; char* from + ptr @.TypeMapEntry.14776_to; char* to + }, ; 8171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14777_from, ; char* from + ptr @.TypeMapEntry.14774_to; char* to + }, ; 8172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14778_from, ; char* from + ptr @.TypeMapEntry.14779_to; char* to + }, ; 8173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14780_from, ; char* from + ptr @.TypeMapEntry.14781_to; char* to + }, ; 8174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14782_from, ; char* from + ptr @.TypeMapEntry.14783_to; char* to + }, ; 8175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14784_from, ; char* from + ptr @.TypeMapEntry.14785_to; char* to + }, ; 8176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14786_from, ; char* from + ptr @.TypeMapEntry.14787_to; char* to + }, ; 8177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14788_from, ; char* from + ptr @.TypeMapEntry.14787_to; char* to + }, ; 8178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14789_from, ; char* from + ptr @.TypeMapEntry.14790_to; char* to + }, ; 8179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14791_from, ; char* from + ptr @.TypeMapEntry.14792_to; char* to + }, ; 8180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14793_from, ; char* from + ptr @.TypeMapEntry.14794_to; char* to + }, ; 8181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14795_from, ; char* from + ptr @.TypeMapEntry.14796_to; char* to + }, ; 8182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14797_from, ; char* from + ptr @.TypeMapEntry.14798_to; char* to + }, ; 8183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14799_from, ; char* from + ptr @.TypeMapEntry.14800_to; char* to + }, ; 8184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14801_from, ; char* from + ptr @.TypeMapEntry.14802_to; char* to + }, ; 8185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14803_from, ; char* from + ptr @.TypeMapEntry.14804_to; char* to + }, ; 8186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14805_from, ; char* from + ptr @.TypeMapEntry.14806_to; char* to + }, ; 8187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14807_from, ; char* from + ptr @.TypeMapEntry.14806_to; char* to + }, ; 8188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14808_from, ; char* from + ptr @.TypeMapEntry.14809_to; char* to + }, ; 8189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14810_from, ; char* from + ptr @.TypeMapEntry.14809_to; char* to + }, ; 8190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14811_from, ; char* from + ptr @.TypeMapEntry.14812_to; char* to + }, ; 8191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14813_from, ; char* from + ptr @.TypeMapEntry.14812_to; char* to + }, ; 8192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14814_from, ; char* from + ptr @.TypeMapEntry.14815_to; char* to + }, ; 8193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14816_from, ; char* from + ptr @.TypeMapEntry.14817_to; char* to + }, ; 8194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14818_from, ; char* from + ptr @.TypeMapEntry.14819_to; char* to + }, ; 8195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14820_from, ; char* from + ptr @.TypeMapEntry.14821_to; char* to + }, ; 8196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14822_from, ; char* from + ptr @.TypeMapEntry.14821_to; char* to + }, ; 8197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14823_from, ; char* from + ptr @.TypeMapEntry.14824_to; char* to + }, ; 8198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14825_from, ; char* from + ptr @.TypeMapEntry.14826_to; char* to + }, ; 8199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14827_from, ; char* from + ptr @.TypeMapEntry.14828_to; char* to + }, ; 8200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14829_from, ; char* from + ptr @.TypeMapEntry.14830_to; char* to + }, ; 8201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14831_from, ; char* from + ptr @.TypeMapEntry.14832_to; char* to + }, ; 8202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14833_from, ; char* from + ptr @.TypeMapEntry.14834_to; char* to + }, ; 8203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14835_from, ; char* from + ptr @.TypeMapEntry.14836_to; char* to + }, ; 8204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14837_from, ; char* from + ptr @.TypeMapEntry.14838_to; char* to + }, ; 8205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14839_from, ; char* from + ptr @.TypeMapEntry.14836_to; char* to + }, ; 8206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14840_from, ; char* from + ptr @.TypeMapEntry.14841_to; char* to + }, ; 8207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14842_from, ; char* from + ptr @.TypeMapEntry.14843_to; char* to + }, ; 8208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14844_from, ; char* from + ptr @.TypeMapEntry.14843_to; char* to + }, ; 8209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14845_from, ; char* from + ptr @.TypeMapEntry.14846_to; char* to + }, ; 8210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14847_from, ; char* from + ptr @.TypeMapEntry.14846_to; char* to + }, ; 8211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14848_from, ; char* from + ptr @.TypeMapEntry.14849_to; char* to + }, ; 8212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14850_from, ; char* from + ptr @.TypeMapEntry.14851_to; char* to + }, ; 8213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14852_from, ; char* from + ptr @.TypeMapEntry.14853_to; char* to + }, ; 8214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14854_from, ; char* from + ptr @.TypeMapEntry.14855_to; char* to + }, ; 8215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14856_from, ; char* from + ptr @.TypeMapEntry.14857_to; char* to + }, ; 8216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14858_from, ; char* from + ptr @.TypeMapEntry.14859_to; char* to + }, ; 8217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14860_from, ; char* from + ptr @.TypeMapEntry.14861_to; char* to + }, ; 8218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14862_from, ; char* from + ptr @.TypeMapEntry.14863_to; char* to + }, ; 8219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14864_from, ; char* from + ptr @.TypeMapEntry.14863_to; char* to + }, ; 8220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14865_from, ; char* from + ptr @.TypeMapEntry.14866_to; char* to + }, ; 8221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14867_from, ; char* from + ptr @.TypeMapEntry.14868_to; char* to + }, ; 8222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14869_from, ; char* from + ptr @.TypeMapEntry.14868_to; char* to + }, ; 8223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14870_from, ; char* from + ptr @.TypeMapEntry.14871_to; char* to + }, ; 8224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14872_from, ; char* from + ptr @.TypeMapEntry.14873_to; char* to + }, ; 8225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14874_from, ; char* from + ptr @.TypeMapEntry.14875_to; char* to + }, ; 8226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14876_from, ; char* from + ptr @.TypeMapEntry.14877_to; char* to + }, ; 8227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14878_from, ; char* from + ptr @.TypeMapEntry.14879_to; char* to + }, ; 8228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14880_from, ; char* from + ptr @.TypeMapEntry.14879_to; char* to + }, ; 8229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14881_from, ; char* from + ptr @.TypeMapEntry.14882_to; char* to + }, ; 8230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14883_from, ; char* from + ptr @.TypeMapEntry.14884_to; char* to + }, ; 8231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14885_from, ; char* from + ptr @.TypeMapEntry.14884_to; char* to + }, ; 8232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14886_from, ; char* from + ptr @.TypeMapEntry.14887_to; char* to + }, ; 8233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14888_from, ; char* from + ptr @.TypeMapEntry.14887_to; char* to + }, ; 8234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14889_from, ; char* from + ptr @.TypeMapEntry.14890_to; char* to + }, ; 8235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14891_from, ; char* from + ptr @.TypeMapEntry.14890_to; char* to + }, ; 8236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14892_from, ; char* from + ptr @.TypeMapEntry.14893_to; char* to + }, ; 8237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14894_from, ; char* from + ptr @.TypeMapEntry.14893_to; char* to + }, ; 8238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14895_from, ; char* from + ptr @.TypeMapEntry.14896_to; char* to + }, ; 8239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14897_from, ; char* from + ptr @.TypeMapEntry.14896_to; char* to + }, ; 8240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14898_from, ; char* from + ptr @.TypeMapEntry.14899_to; char* to + }, ; 8241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14900_from, ; char* from + ptr @.TypeMapEntry.14901_to; char* to + }, ; 8242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14902_from, ; char* from + ptr @.TypeMapEntry.14903_to; char* to + }, ; 8243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14904_from, ; char* from + ptr @.TypeMapEntry.14905_to; char* to + }, ; 8244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14906_from, ; char* from + ptr @.TypeMapEntry.14907_to; char* to + }, ; 8245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14908_from, ; char* from + ptr @.TypeMapEntry.14909_to; char* to + }, ; 8246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14910_from, ; char* from + ptr @.TypeMapEntry.14911_to; char* to + }, ; 8247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14912_from, ; char* from + ptr @.TypeMapEntry.14913_to; char* to + }, ; 8248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14914_from, ; char* from + ptr @.TypeMapEntry.14913_to; char* to + }, ; 8249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14915_from, ; char* from + ptr @.TypeMapEntry.14916_to; char* to + }, ; 8250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14917_from, ; char* from + ptr @.TypeMapEntry.14916_to; char* to + }, ; 8251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14918_from, ; char* from + ptr @.TypeMapEntry.14919_to; char* to + }, ; 8252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14920_from, ; char* from + ptr @.TypeMapEntry.14921_to; char* to + }, ; 8253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14922_from, ; char* from + ptr @.TypeMapEntry.14923_to; char* to + }, ; 8254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14924_from, ; char* from + ptr @.TypeMapEntry.14925_to; char* to + }, ; 8255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14926_from, ; char* from + ptr @.TypeMapEntry.14925_to; char* to + }, ; 8256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14927_from, ; char* from + ptr @.TypeMapEntry.14923_to; char* to + }, ; 8257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14928_from, ; char* from + ptr @.TypeMapEntry.14929_to; char* to + }, ; 8258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14930_from, ; char* from + ptr @.TypeMapEntry.14929_to; char* to + }, ; 8259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14931_from, ; char* from + ptr @.TypeMapEntry.14932_to; char* to + }, ; 8260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14933_from, ; char* from + ptr @.TypeMapEntry.14934_to; char* to + }, ; 8261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14935_from, ; char* from + ptr @.TypeMapEntry.14934_to; char* to + }, ; 8262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14936_from, ; char* from + ptr @.TypeMapEntry.14937_to; char* to + }, ; 8263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14938_from, ; char* from + ptr @.TypeMapEntry.14939_to; char* to + }, ; 8264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14940_from, ; char* from + ptr @.TypeMapEntry.14937_to; char* to + }, ; 8265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14941_from, ; char* from + ptr @.TypeMapEntry.14942_to; char* to + }, ; 8266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14943_from, ; char* from + ptr @.TypeMapEntry.14944_to; char* to + }, ; 8267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14945_from, ; char* from + ptr @.TypeMapEntry.14942_to; char* to + }, ; 8268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14946_from, ; char* from + ptr @.TypeMapEntry.14947_to; char* to + }, ; 8269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14948_from, ; char* from + ptr @.TypeMapEntry.14947_to; char* to + }, ; 8270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14949_from, ; char* from + ptr @.TypeMapEntry.14950_to; char* to + }, ; 8271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14951_from, ; char* from + ptr @.TypeMapEntry.14952_to; char* to + }, ; 8272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14953_from, ; char* from + ptr @.TypeMapEntry.14950_to; char* to + }, ; 8273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14954_from, ; char* from + ptr @.TypeMapEntry.14955_to; char* to + }, ; 8274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14956_from, ; char* from + ptr @.TypeMapEntry.14955_to; char* to + }, ; 8275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14957_from, ; char* from + ptr @.TypeMapEntry.14958_to; char* to + }, ; 8276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14959_from, ; char* from + ptr @.TypeMapEntry.14960_to; char* to + }, ; 8277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14961_from, ; char* from + ptr @.TypeMapEntry.14958_to; char* to + }, ; 8278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14962_from, ; char* from + ptr @.TypeMapEntry.14963_to; char* to + }, ; 8279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14964_from, ; char* from + ptr @.TypeMapEntry.14965_to; char* to + }, ; 8280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14966_from, ; char* from + ptr @.TypeMapEntry.14965_to; char* to + }, ; 8281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14967_from, ; char* from + ptr @.TypeMapEntry.14968_to; char* to + }, ; 8282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14969_from, ; char* from + ptr @.TypeMapEntry.14968_to; char* to + }, ; 8283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14970_from, ; char* from + ptr @.TypeMapEntry.14971_to; char* to + }, ; 8284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14972_from, ; char* from + ptr @.TypeMapEntry.14971_to; char* to + }, ; 8285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14973_from, ; char* from + ptr @.TypeMapEntry.14974_to; char* to + }, ; 8286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14975_from, ; char* from + ptr @.TypeMapEntry.14976_to; char* to + }, ; 8287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14977_from, ; char* from + ptr @.TypeMapEntry.14976_to; char* to + }, ; 8288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14978_from, ; char* from + ptr @.TypeMapEntry.14979_to; char* to + }, ; 8289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14980_from, ; char* from + ptr @.TypeMapEntry.14981_to; char* to + }, ; 8290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14982_from, ; char* from + ptr @.TypeMapEntry.14981_to; char* to + }, ; 8291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14983_from, ; char* from + ptr @.TypeMapEntry.14984_to; char* to + }, ; 8292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14985_from, ; char* from + ptr @.TypeMapEntry.14984_to; char* to + }, ; 8293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14986_from, ; char* from + ptr @.TypeMapEntry.14987_to; char* to + }, ; 8294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14988_from, ; char* from + ptr @.TypeMapEntry.14989_to; char* to + }, ; 8295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14990_from, ; char* from + ptr @.TypeMapEntry.14991_to; char* to + }, ; 8296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14992_from, ; char* from + ptr @.TypeMapEntry.14993_to; char* to + }, ; 8297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14994_from, ; char* from + ptr @.TypeMapEntry.14995_to; char* to + }, ; 8298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14996_from, ; char* from + ptr @.TypeMapEntry.14997_to; char* to + }, ; 8299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14998_from, ; char* from + ptr @.TypeMapEntry.14999_to; char* to + }, ; 8300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15000_from, ; char* from + ptr @.TypeMapEntry.14999_to; char* to + }, ; 8301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15001_from, ; char* from + ptr @.TypeMapEntry.15002_to; char* to + }, ; 8302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15003_from, ; char* from + ptr @.TypeMapEntry.15002_to; char* to + }, ; 8303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15004_from, ; char* from + ptr @.TypeMapEntry.15005_to; char* to + }, ; 8304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15006_from, ; char* from + ptr @.TypeMapEntry.15007_to; char* to + }, ; 8305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15008_from, ; char* from + ptr @.TypeMapEntry.15007_to; char* to + }, ; 8306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15009_from, ; char* from + ptr @.TypeMapEntry.15010_to; char* to + }, ; 8307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15011_from, ; char* from + ptr @.TypeMapEntry.15010_to; char* to + }, ; 8308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15012_from, ; char* from + ptr @.TypeMapEntry.15013_to; char* to + }, ; 8309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15014_from, ; char* from + ptr @.TypeMapEntry.15015_to; char* to + }, ; 8310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15016_from, ; char* from + ptr @.TypeMapEntry.15017_to; char* to + }, ; 8311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15018_from, ; char* from + ptr @.TypeMapEntry.15019_to; char* to + }, ; 8312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15020_from, ; char* from + ptr @.TypeMapEntry.15019_to; char* to + }, ; 8313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15021_from, ; char* from + ptr @.TypeMapEntry.15022_to; char* to + }, ; 8314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15023_from, ; char* from + ptr @.TypeMapEntry.15022_to; char* to + }, ; 8315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15024_from, ; char* from + ptr @.TypeMapEntry.15025_to; char* to + }, ; 8316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15026_from, ; char* from + ptr @.TypeMapEntry.15027_to; char* to + }, ; 8317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15028_from, ; char* from + ptr @.TypeMapEntry.15027_to; char* to + }, ; 8318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15029_from, ; char* from + ptr @.TypeMapEntry.15030_to; char* to + }, ; 8319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15031_from, ; char* from + ptr @.TypeMapEntry.15032_to; char* to + }, ; 8320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15033_from, ; char* from + ptr @.TypeMapEntry.15032_to; char* to + }, ; 8321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15034_from, ; char* from + ptr @.TypeMapEntry.15035_to; char* to + }, ; 8322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15036_from, ; char* from + ptr @.TypeMapEntry.15037_to; char* to + }, ; 8323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15038_from, ; char* from + ptr @.TypeMapEntry.15039_to; char* to + }, ; 8324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15040_from, ; char* from + ptr @.TypeMapEntry.15041_to; char* to + }, ; 8325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15042_from, ; char* from + ptr @.TypeMapEntry.15041_to; char* to + }, ; 8326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15043_from, ; char* from + ptr @.TypeMapEntry.15044_to; char* to + }, ; 8327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15045_from, ; char* from + ptr @.TypeMapEntry.15046_to; char* to + }, ; 8328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15047_from, ; char* from + ptr @.TypeMapEntry.15046_to; char* to + }, ; 8329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15048_from, ; char* from + ptr @.TypeMapEntry.15044_to; char* to + }, ; 8330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15049_from, ; char* from + ptr @.TypeMapEntry.15050_to; char* to + }, ; 8331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15051_from, ; char* from + ptr @.TypeMapEntry.15050_to; char* to + }, ; 8332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15052_from, ; char* from + ptr @.TypeMapEntry.15053_to; char* to + }, ; 8333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15054_from, ; char* from + ptr @.TypeMapEntry.15053_to; char* to + }, ; 8334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15055_from, ; char* from + ptr @.TypeMapEntry.15056_to; char* to + }, ; 8335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15057_from, ; char* from + ptr @.TypeMapEntry.15056_to; char* to + }, ; 8336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15058_from, ; char* from + ptr @.TypeMapEntry.15059_to; char* to + }, ; 8337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15060_from, ; char* from + ptr @.TypeMapEntry.15061_to; char* to + }, ; 8338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15062_from, ; char* from + ptr @.TypeMapEntry.15063_to; char* to + }, ; 8339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15064_from, ; char* from + ptr @.TypeMapEntry.15065_to; char* to + }, ; 8340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15066_from, ; char* from + ptr @.TypeMapEntry.15067_to; char* to + }, ; 8341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15068_from, ; char* from + ptr @.TypeMapEntry.15069_to; char* to + }, ; 8342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15070_from, ; char* from + ptr @.TypeMapEntry.15071_to; char* to + }, ; 8343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15072_from, ; char* from + ptr @.TypeMapEntry.15073_to; char* to + }, ; 8344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15074_from, ; char* from + ptr @.TypeMapEntry.15075_to; char* to + }, ; 8345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15076_from, ; char* from + ptr @.TypeMapEntry.15077_to; char* to + }, ; 8346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15078_from, ; char* from + ptr @.TypeMapEntry.15079_to; char* to + }, ; 8347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15080_from, ; char* from + ptr @.TypeMapEntry.15081_to; char* to + }, ; 8348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15082_from, ; char* from + ptr @.TypeMapEntry.15083_to; char* to + }, ; 8349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15084_from, ; char* from + ptr @.TypeMapEntry.15085_to; char* to + }, ; 8350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15086_from, ; char* from + ptr @.TypeMapEntry.15087_to; char* to + }, ; 8351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15088_from, ; char* from + ptr @.TypeMapEntry.15089_to; char* to + }, ; 8352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15090_from, ; char* from + ptr @.TypeMapEntry.15091_to; char* to + }, ; 8353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15092_from, ; char* from + ptr @.TypeMapEntry.15089_to; char* to + }, ; 8354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15093_from, ; char* from + ptr @.TypeMapEntry.15094_to; char* to + }, ; 8355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15095_from, ; char* from + ptr @.TypeMapEntry.15096_to; char* to + }, ; 8356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15097_from, ; char* from + ptr @.TypeMapEntry.15098_to; char* to + }, ; 8357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15099_from, ; char* from + ptr @.TypeMapEntry.15100_to; char* to + }, ; 8358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15101_from, ; char* from + ptr @.TypeMapEntry.15102_to; char* to + }, ; 8359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15103_from, ; char* from + ptr @.TypeMapEntry.15102_to; char* to + }, ; 8360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15104_from, ; char* from + ptr @.TypeMapEntry.15105_to; char* to + }, ; 8361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15106_from, ; char* from + ptr @.TypeMapEntry.15107_to; char* to + }, ; 8362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15108_from, ; char* from + ptr @.TypeMapEntry.15109_to; char* to + }, ; 8363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15110_from, ; char* from + ptr @.TypeMapEntry.15111_to; char* to + }, ; 8364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15112_from, ; char* from + ptr @.TypeMapEntry.15111_to; char* to + }, ; 8365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15113_from, ; char* from + ptr @.TypeMapEntry.15114_to; char* to + }, ; 8366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15115_from, ; char* from + ptr @.TypeMapEntry.15116_to; char* to + }, ; 8367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15117_from, ; char* from + ptr @.TypeMapEntry.15116_to; char* to + }, ; 8368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15118_from, ; char* from + ptr @.TypeMapEntry.15119_to; char* to + }, ; 8369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15120_from, ; char* from + ptr @.TypeMapEntry.15121_to; char* to + }, ; 8370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15122_from, ; char* from + ptr @.TypeMapEntry.15119_to; char* to + }, ; 8371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15123_from, ; char* from + ptr @.TypeMapEntry.15124_to; char* to + }, ; 8372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15125_from, ; char* from + ptr @.TypeMapEntry.15126_to; char* to + }, ; 8373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15127_from, ; char* from + ptr @.TypeMapEntry.15128_to; char* to + }, ; 8374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15129_from, ; char* from + ptr @.TypeMapEntry.15130_to; char* to + }, ; 8375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15131_from, ; char* from + ptr @.TypeMapEntry.15132_to; char* to + }, ; 8376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15133_from, ; char* from + ptr @.TypeMapEntry.15134_to; char* to + }, ; 8377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15135_from, ; char* from + ptr @.TypeMapEntry.15136_to; char* to + }, ; 8378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15137_from, ; char* from + ptr @.TypeMapEntry.15138_to; char* to + }, ; 8379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15139_from, ; char* from + ptr @.TypeMapEntry.15140_to; char* to + }, ; 8380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15141_from, ; char* from + ptr @.TypeMapEntry.15142_to; char* to + }, ; 8381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15143_from, ; char* from + ptr @.TypeMapEntry.15144_to; char* to + }, ; 8382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15145_from, ; char* from + ptr @.TypeMapEntry.15146_to; char* to + }, ; 8383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15147_from, ; char* from + ptr @.TypeMapEntry.15148_to; char* to + }, ; 8384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15149_from, ; char* from + ptr @.TypeMapEntry.15150_to; char* to + }, ; 8385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15151_from, ; char* from + ptr @.TypeMapEntry.15152_to; char* to + }, ; 8386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15153_from, ; char* from + ptr @.TypeMapEntry.15152_to; char* to + }, ; 8387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15154_from, ; char* from + ptr @.TypeMapEntry.15155_to; char* to + }, ; 8388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15156_from, ; char* from + ptr @.TypeMapEntry.15155_to; char* to + }, ; 8389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15157_from, ; char* from + ptr @.TypeMapEntry.15158_to; char* to + }, ; 8390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15159_from, ; char* from + ptr @.TypeMapEntry.15160_to; char* to + }, ; 8391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15161_from, ; char* from + ptr @.TypeMapEntry.15162_to; char* to + }, ; 8392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15163_from, ; char* from + ptr @.TypeMapEntry.15164_to; char* to + }, ; 8393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15165_from, ; char* from + ptr @.TypeMapEntry.15166_to; char* to + }, ; 8394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15167_from, ; char* from + ptr @.TypeMapEntry.15166_to; char* to + }, ; 8395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15168_from, ; char* from + ptr @.TypeMapEntry.15169_to; char* to + }, ; 8396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15170_from, ; char* from + ptr @.TypeMapEntry.15171_to; char* to + }, ; 8397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15172_from, ; char* from + ptr @.TypeMapEntry.15171_to; char* to + }, ; 8398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15173_from, ; char* from + ptr @.TypeMapEntry.15174_to; char* to + }, ; 8399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15175_from, ; char* from + ptr @.TypeMapEntry.15174_to; char* to + }, ; 8400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15176_from, ; char* from + ptr @.TypeMapEntry.15177_to; char* to + }, ; 8401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15178_from, ; char* from + ptr @.TypeMapEntry.15179_to; char* to + }, ; 8402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15180_from, ; char* from + ptr @.TypeMapEntry.15177_to; char* to + }, ; 8403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15181_from, ; char* from + ptr @.TypeMapEntry.15182_to; char* to + }, ; 8404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15183_from, ; char* from + ptr @.TypeMapEntry.15184_to; char* to + }, ; 8405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15185_from, ; char* from + ptr @.TypeMapEntry.15182_to; char* to + }, ; 8406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15186_from, ; char* from + ptr @.TypeMapEntry.15187_to; char* to + }, ; 8407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15188_from, ; char* from + ptr @.TypeMapEntry.15189_to; char* to + }, ; 8408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15190_from, ; char* from + ptr @.TypeMapEntry.15191_to; char* to + }, ; 8409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15192_from, ; char* from + ptr @.TypeMapEntry.15191_to; char* to + }, ; 8410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15193_from, ; char* from + ptr @.TypeMapEntry.15194_to; char* to + }, ; 8411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15195_from, ; char* from + ptr @.TypeMapEntry.15196_to; char* to + }, ; 8412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15197_from, ; char* from + ptr @.TypeMapEntry.15198_to; char* to + }, ; 8413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15199_from, ; char* from + ptr @.TypeMapEntry.15200_to; char* to + }, ; 8414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15201_from, ; char* from + ptr @.TypeMapEntry.15202_to; char* to + }, ; 8415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15203_from, ; char* from + ptr @.TypeMapEntry.15202_to; char* to + }, ; 8416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15204_from, ; char* from + ptr @.TypeMapEntry.15205_to; char* to + }, ; 8417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15206_from, ; char* from + ptr @.TypeMapEntry.15205_to; char* to + }, ; 8418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15207_from, ; char* from + ptr @.TypeMapEntry.15208_to; char* to + }, ; 8419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15209_from, ; char* from + ptr @.TypeMapEntry.15208_to; char* to + }, ; 8420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15210_from, ; char* from + ptr @.TypeMapEntry.15211_to; char* to + }, ; 8421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15212_from, ; char* from + ptr @.TypeMapEntry.15211_to; char* to + }, ; 8422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15213_from, ; char* from + ptr @.TypeMapEntry.15214_to; char* to + }, ; 8423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15215_from, ; char* from + ptr @.TypeMapEntry.15216_to; char* to + }, ; 8424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15217_from, ; char* from + ptr @.TypeMapEntry.15218_to; char* to + }, ; 8425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15219_from, ; char* from + ptr @.TypeMapEntry.15220_to; char* to + }, ; 8426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15221_from, ; char* from + ptr @.TypeMapEntry.15222_to; char* to + }, ; 8427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15223_from, ; char* from + ptr @.TypeMapEntry.15222_to; char* to + }, ; 8428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15224_from, ; char* from + ptr @.TypeMapEntry.15225_to; char* to + }, ; 8429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15226_from, ; char* from + ptr @.TypeMapEntry.15227_to; char* to + }, ; 8430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15228_from, ; char* from + ptr @.TypeMapEntry.15227_to; char* to + }, ; 8431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15229_from, ; char* from + ptr @.TypeMapEntry.15230_to; char* to + }, ; 8432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15231_from, ; char* from + ptr @.TypeMapEntry.15232_to; char* to + }, ; 8433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15233_from, ; char* from + ptr @.TypeMapEntry.15232_to; char* to + }, ; 8434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15234_from, ; char* from + ptr @.TypeMapEntry.15235_to; char* to + }, ; 8435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15236_from, ; char* from + ptr @.TypeMapEntry.15235_to; char* to + }, ; 8436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15237_from, ; char* from + ptr @.TypeMapEntry.15238_to; char* to + }, ; 8437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15239_from, ; char* from + ptr @.TypeMapEntry.15238_to; char* to + }, ; 8438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15240_from, ; char* from + ptr @.TypeMapEntry.15241_to; char* to + }, ; 8439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15242_from, ; char* from + ptr @.TypeMapEntry.15241_to; char* to + }, ; 8440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15243_from, ; char* from + ptr @.TypeMapEntry.15244_to; char* to + }, ; 8441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15245_from, ; char* from + ptr @.TypeMapEntry.15244_to; char* to + }, ; 8442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15246_from, ; char* from + ptr @.TypeMapEntry.15247_to; char* to + }, ; 8443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15248_from, ; char* from + ptr @.TypeMapEntry.15249_to; char* to + }, ; 8444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15250_from, ; char* from + ptr @.TypeMapEntry.15251_to; char* to + }, ; 8445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15252_from, ; char* from + ptr @.TypeMapEntry.15253_to; char* to + }, ; 8446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15254_from, ; char* from + ptr @.TypeMapEntry.15253_to; char* to + }, ; 8447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15255_from, ; char* from + ptr @.TypeMapEntry.15256_to; char* to + }, ; 8448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15257_from, ; char* from + ptr @.TypeMapEntry.15256_to; char* to + }, ; 8449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15258_from, ; char* from + ptr @.TypeMapEntry.15259_to; char* to + }, ; 8450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15260_from, ; char* from + ptr @.TypeMapEntry.15261_to; char* to + }, ; 8451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15262_from, ; char* from + ptr @.TypeMapEntry.15263_to; char* to + }, ; 8452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15264_from, ; char* from + ptr @.TypeMapEntry.15263_to; char* to + }, ; 8453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15265_from, ; char* from + ptr @.TypeMapEntry.15266_to; char* to + }, ; 8454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15267_from, ; char* from + ptr @.TypeMapEntry.15268_to; char* to + }, ; 8455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15269_from, ; char* from + ptr @.TypeMapEntry.15266_to; char* to + }, ; 8456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15270_from, ; char* from + ptr @.TypeMapEntry.15271_to; char* to + }, ; 8457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15272_from, ; char* from + ptr @.TypeMapEntry.15273_to; char* to + }, ; 8458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15274_from, ; char* from + ptr @.TypeMapEntry.15271_to; char* to + }, ; 8459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15275_from, ; char* from + ptr @.TypeMapEntry.15276_to; char* to + }, ; 8460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15277_from, ; char* from + ptr @.TypeMapEntry.15276_to; char* to + }, ; 8461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15278_from, ; char* from + ptr @.TypeMapEntry.15279_to; char* to + }, ; 8462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15280_from, ; char* from + ptr @.TypeMapEntry.15281_to; char* to + }, ; 8463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15282_from, ; char* from + ptr @.TypeMapEntry.15283_to; char* to + }, ; 8464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15284_from, ; char* from + ptr @.TypeMapEntry.15285_to; char* to + }, ; 8465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15286_from, ; char* from + ptr @.TypeMapEntry.15287_to; char* to + }, ; 8466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15288_from, ; char* from + ptr @.TypeMapEntry.15289_to; char* to + }, ; 8467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15290_from, ; char* from + ptr @.TypeMapEntry.15287_to; char* to + }, ; 8468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15291_from, ; char* from + ptr @.TypeMapEntry.15292_to; char* to + }, ; 8469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15293_from, ; char* from + ptr @.TypeMapEntry.15292_to; char* to + }, ; 8470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15294_from, ; char* from + ptr @.TypeMapEntry.15295_to; char* to + }, ; 8471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15296_from, ; char* from + ptr @.TypeMapEntry.15295_to; char* to + }, ; 8472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15297_from, ; char* from + ptr @.TypeMapEntry.15298_to; char* to + }, ; 8473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15299_from, ; char* from + ptr @.TypeMapEntry.15298_to; char* to + }, ; 8474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15300_from, ; char* from + ptr @.TypeMapEntry.15301_to; char* to + }, ; 8475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15302_from, ; char* from + ptr @.TypeMapEntry.15303_to; char* to + }, ; 8476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15304_from, ; char* from + ptr @.TypeMapEntry.15303_to; char* to + }, ; 8477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15305_from, ; char* from + ptr @.TypeMapEntry.15306_to; char* to + }, ; 8478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15307_from, ; char* from + ptr @.TypeMapEntry.15308_to; char* to + }, ; 8479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15309_from, ; char* from + ptr @.TypeMapEntry.15310_to; char* to + }, ; 8480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15311_from, ; char* from + ptr @.TypeMapEntry.15310_to; char* to + }, ; 8481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15312_from, ; char* from + ptr @.TypeMapEntry.15313_to; char* to + }, ; 8482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15314_from, ; char* from + ptr @.TypeMapEntry.15313_to; char* to + }, ; 8483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15315_from, ; char* from + ptr @.TypeMapEntry.15316_to; char* to + }, ; 8484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15317_from, ; char* from + ptr @.TypeMapEntry.15316_to; char* to + }, ; 8485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15318_from, ; char* from + ptr @.TypeMapEntry.15319_to; char* to + }, ; 8486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15320_from, ; char* from + ptr @.TypeMapEntry.15319_to; char* to + }, ; 8487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15321_from, ; char* from + ptr @.TypeMapEntry.15322_to; char* to + }, ; 8488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15323_from, ; char* from + ptr @.TypeMapEntry.15322_to; char* to + }, ; 8489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15324_from, ; char* from + ptr @.TypeMapEntry.15325_to; char* to + }, ; 8490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15326_from, ; char* from + ptr @.TypeMapEntry.15327_to; char* to + }, ; 8491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15328_from, ; char* from + ptr @.TypeMapEntry.15329_to; char* to + }, ; 8492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15330_from, ; char* from + ptr @.TypeMapEntry.15331_to; char* to + }, ; 8493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15332_from, ; char* from + ptr @.TypeMapEntry.15331_to; char* to + }, ; 8494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15333_from, ; char* from + ptr @.TypeMapEntry.15329_to; char* to + }, ; 8495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15334_from, ; char* from + ptr @.TypeMapEntry.15335_to; char* to + }, ; 8496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15336_from, ; char* from + ptr @.TypeMapEntry.15335_to; char* to + }, ; 8497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15337_from, ; char* from + ptr @.TypeMapEntry.15338_to; char* to + }, ; 8498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15339_from, ; char* from + ptr @.TypeMapEntry.15340_to; char* to + }, ; 8499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15341_from, ; char* from + ptr @.TypeMapEntry.15340_to; char* to + }, ; 8500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15342_from, ; char* from + ptr @.TypeMapEntry.15338_to; char* to + }, ; 8501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15343_from, ; char* from + ptr @.TypeMapEntry.15344_to; char* to + }, ; 8502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15345_from, ; char* from + ptr @.TypeMapEntry.15344_to; char* to + }, ; 8503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15346_from, ; char* from + ptr @.TypeMapEntry.15347_to; char* to + }, ; 8504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15348_from, ; char* from + ptr @.TypeMapEntry.15347_to; char* to + }, ; 8505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15349_from, ; char* from + ptr @.TypeMapEntry.15350_to; char* to + }, ; 8506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15351_from, ; char* from + ptr @.TypeMapEntry.15350_to; char* to + }, ; 8507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15352_from, ; char* from + ptr @.TypeMapEntry.15353_to; char* to + }, ; 8508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15354_from, ; char* from + ptr @.TypeMapEntry.15353_to; char* to + }, ; 8509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15355_from, ; char* from + ptr @.TypeMapEntry.15356_to; char* to + }, ; 8510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15357_from, ; char* from + ptr @.TypeMapEntry.15356_to; char* to + }, ; 8511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15358_from, ; char* from + ptr @.TypeMapEntry.15359_to; char* to + }, ; 8512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15360_from, ; char* from + ptr @.TypeMapEntry.15361_to; char* to + }, ; 8513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15362_from, ; char* from + ptr @.TypeMapEntry.15363_to; char* to + }, ; 8514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15364_from, ; char* from + ptr @.TypeMapEntry.15365_to; char* to + }, ; 8515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15366_from, ; char* from + ptr @.TypeMapEntry.15367_to; char* to + }, ; 8516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15368_from, ; char* from + ptr @.TypeMapEntry.15329_to; char* to + }, ; 8517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15369_from, ; char* from + ptr @.TypeMapEntry.15370_to; char* to + }, ; 8518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15371_from, ; char* from + ptr @.TypeMapEntry.15329_to; char* to + }, ; 8519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15372_from, ; char* from + ptr @.TypeMapEntry.15373_to; char* to + }, ; 8520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15374_from, ; char* from + ptr @.TypeMapEntry.15375_to; char* to + }, ; 8521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15376_from, ; char* from + ptr @.TypeMapEntry.15377_to; char* to + }, ; 8522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15378_from, ; char* from + ptr @.TypeMapEntry.15379_to; char* to + }, ; 8523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15380_from, ; char* from + ptr @.TypeMapEntry.15379_to; char* to + }, ; 8524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15381_from, ; char* from + ptr @.TypeMapEntry.15382_to; char* to + }, ; 8525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15383_from, ; char* from + ptr @.TypeMapEntry.15384_to; char* to + }, ; 8526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15385_from, ; char* from + ptr @.TypeMapEntry.15386_to; char* to + }, ; 8527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15387_from, ; char* from + ptr @.TypeMapEntry.15388_to; char* to + }, ; 8528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15389_from, ; char* from + ptr @.TypeMapEntry.15390_to; char* to + }, ; 8529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15391_from, ; char* from + ptr @.TypeMapEntry.15392_to; char* to + }, ; 8530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15393_from, ; char* from + ptr @.TypeMapEntry.15394_to; char* to + }, ; 8531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15395_from, ; char* from + ptr @.TypeMapEntry.15396_to; char* to + }, ; 8532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15397_from, ; char* from + ptr @.TypeMapEntry.15398_to; char* to + }, ; 8533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15399_from, ; char* from + ptr @.TypeMapEntry.15400_to; char* to + }, ; 8534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15401_from, ; char* from + ptr @.TypeMapEntry.15398_to; char* to + }, ; 8535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15402_from, ; char* from + ptr @.TypeMapEntry.15403_to; char* to + }, ; 8536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15404_from, ; char* from + ptr @.TypeMapEntry.15403_to; char* to + }, ; 8537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15405_from, ; char* from + ptr @.TypeMapEntry.15398_to; char* to + }, ; 8538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15406_from, ; char* from + ptr @.TypeMapEntry.15407_to; char* to + }, ; 8539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15408_from, ; char* from + ptr @.TypeMapEntry.15407_to; char* to + }, ; 8540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15409_from, ; char* from + ptr @.TypeMapEntry.15398_to; char* to + }, ; 8541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15410_from, ; char* from + ptr @.TypeMapEntry.15411_to; char* to + }, ; 8542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15412_from, ; char* from + ptr @.TypeMapEntry.15413_to; char* to + }, ; 8543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15414_from, ; char* from + ptr @.TypeMapEntry.15415_to; char* to + }, ; 8544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15416_from, ; char* from + ptr @.TypeMapEntry.15417_to; char* to + }, ; 8545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15418_from, ; char* from + ptr @.TypeMapEntry.15419_to; char* to + }, ; 8546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15420_from, ; char* from + ptr @.TypeMapEntry.15421_to; char* to + }, ; 8547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15422_from, ; char* from + ptr @.TypeMapEntry.15423_to; char* to + }, ; 8548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15424_from, ; char* from + ptr @.TypeMapEntry.15425_to; char* to + }, ; 8549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15426_from, ; char* from + ptr @.TypeMapEntry.15427_to; char* to + }, ; 8550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15428_from, ; char* from + ptr @.TypeMapEntry.15429_to; char* to + }, ; 8551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15430_from, ; char* from + ptr @.TypeMapEntry.15431_to; char* to + }, ; 8552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15432_from, ; char* from + ptr @.TypeMapEntry.15433_to; char* to + }, ; 8553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15434_from, ; char* from + ptr @.TypeMapEntry.15435_to; char* to + }, ; 8554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15436_from, ; char* from + ptr @.TypeMapEntry.15437_to; char* to + }, ; 8555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15438_from, ; char* from + ptr @.TypeMapEntry.15439_to; char* to + }, ; 8556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15440_from, ; char* from + ptr @.TypeMapEntry.15441_to; char* to + }, ; 8557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15442_from, ; char* from + ptr @.TypeMapEntry.15443_to; char* to + }, ; 8558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15444_from, ; char* from + ptr @.TypeMapEntry.15445_to; char* to + }, ; 8559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15446_from, ; char* from + ptr @.TypeMapEntry.15447_to; char* to + }, ; 8560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15448_from, ; char* from + ptr @.TypeMapEntry.15449_to; char* to + }, ; 8561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15450_from, ; char* from + ptr @.TypeMapEntry.15451_to; char* to + }, ; 8562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15452_from, ; char* from + ptr @.TypeMapEntry.15453_to; char* to + }, ; 8563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15454_from, ; char* from + ptr @.TypeMapEntry.15455_to; char* to + }, ; 8564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15456_from, ; char* from + ptr @.TypeMapEntry.15457_to; char* to + }, ; 8565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15458_from, ; char* from + ptr @.TypeMapEntry.15459_to; char* to + }, ; 8566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15460_from, ; char* from + ptr @.TypeMapEntry.15459_to; char* to + }, ; 8567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15461_from, ; char* from + ptr @.TypeMapEntry.15462_to; char* to + }, ; 8568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15463_from, ; char* from + ptr @.TypeMapEntry.15462_to; char* to + }, ; 8569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15464_from, ; char* from + ptr @.TypeMapEntry.15465_to; char* to + }, ; 8570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15466_from, ; char* from + ptr @.TypeMapEntry.15465_to; char* to + }, ; 8571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15467_from, ; char* from + ptr @.TypeMapEntry.15468_to; char* to + }, ; 8572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15469_from, ; char* from + ptr @.TypeMapEntry.15468_to; char* to + }, ; 8573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15470_from, ; char* from + ptr @.TypeMapEntry.15471_to; char* to + }, ; 8574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15472_from, ; char* from + ptr @.TypeMapEntry.15473_to; char* to + }, ; 8575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15474_from, ; char* from + ptr @.TypeMapEntry.15475_to; char* to + }, ; 8576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15476_from, ; char* from + ptr @.TypeMapEntry.15477_to; char* to + }, ; 8577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15478_from, ; char* from + ptr @.TypeMapEntry.15479_to; char* to + }, ; 8578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15480_from, ; char* from + ptr @.TypeMapEntry.15481_to; char* to + }, ; 8579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15482_from, ; char* from + ptr @.TypeMapEntry.15483_to; char* to + }, ; 8580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15484_from, ; char* from + ptr @.TypeMapEntry.15483_to; char* to + }, ; 8581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15485_from, ; char* from + ptr @.TypeMapEntry.15486_to; char* to + }, ; 8582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15487_from, ; char* from + ptr @.TypeMapEntry.15486_to; char* to + }, ; 8583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15488_from, ; char* from + ptr @.TypeMapEntry.15489_to; char* to + }, ; 8584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15490_from, ; char* from + ptr @.TypeMapEntry.15491_to; char* to + }, ; 8585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15492_from, ; char* from + ptr @.TypeMapEntry.15491_to; char* to + }, ; 8586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15493_from, ; char* from + ptr @.TypeMapEntry.15489_to; char* to + }, ; 8587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15494_from, ; char* from + ptr @.TypeMapEntry.15495_to; char* to + }, ; 8588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15496_from, ; char* from + ptr @.TypeMapEntry.15497_to; char* to + }, ; 8589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15498_from, ; char* from + ptr @.TypeMapEntry.15497_to; char* to + }, ; 8590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15499_from, ; char* from + ptr @.TypeMapEntry.15495_to; char* to + }, ; 8591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15500_from, ; char* from + ptr @.TypeMapEntry.15489_to; char* to + }, ; 8592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15501_from, ; char* from + ptr @.TypeMapEntry.15502_to; char* to + }, ; 8593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15503_from, ; char* from + ptr @.TypeMapEntry.15489_to; char* to + }, ; 8594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15504_from, ; char* from + ptr @.TypeMapEntry.15505_to; char* to + }, ; 8595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15506_from, ; char* from + ptr @.TypeMapEntry.15507_to; char* to + }, ; 8596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15508_from, ; char* from + ptr @.TypeMapEntry.15495_to; char* to + }, ; 8597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15509_from, ; char* from + ptr @.TypeMapEntry.15510_to; char* to + }, ; 8598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15511_from, ; char* from + ptr @.TypeMapEntry.15495_to; char* to + }, ; 8599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15512_from, ; char* from + ptr @.TypeMapEntry.15513_to; char* to + }, ; 8600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15514_from, ; char* from + ptr @.TypeMapEntry.15515_to; char* to + }, ; 8601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15516_from, ; char* from + ptr @.TypeMapEntry.15517_to; char* to + }, ; 8602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15518_from, ; char* from + ptr @.TypeMapEntry.15517_to; char* to + }, ; 8603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15519_from, ; char* from + ptr @.TypeMapEntry.15520_to; char* to + }, ; 8604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15521_from, ; char* from + ptr @.TypeMapEntry.15522_to; char* to + }, ; 8605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15523_from, ; char* from + ptr @.TypeMapEntry.15524_to; char* to + }, ; 8606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15525_from, ; char* from + ptr @.TypeMapEntry.15526_to; char* to + }, ; 8607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15527_from, ; char* from + ptr @.TypeMapEntry.15526_to; char* to + }, ; 8608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15528_from, ; char* from + ptr @.TypeMapEntry.15529_to; char* to + }, ; 8609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15530_from, ; char* from + ptr @.TypeMapEntry.15531_to; char* to + }, ; 8610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15532_from, ; char* from + ptr @.TypeMapEntry.15531_to; char* to + }, ; 8611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15533_from, ; char* from + ptr @.TypeMapEntry.15534_to; char* to + }, ; 8612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15535_from, ; char* from + ptr @.TypeMapEntry.15536_to; char* to + }, ; 8613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15537_from, ; char* from + ptr @.TypeMapEntry.15531_to; char* to + }, ; 8614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15538_from, ; char* from + ptr @.TypeMapEntry.15539_to; char* to + }, ; 8615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15540_from, ; char* from + ptr @.TypeMapEntry.15539_to; char* to + }, ; 8616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15541_from, ; char* from + ptr @.TypeMapEntry.15542_to; char* to + }, ; 8617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15543_from, ; char* from + ptr @.TypeMapEntry.15542_to; char* to + }, ; 8618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15544_from, ; char* from + ptr @.TypeMapEntry.15531_to; char* to + }, ; 8619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15545_from, ; char* from + ptr @.TypeMapEntry.15546_to; char* to + }, ; 8620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15547_from, ; char* from + ptr @.TypeMapEntry.15548_to; char* to + }, ; 8621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15549_from, ; char* from + ptr @.TypeMapEntry.15548_to; char* to + }, ; 8622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15550_from, ; char* from + ptr @.TypeMapEntry.15551_to; char* to + }, ; 8623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15552_from, ; char* from + ptr @.TypeMapEntry.15553_to; char* to + }, ; 8624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15554_from, ; char* from + ptr @.TypeMapEntry.15555_to; char* to + }, ; 8625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15556_from, ; char* from + ptr @.TypeMapEntry.15557_to; char* to + }, ; 8626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15558_from, ; char* from + ptr @.TypeMapEntry.15559_to; char* to + }, ; 8627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15560_from, ; char* from + ptr @.TypeMapEntry.15561_to; char* to + }, ; 8628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15562_from, ; char* from + ptr @.TypeMapEntry.15561_to; char* to + }, ; 8629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15563_from, ; char* from + ptr @.TypeMapEntry.15564_to; char* to + }, ; 8630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15565_from, ; char* from + ptr @.TypeMapEntry.15564_to; char* to + }, ; 8631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15566_from, ; char* from + ptr @.TypeMapEntry.15567_to; char* to + }, ; 8632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15568_from, ; char* from + ptr @.TypeMapEntry.15569_to; char* to + }, ; 8633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15570_from, ; char* from + ptr @.TypeMapEntry.15571_to; char* to + }, ; 8634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15572_from, ; char* from + ptr @.TypeMapEntry.15571_to; char* to + }, ; 8635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15573_from, ; char* from + ptr @.TypeMapEntry.15574_to; char* to + }, ; 8636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15575_from, ; char* from + ptr @.TypeMapEntry.15576_to; char* to + }, ; 8637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15577_from, ; char* from + ptr @.TypeMapEntry.15578_to; char* to + }, ; 8638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15579_from, ; char* from + ptr @.TypeMapEntry.15580_to; char* to + }, ; 8639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15581_from, ; char* from + ptr @.TypeMapEntry.15582_to; char* to + }, ; 8640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15583_from, ; char* from + ptr @.TypeMapEntry.15584_to; char* to + }, ; 8641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15585_from, ; char* from + ptr @.TypeMapEntry.15586_to; char* to + }, ; 8642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15587_from, ; char* from + ptr @.TypeMapEntry.15588_to; char* to + }, ; 8643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15589_from, ; char* from + ptr @.TypeMapEntry.15588_to; char* to + }, ; 8644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15590_from, ; char* from + ptr @.TypeMapEntry.15586_to; char* to + }, ; 8645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15591_from, ; char* from + ptr @.TypeMapEntry.15592_to; char* to + }, ; 8646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15593_from, ; char* from + ptr @.TypeMapEntry.15594_to; char* to + }, ; 8647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15595_from, ; char* from + ptr @.TypeMapEntry.15594_to; char* to + }, ; 8648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15596_from, ; char* from + ptr @.TypeMapEntry.15592_to; char* to + }, ; 8649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15597_from, ; char* from + ptr @.TypeMapEntry.15598_to; char* to + }, ; 8650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15599_from, ; char* from + ptr @.TypeMapEntry.15600_to; char* to + }, ; 8651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15601_from, ; char* from + ptr @.TypeMapEntry.15602_to; char* to + }, ; 8652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15603_from, ; char* from + ptr @.TypeMapEntry.15602_to; char* to + }, ; 8653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15604_from, ; char* from + ptr @.TypeMapEntry.15605_to; char* to + }, ; 8654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15606_from, ; char* from + ptr @.TypeMapEntry.15605_to; char* to + }, ; 8655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15607_from, ; char* from + ptr @.TypeMapEntry.15608_to; char* to + }, ; 8656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15609_from, ; char* from + ptr @.TypeMapEntry.15610_to; char* to + }, ; 8657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15611_from, ; char* from + ptr @.TypeMapEntry.15612_to; char* to + }, ; 8658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15613_from, ; char* from + ptr @.TypeMapEntry.15614_to; char* to + }, ; 8659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15615_from, ; char* from + ptr @.TypeMapEntry.15616_to; char* to + }, ; 8660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15617_from, ; char* from + ptr @.TypeMapEntry.15618_to; char* to + }, ; 8661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15619_from, ; char* from + ptr @.TypeMapEntry.15620_to; char* to + }, ; 8662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15621_from, ; char* from + ptr @.TypeMapEntry.15622_to; char* to + }, ; 8663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15623_from, ; char* from + ptr @.TypeMapEntry.15624_to; char* to + }, ; 8664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15625_from, ; char* from + ptr @.TypeMapEntry.15626_to; char* to + }, ; 8665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15627_from, ; char* from + ptr @.TypeMapEntry.15626_to; char* to + }, ; 8666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15628_from, ; char* from + ptr @.TypeMapEntry.15629_to; char* to + }, ; 8667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15630_from, ; char* from + ptr @.TypeMapEntry.15629_to; char* to + }, ; 8668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15631_from, ; char* from + ptr @.TypeMapEntry.15632_to; char* to + }, ; 8669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15633_from, ; char* from + ptr @.TypeMapEntry.15634_to; char* to + }, ; 8670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15635_from, ; char* from + ptr @.TypeMapEntry.15626_to; char* to + }, ; 8671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15636_from, ; char* from + ptr @.TypeMapEntry.15626_to; char* to + }, ; 8672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15637_from, ; char* from + ptr @.TypeMapEntry.15638_to; char* to + }, ; 8673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15639_from, ; char* from + ptr @.TypeMapEntry.15638_to; char* to + }, ; 8674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15640_from, ; char* from + ptr @.TypeMapEntry.15641_to; char* to + }, ; 8675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15642_from, ; char* from + ptr @.TypeMapEntry.15641_to; char* to + }, ; 8676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15643_from, ; char* from + ptr @.TypeMapEntry.15644_to; char* to + }, ; 8677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15645_from, ; char* from + ptr @.TypeMapEntry.15644_to; char* to + }, ; 8678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15646_from, ; char* from + ptr @.TypeMapEntry.15647_to; char* to + }, ; 8679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15648_from, ; char* from + ptr @.TypeMapEntry.15649_to; char* to + }, ; 8680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15650_from, ; char* from + ptr @.TypeMapEntry.15651_to; char* to + }, ; 8681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15652_from, ; char* from + ptr @.TypeMapEntry.15653_to; char* to + }, ; 8682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15654_from, ; char* from + ptr @.TypeMapEntry.15655_to; char* to + }, ; 8683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15656_from, ; char* from + ptr @.TypeMapEntry.15657_to; char* to + }, ; 8684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15658_from, ; char* from + ptr @.TypeMapEntry.15659_to; char* to + }, ; 8685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15660_from, ; char* from + ptr @.TypeMapEntry.15659_to; char* to + }, ; 8686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15661_from, ; char* from + ptr @.TypeMapEntry.15662_to; char* to + }, ; 8687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15663_from, ; char* from + ptr @.TypeMapEntry.15662_to; char* to + }, ; 8688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15664_from, ; char* from + ptr @.TypeMapEntry.15665_to; char* to + }, ; 8689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15666_from, ; char* from + ptr @.TypeMapEntry.15667_to; char* to + }, ; 8690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15668_from, ; char* from + ptr @.TypeMapEntry.15669_to; char* to + }, ; 8691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15670_from, ; char* from + ptr @.TypeMapEntry.15671_to; char* to + }, ; 8692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15672_from, ; char* from + ptr @.TypeMapEntry.15673_to; char* to + }, ; 8693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15674_from, ; char* from + ptr @.TypeMapEntry.15659_to; char* to + }, ; 8694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15675_from, ; char* from + ptr @.TypeMapEntry.15659_to; char* to + }, ; 8695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15676_from, ; char* from + ptr @.TypeMapEntry.15673_to; char* to + }, ; 8696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15677_from, ; char* from + ptr @.TypeMapEntry.15678_to; char* to + }, ; 8697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15679_from, ; char* from + ptr @.TypeMapEntry.15678_to; char* to + }, ; 8698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15680_from, ; char* from + ptr @.TypeMapEntry.15681_to; char* to + }, ; 8699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15682_from, ; char* from + ptr @.TypeMapEntry.15681_to; char* to + }, ; 8700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15683_from, ; char* from + ptr @.TypeMapEntry.15684_to; char* to + }, ; 8701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15685_from, ; char* from + ptr @.TypeMapEntry.15686_to; char* to + }, ; 8702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15687_from, ; char* from + ptr @.TypeMapEntry.15684_to; char* to + }, ; 8703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15688_from, ; char* from + ptr @.TypeMapEntry.15689_to; char* to + }, ; 8704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15690_from, ; char* from + ptr @.TypeMapEntry.15691_to; char* to + }, ; 8705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15692_from, ; char* from + ptr @.TypeMapEntry.15693_to; char* to + }, ; 8706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15694_from, ; char* from + ptr @.TypeMapEntry.15695_to; char* to + }, ; 8707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15696_from, ; char* from + ptr @.TypeMapEntry.15697_to; char* to + }, ; 8708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15698_from, ; char* from + ptr @.TypeMapEntry.15699_to; char* to + }, ; 8709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15700_from, ; char* from + ptr @.TypeMapEntry.15701_to; char* to + }, ; 8710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15702_from, ; char* from + ptr @.TypeMapEntry.15703_to; char* to + }, ; 8711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15704_from, ; char* from + ptr @.TypeMapEntry.15703_to; char* to + }, ; 8712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15705_from, ; char* from + ptr @.TypeMapEntry.15706_to; char* to + }, ; 8713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15707_from, ; char* from + ptr @.TypeMapEntry.15708_to; char* to + }, ; 8714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15709_from, ; char* from + ptr @.TypeMapEntry.15710_to; char* to + }, ; 8715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15711_from, ; char* from + ptr @.TypeMapEntry.15712_to; char* to + }, ; 8716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15713_from, ; char* from + ptr @.TypeMapEntry.15712_to; char* to + }, ; 8717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15714_from, ; char* from + ptr @.TypeMapEntry.15712_to; char* to + }, ; 8718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15715_from, ; char* from + ptr @.TypeMapEntry.15712_to; char* to + }, ; 8719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15716_from, ; char* from + ptr @.TypeMapEntry.15717_to; char* to + }, ; 8720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15718_from, ; char* from + ptr @.TypeMapEntry.15719_to; char* to + }, ; 8721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15720_from, ; char* from + ptr @.TypeMapEntry.15721_to; char* to + }, ; 8722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15722_from, ; char* from + ptr @.TypeMapEntry.15721_to; char* to + }, ; 8723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15723_from, ; char* from + ptr @.TypeMapEntry.15724_to; char* to + }, ; 8724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15725_from, ; char* from + ptr @.TypeMapEntry.15724_to; char* to + }, ; 8725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15726_from, ; char* from + ptr @.TypeMapEntry.15727_to; char* to + }, ; 8726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15728_from, ; char* from + ptr @.TypeMapEntry.15729_to; char* to + }, ; 8727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15730_from, ; char* from + ptr @.TypeMapEntry.15731_to; char* to + }, ; 8728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15732_from, ; char* from + ptr @.TypeMapEntry.15733_to; char* to + }, ; 8729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15734_from, ; char* from + ptr @.TypeMapEntry.15735_to; char* to + }, ; 8730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15736_from, ; char* from + ptr @.TypeMapEntry.15737_to; char* to + }, ; 8731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15738_from, ; char* from + ptr @.TypeMapEntry.15737_to; char* to + }, ; 8732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15739_from, ; char* from + ptr @.TypeMapEntry.15740_to; char* to + }, ; 8733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15741_from, ; char* from + ptr @.TypeMapEntry.15740_to; char* to + }, ; 8734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15742_from, ; char* from + ptr @.TypeMapEntry.15743_to; char* to + }, ; 8735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15744_from, ; char* from + ptr @.TypeMapEntry.15743_to; char* to + }, ; 8736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15745_from, ; char* from + ptr @.TypeMapEntry.15746_to; char* to + }, ; 8737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15747_from, ; char* from + ptr @.TypeMapEntry.15746_to; char* to + }, ; 8738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15748_from, ; char* from + ptr @.TypeMapEntry.15749_to; char* to + }, ; 8739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15750_from, ; char* from + ptr @.TypeMapEntry.15749_to; char* to + }, ; 8740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15751_from, ; char* from + ptr @.TypeMapEntry.15752_to; char* to + }, ; 8741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15753_from, ; char* from + ptr @.TypeMapEntry.15752_to; char* to + }, ; 8742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15754_from, ; char* from + ptr @.TypeMapEntry.15740_to; char* to + }, ; 8743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15755_from, ; char* from + ptr @.TypeMapEntry.15740_to; char* to + }, ; 8744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15756_from, ; char* from + ptr @.TypeMapEntry.15757_to; char* to + }, ; 8745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15758_from, ; char* from + ptr @.TypeMapEntry.15759_to; char* to + }, ; 8746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15760_from, ; char* from + ptr @.TypeMapEntry.15743_to; char* to + }, ; 8747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15761_from, ; char* from + ptr @.TypeMapEntry.15743_to; char* to + }, ; 8748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15762_from, ; char* from + ptr @.TypeMapEntry.15763_to; char* to + }, ; 8749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15764_from, ; char* from + ptr @.TypeMapEntry.15765_to; char* to + }, ; 8750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15766_from, ; char* from + ptr @.TypeMapEntry.15765_to; char* to + }, ; 8751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15767_from, ; char* from + ptr @.TypeMapEntry.15768_to; char* to + }, ; 8752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15769_from, ; char* from + ptr @.TypeMapEntry.15770_to; char* to + }, ; 8753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15771_from, ; char* from + ptr @.TypeMapEntry.15772_to; char* to + }, ; 8754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15773_from, ; char* from + ptr @.TypeMapEntry.15774_to; char* to + }, ; 8755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15775_from, ; char* from + ptr @.TypeMapEntry.15774_to; char* to + }, ; 8756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15776_from, ; char* from + ptr @.TypeMapEntry.15777_to; char* to + }, ; 8757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15778_from, ; char* from + ptr @.TypeMapEntry.15779_to; char* to + }, ; 8758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15780_from, ; char* from + ptr @.TypeMapEntry.15781_to; char* to + }, ; 8759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15782_from, ; char* from + ptr @.TypeMapEntry.15783_to; char* to + }, ; 8760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15784_from, ; char* from + ptr @.TypeMapEntry.15785_to; char* to + }, ; 8761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15786_from, ; char* from + ptr @.TypeMapEntry.15787_to; char* to + }, ; 8762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15788_from, ; char* from + ptr @.TypeMapEntry.15787_to; char* to + }, ; 8763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15789_from, ; char* from + ptr @.TypeMapEntry.15790_to; char* to + }, ; 8764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15791_from, ; char* from + ptr @.TypeMapEntry.15792_to; char* to + }, ; 8765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15793_from, ; char* from + ptr @.TypeMapEntry.15794_to; char* to + }, ; 8766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15795_from, ; char* from + ptr @.TypeMapEntry.15796_to; char* to + }, ; 8767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15797_from, ; char* from + ptr @.TypeMapEntry.15798_to; char* to + }, ; 8768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15799_from, ; char* from + ptr @.TypeMapEntry.15800_to; char* to + }, ; 8769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15801_from, ; char* from + ptr @.TypeMapEntry.15800_to; char* to + }, ; 8770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15802_from, ; char* from + ptr @.TypeMapEntry.15803_to; char* to + }, ; 8771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15804_from, ; char* from + ptr @.TypeMapEntry.15805_to; char* to + }, ; 8772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15806_from, ; char* from + ptr @.TypeMapEntry.15807_to; char* to + }, ; 8773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15808_from, ; char* from + ptr @.TypeMapEntry.15809_to; char* to + }, ; 8774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15810_from, ; char* from + ptr @.TypeMapEntry.15809_to; char* to + }, ; 8775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15811_from, ; char* from + ptr @.TypeMapEntry.15809_to; char* to + }, ; 8776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15812_from, ; char* from + ptr @.TypeMapEntry.15809_to; char* to + }, ; 8777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15813_from, ; char* from + ptr @.TypeMapEntry.15814_to; char* to + }, ; 8778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15815_from, ; char* from + ptr @.TypeMapEntry.15814_to; char* to + }, ; 8779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15816_from, ; char* from + ptr @.TypeMapEntry.15817_to; char* to + }, ; 8780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15818_from, ; char* from + ptr @.TypeMapEntry.15817_to; char* to + }, ; 8781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15819_from, ; char* from + ptr @.TypeMapEntry.15820_to; char* to + }, ; 8782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15821_from, ; char* from + ptr @.TypeMapEntry.15822_to; char* to + }, ; 8783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15823_from, ; char* from + ptr @.TypeMapEntry.15822_to; char* to + }, ; 8784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15824_from, ; char* from + ptr @.TypeMapEntry.15820_to; char* to + }, ; 8785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15825_from, ; char* from + ptr @.TypeMapEntry.15826_to; char* to + }, ; 8786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15827_from, ; char* from + ptr @.TypeMapEntry.15828_to; char* to + }, ; 8787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15829_from, ; char* from + ptr @.TypeMapEntry.15830_to; char* to + }, ; 8788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15831_from, ; char* from + ptr @.TypeMapEntry.15832_to; char* to + }, ; 8789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15833_from, ; char* from + ptr @.TypeMapEntry.15834_to; char* to + }, ; 8790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15835_from, ; char* from + ptr @.TypeMapEntry.15836_to; char* to + }, ; 8791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15837_from, ; char* from + ptr @.TypeMapEntry.15838_to; char* to + }, ; 8792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15839_from, ; char* from + ptr @.TypeMapEntry.15840_to; char* to + }, ; 8793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15841_from, ; char* from + ptr @.TypeMapEntry.15842_to; char* to + }, ; 8794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15843_from, ; char* from + ptr @.TypeMapEntry.15844_to; char* to + }, ; 8795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15845_from, ; char* from + ptr @.TypeMapEntry.15846_to; char* to + }, ; 8796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15847_from, ; char* from + ptr @.TypeMapEntry.15848_to; char* to + }, ; 8797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15849_from, ; char* from + ptr @.TypeMapEntry.15850_to; char* to + }, ; 8798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15851_from, ; char* from + ptr @.TypeMapEntry.15852_to; char* to + }, ; 8799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15853_from, ; char* from + ptr @.TypeMapEntry.15854_to; char* to + }, ; 8800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15855_from, ; char* from + ptr @.TypeMapEntry.15854_to; char* to + }, ; 8801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15856_from, ; char* from + ptr @.TypeMapEntry.15857_to; char* to + }, ; 8802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15858_from, ; char* from + ptr @.TypeMapEntry.15859_to; char* to + }, ; 8803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15860_from, ; char* from + ptr @.TypeMapEntry.15861_to; char* to + }, ; 8804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15862_from, ; char* from + ptr @.TypeMapEntry.15863_to; char* to + }, ; 8805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15864_from, ; char* from + ptr @.TypeMapEntry.15865_to; char* to + }, ; 8806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15866_from, ; char* from + ptr @.TypeMapEntry.15867_to; char* to + }, ; 8807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15868_from, ; char* from + ptr @.TypeMapEntry.15869_to; char* to + }, ; 8808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15870_from, ; char* from + ptr @.TypeMapEntry.15871_to; char* to + }, ; 8809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15872_from, ; char* from + ptr @.TypeMapEntry.15873_to; char* to + }, ; 8810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15874_from, ; char* from + ptr @.TypeMapEntry.15875_to; char* to + }, ; 8811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15876_from, ; char* from + ptr @.TypeMapEntry.15877_to; char* to + }, ; 8812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15878_from, ; char* from + ptr @.TypeMapEntry.15879_to; char* to + }, ; 8813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15880_from, ; char* from + ptr @.TypeMapEntry.15881_to; char* to + }, ; 8814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15882_from, ; char* from + ptr @.TypeMapEntry.15883_to; char* to + }, ; 8815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15884_from, ; char* from + ptr @.TypeMapEntry.15885_to; char* to + }, ; 8816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15886_from, ; char* from + ptr @.TypeMapEntry.15887_to; char* to + }, ; 8817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15888_from, ; char* from + ptr @.TypeMapEntry.15889_to; char* to + }, ; 8818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15890_from, ; char* from + ptr @.TypeMapEntry.15891_to; char* to + }, ; 8819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15892_from, ; char* from + ptr @.TypeMapEntry.15893_to; char* to + }, ; 8820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15894_from, ; char* from + ptr @.TypeMapEntry.15895_to; char* to + }, ; 8821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15896_from, ; char* from + ptr @.TypeMapEntry.15897_to; char* to + }, ; 8822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15898_from, ; char* from + ptr @.TypeMapEntry.15897_to; char* to + }, ; 8823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15899_from, ; char* from + ptr @.TypeMapEntry.15900_to; char* to + }, ; 8824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15901_from, ; char* from + ptr @.TypeMapEntry.15902_to; char* to + }, ; 8825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15903_from, ; char* from + ptr @.TypeMapEntry.15904_to; char* to + }, ; 8826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15905_from, ; char* from + ptr @.TypeMapEntry.15906_to; char* to + }, ; 8827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15907_from, ; char* from + ptr @.TypeMapEntry.15908_to; char* to + }, ; 8828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15909_from, ; char* from + ptr @.TypeMapEntry.15910_to; char* to + }, ; 8829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15911_from, ; char* from + ptr @.TypeMapEntry.15910_to; char* to + }, ; 8830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15912_from, ; char* from + ptr @.TypeMapEntry.15913_to; char* to + }, ; 8831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15914_from, ; char* from + ptr @.TypeMapEntry.15915_to; char* to + }, ; 8832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15916_from, ; char* from + ptr @.TypeMapEntry.15917_to; char* to + }, ; 8833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15918_from, ; char* from + ptr @.TypeMapEntry.15919_to; char* to + }, ; 8834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15920_from, ; char* from + ptr @.TypeMapEntry.15921_to; char* to + }, ; 8835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15922_from, ; char* from + ptr @.TypeMapEntry.15923_to; char* to + }, ; 8836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15924_from, ; char* from + ptr @.TypeMapEntry.15925_to; char* to + }, ; 8837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15926_from, ; char* from + ptr @.TypeMapEntry.15927_to; char* to + }, ; 8838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15928_from, ; char* from + ptr @.TypeMapEntry.15929_to; char* to + }, ; 8839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15930_from, ; char* from + ptr @.TypeMapEntry.15931_to; char* to + }, ; 8840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15932_from, ; char* from + ptr @.TypeMapEntry.15933_to; char* to + }, ; 8841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15934_from, ; char* from + ptr @.TypeMapEntry.15933_to; char* to + }, ; 8842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15935_from, ; char* from + ptr @.TypeMapEntry.15936_to; char* to + }, ; 8843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15937_from, ; char* from + ptr @.TypeMapEntry.15938_to; char* to + }, ; 8844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15939_from, ; char* from + ptr @.TypeMapEntry.15940_to; char* to + }, ; 8845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15941_from, ; char* from + ptr @.TypeMapEntry.15942_to; char* to + }, ; 8846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15943_from, ; char* from + ptr @.TypeMapEntry.15944_to; char* to + }, ; 8847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15945_from, ; char* from + ptr @.TypeMapEntry.15946_to; char* to + }, ; 8848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15947_from, ; char* from + ptr @.TypeMapEntry.15948_to; char* to + }, ; 8849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15949_from, ; char* from + ptr @.TypeMapEntry.15950_to; char* to + }, ; 8850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15951_from, ; char* from + ptr @.TypeMapEntry.15952_to; char* to + }, ; 8851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15953_from, ; char* from + ptr @.TypeMapEntry.15952_to; char* to + }, ; 8852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15954_from, ; char* from + ptr @.TypeMapEntry.15955_to; char* to + }, ; 8853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15956_from, ; char* from + ptr @.TypeMapEntry.15955_to; char* to + }, ; 8854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15957_from, ; char* from + ptr @.TypeMapEntry.15958_to; char* to + }, ; 8855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15959_from, ; char* from + ptr @.TypeMapEntry.15960_to; char* to + }, ; 8856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15961_from, ; char* from + ptr @.TypeMapEntry.15962_to; char* to + }, ; 8857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15963_from, ; char* from + ptr @.TypeMapEntry.15964_to; char* to + }, ; 8858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15965_from, ; char* from + ptr @.TypeMapEntry.15966_to; char* to + }, ; 8859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15967_from, ; char* from + ptr @.TypeMapEntry.15968_to; char* to + }, ; 8860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15969_from, ; char* from + ptr @.TypeMapEntry.15970_to; char* to + }, ; 8861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15971_from, ; char* from + ptr @.TypeMapEntry.15972_to; char* to + }, ; 8862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15973_from, ; char* from + ptr @.TypeMapEntry.15974_to; char* to + }, ; 8863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15975_from, ; char* from + ptr @.TypeMapEntry.15976_to; char* to + }, ; 8864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15977_from, ; char* from + ptr @.TypeMapEntry.15978_to; char* to + }, ; 8865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15979_from, ; char* from + ptr @.TypeMapEntry.15980_to; char* to + }, ; 8866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15981_from, ; char* from + ptr @.TypeMapEntry.15982_to; char* to + }, ; 8867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15983_from, ; char* from + ptr @.TypeMapEntry.15984_to; char* to + }, ; 8868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15985_from, ; char* from + ptr @.TypeMapEntry.15986_to; char* to + }, ; 8869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15987_from, ; char* from + ptr @.TypeMapEntry.15988_to; char* to + }, ; 8870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15989_from, ; char* from + ptr @.TypeMapEntry.15990_to; char* to + }, ; 8871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15991_from, ; char* from + ptr @.TypeMapEntry.15992_to; char* to + }, ; 8872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15993_from, ; char* from + ptr @.TypeMapEntry.15994_to; char* to + }, ; 8873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15995_from, ; char* from + ptr @.TypeMapEntry.15996_to; char* to + }, ; 8874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15997_from, ; char* from + ptr @.TypeMapEntry.15998_to; char* to + }, ; 8875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15999_from, ; char* from + ptr @.TypeMapEntry.16000_to; char* to + }, ; 8876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16001_from, ; char* from + ptr @.TypeMapEntry.16002_to; char* to + }, ; 8877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16003_from, ; char* from + ptr @.TypeMapEntry.16004_to; char* to + }, ; 8878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16005_from, ; char* from + ptr @.TypeMapEntry.16006_to; char* to + }, ; 8879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16007_from, ; char* from + ptr @.TypeMapEntry.16008_to; char* to + }, ; 8880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16009_from, ; char* from + ptr @.TypeMapEntry.16008_to; char* to + }, ; 8881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16010_from, ; char* from + ptr @.TypeMapEntry.16011_to; char* to + }, ; 8882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16012_from, ; char* from + ptr @.TypeMapEntry.16013_to; char* to + }, ; 8883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16014_from, ; char* from + ptr @.TypeMapEntry.16015_to; char* to + }, ; 8884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16016_from, ; char* from + ptr @.TypeMapEntry.16017_to; char* to + }, ; 8885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16018_from, ; char* from + ptr @.TypeMapEntry.16019_to; char* to + }, ; 8886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16020_from, ; char* from + ptr @.TypeMapEntry.16021_to; char* to + }, ; 8887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16022_from, ; char* from + ptr @.TypeMapEntry.16023_to; char* to + }, ; 8888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16024_from, ; char* from + ptr @.TypeMapEntry.16025_to; char* to + }, ; 8889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16026_from, ; char* from + ptr @.TypeMapEntry.16027_to; char* to + }, ; 8890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16028_from, ; char* from + ptr @.TypeMapEntry.16029_to; char* to + }, ; 8891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16030_from, ; char* from + ptr @.TypeMapEntry.16031_to; char* to + }, ; 8892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16032_from, ; char* from + ptr @.TypeMapEntry.16033_to; char* to + }, ; 8893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16034_from, ; char* from + ptr @.TypeMapEntry.16035_to; char* to + }, ; 8894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16036_from, ; char* from + ptr @.TypeMapEntry.16037_to; char* to + }, ; 8895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16038_from, ; char* from + ptr @.TypeMapEntry.16039_to; char* to + }, ; 8896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16040_from, ; char* from + ptr @.TypeMapEntry.16041_to; char* to + }, ; 8897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16042_from, ; char* from + ptr @.TypeMapEntry.16043_to; char* to + }, ; 8898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16044_from, ; char* from + ptr @.TypeMapEntry.16045_to; char* to + }, ; 8899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16046_from, ; char* from + ptr @.TypeMapEntry.16047_to; char* to + }, ; 8900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16048_from, ; char* from + ptr @.TypeMapEntry.16049_to; char* to + }, ; 8901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16050_from, ; char* from + ptr @.TypeMapEntry.16049_to; char* to + }, ; 8902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16051_from, ; char* from + ptr @.TypeMapEntry.16052_to; char* to + }, ; 8903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16053_from, ; char* from + ptr @.TypeMapEntry.16054_to; char* to + }, ; 8904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16055_from, ; char* from + ptr @.TypeMapEntry.16056_to; char* to + }, ; 8905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16057_from, ; char* from + ptr @.TypeMapEntry.16058_to; char* to + }, ; 8906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16059_from, ; char* from + ptr @.TypeMapEntry.16060_to; char* to + }, ; 8907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16061_from, ; char* from + ptr @.TypeMapEntry.16062_to; char* to + }, ; 8908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16063_from, ; char* from + ptr @.TypeMapEntry.16064_to; char* to + }, ; 8909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16065_from, ; char* from + ptr @.TypeMapEntry.16062_to; char* to + }, ; 8910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16066_from, ; char* from + ptr @.TypeMapEntry.16067_to; char* to + }, ; 8911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16068_from, ; char* from + ptr @.TypeMapEntry.16067_to; char* to + }, ; 8912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16069_from, ; char* from + ptr @.TypeMapEntry.16060_to; char* to + }, ; 8913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16070_from, ; char* from + ptr @.TypeMapEntry.16071_to; char* to + }, ; 8914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16072_from, ; char* from + ptr @.TypeMapEntry.16071_to; char* to + }, ; 8915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16073_from, ; char* from + ptr @.TypeMapEntry.16074_to; char* to + }, ; 8916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16075_from, ; char* from + ptr @.TypeMapEntry.16076_to; char* to + }, ; 8917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16077_from, ; char* from + ptr @.TypeMapEntry.16074_to; char* to + }, ; 8918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16078_from, ; char* from + ptr @.TypeMapEntry.16079_to; char* to + }, ; 8919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16080_from, ; char* from + ptr @.TypeMapEntry.16079_to; char* to + }, ; 8920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16081_from, ; char* from + ptr @.TypeMapEntry.16082_to; char* to + }, ; 8921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16083_from, ; char* from + ptr @.TypeMapEntry.16084_to; char* to + }, ; 8922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16085_from, ; char* from + ptr @.TypeMapEntry.16084_to; char* to + }, ; 8923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16086_from, ; char* from + ptr @.TypeMapEntry.16087_to; char* to + }, ; 8924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16088_from, ; char* from + ptr @.TypeMapEntry.16089_to; char* to + }, ; 8925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16090_from, ; char* from + ptr @.TypeMapEntry.16091_to; char* to + }, ; 8926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16092_from, ; char* from + ptr @.TypeMapEntry.16093_to; char* to + }, ; 8927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16094_from, ; char* from + ptr @.TypeMapEntry.16095_to; char* to + }, ; 8928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16096_from, ; char* from + ptr @.TypeMapEntry.16097_to; char* to + }, ; 8929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16098_from, ; char* from + ptr @.TypeMapEntry.16097_to; char* to + }, ; 8930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16099_from, ; char* from + ptr @.TypeMapEntry.16100_to; char* to + }, ; 8931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16101_from, ; char* from + ptr @.TypeMapEntry.16100_to; char* to + }, ; 8932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16102_from, ; char* from + ptr @.TypeMapEntry.16103_to; char* to + }, ; 8933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16104_from, ; char* from + ptr @.TypeMapEntry.16103_to; char* to + }, ; 8934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16105_from, ; char* from + ptr @.TypeMapEntry.16106_to; char* to + }, ; 8935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16107_from, ; char* from + ptr @.TypeMapEntry.16106_to; char* to + }, ; 8936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16108_from, ; char* from + ptr @.TypeMapEntry.16109_to; char* to + }, ; 8937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16110_from, ; char* from + ptr @.TypeMapEntry.16109_to; char* to + }, ; 8938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16111_from, ; char* from + ptr @.TypeMapEntry.16112_to; char* to + }, ; 8939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16113_from, ; char* from + ptr @.TypeMapEntry.16114_to; char* to + }, ; 8940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16115_from, ; char* from + ptr @.TypeMapEntry.16116_to; char* to + }, ; 8941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16117_from, ; char* from + ptr @.TypeMapEntry.16118_to; char* to + }, ; 8942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16119_from, ; char* from + ptr @.TypeMapEntry.16120_to; char* to + }, ; 8943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16121_from, ; char* from + ptr @.TypeMapEntry.16122_to; char* to + }, ; 8944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16123_from, ; char* from + ptr @.TypeMapEntry.16124_to; char* to + }, ; 8945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16125_from, ; char* from + ptr @.TypeMapEntry.16126_to; char* to + }, ; 8946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16127_from, ; char* from + ptr @.TypeMapEntry.16128_to; char* to + }, ; 8947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16129_from, ; char* from + ptr @.TypeMapEntry.16130_to; char* to + }, ; 8948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16131_from, ; char* from + ptr @.TypeMapEntry.16132_to; char* to + }, ; 8949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16133_from, ; char* from + ptr @.TypeMapEntry.16134_to; char* to + }, ; 8950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16135_from, ; char* from + ptr @.TypeMapEntry.16136_to; char* to + }, ; 8951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16137_from, ; char* from + ptr @.TypeMapEntry.16138_to; char* to + }, ; 8952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16139_from, ; char* from + ptr @.TypeMapEntry.16140_to; char* to + }, ; 8953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16141_from, ; char* from + ptr @.TypeMapEntry.16140_to; char* to + }, ; 8954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16142_from, ; char* from + ptr @.TypeMapEntry.16143_to; char* to + }, ; 8955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16144_from, ; char* from + ptr @.TypeMapEntry.16145_to; char* to + }, ; 8956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16146_from, ; char* from + ptr @.TypeMapEntry.16145_to; char* to + }, ; 8957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16147_from, ; char* from + ptr @.TypeMapEntry.16148_to; char* to + }, ; 8958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16149_from, ; char* from + ptr @.TypeMapEntry.16150_to; char* to + }, ; 8959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16151_from, ; char* from + ptr @.TypeMapEntry.16150_to; char* to + }, ; 8960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16152_from, ; char* from + ptr @.TypeMapEntry.16148_to; char* to + }, ; 8961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16153_from, ; char* from + ptr @.TypeMapEntry.16154_to; char* to + }, ; 8962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16155_from, ; char* from + ptr @.TypeMapEntry.16156_to; char* to + }, ; 8963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16157_from, ; char* from + ptr @.TypeMapEntry.16154_to; char* to + }, ; 8964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16158_from, ; char* from + ptr @.TypeMapEntry.16159_to; char* to + }, ; 8965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16160_from, ; char* from + ptr @.TypeMapEntry.16159_to; char* to + }, ; 8966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16161_from, ; char* from + ptr @.TypeMapEntry.16162_to; char* to + }, ; 8967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16163_from, ; char* from + ptr @.TypeMapEntry.16164_to; char* to + }, ; 8968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16165_from, ; char* from + ptr @.TypeMapEntry.16166_to; char* to + }, ; 8969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16167_from, ; char* from + ptr @.TypeMapEntry.16168_to; char* to + }, ; 8970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16169_from, ; char* from + ptr @.TypeMapEntry.16170_to; char* to + }, ; 8971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16171_from, ; char* from + ptr @.TypeMapEntry.16172_to; char* to + }, ; 8972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16173_from, ; char* from + ptr @.TypeMapEntry.16172_to; char* to + }, ; 8973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16174_from, ; char* from + ptr @.TypeMapEntry.16175_to; char* to + }, ; 8974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16176_from, ; char* from + ptr @.TypeMapEntry.16177_to; char* to + }, ; 8975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16178_from, ; char* from + ptr @.TypeMapEntry.16179_to; char* to + }, ; 8976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16180_from, ; char* from + ptr @.TypeMapEntry.16179_to; char* to + }, ; 8977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16181_from, ; char* from + ptr @.TypeMapEntry.16182_to; char* to + }, ; 8978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16183_from, ; char* from + ptr @.TypeMapEntry.16182_to; char* to + }, ; 8979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16184_from, ; char* from + ptr @.TypeMapEntry.16185_to; char* to + }, ; 8980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16186_from, ; char* from + ptr @.TypeMapEntry.16187_to; char* to + }, ; 8981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16188_from, ; char* from + ptr @.TypeMapEntry.16189_to; char* to + }, ; 8982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16190_from, ; char* from + ptr @.TypeMapEntry.16191_to; char* to + }, ; 8983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16192_from, ; char* from + ptr @.TypeMapEntry.16191_to; char* to + }, ; 8984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16193_from, ; char* from + ptr @.TypeMapEntry.16194_to; char* to + }, ; 8985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16195_from, ; char* from + ptr @.TypeMapEntry.16194_to; char* to + }, ; 8986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16196_from, ; char* from + ptr @.TypeMapEntry.16197_to; char* to + }, ; 8987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16198_from, ; char* from + ptr @.TypeMapEntry.16199_to; char* to + }, ; 8988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16200_from, ; char* from + ptr @.TypeMapEntry.16197_to; char* to + }, ; 8989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16201_from, ; char* from + ptr @.TypeMapEntry.16202_to; char* to + }, ; 8990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16203_from, ; char* from + ptr @.TypeMapEntry.16204_to; char* to + }, ; 8991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16205_from, ; char* from + ptr @.TypeMapEntry.16206_to; char* to + }, ; 8992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16207_from, ; char* from + ptr @.TypeMapEntry.16206_to; char* to + }, ; 8993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16208_from, ; char* from + ptr @.TypeMapEntry.16194_to; char* to + }, ; 8994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16209_from, ; char* from + ptr @.TypeMapEntry.16194_to; char* to + }, ; 8995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16210_from, ; char* from + ptr @.TypeMapEntry.16211_to; char* to + }, ; 8996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16212_from, ; char* from + ptr @.TypeMapEntry.16211_to; char* to + }, ; 8997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16213_from, ; char* from + ptr @.TypeMapEntry.16214_to; char* to + }, ; 8998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16215_from, ; char* from + ptr @.TypeMapEntry.16214_to; char* to + }, ; 8999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16216_from, ; char* from + ptr @.TypeMapEntry.16217_to; char* to + }, ; 9000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16218_from, ; char* from + ptr @.TypeMapEntry.16219_to; char* to + }, ; 9001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16220_from, ; char* from + ptr @.TypeMapEntry.16219_to; char* to + }, ; 9002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16221_from, ; char* from + ptr @.TypeMapEntry.16222_to; char* to + }, ; 9003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16223_from, ; char* from + ptr @.TypeMapEntry.16224_to; char* to + }, ; 9004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16225_from, ; char* from + ptr @.TypeMapEntry.16226_to; char* to + }, ; 9005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16227_from, ; char* from + ptr @.TypeMapEntry.16228_to; char* to + }, ; 9006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16229_from, ; char* from + ptr @.TypeMapEntry.16230_to; char* to + }, ; 9007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16231_from, ; char* from + ptr @.TypeMapEntry.16232_to; char* to + }, ; 9008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16233_from, ; char* from + ptr @.TypeMapEntry.16232_to; char* to + }, ; 9009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16234_from, ; char* from + ptr @.TypeMapEntry.16230_to; char* to + }, ; 9010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16235_from, ; char* from + ptr @.TypeMapEntry.16236_to; char* to + }, ; 9011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16237_from, ; char* from + ptr @.TypeMapEntry.16236_to; char* to + }, ; 9012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16238_from, ; char* from + ptr @.TypeMapEntry.16239_to; char* to + }, ; 9013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16240_from, ; char* from + ptr @.TypeMapEntry.16241_to; char* to + }, ; 9014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16242_from, ; char* from + ptr @.TypeMapEntry.16243_to; char* to + }, ; 9015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16244_from, ; char* from + ptr @.TypeMapEntry.16245_to; char* to + }, ; 9016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16246_from, ; char* from + ptr @.TypeMapEntry.16247_to; char* to + }, ; 9017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16248_from, ; char* from + ptr @.TypeMapEntry.16247_to; char* to + }, ; 9018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16249_from, ; char* from + ptr @.TypeMapEntry.16250_to; char* to + }, ; 9019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16251_from, ; char* from + ptr @.TypeMapEntry.16252_to; char* to + }, ; 9020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16253_from, ; char* from + ptr @.TypeMapEntry.16254_to; char* to + }, ; 9021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16255_from, ; char* from + ptr @.TypeMapEntry.16256_to; char* to + }, ; 9022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16257_from, ; char* from + ptr @.TypeMapEntry.16258_to; char* to + }, ; 9023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16259_from, ; char* from + ptr @.TypeMapEntry.16260_to; char* to + }, ; 9024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16261_from, ; char* from + ptr @.TypeMapEntry.16262_to; char* to + }, ; 9025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16263_from, ; char* from + ptr @.TypeMapEntry.16264_to; char* to + }, ; 9026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16265_from, ; char* from + ptr @.TypeMapEntry.16266_to; char* to + }, ; 9027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16267_from, ; char* from + ptr @.TypeMapEntry.16268_to; char* to + }, ; 9028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16269_from, ; char* from + ptr @.TypeMapEntry.16268_to; char* to + }, ; 9029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16270_from, ; char* from + ptr @.TypeMapEntry.16271_to; char* to + }, ; 9030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16272_from, ; char* from + ptr @.TypeMapEntry.16273_to; char* to + }, ; 9031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16274_from, ; char* from + ptr @.TypeMapEntry.16275_to; char* to + }, ; 9032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16276_from, ; char* from + ptr @.TypeMapEntry.16277_to; char* to + }, ; 9033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16278_from, ; char* from + ptr @.TypeMapEntry.16279_to; char* to + }, ; 9034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16280_from, ; char* from + ptr @.TypeMapEntry.16281_to; char* to + }, ; 9035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16282_from, ; char* from + ptr @.TypeMapEntry.16283_to; char* to + }, ; 9036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16284_from, ; char* from + ptr @.TypeMapEntry.16285_to; char* to + }, ; 9037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16286_from, ; char* from + ptr @.TypeMapEntry.16285_to; char* to + }, ; 9038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16287_from, ; char* from + ptr @.TypeMapEntry.16288_to; char* to + }, ; 9039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16289_from, ; char* from + ptr @.TypeMapEntry.16290_to; char* to + }, ; 9040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16291_from, ; char* from + ptr @.TypeMapEntry.16290_to; char* to + }, ; 9041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16292_from, ; char* from + ptr @.TypeMapEntry.16293_to; char* to + }, ; 9042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16294_from, ; char* from + ptr @.TypeMapEntry.16295_to; char* to + }, ; 9043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16296_from, ; char* from + ptr @.TypeMapEntry.16297_to; char* to + }, ; 9044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16298_from, ; char* from + ptr @.TypeMapEntry.16299_to; char* to + }, ; 9045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16300_from, ; char* from + ptr @.TypeMapEntry.16301_to; char* to + }, ; 9046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16302_from, ; char* from + ptr @.TypeMapEntry.16301_to; char* to + }, ; 9047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16303_from, ; char* from + ptr @.TypeMapEntry.16304_to; char* to + }, ; 9048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16305_from, ; char* from + ptr @.TypeMapEntry.16304_to; char* to + }, ; 9049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16306_from, ; char* from + ptr @.TypeMapEntry.16307_to; char* to + }, ; 9050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16308_from, ; char* from + ptr @.TypeMapEntry.16307_to; char* to + }, ; 9051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16309_from, ; char* from + ptr @.TypeMapEntry.16310_to; char* to + }, ; 9052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16311_from, ; char* from + ptr @.TypeMapEntry.16312_to; char* to + }, ; 9053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16313_from, ; char* from + ptr @.TypeMapEntry.16314_to; char* to + }, ; 9054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16315_from, ; char* from + ptr @.TypeMapEntry.16314_to; char* to + }, ; 9055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16316_from, ; char* from + ptr @.TypeMapEntry.16317_to; char* to + }, ; 9056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16318_from, ; char* from + ptr @.TypeMapEntry.16319_to; char* to + }, ; 9057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16320_from, ; char* from + ptr @.TypeMapEntry.16321_to; char* to + }, ; 9058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16322_from, ; char* from + ptr @.TypeMapEntry.16323_to; char* to + }, ; 9059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16324_from, ; char* from + ptr @.TypeMapEntry.16325_to; char* to + }, ; 9060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16326_from, ; char* from + ptr @.TypeMapEntry.16325_to; char* to + }, ; 9061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16327_from, ; char* from + ptr @.TypeMapEntry.16323_to; char* to + }, ; 9062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16328_from, ; char* from + ptr @.TypeMapEntry.16329_to; char* to + }, ; 9063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16330_from, ; char* from + ptr @.TypeMapEntry.16329_to; char* to + }, ; 9064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16331_from, ; char* from + ptr @.TypeMapEntry.16332_to; char* to + }, ; 9065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16333_from, ; char* from + ptr @.TypeMapEntry.16332_to; char* to + }, ; 9066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16334_from, ; char* from + ptr @.TypeMapEntry.16323_to; char* to + }, ; 9067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16335_from, ; char* from + ptr @.TypeMapEntry.16325_to; char* to + }, ; 9068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16336_from, ; char* from + ptr @.TypeMapEntry.16325_to; char* to + }, ; 9069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16337_from, ; char* from + ptr @.TypeMapEntry.16323_to; char* to + }, ; 9070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16338_from, ; char* from + ptr @.TypeMapEntry.16339_to; char* to + }, ; 9071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16340_from, ; char* from + ptr @.TypeMapEntry.16341_to; char* to + }, ; 9072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16342_from, ; char* from + ptr @.TypeMapEntry.16343_to; char* to + }, ; 9073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16344_from, ; char* from + ptr @.TypeMapEntry.16345_to; char* to + }, ; 9074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16346_from, ; char* from + ptr @.TypeMapEntry.16347_to; char* to + }, ; 9075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16348_from, ; char* from + ptr @.TypeMapEntry.16349_to; char* to + }, ; 9076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16350_from, ; char* from + ptr @.TypeMapEntry.16351_to; char* to + }, ; 9077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16352_from, ; char* from + ptr @.TypeMapEntry.16353_to; char* to + }, ; 9078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16354_from, ; char* from + ptr @.TypeMapEntry.16355_to; char* to + }, ; 9079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16356_from, ; char* from + ptr @.TypeMapEntry.16357_to; char* to + }, ; 9080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16358_from, ; char* from + ptr @.TypeMapEntry.16359_to; char* to + }, ; 9081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16360_from, ; char* from + ptr @.TypeMapEntry.16359_to; char* to + }, ; 9082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16361_from, ; char* from + ptr @.TypeMapEntry.16362_to; char* to + }, ; 9083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16363_from, ; char* from + ptr @.TypeMapEntry.16364_to; char* to + }, ; 9084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16365_from, ; char* from + ptr @.TypeMapEntry.16366_to; char* to + }, ; 9085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16367_from, ; char* from + ptr @.TypeMapEntry.16368_to; char* to + }, ; 9086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16369_from, ; char* from + ptr @.TypeMapEntry.16370_to; char* to + }, ; 9087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16371_from, ; char* from + ptr @.TypeMapEntry.16372_to; char* to + }, ; 9088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16373_from, ; char* from + ptr @.TypeMapEntry.16374_to; char* to + }, ; 9089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16375_from, ; char* from + ptr @.TypeMapEntry.16374_to; char* to + }, ; 9090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16376_from, ; char* from + ptr @.TypeMapEntry.16377_to; char* to + }, ; 9091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16378_from, ; char* from + ptr @.TypeMapEntry.16379_to; char* to + }, ; 9092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16380_from, ; char* from + ptr @.TypeMapEntry.16377_to; char* to + }, ; 9093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16381_from, ; char* from + ptr @.TypeMapEntry.16382_to; char* to + }, ; 9094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16383_from, ; char* from + ptr @.TypeMapEntry.16382_to; char* to + }, ; 9095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16384_from, ; char* from + ptr @.TypeMapEntry.16385_to; char* to + }, ; 9096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16386_from, ; char* from + ptr @.TypeMapEntry.16387_to; char* to + }, ; 9097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16388_from, ; char* from + ptr @.TypeMapEntry.16389_to; char* to + }, ; 9098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16390_from, ; char* from + ptr @.TypeMapEntry.16391_to; char* to + }, ; 9099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16392_from, ; char* from + ptr @.TypeMapEntry.16393_to; char* to + }, ; 9100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16394_from, ; char* from + ptr @.TypeMapEntry.16395_to; char* to + }, ; 9101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16396_from, ; char* from + ptr @.TypeMapEntry.16395_to; char* to + }, ; 9102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16397_from, ; char* from + ptr @.TypeMapEntry.16398_to; char* to + }, ; 9103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16399_from, ; char* from + ptr @.TypeMapEntry.16400_to; char* to + }, ; 9104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16401_from, ; char* from + ptr @.TypeMapEntry.16402_to; char* to + }, ; 9105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16403_from, ; char* from + ptr @.TypeMapEntry.16402_to; char* to + }, ; 9106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16404_from, ; char* from + ptr @.TypeMapEntry.16405_to; char* to + }, ; 9107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16406_from, ; char* from + ptr @.TypeMapEntry.16407_to; char* to + }, ; 9108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16408_from, ; char* from + ptr @.TypeMapEntry.16407_to; char* to + }, ; 9109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16409_from, ; char* from + ptr @.TypeMapEntry.16410_to; char* to + }, ; 9110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16411_from, ; char* from + ptr @.TypeMapEntry.16412_to; char* to + }, ; 9111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16413_from, ; char* from + ptr @.TypeMapEntry.16414_to; char* to + }, ; 9112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16415_from, ; char* from + ptr @.TypeMapEntry.16412_to; char* to + }, ; 9113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16416_from, ; char* from + ptr @.TypeMapEntry.16417_to; char* to + }, ; 9114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16418_from, ; char* from + ptr @.TypeMapEntry.16419_to; char* to + }, ; 9115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16420_from, ; char* from + ptr @.TypeMapEntry.16417_to; char* to + }, ; 9116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16421_from, ; char* from + ptr @.TypeMapEntry.16422_to; char* to + }, ; 9117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16423_from, ; char* from + ptr @.TypeMapEntry.16422_to; char* to + }, ; 9118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16424_from, ; char* from + ptr @.TypeMapEntry.16425_to; char* to + }, ; 9119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16426_from, ; char* from + ptr @.TypeMapEntry.16425_to; char* to + }, ; 9120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16427_from, ; char* from + ptr @.TypeMapEntry.16428_to; char* to + }, ; 9121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16429_from, ; char* from + ptr @.TypeMapEntry.16430_to; char* to + }, ; 9122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16431_from, ; char* from + ptr @.TypeMapEntry.16432_to; char* to + }, ; 9123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16433_from, ; char* from + ptr @.TypeMapEntry.16434_to; char* to + }, ; 9124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16435_from, ; char* from + ptr @.TypeMapEntry.16434_to; char* to + }, ; 9125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16436_from, ; char* from + ptr @.TypeMapEntry.16437_to; char* to + }, ; 9126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16438_from, ; char* from + ptr @.TypeMapEntry.16437_to; char* to + }, ; 9127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16439_from, ; char* from + ptr @.TypeMapEntry.16440_to; char* to + }, ; 9128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16441_from, ; char* from + ptr @.TypeMapEntry.16442_to; char* to + }, ; 9129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16443_from, ; char* from + ptr @.TypeMapEntry.16444_to; char* to + }, ; 9130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16445_from, ; char* from + ptr @.TypeMapEntry.16444_to; char* to + }, ; 9131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16446_from, ; char* from + ptr @.TypeMapEntry.16447_to; char* to + }, ; 9132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16448_from, ; char* from + ptr @.TypeMapEntry.16447_to; char* to + }, ; 9133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16449_from, ; char* from + ptr @.TypeMapEntry.16450_to; char* to + }, ; 9134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16451_from, ; char* from + ptr @.TypeMapEntry.16452_to; char* to + }, ; 9135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16453_from, ; char* from + ptr @.TypeMapEntry.16454_to; char* to + }, ; 9136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16455_from, ; char* from + ptr @.TypeMapEntry.16454_to; char* to + }, ; 9137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16456_from, ; char* from + ptr @.TypeMapEntry.16457_to; char* to + }, ; 9138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16458_from, ; char* from + ptr @.TypeMapEntry.16459_to; char* to + }, ; 9139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16460_from, ; char* from + ptr @.TypeMapEntry.16461_to; char* to + }, ; 9140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16462_from, ; char* from + ptr @.TypeMapEntry.16463_to; char* to + }, ; 9141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16464_from, ; char* from + ptr @.TypeMapEntry.16465_to; char* to + }, ; 9142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16466_from, ; char* from + ptr @.TypeMapEntry.16465_to; char* to + }, ; 9143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16467_from, ; char* from + ptr @.TypeMapEntry.16468_to; char* to + }, ; 9144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16469_from, ; char* from + ptr @.TypeMapEntry.16470_to; char* to + }, ; 9145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16471_from, ; char* from + ptr @.TypeMapEntry.16468_to; char* to + }, ; 9146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16472_from, ; char* from + ptr @.TypeMapEntry.16473_to; char* to + }, ; 9147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16474_from, ; char* from + ptr @.TypeMapEntry.16473_to; char* to + }, ; 9148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16475_from, ; char* from + ptr @.TypeMapEntry.16476_to; char* to + }, ; 9149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16477_from, ; char* from + ptr @.TypeMapEntry.16478_to; char* to + }, ; 9150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16479_from, ; char* from + ptr @.TypeMapEntry.16480_to; char* to + }, ; 9151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16481_from, ; char* from + ptr @.TypeMapEntry.16478_to; char* to + }, ; 9152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16482_from, ; char* from + ptr @.TypeMapEntry.16483_to; char* to + }, ; 9153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16484_from, ; char* from + ptr @.TypeMapEntry.16485_to; char* to + }, ; 9154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16486_from, ; char* from + ptr @.TypeMapEntry.16487_to; char* to + }, ; 9155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16488_from, ; char* from + ptr @.TypeMapEntry.16487_to; char* to + }, ; 9156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16489_from, ; char* from + ptr @.TypeMapEntry.16490_to; char* to + }, ; 9157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16491_from, ; char* from + ptr @.TypeMapEntry.16490_to; char* to + }, ; 9158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16492_from, ; char* from + ptr @.TypeMapEntry.16493_to; char* to + }, ; 9159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16494_from, ; char* from + ptr @.TypeMapEntry.16493_to; char* to + }, ; 9160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16495_from, ; char* from + ptr @.TypeMapEntry.16496_to; char* to + }, ; 9161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16497_from, ; char* from + ptr @.TypeMapEntry.16496_to; char* to + }, ; 9162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16498_from, ; char* from + ptr @.TypeMapEntry.16499_to; char* to + }, ; 9163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16500_from, ; char* from + ptr @.TypeMapEntry.16501_to; char* to + }, ; 9164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16502_from, ; char* from + ptr @.TypeMapEntry.16503_to; char* to + }, ; 9165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16504_from, ; char* from + ptr @.TypeMapEntry.16505_to; char* to + }, ; 9166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16506_from, ; char* from + ptr @.TypeMapEntry.16507_to; char* to + }, ; 9167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16508_from, ; char* from + ptr @.TypeMapEntry.16507_to; char* to + }, ; 9168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16509_from, ; char* from + ptr @.TypeMapEntry.16510_to; char* to + }, ; 9169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16511_from, ; char* from + ptr @.TypeMapEntry.16510_to; char* to + }, ; 9170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16512_from, ; char* from + ptr @.TypeMapEntry.16513_to; char* to + }, ; 9171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16514_from, ; char* from + ptr @.TypeMapEntry.16515_to; char* to + }, ; 9172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16516_from, ; char* from + ptr @.TypeMapEntry.16515_to; char* to + }, ; 9173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16517_from, ; char* from + ptr @.TypeMapEntry.16515_to; char* to + }, ; 9174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16518_from, ; char* from + ptr @.TypeMapEntry.16515_to; char* to + }, ; 9175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16519_from, ; char* from + ptr @.TypeMapEntry.16520_to; char* to + }, ; 9176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16521_from, ; char* from + ptr @.TypeMapEntry.16520_to; char* to + }, ; 9177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16522_from, ; char* from + ptr @.TypeMapEntry.16523_to; char* to + }, ; 9178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16524_from, ; char* from + ptr @.TypeMapEntry.16523_to; char* to + }, ; 9179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16525_from, ; char* from + ptr @.TypeMapEntry.16526_to; char* to + }, ; 9180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16527_from, ; char* from + ptr @.TypeMapEntry.16526_to; char* to + }, ; 9181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16528_from, ; char* from + ptr @.TypeMapEntry.16529_to; char* to + }, ; 9182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16530_from, ; char* from + ptr @.TypeMapEntry.16529_to; char* to + }, ; 9183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16531_from, ; char* from + ptr @.TypeMapEntry.16532_to; char* to + }, ; 9184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16533_from, ; char* from + ptr @.TypeMapEntry.16534_to; char* to + }, ; 9185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16535_from, ; char* from + ptr @.TypeMapEntry.16536_to; char* to + }, ; 9186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16537_from, ; char* from + ptr @.TypeMapEntry.16538_to; char* to + }, ; 9187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16539_from, ; char* from + ptr @.TypeMapEntry.16540_to; char* to + }, ; 9188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16541_from, ; char* from + ptr @.TypeMapEntry.16542_to; char* to + }, ; 9189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16543_from, ; char* from + ptr @.TypeMapEntry.16542_to; char* to + }, ; 9190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16544_from, ; char* from + ptr @.TypeMapEntry.16545_to; char* to + }, ; 9191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16546_from, ; char* from + ptr @.TypeMapEntry.16547_to; char* to + }, ; 9192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16548_from, ; char* from + ptr @.TypeMapEntry.16545_to; char* to + }, ; 9193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16549_from, ; char* from + ptr @.TypeMapEntry.16550_to; char* to + }, ; 9194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16551_from, ; char* from + ptr @.TypeMapEntry.16552_to; char* to + }, ; 9195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16553_from, ; char* from + ptr @.TypeMapEntry.16554_to; char* to + }, ; 9196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16555_from, ; char* from + ptr @.TypeMapEntry.16556_to; char* to + }, ; 9197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16557_from, ; char* from + ptr @.TypeMapEntry.16554_to; char* to + }, ; 9198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16558_from, ; char* from + ptr @.TypeMapEntry.16559_to; char* to + }, ; 9199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16560_from, ; char* from + ptr @.TypeMapEntry.16561_to; char* to + }, ; 9200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16562_from, ; char* from + ptr @.TypeMapEntry.16561_to; char* to + }, ; 9201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16563_from, ; char* from + ptr @.TypeMapEntry.16564_to; char* to + }, ; 9202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16565_from, ; char* from + ptr @.TypeMapEntry.16566_to; char* to + }, ; 9203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16567_from, ; char* from + ptr @.TypeMapEntry.16566_to; char* to + }, ; 9204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16568_from, ; char* from + ptr @.TypeMapEntry.16569_to; char* to + }, ; 9205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16570_from, ; char* from + ptr @.TypeMapEntry.16571_to; char* to + }, ; 9206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16572_from, ; char* from + ptr @.TypeMapEntry.16569_to; char* to + }, ; 9207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16573_from, ; char* from + ptr @.TypeMapEntry.16574_to; char* to + }, ; 9208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16575_from, ; char* from + ptr @.TypeMapEntry.16576_to; char* to + }, ; 9209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16577_from, ; char* from + ptr @.TypeMapEntry.16578_to; char* to + }, ; 9210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16579_from, ; char* from + ptr @.TypeMapEntry.16580_to; char* to + }, ; 9211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16581_from, ; char* from + ptr @.TypeMapEntry.16580_to; char* to + }, ; 9212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16582_from, ; char* from + ptr @.TypeMapEntry.16583_to; char* to + }, ; 9213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16584_from, ; char* from + ptr @.TypeMapEntry.16585_to; char* to + }, ; 9214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16586_from, ; char* from + ptr @.TypeMapEntry.16587_to; char* to + }, ; 9215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16588_from, ; char* from + ptr @.TypeMapEntry.16589_to; char* to + }, ; 9216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16590_from, ; char* from + ptr @.TypeMapEntry.16587_to; char* to + }, ; 9217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16591_from, ; char* from + ptr @.TypeMapEntry.16592_to; char* to + }, ; 9218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16593_from, ; char* from + ptr @.TypeMapEntry.16594_to; char* to + }, ; 9219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16595_from, ; char* from + ptr @.TypeMapEntry.16596_to; char* to + }, ; 9220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16597_from, ; char* from + ptr @.TypeMapEntry.16598_to; char* to + }, ; 9221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16599_from, ; char* from + ptr @.TypeMapEntry.16598_to; char* to + }, ; 9222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16600_from, ; char* from + ptr @.TypeMapEntry.16601_to; char* to + }, ; 9223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16602_from, ; char* from + ptr @.TypeMapEntry.16603_to; char* to + }, ; 9224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16604_from, ; char* from + ptr @.TypeMapEntry.16601_to; char* to + }, ; 9225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16605_from, ; char* from + ptr @.TypeMapEntry.16606_to; char* to + }, ; 9226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16607_from, ; char* from + ptr @.TypeMapEntry.16608_to; char* to + }, ; 9227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16609_from, ; char* from + ptr @.TypeMapEntry.16606_to; char* to + }, ; 9228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16610_from, ; char* from + ptr @.TypeMapEntry.16611_to; char* to + }, ; 9229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16612_from, ; char* from + ptr @.TypeMapEntry.16613_to; char* to + }, ; 9230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16614_from, ; char* from + ptr @.TypeMapEntry.16615_to; char* to + }, ; 9231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16616_from, ; char* from + ptr @.TypeMapEntry.16615_to; char* to + }, ; 9232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16617_from, ; char* from + ptr @.TypeMapEntry.16618_to; char* to + }, ; 9233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16619_from, ; char* from + ptr @.TypeMapEntry.16620_to; char* to + }, ; 9234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16621_from, ; char* from + ptr @.TypeMapEntry.16622_to; char* to + }, ; 9235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16623_from, ; char* from + ptr @.TypeMapEntry.16620_to; char* to + }, ; 9236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16624_from, ; char* from + ptr @.TypeMapEntry.16625_to; char* to + }, ; 9237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16626_from, ; char* from + ptr @.TypeMapEntry.16627_to; char* to + }, ; 9238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16628_from, ; char* from + ptr @.TypeMapEntry.16625_to; char* to + }, ; 9239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16629_from, ; char* from + ptr @.TypeMapEntry.16630_to; char* to + }, ; 9240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16631_from, ; char* from + ptr @.TypeMapEntry.16632_to; char* to + }, ; 9241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16633_from, ; char* from + ptr @.TypeMapEntry.16634_to; char* to + }, ; 9242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16635_from, ; char* from + ptr @.TypeMapEntry.16636_to; char* to + }, ; 9243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16637_from, ; char* from + ptr @.TypeMapEntry.16638_to; char* to + }, ; 9244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16639_from, ; char* from + ptr @.TypeMapEntry.16640_to; char* to + }, ; 9245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16641_from, ; char* from + ptr @.TypeMapEntry.16642_to; char* to + }, ; 9246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16643_from, ; char* from + ptr @.TypeMapEntry.16642_to; char* to + }, ; 9247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16644_from, ; char* from + ptr @.TypeMapEntry.16645_to; char* to + }, ; 9248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16646_from, ; char* from + ptr @.TypeMapEntry.16645_to; char* to + }, ; 9249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16647_from, ; char* from + ptr @.TypeMapEntry.16648_to; char* to + }, ; 9250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16649_from, ; char* from + ptr @.TypeMapEntry.16650_to; char* to + }, ; 9251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16651_from, ; char* from + ptr @.TypeMapEntry.16652_to; char* to + }, ; 9252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16653_from, ; char* from + ptr @.TypeMapEntry.16654_to; char* to + }, ; 9253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16655_from, ; char* from + ptr @.TypeMapEntry.16656_to; char* to + }, ; 9254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16657_from, ; char* from + ptr @.TypeMapEntry.16658_to; char* to + }, ; 9255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16659_from, ; char* from + ptr @.TypeMapEntry.16660_to; char* to + }, ; 9256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16661_from, ; char* from + ptr @.TypeMapEntry.16662_to; char* to + }, ; 9257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16663_from, ; char* from + ptr @.TypeMapEntry.16664_to; char* to + }, ; 9258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16665_from, ; char* from + ptr @.TypeMapEntry.16664_to; char* to + }, ; 9259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16666_from, ; char* from + ptr @.TypeMapEntry.16667_to; char* to + }, ; 9260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16668_from, ; char* from + ptr @.TypeMapEntry.16669_to; char* to + }, ; 9261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16670_from, ; char* from + ptr @.TypeMapEntry.16671_to; char* to + }, ; 9262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16672_from, ; char* from + ptr @.TypeMapEntry.16673_to; char* to + }, ; 9263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16674_from, ; char* from + ptr @.TypeMapEntry.16675_to; char* to + }, ; 9264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16676_from, ; char* from + ptr @.TypeMapEntry.16675_to; char* to + }, ; 9265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16677_from, ; char* from + ptr @.TypeMapEntry.16678_to; char* to + }, ; 9266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16679_from, ; char* from + ptr @.TypeMapEntry.16678_to; char* to + }, ; 9267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16680_from, ; char* from + ptr @.TypeMapEntry.16681_to; char* to + }, ; 9268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16682_from, ; char* from + ptr @.TypeMapEntry.16683_to; char* to + }, ; 9269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16684_from, ; char* from + ptr @.TypeMapEntry.16685_to; char* to + }, ; 9270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16686_from, ; char* from + ptr @.TypeMapEntry.16687_to; char* to + }, ; 9271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16688_from, ; char* from + ptr @.TypeMapEntry.16689_to; char* to + }, ; 9272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16690_from, ; char* from + ptr @.TypeMapEntry.16691_to; char* to + }, ; 9273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16692_from, ; char* from + ptr @.TypeMapEntry.16693_to; char* to + }, ; 9274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16694_from, ; char* from + ptr @.TypeMapEntry.16695_to; char* to + }, ; 9275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16696_from, ; char* from + ptr @.TypeMapEntry.16695_to; char* to + }, ; 9276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16697_from, ; char* from + ptr @.TypeMapEntry.16698_to; char* to + }, ; 9277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16699_from, ; char* from + ptr @.TypeMapEntry.16700_to; char* to + }, ; 9278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16701_from, ; char* from + ptr @.TypeMapEntry.16702_to; char* to + }, ; 9279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16703_from, ; char* from + ptr @.TypeMapEntry.16704_to; char* to + }, ; 9280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16705_from, ; char* from + ptr @.TypeMapEntry.16706_to; char* to + }, ; 9281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16707_from, ; char* from + ptr @.TypeMapEntry.16708_to; char* to + }, ; 9282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16709_from, ; char* from + ptr @.TypeMapEntry.16710_to; char* to + }, ; 9283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16711_from, ; char* from + ptr @.TypeMapEntry.16712_to; char* to + }, ; 9284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16713_from, ; char* from + ptr @.TypeMapEntry.16714_to; char* to + }, ; 9285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16715_from, ; char* from + ptr @.TypeMapEntry.16716_to; char* to + }, ; 9286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16717_from, ; char* from + ptr @.TypeMapEntry.16718_to; char* to + }, ; 9287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16719_from, ; char* from + ptr @.TypeMapEntry.16720_to; char* to + }, ; 9288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16721_from, ; char* from + ptr @.TypeMapEntry.16722_to; char* to + }, ; 9289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16723_from, ; char* from + ptr @.TypeMapEntry.16724_to; char* to + }, ; 9290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16725_from, ; char* from + ptr @.TypeMapEntry.16726_to; char* to + }, ; 9291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16727_from, ; char* from + ptr @.TypeMapEntry.16726_to; char* to + }, ; 9292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16728_from, ; char* from + ptr @.TypeMapEntry.16729_to; char* to + }, ; 9293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16730_from, ; char* from + ptr @.TypeMapEntry.16731_to; char* to + }, ; 9294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16732_from, ; char* from + ptr @.TypeMapEntry.16733_to; char* to + }, ; 9295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16734_from, ; char* from + ptr @.TypeMapEntry.16735_to; char* to + }, ; 9296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16736_from, ; char* from + ptr @.TypeMapEntry.16737_to; char* to + }, ; 9297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16738_from, ; char* from + ptr @.TypeMapEntry.16739_to; char* to + }, ; 9298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16740_from, ; char* from + ptr @.TypeMapEntry.16741_to; char* to + }, ; 9299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16742_from, ; char* from + ptr @.TypeMapEntry.16743_to; char* to + }, ; 9300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16744_from, ; char* from + ptr @.TypeMapEntry.16745_to; char* to + }, ; 9301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16746_from, ; char* from + ptr @.TypeMapEntry.16747_to; char* to + }, ; 9302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16748_from, ; char* from + ptr @.TypeMapEntry.16749_to; char* to + }, ; 9303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16750_from, ; char* from + ptr @.TypeMapEntry.16751_to; char* to + }, ; 9304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16752_from, ; char* from + ptr @.TypeMapEntry.16753_to; char* to + }, ; 9305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16754_from, ; char* from + ptr @.TypeMapEntry.16755_to; char* to + }, ; 9306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16756_from, ; char* from + ptr @.TypeMapEntry.16757_to; char* to + }, ; 9307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16758_from, ; char* from + ptr @.TypeMapEntry.16759_to; char* to + }, ; 9308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16760_from, ; char* from + ptr @.TypeMapEntry.16761_to; char* to + }, ; 9309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16762_from, ; char* from + ptr @.TypeMapEntry.16763_to; char* to + }, ; 9310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16764_from, ; char* from + ptr @.TypeMapEntry.16765_to; char* to + }, ; 9311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16766_from, ; char* from + ptr @.TypeMapEntry.16767_to; char* to + }, ; 9312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16768_from, ; char* from + ptr @.TypeMapEntry.16769_to; char* to + }, ; 9313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16770_from, ; char* from + ptr @.TypeMapEntry.16771_to; char* to + }, ; 9314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16772_from, ; char* from + ptr @.TypeMapEntry.16773_to; char* to + }, ; 9315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16774_from, ; char* from + ptr @.TypeMapEntry.16775_to; char* to + }, ; 9316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16776_from, ; char* from + ptr @.TypeMapEntry.16777_to; char* to + }, ; 9317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16778_from, ; char* from + ptr @.TypeMapEntry.16779_to; char* to + }, ; 9318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16780_from, ; char* from + ptr @.TypeMapEntry.16781_to; char* to + }, ; 9319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16782_from, ; char* from + ptr @.TypeMapEntry.16781_to; char* to + }, ; 9320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16783_from, ; char* from + ptr @.TypeMapEntry.16784_to; char* to + }, ; 9321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16785_from, ; char* from + ptr @.TypeMapEntry.16786_to; char* to + }, ; 9322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16787_from, ; char* from + ptr @.TypeMapEntry.16788_to; char* to + }, ; 9323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16789_from, ; char* from + ptr @.TypeMapEntry.16788_to; char* to + }, ; 9324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16790_from, ; char* from + ptr @.TypeMapEntry.16791_to; char* to + }, ; 9325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16792_from, ; char* from + ptr @.TypeMapEntry.16793_to; char* to + }, ; 9326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16794_from, ; char* from + ptr @.TypeMapEntry.16795_to; char* to + }, ; 9327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16796_from, ; char* from + ptr @.TypeMapEntry.16795_to; char* to + }, ; 9328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16797_from, ; char* from + ptr @.TypeMapEntry.16788_to; char* to + }, ; 9329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16798_from, ; char* from + ptr @.TypeMapEntry.16788_to; char* to + }, ; 9330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16799_from, ; char* from + ptr @.TypeMapEntry.16800_to; char* to + }, ; 9331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16801_from, ; char* from + ptr @.TypeMapEntry.16802_to; char* to + }, ; 9332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16803_from, ; char* from + ptr @.TypeMapEntry.16800_to; char* to + }, ; 9333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16804_from, ; char* from + ptr @.TypeMapEntry.16805_to; char* to + }, ; 9334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16806_from, ; char* from + ptr @.TypeMapEntry.16807_to; char* to + }, ; 9335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16808_from, ; char* from + ptr @.TypeMapEntry.16809_to; char* to + }, ; 9336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16810_from, ; char* from + ptr @.TypeMapEntry.16809_to; char* to + }, ; 9337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16811_from, ; char* from + ptr @.TypeMapEntry.16812_to; char* to + }, ; 9338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16813_from, ; char* from + ptr @.TypeMapEntry.16814_to; char* to + }, ; 9339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16815_from, ; char* from + ptr @.TypeMapEntry.16816_to; char* to + }, ; 9340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16817_from, ; char* from + ptr @.TypeMapEntry.16818_to; char* to + }, ; 9341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16819_from, ; char* from + ptr @.TypeMapEntry.16818_to; char* to + }, ; 9342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16820_from, ; char* from + ptr @.TypeMapEntry.16821_to; char* to + }, ; 9343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16822_from, ; char* from + ptr @.TypeMapEntry.16823_to; char* to + }, ; 9344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16824_from, ; char* from + ptr @.TypeMapEntry.16825_to; char* to + }, ; 9345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16826_from, ; char* from + ptr @.TypeMapEntry.16827_to; char* to + }, ; 9346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16828_from, ; char* from + ptr @.TypeMapEntry.16829_to; char* to + }, ; 9347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16830_from, ; char* from + ptr @.TypeMapEntry.16831_to; char* to + }, ; 9348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16832_from, ; char* from + ptr @.TypeMapEntry.16833_to; char* to + }, ; 9349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16834_from, ; char* from + ptr @.TypeMapEntry.16835_to; char* to + }, ; 9350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16836_from, ; char* from + ptr @.TypeMapEntry.16837_to; char* to + }, ; 9351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16838_from, ; char* from + ptr @.TypeMapEntry.16839_to; char* to + }, ; 9352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16840_from, ; char* from + ptr @.TypeMapEntry.16841_to; char* to + }, ; 9353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16842_from, ; char* from + ptr @.TypeMapEntry.16843_to; char* to + }, ; 9354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16844_from, ; char* from + ptr @.TypeMapEntry.16845_to; char* to + }, ; 9355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16846_from, ; char* from + ptr @.TypeMapEntry.16845_to; char* to + }, ; 9356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16847_from, ; char* from + ptr @.TypeMapEntry.16848_to; char* to + }, ; 9357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16849_from, ; char* from + ptr @.TypeMapEntry.16848_to; char* to + }, ; 9358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16850_from, ; char* from + ptr @.TypeMapEntry.16851_to; char* to + }, ; 9359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16852_from, ; char* from + ptr @.TypeMapEntry.16851_to; char* to + }, ; 9360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16853_from, ; char* from + ptr @.TypeMapEntry.16854_to; char* to + }, ; 9361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16855_from, ; char* from + ptr @.TypeMapEntry.16856_to; char* to + }, ; 9362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16857_from, ; char* from + ptr @.TypeMapEntry.16856_to; char* to + }, ; 9363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16858_from, ; char* from + ptr @.TypeMapEntry.16859_to; char* to + }, ; 9364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16860_from, ; char* from + ptr @.TypeMapEntry.16861_to; char* to + }, ; 9365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16862_from, ; char* from + ptr @.TypeMapEntry.16863_to; char* to + }, ; 9366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16864_from, ; char* from + ptr @.TypeMapEntry.16865_to; char* to + }, ; 9367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16866_from, ; char* from + ptr @.TypeMapEntry.16865_to; char* to + }, ; 9368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16867_from, ; char* from + ptr @.TypeMapEntry.16868_to; char* to + }, ; 9369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16869_from, ; char* from + ptr @.TypeMapEntry.16868_to; char* to + }, ; 9370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16870_from, ; char* from + ptr @.TypeMapEntry.16871_to; char* to + }, ; 9371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16872_from, ; char* from + ptr @.TypeMapEntry.16873_to; char* to + }, ; 9372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16874_from, ; char* from + ptr @.TypeMapEntry.16875_to; char* to + }, ; 9373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16876_from, ; char* from + ptr @.TypeMapEntry.16877_to; char* to + }, ; 9374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16878_from, ; char* from + ptr @.TypeMapEntry.16879_to; char* to + }, ; 9375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16880_from, ; char* from + ptr @.TypeMapEntry.16877_to; char* to + }, ; 9376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16881_from, ; char* from + ptr @.TypeMapEntry.16882_to; char* to + }, ; 9377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16883_from, ; char* from + ptr @.TypeMapEntry.16884_to; char* to + }, ; 9378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16885_from, ; char* from + ptr @.TypeMapEntry.16886_to; char* to + }, ; 9379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16887_from, ; char* from + ptr @.TypeMapEntry.16888_to; char* to + }, ; 9380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16889_from, ; char* from + ptr @.TypeMapEntry.16890_to; char* to + }, ; 9381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16891_from, ; char* from + ptr @.TypeMapEntry.16892_to; char* to + }, ; 9382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16893_from, ; char* from + ptr @.TypeMapEntry.16894_to; char* to + }, ; 9383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16895_from, ; char* from + ptr @.TypeMapEntry.16896_to; char* to + }, ; 9384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16897_from, ; char* from + ptr @.TypeMapEntry.16898_to; char* to + }, ; 9385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16899_from, ; char* from + ptr @.TypeMapEntry.16900_to; char* to + }, ; 9386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16901_from, ; char* from + ptr @.TypeMapEntry.16902_to; char* to + }, ; 9387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16903_from, ; char* from + ptr @.TypeMapEntry.16904_to; char* to + }, ; 9388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16905_from, ; char* from + ptr @.TypeMapEntry.16906_to; char* to + }, ; 9389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16907_from, ; char* from + ptr @.TypeMapEntry.16906_to; char* to + }, ; 9390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16908_from, ; char* from + ptr @.TypeMapEntry.16909_to; char* to + }, ; 9391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16910_from, ; char* from + ptr @.TypeMapEntry.16909_to; char* to + }, ; 9392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16911_from, ; char* from + ptr @.TypeMapEntry.16912_to; char* to + }, ; 9393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16913_from, ; char* from + ptr @.TypeMapEntry.16914_to; char* to + }, ; 9394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16915_from, ; char* from + ptr @.TypeMapEntry.16912_to; char* to + }, ; 9395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16916_from, ; char* from + ptr @.TypeMapEntry.16917_to; char* to + }, ; 9396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16918_from, ; char* from + ptr @.TypeMapEntry.16917_to; char* to + }, ; 9397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16919_from, ; char* from + ptr @.TypeMapEntry.16920_to; char* to + }, ; 9398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16921_from, ; char* from + ptr @.TypeMapEntry.16920_to; char* to + }, ; 9399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16922_from, ; char* from + ptr @.TypeMapEntry.16923_to; char* to + }, ; 9400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16924_from, ; char* from + ptr @.TypeMapEntry.16925_to; char* to + }, ; 9401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16926_from, ; char* from + ptr @.TypeMapEntry.16927_to; char* to + }, ; 9402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16928_from, ; char* from + ptr @.TypeMapEntry.16929_to; char* to + }, ; 9403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16930_from, ; char* from + ptr @.TypeMapEntry.16931_to; char* to + }, ; 9404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16932_from, ; char* from + ptr @.TypeMapEntry.16933_to; char* to + }, ; 9405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16934_from, ; char* from + ptr @.TypeMapEntry.16935_to; char* to + }, ; 9406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16936_from, ; char* from + ptr @.TypeMapEntry.16937_to; char* to + }, ; 9407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16938_from, ; char* from + ptr @.TypeMapEntry.16939_to; char* to + }, ; 9408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16940_from, ; char* from + ptr @.TypeMapEntry.16941_to; char* to + }, ; 9409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16942_from, ; char* from + ptr @.TypeMapEntry.16943_to; char* to + }, ; 9410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16944_from, ; char* from + ptr @.TypeMapEntry.16945_to; char* to + }, ; 9411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16946_from, ; char* from + ptr @.TypeMapEntry.16947_to; char* to + }, ; 9412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16948_from, ; char* from + ptr @.TypeMapEntry.16949_to; char* to + }, ; 9413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16950_from, ; char* from + ptr @.TypeMapEntry.16951_to; char* to + }, ; 9414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16952_from, ; char* from + ptr @.TypeMapEntry.16951_to; char* to + }, ; 9415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16953_from, ; char* from + ptr @.TypeMapEntry.16954_to; char* to + }, ; 9416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16955_from, ; char* from + ptr @.TypeMapEntry.16956_to; char* to + }, ; 9417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16957_from, ; char* from + ptr @.TypeMapEntry.16958_to; char* to + }, ; 9418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16959_from, ; char* from + ptr @.TypeMapEntry.16960_to; char* to + }, ; 9419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16961_from, ; char* from + ptr @.TypeMapEntry.16962_to; char* to + }, ; 9420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16963_from, ; char* from + ptr @.TypeMapEntry.16964_to; char* to + }, ; 9421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16965_from, ; char* from + ptr @.TypeMapEntry.16966_to; char* to + }, ; 9422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16967_from, ; char* from + ptr @.TypeMapEntry.16968_to; char* to + }, ; 9423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16969_from, ; char* from + ptr @.TypeMapEntry.16966_to; char* to + }, ; 9424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16970_from, ; char* from + ptr @.TypeMapEntry.16971_to; char* to + }, ; 9425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16972_from, ; char* from + ptr @.TypeMapEntry.16973_to; char* to + }, ; 9426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16974_from, ; char* from + ptr @.TypeMapEntry.16975_to; char* to + }, ; 9427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16976_from, ; char* from + ptr @.TypeMapEntry.16977_to; char* to + }, ; 9428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16978_from, ; char* from + ptr @.TypeMapEntry.16979_to; char* to + }, ; 9429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16980_from, ; char* from + ptr @.TypeMapEntry.16981_to; char* to + }, ; 9430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16982_from, ; char* from + ptr @.TypeMapEntry.16983_to; char* to + }, ; 9431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16984_from, ; char* from + ptr @.TypeMapEntry.16983_to; char* to + }, ; 9432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16985_from, ; char* from + ptr @.TypeMapEntry.16986_to; char* to + }, ; 9433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16987_from, ; char* from + ptr @.TypeMapEntry.16986_to; char* to + }, ; 9434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16988_from, ; char* from + ptr @.TypeMapEntry.16989_to; char* to + }, ; 9435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16990_from, ; char* from + ptr @.TypeMapEntry.16991_to; char* to + }, ; 9436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16992_from, ; char* from + ptr @.TypeMapEntry.16993_to; char* to + }, ; 9437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16994_from, ; char* from + ptr @.TypeMapEntry.16995_to; char* to + }, ; 9438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16996_from, ; char* from + ptr @.TypeMapEntry.16997_to; char* to + }, ; 9439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16998_from, ; char* from + ptr @.TypeMapEntry.16999_to; char* to + }, ; 9440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17000_from, ; char* from + ptr @.TypeMapEntry.17001_to; char* to + }, ; 9441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17002_from, ; char* from + ptr @.TypeMapEntry.17001_to; char* to + }, ; 9442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17003_from, ; char* from + ptr @.TypeMapEntry.17004_to; char* to + }, ; 9443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17005_from, ; char* from + ptr @.TypeMapEntry.17006_to; char* to + }, ; 9444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17007_from, ; char* from + ptr @.TypeMapEntry.17006_to; char* to + }, ; 9445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17008_from, ; char* from + ptr @.TypeMapEntry.17009_to; char* to + }, ; 9446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17010_from, ; char* from + ptr @.TypeMapEntry.17011_to; char* to + }, ; 9447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17012_from, ; char* from + ptr @.TypeMapEntry.17011_to; char* to + }, ; 9448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17013_from, ; char* from + ptr @.TypeMapEntry.17014_to; char* to + }, ; 9449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17015_from, ; char* from + ptr @.TypeMapEntry.17016_to; char* to + }, ; 9450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17017_from, ; char* from + ptr @.TypeMapEntry.17014_to; char* to + }, ; 9451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17018_from, ; char* from + ptr @.TypeMapEntry.17019_to; char* to + }, ; 9452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17020_from, ; char* from + ptr @.TypeMapEntry.17021_to; char* to + }, ; 9453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17022_from, ; char* from + ptr @.TypeMapEntry.17019_to; char* to + }, ; 9454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17023_from, ; char* from + ptr @.TypeMapEntry.17024_to; char* to + }, ; 9455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17025_from, ; char* from + ptr @.TypeMapEntry.17024_to; char* to + }, ; 9456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17026_from, ; char* from + ptr @.TypeMapEntry.17027_to; char* to + }, ; 9457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17028_from, ; char* from + ptr @.TypeMapEntry.17029_to; char* to + }, ; 9458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17030_from, ; char* from + ptr @.TypeMapEntry.17027_to; char* to + }, ; 9459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17031_from, ; char* from + ptr @.TypeMapEntry.17032_to; char* to + }, ; 9460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17033_from, ; char* from + ptr @.TypeMapEntry.17034_to; char* to + }, ; 9461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17035_from, ; char* from + ptr @.TypeMapEntry.17036_to; char* to + }, ; 9462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17037_from, ; char* from + ptr @.TypeMapEntry.17038_to; char* to + }, ; 9463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17039_from, ; char* from + ptr @.TypeMapEntry.17040_to; char* to + }, ; 9464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17041_from, ; char* from + ptr @.TypeMapEntry.17042_to; char* to + }, ; 9465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17043_from, ; char* from + ptr @.TypeMapEntry.17042_to; char* to + }, ; 9466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17044_from, ; char* from + ptr @.TypeMapEntry.17045_to; char* to + }, ; 9467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17046_from, ; char* from + ptr @.TypeMapEntry.17045_to; char* to + }, ; 9468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17047_from, ; char* from + ptr @.TypeMapEntry.17048_to; char* to + }, ; 9469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17049_from, ; char* from + ptr @.TypeMapEntry.17048_to; char* to + }, ; 9470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17050_from, ; char* from + ptr @.TypeMapEntry.17051_to; char* to + }, ; 9471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17052_from, ; char* from + ptr @.TypeMapEntry.17051_to; char* to + }, ; 9472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17053_from, ; char* from + ptr @.TypeMapEntry.17054_to; char* to + }, ; 9473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17055_from, ; char* from + ptr @.TypeMapEntry.17054_to; char* to + }, ; 9474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17056_from, ; char* from + ptr @.TypeMapEntry.17057_to; char* to + }, ; 9475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17058_from, ; char* from + ptr @.TypeMapEntry.17059_to; char* to + }, ; 9476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17060_from, ; char* from + ptr @.TypeMapEntry.17061_to; char* to + }, ; 9477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17062_from, ; char* from + ptr @.TypeMapEntry.17063_to; char* to + }, ; 9478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17064_from, ; char* from + ptr @.TypeMapEntry.17065_to; char* to + }, ; 9479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17066_from, ; char* from + ptr @.TypeMapEntry.17065_to; char* to + }, ; 9480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17067_from, ; char* from + ptr @.TypeMapEntry.17068_to; char* to + }, ; 9481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17069_from, ; char* from + ptr @.TypeMapEntry.17068_to; char* to + }, ; 9482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17070_from, ; char* from + ptr @.TypeMapEntry.17071_to; char* to + }, ; 9483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17072_from, ; char* from + ptr @.TypeMapEntry.17073_to; char* to + }, ; 9484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17074_from, ; char* from + ptr @.TypeMapEntry.17075_to; char* to + }, ; 9485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17076_from, ; char* from + ptr @.TypeMapEntry.17077_to; char* to + }, ; 9486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17078_from, ; char* from + ptr @.TypeMapEntry.17077_to; char* to + }, ; 9487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17079_from, ; char* from + ptr @.TypeMapEntry.17080_to; char* to + }, ; 9488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17081_from, ; char* from + ptr @.TypeMapEntry.17082_to; char* to + }, ; 9489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17083_from, ; char* from + ptr @.TypeMapEntry.17084_to; char* to + }, ; 9490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17085_from, ; char* from + ptr @.TypeMapEntry.17086_to; char* to + }, ; 9491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17087_from, ; char* from + ptr @.TypeMapEntry.17088_to; char* to + }, ; 9492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17089_from, ; char* from + ptr @.TypeMapEntry.17090_to; char* to + }, ; 9493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17091_from, ; char* from + ptr @.TypeMapEntry.17090_to; char* to + }, ; 9494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17092_from, ; char* from + ptr @.TypeMapEntry.17093_to; char* to + }, ; 9495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17094_from, ; char* from + ptr @.TypeMapEntry.17095_to; char* to + }, ; 9496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17096_from, ; char* from + ptr @.TypeMapEntry.17097_to; char* to + }, ; 9497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17098_from, ; char* from + ptr @.TypeMapEntry.17099_to; char* to + }, ; 9498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17100_from, ; char* from + ptr @.TypeMapEntry.17099_to; char* to + }, ; 9499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17101_from, ; char* from + ptr @.TypeMapEntry.17102_to; char* to + }, ; 9500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17103_from, ; char* from + ptr @.TypeMapEntry.17104_to; char* to + }, ; 9501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17105_from, ; char* from + ptr @.TypeMapEntry.17106_to; char* to + }, ; 9502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17107_from, ; char* from + ptr @.TypeMapEntry.17108_to; char* to + }, ; 9503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17109_from, ; char* from + ptr @.TypeMapEntry.17110_to; char* to + }, ; 9504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17111_from, ; char* from + ptr @.TypeMapEntry.17108_to; char* to + }, ; 9505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17112_from, ; char* from + ptr @.TypeMapEntry.17113_to; char* to + }, ; 9506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17114_from, ; char* from + ptr @.TypeMapEntry.17115_to; char* to + }, ; 9507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17116_from, ; char* from + ptr @.TypeMapEntry.17117_to; char* to + }, ; 9508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17118_from, ; char* from + ptr @.TypeMapEntry.17117_to; char* to + }, ; 9509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17119_from, ; char* from + ptr @.TypeMapEntry.17120_to; char* to + }, ; 9510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17121_from, ; char* from + ptr @.TypeMapEntry.17122_to; char* to + }, ; 9511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17123_from, ; char* from + ptr @.TypeMapEntry.17124_to; char* to + }, ; 9512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17125_from, ; char* from + ptr @.TypeMapEntry.17126_to; char* to + }, ; 9513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17127_from, ; char* from + ptr @.TypeMapEntry.17128_to; char* to + }, ; 9514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17129_from, ; char* from + ptr @.TypeMapEntry.17130_to; char* to + }, ; 9515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17131_from, ; char* from + ptr @.TypeMapEntry.17130_to; char* to + }, ; 9516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17132_from, ; char* from + ptr @.TypeMapEntry.17133_to; char* to + }, ; 9517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17134_from, ; char* from + ptr @.TypeMapEntry.17135_to; char* to + }, ; 9518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17136_from, ; char* from + ptr @.TypeMapEntry.17137_to; char* to + }, ; 9519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17138_from, ; char* from + ptr @.TypeMapEntry.17130_to; char* to + }, ; 9520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17139_from, ; char* from + ptr @.TypeMapEntry.17130_to; char* to + }, ; 9521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17140_from, ; char* from + ptr @.TypeMapEntry.17141_to; char* to + }, ; 9522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17142_from, ; char* from + ptr @.TypeMapEntry.17141_to; char* to + }, ; 9523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17143_from, ; char* from + ptr @.TypeMapEntry.17144_to; char* to + }, ; 9524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17145_from, ; char* from + ptr @.TypeMapEntry.17144_to; char* to + }, ; 9525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17146_from, ; char* from + ptr @.TypeMapEntry.17147_to; char* to + }, ; 9526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17148_from, ; char* from + ptr @.TypeMapEntry.17149_to; char* to + }, ; 9527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17150_from, ; char* from + ptr @.TypeMapEntry.17151_to; char* to + }, ; 9528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17152_from, ; char* from + ptr @.TypeMapEntry.17151_to; char* to + }, ; 9529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17153_from, ; char* from + ptr @.TypeMapEntry.17154_to; char* to + }, ; 9530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17155_from, ; char* from + ptr @.TypeMapEntry.17156_to; char* to + }, ; 9531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17157_from, ; char* from + ptr @.TypeMapEntry.17158_to; char* to + }, ; 9532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17159_from, ; char* from + ptr @.TypeMapEntry.17160_to; char* to + }, ; 9533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17161_from, ; char* from + ptr @.TypeMapEntry.17162_to; char* to + }, ; 9534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17163_from, ; char* from + ptr @.TypeMapEntry.17164_to; char* to + }, ; 9535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17165_from, ; char* from + ptr @.TypeMapEntry.17166_to; char* to + }, ; 9536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17167_from, ; char* from + ptr @.TypeMapEntry.17168_to; char* to + }, ; 9537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17169_from, ; char* from + ptr @.TypeMapEntry.17168_to; char* to + }, ; 9538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17170_from, ; char* from + ptr @.TypeMapEntry.17171_to; char* to + }, ; 9539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17172_from, ; char* from + ptr @.TypeMapEntry.17173_to; char* to + }, ; 9540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17174_from, ; char* from + ptr @.TypeMapEntry.17175_to; char* to + }, ; 9541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17176_from, ; char* from + ptr @.TypeMapEntry.17173_to; char* to + }, ; 9542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17177_from, ; char* from + ptr @.TypeMapEntry.17178_to; char* to + }, ; 9543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17179_from, ; char* from + ptr @.TypeMapEntry.17180_to; char* to + }, ; 9544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17181_from, ; char* from + ptr @.TypeMapEntry.17182_to; char* to + }, ; 9545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17183_from, ; char* from + ptr @.TypeMapEntry.17184_to; char* to + }, ; 9546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17185_from, ; char* from + ptr @.TypeMapEntry.17186_to; char* to + }, ; 9547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17187_from, ; char* from + ptr @.TypeMapEntry.17186_to; char* to + }, ; 9548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17188_from, ; char* from + ptr @.TypeMapEntry.17189_to; char* to + }, ; 9549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17190_from, ; char* from + ptr @.TypeMapEntry.17191_to; char* to + }, ; 9550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17192_from, ; char* from + ptr @.TypeMapEntry.17193_to; char* to + }, ; 9551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17194_from, ; char* from + ptr @.TypeMapEntry.17195_to; char* to + }, ; 9552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17196_from, ; char* from + ptr @.TypeMapEntry.17195_to; char* to + }, ; 9553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17197_from, ; char* from + ptr @.TypeMapEntry.17198_to; char* to + }, ; 9554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17199_from, ; char* from + ptr @.TypeMapEntry.17200_to; char* to + }, ; 9555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17201_from, ; char* from + ptr @.TypeMapEntry.17202_to; char* to + }, ; 9556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17203_from, ; char* from + ptr @.TypeMapEntry.17204_to; char* to + }, ; 9557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17205_from, ; char* from + ptr @.TypeMapEntry.17204_to; char* to + }, ; 9558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17206_from, ; char* from + ptr @.TypeMapEntry.17207_to; char* to + }, ; 9559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17208_from, ; char* from + ptr @.TypeMapEntry.17209_to; char* to + }, ; 9560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17210_from, ; char* from + ptr @.TypeMapEntry.17211_to; char* to + }, ; 9561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17212_from, ; char* from + ptr @.TypeMapEntry.17213_to; char* to + }, ; 9562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17214_from, ; char* from + ptr @.TypeMapEntry.17211_to; char* to + }, ; 9563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17215_from, ; char* from + ptr @.TypeMapEntry.17216_to; char* to + }, ; 9564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17217_from, ; char* from + ptr @.TypeMapEntry.17218_to; char* to + }, ; 9565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17219_from, ; char* from + ptr @.TypeMapEntry.17216_to; char* to + }, ; 9566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17220_from, ; char* from + ptr @.TypeMapEntry.17221_to; char* to + }, ; 9567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17222_from, ; char* from + ptr @.TypeMapEntry.17221_to; char* to + }, ; 9568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17223_from, ; char* from + ptr @.TypeMapEntry.17221_to; char* to + }, ; 9569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17224_from, ; char* from + ptr @.TypeMapEntry.17221_to; char* to + }, ; 9570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17225_from, ; char* from + ptr @.TypeMapEntry.17226_to; char* to + }, ; 9571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17227_from, ; char* from + ptr @.TypeMapEntry.17226_to; char* to + }, ; 9572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17228_from, ; char* from + ptr @.TypeMapEntry.17229_to; char* to + }, ; 9573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17230_from, ; char* from + ptr @.TypeMapEntry.17229_to; char* to + }, ; 9574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17231_from, ; char* from + ptr @.TypeMapEntry.17232_to; char* to + }, ; 9575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17233_from, ; char* from + ptr @.TypeMapEntry.17234_to; char* to + }, ; 9576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17235_from, ; char* from + ptr @.TypeMapEntry.17234_to; char* to + }, ; 9577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17236_from, ; char* from + ptr @.TypeMapEntry.17237_to; char* to + }, ; 9578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17238_from, ; char* from + ptr @.TypeMapEntry.17237_to; char* to + }, ; 9579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17239_from, ; char* from + ptr @.TypeMapEntry.17240_to; char* to + }, ; 9580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17241_from, ; char* from + ptr @.TypeMapEntry.17242_to; char* to + }, ; 9581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17243_from, ; char* from + ptr @.TypeMapEntry.17242_to; char* to + }, ; 9582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17244_from, ; char* from + ptr @.TypeMapEntry.17245_to; char* to + }, ; 9583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17246_from, ; char* from + ptr @.TypeMapEntry.17245_to; char* to + }, ; 9584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17247_from, ; char* from + ptr @.TypeMapEntry.17248_to; char* to + }, ; 9585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17249_from, ; char* from + ptr @.TypeMapEntry.17250_to; char* to + }, ; 9586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17251_from, ; char* from + ptr @.TypeMapEntry.17252_to; char* to + }, ; 9587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17253_from, ; char* from + ptr @.TypeMapEntry.17252_to; char* to + }, ; 9588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17254_from, ; char* from + ptr @.TypeMapEntry.17255_to; char* to + }, ; 9589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17256_from, ; char* from + ptr @.TypeMapEntry.17255_to; char* to + }, ; 9590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17257_from, ; char* from + ptr @.TypeMapEntry.17258_to; char* to + }, ; 9591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17259_from, ; char* from + ptr @.TypeMapEntry.17258_to; char* to + }, ; 9592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17260_from, ; char* from + ptr @.TypeMapEntry.17261_to; char* to + }, ; 9593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17262_from, ; char* from + ptr @.TypeMapEntry.17263_to; char* to + }, ; 9594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17264_from, ; char* from + ptr @.TypeMapEntry.17263_to; char* to + }, ; 9595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17265_from, ; char* from + ptr @.TypeMapEntry.17266_to; char* to + }, ; 9596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17267_from, ; char* from + ptr @.TypeMapEntry.17266_to; char* to + }, ; 9597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17268_from, ; char* from + ptr @.TypeMapEntry.17269_to; char* to + }, ; 9598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17270_from, ; char* from + ptr @.TypeMapEntry.17271_to; char* to + }, ; 9599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17272_from, ; char* from + ptr @.TypeMapEntry.17273_to; char* to + }, ; 9600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17274_from, ; char* from + ptr @.TypeMapEntry.17275_to; char* to + }, ; 9601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17276_from, ; char* from + ptr @.TypeMapEntry.17277_to; char* to + }, ; 9602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17278_from, ; char* from + ptr @.TypeMapEntry.17279_to; char* to + }, ; 9603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17280_from, ; char* from + ptr @.TypeMapEntry.17281_to; char* to + }, ; 9604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17282_from, ; char* from + ptr @.TypeMapEntry.17283_to; char* to + }, ; 9605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17284_from, ; char* from + ptr @.TypeMapEntry.17285_to; char* to + }, ; 9606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17286_from, ; char* from + ptr @.TypeMapEntry.17287_to; char* to + }, ; 9607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17288_from, ; char* from + ptr @.TypeMapEntry.17287_to; char* to + }, ; 9608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17289_from, ; char* from + ptr @.TypeMapEntry.17290_to; char* to + }, ; 9609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17291_from, ; char* from + ptr @.TypeMapEntry.17290_to; char* to + }, ; 9610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17292_from, ; char* from + ptr @.TypeMapEntry.17293_to; char* to + }, ; 9611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17294_from, ; char* from + ptr @.TypeMapEntry.17295_to; char* to + }, ; 9612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17296_from, ; char* from + ptr @.TypeMapEntry.17295_to; char* to + }, ; 9613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17297_from, ; char* from + ptr @.TypeMapEntry.17298_to; char* to + }, ; 9614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17299_from, ; char* from + ptr @.TypeMapEntry.17293_to; char* to + }, ; 9615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17300_from, ; char* from + ptr @.TypeMapEntry.17301_to; char* to + }, ; 9616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17302_from, ; char* from + ptr @.TypeMapEntry.17301_to; char* to + }, ; 9617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17303_from, ; char* from + ptr @.TypeMapEntry.17304_to; char* to + }, ; 9618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17305_from, ; char* from + ptr @.TypeMapEntry.17304_to; char* to + }, ; 9619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17306_from, ; char* from + ptr @.TypeMapEntry.17307_to; char* to + }, ; 9620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17308_from, ; char* from + ptr @.TypeMapEntry.17307_to; char* to + }, ; 9621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17309_from, ; char* from + ptr @.TypeMapEntry.17310_to; char* to + }, ; 9622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17311_from, ; char* from + ptr @.TypeMapEntry.17312_to; char* to + }, ; 9623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17313_from, ; char* from + ptr @.TypeMapEntry.17314_to; char* to + }, ; 9624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17315_from, ; char* from + ptr @.TypeMapEntry.17316_to; char* to + }, ; 9625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17317_from, ; char* from + ptr @.TypeMapEntry.17318_to; char* to + }, ; 9626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17319_from, ; char* from + ptr @.TypeMapEntry.17320_to; char* to + }, ; 9627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17321_from, ; char* from + ptr @.TypeMapEntry.17320_to; char* to + }, ; 9628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17322_from, ; char* from + ptr @.TypeMapEntry.17323_to; char* to + }, ; 9629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17324_from, ; char* from + ptr @.TypeMapEntry.17325_to; char* to + }, ; 9630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17326_from, ; char* from + ptr @.TypeMapEntry.17327_to; char* to + }, ; 9631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17328_from, ; char* from + ptr @.TypeMapEntry.17329_to; char* to + }, ; 9632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17330_from, ; char* from + ptr @.TypeMapEntry.17331_to; char* to + }, ; 9633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17332_from, ; char* from + ptr @.TypeMapEntry.17331_to; char* to + }, ; 9634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17333_from, ; char* from + ptr @.TypeMapEntry.17334_to; char* to + }, ; 9635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17335_from, ; char* from + ptr @.TypeMapEntry.17334_to; char* to + }, ; 9636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17336_from, ; char* from + ptr @.TypeMapEntry.17337_to; char* to + }, ; 9637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17338_from, ; char* from + ptr @.TypeMapEntry.17337_to; char* to + }, ; 9638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17339_from, ; char* from + ptr @.TypeMapEntry.17340_to; char* to + }, ; 9639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17341_from, ; char* from + ptr @.TypeMapEntry.17342_to; char* to + }, ; 9640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17343_from, ; char* from + ptr @.TypeMapEntry.17340_to; char* to + }, ; 9641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17344_from, ; char* from + ptr @.TypeMapEntry.17345_to; char* to + }, ; 9642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17346_from, ; char* from + ptr @.TypeMapEntry.17347_to; char* to + }, ; 9643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17348_from, ; char* from + ptr @.TypeMapEntry.17345_to; char* to + }, ; 9644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17349_from, ; char* from + ptr @.TypeMapEntry.17350_to; char* to + }, ; 9645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17351_from, ; char* from + ptr @.TypeMapEntry.17352_to; char* to + }, ; 9646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17353_from, ; char* from + ptr @.TypeMapEntry.17354_to; char* to + }, ; 9647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17355_from, ; char* from + ptr @.TypeMapEntry.17356_to; char* to + }, ; 9648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17357_from, ; char* from + ptr @.TypeMapEntry.17358_to; char* to + }, ; 9649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17359_from, ; char* from + ptr @.TypeMapEntry.17358_to; char* to + }, ; 9650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17360_from, ; char* from + ptr @.TypeMapEntry.17361_to; char* to + }, ; 9651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17362_from, ; char* from + ptr @.TypeMapEntry.17363_to; char* to + }, ; 9652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17364_from, ; char* from + ptr @.TypeMapEntry.17358_to; char* to + }, ; 9653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17365_from, ; char* from + ptr @.TypeMapEntry.17358_to; char* to + }, ; 9654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17366_from, ; char* from + ptr @.TypeMapEntry.17367_to; char* to + }, ; 9655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17368_from, ; char* from + ptr @.TypeMapEntry.17369_to; char* to + }, ; 9656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17370_from, ; char* from + ptr @.TypeMapEntry.17369_to; char* to + }, ; 9657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17371_from, ; char* from + ptr @.TypeMapEntry.17372_to; char* to + }, ; 9658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17373_from, ; char* from + ptr @.TypeMapEntry.17372_to; char* to + }, ; 9659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17374_from, ; char* from + ptr @.TypeMapEntry.17375_to; char* to + }, ; 9660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17376_from, ; char* from + ptr @.TypeMapEntry.17377_to; char* to + }, ; 9661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17378_from, ; char* from + ptr @.TypeMapEntry.17377_to; char* to + }, ; 9662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17379_from, ; char* from + ptr @.TypeMapEntry.17380_to; char* to + }, ; 9663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17381_from, ; char* from + ptr @.TypeMapEntry.17382_to; char* to + }, ; 9664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17383_from, ; char* from + ptr @.TypeMapEntry.17384_to; char* to + }, ; 9665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17385_from, ; char* from + ptr @.TypeMapEntry.17386_to; char* to + }, ; 9666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17387_from, ; char* from + ptr @.TypeMapEntry.17388_to; char* to + }, ; 9667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17389_from, ; char* from + ptr @.TypeMapEntry.17390_to; char* to + }, ; 9668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17391_from, ; char* from + ptr @.TypeMapEntry.17392_to; char* to + }, ; 9669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17393_from, ; char* from + ptr @.TypeMapEntry.17394_to; char* to + }, ; 9670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17395_from, ; char* from + ptr @.TypeMapEntry.17394_to; char* to + }, ; 9671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17396_from, ; char* from + ptr @.TypeMapEntry.17397_to; char* to + }, ; 9672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17398_from, ; char* from + ptr @.TypeMapEntry.17399_to; char* to + }, ; 9673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17400_from, ; char* from + ptr @.TypeMapEntry.17399_to; char* to + }, ; 9674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17401_from, ; char* from + ptr @.TypeMapEntry.17402_to; char* to + }, ; 9675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17403_from, ; char* from + ptr @.TypeMapEntry.17402_to; char* to + }, ; 9676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17404_from, ; char* from + ptr @.TypeMapEntry.17405_to; char* to + }, ; 9677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17406_from, ; char* from + ptr @.TypeMapEntry.17405_to; char* to + }, ; 9678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17407_from, ; char* from + ptr @.TypeMapEntry.17408_to; char* to + }, ; 9679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17409_from, ; char* from + ptr @.TypeMapEntry.17410_to; char* to + }, ; 9680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17411_from, ; char* from + ptr @.TypeMapEntry.17412_to; char* to + }, ; 9681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17413_from, ; char* from + ptr @.TypeMapEntry.17414_to; char* to + }, ; 9682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17415_from, ; char* from + ptr @.TypeMapEntry.17416_to; char* to + }, ; 9683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17417_from, ; char* from + ptr @.TypeMapEntry.17418_to; char* to + }, ; 9684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17419_from, ; char* from + ptr @.TypeMapEntry.17418_to; char* to + }, ; 9685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17420_from, ; char* from + ptr @.TypeMapEntry.17421_to; char* to + }, ; 9686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17422_from, ; char* from + ptr @.TypeMapEntry.17423_to; char* to + }, ; 9687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17424_from, ; char* from + ptr @.TypeMapEntry.17425_to; char* to + }, ; 9688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17426_from, ; char* from + ptr @.TypeMapEntry.17427_to; char* to + }, ; 9689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17428_from, ; char* from + ptr @.TypeMapEntry.17429_to; char* to + }, ; 9690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17430_from, ; char* from + ptr @.TypeMapEntry.17429_to; char* to + }, ; 9691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17431_from, ; char* from + ptr @.TypeMapEntry.17432_to; char* to + }, ; 9692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17433_from, ; char* from + ptr @.TypeMapEntry.17434_to; char* to + }, ; 9693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17435_from, ; char* from + ptr @.TypeMapEntry.17434_to; char* to + }, ; 9694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17436_from, ; char* from + ptr @.TypeMapEntry.17437_to; char* to + }, ; 9695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17438_from, ; char* from + ptr @.TypeMapEntry.17437_to; char* to + }, ; 9696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17439_from, ; char* from + ptr @.TypeMapEntry.17440_to; char* to + }, ; 9697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17441_from, ; char* from + ptr @.TypeMapEntry.17440_to; char* to + }, ; 9698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17442_from, ; char* from + ptr @.TypeMapEntry.17443_to; char* to + }, ; 9699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17444_from, ; char* from + ptr @.TypeMapEntry.17445_to; char* to + }, ; 9700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17446_from, ; char* from + ptr @.TypeMapEntry.17447_to; char* to + }, ; 9701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17448_from, ; char* from + ptr @.TypeMapEntry.17447_to; char* to + }, ; 9702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17449_from, ; char* from + ptr @.TypeMapEntry.17450_to; char* to + }, ; 9703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17451_from, ; char* from + ptr @.TypeMapEntry.17452_to; char* to + }, ; 9704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17453_from, ; char* from + ptr @.TypeMapEntry.17454_to; char* to + }, ; 9705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17455_from, ; char* from + ptr @.TypeMapEntry.17456_to; char* to + }, ; 9706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17457_from, ; char* from + ptr @.TypeMapEntry.17458_to; char* to + }, ; 9707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17459_from, ; char* from + ptr @.TypeMapEntry.17460_to; char* to + }, ; 9708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17461_from, ; char* from + ptr @.TypeMapEntry.17460_to; char* to + }, ; 9709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17462_from, ; char* from + ptr @.TypeMapEntry.17463_to; char* to + }, ; 9710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17464_from, ; char* from + ptr @.TypeMapEntry.17465_to; char* to + }, ; 9711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17466_from, ; char* from + ptr @.TypeMapEntry.17467_to; char* to + }, ; 9712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17468_from, ; char* from + ptr @.TypeMapEntry.17467_to; char* to + }, ; 9713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17469_from, ; char* from + ptr @.TypeMapEntry.17470_to; char* to + }, ; 9714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17471_from, ; char* from + ptr @.TypeMapEntry.17472_to; char* to + }, ; 9715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17473_from, ; char* from + ptr @.TypeMapEntry.17474_to; char* to + }, ; 9716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17475_from, ; char* from + ptr @.TypeMapEntry.17474_to; char* to + }, ; 9717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17476_from, ; char* from + ptr @.TypeMapEntry.17477_to; char* to + }, ; 9718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17478_from, ; char* from + ptr @.TypeMapEntry.17479_to; char* to + }, ; 9719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17480_from, ; char* from + ptr @.TypeMapEntry.17479_to; char* to + }, ; 9720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17481_from, ; char* from + ptr @.TypeMapEntry.17482_to; char* to + }, ; 9721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17483_from, ; char* from + ptr @.TypeMapEntry.17482_to; char* to + }, ; 9722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17484_from, ; char* from + ptr @.TypeMapEntry.17485_to; char* to + }, ; 9723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17486_from, ; char* from + ptr @.TypeMapEntry.17485_to; char* to + }, ; 9724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17487_from, ; char* from + ptr @.TypeMapEntry.17488_to; char* to + }, ; 9725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17489_from, ; char* from + ptr @.TypeMapEntry.17488_to; char* to + }, ; 9726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17490_from, ; char* from + ptr @.TypeMapEntry.17491_to; char* to + }, ; 9727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17492_from, ; char* from + ptr @.TypeMapEntry.17491_to; char* to + }, ; 9728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17493_from, ; char* from + ptr @.TypeMapEntry.17494_to; char* to + }, ; 9729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17495_from, ; char* from + ptr @.TypeMapEntry.17494_to; char* to + }, ; 9730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17496_from, ; char* from + ptr @.TypeMapEntry.17497_to; char* to + }, ; 9731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17498_from, ; char* from + ptr @.TypeMapEntry.17499_to; char* to + }, ; 9732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17500_from, ; char* from + ptr @.TypeMapEntry.17499_to; char* to + }, ; 9733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17501_from, ; char* from + ptr @.TypeMapEntry.17502_to; char* to + }, ; 9734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17503_from, ; char* from + ptr @.TypeMapEntry.17504_to; char* to + }, ; 9735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17505_from, ; char* from + ptr @.TypeMapEntry.17506_to; char* to + }, ; 9736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17507_from, ; char* from + ptr @.TypeMapEntry.17508_to; char* to + }, ; 9737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17509_from, ; char* from + ptr @.TypeMapEntry.17508_to; char* to + }, ; 9738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17510_from, ; char* from + ptr @.TypeMapEntry.17511_to; char* to + }, ; 9739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17512_from, ; char* from + ptr @.TypeMapEntry.17511_to; char* to + }, ; 9740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17513_from, ; char* from + ptr @.TypeMapEntry.17514_to; char* to + }, ; 9741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17515_from, ; char* from + ptr @.TypeMapEntry.17514_to; char* to + }, ; 9742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17516_from, ; char* from + ptr @.TypeMapEntry.17517_to; char* to + }, ; 9743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17518_from, ; char* from + ptr @.TypeMapEntry.17517_to; char* to + }, ; 9744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17519_from, ; char* from + ptr @.TypeMapEntry.17520_to; char* to + }, ; 9745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17521_from, ; char* from + ptr @.TypeMapEntry.17520_to; char* to + }, ; 9746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17522_from, ; char* from + ptr @.TypeMapEntry.17523_to; char* to + }, ; 9747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17524_from, ; char* from + ptr @.TypeMapEntry.17523_to; char* to + }, ; 9748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17525_from, ; char* from + ptr @.TypeMapEntry.17526_to; char* to + }, ; 9749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17527_from, ; char* from + ptr @.TypeMapEntry.17526_to; char* to + }, ; 9750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17528_from, ; char* from + ptr @.TypeMapEntry.17529_to; char* to + }, ; 9751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17530_from, ; char* from + ptr @.TypeMapEntry.17529_to; char* to + }, ; 9752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17531_from, ; char* from + ptr @.TypeMapEntry.17532_to; char* to + }, ; 9753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17533_from, ; char* from + ptr @.TypeMapEntry.17532_to; char* to + }, ; 9754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17534_from, ; char* from + ptr @.TypeMapEntry.17535_to; char* to + }, ; 9755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17536_from, ; char* from + ptr @.TypeMapEntry.17535_to; char* to + }, ; 9756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17537_from, ; char* from + ptr @.TypeMapEntry.17538_to; char* to + }, ; 9757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17539_from, ; char* from + ptr @.TypeMapEntry.17540_to; char* to + }, ; 9758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17541_from, ; char* from + ptr @.TypeMapEntry.17540_to; char* to + }, ; 9759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17542_from, ; char* from + ptr @.TypeMapEntry.17543_to; char* to + }, ; 9760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17544_from, ; char* from + ptr @.TypeMapEntry.17545_to; char* to + }, ; 9761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17546_from, ; char* from + ptr @.TypeMapEntry.17547_to; char* to + }, ; 9762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17548_from, ; char* from + ptr @.TypeMapEntry.17549_to; char* to + }, ; 9763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17550_from, ; char* from + ptr @.TypeMapEntry.17551_to; char* to + }, ; 9764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17552_from, ; char* from + ptr @.TypeMapEntry.17553_to; char* to + }, ; 9765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17554_from, ; char* from + ptr @.TypeMapEntry.17555_to; char* to + }, ; 9766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17556_from, ; char* from + ptr @.TypeMapEntry.17557_to; char* to + }, ; 9767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17558_from, ; char* from + ptr @.TypeMapEntry.17559_to; char* to + }, ; 9768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17560_from, ; char* from + ptr @.TypeMapEntry.17559_to; char* to + }, ; 9769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17561_from, ; char* from + ptr @.TypeMapEntry.17562_to; char* to + }, ; 9770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17563_from, ; char* from + ptr @.TypeMapEntry.17529_to; char* to + }, ; 9771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17564_from, ; char* from + ptr @.TypeMapEntry.17529_to; char* to + }, ; 9772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17565_from, ; char* from + ptr @.TypeMapEntry.17566_to; char* to + }, ; 9773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17567_from, ; char* from + ptr @.TypeMapEntry.17568_to; char* to + }, ; 9774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17569_from, ; char* from + ptr @.TypeMapEntry.17570_to; char* to + }, ; 9775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17571_from, ; char* from + ptr @.TypeMapEntry.17572_to; char* to + }, ; 9776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17573_from, ; char* from + ptr @.TypeMapEntry.17574_to; char* to + }, ; 9777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17575_from, ; char* from + ptr @.TypeMapEntry.17576_to; char* to + }, ; 9778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17577_from, ; char* from + ptr @.TypeMapEntry.17578_to; char* to + }, ; 9779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17579_from, ; char* from + ptr @.TypeMapEntry.17578_to; char* to + }, ; 9780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17580_from, ; char* from + ptr @.TypeMapEntry.17581_to; char* to + }, ; 9781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17582_from, ; char* from + ptr @.TypeMapEntry.17581_to; char* to + }, ; 9782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17583_from, ; char* from + ptr @.TypeMapEntry.17584_to; char* to + }, ; 9783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17585_from, ; char* from + ptr @.TypeMapEntry.17584_to; char* to + }, ; 9784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17586_from, ; char* from + ptr @.TypeMapEntry.17584_to; char* to + }, ; 9785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17587_from, ; char* from + ptr @.TypeMapEntry.17584_to; char* to + }, ; 9786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17588_from, ; char* from + ptr @.TypeMapEntry.17589_to; char* to + }, ; 9787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17590_from, ; char* from + ptr @.TypeMapEntry.17589_to; char* to + }, ; 9788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17591_from, ; char* from + ptr @.TypeMapEntry.17592_to; char* to + }, ; 9789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17593_from, ; char* from + ptr @.TypeMapEntry.17592_to; char* to + }, ; 9790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17594_from, ; char* from + ptr @.TypeMapEntry.17595_to; char* to + }, ; 9791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17596_from, ; char* from + ptr @.TypeMapEntry.17595_to; char* to + }, ; 9792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17597_from, ; char* from + ptr @.TypeMapEntry.17598_to; char* to + }, ; 9793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17599_from, ; char* from + ptr @.TypeMapEntry.17598_to; char* to + }, ; 9794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17600_from, ; char* from + ptr @.TypeMapEntry.17601_to; char* to + }, ; 9795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17602_from, ; char* from + ptr @.TypeMapEntry.17601_to; char* to + }, ; 9796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17603_from, ; char* from + ptr @.TypeMapEntry.17604_to; char* to + }, ; 9797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17605_from, ; char* from + ptr @.TypeMapEntry.17604_to; char* to + }, ; 9798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17606_from, ; char* from + ptr @.TypeMapEntry.17607_to; char* to + }, ; 9799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17608_from, ; char* from + ptr @.TypeMapEntry.17607_to; char* to + }, ; 9800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17609_from, ; char* from + ptr @.TypeMapEntry.17610_to; char* to + }, ; 9801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17611_from, ; char* from + ptr @.TypeMapEntry.17610_to; char* to + }, ; 9802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17612_from, ; char* from + ptr @.TypeMapEntry.17613_to; char* to + }, ; 9803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17614_from, ; char* from + ptr @.TypeMapEntry.17613_to; char* to + }, ; 9804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17615_from, ; char* from + ptr @.TypeMapEntry.17616_to; char* to + }, ; 9805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17617_from, ; char* from + ptr @.TypeMapEntry.17616_to; char* to + }, ; 9806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17618_from, ; char* from + ptr @.TypeMapEntry.17619_to; char* to + }, ; 9807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17620_from, ; char* from + ptr @.TypeMapEntry.17619_to; char* to + }, ; 9808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17621_from, ; char* from + ptr @.TypeMapEntry.17622_to; char* to + }, ; 9809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17623_from, ; char* from + ptr @.TypeMapEntry.17622_to; char* to + }, ; 9810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17624_from, ; char* from + ptr @.TypeMapEntry.17625_to; char* to + }, ; 9811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17626_from, ; char* from + ptr @.TypeMapEntry.17625_to; char* to + }, ; 9812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17627_from, ; char* from + ptr @.TypeMapEntry.17628_to; char* to + }, ; 9813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17629_from, ; char* from + ptr @.TypeMapEntry.17628_to; char* to + }, ; 9814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17630_from, ; char* from + ptr @.TypeMapEntry.17631_to; char* to + }, ; 9815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17632_from, ; char* from + ptr @.TypeMapEntry.17631_to; char* to + }, ; 9816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17633_from, ; char* from + ptr @.TypeMapEntry.17634_to; char* to + }, ; 9817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17635_from, ; char* from + ptr @.TypeMapEntry.17634_to; char* to + }, ; 9818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17636_from, ; char* from + ptr @.TypeMapEntry.17637_to; char* to + }, ; 9819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17638_from, ; char* from + ptr @.TypeMapEntry.17637_to; char* to + }, ; 9820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17639_from, ; char* from + ptr @.TypeMapEntry.17640_to; char* to + }, ; 9821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17641_from, ; char* from + ptr @.TypeMapEntry.17640_to; char* to + }, ; 9822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17642_from, ; char* from + ptr @.TypeMapEntry.17643_to; char* to + }, ; 9823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17644_from, ; char* from + ptr @.TypeMapEntry.17643_to; char* to + }, ; 9824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17645_from, ; char* from + ptr @.TypeMapEntry.17646_to; char* to + }, ; 9825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17647_from, ; char* from + ptr @.TypeMapEntry.17646_to; char* to + }, ; 9826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17648_from, ; char* from + ptr @.TypeMapEntry.17649_to; char* to + }, ; 9827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17650_from, ; char* from + ptr @.TypeMapEntry.17649_to; char* to + }, ; 9828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17651_from, ; char* from + ptr @.TypeMapEntry.17652_to; char* to + }, ; 9829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17653_from, ; char* from + ptr @.TypeMapEntry.17652_to; char* to + }, ; 9830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17654_from, ; char* from + ptr @.TypeMapEntry.17655_to; char* to + }, ; 9831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17656_from, ; char* from + ptr @.TypeMapEntry.17655_to; char* to + }, ; 9832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17657_from, ; char* from + ptr @.TypeMapEntry.17658_to; char* to + }, ; 9833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17659_from, ; char* from + ptr @.TypeMapEntry.17658_to; char* to + }, ; 9834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17660_from, ; char* from + ptr @.TypeMapEntry.17661_to; char* to + }, ; 9835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17662_from, ; char* from + ptr @.TypeMapEntry.17663_to; char* to + }, ; 9836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17664_from, ; char* from + ptr @.TypeMapEntry.17665_to; char* to + }, ; 9837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17666_from, ; char* from + ptr @.TypeMapEntry.17667_to; char* to + }, ; 9838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17668_from, ; char* from + ptr @.TypeMapEntry.17669_to; char* to + }, ; 9839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17670_from, ; char* from + ptr @.TypeMapEntry.17669_to; char* to + }, ; 9840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17671_from, ; char* from + ptr @.TypeMapEntry.17672_to; char* to + }, ; 9841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17673_from, ; char* from + ptr @.TypeMapEntry.17674_to; char* to + }, ; 9842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17675_from, ; char* from + ptr @.TypeMapEntry.17676_to; char* to + }, ; 9843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17677_from, ; char* from + ptr @.TypeMapEntry.17678_to; char* to + }, ; 9844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17679_from, ; char* from + ptr @.TypeMapEntry.17680_to; char* to + }, ; 9845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17681_from, ; char* from + ptr @.TypeMapEntry.17682_to; char* to + }, ; 9846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17683_from, ; char* from + ptr @.TypeMapEntry.17684_to; char* to + }, ; 9847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17685_from, ; char* from + ptr @.TypeMapEntry.17686_to; char* to + }, ; 9848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17687_from, ; char* from + ptr @.TypeMapEntry.17688_to; char* to + }, ; 9849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17689_from, ; char* from + ptr @.TypeMapEntry.17690_to; char* to + }, ; 9850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17691_from, ; char* from + ptr @.TypeMapEntry.17692_to; char* to + }, ; 9851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17693_from, ; char* from + ptr @.TypeMapEntry.17694_to; char* to + }, ; 9852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17695_from, ; char* from + ptr @.TypeMapEntry.17696_to; char* to + }, ; 9853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17697_from, ; char* from + ptr @.TypeMapEntry.17698_to; char* to + }, ; 9854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17699_from, ; char* from + ptr @.TypeMapEntry.17700_to; char* to + }, ; 9855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17701_from, ; char* from + ptr @.TypeMapEntry.17702_to; char* to + }, ; 9856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17703_from, ; char* from + ptr @.TypeMapEntry.17704_to; char* to + }, ; 9857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17705_from, ; char* from + ptr @.TypeMapEntry.17706_to; char* to + }, ; 9858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17707_from, ; char* from + ptr @.TypeMapEntry.17708_to; char* to + }, ; 9859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17709_from, ; char* from + ptr @.TypeMapEntry.17710_to; char* to + }, ; 9860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17711_from, ; char* from + ptr @.TypeMapEntry.17712_to; char* to + }, ; 9861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17713_from, ; char* from + ptr @.TypeMapEntry.17714_to; char* to + }, ; 9862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17715_from, ; char* from + ptr @.TypeMapEntry.17716_to; char* to + }, ; 9863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17717_from, ; char* from + ptr @.TypeMapEntry.17718_to; char* to + }, ; 9864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17719_from, ; char* from + ptr @.TypeMapEntry.17720_to; char* to + }, ; 9865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17721_from, ; char* from + ptr @.TypeMapEntry.17722_to; char* to + }, ; 9866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17723_from, ; char* from + ptr @.TypeMapEntry.17724_to; char* to + }, ; 9867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17725_from, ; char* from + ptr @.TypeMapEntry.17726_to; char* to + }, ; 9868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17727_from, ; char* from + ptr @.TypeMapEntry.17726_to; char* to + }, ; 9869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17728_from, ; char* from + ptr @.TypeMapEntry.17729_to; char* to + }, ; 9870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17730_from, ; char* from + ptr @.TypeMapEntry.17729_to; char* to + }, ; 9871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17731_from, ; char* from + ptr @.TypeMapEntry.17732_to; char* to + }, ; 9872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17733_from, ; char* from + ptr @.TypeMapEntry.17732_to; char* to + }, ; 9873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17734_from, ; char* from + ptr @.TypeMapEntry.17735_to; char* to + }, ; 9874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17736_from, ; char* from + ptr @.TypeMapEntry.17735_to; char* to + }, ; 9875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17737_from, ; char* from + ptr @.TypeMapEntry.17738_to; char* to + }, ; 9876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17739_from, ; char* from + ptr @.TypeMapEntry.17738_to; char* to + }, ; 9877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17740_from, ; char* from + ptr @.TypeMapEntry.17741_to; char* to + }, ; 9878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17742_from, ; char* from + ptr @.TypeMapEntry.17741_to; char* to + }, ; 9879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17743_from, ; char* from + ptr @.TypeMapEntry.17744_to; char* to + }, ; 9880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17745_from, ; char* from + ptr @.TypeMapEntry.17744_to; char* to + }, ; 9881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17746_from, ; char* from + ptr @.TypeMapEntry.17747_to; char* to + }, ; 9882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17748_from, ; char* from + ptr @.TypeMapEntry.17747_to; char* to + }, ; 9883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17749_from, ; char* from + ptr @.TypeMapEntry.17750_to; char* to + }, ; 9884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17751_from, ; char* from + ptr @.TypeMapEntry.17750_to; char* to + }, ; 9885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17752_from, ; char* from + ptr @.TypeMapEntry.17753_to; char* to + }, ; 9886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17754_from, ; char* from + ptr @.TypeMapEntry.17755_to; char* to + }, ; 9887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17756_from, ; char* from + ptr @.TypeMapEntry.17757_to; char* to + }, ; 9888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17758_from, ; char* from + ptr @.TypeMapEntry.17757_to; char* to + }, ; 9889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17759_from, ; char* from + ptr @.TypeMapEntry.17760_to; char* to + }, ; 9890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17761_from, ; char* from + ptr @.TypeMapEntry.17760_to; char* to + }, ; 9891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17762_from, ; char* from + ptr @.TypeMapEntry.17763_to; char* to + }, ; 9892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17764_from, ; char* from + ptr @.TypeMapEntry.17763_to; char* to + }, ; 9893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17765_from, ; char* from + ptr @.TypeMapEntry.17766_to; char* to + }, ; 9894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17767_from, ; char* from + ptr @.TypeMapEntry.17766_to; char* to + }, ; 9895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17768_from, ; char* from + ptr @.TypeMapEntry.17769_to; char* to + }, ; 9896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17770_from, ; char* from + ptr @.TypeMapEntry.17769_to; char* to + }, ; 9897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17771_from, ; char* from + ptr @.TypeMapEntry.17772_to; char* to + }, ; 9898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17773_from, ; char* from + ptr @.TypeMapEntry.17772_to; char* to + }, ; 9899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17774_from, ; char* from + ptr @.TypeMapEntry.17775_to; char* to + }, ; 9900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17776_from, ; char* from + ptr @.TypeMapEntry.17777_to; char* to + }, ; 9901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17778_from, ; char* from + ptr @.TypeMapEntry.17779_to; char* to + }, ; 9902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17780_from, ; char* from + ptr @.TypeMapEntry.17781_to; char* to + }, ; 9903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17782_from, ; char* from + ptr @.TypeMapEntry.17783_to; char* to + }, ; 9904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17784_from, ; char* from + ptr @.TypeMapEntry.17785_to; char* to + }, ; 9905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17786_from, ; char* from + ptr @.TypeMapEntry.17787_to; char* to + }, ; 9906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17788_from, ; char* from + ptr @.TypeMapEntry.17789_to; char* to + }, ; 9907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17790_from, ; char* from + ptr @.TypeMapEntry.17791_to; char* to + }, ; 9908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17792_from, ; char* from + ptr @.TypeMapEntry.17791_to; char* to + }, ; 9909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17793_from, ; char* from + ptr @.TypeMapEntry.17794_to; char* to + }, ; 9910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17795_from, ; char* from + ptr @.TypeMapEntry.17796_to; char* to + }, ; 9911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17797_from, ; char* from + ptr @.TypeMapEntry.17796_to; char* to + }, ; 9912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17798_from, ; char* from + ptr @.TypeMapEntry.17799_to; char* to + }, ; 9913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17800_from, ; char* from + ptr @.TypeMapEntry.17801_to; char* to + }, ; 9914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17802_from, ; char* from + ptr @.TypeMapEntry.17803_to; char* to + }, ; 9915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17804_from, ; char* from + ptr @.TypeMapEntry.17805_to; char* to + }, ; 9916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17806_from, ; char* from + ptr @.TypeMapEntry.17805_to; char* to + }, ; 9917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17807_from, ; char* from + ptr @.TypeMapEntry.17808_to; char* to + }, ; 9918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17809_from, ; char* from + ptr @.TypeMapEntry.17810_to; char* to + }, ; 9919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17811_from, ; char* from + ptr @.TypeMapEntry.17812_to; char* to + }, ; 9920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17813_from, ; char* from + ptr @.TypeMapEntry.17812_to; char* to + }, ; 9921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17814_from, ; char* from + ptr @.TypeMapEntry.17815_to; char* to + }, ; 9922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17816_from, ; char* from + ptr @.TypeMapEntry.17817_to; char* to + }, ; 9923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17818_from, ; char* from + ptr @.TypeMapEntry.17819_to; char* to + }, ; 9924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17820_from, ; char* from + ptr @.TypeMapEntry.17821_to; char* to + }, ; 9925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17822_from, ; char* from + ptr @.TypeMapEntry.17823_to; char* to + }, ; 9926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17824_from, ; char* from + ptr @.TypeMapEntry.17825_to; char* to + }, ; 9927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17826_from, ; char* from + ptr @.TypeMapEntry.17827_to; char* to + }, ; 9928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17828_from, ; char* from + ptr @.TypeMapEntry.17829_to; char* to + }, ; 9929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17830_from, ; char* from + ptr @.TypeMapEntry.17831_to; char* to + }, ; 9930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17832_from, ; char* from + ptr @.TypeMapEntry.17833_to; char* to + }, ; 9931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17834_from, ; char* from + ptr @.TypeMapEntry.17835_to; char* to + }, ; 9932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17836_from, ; char* from + ptr @.TypeMapEntry.17835_to; char* to + }, ; 9933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17837_from, ; char* from + ptr @.TypeMapEntry.17838_to; char* to + }, ; 9934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17839_from, ; char* from + ptr @.TypeMapEntry.17840_to; char* to + }, ; 9935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17841_from, ; char* from + ptr @.TypeMapEntry.17842_to; char* to + }, ; 9936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17843_from, ; char* from + ptr @.TypeMapEntry.17844_to; char* to + }, ; 9937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17845_from, ; char* from + ptr @.TypeMapEntry.17846_to; char* to + }, ; 9938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17847_from, ; char* from + ptr @.TypeMapEntry.17848_to; char* to + }, ; 9939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17849_from, ; char* from + ptr @.TypeMapEntry.17850_to; char* to + }, ; 9940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17851_from, ; char* from + ptr @.TypeMapEntry.17852_to; char* to + }, ; 9941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17853_from, ; char* from + ptr @.TypeMapEntry.17854_to; char* to + }, ; 9942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17855_from, ; char* from + ptr @.TypeMapEntry.17856_to; char* to + }, ; 9943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17857_from, ; char* from + ptr @.TypeMapEntry.17858_to; char* to + }, ; 9944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17859_from, ; char* from + ptr @.TypeMapEntry.17860_to; char* to + }, ; 9945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17861_from, ; char* from + ptr @.TypeMapEntry.17862_to; char* to + }, ; 9946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17863_from, ; char* from + ptr @.TypeMapEntry.17862_to; char* to + }, ; 9947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17864_from, ; char* from + ptr @.TypeMapEntry.17865_to; char* to + }, ; 9948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17866_from, ; char* from + ptr @.TypeMapEntry.17867_to; char* to + }, ; 9949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17868_from, ; char* from + ptr @.TypeMapEntry.17869_to; char* to + }, ; 9950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17870_from, ; char* from + ptr @.TypeMapEntry.17869_to; char* to + }, ; 9951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17871_from, ; char* from + ptr @.TypeMapEntry.17872_to; char* to + }, ; 9952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17873_from, ; char* from + ptr @.TypeMapEntry.17874_to; char* to + }, ; 9953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17875_from, ; char* from + ptr @.TypeMapEntry.17876_to; char* to + }, ; 9954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17877_from, ; char* from + ptr @.TypeMapEntry.17876_to; char* to + }, ; 9955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17878_from, ; char* from + ptr @.TypeMapEntry.17879_to; char* to + }, ; 9956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17880_from, ; char* from + ptr @.TypeMapEntry.17881_to; char* to + }, ; 9957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17882_from, ; char* from + ptr @.TypeMapEntry.17881_to; char* to + }, ; 9958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17883_from, ; char* from + ptr @.TypeMapEntry.17876_to; char* to + }, ; 9959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17884_from, ; char* from + ptr @.TypeMapEntry.17876_to; char* to + }, ; 9960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17885_from, ; char* from + ptr @.TypeMapEntry.17886_to; char* to + }, ; 9961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17887_from, ; char* from + ptr @.TypeMapEntry.17886_to; char* to + }, ; 9962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17888_from, ; char* from + ptr @.TypeMapEntry.17889_to; char* to + }, ; 9963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17890_from, ; char* from + ptr @.TypeMapEntry.17889_to; char* to + }, ; 9964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17891_from, ; char* from + ptr @.TypeMapEntry.17892_to; char* to + }, ; 9965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17893_from, ; char* from + ptr @.TypeMapEntry.17892_to; char* to + }, ; 9966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17894_from, ; char* from + ptr @.TypeMapEntry.17895_to; char* to + }, ; 9967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17896_from, ; char* from + ptr @.TypeMapEntry.17895_to; char* to + }, ; 9968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17897_from, ; char* from + ptr @.TypeMapEntry.17898_to; char* to + }, ; 9969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17899_from, ; char* from + ptr @.TypeMapEntry.17898_to; char* to + }, ; 9970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17900_from, ; char* from + ptr @.TypeMapEntry.17901_to; char* to + }, ; 9971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17902_from, ; char* from + ptr @.TypeMapEntry.17886_to; char* to + }, ; 9972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17903_from, ; char* from + ptr @.TypeMapEntry.17886_to; char* to + }, ; 9973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17904_from, ; char* from + ptr @.TypeMapEntry.17895_to; char* to + }, ; 9974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17905_from, ; char* from + ptr @.TypeMapEntry.17895_to; char* to + }, ; 9975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17906_from, ; char* from + ptr @.TypeMapEntry.17907_to; char* to + }, ; 9976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17908_from, ; char* from + ptr @.TypeMapEntry.17898_to; char* to + }, ; 9977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17909_from, ; char* from + ptr @.TypeMapEntry.17898_to; char* to + }, ; 9978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17910_from, ; char* from + ptr @.TypeMapEntry.17911_to; char* to + }, ; 9979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17912_from, ; char* from + ptr @.TypeMapEntry.17913_to; char* to + }, ; 9980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17914_from, ; char* from + ptr @.TypeMapEntry.17915_to; char* to + }, ; 9981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17916_from, ; char* from + ptr @.TypeMapEntry.17917_to; char* to + }, ; 9982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17918_from, ; char* from + ptr @.TypeMapEntry.17919_to; char* to + }, ; 9983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17920_from, ; char* from + ptr @.TypeMapEntry.17921_to; char* to + }, ; 9984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17922_from, ; char* from + ptr @.TypeMapEntry.17923_to; char* to + }, ; 9985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17924_from, ; char* from + ptr @.TypeMapEntry.17925_to; char* to + }, ; 9986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17926_from, ; char* from + ptr @.TypeMapEntry.17927_to; char* to + }, ; 9987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17928_from, ; char* from + ptr @.TypeMapEntry.17929_to; char* to + }, ; 9988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17930_from, ; char* from + ptr @.TypeMapEntry.17931_to; char* to + }, ; 9989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17932_from, ; char* from + ptr @.TypeMapEntry.17933_to; char* to + }, ; 9990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17934_from, ; char* from + ptr @.TypeMapEntry.17935_to; char* to + }, ; 9991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17936_from, ; char* from + ptr @.TypeMapEntry.17937_to; char* to + }, ; 9992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17938_from, ; char* from + ptr @.TypeMapEntry.17939_to; char* to + }, ; 9993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17940_from, ; char* from + ptr @.TypeMapEntry.17941_to; char* to + }, ; 9994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17942_from, ; char* from + ptr @.TypeMapEntry.17943_to; char* to + }, ; 9995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17944_from, ; char* from + ptr @.TypeMapEntry.17943_to; char* to + }, ; 9996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17945_from, ; char* from + ptr @.TypeMapEntry.17946_to; char* to + }, ; 9997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17947_from, ; char* from + ptr @.TypeMapEntry.17948_to; char* to + }, ; 9998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17949_from, ; char* from + ptr @.TypeMapEntry.17948_to; char* to + }, ; 9999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17950_from, ; char* from + ptr @.TypeMapEntry.17951_to; char* to + }, ; 10000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17952_from, ; char* from + ptr @.TypeMapEntry.17953_to; char* to + }, ; 10001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17954_from, ; char* from + ptr @.TypeMapEntry.17955_to; char* to + }, ; 10002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17956_from, ; char* from + ptr @.TypeMapEntry.17955_to; char* to + }, ; 10003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17957_from, ; char* from + ptr @.TypeMapEntry.17958_to; char* to + }, ; 10004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17959_from, ; char* from + ptr @.TypeMapEntry.17960_to; char* to + }, ; 10005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17961_from, ; char* from + ptr @.TypeMapEntry.17962_to; char* to + }, ; 10006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17963_from, ; char* from + ptr @.TypeMapEntry.17960_to; char* to + }, ; 10007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17964_from, ; char* from + ptr @.TypeMapEntry.17965_to; char* to + }, ; 10008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17966_from, ; char* from + ptr @.TypeMapEntry.17967_to; char* to + }, ; 10009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17968_from, ; char* from + ptr @.TypeMapEntry.17969_to; char* to + }, ; 10010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17970_from, ; char* from + ptr @.TypeMapEntry.17971_to; char* to + }, ; 10011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17972_from, ; char* from + ptr @.TypeMapEntry.17973_to; char* to + }, ; 10012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17974_from, ; char* from + ptr @.TypeMapEntry.17973_to; char* to + }, ; 10013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17975_from, ; char* from + ptr @.TypeMapEntry.17976_to; char* to + }, ; 10014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17977_from, ; char* from + ptr @.TypeMapEntry.17976_to; char* to + }, ; 10015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17978_from, ; char* from + ptr @.TypeMapEntry.17979_to; char* to + }, ; 10016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17980_from, ; char* from + ptr @.TypeMapEntry.17979_to; char* to + }, ; 10017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17981_from, ; char* from + ptr @.TypeMapEntry.17982_to; char* to + }, ; 10018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17983_from, ; char* from + ptr @.TypeMapEntry.17982_to; char* to + }, ; 10019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17984_from, ; char* from + ptr @.TypeMapEntry.17985_to; char* to + }, ; 10020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17986_from, ; char* from + ptr @.TypeMapEntry.17985_to; char* to + }, ; 10021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17987_from, ; char* from + ptr @.TypeMapEntry.17955_to; char* to + }, ; 10022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17988_from, ; char* from + ptr @.TypeMapEntry.17955_to; char* to + }, ; 10023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17989_from, ; char* from + ptr @.TypeMapEntry.17990_to; char* to + }, ; 10024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17991_from, ; char* from + ptr @.TypeMapEntry.17990_to; char* to + }, ; 10025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17992_from, ; char* from + ptr @.TypeMapEntry.17993_to; char* to + }, ; 10026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17994_from, ; char* from + ptr @.TypeMapEntry.17993_to; char* to + }, ; 10027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17995_from, ; char* from + ptr @.TypeMapEntry.17996_to; char* to + }, ; 10028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17997_from, ; char* from + ptr @.TypeMapEntry.17996_to; char* to + }, ; 10029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17998_from, ; char* from + ptr @.TypeMapEntry.17999_to; char* to + }, ; 10030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18000_from, ; char* from + ptr @.TypeMapEntry.17999_to; char* to + }, ; 10031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18001_from, ; char* from + ptr @.TypeMapEntry.18002_to; char* to + }, ; 10032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18003_from, ; char* from + ptr @.TypeMapEntry.18002_to; char* to + }, ; 10033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18004_from, ; char* from + ptr @.TypeMapEntry.18005_to; char* to + }, ; 10034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18006_from, ; char* from + ptr @.TypeMapEntry.18005_to; char* to + }, ; 10035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18007_from, ; char* from + ptr @.TypeMapEntry.18008_to; char* to + }, ; 10036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18009_from, ; char* from + ptr @.TypeMapEntry.18008_to; char* to + }, ; 10037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18010_from, ; char* from + ptr @.TypeMapEntry.18011_to; char* to + }, ; 10038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18012_from, ; char* from + ptr @.TypeMapEntry.18013_to; char* to + }, ; 10039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18014_from, ; char* from + ptr @.TypeMapEntry.18015_to; char* to + }, ; 10040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18016_from, ; char* from + ptr @.TypeMapEntry.18017_to; char* to + }, ; 10041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18018_from, ; char* from + ptr @.TypeMapEntry.18019_to; char* to + }, ; 10042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18020_from, ; char* from + ptr @.TypeMapEntry.18021_to; char* to + }, ; 10043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18022_from, ; char* from + ptr @.TypeMapEntry.18023_to; char* to + }, ; 10044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18024_from, ; char* from + ptr @.TypeMapEntry.18025_to; char* to + }, ; 10045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18026_from, ; char* from + ptr @.TypeMapEntry.18027_to; char* to + }, ; 10046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18028_from, ; char* from + ptr @.TypeMapEntry.18029_to; char* to + }, ; 10047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18030_from, ; char* from + ptr @.TypeMapEntry.18031_to; char* to + }, ; 10048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18032_from, ; char* from + ptr @.TypeMapEntry.18033_to; char* to + }, ; 10049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18034_from, ; char* from + ptr @.TypeMapEntry.18035_to; char* to + }, ; 10050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18036_from, ; char* from + ptr @.TypeMapEntry.18037_to; char* to + }, ; 10051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18038_from, ; char* from + ptr @.TypeMapEntry.18039_to; char* to + }, ; 10052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18040_from, ; char* from + ptr @.TypeMapEntry.18039_to; char* to + }, ; 10053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18041_from, ; char* from + ptr @.TypeMapEntry.18042_to; char* to + }, ; 10054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18043_from, ; char* from + ptr @.TypeMapEntry.18044_to; char* to + }, ; 10055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18045_from, ; char* from + ptr @.TypeMapEntry.18044_to; char* to + }, ; 10056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18046_from, ; char* from + ptr @.TypeMapEntry.18047_to; char* to + }, ; 10057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18048_from, ; char* from + ptr @.TypeMapEntry.18047_to; char* to + }, ; 10058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18049_from, ; char* from + ptr @.TypeMapEntry.18050_to; char* to + }, ; 10059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18051_from, ; char* from + ptr @.TypeMapEntry.18050_to; char* to + }, ; 10060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18052_from, ; char* from + ptr @.TypeMapEntry.18053_to; char* to + }, ; 10061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18054_from, ; char* from + ptr @.TypeMapEntry.18053_to; char* to + }, ; 10062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18055_from, ; char* from + ptr @.TypeMapEntry.18056_to; char* to + }, ; 10063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18057_from, ; char* from + ptr @.TypeMapEntry.18058_to; char* to + }, ; 10064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18059_from, ; char* from + ptr @.TypeMapEntry.18060_to; char* to + }, ; 10065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18061_from, ; char* from + ptr @.TypeMapEntry.18058_to; char* to + }, ; 10066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18062_from, ; char* from + ptr @.TypeMapEntry.18063_to; char* to + }, ; 10067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18064_from, ; char* from + ptr @.TypeMapEntry.18065_to; char* to + }, ; 10068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18066_from, ; char* from + ptr @.TypeMapEntry.18067_to; char* to + }, ; 10069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18068_from, ; char* from + ptr @.TypeMapEntry.18069_to; char* to + }, ; 10070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18070_from, ; char* from + ptr @.TypeMapEntry.18071_to; char* to + }, ; 10071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18072_from, ; char* from + ptr @.TypeMapEntry.18073_to; char* to + }, ; 10072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18074_from, ; char* from + ptr @.TypeMapEntry.18073_to; char* to + }, ; 10073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18075_from, ; char* from + ptr @.TypeMapEntry.18076_to; char* to + }, ; 10074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18077_from, ; char* from + ptr @.TypeMapEntry.18078_to; char* to + }, ; 10075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18079_from, ; char* from + ptr @.TypeMapEntry.18080_to; char* to + }, ; 10076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18081_from, ; char* from + ptr @.TypeMapEntry.18082_to; char* to + }, ; 10077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18083_from, ; char* from + ptr @.TypeMapEntry.18084_to; char* to + }, ; 10078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18085_from, ; char* from + ptr @.TypeMapEntry.18086_to; char* to + }, ; 10079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18087_from, ; char* from + ptr @.TypeMapEntry.18088_to; char* to + }, ; 10080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18089_from, ; char* from + ptr @.TypeMapEntry.18090_to; char* to + }, ; 10081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18091_from, ; char* from + ptr @.TypeMapEntry.18092_to; char* to + }, ; 10082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18093_from, ; char* from + ptr @.TypeMapEntry.18094_to; char* to + }, ; 10083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18095_from, ; char* from + ptr @.TypeMapEntry.18096_to; char* to + }, ; 10084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18097_from, ; char* from + ptr @.TypeMapEntry.18098_to; char* to + }, ; 10085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18099_from, ; char* from + ptr @.TypeMapEntry.18100_to; char* to + }, ; 10086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18101_from, ; char* from + ptr @.TypeMapEntry.18102_to; char* to + }, ; 10087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18103_from, ; char* from + ptr @.TypeMapEntry.18104_to; char* to + }, ; 10088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18105_from, ; char* from + ptr @.TypeMapEntry.18102_to; char* to + }, ; 10089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18106_from, ; char* from + ptr @.TypeMapEntry.18107_to; char* to + }, ; 10090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18108_from, ; char* from + ptr @.TypeMapEntry.18109_to; char* to + }, ; 10091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18110_from, ; char* from + ptr @.TypeMapEntry.17996_to; char* to + }, ; 10092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18111_from, ; char* from + ptr @.TypeMapEntry.17996_to; char* to + }, ; 10093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18112_from, ; char* from + ptr @.TypeMapEntry.18113_to; char* to + }, ; 10094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18114_from, ; char* from + ptr @.TypeMapEntry.18115_to; char* to + }, ; 10095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18116_from, ; char* from + ptr @.TypeMapEntry.18117_to; char* to + }, ; 10096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18118_from, ; char* from + ptr @.TypeMapEntry.18119_to; char* to + }, ; 10097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18120_from, ; char* from + ptr @.TypeMapEntry.18119_to; char* to + }, ; 10098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18121_from, ; char* from + ptr @.TypeMapEntry.18122_to; char* to + }, ; 10099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18123_from, ; char* from + ptr @.TypeMapEntry.18115_to; char* to + }, ; 10100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18124_from, ; char* from + ptr @.TypeMapEntry.18125_to; char* to + }, ; 10101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18126_from, ; char* from + ptr @.TypeMapEntry.18125_to; char* to + }, ; 10102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18127_from, ; char* from + ptr @.TypeMapEntry.18128_to; char* to + }, ; 10103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18129_from, ; char* from + ptr @.TypeMapEntry.18128_to; char* to + }, ; 10104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18130_from, ; char* from + ptr @.TypeMapEntry.18131_to; char* to + }, ; 10105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18132_from, ; char* from + ptr @.TypeMapEntry.18133_to; char* to + }, ; 10106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18134_from, ; char* from + ptr @.TypeMapEntry.18135_to; char* to + }, ; 10107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18136_from, ; char* from + ptr @.TypeMapEntry.18135_to; char* to + }, ; 10108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18137_from, ; char* from + ptr @.TypeMapEntry.18138_to; char* to + }, ; 10109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18139_from, ; char* from + ptr @.TypeMapEntry.18140_to; char* to + }, ; 10110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18141_from, ; char* from + ptr @.TypeMapEntry.18142_to; char* to + }, ; 10111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18143_from, ; char* from + ptr @.TypeMapEntry.18144_to; char* to + }, ; 10112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18145_from, ; char* from + ptr @.TypeMapEntry.18146_to; char* to + }, ; 10113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18147_from, ; char* from + ptr @.TypeMapEntry.18148_to; char* to + }, ; 10114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18149_from, ; char* from + ptr @.TypeMapEntry.18150_to; char* to + }, ; 10115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18151_from, ; char* from + ptr @.TypeMapEntry.18150_to; char* to + }, ; 10116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18152_from, ; char* from + ptr @.TypeMapEntry.18153_to; char* to + }, ; 10117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18154_from, ; char* from + ptr @.TypeMapEntry.18155_to; char* to + }, ; 10118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18156_from, ; char* from + ptr @.TypeMapEntry.18157_to; char* to + }, ; 10119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18158_from, ; char* from + ptr @.TypeMapEntry.18157_to; char* to + }, ; 10120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18159_from, ; char* from + ptr @.TypeMapEntry.18160_to; char* to + }, ; 10121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18161_from, ; char* from + ptr @.TypeMapEntry.18160_to; char* to + }, ; 10122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18162_from, ; char* from + ptr @.TypeMapEntry.18163_to; char* to + }, ; 10123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18164_from, ; char* from + ptr @.TypeMapEntry.18163_to; char* to + }, ; 10124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18165_from, ; char* from + ptr @.TypeMapEntry.18166_to; char* to + }, ; 10125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18167_from, ; char* from + ptr @.TypeMapEntry.18166_to; char* to + }, ; 10126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18168_from, ; char* from + ptr @.TypeMapEntry.18169_to; char* to + }, ; 10127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18170_from, ; char* from + ptr @.TypeMapEntry.18169_to; char* to + }, ; 10128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18171_from, ; char* from + ptr @.TypeMapEntry.18172_to; char* to + }, ; 10129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18173_from, ; char* from + ptr @.TypeMapEntry.18172_to; char* to + }, ; 10130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18174_from, ; char* from + ptr @.TypeMapEntry.18175_to; char* to + }, ; 10131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18176_from, ; char* from + ptr @.TypeMapEntry.18175_to; char* to + }, ; 10132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18177_from, ; char* from + ptr @.TypeMapEntry.18178_to; char* to + }, ; 10133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18179_from, ; char* from + ptr @.TypeMapEntry.18178_to; char* to + }, ; 10134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18180_from, ; char* from + ptr @.TypeMapEntry.18181_to; char* to + }, ; 10135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18182_from, ; char* from + ptr @.TypeMapEntry.18181_to; char* to + }, ; 10136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18183_from, ; char* from + ptr @.TypeMapEntry.18184_to; char* to + }, ; 10137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18185_from, ; char* from + ptr @.TypeMapEntry.18186_to; char* to + }, ; 10138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18187_from, ; char* from + ptr @.TypeMapEntry.18188_to; char* to + }, ; 10139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18189_from, ; char* from + ptr @.TypeMapEntry.18190_to; char* to + }, ; 10140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18191_from, ; char* from + ptr @.TypeMapEntry.18192_to; char* to + }, ; 10141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18193_from, ; char* from + ptr @.TypeMapEntry.18194_to; char* to + }, ; 10142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18195_from, ; char* from + ptr @.TypeMapEntry.18196_to; char* to + }, ; 10143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18197_from, ; char* from + ptr @.TypeMapEntry.18198_to; char* to + }, ; 10144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18199_from, ; char* from + ptr @.TypeMapEntry.18200_to; char* to + }, ; 10145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18201_from, ; char* from + ptr @.TypeMapEntry.18202_to; char* to + }, ; 10146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18203_from, ; char* from + ptr @.TypeMapEntry.18204_to; char* to + }, ; 10147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18205_from, ; char* from + ptr @.TypeMapEntry.18206_to; char* to + }, ; 10148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18207_from, ; char* from + ptr @.TypeMapEntry.18208_to; char* to + }, ; 10149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18209_from, ; char* from + ptr @.TypeMapEntry.18210_to; char* to + }, ; 10150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18211_from, ; char* from + ptr @.TypeMapEntry.18212_to; char* to + }, ; 10151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18213_from, ; char* from + ptr @.TypeMapEntry.18214_to; char* to + }, ; 10152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18215_from, ; char* from + ptr @.TypeMapEntry.18216_to; char* to + }, ; 10153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18217_from, ; char* from + ptr @.TypeMapEntry.18218_to; char* to + }, ; 10154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18219_from, ; char* from + ptr @.TypeMapEntry.18220_to; char* to + }, ; 10155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18221_from, ; char* from + ptr @.TypeMapEntry.18222_to; char* to + }, ; 10156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18223_from, ; char* from + ptr @.TypeMapEntry.18224_to; char* to + }, ; 10157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18225_from, ; char* from + ptr @.TypeMapEntry.18226_to; char* to + }, ; 10158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18227_from, ; char* from + ptr @.TypeMapEntry.18228_to; char* to + }, ; 10159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18229_from, ; char* from + ptr @.TypeMapEntry.18228_to; char* to + }, ; 10160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18230_from, ; char* from + ptr @.TypeMapEntry.18231_to; char* to + }, ; 10161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18232_from, ; char* from + ptr @.TypeMapEntry.18233_to; char* to + }, ; 10162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18234_from, ; char* from + ptr @.TypeMapEntry.18235_to; char* to + }, ; 10163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18236_from, ; char* from + ptr @.TypeMapEntry.18237_to; char* to + }, ; 10164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18238_from, ; char* from + ptr @.TypeMapEntry.18239_to; char* to + }, ; 10165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18240_from, ; char* from + ptr @.TypeMapEntry.18241_to; char* to + }, ; 10166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18242_from, ; char* from + ptr @.TypeMapEntry.18243_to; char* to + }, ; 10167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18244_from, ; char* from + ptr @.TypeMapEntry.18008_to; char* to + }, ; 10168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18245_from, ; char* from + ptr @.TypeMapEntry.18008_to; char* to + }, ; 10169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18246_from, ; char* from + ptr @.TypeMapEntry.18247_to; char* to + }, ; 10170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18248_from, ; char* from + ptr @.TypeMapEntry.18247_to; char* to + }, ; 10171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18249_from, ; char* from + ptr @.TypeMapEntry.18250_to; char* to + }, ; 10172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18251_from, ; char* from + ptr @.TypeMapEntry.18252_to; char* to + }, ; 10173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18253_from, ; char* from + ptr @.TypeMapEntry.18254_to; char* to + }, ; 10174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18255_from, ; char* from + ptr @.TypeMapEntry.18256_to; char* to + }, ; 10175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18257_from, ; char* from + ptr @.TypeMapEntry.18258_to; char* to + }, ; 10176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18259_from, ; char* from + ptr @.TypeMapEntry.18260_to; char* to + }, ; 10177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18261_from, ; char* from + ptr @.TypeMapEntry.18262_to; char* to + }, ; 10178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18263_from, ; char* from + ptr @.TypeMapEntry.18264_to; char* to + }, ; 10179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18265_from, ; char* from + ptr @.TypeMapEntry.18266_to; char* to + }, ; 10180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18267_from, ; char* from + ptr @.TypeMapEntry.18268_to; char* to + }, ; 10181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18269_from, ; char* from + ptr @.TypeMapEntry.18270_to; char* to + }, ; 10182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18271_from, ; char* from + ptr @.TypeMapEntry.18272_to; char* to + }, ; 10183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18273_from, ; char* from + ptr @.TypeMapEntry.18274_to; char* to + }, ; 10184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18275_from, ; char* from + ptr @.TypeMapEntry.18276_to; char* to + }, ; 10185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18277_from, ; char* from + ptr @.TypeMapEntry.18276_to; char* to + }, ; 10186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18278_from, ; char* from + ptr @.TypeMapEntry.18279_to; char* to + }, ; 10187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18280_from, ; char* from + ptr @.TypeMapEntry.18281_to; char* to + }, ; 10188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18282_from, ; char* from + ptr @.TypeMapEntry.18283_to; char* to + }, ; 10189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18284_from, ; char* from + ptr @.TypeMapEntry.18285_to; char* to + }, ; 10190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18286_from, ; char* from + ptr @.TypeMapEntry.18287_to; char* to + }, ; 10191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18288_from, ; char* from + ptr @.TypeMapEntry.18289_to; char* to + }, ; 10192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18290_from, ; char* from + ptr @.TypeMapEntry.18291_to; char* to + }, ; 10193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18292_from, ; char* from + ptr @.TypeMapEntry.18291_to; char* to + }, ; 10194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18293_from, ; char* from + ptr @.TypeMapEntry.18294_to; char* to + }, ; 10195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18295_from, ; char* from + ptr @.TypeMapEntry.18296_to; char* to + }, ; 10196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18297_from, ; char* from + ptr @.TypeMapEntry.18296_to; char* to + }, ; 10197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18298_from, ; char* from + ptr @.TypeMapEntry.18299_to; char* to + }, ; 10198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18300_from, ; char* from + ptr @.TypeMapEntry.18299_to; char* to + }, ; 10199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18301_from, ; char* from + ptr @.TypeMapEntry.18302_to; char* to + }, ; 10200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18303_from, ; char* from + ptr @.TypeMapEntry.18304_to; char* to + }, ; 10201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18305_from, ; char* from + ptr @.TypeMapEntry.18304_to; char* to + }, ; 10202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18306_from, ; char* from + ptr @.TypeMapEntry.18307_to; char* to + }, ; 10203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18308_from, ; char* from + ptr @.TypeMapEntry.18307_to; char* to + }, ; 10204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18309_from, ; char* from + ptr @.TypeMapEntry.18310_to; char* to + }, ; 10205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18311_from, ; char* from + ptr @.TypeMapEntry.18312_to; char* to + }, ; 10206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18313_from, ; char* from + ptr @.TypeMapEntry.18314_to; char* to + }, ; 10207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18315_from, ; char* from + ptr @.TypeMapEntry.18316_to; char* to + }, ; 10208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18317_from, ; char* from + ptr @.TypeMapEntry.18318_to; char* to + }, ; 10209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18319_from, ; char* from + ptr @.TypeMapEntry.18318_to; char* to + }, ; 10210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18320_from, ; char* from + ptr @.TypeMapEntry.18321_to; char* to + }, ; 10211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18322_from, ; char* from + ptr @.TypeMapEntry.18323_to; char* to + }, ; 10212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18324_from, ; char* from + ptr @.TypeMapEntry.18325_to; char* to + }, ; 10213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18326_from, ; char* from + ptr @.TypeMapEntry.18325_to; char* to + }, ; 10214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18327_from, ; char* from + ptr @.TypeMapEntry.18328_to; char* to + }, ; 10215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18329_from, ; char* from + ptr @.TypeMapEntry.18328_to; char* to + }, ; 10216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18330_from, ; char* from + ptr @.TypeMapEntry.18331_to; char* to + }, ; 10217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18332_from, ; char* from + ptr @.TypeMapEntry.18331_to; char* to + }, ; 10218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18333_from, ; char* from + ptr @.TypeMapEntry.18334_to; char* to + }, ; 10219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18335_from, ; char* from + ptr @.TypeMapEntry.18334_to; char* to + }, ; 10220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18336_from, ; char* from + ptr @.TypeMapEntry.18337_to; char* to + }, ; 10221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18338_from, ; char* from + ptr @.TypeMapEntry.18339_to; char* to + }, ; 10222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18340_from, ; char* from + ptr @.TypeMapEntry.18339_to; char* to + }, ; 10223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18341_from, ; char* from + ptr @.TypeMapEntry.18342_to; char* to + }, ; 10224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18343_from, ; char* from + ptr @.TypeMapEntry.18342_to; char* to + }, ; 10225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18344_from, ; char* from + ptr @.TypeMapEntry.18345_to; char* to + }, ; 10226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18346_from, ; char* from + ptr @.TypeMapEntry.18345_to; char* to + }, ; 10227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18347_from, ; char* from + ptr @.TypeMapEntry.18348_to; char* to + }, ; 10228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18349_from, ; char* from + ptr @.TypeMapEntry.18348_to; char* to + }, ; 10229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18350_from, ; char* from + ptr @.TypeMapEntry.18351_to; char* to + }, ; 10230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18352_from, ; char* from + ptr @.TypeMapEntry.18351_to; char* to + }, ; 10231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18353_from, ; char* from + ptr @.TypeMapEntry.18354_to; char* to + }, ; 10232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18355_from, ; char* from + ptr @.TypeMapEntry.18354_to; char* to + }, ; 10233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18356_from, ; char* from + ptr @.TypeMapEntry.18357_to; char* to + }, ; 10234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18358_from, ; char* from + ptr @.TypeMapEntry.18357_to; char* to + }, ; 10235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18359_from, ; char* from + ptr @.TypeMapEntry.18360_to; char* to + }, ; 10236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18361_from, ; char* from + ptr @.TypeMapEntry.18362_to; char* to + }, ; 10237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18363_from, ; char* from + ptr @.TypeMapEntry.18364_to; char* to + }, ; 10238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18365_from, ; char* from + ptr @.TypeMapEntry.18366_to; char* to + }, ; 10239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18367_from, ; char* from + ptr @.TypeMapEntry.18368_to; char* to + }, ; 10240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18369_from, ; char* from + ptr @.TypeMapEntry.18370_to; char* to + }, ; 10241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18371_from, ; char* from + ptr @.TypeMapEntry.18370_to; char* to + }, ; 10242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18372_from, ; char* from + ptr @.TypeMapEntry.18373_to; char* to + }, ; 10243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18374_from, ; char* from + ptr @.TypeMapEntry.18375_to; char* to + }, ; 10244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18376_from, ; char* from + ptr @.TypeMapEntry.18377_to; char* to + }, ; 10245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18378_from, ; char* from + ptr @.TypeMapEntry.18379_to; char* to + }, ; 10246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18380_from, ; char* from + ptr @.TypeMapEntry.18381_to; char* to + }, ; 10247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18382_from, ; char* from + ptr @.TypeMapEntry.18383_to; char* to + }, ; 10248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18384_from, ; char* from + ptr @.TypeMapEntry.18385_to; char* to + }, ; 10249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18386_from, ; char* from + ptr @.TypeMapEntry.18387_to; char* to + }, ; 10250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18388_from, ; char* from + ptr @.TypeMapEntry.18389_to; char* to + }, ; 10251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18390_from, ; char* from + ptr @.TypeMapEntry.18391_to; char* to + }, ; 10252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18392_from, ; char* from + ptr @.TypeMapEntry.18393_to; char* to + }, ; 10253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18394_from, ; char* from + ptr @.TypeMapEntry.18393_to; char* to + }, ; 10254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18395_from, ; char* from + ptr @.TypeMapEntry.18396_to; char* to + }, ; 10255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18397_from, ; char* from + ptr @.TypeMapEntry.18396_to; char* to + }, ; 10256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18398_from, ; char* from + ptr @.TypeMapEntry.18399_to; char* to + }, ; 10257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18400_from, ; char* from + ptr @.TypeMapEntry.18399_to; char* to + }, ; 10258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18401_from, ; char* from + ptr @.TypeMapEntry.18402_to; char* to + }, ; 10259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18403_from, ; char* from + ptr @.TypeMapEntry.18404_to; char* to + }, ; 10260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18405_from, ; char* from + ptr @.TypeMapEntry.18406_to; char* to + }, ; 10261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18407_from, ; char* from + ptr @.TypeMapEntry.18406_to; char* to + }, ; 10262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18408_from, ; char* from + ptr @.TypeMapEntry.18409_to; char* to + }, ; 10263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18410_from, ; char* from + ptr @.TypeMapEntry.18411_to; char* to + }, ; 10264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18412_from, ; char* from + ptr @.TypeMapEntry.18411_to; char* to + }, ; 10265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18413_from, ; char* from + ptr @.TypeMapEntry.18414_to; char* to + }, ; 10266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18415_from, ; char* from + ptr @.TypeMapEntry.18416_to; char* to + }, ; 10267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18417_from, ; char* from + ptr @.TypeMapEntry.18418_to; char* to + }, ; 10268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18419_from, ; char* from + ptr @.TypeMapEntry.18420_to; char* to + }, ; 10269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18421_from, ; char* from + ptr @.TypeMapEntry.18422_to; char* to + }, ; 10270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18423_from, ; char* from + ptr @.TypeMapEntry.18424_to; char* to + }, ; 10271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18425_from, ; char* from + ptr @.TypeMapEntry.18426_to; char* to + }, ; 10272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18427_from, ; char* from + ptr @.TypeMapEntry.18428_to; char* to + }, ; 10273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18429_from, ; char* from + ptr @.TypeMapEntry.18430_to; char* to + }, ; 10274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18431_from, ; char* from + ptr @.TypeMapEntry.18432_to; char* to + }, ; 10275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18433_from, ; char* from + ptr @.TypeMapEntry.18432_to; char* to + }, ; 10276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18434_from, ; char* from + ptr @.TypeMapEntry.18435_to; char* to + }, ; 10277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18436_from, ; char* from + ptr @.TypeMapEntry.18437_to; char* to + }, ; 10278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18438_from, ; char* from + ptr @.TypeMapEntry.18439_to; char* to + }, ; 10279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18440_from, ; char* from + ptr @.TypeMapEntry.18439_to; char* to + }, ; 10280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18441_from, ; char* from + ptr @.TypeMapEntry.18442_to; char* to + }, ; 10281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18443_from, ; char* from + ptr @.TypeMapEntry.18444_to; char* to + }, ; 10282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18445_from, ; char* from + ptr @.TypeMapEntry.18446_to; char* to + }, ; 10283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18447_from, ; char* from + ptr @.TypeMapEntry.18446_to; char* to + }, ; 10284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18448_from, ; char* from + ptr @.TypeMapEntry.18449_to; char* to + }, ; 10285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18450_from, ; char* from + ptr @.TypeMapEntry.18451_to; char* to + }, ; 10286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18452_from, ; char* from + ptr @.TypeMapEntry.18453_to; char* to + }, ; 10287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18454_from, ; char* from + ptr @.TypeMapEntry.18453_to; char* to + }, ; 10288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18455_from, ; char* from + ptr @.TypeMapEntry.18456_to; char* to + }, ; 10289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18457_from, ; char* from + ptr @.TypeMapEntry.18458_to; char* to + }, ; 10290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18459_from, ; char* from + ptr @.TypeMapEntry.18460_to; char* to + }, ; 10291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18461_from, ; char* from + ptr @.TypeMapEntry.18462_to; char* to + }, ; 10292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18463_from, ; char* from + ptr @.TypeMapEntry.18464_to; char* to + }, ; 10293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18465_from, ; char* from + ptr @.TypeMapEntry.18464_to; char* to + }, ; 10294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18466_from, ; char* from + ptr @.TypeMapEntry.18467_to; char* to + }, ; 10295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18468_from, ; char* from + ptr @.TypeMapEntry.18469_to; char* to + }, ; 10296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18470_from, ; char* from + ptr @.TypeMapEntry.18469_to; char* to + }, ; 10297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18471_from, ; char* from + ptr @.TypeMapEntry.18472_to; char* to + }, ; 10298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18473_from, ; char* from + ptr @.TypeMapEntry.18472_to; char* to + }, ; 10299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18474_from, ; char* from + ptr @.TypeMapEntry.18475_to; char* to + }, ; 10300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18476_from, ; char* from + ptr @.TypeMapEntry.18475_to; char* to + }, ; 10301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18477_from, ; char* from + ptr @.TypeMapEntry.18478_to; char* to + }, ; 10302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18479_from, ; char* from + ptr @.TypeMapEntry.18480_to; char* to + }, ; 10303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18481_from, ; char* from + ptr @.TypeMapEntry.18482_to; char* to + }, ; 10304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18483_from, ; char* from + ptr @.TypeMapEntry.18484_to; char* to + }, ; 10305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18485_from, ; char* from + ptr @.TypeMapEntry.18486_to; char* to + }, ; 10306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18487_from, ; char* from + ptr @.TypeMapEntry.18488_to; char* to + }, ; 10307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18489_from, ; char* from + ptr @.TypeMapEntry.18490_to; char* to + }, ; 10308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18491_from, ; char* from + ptr @.TypeMapEntry.18490_to; char* to + }, ; 10309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18492_from, ; char* from + ptr @.TypeMapEntry.18493_to; char* to + }, ; 10310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18494_from, ; char* from + ptr @.TypeMapEntry.18495_to; char* to + }, ; 10311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18496_from, ; char* from + ptr @.TypeMapEntry.18495_to; char* to + }, ; 10312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18497_from, ; char* from + ptr @.TypeMapEntry.18498_to; char* to + }, ; 10313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18499_from, ; char* from + ptr @.TypeMapEntry.18500_to; char* to + }, ; 10314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18501_from, ; char* from + ptr @.TypeMapEntry.18498_to; char* to + }, ; 10315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18502_from, ; char* from + ptr @.TypeMapEntry.18503_to; char* to + }, ; 10316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18504_from, ; char* from + ptr @.TypeMapEntry.18503_to; char* to + }, ; 10317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18505_from, ; char* from + ptr @.TypeMapEntry.18506_to; char* to + }, ; 10318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18507_from, ; char* from + ptr @.TypeMapEntry.18506_to; char* to + }, ; 10319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18508_from, ; char* from + ptr @.TypeMapEntry.18509_to; char* to + }, ; 10320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18510_from, ; char* from + ptr @.TypeMapEntry.18509_to; char* to + }, ; 10321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18511_from, ; char* from + ptr @.TypeMapEntry.18512_to; char* to + }, ; 10322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18513_from, ; char* from + ptr @.TypeMapEntry.18512_to; char* to + }, ; 10323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18514_from, ; char* from + ptr @.TypeMapEntry.18515_to; char* to + }, ; 10324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18516_from, ; char* from + ptr @.TypeMapEntry.18515_to; char* to + }, ; 10325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18517_from, ; char* from + ptr @.TypeMapEntry.18518_to; char* to + }, ; 10326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18519_from, ; char* from + ptr @.TypeMapEntry.18518_to; char* to + }, ; 10327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18520_from, ; char* from + ptr @.TypeMapEntry.18521_to; char* to + }, ; 10328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18522_from, ; char* from + ptr @.TypeMapEntry.18521_to; char* to + }, ; 10329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18523_from, ; char* from + ptr @.TypeMapEntry.18524_to; char* to + }, ; 10330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18525_from, ; char* from + ptr @.TypeMapEntry.18524_to; char* to + }, ; 10331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18526_from, ; char* from + ptr @.TypeMapEntry.18527_to; char* to + }, ; 10332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18528_from, ; char* from + ptr @.TypeMapEntry.18527_to; char* to + }, ; 10333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18529_from, ; char* from + ptr @.TypeMapEntry.18530_to; char* to + }, ; 10334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18531_from, ; char* from + ptr @.TypeMapEntry.18530_to; char* to + }, ; 10335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18532_from, ; char* from + ptr @.TypeMapEntry.18533_to; char* to + }, ; 10336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18534_from, ; char* from + ptr @.TypeMapEntry.18533_to; char* to + }, ; 10337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18535_from, ; char* from + ptr @.TypeMapEntry.18536_to; char* to + }, ; 10338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18537_from, ; char* from + ptr @.TypeMapEntry.18538_to; char* to + }, ; 10339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18539_from, ; char* from + ptr @.TypeMapEntry.18540_to; char* to + }, ; 10340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18541_from, ; char* from + ptr @.TypeMapEntry.18542_to; char* to + }, ; 10341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18543_from, ; char* from + ptr @.TypeMapEntry.18544_to; char* to + }, ; 10342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18545_from, ; char* from + ptr @.TypeMapEntry.18544_to; char* to + }, ; 10343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18546_from, ; char* from + ptr @.TypeMapEntry.18547_to; char* to + }, ; 10344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18548_from, ; char* from + ptr @.TypeMapEntry.18549_to; char* to + }, ; 10345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18550_from, ; char* from + ptr @.TypeMapEntry.18551_to; char* to + }, ; 10346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18552_from, ; char* from + ptr @.TypeMapEntry.18553_to; char* to + }, ; 10347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18554_from, ; char* from + ptr @.TypeMapEntry.18555_to; char* to + }, ; 10348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18556_from, ; char* from + ptr @.TypeMapEntry.18557_to; char* to + }, ; 10349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18558_from, ; char* from + ptr @.TypeMapEntry.18559_to; char* to + }, ; 10350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18560_from, ; char* from + ptr @.TypeMapEntry.18559_to; char* to + }, ; 10351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18561_from, ; char* from + ptr @.TypeMapEntry.18562_to; char* to + }, ; 10352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18563_from, ; char* from + ptr @.TypeMapEntry.18562_to; char* to + }, ; 10353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18564_from, ; char* from + ptr @.TypeMapEntry.18565_to; char* to + }, ; 10354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18566_from, ; char* from + ptr @.TypeMapEntry.18565_to; char* to + }, ; 10355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18567_from, ; char* from + ptr @.TypeMapEntry.18568_to; char* to + }, ; 10356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18569_from, ; char* from + ptr @.TypeMapEntry.18570_to; char* to + }, ; 10357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18571_from, ; char* from + ptr @.TypeMapEntry.18570_to; char* to + }, ; 10358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18572_from, ; char* from + ptr @.TypeMapEntry.18573_to; char* to + }, ; 10359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18574_from, ; char* from + ptr @.TypeMapEntry.18573_to; char* to + }, ; 10360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18575_from, ; char* from + ptr @.TypeMapEntry.18576_to; char* to + }, ; 10361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18577_from, ; char* from + ptr @.TypeMapEntry.18576_to; char* to + }, ; 10362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18578_from, ; char* from + ptr @.TypeMapEntry.18579_to; char* to + }, ; 10363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18580_from, ; char* from + ptr @.TypeMapEntry.18579_to; char* to + }, ; 10364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18581_from, ; char* from + ptr @.TypeMapEntry.18582_to; char* to + }, ; 10365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18583_from, ; char* from + ptr @.TypeMapEntry.18584_to; char* to + }, ; 10366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18585_from, ; char* from + ptr @.TypeMapEntry.18584_to; char* to + }, ; 10367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18586_from, ; char* from + ptr @.TypeMapEntry.18587_to; char* to + }, ; 10368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18588_from, ; char* from + ptr @.TypeMapEntry.18587_to; char* to + }, ; 10369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18589_from, ; char* from + ptr @.TypeMapEntry.18590_to; char* to + }, ; 10370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18591_from, ; char* from + ptr @.TypeMapEntry.18590_to; char* to + }, ; 10371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18592_from, ; char* from + ptr @.TypeMapEntry.18593_to; char* to + }, ; 10372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18594_from, ; char* from + ptr @.TypeMapEntry.18593_to; char* to + }, ; 10373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18595_from, ; char* from + ptr @.TypeMapEntry.18596_to; char* to + }, ; 10374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18597_from, ; char* from + ptr @.TypeMapEntry.18596_to; char* to + }, ; 10375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18598_from, ; char* from + ptr @.TypeMapEntry.18599_to; char* to + }, ; 10376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18600_from, ; char* from + ptr @.TypeMapEntry.18599_to; char* to + }, ; 10377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18601_from, ; char* from + ptr @.TypeMapEntry.18602_to; char* to + }, ; 10378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18603_from, ; char* from + ptr @.TypeMapEntry.18602_to; char* to + }, ; 10379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18604_from, ; char* from + ptr @.TypeMapEntry.18605_to; char* to + }, ; 10380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18606_from, ; char* from + ptr @.TypeMapEntry.18607_to; char* to + }, ; 10381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18608_from, ; char* from + ptr @.TypeMapEntry.18609_to; char* to + }, ; 10382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18610_from, ; char* from + ptr @.TypeMapEntry.18611_to; char* to + }, ; 10383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18612_from, ; char* from + ptr @.TypeMapEntry.18611_to; char* to + }, ; 10384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18613_from, ; char* from + ptr @.TypeMapEntry.18614_to; char* to + }, ; 10385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18615_from, ; char* from + ptr @.TypeMapEntry.18616_to; char* to + }, ; 10386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18617_from, ; char* from + ptr @.TypeMapEntry.18618_to; char* to + }, ; 10387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18619_from, ; char* from + ptr @.TypeMapEntry.18618_to; char* to + }, ; 10388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18620_from, ; char* from + ptr @.TypeMapEntry.18621_to; char* to + }, ; 10389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18622_from, ; char* from + ptr @.TypeMapEntry.18621_to; char* to + }, ; 10390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18623_from, ; char* from + ptr @.TypeMapEntry.18616_to; char* to + }, ; 10391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18624_from, ; char* from + ptr @.TypeMapEntry.18625_to; char* to + }, ; 10392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18626_from, ; char* from + ptr @.TypeMapEntry.18627_to; char* to + }, ; 10393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18628_from, ; char* from + ptr @.TypeMapEntry.18629_to; char* to + }, ; 10394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18630_from, ; char* from + ptr @.TypeMapEntry.18631_to; char* to + }, ; 10395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18632_from, ; char* from + ptr @.TypeMapEntry.18633_to; char* to + }, ; 10396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18634_from, ; char* from + ptr @.TypeMapEntry.18635_to; char* to + }, ; 10397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18636_from, ; char* from + ptr @.TypeMapEntry.18635_to; char* to + }, ; 10398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18637_from, ; char* from + ptr @.TypeMapEntry.18638_to; char* to + }, ; 10399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18639_from, ; char* from + ptr @.TypeMapEntry.18640_to; char* to + }, ; 10400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18641_from, ; char* from + ptr @.TypeMapEntry.18642_to; char* to + }, ; 10401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18643_from, ; char* from + ptr @.TypeMapEntry.18644_to; char* to + }, ; 10402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18645_from, ; char* from + ptr @.TypeMapEntry.18644_to; char* to + }, ; 10403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18646_from, ; char* from + ptr @.TypeMapEntry.18647_to; char* to + }, ; 10404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18648_from, ; char* from + ptr @.TypeMapEntry.18649_to; char* to + }, ; 10405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18650_from, ; char* from + ptr @.TypeMapEntry.18651_to; char* to + }, ; 10406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18652_from, ; char* from + ptr @.TypeMapEntry.18653_to; char* to + }, ; 10407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18654_from, ; char* from + ptr @.TypeMapEntry.18655_to; char* to + }, ; 10408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18656_from, ; char* from + ptr @.TypeMapEntry.18657_to; char* to + }, ; 10409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18658_from, ; char* from + ptr @.TypeMapEntry.18659_to; char* to + }, ; 10410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18660_from, ; char* from + ptr @.TypeMapEntry.18661_to; char* to + }, ; 10411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18662_from, ; char* from + ptr @.TypeMapEntry.18663_to; char* to + }, ; 10412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18664_from, ; char* from + ptr @.TypeMapEntry.18665_to; char* to + }, ; 10413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18666_from, ; char* from + ptr @.TypeMapEntry.18665_to; char* to + }, ; 10414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18667_from, ; char* from + ptr @.TypeMapEntry.18668_to; char* to + }, ; 10415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18669_from, ; char* from + ptr @.TypeMapEntry.18668_to; char* to + }, ; 10416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18670_from, ; char* from + ptr @.TypeMapEntry.18671_to; char* to + }, ; 10417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18672_from, ; char* from + ptr @.TypeMapEntry.18671_to; char* to + }, ; 10418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18673_from, ; char* from + ptr @.TypeMapEntry.18674_to; char* to + }, ; 10419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18675_from, ; char* from + ptr @.TypeMapEntry.18674_to; char* to + }, ; 10420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18676_from, ; char* from + ptr @.TypeMapEntry.18677_to; char* to + }, ; 10421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18678_from, ; char* from + ptr @.TypeMapEntry.18677_to; char* to + }, ; 10422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18679_from, ; char* from + ptr @.TypeMapEntry.18680_to; char* to + }, ; 10423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18681_from, ; char* from + ptr @.TypeMapEntry.18680_to; char* to + }, ; 10424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18682_from, ; char* from + ptr @.TypeMapEntry.18683_to; char* to + }, ; 10425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18684_from, ; char* from + ptr @.TypeMapEntry.18683_to; char* to + }, ; 10426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18685_from, ; char* from + ptr @.TypeMapEntry.18686_to; char* to + }, ; 10427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18687_from, ; char* from + ptr @.TypeMapEntry.18686_to; char* to + }, ; 10428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18688_from, ; char* from + ptr @.TypeMapEntry.18689_to; char* to + }, ; 10429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18690_from, ; char* from + ptr @.TypeMapEntry.18689_to; char* to + }, ; 10430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18691_from, ; char* from + ptr @.TypeMapEntry.18692_to; char* to + }, ; 10431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18693_from, ; char* from + ptr @.TypeMapEntry.18692_to; char* to + }, ; 10432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18694_from, ; char* from + ptr @.TypeMapEntry.18695_to; char* to + }, ; 10433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18696_from, ; char* from + ptr @.TypeMapEntry.18695_to; char* to + }, ; 10434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18697_from, ; char* from + ptr @.TypeMapEntry.18698_to; char* to + }, ; 10435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18699_from, ; char* from + ptr @.TypeMapEntry.18698_to; char* to + }, ; 10436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18700_from, ; char* from + ptr @.TypeMapEntry.18701_to; char* to + }, ; 10437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18702_from, ; char* from + ptr @.TypeMapEntry.18701_to; char* to + }, ; 10438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18703_from, ; char* from + ptr @.TypeMapEntry.18704_to; char* to + }, ; 10439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18705_from, ; char* from + ptr @.TypeMapEntry.18704_to; char* to + }, ; 10440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18706_from, ; char* from + ptr @.TypeMapEntry.18707_to; char* to + }, ; 10441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18708_from, ; char* from + ptr @.TypeMapEntry.18707_to; char* to + }, ; 10442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18709_from, ; char* from + ptr @.TypeMapEntry.18710_to; char* to + }, ; 10443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18711_from, ; char* from + ptr @.TypeMapEntry.18712_to; char* to + }, ; 10444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18713_from, ; char* from + ptr @.TypeMapEntry.18714_to; char* to + }, ; 10445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18715_from, ; char* from + ptr @.TypeMapEntry.18714_to; char* to + }, ; 10446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18716_from, ; char* from + ptr @.TypeMapEntry.18717_to; char* to + }, ; 10447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18718_from, ; char* from + ptr @.TypeMapEntry.18719_to; char* to + }, ; 10448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18720_from, ; char* from + ptr @.TypeMapEntry.18721_to; char* to + }, ; 10449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18722_from, ; char* from + ptr @.TypeMapEntry.18723_to; char* to + }, ; 10450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18724_from, ; char* from + ptr @.TypeMapEntry.18725_to; char* to + }, ; 10451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18726_from, ; char* from + ptr @.TypeMapEntry.18727_to; char* to + }, ; 10452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18728_from, ; char* from + ptr @.TypeMapEntry.18729_to; char* to + }, ; 10453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18730_from, ; char* from + ptr @.TypeMapEntry.18731_to; char* to + }, ; 10454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18732_from, ; char* from + ptr @.TypeMapEntry.18731_to; char* to + }, ; 10455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18733_from, ; char* from + ptr @.TypeMapEntry.18734_to; char* to + }, ; 10456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18735_from, ; char* from + ptr @.TypeMapEntry.18736_to; char* to + }, ; 10457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18737_from, ; char* from + ptr @.TypeMapEntry.18738_to; char* to + }, ; 10458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18739_from, ; char* from + ptr @.TypeMapEntry.18734_to; char* to + }, ; 10459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18740_from, ; char* from + ptr @.TypeMapEntry.18741_to; char* to + }, ; 10460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18742_from, ; char* from + ptr @.TypeMapEntry.18743_to; char* to + }, ; 10461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18744_from, ; char* from + ptr @.TypeMapEntry.18745_to; char* to + }, ; 10462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18746_from, ; char* from + ptr @.TypeMapEntry.18747_to; char* to + }, ; 10463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18748_from, ; char* from + ptr @.TypeMapEntry.18749_to; char* to + }, ; 10464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18750_from, ; char* from + ptr @.TypeMapEntry.18751_to; char* to + }, ; 10465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18752_from, ; char* from + ptr @.TypeMapEntry.18753_to; char* to + }, ; 10466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18754_from, ; char* from + ptr @.TypeMapEntry.18753_to; char* to + }, ; 10467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18755_from, ; char* from + ptr @.TypeMapEntry.18756_to; char* to + }, ; 10468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18757_from, ; char* from + ptr @.TypeMapEntry.18758_to; char* to + }, ; 10469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18759_from, ; char* from + ptr @.TypeMapEntry.18758_to; char* to + }, ; 10470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18760_from, ; char* from + ptr @.TypeMapEntry.18756_to; char* to + }, ; 10471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18761_from, ; char* from + ptr @.TypeMapEntry.18762_to; char* to + }, ; 10472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18763_from, ; char* from + ptr @.TypeMapEntry.18762_to; char* to + }, ; 10473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18764_from, ; char* from + ptr @.TypeMapEntry.18765_to; char* to + }, ; 10474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18766_from, ; char* from + ptr @.TypeMapEntry.18765_to; char* to + }, ; 10475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18767_from, ; char* from + ptr @.TypeMapEntry.18768_to; char* to + }, ; 10476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18769_from, ; char* from + ptr @.TypeMapEntry.18768_to; char* to + }, ; 10477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18770_from, ; char* from + ptr @.TypeMapEntry.18771_to; char* to + }, ; 10478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18772_from, ; char* from + ptr @.TypeMapEntry.18771_to; char* to + }, ; 10479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18773_from, ; char* from + ptr @.TypeMapEntry.18774_to; char* to + }, ; 10480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18775_from, ; char* from + ptr @.TypeMapEntry.18774_to; char* to + }, ; 10481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18776_from, ; char* from + ptr @.TypeMapEntry.18777_to; char* to + }, ; 10482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18778_from, ; char* from + ptr @.TypeMapEntry.18777_to; char* to + }, ; 10483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18779_from, ; char* from + ptr @.TypeMapEntry.18780_to; char* to + }, ; 10484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18781_from, ; char* from + ptr @.TypeMapEntry.18780_to; char* to + }, ; 10485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18782_from, ; char* from + ptr @.TypeMapEntry.18783_to; char* to + }, ; 10486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18784_from, ; char* from + ptr @.TypeMapEntry.18783_to; char* to + }, ; 10487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18785_from, ; char* from + ptr @.TypeMapEntry.18786_to; char* to + }, ; 10488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18787_from, ; char* from + ptr @.TypeMapEntry.18786_to; char* to + }, ; 10489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18788_from, ; char* from + ptr @.TypeMapEntry.18789_to; char* to + }, ; 10490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18790_from, ; char* from + ptr @.TypeMapEntry.18789_to; char* to + }, ; 10491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18791_from, ; char* from + ptr @.TypeMapEntry.18792_to; char* to + }, ; 10492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18793_from, ; char* from + ptr @.TypeMapEntry.18792_to; char* to + }, ; 10493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18794_from, ; char* from + ptr @.TypeMapEntry.18795_to; char* to + }, ; 10494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18796_from, ; char* from + ptr @.TypeMapEntry.18797_to; char* to + }, ; 10495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18798_from, ; char* from + ptr @.TypeMapEntry.18799_to; char* to + }, ; 10496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18800_from, ; char* from + ptr @.TypeMapEntry.18801_to; char* to + }, ; 10497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18802_from, ; char* from + ptr @.TypeMapEntry.18803_to; char* to + }, ; 10498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18804_from, ; char* from + ptr @.TypeMapEntry.18805_to; char* to + }, ; 10499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18806_from, ; char* from + ptr @.TypeMapEntry.18807_to; char* to + }, ; 10500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18808_from, ; char* from + ptr @.TypeMapEntry.18809_to; char* to + }, ; 10501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18810_from, ; char* from + ptr @.TypeMapEntry.18811_to; char* to + }, ; 10502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18812_from, ; char* from + ptr @.TypeMapEntry.18813_to; char* to + }, ; 10503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18814_from, ; char* from + ptr @.TypeMapEntry.18815_to; char* to + }, ; 10504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18816_from, ; char* from + ptr @.TypeMapEntry.18817_to; char* to + }, ; 10505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18818_from, ; char* from + ptr @.TypeMapEntry.18819_to; char* to + }, ; 10506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18820_from, ; char* from + ptr @.TypeMapEntry.18819_to; char* to + }, ; 10507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18821_from, ; char* from + ptr @.TypeMapEntry.18822_to; char* to + }, ; 10508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18823_from, ; char* from + ptr @.TypeMapEntry.18822_to; char* to + }, ; 10509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18824_from, ; char* from + ptr @.TypeMapEntry.18825_to; char* to + }, ; 10510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18826_from, ; char* from + ptr @.TypeMapEntry.18827_to; char* to + }, ; 10511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18828_from, ; char* from + ptr @.TypeMapEntry.18829_to; char* to + }, ; 10512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18830_from, ; char* from + ptr @.TypeMapEntry.18831_to; char* to + }, ; 10513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18832_from, ; char* from + ptr @.TypeMapEntry.18831_to; char* to + }, ; 10514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18833_from, ; char* from + ptr @.TypeMapEntry.18834_to; char* to + }, ; 10515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18835_from, ; char* from + ptr @.TypeMapEntry.18834_to; char* to + }, ; 10516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18836_from, ; char* from + ptr @.TypeMapEntry.18837_to; char* to + }, ; 10517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18838_from, ; char* from + ptr @.TypeMapEntry.18839_to; char* to + }, ; 10518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18840_from, ; char* from + ptr @.TypeMapEntry.18839_to; char* to + }, ; 10519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18841_from, ; char* from + ptr @.TypeMapEntry.18842_to; char* to + }, ; 10520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18843_from, ; char* from + ptr @.TypeMapEntry.18842_to; char* to + }, ; 10521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18844_from, ; char* from + ptr @.TypeMapEntry.18845_to; char* to + }, ; 10522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18846_from, ; char* from + ptr @.TypeMapEntry.18847_to; char* to + }, ; 10523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18848_from, ; char* from + ptr @.TypeMapEntry.18847_to; char* to + }, ; 10524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18849_from, ; char* from + ptr @.TypeMapEntry.18850_to; char* to + }, ; 10525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18851_from, ; char* from + ptr @.TypeMapEntry.18852_to; char* to + }, ; 10526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18853_from, ; char* from + ptr @.TypeMapEntry.18854_to; char* to + }, ; 10527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18855_from, ; char* from + ptr @.TypeMapEntry.18856_to; char* to + }, ; 10528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18857_from, ; char* from + ptr @.TypeMapEntry.18858_to; char* to + }, ; 10529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18859_from, ; char* from + ptr @.TypeMapEntry.18860_to; char* to + }, ; 10530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18861_from, ; char* from + ptr @.TypeMapEntry.18860_to; char* to + }, ; 10531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18862_from, ; char* from + ptr @.TypeMapEntry.18858_to; char* to + }, ; 10532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18863_from, ; char* from + ptr @.TypeMapEntry.18864_to; char* to + }, ; 10533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18865_from, ; char* from + ptr @.TypeMapEntry.18864_to; char* to + }, ; 10534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18866_from, ; char* from + ptr @.TypeMapEntry.18867_to; char* to + }, ; 10535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18868_from, ; char* from + ptr @.TypeMapEntry.18867_to; char* to + }, ; 10536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18869_from, ; char* from + ptr @.TypeMapEntry.18870_to; char* to + }, ; 10537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18871_from, ; char* from + ptr @.TypeMapEntry.18870_to; char* to + }, ; 10538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18872_from, ; char* from + ptr @.TypeMapEntry.18873_to; char* to + }, ; 10539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18874_from, ; char* from + ptr @.TypeMapEntry.18875_to; char* to + }, ; 10540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18876_from, ; char* from + ptr @.TypeMapEntry.18877_to; char* to + }, ; 10541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18878_from, ; char* from + ptr @.TypeMapEntry.18879_to; char* to + }, ; 10542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18880_from, ; char* from + ptr @.TypeMapEntry.18879_to; char* to + }, ; 10543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18881_from, ; char* from + ptr @.TypeMapEntry.18882_to; char* to + }, ; 10544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18883_from, ; char* from + ptr @.TypeMapEntry.18884_to; char* to + }, ; 10545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18885_from, ; char* from + ptr @.TypeMapEntry.18884_to; char* to + }, ; 10546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18886_from, ; char* from + ptr @.TypeMapEntry.18887_to; char* to + }, ; 10547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18888_from, ; char* from + ptr @.TypeMapEntry.18889_to; char* to + }, ; 10548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18890_from, ; char* from + ptr @.TypeMapEntry.18889_to; char* to + }, ; 10549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18891_from, ; char* from + ptr @.TypeMapEntry.18892_to; char* to + }, ; 10550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18893_from, ; char* from + ptr @.TypeMapEntry.18892_to; char* to + }, ; 10551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18894_from, ; char* from + ptr @.TypeMapEntry.18895_to; char* to + }, ; 10552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18896_from, ; char* from + ptr @.TypeMapEntry.18897_to; char* to + }, ; 10553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18898_from, ; char* from + ptr @.TypeMapEntry.18895_to; char* to + }, ; 10554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18899_from, ; char* from + ptr @.TypeMapEntry.18900_to; char* to + }, ; 10555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18901_from, ; char* from + ptr @.TypeMapEntry.18902_to; char* to + }, ; 10556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18903_from, ; char* from + ptr @.TypeMapEntry.18904_to; char* to + }, ; 10557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18905_from, ; char* from + ptr @.TypeMapEntry.18906_to; char* to + }, ; 10558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18907_from, ; char* from + ptr @.TypeMapEntry.18908_to; char* to + }, ; 10559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18909_from, ; char* from + ptr @.TypeMapEntry.18910_to; char* to + }, ; 10560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18911_from, ; char* from + ptr @.TypeMapEntry.18910_to; char* to + }, ; 10561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18912_from, ; char* from + ptr @.TypeMapEntry.18904_to; char* to + }, ; 10562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18913_from, ; char* from + ptr @.TypeMapEntry.18914_to; char* to + }, ; 10563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18915_from, ; char* from + ptr @.TypeMapEntry.18916_to; char* to + }, ; 10564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18917_from, ; char* from + ptr @.TypeMapEntry.18918_to; char* to + }, ; 10565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18919_from, ; char* from + ptr @.TypeMapEntry.18918_to; char* to + }, ; 10566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18920_from, ; char* from + ptr @.TypeMapEntry.18921_to; char* to + }, ; 10567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18922_from, ; char* from + ptr @.TypeMapEntry.18923_to; char* to + }, ; 10568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18924_from, ; char* from + ptr @.TypeMapEntry.18923_to; char* to + }, ; 10569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18925_from, ; char* from + ptr @.TypeMapEntry.18926_to; char* to + }, ; 10570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18927_from, ; char* from + ptr @.TypeMapEntry.18928_to; char* to + }, ; 10571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18929_from, ; char* from + ptr @.TypeMapEntry.18930_to; char* to + }, ; 10572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18931_from, ; char* from + ptr @.TypeMapEntry.18930_to; char* to + }, ; 10573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18932_from, ; char* from + ptr @.TypeMapEntry.18933_to; char* to + }, ; 10574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18934_from, ; char* from + ptr @.TypeMapEntry.18935_to; char* to + }, ; 10575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18936_from, ; char* from + ptr @.TypeMapEntry.18937_to; char* to + }, ; 10576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18938_from, ; char* from + ptr @.TypeMapEntry.18939_to; char* to + }, ; 10577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18940_from, ; char* from + ptr @.TypeMapEntry.18941_to; char* to + }, ; 10578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18942_from, ; char* from + ptr @.TypeMapEntry.18943_to; char* to + }, ; 10579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18944_from, ; char* from + ptr @.TypeMapEntry.18945_to; char* to + }, ; 10580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18946_from, ; char* from + ptr @.TypeMapEntry.18945_to; char* to + }, ; 10581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18947_from, ; char* from + ptr @.TypeMapEntry.18935_to; char* to + }, ; 10582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18948_from, ; char* from + ptr @.TypeMapEntry.18949_to; char* to + }, ; 10583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18950_from, ; char* from + ptr @.TypeMapEntry.18951_to; char* to + }, ; 10584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18952_from, ; char* from + ptr @.TypeMapEntry.18953_to; char* to + }, ; 10585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18954_from, ; char* from + ptr @.TypeMapEntry.18955_to; char* to + }, ; 10586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18956_from, ; char* from + ptr @.TypeMapEntry.18957_to; char* to + }, ; 10587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18958_from, ; char* from + ptr @.TypeMapEntry.18957_to; char* to + }, ; 10588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18959_from, ; char* from + ptr @.TypeMapEntry.18960_to; char* to + }, ; 10589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18961_from, ; char* from + ptr @.TypeMapEntry.18960_to; char* to + }, ; 10590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18962_from, ; char* from + ptr @.TypeMapEntry.18963_to; char* to + }, ; 10591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18964_from, ; char* from + ptr @.TypeMapEntry.18963_to; char* to + }, ; 10592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18965_from, ; char* from + ptr @.TypeMapEntry.18966_to; char* to + }, ; 10593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18967_from, ; char* from + ptr @.TypeMapEntry.18966_to; char* to + }, ; 10594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18968_from, ; char* from + ptr @.TypeMapEntry.18969_to; char* to + }, ; 10595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18970_from, ; char* from + ptr @.TypeMapEntry.18969_to; char* to + }, ; 10596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18971_from, ; char* from + ptr @.TypeMapEntry.18972_to; char* to + }, ; 10597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18973_from, ; char* from + ptr @.TypeMapEntry.18972_to; char* to + }, ; 10598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18974_from, ; char* from + ptr @.TypeMapEntry.18975_to; char* to + }, ; 10599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18976_from, ; char* from + ptr @.TypeMapEntry.18975_to; char* to + }, ; 10600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18977_from, ; char* from + ptr @.TypeMapEntry.18978_to; char* to + }, ; 10601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18979_from, ; char* from + ptr @.TypeMapEntry.18978_to; char* to + }, ; 10602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18980_from, ; char* from + ptr @.TypeMapEntry.18981_to; char* to + }, ; 10603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18982_from, ; char* from + ptr @.TypeMapEntry.18981_to; char* to + }, ; 10604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18983_from, ; char* from + ptr @.TypeMapEntry.18984_to; char* to + }, ; 10605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18985_from, ; char* from + ptr @.TypeMapEntry.18984_to; char* to + }, ; 10606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18986_from, ; char* from + ptr @.TypeMapEntry.18987_to; char* to + }, ; 10607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18988_from, ; char* from + ptr @.TypeMapEntry.18989_to; char* to + }, ; 10608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18990_from, ; char* from + ptr @.TypeMapEntry.18991_to; char* to + }, ; 10609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18992_from, ; char* from + ptr @.TypeMapEntry.18993_to; char* to + }, ; 10610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18994_from, ; char* from + ptr @.TypeMapEntry.18993_to; char* to + }, ; 10611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18995_from, ; char* from + ptr @.TypeMapEntry.18996_to; char* to + }, ; 10612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18997_from, ; char* from + ptr @.TypeMapEntry.18998_to; char* to + }, ; 10613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18999_from, ; char* from + ptr @.TypeMapEntry.19000_to; char* to + }, ; 10614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19001_from, ; char* from + ptr @.TypeMapEntry.19002_to; char* to + }, ; 10615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19003_from, ; char* from + ptr @.TypeMapEntry.19004_to; char* to + }, ; 10616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19005_from, ; char* from + ptr @.TypeMapEntry.19004_to; char* to + }, ; 10617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19006_from, ; char* from + ptr @.TypeMapEntry.19007_to; char* to + }, ; 10618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19008_from, ; char* from + ptr @.TypeMapEntry.19009_to; char* to + }, ; 10619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19010_from, ; char* from + ptr @.TypeMapEntry.19011_to; char* to + }, ; 10620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19012_from, ; char* from + ptr @.TypeMapEntry.19013_to; char* to + }, ; 10621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19014_from, ; char* from + ptr @.TypeMapEntry.19015_to; char* to + }, ; 10622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19016_from, ; char* from + ptr @.TypeMapEntry.19015_to; char* to + }, ; 10623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19017_from, ; char* from + ptr @.TypeMapEntry.19013_to; char* to + }, ; 10624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19018_from, ; char* from + ptr @.TypeMapEntry.19019_to; char* to + }, ; 10625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19020_from, ; char* from + ptr @.TypeMapEntry.19021_to; char* to + }, ; 10626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19022_from, ; char* from + ptr @.TypeMapEntry.19023_to; char* to + }, ; 10627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19024_from, ; char* from + ptr @.TypeMapEntry.19023_to; char* to + }, ; 10628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19025_from, ; char* from + ptr @.TypeMapEntry.19026_to; char* to + }, ; 10629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19027_from, ; char* from + ptr @.TypeMapEntry.19028_to; char* to + }, ; 10630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19029_from, ; char* from + ptr @.TypeMapEntry.19030_to; char* to + }, ; 10631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19031_from, ; char* from + ptr @.TypeMapEntry.19032_to; char* to + }, ; 10632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19033_from, ; char* from + ptr @.TypeMapEntry.19034_to; char* to + }, ; 10633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19035_from, ; char* from + ptr @.TypeMapEntry.19036_to; char* to + }, ; 10634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19037_from, ; char* from + ptr @.TypeMapEntry.19038_to; char* to + }, ; 10635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19039_from, ; char* from + ptr @.TypeMapEntry.19040_to; char* to + }, ; 10636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19041_from, ; char* from + ptr @.TypeMapEntry.19042_to; char* to + }, ; 10637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19043_from, ; char* from + ptr @.TypeMapEntry.19044_to; char* to + }, ; 10638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19045_from, ; char* from + ptr @.TypeMapEntry.19046_to; char* to + }, ; 10639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19047_from, ; char* from + ptr @.TypeMapEntry.19048_to; char* to + }, ; 10640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19049_from, ; char* from + ptr @.TypeMapEntry.19050_to; char* to + }, ; 10641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19051_from, ; char* from + ptr @.TypeMapEntry.19052_to; char* to + }, ; 10642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19053_from, ; char* from + ptr @.TypeMapEntry.19054_to; char* to + }, ; 10643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19055_from, ; char* from + ptr @.TypeMapEntry.19054_to; char* to + }, ; 10644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19056_from, ; char* from + ptr @.TypeMapEntry.19057_to; char* to + }, ; 10645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19058_from, ; char* from + ptr @.TypeMapEntry.19057_to; char* to + }, ; 10646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19059_from, ; char* from + ptr @.TypeMapEntry.19060_to; char* to + }, ; 10647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19061_from, ; char* from + ptr @.TypeMapEntry.19060_to; char* to + }, ; 10648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19062_from, ; char* from + ptr @.TypeMapEntry.19063_to; char* to + }, ; 10649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19064_from, ; char* from + ptr @.TypeMapEntry.19063_to; char* to + }, ; 10650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19065_from, ; char* from + ptr @.TypeMapEntry.19066_to; char* to + }, ; 10651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19067_from, ; char* from + ptr @.TypeMapEntry.19066_to; char* to + }, ; 10652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19068_from, ; char* from + ptr @.TypeMapEntry.19069_to; char* to + }, ; 10653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19070_from, ; char* from + ptr @.TypeMapEntry.19069_to; char* to + }, ; 10654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19071_from, ; char* from + ptr @.TypeMapEntry.19072_to; char* to + }, ; 10655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19073_from, ; char* from + ptr @.TypeMapEntry.19072_to; char* to + }, ; 10656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19074_from, ; char* from + ptr @.TypeMapEntry.19075_to; char* to + }, ; 10657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19076_from, ; char* from + ptr @.TypeMapEntry.19075_to; char* to + }, ; 10658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19077_from, ; char* from + ptr @.TypeMapEntry.19078_to; char* to + }, ; 10659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19079_from, ; char* from + ptr @.TypeMapEntry.19078_to; char* to + }, ; 10660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19080_from, ; char* from + ptr @.TypeMapEntry.19081_to; char* to + }, ; 10661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19082_from, ; char* from + ptr @.TypeMapEntry.19081_to; char* to + }, ; 10662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19083_from, ; char* from + ptr @.TypeMapEntry.19084_to; char* to + }, ; 10663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19085_from, ; char* from + ptr @.TypeMapEntry.19084_to; char* to + }, ; 10664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19086_from, ; char* from + ptr @.TypeMapEntry.19087_to; char* to + }, ; 10665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19088_from, ; char* from + ptr @.TypeMapEntry.19087_to; char* to + }, ; 10666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19089_from, ; char* from + ptr @.TypeMapEntry.19090_to; char* to + }, ; 10667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19091_from, ; char* from + ptr @.TypeMapEntry.19090_to; char* to + }, ; 10668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19092_from, ; char* from + ptr @.TypeMapEntry.19093_to; char* to + }, ; 10669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19094_from, ; char* from + ptr @.TypeMapEntry.19095_to; char* to + }, ; 10670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19096_from, ; char* from + ptr @.TypeMapEntry.19097_to; char* to + }, ; 10671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19098_from, ; char* from + ptr @.TypeMapEntry.19099_to; char* to + }, ; 10672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19100_from, ; char* from + ptr @.TypeMapEntry.19101_to; char* to + }, ; 10673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19102_from, ; char* from + ptr @.TypeMapEntry.19101_to; char* to + }, ; 10674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19103_from, ; char* from + ptr @.TypeMapEntry.19104_to; char* to + }, ; 10675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19105_from, ; char* from + ptr @.TypeMapEntry.19104_to; char* to + }, ; 10676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19106_from, ; char* from + ptr @.TypeMapEntry.19107_to; char* to + }, ; 10677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19108_from, ; char* from + ptr @.TypeMapEntry.19107_to; char* to + }, ; 10678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19109_from, ; char* from + ptr @.TypeMapEntry.19110_to; char* to + }, ; 10679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19111_from, ; char* from + ptr @.TypeMapEntry.19110_to; char* to + }, ; 10680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19112_from, ; char* from + ptr @.TypeMapEntry.19113_to; char* to + }, ; 10681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19114_from, ; char* from + ptr @.TypeMapEntry.19113_to; char* to + }, ; 10682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19115_from, ; char* from + ptr @.TypeMapEntry.19116_to; char* to + }, ; 10683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19117_from, ; char* from + ptr @.TypeMapEntry.19116_to; char* to + }, ; 10684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19118_from, ; char* from + ptr @.TypeMapEntry.19119_to; char* to + }, ; 10685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19120_from, ; char* from + ptr @.TypeMapEntry.19119_to; char* to + }, ; 10686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19121_from, ; char* from + ptr @.TypeMapEntry.19122_to; char* to + }, ; 10687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19123_from, ; char* from + ptr @.TypeMapEntry.19122_to; char* to + }, ; 10688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19124_from, ; char* from + ptr @.TypeMapEntry.19125_to; char* to + }, ; 10689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19126_from, ; char* from + ptr @.TypeMapEntry.19125_to; char* to + }, ; 10690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19127_from, ; char* from + ptr @.TypeMapEntry.19128_to; char* to + }, ; 10691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19129_from, ; char* from + ptr @.TypeMapEntry.19128_to; char* to + }, ; 10692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19130_from, ; char* from + ptr @.TypeMapEntry.19131_to; char* to + }, ; 10693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19132_from, ; char* from + ptr @.TypeMapEntry.19131_to; char* to + }, ; 10694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19133_from, ; char* from + ptr @.TypeMapEntry.19134_to; char* to + }, ; 10695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19135_from, ; char* from + ptr @.TypeMapEntry.19134_to; char* to + }, ; 10696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19136_from, ; char* from + ptr @.TypeMapEntry.19137_to; char* to + }, ; 10697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19138_from, ; char* from + ptr @.TypeMapEntry.19137_to; char* to + }, ; 10698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19139_from, ; char* from + ptr @.TypeMapEntry.19140_to; char* to + }, ; 10699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19141_from, ; char* from + ptr @.TypeMapEntry.19140_to; char* to + }, ; 10700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19142_from, ; char* from + ptr @.TypeMapEntry.19143_to; char* to + }, ; 10701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19144_from, ; char* from + ptr @.TypeMapEntry.19143_to; char* to + }, ; 10702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19145_from, ; char* from + ptr @.TypeMapEntry.19146_to; char* to + }, ; 10703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19147_from, ; char* from + ptr @.TypeMapEntry.19146_to; char* to + }, ; 10704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19148_from, ; char* from + ptr @.TypeMapEntry.19149_to; char* to + }, ; 10705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19150_from, ; char* from + ptr @.TypeMapEntry.19149_to; char* to + }, ; 10706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19151_from, ; char* from + ptr @.TypeMapEntry.19152_to; char* to + }, ; 10707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19153_from, ; char* from + ptr @.TypeMapEntry.19152_to; char* to + }, ; 10708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19154_from, ; char* from + ptr @.TypeMapEntry.19155_to; char* to + }, ; 10709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19156_from, ; char* from + ptr @.TypeMapEntry.19155_to; char* to + }, ; 10710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19157_from, ; char* from + ptr @.TypeMapEntry.19158_to; char* to + }, ; 10711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19159_from, ; char* from + ptr @.TypeMapEntry.19160_to; char* to + }, ; 10712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19161_from, ; char* from + ptr @.TypeMapEntry.19162_to; char* to + }, ; 10713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19163_from, ; char* from + ptr @.TypeMapEntry.19164_to; char* to + }, ; 10714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19165_from, ; char* from + ptr @.TypeMapEntry.19166_to; char* to + }, ; 10715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19167_from, ; char* from + ptr @.TypeMapEntry.19168_to; char* to + }, ; 10716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19169_from, ; char* from + ptr @.TypeMapEntry.19170_to; char* to + }, ; 10717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19171_from, ; char* from + ptr @.TypeMapEntry.19172_to; char* to + }, ; 10718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19173_from, ; char* from + ptr @.TypeMapEntry.19174_to; char* to + }, ; 10719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19175_from, ; char* from + ptr @.TypeMapEntry.19176_to; char* to + }, ; 10720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19177_from, ; char* from + ptr @.TypeMapEntry.19178_to; char* to + }, ; 10721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19179_from, ; char* from + ptr @.TypeMapEntry.19178_to; char* to + }, ; 10722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19180_from, ; char* from + ptr @.TypeMapEntry.19181_to; char* to + }, ; 10723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19182_from, ; char* from + ptr @.TypeMapEntry.19183_to; char* to + }, ; 10724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19184_from, ; char* from + ptr @.TypeMapEntry.19185_to; char* to + }, ; 10725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19186_from, ; char* from + ptr @.TypeMapEntry.19185_to; char* to + }, ; 10726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19187_from, ; char* from + ptr @.TypeMapEntry.19188_to; char* to + }, ; 10727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19189_from, ; char* from + ptr @.TypeMapEntry.19188_to; char* to + }, ; 10728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19190_from, ; char* from + ptr @.TypeMapEntry.19191_to; char* to + }, ; 10729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19192_from, ; char* from + ptr @.TypeMapEntry.19193_to; char* to + }, ; 10730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19194_from, ; char* from + ptr @.TypeMapEntry.19195_to; char* to + }, ; 10731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19196_from, ; char* from + ptr @.TypeMapEntry.19195_to; char* to + }, ; 10732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19197_from, ; char* from + ptr @.TypeMapEntry.19198_to; char* to + }, ; 10733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19199_from, ; char* from + ptr @.TypeMapEntry.19200_to; char* to + }, ; 10734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19201_from, ; char* from + ptr @.TypeMapEntry.19202_to; char* to + }, ; 10735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19203_from, ; char* from + ptr @.TypeMapEntry.19202_to; char* to + }, ; 10736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19204_from, ; char* from + ptr @.TypeMapEntry.19200_to; char* to + }, ; 10737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19205_from, ; char* from + ptr @.TypeMapEntry.19206_to; char* to + }, ; 10738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19207_from, ; char* from + ptr @.TypeMapEntry.19206_to; char* to + }, ; 10739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19208_from, ; char* from + ptr @.TypeMapEntry.19209_to; char* to + }, ; 10740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19210_from, ; char* from + ptr @.TypeMapEntry.19209_to; char* to + }, ; 10741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19211_from, ; char* from + ptr @.TypeMapEntry.19212_to; char* to + }, ; 10742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19213_from, ; char* from + ptr @.TypeMapEntry.19214_to; char* to + }, ; 10743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19215_from, ; char* from + ptr @.TypeMapEntry.19216_to; char* to + }, ; 10744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19217_from, ; char* from + ptr @.TypeMapEntry.19218_to; char* to + }, ; 10745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19219_from, ; char* from + ptr @.TypeMapEntry.19220_to; char* to + }, ; 10746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19221_from, ; char* from + ptr @.TypeMapEntry.19222_to; char* to + }, ; 10747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19223_from, ; char* from + ptr @.TypeMapEntry.19224_to; char* to + }, ; 10748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19225_from, ; char* from + ptr @.TypeMapEntry.19224_to; char* to + }, ; 10749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19226_from, ; char* from + ptr @.TypeMapEntry.19227_to; char* to + }, ; 10750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19228_from, ; char* from + ptr @.TypeMapEntry.19227_to; char* to + }, ; 10751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19229_from, ; char* from + ptr @.TypeMapEntry.19230_to; char* to + }, ; 10752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19231_from, ; char* from + ptr @.TypeMapEntry.19230_to; char* to + }, ; 10753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19232_from, ; char* from + ptr @.TypeMapEntry.19233_to; char* to + }, ; 10754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19234_from, ; char* from + ptr @.TypeMapEntry.19235_to; char* to + }, ; 10755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19236_from, ; char* from + ptr @.TypeMapEntry.19237_to; char* to + }, ; 10756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19238_from, ; char* from + ptr @.TypeMapEntry.19239_to; char* to + }, ; 10757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19240_from, ; char* from + ptr @.TypeMapEntry.19241_to; char* to + }, ; 10758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19242_from, ; char* from + ptr @.TypeMapEntry.19241_to; char* to + }, ; 10759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19243_from, ; char* from + ptr @.TypeMapEntry.19239_to; char* to + }, ; 10760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19244_from, ; char* from + ptr @.TypeMapEntry.19245_to; char* to + }, ; 10761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19246_from, ; char* from + ptr @.TypeMapEntry.19247_to; char* to + }, ; 10762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19248_from, ; char* from + ptr @.TypeMapEntry.19247_to; char* to + }, ; 10763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19249_from, ; char* from + ptr @.TypeMapEntry.19250_to; char* to + }, ; 10764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19251_from, ; char* from + ptr @.TypeMapEntry.19250_to; char* to + }, ; 10765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19252_from, ; char* from + ptr @.TypeMapEntry.19253_to; char* to + }, ; 10766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19254_from, ; char* from + ptr @.TypeMapEntry.19253_to; char* to + }, ; 10767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19255_from, ; char* from + ptr @.TypeMapEntry.19256_to; char* to + }, ; 10768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19257_from, ; char* from + ptr @.TypeMapEntry.19258_to; char* to + }, ; 10769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19259_from, ; char* from + ptr @.TypeMapEntry.19260_to; char* to + }, ; 10770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19261_from, ; char* from + ptr @.TypeMapEntry.19262_to; char* to + }, ; 10771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19263_from, ; char* from + ptr @.TypeMapEntry.19264_to; char* to + }, ; 10772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19265_from, ; char* from + ptr @.TypeMapEntry.19266_to; char* to + }, ; 10773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19267_from, ; char* from + ptr @.TypeMapEntry.19264_to; char* to + }, ; 10774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19268_from, ; char* from + ptr @.TypeMapEntry.19269_to; char* to + }, ; 10775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19270_from, ; char* from + ptr @.TypeMapEntry.19271_to; char* to + }, ; 10776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19272_from, ; char* from + ptr @.TypeMapEntry.19273_to; char* to + }, ; 10777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19274_from, ; char* from + ptr @.TypeMapEntry.19275_to; char* to + }, ; 10778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19276_from, ; char* from + ptr @.TypeMapEntry.19275_to; char* to + }, ; 10779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19277_from, ; char* from + ptr @.TypeMapEntry.19278_to; char* to + }, ; 10780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19279_from, ; char* from + ptr @.TypeMapEntry.19280_to; char* to + }, ; 10781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19281_from, ; char* from + ptr @.TypeMapEntry.19282_to; char* to + }, ; 10782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19283_from, ; char* from + ptr @.TypeMapEntry.19284_to; char* to + }, ; 10783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19285_from, ; char* from + ptr @.TypeMapEntry.19282_to; char* to + }, ; 10784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19286_from, ; char* from + ptr @.TypeMapEntry.19287_to; char* to + }, ; 10785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19288_from, ; char* from + ptr @.TypeMapEntry.19287_to; char* to + }, ; 10786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19289_from, ; char* from + ptr @.TypeMapEntry.19290_to; char* to + }, ; 10787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19291_from, ; char* from + ptr @.TypeMapEntry.19292_to; char* to + }, ; 10788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19293_from, ; char* from + ptr @.TypeMapEntry.19292_to; char* to + }, ; 10789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19294_from, ; char* from + ptr @.TypeMapEntry.19295_to; char* to + }, ; 10790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19296_from, ; char* from + ptr @.TypeMapEntry.19297_to; char* to + }, ; 10791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19298_from, ; char* from + ptr @.TypeMapEntry.19299_to; char* to + }, ; 10792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19300_from, ; char* from + ptr @.TypeMapEntry.19301_to; char* to + }, ; 10793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19302_from, ; char* from + ptr @.TypeMapEntry.19303_to; char* to + }, ; 10794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19304_from, ; char* from + ptr @.TypeMapEntry.19305_to; char* to + }, ; 10795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19306_from, ; char* from + ptr @.TypeMapEntry.19307_to; char* to + }, ; 10796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19308_from, ; char* from + ptr @.TypeMapEntry.19309_to; char* to + }, ; 10797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19310_from, ; char* from + ptr @.TypeMapEntry.19311_to; char* to + }, ; 10798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19312_from, ; char* from + ptr @.TypeMapEntry.19313_to; char* to + }, ; 10799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19314_from, ; char* from + ptr @.TypeMapEntry.19315_to; char* to + }, ; 10800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19316_from, ; char* from + ptr @.TypeMapEntry.19317_to; char* to + }, ; 10801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19318_from, ; char* from + ptr @.TypeMapEntry.19319_to; char* to + }, ; 10802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19320_from, ; char* from + ptr @.TypeMapEntry.19321_to; char* to + }, ; 10803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19322_from, ; char* from + ptr @.TypeMapEntry.19323_to; char* to + }, ; 10804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19324_from, ; char* from + ptr @.TypeMapEntry.19325_to; char* to + }, ; 10805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19326_from, ; char* from + ptr @.TypeMapEntry.19327_to; char* to + }, ; 10806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19328_from, ; char* from + ptr @.TypeMapEntry.19327_to; char* to + }, ; 10807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19329_from, ; char* from + ptr @.TypeMapEntry.19330_to; char* to + }, ; 10808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19331_from, ; char* from + ptr @.TypeMapEntry.19330_to; char* to + }, ; 10809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19332_from, ; char* from + ptr @.TypeMapEntry.19333_to; char* to + }, ; 10810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19334_from, ; char* from + ptr @.TypeMapEntry.19333_to; char* to + }, ; 10811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19335_from, ; char* from + ptr @.TypeMapEntry.19336_to; char* to + }, ; 10812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19337_from, ; char* from + ptr @.TypeMapEntry.19336_to; char* to + }, ; 10813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19338_from, ; char* from + ptr @.TypeMapEntry.19339_to; char* to + }, ; 10814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19340_from, ; char* from + ptr @.TypeMapEntry.19341_to; char* to + }, ; 10815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19342_from, ; char* from + ptr @.TypeMapEntry.19343_to; char* to + }, ; 10816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19344_from, ; char* from + ptr @.TypeMapEntry.19345_to; char* to + }, ; 10817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19346_from, ; char* from + ptr @.TypeMapEntry.19347_to; char* to + }, ; 10818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19348_from, ; char* from + ptr @.TypeMapEntry.19349_to; char* to + }, ; 10819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19350_from, ; char* from + ptr @.TypeMapEntry.19351_to; char* to + }, ; 10820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19352_from, ; char* from + ptr @.TypeMapEntry.19353_to; char* to + }, ; 10821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19354_from, ; char* from + ptr @.TypeMapEntry.19355_to; char* to + }, ; 10822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19356_from, ; char* from + ptr @.TypeMapEntry.19357_to; char* to + }, ; 10823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19358_from, ; char* from + ptr @.TypeMapEntry.19359_to; char* to + }, ; 10824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19360_from, ; char* from + ptr @.TypeMapEntry.19361_to; char* to + }, ; 10825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19362_from, ; char* from + ptr @.TypeMapEntry.19363_to; char* to + }, ; 10826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19364_from, ; char* from + ptr @.TypeMapEntry.19365_to; char* to + }, ; 10827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19366_from, ; char* from + ptr @.TypeMapEntry.19367_to; char* to + }, ; 10828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19368_from, ; char* from + ptr @.TypeMapEntry.19369_to; char* to + }, ; 10829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19370_from, ; char* from + ptr @.TypeMapEntry.19371_to; char* to + }, ; 10830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19372_from, ; char* from + ptr @.TypeMapEntry.19373_to; char* to + }, ; 10831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19374_from, ; char* from + ptr @.TypeMapEntry.19375_to; char* to + }, ; 10832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19376_from, ; char* from + ptr @.TypeMapEntry.19377_to; char* to + }, ; 10833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19378_from, ; char* from + ptr @.TypeMapEntry.19379_to; char* to + }, ; 10834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19380_from, ; char* from + ptr @.TypeMapEntry.19381_to; char* to + }, ; 10835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19382_from, ; char* from + ptr @.TypeMapEntry.19383_to; char* to + }, ; 10836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19384_from, ; char* from + ptr @.TypeMapEntry.19385_to; char* to + }, ; 10837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19386_from, ; char* from + ptr @.TypeMapEntry.19387_to; char* to + }, ; 10838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19388_from, ; char* from + ptr @.TypeMapEntry.19389_to; char* to + }, ; 10839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19390_from, ; char* from + ptr @.TypeMapEntry.19391_to; char* to + }, ; 10840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19392_from, ; char* from + ptr @.TypeMapEntry.19393_to; char* to + }, ; 10841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19394_from, ; char* from + ptr @.TypeMapEntry.19393_to; char* to + }, ; 10842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19395_from, ; char* from + ptr @.TypeMapEntry.19396_to; char* to + }, ; 10843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19397_from, ; char* from + ptr @.TypeMapEntry.19396_to; char* to + }, ; 10844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19398_from, ; char* from + ptr @.TypeMapEntry.19399_to; char* to + }, ; 10845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19400_from, ; char* from + ptr @.TypeMapEntry.19399_to; char* to + }, ; 10846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19401_from, ; char* from + ptr @.TypeMapEntry.19402_to; char* to + }, ; 10847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19403_from, ; char* from + ptr @.TypeMapEntry.19402_to; char* to + }, ; 10848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19404_from, ; char* from + ptr @.TypeMapEntry.19405_to; char* to + }, ; 10849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19406_from, ; char* from + ptr @.TypeMapEntry.19405_to; char* to + }, ; 10850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19407_from, ; char* from + ptr @.TypeMapEntry.19408_to; char* to + }, ; 10851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19409_from, ; char* from + ptr @.TypeMapEntry.19408_to; char* to + }, ; 10852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19410_from, ; char* from + ptr @.TypeMapEntry.19411_to; char* to + }, ; 10853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19412_from, ; char* from + ptr @.TypeMapEntry.19411_to; char* to + }, ; 10854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19413_from, ; char* from + ptr @.TypeMapEntry.19414_to; char* to + }, ; 10855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19415_from, ; char* from + ptr @.TypeMapEntry.19414_to; char* to + }, ; 10856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19416_from, ; char* from + ptr @.TypeMapEntry.19417_to; char* to + }, ; 10857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19418_from, ; char* from + ptr @.TypeMapEntry.19417_to; char* to + }, ; 10858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19419_from, ; char* from + ptr @.TypeMapEntry.19420_to; char* to + }, ; 10859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19421_from, ; char* from + ptr @.TypeMapEntry.19420_to; char* to + }, ; 10860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19422_from, ; char* from + ptr @.TypeMapEntry.19423_to; char* to + }, ; 10861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19424_from, ; char* from + ptr @.TypeMapEntry.19423_to; char* to + }, ; 10862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19425_from, ; char* from + ptr @.TypeMapEntry.19426_to; char* to + }, ; 10863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19427_from, ; char* from + ptr @.TypeMapEntry.19426_to; char* to + }, ; 10864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19428_from, ; char* from + ptr @.TypeMapEntry.19429_to; char* to + }, ; 10865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19430_from, ; char* from + ptr @.TypeMapEntry.19429_to; char* to + }, ; 10866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19431_from, ; char* from + ptr @.TypeMapEntry.19432_to; char* to + }, ; 10867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19433_from, ; char* from + ptr @.TypeMapEntry.19432_to; char* to + }, ; 10868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19434_from, ; char* from + ptr @.TypeMapEntry.19435_to; char* to + }, ; 10869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19436_from, ; char* from + ptr @.TypeMapEntry.19435_to; char* to + }, ; 10870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19437_from, ; char* from + ptr @.TypeMapEntry.19438_to; char* to + }, ; 10871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19439_from, ; char* from + ptr @.TypeMapEntry.19438_to; char* to + }, ; 10872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19440_from, ; char* from + ptr @.TypeMapEntry.19441_to; char* to + }, ; 10873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19442_from, ; char* from + ptr @.TypeMapEntry.19441_to; char* to + }, ; 10874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19443_from, ; char* from + ptr @.TypeMapEntry.19444_to; char* to + }, ; 10875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19445_from, ; char* from + ptr @.TypeMapEntry.19444_to; char* to + }, ; 10876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19446_from, ; char* from + ptr @.TypeMapEntry.19447_to; char* to + }, ; 10877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19448_from, ; char* from + ptr @.TypeMapEntry.19447_to; char* to + }, ; 10878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19449_from, ; char* from + ptr @.TypeMapEntry.19450_to; char* to + }, ; 10879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19451_from, ; char* from + ptr @.TypeMapEntry.19450_to; char* to + }, ; 10880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19452_from, ; char* from + ptr @.TypeMapEntry.19453_to; char* to + }, ; 10881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19454_from, ; char* from + ptr @.TypeMapEntry.19453_to; char* to + }, ; 10882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19455_from, ; char* from + ptr @.TypeMapEntry.19456_to; char* to + }, ; 10883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19457_from, ; char* from + ptr @.TypeMapEntry.19456_to; char* to + }, ; 10884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19458_from, ; char* from + ptr @.TypeMapEntry.19459_to; char* to + }, ; 10885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19460_from, ; char* from + ptr @.TypeMapEntry.19461_to; char* to + }, ; 10886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19462_from, ; char* from + ptr @.TypeMapEntry.19463_to; char* to + }, ; 10887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19464_from, ; char* from + ptr @.TypeMapEntry.19465_to; char* to + }, ; 10888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19466_from, ; char* from + ptr @.TypeMapEntry.19467_to; char* to + }, ; 10889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19468_from, ; char* from + ptr @.TypeMapEntry.19469_to; char* to + }, ; 10890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19470_from, ; char* from + ptr @.TypeMapEntry.19471_to; char* to + }, ; 10891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19472_from, ; char* from + ptr @.TypeMapEntry.19473_to; char* to + }, ; 10892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19474_from, ; char* from + ptr @.TypeMapEntry.19475_to; char* to + }, ; 10893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19476_from, ; char* from + ptr @.TypeMapEntry.19477_to; char* to + }, ; 10894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19478_from, ; char* from + ptr @.TypeMapEntry.19479_to; char* to + }, ; 10895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19480_from, ; char* from + ptr @.TypeMapEntry.19481_to; char* to + }, ; 10896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19482_from, ; char* from + ptr @.TypeMapEntry.19483_to; char* to + }, ; 10897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19484_from, ; char* from + ptr @.TypeMapEntry.19485_to; char* to + }, ; 10898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19486_from, ; char* from + ptr @.TypeMapEntry.19487_to; char* to + }, ; 10899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19488_from, ; char* from + ptr @.TypeMapEntry.19489_to; char* to + }, ; 10900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19490_from, ; char* from + ptr @.TypeMapEntry.19491_to; char* to + }, ; 10901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19492_from, ; char* from + ptr @.TypeMapEntry.19493_to; char* to + }, ; 10902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19494_from, ; char* from + ptr @.TypeMapEntry.19495_to; char* to + }, ; 10903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19496_from, ; char* from + ptr @.TypeMapEntry.19497_to; char* to + }, ; 10904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19498_from, ; char* from + ptr @.TypeMapEntry.19499_to; char* to + }, ; 10905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19500_from, ; char* from + ptr @.TypeMapEntry.19501_to; char* to + }, ; 10906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19502_from, ; char* from + ptr @.TypeMapEntry.19503_to; char* to + }, ; 10907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19504_from, ; char* from + ptr @.TypeMapEntry.19505_to; char* to + }, ; 10908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19506_from, ; char* from + ptr @.TypeMapEntry.19507_to; char* to + }, ; 10909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19508_from, ; char* from + ptr @.TypeMapEntry.19509_to; char* to + }, ; 10910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19510_from, ; char* from + ptr @.TypeMapEntry.19511_to; char* to + }, ; 10911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19512_from, ; char* from + ptr @.TypeMapEntry.19513_to; char* to + }, ; 10912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19514_from, ; char* from + ptr @.TypeMapEntry.19515_to; char* to + }, ; 10913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19516_from, ; char* from + ptr @.TypeMapEntry.19515_to; char* to + }, ; 10914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19517_from, ; char* from + ptr @.TypeMapEntry.19518_to; char* to + }, ; 10915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19519_from, ; char* from + ptr @.TypeMapEntry.19520_to; char* to + }, ; 10916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19521_from, ; char* from + ptr @.TypeMapEntry.19522_to; char* to + }, ; 10917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19523_from, ; char* from + ptr @.TypeMapEntry.19524_to; char* to + }, ; 10918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19525_from, ; char* from + ptr @.TypeMapEntry.19524_to; char* to + }, ; 10919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19526_from, ; char* from + ptr @.TypeMapEntry.19527_to; char* to + }, ; 10920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19528_from, ; char* from + ptr @.TypeMapEntry.19527_to; char* to + }, ; 10921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19529_from, ; char* from + ptr @.TypeMapEntry.19530_to; char* to + }, ; 10922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19531_from, ; char* from + ptr @.TypeMapEntry.19532_to; char* to + }, ; 10923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19533_from, ; char* from + ptr @.TypeMapEntry.19532_to; char* to + }, ; 10924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19534_from, ; char* from + ptr @.TypeMapEntry.19535_to; char* to + }, ; 10925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19536_from, ; char* from + ptr @.TypeMapEntry.19537_to; char* to + }, ; 10926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19538_from, ; char* from + ptr @.TypeMapEntry.19539_to; char* to + }, ; 10927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19540_from, ; char* from + ptr @.TypeMapEntry.19541_to; char* to + }, ; 10928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19542_from, ; char* from + ptr @.TypeMapEntry.19543_to; char* to + }, ; 10929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19544_from, ; char* from + ptr @.TypeMapEntry.19543_to; char* to + }, ; 10930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19545_from, ; char* from + ptr @.TypeMapEntry.19546_to; char* to + }, ; 10931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19547_from, ; char* from + ptr @.TypeMapEntry.19546_to; char* to + }, ; 10932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19548_from, ; char* from + ptr @.TypeMapEntry.19549_to; char* to + }, ; 10933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19550_from, ; char* from + ptr @.TypeMapEntry.19551_to; char* to + }, ; 10934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19552_from, ; char* from + ptr @.TypeMapEntry.19553_to; char* to + }, ; 10935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19554_from, ; char* from + ptr @.TypeMapEntry.19555_to; char* to + }, ; 10936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19556_from, ; char* from + ptr @.TypeMapEntry.19557_to; char* to + }, ; 10937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19558_from, ; char* from + ptr @.TypeMapEntry.19559_to; char* to + }, ; 10938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19560_from, ; char* from + ptr @.TypeMapEntry.19559_to; char* to + }, ; 10939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19561_from, ; char* from + ptr @.TypeMapEntry.19562_to; char* to + }, ; 10940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19563_from, ; char* from + ptr @.TypeMapEntry.19564_to; char* to + }, ; 10941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19565_from, ; char* from + ptr @.TypeMapEntry.19566_to; char* to + }, ; 10942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19567_from, ; char* from + ptr @.TypeMapEntry.19568_to; char* to + }, ; 10943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19569_from, ; char* from + ptr @.TypeMapEntry.19570_to; char* to + }, ; 10944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19571_from, ; char* from + ptr @.TypeMapEntry.19572_to; char* to + }, ; 10945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19573_from, ; char* from + ptr @.TypeMapEntry.19574_to; char* to + }, ; 10946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19575_from, ; char* from + ptr @.TypeMapEntry.19574_to; char* to + }, ; 10947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19576_from, ; char* from + ptr @.TypeMapEntry.19577_to; char* to + }, ; 10948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19578_from, ; char* from + ptr @.TypeMapEntry.19577_to; char* to + }, ; 10949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19579_from, ; char* from + ptr @.TypeMapEntry.19580_to; char* to + }, ; 10950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19581_from, ; char* from + ptr @.TypeMapEntry.19582_to; char* to + }, ; 10951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19583_from, ; char* from + ptr @.TypeMapEntry.19584_to; char* to + }, ; 10952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19585_from, ; char* from + ptr @.TypeMapEntry.19586_to; char* to + }, ; 10953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19587_from, ; char* from + ptr @.TypeMapEntry.19588_to; char* to + }, ; 10954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19589_from, ; char* from + ptr @.TypeMapEntry.19590_to; char* to + }, ; 10955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19591_from, ; char* from + ptr @.TypeMapEntry.19592_to; char* to + }, ; 10956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19593_from, ; char* from + ptr @.TypeMapEntry.19592_to; char* to + }, ; 10957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19594_from, ; char* from + ptr @.TypeMapEntry.19595_to; char* to + }, ; 10958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19596_from, ; char* from + ptr @.TypeMapEntry.19595_to; char* to + }, ; 10959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19597_from, ; char* from + ptr @.TypeMapEntry.19598_to; char* to + }, ; 10960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19599_from, ; char* from + ptr @.TypeMapEntry.19598_to; char* to + }, ; 10961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19600_from, ; char* from + ptr @.TypeMapEntry.19601_to; char* to + }, ; 10962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19602_from, ; char* from + ptr @.TypeMapEntry.19601_to; char* to + }, ; 10963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19603_from, ; char* from + ptr @.TypeMapEntry.19604_to; char* to + }, ; 10964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19605_from, ; char* from + ptr @.TypeMapEntry.19604_to; char* to + }, ; 10965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19606_from, ; char* from + ptr @.TypeMapEntry.19607_to; char* to + }, ; 10966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19608_from, ; char* from + ptr @.TypeMapEntry.19607_to; char* to + }, ; 10967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19609_from, ; char* from + ptr @.TypeMapEntry.19610_to; char* to + }, ; 10968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19611_from, ; char* from + ptr @.TypeMapEntry.19612_to; char* to + }, ; 10969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19613_from, ; char* from + ptr @.TypeMapEntry.19614_to; char* to + }, ; 10970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19615_from, ; char* from + ptr @.TypeMapEntry.19616_to; char* to + }, ; 10971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19617_from, ; char* from + ptr @.TypeMapEntry.19618_to; char* to + }, ; 10972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19619_from, ; char* from + ptr @.TypeMapEntry.19620_to; char* to + }, ; 10973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19621_from, ; char* from + ptr @.TypeMapEntry.19620_to; char* to + }, ; 10974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19622_from, ; char* from + ptr @.TypeMapEntry.19623_to; char* to + }, ; 10975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19624_from, ; char* from + ptr @.TypeMapEntry.19625_to; char* to + }, ; 10976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19626_from, ; char* from + ptr @.TypeMapEntry.19627_to; char* to + }, ; 10977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19628_from, ; char* from + ptr @.TypeMapEntry.19629_to; char* to + }, ; 10978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19630_from, ; char* from + ptr @.TypeMapEntry.19631_to; char* to + }, ; 10979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19632_from, ; char* from + ptr @.TypeMapEntry.19633_to; char* to + }, ; 10980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19634_from, ; char* from + ptr @.TypeMapEntry.19635_to; char* to + }, ; 10981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19636_from, ; char* from + ptr @.TypeMapEntry.19637_to; char* to + }, ; 10982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19638_from, ; char* from + ptr @.TypeMapEntry.19639_to; char* to + }, ; 10983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19640_from, ; char* from + ptr @.TypeMapEntry.19641_to; char* to + }, ; 10984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19642_from, ; char* from + ptr @.TypeMapEntry.19643_to; char* to + }, ; 10985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19644_from, ; char* from + ptr @.TypeMapEntry.19645_to; char* to + }, ; 10986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19646_from, ; char* from + ptr @.TypeMapEntry.19645_to; char* to + }, ; 10987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19647_from, ; char* from + ptr @.TypeMapEntry.19648_to; char* to + }, ; 10988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19649_from, ; char* from + ptr @.TypeMapEntry.19650_to; char* to + }, ; 10989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19651_from, ; char* from + ptr @.TypeMapEntry.19652_to; char* to + }, ; 10990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19653_from, ; char* from + ptr @.TypeMapEntry.19654_to; char* to + }, ; 10991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19655_from, ; char* from + ptr @.TypeMapEntry.19656_to; char* to + }, ; 10992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19657_from, ; char* from + ptr @.TypeMapEntry.19658_to; char* to + }, ; 10993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19659_from, ; char* from + ptr @.TypeMapEntry.19660_to; char* to + }, ; 10994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19661_from, ; char* from + ptr @.TypeMapEntry.19662_to; char* to + }, ; 10995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19663_from, ; char* from + ptr @.TypeMapEntry.19664_to; char* to + }, ; 10996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19665_from, ; char* from + ptr @.TypeMapEntry.19666_to; char* to + }, ; 10997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19667_from, ; char* from + ptr @.TypeMapEntry.19668_to; char* to + }, ; 10998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19669_from, ; char* from + ptr @.TypeMapEntry.19670_to; char* to + }, ; 10999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19671_from, ; char* from + ptr @.TypeMapEntry.19672_to; char* to + }, ; 11000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19673_from, ; char* from + ptr @.TypeMapEntry.19672_to; char* to + }, ; 11001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19674_from, ; char* from + ptr @.TypeMapEntry.19675_to; char* to + }, ; 11002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19676_from, ; char* from + ptr @.TypeMapEntry.19675_to; char* to + }, ; 11003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19677_from, ; char* from + ptr @.TypeMapEntry.19678_to; char* to + }, ; 11004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19679_from, ; char* from + ptr @.TypeMapEntry.19678_to; char* to + }, ; 11005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19680_from, ; char* from + ptr @.TypeMapEntry.19681_to; char* to + }, ; 11006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19682_from, ; char* from + ptr @.TypeMapEntry.19681_to; char* to + }, ; 11007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19683_from, ; char* from + ptr @.TypeMapEntry.19670_to; char* to + }, ; 11008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19684_from, ; char* from + ptr @.TypeMapEntry.19685_to; char* to + }, ; 11009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19686_from, ; char* from + ptr @.TypeMapEntry.19685_to; char* to + }, ; 11010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19687_from, ; char* from + ptr @.TypeMapEntry.19688_to; char* to + }, ; 11011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19689_from, ; char* from + ptr @.TypeMapEntry.19688_to; char* to + }, ; 11012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19690_from, ; char* from + ptr @.TypeMapEntry.19691_to; char* to + }, ; 11013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19692_from, ; char* from + ptr @.TypeMapEntry.19693_to; char* to + }, ; 11014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19694_from, ; char* from + ptr @.TypeMapEntry.19695_to; char* to + }, ; 11015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19696_from, ; char* from + ptr @.TypeMapEntry.19697_to; char* to + }, ; 11016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19698_from, ; char* from + ptr @.TypeMapEntry.19699_to; char* to + }, ; 11017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19700_from, ; char* from + ptr @.TypeMapEntry.19701_to; char* to + }, ; 11018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19702_from, ; char* from + ptr @.TypeMapEntry.19703_to; char* to + }, ; 11019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19704_from, ; char* from + ptr @.TypeMapEntry.19705_to; char* to + }, ; 11020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19706_from, ; char* from + ptr @.TypeMapEntry.19707_to; char* to + }, ; 11021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19708_from, ; char* from + ptr @.TypeMapEntry.19709_to; char* to + }, ; 11022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19710_from, ; char* from + ptr @.TypeMapEntry.19711_to; char* to + }, ; 11023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19712_from, ; char* from + ptr @.TypeMapEntry.19713_to; char* to + }, ; 11024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19714_from, ; char* from + ptr @.TypeMapEntry.19715_to; char* to + }, ; 11025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19716_from, ; char* from + ptr @.TypeMapEntry.19717_to; char* to + }, ; 11026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19718_from, ; char* from + ptr @.TypeMapEntry.19719_to; char* to + }, ; 11027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19720_from, ; char* from + ptr @.TypeMapEntry.19719_to; char* to + }, ; 11028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19721_from, ; char* from + ptr @.TypeMapEntry.19722_to; char* to + }, ; 11029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19723_from, ; char* from + ptr @.TypeMapEntry.19724_to; char* to + }, ; 11030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19725_from, ; char* from + ptr @.TypeMapEntry.19726_to; char* to + }, ; 11031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19727_from, ; char* from + ptr @.TypeMapEntry.19726_to; char* to + }, ; 11032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19728_from, ; char* from + ptr @.TypeMapEntry.19729_to; char* to + }, ; 11033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19730_from, ; char* from + ptr @.TypeMapEntry.19729_to; char* to + }, ; 11034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19731_from, ; char* from + ptr @.TypeMapEntry.19732_to; char* to + }, ; 11035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19733_from, ; char* from + ptr @.TypeMapEntry.19734_to; char* to + }, ; 11036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19735_from, ; char* from + ptr @.TypeMapEntry.19736_to; char* to + }, ; 11037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19737_from, ; char* from + ptr @.TypeMapEntry.19736_to; char* to + }, ; 11038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19738_from, ; char* from + ptr @.TypeMapEntry.19739_to; char* to + }, ; 11039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19740_from, ; char* from + ptr @.TypeMapEntry.19739_to; char* to + }, ; 11040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19741_from, ; char* from + ptr @.TypeMapEntry.19742_to; char* to + }, ; 11041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19743_from, ; char* from + ptr @.TypeMapEntry.19742_to; char* to + }, ; 11042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19744_from, ; char* from + ptr @.TypeMapEntry.19745_to; char* to + }, ; 11043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19746_from, ; char* from + ptr @.TypeMapEntry.19745_to; char* to + }, ; 11044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19747_from, ; char* from + ptr @.TypeMapEntry.19748_to; char* to + }, ; 11045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19749_from, ; char* from + ptr @.TypeMapEntry.7181_to; char* to + }, ; 11046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19750_from, ; char* from + ptr @.TypeMapEntry.19751_to; char* to + }, ; 11047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19752_from, ; char* from + ptr @.TypeMapEntry.19753_to; char* to + }, ; 11048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19754_from, ; char* from + ptr @.TypeMapEntry.19755_to; char* to + }, ; 11049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19756_from, ; char* from + ptr @.TypeMapEntry.19757_to; char* to + }, ; 11050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19758_from, ; char* from + ptr @.TypeMapEntry.19759_to; char* to + }, ; 11051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19760_from, ; char* from + ptr @.TypeMapEntry.19761_to; char* to + }, ; 11052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19762_from, ; char* from + ptr @.TypeMapEntry.19763_to; char* to + }, ; 11053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19764_from, ; char* from + ptr @.TypeMapEntry.19763_to; char* to + }, ; 11054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19765_from, ; char* from + ptr @.TypeMapEntry.19766_to; char* to + }, ; 11055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19767_from, ; char* from + ptr @.TypeMapEntry.19768_to; char* to + }, ; 11056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19769_from, ; char* from + ptr @.TypeMapEntry.19770_to; char* to + }, ; 11057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19771_from, ; char* from + ptr @.TypeMapEntry.19770_to; char* to + }, ; 11058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19772_from, ; char* from + ptr @.TypeMapEntry.19773_to; char* to + }, ; 11059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19774_from, ; char* from + ptr @.TypeMapEntry.19775_to; char* to + }, ; 11060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19776_from, ; char* from + ptr @.TypeMapEntry.19777_to; char* to + }, ; 11061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19778_from, ; char* from + ptr @.TypeMapEntry.19779_to; char* to + }, ; 11062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19780_from, ; char* from + ptr @.TypeMapEntry.19781_to; char* to + }, ; 11063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19782_from, ; char* from + ptr @.TypeMapEntry.19781_to; char* to + }, ; 11064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19783_from, ; char* from + ptr @.TypeMapEntry.19784_to; char* to + }, ; 11065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19785_from, ; char* from + ptr @.TypeMapEntry.19786_to; char* to + }, ; 11066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19787_from, ; char* from + ptr @.TypeMapEntry.19788_to; char* to + }, ; 11067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19789_from, ; char* from + ptr @.TypeMapEntry.19788_to; char* to + }, ; 11068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19790_from, ; char* from + ptr @.TypeMapEntry.19791_to; char* to + }, ; 11069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19792_from, ; char* from + ptr @.TypeMapEntry.19793_to; char* to + }, ; 11070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19794_from, ; char* from + ptr @.TypeMapEntry.19795_to; char* to + }, ; 11071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19796_from, ; char* from + ptr @.TypeMapEntry.19797_to; char* to + }, ; 11072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19798_from, ; char* from + ptr @.TypeMapEntry.19797_to; char* to + }, ; 11073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19799_from, ; char* from + ptr @.TypeMapEntry.19800_to; char* to + }, ; 11074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19801_from, ; char* from + ptr @.TypeMapEntry.19802_to; char* to + }, ; 11075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19803_from, ; char* from + ptr @.TypeMapEntry.19804_to; char* to + }, ; 11076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19805_from, ; char* from + ptr @.TypeMapEntry.19806_to; char* to + }, ; 11077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19807_from, ; char* from + ptr @.TypeMapEntry.19808_to; char* to + }, ; 11078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19809_from, ; char* from + ptr @.TypeMapEntry.19810_to; char* to + }, ; 11079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19811_from, ; char* from + ptr @.TypeMapEntry.19810_to; char* to + }, ; 11080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19812_from, ; char* from + ptr @.TypeMapEntry.19813_to; char* to + }, ; 11081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19814_from, ; char* from + ptr @.TypeMapEntry.19815_to; char* to + }, ; 11082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19816_from, ; char* from + ptr @.TypeMapEntry.19817_to; char* to + }, ; 11083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19818_from, ; char* from + ptr @.TypeMapEntry.19817_to; char* to + }, ; 11084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19819_from, ; char* from + ptr @.TypeMapEntry.19820_to; char* to + }, ; 11085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19821_from, ; char* from + ptr @.TypeMapEntry.19822_to; char* to + }, ; 11086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19823_from, ; char* from + ptr @.TypeMapEntry.19824_to; char* to + }, ; 11087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19825_from, ; char* from + ptr @.TypeMapEntry.19826_to; char* to + }, ; 11088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19827_from, ; char* from + ptr @.TypeMapEntry.19828_to; char* to + }, ; 11089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19829_from, ; char* from + ptr @.TypeMapEntry.19830_to; char* to + }, ; 11090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19831_from, ; char* from + ptr @.TypeMapEntry.19832_to; char* to + }, ; 11091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19833_from, ; char* from + ptr @.TypeMapEntry.19834_to; char* to + }, ; 11092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19835_from, ; char* from + ptr @.TypeMapEntry.19836_to; char* to + }, ; 11093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19837_from, ; char* from + ptr @.TypeMapEntry.19838_to; char* to + }, ; 11094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19839_from, ; char* from + ptr @.TypeMapEntry.19838_to; char* to + }, ; 11095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19840_from, ; char* from + ptr @.TypeMapEntry.19841_to; char* to + }, ; 11096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19842_from, ; char* from + ptr @.TypeMapEntry.19843_to; char* to + }, ; 11097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19844_from, ; char* from + ptr @.TypeMapEntry.19845_to; char* to + }, ; 11098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19846_from, ; char* from + ptr @.TypeMapEntry.19847_to; char* to + }, ; 11099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19848_from, ; char* from + ptr @.TypeMapEntry.19849_to; char* to + }, ; 11100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19850_from, ; char* from + ptr @.TypeMapEntry.19851_to; char* to + }, ; 11101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19852_from, ; char* from + ptr @.TypeMapEntry.19853_to; char* to + }, ; 11102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19854_from, ; char* from + ptr @.TypeMapEntry.19853_to; char* to + }, ; 11103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19855_from, ; char* from + ptr @.TypeMapEntry.19856_to; char* to + }, ; 11104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19857_from, ; char* from + ptr @.TypeMapEntry.19856_to; char* to + }, ; 11105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19858_from, ; char* from + ptr @.TypeMapEntry.19859_to; char* to + }, ; 11106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19860_from, ; char* from + ptr @.TypeMapEntry.19859_to; char* to + }, ; 11107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19861_from, ; char* from + ptr @.TypeMapEntry.19862_to; char* to + }, ; 11108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19863_from, ; char* from + ptr @.TypeMapEntry.19862_to; char* to + }, ; 11109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19864_from, ; char* from + ptr @.TypeMapEntry.19865_to; char* to + }, ; 11110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19866_from, ; char* from + ptr @.TypeMapEntry.19867_to; char* to + }, ; 11111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19868_from, ; char* from + ptr @.TypeMapEntry.19867_to; char* to + }, ; 11112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19869_from, ; char* from + ptr @.TypeMapEntry.19870_to; char* to + }, ; 11113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19871_from, ; char* from + ptr @.TypeMapEntry.19870_to; char* to + }, ; 11114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19872_from, ; char* from + ptr @.TypeMapEntry.19873_to; char* to + }, ; 11115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19874_from, ; char* from + ptr @.TypeMapEntry.19875_to; char* to + }, ; 11116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19876_from, ; char* from + ptr @.TypeMapEntry.19875_to; char* to + }, ; 11117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19877_from, ; char* from + ptr @.TypeMapEntry.19878_to; char* to + }, ; 11118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19879_from, ; char* from + ptr @.TypeMapEntry.19880_to; char* to + }, ; 11119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19881_from, ; char* from + ptr @.TypeMapEntry.19882_to; char* to + }, ; 11120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19883_from, ; char* from + ptr @.TypeMapEntry.19882_to; char* to + }, ; 11121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19884_from, ; char* from + ptr @.TypeMapEntry.19885_to; char* to + }, ; 11122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19886_from, ; char* from + ptr @.TypeMapEntry.19885_to; char* to + }, ; 11123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19887_from, ; char* from + ptr @.TypeMapEntry.19888_to; char* to + }, ; 11124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19889_from, ; char* from + ptr @.TypeMapEntry.19888_to; char* to + }, ; 11125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19890_from, ; char* from + ptr @.TypeMapEntry.19891_to; char* to + }, ; 11126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19892_from, ; char* from + ptr @.TypeMapEntry.19891_to; char* to + }, ; 11127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19893_from, ; char* from + ptr @.TypeMapEntry.19894_to; char* to + }, ; 11128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19895_from, ; char* from + ptr @.TypeMapEntry.19894_to; char* to + }, ; 11129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19896_from, ; char* from + ptr @.TypeMapEntry.19897_to; char* to + }, ; 11130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19898_from, ; char* from + ptr @.TypeMapEntry.19897_to; char* to + }, ; 11131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19899_from, ; char* from + ptr @.TypeMapEntry.19900_to; char* to + }, ; 11132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19901_from, ; char* from + ptr @.TypeMapEntry.19900_to; char* to + }, ; 11133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19902_from, ; char* from + ptr @.TypeMapEntry.19903_to; char* to + }, ; 11134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19904_from, ; char* from + ptr @.TypeMapEntry.19903_to; char* to + }, ; 11135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19905_from, ; char* from + ptr @.TypeMapEntry.19906_to; char* to + }, ; 11136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19907_from, ; char* from + ptr @.TypeMapEntry.19906_to; char* to + }, ; 11137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19908_from, ; char* from + ptr @.TypeMapEntry.19909_to; char* to + }, ; 11138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19910_from, ; char* from + ptr @.TypeMapEntry.19909_to; char* to + }, ; 11139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19911_from, ; char* from + ptr @.TypeMapEntry.19912_to; char* to + }, ; 11140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19913_from, ; char* from + ptr @.TypeMapEntry.19912_to; char* to + }, ; 11141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19914_from, ; char* from + ptr @.TypeMapEntry.19915_to; char* to + }, ; 11142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19916_from, ; char* from + ptr @.TypeMapEntry.19915_to; char* to + }, ; 11143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19917_from, ; char* from + ptr @.TypeMapEntry.19918_to; char* to + }, ; 11144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19919_from, ; char* from + ptr @.TypeMapEntry.19918_to; char* to + }, ; 11145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19920_from, ; char* from + ptr @.TypeMapEntry.19921_to; char* to + }, ; 11146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19922_from, ; char* from + ptr @.TypeMapEntry.19921_to; char* to + }, ; 11147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19923_from, ; char* from + ptr @.TypeMapEntry.19924_to; char* to + }, ; 11148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19925_from, ; char* from + ptr @.TypeMapEntry.19924_to; char* to + }, ; 11149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19926_from, ; char* from + ptr @.TypeMapEntry.19927_to; char* to + }, ; 11150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19928_from, ; char* from + ptr @.TypeMapEntry.19927_to; char* to + }, ; 11151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19929_from, ; char* from + ptr @.TypeMapEntry.19930_to; char* to + }, ; 11152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19931_from, ; char* from + ptr @.TypeMapEntry.19930_to; char* to + }, ; 11153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19932_from, ; char* from + ptr @.TypeMapEntry.19933_to; char* to + }, ; 11154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19934_from, ; char* from + ptr @.TypeMapEntry.19935_to; char* to + }, ; 11155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19936_from, ; char* from + ptr @.TypeMapEntry.19937_to; char* to + }, ; 11156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19938_from, ; char* from + ptr @.TypeMapEntry.19939_to; char* to + }, ; 11157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19940_from, ; char* from + ptr @.TypeMapEntry.19939_to; char* to + }, ; 11158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19941_from, ; char* from + ptr @.TypeMapEntry.19942_to; char* to + }, ; 11159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19943_from, ; char* from + ptr @.TypeMapEntry.19944_to; char* to + }, ; 11160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19945_from, ; char* from + ptr @.TypeMapEntry.19944_to; char* to + }, ; 11161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19946_from, ; char* from + ptr @.TypeMapEntry.19947_to; char* to + }, ; 11162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19948_from, ; char* from + ptr @.TypeMapEntry.19949_to; char* to + }, ; 11163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19950_from, ; char* from + ptr @.TypeMapEntry.19949_to; char* to + }, ; 11164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19951_from, ; char* from + ptr @.TypeMapEntry.19952_to; char* to + }, ; 11165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19953_from, ; char* from + ptr @.TypeMapEntry.19952_to; char* to + }, ; 11166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19954_from, ; char* from + ptr @.TypeMapEntry.19955_to; char* to + }, ; 11167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19956_from, ; char* from + ptr @.TypeMapEntry.19955_to; char* to + }, ; 11168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19957_from, ; char* from + ptr @.TypeMapEntry.19958_to; char* to + }, ; 11169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19959_from, ; char* from + ptr @.TypeMapEntry.19958_to; char* to + }, ; 11170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19960_from, ; char* from + ptr @.TypeMapEntry.19961_to; char* to + }, ; 11171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19962_from, ; char* from + ptr @.TypeMapEntry.19963_to; char* to + }, ; 11172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19964_from, ; char* from + ptr @.TypeMapEntry.19965_to; char* to + }, ; 11173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19966_from, ; char* from + ptr @.TypeMapEntry.19967_to; char* to + }, ; 11174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19968_from, ; char* from + ptr @.TypeMapEntry.19969_to; char* to + }, ; 11175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19970_from, ; char* from + ptr @.TypeMapEntry.19971_to; char* to + }, ; 11176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19972_from, ; char* from + ptr @.TypeMapEntry.19973_to; char* to + }, ; 11177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19974_from, ; char* from + ptr @.TypeMapEntry.19975_to; char* to + }, ; 11178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19976_from, ; char* from + ptr @.TypeMapEntry.19977_to; char* to + }, ; 11179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19978_from, ; char* from + ptr @.TypeMapEntry.19977_to; char* to + }, ; 11180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19979_from, ; char* from + ptr @.TypeMapEntry.19980_to; char* to + }, ; 11181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19981_from, ; char* from + ptr @.TypeMapEntry.19980_to; char* to + }, ; 11182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19982_from, ; char* from + ptr @.TypeMapEntry.19983_to; char* to + }, ; 11183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19984_from, ; char* from + ptr @.TypeMapEntry.19985_to; char* to + }, ; 11184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19986_from, ; char* from + ptr @.TypeMapEntry.19987_to; char* to + }, ; 11185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19988_from, ; char* from + ptr @.TypeMapEntry.19989_to; char* to + }, ; 11186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19990_from, ; char* from + ptr @.TypeMapEntry.19991_to; char* to + }, ; 11187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19992_from, ; char* from + ptr @.TypeMapEntry.19993_to; char* to + }, ; 11188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19994_from, ; char* from + ptr @.TypeMapEntry.19995_to; char* to + }, ; 11189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19996_from, ; char* from + ptr @.TypeMapEntry.19997_to; char* to + }, ; 11190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19998_from, ; char* from + ptr @.TypeMapEntry.19999_to; char* to + }, ; 11191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20000_from, ; char* from + ptr @.TypeMapEntry.20001_to; char* to + }, ; 11192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20002_from, ; char* from + ptr @.TypeMapEntry.20003_to; char* to + }, ; 11193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20004_from, ; char* from + ptr @.TypeMapEntry.20005_to; char* to + }, ; 11194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20006_from, ; char* from + ptr @.TypeMapEntry.20007_to; char* to + }, ; 11195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20008_from, ; char* from + ptr @.TypeMapEntry.20009_to; char* to + }, ; 11196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20010_from, ; char* from + ptr @.TypeMapEntry.20011_to; char* to + }, ; 11197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20012_from, ; char* from + ptr @.TypeMapEntry.20013_to; char* to + }, ; 11198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20014_from, ; char* from + ptr @.TypeMapEntry.20015_to; char* to + }, ; 11199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20016_from, ; char* from + ptr @.TypeMapEntry.20015_to; char* to + }, ; 11200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20017_from, ; char* from + ptr @.TypeMapEntry.20018_to; char* to + }, ; 11201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20019_from, ; char* from + ptr @.TypeMapEntry.20020_to; char* to + }, ; 11202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20021_from, ; char* from + ptr @.TypeMapEntry.20022_to; char* to + }, ; 11203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20023_from, ; char* from + ptr @.TypeMapEntry.20024_to; char* to + }, ; 11204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20025_from, ; char* from + ptr @.TypeMapEntry.20026_to; char* to + }, ; 11205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20027_from, ; char* from + ptr @.TypeMapEntry.20026_to; char* to + }, ; 11206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20028_from, ; char* from + ptr @.TypeMapEntry.20029_to; char* to + }, ; 11207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20030_from, ; char* from + ptr @.TypeMapEntry.20029_to; char* to + }, ; 11208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20031_from, ; char* from + ptr @.TypeMapEntry.20032_to; char* to + }, ; 11209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20033_from, ; char* from + ptr @.TypeMapEntry.20034_to; char* to + }, ; 11210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20035_from, ; char* from + ptr @.TypeMapEntry.20036_to; char* to + }, ; 11211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20037_from, ; char* from + ptr @.TypeMapEntry.20038_to; char* to + }, ; 11212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20039_from, ; char* from + ptr @.TypeMapEntry.20040_to; char* to + }, ; 11213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20041_from, ; char* from + ptr @.TypeMapEntry.20042_to; char* to + }, ; 11214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20043_from, ; char* from + ptr @.TypeMapEntry.20044_to; char* to + }, ; 11215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20045_from, ; char* from + ptr @.TypeMapEntry.20046_to; char* to + }, ; 11216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20047_from, ; char* from + ptr @.TypeMapEntry.20048_to; char* to + }, ; 11217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20049_from, ; char* from + ptr @.TypeMapEntry.20050_to; char* to + }, ; 11218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20051_from, ; char* from + ptr @.TypeMapEntry.20050_to; char* to + }, ; 11219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20052_from, ; char* from + ptr @.TypeMapEntry.20053_to; char* to + }, ; 11220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20054_from, ; char* from + ptr @.TypeMapEntry.20053_to; char* to + }, ; 11221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20055_from, ; char* from + ptr @.TypeMapEntry.20056_to; char* to + }, ; 11222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20057_from, ; char* from + ptr @.TypeMapEntry.20056_to; char* to + }, ; 11223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20058_from, ; char* from + ptr @.TypeMapEntry.20059_to; char* to + }, ; 11224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20060_from, ; char* from + ptr @.TypeMapEntry.20059_to; char* to + }, ; 11225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20061_from, ; char* from + ptr @.TypeMapEntry.20062_to; char* to + }, ; 11226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20063_from, ; char* from + ptr @.TypeMapEntry.20062_to; char* to + }, ; 11227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20064_from, ; char* from + ptr @.TypeMapEntry.20065_to; char* to + }, ; 11228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20066_from, ; char* from + ptr @.TypeMapEntry.20065_to; char* to + }, ; 11229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20067_from, ; char* from + ptr @.TypeMapEntry.20068_to; char* to + }, ; 11230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20069_from, ; char* from + ptr @.TypeMapEntry.20068_to; char* to + }, ; 11231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20070_from, ; char* from + ptr @.TypeMapEntry.20071_to; char* to + }, ; 11232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20072_from, ; char* from + ptr @.TypeMapEntry.20071_to; char* to + }, ; 11233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20073_from, ; char* from + ptr @.TypeMapEntry.20074_to; char* to + }, ; 11234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20075_from, ; char* from + ptr @.TypeMapEntry.20074_to; char* to + }, ; 11235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20076_from, ; char* from + ptr @.TypeMapEntry.20077_to; char* to + }, ; 11236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20078_from, ; char* from + ptr @.TypeMapEntry.20077_to; char* to + }, ; 11237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20079_from, ; char* from + ptr @.TypeMapEntry.20080_to; char* to + }, ; 11238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20081_from, ; char* from + ptr @.TypeMapEntry.20080_to; char* to + }, ; 11239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20082_from, ; char* from + ptr @.TypeMapEntry.20083_to; char* to + }, ; 11240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20084_from, ; char* from + ptr @.TypeMapEntry.20083_to; char* to + }, ; 11241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20085_from, ; char* from + ptr @.TypeMapEntry.20086_to; char* to + }, ; 11242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20087_from, ; char* from + ptr @.TypeMapEntry.20086_to; char* to + }, ; 11243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20088_from, ; char* from + ptr @.TypeMapEntry.20089_to; char* to + }, ; 11244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20090_from, ; char* from + ptr @.TypeMapEntry.20089_to; char* to + }, ; 11245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20091_from, ; char* from + ptr @.TypeMapEntry.20092_to; char* to + }, ; 11246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20093_from, ; char* from + ptr @.TypeMapEntry.20092_to; char* to + }, ; 11247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20094_from, ; char* from + ptr @.TypeMapEntry.20095_to; char* to + }, ; 11248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20096_from, ; char* from + ptr @.TypeMapEntry.20095_to; char* to + }, ; 11249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20097_from, ; char* from + ptr @.TypeMapEntry.20098_to; char* to + }, ; 11250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20099_from, ; char* from + ptr @.TypeMapEntry.20098_to; char* to + }, ; 11251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20100_from, ; char* from + ptr @.TypeMapEntry.20101_to; char* to + }, ; 11252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20102_from, ; char* from + ptr @.TypeMapEntry.20101_to; char* to + }, ; 11253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20103_from, ; char* from + ptr @.TypeMapEntry.20104_to; char* to + }, ; 11254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20105_from, ; char* from + ptr @.TypeMapEntry.20104_to; char* to + }, ; 11255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20106_from, ; char* from + ptr @.TypeMapEntry.20107_to; char* to + }, ; 11256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20108_from, ; char* from + ptr @.TypeMapEntry.20107_to; char* to + }, ; 11257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20109_from, ; char* from + ptr @.TypeMapEntry.20110_to; char* to + }, ; 11258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20111_from, ; char* from + ptr @.TypeMapEntry.20110_to; char* to + }, ; 11259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20112_from, ; char* from + ptr @.TypeMapEntry.20113_to; char* to + }, ; 11260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20114_from, ; char* from + ptr @.TypeMapEntry.20113_to; char* to + }, ; 11261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20115_from, ; char* from + ptr @.TypeMapEntry.20116_to; char* to + }, ; 11262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20117_from, ; char* from + ptr @.TypeMapEntry.20116_to; char* to + }, ; 11263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20118_from, ; char* from + ptr @.TypeMapEntry.20119_to; char* to + }, ; 11264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20120_from, ; char* from + ptr @.TypeMapEntry.20119_to; char* to + }, ; 11265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20121_from, ; char* from + ptr @.TypeMapEntry.20122_to; char* to + }, ; 11266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20123_from, ; char* from + ptr @.TypeMapEntry.20122_to; char* to + }, ; 11267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20124_from, ; char* from + ptr @.TypeMapEntry.20125_to; char* to + }, ; 11268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20126_from, ; char* from + ptr @.TypeMapEntry.20125_to; char* to + }, ; 11269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20127_from, ; char* from + ptr @.TypeMapEntry.20128_to; char* to + }, ; 11270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20129_from, ; char* from + ptr @.TypeMapEntry.20128_to; char* to + }, ; 11271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20130_from, ; char* from + ptr @.TypeMapEntry.20131_to; char* to + }, ; 11272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20132_from, ; char* from + ptr @.TypeMapEntry.20131_to; char* to + }, ; 11273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20133_from, ; char* from + ptr @.TypeMapEntry.20134_to; char* to + }, ; 11274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20135_from, ; char* from + ptr @.TypeMapEntry.20134_to; char* to + }, ; 11275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20136_from, ; char* from + ptr @.TypeMapEntry.20137_to; char* to + }, ; 11276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20138_from, ; char* from + ptr @.TypeMapEntry.20137_to; char* to + }, ; 11277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20139_from, ; char* from + ptr @.TypeMapEntry.20140_to; char* to + }, ; 11278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20141_from, ; char* from + ptr @.TypeMapEntry.20140_to; char* to + }, ; 11279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20142_from, ; char* from + ptr @.TypeMapEntry.20143_to; char* to + }, ; 11280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20144_from, ; char* from + ptr @.TypeMapEntry.20143_to; char* to + }, ; 11281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20145_from, ; char* from + ptr @.TypeMapEntry.20146_to; char* to + }, ; 11282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20147_from, ; char* from + ptr @.TypeMapEntry.20146_to; char* to + }, ; 11283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20148_from, ; char* from + ptr @.TypeMapEntry.20149_to; char* to + }, ; 11284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20150_from, ; char* from + ptr @.TypeMapEntry.20149_to; char* to + }, ; 11285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20151_from, ; char* from + ptr @.TypeMapEntry.20152_to; char* to + }, ; 11286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20153_from, ; char* from + ptr @.TypeMapEntry.20152_to; char* to + }, ; 11287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20154_from, ; char* from + ptr @.TypeMapEntry.20155_to; char* to + }, ; 11288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20156_from, ; char* from + ptr @.TypeMapEntry.20155_to; char* to + }, ; 11289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20157_from, ; char* from + ptr @.TypeMapEntry.20158_to; char* to + }, ; 11290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20159_from, ; char* from + ptr @.TypeMapEntry.20158_to; char* to + }, ; 11291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20160_from, ; char* from + ptr @.TypeMapEntry.20161_to; char* to + }, ; 11292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20162_from, ; char* from + ptr @.TypeMapEntry.20161_to; char* to + }, ; 11293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20163_from, ; char* from + ptr @.TypeMapEntry.20164_to; char* to + }, ; 11294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20165_from, ; char* from + ptr @.TypeMapEntry.20164_to; char* to + }, ; 11295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20166_from, ; char* from + ptr @.TypeMapEntry.20167_to; char* to + }, ; 11296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20168_from, ; char* from + ptr @.TypeMapEntry.20167_to; char* to + }, ; 11297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20169_from, ; char* from + ptr @.TypeMapEntry.20170_to; char* to + }, ; 11298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20171_from, ; char* from + ptr @.TypeMapEntry.20170_to; char* to + }, ; 11299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20172_from, ; char* from + ptr @.TypeMapEntry.20173_to; char* to + }, ; 11300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20174_from, ; char* from + ptr @.TypeMapEntry.20173_to; char* to + }, ; 11301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20175_from, ; char* from + ptr @.TypeMapEntry.20176_to; char* to + }, ; 11302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20177_from, ; char* from + ptr @.TypeMapEntry.20176_to; char* to + }, ; 11303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20178_from, ; char* from + ptr @.TypeMapEntry.20179_to; char* to + }, ; 11304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20180_from, ; char* from + ptr @.TypeMapEntry.20181_to; char* to + }, ; 11305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20182_from, ; char* from + ptr @.TypeMapEntry.20183_to; char* to + }, ; 11306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20184_from, ; char* from + ptr @.TypeMapEntry.20185_to; char* to + }, ; 11307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20186_from, ; char* from + ptr @.TypeMapEntry.20187_to; char* to + }, ; 11308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20188_from, ; char* from + ptr @.TypeMapEntry.7178_to; char* to + }, ; 11309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20189_from, ; char* from + ptr @.TypeMapEntry.7188_to; char* to + }, ; 11310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20190_from, ; char* from + ptr @.TypeMapEntry.20191_to; char* to + }, ; 11311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20192_from, ; char* from + ptr @.TypeMapEntry.20193_to; char* to + }, ; 11312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20194_from, ; char* from + ptr @.TypeMapEntry.7175_to; char* to + }, ; 11313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20195_from, ; char* from + ptr @.TypeMapEntry.7175_to; char* to + }, ; 11314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20196_from, ; char* from + ptr @.TypeMapEntry.20197_to; char* to + }, ; 11315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20198_from, ; char* from + ptr @.TypeMapEntry.20197_to; char* to + }, ; 11316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20199_from, ; char* from + ptr @.TypeMapEntry.20200_to; char* to + }, ; 11317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20201_from, ; char* from + ptr @.TypeMapEntry.20200_to; char* to + }, ; 11318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20202_from, ; char* from + ptr @.TypeMapEntry.20203_to; char* to + }, ; 11319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20204_from, ; char* from + ptr @.TypeMapEntry.20203_to; char* to + }, ; 11320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20205_from, ; char* from + ptr @.TypeMapEntry.20206_to; char* to + }, ; 11321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20207_from, ; char* from + ptr @.TypeMapEntry.20208_to; char* to + }, ; 11322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20209_from, ; char* from + ptr @.TypeMapEntry.20206_to; char* to + }, ; 11323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20210_from, ; char* from + ptr @.TypeMapEntry.20211_to; char* to + }, ; 11324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20212_from, ; char* from + ptr @.TypeMapEntry.20211_to; char* to + }, ; 11325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20213_from, ; char* from + ptr @.TypeMapEntry.20214_to; char* to + }, ; 11326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20215_from, ; char* from + ptr @.TypeMapEntry.20214_to; char* to + }, ; 11327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20216_from, ; char* from + ptr @.TypeMapEntry.20217_to; char* to + }, ; 11328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20218_from, ; char* from + ptr @.TypeMapEntry.20217_to; char* to + }, ; 11329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20219_from, ; char* from + ptr @.TypeMapEntry.20220_to; char* to + }, ; 11330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20221_from, ; char* from + ptr @.TypeMapEntry.20220_to; char* to + }, ; 11331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20222_from, ; char* from + ptr @.TypeMapEntry.20223_to; char* to + }, ; 11332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20224_from, ; char* from + ptr @.TypeMapEntry.20225_to; char* to + }, ; 11333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20226_from, ; char* from + ptr @.TypeMapEntry.20225_to; char* to + }, ; 11334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20227_from, ; char* from + ptr @.TypeMapEntry.20223_to; char* to + }, ; 11335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20228_from, ; char* from + ptr @.TypeMapEntry.20229_to; char* to + }, ; 11336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20230_from, ; char* from + ptr @.TypeMapEntry.20229_to; char* to + }, ; 11337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20231_from, ; char* from + ptr @.TypeMapEntry.20232_to; char* to + }, ; 11338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20233_from, ; char* from + ptr @.TypeMapEntry.20232_to; char* to + }, ; 11339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20234_from, ; char* from + ptr @.TypeMapEntry.20235_to; char* to + }, ; 11340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20236_from, ; char* from + ptr @.TypeMapEntry.20235_to; char* to + }, ; 11341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20237_from, ; char* from + ptr @.TypeMapEntry.20238_to; char* to + }, ; 11342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20239_from, ; char* from + ptr @.TypeMapEntry.20238_to; char* to + }, ; 11343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20240_from, ; char* from + ptr @.TypeMapEntry.20241_to; char* to + }, ; 11344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20242_from, ; char* from + ptr @.TypeMapEntry.20241_to; char* to + }, ; 11345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20243_from, ; char* from + ptr @.TypeMapEntry.20244_to; char* to + }, ; 11346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20245_from, ; char* from + ptr @.TypeMapEntry.20244_to; char* to + }, ; 11347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20246_from, ; char* from + ptr @.TypeMapEntry.20247_to; char* to + }, ; 11348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20248_from, ; char* from + ptr @.TypeMapEntry.20247_to; char* to + }, ; 11349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20249_from, ; char* from + ptr @.TypeMapEntry.20250_to; char* to + }, ; 11350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20251_from, ; char* from + ptr @.TypeMapEntry.20250_to; char* to + }, ; 11351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20252_from, ; char* from + ptr @.TypeMapEntry.20253_to; char* to + }, ; 11352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20254_from, ; char* from + ptr @.TypeMapEntry.20253_to; char* to + }, ; 11353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20255_from, ; char* from + ptr @.TypeMapEntry.20256_to; char* to + }, ; 11354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20257_from, ; char* from + ptr @.TypeMapEntry.20256_to; char* to + }, ; 11355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20258_from, ; char* from + ptr @.TypeMapEntry.20259_to; char* to + }, ; 11356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20260_from, ; char* from + ptr @.TypeMapEntry.20259_to; char* to + }, ; 11357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20261_from, ; char* from + ptr @.TypeMapEntry.20262_to; char* to + }, ; 11358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20263_from, ; char* from + ptr @.TypeMapEntry.20262_to; char* to + }, ; 11359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20264_from, ; char* from + ptr @.TypeMapEntry.20265_to; char* to + }, ; 11360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20266_from, ; char* from + ptr @.TypeMapEntry.20265_to; char* to + }, ; 11361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20267_from, ; char* from + ptr @.TypeMapEntry.20268_to; char* to + }, ; 11362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20269_from, ; char* from + ptr @.TypeMapEntry.20268_to; char* to + }, ; 11363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20270_from, ; char* from + ptr @.TypeMapEntry.20271_to; char* to + }, ; 11364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20272_from, ; char* from + ptr @.TypeMapEntry.20271_to; char* to + }, ; 11365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20273_from, ; char* from + ptr @.TypeMapEntry.20274_to; char* to + }, ; 11366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20275_from, ; char* from + ptr @.TypeMapEntry.20274_to; char* to + }, ; 11367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20276_from, ; char* from + ptr @.TypeMapEntry.20277_to; char* to + }, ; 11368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20278_from, ; char* from + ptr @.TypeMapEntry.20279_to; char* to + }, ; 11369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20280_from, ; char* from + ptr @.TypeMapEntry.20281_to; char* to + }, ; 11370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20282_from, ; char* from + ptr @.TypeMapEntry.20283_to; char* to + }, ; 11371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20284_from, ; char* from + ptr @.TypeMapEntry.20285_to; char* to + }, ; 11372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20286_from, ; char* from + ptr @.TypeMapEntry.20287_to; char* to + }, ; 11373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20288_from, ; char* from + ptr @.TypeMapEntry.20289_to; char* to + }, ; 11374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20290_from, ; char* from + ptr @.TypeMapEntry.20291_to; char* to + }, ; 11375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20292_from, ; char* from + ptr @.TypeMapEntry.20293_to; char* to + }, ; 11376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20294_from, ; char* from + ptr @.TypeMapEntry.20295_to; char* to + }, ; 11377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20296_from, ; char* from + ptr @.TypeMapEntry.20297_to; char* to + }, ; 11378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20298_from, ; char* from + ptr @.TypeMapEntry.20299_to; char* to + }, ; 11379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20300_from, ; char* from + ptr @.TypeMapEntry.20301_to; char* to + }, ; 11380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20302_from, ; char* from + ptr @.TypeMapEntry.20303_to; char* to + }, ; 11381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20304_from, ; char* from + ptr @.TypeMapEntry.20305_to; char* to + }, ; 11382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20306_from, ; char* from + ptr @.TypeMapEntry.20307_to; char* to + }, ; 11383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20308_from, ; char* from + ptr @.TypeMapEntry.20309_to; char* to + }, ; 11384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20310_from, ; char* from + ptr @.TypeMapEntry.20311_to; char* to + }, ; 11385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20312_from, ; char* from + ptr @.TypeMapEntry.20313_to; char* to + }, ; 11386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20314_from, ; char* from + ptr @.TypeMapEntry.20315_to; char* to + }, ; 11387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20316_from, ; char* from + ptr @.TypeMapEntry.20315_to; char* to + }, ; 11388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20317_from, ; char* from + ptr @.TypeMapEntry.20318_to; char* to + }, ; 11389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20319_from, ; char* from + ptr @.TypeMapEntry.20318_to; char* to + }, ; 11390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20320_from, ; char* from + ptr @.TypeMapEntry.20321_to; char* to + }, ; 11391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20322_from, ; char* from + ptr @.TypeMapEntry.20323_to; char* to + }, ; 11392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20324_from, ; char* from + ptr @.TypeMapEntry.20325_to; char* to + }, ; 11393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20326_from, ; char* from + ptr @.TypeMapEntry.20325_to; char* to + }, ; 11394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20327_from, ; char* from + ptr @.TypeMapEntry.20328_to; char* to + }, ; 11395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20329_from, ; char* from + ptr @.TypeMapEntry.20330_to; char* to + }, ; 11396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20331_from, ; char* from + ptr @.TypeMapEntry.20332_to; char* to + }, ; 11397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20333_from, ; char* from + ptr @.TypeMapEntry.20334_to; char* to + }, ; 11398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20335_from, ; char* from + ptr @.TypeMapEntry.20336_to; char* to + }, ; 11399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20337_from, ; char* from + ptr @.TypeMapEntry.20336_to; char* to + }, ; 11400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20338_from, ; char* from + ptr @.TypeMapEntry.20339_to; char* to + }, ; 11401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20340_from, ; char* from + ptr @.TypeMapEntry.20341_to; char* to + }, ; 11402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20342_from, ; char* from + ptr @.TypeMapEntry.20343_to; char* to + }, ; 11403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20344_from, ; char* from + ptr @.TypeMapEntry.20345_to; char* to + }, ; 11404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20346_from, ; char* from + ptr @.TypeMapEntry.20347_to; char* to + }, ; 11405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20348_from, ; char* from + ptr @.TypeMapEntry.20349_to; char* to + }, ; 11406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20350_from, ; char* from + ptr @.TypeMapEntry.20351_to; char* to + }, ; 11407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20352_from, ; char* from + ptr @.TypeMapEntry.20353_to; char* to + }, ; 11408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20354_from, ; char* from + ptr @.TypeMapEntry.20355_to; char* to + }, ; 11409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20356_from, ; char* from + ptr @.TypeMapEntry.20357_to; char* to + }, ; 11410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20358_from, ; char* from + ptr @.TypeMapEntry.20357_to; char* to + }, ; 11411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20359_from, ; char* from + ptr @.TypeMapEntry.20360_to; char* to + }, ; 11412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20361_from, ; char* from + ptr @.TypeMapEntry.20360_to; char* to + }, ; 11413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20362_from, ; char* from + ptr @.TypeMapEntry.20363_to; char* to + }, ; 11414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20364_from, ; char* from + ptr @.TypeMapEntry.20363_to; char* to + }, ; 11415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20365_from, ; char* from + ptr @.TypeMapEntry.20366_to; char* to + }, ; 11416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20367_from, ; char* from + ptr @.TypeMapEntry.20366_to; char* to + }, ; 11417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20368_from, ; char* from + ptr @.TypeMapEntry.20369_to; char* to + }, ; 11418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20370_from, ; char* from + ptr @.TypeMapEntry.20371_to; char* to + }, ; 11419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20372_from, ; char* from + ptr @.TypeMapEntry.20373_to; char* to + }, ; 11420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20374_from, ; char* from + ptr @.TypeMapEntry.20375_to; char* to + }, ; 11421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20376_from, ; char* from + ptr @.TypeMapEntry.20377_to; char* to + }, ; 11422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20378_from, ; char* from + ptr @.TypeMapEntry.20379_to; char* to + }, ; 11423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20380_from, ; char* from + ptr @.TypeMapEntry.20381_to; char* to + }, ; 11424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20382_from, ; char* from + ptr @.TypeMapEntry.20383_to; char* to + }, ; 11425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20384_from, ; char* from + ptr @.TypeMapEntry.20385_to; char* to + }, ; 11426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20386_from, ; char* from + ptr @.TypeMapEntry.20387_to; char* to + }, ; 11427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20388_from, ; char* from + ptr @.TypeMapEntry.20389_to; char* to + }, ; 11428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20390_from, ; char* from + ptr @.TypeMapEntry.20391_to; char* to + }, ; 11429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20392_from, ; char* from + ptr @.TypeMapEntry.20393_to; char* to + }, ; 11430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20394_from, ; char* from + ptr @.TypeMapEntry.20395_to; char* to + }, ; 11431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20396_from, ; char* from + ptr @.TypeMapEntry.20397_to; char* to + }, ; 11432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20398_from, ; char* from + ptr @.TypeMapEntry.20399_to; char* to + }, ; 11433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20400_from, ; char* from + ptr @.TypeMapEntry.20401_to; char* to + }, ; 11434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20402_from, ; char* from + ptr @.TypeMapEntry.20403_to; char* to + }, ; 11435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20404_from, ; char* from + ptr @.TypeMapEntry.20405_to; char* to + }, ; 11436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20406_from, ; char* from + ptr @.TypeMapEntry.20407_to; char* to + }, ; 11437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20408_from, ; char* from + ptr @.TypeMapEntry.20409_to; char* to + }, ; 11438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20410_from, ; char* from + ptr @.TypeMapEntry.20411_to; char* to + }, ; 11439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20412_from, ; char* from + ptr @.TypeMapEntry.20413_to; char* to + }, ; 11440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20414_from, ; char* from + ptr @.TypeMapEntry.20415_to; char* to + }, ; 11441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20416_from, ; char* from + ptr @.TypeMapEntry.20415_to; char* to + }, ; 11442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20417_from, ; char* from + ptr @.TypeMapEntry.20418_to; char* to + }, ; 11443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20419_from, ; char* from + ptr @.TypeMapEntry.20420_to; char* to + }, ; 11444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20421_from, ; char* from + ptr @.TypeMapEntry.20420_to; char* to + }, ; 11445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20422_from, ; char* from + ptr @.TypeMapEntry.20423_to; char* to + }, ; 11446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20424_from, ; char* from + ptr @.TypeMapEntry.20423_to; char* to + }, ; 11447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20425_from, ; char* from + ptr @.TypeMapEntry.20426_to; char* to + }, ; 11448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20427_from, ; char* from + ptr @.TypeMapEntry.20426_to; char* to + }, ; 11449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20428_from, ; char* from + ptr @.TypeMapEntry.20429_to; char* to + }, ; 11450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20430_from, ; char* from + ptr @.TypeMapEntry.20431_to; char* to + }, ; 11451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20432_from, ; char* from + ptr @.TypeMapEntry.20433_to; char* to + }, ; 11452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20434_from, ; char* from + ptr @.TypeMapEntry.20435_to; char* to + }, ; 11453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20436_from, ; char* from + ptr @.TypeMapEntry.20435_to; char* to + }, ; 11454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20437_from, ; char* from + ptr @.TypeMapEntry.20438_to; char* to + }, ; 11455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20439_from, ; char* from + ptr @.TypeMapEntry.20440_to; char* to + }, ; 11456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20441_from, ; char* from + ptr @.TypeMapEntry.20442_to; char* to + }, ; 11457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20443_from, ; char* from + ptr @.TypeMapEntry.20444_to; char* to + }, ; 11458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20445_from, ; char* from + ptr @.TypeMapEntry.20446_to; char* to + }, ; 11459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20447_from, ; char* from + ptr @.TypeMapEntry.20448_to; char* to + }, ; 11460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20449_from, ; char* from + ptr @.TypeMapEntry.20448_to; char* to + }, ; 11461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20450_from, ; char* from + ptr @.TypeMapEntry.20451_to; char* to + }, ; 11462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20452_from, ; char* from + ptr @.TypeMapEntry.20453_to; char* to + }, ; 11463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20454_from, ; char* from + ptr @.TypeMapEntry.20453_to; char* to + }, ; 11464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20455_from, ; char* from + ptr @.TypeMapEntry.20456_to; char* to + }, ; 11465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20457_from, ; char* from + ptr @.TypeMapEntry.20458_to; char* to + }, ; 11466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20459_from, ; char* from + ptr @.TypeMapEntry.20460_to; char* to + }, ; 11467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20461_from, ; char* from + ptr @.TypeMapEntry.20462_to; char* to + }, ; 11468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20463_from, ; char* from + ptr @.TypeMapEntry.20464_to; char* to + }, ; 11469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20465_from, ; char* from + ptr @.TypeMapEntry.20464_to; char* to + }, ; 11470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20466_from, ; char* from + ptr @.TypeMapEntry.20467_to; char* to + }, ; 11471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20468_from, ; char* from + ptr @.TypeMapEntry.20469_to; char* to + }, ; 11472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20470_from, ; char* from + ptr @.TypeMapEntry.20471_to; char* to + }, ; 11473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20472_from, ; char* from + ptr @.TypeMapEntry.20471_to; char* to + }, ; 11474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20473_from, ; char* from + ptr @.TypeMapEntry.20474_to; char* to + }, ; 11475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20475_from, ; char* from + ptr @.TypeMapEntry.20476_to; char* to + }, ; 11476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20477_from, ; char* from + ptr @.TypeMapEntry.20478_to; char* to + }, ; 11477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20479_from, ; char* from + ptr @.TypeMapEntry.20480_to; char* to + }, ; 11478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20481_from, ; char* from + ptr @.TypeMapEntry.20482_to; char* to + }, ; 11479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20483_from, ; char* from + ptr @.TypeMapEntry.20482_to; char* to + }, ; 11480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20484_from, ; char* from + ptr @.TypeMapEntry.20485_to; char* to + }, ; 11481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20486_from, ; char* from + ptr @.TypeMapEntry.20485_to; char* to + }, ; 11482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20487_from, ; char* from + ptr @.TypeMapEntry.20488_to; char* to + }, ; 11483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20489_from, ; char* from + ptr @.TypeMapEntry.20488_to; char* to + }, ; 11484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20490_from, ; char* from + ptr @.TypeMapEntry.20491_to; char* to + }, ; 11485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20492_from, ; char* from + ptr @.TypeMapEntry.20491_to; char* to + }, ; 11486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20493_from, ; char* from + ptr @.TypeMapEntry.20494_to; char* to + }, ; 11487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20495_from, ; char* from + ptr @.TypeMapEntry.20496_to; char* to + }, ; 11488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20497_from, ; char* from + ptr @.TypeMapEntry.20498_to; char* to + }, ; 11489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20499_from, ; char* from + ptr @.TypeMapEntry.20500_to; char* to + }, ; 11490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20501_from, ; char* from + ptr @.TypeMapEntry.20502_to; char* to + }, ; 11491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20503_from, ; char* from + ptr @.TypeMapEntry.20504_to; char* to + }, ; 11492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20505_from, ; char* from + ptr @.TypeMapEntry.20506_to; char* to + }, ; 11493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20507_from, ; char* from + ptr @.TypeMapEntry.20506_to; char* to + }, ; 11494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20508_from, ; char* from + ptr @.TypeMapEntry.20509_to; char* to + }, ; 11495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20510_from, ; char* from + ptr @.TypeMapEntry.20509_to; char* to + }, ; 11496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20511_from, ; char* from + ptr @.TypeMapEntry.20512_to; char* to + }, ; 11497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20513_from, ; char* from + ptr @.TypeMapEntry.20514_to; char* to + }, ; 11498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20515_from, ; char* from + ptr @.TypeMapEntry.20516_to; char* to + }, ; 11499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20517_from, ; char* from + ptr @.TypeMapEntry.20518_to; char* to + }, ; 11500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20519_from, ; char* from + ptr @.TypeMapEntry.20518_to; char* to + }, ; 11501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20520_from, ; char* from + ptr @.TypeMapEntry.20521_to; char* to + }, ; 11502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20522_from, ; char* from + ptr @.TypeMapEntry.20523_to; char* to + }, ; 11503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20524_from, ; char* from + ptr @.TypeMapEntry.20523_to; char* to + }, ; 11504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20525_from, ; char* from + ptr @.TypeMapEntry.20526_to; char* to + }, ; 11505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20527_from, ; char* from + ptr @.TypeMapEntry.20528_to; char* to + }, ; 11506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20529_from, ; char* from + ptr @.TypeMapEntry.20530_to; char* to + }, ; 11507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20531_from, ; char* from + ptr @.TypeMapEntry.20532_to; char* to + }, ; 11508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20533_from, ; char* from + ptr @.TypeMapEntry.20534_to; char* to + }, ; 11509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20535_from, ; char* from + ptr @.TypeMapEntry.20536_to; char* to + }, ; 11510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20537_from, ; char* from + ptr @.TypeMapEntry.20538_to; char* to + }, ; 11511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20539_from, ; char* from + ptr @.TypeMapEntry.20540_to; char* to + }, ; 11512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20541_from, ; char* from + ptr @.TypeMapEntry.20542_to; char* to + }, ; 11513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20543_from, ; char* from + ptr @.TypeMapEntry.20544_to; char* to + }, ; 11514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20545_from, ; char* from + ptr @.TypeMapEntry.20546_to; char* to + }, ; 11515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20547_from, ; char* from + ptr @.TypeMapEntry.20548_to; char* to + }, ; 11516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20549_from, ; char* from + ptr @.TypeMapEntry.20550_to; char* to + }, ; 11517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20551_from, ; char* from + ptr @.TypeMapEntry.20552_to; char* to + }, ; 11518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20553_from, ; char* from + ptr @.TypeMapEntry.20554_to; char* to + }, ; 11519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20555_from, ; char* from + ptr @.TypeMapEntry.20556_to; char* to + }, ; 11520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20557_from, ; char* from + ptr @.TypeMapEntry.20558_to; char* to + }, ; 11521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20559_from, ; char* from + ptr @.TypeMapEntry.20560_to; char* to + }, ; 11522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20561_from, ; char* from + ptr @.TypeMapEntry.20562_to; char* to + }, ; 11523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20563_from, ; char* from + ptr @.TypeMapEntry.20564_to; char* to + }, ; 11524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20565_from, ; char* from + ptr @.TypeMapEntry.20564_to; char* to + }, ; 11525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20566_from, ; char* from + ptr @.TypeMapEntry.20567_to; char* to + }, ; 11526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20568_from, ; char* from + ptr @.TypeMapEntry.20569_to; char* to + }, ; 11527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20570_from, ; char* from + ptr @.TypeMapEntry.20571_to; char* to + }, ; 11528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20572_from, ; char* from + ptr @.TypeMapEntry.20573_to; char* to + }, ; 11529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20574_from, ; char* from + ptr @.TypeMapEntry.20575_to; char* to + }, ; 11530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20576_from, ; char* from + ptr @.TypeMapEntry.20577_to; char* to + }, ; 11531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20578_from, ; char* from + ptr @.TypeMapEntry.20579_to; char* to + }, ; 11532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20580_from, ; char* from + ptr @.TypeMapEntry.20581_to; char* to + }, ; 11533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20582_from, ; char* from + ptr @.TypeMapEntry.20583_to; char* to + }, ; 11534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20584_from, ; char* from + ptr @.TypeMapEntry.20585_to; char* to + }, ; 11535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20586_from, ; char* from + ptr @.TypeMapEntry.20585_to; char* to + }, ; 11536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20587_from, ; char* from + ptr @.TypeMapEntry.20588_to; char* to + }, ; 11537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20589_from, ; char* from + ptr @.TypeMapEntry.20588_to; char* to + }, ; 11538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20590_from, ; char* from + ptr @.TypeMapEntry.20591_to; char* to + }, ; 11539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20592_from, ; char* from + ptr @.TypeMapEntry.20591_to; char* to + }, ; 11540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20593_from, ; char* from + ptr @.TypeMapEntry.20594_to; char* to + }, ; 11541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20595_from, ; char* from + ptr @.TypeMapEntry.20594_to; char* to + }, ; 11542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20596_from, ; char* from + ptr @.TypeMapEntry.20597_to; char* to + }, ; 11543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20598_from, ; char* from + ptr @.TypeMapEntry.20597_to; char* to + }, ; 11544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20599_from, ; char* from + ptr @.TypeMapEntry.20600_to; char* to + }, ; 11545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20601_from, ; char* from + ptr @.TypeMapEntry.20600_to; char* to + }, ; 11546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20602_from, ; char* from + ptr @.TypeMapEntry.20603_to; char* to + }, ; 11547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20604_from, ; char* from + ptr @.TypeMapEntry.20603_to; char* to + }, ; 11548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20605_from, ; char* from + ptr @.TypeMapEntry.20606_to; char* to + }, ; 11549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20607_from, ; char* from + ptr @.TypeMapEntry.20606_to; char* to + }, ; 11550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20608_from, ; char* from + ptr @.TypeMapEntry.20609_to; char* to + }, ; 11551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20610_from, ; char* from + ptr @.TypeMapEntry.20609_to; char* to + }, ; 11552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20611_from, ; char* from + ptr @.TypeMapEntry.20612_to; char* to + }, ; 11553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20613_from, ; char* from + ptr @.TypeMapEntry.20612_to; char* to + }, ; 11554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20614_from, ; char* from + ptr @.TypeMapEntry.20615_to; char* to + }, ; 11555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20616_from, ; char* from + ptr @.TypeMapEntry.20615_to; char* to + }, ; 11556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20617_from, ; char* from + ptr @.TypeMapEntry.20618_to; char* to + }, ; 11557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20619_from, ; char* from + ptr @.TypeMapEntry.20618_to; char* to + }, ; 11558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20620_from, ; char* from + ptr @.TypeMapEntry.20621_to; char* to + }, ; 11559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20622_from, ; char* from + ptr @.TypeMapEntry.20621_to; char* to + }, ; 11560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20623_from, ; char* from + ptr @.TypeMapEntry.20624_to; char* to + }, ; 11561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20625_from, ; char* from + ptr @.TypeMapEntry.20624_to; char* to + }, ; 11562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20626_from, ; char* from + ptr @.TypeMapEntry.20627_to; char* to + }, ; 11563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20628_from, ; char* from + ptr @.TypeMapEntry.20627_to; char* to + }, ; 11564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20629_from, ; char* from + ptr @.TypeMapEntry.20630_to; char* to + }, ; 11565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20631_from, ; char* from + ptr @.TypeMapEntry.20630_to; char* to + }, ; 11566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20632_from, ; char* from + ptr @.TypeMapEntry.20633_to; char* to + }, ; 11567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20634_from, ; char* from + ptr @.TypeMapEntry.20633_to; char* to + }, ; 11568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20635_from, ; char* from + ptr @.TypeMapEntry.20636_to; char* to + }, ; 11569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20637_from, ; char* from + ptr @.TypeMapEntry.20636_to; char* to + }, ; 11570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20638_from, ; char* from + ptr @.TypeMapEntry.20639_to; char* to + }, ; 11571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20640_from, ; char* from + ptr @.TypeMapEntry.20639_to; char* to + }, ; 11572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20641_from, ; char* from + ptr @.TypeMapEntry.20642_to; char* to + }, ; 11573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20643_from, ; char* from + ptr @.TypeMapEntry.20642_to; char* to + }, ; 11574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20644_from, ; char* from + ptr @.TypeMapEntry.20645_to; char* to + }, ; 11575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20646_from, ; char* from + ptr @.TypeMapEntry.20645_to; char* to + }, ; 11576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20647_from, ; char* from + ptr @.TypeMapEntry.20648_to; char* to + }, ; 11577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20649_from, ; char* from + ptr @.TypeMapEntry.20648_to; char* to + }, ; 11578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20650_from, ; char* from + ptr @.TypeMapEntry.20651_to; char* to + }, ; 11579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20652_from, ; char* from + ptr @.TypeMapEntry.20651_to; char* to + }, ; 11580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20653_from, ; char* from + ptr @.TypeMapEntry.20654_to; char* to + }, ; 11581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20655_from, ; char* from + ptr @.TypeMapEntry.20654_to; char* to + }, ; 11582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20656_from, ; char* from + ptr @.TypeMapEntry.20657_to; char* to + }, ; 11583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20658_from, ; char* from + ptr @.TypeMapEntry.20659_to; char* to + }, ; 11584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20660_from, ; char* from + ptr @.TypeMapEntry.20659_to; char* to + }, ; 11585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20661_from, ; char* from + ptr @.TypeMapEntry.20662_to; char* to + }, ; 11586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20663_from, ; char* from + ptr @.TypeMapEntry.20662_to; char* to + }, ; 11587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20664_from, ; char* from + ptr @.TypeMapEntry.20665_to; char* to + }, ; 11588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20666_from, ; char* from + ptr @.TypeMapEntry.20667_to; char* to + }, ; 11589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20668_from, ; char* from + ptr @.TypeMapEntry.20667_to; char* to + }, ; 11590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20669_from, ; char* from + ptr @.TypeMapEntry.20665_to; char* to + }, ; 11591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20670_from, ; char* from + ptr @.TypeMapEntry.20671_to; char* to + }, ; 11592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20672_from, ; char* from + ptr @.TypeMapEntry.20671_to; char* to + }, ; 11593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20673_from, ; char* from + ptr @.TypeMapEntry.20674_to; char* to + }, ; 11594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20675_from, ; char* from + ptr @.TypeMapEntry.20674_to; char* to + }, ; 11595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20676_from, ; char* from + ptr @.TypeMapEntry.20677_to; char* to + }, ; 11596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20678_from, ; char* from + ptr @.TypeMapEntry.20679_to; char* to + }, ; 11597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20680_from, ; char* from + ptr @.TypeMapEntry.20681_to; char* to + }, ; 11598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20682_from, ; char* from + ptr @.TypeMapEntry.20683_to; char* to + }, ; 11599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20684_from, ; char* from + ptr @.TypeMapEntry.20683_to; char* to + }, ; 11600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20685_from, ; char* from + ptr @.TypeMapEntry.20686_to; char* to + }, ; 11601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20687_from, ; char* from + ptr @.TypeMapEntry.20688_to; char* to + }, ; 11602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20689_from, ; char* from + ptr @.TypeMapEntry.20690_to; char* to + }, ; 11603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20691_from, ; char* from + ptr @.TypeMapEntry.20692_to; char* to + }, ; 11604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20693_from, ; char* from + ptr @.TypeMapEntry.20694_to; char* to + }, ; 11605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20695_from, ; char* from + ptr @.TypeMapEntry.20696_to; char* to + }, ; 11606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20697_from, ; char* from + ptr @.TypeMapEntry.20698_to; char* to + }, ; 11607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20699_from, ; char* from + ptr @.TypeMapEntry.20698_to; char* to + }, ; 11608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20700_from, ; char* from + ptr @.TypeMapEntry.20701_to; char* to + }, ; 11609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20702_from, ; char* from + ptr @.TypeMapEntry.20703_to; char* to + }, ; 11610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20704_from, ; char* from + ptr @.TypeMapEntry.20705_to; char* to + }, ; 11611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20706_from, ; char* from + ptr @.TypeMapEntry.20707_to; char* to + }, ; 11612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20708_from, ; char* from + ptr @.TypeMapEntry.20707_to; char* to + }, ; 11613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20709_from, ; char* from + ptr @.TypeMapEntry.20710_to; char* to + }, ; 11614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20711_from, ; char* from + ptr @.TypeMapEntry.20710_to; char* to + }, ; 11615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20712_from, ; char* from + ptr @.TypeMapEntry.20713_to; char* to + }, ; 11616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20714_from, ; char* from + ptr @.TypeMapEntry.20715_to; char* to + }, ; 11617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20716_from, ; char* from + ptr @.TypeMapEntry.20717_to; char* to + }, ; 11618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20718_from, ; char* from + ptr @.TypeMapEntry.20719_to; char* to + }, ; 11619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20720_from, ; char* from + ptr @.TypeMapEntry.20719_to; char* to + }, ; 11620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20721_from, ; char* from + ptr @.TypeMapEntry.20722_to; char* to + }, ; 11621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20723_from, ; char* from + ptr @.TypeMapEntry.20722_to; char* to + }, ; 11622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20724_from, ; char* from + ptr @.TypeMapEntry.20725_to; char* to + }, ; 11623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20726_from, ; char* from + ptr @.TypeMapEntry.20725_to; char* to + }, ; 11624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20727_from, ; char* from + ptr @.TypeMapEntry.20728_to; char* to + }, ; 11625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20729_from, ; char* from + ptr @.TypeMapEntry.20728_to; char* to + }, ; 11626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20730_from, ; char* from + ptr @.TypeMapEntry.20731_to; char* to + }, ; 11627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20732_from, ; char* from + ptr @.TypeMapEntry.20733_to; char* to + }, ; 11628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20734_from, ; char* from + ptr @.TypeMapEntry.20735_to; char* to + }, ; 11629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20736_from, ; char* from + ptr @.TypeMapEntry.20735_to; char* to + }, ; 11630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20737_from, ; char* from + ptr @.TypeMapEntry.20738_to; char* to + }, ; 11631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20739_from, ; char* from + ptr @.TypeMapEntry.20740_to; char* to + }, ; 11632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20741_from, ; char* from + ptr @.TypeMapEntry.20740_to; char* to + }, ; 11633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20742_from, ; char* from + ptr @.TypeMapEntry.20743_to; char* to + }, ; 11634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20744_from, ; char* from + ptr @.TypeMapEntry.20745_to; char* to + }, ; 11635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20746_from, ; char* from + ptr @.TypeMapEntry.20745_to; char* to + }, ; 11636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20747_from, ; char* from + ptr @.TypeMapEntry.20748_to; char* to + }, ; 11637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20749_from, ; char* from + ptr @.TypeMapEntry.20750_to; char* to + }, ; 11638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20751_from, ; char* from + ptr @.TypeMapEntry.20752_to; char* to + }, ; 11639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20753_from, ; char* from + ptr @.TypeMapEntry.20754_to; char* to + }, ; 11640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20755_from, ; char* from + ptr @.TypeMapEntry.20756_to; char* to + }, ; 11641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20757_from, ; char* from + ptr @.TypeMapEntry.20758_to; char* to + }, ; 11642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20759_from, ; char* from + ptr @.TypeMapEntry.20758_to; char* to + }, ; 11643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20760_from, ; char* from + ptr @.TypeMapEntry.20761_to; char* to + }, ; 11644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20762_from, ; char* from + ptr @.TypeMapEntry.20763_to; char* to + }, ; 11645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20764_from, ; char* from + ptr @.TypeMapEntry.20765_to; char* to + }, ; 11646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20766_from, ; char* from + ptr @.TypeMapEntry.20767_to; char* to + }, ; 11647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20768_from, ; char* from + ptr @.TypeMapEntry.20769_to; char* to + }, ; 11648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20770_from, ; char* from + ptr @.TypeMapEntry.20771_to; char* to + }, ; 11649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20772_from, ; char* from + ptr @.TypeMapEntry.20773_to; char* to + }, ; 11650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20774_from, ; char* from + ptr @.TypeMapEntry.20775_to; char* to + }, ; 11651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20776_from, ; char* from + ptr @.TypeMapEntry.20777_to; char* to + }, ; 11652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20778_from, ; char* from + ptr @.TypeMapEntry.20779_to; char* to + }, ; 11653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20780_from, ; char* from + ptr @.TypeMapEntry.20781_to; char* to + }, ; 11654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20782_from, ; char* from + ptr @.TypeMapEntry.20783_to; char* to + }, ; 11655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20784_from, ; char* from + ptr @.TypeMapEntry.20785_to; char* to + }, ; 11656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20786_from, ; char* from + ptr @.TypeMapEntry.20787_to; char* to + }, ; 11657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20788_from, ; char* from + ptr @.TypeMapEntry.20789_to; char* to + }, ; 11658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20790_from, ; char* from + ptr @.TypeMapEntry.20791_to; char* to + }, ; 11659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20792_from, ; char* from + ptr @.TypeMapEntry.20793_to; char* to + }, ; 11660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20794_from, ; char* from + ptr @.TypeMapEntry.20795_to; char* to + }, ; 11661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20796_from, ; char* from + ptr @.TypeMapEntry.20797_to; char* to + }, ; 11662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20798_from, ; char* from + ptr @.TypeMapEntry.20799_to; char* to + }, ; 11663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20800_from, ; char* from + ptr @.TypeMapEntry.20801_to; char* to + }, ; 11664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20802_from, ; char* from + ptr @.TypeMapEntry.20801_to; char* to + }, ; 11665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20803_from, ; char* from + ptr @.TypeMapEntry.20804_to; char* to + }, ; 11666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20805_from, ; char* from + ptr @.TypeMapEntry.20804_to; char* to + }, ; 11667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20806_from, ; char* from + ptr @.TypeMapEntry.20807_to; char* to + }, ; 11668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20808_from, ; char* from + ptr @.TypeMapEntry.20807_to; char* to + }, ; 11669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20809_from, ; char* from + ptr @.TypeMapEntry.20810_to; char* to + }, ; 11670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20811_from, ; char* from + ptr @.TypeMapEntry.20810_to; char* to + }, ; 11671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20812_from, ; char* from + ptr @.TypeMapEntry.20813_to; char* to + }, ; 11672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20814_from, ; char* from + ptr @.TypeMapEntry.20815_to; char* to + }, ; 11673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20816_from, ; char* from + ptr @.TypeMapEntry.20815_to; char* to + }, ; 11674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20817_from, ; char* from + ptr @.TypeMapEntry.20818_to; char* to + }, ; 11675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20819_from, ; char* from + ptr @.TypeMapEntry.20818_to; char* to + }, ; 11676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20820_from, ; char* from + ptr @.TypeMapEntry.20813_to; char* to + }, ; 11677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20821_from, ; char* from + ptr @.TypeMapEntry.20822_to; char* to + }, ; 11678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20823_from, ; char* from + ptr @.TypeMapEntry.20824_to; char* to + }, ; 11679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20825_from, ; char* from + ptr @.TypeMapEntry.20826_to; char* to + }, ; 11680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20827_from, ; char* from + ptr @.TypeMapEntry.20828_to; char* to + }, ; 11681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20829_from, ; char* from + ptr @.TypeMapEntry.20830_to; char* to + }, ; 11682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20831_from, ; char* from + ptr @.TypeMapEntry.20832_to; char* to + }, ; 11683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20833_from, ; char* from + ptr @.TypeMapEntry.20834_to; char* to + }, ; 11684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20835_from, ; char* from + ptr @.TypeMapEntry.20834_to; char* to + }, ; 11685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20836_from, ; char* from + ptr @.TypeMapEntry.20832_to; char* to + }, ; 11686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20837_from, ; char* from + ptr @.TypeMapEntry.20838_to; char* to + }, ; 11687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20839_from, ; char* from + ptr @.TypeMapEntry.20840_to; char* to + }, ; 11688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20841_from, ; char* from + ptr @.TypeMapEntry.20840_to; char* to + }, ; 11689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20842_from, ; char* from + ptr @.TypeMapEntry.20843_to; char* to + }, ; 11690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20844_from, ; char* from + ptr @.TypeMapEntry.20843_to; char* to + }, ; 11691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20845_from, ; char* from + ptr @.TypeMapEntry.20838_to; char* to + }, ; 11692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20846_from, ; char* from + ptr @.TypeMapEntry.20830_to; char* to + }, ; 11693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20847_from, ; char* from + ptr @.TypeMapEntry.20848_to; char* to + }, ; 11694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20849_from, ; char* from + ptr @.TypeMapEntry.20848_to; char* to + }, ; 11695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20850_from, ; char* from + ptr @.TypeMapEntry.20851_to; char* to + }, ; 11696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20852_from, ; char* from + ptr @.TypeMapEntry.20851_to; char* to + }, ; 11697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20853_from, ; char* from + ptr @.TypeMapEntry.20854_to; char* to + }, ; 11698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20855_from, ; char* from + ptr @.TypeMapEntry.20856_to; char* to + }, ; 11699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20857_from, ; char* from + ptr @.TypeMapEntry.20856_to; char* to + }, ; 11700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20858_from, ; char* from + ptr @.TypeMapEntry.20859_to; char* to + }, ; 11701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20860_from, ; char* from + ptr @.TypeMapEntry.20861_to; char* to + }, ; 11702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20862_from, ; char* from + ptr @.TypeMapEntry.20861_to; char* to + }, ; 11703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20863_from, ; char* from + ptr @.TypeMapEntry.20864_to; char* to + }, ; 11704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20865_from, ; char* from + ptr @.TypeMapEntry.20864_to; char* to + }, ; 11705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20866_from, ; char* from + ptr @.TypeMapEntry.20867_to; char* to + }, ; 11706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20868_from, ; char* from + ptr @.TypeMapEntry.20867_to; char* to + }, ; 11707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20869_from, ; char* from + ptr @.TypeMapEntry.20870_to; char* to + }, ; 11708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20871_from, ; char* from + ptr @.TypeMapEntry.20870_to; char* to + }, ; 11709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20872_from, ; char* from + ptr @.TypeMapEntry.20873_to; char* to + }, ; 11710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20874_from, ; char* from + ptr @.TypeMapEntry.20873_to; char* to + }, ; 11711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20875_from, ; char* from + ptr @.TypeMapEntry.20876_to; char* to + }, ; 11712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20877_from, ; char* from + ptr @.TypeMapEntry.20878_to; char* to + }, ; 11713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20879_from, ; char* from + ptr @.TypeMapEntry.20878_to; char* to + }, ; 11714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20880_from, ; char* from + ptr @.TypeMapEntry.20881_to; char* to + }, ; 11715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20882_from, ; char* from + ptr @.TypeMapEntry.20881_to; char* to + }, ; 11716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20883_from, ; char* from + ptr @.TypeMapEntry.20876_to; char* to + }, ; 11717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20884_from, ; char* from + ptr @.TypeMapEntry.20885_to; char* to + }, ; 11718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20886_from, ; char* from + ptr @.TypeMapEntry.20885_to; char* to + }, ; 11719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20887_from, ; char* from + ptr @.TypeMapEntry.20888_to; char* to + }, ; 11720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20889_from, ; char* from + ptr @.TypeMapEntry.20888_to; char* to + }, ; 11721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20890_from, ; char* from + ptr @.TypeMapEntry.20891_to; char* to + }, ; 11722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20892_from, ; char* from + ptr @.TypeMapEntry.20891_to; char* to + }, ; 11723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20893_from, ; char* from + ptr @.TypeMapEntry.20894_to; char* to + }, ; 11724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20895_from, ; char* from + ptr @.TypeMapEntry.20896_to; char* to + }, ; 11725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20897_from, ; char* from + ptr @.TypeMapEntry.20896_to; char* to + }, ; 11726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20898_from, ; char* from + ptr @.TypeMapEntry.20899_to; char* to + }, ; 11727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20900_from, ; char* from + ptr @.TypeMapEntry.20901_to; char* to + }, ; 11728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20902_from, ; char* from + ptr @.TypeMapEntry.20903_to; char* to + }, ; 11729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20904_from, ; char* from + ptr @.TypeMapEntry.20903_to; char* to + }, ; 11730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20905_from, ; char* from + ptr @.TypeMapEntry.20906_to; char* to + }, ; 11731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20907_from, ; char* from + ptr @.TypeMapEntry.20906_to; char* to + }, ; 11732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20908_from, ; char* from + ptr @.TypeMapEntry.20909_to; char* to + }, ; 11733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20910_from, ; char* from + ptr @.TypeMapEntry.20911_to; char* to + }, ; 11734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20912_from, ; char* from + ptr @.TypeMapEntry.20911_to; char* to + }, ; 11735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20913_from, ; char* from + ptr @.TypeMapEntry.20914_to; char* to + }, ; 11736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20915_from, ; char* from + ptr @.TypeMapEntry.20914_to; char* to + }, ; 11737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20916_from, ; char* from + ptr @.TypeMapEntry.20917_to; char* to + }, ; 11738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20918_from, ; char* from + ptr @.TypeMapEntry.20919_to; char* to + }, ; 11739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20920_from, ; char* from + ptr @.TypeMapEntry.20921_to; char* to + }, ; 11740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20922_from, ; char* from + ptr @.TypeMapEntry.20923_to; char* to + }, ; 11741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20924_from, ; char* from + ptr @.TypeMapEntry.20925_to; char* to + }, ; 11742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20926_from, ; char* from + ptr @.TypeMapEntry.20927_to; char* to + }, ; 11743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20928_from, ; char* from + ptr @.TypeMapEntry.20929_to; char* to + }, ; 11744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20930_from, ; char* from + ptr @.TypeMapEntry.20931_to; char* to + }, ; 11745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20932_from, ; char* from + ptr @.TypeMapEntry.20933_to; char* to + }, ; 11746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20934_from, ; char* from + ptr @.TypeMapEntry.20935_to; char* to + }, ; 11747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20936_from, ; char* from + ptr @.TypeMapEntry.20937_to; char* to + }, ; 11748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20938_from, ; char* from + ptr @.TypeMapEntry.20939_to; char* to + }, ; 11749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20940_from, ; char* from + ptr @.TypeMapEntry.20939_to; char* to + }, ; 11750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20941_from, ; char* from + ptr @.TypeMapEntry.20937_to; char* to + }, ; 11751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20942_from, ; char* from + ptr @.TypeMapEntry.20943_to; char* to + }, ; 11752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20944_from, ; char* from + ptr @.TypeMapEntry.20945_to; char* to + }, ; 11753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20946_from, ; char* from + ptr @.TypeMapEntry.20947_to; char* to + }, ; 11754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20948_from, ; char* from + ptr @.TypeMapEntry.20947_to; char* to + }, ; 11755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20949_from, ; char* from + ptr @.TypeMapEntry.20945_to; char* to + }, ; 11756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20950_from, ; char* from + ptr @.TypeMapEntry.20951_to; char* to + }, ; 11757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20952_from, ; char* from + ptr @.TypeMapEntry.20953_to; char* to + }, ; 11758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20954_from, ; char* from + ptr @.TypeMapEntry.20955_to; char* to + }, ; 11759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20956_from, ; char* from + ptr @.TypeMapEntry.20955_to; char* to + }, ; 11760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20957_from, ; char* from + ptr @.TypeMapEntry.20958_to; char* to + }, ; 11761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20959_from, ; char* from + ptr @.TypeMapEntry.20958_to; char* to + }, ; 11762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20960_from, ; char* from + ptr @.TypeMapEntry.20961_to; char* to + }, ; 11763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20962_from, ; char* from + ptr @.TypeMapEntry.20961_to; char* to + }, ; 11764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20963_from, ; char* from + ptr @.TypeMapEntry.20964_to; char* to + }, ; 11765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20965_from, ; char* from + ptr @.TypeMapEntry.20966_to; char* to + }, ; 11766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20967_from, ; char* from + ptr @.TypeMapEntry.20968_to; char* to + }, ; 11767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20969_from, ; char* from + ptr @.TypeMapEntry.20968_to; char* to + }, ; 11768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20970_from, ; char* from + ptr @.TypeMapEntry.20966_to; char* to + }, ; 11769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20971_from, ; char* from + ptr @.TypeMapEntry.20972_to; char* to + }, ; 11770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20973_from, ; char* from + ptr @.TypeMapEntry.20974_to; char* to + }, ; 11771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20975_from, ; char* from + ptr @.TypeMapEntry.20976_to; char* to + }, ; 11772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20977_from, ; char* from + ptr @.TypeMapEntry.20978_to; char* to + }, ; 11773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20979_from, ; char* from + ptr @.TypeMapEntry.20978_to; char* to + }, ; 11774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20980_from, ; char* from + ptr @.TypeMapEntry.20981_to; char* to + }, ; 11775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20982_from, ; char* from + ptr @.TypeMapEntry.20983_to; char* to + }, ; 11776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20984_from, ; char* from + ptr @.TypeMapEntry.20985_to; char* to + }, ; 11777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20986_from, ; char* from + ptr @.TypeMapEntry.20987_to; char* to + }, ; 11778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20988_from, ; char* from + ptr @.TypeMapEntry.20989_to; char* to + }, ; 11779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20990_from, ; char* from + ptr @.TypeMapEntry.20991_to; char* to + }, ; 11780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20992_from, ; char* from + ptr @.TypeMapEntry.20993_to; char* to + }, ; 11781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20994_from, ; char* from + ptr @.TypeMapEntry.20995_to; char* to + }, ; 11782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20996_from, ; char* from + ptr @.TypeMapEntry.20997_to; char* to + }, ; 11783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20998_from, ; char* from + ptr @.TypeMapEntry.20999_to; char* to + }, ; 11784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21000_from, ; char* from + ptr @.TypeMapEntry.20993_to; char* to + }, ; 11785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21001_from, ; char* from + ptr @.TypeMapEntry.21002_to; char* to + }, ; 11786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21003_from, ; char* from + ptr @.TypeMapEntry.21004_to; char* to + }, ; 11787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21005_from, ; char* from + ptr @.TypeMapEntry.21006_to; char* to + }, ; 11788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21007_from, ; char* from + ptr @.TypeMapEntry.21006_to; char* to + }, ; 11789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21008_from, ; char* from + ptr @.TypeMapEntry.21009_to; char* to + }, ; 11790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21010_from, ; char* from + ptr @.TypeMapEntry.21011_to; char* to + }, ; 11791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21012_from, ; char* from + ptr @.TypeMapEntry.21011_to; char* to + }, ; 11792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21013_from, ; char* from + ptr @.TypeMapEntry.21014_to; char* to + }, ; 11793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21015_from, ; char* from + ptr @.TypeMapEntry.21014_to; char* to + }, ; 11794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21016_from, ; char* from + ptr @.TypeMapEntry.21017_to; char* to + }, ; 11795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21018_from, ; char* from + ptr @.TypeMapEntry.21017_to; char* to + }, ; 11796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21019_from, ; char* from + ptr @.TypeMapEntry.21020_to; char* to + }, ; 11797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21021_from, ; char* from + ptr @.TypeMapEntry.21020_to; char* to + }, ; 11798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21022_from, ; char* from + ptr @.TypeMapEntry.21023_to; char* to + }, ; 11799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21024_from, ; char* from + ptr @.TypeMapEntry.21023_to; char* to + }, ; 11800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21025_from, ; char* from + ptr @.TypeMapEntry.21026_to; char* to + }, ; 11801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21027_from, ; char* from + ptr @.TypeMapEntry.21028_to; char* to + }, ; 11802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21029_from, ; char* from + ptr @.TypeMapEntry.21028_to; char* to + }, ; 11803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21030_from, ; char* from + ptr @.TypeMapEntry.21026_to; char* to + }, ; 11804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21031_from, ; char* from + ptr @.TypeMapEntry.21032_to; char* to + }, ; 11805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21033_from, ; char* from + ptr @.TypeMapEntry.21032_to; char* to + }, ; 11806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21034_from, ; char* from + ptr @.TypeMapEntry.21035_to; char* to + }, ; 11807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21036_from, ; char* from + ptr @.TypeMapEntry.21035_to; char* to + }, ; 11808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21037_from, ; char* from + ptr @.TypeMapEntry.21038_to; char* to + }, ; 11809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21039_from, ; char* from + ptr @.TypeMapEntry.21038_to; char* to + }, ; 11810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21040_from, ; char* from + ptr @.TypeMapEntry.21041_to; char* to + }, ; 11811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21042_from, ; char* from + ptr @.TypeMapEntry.21041_to; char* to + }, ; 11812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21043_from, ; char* from + ptr @.TypeMapEntry.21044_to; char* to + }, ; 11813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21045_from, ; char* from + ptr @.TypeMapEntry.21044_to; char* to + }, ; 11814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21046_from, ; char* from + ptr @.TypeMapEntry.21047_to; char* to + }, ; 11815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21048_from, ; char* from + ptr @.TypeMapEntry.21049_to; char* to + }, ; 11816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21050_from, ; char* from + ptr @.TypeMapEntry.21051_to; char* to + }, ; 11817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21052_from, ; char* from + ptr @.TypeMapEntry.21053_to; char* to + }, ; 11818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21054_from, ; char* from + ptr @.TypeMapEntry.21055_to; char* to + }, ; 11819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21056_from, ; char* from + ptr @.TypeMapEntry.21057_to; char* to + }, ; 11820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21058_from, ; char* from + ptr @.TypeMapEntry.21057_to; char* to + }, ; 11821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21059_from, ; char* from + ptr @.TypeMapEntry.21060_to; char* to + }, ; 11822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21061_from, ; char* from + ptr @.TypeMapEntry.21060_to; char* to + }, ; 11823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21062_from, ; char* from + ptr @.TypeMapEntry.21063_to; char* to + }, ; 11824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21064_from, ; char* from + ptr @.TypeMapEntry.21063_to; char* to + }, ; 11825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21065_from, ; char* from + ptr @.TypeMapEntry.21066_to; char* to + }, ; 11826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21067_from, ; char* from + ptr @.TypeMapEntry.21066_to; char* to + }, ; 11827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21068_from, ; char* from + ptr @.TypeMapEntry.21069_to; char* to + }, ; 11828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21070_from, ; char* from + ptr @.TypeMapEntry.21071_to; char* to + }, ; 11829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21072_from, ; char* from + ptr @.TypeMapEntry.21073_to; char* to + }, ; 11830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21074_from, ; char* from + ptr @.TypeMapEntry.21073_to; char* to + }, ; 11831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21075_from, ; char* from + ptr @.TypeMapEntry.21071_to; char* to + }, ; 11832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21076_from, ; char* from + ptr @.TypeMapEntry.21077_to; char* to + }, ; 11833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21078_from, ; char* from + ptr @.TypeMapEntry.21079_to; char* to + }, ; 11834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21080_from, ; char* from + ptr @.TypeMapEntry.21081_to; char* to + }, ; 11835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21082_from, ; char* from + ptr @.TypeMapEntry.21083_to; char* to + }, ; 11836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21084_from, ; char* from + ptr @.TypeMapEntry.21083_to; char* to + }, ; 11837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21085_from, ; char* from + ptr @.TypeMapEntry.21081_to; char* to + }, ; 11838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21086_from, ; char* from + ptr @.TypeMapEntry.21087_to; char* to + }, ; 11839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21088_from, ; char* from + ptr @.TypeMapEntry.21089_to; char* to + }, ; 11840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21090_from, ; char* from + ptr @.TypeMapEntry.21091_to; char* to + }, ; 11841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21092_from, ; char* from + ptr @.TypeMapEntry.21091_to; char* to + }, ; 11842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21093_from, ; char* from + ptr @.TypeMapEntry.21094_to; char* to + }, ; 11843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21095_from, ; char* from + ptr @.TypeMapEntry.21096_to; char* to + }, ; 11844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21097_from, ; char* from + ptr @.TypeMapEntry.21094_to; char* to + }, ; 11845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21098_from, ; char* from + ptr @.TypeMapEntry.21099_to; char* to + }, ; 11846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21100_from, ; char* from + ptr @.TypeMapEntry.21099_to; char* to + }, ; 11847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21101_from, ; char* from + ptr @.TypeMapEntry.21102_to; char* to + }, ; 11848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21103_from, ; char* from + ptr @.TypeMapEntry.21102_to; char* to + }, ; 11849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21104_from, ; char* from + ptr @.TypeMapEntry.21105_to; char* to + }, ; 11850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21106_from, ; char* from + ptr @.TypeMapEntry.21105_to; char* to + }, ; 11851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21107_from, ; char* from + ptr @.TypeMapEntry.21108_to; char* to + }, ; 11852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21109_from, ; char* from + ptr @.TypeMapEntry.21108_to; char* to + }, ; 11853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21110_from, ; char* from + ptr @.TypeMapEntry.21111_to; char* to + }, ; 11854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21112_from, ; char* from + ptr @.TypeMapEntry.21111_to; char* to + }, ; 11855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21113_from, ; char* from + ptr @.TypeMapEntry.21114_to; char* to + }, ; 11856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21115_from, ; char* from + ptr @.TypeMapEntry.21116_to; char* to + }, ; 11857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21117_from, ; char* from + ptr @.TypeMapEntry.21118_to; char* to + }, ; 11858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21119_from, ; char* from + ptr @.TypeMapEntry.21118_to; char* to + }, ; 11859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21120_from, ; char* from + ptr @.TypeMapEntry.21121_to; char* to + }, ; 11860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21122_from, ; char* from + ptr @.TypeMapEntry.21121_to; char* to + }, ; 11861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21123_from, ; char* from + ptr @.TypeMapEntry.21124_to; char* to + }, ; 11862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21125_from, ; char* from + ptr @.TypeMapEntry.21126_to; char* to + }, ; 11863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21127_from, ; char* from + ptr @.TypeMapEntry.21128_to; char* to + }, ; 11864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21129_from, ; char* from + ptr @.TypeMapEntry.21128_to; char* to + }, ; 11865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21130_from, ; char* from + ptr @.TypeMapEntry.21131_to; char* to + }, ; 11866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21132_from, ; char* from + ptr @.TypeMapEntry.21133_to; char* to + }, ; 11867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21134_from, ; char* from + ptr @.TypeMapEntry.21135_to; char* to + }, ; 11868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21136_from, ; char* from + ptr @.TypeMapEntry.21137_to; char* to + }, ; 11869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21138_from, ; char* from + ptr @.TypeMapEntry.21139_to; char* to + }, ; 11870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21140_from, ; char* from + ptr @.TypeMapEntry.21141_to; char* to + }, ; 11871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21142_from, ; char* from + ptr @.TypeMapEntry.21143_to; char* to + }, ; 11872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21144_from, ; char* from + ptr @.TypeMapEntry.21141_to; char* to + }, ; 11873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21145_from, ; char* from + ptr @.TypeMapEntry.21135_to; char* to + }, ; 11874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21146_from, ; char* from + ptr @.TypeMapEntry.21147_to; char* to + }, ; 11875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21148_from, ; char* from + ptr @.TypeMapEntry.21149_to; char* to + }, ; 11876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21150_from, ; char* from + ptr @.TypeMapEntry.21149_to; char* to + }, ; 11877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21151_from, ; char* from + ptr @.TypeMapEntry.21152_to; char* to + }, ; 11878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21153_from, ; char* from + ptr @.TypeMapEntry.21152_to; char* to + }, ; 11879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21154_from, ; char* from + ptr @.TypeMapEntry.21147_to; char* to + }, ; 11880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21155_from, ; char* from + ptr @.TypeMapEntry.21156_to; char* to + }, ; 11881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21157_from, ; char* from + ptr @.TypeMapEntry.21156_to; char* to + }, ; 11882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21158_from, ; char* from + ptr @.TypeMapEntry.21159_to; char* to + }, ; 11883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21160_from, ; char* from + ptr @.TypeMapEntry.21161_to; char* to + }, ; 11884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21162_from, ; char* from + ptr @.TypeMapEntry.21161_to; char* to + }, ; 11885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21163_from, ; char* from + ptr @.TypeMapEntry.21159_to; char* to + }, ; 11886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21164_from, ; char* from + ptr @.TypeMapEntry.21165_to; char* to + }, ; 11887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21166_from, ; char* from + ptr @.TypeMapEntry.21167_to; char* to + }, ; 11888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21168_from, ; char* from + ptr @.TypeMapEntry.21169_to; char* to + }, ; 11889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21170_from, ; char* from + ptr @.TypeMapEntry.21169_to; char* to + }, ; 11890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21171_from, ; char* from + ptr @.TypeMapEntry.21172_to; char* to + }, ; 11891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21173_from, ; char* from + ptr @.TypeMapEntry.21172_to; char* to + }, ; 11892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21174_from, ; char* from + ptr @.TypeMapEntry.21175_to; char* to + }, ; 11893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21176_from, ; char* from + ptr @.TypeMapEntry.21175_to; char* to + }, ; 11894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21177_from, ; char* from + ptr @.TypeMapEntry.21167_to; char* to + }, ; 11895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21178_from, ; char* from + ptr @.TypeMapEntry.21179_to; char* to + }, ; 11896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21180_from, ; char* from + ptr @.TypeMapEntry.21179_to; char* to + }, ; 11897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21181_from, ; char* from + ptr @.TypeMapEntry.21182_to; char* to + }, ; 11898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21183_from, ; char* from + ptr @.TypeMapEntry.21184_to; char* to + }, ; 11899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21185_from, ; char* from + ptr @.TypeMapEntry.21186_to; char* to + }, ; 11900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21187_from, ; char* from + ptr @.TypeMapEntry.21188_to; char* to + }, ; 11901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21189_from, ; char* from + ptr @.TypeMapEntry.21190_to; char* to + }, ; 11902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21191_from, ; char* from + ptr @.TypeMapEntry.21188_to; char* to + }, ; 11903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21192_from, ; char* from + ptr @.TypeMapEntry.21193_to; char* to + }, ; 11904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21194_from, ; char* from + ptr @.TypeMapEntry.21195_to; char* to + }, ; 11905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21196_from, ; char* from + ptr @.TypeMapEntry.21195_to; char* to + }, ; 11906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21197_from, ; char* from + ptr @.TypeMapEntry.21198_to; char* to + }, ; 11907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21199_from, ; char* from + ptr @.TypeMapEntry.21198_to; char* to + }, ; 11908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21200_from, ; char* from + ptr @.TypeMapEntry.21201_to; char* to + }, ; 11909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21202_from, ; char* from + ptr @.TypeMapEntry.21201_to; char* to + }, ; 11910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21203_from, ; char* from + ptr @.TypeMapEntry.21204_to; char* to + }, ; 11911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21205_from, ; char* from + ptr @.TypeMapEntry.21204_to; char* to + }, ; 11912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21206_from, ; char* from + ptr @.TypeMapEntry.21207_to; char* to + }, ; 11913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21208_from, ; char* from + ptr @.TypeMapEntry.21207_to; char* to + }, ; 11914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21209_from, ; char* from + ptr @.TypeMapEntry.21210_to; char* to + }, ; 11915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21211_from, ; char* from + ptr @.TypeMapEntry.21210_to; char* to + }, ; 11916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21212_from, ; char* from + ptr @.TypeMapEntry.21213_to; char* to + }, ; 11917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21214_from, ; char* from + ptr @.TypeMapEntry.21213_to; char* to + }, ; 11918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21215_from, ; char* from + ptr @.TypeMapEntry.21216_to; char* to + }, ; 11919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21217_from, ; char* from + ptr @.TypeMapEntry.21218_to; char* to + }, ; 11920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21219_from, ; char* from + ptr @.TypeMapEntry.21218_to; char* to + }, ; 11921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21220_from, ; char* from + ptr @.TypeMapEntry.21221_to; char* to + }, ; 11922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21222_from, ; char* from + ptr @.TypeMapEntry.21221_to; char* to + }, ; 11923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21223_from, ; char* from + ptr @.TypeMapEntry.21224_to; char* to + }, ; 11924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21225_from, ; char* from + ptr @.TypeMapEntry.21226_to; char* to + }, ; 11925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21227_from, ; char* from + ptr @.TypeMapEntry.21226_to; char* to + }, ; 11926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21228_from, ; char* from + ptr @.TypeMapEntry.21229_to; char* to + }, ; 11927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21230_from, ; char* from + ptr @.TypeMapEntry.21231_to; char* to + }, ; 11928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21232_from, ; char* from + ptr @.TypeMapEntry.21233_to; char* to + }, ; 11929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21234_from, ; char* from + ptr @.TypeMapEntry.21233_to; char* to + }, ; 11930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21235_from, ; char* from + ptr @.TypeMapEntry.21231_to; char* to + }, ; 11931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21236_from, ; char* from + ptr @.TypeMapEntry.21237_to; char* to + }, ; 11932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21238_from, ; char* from + ptr @.TypeMapEntry.21237_to; char* to + }, ; 11933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21239_from, ; char* from + ptr @.TypeMapEntry.21240_to; char* to + }, ; 11934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21241_from, ; char* from + ptr @.TypeMapEntry.21240_to; char* to + }, ; 11935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21242_from, ; char* from + ptr @.TypeMapEntry.21243_to; char* to + }, ; 11936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21244_from, ; char* from + ptr @.TypeMapEntry.21243_to; char* to + }, ; 11937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21245_from, ; char* from + ptr @.TypeMapEntry.21246_to; char* to + }, ; 11938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21247_from, ; char* from + ptr @.TypeMapEntry.21246_to; char* to + }, ; 11939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21248_from, ; char* from + ptr @.TypeMapEntry.21249_to; char* to + }, ; 11940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21250_from, ; char* from + ptr @.TypeMapEntry.21251_to; char* to + }, ; 11941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21252_from, ; char* from + ptr @.TypeMapEntry.21251_to; char* to + }, ; 11942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21253_from, ; char* from + ptr @.TypeMapEntry.21249_to; char* to + }, ; 11943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21254_from, ; char* from + ptr @.TypeMapEntry.21255_to; char* to + }, ; 11944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21256_from, ; char* from + ptr @.TypeMapEntry.21255_to; char* to + }, ; 11945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21257_from, ; char* from + ptr @.TypeMapEntry.21258_to; char* to + }, ; 11946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21259_from, ; char* from + ptr @.TypeMapEntry.21260_to; char* to + }, ; 11947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21261_from, ; char* from + ptr @.TypeMapEntry.21260_to; char* to + }, ; 11948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21262_from, ; char* from + ptr @.TypeMapEntry.21258_to; char* to + }, ; 11949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21263_from, ; char* from + ptr @.TypeMapEntry.21264_to; char* to + }, ; 11950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21265_from, ; char* from + ptr @.TypeMapEntry.21264_to; char* to + }, ; 11951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21266_from, ; char* from + ptr @.TypeMapEntry.21267_to; char* to + }, ; 11952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21268_from, ; char* from + ptr @.TypeMapEntry.21267_to; char* to + }, ; 11953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21269_from, ; char* from + ptr @.TypeMapEntry.21270_to; char* to + }, ; 11954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21271_from, ; char* from + ptr @.TypeMapEntry.21270_to; char* to + }, ; 11955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21272_from, ; char* from + ptr @.TypeMapEntry.21273_to; char* to + }, ; 11956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21274_from, ; char* from + ptr @.TypeMapEntry.21273_to; char* to + }, ; 11957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21275_from, ; char* from + ptr @.TypeMapEntry.21276_to; char* to + }, ; 11958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21277_from, ; char* from + ptr @.TypeMapEntry.21276_to; char* to + }, ; 11959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21278_from, ; char* from + ptr @.TypeMapEntry.21279_to; char* to + }, ; 11960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21280_from, ; char* from + ptr @.TypeMapEntry.21279_to; char* to + }, ; 11961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21281_from, ; char* from + ptr @.TypeMapEntry.21282_to; char* to + }, ; 11962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21283_from, ; char* from + ptr @.TypeMapEntry.21282_to; char* to + }, ; 11963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21284_from, ; char* from + ptr @.TypeMapEntry.21285_to; char* to + }, ; 11964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21286_from, ; char* from + ptr @.TypeMapEntry.21285_to; char* to + }, ; 11965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21287_from, ; char* from + ptr @.TypeMapEntry.21288_to; char* to + }, ; 11966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21289_from, ; char* from + ptr @.TypeMapEntry.21290_to; char* to + }, ; 11967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21291_from, ; char* from + ptr @.TypeMapEntry.21292_to; char* to + }, ; 11968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21293_from, ; char* from + ptr @.TypeMapEntry.21294_to; char* to + }, ; 11969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21295_from, ; char* from + ptr @.TypeMapEntry.21294_to; char* to + }, ; 11970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21296_from, ; char* from + ptr @.TypeMapEntry.21297_to; char* to + }, ; 11971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21298_from, ; char* from + ptr @.TypeMapEntry.21297_to; char* to + }, ; 11972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21299_from, ; char* from + ptr @.TypeMapEntry.21300_to; char* to + }, ; 11973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21301_from, ; char* from + ptr @.TypeMapEntry.21300_to; char* to + }, ; 11974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21302_from, ; char* from + ptr @.TypeMapEntry.21303_to; char* to + }, ; 11975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21304_from, ; char* from + ptr @.TypeMapEntry.21303_to; char* to + }, ; 11976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21305_from, ; char* from + ptr @.TypeMapEntry.21306_to; char* to + }, ; 11977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21307_from, ; char* from + ptr @.TypeMapEntry.21308_to; char* to + }, ; 11978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21309_from, ; char* from + ptr @.TypeMapEntry.21310_to; char* to + }, ; 11979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21311_from, ; char* from + ptr @.TypeMapEntry.21312_to; char* to + }, ; 11980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21313_from, ; char* from + ptr @.TypeMapEntry.21312_to; char* to + }, ; 11981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21314_from, ; char* from + ptr @.TypeMapEntry.21315_to; char* to + }, ; 11982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21316_from, ; char* from + ptr @.TypeMapEntry.21315_to; char* to + }, ; 11983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21317_from, ; char* from + ptr @.TypeMapEntry.21318_to; char* to + }, ; 11984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21319_from, ; char* from + ptr @.TypeMapEntry.21318_to; char* to + }, ; 11985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21320_from, ; char* from + ptr @.TypeMapEntry.21321_to; char* to + }, ; 11986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21322_from, ; char* from + ptr @.TypeMapEntry.21321_to; char* to + }, ; 11987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21323_from, ; char* from + ptr @.TypeMapEntry.21324_to; char* to + }, ; 11988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21325_from, ; char* from + ptr @.TypeMapEntry.21324_to; char* to + }, ; 11989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21326_from, ; char* from + ptr @.TypeMapEntry.21327_to; char* to + }, ; 11990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21328_from, ; char* from + ptr @.TypeMapEntry.21327_to; char* to + }, ; 11991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21329_from, ; char* from + ptr @.TypeMapEntry.21330_to; char* to + }, ; 11992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21331_from, ; char* from + ptr @.TypeMapEntry.21330_to; char* to + }, ; 11993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21332_from, ; char* from + ptr @.TypeMapEntry.21333_to; char* to + }, ; 11994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21334_from, ; char* from + ptr @.TypeMapEntry.21333_to; char* to + }, ; 11995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21335_from, ; char* from + ptr @.TypeMapEntry.21336_to; char* to + }, ; 11996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21337_from, ; char* from + ptr @.TypeMapEntry.21336_to; char* to + }, ; 11997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21338_from, ; char* from + ptr @.TypeMapEntry.21339_to; char* to + }, ; 11998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21340_from, ; char* from + ptr @.TypeMapEntry.21341_to; char* to + }, ; 11999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21342_from, ; char* from + ptr @.TypeMapEntry.21343_to; char* to + }, ; 12000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21344_from, ; char* from + ptr @.TypeMapEntry.21343_to; char* to + }, ; 12001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21345_from, ; char* from + ptr @.TypeMapEntry.21346_to; char* to + }, ; 12002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21347_from, ; char* from + ptr @.TypeMapEntry.21346_to; char* to + }, ; 12003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21348_from, ; char* from + ptr @.TypeMapEntry.21349_to; char* to + }, ; 12004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21350_from, ; char* from + ptr @.TypeMapEntry.21351_to; char* to + }, ; 12005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21352_from, ; char* from + ptr @.TypeMapEntry.21353_to; char* to + }, ; 12006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21354_from, ; char* from + ptr @.TypeMapEntry.21355_to; char* to + }, ; 12007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21356_from, ; char* from + ptr @.TypeMapEntry.21357_to; char* to + }, ; 12008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21358_from, ; char* from + ptr @.TypeMapEntry.21359_to; char* to + }, ; 12009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21360_from, ; char* from + ptr @.TypeMapEntry.21361_to; char* to + }, ; 12010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21362_from, ; char* from + ptr @.TypeMapEntry.21363_to; char* to + }, ; 12011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21364_from, ; char* from + ptr @.TypeMapEntry.21365_to; char* to + }, ; 12012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21366_from, ; char* from + ptr @.TypeMapEntry.21367_to; char* to + }, ; 12013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21368_from, ; char* from + ptr @.TypeMapEntry.21369_to; char* to + }, ; 12014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21370_from, ; char* from + ptr @.TypeMapEntry.21371_to; char* to + }, ; 12015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21372_from, ; char* from + ptr @.TypeMapEntry.21373_to; char* to + }, ; 12016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21374_from, ; char* from + ptr @.TypeMapEntry.21375_to; char* to + }, ; 12017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21376_from, ; char* from + ptr @.TypeMapEntry.21377_to; char* to + }, ; 12018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21378_from, ; char* from + ptr @.TypeMapEntry.21377_to; char* to + }, ; 12019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21379_from, ; char* from + ptr @.TypeMapEntry.21380_to; char* to + }, ; 12020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21381_from, ; char* from + ptr @.TypeMapEntry.21380_to; char* to + }, ; 12021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21382_from, ; char* from + ptr @.TypeMapEntry.21383_to; char* to + }, ; 12022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21384_from, ; char* from + ptr @.TypeMapEntry.21385_to; char* to + }, ; 12023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21386_from, ; char* from + ptr @.TypeMapEntry.21385_to; char* to + }, ; 12024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21387_from, ; char* from + ptr @.TypeMapEntry.21388_to; char* to + }, ; 12025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21389_from, ; char* from + ptr @.TypeMapEntry.21388_to; char* to + }, ; 12026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21390_from, ; char* from + ptr @.TypeMapEntry.21391_to; char* to + }, ; 12027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21392_from, ; char* from + ptr @.TypeMapEntry.21393_to; char* to + }, ; 12028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21394_from, ; char* from + ptr @.TypeMapEntry.21393_to; char* to + }, ; 12029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21395_from, ; char* from + ptr @.TypeMapEntry.21396_to; char* to + }, ; 12030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21397_from, ; char* from + ptr @.TypeMapEntry.21398_to; char* to + }, ; 12031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21399_from, ; char* from + ptr @.TypeMapEntry.21398_to; char* to + }, ; 12032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21400_from, ; char* from + ptr @.TypeMapEntry.21401_to; char* to + }, ; 12033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21402_from, ; char* from + ptr @.TypeMapEntry.21403_to; char* to + }, ; 12034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21404_from, ; char* from + ptr @.TypeMapEntry.21403_to; char* to + }, ; 12035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21405_from, ; char* from + ptr @.TypeMapEntry.21406_to; char* to + }, ; 12036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21407_from, ; char* from + ptr @.TypeMapEntry.21408_to; char* to + }, ; 12037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21409_from, ; char* from + ptr @.TypeMapEntry.21410_to; char* to + }, ; 12038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21411_from, ; char* from + ptr @.TypeMapEntry.21412_to; char* to + }, ; 12039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21413_from, ; char* from + ptr @.TypeMapEntry.21412_to; char* to + }, ; 12040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21414_from, ; char* from + ptr @.TypeMapEntry.21415_to; char* to + }, ; 12041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21416_from, ; char* from + ptr @.TypeMapEntry.21417_to; char* to + }, ; 12042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21418_from, ; char* from + ptr @.TypeMapEntry.21419_to; char* to + }, ; 12043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21420_from, ; char* from + ptr @.TypeMapEntry.21421_to; char* to + }, ; 12044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21422_from, ; char* from + ptr @.TypeMapEntry.21423_to; char* to + }, ; 12045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21424_from, ; char* from + ptr @.TypeMapEntry.21425_to; char* to + }, ; 12046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21426_from, ; char* from + ptr @.TypeMapEntry.21427_to; char* to + }, ; 12047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21428_from, ; char* from + ptr @.TypeMapEntry.21429_to; char* to + }, ; 12048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21430_from, ; char* from + ptr @.TypeMapEntry.21431_to; char* to + }, ; 12049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21432_from, ; char* from + ptr @.TypeMapEntry.21433_to; char* to + }, ; 12050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21434_from, ; char* from + ptr @.TypeMapEntry.21435_to; char* to + }, ; 12051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21436_from, ; char* from + ptr @.TypeMapEntry.21437_to; char* to + }, ; 12052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21438_from, ; char* from + ptr @.TypeMapEntry.21439_to; char* to + }, ; 12053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21440_from, ; char* from + ptr @.TypeMapEntry.21441_to; char* to + }, ; 12054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21442_from, ; char* from + ptr @.TypeMapEntry.21443_to; char* to + }, ; 12055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21444_from, ; char* from + ptr @.TypeMapEntry.21443_to; char* to + }, ; 12056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21445_from, ; char* from + ptr @.TypeMapEntry.21446_to; char* to + }, ; 12057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21447_from, ; char* from + ptr @.TypeMapEntry.21446_to; char* to + }, ; 12058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21448_from, ; char* from + ptr @.TypeMapEntry.21449_to; char* to + }, ; 12059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21450_from, ; char* from + ptr @.TypeMapEntry.21449_to; char* to + }, ; 12060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21451_from, ; char* from + ptr @.TypeMapEntry.21452_to; char* to + }, ; 12061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21453_from, ; char* from + ptr @.TypeMapEntry.21452_to; char* to + }, ; 12062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21454_from, ; char* from + ptr @.TypeMapEntry.21455_to; char* to + }, ; 12063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21456_from, ; char* from + ptr @.TypeMapEntry.21455_to; char* to + }, ; 12064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21457_from, ; char* from + ptr @.TypeMapEntry.21458_to; char* to + }, ; 12065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21459_from, ; char* from + ptr @.TypeMapEntry.21458_to; char* to + }, ; 12066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21460_from, ; char* from + ptr @.TypeMapEntry.21461_to; char* to + }, ; 12067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21462_from, ; char* from + ptr @.TypeMapEntry.21461_to; char* to + }, ; 12068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21463_from, ; char* from + ptr @.TypeMapEntry.21464_to; char* to + }, ; 12069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21465_from, ; char* from + ptr @.TypeMapEntry.21464_to; char* to + }, ; 12070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21466_from, ; char* from + ptr @.TypeMapEntry.21467_to; char* to + }, ; 12071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21468_from, ; char* from + ptr @.TypeMapEntry.21469_to; char* to + }, ; 12072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21470_from, ; char* from + ptr @.TypeMapEntry.21469_to; char* to + }, ; 12073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21471_from, ; char* from + ptr @.TypeMapEntry.21472_to; char* to + }, ; 12074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21473_from, ; char* from + ptr @.TypeMapEntry.21474_to; char* to + }, ; 12075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21475_from, ; char* from + ptr @.TypeMapEntry.21474_to; char* to + }, ; 12076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21476_from, ; char* from + ptr @.TypeMapEntry.21477_to; char* to + }, ; 12077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21478_from, ; char* from + ptr @.TypeMapEntry.21479_to; char* to + }, ; 12078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21480_from, ; char* from + ptr @.TypeMapEntry.21481_to; char* to + }, ; 12079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21482_from, ; char* from + ptr @.TypeMapEntry.21483_to; char* to + }, ; 12080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21484_from, ; char* from + ptr @.TypeMapEntry.21485_to; char* to + }, ; 12081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21486_from, ; char* from + ptr @.TypeMapEntry.21487_to; char* to + }, ; 12082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21488_from, ; char* from + ptr @.TypeMapEntry.21489_to; char* to + }, ; 12083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21490_from, ; char* from + ptr @.TypeMapEntry.21491_to; char* to + }, ; 12084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21492_from, ; char* from + ptr @.TypeMapEntry.21474_to; char* to + }, ; 12085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21493_from, ; char* from + ptr @.TypeMapEntry.21474_to; char* to + }, ; 12086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21494_from, ; char* from + ptr @.TypeMapEntry.21491_to; char* to + }, ; 12087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21495_from, ; char* from + ptr @.TypeMapEntry.21496_to; char* to + }, ; 12088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21497_from, ; char* from + ptr @.TypeMapEntry.21498_to; char* to + }, ; 12089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21499_from, ; char* from + ptr @.TypeMapEntry.21498_to; char* to + }, ; 12090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21500_from, ; char* from + ptr @.TypeMapEntry.21496_to; char* to + }, ; 12091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21501_from, ; char* from + ptr @.TypeMapEntry.21502_to; char* to + }, ; 12092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21503_from, ; char* from + ptr @.TypeMapEntry.21502_to; char* to + }, ; 12093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21504_from, ; char* from + ptr @.TypeMapEntry.21505_to; char* to + }, ; 12094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21506_from, ; char* from + ptr @.TypeMapEntry.21505_to; char* to + }, ; 12095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21507_from, ; char* from + ptr @.TypeMapEntry.21508_to; char* to + }, ; 12096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21509_from, ; char* from + ptr @.TypeMapEntry.21510_to; char* to + }, ; 12097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21511_from, ; char* from + ptr @.TypeMapEntry.21512_to; char* to + }, ; 12098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21513_from, ; char* from + ptr @.TypeMapEntry.21514_to; char* to + }, ; 12099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21515_from, ; char* from + ptr @.TypeMapEntry.21516_to; char* to + }, ; 12100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21517_from, ; char* from + ptr @.TypeMapEntry.21516_to; char* to + }, ; 12101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21518_from, ; char* from + ptr @.TypeMapEntry.21519_to; char* to + }, ; 12102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21520_from, ; char* from + ptr @.TypeMapEntry.21521_to; char* to + }, ; 12103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21522_from, ; char* from + ptr @.TypeMapEntry.21523_to; char* to + }, ; 12104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21524_from, ; char* from + ptr @.TypeMapEntry.21525_to; char* to + }, ; 12105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21526_from, ; char* from + ptr @.TypeMapEntry.21525_to; char* to + }, ; 12106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21527_from, ; char* from + ptr @.TypeMapEntry.21528_to; char* to + }, ; 12107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21529_from, ; char* from + ptr @.TypeMapEntry.21530_to; char* to + }, ; 12108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21531_from, ; char* from + ptr @.TypeMapEntry.21532_to; char* to + }, ; 12109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21533_from, ; char* from + ptr @.TypeMapEntry.21534_to; char* to + }, ; 12110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21535_from, ; char* from + ptr @.TypeMapEntry.21534_to; char* to + }, ; 12111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21536_from, ; char* from + ptr @.TypeMapEntry.21537_to; char* to + }, ; 12112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21538_from, ; char* from + ptr @.TypeMapEntry.21539_to; char* to + }, ; 12113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21540_from, ; char* from + ptr @.TypeMapEntry.21541_to; char* to + }, ; 12114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21542_from, ; char* from + ptr @.TypeMapEntry.21541_to; char* to + }, ; 12115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21543_from, ; char* from + ptr @.TypeMapEntry.21544_to; char* to + }, ; 12116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21545_from, ; char* from + ptr @.TypeMapEntry.21544_to; char* to + }, ; 12117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21546_from, ; char* from + ptr @.TypeMapEntry.21547_to; char* to + }, ; 12118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21548_from, ; char* from + ptr @.TypeMapEntry.21547_to; char* to + }, ; 12119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21549_from, ; char* from + ptr @.TypeMapEntry.21550_to; char* to + }, ; 12120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21551_from, ; char* from + ptr @.TypeMapEntry.21550_to; char* to + }, ; 12121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21552_from, ; char* from + ptr @.TypeMapEntry.21553_to; char* to + }, ; 12122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21554_from, ; char* from + ptr @.TypeMapEntry.21555_to; char* to + }, ; 12123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21556_from, ; char* from + ptr @.TypeMapEntry.21555_to; char* to + }, ; 12124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21557_from, ; char* from + ptr @.TypeMapEntry.21558_to; char* to + }, ; 12125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21559_from, ; char* from + ptr @.TypeMapEntry.21558_to; char* to + }, ; 12126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21560_from, ; char* from + ptr @.TypeMapEntry.21561_to; char* to + }, ; 12127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21562_from, ; char* from + ptr @.TypeMapEntry.21561_to; char* to + }, ; 12128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21563_from, ; char* from + ptr @.TypeMapEntry.21564_to; char* to + }, ; 12129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21565_from, ; char* from + ptr @.TypeMapEntry.21564_to; char* to + }, ; 12130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21566_from, ; char* from + ptr @.TypeMapEntry.21567_to; char* to + }, ; 12131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21568_from, ; char* from + ptr @.TypeMapEntry.21567_to; char* to + }, ; 12132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21569_from, ; char* from + ptr @.TypeMapEntry.21570_to; char* to + }, ; 12133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21571_from, ; char* from + ptr @.TypeMapEntry.21570_to; char* to + }, ; 12134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21572_from, ; char* from + ptr @.TypeMapEntry.21573_to; char* to + }, ; 12135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21574_from, ; char* from + ptr @.TypeMapEntry.21573_to; char* to + }, ; 12136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21575_from, ; char* from + ptr @.TypeMapEntry.21576_to; char* to + }, ; 12137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21577_from, ; char* from + ptr @.TypeMapEntry.21576_to; char* to + }, ; 12138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21578_from, ; char* from + ptr @.TypeMapEntry.21579_to; char* to + }, ; 12139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21580_from, ; char* from + ptr @.TypeMapEntry.21579_to; char* to + }, ; 12140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21581_from, ; char* from + ptr @.TypeMapEntry.21582_to; char* to + }, ; 12141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21583_from, ; char* from + ptr @.TypeMapEntry.21582_to; char* to + }, ; 12142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21584_from, ; char* from + ptr @.TypeMapEntry.21585_to; char* to + }, ; 12143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21586_from, ; char* from + ptr @.TypeMapEntry.21585_to; char* to + }, ; 12144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21587_from, ; char* from + ptr @.TypeMapEntry.21588_to; char* to + }, ; 12145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21589_from, ; char* from + ptr @.TypeMapEntry.21588_to; char* to + }, ; 12146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21590_from, ; char* from + ptr @.TypeMapEntry.21591_to; char* to + }, ; 12147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21592_from, ; char* from + ptr @.TypeMapEntry.21591_to; char* to + }, ; 12148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21593_from, ; char* from + ptr @.TypeMapEntry.21594_to; char* to + }, ; 12149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21595_from, ; char* from + ptr @.TypeMapEntry.21594_to; char* to + }, ; 12150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21596_from, ; char* from + ptr @.TypeMapEntry.21597_to; char* to + }, ; 12151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21598_from, ; char* from + ptr @.TypeMapEntry.21597_to; char* to + }, ; 12152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21599_from, ; char* from + ptr @.TypeMapEntry.21600_to; char* to + }, ; 12153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21601_from, ; char* from + ptr @.TypeMapEntry.21602_to; char* to + }, ; 12154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21603_from, ; char* from + ptr @.TypeMapEntry.21604_to; char* to + }, ; 12155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21605_from, ; char* from + ptr @.TypeMapEntry.21606_to; char* to + }, ; 12156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21607_from, ; char* from + ptr @.TypeMapEntry.21608_to; char* to + }, ; 12157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21609_from, ; char* from + ptr @.TypeMapEntry.21610_to; char* to + }, ; 12158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21611_from, ; char* from + ptr @.TypeMapEntry.21612_to; char* to + }, ; 12159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21613_from, ; char* from + ptr @.TypeMapEntry.21614_to; char* to + }, ; 12160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21615_from, ; char* from + ptr @.TypeMapEntry.21616_to; char* to + }, ; 12161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21617_from, ; char* from + ptr @.TypeMapEntry.21618_to; char* to + }, ; 12162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21619_from, ; char* from + ptr @.TypeMapEntry.21620_to; char* to + }, ; 12163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21621_from, ; char* from + ptr @.TypeMapEntry.21620_to; char* to + }, ; 12164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21622_from, ; char* from + ptr @.TypeMapEntry.21623_to; char* to + }, ; 12165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21624_from, ; char* from + ptr @.TypeMapEntry.21625_to; char* to + }, ; 12166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21626_from, ; char* from + ptr @.TypeMapEntry.21627_to; char* to + }, ; 12167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21628_from, ; char* from + ptr @.TypeMapEntry.21629_to; char* to + }, ; 12168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21630_from, ; char* from + ptr @.TypeMapEntry.21631_to; char* to + }, ; 12169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21632_from, ; char* from + ptr @.TypeMapEntry.21633_to; char* to + }, ; 12170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21634_from, ; char* from + ptr @.TypeMapEntry.21635_to; char* to + }, ; 12171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21636_from, ; char* from + ptr @.TypeMapEntry.21637_to; char* to + }, ; 12172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21638_from, ; char* from + ptr @.TypeMapEntry.21639_to; char* to + }, ; 12173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21640_from, ; char* from + ptr @.TypeMapEntry.21641_to; char* to + }, ; 12174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21642_from, ; char* from + ptr @.TypeMapEntry.21643_to; char* to + }, ; 12175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21644_from, ; char* from + ptr @.TypeMapEntry.21643_to; char* to + }, ; 12176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21645_from, ; char* from + ptr @.TypeMapEntry.21646_to; char* to + }, ; 12177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21647_from, ; char* from + ptr @.TypeMapEntry.21646_to; char* to + }, ; 12178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21648_from, ; char* from + ptr @.TypeMapEntry.21649_to; char* to + }, ; 12179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21650_from, ; char* from + ptr @.TypeMapEntry.21649_to; char* to + }, ; 12180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21651_from, ; char* from + ptr @.TypeMapEntry.21652_to; char* to + }, ; 12181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21653_from, ; char* from + ptr @.TypeMapEntry.21654_to; char* to + }, ; 12182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21655_from, ; char* from + ptr @.TypeMapEntry.21656_to; char* to + }, ; 12183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21657_from, ; char* from + ptr @.TypeMapEntry.21658_to; char* to + }, ; 12184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21659_from, ; char* from + ptr @.TypeMapEntry.21660_to; char* to + }, ; 12185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21661_from, ; char* from + ptr @.TypeMapEntry.21662_to; char* to + }, ; 12186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21663_from, ; char* from + ptr @.TypeMapEntry.21664_to; char* to + }, ; 12187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21665_from, ; char* from + ptr @.TypeMapEntry.21664_to; char* to + }, ; 12188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21666_from, ; char* from + ptr @.TypeMapEntry.21667_to; char* to + }, ; 12189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21668_from, ; char* from + ptr @.TypeMapEntry.21667_to; char* to + }, ; 12190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21669_from, ; char* from + ptr @.TypeMapEntry.21670_to; char* to + }, ; 12191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21671_from, ; char* from + ptr @.TypeMapEntry.21670_to; char* to + }, ; 12192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21672_from, ; char* from + ptr @.TypeMapEntry.21673_to; char* to + }, ; 12193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21674_from, ; char* from + ptr @.TypeMapEntry.21673_to; char* to + }, ; 12194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21675_from, ; char* from + ptr @.TypeMapEntry.21676_to; char* to + }, ; 12195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21677_from, ; char* from + ptr @.TypeMapEntry.21676_to; char* to + }, ; 12196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21678_from, ; char* from + ptr @.TypeMapEntry.21679_to; char* to + }, ; 12197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21680_from, ; char* from + ptr @.TypeMapEntry.21679_to; char* to + }, ; 12198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21681_from, ; char* from + ptr @.TypeMapEntry.21682_to; char* to + }, ; 12199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21683_from, ; char* from + ptr @.TypeMapEntry.21682_to; char* to + }, ; 12200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21684_from, ; char* from + ptr @.TypeMapEntry.21685_to; char* to + }, ; 12201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21686_from, ; char* from + ptr @.TypeMapEntry.21685_to; char* to + }, ; 12202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21687_from, ; char* from + ptr @.TypeMapEntry.21688_to; char* to + }, ; 12203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21689_from, ; char* from + ptr @.TypeMapEntry.21688_to; char* to + }, ; 12204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21690_from, ; char* from + ptr @.TypeMapEntry.21691_to; char* to + }, ; 12205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21692_from, ; char* from + ptr @.TypeMapEntry.21691_to; char* to + }, ; 12206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21693_from, ; char* from + ptr @.TypeMapEntry.21694_to; char* to + }, ; 12207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21695_from, ; char* from + ptr @.TypeMapEntry.21694_to; char* to + }, ; 12208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21696_from, ; char* from + ptr @.TypeMapEntry.21697_to; char* to + }, ; 12209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21698_from, ; char* from + ptr @.TypeMapEntry.21699_to; char* to + }, ; 12210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21700_from, ; char* from + ptr @.TypeMapEntry.21701_to; char* to + }, ; 12211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21702_from, ; char* from + ptr @.TypeMapEntry.21703_to; char* to + }, ; 12212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21704_from, ; char* from + ptr @.TypeMapEntry.21703_to; char* to + }, ; 12213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21705_from, ; char* from + ptr @.TypeMapEntry.21706_to; char* to + }, ; 12214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21707_from, ; char* from + ptr @.TypeMapEntry.21706_to; char* to + }, ; 12215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21708_from, ; char* from + ptr @.TypeMapEntry.21709_to; char* to + }, ; 12216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21710_from, ; char* from + ptr @.TypeMapEntry.21709_to; char* to + }, ; 12217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21711_from, ; char* from + ptr @.TypeMapEntry.21712_to; char* to + }, ; 12218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21713_from, ; char* from + ptr @.TypeMapEntry.21712_to; char* to + }, ; 12219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21714_from, ; char* from + ptr @.TypeMapEntry.21715_to; char* to + }, ; 12220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21716_from, ; char* from + ptr @.TypeMapEntry.21715_to; char* to + }, ; 12221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21717_from, ; char* from + ptr @.TypeMapEntry.21718_to; char* to + }, ; 12222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21719_from, ; char* from + ptr @.TypeMapEntry.21720_to; char* to + }, ; 12223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21721_from, ; char* from + ptr @.TypeMapEntry.21720_to; char* to + }, ; 12224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21722_from, ; char* from + ptr @.TypeMapEntry.21723_to; char* to + }, ; 12225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21724_from, ; char* from + ptr @.TypeMapEntry.21725_to; char* to + }, ; 12226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21726_from, ; char* from + ptr @.TypeMapEntry.21725_to; char* to + }, ; 12227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21727_from, ; char* from + ptr @.TypeMapEntry.21728_to; char* to + }, ; 12228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21729_from, ; char* from + ptr @.TypeMapEntry.21728_to; char* to + }, ; 12229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21730_from, ; char* from + ptr @.TypeMapEntry.21731_to; char* to + }, ; 12230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21732_from, ; char* from + ptr @.TypeMapEntry.21731_to; char* to + }, ; 12231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21733_from, ; char* from + ptr @.TypeMapEntry.21734_to; char* to + }, ; 12232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21735_from, ; char* from + ptr @.TypeMapEntry.21734_to; char* to + }, ; 12233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21736_from, ; char* from + ptr @.TypeMapEntry.21737_to; char* to + }, ; 12234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21738_from, ; char* from + ptr @.TypeMapEntry.21737_to; char* to + }, ; 12235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21739_from, ; char* from + ptr @.TypeMapEntry.21740_to; char* to + }, ; 12236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21741_from, ; char* from + ptr @.TypeMapEntry.21740_to; char* to + }, ; 12237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21742_from, ; char* from + ptr @.TypeMapEntry.21743_to; char* to + }, ; 12238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21744_from, ; char* from + ptr @.TypeMapEntry.21743_to; char* to + }, ; 12239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21745_from, ; char* from + ptr @.TypeMapEntry.21746_to; char* to + }, ; 12240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21747_from, ; char* from + ptr @.TypeMapEntry.21746_to; char* to + }, ; 12241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21748_from, ; char* from + ptr @.TypeMapEntry.21749_to; char* to + }, ; 12242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21750_from, ; char* from + ptr @.TypeMapEntry.21749_to; char* to + }, ; 12243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21751_from, ; char* from + ptr @.TypeMapEntry.21752_to; char* to + }, ; 12244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21753_from, ; char* from + ptr @.TypeMapEntry.21752_to; char* to + }, ; 12245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21754_from, ; char* from + ptr @.TypeMapEntry.21723_to; char* to + }, ; 12246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21755_from, ; char* from + ptr @.TypeMapEntry.21756_to; char* to + }, ; 12247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21757_from, ; char* from + ptr @.TypeMapEntry.21758_to; char* to + }, ; 12248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21759_from, ; char* from + ptr @.TypeMapEntry.21758_to; char* to + }, ; 12249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21760_from, ; char* from + ptr @.TypeMapEntry.21761_to; char* to + }, ; 12250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21762_from, ; char* from + ptr @.TypeMapEntry.21761_to; char* to + }, ; 12251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21763_from, ; char* from + ptr @.TypeMapEntry.21764_to; char* to + }, ; 12252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21765_from, ; char* from + ptr @.TypeMapEntry.21764_to; char* to + }, ; 12253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21766_from, ; char* from + ptr @.TypeMapEntry.21756_to; char* to + }, ; 12254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21767_from, ; char* from + ptr @.TypeMapEntry.21768_to; char* to + }, ; 12255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21769_from, ; char* from + ptr @.TypeMapEntry.21768_to; char* to + }, ; 12256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21770_from, ; char* from + ptr @.TypeMapEntry.21771_to; char* to + }, ; 12257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21772_from, ; char* from + ptr @.TypeMapEntry.21771_to; char* to + }, ; 12258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21773_from, ; char* from + ptr @.TypeMapEntry.21774_to; char* to + }, ; 12259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21775_from, ; char* from + ptr @.TypeMapEntry.21774_to; char* to + }, ; 12260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21776_from, ; char* from + ptr @.TypeMapEntry.21777_to; char* to + }, ; 12261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21778_from, ; char* from + ptr @.TypeMapEntry.21777_to; char* to + }, ; 12262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21779_from, ; char* from + ptr @.TypeMapEntry.21780_to; char* to + }, ; 12263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21781_from, ; char* from + ptr @.TypeMapEntry.21780_to; char* to + }, ; 12264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21782_from, ; char* from + ptr @.TypeMapEntry.21783_to; char* to + }, ; 12265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21784_from, ; char* from + ptr @.TypeMapEntry.21783_to; char* to + }, ; 12266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21785_from, ; char* from + ptr @.TypeMapEntry.21786_to; char* to + }, ; 12267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21787_from, ; char* from + ptr @.TypeMapEntry.21786_to; char* to + }, ; 12268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21788_from, ; char* from + ptr @.TypeMapEntry.21789_to; char* to + }, ; 12269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21790_from, ; char* from + ptr @.TypeMapEntry.21789_to; char* to + }, ; 12270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21791_from, ; char* from + ptr @.TypeMapEntry.21792_to; char* to + }, ; 12271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21793_from, ; char* from + ptr @.TypeMapEntry.21792_to; char* to + }, ; 12272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21794_from, ; char* from + ptr @.TypeMapEntry.21795_to; char* to + }, ; 12273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21796_from, ; char* from + ptr @.TypeMapEntry.21795_to; char* to + }, ; 12274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21797_from, ; char* from + ptr @.TypeMapEntry.21798_to; char* to + }, ; 12275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21799_from, ; char* from + ptr @.TypeMapEntry.21798_to; char* to + }, ; 12276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21800_from, ; char* from + ptr @.TypeMapEntry.21801_to; char* to + }, ; 12277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21802_from, ; char* from + ptr @.TypeMapEntry.21801_to; char* to + }, ; 12278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21803_from, ; char* from + ptr @.TypeMapEntry.21804_to; char* to + }, ; 12279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21805_from, ; char* from + ptr @.TypeMapEntry.21804_to; char* to + }, ; 12280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21806_from, ; char* from + ptr @.TypeMapEntry.21807_to; char* to + }, ; 12281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21808_from, ; char* from + ptr @.TypeMapEntry.21807_to; char* to + }, ; 12282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21809_from, ; char* from + ptr @.TypeMapEntry.21810_to; char* to + }, ; 12283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21811_from, ; char* from + ptr @.TypeMapEntry.21810_to; char* to + }, ; 12284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21812_from, ; char* from + ptr @.TypeMapEntry.21813_to; char* to + }, ; 12285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21814_from, ; char* from + ptr @.TypeMapEntry.21813_to; char* to + }, ; 12286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21815_from, ; char* from + ptr @.TypeMapEntry.21816_to; char* to + }, ; 12287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21817_from, ; char* from + ptr @.TypeMapEntry.21816_to; char* to + }, ; 12288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21818_from, ; char* from + ptr @.TypeMapEntry.21819_to; char* to + }, ; 12289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21820_from, ; char* from + ptr @.TypeMapEntry.21819_to; char* to + }, ; 12290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21821_from, ; char* from + ptr @.TypeMapEntry.21822_to; char* to + }, ; 12291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21823_from, ; char* from + ptr @.TypeMapEntry.21822_to; char* to + }, ; 12292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21824_from, ; char* from + ptr @.TypeMapEntry.21825_to; char* to + }, ; 12293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21826_from, ; char* from + ptr @.TypeMapEntry.21825_to; char* to + }, ; 12294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21827_from, ; char* from + ptr @.TypeMapEntry.21828_to; char* to + }, ; 12295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21829_from, ; char* from + ptr @.TypeMapEntry.21828_to; char* to + }, ; 12296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21830_from, ; char* from + ptr @.TypeMapEntry.21831_to; char* to + }, ; 12297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21832_from, ; char* from + ptr @.TypeMapEntry.21831_to; char* to + }, ; 12298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21833_from, ; char* from + ptr @.TypeMapEntry.21834_to; char* to + }, ; 12299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21835_from, ; char* from + ptr @.TypeMapEntry.21834_to; char* to + }, ; 12300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21836_from, ; char* from + ptr @.TypeMapEntry.21837_to; char* to + }, ; 12301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21838_from, ; char* from + ptr @.TypeMapEntry.21837_to; char* to + }, ; 12302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21839_from, ; char* from + ptr @.TypeMapEntry.21840_to; char* to + }, ; 12303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21841_from, ; char* from + ptr @.TypeMapEntry.21840_to; char* to + }, ; 12304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21842_from, ; char* from + ptr @.TypeMapEntry.21843_to; char* to + }, ; 12305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21844_from, ; char* from + ptr @.TypeMapEntry.21843_to; char* to + }, ; 12306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21845_from, ; char* from + ptr @.TypeMapEntry.21846_to; char* to + }, ; 12307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21847_from, ; char* from + ptr @.TypeMapEntry.21846_to; char* to + }, ; 12308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21848_from, ; char* from + ptr @.TypeMapEntry.21849_to; char* to + }, ; 12309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21850_from, ; char* from + ptr @.TypeMapEntry.21849_to; char* to + }, ; 12310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21851_from, ; char* from + ptr @.TypeMapEntry.21852_to; char* to + }, ; 12311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21853_from, ; char* from + ptr @.TypeMapEntry.21852_to; char* to + }, ; 12312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21854_from, ; char* from + ptr @.TypeMapEntry.21855_to; char* to + }, ; 12313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21856_from, ; char* from + ptr @.TypeMapEntry.21857_to; char* to + }, ; 12314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21858_from, ; char* from + ptr @.TypeMapEntry.21859_to; char* to + }, ; 12315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21860_from, ; char* from + ptr @.TypeMapEntry.21861_to; char* to + }, ; 12316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21862_from, ; char* from + ptr @.TypeMapEntry.21863_to; char* to + }, ; 12317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21864_from, ; char* from + ptr @.TypeMapEntry.21865_to; char* to + }, ; 12318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21866_from, ; char* from + ptr @.TypeMapEntry.21865_to; char* to + }, ; 12319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21867_from, ; char* from + ptr @.TypeMapEntry.21868_to; char* to + }, ; 12320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21869_from, ; char* from + ptr @.TypeMapEntry.21870_to; char* to + }, ; 12321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21871_from, ; char* from + ptr @.TypeMapEntry.21872_to; char* to + }, ; 12322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21873_from, ; char* from + ptr @.TypeMapEntry.21874_to; char* to + }, ; 12323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21875_from, ; char* from + ptr @.TypeMapEntry.21876_to; char* to + }, ; 12324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21877_from, ; char* from + ptr @.TypeMapEntry.21878_to; char* to + }, ; 12325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21879_from, ; char* from + ptr @.TypeMapEntry.21880_to; char* to + }, ; 12326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21881_from, ; char* from + ptr @.TypeMapEntry.21882_to; char* to + }, ; 12327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21883_from, ; char* from + ptr @.TypeMapEntry.21884_to; char* to + }, ; 12328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21885_from, ; char* from + ptr @.TypeMapEntry.21886_to; char* to + }, ; 12329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21887_from, ; char* from + ptr @.TypeMapEntry.21886_to; char* to + }, ; 12330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21888_from, ; char* from + ptr @.TypeMapEntry.21889_to; char* to + }, ; 12331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21890_from, ; char* from + ptr @.TypeMapEntry.21889_to; char* to + }, ; 12332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21891_from, ; char* from + ptr @.TypeMapEntry.21892_to; char* to + }, ; 12333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21893_from, ; char* from + ptr @.TypeMapEntry.21892_to; char* to + }, ; 12334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21894_from, ; char* from + ptr @.TypeMapEntry.21895_to; char* to + }, ; 12335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21896_from, ; char* from + ptr @.TypeMapEntry.21895_to; char* to + }, ; 12336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21897_from, ; char* from + ptr @.TypeMapEntry.21898_to; char* to + }, ; 12337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21899_from, ; char* from + ptr @.TypeMapEntry.21898_to; char* to + }, ; 12338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21900_from, ; char* from + ptr @.TypeMapEntry.21901_to; char* to + }, ; 12339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21902_from, ; char* from + ptr @.TypeMapEntry.21901_to; char* to + }, ; 12340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21903_from, ; char* from + ptr @.TypeMapEntry.21904_to; char* to + }, ; 12341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21905_from, ; char* from + ptr @.TypeMapEntry.21904_to; char* to + }, ; 12342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21906_from, ; char* from + ptr @.TypeMapEntry.21907_to; char* to + }, ; 12343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21908_from, ; char* from + ptr @.TypeMapEntry.21909_to; char* to + }, ; 12344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21910_from, ; char* from + ptr @.TypeMapEntry.21911_to; char* to + }, ; 12345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21912_from, ; char* from + ptr @.TypeMapEntry.21913_to; char* to + }, ; 12346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21914_from, ; char* from + ptr @.TypeMapEntry.21915_to; char* to + }, ; 12347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21916_from, ; char* from + ptr @.TypeMapEntry.21915_to; char* to + }, ; 12348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21917_from, ; char* from + ptr @.TypeMapEntry.21918_to; char* to + }, ; 12349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21919_from, ; char* from + ptr @.TypeMapEntry.21920_to; char* to + }, ; 12350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21921_from, ; char* from + ptr @.TypeMapEntry.21922_to; char* to + }, ; 12351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21923_from, ; char* from + ptr @.TypeMapEntry.21924_to; char* to + }, ; 12352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21925_from, ; char* from + ptr @.TypeMapEntry.21926_to; char* to + }, ; 12353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21927_from, ; char* from + ptr @.TypeMapEntry.21926_to; char* to + }, ; 12354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21928_from, ; char* from + ptr @.TypeMapEntry.21929_to; char* to + }, ; 12355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21930_from, ; char* from + ptr @.TypeMapEntry.21929_to; char* to + }, ; 12356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21931_from, ; char* from + ptr @.TypeMapEntry.21932_to; char* to + }, ; 12357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21933_from, ; char* from + ptr @.TypeMapEntry.21932_to; char* to + }, ; 12358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21934_from, ; char* from + ptr @.TypeMapEntry.21935_to; char* to + }, ; 12359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21936_from, ; char* from + ptr @.TypeMapEntry.21935_to; char* to + }, ; 12360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21937_from, ; char* from + ptr @.TypeMapEntry.21938_to; char* to + }, ; 12361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21939_from, ; char* from + ptr @.TypeMapEntry.21938_to; char* to + }, ; 12362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21940_from, ; char* from + ptr @.TypeMapEntry.21941_to; char* to + }, ; 12363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21942_from, ; char* from + ptr @.TypeMapEntry.21941_to; char* to + }, ; 12364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21943_from, ; char* from + ptr @.TypeMapEntry.21944_to; char* to + }, ; 12365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21945_from, ; char* from + ptr @.TypeMapEntry.21946_to; char* to + }, ; 12366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21947_from, ; char* from + ptr @.TypeMapEntry.21946_to; char* to + }, ; 12367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21948_from, ; char* from + ptr @.TypeMapEntry.21944_to; char* to + }, ; 12368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21949_from, ; char* from + ptr @.TypeMapEntry.21950_to; char* to + }, ; 12369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21951_from, ; char* from + ptr @.TypeMapEntry.21950_to; char* to + }, ; 12370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21952_from, ; char* from + ptr @.TypeMapEntry.21953_to; char* to + }, ; 12371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21954_from, ; char* from + ptr @.TypeMapEntry.21955_to; char* to + }, ; 12372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21956_from, ; char* from + ptr @.TypeMapEntry.21957_to; char* to + }, ; 12373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21958_from, ; char* from + ptr @.TypeMapEntry.21957_to; char* to + }, ; 12374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21959_from, ; char* from + ptr @.TypeMapEntry.21960_to; char* to + }, ; 12375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21961_from, ; char* from + ptr @.TypeMapEntry.21960_to; char* to + }, ; 12376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21962_from, ; char* from + ptr @.TypeMapEntry.21963_to; char* to + }, ; 12377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21964_from, ; char* from + ptr @.TypeMapEntry.21963_to; char* to + }, ; 12378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21965_from, ; char* from + ptr @.TypeMapEntry.21955_to; char* to + }, ; 12379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21966_from, ; char* from + ptr @.TypeMapEntry.21967_to; char* to + }, ; 12380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21968_from, ; char* from + ptr @.TypeMapEntry.21969_to; char* to + }, ; 12381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21970_from, ; char* from + ptr @.TypeMapEntry.21969_to; char* to + }, ; 12382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21971_from, ; char* from + ptr @.TypeMapEntry.21972_to; char* to + }, ; 12383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21973_from, ; char* from + ptr @.TypeMapEntry.21974_to; char* to + }, ; 12384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21975_from, ; char* from + ptr @.TypeMapEntry.21974_to; char* to + }, ; 12385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21976_from, ; char* from + ptr @.TypeMapEntry.21977_to; char* to + }, ; 12386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21978_from, ; char* from + ptr @.TypeMapEntry.21977_to; char* to + }, ; 12387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21979_from, ; char* from + ptr @.TypeMapEntry.21980_to; char* to + }, ; 12388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21981_from, ; char* from + ptr @.TypeMapEntry.21980_to; char* to + }, ; 12389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21982_from, ; char* from + ptr @.TypeMapEntry.21972_to; char* to + }, ; 12390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21983_from, ; char* from + ptr @.TypeMapEntry.21984_to; char* to + }, ; 12391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21985_from, ; char* from + ptr @.TypeMapEntry.21986_to; char* to + }, ; 12392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21987_from, ; char* from + ptr @.TypeMapEntry.21988_to; char* to + }, ; 12393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21989_from, ; char* from + ptr @.TypeMapEntry.21990_to; char* to + }, ; 12394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21991_from, ; char* from + ptr @.TypeMapEntry.21992_to; char* to + }, ; 12395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21993_from, ; char* from + ptr @.TypeMapEntry.21994_to; char* to + }, ; 12396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21995_from, ; char* from + ptr @.TypeMapEntry.21996_to; char* to + }, ; 12397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21997_from, ; char* from + ptr @.TypeMapEntry.21998_to; char* to + }, ; 12398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21999_from, ; char* from + ptr @.TypeMapEntry.22000_to; char* to + }, ; 12399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22001_from, ; char* from + ptr @.TypeMapEntry.22002_to; char* to + }, ; 12400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22003_from, ; char* from + ptr @.TypeMapEntry.22004_to; char* to + }, ; 12401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22005_from, ; char* from + ptr @.TypeMapEntry.22006_to; char* to + }, ; 12402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22007_from, ; char* from + ptr @.TypeMapEntry.22008_to; char* to + }, ; 12403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22009_from, ; char* from + ptr @.TypeMapEntry.22010_to; char* to + }, ; 12404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22011_from, ; char* from + ptr @.TypeMapEntry.22012_to; char* to + }, ; 12405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22013_from, ; char* from + ptr @.TypeMapEntry.22014_to; char* to + }, ; 12406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22015_from, ; char* from + ptr @.TypeMapEntry.22016_to; char* to + }, ; 12407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22017_from, ; char* from + ptr @.TypeMapEntry.22018_to; char* to + }, ; 12408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22019_from, ; char* from + ptr @.TypeMapEntry.22020_to; char* to + }, ; 12409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22021_from, ; char* from + ptr @.TypeMapEntry.22022_to; char* to + }, ; 12410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22023_from, ; char* from + ptr @.TypeMapEntry.22024_to; char* to + }, ; 12411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22025_from, ; char* from + ptr @.TypeMapEntry.22026_to; char* to + }, ; 12412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22027_from, ; char* from + ptr @.TypeMapEntry.22028_to; char* to + }, ; 12413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22029_from, ; char* from + ptr @.TypeMapEntry.22030_to; char* to + }, ; 12414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22031_from, ; char* from + ptr @.TypeMapEntry.22032_to; char* to + }, ; 12415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22033_from, ; char* from + ptr @.TypeMapEntry.22034_to; char* to + }, ; 12416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22035_from, ; char* from + ptr @.TypeMapEntry.22036_to; char* to + }, ; 12417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22037_from, ; char* from + ptr @.TypeMapEntry.22038_to; char* to + }, ; 12418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22039_from, ; char* from + ptr @.TypeMapEntry.22040_to; char* to + }, ; 12419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22041_from, ; char* from + ptr @.TypeMapEntry.22042_to; char* to + }, ; 12420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22043_from, ; char* from + ptr @.TypeMapEntry.22044_to; char* to + }, ; 12421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22045_from, ; char* from + ptr @.TypeMapEntry.22046_to; char* to + }, ; 12422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22047_from, ; char* from + ptr @.TypeMapEntry.22048_to; char* to + }, ; 12423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22049_from, ; char* from + ptr @.TypeMapEntry.22050_to; char* to + }, ; 12424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22051_from, ; char* from + ptr @.TypeMapEntry.22052_to; char* to + }, ; 12425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22053_from, ; char* from + ptr @.TypeMapEntry.22054_to; char* to + }, ; 12426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22055_from, ; char* from + ptr @.TypeMapEntry.22056_to; char* to + }, ; 12427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22057_from, ; char* from + ptr @.TypeMapEntry.22058_to; char* to + }, ; 12428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22059_from, ; char* from + ptr @.TypeMapEntry.22060_to; char* to + }, ; 12429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22061_from, ; char* from + ptr @.TypeMapEntry.22062_to; char* to + }, ; 12430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22063_from, ; char* from + ptr @.TypeMapEntry.22062_to; char* to + }, ; 12431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22064_from, ; char* from + ptr @.TypeMapEntry.22065_to; char* to + }, ; 12432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22066_from, ; char* from + ptr @.TypeMapEntry.22065_to; char* to + }, ; 12433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22067_from, ; char* from + ptr @.TypeMapEntry.22068_to; char* to + }, ; 12434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22069_from, ; char* from + ptr @.TypeMapEntry.22068_to; char* to + }, ; 12435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22070_from, ; char* from + ptr @.TypeMapEntry.22071_to; char* to + }, ; 12436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22072_from, ; char* from + ptr @.TypeMapEntry.22071_to; char* to + }, ; 12437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22073_from, ; char* from + ptr @.TypeMapEntry.22074_to; char* to + }, ; 12438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22075_from, ; char* from + ptr @.TypeMapEntry.22076_to; char* to + }, ; 12439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22077_from, ; char* from + ptr @.TypeMapEntry.22078_to; char* to + }, ; 12440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22079_from, ; char* from + ptr @.TypeMapEntry.22080_to; char* to + }, ; 12441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22081_from, ; char* from + ptr @.TypeMapEntry.22080_to; char* to + }, ; 12442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22082_from, ; char* from + ptr @.TypeMapEntry.22083_to; char* to + }, ; 12443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22084_from, ; char* from + ptr @.TypeMapEntry.22085_to; char* to + }, ; 12444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22086_from, ; char* from + ptr @.TypeMapEntry.22087_to; char* to + }, ; 12445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22088_from, ; char* from + ptr @.TypeMapEntry.22089_to; char* to + }, ; 12446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22090_from, ; char* from + ptr @.TypeMapEntry.22091_to; char* to + }, ; 12447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22092_from, ; char* from + ptr @.TypeMapEntry.22093_to; char* to + }, ; 12448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22094_from, ; char* from + ptr @.TypeMapEntry.22095_to; char* to + }, ; 12449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22096_from, ; char* from + ptr @.TypeMapEntry.22097_to; char* to + }, ; 12450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22098_from, ; char* from + ptr @.TypeMapEntry.22099_to; char* to + }, ; 12451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22100_from, ; char* from + ptr @.TypeMapEntry.22099_to; char* to + }, ; 12452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22101_from, ; char* from + ptr @.TypeMapEntry.22102_to; char* to + }, ; 12453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22103_from, ; char* from + ptr @.TypeMapEntry.22102_to; char* to + }, ; 12454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22104_from, ; char* from + ptr @.TypeMapEntry.22105_to; char* to + }, ; 12455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22106_from, ; char* from + ptr @.TypeMapEntry.22105_to; char* to + }, ; 12456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22107_from, ; char* from + ptr @.TypeMapEntry.22108_to; char* to + }, ; 12457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22109_from, ; char* from + ptr @.TypeMapEntry.22110_to; char* to + }, ; 12458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22111_from, ; char* from + ptr @.TypeMapEntry.22112_to; char* to + }, ; 12459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22113_from, ; char* from + ptr @.TypeMapEntry.22114_to; char* to + }, ; 12460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22115_from, ; char* from + ptr @.TypeMapEntry.22116_to; char* to + }, ; 12461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22117_from, ; char* from + ptr @.TypeMapEntry.22118_to; char* to + }, ; 12462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22119_from, ; char* from + ptr @.TypeMapEntry.22120_to; char* to + }, ; 12463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22121_from, ; char* from + ptr @.TypeMapEntry.22122_to; char* to + }, ; 12464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22123_from, ; char* from + ptr @.TypeMapEntry.22124_to; char* to + }, ; 12465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22125_from, ; char* from + ptr @.TypeMapEntry.22126_to; char* to + }, ; 12466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22127_from, ; char* from + ptr @.TypeMapEntry.22128_to; char* to + }, ; 12467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22129_from, ; char* from + ptr @.TypeMapEntry.22130_to; char* to + }, ; 12468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22131_from, ; char* from + ptr @.TypeMapEntry.22132_to; char* to + }, ; 12469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22133_from, ; char* from + ptr @.TypeMapEntry.22134_to; char* to + }, ; 12470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22135_from, ; char* from + ptr @.TypeMapEntry.22136_to; char* to + }, ; 12471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22137_from, ; char* from + ptr @.TypeMapEntry.22138_to; char* to + }, ; 12472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22139_from, ; char* from + ptr @.TypeMapEntry.22140_to; char* to + }, ; 12473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22141_from, ; char* from + ptr @.TypeMapEntry.22142_to; char* to + }, ; 12474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22143_from, ; char* from + ptr @.TypeMapEntry.22144_to; char* to + }, ; 12475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22145_from, ; char* from + ptr @.TypeMapEntry.22146_to; char* to + }, ; 12476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22147_from, ; char* from + ptr @.TypeMapEntry.22146_to; char* to + }, ; 12477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22148_from, ; char* from + ptr @.TypeMapEntry.22149_to; char* to + }, ; 12478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22150_from, ; char* from + ptr @.TypeMapEntry.22149_to; char* to + }, ; 12479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22151_from, ; char* from + ptr @.TypeMapEntry.22152_to; char* to + }, ; 12480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22153_from, ; char* from + ptr @.TypeMapEntry.22152_to; char* to + }, ; 12481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22154_from, ; char* from + ptr @.TypeMapEntry.22155_to; char* to + }, ; 12482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22156_from, ; char* from + ptr @.TypeMapEntry.22155_to; char* to + }, ; 12483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22157_from, ; char* from + ptr @.TypeMapEntry.22158_to; char* to + }, ; 12484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22159_from, ; char* from + ptr @.TypeMapEntry.22158_to; char* to + }, ; 12485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22160_from, ; char* from + ptr @.TypeMapEntry.22161_to; char* to + }, ; 12486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22162_from, ; char* from + ptr @.TypeMapEntry.22161_to; char* to + }, ; 12487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22163_from, ; char* from + ptr @.TypeMapEntry.22164_to; char* to + }, ; 12488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22165_from, ; char* from + ptr @.TypeMapEntry.22166_to; char* to + }, ; 12489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22167_from, ; char* from + ptr @.TypeMapEntry.22166_to; char* to + }, ; 12490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22168_from, ; char* from + ptr @.TypeMapEntry.22169_to; char* to + }, ; 12491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22170_from, ; char* from + ptr @.TypeMapEntry.22169_to; char* to + }, ; 12492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22171_from, ; char* from + ptr @.TypeMapEntry.22172_to; char* to + }, ; 12493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22173_from, ; char* from + ptr @.TypeMapEntry.22172_to; char* to + }, ; 12494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22174_from, ; char* from + ptr @.TypeMapEntry.22175_to; char* to + }, ; 12495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22176_from, ; char* from + ptr @.TypeMapEntry.22175_to; char* to + }, ; 12496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22177_from, ; char* from + ptr @.TypeMapEntry.22178_to; char* to + }, ; 12497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22179_from, ; char* from + ptr @.TypeMapEntry.22178_to; char* to + }, ; 12498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22180_from, ; char* from + ptr @.TypeMapEntry.22181_to; char* to + }, ; 12499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22182_from, ; char* from + ptr @.TypeMapEntry.22181_to; char* to + }, ; 12500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22183_from, ; char* from + ptr @.TypeMapEntry.22164_to; char* to + }, ; 12501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22184_from, ; char* from + ptr @.TypeMapEntry.22185_to; char* to + }, ; 12502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22186_from, ; char* from + ptr @.TypeMapEntry.22185_to; char* to + }, ; 12503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22187_from, ; char* from + ptr @.TypeMapEntry.22188_to; char* to + }, ; 12504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22189_from, ; char* from + ptr @.TypeMapEntry.22188_to; char* to + }, ; 12505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22190_from, ; char* from + ptr @.TypeMapEntry.22191_to; char* to + }, ; 12506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22192_from, ; char* from + ptr @.TypeMapEntry.22193_to; char* to + }, ; 12507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22194_from, ; char* from + ptr @.TypeMapEntry.22195_to; char* to + }, ; 12508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22196_from, ; char* from + ptr @.TypeMapEntry.22195_to; char* to + }, ; 12509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22197_from, ; char* from + ptr @.TypeMapEntry.22193_to; char* to + }, ; 12510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22198_from, ; char* from + ptr @.TypeMapEntry.22199_to; char* to + }, ; 12511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22200_from, ; char* from + ptr @.TypeMapEntry.22201_to; char* to + }, ; 12512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22202_from, ; char* from + ptr @.TypeMapEntry.22201_to; char* to + }, ; 12513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22203_from, ; char* from + ptr @.TypeMapEntry.22199_to; char* to + }, ; 12514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22204_from, ; char* from + ptr @.TypeMapEntry.22205_to; char* to + }, ; 12515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22206_from, ; char* from + ptr @.TypeMapEntry.22207_to; char* to + }, ; 12516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22208_from, ; char* from + ptr @.TypeMapEntry.22207_to; char* to + }, ; 12517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22209_from, ; char* from + ptr @.TypeMapEntry.22205_to; char* to + }, ; 12518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22210_from, ; char* from + ptr @.TypeMapEntry.22211_to; char* to + }, ; 12519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22212_from, ; char* from + ptr @.TypeMapEntry.22211_to; char* to + }, ; 12520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22213_from, ; char* from + ptr @.TypeMapEntry.22214_to; char* to + }, ; 12521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22215_from, ; char* from + ptr @.TypeMapEntry.22214_to; char* to + }, ; 12522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22216_from, ; char* from + ptr @.TypeMapEntry.22191_to; char* to + }, ; 12523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22217_from, ; char* from + ptr @.TypeMapEntry.22218_to; char* to + }, ; 12524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22219_from, ; char* from + ptr @.TypeMapEntry.22218_to; char* to + }, ; 12525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22220_from, ; char* from + ptr @.TypeMapEntry.22221_to; char* to + }, ; 12526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22222_from, ; char* from + ptr @.TypeMapEntry.22221_to; char* to + }, ; 12527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22223_from, ; char* from + ptr @.TypeMapEntry.22224_to; char* to + }, ; 12528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22225_from, ; char* from + ptr @.TypeMapEntry.22226_to; char* to + }, ; 12529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22227_from, ; char* from + ptr @.TypeMapEntry.22228_to; char* to + }, ; 12530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22229_from, ; char* from + ptr @.TypeMapEntry.22230_to; char* to + }, ; 12531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22231_from, ; char* from + ptr @.TypeMapEntry.22232_to; char* to + }, ; 12532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22233_from, ; char* from + ptr @.TypeMapEntry.22234_to; char* to + }, ; 12533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22235_from, ; char* from + ptr @.TypeMapEntry.22236_to; char* to + }, ; 12534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22237_from, ; char* from + ptr @.TypeMapEntry.22238_to; char* to + }, ; 12535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22239_from, ; char* from + ptr @.TypeMapEntry.22240_to; char* to + }, ; 12536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22241_from, ; char* from + ptr @.TypeMapEntry.22242_to; char* to + }, ; 12537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22243_from, ; char* from + ptr @.TypeMapEntry.22244_to; char* to + }, ; 12538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22245_from, ; char* from + ptr @.TypeMapEntry.22246_to; char* to + }, ; 12539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22247_from, ; char* from + ptr @.TypeMapEntry.22248_to; char* to + }, ; 12540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22249_from, ; char* from + ptr @.TypeMapEntry.22250_to; char* to + }, ; 12541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22251_from, ; char* from + ptr @.TypeMapEntry.22252_to; char* to + }, ; 12542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22253_from, ; char* from + ptr @.TypeMapEntry.22254_to; char* to + }, ; 12543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22255_from, ; char* from + ptr @.TypeMapEntry.22256_to; char* to + }, ; 12544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22257_from, ; char* from + ptr @.TypeMapEntry.22258_to; char* to + }, ; 12545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22259_from, ; char* from + ptr @.TypeMapEntry.22260_to; char* to + }, ; 12546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22261_from, ; char* from + ptr @.TypeMapEntry.22262_to; char* to + }, ; 12547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22263_from, ; char* from + ptr @.TypeMapEntry.22264_to; char* to + }, ; 12548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22265_from, ; char* from + ptr @.TypeMapEntry.22266_to; char* to + }, ; 12549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22267_from, ; char* from + ptr @.TypeMapEntry.22268_to; char* to + }, ; 12550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22269_from, ; char* from + ptr @.TypeMapEntry.22270_to; char* to + }, ; 12551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22271_from, ; char* from + ptr @.TypeMapEntry.22272_to; char* to + }, ; 12552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22273_from, ; char* from + ptr @.TypeMapEntry.22274_to; char* to + }, ; 12553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22275_from, ; char* from + ptr @.TypeMapEntry.22276_to; char* to + }, ; 12554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22277_from, ; char* from + ptr @.TypeMapEntry.22276_to; char* to + }, ; 12555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22278_from, ; char* from + ptr @.TypeMapEntry.22279_to; char* to + }, ; 12556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22280_from, ; char* from + ptr @.TypeMapEntry.22279_to; char* to + }, ; 12557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22281_from, ; char* from + ptr @.TypeMapEntry.22282_to; char* to + }, ; 12558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22283_from, ; char* from + ptr @.TypeMapEntry.22284_to; char* to + }, ; 12559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22285_from, ; char* from + ptr @.TypeMapEntry.22286_to; char* to + }, ; 12560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22287_from, ; char* from + ptr @.TypeMapEntry.22288_to; char* to + }, ; 12561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22289_from, ; char* from + ptr @.TypeMapEntry.22290_to; char* to + }, ; 12562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22291_from, ; char* from + ptr @.TypeMapEntry.22292_to; char* to + }, ; 12563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22293_from, ; char* from + ptr @.TypeMapEntry.22294_to; char* to + }, ; 12564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22295_from, ; char* from + ptr @.TypeMapEntry.22296_to; char* to + }, ; 12565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22297_from, ; char* from + ptr @.TypeMapEntry.22298_to; char* to + }, ; 12566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22299_from, ; char* from + ptr @.TypeMapEntry.22300_to; char* to + }, ; 12567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22301_from, ; char* from + ptr @.TypeMapEntry.22302_to; char* to + }, ; 12568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22303_from, ; char* from + ptr @.TypeMapEntry.22304_to; char* to + }, ; 12569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22305_from, ; char* from + ptr @.TypeMapEntry.22306_to; char* to + }, ; 12570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22307_from, ; char* from + ptr @.TypeMapEntry.22308_to; char* to + }, ; 12571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22309_from, ; char* from + ptr @.TypeMapEntry.22310_to; char* to + }, ; 12572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22311_from, ; char* from + ptr @.TypeMapEntry.22312_to; char* to + }, ; 12573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22313_from, ; char* from + ptr @.TypeMapEntry.22314_to; char* to + }, ; 12574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22315_from, ; char* from + ptr @.TypeMapEntry.22316_to; char* to + }, ; 12575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22317_from, ; char* from + ptr @.TypeMapEntry.22318_to; char* to + }, ; 12576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22319_from, ; char* from + ptr @.TypeMapEntry.22320_to; char* to + }, ; 12577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22321_from, ; char* from + ptr @.TypeMapEntry.22322_to; char* to + }, ; 12578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22323_from, ; char* from + ptr @.TypeMapEntry.22324_to; char* to + }, ; 12579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22325_from, ; char* from + ptr @.TypeMapEntry.22326_to; char* to + }, ; 12580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22327_from, ; char* from + ptr @.TypeMapEntry.22328_to; char* to + }, ; 12581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22329_from, ; char* from + ptr @.TypeMapEntry.22328_to; char* to + }, ; 12582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22330_from, ; char* from + ptr @.TypeMapEntry.22331_to; char* to + }, ; 12583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22332_from, ; char* from + ptr @.TypeMapEntry.22331_to; char* to + }, ; 12584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22333_from, ; char* from + ptr @.TypeMapEntry.22334_to; char* to + }, ; 12585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22335_from, ; char* from + ptr @.TypeMapEntry.22334_to; char* to + }, ; 12586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22336_from, ; char* from + ptr @.TypeMapEntry.22337_to; char* to + }, ; 12587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22338_from, ; char* from + ptr @.TypeMapEntry.22339_to; char* to + }, ; 12588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22340_from, ; char* from + ptr @.TypeMapEntry.22341_to; char* to + }, ; 12589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22342_from, ; char* from + ptr @.TypeMapEntry.22343_to; char* to + }, ; 12590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22344_from, ; char* from + ptr @.TypeMapEntry.22345_to; char* to + }, ; 12591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22346_from, ; char* from + ptr @.TypeMapEntry.22347_to; char* to + }, ; 12592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22348_from, ; char* from + ptr @.TypeMapEntry.22349_to; char* to + }, ; 12593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22350_from, ; char* from + ptr @.TypeMapEntry.22351_to; char* to + }, ; 12594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22352_from, ; char* from + ptr @.TypeMapEntry.22353_to; char* to + }, ; 12595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22354_from, ; char* from + ptr @.TypeMapEntry.22355_to; char* to + }, ; 12596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22356_from, ; char* from + ptr @.TypeMapEntry.22357_to; char* to + }, ; 12597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22358_from, ; char* from + ptr @.TypeMapEntry.22359_to; char* to + }, ; 12598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22360_from, ; char* from + ptr @.TypeMapEntry.22361_to; char* to + }, ; 12599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22362_from, ; char* from + ptr @.TypeMapEntry.22363_to; char* to + }, ; 12600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22364_from, ; char* from + ptr @.TypeMapEntry.22365_to; char* to + }, ; 12601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22366_from, ; char* from + ptr @.TypeMapEntry.22367_to; char* to + }, ; 12602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22368_from, ; char* from + ptr @.TypeMapEntry.22367_to; char* to + }, ; 12603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22369_from, ; char* from + ptr @.TypeMapEntry.22370_to; char* to + }, ; 12604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22371_from, ; char* from + ptr @.TypeMapEntry.22370_to; char* to + }, ; 12605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22372_from, ; char* from + ptr @.TypeMapEntry.22373_to; char* to + }, ; 12606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22374_from, ; char* from + ptr @.TypeMapEntry.22375_to; char* to + }, ; 12607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22376_from, ; char* from + ptr @.TypeMapEntry.22377_to; char* to + }, ; 12608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22378_from, ; char* from + ptr @.TypeMapEntry.22379_to; char* to + }, ; 12609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22380_from, ; char* from + ptr @.TypeMapEntry.22381_to; char* to + }, ; 12610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22382_from, ; char* from + ptr @.TypeMapEntry.22383_to; char* to + }, ; 12611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22384_from, ; char* from + ptr @.TypeMapEntry.22385_to; char* to + }, ; 12612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22386_from, ; char* from + ptr @.TypeMapEntry.22387_to; char* to + }, ; 12613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22388_from, ; char* from + ptr @.TypeMapEntry.22387_to; char* to + }, ; 12614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22389_from, ; char* from + ptr @.TypeMapEntry.22390_to; char* to + }, ; 12615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22391_from, ; char* from + ptr @.TypeMapEntry.22390_to; char* to + }, ; 12616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22392_from, ; char* from + ptr @.TypeMapEntry.22393_to; char* to + }, ; 12617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22394_from, ; char* from + ptr @.TypeMapEntry.22393_to; char* to + }, ; 12618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22395_from, ; char* from + ptr @.TypeMapEntry.22396_to; char* to + }, ; 12619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22397_from, ; char* from + ptr @.TypeMapEntry.22396_to; char* to + }, ; 12620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22398_from, ; char* from + ptr @.TypeMapEntry.22399_to; char* to + }, ; 12621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22400_from, ; char* from + ptr @.TypeMapEntry.22399_to; char* to + }, ; 12622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22401_from, ; char* from + ptr @.TypeMapEntry.22402_to; char* to + }, ; 12623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22403_from, ; char* from + ptr @.TypeMapEntry.22404_to; char* to + }, ; 12624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22405_from, ; char* from + ptr @.TypeMapEntry.22406_to; char* to + }, ; 12625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22407_from, ; char* from + ptr @.TypeMapEntry.22408_to; char* to + }, ; 12626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22409_from, ; char* from + ptr @.TypeMapEntry.22410_to; char* to + }, ; 12627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22411_from, ; char* from + ptr @.TypeMapEntry.22412_to; char* to + }, ; 12628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22413_from, ; char* from + ptr @.TypeMapEntry.22414_to; char* to + }, ; 12629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22415_from, ; char* from + ptr @.TypeMapEntry.22416_to; char* to + }, ; 12630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22417_from, ; char* from + ptr @.TypeMapEntry.22418_to; char* to + }, ; 12631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22419_from, ; char* from + ptr @.TypeMapEntry.22420_to; char* to + }, ; 12632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22421_from, ; char* from + ptr @.TypeMapEntry.22422_to; char* to + }, ; 12633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22423_from, ; char* from + ptr @.TypeMapEntry.22424_to; char* to + }, ; 12634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22425_from, ; char* from + ptr @.TypeMapEntry.22426_to; char* to + }, ; 12635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22427_from, ; char* from + ptr @.TypeMapEntry.22428_to; char* to + }, ; 12636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22429_from, ; char* from + ptr @.TypeMapEntry.22430_to; char* to + }, ; 12637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22431_from, ; char* from + ptr @.TypeMapEntry.22432_to; char* to + }, ; 12638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22433_from, ; char* from + ptr @.TypeMapEntry.22434_to; char* to + }, ; 12639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22435_from, ; char* from + ptr @.TypeMapEntry.22436_to; char* to + }, ; 12640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22437_from, ; char* from + ptr @.TypeMapEntry.22438_to; char* to + }, ; 12641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22439_from, ; char* from + ptr @.TypeMapEntry.22440_to; char* to + }, ; 12642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22441_from, ; char* from + ptr @.TypeMapEntry.22442_to; char* to + }, ; 12643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22443_from, ; char* from + ptr @.TypeMapEntry.22444_to; char* to + }, ; 12644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22445_from, ; char* from + ptr @.TypeMapEntry.22446_to; char* to + }, ; 12645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22447_from, ; char* from + ptr @.TypeMapEntry.22448_to; char* to + }, ; 12646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22449_from, ; char* from + ptr @.TypeMapEntry.22450_to; char* to + }, ; 12647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22451_from, ; char* from + ptr @.TypeMapEntry.22452_to; char* to + }, ; 12648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22453_from, ; char* from + ptr @.TypeMapEntry.22454_to; char* to + }, ; 12649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22455_from, ; char* from + ptr @.TypeMapEntry.22456_to; char* to + }, ; 12650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22457_from, ; char* from + ptr @.TypeMapEntry.22458_to; char* to + }, ; 12651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22459_from, ; char* from + ptr @.TypeMapEntry.22460_to; char* to + }, ; 12652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22461_from, ; char* from + ptr @.TypeMapEntry.22462_to; char* to + }, ; 12653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22463_from, ; char* from + ptr @.TypeMapEntry.22464_to; char* to + }, ; 12654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22465_from, ; char* from + ptr @.TypeMapEntry.22466_to; char* to + }, ; 12655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22467_from, ; char* from + ptr @.TypeMapEntry.22468_to; char* to + }, ; 12656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22469_from, ; char* from + ptr @.TypeMapEntry.22468_to; char* to + }, ; 12657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22470_from, ; char* from + ptr @.TypeMapEntry.22471_to; char* to + }, ; 12658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22472_from, ; char* from + ptr @.TypeMapEntry.22473_to; char* to + }, ; 12659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22474_from, ; char* from + ptr @.TypeMapEntry.22475_to; char* to + }, ; 12660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22476_from, ; char* from + ptr @.TypeMapEntry.22477_to; char* to + }, ; 12661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22478_from, ; char* from + ptr @.TypeMapEntry.22479_to; char* to + }, ; 12662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22480_from, ; char* from + ptr @.TypeMapEntry.22481_to; char* to + }, ; 12663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22482_from, ; char* from + ptr @.TypeMapEntry.22483_to; char* to + }, ; 12664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22484_from, ; char* from + ptr @.TypeMapEntry.22485_to; char* to + }, ; 12665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22486_from, ; char* from + ptr @.TypeMapEntry.22487_to; char* to + }, ; 12666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22488_from, ; char* from + ptr @.TypeMapEntry.22489_to; char* to + }, ; 12667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22490_from, ; char* from + ptr @.TypeMapEntry.22491_to; char* to + }, ; 12668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22492_from, ; char* from + ptr @.TypeMapEntry.22493_to; char* to + }, ; 12669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22494_from, ; char* from + ptr @.TypeMapEntry.22495_to; char* to + }, ; 12670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22496_from, ; char* from + ptr @.TypeMapEntry.22497_to; char* to + }, ; 12671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22498_from, ; char* from + ptr @.TypeMapEntry.22499_to; char* to + }, ; 12672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22500_from, ; char* from + ptr @.TypeMapEntry.22501_to; char* to + }, ; 12673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22502_from, ; char* from + ptr @.TypeMapEntry.22503_to; char* to + }, ; 12674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22504_from, ; char* from + ptr @.TypeMapEntry.22505_to; char* to + }, ; 12675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22506_from, ; char* from + ptr @.TypeMapEntry.22507_to; char* to + }, ; 12676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22508_from, ; char* from + ptr @.TypeMapEntry.22509_to; char* to + }, ; 12677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22510_from, ; char* from + ptr @.TypeMapEntry.22511_to; char* to + }, ; 12678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22512_from, ; char* from + ptr @.TypeMapEntry.22513_to; char* to + }, ; 12679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22514_from, ; char* from + ptr @.TypeMapEntry.22515_to; char* to + }, ; 12680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22516_from, ; char* from + ptr @.TypeMapEntry.22517_to; char* to + }, ; 12681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22518_from, ; char* from + ptr @.TypeMapEntry.22519_to; char* to + }, ; 12682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22520_from, ; char* from + ptr @.TypeMapEntry.22521_to; char* to + }, ; 12683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22522_from, ; char* from + ptr @.TypeMapEntry.22521_to; char* to + }, ; 12684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22523_from, ; char* from + ptr @.TypeMapEntry.22524_to; char* to + }, ; 12685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22525_from, ; char* from + ptr @.TypeMapEntry.22526_to; char* to + }, ; 12686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22527_from, ; char* from + ptr @.TypeMapEntry.22528_to; char* to + }, ; 12687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22529_from, ; char* from + ptr @.TypeMapEntry.22528_to; char* to + }, ; 12688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22530_from, ; char* from + ptr @.TypeMapEntry.22531_to; char* to + }, ; 12689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22532_from, ; char* from + ptr @.TypeMapEntry.22533_to; char* to + }, ; 12690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22534_from, ; char* from + ptr @.TypeMapEntry.22535_to; char* to + }, ; 12691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22536_from, ; char* from + ptr @.TypeMapEntry.22537_to; char* to + }, ; 12692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22538_from, ; char* from + ptr @.TypeMapEntry.22539_to; char* to + }, ; 12693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22540_from, ; char* from + ptr @.TypeMapEntry.22541_to; char* to + }, ; 12694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22542_from, ; char* from + ptr @.TypeMapEntry.22543_to; char* to + }, ; 12695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22544_from, ; char* from + ptr @.TypeMapEntry.22545_to; char* to + }, ; 12696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22546_from, ; char* from + ptr @.TypeMapEntry.22547_to; char* to + }, ; 12697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22548_from, ; char* from + ptr @.TypeMapEntry.22549_to; char* to + }, ; 12698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22550_from, ; char* from + ptr @.TypeMapEntry.22549_to; char* to + }, ; 12699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22551_from, ; char* from + ptr @.TypeMapEntry.22552_to; char* to + }, ; 12700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22553_from, ; char* from + ptr @.TypeMapEntry.22554_to; char* to + }, ; 12701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22555_from, ; char* from + ptr @.TypeMapEntry.22556_to; char* to + }, ; 12702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22557_from, ; char* from + ptr @.TypeMapEntry.22558_to; char* to + }, ; 12703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22559_from, ; char* from + ptr @.TypeMapEntry.22560_to; char* to + }, ; 12704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22561_from, ; char* from + ptr @.TypeMapEntry.22562_to; char* to + }, ; 12705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22563_from, ; char* from + ptr @.TypeMapEntry.22562_to; char* to + }, ; 12706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22564_from, ; char* from + ptr @.TypeMapEntry.22565_to; char* to + }, ; 12707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22566_from, ; char* from + ptr @.TypeMapEntry.22567_to; char* to + }, ; 12708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22568_from, ; char* from + ptr @.TypeMapEntry.22569_to; char* to + }, ; 12709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22570_from, ; char* from + ptr @.TypeMapEntry.22571_to; char* to + }, ; 12710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22572_from, ; char* from + ptr @.TypeMapEntry.22573_to; char* to + }, ; 12711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22574_from, ; char* from + ptr @.TypeMapEntry.22573_to; char* to + }, ; 12712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22575_from, ; char* from + ptr @.TypeMapEntry.22576_to; char* to + }, ; 12713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22577_from, ; char* from + ptr @.TypeMapEntry.22578_to; char* to + }, ; 12714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22579_from, ; char* from + ptr @.TypeMapEntry.22578_to; char* to + }, ; 12715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22580_from, ; char* from + ptr @.TypeMapEntry.22581_to; char* to + }, ; 12716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22582_from, ; char* from + ptr @.TypeMapEntry.22581_to; char* to + }, ; 12717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22583_from, ; char* from + ptr @.TypeMapEntry.22584_to; char* to + }, ; 12718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22585_from, ; char* from + ptr @.TypeMapEntry.22586_to; char* to + }, ; 12719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22587_from, ; char* from + ptr @.TypeMapEntry.22584_to; char* to + }, ; 12720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22588_from, ; char* from + ptr @.TypeMapEntry.22589_to; char* to + }, ; 12721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22590_from, ; char* from + ptr @.TypeMapEntry.22591_to; char* to + }, ; 12722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22592_from, ; char* from + ptr @.TypeMapEntry.22593_to; char* to + }, ; 12723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22594_from, ; char* from + ptr @.TypeMapEntry.22595_to; char* to + }, ; 12724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22596_from, ; char* from + ptr @.TypeMapEntry.22597_to; char* to + }, ; 12725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22598_from, ; char* from + ptr @.TypeMapEntry.22599_to; char* to + }, ; 12726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22600_from, ; char* from + ptr @.TypeMapEntry.22601_to; char* to + }, ; 12727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22602_from, ; char* from + ptr @.TypeMapEntry.22601_to; char* to + }, ; 12728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22603_from, ; char* from + ptr @.TypeMapEntry.22584_to; char* to + }, ; 12729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22604_from, ; char* from + ptr @.TypeMapEntry.22584_to; char* to + }, ; 12730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22605_from, ; char* from + ptr @.TypeMapEntry.22606_to; char* to + }, ; 12731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22607_from, ; char* from + ptr @.TypeMapEntry.22606_to; char* to + }, ; 12732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22608_from, ; char* from + ptr @.TypeMapEntry.22609_to; char* to + }, ; 12733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22610_from, ; char* from + ptr @.TypeMapEntry.22609_to; char* to + }, ; 12734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22611_from, ; char* from + ptr @.TypeMapEntry.22612_to; char* to + }, ; 12735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22613_from, ; char* from + ptr @.TypeMapEntry.22612_to; char* to + }, ; 12736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22614_from, ; char* from + ptr @.TypeMapEntry.22615_to; char* to + }, ; 12737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22616_from, ; char* from + ptr @.TypeMapEntry.22615_to; char* to + }, ; 12738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22617_from, ; char* from + ptr @.TypeMapEntry.22618_to; char* to + }, ; 12739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22619_from, ; char* from + ptr @.TypeMapEntry.22618_to; char* to + }, ; 12740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22620_from, ; char* from + ptr @.TypeMapEntry.22621_to; char* to + }, ; 12741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22622_from, ; char* from + ptr @.TypeMapEntry.22621_to; char* to + }, ; 12742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22623_from, ; char* from + ptr @.TypeMapEntry.22624_to; char* to + }, ; 12743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22625_from, ; char* from + ptr @.TypeMapEntry.22624_to; char* to + }, ; 12744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22626_from, ; char* from + ptr @.TypeMapEntry.22627_to; char* to + }, ; 12745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22628_from, ; char* from + ptr @.TypeMapEntry.22627_to; char* to + }, ; 12746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22629_from, ; char* from + ptr @.TypeMapEntry.22630_to; char* to + }, ; 12747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22631_from, ; char* from + ptr @.TypeMapEntry.22630_to; char* to + }, ; 12748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22632_from, ; char* from + ptr @.TypeMapEntry.22633_to; char* to + }, ; 12749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22634_from, ; char* from + ptr @.TypeMapEntry.22633_to; char* to + }, ; 12750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22635_from, ; char* from + ptr @.TypeMapEntry.22636_to; char* to + }, ; 12751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22637_from, ; char* from + ptr @.TypeMapEntry.22636_to; char* to + }, ; 12752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22638_from, ; char* from + ptr @.TypeMapEntry.22639_to; char* to + }, ; 12753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22640_from, ; char* from + ptr @.TypeMapEntry.22639_to; char* to + }, ; 12754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22641_from, ; char* from + ptr @.TypeMapEntry.22642_to; char* to + }, ; 12755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22643_from, ; char* from + ptr @.TypeMapEntry.22642_to; char* to + }, ; 12756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22644_from, ; char* from + ptr @.TypeMapEntry.22645_to; char* to + }, ; 12757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22646_from, ; char* from + ptr @.TypeMapEntry.22645_to; char* to + }, ; 12758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22647_from, ; char* from + ptr @.TypeMapEntry.22648_to; char* to + }, ; 12759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22649_from, ; char* from + ptr @.TypeMapEntry.22648_to; char* to + }, ; 12760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22650_from, ; char* from + ptr @.TypeMapEntry.22651_to; char* to + }, ; 12761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22652_from, ; char* from + ptr @.TypeMapEntry.22651_to; char* to + }, ; 12762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22653_from, ; char* from + ptr @.TypeMapEntry.22654_to; char* to + }, ; 12763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22655_from, ; char* from + ptr @.TypeMapEntry.22654_to; char* to + }, ; 12764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22656_from, ; char* from + ptr @.TypeMapEntry.22657_to; char* to + }, ; 12765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22658_from, ; char* from + ptr @.TypeMapEntry.22657_to; char* to + }, ; 12766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22659_from, ; char* from + ptr @.TypeMapEntry.22660_to; char* to + }, ; 12767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22661_from, ; char* from + ptr @.TypeMapEntry.22660_to; char* to + }, ; 12768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22662_from, ; char* from + ptr @.TypeMapEntry.22663_to; char* to + }, ; 12769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22664_from, ; char* from + ptr @.TypeMapEntry.22663_to; char* to + }, ; 12770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22665_from, ; char* from + ptr @.TypeMapEntry.22666_to; char* to + }, ; 12771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22667_from, ; char* from + ptr @.TypeMapEntry.22666_to; char* to + }, ; 12772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22668_from, ; char* from + ptr @.TypeMapEntry.22669_to; char* to + }, ; 12773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22670_from, ; char* from + ptr @.TypeMapEntry.22669_to; char* to + }, ; 12774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22671_from, ; char* from + ptr @.TypeMapEntry.22672_to; char* to + }, ; 12775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22673_from, ; char* from + ptr @.TypeMapEntry.22672_to; char* to + }, ; 12776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22674_from, ; char* from + ptr @.TypeMapEntry.22675_to; char* to + }, ; 12777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22676_from, ; char* from + ptr @.TypeMapEntry.22675_to; char* to + }, ; 12778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22677_from, ; char* from + ptr @.TypeMapEntry.22678_to; char* to + }, ; 12779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22679_from, ; char* from + ptr @.TypeMapEntry.22678_to; char* to + }, ; 12780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22680_from, ; char* from + ptr @.TypeMapEntry.22681_to; char* to + }, ; 12781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22682_from, ; char* from + ptr @.TypeMapEntry.22683_to; char* to + }, ; 12782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22684_from, ; char* from + ptr @.TypeMapEntry.22683_to; char* to + }, ; 12783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22685_from, ; char* from + ptr @.TypeMapEntry.22686_to; char* to + }, ; 12784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22687_from, ; char* from + ptr @.TypeMapEntry.22688_to; char* to + }, ; 12785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22689_from, ; char* from + ptr @.TypeMapEntry.22690_to; char* to + }, ; 12786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22691_from, ; char* from + ptr @.TypeMapEntry.22692_to; char* to + }, ; 12787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22693_from, ; char* from + ptr @.TypeMapEntry.22694_to; char* to + }, ; 12788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22695_from, ; char* from + ptr @.TypeMapEntry.22696_to; char* to + }, ; 12789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22697_from, ; char* from + ptr @.TypeMapEntry.22690_to; char* to + }, ; 12790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22698_from, ; char* from + ptr @.TypeMapEntry.22699_to; char* to + }, ; 12791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22700_from, ; char* from + ptr @.TypeMapEntry.22701_to; char* to + }, ; 12792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22702_from, ; char* from + ptr @.TypeMapEntry.22703_to; char* to + }, ; 12793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22704_from, ; char* from + ptr @.TypeMapEntry.22705_to; char* to + }, ; 12794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22706_from, ; char* from + ptr @.TypeMapEntry.22707_to; char* to + }, ; 12795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22708_from, ; char* from + ptr @.TypeMapEntry.22709_to; char* to + }, ; 12796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22710_from, ; char* from + ptr @.TypeMapEntry.22711_to; char* to + }, ; 12797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22712_from, ; char* from + ptr @.TypeMapEntry.22713_to; char* to + }, ; 12798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22714_from, ; char* from + ptr @.TypeMapEntry.22715_to; char* to + }, ; 12799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22716_from, ; char* from + ptr @.TypeMapEntry.22717_to; char* to + }, ; 12800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22718_from, ; char* from + ptr @.TypeMapEntry.22719_to; char* to + }, ; 12801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22720_from, ; char* from + ptr @.TypeMapEntry.22721_to; char* to + }, ; 12802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22722_from, ; char* from + ptr @.TypeMapEntry.22723_to; char* to + }, ; 12803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22724_from, ; char* from + ptr @.TypeMapEntry.22725_to; char* to + }, ; 12804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22726_from, ; char* from + ptr @.TypeMapEntry.22727_to; char* to + }, ; 12805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22728_from, ; char* from + ptr @.TypeMapEntry.22729_to; char* to + }, ; 12806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22730_from, ; char* from + ptr @.TypeMapEntry.22731_to; char* to + }, ; 12807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22732_from, ; char* from + ptr @.TypeMapEntry.22733_to; char* to + }, ; 12808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22734_from, ; char* from + ptr @.TypeMapEntry.22735_to; char* to + }, ; 12809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22736_from, ; char* from + ptr @.TypeMapEntry.22737_to; char* to + }, ; 12810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22738_from, ; char* from + ptr @.TypeMapEntry.22739_to; char* to + }, ; 12811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22740_from, ; char* from + ptr @.TypeMapEntry.22741_to; char* to + }, ; 12812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22742_from, ; char* from + ptr @.TypeMapEntry.22743_to; char* to + }, ; 12813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22744_from, ; char* from + ptr @.TypeMapEntry.22745_to; char* to + }, ; 12814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22746_from, ; char* from + ptr @.TypeMapEntry.22747_to; char* to + }, ; 12815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22748_from, ; char* from + ptr @.TypeMapEntry.22749_to; char* to + }, ; 12816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22750_from, ; char* from + ptr @.TypeMapEntry.22751_to; char* to + }, ; 12817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22752_from, ; char* from + ptr @.TypeMapEntry.22753_to; char* to + }, ; 12818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22754_from, ; char* from + ptr @.TypeMapEntry.22755_to; char* to + }, ; 12819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22756_from, ; char* from + ptr @.TypeMapEntry.22757_to; char* to + }, ; 12820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22758_from, ; char* from + ptr @.TypeMapEntry.22759_to; char* to + }, ; 12821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22760_from, ; char* from + ptr @.TypeMapEntry.22761_to; char* to + }, ; 12822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22762_from, ; char* from + ptr @.TypeMapEntry.22763_to; char* to + }, ; 12823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22764_from, ; char* from + ptr @.TypeMapEntry.22765_to; char* to + }, ; 12824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22766_from, ; char* from + ptr @.TypeMapEntry.22767_to; char* to + }, ; 12825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22768_from, ; char* from + ptr @.TypeMapEntry.22769_to; char* to + }, ; 12826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22770_from, ; char* from + ptr @.TypeMapEntry.22771_to; char* to + }, ; 12827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22772_from, ; char* from + ptr @.TypeMapEntry.22773_to; char* to + }, ; 12828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22774_from, ; char* from + ptr @.TypeMapEntry.22775_to; char* to + }, ; 12829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22776_from, ; char* from + ptr @.TypeMapEntry.22777_to; char* to + }, ; 12830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22778_from, ; char* from + ptr @.TypeMapEntry.22779_to; char* to + }, ; 12831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22780_from, ; char* from + ptr @.TypeMapEntry.22781_to; char* to + }, ; 12832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22782_from, ; char* from + ptr @.TypeMapEntry.22783_to; char* to + }, ; 12833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22784_from, ; char* from + ptr @.TypeMapEntry.22785_to; char* to + }, ; 12834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22786_from, ; char* from + ptr @.TypeMapEntry.22787_to; char* to + }, ; 12835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22788_from, ; char* from + ptr @.TypeMapEntry.22789_to; char* to + }, ; 12836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22790_from, ; char* from + ptr @.TypeMapEntry.22791_to; char* to + }, ; 12837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22792_from, ; char* from + ptr @.TypeMapEntry.22793_to; char* to + }, ; 12838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22794_from, ; char* from + ptr @.TypeMapEntry.22795_to; char* to + }, ; 12839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22796_from, ; char* from + ptr @.TypeMapEntry.22797_to; char* to + }, ; 12840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22798_from, ; char* from + ptr @.TypeMapEntry.22799_to; char* to + }, ; 12841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22800_from, ; char* from + ptr @.TypeMapEntry.22801_to; char* to + }, ; 12842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22802_from, ; char* from + ptr @.TypeMapEntry.22803_to; char* to + }, ; 12843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22804_from, ; char* from + ptr @.TypeMapEntry.22805_to; char* to + }, ; 12844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22806_from, ; char* from + ptr @.TypeMapEntry.22807_to; char* to + }, ; 12845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22808_from, ; char* from + ptr @.TypeMapEntry.22809_to; char* to + }, ; 12846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22810_from, ; char* from + ptr @.TypeMapEntry.22811_to; char* to + }, ; 12847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22812_from, ; char* from + ptr @.TypeMapEntry.22813_to; char* to + }, ; 12848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22814_from, ; char* from + ptr @.TypeMapEntry.22815_to; char* to + }, ; 12849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22816_from, ; char* from + ptr @.TypeMapEntry.22817_to; char* to + }, ; 12850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22818_from, ; char* from + ptr @.TypeMapEntry.22819_to; char* to + }, ; 12851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22820_from, ; char* from + ptr @.TypeMapEntry.22821_to; char* to + }, ; 12852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22822_from, ; char* from + ptr @.TypeMapEntry.22823_to; char* to + }, ; 12853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22824_from, ; char* from + ptr @.TypeMapEntry.22825_to; char* to + }, ; 12854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22826_from, ; char* from + ptr @.TypeMapEntry.22827_to; char* to + }, ; 12855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22828_from, ; char* from + ptr @.TypeMapEntry.22829_to; char* to + }, ; 12856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22830_from, ; char* from + ptr @.TypeMapEntry.22831_to; char* to + }, ; 12857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22832_from, ; char* from + ptr @.TypeMapEntry.22833_to; char* to + }, ; 12858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22834_from, ; char* from + ptr @.TypeMapEntry.22835_to; char* to + }, ; 12859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22836_from, ; char* from + ptr @.TypeMapEntry.22837_to; char* to + }, ; 12860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22838_from, ; char* from + ptr @.TypeMapEntry.22839_to; char* to + }, ; 12861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22840_from, ; char* from + ptr @.TypeMapEntry.22841_to; char* to + }, ; 12862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22842_from, ; char* from + ptr @.TypeMapEntry.22843_to; char* to + }, ; 12863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22844_from, ; char* from + ptr @.TypeMapEntry.22845_to; char* to + }, ; 12864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22846_from, ; char* from + ptr @.TypeMapEntry.22847_to; char* to + }, ; 12865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22848_from, ; char* from + ptr @.TypeMapEntry.22849_to; char* to + }, ; 12866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22850_from, ; char* from + ptr @.TypeMapEntry.22851_to; char* to + }, ; 12867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22852_from, ; char* from + ptr @.TypeMapEntry.22853_to; char* to + }, ; 12868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22854_from, ; char* from + ptr @.TypeMapEntry.22855_to; char* to + }, ; 12869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22856_from, ; char* from + ptr @.TypeMapEntry.22857_to; char* to + }, ; 12870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22858_from, ; char* from + ptr @.TypeMapEntry.22859_to; char* to + }, ; 12871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22860_from, ; char* from + ptr @.TypeMapEntry.22861_to; char* to + }, ; 12872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22862_from, ; char* from + ptr @.TypeMapEntry.22863_to; char* to + }, ; 12873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22864_from, ; char* from + ptr @.TypeMapEntry.22865_to; char* to + }, ; 12874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22866_from, ; char* from + ptr @.TypeMapEntry.22867_to; char* to + }, ; 12875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22868_from, ; char* from + ptr @.TypeMapEntry.22869_to; char* to + }, ; 12876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22870_from, ; char* from + ptr @.TypeMapEntry.22871_to; char* to + }, ; 12877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22872_from, ; char* from + ptr @.TypeMapEntry.22873_to; char* to + }, ; 12878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22874_from, ; char* from + ptr @.TypeMapEntry.22875_to; char* to + }, ; 12879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22876_from, ; char* from + ptr @.TypeMapEntry.22877_to; char* to + }, ; 12880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22878_from, ; char* from + ptr @.TypeMapEntry.22879_to; char* to + }, ; 12881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22880_from, ; char* from + ptr @.TypeMapEntry.22881_to; char* to + }, ; 12882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22882_from, ; char* from + ptr @.TypeMapEntry.22883_to; char* to + }, ; 12883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22884_from, ; char* from + ptr @.TypeMapEntry.22885_to; char* to + }, ; 12884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22886_from, ; char* from + ptr @.TypeMapEntry.22887_to; char* to + }, ; 12885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22888_from, ; char* from + ptr @.TypeMapEntry.22889_to; char* to + }, ; 12886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22890_from, ; char* from + ptr @.TypeMapEntry.22891_to; char* to + }, ; 12887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22892_from, ; char* from + ptr @.TypeMapEntry.22893_to; char* to + }, ; 12888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22894_from, ; char* from + ptr @.TypeMapEntry.22895_to; char* to + }, ; 12889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22896_from, ; char* from + ptr @.TypeMapEntry.22897_to; char* to + }, ; 12890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22898_from, ; char* from + ptr @.TypeMapEntry.22899_to; char* to + }, ; 12891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22900_from, ; char* from + ptr @.TypeMapEntry.22901_to; char* to + }, ; 12892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22902_from, ; char* from + ptr @.TypeMapEntry.22903_to; char* to + }, ; 12893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22904_from, ; char* from + ptr @.TypeMapEntry.22905_to; char* to + }, ; 12894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22906_from, ; char* from + ptr @.TypeMapEntry.22907_to; char* to + }, ; 12895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22908_from, ; char* from + ptr @.TypeMapEntry.22909_to; char* to + }, ; 12896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22910_from, ; char* from + ptr @.TypeMapEntry.22911_to; char* to + }, ; 12897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22912_from, ; char* from + ptr @.TypeMapEntry.22913_to; char* to + }, ; 12898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22914_from, ; char* from + ptr @.TypeMapEntry.22915_to; char* to + }, ; 12899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22916_from, ; char* from + ptr @.TypeMapEntry.22917_to; char* to + }, ; 12900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22918_from, ; char* from + ptr @.TypeMapEntry.22919_to; char* to + }, ; 12901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22920_from, ; char* from + ptr @.TypeMapEntry.22921_to; char* to + }, ; 12902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22922_from, ; char* from + ptr @.TypeMapEntry.22923_to; char* to + }, ; 12903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22924_from, ; char* from + ptr @.TypeMapEntry.22925_to; char* to + }, ; 12904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22926_from, ; char* from + ptr @.TypeMapEntry.22927_to; char* to + }, ; 12905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22928_from, ; char* from + ptr @.TypeMapEntry.22929_to; char* to + }, ; 12906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22930_from, ; char* from + ptr @.TypeMapEntry.22931_to; char* to + }, ; 12907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22932_from, ; char* from + ptr @.TypeMapEntry.22933_to; char* to + }, ; 12908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22934_from, ; char* from + ptr @.TypeMapEntry.22935_to; char* to + }, ; 12909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22936_from, ; char* from + ptr @.TypeMapEntry.22937_to; char* to + }, ; 12910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22938_from, ; char* from + ptr @.TypeMapEntry.22939_to; char* to + }, ; 12911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22940_from, ; char* from + ptr @.TypeMapEntry.22941_to; char* to + }, ; 12912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22942_from, ; char* from + ptr @.TypeMapEntry.22943_to; char* to + }, ; 12913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22944_from, ; char* from + ptr @.TypeMapEntry.22945_to; char* to + }, ; 12914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22946_from, ; char* from + ptr @.TypeMapEntry.22947_to; char* to + }, ; 12915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22948_from, ; char* from + ptr @.TypeMapEntry.22949_to; char* to + }, ; 12916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22950_from, ; char* from + ptr @.TypeMapEntry.22951_to; char* to + }, ; 12917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22952_from, ; char* from + ptr @.TypeMapEntry.22953_to; char* to + }, ; 12918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22954_from, ; char* from + ptr @.TypeMapEntry.22955_to; char* to + }, ; 12919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22956_from, ; char* from + ptr @.TypeMapEntry.22957_to; char* to + }, ; 12920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22958_from, ; char* from + ptr @.TypeMapEntry.22959_to; char* to + }, ; 12921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22960_from, ; char* from + ptr @.TypeMapEntry.22961_to; char* to + }, ; 12922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22962_from, ; char* from + ptr @.TypeMapEntry.22963_to; char* to + }, ; 12923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22964_from, ; char* from + ptr @.TypeMapEntry.22965_to; char* to + }, ; 12924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22966_from, ; char* from + ptr @.TypeMapEntry.22967_to; char* to + }, ; 12925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22968_from, ; char* from + ptr @.TypeMapEntry.22969_to; char* to + }, ; 12926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22970_from, ; char* from + ptr @.TypeMapEntry.22971_to; char* to + }, ; 12927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22972_from, ; char* from + ptr @.TypeMapEntry.22973_to; char* to + }, ; 12928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22974_from, ; char* from + ptr @.TypeMapEntry.22975_to; char* to + }, ; 12929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22976_from, ; char* from + ptr @.TypeMapEntry.22977_to; char* to + }, ; 12930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22978_from, ; char* from + ptr @.TypeMapEntry.22979_to; char* to + }, ; 12931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22980_from, ; char* from + ptr @.TypeMapEntry.22981_to; char* to + }, ; 12932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22982_from, ; char* from + ptr @.TypeMapEntry.22983_to; char* to + }, ; 12933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22984_from, ; char* from + ptr @.TypeMapEntry.22985_to; char* to + }, ; 12934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22986_from, ; char* from + ptr @.TypeMapEntry.22987_to; char* to + }, ; 12935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22988_from, ; char* from + ptr @.TypeMapEntry.22989_to; char* to + }, ; 12936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22990_from, ; char* from + ptr @.TypeMapEntry.22991_to; char* to + }, ; 12937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22992_from, ; char* from + ptr @.TypeMapEntry.22991_to; char* to + }, ; 12938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22993_from, ; char* from + ptr @.TypeMapEntry.22994_to; char* to + }, ; 12939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22995_from, ; char* from + ptr @.TypeMapEntry.22994_to; char* to + }, ; 12940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22996_from, ; char* from + ptr @.TypeMapEntry.22997_to; char* to + }, ; 12941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22998_from, ; char* from + ptr @.TypeMapEntry.22997_to; char* to + }, ; 12942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22999_from, ; char* from + ptr @.TypeMapEntry.23000_to; char* to + }, ; 12943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23001_from, ; char* from + ptr @.TypeMapEntry.23002_to; char* to + }, ; 12944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23003_from, ; char* from + ptr @.TypeMapEntry.23004_to; char* to + }, ; 12945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23005_from, ; char* from + ptr @.TypeMapEntry.23006_to; char* to + }, ; 12946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23007_from, ; char* from + ptr @.TypeMapEntry.23008_to; char* to + }, ; 12947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23009_from, ; char* from + ptr @.TypeMapEntry.23010_to; char* to + }, ; 12948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23011_from, ; char* from + ptr @.TypeMapEntry.23012_to; char* to + }, ; 12949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23013_from, ; char* from + ptr @.TypeMapEntry.23014_to; char* to + }, ; 12950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23015_from, ; char* from + ptr @.TypeMapEntry.23016_to; char* to + }, ; 12951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23017_from, ; char* from + ptr @.TypeMapEntry.23018_to; char* to + }, ; 12952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23019_from, ; char* from + ptr @.TypeMapEntry.23020_to; char* to + }, ; 12953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23021_from, ; char* from + ptr @.TypeMapEntry.23022_to; char* to + }, ; 12954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23023_from, ; char* from + ptr @.TypeMapEntry.23024_to; char* to + }, ; 12955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23025_from, ; char* from + ptr @.TypeMapEntry.23026_to; char* to + }, ; 12956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23027_from, ; char* from + ptr @.TypeMapEntry.23028_to; char* to + }, ; 12957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23029_from, ; char* from + ptr @.TypeMapEntry.23030_to; char* to + }, ; 12958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23031_from, ; char* from + ptr @.TypeMapEntry.23032_to; char* to + }, ; 12959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23033_from, ; char* from + ptr @.TypeMapEntry.23034_to; char* to + }, ; 12960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23035_from, ; char* from + ptr @.TypeMapEntry.23036_to; char* to + }, ; 12961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23037_from, ; char* from + ptr @.TypeMapEntry.23038_to; char* to + }, ; 12962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23039_from, ; char* from + ptr @.TypeMapEntry.23040_to; char* to + }, ; 12963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23041_from, ; char* from + ptr @.TypeMapEntry.23042_to; char* to + }, ; 12964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23043_from, ; char* from + ptr @.TypeMapEntry.23044_to; char* to + }, ; 12965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23045_from, ; char* from + ptr @.TypeMapEntry.23046_to; char* to + }, ; 12966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23047_from, ; char* from + ptr @.TypeMapEntry.23048_to; char* to + }, ; 12967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23049_from, ; char* from + ptr @.TypeMapEntry.23050_to; char* to + }, ; 12968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23051_from, ; char* from + ptr @.TypeMapEntry.23052_to; char* to + }, ; 12969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23053_from, ; char* from + ptr @.TypeMapEntry.23054_to; char* to + }, ; 12970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23055_from, ; char* from + ptr @.TypeMapEntry.23056_to; char* to + }, ; 12971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23057_from, ; char* from + ptr @.TypeMapEntry.23058_to; char* to + }, ; 12972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23059_from, ; char* from + ptr @.TypeMapEntry.23060_to; char* to + }, ; 12973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23061_from, ; char* from + ptr @.TypeMapEntry.23062_to; char* to + }, ; 12974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23063_from, ; char* from + ptr @.TypeMapEntry.23064_to; char* to + }, ; 12975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23065_from, ; char* from + ptr @.TypeMapEntry.23066_to; char* to + }, ; 12976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23067_from, ; char* from + ptr @.TypeMapEntry.23068_to; char* to + }, ; 12977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23069_from, ; char* from + ptr @.TypeMapEntry.23070_to; char* to + }, ; 12978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23071_from, ; char* from + ptr @.TypeMapEntry.23072_to; char* to + }, ; 12979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23073_from, ; char* from + ptr @.TypeMapEntry.23074_to; char* to + }, ; 12980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23075_from, ; char* from + ptr @.TypeMapEntry.23076_to; char* to + }, ; 12981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23077_from, ; char* from + ptr @.TypeMapEntry.23078_to; char* to + }, ; 12982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23079_from, ; char* from + ptr @.TypeMapEntry.23080_to; char* to + }, ; 12983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23081_from, ; char* from + ptr @.TypeMapEntry.23082_to; char* to + }, ; 12984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23083_from, ; char* from + ptr @.TypeMapEntry.23084_to; char* to + }, ; 12985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23085_from, ; char* from + ptr @.TypeMapEntry.23086_to; char* to + }, ; 12986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23087_from, ; char* from + ptr @.TypeMapEntry.23088_to; char* to + }, ; 12987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23089_from, ; char* from + ptr @.TypeMapEntry.23090_to; char* to + }, ; 12988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23091_from, ; char* from + ptr @.TypeMapEntry.23092_to; char* to + }, ; 12989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23093_from, ; char* from + ptr @.TypeMapEntry.23094_to; char* to + }, ; 12990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23095_from, ; char* from + ptr @.TypeMapEntry.23096_to; char* to + }, ; 12991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23097_from, ; char* from + ptr @.TypeMapEntry.23098_to; char* to + }, ; 12992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23099_from, ; char* from + ptr @.TypeMapEntry.23100_to; char* to + }, ; 12993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23101_from, ; char* from + ptr @.TypeMapEntry.23102_to; char* to + }, ; 12994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23103_from, ; char* from + ptr @.TypeMapEntry.23104_to; char* to + }, ; 12995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23105_from, ; char* from + ptr @.TypeMapEntry.23106_to; char* to + }, ; 12996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23107_from, ; char* from + ptr @.TypeMapEntry.23108_to; char* to + }, ; 12997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23109_from, ; char* from + ptr @.TypeMapEntry.23110_to; char* to + }, ; 12998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23111_from, ; char* from + ptr @.TypeMapEntry.23112_to; char* to + }, ; 12999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23113_from, ; char* from + ptr @.TypeMapEntry.23112_to; char* to + }, ; 13000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23114_from, ; char* from + ptr @.TypeMapEntry.23115_to; char* to + }, ; 13001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23116_from, ; char* from + ptr @.TypeMapEntry.23117_to; char* to + }, ; 13002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23118_from, ; char* from + ptr @.TypeMapEntry.23119_to; char* to + }, ; 13003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23120_from, ; char* from + ptr @.TypeMapEntry.23121_to; char* to + }, ; 13004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23122_from, ; char* from + ptr @.TypeMapEntry.23123_to; char* to + }, ; 13005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23124_from, ; char* from + ptr @.TypeMapEntry.23125_to; char* to + }, ; 13006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23126_from, ; char* from + ptr @.TypeMapEntry.23127_to; char* to + }, ; 13007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23128_from, ; char* from + ptr @.TypeMapEntry.23129_to; char* to + }, ; 13008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23130_from, ; char* from + ptr @.TypeMapEntry.23129_to; char* to + }, ; 13009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23131_from, ; char* from + ptr @.TypeMapEntry.23132_to; char* to + }, ; 13010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23133_from, ; char* from + ptr @.TypeMapEntry.23134_to; char* to + }, ; 13011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23135_from, ; char* from + ptr @.TypeMapEntry.23134_to; char* to + }, ; 13012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23136_from, ; char* from + ptr @.TypeMapEntry.23137_to; char* to + }, ; 13013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23138_from, ; char* from + ptr @.TypeMapEntry.23139_to; char* to + }, ; 13014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23140_from, ; char* from + ptr @.TypeMapEntry.23141_to; char* to + }, ; 13015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23142_from, ; char* from + ptr @.TypeMapEntry.23143_to; char* to + }, ; 13016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23144_from, ; char* from + ptr @.TypeMapEntry.23145_to; char* to + }, ; 13017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23146_from, ; char* from + ptr @.TypeMapEntry.23147_to; char* to + }, ; 13018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23148_from, ; char* from + ptr @.TypeMapEntry.23149_to; char* to + }, ; 13019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23150_from, ; char* from + ptr @.TypeMapEntry.23151_to; char* to + }, ; 13020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23152_from, ; char* from + ptr @.TypeMapEntry.23153_to; char* to + }, ; 13021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23154_from, ; char* from + ptr @.TypeMapEntry.23155_to; char* to + }, ; 13022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23156_from, ; char* from + ptr @.TypeMapEntry.23157_to; char* to + }, ; 13023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23158_from, ; char* from + ptr @.TypeMapEntry.23157_to; char* to + }, ; 13024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23159_from, ; char* from + ptr @.TypeMapEntry.23155_to; char* to + }, ; 13025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23160_from, ; char* from + ptr @.TypeMapEntry.23161_to; char* to + }, ; 13026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23162_from, ; char* from + ptr @.TypeMapEntry.23161_to; char* to + }, ; 13027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23163_from, ; char* from + ptr @.TypeMapEntry.23164_to; char* to + }, ; 13028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23165_from, ; char* from + ptr @.TypeMapEntry.23166_to; char* to + }, ; 13029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23167_from, ; char* from + ptr @.TypeMapEntry.23168_to; char* to + }, ; 13030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23169_from, ; char* from + ptr @.TypeMapEntry.23170_to; char* to + }, ; 13031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23171_from, ; char* from + ptr @.TypeMapEntry.23172_to; char* to + }, ; 13032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23173_from, ; char* from + ptr @.TypeMapEntry.23174_to; char* to + }, ; 13033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23175_from, ; char* from + ptr @.TypeMapEntry.23176_to; char* to + }, ; 13034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23177_from, ; char* from + ptr @.TypeMapEntry.23178_to; char* to + }, ; 13035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23179_from, ; char* from + ptr @.TypeMapEntry.23180_to; char* to + }, ; 13036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23181_from, ; char* from + ptr @.TypeMapEntry.23182_to; char* to + }, ; 13037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23183_from, ; char* from + ptr @.TypeMapEntry.23182_to; char* to + }, ; 13038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23184_from, ; char* from + ptr @.TypeMapEntry.23185_to; char* to + }, ; 13039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23186_from, ; char* from + ptr @.TypeMapEntry.23185_to; char* to + }, ; 13040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23187_from, ; char* from + ptr @.TypeMapEntry.23188_to; char* to + }, ; 13041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23189_from, ; char* from + ptr @.TypeMapEntry.23188_to; char* to + }, ; 13042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23190_from, ; char* from + ptr @.TypeMapEntry.23191_to; char* to + }, ; 13043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23192_from, ; char* from + ptr @.TypeMapEntry.23191_to; char* to + }, ; 13044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23193_from, ; char* from + ptr @.TypeMapEntry.23194_to; char* to + }, ; 13045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23195_from, ; char* from + ptr @.TypeMapEntry.23194_to; char* to + }, ; 13046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23196_from, ; char* from + ptr @.TypeMapEntry.23197_to; char* to + }, ; 13047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23198_from, ; char* from + ptr @.TypeMapEntry.23197_to; char* to + }, ; 13048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23199_from, ; char* from + ptr @.TypeMapEntry.23200_to; char* to + }, ; 13049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23201_from, ; char* from + ptr @.TypeMapEntry.23200_to; char* to + }, ; 13050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23202_from, ; char* from + ptr @.TypeMapEntry.23203_to; char* to + }, ; 13051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23204_from, ; char* from + ptr @.TypeMapEntry.23203_to; char* to + }, ; 13052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23205_from, ; char* from + ptr @.TypeMapEntry.23206_to; char* to + }, ; 13053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23207_from, ; char* from + ptr @.TypeMapEntry.23206_to; char* to + }, ; 13054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23208_from, ; char* from + ptr @.TypeMapEntry.23209_to; char* to + }, ; 13055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23210_from, ; char* from + ptr @.TypeMapEntry.23211_to; char* to + }, ; 13056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23212_from, ; char* from + ptr @.TypeMapEntry.23211_to; char* to + }, ; 13057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23213_from, ; char* from + ptr @.TypeMapEntry.23214_to; char* to + }, ; 13058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23215_from, ; char* from + ptr @.TypeMapEntry.23216_to; char* to + }, ; 13059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23217_from, ; char* from + ptr @.TypeMapEntry.23218_to; char* to + }, ; 13060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23219_from, ; char* from + ptr @.TypeMapEntry.23220_to; char* to + }, ; 13061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23221_from, ; char* from + ptr @.TypeMapEntry.23222_to; char* to + }, ; 13062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23223_from, ; char* from + ptr @.TypeMapEntry.23224_to; char* to + }, ; 13063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23225_from, ; char* from + ptr @.TypeMapEntry.23224_to; char* to + }, ; 13064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23226_from, ; char* from + ptr @.TypeMapEntry.23227_to; char* to + }, ; 13065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23228_from, ; char* from + ptr @.TypeMapEntry.23229_to; char* to + }, ; 13066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23230_from, ; char* from + ptr @.TypeMapEntry.23229_to; char* to + }, ; 13067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23231_from, ; char* from + ptr @.TypeMapEntry.23232_to; char* to + }, ; 13068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23233_from, ; char* from + ptr @.TypeMapEntry.23232_to; char* to + }, ; 13069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23234_from, ; char* from + ptr @.TypeMapEntry.23235_to; char* to + }, ; 13070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23236_from, ; char* from + ptr @.TypeMapEntry.23237_to; char* to + }, ; 13071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23238_from, ; char* from + ptr @.TypeMapEntry.23239_to; char* to + }, ; 13072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23240_from, ; char* from + ptr @.TypeMapEntry.23241_to; char* to + }, ; 13073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23242_from, ; char* from + ptr @.TypeMapEntry.23243_to; char* to + }, ; 13074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23244_from, ; char* from + ptr @.TypeMapEntry.23245_to; char* to + }, ; 13075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23246_from, ; char* from + ptr @.TypeMapEntry.23247_to; char* to + }, ; 13076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23248_from, ; char* from + ptr @.TypeMapEntry.23249_to; char* to + }, ; 13077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23250_from, ; char* from + ptr @.TypeMapEntry.23251_to; char* to + }, ; 13078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23252_from, ; char* from + ptr @.TypeMapEntry.23253_to; char* to + }, ; 13079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23254_from, ; char* from + ptr @.TypeMapEntry.23255_to; char* to + }, ; 13080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23256_from, ; char* from + ptr @.TypeMapEntry.23257_to; char* to + }, ; 13081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23258_from, ; char* from + ptr @.TypeMapEntry.23259_to; char* to + }, ; 13082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23260_from, ; char* from + ptr @.TypeMapEntry.23261_to; char* to + }, ; 13083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23262_from, ; char* from + ptr @.TypeMapEntry.23263_to; char* to + }, ; 13084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23264_from, ; char* from + ptr @.TypeMapEntry.23265_to; char* to + }, ; 13085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23266_from, ; char* from + ptr @.TypeMapEntry.23267_to; char* to + }, ; 13086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23268_from, ; char* from + ptr @.TypeMapEntry.23269_to; char* to + }, ; 13087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23270_from, ; char* from + ptr @.TypeMapEntry.23271_to; char* to + }, ; 13088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23272_from, ; char* from + ptr @.TypeMapEntry.23273_to; char* to + }, ; 13089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23274_from, ; char* from + ptr @.TypeMapEntry.23275_to; char* to + }, ; 13090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23276_from, ; char* from + ptr @.TypeMapEntry.23277_to; char* to + }, ; 13091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23278_from, ; char* from + ptr @.TypeMapEntry.23279_to; char* to + }, ; 13092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23280_from, ; char* from + ptr @.TypeMapEntry.23281_to; char* to + }, ; 13093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23282_from, ; char* from + ptr @.TypeMapEntry.23283_to; char* to + }, ; 13094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23284_from, ; char* from + ptr @.TypeMapEntry.23283_to; char* to + }, ; 13095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23285_from, ; char* from + ptr @.TypeMapEntry.23281_to; char* to + }, ; 13096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23286_from, ; char* from + ptr @.TypeMapEntry.23287_to; char* to + }, ; 13097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23288_from, ; char* from + ptr @.TypeMapEntry.23287_to; char* to + }, ; 13098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23289_from, ; char* from + ptr @.TypeMapEntry.23290_to; char* to + }, ; 13099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23291_from, ; char* from + ptr @.TypeMapEntry.23290_to; char* to + }, ; 13100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23292_from, ; char* from + ptr @.TypeMapEntry.23293_to; char* to + }, ; 13101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23294_from, ; char* from + ptr @.TypeMapEntry.23293_to; char* to + }, ; 13102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23295_from, ; char* from + ptr @.TypeMapEntry.23296_to; char* to + }, ; 13103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23297_from, ; char* from + ptr @.TypeMapEntry.23296_to; char* to + }, ; 13104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23298_from, ; char* from + ptr @.TypeMapEntry.23299_to; char* to + }, ; 13105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23300_from, ; char* from + ptr @.TypeMapEntry.23299_to; char* to + }, ; 13106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23301_from, ; char* from + ptr @.TypeMapEntry.23302_to; char* to + }, ; 13107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23303_from, ; char* from + ptr @.TypeMapEntry.23302_to; char* to + }, ; 13108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23304_from, ; char* from + ptr @.TypeMapEntry.23305_to; char* to + }, ; 13109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23306_from, ; char* from + ptr @.TypeMapEntry.23305_to; char* to + }, ; 13110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23307_from, ; char* from + ptr @.TypeMapEntry.23308_to; char* to + }, ; 13111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23309_from, ; char* from + ptr @.TypeMapEntry.23310_to; char* to + }, ; 13112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23311_from, ; char* from + ptr @.TypeMapEntry.23312_to; char* to + }, ; 13113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23313_from, ; char* from + ptr @.TypeMapEntry.23314_to; char* to + }, ; 13114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23315_from, ; char* from + ptr @.TypeMapEntry.23316_to; char* to + }, ; 13115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23317_from, ; char* from + ptr @.TypeMapEntry.23318_to; char* to + }, ; 13116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23319_from, ; char* from + ptr @.TypeMapEntry.23320_to; char* to + }, ; 13117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23321_from, ; char* from + ptr @.TypeMapEntry.23322_to; char* to + }, ; 13118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23323_from, ; char* from + ptr @.TypeMapEntry.23324_to; char* to + }, ; 13119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23325_from, ; char* from + ptr @.TypeMapEntry.23326_to; char* to + }, ; 13120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23327_from, ; char* from + ptr @.TypeMapEntry.23328_to; char* to + }, ; 13121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23329_from, ; char* from + ptr @.TypeMapEntry.23328_to; char* to + }, ; 13122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23330_from, ; char* from + ptr @.TypeMapEntry.23331_to; char* to + }, ; 13123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23332_from, ; char* from + ptr @.TypeMapEntry.23333_to; char* to + }, ; 13124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23334_from, ; char* from + ptr @.TypeMapEntry.23335_to; char* to + }, ; 13125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23336_from, ; char* from + ptr @.TypeMapEntry.23337_to; char* to + }, ; 13126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23338_from, ; char* from + ptr @.TypeMapEntry.23337_to; char* to + }, ; 13127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23339_from, ; char* from + ptr @.TypeMapEntry.23340_to; char* to + }, ; 13128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23341_from, ; char* from + ptr @.TypeMapEntry.23340_to; char* to + }, ; 13129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23342_from, ; char* from + ptr @.TypeMapEntry.23343_to; char* to + }, ; 13130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23344_from, ; char* from + ptr @.TypeMapEntry.23343_to; char* to + }, ; 13131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23345_from, ; char* from + ptr @.TypeMapEntry.23346_to; char* to + }, ; 13132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23347_from, ; char* from + ptr @.TypeMapEntry.23348_to; char* to + }, ; 13133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23349_from, ; char* from + ptr @.TypeMapEntry.23350_to; char* to + }, ; 13134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23351_from, ; char* from + ptr @.TypeMapEntry.23352_to; char* to + }, ; 13135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23353_from, ; char* from + ptr @.TypeMapEntry.23352_to; char* to + }, ; 13136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23354_from, ; char* from + ptr @.TypeMapEntry.23355_to; char* to + }, ; 13137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23356_from, ; char* from + ptr @.TypeMapEntry.23355_to; char* to + }, ; 13138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23357_from, ; char* from + ptr @.TypeMapEntry.23358_to; char* to + }, ; 13139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23359_from, ; char* from + ptr @.TypeMapEntry.23358_to; char* to + }, ; 13140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23360_from, ; char* from + ptr @.TypeMapEntry.23361_to; char* to + }, ; 13141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23362_from, ; char* from + ptr @.TypeMapEntry.23363_to; char* to + }, ; 13142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23364_from, ; char* from + ptr @.TypeMapEntry.23365_to; char* to + }, ; 13143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23366_from, ; char* from + ptr @.TypeMapEntry.23367_to; char* to + }, ; 13144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23368_from, ; char* from + ptr @.TypeMapEntry.23367_to; char* to + }, ; 13145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23369_from, ; char* from + ptr @.TypeMapEntry.23370_to; char* to + }, ; 13146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23371_from, ; char* from + ptr @.TypeMapEntry.23372_to; char* to + }, ; 13147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23373_from, ; char* from + ptr @.TypeMapEntry.23374_to; char* to + }, ; 13148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23375_from, ; char* from + ptr @.TypeMapEntry.23374_to; char* to + }, ; 13149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23376_from, ; char* from + ptr @.TypeMapEntry.23377_to; char* to + }, ; 13150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23378_from, ; char* from + ptr @.TypeMapEntry.23379_to; char* to + }, ; 13151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23380_from, ; char* from + ptr @.TypeMapEntry.23381_to; char* to + }, ; 13152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23382_from, ; char* from + ptr @.TypeMapEntry.23383_to; char* to + }, ; 13153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23384_from, ; char* from + ptr @.TypeMapEntry.23385_to; char* to + }, ; 13154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23386_from, ; char* from + ptr @.TypeMapEntry.23387_to; char* to + }, ; 13155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23388_from, ; char* from + ptr @.TypeMapEntry.23389_to; char* to + }, ; 13156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23390_from, ; char* from + ptr @.TypeMapEntry.23391_to; char* to + }, ; 13157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23392_from, ; char* from + ptr @.TypeMapEntry.23393_to; char* to + }, ; 13158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23394_from, ; char* from + ptr @.TypeMapEntry.23395_to; char* to + }, ; 13159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23396_from, ; char* from + ptr @.TypeMapEntry.23395_to; char* to + }, ; 13160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23397_from, ; char* from + ptr @.TypeMapEntry.23398_to; char* to + }, ; 13161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23399_from, ; char* from + ptr @.TypeMapEntry.23400_to; char* to + }, ; 13162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23401_from, ; char* from + ptr @.TypeMapEntry.23400_to; char* to + }, ; 13163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23402_from, ; char* from + ptr @.TypeMapEntry.23398_to; char* to + }, ; 13164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23403_from, ; char* from + ptr @.TypeMapEntry.23404_to; char* to + }, ; 13165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23405_from, ; char* from + ptr @.TypeMapEntry.23406_to; char* to + }, ; 13166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23407_from, ; char* from + ptr @.TypeMapEntry.23406_to; char* to + }, ; 13167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23408_from, ; char* from + ptr @.TypeMapEntry.23404_to; char* to + }, ; 13168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23409_from, ; char* from + ptr @.TypeMapEntry.23410_to; char* to + }, ; 13169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23411_from, ; char* from + ptr @.TypeMapEntry.23412_to; char* to + }, ; 13170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23413_from, ; char* from + ptr @.TypeMapEntry.23412_to; char* to + }, ; 13171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23414_from, ; char* from + ptr @.TypeMapEntry.23410_to; char* to + }, ; 13172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23415_from, ; char* from + ptr @.TypeMapEntry.23416_to; char* to + }, ; 13173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23417_from, ; char* from + ptr @.TypeMapEntry.23418_to; char* to + }, ; 13174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23419_from, ; char* from + ptr @.TypeMapEntry.23420_to; char* to + }, ; 13175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23421_from, ; char* from + ptr @.TypeMapEntry.23420_to; char* to + }, ; 13176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23422_from, ; char* from + ptr @.TypeMapEntry.23423_to; char* to + }, ; 13177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23424_from, ; char* from + ptr @.TypeMapEntry.23425_to; char* to + }, ; 13178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23426_from, ; char* from + ptr @.TypeMapEntry.23427_to; char* to + }, ; 13179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23428_from, ; char* from + ptr @.TypeMapEntry.23429_to; char* to + }, ; 13180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23430_from, ; char* from + ptr @.TypeMapEntry.23431_to; char* to + }, ; 13181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23432_from, ; char* from + ptr @.TypeMapEntry.23433_to; char* to + }, ; 13182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23434_from, ; char* from + ptr @.TypeMapEntry.23435_to; char* to + }, ; 13183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23436_from, ; char* from + ptr @.TypeMapEntry.23437_to; char* to + }, ; 13184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23438_from, ; char* from + ptr @.TypeMapEntry.23437_to; char* to + }, ; 13185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23439_from, ; char* from + ptr @.TypeMapEntry.23440_to; char* to + }, ; 13186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23441_from, ; char* from + ptr @.TypeMapEntry.23440_to; char* to + }, ; 13187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23442_from, ; char* from + ptr @.TypeMapEntry.23443_to; char* to + }, ; 13188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23444_from, ; char* from + ptr @.TypeMapEntry.23445_to; char* to + }, ; 13189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23446_from, ; char* from + ptr @.TypeMapEntry.23447_to; char* to + }, ; 13190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23448_from, ; char* from + ptr @.TypeMapEntry.23449_to; char* to + }, ; 13191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23450_from, ; char* from + ptr @.TypeMapEntry.23451_to; char* to + }, ; 13192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23452_from, ; char* from + ptr @.TypeMapEntry.23453_to; char* to + }, ; 13193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23454_from, ; char* from + ptr @.TypeMapEntry.23455_to; char* to + }, ; 13194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23456_from, ; char* from + ptr @.TypeMapEntry.23457_to; char* to + }, ; 13195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23458_from, ; char* from + ptr @.TypeMapEntry.23457_to; char* to + }, ; 13196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23459_from, ; char* from + ptr @.TypeMapEntry.23460_to; char* to + }, ; 13197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23461_from, ; char* from + ptr @.TypeMapEntry.23460_to; char* to + }, ; 13198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23462_from, ; char* from + ptr @.TypeMapEntry.23463_to; char* to + }, ; 13199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23464_from, ; char* from + ptr @.TypeMapEntry.23465_to; char* to + }, ; 13200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23466_from, ; char* from + ptr @.TypeMapEntry.23465_to; char* to + }, ; 13201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23467_from, ; char* from + ptr @.TypeMapEntry.23468_to; char* to + }, ; 13202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23469_from, ; char* from + ptr @.TypeMapEntry.23468_to; char* to + }, ; 13203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23470_from, ; char* from + ptr @.TypeMapEntry.23463_to; char* to + }, ; 13204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23471_from, ; char* from + ptr @.TypeMapEntry.23472_to; char* to + }, ; 13205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23473_from, ; char* from + ptr @.TypeMapEntry.23472_to; char* to + }, ; 13206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23474_from, ; char* from + ptr @.TypeMapEntry.23475_to; char* to + }, ; 13207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23476_from, ; char* from + ptr @.TypeMapEntry.23475_to; char* to + }, ; 13208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23477_from, ; char* from + ptr @.TypeMapEntry.23478_to; char* to + }, ; 13209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23479_from, ; char* from + ptr @.TypeMapEntry.23478_to; char* to + }, ; 13210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23480_from, ; char* from + ptr @.TypeMapEntry.23481_to; char* to + }, ; 13211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23482_from, ; char* from + ptr @.TypeMapEntry.23481_to; char* to + }, ; 13212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23483_from, ; char* from + ptr @.TypeMapEntry.23484_to; char* to + }, ; 13213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23485_from, ; char* from + ptr @.TypeMapEntry.23486_to; char* to + }, ; 13214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23487_from, ; char* from + ptr @.TypeMapEntry.23486_to; char* to + }, ; 13215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23488_from, ; char* from + ptr @.TypeMapEntry.23484_to; char* to + }, ; 13216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23489_from, ; char* from + ptr @.TypeMapEntry.23490_to; char* to + }, ; 13217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23491_from, ; char* from + ptr @.TypeMapEntry.23490_to; char* to + }, ; 13218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23492_from, ; char* from + ptr @.TypeMapEntry.23493_to; char* to + }, ; 13219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23494_from, ; char* from + ptr @.TypeMapEntry.23493_to; char* to + }, ; 13220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23495_from, ; char* from + ptr @.TypeMapEntry.23496_to; char* to + }, ; 13221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23497_from, ; char* from + ptr @.TypeMapEntry.23498_to; char* to + }, ; 13222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23499_from, ; char* from + ptr @.TypeMapEntry.23498_to; char* to + }, ; 13223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23500_from, ; char* from + ptr @.TypeMapEntry.23501_to; char* to + }, ; 13224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23502_from, ; char* from + ptr @.TypeMapEntry.23501_to; char* to + }, ; 13225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23503_from, ; char* from + ptr @.TypeMapEntry.23496_to; char* to + }, ; 13226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23504_from, ; char* from + ptr @.TypeMapEntry.23505_to; char* to + }, ; 13227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23506_from, ; char* from + ptr @.TypeMapEntry.23507_to; char* to + }, ; 13228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23508_from, ; char* from + ptr @.TypeMapEntry.23507_to; char* to + }, ; 13229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23509_from, ; char* from + ptr @.TypeMapEntry.23510_to; char* to + }, ; 13230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23511_from, ; char* from + ptr @.TypeMapEntry.23510_to; char* to + }, ; 13231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23512_from, ; char* from + ptr @.TypeMapEntry.23505_to; char* to + }, ; 13232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23513_from, ; char* from + ptr @.TypeMapEntry.23514_to; char* to + }, ; 13233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23515_from, ; char* from + ptr @.TypeMapEntry.23514_to; char* to + }, ; 13234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23516_from, ; char* from + ptr @.TypeMapEntry.23517_to; char* to + }, ; 13235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23518_from, ; char* from + ptr @.TypeMapEntry.23517_to; char* to + }, ; 13236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23519_from, ; char* from + ptr @.TypeMapEntry.23520_to; char* to + }, ; 13237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23521_from, ; char* from + ptr @.TypeMapEntry.23520_to; char* to + }, ; 13238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23522_from, ; char* from + ptr @.TypeMapEntry.23523_to; char* to + }, ; 13239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23524_from, ; char* from + ptr @.TypeMapEntry.23523_to; char* to + }, ; 13240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23525_from, ; char* from + ptr @.TypeMapEntry.23526_to; char* to + }, ; 13241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23527_from, ; char* from + ptr @.TypeMapEntry.23526_to; char* to + }, ; 13242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23528_from, ; char* from + ptr @.TypeMapEntry.23529_to; char* to + }, ; 13243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23530_from, ; char* from + ptr @.TypeMapEntry.23529_to; char* to + }, ; 13244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23531_from, ; char* from + ptr @.TypeMapEntry.23532_to; char* to + }, ; 13245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23533_from, ; char* from + ptr @.TypeMapEntry.23532_to; char* to + }, ; 13246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23534_from, ; char* from + ptr @.TypeMapEntry.23535_to; char* to + }, ; 13247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23536_from, ; char* from + ptr @.TypeMapEntry.23535_to; char* to + }, ; 13248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23537_from, ; char* from + ptr @.TypeMapEntry.23538_to; char* to + }, ; 13249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23539_from, ; char* from + ptr @.TypeMapEntry.23538_to; char* to + }, ; 13250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23540_from, ; char* from + ptr @.TypeMapEntry.23541_to; char* to + }, ; 13251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23542_from, ; char* from + ptr @.TypeMapEntry.23541_to; char* to + }, ; 13252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23543_from, ; char* from + ptr @.TypeMapEntry.23544_to; char* to + }, ; 13253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23545_from, ; char* from + ptr @.TypeMapEntry.23544_to; char* to + }, ; 13254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23546_from, ; char* from + ptr @.TypeMapEntry.23547_to; char* to + }, ; 13255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23548_from, ; char* from + ptr @.TypeMapEntry.23547_to; char* to + }, ; 13256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23549_from, ; char* from + ptr @.TypeMapEntry.23550_to; char* to + }, ; 13257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23551_from, ; char* from + ptr @.TypeMapEntry.23550_to; char* to + }, ; 13258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23552_from, ; char* from + ptr @.TypeMapEntry.23553_to; char* to + }, ; 13259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23554_from, ; char* from + ptr @.TypeMapEntry.23553_to; char* to + }, ; 13260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23555_from, ; char* from + ptr @.TypeMapEntry.23556_to; char* to + }, ; 13261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23557_from, ; char* from + ptr @.TypeMapEntry.23558_to; char* to + }, ; 13262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23559_from, ; char* from + ptr @.TypeMapEntry.23560_to; char* to + }, ; 13263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23561_from, ; char* from + ptr @.TypeMapEntry.23562_to; char* to + }, ; 13264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23563_from, ; char* from + ptr @.TypeMapEntry.23564_to; char* to + }, ; 13265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23565_from, ; char* from + ptr @.TypeMapEntry.23564_to; char* to + }, ; 13266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23566_from, ; char* from + ptr @.TypeMapEntry.23567_to; char* to + }, ; 13267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23568_from, ; char* from + ptr @.TypeMapEntry.23569_to; char* to + }, ; 13268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23570_from, ; char* from + ptr @.TypeMapEntry.23571_to; char* to + }, ; 13269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23572_from, ; char* from + ptr @.TypeMapEntry.23571_to; char* to + }, ; 13270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23573_from, ; char* from + ptr @.TypeMapEntry.23574_to; char* to + }, ; 13271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23575_from, ; char* from + ptr @.TypeMapEntry.23576_to; char* to + }, ; 13272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23577_from, ; char* from + ptr @.TypeMapEntry.23576_to; char* to + }, ; 13273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23578_from, ; char* from + ptr @.TypeMapEntry.23579_to; char* to + }, ; 13274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23580_from, ; char* from + ptr @.TypeMapEntry.23579_to; char* to + }, ; 13275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23581_from, ; char* from + ptr @.TypeMapEntry.23582_to; char* to + }, ; 13276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23583_from, ; char* from + ptr @.TypeMapEntry.23584_to; char* to + }, ; 13277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23585_from, ; char* from + ptr @.TypeMapEntry.23586_to; char* to + }, ; 13278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23587_from, ; char* from + ptr @.TypeMapEntry.23588_to; char* to + }, ; 13279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23589_from, ; char* from + ptr @.TypeMapEntry.23590_to; char* to + }, ; 13280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23591_from, ; char* from + ptr @.TypeMapEntry.23592_to; char* to + }, ; 13281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23593_from, ; char* from + ptr @.TypeMapEntry.23594_to; char* to + }, ; 13282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23595_from, ; char* from + ptr @.TypeMapEntry.23596_to; char* to + }, ; 13283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23597_from, ; char* from + ptr @.TypeMapEntry.23598_to; char* to + }, ; 13284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23599_from, ; char* from + ptr @.TypeMapEntry.23600_to; char* to + }, ; 13285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23601_from, ; char* from + ptr @.TypeMapEntry.23602_to; char* to + }, ; 13286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23603_from, ; char* from + ptr @.TypeMapEntry.23604_to; char* to + }, ; 13287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23605_from, ; char* from + ptr @.TypeMapEntry.23606_to; char* to + }, ; 13288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23607_from, ; char* from + ptr @.TypeMapEntry.23608_to; char* to + }, ; 13289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23609_from, ; char* from + ptr @.TypeMapEntry.23610_to; char* to + }, ; 13290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23611_from, ; char* from + ptr @.TypeMapEntry.23612_to; char* to + }, ; 13291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23613_from, ; char* from + ptr @.TypeMapEntry.23614_to; char* to + }, ; 13292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23615_from, ; char* from + ptr @.TypeMapEntry.23616_to; char* to + }, ; 13293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23617_from, ; char* from + ptr @.TypeMapEntry.23616_to; char* to + }, ; 13294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23618_from, ; char* from + ptr @.TypeMapEntry.23619_to; char* to + }, ; 13295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23620_from, ; char* from + ptr @.TypeMapEntry.23619_to; char* to + }, ; 13296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23621_from, ; char* from + ptr @.TypeMapEntry.23622_to; char* to + }, ; 13297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23623_from, ; char* from + ptr @.TypeMapEntry.23622_to; char* to + }, ; 13298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23624_from, ; char* from + ptr @.TypeMapEntry.23625_to; char* to + }, ; 13299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23626_from, ; char* from + ptr @.TypeMapEntry.23627_to; char* to + }, ; 13300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23628_from, ; char* from + ptr @.TypeMapEntry.23629_to; char* to + }, ; 13301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23630_from, ; char* from + ptr @.TypeMapEntry.23631_to; char* to + }, ; 13302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23632_from, ; char* from + ptr @.TypeMapEntry.23633_to; char* to + }, ; 13303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23634_from, ; char* from + ptr @.TypeMapEntry.23635_to; char* to + }, ; 13304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23636_from, ; char* from + ptr @.TypeMapEntry.23637_to; char* to + }, ; 13305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23638_from, ; char* from + ptr @.TypeMapEntry.23639_to; char* to + }, ; 13306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23640_from, ; char* from + ptr @.TypeMapEntry.23641_to; char* to + }, ; 13307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23642_from, ; char* from + ptr @.TypeMapEntry.23643_to; char* to + }, ; 13308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23644_from, ; char* from + ptr @.TypeMapEntry.23645_to; char* to + }, ; 13309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23646_from, ; char* from + ptr @.TypeMapEntry.23647_to; char* to + }, ; 13310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23648_from, ; char* from + ptr @.TypeMapEntry.23647_to; char* to + }, ; 13311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23649_from, ; char* from + ptr @.TypeMapEntry.23650_to; char* to + }, ; 13312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23651_from, ; char* from + ptr @.TypeMapEntry.23652_to; char* to + }, ; 13313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23653_from, ; char* from + ptr @.TypeMapEntry.23654_to; char* to + }, ; 13314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23655_from, ; char* from + ptr @.TypeMapEntry.23656_to; char* to + }, ; 13315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23657_from, ; char* from + ptr @.TypeMapEntry.23658_to; char* to + }, ; 13316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23659_from, ; char* from + ptr @.TypeMapEntry.23658_to; char* to + }, ; 13317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23660_from, ; char* from + ptr @.TypeMapEntry.23661_to; char* to + }, ; 13318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23662_from, ; char* from + ptr @.TypeMapEntry.23661_to; char* to + }, ; 13319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23663_from, ; char* from + ptr @.TypeMapEntry.23664_to; char* to + }, ; 13320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23665_from, ; char* from + ptr @.TypeMapEntry.23666_to; char* to + }, ; 13321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23667_from, ; char* from + ptr @.TypeMapEntry.23668_to; char* to + }, ; 13322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23669_from, ; char* from + ptr @.TypeMapEntry.23670_to; char* to + }, ; 13323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23671_from, ; char* from + ptr @.TypeMapEntry.23672_to; char* to + }, ; 13324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23673_from, ; char* from + ptr @.TypeMapEntry.23674_to; char* to + }, ; 13325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23675_from, ; char* from + ptr @.TypeMapEntry.23676_to; char* to + }, ; 13326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23677_from, ; char* from + ptr @.TypeMapEntry.23676_to; char* to + }, ; 13327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23678_from, ; char* from + ptr @.TypeMapEntry.23679_to; char* to + }, ; 13328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23680_from, ; char* from + ptr @.TypeMapEntry.23679_to; char* to + }, ; 13329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23681_from, ; char* from + ptr @.TypeMapEntry.23682_to; char* to + }, ; 13330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23683_from, ; char* from + ptr @.TypeMapEntry.23684_to; char* to + }, ; 13331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23685_from, ; char* from + ptr @.TypeMapEntry.23686_to; char* to + }, ; 13332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23687_from, ; char* from + ptr @.TypeMapEntry.23688_to; char* to + }, ; 13333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23689_from, ; char* from + ptr @.TypeMapEntry.23690_to; char* to + }, ; 13334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23691_from, ; char* from + ptr @.TypeMapEntry.23692_to; char* to + }, ; 13335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23693_from, ; char* from + ptr @.TypeMapEntry.23694_to; char* to + }, ; 13336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23695_from, ; char* from + ptr @.TypeMapEntry.23696_to; char* to + }, ; 13337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23697_from, ; char* from + ptr @.TypeMapEntry.23698_to; char* to + }, ; 13338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23699_from, ; char* from + ptr @.TypeMapEntry.23700_to; char* to + }, ; 13339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23701_from, ; char* from + ptr @.TypeMapEntry.23702_to; char* to + }, ; 13340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23703_from, ; char* from + ptr @.TypeMapEntry.23704_to; char* to + }, ; 13341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23705_from, ; char* from + ptr @.TypeMapEntry.23706_to; char* to + }, ; 13342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23707_from, ; char* from + ptr @.TypeMapEntry.23706_to; char* to + }, ; 13343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23708_from, ; char* from + ptr @.TypeMapEntry.23709_to; char* to + }, ; 13344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23710_from, ; char* from + ptr @.TypeMapEntry.23711_to; char* to + }, ; 13345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23712_from, ; char* from + ptr @.TypeMapEntry.23713_to; char* to + }, ; 13346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23714_from, ; char* from + ptr @.TypeMapEntry.23715_to; char* to + }, ; 13347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23716_from, ; char* from + ptr @.TypeMapEntry.23717_to; char* to + }, ; 13348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23718_from, ; char* from + ptr @.TypeMapEntry.23719_to; char* to + }, ; 13349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23720_from, ; char* from + ptr @.TypeMapEntry.23721_to; char* to + }, ; 13350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23722_from, ; char* from + ptr @.TypeMapEntry.23723_to; char* to + }, ; 13351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23724_from, ; char* from + ptr @.TypeMapEntry.23725_to; char* to + }, ; 13352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23726_from, ; char* from + ptr @.TypeMapEntry.23727_to; char* to + }, ; 13353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23728_from, ; char* from + ptr @.TypeMapEntry.23729_to; char* to + }, ; 13354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23730_from, ; char* from + ptr @.TypeMapEntry.23731_to; char* to + }, ; 13355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23732_from, ; char* from + ptr @.TypeMapEntry.23733_to; char* to + }, ; 13356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23734_from, ; char* from + ptr @.TypeMapEntry.23735_to; char* to + }, ; 13357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23736_from, ; char* from + ptr @.TypeMapEntry.23737_to; char* to + }, ; 13358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23738_from, ; char* from + ptr @.TypeMapEntry.23739_to; char* to + }, ; 13359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23740_from, ; char* from + ptr @.TypeMapEntry.23741_to; char* to + }, ; 13360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23742_from, ; char* from + ptr @.TypeMapEntry.23743_to; char* to + }, ; 13361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23744_from, ; char* from + ptr @.TypeMapEntry.23745_to; char* to + }, ; 13362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23746_from, ; char* from + ptr @.TypeMapEntry.23747_to; char* to + }, ; 13363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23748_from, ; char* from + ptr @.TypeMapEntry.23749_to; char* to + }, ; 13364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23750_from, ; char* from + ptr @.TypeMapEntry.23751_to; char* to + }, ; 13365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23752_from, ; char* from + ptr @.TypeMapEntry.23753_to; char* to + }, ; 13366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23754_from, ; char* from + ptr @.TypeMapEntry.23755_to; char* to + }, ; 13367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23756_from, ; char* from + ptr @.TypeMapEntry.23757_to; char* to + }, ; 13368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23758_from, ; char* from + ptr @.TypeMapEntry.23759_to; char* to + }, ; 13369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23760_from, ; char* from + ptr @.TypeMapEntry.23761_to; char* to + }, ; 13370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23762_from, ; char* from + ptr @.TypeMapEntry.23763_to; char* to + }, ; 13371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23764_from, ; char* from + ptr @.TypeMapEntry.23765_to; char* to + }, ; 13372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23766_from, ; char* from + ptr @.TypeMapEntry.23765_to; char* to + }, ; 13373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23767_from, ; char* from + ptr @.TypeMapEntry.23768_to; char* to + }, ; 13374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23769_from, ; char* from + ptr @.TypeMapEntry.23768_to; char* to + }, ; 13375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23770_from, ; char* from + ptr @.TypeMapEntry.23771_to; char* to + }, ; 13376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23772_from, ; char* from + ptr @.TypeMapEntry.23771_to; char* to + }, ; 13377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23773_from, ; char* from + ptr @.TypeMapEntry.23774_to; char* to + }, ; 13378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23775_from, ; char* from + ptr @.TypeMapEntry.23774_to; char* to + }, ; 13379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23776_from, ; char* from + ptr @.TypeMapEntry.23777_to; char* to + }, ; 13380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23778_from, ; char* from + ptr @.TypeMapEntry.23779_to; char* to + }, ; 13381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23780_from, ; char* from + ptr @.TypeMapEntry.23781_to; char* to + }, ; 13382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23782_from, ; char* from + ptr @.TypeMapEntry.23783_to; char* to + }, ; 13383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23784_from, ; char* from + ptr @.TypeMapEntry.23785_to; char* to + }, ; 13384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23786_from, ; char* from + ptr @.TypeMapEntry.23787_to; char* to + }, ; 13385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23788_from, ; char* from + ptr @.TypeMapEntry.23789_to; char* to + }, ; 13386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23790_from, ; char* from + ptr @.TypeMapEntry.23791_to; char* to + }, ; 13387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23792_from, ; char* from + ptr @.TypeMapEntry.23793_to; char* to + }, ; 13388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23794_from, ; char* from + ptr @.TypeMapEntry.23795_to; char* to + }, ; 13389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23796_from, ; char* from + ptr @.TypeMapEntry.23797_to; char* to + }, ; 13390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23798_from, ; char* from + ptr @.TypeMapEntry.23799_to; char* to + }, ; 13391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23800_from, ; char* from + ptr @.TypeMapEntry.23801_to; char* to + }, ; 13392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23802_from, ; char* from + ptr @.TypeMapEntry.23803_to; char* to + }, ; 13393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23804_from, ; char* from + ptr @.TypeMapEntry.23805_to; char* to + }, ; 13394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23806_from, ; char* from + ptr @.TypeMapEntry.23807_to; char* to + }, ; 13395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23808_from, ; char* from + ptr @.TypeMapEntry.23809_to; char* to + }, ; 13396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23810_from, ; char* from + ptr @.TypeMapEntry.23811_to; char* to + }, ; 13397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23812_from, ; char* from + ptr @.TypeMapEntry.23811_to; char* to + }, ; 13398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23813_from, ; char* from + ptr @.TypeMapEntry.23814_to; char* to + }, ; 13399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23815_from, ; char* from + ptr @.TypeMapEntry.23816_to; char* to + }, ; 13400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23817_from, ; char* from + ptr @.TypeMapEntry.23818_to; char* to + }, ; 13401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23819_from, ; char* from + ptr @.TypeMapEntry.23820_to; char* to + }, ; 13402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23821_from, ; char* from + ptr @.TypeMapEntry.23822_to; char* to + }, ; 13403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23823_from, ; char* from + ptr @.TypeMapEntry.23824_to; char* to + }, ; 13404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23825_from, ; char* from + ptr @.TypeMapEntry.23826_to; char* to + }, ; 13405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23827_from, ; char* from + ptr @.TypeMapEntry.23828_to; char* to + }, ; 13406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23829_from, ; char* from + ptr @.TypeMapEntry.23830_to; char* to + }, ; 13407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23831_from, ; char* from + ptr @.TypeMapEntry.23832_to; char* to + }, ; 13408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23833_from, ; char* from + ptr @.TypeMapEntry.23834_to; char* to + }, ; 13409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23835_from, ; char* from + ptr @.TypeMapEntry.23836_to; char* to + }, ; 13410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23837_from, ; char* from + ptr @.TypeMapEntry.23838_to; char* to + }, ; 13411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23839_from, ; char* from + ptr @.TypeMapEntry.23840_to; char* to + }, ; 13412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23841_from, ; char* from + ptr @.TypeMapEntry.23842_to; char* to + }, ; 13413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23843_from, ; char* from + ptr @.TypeMapEntry.23844_to; char* to + }, ; 13414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23845_from, ; char* from + ptr @.TypeMapEntry.23846_to; char* to + }, ; 13415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23847_from, ; char* from + ptr @.TypeMapEntry.23848_to; char* to + }, ; 13416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23849_from, ; char* from + ptr @.TypeMapEntry.23850_to; char* to + }, ; 13417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23851_from, ; char* from + ptr @.TypeMapEntry.23850_to; char* to + }, ; 13418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23852_from, ; char* from + ptr @.TypeMapEntry.23853_to; char* to + }, ; 13419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23854_from, ; char* from + ptr @.TypeMapEntry.23853_to; char* to + }, ; 13420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23855_from, ; char* from + ptr @.TypeMapEntry.23856_to; char* to + }, ; 13421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23857_from, ; char* from + ptr @.TypeMapEntry.23856_to; char* to + }, ; 13422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23858_from, ; char* from + ptr @.TypeMapEntry.23859_to; char* to + }, ; 13423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23860_from, ; char* from + ptr @.TypeMapEntry.23859_to; char* to + }, ; 13424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23861_from, ; char* from + ptr @.TypeMapEntry.23862_to; char* to + }, ; 13425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23863_from, ; char* from + ptr @.TypeMapEntry.23864_to; char* to + }, ; 13426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23865_from, ; char* from + ptr @.TypeMapEntry.23866_to; char* to + }, ; 13427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23867_from, ; char* from + ptr @.TypeMapEntry.23868_to; char* to + }, ; 13428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23869_from, ; char* from + ptr @.TypeMapEntry.23868_to; char* to + }, ; 13429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23870_from, ; char* from + ptr @.TypeMapEntry.23871_to; char* to + }, ; 13430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23872_from, ; char* from + ptr @.TypeMapEntry.23873_to; char* to + }, ; 13431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23874_from, ; char* from + ptr @.TypeMapEntry.23875_to; char* to + }, ; 13432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23876_from, ; char* from + ptr @.TypeMapEntry.23877_to; char* to + }, ; 13433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23878_from, ; char* from + ptr @.TypeMapEntry.23879_to; char* to + }, ; 13434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23880_from, ; char* from + ptr @.TypeMapEntry.23879_to; char* to + }, ; 13435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23881_from, ; char* from + ptr @.TypeMapEntry.23882_to; char* to + }, ; 13436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23883_from, ; char* from + ptr @.TypeMapEntry.23884_to; char* to + }, ; 13437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23885_from, ; char* from + ptr @.TypeMapEntry.23886_to; char* to + }, ; 13438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23887_from, ; char* from + ptr @.TypeMapEntry.23888_to; char* to + }, ; 13439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23889_from, ; char* from + ptr @.TypeMapEntry.23890_to; char* to + }, ; 13440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23891_from, ; char* from + ptr @.TypeMapEntry.23890_to; char* to + }, ; 13441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23892_from, ; char* from + ptr @.TypeMapEntry.23893_to; char* to + }, ; 13442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23894_from, ; char* from + ptr @.TypeMapEntry.23895_to; char* to + }, ; 13443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23896_from, ; char* from + ptr @.TypeMapEntry.23897_to; char* to + }, ; 13444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23898_from, ; char* from + ptr @.TypeMapEntry.23899_to; char* to + }, ; 13445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23900_from, ; char* from + ptr @.TypeMapEntry.23901_to; char* to + }, ; 13446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23902_from, ; char* from + ptr @.TypeMapEntry.23903_to; char* to + }, ; 13447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23904_from, ; char* from + ptr @.TypeMapEntry.23905_to; char* to + }, ; 13448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23906_from, ; char* from + ptr @.TypeMapEntry.23907_to; char* to + }, ; 13449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23908_from, ; char* from + ptr @.TypeMapEntry.23909_to; char* to + }, ; 13450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23910_from, ; char* from + ptr @.TypeMapEntry.23911_to; char* to + }, ; 13451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23912_from, ; char* from + ptr @.TypeMapEntry.23913_to; char* to + }, ; 13452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23914_from, ; char* from + ptr @.TypeMapEntry.23915_to; char* to + }, ; 13453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23916_from, ; char* from + ptr @.TypeMapEntry.23915_to; char* to + }, ; 13454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23917_from, ; char* from + ptr @.TypeMapEntry.23918_to; char* to + }, ; 13455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23919_from, ; char* from + ptr @.TypeMapEntry.23918_to; char* to + }, ; 13456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23920_from, ; char* from + ptr @.TypeMapEntry.23921_to; char* to + }, ; 13457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23922_from, ; char* from + ptr @.TypeMapEntry.23921_to; char* to + }, ; 13458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23923_from, ; char* from + ptr @.TypeMapEntry.23924_to; char* to + }, ; 13459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23925_from, ; char* from + ptr @.TypeMapEntry.23924_to; char* to + }, ; 13460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23926_from, ; char* from + ptr @.TypeMapEntry.23927_to; char* to + }, ; 13461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23928_from, ; char* from + ptr @.TypeMapEntry.23927_to; char* to + }, ; 13462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23929_from, ; char* from + ptr @.TypeMapEntry.23930_to; char* to + }, ; 13463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23931_from, ; char* from + ptr @.TypeMapEntry.23930_to; char* to + }, ; 13464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23932_from, ; char* from + ptr @.TypeMapEntry.23933_to; char* to + }, ; 13465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23934_from, ; char* from + ptr @.TypeMapEntry.23933_to; char* to + }, ; 13466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23935_from, ; char* from + ptr @.TypeMapEntry.23936_to; char* to + }, ; 13467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23937_from, ; char* from + ptr @.TypeMapEntry.23938_to; char* to + }, ; 13468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23939_from, ; char* from + ptr @.TypeMapEntry.23940_to; char* to + }, ; 13469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23941_from, ; char* from + ptr @.TypeMapEntry.23942_to; char* to + }, ; 13470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23943_from, ; char* from + ptr @.TypeMapEntry.23944_to; char* to + }, ; 13471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23945_from, ; char* from + ptr @.TypeMapEntry.23946_to; char* to + }, ; 13472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23947_from, ; char* from + ptr @.TypeMapEntry.23948_to; char* to + }, ; 13473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23949_from, ; char* from + ptr @.TypeMapEntry.23950_to; char* to + }, ; 13474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23951_from, ; char* from + ptr @.TypeMapEntry.23952_to; char* to + }, ; 13475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23953_from, ; char* from + ptr @.TypeMapEntry.23954_to; char* to + }, ; 13476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23955_from, ; char* from + ptr @.TypeMapEntry.23956_to; char* to + }, ; 13477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23957_from, ; char* from + ptr @.TypeMapEntry.23958_to; char* to + }, ; 13478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23959_from, ; char* from + ptr @.TypeMapEntry.23960_to; char* to + }, ; 13479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23961_from, ; char* from + ptr @.TypeMapEntry.23962_to; char* to + }, ; 13480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23963_from, ; char* from + ptr @.TypeMapEntry.23964_to; char* to + }, ; 13481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23965_from, ; char* from + ptr @.TypeMapEntry.23966_to; char* to + }, ; 13482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23967_from, ; char* from + ptr @.TypeMapEntry.23968_to; char* to + }, ; 13483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23969_from, ; char* from + ptr @.TypeMapEntry.23970_to; char* to + }, ; 13484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23971_from, ; char* from + ptr @.TypeMapEntry.23972_to; char* to + }, ; 13485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23973_from, ; char* from + ptr @.TypeMapEntry.23974_to; char* to + }, ; 13486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23975_from, ; char* from + ptr @.TypeMapEntry.23976_to; char* to + }, ; 13487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23977_from, ; char* from + ptr @.TypeMapEntry.23978_to; char* to + }, ; 13488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23979_from, ; char* from + ptr @.TypeMapEntry.23980_to; char* to + }, ; 13489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23981_from, ; char* from + ptr @.TypeMapEntry.23982_to; char* to + }, ; 13490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23983_from, ; char* from + ptr @.TypeMapEntry.23984_to; char* to + }, ; 13491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23985_from, ; char* from + ptr @.TypeMapEntry.23986_to; char* to + }, ; 13492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23987_from, ; char* from + ptr @.TypeMapEntry.23988_to; char* to + }, ; 13493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23989_from, ; char* from + ptr @.TypeMapEntry.23990_to; char* to + }, ; 13494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23991_from, ; char* from + ptr @.TypeMapEntry.23992_to; char* to + }, ; 13495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23993_from, ; char* from + ptr @.TypeMapEntry.23994_to; char* to + }, ; 13496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23995_from, ; char* from + ptr @.TypeMapEntry.23994_to; char* to + }, ; 13497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23996_from, ; char* from + ptr @.TypeMapEntry.23997_to; char* to + }, ; 13498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23998_from, ; char* from + ptr @.TypeMapEntry.23997_to; char* to + }, ; 13499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23999_from, ; char* from + ptr @.TypeMapEntry.24000_to; char* to + }, ; 13500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24001_from, ; char* from + ptr @.TypeMapEntry.24000_to; char* to + }, ; 13501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24002_from, ; char* from + ptr @.TypeMapEntry.24003_to; char* to + }, ; 13502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24004_from, ; char* from + ptr @.TypeMapEntry.24003_to; char* to + }, ; 13503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24005_from, ; char* from + ptr @.TypeMapEntry.24006_to; char* to + }, ; 13504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24007_from, ; char* from + ptr @.TypeMapEntry.24006_to; char* to + }, ; 13505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24008_from, ; char* from + ptr @.TypeMapEntry.24009_to; char* to + }, ; 13506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24010_from, ; char* from + ptr @.TypeMapEntry.24011_to; char* to + }, ; 13507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24012_from, ; char* from + ptr @.TypeMapEntry.24011_to; char* to + }, ; 13508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24013_from, ; char* from + ptr @.TypeMapEntry.24009_to; char* to + }, ; 13509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24014_from, ; char* from + ptr @.TypeMapEntry.24015_to; char* to + }, ; 13510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24016_from, ; char* from + ptr @.TypeMapEntry.24015_to; char* to + }, ; 13511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24017_from, ; char* from + ptr @.TypeMapEntry.24018_to; char* to + }, ; 13512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24019_from, ; char* from + ptr @.TypeMapEntry.24018_to; char* to + }, ; 13513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24020_from, ; char* from + ptr @.TypeMapEntry.24021_to; char* to + }, ; 13514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24022_from, ; char* from + ptr @.TypeMapEntry.24021_to; char* to + }, ; 13515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24023_from, ; char* from + ptr @.TypeMapEntry.24024_to; char* to + }, ; 13516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24025_from, ; char* from + ptr @.TypeMapEntry.24024_to; char* to + }, ; 13517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24026_from, ; char* from + ptr @.TypeMapEntry.24027_to; char* to + }, ; 13518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24028_from, ; char* from + ptr @.TypeMapEntry.24027_to; char* to + }, ; 13519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24029_from, ; char* from + ptr @.TypeMapEntry.24030_to; char* to + }, ; 13520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24031_from, ; char* from + ptr @.TypeMapEntry.24032_to; char* to + }, ; 13521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24033_from, ; char* from + ptr @.TypeMapEntry.24032_to; char* to + }, ; 13522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24034_from, ; char* from + ptr @.TypeMapEntry.24030_to; char* to + }, ; 13523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24035_from, ; char* from + ptr @.TypeMapEntry.24036_to; char* to + }, ; 13524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24037_from, ; char* from + ptr @.TypeMapEntry.24036_to; char* to + }, ; 13525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24038_from, ; char* from + ptr @.TypeMapEntry.24039_to; char* to + }, ; 13526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24040_from, ; char* from + ptr @.TypeMapEntry.24039_to; char* to + }, ; 13527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24041_from, ; char* from + ptr @.TypeMapEntry.24042_to; char* to + }, ; 13528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24043_from, ; char* from + ptr @.TypeMapEntry.24042_to; char* to + }, ; 13529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24044_from, ; char* from + ptr @.TypeMapEntry.24045_to; char* to + }, ; 13530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24046_from, ; char* from + ptr @.TypeMapEntry.24045_to; char* to + }, ; 13531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24047_from, ; char* from + ptr @.TypeMapEntry.24048_to; char* to + }, ; 13532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24049_from, ; char* from + ptr @.TypeMapEntry.24048_to; char* to + }, ; 13533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24050_from, ; char* from + ptr @.TypeMapEntry.24051_to; char* to + }, ; 13534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24052_from, ; char* from + ptr @.TypeMapEntry.24051_to; char* to + }, ; 13535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24053_from, ; char* from + ptr @.TypeMapEntry.24054_to; char* to + }, ; 13536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24055_from, ; char* from + ptr @.TypeMapEntry.24054_to; char* to + }, ; 13537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24056_from, ; char* from + ptr @.TypeMapEntry.24057_to; char* to + }, ; 13538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24058_from, ; char* from + ptr @.TypeMapEntry.24057_to; char* to + }, ; 13539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24059_from, ; char* from + ptr @.TypeMapEntry.24060_to; char* to + }, ; 13540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24061_from, ; char* from + ptr @.TypeMapEntry.24060_to; char* to + }, ; 13541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24062_from, ; char* from + ptr @.TypeMapEntry.24063_to; char* to + }, ; 13542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24064_from, ; char* from + ptr @.TypeMapEntry.24063_to; char* to + }, ; 13543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24065_from, ; char* from + ptr @.TypeMapEntry.24066_to; char* to + }, ; 13544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24067_from, ; char* from + ptr @.TypeMapEntry.24066_to; char* to + }, ; 13545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24068_from, ; char* from + ptr @.TypeMapEntry.24069_to; char* to + }, ; 13546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24070_from, ; char* from + ptr @.TypeMapEntry.24069_to; char* to + }, ; 13547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24071_from, ; char* from + ptr @.TypeMapEntry.24072_to; char* to + }, ; 13548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24073_from, ; char* from + ptr @.TypeMapEntry.24072_to; char* to + }, ; 13549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24074_from, ; char* from + ptr @.TypeMapEntry.24075_to; char* to + }, ; 13550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24076_from, ; char* from + ptr @.TypeMapEntry.24077_to; char* to + }, ; 13551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24078_from, ; char* from + ptr @.TypeMapEntry.24077_to; char* to + }, ; 13552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24079_from, ; char* from + ptr @.TypeMapEntry.24080_to; char* to + }, ; 13553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24081_from, ; char* from + ptr @.TypeMapEntry.24080_to; char* to + }, ; 13554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24082_from, ; char* from + ptr @.TypeMapEntry.24083_to; char* to + }, ; 13555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24084_from, ; char* from + ptr @.TypeMapEntry.24083_to; char* to + }, ; 13556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24085_from, ; char* from + ptr @.TypeMapEntry.24086_to; char* to + }, ; 13557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24087_from, ; char* from + ptr @.TypeMapEntry.24088_to; char* to + }, ; 13558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24089_from, ; char* from + ptr @.TypeMapEntry.24088_to; char* to + }, ; 13559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24090_from, ; char* from + ptr @.TypeMapEntry.24086_to; char* to + }, ; 13560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24091_from, ; char* from + ptr @.TypeMapEntry.24092_to; char* to + }, ; 13561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24093_from, ; char* from + ptr @.TypeMapEntry.24092_to; char* to + }, ; 13562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24094_from, ; char* from + ptr @.TypeMapEntry.24095_to; char* to + }, ; 13563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24096_from, ; char* from + ptr @.TypeMapEntry.24095_to; char* to + }, ; 13564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24097_from, ; char* from + ptr @.TypeMapEntry.24098_to; char* to + }, ; 13565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24099_from, ; char* from + ptr @.TypeMapEntry.24100_to; char* to + }, ; 13566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24101_from, ; char* from + ptr @.TypeMapEntry.24102_to; char* to + }, ; 13567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24103_from, ; char* from + ptr @.TypeMapEntry.24104_to; char* to + }, ; 13568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24105_from, ; char* from + ptr @.TypeMapEntry.24106_to; char* to + }, ; 13569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24107_from, ; char* from + ptr @.TypeMapEntry.24108_to; char* to + }, ; 13570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24109_from, ; char* from + ptr @.TypeMapEntry.24110_to; char* to + }, ; 13571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24111_from, ; char* from + ptr @.TypeMapEntry.24112_to; char* to + }, ; 13572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24113_from, ; char* from + ptr @.TypeMapEntry.24114_to; char* to + }, ; 13573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24115_from, ; char* from + ptr @.TypeMapEntry.24114_to; char* to + }, ; 13574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24116_from, ; char* from + ptr @.TypeMapEntry.24117_to; char* to + }, ; 13575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24118_from, ; char* from + ptr @.TypeMapEntry.24117_to; char* to + }, ; 13576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24119_from, ; char* from + ptr @.TypeMapEntry.24120_to; char* to + }, ; 13577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24121_from, ; char* from + ptr @.TypeMapEntry.24120_to; char* to + }, ; 13578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24122_from, ; char* from + ptr @.TypeMapEntry.24123_to; char* to + }, ; 13579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24124_from, ; char* from + ptr @.TypeMapEntry.24123_to; char* to + }, ; 13580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24125_from, ; char* from + ptr @.TypeMapEntry.24126_to; char* to + }, ; 13581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24127_from, ; char* from + ptr @.TypeMapEntry.24126_to; char* to + }, ; 13582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24128_from, ; char* from + ptr @.TypeMapEntry.24129_to; char* to + }, ; 13583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24130_from, ; char* from + ptr @.TypeMapEntry.24131_to; char* to + }, ; 13584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24132_from, ; char* from + ptr @.TypeMapEntry.24133_to; char* to + }, ; 13585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24134_from, ; char* from + ptr @.TypeMapEntry.24135_to; char* to + }, ; 13586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24136_from, ; char* from + ptr @.TypeMapEntry.24137_to; char* to + }, ; 13587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24138_from, ; char* from + ptr @.TypeMapEntry.24139_to; char* to + }, ; 13588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24140_from, ; char* from + ptr @.TypeMapEntry.24141_to; char* to + }, ; 13589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24142_from, ; char* from + ptr @.TypeMapEntry.24143_to; char* to + }, ; 13590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24144_from, ; char* from + ptr @.TypeMapEntry.24145_to; char* to + }, ; 13591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24146_from, ; char* from + ptr @.TypeMapEntry.24147_to; char* to + }, ; 13592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24148_from, ; char* from + ptr @.TypeMapEntry.24149_to; char* to + }, ; 13593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24150_from, ; char* from + ptr @.TypeMapEntry.24151_to; char* to + }, ; 13594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24152_from, ; char* from + ptr @.TypeMapEntry.24153_to; char* to + }, ; 13595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24154_from, ; char* from + ptr @.TypeMapEntry.24153_to; char* to + }, ; 13596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24155_from, ; char* from + ptr @.TypeMapEntry.24156_to; char* to + }, ; 13597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24157_from, ; char* from + ptr @.TypeMapEntry.24156_to; char* to + }, ; 13598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24158_from, ; char* from + ptr @.TypeMapEntry.24159_to; char* to + }, ; 13599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24160_from, ; char* from + ptr @.TypeMapEntry.24159_to; char* to + }, ; 13600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24161_from, ; char* from + ptr @.TypeMapEntry.24162_to; char* to + }, ; 13601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24163_from, ; char* from + ptr @.TypeMapEntry.24162_to; char* to + }, ; 13602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24164_from, ; char* from + ptr @.TypeMapEntry.24165_to; char* to + }, ; 13603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24166_from, ; char* from + ptr @.TypeMapEntry.24165_to; char* to + }, ; 13604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24167_from, ; char* from + ptr @.TypeMapEntry.24168_to; char* to + }, ; 13605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24169_from, ; char* from + ptr @.TypeMapEntry.24168_to; char* to + }, ; 13606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24170_from, ; char* from + ptr @.TypeMapEntry.24171_to; char* to + }, ; 13607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24172_from, ; char* from + ptr @.TypeMapEntry.24171_to; char* to + }, ; 13608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24173_from, ; char* from + ptr @.TypeMapEntry.24174_to; char* to + }, ; 13609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24175_from, ; char* from + ptr @.TypeMapEntry.24174_to; char* to + }, ; 13610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24176_from, ; char* from + ptr @.TypeMapEntry.24177_to; char* to + }, ; 13611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24178_from, ; char* from + ptr @.TypeMapEntry.24177_to; char* to + }, ; 13612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24179_from, ; char* from + ptr @.TypeMapEntry.24180_to; char* to + }, ; 13613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24181_from, ; char* from + ptr @.TypeMapEntry.24180_to; char* to + }, ; 13614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24182_from, ; char* from + ptr @.TypeMapEntry.24183_to; char* to + }, ; 13615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24184_from, ; char* from + ptr @.TypeMapEntry.24183_to; char* to + }, ; 13616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24185_from, ; char* from + ptr @.TypeMapEntry.24186_to; char* to + }, ; 13617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24187_from, ; char* from + ptr @.TypeMapEntry.24188_to; char* to + }, ; 13618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24189_from, ; char* from + ptr @.TypeMapEntry.24190_to; char* to + }, ; 13619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24191_from, ; char* from + ptr @.TypeMapEntry.24192_to; char* to + }, ; 13620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24193_from, ; char* from + ptr @.TypeMapEntry.24194_to; char* to + }, ; 13621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24195_from, ; char* from + ptr @.TypeMapEntry.24196_to; char* to + }, ; 13622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24197_from, ; char* from + ptr @.TypeMapEntry.24196_to; char* to + }, ; 13623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24198_from, ; char* from + ptr @.TypeMapEntry.24199_to; char* to + }, ; 13624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24200_from, ; char* from + ptr @.TypeMapEntry.24199_to; char* to + }, ; 13625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24201_from, ; char* from + ptr @.TypeMapEntry.24202_to; char* to + }, ; 13626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24203_from, ; char* from + ptr @.TypeMapEntry.24204_to; char* to + }, ; 13627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24205_from, ; char* from + ptr @.TypeMapEntry.24206_to; char* to + }, ; 13628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24207_from, ; char* from + ptr @.TypeMapEntry.24208_to; char* to + }, ; 13629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24209_from, ; char* from + ptr @.TypeMapEntry.24210_to; char* to + }, ; 13630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24211_from, ; char* from + ptr @.TypeMapEntry.24212_to; char* to + }, ; 13631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24213_from, ; char* from + ptr @.TypeMapEntry.24214_to; char* to + }, ; 13632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24215_from, ; char* from + ptr @.TypeMapEntry.24216_to; char* to + }, ; 13633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24217_from, ; char* from + ptr @.TypeMapEntry.24218_to; char* to + }, ; 13634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24219_from, ; char* from + ptr @.TypeMapEntry.24220_to; char* to + }, ; 13635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24221_from, ; char* from + ptr @.TypeMapEntry.24220_to; char* to + }, ; 13636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24222_from, ; char* from + ptr @.TypeMapEntry.24223_to; char* to + }, ; 13637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24224_from, ; char* from + ptr @.TypeMapEntry.24225_to; char* to + }, ; 13638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24226_from, ; char* from + ptr @.TypeMapEntry.24225_to; char* to + }, ; 13639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24227_from, ; char* from + ptr @.TypeMapEntry.24228_to; char* to + }, ; 13640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24229_from, ; char* from + ptr @.TypeMapEntry.24230_to; char* to + }, ; 13641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24231_from, ; char* from + ptr @.TypeMapEntry.24232_to; char* to + }, ; 13642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24233_from, ; char* from + ptr @.TypeMapEntry.24234_to; char* to + }, ; 13643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24235_from, ; char* from + ptr @.TypeMapEntry.24236_to; char* to + }, ; 13644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24237_from, ; char* from + ptr @.TypeMapEntry.24238_to; char* to + }, ; 13645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24239_from, ; char* from + ptr @.TypeMapEntry.24240_to; char* to + }, ; 13646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24241_from, ; char* from + ptr @.TypeMapEntry.24242_to; char* to + }, ; 13647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24243_from, ; char* from + ptr @.TypeMapEntry.24244_to; char* to + }, ; 13648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24245_from, ; char* from + ptr @.TypeMapEntry.24246_to; char* to + }, ; 13649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24247_from, ; char* from + ptr @.TypeMapEntry.24248_to; char* to + }, ; 13650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24249_from, ; char* from + ptr @.TypeMapEntry.24250_to; char* to + }, ; 13651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24251_from, ; char* from + ptr @.TypeMapEntry.24252_to; char* to + }, ; 13652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24253_from, ; char* from + ptr @.TypeMapEntry.24254_to; char* to + }, ; 13653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24255_from, ; char* from + ptr @.TypeMapEntry.24256_to; char* to + }, ; 13654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24257_from, ; char* from + ptr @.TypeMapEntry.24258_to; char* to + }, ; 13655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24259_from, ; char* from + ptr @.TypeMapEntry.24260_to; char* to + }, ; 13656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24261_from, ; char* from + ptr @.TypeMapEntry.24262_to; char* to + }, ; 13657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24263_from, ; char* from + ptr @.TypeMapEntry.24264_to; char* to + }, ; 13658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24265_from, ; char* from + ptr @.TypeMapEntry.24266_to; char* to + }, ; 13659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24267_from, ; char* from + ptr @.TypeMapEntry.24268_to; char* to + }, ; 13660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24269_from, ; char* from + ptr @.TypeMapEntry.24270_to; char* to + }, ; 13661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24271_from, ; char* from + ptr @.TypeMapEntry.24272_to; char* to + }, ; 13662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24273_from, ; char* from + ptr @.TypeMapEntry.24274_to; char* to + }, ; 13663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24275_from, ; char* from + ptr @.TypeMapEntry.24276_to; char* to + }, ; 13664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24277_from, ; char* from + ptr @.TypeMapEntry.24278_to; char* to + }, ; 13665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24279_from, ; char* from + ptr @.TypeMapEntry.24280_to; char* to + }, ; 13666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24281_from, ; char* from + ptr @.TypeMapEntry.24282_to; char* to + }, ; 13667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24283_from, ; char* from + ptr @.TypeMapEntry.24284_to; char* to + }, ; 13668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24285_from, ; char* from + ptr @.TypeMapEntry.24286_to; char* to + }, ; 13669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24287_from, ; char* from + ptr @.TypeMapEntry.24288_to; char* to + }, ; 13670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24289_from, ; char* from + ptr @.TypeMapEntry.24290_to; char* to + }, ; 13671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24291_from, ; char* from + ptr @.TypeMapEntry.24292_to; char* to + }, ; 13672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24293_from, ; char* from + ptr @.TypeMapEntry.24294_to; char* to + }, ; 13673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24295_from, ; char* from + ptr @.TypeMapEntry.24296_to; char* to + }, ; 13674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24297_from, ; char* from + ptr @.TypeMapEntry.24298_to; char* to + }, ; 13675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24299_from, ; char* from + ptr @.TypeMapEntry.24300_to; char* to + }, ; 13676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24301_from, ; char* from + ptr @.TypeMapEntry.24302_to; char* to + }, ; 13677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24303_from, ; char* from + ptr @.TypeMapEntry.24304_to; char* to + }, ; 13678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24305_from, ; char* from + ptr @.TypeMapEntry.24306_to; char* to + }, ; 13679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24307_from, ; char* from + ptr @.TypeMapEntry.24308_to; char* to + }, ; 13680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24309_from, ; char* from + ptr @.TypeMapEntry.24310_to; char* to + }, ; 13681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24311_from, ; char* from + ptr @.TypeMapEntry.24312_to; char* to + }, ; 13682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24313_from, ; char* from + ptr @.TypeMapEntry.24314_to; char* to + }, ; 13683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24315_from, ; char* from + ptr @.TypeMapEntry.24316_to; char* to + }, ; 13684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24317_from, ; char* from + ptr @.TypeMapEntry.24318_to; char* to + }, ; 13685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24319_from, ; char* from + ptr @.TypeMapEntry.24320_to; char* to + }, ; 13686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24321_from, ; char* from + ptr @.TypeMapEntry.24322_to; char* to + }, ; 13687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24323_from, ; char* from + ptr @.TypeMapEntry.24324_to; char* to + }, ; 13688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24325_from, ; char* from + ptr @.TypeMapEntry.24326_to; char* to + }, ; 13689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24327_from, ; char* from + ptr @.TypeMapEntry.24328_to; char* to + }, ; 13690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24329_from, ; char* from + ptr @.TypeMapEntry.24330_to; char* to + }, ; 13691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24331_from, ; char* from + ptr @.TypeMapEntry.24332_to; char* to + }, ; 13692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24333_from, ; char* from + ptr @.TypeMapEntry.24334_to; char* to + }, ; 13693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24335_from, ; char* from + ptr @.TypeMapEntry.24336_to; char* to + }, ; 13694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24337_from, ; char* from + ptr @.TypeMapEntry.24338_to; char* to + }, ; 13695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24339_from, ; char* from + ptr @.TypeMapEntry.24340_to; char* to + }, ; 13696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24341_from, ; char* from + ptr @.TypeMapEntry.24342_to; char* to + }, ; 13697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24343_from, ; char* from + ptr @.TypeMapEntry.24344_to; char* to + }, ; 13698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24345_from, ; char* from + ptr @.TypeMapEntry.24346_to; char* to + }, ; 13699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24347_from, ; char* from + ptr @.TypeMapEntry.24348_to; char* to + }, ; 13700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24349_from, ; char* from + ptr @.TypeMapEntry.24350_to; char* to + }, ; 13701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24351_from, ; char* from + ptr @.TypeMapEntry.24352_to; char* to + }, ; 13702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24353_from, ; char* from + ptr @.TypeMapEntry.24354_to; char* to + }, ; 13703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24355_from, ; char* from + ptr @.TypeMapEntry.24356_to; char* to + }, ; 13704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24357_from, ; char* from + ptr @.TypeMapEntry.24356_to; char* to + }, ; 13705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24358_from, ; char* from + ptr @.TypeMapEntry.24359_to; char* to + }, ; 13706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24360_from, ; char* from + ptr @.TypeMapEntry.24361_to; char* to + }, ; 13707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24362_from, ; char* from + ptr @.TypeMapEntry.24363_to; char* to + }, ; 13708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24364_from, ; char* from + ptr @.TypeMapEntry.24365_to; char* to + }, ; 13709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24366_from, ; char* from + ptr @.TypeMapEntry.24367_to; char* to + }, ; 13710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24368_from, ; char* from + ptr @.TypeMapEntry.24369_to; char* to + }, ; 13711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24370_from, ; char* from + ptr @.TypeMapEntry.24371_to; char* to + }, ; 13712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24372_from, ; char* from + ptr @.TypeMapEntry.24373_to; char* to + }, ; 13713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24374_from, ; char* from + ptr @.TypeMapEntry.24375_to; char* to + }, ; 13714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24376_from, ; char* from + ptr @.TypeMapEntry.24375_to; char* to + }, ; 13715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24377_from, ; char* from + ptr @.TypeMapEntry.24378_to; char* to + }, ; 13716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24379_from, ; char* from + ptr @.TypeMapEntry.24380_to; char* to + }, ; 13717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24381_from, ; char* from + ptr @.TypeMapEntry.24382_to; char* to + }, ; 13718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24383_from, ; char* from + ptr @.TypeMapEntry.24384_to; char* to + }, ; 13719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24385_from, ; char* from + ptr @.TypeMapEntry.24386_to; char* to + }, ; 13720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24387_from, ; char* from + ptr @.TypeMapEntry.24386_to; char* to + }, ; 13721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24388_from, ; char* from + ptr @.TypeMapEntry.24389_to; char* to + }, ; 13722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24390_from, ; char* from + ptr @.TypeMapEntry.24391_to; char* to + }, ; 13723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24392_from, ; char* from + ptr @.TypeMapEntry.24393_to; char* to + }, ; 13724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24394_from, ; char* from + ptr @.TypeMapEntry.24395_to; char* to + }, ; 13725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24396_from, ; char* from + ptr @.TypeMapEntry.24397_to; char* to + }, ; 13726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24398_from, ; char* from + ptr @.TypeMapEntry.24395_to; char* to + }, ; 13727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24399_from, ; char* from + ptr @.TypeMapEntry.24400_to; char* to + }, ; 13728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24401_from, ; char* from + ptr @.TypeMapEntry.24402_to; char* to + }, ; 13729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24403_from, ; char* from + ptr @.TypeMapEntry.24404_to; char* to + }, ; 13730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24405_from, ; char* from + ptr @.TypeMapEntry.24406_to; char* to + }, ; 13731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24407_from, ; char* from + ptr @.TypeMapEntry.24408_to; char* to + }, ; 13732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24409_from, ; char* from + ptr @.TypeMapEntry.24410_to; char* to + }, ; 13733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24411_from, ; char* from + ptr @.TypeMapEntry.24412_to; char* to + }, ; 13734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24413_from, ; char* from + ptr @.TypeMapEntry.24414_to; char* to + }, ; 13735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24415_from, ; char* from + ptr @.TypeMapEntry.24416_to; char* to + }, ; 13736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24417_from, ; char* from + ptr @.TypeMapEntry.24418_to; char* to + }, ; 13737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24419_from, ; char* from + ptr @.TypeMapEntry.24420_to; char* to + }, ; 13738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24421_from, ; char* from + ptr @.TypeMapEntry.24420_to; char* to + }, ; 13739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24422_from, ; char* from + ptr @.TypeMapEntry.24423_to; char* to + }, ; 13740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24424_from, ; char* from + ptr @.TypeMapEntry.24425_to; char* to + }, ; 13741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24426_from, ; char* from + ptr @.TypeMapEntry.24425_to; char* to + }, ; 13742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24427_from, ; char* from + ptr @.TypeMapEntry.24428_to; char* to + }, ; 13743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24429_from, ; char* from + ptr @.TypeMapEntry.24430_to; char* to + }, ; 13744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24431_from, ; char* from + ptr @.TypeMapEntry.24432_to; char* to + }, ; 13745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24433_from, ; char* from + ptr @.TypeMapEntry.24434_to; char* to + }, ; 13746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24435_from, ; char* from + ptr @.TypeMapEntry.24436_to; char* to + }, ; 13747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24437_from, ; char* from + ptr @.TypeMapEntry.24438_to; char* to + }, ; 13748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24439_from, ; char* from + ptr @.TypeMapEntry.24440_to; char* to + }, ; 13749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24441_from, ; char* from + ptr @.TypeMapEntry.24442_to; char* to + }, ; 13750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24443_from, ; char* from + ptr @.TypeMapEntry.24444_to; char* to + }, ; 13751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24445_from, ; char* from + ptr @.TypeMapEntry.24446_to; char* to + }, ; 13752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24447_from, ; char* from + ptr @.TypeMapEntry.24448_to; char* to + }, ; 13753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24449_from, ; char* from + ptr @.TypeMapEntry.24450_to; char* to + }, ; 13754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24451_from, ; char* from + ptr @.TypeMapEntry.24452_to; char* to + }, ; 13755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24453_from, ; char* from + ptr @.TypeMapEntry.24454_to; char* to + }, ; 13756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24455_from, ; char* from + ptr @.TypeMapEntry.24456_to; char* to + }, ; 13757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24457_from, ; char* from + ptr @.TypeMapEntry.24458_to; char* to + }, ; 13758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24459_from, ; char* from + ptr @.TypeMapEntry.24460_to; char* to + }, ; 13759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24461_from, ; char* from + ptr @.TypeMapEntry.24462_to; char* to + }, ; 13760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24463_from, ; char* from + ptr @.TypeMapEntry.24464_to; char* to + }, ; 13761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24465_from, ; char* from + ptr @.TypeMapEntry.24466_to; char* to + }, ; 13762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24467_from, ; char* from + ptr @.TypeMapEntry.24468_to; char* to + }, ; 13763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24469_from, ; char* from + ptr @.TypeMapEntry.24470_to; char* to + }, ; 13764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24471_from, ; char* from + ptr @.TypeMapEntry.24472_to; char* to + }, ; 13765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24473_from, ; char* from + ptr @.TypeMapEntry.24474_to; char* to + }, ; 13766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24475_from, ; char* from + ptr @.TypeMapEntry.24476_to; char* to + }, ; 13767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24477_from, ; char* from + ptr @.TypeMapEntry.24478_to; char* to + }, ; 13768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24479_from, ; char* from + ptr @.TypeMapEntry.24480_to; char* to + }, ; 13769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24481_from, ; char* from + ptr @.TypeMapEntry.24482_to; char* to + }, ; 13770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24483_from, ; char* from + ptr @.TypeMapEntry.24482_to; char* to + }, ; 13771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24484_from, ; char* from + ptr @.TypeMapEntry.24485_to; char* to + }, ; 13772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24486_from, ; char* from + ptr @.TypeMapEntry.24485_to; char* to + }, ; 13773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24487_from, ; char* from + ptr @.TypeMapEntry.24488_to; char* to + }, ; 13774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24489_from, ; char* from + ptr @.TypeMapEntry.24488_to; char* to + }, ; 13775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24490_from, ; char* from + ptr @.TypeMapEntry.24491_to; char* to + }, ; 13776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24492_from, ; char* from + ptr @.TypeMapEntry.24491_to; char* to + }, ; 13777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24493_from, ; char* from + ptr @.TypeMapEntry.24494_to; char* to + }, ; 13778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24495_from, ; char* from + ptr @.TypeMapEntry.24496_to; char* to + }, ; 13779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24497_from, ; char* from + ptr @.TypeMapEntry.24498_to; char* to + }, ; 13780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24499_from, ; char* from + ptr @.TypeMapEntry.24500_to; char* to + }, ; 13781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24501_from, ; char* from + ptr @.TypeMapEntry.24502_to; char* to + }, ; 13782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24503_from, ; char* from + ptr @.TypeMapEntry.24504_to; char* to + }, ; 13783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24505_from, ; char* from + ptr @.TypeMapEntry.24506_to; char* to + }, ; 13784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24507_from, ; char* from + ptr @.TypeMapEntry.24508_to; char* to + }, ; 13785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24509_from, ; char* from + ptr @.TypeMapEntry.24510_to; char* to + }, ; 13786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24511_from, ; char* from + ptr @.TypeMapEntry.24512_to; char* to + }, ; 13787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24513_from, ; char* from + ptr @.TypeMapEntry.24514_to; char* to + }, ; 13788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24515_from, ; char* from + ptr @.TypeMapEntry.24516_to; char* to + }, ; 13789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24517_from, ; char* from + ptr @.TypeMapEntry.24516_to; char* to + }, ; 13790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24518_from, ; char* from + ptr @.TypeMapEntry.24519_to; char* to + }, ; 13791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24520_from, ; char* from + ptr @.TypeMapEntry.24519_to; char* to + }, ; 13792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24521_from, ; char* from + ptr @.TypeMapEntry.24522_to; char* to + }, ; 13793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24523_from, ; char* from + ptr @.TypeMapEntry.24522_to; char* to + }, ; 13794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24524_from, ; char* from + ptr @.TypeMapEntry.24525_to; char* to + }, ; 13795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24526_from, ; char* from + ptr @.TypeMapEntry.24525_to; char* to + }, ; 13796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24527_from, ; char* from + ptr @.TypeMapEntry.24528_to; char* to + }, ; 13797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24529_from, ; char* from + ptr @.TypeMapEntry.24530_to; char* to + }, ; 13798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24531_from, ; char* from + ptr @.TypeMapEntry.24532_to; char* to + }, ; 13799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24533_from, ; char* from + ptr @.TypeMapEntry.24534_to; char* to + }, ; 13800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24535_from, ; char* from + ptr @.TypeMapEntry.24536_to; char* to + }, ; 13801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24537_from, ; char* from + ptr @.TypeMapEntry.24538_to; char* to + }, ; 13802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24539_from, ; char* from + ptr @.TypeMapEntry.24540_to; char* to + }, ; 13803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24541_from, ; char* from + ptr @.TypeMapEntry.24542_to; char* to + }, ; 13804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24543_from, ; char* from + ptr @.TypeMapEntry.24542_to; char* to + }, ; 13805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24544_from, ; char* from + ptr @.TypeMapEntry.24545_to; char* to + }, ; 13806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24546_from, ; char* from + ptr @.TypeMapEntry.24545_to; char* to + }, ; 13807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24547_from, ; char* from + ptr @.TypeMapEntry.24548_to; char* to + }, ; 13808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24549_from, ; char* from + ptr @.TypeMapEntry.24548_to; char* to + }, ; 13809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24550_from, ; char* from + ptr @.TypeMapEntry.24551_to; char* to + }, ; 13810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24552_from, ; char* from + ptr @.TypeMapEntry.24551_to; char* to + }, ; 13811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24553_from, ; char* from + ptr @.TypeMapEntry.24554_to; char* to + }, ; 13812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24555_from, ; char* from + ptr @.TypeMapEntry.24554_to; char* to + }, ; 13813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24556_from, ; char* from + ptr @.TypeMapEntry.24557_to; char* to + }, ; 13814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24558_from, ; char* from + ptr @.TypeMapEntry.24557_to; char* to + }, ; 13815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24559_from, ; char* from + ptr @.TypeMapEntry.24560_to; char* to + }, ; 13816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24561_from, ; char* from + ptr @.TypeMapEntry.24560_to; char* to + }, ; 13817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24562_from, ; char* from + ptr @.TypeMapEntry.24563_to; char* to + }, ; 13818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24564_from, ; char* from + ptr @.TypeMapEntry.24563_to; char* to + }, ; 13819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24565_from, ; char* from + ptr @.TypeMapEntry.24566_to; char* to + }, ; 13820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24567_from, ; char* from + ptr @.TypeMapEntry.24566_to; char* to + }, ; 13821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24568_from, ; char* from + ptr @.TypeMapEntry.24569_to; char* to + }, ; 13822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24570_from, ; char* from + ptr @.TypeMapEntry.24569_to; char* to + }, ; 13823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24571_from, ; char* from + ptr @.TypeMapEntry.24572_to; char* to + }, ; 13824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24573_from, ; char* from + ptr @.TypeMapEntry.24572_to; char* to + }, ; 13825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24574_from, ; char* from + ptr @.TypeMapEntry.24575_to; char* to + }, ; 13826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24576_from, ; char* from + ptr @.TypeMapEntry.24575_to; char* to + }, ; 13827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24577_from, ; char* from + ptr @.TypeMapEntry.24578_to; char* to + }, ; 13828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24579_from, ; char* from + ptr @.TypeMapEntry.24578_to; char* to + }, ; 13829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24580_from, ; char* from + ptr @.TypeMapEntry.24581_to; char* to + }, ; 13830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24582_from, ; char* from + ptr @.TypeMapEntry.24581_to; char* to + }, ; 13831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24583_from, ; char* from + ptr @.TypeMapEntry.24584_to; char* to + }, ; 13832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24585_from, ; char* from + ptr @.TypeMapEntry.24584_to; char* to + }, ; 13833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24586_from, ; char* from + ptr @.TypeMapEntry.24587_to; char* to + }, ; 13834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24588_from, ; char* from + ptr @.TypeMapEntry.24587_to; char* to + }, ; 13835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24589_from, ; char* from + ptr @.TypeMapEntry.24590_to; char* to + }, ; 13836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24591_from, ; char* from + ptr @.TypeMapEntry.24592_to; char* to + }, ; 13837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24593_from, ; char* from + ptr @.TypeMapEntry.24594_to; char* to + }, ; 13838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24595_from, ; char* from + ptr @.TypeMapEntry.24596_to; char* to + }, ; 13839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24597_from, ; char* from + ptr @.TypeMapEntry.24598_to; char* to + }, ; 13840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24599_from, ; char* from + ptr @.TypeMapEntry.24600_to; char* to + }, ; 13841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24601_from, ; char* from + ptr @.TypeMapEntry.24602_to; char* to + }, ; 13842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24603_from, ; char* from + ptr @.TypeMapEntry.24604_to; char* to + }, ; 13843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24605_from, ; char* from + ptr @.TypeMapEntry.24606_to; char* to + }, ; 13844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24607_from, ; char* from + ptr @.TypeMapEntry.24608_to; char* to + }, ; 13845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24609_from, ; char* from + ptr @.TypeMapEntry.24610_to; char* to + }, ; 13846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24611_from, ; char* from + ptr @.TypeMapEntry.24612_to; char* to + }, ; 13847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24613_from, ; char* from + ptr @.TypeMapEntry.24614_to; char* to + }, ; 13848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24615_from, ; char* from + ptr @.TypeMapEntry.24616_to; char* to + }, ; 13849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24617_from, ; char* from + ptr @.TypeMapEntry.24618_to; char* to + }, ; 13850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24619_from, ; char* from + ptr @.TypeMapEntry.24620_to; char* to + }, ; 13851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24621_from, ; char* from + ptr @.TypeMapEntry.24622_to; char* to + }, ; 13852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24623_from, ; char* from + ptr @.TypeMapEntry.24624_to; char* to + }, ; 13853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24625_from, ; char* from + ptr @.TypeMapEntry.24626_to; char* to + }, ; 13854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24627_from, ; char* from + ptr @.TypeMapEntry.24626_to; char* to + }, ; 13855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24628_from, ; char* from + ptr @.TypeMapEntry.24624_to; char* to + }, ; 13856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24629_from, ; char* from + ptr @.TypeMapEntry.24630_to; char* to + }, ; 13857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24631_from, ; char* from + ptr @.TypeMapEntry.24630_to; char* to + }, ; 13858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24632_from, ; char* from + ptr @.TypeMapEntry.24633_to; char* to + }, ; 13859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24634_from, ; char* from + ptr @.TypeMapEntry.24633_to; char* to + }, ; 13860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24635_from, ; char* from + ptr @.TypeMapEntry.24636_to; char* to + }, ; 13861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24637_from, ; char* from + ptr @.TypeMapEntry.24636_to; char* to + }, ; 13862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24638_from, ; char* from + ptr @.TypeMapEntry.24639_to; char* to + }, ; 13863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24640_from, ; char* from + ptr @.TypeMapEntry.24639_to; char* to + }, ; 13864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24641_from, ; char* from + ptr @.TypeMapEntry.24642_to; char* to + }, ; 13865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24643_from, ; char* from + ptr @.TypeMapEntry.24644_to; char* to + }, ; 13866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24645_from, ; char* from + ptr @.TypeMapEntry.24646_to; char* to + }, ; 13867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24647_from, ; char* from + ptr @.TypeMapEntry.24646_to; char* to + }, ; 13868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24648_from, ; char* from + ptr @.TypeMapEntry.24649_to; char* to + }, ; 13869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24650_from, ; char* from + ptr @.TypeMapEntry.24649_to; char* to + }, ; 13870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24651_from, ; char* from + ptr @.TypeMapEntry.24652_to; char* to + }, ; 13871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24653_from, ; char* from + ptr @.TypeMapEntry.24652_to; char* to + }, ; 13872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24654_from, ; char* from + ptr @.TypeMapEntry.24655_to; char* to + }, ; 13873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24656_from, ; char* from + ptr @.TypeMapEntry.24655_to; char* to + }, ; 13874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24657_from, ; char* from + ptr @.TypeMapEntry.24658_to; char* to + }, ; 13875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24659_from, ; char* from + ptr @.TypeMapEntry.24660_to; char* to + }, ; 13876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24661_from, ; char* from + ptr @.TypeMapEntry.24662_to; char* to + }, ; 13877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24663_from, ; char* from + ptr @.TypeMapEntry.24664_to; char* to + }, ; 13878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24665_from, ; char* from + ptr @.TypeMapEntry.24666_to; char* to + }, ; 13879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24667_from, ; char* from + ptr @.TypeMapEntry.24668_to; char* to + }, ; 13880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24669_from, ; char* from + ptr @.TypeMapEntry.24670_to; char* to + }, ; 13881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24671_from, ; char* from + ptr @.TypeMapEntry.24672_to; char* to + }, ; 13882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24673_from, ; char* from + ptr @.TypeMapEntry.24674_to; char* to + }, ; 13883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24675_from, ; char* from + ptr @.TypeMapEntry.24674_to; char* to + }, ; 13884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24676_from, ; char* from + ptr @.TypeMapEntry.24677_to; char* to + }, ; 13885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24678_from, ; char* from + ptr @.TypeMapEntry.24679_to; char* to + }, ; 13886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24680_from, ; char* from + ptr @.TypeMapEntry.24679_to; char* to + }, ; 13887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24681_from, ; char* from + ptr @.TypeMapEntry.24682_to; char* to + }, ; 13888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24683_from, ; char* from + ptr @.TypeMapEntry.24684_to; char* to + }, ; 13889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24685_from, ; char* from + ptr @.TypeMapEntry.24686_to; char* to + }, ; 13890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24687_from, ; char* from + ptr @.TypeMapEntry.24688_to; char* to + }, ; 13891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24689_from, ; char* from + ptr @.TypeMapEntry.24690_to; char* to + }, ; 13892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24691_from, ; char* from + ptr @.TypeMapEntry.24692_to; char* to + }, ; 13893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24693_from, ; char* from + ptr @.TypeMapEntry.24694_to; char* to + }, ; 13894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24695_from, ; char* from + ptr @.TypeMapEntry.24694_to; char* to + }, ; 13895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24696_from, ; char* from + ptr @.TypeMapEntry.24697_to; char* to + }, ; 13896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24698_from, ; char* from + ptr @.TypeMapEntry.24697_to; char* to + }, ; 13897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24699_from, ; char* from + ptr @.TypeMapEntry.24700_to; char* to + }, ; 13898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24701_from, ; char* from + ptr @.TypeMapEntry.24700_to; char* to + }, ; 13899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24702_from, ; char* from + ptr @.TypeMapEntry.24703_to; char* to + }, ; 13900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24704_from, ; char* from + ptr @.TypeMapEntry.24703_to; char* to + }, ; 13901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24705_from, ; char* from + ptr @.TypeMapEntry.24706_to; char* to + }, ; 13902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24707_from, ; char* from + ptr @.TypeMapEntry.24708_to; char* to + }, ; 13903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24709_from, ; char* from + ptr @.TypeMapEntry.24710_to; char* to + }, ; 13904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24711_from, ; char* from + ptr @.TypeMapEntry.24710_to; char* to + }, ; 13905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24712_from, ; char* from + ptr @.TypeMapEntry.24713_to; char* to + }, ; 13906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24714_from, ; char* from + ptr @.TypeMapEntry.24713_to; char* to + }, ; 13907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24715_from, ; char* from + ptr @.TypeMapEntry.24716_to; char* to + }, ; 13908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24717_from, ; char* from + ptr @.TypeMapEntry.24716_to; char* to + }, ; 13909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24718_from, ; char* from + ptr @.TypeMapEntry.24719_to; char* to + }, ; 13910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24720_from, ; char* from + ptr @.TypeMapEntry.24721_to; char* to + }, ; 13911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24722_from, ; char* from + ptr @.TypeMapEntry.24723_to; char* to + }, ; 13912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24724_from, ; char* from + ptr @.TypeMapEntry.24725_to; char* to + }, ; 13913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24726_from, ; char* from + ptr @.TypeMapEntry.24727_to; char* to + }, ; 13914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24728_from, ; char* from + ptr @.TypeMapEntry.24729_to; char* to + }, ; 13915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24730_from, ; char* from + ptr @.TypeMapEntry.24731_to; char* to + }, ; 13916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24732_from, ; char* from + ptr @.TypeMapEntry.24733_to; char* to + }, ; 13917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24734_from, ; char* from + ptr @.TypeMapEntry.24735_to; char* to + }, ; 13918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24736_from, ; char* from + ptr @.TypeMapEntry.24735_to; char* to + }, ; 13919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24737_from, ; char* from + ptr @.TypeMapEntry.24738_to; char* to + }, ; 13920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24739_from, ; char* from + ptr @.TypeMapEntry.24738_to; char* to + }, ; 13921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24740_from, ; char* from + ptr @.TypeMapEntry.24741_to; char* to + }, ; 13922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24742_from, ; char* from + ptr @.TypeMapEntry.24743_to; char* to + }, ; 13923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24744_from, ; char* from + ptr @.TypeMapEntry.24745_to; char* to + }, ; 13924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24746_from, ; char* from + ptr @.TypeMapEntry.24747_to; char* to + }, ; 13925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24748_from, ; char* from + ptr @.TypeMapEntry.24749_to; char* to + }, ; 13926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24750_from, ; char* from + ptr @.TypeMapEntry.24749_to; char* to + }, ; 13927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24751_from, ; char* from + ptr @.TypeMapEntry.24752_to; char* to + }, ; 13928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24753_from, ; char* from + ptr @.TypeMapEntry.24754_to; char* to + }, ; 13929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24755_from, ; char* from + ptr @.TypeMapEntry.24754_to; char* to + }, ; 13930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24756_from, ; char* from + ptr @.TypeMapEntry.24752_to; char* to + }, ; 13931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24757_from, ; char* from + ptr @.TypeMapEntry.24758_to; char* to + }, ; 13932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24759_from, ; char* from + ptr @.TypeMapEntry.24760_to; char* to + }, ; 13933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24761_from, ; char* from + ptr @.TypeMapEntry.24760_to; char* to + }, ; 13934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24762_from, ; char* from + ptr @.TypeMapEntry.24758_to; char* to + }, ; 13935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24763_from, ; char* from + ptr @.TypeMapEntry.24764_to; char* to + }, ; 13936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24765_from, ; char* from + ptr @.TypeMapEntry.24766_to; char* to + }, ; 13937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24767_from, ; char* from + ptr @.TypeMapEntry.24768_to; char* to + }, ; 13938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24769_from, ; char* from + ptr @.TypeMapEntry.24770_to; char* to + }, ; 13939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24771_from, ; char* from + ptr @.TypeMapEntry.24772_to; char* to + }, ; 13940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24773_from, ; char* from + ptr @.TypeMapEntry.24774_to; char* to + }, ; 13941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24775_from, ; char* from + ptr @.TypeMapEntry.24776_to; char* to + }, ; 13942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24777_from, ; char* from + ptr @.TypeMapEntry.24778_to; char* to + }, ; 13943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24779_from, ; char* from + ptr @.TypeMapEntry.24780_to; char* to + }, ; 13944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24781_from, ; char* from + ptr @.TypeMapEntry.24782_to; char* to + }, ; 13945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24783_from, ; char* from + ptr @.TypeMapEntry.24784_to; char* to + }, ; 13946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24785_from, ; char* from + ptr @.TypeMapEntry.24786_to; char* to + }, ; 13947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24787_from, ; char* from + ptr @.TypeMapEntry.24788_to; char* to + }, ; 13948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24789_from, ; char* from + ptr @.TypeMapEntry.24790_to; char* to + }, ; 13949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24791_from, ; char* from + ptr @.TypeMapEntry.24792_to; char* to + }, ; 13950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24793_from, ; char* from + ptr @.TypeMapEntry.24794_to; char* to + }, ; 13951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24795_from, ; char* from + ptr @.TypeMapEntry.24796_to; char* to + }, ; 13952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24797_from, ; char* from + ptr @.TypeMapEntry.24798_to; char* to + }, ; 13953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24799_from, ; char* from + ptr @.TypeMapEntry.24800_to; char* to + }, ; 13954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24801_from, ; char* from + ptr @.TypeMapEntry.24800_to; char* to + }, ; 13955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24802_from, ; char* from + ptr @.TypeMapEntry.24803_to; char* to + }, ; 13956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24804_from, ; char* from + ptr @.TypeMapEntry.24803_to; char* to + }, ; 13957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24805_from, ; char* from + ptr @.TypeMapEntry.24806_to; char* to + }, ; 13958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24807_from, ; char* from + ptr @.TypeMapEntry.24808_to; char* to + }, ; 13959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24809_from, ; char* from + ptr @.TypeMapEntry.24810_to; char* to + }, ; 13960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24811_from, ; char* from + ptr @.TypeMapEntry.24812_to; char* to + }, ; 13961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24813_from, ; char* from + ptr @.TypeMapEntry.24814_to; char* to + }, ; 13962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24815_from, ; char* from + ptr @.TypeMapEntry.24816_to; char* to + }, ; 13963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24817_from, ; char* from + ptr @.TypeMapEntry.24818_to; char* to + }, ; 13964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24819_from, ; char* from + ptr @.TypeMapEntry.24820_to; char* to + }, ; 13965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24821_from, ; char* from + ptr @.TypeMapEntry.24822_to; char* to + }, ; 13966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24823_from, ; char* from + ptr @.TypeMapEntry.24824_to; char* to + }, ; 13967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24825_from, ; char* from + ptr @.TypeMapEntry.24826_to; char* to + }, ; 13968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24827_from, ; char* from + ptr @.TypeMapEntry.24828_to; char* to + }, ; 13969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24829_from, ; char* from + ptr @.TypeMapEntry.24830_to; char* to + }, ; 13970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24831_from, ; char* from + ptr @.TypeMapEntry.24832_to; char* to + }, ; 13971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24833_from, ; char* from + ptr @.TypeMapEntry.24834_to; char* to + }, ; 13972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24835_from, ; char* from + ptr @.TypeMapEntry.24836_to; char* to + }, ; 13973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24837_from, ; char* from + ptr @.TypeMapEntry.24838_to; char* to + }, ; 13974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24839_from, ; char* from + ptr @.TypeMapEntry.24840_to; char* to + }, ; 13975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24841_from, ; char* from + ptr @.TypeMapEntry.24842_to; char* to + }, ; 13976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24843_from, ; char* from + ptr @.TypeMapEntry.24844_to; char* to + }, ; 13977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24845_from, ; char* from + ptr @.TypeMapEntry.24844_to; char* to + }, ; 13978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24846_from, ; char* from + ptr @.TypeMapEntry.24847_to; char* to + }, ; 13979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24848_from, ; char* from + ptr @.TypeMapEntry.24847_to; char* to + }, ; 13980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24849_from, ; char* from + ptr @.TypeMapEntry.24850_to; char* to + }, ; 13981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24851_from, ; char* from + ptr @.TypeMapEntry.24850_to; char* to + }, ; 13982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24852_from, ; char* from + ptr @.TypeMapEntry.24853_to; char* to + }, ; 13983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24854_from, ; char* from + ptr @.TypeMapEntry.24855_to; char* to + }, ; 13984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24856_from, ; char* from + ptr @.TypeMapEntry.24857_to; char* to + }, ; 13985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24858_from, ; char* from + ptr @.TypeMapEntry.24859_to; char* to + }, ; 13986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24860_from, ; char* from + ptr @.TypeMapEntry.24861_to; char* to + }, ; 13987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24862_from, ; char* from + ptr @.TypeMapEntry.24863_to; char* to + }, ; 13988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24864_from, ; char* from + ptr @.TypeMapEntry.24865_to; char* to + }, ; 13989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24866_from, ; char* from + ptr @.TypeMapEntry.24865_to; char* to + }, ; 13990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24867_from, ; char* from + ptr @.TypeMapEntry.24868_to; char* to + }, ; 13991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24869_from, ; char* from + ptr @.TypeMapEntry.24868_to; char* to + }, ; 13992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24870_from, ; char* from + ptr @.TypeMapEntry.24871_to; char* to + }, ; 13993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24872_from, ; char* from + ptr @.TypeMapEntry.24873_to; char* to + }, ; 13994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24874_from, ; char* from + ptr @.TypeMapEntry.24875_to; char* to + }, ; 13995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24876_from, ; char* from + ptr @.TypeMapEntry.24877_to; char* to + }, ; 13996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24878_from, ; char* from + ptr @.TypeMapEntry.24879_to; char* to + }, ; 13997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24880_from, ; char* from + ptr @.TypeMapEntry.24879_to; char* to + }, ; 13998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24881_from, ; char* from + ptr @.TypeMapEntry.24882_to; char* to + }, ; 13999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24883_from, ; char* from + ptr @.TypeMapEntry.24882_to; char* to + }, ; 14000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24884_from, ; char* from + ptr @.TypeMapEntry.24885_to; char* to + }, ; 14001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24886_from, ; char* from + ptr @.TypeMapEntry.24887_to; char* to + }, ; 14002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24888_from, ; char* from + ptr @.TypeMapEntry.24889_to; char* to + }, ; 14003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24890_from, ; char* from + ptr @.TypeMapEntry.24891_to; char* to + }, ; 14004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24892_from, ; char* from + ptr @.TypeMapEntry.24893_to; char* to + }, ; 14005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24894_from, ; char* from + ptr @.TypeMapEntry.24893_to; char* to + }, ; 14006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24895_from, ; char* from + ptr @.TypeMapEntry.24863_to; char* to + }, ; 14007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24896_from, ; char* from + ptr @.TypeMapEntry.24897_to; char* to + }, ; 14008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24898_from, ; char* from + ptr @.TypeMapEntry.24899_to; char* to + }, ; 14009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24900_from, ; char* from + ptr @.TypeMapEntry.24901_to; char* to + }, ; 14010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24902_from, ; char* from + ptr @.TypeMapEntry.24903_to; char* to + }, ; 14011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24904_from, ; char* from + ptr @.TypeMapEntry.24905_to; char* to + }, ; 14012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24906_from, ; char* from + ptr @.TypeMapEntry.24907_to; char* to + }, ; 14013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24908_from, ; char* from + ptr @.TypeMapEntry.24909_to; char* to + }, ; 14014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24910_from, ; char* from + ptr @.TypeMapEntry.24911_to; char* to + }, ; 14015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24912_from, ; char* from + ptr @.TypeMapEntry.24913_to; char* to + }, ; 14016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24914_from, ; char* from + ptr @.TypeMapEntry.24915_to; char* to + }, ; 14017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24916_from, ; char* from + ptr @.TypeMapEntry.24917_to; char* to + }, ; 14018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24918_from, ; char* from + ptr @.TypeMapEntry.24919_to; char* to + }, ; 14019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24920_from, ; char* from + ptr @.TypeMapEntry.24921_to; char* to + }, ; 14020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24922_from, ; char* from + ptr @.TypeMapEntry.24923_to; char* to + }, ; 14021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24924_from, ; char* from + ptr @.TypeMapEntry.24925_to; char* to + }, ; 14022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24926_from, ; char* from + ptr @.TypeMapEntry.24927_to; char* to + }, ; 14023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24928_from, ; char* from + ptr @.TypeMapEntry.24929_to; char* to + }, ; 14024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24930_from, ; char* from + ptr @.TypeMapEntry.24931_to; char* to + }, ; 14025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24932_from, ; char* from + ptr @.TypeMapEntry.24933_to; char* to + }, ; 14026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24934_from, ; char* from + ptr @.TypeMapEntry.24935_to; char* to + }, ; 14027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24936_from, ; char* from + ptr @.TypeMapEntry.24937_to; char* to + }, ; 14028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24938_from, ; char* from + ptr @.TypeMapEntry.24939_to; char* to + }, ; 14029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24940_from, ; char* from + ptr @.TypeMapEntry.24941_to; char* to + }, ; 14030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24942_from, ; char* from + ptr @.TypeMapEntry.24943_to; char* to + }, ; 14031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24944_from, ; char* from + ptr @.TypeMapEntry.24945_to; char* to + }, ; 14032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24946_from, ; char* from + ptr @.TypeMapEntry.24947_to; char* to + }, ; 14033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24948_from, ; char* from + ptr @.TypeMapEntry.24949_to; char* to + }, ; 14034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24950_from, ; char* from + ptr @.TypeMapEntry.24949_to; char* to + }, ; 14035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24951_from, ; char* from + ptr @.TypeMapEntry.24947_to; char* to + }, ; 14036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24952_from, ; char* from + ptr @.TypeMapEntry.24953_to; char* to + }, ; 14037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24954_from, ; char* from + ptr @.TypeMapEntry.24953_to; char* to + }, ; 14038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24955_from, ; char* from + ptr @.TypeMapEntry.24956_to; char* to + }, ; 14039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24957_from, ; char* from + ptr @.TypeMapEntry.24958_to; char* to + }, ; 14040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24959_from, ; char* from + ptr @.TypeMapEntry.24960_to; char* to + }, ; 14041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24961_from, ; char* from + ptr @.TypeMapEntry.24962_to; char* to + }, ; 14042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24963_from, ; char* from + ptr @.TypeMapEntry.24964_to; char* to + }, ; 14043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24965_from, ; char* from + ptr @.TypeMapEntry.24966_to; char* to + }, ; 14044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24967_from, ; char* from + ptr @.TypeMapEntry.24968_to; char* to + }, ; 14045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24969_from, ; char* from + ptr @.TypeMapEntry.24970_to; char* to + }, ; 14046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24971_from, ; char* from + ptr @.TypeMapEntry.24972_to; char* to + }, ; 14047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24973_from, ; char* from + ptr @.TypeMapEntry.24972_to; char* to + }, ; 14048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24974_from, ; char* from + ptr @.TypeMapEntry.24975_to; char* to + }, ; 14049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24976_from, ; char* from + ptr @.TypeMapEntry.24977_to; char* to + }, ; 14050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24978_from, ; char* from + ptr @.TypeMapEntry.24977_to; char* to + }, ; 14051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24979_from, ; char* from + ptr @.TypeMapEntry.24980_to; char* to + }, ; 14052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24981_from, ; char* from + ptr @.TypeMapEntry.24982_to; char* to + }, ; 14053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24983_from, ; char* from + ptr @.TypeMapEntry.24984_to; char* to + }, ; 14054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24985_from, ; char* from + ptr @.TypeMapEntry.24986_to; char* to + }, ; 14055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24987_from, ; char* from + ptr @.TypeMapEntry.24986_to; char* to + }, ; 14056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24988_from, ; char* from + ptr @.TypeMapEntry.24989_to; char* to + }, ; 14057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24990_from, ; char* from + ptr @.TypeMapEntry.24991_to; char* to + }, ; 14058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24992_from, ; char* from + ptr @.TypeMapEntry.24993_to; char* to + }, ; 14059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24994_from, ; char* from + ptr @.TypeMapEntry.24995_to; char* to + }, ; 14060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24996_from, ; char* from + ptr @.TypeMapEntry.24997_to; char* to + }, ; 14061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24998_from, ; char* from + ptr @.TypeMapEntry.24999_to; char* to + }, ; 14062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25000_from, ; char* from + ptr @.TypeMapEntry.25001_to; char* to + }, ; 14063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25002_from, ; char* from + ptr @.TypeMapEntry.25003_to; char* to + }, ; 14064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25004_from, ; char* from + ptr @.TypeMapEntry.25005_to; char* to + }, ; 14065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25006_from, ; char* from + ptr @.TypeMapEntry.25007_to; char* to + }, ; 14066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25008_from, ; char* from + ptr @.TypeMapEntry.25009_to; char* to + }, ; 14067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25010_from, ; char* from + ptr @.TypeMapEntry.25011_to; char* to + }, ; 14068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25012_from, ; char* from + ptr @.TypeMapEntry.25013_to; char* to + }, ; 14069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25014_from, ; char* from + ptr @.TypeMapEntry.25015_to; char* to + }, ; 14070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25016_from, ; char* from + ptr @.TypeMapEntry.25017_to; char* to + }, ; 14071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25018_from, ; char* from + ptr @.TypeMapEntry.25019_to; char* to + }, ; 14072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25020_from, ; char* from + ptr @.TypeMapEntry.25021_to; char* to + }, ; 14073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25022_from, ; char* from + ptr @.TypeMapEntry.25021_to; char* to + }, ; 14074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25023_from, ; char* from + ptr @.TypeMapEntry.25024_to; char* to + }, ; 14075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25025_from, ; char* from + ptr @.TypeMapEntry.25026_to; char* to + }, ; 14076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25027_from, ; char* from + ptr @.TypeMapEntry.25028_to; char* to + }, ; 14077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25029_from, ; char* from + ptr @.TypeMapEntry.25030_to; char* to + }, ; 14078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25031_from, ; char* from + ptr @.TypeMapEntry.25032_to; char* to + }, ; 14079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25033_from, ; char* from + ptr @.TypeMapEntry.25034_to; char* to + }, ; 14080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25035_from, ; char* from + ptr @.TypeMapEntry.25036_to; char* to + }, ; 14081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25037_from, ; char* from + ptr @.TypeMapEntry.25038_to; char* to + }, ; 14082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25039_from, ; char* from + ptr @.TypeMapEntry.25038_to; char* to + }, ; 14083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25040_from, ; char* from + ptr @.TypeMapEntry.25041_to; char* to + }, ; 14084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25042_from, ; char* from + ptr @.TypeMapEntry.25043_to; char* to + }, ; 14085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25044_from, ; char* from + ptr @.TypeMapEntry.25043_to; char* to + }, ; 14086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25045_from, ; char* from + ptr @.TypeMapEntry.25046_to; char* to + }, ; 14087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25047_from, ; char* from + ptr @.TypeMapEntry.25046_to; char* to + }, ; 14088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25048_from, ; char* from + ptr @.TypeMapEntry.25049_to; char* to + }, ; 14089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25050_from, ; char* from + ptr @.TypeMapEntry.25051_to; char* to + }, ; 14090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25052_from, ; char* from + ptr @.TypeMapEntry.25053_to; char* to + }, ; 14091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25054_from, ; char* from + ptr @.TypeMapEntry.25055_to; char* to + }, ; 14092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25056_from, ; char* from + ptr @.TypeMapEntry.25057_to; char* to + }, ; 14093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25058_from, ; char* from + ptr @.TypeMapEntry.25059_to; char* to + }, ; 14094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25060_from, ; char* from + ptr @.TypeMapEntry.25061_to; char* to + }, ; 14095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25062_from, ; char* from + ptr @.TypeMapEntry.25063_to; char* to + }, ; 14096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25064_from, ; char* from + ptr @.TypeMapEntry.25065_to; char* to + }, ; 14097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25066_from, ; char* from + ptr @.TypeMapEntry.25067_to; char* to + }, ; 14098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25068_from, ; char* from + ptr @.TypeMapEntry.25069_to; char* to + }, ; 14099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25070_from, ; char* from + ptr @.TypeMapEntry.25071_to; char* to + }, ; 14100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25072_from, ; char* from + ptr @.TypeMapEntry.25073_to; char* to + }, ; 14101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25074_from, ; char* from + ptr @.TypeMapEntry.25075_to; char* to + }, ; 14102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25076_from, ; char* from + ptr @.TypeMapEntry.25077_to; char* to + }, ; 14103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25078_from, ; char* from + ptr @.TypeMapEntry.25079_to; char* to + }, ; 14104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25080_from, ; char* from + ptr @.TypeMapEntry.25081_to; char* to + }, ; 14105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25082_from, ; char* from + ptr @.TypeMapEntry.25083_to; char* to + }, ; 14106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25084_from, ; char* from + ptr @.TypeMapEntry.25085_to; char* to + }, ; 14107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25086_from, ; char* from + ptr @.TypeMapEntry.25087_to; char* to + }, ; 14108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25088_from, ; char* from + ptr @.TypeMapEntry.25089_to; char* to + }, ; 14109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25090_from, ; char* from + ptr @.TypeMapEntry.25091_to; char* to + }, ; 14110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25092_from, ; char* from + ptr @.TypeMapEntry.25093_to; char* to + }, ; 14111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25094_from, ; char* from + ptr @.TypeMapEntry.25095_to; char* to + }, ; 14112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25096_from, ; char* from + ptr @.TypeMapEntry.25097_to; char* to + }, ; 14113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25098_from, ; char* from + ptr @.TypeMapEntry.25099_to; char* to + }, ; 14114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25100_from, ; char* from + ptr @.TypeMapEntry.25101_to; char* to + }, ; 14115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25102_from, ; char* from + ptr @.TypeMapEntry.25103_to; char* to + }, ; 14116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25104_from, ; char* from + ptr @.TypeMapEntry.25105_to; char* to + }, ; 14117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25106_from, ; char* from + ptr @.TypeMapEntry.25107_to; char* to + }, ; 14118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25108_from, ; char* from + ptr @.TypeMapEntry.25109_to; char* to + }, ; 14119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25110_from, ; char* from + ptr @.TypeMapEntry.25111_to; char* to + }, ; 14120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25112_from, ; char* from + ptr @.TypeMapEntry.25113_to; char* to + }, ; 14121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25114_from, ; char* from + ptr @.TypeMapEntry.25115_to; char* to + }, ; 14122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25116_from, ; char* from + ptr @.TypeMapEntry.25117_to; char* to + }, ; 14123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25118_from, ; char* from + ptr @.TypeMapEntry.25119_to; char* to + }, ; 14124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25120_from, ; char* from + ptr @.TypeMapEntry.25121_to; char* to + }, ; 14125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25122_from, ; char* from + ptr @.TypeMapEntry.25123_to; char* to + }, ; 14126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25124_from, ; char* from + ptr @.TypeMapEntry.25125_to; char* to + }, ; 14127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25126_from, ; char* from + ptr @.TypeMapEntry.25127_to; char* to + }, ; 14128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25128_from, ; char* from + ptr @.TypeMapEntry.25129_to; char* to + }, ; 14129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25130_from, ; char* from + ptr @.TypeMapEntry.25131_to; char* to + }, ; 14130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25132_from, ; char* from + ptr @.TypeMapEntry.25133_to; char* to + }, ; 14131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25134_from, ; char* from + ptr @.TypeMapEntry.25135_to; char* to + }, ; 14132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25136_from, ; char* from + ptr @.TypeMapEntry.25137_to; char* to + }, ; 14133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25138_from, ; char* from + ptr @.TypeMapEntry.25139_to; char* to + }, ; 14134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25140_from, ; char* from + ptr @.TypeMapEntry.25141_to; char* to + }, ; 14135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25142_from, ; char* from + ptr @.TypeMapEntry.25143_to; char* to + }, ; 14136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25144_from, ; char* from + ptr @.TypeMapEntry.25145_to; char* to + }, ; 14137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25146_from, ; char* from + ptr @.TypeMapEntry.25147_to; char* to + }, ; 14138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25148_from, ; char* from + ptr @.TypeMapEntry.25149_to; char* to + }, ; 14139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25150_from, ; char* from + ptr @.TypeMapEntry.25151_to; char* to + }, ; 14140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25152_from, ; char* from + ptr @.TypeMapEntry.25153_to; char* to + }, ; 14141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25154_from, ; char* from + ptr @.TypeMapEntry.25155_to; char* to + }, ; 14142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25156_from, ; char* from + ptr @.TypeMapEntry.25157_to; char* to + }, ; 14143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25158_from, ; char* from + ptr @.TypeMapEntry.25159_to; char* to + }, ; 14144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25160_from, ; char* from + ptr @.TypeMapEntry.25161_to; char* to + }, ; 14145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25162_from, ; char* from + ptr @.TypeMapEntry.25163_to; char* to + }, ; 14146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25164_from, ; char* from + ptr @.TypeMapEntry.25165_to; char* to + }, ; 14147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25166_from, ; char* from + ptr @.TypeMapEntry.25167_to; char* to + }, ; 14148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25168_from, ; char* from + ptr @.TypeMapEntry.25169_to; char* to + }, ; 14149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25170_from, ; char* from + ptr @.TypeMapEntry.25171_to; char* to + }, ; 14150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25172_from, ; char* from + ptr @.TypeMapEntry.25173_to; char* to + }, ; 14151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25174_from, ; char* from + ptr @.TypeMapEntry.25175_to; char* to + }, ; 14152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25176_from, ; char* from + ptr @.TypeMapEntry.25177_to; char* to + }, ; 14153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25178_from, ; char* from + ptr @.TypeMapEntry.25179_to; char* to + }, ; 14154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25180_from, ; char* from + ptr @.TypeMapEntry.25181_to; char* to + }, ; 14155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25182_from, ; char* from + ptr @.TypeMapEntry.25183_to; char* to + }, ; 14156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25184_from, ; char* from + ptr @.TypeMapEntry.25185_to; char* to + }, ; 14157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25186_from, ; char* from + ptr @.TypeMapEntry.25187_to; char* to + }, ; 14158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25188_from, ; char* from + ptr @.TypeMapEntry.25189_to; char* to + }, ; 14159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25190_from, ; char* from + ptr @.TypeMapEntry.25191_to; char* to + }, ; 14160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25192_from, ; char* from + ptr @.TypeMapEntry.25193_to; char* to + }, ; 14161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25194_from, ; char* from + ptr @.TypeMapEntry.25195_to; char* to + }, ; 14162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25196_from, ; char* from + ptr @.TypeMapEntry.25197_to; char* to + }, ; 14163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25198_from, ; char* from + ptr @.TypeMapEntry.25199_to; char* to + }, ; 14164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25200_from, ; char* from + ptr @.TypeMapEntry.25201_to; char* to + }, ; 14165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25202_from, ; char* from + ptr @.TypeMapEntry.25203_to; char* to + }, ; 14166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25204_from, ; char* from + ptr @.TypeMapEntry.25205_to; char* to + }, ; 14167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25206_from, ; char* from + ptr @.TypeMapEntry.25207_to; char* to + }, ; 14168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25208_from, ; char* from + ptr @.TypeMapEntry.25209_to; char* to + }, ; 14169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25210_from, ; char* from + ptr @.TypeMapEntry.25211_to; char* to + }, ; 14170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25212_from, ; char* from + ptr @.TypeMapEntry.25213_to; char* to + }, ; 14171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25214_from, ; char* from + ptr @.TypeMapEntry.25215_to; char* to + }, ; 14172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25216_from, ; char* from + ptr @.TypeMapEntry.25217_to; char* to + }, ; 14173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25218_from, ; char* from + ptr @.TypeMapEntry.25219_to; char* to + }, ; 14174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25220_from, ; char* from + ptr @.TypeMapEntry.25221_to; char* to + }, ; 14175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25222_from, ; char* from + ptr @.TypeMapEntry.25223_to; char* to + }, ; 14176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25224_from, ; char* from + ptr @.TypeMapEntry.25225_to; char* to + }, ; 14177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25226_from, ; char* from + ptr @.TypeMapEntry.25227_to; char* to + }, ; 14178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25228_from, ; char* from + ptr @.TypeMapEntry.25229_to; char* to + }, ; 14179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25230_from, ; char* from + ptr @.TypeMapEntry.25231_to; char* to + }, ; 14180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25232_from, ; char* from + ptr @.TypeMapEntry.25233_to; char* to + }, ; 14181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25234_from, ; char* from + ptr @.TypeMapEntry.25235_to; char* to + }, ; 14182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25236_from, ; char* from + ptr @.TypeMapEntry.25237_to; char* to + }, ; 14183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25238_from, ; char* from + ptr @.TypeMapEntry.25239_to; char* to + }, ; 14184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25240_from, ; char* from + ptr @.TypeMapEntry.25241_to; char* to + }, ; 14185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25242_from, ; char* from + ptr @.TypeMapEntry.25243_to; char* to + }, ; 14186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25244_from, ; char* from + ptr @.TypeMapEntry.25245_to; char* to + }, ; 14187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25246_from, ; char* from + ptr @.TypeMapEntry.25247_to; char* to + }, ; 14188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25248_from, ; char* from + ptr @.TypeMapEntry.25249_to; char* to + }, ; 14189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25250_from, ; char* from + ptr @.TypeMapEntry.25251_to; char* to + }, ; 14190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25252_from, ; char* from + ptr @.TypeMapEntry.25253_to; char* to + }, ; 14191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25254_from, ; char* from + ptr @.TypeMapEntry.25255_to; char* to + }, ; 14192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25256_from, ; char* from + ptr @.TypeMapEntry.25257_to; char* to + }, ; 14193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25258_from, ; char* from + ptr @.TypeMapEntry.25259_to; char* to + }, ; 14194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25260_from, ; char* from + ptr @.TypeMapEntry.25261_to; char* to + }, ; 14195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25262_from, ; char* from + ptr @.TypeMapEntry.25263_to; char* to + }, ; 14196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25264_from, ; char* from + ptr @.TypeMapEntry.25265_to; char* to + }, ; 14197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25266_from, ; char* from + ptr @.TypeMapEntry.25267_to; char* to + }, ; 14198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25268_from, ; char* from + ptr @.TypeMapEntry.25269_to; char* to + }, ; 14199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25270_from, ; char* from + ptr @.TypeMapEntry.25271_to; char* to + }, ; 14200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25272_from, ; char* from + ptr @.TypeMapEntry.25273_to; char* to + }, ; 14201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25274_from, ; char* from + ptr @.TypeMapEntry.25275_to; char* to + }, ; 14202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25276_from, ; char* from + ptr @.TypeMapEntry.25277_to; char* to + }, ; 14203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25278_from, ; char* from + ptr @.TypeMapEntry.25279_to; char* to + }, ; 14204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25280_from, ; char* from + ptr @.TypeMapEntry.25281_to; char* to + }, ; 14205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25282_from, ; char* from + ptr @.TypeMapEntry.25283_to; char* to + }, ; 14206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25284_from, ; char* from + ptr @.TypeMapEntry.25285_to; char* to + }, ; 14207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25286_from, ; char* from + ptr @.TypeMapEntry.25287_to; char* to + }, ; 14208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25288_from, ; char* from + ptr @.TypeMapEntry.25289_to; char* to + }, ; 14209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25290_from, ; char* from + ptr @.TypeMapEntry.25291_to; char* to + }, ; 14210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25292_from, ; char* from + ptr @.TypeMapEntry.25293_to; char* to + }, ; 14211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25294_from, ; char* from + ptr @.TypeMapEntry.25295_to; char* to + }, ; 14212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25296_from, ; char* from + ptr @.TypeMapEntry.25297_to; char* to + }, ; 14213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25298_from, ; char* from + ptr @.TypeMapEntry.25299_to; char* to + }, ; 14214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25300_from, ; char* from + ptr @.TypeMapEntry.25301_to; char* to + }, ; 14215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25302_from, ; char* from + ptr @.TypeMapEntry.25303_to; char* to + }, ; 14216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25304_from, ; char* from + ptr @.TypeMapEntry.25305_to; char* to + }, ; 14217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25306_from, ; char* from + ptr @.TypeMapEntry.25307_to; char* to + }, ; 14218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25308_from, ; char* from + ptr @.TypeMapEntry.25309_to; char* to + }, ; 14219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25310_from, ; char* from + ptr @.TypeMapEntry.25311_to; char* to + }, ; 14220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25312_from, ; char* from + ptr @.TypeMapEntry.25313_to; char* to + }, ; 14221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25314_from, ; char* from + ptr @.TypeMapEntry.25315_to; char* to + }, ; 14222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25316_from, ; char* from + ptr @.TypeMapEntry.25317_to; char* to + }, ; 14223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25318_from, ; char* from + ptr @.TypeMapEntry.25319_to; char* to + }, ; 14224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25320_from, ; char* from + ptr @.TypeMapEntry.25321_to; char* to + }, ; 14225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25322_from, ; char* from + ptr @.TypeMapEntry.25321_to; char* to + }, ; 14226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25323_from, ; char* from + ptr @.TypeMapEntry.25324_to; char* to + }, ; 14227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25325_from, ; char* from + ptr @.TypeMapEntry.25324_to; char* to + }, ; 14228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25326_from, ; char* from + ptr @.TypeMapEntry.25327_to; char* to + }, ; 14229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25328_from, ; char* from + ptr @.TypeMapEntry.25327_to; char* to + }, ; 14230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25329_from, ; char* from + ptr @.TypeMapEntry.25330_to; char* to + }, ; 14231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25331_from, ; char* from + ptr @.TypeMapEntry.25330_to; char* to + }, ; 14232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25332_from, ; char* from + ptr @.TypeMapEntry.25333_to; char* to + }, ; 14233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25334_from, ; char* from + ptr @.TypeMapEntry.25333_to; char* to + }, ; 14234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25335_from, ; char* from + ptr @.TypeMapEntry.25336_to; char* to + }, ; 14235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25337_from, ; char* from + ptr @.TypeMapEntry.25336_to; char* to + }, ; 14236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25338_from, ; char* from + ptr @.TypeMapEntry.25339_to; char* to + }, ; 14237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25340_from, ; char* from + ptr @.TypeMapEntry.25339_to; char* to + }, ; 14238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25341_from, ; char* from + ptr @.TypeMapEntry.25342_to; char* to + }, ; 14239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25343_from, ; char* from + ptr @.TypeMapEntry.25342_to; char* to + }, ; 14240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25344_from, ; char* from + ptr @.TypeMapEntry.25345_to; char* to + }, ; 14241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25346_from, ; char* from + ptr @.TypeMapEntry.25345_to; char* to + }, ; 14242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25347_from, ; char* from + ptr @.TypeMapEntry.25348_to; char* to + }, ; 14243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25349_from, ; char* from + ptr @.TypeMapEntry.25348_to; char* to + }, ; 14244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25350_from, ; char* from + ptr @.TypeMapEntry.25351_to; char* to + }, ; 14245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25352_from, ; char* from + ptr @.TypeMapEntry.25351_to; char* to + }, ; 14246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25353_from, ; char* from + ptr @.TypeMapEntry.25354_to; char* to + }, ; 14247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25355_from, ; char* from + ptr @.TypeMapEntry.25354_to; char* to + }, ; 14248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25356_from, ; char* from + ptr @.TypeMapEntry.25357_to; char* to + }, ; 14249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25358_from, ; char* from + ptr @.TypeMapEntry.25357_to; char* to + }, ; 14250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25359_from, ; char* from + ptr @.TypeMapEntry.25360_to; char* to + }, ; 14251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25361_from, ; char* from + ptr @.TypeMapEntry.25360_to; char* to + }, ; 14252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25362_from, ; char* from + ptr @.TypeMapEntry.25363_to; char* to + }, ; 14253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25364_from, ; char* from + ptr @.TypeMapEntry.25363_to; char* to + }, ; 14254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25365_from, ; char* from + ptr @.TypeMapEntry.25366_to; char* to + }, ; 14255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25367_from, ; char* from + ptr @.TypeMapEntry.25366_to; char* to + }, ; 14256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25368_from, ; char* from + ptr @.TypeMapEntry.25369_to; char* to + }, ; 14257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25370_from, ; char* from + ptr @.TypeMapEntry.25369_to; char* to + }, ; 14258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25371_from, ; char* from + ptr @.TypeMapEntry.25372_to; char* to + }, ; 14259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25373_from, ; char* from + ptr @.TypeMapEntry.25372_to; char* to + }, ; 14260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25374_from, ; char* from + ptr @.TypeMapEntry.25375_to; char* to + }, ; 14261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25376_from, ; char* from + ptr @.TypeMapEntry.25375_to; char* to + }, ; 14262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25377_from, ; char* from + ptr @.TypeMapEntry.25378_to; char* to + }, ; 14263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25379_from, ; char* from + ptr @.TypeMapEntry.25378_to; char* to + }, ; 14264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25380_from, ; char* from + ptr @.TypeMapEntry.25381_to; char* to + }, ; 14265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25382_from, ; char* from + ptr @.TypeMapEntry.25381_to; char* to + }, ; 14266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25383_from, ; char* from + ptr @.TypeMapEntry.25384_to; char* to + }, ; 14267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25385_from, ; char* from + ptr @.TypeMapEntry.25384_to; char* to + }, ; 14268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25386_from, ; char* from + ptr @.TypeMapEntry.25387_to; char* to + }, ; 14269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25388_from, ; char* from + ptr @.TypeMapEntry.25387_to; char* to + }, ; 14270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25389_from, ; char* from + ptr @.TypeMapEntry.25390_to; char* to + }, ; 14271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25391_from, ; char* from + ptr @.TypeMapEntry.25390_to; char* to + }, ; 14272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25392_from, ; char* from + ptr @.TypeMapEntry.25393_to; char* to + }, ; 14273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25394_from, ; char* from + ptr @.TypeMapEntry.25393_to; char* to + }, ; 14274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25395_from, ; char* from + ptr @.TypeMapEntry.25396_to; char* to + }, ; 14275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25397_from, ; char* from + ptr @.TypeMapEntry.25396_to; char* to + }, ; 14276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25398_from, ; char* from + ptr @.TypeMapEntry.25399_to; char* to + }, ; 14277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25400_from, ; char* from + ptr @.TypeMapEntry.25399_to; char* to + }, ; 14278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25401_from, ; char* from + ptr @.TypeMapEntry.25402_to; char* to + }, ; 14279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25403_from, ; char* from + ptr @.TypeMapEntry.25402_to; char* to + }, ; 14280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25404_from, ; char* from + ptr @.TypeMapEntry.25405_to; char* to + }, ; 14281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25406_from, ; char* from + ptr @.TypeMapEntry.25405_to; char* to + }, ; 14282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25407_from, ; char* from + ptr @.TypeMapEntry.25408_to; char* to + }, ; 14283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25409_from, ; char* from + ptr @.TypeMapEntry.25408_to; char* to + }, ; 14284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25410_from, ; char* from + ptr @.TypeMapEntry.25411_to; char* to + }, ; 14285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25412_from, ; char* from + ptr @.TypeMapEntry.25411_to; char* to + }, ; 14286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25413_from, ; char* from + ptr @.TypeMapEntry.25414_to; char* to + }, ; 14287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25415_from, ; char* from + ptr @.TypeMapEntry.25414_to; char* to + }, ; 14288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25416_from, ; char* from + ptr @.TypeMapEntry.25417_to; char* to + }, ; 14289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25418_from, ; char* from + ptr @.TypeMapEntry.25417_to; char* to + }, ; 14290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25419_from, ; char* from + ptr @.TypeMapEntry.25420_to; char* to + }, ; 14291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25421_from, ; char* from + ptr @.TypeMapEntry.25420_to; char* to + }, ; 14292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25422_from, ; char* from + ptr @.TypeMapEntry.25423_to; char* to + }, ; 14293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25424_from, ; char* from + ptr @.TypeMapEntry.25423_to; char* to + }, ; 14294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25425_from, ; char* from + ptr @.TypeMapEntry.25426_to; char* to + }, ; 14295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25427_from, ; char* from + ptr @.TypeMapEntry.25426_to; char* to + }, ; 14296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25428_from, ; char* from + ptr @.TypeMapEntry.25429_to; char* to + }, ; 14297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25430_from, ; char* from + ptr @.TypeMapEntry.25429_to; char* to + }, ; 14298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25431_from, ; char* from + ptr @.TypeMapEntry.25432_to; char* to + }, ; 14299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25433_from, ; char* from + ptr @.TypeMapEntry.25432_to; char* to + }, ; 14300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25434_from, ; char* from + ptr @.TypeMapEntry.25435_to; char* to + }, ; 14301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25436_from, ; char* from + ptr @.TypeMapEntry.25435_to; char* to + }, ; 14302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25437_from, ; char* from + ptr @.TypeMapEntry.25438_to; char* to + }, ; 14303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25439_from, ; char* from + ptr @.TypeMapEntry.25438_to; char* to + }, ; 14304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25440_from, ; char* from + ptr @.TypeMapEntry.25441_to; char* to + }, ; 14305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25442_from, ; char* from + ptr @.TypeMapEntry.25441_to; char* to + }, ; 14306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25443_from, ; char* from + ptr @.TypeMapEntry.25444_to; char* to + }, ; 14307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25445_from, ; char* from + ptr @.TypeMapEntry.25444_to; char* to + }, ; 14308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25446_from, ; char* from + ptr @.TypeMapEntry.25447_to; char* to + }, ; 14309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25448_from, ; char* from + ptr @.TypeMapEntry.25447_to; char* to + }, ; 14310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25449_from, ; char* from + ptr @.TypeMapEntry.25450_to; char* to + }, ; 14311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25451_from, ; char* from + ptr @.TypeMapEntry.25450_to; char* to + }, ; 14312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25452_from, ; char* from + ptr @.TypeMapEntry.25453_to; char* to + }, ; 14313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25454_from, ; char* from + ptr @.TypeMapEntry.25453_to; char* to + }, ; 14314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25455_from, ; char* from + ptr @.TypeMapEntry.25456_to; char* to + }, ; 14315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25457_from, ; char* from + ptr @.TypeMapEntry.25456_to; char* to + }, ; 14316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25458_from, ; char* from + ptr @.TypeMapEntry.25459_to; char* to + }, ; 14317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25460_from, ; char* from + ptr @.TypeMapEntry.25459_to; char* to + }, ; 14318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25461_from, ; char* from + ptr @.TypeMapEntry.25462_to; char* to + }, ; 14319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25463_from, ; char* from + ptr @.TypeMapEntry.25462_to; char* to + }, ; 14320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25464_from, ; char* from + ptr @.TypeMapEntry.25465_to; char* to + }, ; 14321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25466_from, ; char* from + ptr @.TypeMapEntry.25465_to; char* to + }, ; 14322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25467_from, ; char* from + ptr @.TypeMapEntry.25468_to; char* to + }, ; 14323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25469_from, ; char* from + ptr @.TypeMapEntry.25468_to; char* to + }, ; 14324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25470_from, ; char* from + ptr @.TypeMapEntry.25471_to; char* to + }, ; 14325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25472_from, ; char* from + ptr @.TypeMapEntry.25471_to; char* to + }, ; 14326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25473_from, ; char* from + ptr @.TypeMapEntry.25474_to; char* to + }, ; 14327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25475_from, ; char* from + ptr @.TypeMapEntry.25474_to; char* to + }, ; 14328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25476_from, ; char* from + ptr @.TypeMapEntry.25477_to; char* to + }, ; 14329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25478_from, ; char* from + ptr @.TypeMapEntry.25477_to; char* to + }, ; 14330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25479_from, ; char* from + ptr @.TypeMapEntry.25480_to; char* to + }, ; 14331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25481_from, ; char* from + ptr @.TypeMapEntry.25480_to; char* to + }, ; 14332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25482_from, ; char* from + ptr @.TypeMapEntry.25483_to; char* to + }, ; 14333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25484_from, ; char* from + ptr @.TypeMapEntry.25483_to; char* to + }, ; 14334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25485_from, ; char* from + ptr @.TypeMapEntry.25486_to; char* to + }, ; 14335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25487_from, ; char* from + ptr @.TypeMapEntry.25486_to; char* to + }, ; 14336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25488_from, ; char* from + ptr @.TypeMapEntry.25489_to; char* to + }, ; 14337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25490_from, ; char* from + ptr @.TypeMapEntry.25489_to; char* to + }, ; 14338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25491_from, ; char* from + ptr @.TypeMapEntry.25492_to; char* to + }, ; 14339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25493_from, ; char* from + ptr @.TypeMapEntry.25492_to; char* to + }, ; 14340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25494_from, ; char* from + ptr @.TypeMapEntry.25495_to; char* to + }, ; 14341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25496_from, ; char* from + ptr @.TypeMapEntry.25495_to; char* to + }, ; 14342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25497_from, ; char* from + ptr @.TypeMapEntry.25498_to; char* to + }, ; 14343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25499_from, ; char* from + ptr @.TypeMapEntry.25498_to; char* to + }, ; 14344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25500_from, ; char* from + ptr @.TypeMapEntry.25501_to; char* to + }, ; 14345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25502_from, ; char* from + ptr @.TypeMapEntry.25501_to; char* to + }, ; 14346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25503_from, ; char* from + ptr @.TypeMapEntry.25504_to; char* to + }, ; 14347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25505_from, ; char* from + ptr @.TypeMapEntry.25504_to; char* to + }, ; 14348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25506_from, ; char* from + ptr @.TypeMapEntry.25507_to; char* to + }, ; 14349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25508_from, ; char* from + ptr @.TypeMapEntry.25507_to; char* to + }, ; 14350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25509_from, ; char* from + ptr @.TypeMapEntry.25510_to; char* to + }, ; 14351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25511_from, ; char* from + ptr @.TypeMapEntry.25510_to; char* to + }, ; 14352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25512_from, ; char* from + ptr @.TypeMapEntry.25513_to; char* to + }, ; 14353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25514_from, ; char* from + ptr @.TypeMapEntry.25513_to; char* to + }, ; 14354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25515_from, ; char* from + ptr @.TypeMapEntry.25516_to; char* to + }, ; 14355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25517_from, ; char* from + ptr @.TypeMapEntry.25516_to; char* to + }, ; 14356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25518_from, ; char* from + ptr @.TypeMapEntry.25519_to; char* to + }, ; 14357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25520_from, ; char* from + ptr @.TypeMapEntry.25519_to; char* to + }, ; 14358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25521_from, ; char* from + ptr @.TypeMapEntry.25522_to; char* to + }, ; 14359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25523_from, ; char* from + ptr @.TypeMapEntry.25522_to; char* to + }, ; 14360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25524_from, ; char* from + ptr @.TypeMapEntry.25525_to; char* to + }, ; 14361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25526_from, ; char* from + ptr @.TypeMapEntry.25525_to; char* to + }, ; 14362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25527_from, ; char* from + ptr @.TypeMapEntry.25528_to; char* to + }, ; 14363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25529_from, ; char* from + ptr @.TypeMapEntry.25528_to; char* to + }, ; 14364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25530_from, ; char* from + ptr @.TypeMapEntry.25531_to; char* to + }, ; 14365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25532_from, ; char* from + ptr @.TypeMapEntry.25531_to; char* to + }, ; 14366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25533_from, ; char* from + ptr @.TypeMapEntry.25534_to; char* to + }, ; 14367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25535_from, ; char* from + ptr @.TypeMapEntry.25534_to; char* to + }, ; 14368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25536_from, ; char* from + ptr @.TypeMapEntry.25537_to; char* to + }, ; 14369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25538_from, ; char* from + ptr @.TypeMapEntry.25537_to; char* to + }, ; 14370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25539_from, ; char* from + ptr @.TypeMapEntry.25540_to; char* to + }, ; 14371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25541_from, ; char* from + ptr @.TypeMapEntry.25540_to; char* to + }, ; 14372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25542_from, ; char* from + ptr @.TypeMapEntry.25543_to; char* to + }, ; 14373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25544_from, ; char* from + ptr @.TypeMapEntry.25543_to; char* to + }, ; 14374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25545_from, ; char* from + ptr @.TypeMapEntry.25546_to; char* to + }, ; 14375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25547_from, ; char* from + ptr @.TypeMapEntry.25546_to; char* to + }, ; 14376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25548_from, ; char* from + ptr @.TypeMapEntry.25549_to; char* to + }, ; 14377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25550_from, ; char* from + ptr @.TypeMapEntry.25549_to; char* to + }, ; 14378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25551_from, ; char* from + ptr @.TypeMapEntry.25552_to; char* to + }, ; 14379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25553_from, ; char* from + ptr @.TypeMapEntry.25552_to; char* to + }, ; 14380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25554_from, ; char* from + ptr @.TypeMapEntry.25555_to; char* to + }, ; 14381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25556_from, ; char* from + ptr @.TypeMapEntry.25555_to; char* to + }, ; 14382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25557_from, ; char* from + ptr @.TypeMapEntry.25558_to; char* to + }, ; 14383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25559_from, ; char* from + ptr @.TypeMapEntry.25558_to; char* to + }, ; 14384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25560_from, ; char* from + ptr @.TypeMapEntry.25561_to; char* to + }, ; 14385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25562_from, ; char* from + ptr @.TypeMapEntry.25561_to; char* to + }, ; 14386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25563_from, ; char* from + ptr @.TypeMapEntry.25564_to; char* to + }, ; 14387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25565_from, ; char* from + ptr @.TypeMapEntry.25564_to; char* to + }, ; 14388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25566_from, ; char* from + ptr @.TypeMapEntry.25567_to; char* to + }, ; 14389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25568_from, ; char* from + ptr @.TypeMapEntry.25567_to; char* to + }, ; 14390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25569_from, ; char* from + ptr @.TypeMapEntry.25570_to; char* to + }, ; 14391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25571_from, ; char* from + ptr @.TypeMapEntry.25570_to; char* to + }, ; 14392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25572_from, ; char* from + ptr @.TypeMapEntry.25573_to; char* to + }, ; 14393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25574_from, ; char* from + ptr @.TypeMapEntry.25573_to; char* to + }, ; 14394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25575_from, ; char* from + ptr @.TypeMapEntry.25576_to; char* to + }, ; 14395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25577_from, ; char* from + ptr @.TypeMapEntry.25576_to; char* to + }, ; 14396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25578_from, ; char* from + ptr @.TypeMapEntry.25579_to; char* to + }, ; 14397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25580_from, ; char* from + ptr @.TypeMapEntry.25579_to; char* to + }, ; 14398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25581_from, ; char* from + ptr @.TypeMapEntry.25582_to; char* to + }, ; 14399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25583_from, ; char* from + ptr @.TypeMapEntry.25582_to; char* to + }, ; 14400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25584_from, ; char* from + ptr @.TypeMapEntry.25585_to; char* to + }, ; 14401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25586_from, ; char* from + ptr @.TypeMapEntry.25585_to; char* to + }, ; 14402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25587_from, ; char* from + ptr @.TypeMapEntry.25588_to; char* to + }, ; 14403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25589_from, ; char* from + ptr @.TypeMapEntry.25588_to; char* to + }, ; 14404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25590_from, ; char* from + ptr @.TypeMapEntry.25591_to; char* to + }, ; 14405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25592_from, ; char* from + ptr @.TypeMapEntry.25591_to; char* to + }, ; 14406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25593_from, ; char* from + ptr @.TypeMapEntry.25594_to; char* to + }, ; 14407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25595_from, ; char* from + ptr @.TypeMapEntry.25596_to; char* to + }, ; 14408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25597_from, ; char* from + ptr @.TypeMapEntry.25598_to; char* to + }, ; 14409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25599_from, ; char* from + ptr @.TypeMapEntry.25600_to; char* to + }, ; 14410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25601_from, ; char* from + ptr @.TypeMapEntry.25602_to; char* to + }, ; 14411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25603_from, ; char* from + ptr @.TypeMapEntry.25604_to; char* to + }, ; 14412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25605_from, ; char* from + ptr @.TypeMapEntry.25606_to; char* to + }, ; 14413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25607_from, ; char* from + ptr @.TypeMapEntry.25608_to; char* to + }, ; 14414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25609_from, ; char* from + ptr @.TypeMapEntry.25610_to; char* to + }, ; 14415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25611_from, ; char* from + ptr @.TypeMapEntry.25612_to; char* to + }, ; 14416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25613_from, ; char* from + ptr @.TypeMapEntry.25612_to; char* to + }, ; 14417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25614_from, ; char* from + ptr @.TypeMapEntry.25615_to; char* to + }, ; 14418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25616_from, ; char* from + ptr @.TypeMapEntry.25617_to; char* to + }, ; 14419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25618_from, ; char* from + ptr @.TypeMapEntry.25619_to; char* to + }, ; 14420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25620_from, ; char* from + ptr @.TypeMapEntry.25621_to; char* to + }, ; 14421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25622_from, ; char* from + ptr @.TypeMapEntry.25623_to; char* to + }, ; 14422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25624_from, ; char* from + ptr @.TypeMapEntry.25625_to; char* to + }, ; 14423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25626_from, ; char* from + ptr @.TypeMapEntry.25627_to; char* to + }, ; 14424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25628_from, ; char* from + ptr @.TypeMapEntry.25627_to; char* to + }, ; 14425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25629_from, ; char* from + ptr @.TypeMapEntry.25630_to; char* to + }, ; 14426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25631_from, ; char* from + ptr @.TypeMapEntry.25632_to; char* to + }, ; 14427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25633_from, ; char* from + ptr @.TypeMapEntry.25634_to; char* to + }, ; 14428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25635_from, ; char* from + ptr @.TypeMapEntry.25636_to; char* to + }, ; 14429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25637_from, ; char* from + ptr @.TypeMapEntry.25638_to; char* to + }, ; 14430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25639_from, ; char* from + ptr @.TypeMapEntry.25640_to; char* to + }, ; 14431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25641_from, ; char* from + ptr @.TypeMapEntry.25642_to; char* to + }, ; 14432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25643_from, ; char* from + ptr @.TypeMapEntry.25644_to; char* to + }, ; 14433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25645_from, ; char* from + ptr @.TypeMapEntry.25646_to; char* to + }, ; 14434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25647_from, ; char* from + ptr @.TypeMapEntry.25648_to; char* to + }, ; 14435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25649_from, ; char* from + ptr @.TypeMapEntry.25650_to; char* to + }, ; 14436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25651_from, ; char* from + ptr @.TypeMapEntry.25652_to; char* to + }, ; 14437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25653_from, ; char* from + ptr @.TypeMapEntry.25654_to; char* to + }, ; 14438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25655_from, ; char* from + ptr @.TypeMapEntry.25654_to; char* to + }, ; 14439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25656_from, ; char* from + ptr @.TypeMapEntry.25657_to; char* to + }, ; 14440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25658_from, ; char* from + ptr @.TypeMapEntry.25659_to; char* to + }, ; 14441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25660_from, ; char* from + ptr @.TypeMapEntry.25661_to; char* to + }, ; 14442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25662_from, ; char* from + ptr @.TypeMapEntry.25663_to; char* to + }, ; 14443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25664_from, ; char* from + ptr @.TypeMapEntry.25665_to; char* to + }, ; 14444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25666_from, ; char* from + ptr @.TypeMapEntry.25667_to; char* to + }, ; 14445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25668_from, ; char* from + ptr @.TypeMapEntry.25669_to; char* to + }, ; 14446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25670_from, ; char* from + ptr @.TypeMapEntry.25671_to; char* to + }, ; 14447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25672_from, ; char* from + ptr @.TypeMapEntry.25673_to; char* to + }, ; 14448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25674_from, ; char* from + ptr @.TypeMapEntry.25675_to; char* to + }, ; 14449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25676_from, ; char* from + ptr @.TypeMapEntry.25677_to; char* to + }, ; 14450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25678_from, ; char* from + ptr @.TypeMapEntry.25677_to; char* to + }, ; 14451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25679_from, ; char* from + ptr @.TypeMapEntry.25680_to; char* to + }, ; 14452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25681_from, ; char* from + ptr @.TypeMapEntry.25682_to; char* to + }, ; 14453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25683_from, ; char* from + ptr @.TypeMapEntry.25684_to; char* to + }, ; 14454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25685_from, ; char* from + ptr @.TypeMapEntry.25686_to; char* to + }, ; 14455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25687_from, ; char* from + ptr @.TypeMapEntry.25688_to; char* to + }, ; 14456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25689_from, ; char* from + ptr @.TypeMapEntry.25690_to; char* to + }, ; 14457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25691_from, ; char* from + ptr @.TypeMapEntry.25692_to; char* to + }, ; 14458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25693_from, ; char* from + ptr @.TypeMapEntry.25694_to; char* to + }, ; 14459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25695_from, ; char* from + ptr @.TypeMapEntry.25696_to; char* to + }, ; 14460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25697_from, ; char* from + ptr @.TypeMapEntry.25698_to; char* to + }, ; 14461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25699_from, ; char* from + ptr @.TypeMapEntry.25700_to; char* to + }, ; 14462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25701_from, ; char* from + ptr @.TypeMapEntry.25700_to; char* to + }, ; 14463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25702_from, ; char* from + ptr @.TypeMapEntry.25703_to; char* to + }, ; 14464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25704_from, ; char* from + ptr @.TypeMapEntry.25705_to; char* to + }, ; 14465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25706_from, ; char* from + ptr @.TypeMapEntry.25707_to; char* to + }, ; 14466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25708_from, ; char* from + ptr @.TypeMapEntry.25709_to; char* to + }, ; 14467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25710_from, ; char* from + ptr @.TypeMapEntry.25711_to; char* to + }, ; 14468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25712_from, ; char* from + ptr @.TypeMapEntry.25711_to; char* to + }, ; 14469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25713_from, ; char* from + ptr @.TypeMapEntry.25714_to; char* to + }, ; 14470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25715_from, ; char* from + ptr @.TypeMapEntry.25716_to; char* to + }, ; 14471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25717_from, ; char* from + ptr @.TypeMapEntry.25718_to; char* to + }, ; 14472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25719_from, ; char* from + ptr @.TypeMapEntry.25720_to; char* to + }, ; 14473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25721_from, ; char* from + ptr @.TypeMapEntry.25722_to; char* to + }, ; 14474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25723_from, ; char* from + ptr @.TypeMapEntry.25724_to; char* to + }, ; 14475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25725_from, ; char* from + ptr @.TypeMapEntry.25726_to; char* to + }, ; 14476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25727_from, ; char* from + ptr @.TypeMapEntry.25728_to; char* to + }, ; 14477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25729_from, ; char* from + ptr @.TypeMapEntry.25730_to; char* to + }, ; 14478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25731_from, ; char* from + ptr @.TypeMapEntry.25732_to; char* to + }, ; 14479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25733_from, ; char* from + ptr @.TypeMapEntry.25734_to; char* to + }, ; 14480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25735_from, ; char* from + ptr @.TypeMapEntry.25736_to; char* to + }, ; 14481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25737_from, ; char* from + ptr @.TypeMapEntry.25738_to; char* to + }, ; 14482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25739_from, ; char* from + ptr @.TypeMapEntry.25740_to; char* to + }, ; 14483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25741_from, ; char* from + ptr @.TypeMapEntry.25742_to; char* to + }, ; 14484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25743_from, ; char* from + ptr @.TypeMapEntry.25744_to; char* to + }, ; 14485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25745_from, ; char* from + ptr @.TypeMapEntry.25746_to; char* to + }, ; 14486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25747_from, ; char* from + ptr @.TypeMapEntry.25748_to; char* to + }, ; 14487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25749_from, ; char* from + ptr @.TypeMapEntry.25750_to; char* to + }, ; 14488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25751_from, ; char* from + ptr @.TypeMapEntry.25752_to; char* to + }, ; 14489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25753_from, ; char* from + ptr @.TypeMapEntry.25754_to; char* to + }, ; 14490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25755_from, ; char* from + ptr @.TypeMapEntry.25756_to; char* to + }, ; 14491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25757_from, ; char* from + ptr @.TypeMapEntry.25758_to; char* to + }, ; 14492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25759_from, ; char* from + ptr @.TypeMapEntry.25760_to; char* to + }, ; 14493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25761_from, ; char* from + ptr @.TypeMapEntry.25762_to; char* to + }, ; 14494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25763_from, ; char* from + ptr @.TypeMapEntry.25764_to; char* to + }, ; 14495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25765_from, ; char* from + ptr @.TypeMapEntry.25766_to; char* to + }, ; 14496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25767_from, ; char* from + ptr @.TypeMapEntry.25768_to; char* to + }, ; 14497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25769_from, ; char* from + ptr @.TypeMapEntry.25770_to; char* to + }, ; 14498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25771_from, ; char* from + ptr @.TypeMapEntry.25772_to; char* to + }, ; 14499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25773_from, ; char* from + ptr @.TypeMapEntry.25774_to; char* to + }, ; 14500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25775_from, ; char* from + ptr @.TypeMapEntry.25776_to; char* to + }, ; 14501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25777_from, ; char* from + ptr @.TypeMapEntry.25778_to; char* to + }, ; 14502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25779_from, ; char* from + ptr @.TypeMapEntry.25780_to; char* to + }, ; 14503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25781_from, ; char* from + ptr @.TypeMapEntry.25782_to; char* to + }, ; 14504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25783_from, ; char* from + ptr @.TypeMapEntry.25784_to; char* to + }, ; 14505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25785_from, ; char* from + ptr @.TypeMapEntry.25786_to; char* to + }, ; 14506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25787_from, ; char* from + ptr @.TypeMapEntry.25788_to; char* to + }, ; 14507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25789_from, ; char* from + ptr @.TypeMapEntry.25790_to; char* to + }, ; 14508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25791_from, ; char* from + ptr @.TypeMapEntry.25792_to; char* to + }, ; 14509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25793_from, ; char* from + ptr @.TypeMapEntry.25794_to; char* to + }, ; 14510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25795_from, ; char* from + ptr @.TypeMapEntry.25796_to; char* to + }, ; 14511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25797_from, ; char* from + ptr @.TypeMapEntry.25798_to; char* to + }, ; 14512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25799_from, ; char* from + ptr @.TypeMapEntry.25800_to; char* to + }, ; 14513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25801_from, ; char* from + ptr @.TypeMapEntry.25802_to; char* to + }, ; 14514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25803_from, ; char* from + ptr @.TypeMapEntry.25804_to; char* to + }, ; 14515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25805_from, ; char* from + ptr @.TypeMapEntry.25806_to; char* to + }, ; 14516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25807_from, ; char* from + ptr @.TypeMapEntry.25808_to; char* to + }, ; 14517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25809_from, ; char* from + ptr @.TypeMapEntry.25810_to; char* to + }, ; 14518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25811_from, ; char* from + ptr @.TypeMapEntry.25812_to; char* to + }, ; 14519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25813_from, ; char* from + ptr @.TypeMapEntry.25814_to; char* to + }, ; 14520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25815_from, ; char* from + ptr @.TypeMapEntry.25816_to; char* to + }, ; 14521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25817_from, ; char* from + ptr @.TypeMapEntry.25818_to; char* to + }, ; 14522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25819_from, ; char* from + ptr @.TypeMapEntry.25820_to; char* to + }, ; 14523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25821_from, ; char* from + ptr @.TypeMapEntry.25822_to; char* to + }, ; 14524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25823_from, ; char* from + ptr @.TypeMapEntry.25824_to; char* to + }, ; 14525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25825_from, ; char* from + ptr @.TypeMapEntry.25826_to; char* to + }, ; 14526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25827_from, ; char* from + ptr @.TypeMapEntry.25828_to; char* to + }, ; 14527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25829_from, ; char* from + ptr @.TypeMapEntry.25830_to; char* to + }, ; 14528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25831_from, ; char* from + ptr @.TypeMapEntry.25830_to; char* to + }, ; 14529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25832_from, ; char* from + ptr @.TypeMapEntry.25833_to; char* to + }, ; 14530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25834_from, ; char* from + ptr @.TypeMapEntry.25833_to; char* to + }, ; 14531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25835_from, ; char* from + ptr @.TypeMapEntry.25836_to; char* to + }, ; 14532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25837_from, ; char* from + ptr @.TypeMapEntry.25836_to; char* to + }, ; 14533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25838_from, ; char* from + ptr @.TypeMapEntry.25839_to; char* to + }, ; 14534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25840_from, ; char* from + ptr @.TypeMapEntry.25839_to; char* to + }, ; 14535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25841_from, ; char* from + ptr @.TypeMapEntry.25842_to; char* to + }, ; 14536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25843_from, ; char* from + ptr @.TypeMapEntry.25844_to; char* to + }, ; 14537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25845_from, ; char* from + ptr @.TypeMapEntry.25846_to; char* to + }, ; 14538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25847_from, ; char* from + ptr @.TypeMapEntry.25848_to; char* to + }, ; 14539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25849_from, ; char* from + ptr @.TypeMapEntry.25850_to; char* to + }, ; 14540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25851_from, ; char* from + ptr @.TypeMapEntry.25852_to; char* to + }, ; 14541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25853_from, ; char* from + ptr @.TypeMapEntry.25854_to; char* to + }, ; 14542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25855_from, ; char* from + ptr @.TypeMapEntry.25856_to; char* to + }, ; 14543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25857_from, ; char* from + ptr @.TypeMapEntry.25858_to; char* to + }, ; 14544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25859_from, ; char* from + ptr @.TypeMapEntry.25858_to; char* to + }, ; 14545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25860_from, ; char* from + ptr @.TypeMapEntry.25861_to; char* to + }, ; 14546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25862_from, ; char* from + ptr @.TypeMapEntry.25861_to; char* to + }, ; 14547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25863_from, ; char* from + ptr @.TypeMapEntry.25864_to; char* to + }, ; 14548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25865_from, ; char* from + ptr @.TypeMapEntry.25866_to; char* to + }, ; 14549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25867_from, ; char* from + ptr @.TypeMapEntry.25866_to; char* to + }, ; 14550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25868_from, ; char* from + ptr @.TypeMapEntry.25869_to; char* to + }, ; 14551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25870_from, ; char* from + ptr @.TypeMapEntry.25871_to; char* to + }, ; 14552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25872_from, ; char* from + ptr @.TypeMapEntry.25873_to; char* to + }, ; 14553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25874_from, ; char* from + ptr @.TypeMapEntry.25873_to; char* to + }, ; 14554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25875_from, ; char* from + ptr @.TypeMapEntry.25876_to; char* to + }, ; 14555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25877_from, ; char* from + ptr @.TypeMapEntry.25878_to; char* to + }, ; 14556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25879_from, ; char* from + ptr @.TypeMapEntry.25878_to; char* to + }, ; 14557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25880_from, ; char* from + ptr @.TypeMapEntry.25881_to; char* to + }, ; 14558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25882_from, ; char* from + ptr @.TypeMapEntry.25883_to; char* to + }, ; 14559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25884_from, ; char* from + ptr @.TypeMapEntry.25885_to; char* to + }, ; 14560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25886_from, ; char* from + ptr @.TypeMapEntry.25887_to; char* to + }, ; 14561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25888_from, ; char* from + ptr @.TypeMapEntry.25887_to; char* to + }, ; 14562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25889_from, ; char* from + ptr @.TypeMapEntry.25890_to; char* to + }, ; 14563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25891_from, ; char* from + ptr @.TypeMapEntry.25890_to; char* to + }, ; 14564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25892_from, ; char* from + ptr @.TypeMapEntry.25893_to; char* to + }, ; 14565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25894_from, ; char* from + ptr @.TypeMapEntry.25895_to; char* to + }, ; 14566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25896_from, ; char* from + ptr @.TypeMapEntry.25897_to; char* to + }, ; 14567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25898_from, ; char* from + ptr @.TypeMapEntry.25899_to; char* to + }, ; 14568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25900_from, ; char* from + ptr @.TypeMapEntry.25901_to; char* to + }, ; 14569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25902_from, ; char* from + ptr @.TypeMapEntry.25903_to; char* to + }, ; 14570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25904_from, ; char* from + ptr @.TypeMapEntry.25905_to; char* to + }, ; 14571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25906_from, ; char* from + ptr @.TypeMapEntry.25907_to; char* to + }, ; 14572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25908_from, ; char* from + ptr @.TypeMapEntry.25907_to; char* to + }, ; 14573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25909_from, ; char* from + ptr @.TypeMapEntry.25910_to; char* to + }, ; 14574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25911_from, ; char* from + ptr @.TypeMapEntry.25912_to; char* to + }, ; 14575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25913_from, ; char* from + ptr @.TypeMapEntry.25914_to; char* to + }, ; 14576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25915_from, ; char* from + ptr @.TypeMapEntry.25916_to; char* to + }, ; 14577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25917_from, ; char* from + ptr @.TypeMapEntry.25918_to; char* to + }, ; 14578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25919_from, ; char* from + ptr @.TypeMapEntry.25920_to; char* to + }, ; 14579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25921_from, ; char* from + ptr @.TypeMapEntry.25922_to; char* to + }, ; 14580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25923_from, ; char* from + ptr @.TypeMapEntry.25924_to; char* to + }, ; 14581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25925_from, ; char* from + ptr @.TypeMapEntry.25926_to; char* to + }, ; 14582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25927_from, ; char* from + ptr @.TypeMapEntry.25928_to; char* to + }, ; 14583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25929_from, ; char* from + ptr @.TypeMapEntry.25930_to; char* to + }, ; 14584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25931_from, ; char* from + ptr @.TypeMapEntry.25930_to; char* to + }, ; 14585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25932_from, ; char* from + ptr @.TypeMapEntry.25933_to; char* to + }, ; 14586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25934_from, ; char* from + ptr @.TypeMapEntry.25935_to; char* to + }, ; 14587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25936_from, ; char* from + ptr @.TypeMapEntry.25937_to; char* to + }, ; 14588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25938_from, ; char* from + ptr @.TypeMapEntry.25939_to; char* to + }, ; 14589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25940_from, ; char* from + ptr @.TypeMapEntry.25941_to; char* to + }, ; 14590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25942_from, ; char* from + ptr @.TypeMapEntry.25943_to; char* to + }, ; 14591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25944_from, ; char* from + ptr @.TypeMapEntry.25945_to; char* to + }, ; 14592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25946_from, ; char* from + ptr @.TypeMapEntry.25947_to; char* to + }, ; 14593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25948_from, ; char* from + ptr @.TypeMapEntry.25949_to; char* to + }, ; 14594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25950_from, ; char* from + ptr @.TypeMapEntry.25951_to; char* to + }, ; 14595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25952_from, ; char* from + ptr @.TypeMapEntry.25953_to; char* to + }, ; 14596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25954_from, ; char* from + ptr @.TypeMapEntry.25955_to; char* to + }, ; 14597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25956_from, ; char* from + ptr @.TypeMapEntry.25957_to; char* to + }, ; 14598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25958_from, ; char* from + ptr @.TypeMapEntry.25959_to; char* to + }, ; 14599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25960_from, ; char* from + ptr @.TypeMapEntry.25959_to; char* to + }, ; 14600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25961_from, ; char* from + ptr @.TypeMapEntry.25962_to; char* to + }, ; 14601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25963_from, ; char* from + ptr @.TypeMapEntry.25964_to; char* to + }, ; 14602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25965_from, ; char* from + ptr @.TypeMapEntry.25966_to; char* to + }, ; 14603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25967_from, ; char* from + ptr @.TypeMapEntry.25968_to; char* to + }, ; 14604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25969_from, ; char* from + ptr @.TypeMapEntry.25970_to; char* to + }, ; 14605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25971_from, ; char* from + ptr @.TypeMapEntry.25972_to; char* to + }, ; 14606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25973_from, ; char* from + ptr @.TypeMapEntry.25974_to; char* to + }, ; 14607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25975_from, ; char* from + ptr @.TypeMapEntry.25976_to; char* to + }, ; 14608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25977_from, ; char* from + ptr @.TypeMapEntry.25978_to; char* to + }, ; 14609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25979_from, ; char* from + ptr @.TypeMapEntry.25980_to; char* to + }, ; 14610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25981_from, ; char* from + ptr @.TypeMapEntry.25982_to; char* to + }, ; 14611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25983_from, ; char* from + ptr @.TypeMapEntry.25984_to; char* to + }, ; 14612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25985_from, ; char* from + ptr @.TypeMapEntry.25984_to; char* to + }, ; 14613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25986_from, ; char* from + ptr @.TypeMapEntry.25987_to; char* to + }, ; 14614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25988_from, ; char* from + ptr @.TypeMapEntry.25987_to; char* to + }, ; 14615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25989_from, ; char* from + ptr @.TypeMapEntry.25990_to; char* to + }, ; 14616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25991_from, ; char* from + ptr @.TypeMapEntry.25992_to; char* to + }, ; 14617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25993_from, ; char* from + ptr @.TypeMapEntry.25994_to; char* to + }, ; 14618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25995_from, ; char* from + ptr @.TypeMapEntry.25996_to; char* to + }, ; 14619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25997_from, ; char* from + ptr @.TypeMapEntry.25998_to; char* to + }, ; 14620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25999_from, ; char* from + ptr @.TypeMapEntry.26000_to; char* to + }, ; 14621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26001_from, ; char* from + ptr @.TypeMapEntry.26002_to; char* to + }, ; 14622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26003_from, ; char* from + ptr @.TypeMapEntry.26004_to; char* to + }, ; 14623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26005_from, ; char* from + ptr @.TypeMapEntry.26006_to; char* to + }, ; 14624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26007_from, ; char* from + ptr @.TypeMapEntry.26008_to; char* to + }, ; 14625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26009_from, ; char* from + ptr @.TypeMapEntry.26010_to; char* to + }, ; 14626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26011_from, ; char* from + ptr @.TypeMapEntry.26012_to; char* to + }, ; 14627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26013_from, ; char* from + ptr @.TypeMapEntry.26014_to; char* to + }, ; 14628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26015_from, ; char* from + ptr @.TypeMapEntry.26016_to; char* to + }, ; 14629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26017_from, ; char* from + ptr @.TypeMapEntry.26018_to; char* to + }, ; 14630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26019_from, ; char* from + ptr @.TypeMapEntry.26020_to; char* to + }, ; 14631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26021_from, ; char* from + ptr @.TypeMapEntry.26020_to; char* to + }, ; 14632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26022_from, ; char* from + ptr @.TypeMapEntry.26023_to; char* to + }, ; 14633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26024_from, ; char* from + ptr @.TypeMapEntry.26025_to; char* to + }, ; 14634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26026_from, ; char* from + ptr @.TypeMapEntry.26025_to; char* to + }, ; 14635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26027_from, ; char* from + ptr @.TypeMapEntry.26028_to; char* to + }, ; 14636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26029_from, ; char* from + ptr @.TypeMapEntry.26028_to; char* to + }, ; 14637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26030_from, ; char* from + ptr @.TypeMapEntry.26031_to; char* to + }, ; 14638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26032_from, ; char* from + ptr @.TypeMapEntry.26031_to; char* to + }, ; 14639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26033_from, ; char* from + ptr @.TypeMapEntry.26034_to; char* to + }, ; 14640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26035_from, ; char* from + ptr @.TypeMapEntry.26034_to; char* to + }, ; 14641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26036_from, ; char* from + ptr @.TypeMapEntry.26037_to; char* to + }, ; 14642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26038_from, ; char* from + ptr @.TypeMapEntry.26037_to; char* to + }, ; 14643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26039_from, ; char* from + ptr @.TypeMapEntry.26040_to; char* to + }, ; 14644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26041_from, ; char* from + ptr @.TypeMapEntry.26040_to; char* to + }, ; 14645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26042_from, ; char* from + ptr @.TypeMapEntry.26043_to; char* to + }, ; 14646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26044_from, ; char* from + ptr @.TypeMapEntry.26043_to; char* to + }, ; 14647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26045_from, ; char* from + ptr @.TypeMapEntry.26046_to; char* to + }, ; 14648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26047_from, ; char* from + ptr @.TypeMapEntry.26046_to; char* to + }, ; 14649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26048_from, ; char* from + ptr @.TypeMapEntry.26049_to; char* to + }, ; 14650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26050_from, ; char* from + ptr @.TypeMapEntry.26049_to; char* to + }, ; 14651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26051_from, ; char* from + ptr @.TypeMapEntry.26052_to; char* to + }, ; 14652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26053_from, ; char* from + ptr @.TypeMapEntry.26052_to; char* to + }, ; 14653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26054_from, ; char* from + ptr @.TypeMapEntry.26055_to; char* to + }, ; 14654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26056_from, ; char* from + ptr @.TypeMapEntry.26055_to; char* to + }, ; 14655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26057_from, ; char* from + ptr @.TypeMapEntry.26058_to; char* to + }, ; 14656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26059_from, ; char* from + ptr @.TypeMapEntry.26058_to; char* to + }, ; 14657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26060_from, ; char* from + ptr @.TypeMapEntry.26061_to; char* to + }, ; 14658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26062_from, ; char* from + ptr @.TypeMapEntry.26061_to; char* to + }, ; 14659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26063_from, ; char* from + ptr @.TypeMapEntry.26064_to; char* to + }, ; 14660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26065_from, ; char* from + ptr @.TypeMapEntry.26064_to; char* to + }, ; 14661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26066_from, ; char* from + ptr @.TypeMapEntry.26067_to; char* to + }, ; 14662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26068_from, ; char* from + ptr @.TypeMapEntry.26067_to; char* to + }, ; 14663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26069_from, ; char* from + ptr @.TypeMapEntry.26070_to; char* to + }, ; 14664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26071_from, ; char* from + ptr @.TypeMapEntry.26070_to; char* to + }, ; 14665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26072_from, ; char* from + ptr @.TypeMapEntry.26073_to; char* to + }, ; 14666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26074_from, ; char* from + ptr @.TypeMapEntry.26073_to; char* to + }, ; 14667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26075_from, ; char* from + ptr @.TypeMapEntry.26076_to; char* to + }, ; 14668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26077_from, ; char* from + ptr @.TypeMapEntry.26076_to; char* to + }, ; 14669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26078_from, ; char* from + ptr @.TypeMapEntry.26079_to; char* to + }, ; 14670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26080_from, ; char* from + ptr @.TypeMapEntry.26079_to; char* to + }, ; 14671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26081_from, ; char* from + ptr @.TypeMapEntry.26082_to; char* to + }, ; 14672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26083_from, ; char* from + ptr @.TypeMapEntry.26082_to; char* to + }, ; 14673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26084_from, ; char* from + ptr @.TypeMapEntry.26085_to; char* to + }, ; 14674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26086_from, ; char* from + ptr @.TypeMapEntry.26085_to; char* to + }, ; 14675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26087_from, ; char* from + ptr @.TypeMapEntry.26088_to; char* to + }, ; 14676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26089_from, ; char* from + ptr @.TypeMapEntry.26088_to; char* to + }, ; 14677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26090_from, ; char* from + ptr @.TypeMapEntry.26091_to; char* to + }, ; 14678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26092_from, ; char* from + ptr @.TypeMapEntry.26091_to; char* to + }, ; 14679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26093_from, ; char* from + ptr @.TypeMapEntry.26094_to; char* to + }, ; 14680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26095_from, ; char* from + ptr @.TypeMapEntry.26096_to; char* to + }, ; 14681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26097_from, ; char* from + ptr @.TypeMapEntry.26098_to; char* to + }, ; 14682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26099_from, ; char* from + ptr @.TypeMapEntry.26100_to; char* to + }, ; 14683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26101_from, ; char* from + ptr @.TypeMapEntry.26102_to; char* to + }, ; 14684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26103_from, ; char* from + ptr @.TypeMapEntry.26104_to; char* to + }, ; 14685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26105_from, ; char* from + ptr @.TypeMapEntry.26106_to; char* to + }, ; 14686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26107_from, ; char* from + ptr @.TypeMapEntry.26108_to; char* to + }, ; 14687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26109_from, ; char* from + ptr @.TypeMapEntry.26110_to; char* to + }, ; 14688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26111_from, ; char* from + ptr @.TypeMapEntry.26112_to; char* to + }, ; 14689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26113_from, ; char* from + ptr @.TypeMapEntry.26114_to; char* to + }, ; 14690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26115_from, ; char* from + ptr @.TypeMapEntry.26116_to; char* to + }, ; 14691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26117_from, ; char* from + ptr @.TypeMapEntry.26118_to; char* to + }, ; 14692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26119_from, ; char* from + ptr @.TypeMapEntry.26120_to; char* to + }, ; 14693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26121_from, ; char* from + ptr @.TypeMapEntry.26122_to; char* to + }, ; 14694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26123_from, ; char* from + ptr @.TypeMapEntry.26124_to; char* to + }, ; 14695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26125_from, ; char* from + ptr @.TypeMapEntry.26126_to; char* to + }, ; 14696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26127_from, ; char* from + ptr @.TypeMapEntry.26126_to; char* to + }, ; 14697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26128_from, ; char* from + ptr @.TypeMapEntry.26129_to; char* to + }, ; 14698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26130_from, ; char* from + ptr @.TypeMapEntry.26131_to; char* to + }, ; 14699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26132_from, ; char* from + ptr @.TypeMapEntry.26133_to; char* to + }, ; 14700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26134_from, ; char* from + ptr @.TypeMapEntry.26135_to; char* to + }, ; 14701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26136_from, ; char* from + ptr @.TypeMapEntry.26137_to; char* to + }, ; 14702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26138_from, ; char* from + ptr @.TypeMapEntry.26137_to; char* to + }, ; 14703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26139_from, ; char* from + ptr @.TypeMapEntry.26140_to; char* to + }, ; 14704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26141_from, ; char* from + ptr @.TypeMapEntry.26142_to; char* to + }, ; 14705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26143_from, ; char* from + ptr @.TypeMapEntry.26144_to; char* to + }, ; 14706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26145_from, ; char* from + ptr @.TypeMapEntry.26146_to; char* to + }, ; 14707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26147_from, ; char* from + ptr @.TypeMapEntry.26148_to; char* to + }, ; 14708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26149_from, ; char* from + ptr @.TypeMapEntry.26150_to; char* to + }, ; 14709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26151_from, ; char* from + ptr @.TypeMapEntry.26152_to; char* to + }, ; 14710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26153_from, ; char* from + ptr @.TypeMapEntry.26154_to; char* to + }, ; 14711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26155_from, ; char* from + ptr @.TypeMapEntry.26156_to; char* to + }, ; 14712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26157_from, ; char* from + ptr @.TypeMapEntry.26158_to; char* to + }, ; 14713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26159_from, ; char* from + ptr @.TypeMapEntry.26160_to; char* to + }, ; 14714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26161_from, ; char* from + ptr @.TypeMapEntry.26162_to; char* to + }, ; 14715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26163_from, ; char* from + ptr @.TypeMapEntry.26164_to; char* to + }, ; 14716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26165_from, ; char* from + ptr @.TypeMapEntry.26166_to; char* to + }, ; 14717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26167_from, ; char* from + ptr @.TypeMapEntry.26168_to; char* to + }, ; 14718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26169_from, ; char* from + ptr @.TypeMapEntry.26170_to; char* to + }, ; 14719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26171_from, ; char* from + ptr @.TypeMapEntry.26172_to; char* to + }, ; 14720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26173_from, ; char* from + ptr @.TypeMapEntry.26172_to; char* to + }, ; 14721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26174_from, ; char* from + ptr @.TypeMapEntry.26175_to; char* to + }, ; 14722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26176_from, ; char* from + ptr @.TypeMapEntry.26177_to; char* to + }, ; 14723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26178_from, ; char* from + ptr @.TypeMapEntry.26179_to; char* to + }, ; 14724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26180_from, ; char* from + ptr @.TypeMapEntry.26181_to; char* to + }, ; 14725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26182_from, ; char* from + ptr @.TypeMapEntry.26183_to; char* to + }, ; 14726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26184_from, ; char* from + ptr @.TypeMapEntry.26183_to; char* to + }, ; 14727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26185_from, ; char* from + ptr @.TypeMapEntry.26186_to; char* to + }, ; 14728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26187_from, ; char* from + ptr @.TypeMapEntry.26188_to; char* to + }, ; 14729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26189_from, ; char* from + ptr @.TypeMapEntry.26190_to; char* to + }, ; 14730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26191_from, ; char* from + ptr @.TypeMapEntry.26192_to; char* to + }, ; 14731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26193_from, ; char* from + ptr @.TypeMapEntry.26194_to; char* to + }, ; 14732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26195_from, ; char* from + ptr @.TypeMapEntry.26196_to; char* to + }, ; 14733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26197_from, ; char* from + ptr @.TypeMapEntry.26198_to; char* to + }, ; 14734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26199_from, ; char* from + ptr @.TypeMapEntry.26198_to; char* to + }, ; 14735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26200_from, ; char* from + ptr @.TypeMapEntry.26201_to; char* to + }, ; 14736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26202_from, ; char* from + ptr @.TypeMapEntry.26203_to; char* to + }, ; 14737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26204_from, ; char* from + ptr @.TypeMapEntry.26203_to; char* to + }, ; 14738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26205_from, ; char* from + ptr @.TypeMapEntry.26206_to; char* to + }, ; 14739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26207_from, ; char* from + ptr @.TypeMapEntry.26208_to; char* to + }, ; 14740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26209_from, ; char* from + ptr @.TypeMapEntry.26208_to; char* to + }, ; 14741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26210_from, ; char* from + ptr @.TypeMapEntry.26211_to; char* to + }, ; 14742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26212_from, ; char* from + ptr @.TypeMapEntry.26213_to; char* to + }, ; 14743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26214_from, ; char* from + ptr @.TypeMapEntry.26215_to; char* to + }, ; 14744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26216_from, ; char* from + ptr @.TypeMapEntry.26215_to; char* to + }, ; 14745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26217_from, ; char* from + ptr @.TypeMapEntry.26218_to; char* to + }, ; 14746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26219_from, ; char* from + ptr @.TypeMapEntry.26218_to; char* to + }, ; 14747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26220_from, ; char* from + ptr @.TypeMapEntry.26221_to; char* to + }, ; 14748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26222_from, ; char* from + ptr @.TypeMapEntry.26221_to; char* to + }, ; 14749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26223_from, ; char* from + ptr @.TypeMapEntry.26224_to; char* to + }, ; 14750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26225_from, ; char* from + ptr @.TypeMapEntry.26224_to; char* to + }, ; 14751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26226_from, ; char* from + ptr @.TypeMapEntry.26227_to; char* to + }, ; 14752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26228_from, ; char* from + ptr @.TypeMapEntry.26227_to; char* to + }, ; 14753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26229_from, ; char* from + ptr @.TypeMapEntry.26230_to; char* to + }, ; 14754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26231_from, ; char* from + ptr @.TypeMapEntry.26230_to; char* to + }, ; 14755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26232_from, ; char* from + ptr @.TypeMapEntry.26233_to; char* to + }, ; 14756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26234_from, ; char* from + ptr @.TypeMapEntry.26233_to; char* to + }, ; 14757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26235_from, ; char* from + ptr @.TypeMapEntry.26236_to; char* to + }, ; 14758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26237_from, ; char* from + ptr @.TypeMapEntry.26236_to; char* to + }, ; 14759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26238_from, ; char* from + ptr @.TypeMapEntry.26239_to; char* to + }, ; 14760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26240_from, ; char* from + ptr @.TypeMapEntry.26239_to; char* to + }, ; 14761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26241_from, ; char* from + ptr @.TypeMapEntry.26242_to; char* to + }, ; 14762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26243_from, ; char* from + ptr @.TypeMapEntry.26242_to; char* to + }, ; 14763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26244_from, ; char* from + ptr @.TypeMapEntry.26245_to; char* to + }, ; 14764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26246_from, ; char* from + ptr @.TypeMapEntry.26245_to; char* to + }, ; 14765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26247_from, ; char* from + ptr @.TypeMapEntry.26248_to; char* to + }, ; 14766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26249_from, ; char* from + ptr @.TypeMapEntry.26248_to; char* to + }, ; 14767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26250_from, ; char* from + ptr @.TypeMapEntry.26251_to; char* to + }, ; 14768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26252_from, ; char* from + ptr @.TypeMapEntry.26251_to; char* to + }, ; 14769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26253_from, ; char* from + ptr @.TypeMapEntry.26254_to; char* to + }, ; 14770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26255_from, ; char* from + ptr @.TypeMapEntry.26254_to; char* to + }, ; 14771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26256_from, ; char* from + ptr @.TypeMapEntry.26257_to; char* to + }, ; 14772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26258_from, ; char* from + ptr @.TypeMapEntry.26257_to; char* to + }, ; 14773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26259_from, ; char* from + ptr @.TypeMapEntry.26260_to; char* to + }, ; 14774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26261_from, ; char* from + ptr @.TypeMapEntry.26260_to; char* to + }, ; 14775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26262_from, ; char* from + ptr @.TypeMapEntry.26263_to; char* to + }, ; 14776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26264_from, ; char* from + ptr @.TypeMapEntry.26263_to; char* to + }, ; 14777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26265_from, ; char* from + ptr @.TypeMapEntry.26266_to; char* to + }, ; 14778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26267_from, ; char* from + ptr @.TypeMapEntry.26268_to; char* to + }, ; 14779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26269_from, ; char* from + ptr @.TypeMapEntry.26268_to; char* to + }, ; 14780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26270_from, ; char* from + ptr @.TypeMapEntry.26266_to; char* to + }, ; 14781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26271_from, ; char* from + ptr @.TypeMapEntry.26272_to; char* to + }, ; 14782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26273_from, ; char* from + ptr @.TypeMapEntry.26272_to; char* to + }, ; 14783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26274_from, ; char* from + ptr @.TypeMapEntry.26275_to; char* to + }, ; 14784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26276_from, ; char* from + ptr @.TypeMapEntry.26275_to; char* to + }, ; 14785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26277_from, ; char* from + ptr @.TypeMapEntry.26278_to; char* to + }, ; 14786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26279_from, ; char* from + ptr @.TypeMapEntry.26278_to; char* to + }, ; 14787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26280_from, ; char* from + ptr @.TypeMapEntry.26281_to; char* to + }, ; 14788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26282_from, ; char* from + ptr @.TypeMapEntry.26281_to; char* to + }, ; 14789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26283_from, ; char* from + ptr @.TypeMapEntry.26284_to; char* to + }, ; 14790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26285_from, ; char* from + ptr @.TypeMapEntry.26284_to; char* to + }, ; 14791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26286_from, ; char* from + ptr @.TypeMapEntry.26287_to; char* to + }, ; 14792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26288_from, ; char* from + ptr @.TypeMapEntry.26287_to; char* to + }, ; 14793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26289_from, ; char* from + ptr @.TypeMapEntry.26290_to; char* to + }, ; 14794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26291_from, ; char* from + ptr @.TypeMapEntry.26290_to; char* to + }, ; 14795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26292_from, ; char* from + ptr @.TypeMapEntry.26293_to; char* to + }, ; 14796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26294_from, ; char* from + ptr @.TypeMapEntry.26293_to; char* to + }, ; 14797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26295_from, ; char* from + ptr @.TypeMapEntry.26296_to; char* to + }, ; 14798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26297_from, ; char* from + ptr @.TypeMapEntry.26296_to; char* to + }, ; 14799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26298_from, ; char* from + ptr @.TypeMapEntry.26299_to; char* to + }, ; 14800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26300_from, ; char* from + ptr @.TypeMapEntry.26299_to; char* to + }, ; 14801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26301_from, ; char* from + ptr @.TypeMapEntry.26302_to; char* to + }, ; 14802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26303_from, ; char* from + ptr @.TypeMapEntry.26302_to; char* to + }, ; 14803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26304_from, ; char* from + ptr @.TypeMapEntry.26305_to; char* to + }, ; 14804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26306_from, ; char* from + ptr @.TypeMapEntry.26305_to; char* to + }, ; 14805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26307_from, ; char* from + ptr @.TypeMapEntry.26308_to; char* to + }, ; 14806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26309_from, ; char* from + ptr @.TypeMapEntry.26308_to; char* to + }, ; 14807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26310_from, ; char* from + ptr @.TypeMapEntry.26311_to; char* to + }, ; 14808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26312_from, ; char* from + ptr @.TypeMapEntry.26313_to; char* to + }, ; 14809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26314_from, ; char* from + ptr @.TypeMapEntry.26315_to; char* to + }, ; 14810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26316_from, ; char* from + ptr @.TypeMapEntry.26317_to; char* to + }, ; 14811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26318_from, ; char* from + ptr @.TypeMapEntry.26319_to; char* to + }, ; 14812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26320_from, ; char* from + ptr @.TypeMapEntry.26319_to; char* to + }, ; 14813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26321_from, ; char* from + ptr @.TypeMapEntry.26322_to; char* to + }, ; 14814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26323_from, ; char* from + ptr @.TypeMapEntry.26322_to; char* to + }, ; 14815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26324_from, ; char* from + ptr @.TypeMapEntry.26325_to; char* to + }, ; 14816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26326_from, ; char* from + ptr @.TypeMapEntry.26325_to; char* to + }, ; 14817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26327_from, ; char* from + ptr @.TypeMapEntry.26328_to; char* to + }, ; 14818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26329_from, ; char* from + ptr @.TypeMapEntry.26328_to; char* to + }, ; 14819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26330_from, ; char* from + ptr @.TypeMapEntry.26331_to; char* to + }, ; 14820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26332_from, ; char* from + ptr @.TypeMapEntry.26331_to; char* to + }, ; 14821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26333_from, ; char* from + ptr @.TypeMapEntry.26334_to; char* to + }, ; 14822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26335_from, ; char* from + ptr @.TypeMapEntry.26334_to; char* to + }, ; 14823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26336_from, ; char* from + ptr @.TypeMapEntry.26337_to; char* to + }, ; 14824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26338_from, ; char* from + ptr @.TypeMapEntry.26337_to; char* to + }, ; 14825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26339_from, ; char* from + ptr @.TypeMapEntry.26340_to; char* to + }, ; 14826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26341_from, ; char* from + ptr @.TypeMapEntry.26340_to; char* to + }, ; 14827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26342_from, ; char* from + ptr @.TypeMapEntry.26343_to; char* to + }, ; 14828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26344_from, ; char* from + ptr @.TypeMapEntry.26343_to; char* to + }, ; 14829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26345_from, ; char* from + ptr @.TypeMapEntry.26346_to; char* to + }, ; 14830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26347_from, ; char* from + ptr @.TypeMapEntry.26346_to; char* to + }, ; 14831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26348_from, ; char* from + ptr @.TypeMapEntry.26349_to; char* to + }, ; 14832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26350_from, ; char* from + ptr @.TypeMapEntry.26351_to; char* to + }, ; 14833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26352_from, ; char* from + ptr @.TypeMapEntry.26351_to; char* to + }, ; 14834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26353_from, ; char* from + ptr @.TypeMapEntry.26354_to; char* to + }, ; 14835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26355_from, ; char* from + ptr @.TypeMapEntry.26356_to; char* to + }, ; 14836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26357_from, ; char* from + ptr @.TypeMapEntry.26356_to; char* to + }, ; 14837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26358_from, ; char* from + ptr @.TypeMapEntry.26359_to; char* to + }, ; 14838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26360_from, ; char* from + ptr @.TypeMapEntry.26361_to; char* to + }, ; 14839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26362_from, ; char* from + ptr @.TypeMapEntry.26363_to; char* to + }, ; 14840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26364_from, ; char* from + ptr @.TypeMapEntry.26365_to; char* to + }, ; 14841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26366_from, ; char* from + ptr @.TypeMapEntry.26367_to; char* to + }, ; 14842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26368_from, ; char* from + ptr @.TypeMapEntry.26367_to; char* to + }, ; 14843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26369_from, ; char* from + ptr @.TypeMapEntry.26370_to; char* to + }, ; 14844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26371_from, ; char* from + ptr @.TypeMapEntry.26372_to; char* to + }, ; 14845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26373_from, ; char* from + ptr @.TypeMapEntry.26374_to; char* to + }, ; 14846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26375_from, ; char* from + ptr @.TypeMapEntry.26376_to; char* to + }, ; 14847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26377_from, ; char* from + ptr @.TypeMapEntry.26378_to; char* to + }, ; 14848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26379_from, ; char* from + ptr @.TypeMapEntry.26380_to; char* to + }, ; 14849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26381_from, ; char* from + ptr @.TypeMapEntry.26382_to; char* to + }, ; 14850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26383_from, ; char* from + ptr @.TypeMapEntry.26384_to; char* to + }, ; 14851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26385_from, ; char* from + ptr @.TypeMapEntry.26386_to; char* to + }, ; 14852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26387_from, ; char* from + ptr @.TypeMapEntry.26388_to; char* to + }, ; 14853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26389_from, ; char* from + ptr @.TypeMapEntry.26390_to; char* to + }, ; 14854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26391_from, ; char* from + ptr @.TypeMapEntry.26392_to; char* to + }, ; 14855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26393_from, ; char* from + ptr @.TypeMapEntry.26394_to; char* to + }, ; 14856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26395_from, ; char* from + ptr @.TypeMapEntry.26396_to; char* to + }, ; 14857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26397_from, ; char* from + ptr @.TypeMapEntry.26398_to; char* to + }, ; 14858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26399_from, ; char* from + ptr @.TypeMapEntry.26400_to; char* to + }, ; 14859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26401_from, ; char* from + ptr @.TypeMapEntry.26402_to; char* to + }, ; 14860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26403_from, ; char* from + ptr @.TypeMapEntry.26404_to; char* to + }, ; 14861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26405_from, ; char* from + ptr @.TypeMapEntry.26406_to; char* to + }, ; 14862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26407_from, ; char* from + ptr @.TypeMapEntry.26408_to; char* to + }, ; 14863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26409_from, ; char* from + ptr @.TypeMapEntry.26410_to; char* to + }, ; 14864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26411_from, ; char* from + ptr @.TypeMapEntry.26412_to; char* to + }, ; 14865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26413_from, ; char* from + ptr @.TypeMapEntry.26414_to; char* to + }, ; 14866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26415_from, ; char* from + ptr @.TypeMapEntry.26416_to; char* to + }, ; 14867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26417_from, ; char* from + ptr @.TypeMapEntry.26418_to; char* to + }, ; 14868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26419_from, ; char* from + ptr @.TypeMapEntry.26420_to; char* to + }, ; 14869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26421_from, ; char* from + ptr @.TypeMapEntry.26422_to; char* to + }, ; 14870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26423_from, ; char* from + ptr @.TypeMapEntry.26424_to; char* to + }, ; 14871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26425_from, ; char* from + ptr @.TypeMapEntry.26426_to; char* to + }, ; 14872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26427_from, ; char* from + ptr @.TypeMapEntry.26428_to; char* to + }, ; 14873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26429_from, ; char* from + ptr @.TypeMapEntry.26430_to; char* to + }, ; 14874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26431_from, ; char* from + ptr @.TypeMapEntry.26432_to; char* to + }, ; 14875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26433_from, ; char* from + ptr @.TypeMapEntry.26434_to; char* to + }, ; 14876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26435_from, ; char* from + ptr @.TypeMapEntry.26436_to; char* to + }, ; 14877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26437_from, ; char* from + ptr @.TypeMapEntry.26438_to; char* to + }, ; 14878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26439_from, ; char* from + ptr @.TypeMapEntry.26440_to; char* to + }, ; 14879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26441_from, ; char* from + ptr @.TypeMapEntry.26442_to; char* to + }, ; 14880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26443_from, ; char* from + ptr @.TypeMapEntry.26444_to; char* to + }, ; 14881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26445_from, ; char* from + ptr @.TypeMapEntry.26446_to; char* to + }, ; 14882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26447_from, ; char* from + ptr @.TypeMapEntry.26448_to; char* to + }, ; 14883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26449_from, ; char* from + ptr @.TypeMapEntry.26450_to; char* to + }, ; 14884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26451_from, ; char* from + ptr @.TypeMapEntry.26452_to; char* to + }, ; 14885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26453_from, ; char* from + ptr @.TypeMapEntry.26454_to; char* to + }, ; 14886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26455_from, ; char* from + ptr @.TypeMapEntry.26456_to; char* to + }, ; 14887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26457_from, ; char* from + ptr @.TypeMapEntry.26458_to; char* to + }, ; 14888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26459_from, ; char* from + ptr @.TypeMapEntry.26460_to; char* to + }, ; 14889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26461_from, ; char* from + ptr @.TypeMapEntry.26462_to; char* to + }, ; 14890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26463_from, ; char* from + ptr @.TypeMapEntry.26464_to; char* to + }, ; 14891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26465_from, ; char* from + ptr @.TypeMapEntry.26466_to; char* to + }, ; 14892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26467_from, ; char* from + ptr @.TypeMapEntry.26468_to; char* to + }, ; 14893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26469_from, ; char* from + ptr @.TypeMapEntry.26470_to; char* to + }, ; 14894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26471_from, ; char* from + ptr @.TypeMapEntry.26472_to; char* to + }, ; 14895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26473_from, ; char* from + ptr @.TypeMapEntry.26474_to; char* to + }, ; 14896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26475_from, ; char* from + ptr @.TypeMapEntry.26476_to; char* to + }, ; 14897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26477_from, ; char* from + ptr @.TypeMapEntry.26478_to; char* to + }, ; 14898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26479_from, ; char* from + ptr @.TypeMapEntry.26480_to; char* to + }, ; 14899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26481_from, ; char* from + ptr @.TypeMapEntry.26482_to; char* to + }, ; 14900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26483_from, ; char* from + ptr @.TypeMapEntry.26484_to; char* to + }, ; 14901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26485_from, ; char* from + ptr @.TypeMapEntry.26486_to; char* to + }, ; 14902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26487_from, ; char* from + ptr @.TypeMapEntry.26488_to; char* to + }, ; 14903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26489_from, ; char* from + ptr @.TypeMapEntry.26490_to; char* to + }, ; 14904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26491_from, ; char* from + ptr @.TypeMapEntry.26492_to; char* to + }, ; 14905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26493_from, ; char* from + ptr @.TypeMapEntry.26494_to; char* to + }, ; 14906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26495_from, ; char* from + ptr @.TypeMapEntry.26496_to; char* to + }, ; 14907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26497_from, ; char* from + ptr @.TypeMapEntry.26498_to; char* to + }, ; 14908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26499_from, ; char* from + ptr @.TypeMapEntry.26500_to; char* to + }, ; 14909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26501_from, ; char* from + ptr @.TypeMapEntry.26502_to; char* to + }, ; 14910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26503_from, ; char* from + ptr @.TypeMapEntry.26504_to; char* to + }, ; 14911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26505_from, ; char* from + ptr @.TypeMapEntry.26506_to; char* to + }, ; 14912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26507_from, ; char* from + ptr @.TypeMapEntry.26508_to; char* to + }, ; 14913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26509_from, ; char* from + ptr @.TypeMapEntry.26510_to; char* to + }, ; 14914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26511_from, ; char* from + ptr @.TypeMapEntry.26512_to; char* to + }, ; 14915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26513_from, ; char* from + ptr @.TypeMapEntry.26514_to; char* to + }, ; 14916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26515_from, ; char* from + ptr @.TypeMapEntry.26516_to; char* to + }, ; 14917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26517_from, ; char* from + ptr @.TypeMapEntry.26518_to; char* to + }, ; 14918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26519_from, ; char* from + ptr @.TypeMapEntry.26520_to; char* to + }, ; 14919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26521_from, ; char* from + ptr @.TypeMapEntry.26522_to; char* to + }, ; 14920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26523_from, ; char* from + ptr @.TypeMapEntry.26524_to; char* to + }, ; 14921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26525_from, ; char* from + ptr @.TypeMapEntry.26526_to; char* to + }, ; 14922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26527_from, ; char* from + ptr @.TypeMapEntry.26528_to; char* to + }, ; 14923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26529_from, ; char* from + ptr @.TypeMapEntry.26530_to; char* to + }, ; 14924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26531_from, ; char* from + ptr @.TypeMapEntry.26532_to; char* to + }, ; 14925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26533_from, ; char* from + ptr @.TypeMapEntry.26534_to; char* to + }, ; 14926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26535_from, ; char* from + ptr @.TypeMapEntry.26536_to; char* to + }, ; 14927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26537_from, ; char* from + ptr @.TypeMapEntry.26538_to; char* to + }, ; 14928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26539_from, ; char* from + ptr @.TypeMapEntry.26540_to; char* to + }, ; 14929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26541_from, ; char* from + ptr @.TypeMapEntry.26542_to; char* to + }, ; 14930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26543_from, ; char* from + ptr @.TypeMapEntry.26544_to; char* to + }, ; 14931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26545_from, ; char* from + ptr @.TypeMapEntry.26546_to; char* to + }, ; 14932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26547_from, ; char* from + ptr @.TypeMapEntry.26548_to; char* to + }, ; 14933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26549_from, ; char* from + ptr @.TypeMapEntry.26550_to; char* to + }, ; 14934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26551_from, ; char* from + ptr @.TypeMapEntry.26552_to; char* to + }, ; 14935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26553_from, ; char* from + ptr @.TypeMapEntry.26554_to; char* to + }, ; 14936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26555_from, ; char* from + ptr @.TypeMapEntry.26556_to; char* to + }, ; 14937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26557_from, ; char* from + ptr @.TypeMapEntry.26558_to; char* to + }, ; 14938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26559_from, ; char* from + ptr @.TypeMapEntry.26560_to; char* to + }, ; 14939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26561_from, ; char* from + ptr @.TypeMapEntry.26562_to; char* to + }, ; 14940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26563_from, ; char* from + ptr @.TypeMapEntry.26564_to; char* to + }, ; 14941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26565_from, ; char* from + ptr @.TypeMapEntry.26566_to; char* to + }, ; 14942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26567_from, ; char* from + ptr @.TypeMapEntry.26568_to; char* to + }, ; 14943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26569_from, ; char* from + ptr @.TypeMapEntry.26570_to; char* to + }, ; 14944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26571_from, ; char* from + ptr @.TypeMapEntry.26572_to; char* to + }, ; 14945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26573_from, ; char* from + ptr @.TypeMapEntry.26574_to; char* to + }, ; 14946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26575_from, ; char* from + ptr @.TypeMapEntry.26576_to; char* to + }, ; 14947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26577_from, ; char* from + ptr @.TypeMapEntry.26578_to; char* to + }, ; 14948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26579_from, ; char* from + ptr @.TypeMapEntry.26580_to; char* to + }, ; 14949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26581_from, ; char* from + ptr @.TypeMapEntry.26582_to; char* to + }, ; 14950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26583_from, ; char* from + ptr @.TypeMapEntry.26584_to; char* to + }, ; 14951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26585_from, ; char* from + ptr @.TypeMapEntry.26586_to; char* to + }, ; 14952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26587_from, ; char* from + ptr @.TypeMapEntry.26588_to; char* to + }, ; 14953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26589_from, ; char* from + ptr @.TypeMapEntry.26590_to; char* to + }, ; 14954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26591_from, ; char* from + ptr @.TypeMapEntry.26590_to; char* to + }, ; 14955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26592_from, ; char* from + ptr @.TypeMapEntry.26593_to; char* to + }, ; 14956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26594_from, ; char* from + ptr @.TypeMapEntry.26595_to; char* to + }, ; 14957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26596_from, ; char* from + ptr @.TypeMapEntry.26597_to; char* to + }, ; 14958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26598_from, ; char* from + ptr @.TypeMapEntry.26597_to; char* to + }, ; 14959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26599_from, ; char* from + ptr @.TypeMapEntry.26600_to; char* to + }, ; 14960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26601_from, ; char* from + ptr @.TypeMapEntry.26600_to; char* to + }, ; 14961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26602_from, ; char* from + ptr @.TypeMapEntry.26603_to; char* to + }, ; 14962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26604_from, ; char* from + ptr @.TypeMapEntry.26605_to; char* to + }, ; 14963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26606_from, ; char* from + ptr @.TypeMapEntry.26607_to; char* to + }, ; 14964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26608_from, ; char* from + ptr @.TypeMapEntry.26609_to; char* to + }, ; 14965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26610_from, ; char* from + ptr @.TypeMapEntry.26611_to; char* to + }, ; 14966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26612_from, ; char* from + ptr @.TypeMapEntry.26613_to; char* to + }, ; 14967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26614_from, ; char* from + ptr @.TypeMapEntry.26615_to; char* to + }, ; 14968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26616_from, ; char* from + ptr @.TypeMapEntry.26617_to; char* to + }, ; 14969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26618_from, ; char* from + ptr @.TypeMapEntry.26619_to; char* to + }, ; 14970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26620_from, ; char* from + ptr @.TypeMapEntry.26621_to; char* to + }, ; 14971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26622_from, ; char* from + ptr @.TypeMapEntry.26623_to; char* to + }, ; 14972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26624_from, ; char* from + ptr @.TypeMapEntry.26625_to; char* to + }, ; 14973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26626_from, ; char* from + ptr @.TypeMapEntry.26627_to; char* to + }, ; 14974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26628_from, ; char* from + ptr @.TypeMapEntry.26629_to; char* to + }, ; 14975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26630_from, ; char* from + ptr @.TypeMapEntry.26631_to; char* to + }, ; 14976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26632_from, ; char* from + ptr @.TypeMapEntry.26633_to; char* to + }, ; 14977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26634_from, ; char* from + ptr @.TypeMapEntry.26635_to; char* to + }, ; 14978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26636_from, ; char* from + ptr @.TypeMapEntry.26635_to; char* to + }, ; 14979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26637_from, ; char* from + ptr @.TypeMapEntry.26638_to; char* to + }, ; 14980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26639_from, ; char* from + ptr @.TypeMapEntry.26640_to; char* to + }, ; 14981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26641_from, ; char* from + ptr @.TypeMapEntry.26640_to; char* to + }, ; 14982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26642_from, ; char* from + ptr @.TypeMapEntry.26643_to; char* to + }, ; 14983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26644_from, ; char* from + ptr @.TypeMapEntry.26645_to; char* to + }, ; 14984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26646_from, ; char* from + ptr @.TypeMapEntry.26647_to; char* to + }, ; 14985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26648_from, ; char* from + ptr @.TypeMapEntry.26649_to; char* to + }, ; 14986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26650_from, ; char* from + ptr @.TypeMapEntry.26651_to; char* to + }, ; 14987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26652_from, ; char* from + ptr @.TypeMapEntry.26653_to; char* to + }, ; 14988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26654_from, ; char* from + ptr @.TypeMapEntry.26655_to; char* to + }, ; 14989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26656_from, ; char* from + ptr @.TypeMapEntry.26657_to; char* to + }, ; 14990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26658_from, ; char* from + ptr @.TypeMapEntry.26659_to; char* to + }, ; 14991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26660_from, ; char* from + ptr @.TypeMapEntry.26661_to; char* to + }, ; 14992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26662_from, ; char* from + ptr @.TypeMapEntry.26663_to; char* to + }, ; 14993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26664_from, ; char* from + ptr @.TypeMapEntry.26665_to; char* to + }, ; 14994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26666_from, ; char* from + ptr @.TypeMapEntry.26667_to; char* to + }, ; 14995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26668_from, ; char* from + ptr @.TypeMapEntry.26669_to; char* to + }, ; 14996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26670_from, ; char* from + ptr @.TypeMapEntry.26671_to; char* to + }, ; 14997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26672_from, ; char* from + ptr @.TypeMapEntry.26673_to; char* to + }, ; 14998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26674_from, ; char* from + ptr @.TypeMapEntry.26675_to; char* to + }, ; 14999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26676_from, ; char* from + ptr @.TypeMapEntry.26677_to; char* to + }, ; 15000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26678_from, ; char* from + ptr @.TypeMapEntry.26679_to; char* to + }, ; 15001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26680_from, ; char* from + ptr @.TypeMapEntry.26681_to; char* to + }, ; 15002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26682_from, ; char* from + ptr @.TypeMapEntry.26683_to; char* to + }, ; 15003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26684_from, ; char* from + ptr @.TypeMapEntry.26685_to; char* to + }, ; 15004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26686_from, ; char* from + ptr @.TypeMapEntry.26687_to; char* to + }, ; 15005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26688_from, ; char* from + ptr @.TypeMapEntry.26689_to; char* to + }, ; 15006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26690_from, ; char* from + ptr @.TypeMapEntry.26691_to; char* to + }, ; 15007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26692_from, ; char* from + ptr @.TypeMapEntry.26693_to; char* to + }, ; 15008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26694_from, ; char* from + ptr @.TypeMapEntry.26695_to; char* to + }, ; 15009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26696_from, ; char* from + ptr @.TypeMapEntry.26697_to; char* to + }, ; 15010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26698_from, ; char* from + ptr @.TypeMapEntry.26699_to; char* to + }, ; 15011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26700_from, ; char* from + ptr @.TypeMapEntry.26701_to; char* to + }, ; 15012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26702_from, ; char* from + ptr @.TypeMapEntry.26703_to; char* to + }, ; 15013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26704_from, ; char* from + ptr @.TypeMapEntry.26705_to; char* to + }, ; 15014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26706_from, ; char* from + ptr @.TypeMapEntry.26707_to; char* to + }, ; 15015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26708_from, ; char* from + ptr @.TypeMapEntry.26709_to; char* to + }, ; 15016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26710_from, ; char* from + ptr @.TypeMapEntry.26711_to; char* to + }, ; 15017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26712_from, ; char* from + ptr @.TypeMapEntry.26713_to; char* to + }, ; 15018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26714_from, ; char* from + ptr @.TypeMapEntry.26715_to; char* to + }, ; 15019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26716_from, ; char* from + ptr @.TypeMapEntry.26717_to; char* to + }, ; 15020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26718_from, ; char* from + ptr @.TypeMapEntry.26717_to; char* to + }, ; 15021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26719_from, ; char* from + ptr @.TypeMapEntry.26720_to; char* to + }, ; 15022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26721_from, ; char* from + ptr @.TypeMapEntry.26720_to; char* to + }, ; 15023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26722_from, ; char* from + ptr @.TypeMapEntry.26723_to; char* to + }, ; 15024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26724_from, ; char* from + ptr @.TypeMapEntry.26723_to; char* to + }, ; 15025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26725_from, ; char* from + ptr @.TypeMapEntry.26726_to; char* to + }, ; 15026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26727_from, ; char* from + ptr @.TypeMapEntry.26726_to; char* to + }, ; 15027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26728_from, ; char* from + ptr @.TypeMapEntry.26729_to; char* to + }, ; 15028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26730_from, ; char* from + ptr @.TypeMapEntry.26731_to; char* to + }, ; 15029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26732_from, ; char* from + ptr @.TypeMapEntry.26733_to; char* to + }, ; 15030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26734_from, ; char* from + ptr @.TypeMapEntry.26735_to; char* to + }, ; 15031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26736_from, ; char* from + ptr @.TypeMapEntry.26735_to; char* to + }, ; 15032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26737_from, ; char* from + ptr @.TypeMapEntry.26738_to; char* to + }, ; 15033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26739_from, ; char* from + ptr @.TypeMapEntry.26740_to; char* to + }, ; 15034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26741_from, ; char* from + ptr @.TypeMapEntry.26742_to; char* to + }, ; 15035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26743_from, ; char* from + ptr @.TypeMapEntry.26744_to; char* to + }, ; 15036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26745_from, ; char* from + ptr @.TypeMapEntry.26746_to; char* to + }, ; 15037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26747_from, ; char* from + ptr @.TypeMapEntry.26748_to; char* to + }, ; 15038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26749_from, ; char* from + ptr @.TypeMapEntry.26750_to; char* to + }, ; 15039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26751_from, ; char* from + ptr @.TypeMapEntry.26752_to; char* to + }, ; 15040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26753_from, ; char* from + ptr @.TypeMapEntry.26754_to; char* to + }, ; 15041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26755_from, ; char* from + ptr @.TypeMapEntry.26756_to; char* to + }, ; 15042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26757_from, ; char* from + ptr @.TypeMapEntry.26758_to; char* to + }, ; 15043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26759_from, ; char* from + ptr @.TypeMapEntry.26760_to; char* to + }, ; 15044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26761_from, ; char* from + ptr @.TypeMapEntry.26762_to; char* to + }, ; 15045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26763_from, ; char* from + ptr @.TypeMapEntry.26764_to; char* to + }, ; 15046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26765_from, ; char* from + ptr @.TypeMapEntry.26766_to; char* to + }, ; 15047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26767_from, ; char* from + ptr @.TypeMapEntry.26768_to; char* to + }, ; 15048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26769_from, ; char* from + ptr @.TypeMapEntry.26770_to; char* to + }, ; 15049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26771_from, ; char* from + ptr @.TypeMapEntry.26772_to; char* to + }, ; 15050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26773_from, ; char* from + ptr @.TypeMapEntry.26774_to; char* to + }, ; 15051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26775_from, ; char* from + ptr @.TypeMapEntry.26774_to; char* to + }, ; 15052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26776_from, ; char* from + ptr @.TypeMapEntry.26777_to; char* to + }, ; 15053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26778_from, ; char* from + ptr @.TypeMapEntry.26779_to; char* to + }, ; 15054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26780_from, ; char* from + ptr @.TypeMapEntry.26781_to; char* to + }, ; 15055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26782_from, ; char* from + ptr @.TypeMapEntry.26783_to; char* to + }, ; 15056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26784_from, ; char* from + ptr @.TypeMapEntry.26785_to; char* to + }, ; 15057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26786_from, ; char* from + ptr @.TypeMapEntry.26787_to; char* to + }, ; 15058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26788_from, ; char* from + ptr @.TypeMapEntry.26789_to; char* to + }, ; 15059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26790_from, ; char* from + ptr @.TypeMapEntry.26791_to; char* to + }, ; 15060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26792_from, ; char* from + ptr @.TypeMapEntry.26793_to; char* to + }, ; 15061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26794_from, ; char* from + ptr @.TypeMapEntry.26795_to; char* to + }, ; 15062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26796_from, ; char* from + ptr @.TypeMapEntry.26797_to; char* to + }, ; 15063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26798_from, ; char* from + ptr @.TypeMapEntry.26797_to; char* to + }, ; 15064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26799_from, ; char* from + ptr @.TypeMapEntry.26800_to; char* to + }, ; 15065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26801_from, ; char* from + ptr @.TypeMapEntry.26800_to; char* to + }, ; 15066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26802_from, ; char* from + ptr @.TypeMapEntry.26803_to; char* to + }, ; 15067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26804_from, ; char* from + ptr @.TypeMapEntry.26803_to; char* to + }, ; 15068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26805_from, ; char* from + ptr @.TypeMapEntry.26806_to; char* to + }, ; 15069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26807_from, ; char* from + ptr @.TypeMapEntry.26806_to; char* to + }, ; 15070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26808_from, ; char* from + ptr @.TypeMapEntry.26809_to; char* to + }, ; 15071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26810_from, ; char* from + ptr @.TypeMapEntry.26809_to; char* to + }, ; 15072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26811_from, ; char* from + ptr @.TypeMapEntry.26812_to; char* to + }, ; 15073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26813_from, ; char* from + ptr @.TypeMapEntry.26812_to; char* to + }, ; 15074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26814_from, ; char* from + ptr @.TypeMapEntry.26815_to; char* to + }, ; 15075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26816_from, ; char* from + ptr @.TypeMapEntry.26815_to; char* to + }, ; 15076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26817_from, ; char* from + ptr @.TypeMapEntry.26818_to; char* to + }, ; 15077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26819_from, ; char* from + ptr @.TypeMapEntry.26818_to; char* to + }, ; 15078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26820_from, ; char* from + ptr @.TypeMapEntry.26821_to; char* to + }, ; 15079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26822_from, ; char* from + ptr @.TypeMapEntry.26821_to; char* to + }, ; 15080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26823_from, ; char* from + ptr @.TypeMapEntry.26824_to; char* to + }, ; 15081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26825_from, ; char* from + ptr @.TypeMapEntry.26824_to; char* to + }, ; 15082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26826_from, ; char* from + ptr @.TypeMapEntry.26827_to; char* to + }, ; 15083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26828_from, ; char* from + ptr @.TypeMapEntry.26827_to; char* to + }, ; 15084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26829_from, ; char* from + ptr @.TypeMapEntry.26830_to; char* to + }, ; 15085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26831_from, ; char* from + ptr @.TypeMapEntry.26830_to; char* to + }, ; 15086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26832_from, ; char* from + ptr @.TypeMapEntry.26833_to; char* to + }, ; 15087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26834_from, ; char* from + ptr @.TypeMapEntry.26833_to; char* to + }, ; 15088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26835_from, ; char* from + ptr @.TypeMapEntry.26836_to; char* to + }, ; 15089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26837_from, ; char* from + ptr @.TypeMapEntry.26836_to; char* to + }, ; 15090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26838_from, ; char* from + ptr @.TypeMapEntry.26839_to; char* to + }, ; 15091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26840_from, ; char* from + ptr @.TypeMapEntry.26839_to; char* to + }, ; 15092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26841_from, ; char* from + ptr @.TypeMapEntry.26842_to; char* to + }, ; 15093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26843_from, ; char* from + ptr @.TypeMapEntry.26842_to; char* to + }, ; 15094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26844_from, ; char* from + ptr @.TypeMapEntry.26845_to; char* to + }, ; 15095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26846_from, ; char* from + ptr @.TypeMapEntry.26845_to; char* to + }, ; 15096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26847_from, ; char* from + ptr @.TypeMapEntry.26848_to; char* to + }, ; 15097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26849_from, ; char* from + ptr @.TypeMapEntry.26848_to; char* to + }, ; 15098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26850_from, ; char* from + ptr @.TypeMapEntry.26851_to; char* to + }, ; 15099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26852_from, ; char* from + ptr @.TypeMapEntry.26851_to; char* to + }, ; 15100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26853_from, ; char* from + ptr @.TypeMapEntry.26854_to; char* to + }, ; 15101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26855_from, ; char* from + ptr @.TypeMapEntry.26854_to; char* to + }, ; 15102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26856_from, ; char* from + ptr @.TypeMapEntry.26857_to; char* to + }, ; 15103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26858_from, ; char* from + ptr @.TypeMapEntry.26857_to; char* to + }, ; 15104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26859_from, ; char* from + ptr @.TypeMapEntry.26860_to; char* to + }, ; 15105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26861_from, ; char* from + ptr @.TypeMapEntry.26860_to; char* to + }, ; 15106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26862_from, ; char* from + ptr @.TypeMapEntry.26863_to; char* to + }, ; 15107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26864_from, ; char* from + ptr @.TypeMapEntry.26863_to; char* to + }, ; 15108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26865_from, ; char* from + ptr @.TypeMapEntry.26866_to; char* to + }, ; 15109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26867_from, ; char* from + ptr @.TypeMapEntry.26866_to; char* to + }, ; 15110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26868_from, ; char* from + ptr @.TypeMapEntry.26869_to; char* to + }, ; 15111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26870_from, ; char* from + ptr @.TypeMapEntry.26869_to; char* to + }, ; 15112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26871_from, ; char* from + ptr @.TypeMapEntry.26872_to; char* to + }, ; 15113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26873_from, ; char* from + ptr @.TypeMapEntry.26872_to; char* to + }, ; 15114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26874_from, ; char* from + ptr @.TypeMapEntry.26875_to; char* to + }, ; 15115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26876_from, ; char* from + ptr @.TypeMapEntry.26875_to; char* to + }, ; 15116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26877_from, ; char* from + ptr @.TypeMapEntry.26878_to; char* to + }, ; 15117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26879_from, ; char* from + ptr @.TypeMapEntry.26878_to; char* to + }, ; 15118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26880_from, ; char* from + ptr @.TypeMapEntry.26881_to; char* to + }, ; 15119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26882_from, ; char* from + ptr @.TypeMapEntry.26883_to; char* to + }, ; 15120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26884_from, ; char* from + ptr @.TypeMapEntry.26883_to; char* to + }, ; 15121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26885_from, ; char* from + ptr @.TypeMapEntry.26886_to; char* to + }, ; 15122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26887_from, ; char* from + ptr @.TypeMapEntry.26886_to; char* to + }, ; 15123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26888_from, ; char* from + ptr @.TypeMapEntry.26889_to; char* to + }, ; 15124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26890_from, ; char* from + ptr @.TypeMapEntry.26889_to; char* to + }, ; 15125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26891_from, ; char* from + ptr @.TypeMapEntry.26892_to; char* to + }, ; 15126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26893_from, ; char* from + ptr @.TypeMapEntry.26892_to; char* to + }, ; 15127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26894_from, ; char* from + ptr @.TypeMapEntry.26895_to; char* to + }, ; 15128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26896_from, ; char* from + ptr @.TypeMapEntry.26897_to; char* to + }, ; 15129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26898_from, ; char* from + ptr @.TypeMapEntry.26899_to; char* to + }, ; 15130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26900_from, ; char* from + ptr @.TypeMapEntry.26901_to; char* to + }, ; 15131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26902_from, ; char* from + ptr @.TypeMapEntry.26903_to; char* to + }, ; 15132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26904_from, ; char* from + ptr @.TypeMapEntry.26905_to; char* to + }, ; 15133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26906_from, ; char* from + ptr @.TypeMapEntry.26907_to; char* to + }, ; 15134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26908_from, ; char* from + ptr @.TypeMapEntry.26909_to; char* to + }, ; 15135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26910_from, ; char* from + ptr @.TypeMapEntry.26911_to; char* to + }, ; 15136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26912_from, ; char* from + ptr @.TypeMapEntry.26913_to; char* to + }, ; 15137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26914_from, ; char* from + ptr @.TypeMapEntry.26915_to; char* to + }, ; 15138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26916_from, ; char* from + ptr @.TypeMapEntry.26917_to; char* to + }, ; 15139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26918_from, ; char* from + ptr @.TypeMapEntry.26919_to; char* to + }, ; 15140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26920_from, ; char* from + ptr @.TypeMapEntry.26921_to; char* to + }, ; 15141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26922_from, ; char* from + ptr @.TypeMapEntry.26921_to; char* to + }, ; 15142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26923_from, ; char* from + ptr @.TypeMapEntry.26924_to; char* to + }, ; 15143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26925_from, ; char* from + ptr @.TypeMapEntry.26926_to; char* to + }, ; 15144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26927_from, ; char* from + ptr @.TypeMapEntry.26928_to; char* to + }, ; 15145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26929_from, ; char* from + ptr @.TypeMapEntry.26930_to; char* to + }, ; 15146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26931_from, ; char* from + ptr @.TypeMapEntry.26932_to; char* to + }, ; 15147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26933_from, ; char* from + ptr @.TypeMapEntry.26934_to; char* to + }, ; 15148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26935_from, ; char* from + ptr @.TypeMapEntry.26936_to; char* to + }, ; 15149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26937_from, ; char* from + ptr @.TypeMapEntry.26938_to; char* to + }, ; 15150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26939_from, ; char* from + ptr @.TypeMapEntry.26940_to; char* to + }, ; 15151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26941_from, ; char* from + ptr @.TypeMapEntry.26942_to; char* to + }, ; 15152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26943_from, ; char* from + ptr @.TypeMapEntry.26944_to; char* to + }, ; 15153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26945_from, ; char* from + ptr @.TypeMapEntry.26944_to; char* to + }, ; 15154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26946_from, ; char* from + ptr @.TypeMapEntry.26947_to; char* to + }, ; 15155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26948_from, ; char* from + ptr @.TypeMapEntry.26947_to; char* to + }, ; 15156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26949_from, ; char* from + ptr @.TypeMapEntry.26921_to; char* to + }, ; 15157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26950_from, ; char* from + ptr @.TypeMapEntry.26921_to; char* to + }, ; 15158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26951_from, ; char* from + ptr @.TypeMapEntry.26952_to; char* to + }, ; 15159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26953_from, ; char* from + ptr @.TypeMapEntry.26952_to; char* to + }, ; 15160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26954_from, ; char* from + ptr @.TypeMapEntry.26955_to; char* to + }, ; 15161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26956_from, ; char* from + ptr @.TypeMapEntry.26955_to; char* to + }, ; 15162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26957_from, ; char* from + ptr @.TypeMapEntry.26958_to; char* to + }, ; 15163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26959_from, ; char* from + ptr @.TypeMapEntry.26958_to; char* to + }, ; 15164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26960_from, ; char* from + ptr @.TypeMapEntry.26961_to; char* to + }, ; 15165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26962_from, ; char* from + ptr @.TypeMapEntry.26961_to; char* to + }, ; 15166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26963_from, ; char* from + ptr @.TypeMapEntry.26964_to; char* to + }, ; 15167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26965_from, ; char* from + ptr @.TypeMapEntry.26966_to; char* to + }, ; 15168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26967_from, ; char* from + ptr @.TypeMapEntry.26968_to; char* to + }, ; 15169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26969_from, ; char* from + ptr @.TypeMapEntry.26970_to; char* to + }, ; 15170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26971_from, ; char* from + ptr @.TypeMapEntry.26972_to; char* to + }, ; 15171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26973_from, ; char* from + ptr @.TypeMapEntry.26974_to; char* to + }, ; 15172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26975_from, ; char* from + ptr @.TypeMapEntry.26976_to; char* to + }, ; 15173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26977_from, ; char* from + ptr @.TypeMapEntry.26978_to; char* to + }, ; 15174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26979_from, ; char* from + ptr @.TypeMapEntry.26980_to; char* to + }, ; 15175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26981_from, ; char* from + ptr @.TypeMapEntry.26982_to; char* to + }, ; 15176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26983_from, ; char* from + ptr @.TypeMapEntry.26984_to; char* to + }, ; 15177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26985_from, ; char* from + ptr @.TypeMapEntry.26986_to; char* to + }, ; 15178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26987_from, ; char* from + ptr @.TypeMapEntry.26988_to; char* to + }, ; 15179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26989_from, ; char* from + ptr @.TypeMapEntry.26990_to; char* to + }, ; 15180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26991_from, ; char* from + ptr @.TypeMapEntry.26992_to; char* to + }, ; 15181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26993_from, ; char* from + ptr @.TypeMapEntry.26994_to; char* to + }, ; 15182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26995_from, ; char* from + ptr @.TypeMapEntry.26996_to; char* to + }, ; 15183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26997_from, ; char* from + ptr @.TypeMapEntry.26996_to; char* to + }, ; 15184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26998_from, ; char* from + ptr @.TypeMapEntry.26999_to; char* to + }, ; 15185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27000_from, ; char* from + ptr @.TypeMapEntry.26999_to; char* to + }, ; 15186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27001_from, ; char* from + ptr @.TypeMapEntry.27002_to; char* to + }, ; 15187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27003_from, ; char* from + ptr @.TypeMapEntry.27004_to; char* to + }, ; 15188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27005_from, ; char* from + ptr @.TypeMapEntry.27006_to; char* to + }, ; 15189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27007_from, ; char* from + ptr @.TypeMapEntry.27008_to; char* to + }, ; 15190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27009_from, ; char* from + ptr @.TypeMapEntry.27010_to; char* to + }, ; 15191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27011_from, ; char* from + ptr @.TypeMapEntry.27012_to; char* to + }, ; 15192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27013_from, ; char* from + ptr @.TypeMapEntry.27014_to; char* to + }, ; 15193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27015_from, ; char* from + ptr @.TypeMapEntry.27016_to; char* to + }, ; 15194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27017_from, ; char* from + ptr @.TypeMapEntry.27018_to; char* to + }, ; 15195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27019_from, ; char* from + ptr @.TypeMapEntry.27018_to; char* to + }, ; 15196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27020_from, ; char* from + ptr @.TypeMapEntry.27021_to; char* to + }, ; 15197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27022_from, ; char* from + ptr @.TypeMapEntry.27023_to; char* to + }, ; 15198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27024_from, ; char* from + ptr @.TypeMapEntry.27025_to; char* to + }, ; 15199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27026_from, ; char* from + ptr @.TypeMapEntry.27027_to; char* to + }, ; 15200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27028_from, ; char* from + ptr @.TypeMapEntry.27029_to; char* to + }, ; 15201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27030_from, ; char* from + ptr @.TypeMapEntry.27031_to; char* to + }, ; 15202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27032_from, ; char* from + ptr @.TypeMapEntry.27033_to; char* to + }, ; 15203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27034_from, ; char* from + ptr @.TypeMapEntry.27035_to; char* to + }, ; 15204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27036_from, ; char* from + ptr @.TypeMapEntry.27037_to; char* to + }, ; 15205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27038_from, ; char* from + ptr @.TypeMapEntry.27039_to; char* to + }, ; 15206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27040_from, ; char* from + ptr @.TypeMapEntry.27041_to; char* to + }, ; 15207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27042_from, ; char* from + ptr @.TypeMapEntry.27043_to; char* to + }, ; 15208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27044_from, ; char* from + ptr @.TypeMapEntry.27045_to; char* to + }, ; 15209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27046_from, ; char* from + ptr @.TypeMapEntry.27047_to; char* to + }, ; 15210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27048_from, ; char* from + ptr @.TypeMapEntry.27047_to; char* to + }, ; 15211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27049_from, ; char* from + ptr @.TypeMapEntry.27050_to; char* to + }, ; 15212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27051_from, ; char* from + ptr @.TypeMapEntry.27052_to; char* to + }, ; 15213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27053_from, ; char* from + ptr @.TypeMapEntry.27054_to; char* to + }, ; 15214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27055_from, ; char* from + ptr @.TypeMapEntry.27056_to; char* to + }, ; 15215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27057_from, ; char* from + ptr @.TypeMapEntry.27056_to; char* to + }, ; 15216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27058_from, ; char* from + ptr @.TypeMapEntry.27054_to; char* to + }, ; 15217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27059_from, ; char* from + ptr @.TypeMapEntry.27060_to; char* to + }, ; 15218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27061_from, ; char* from + ptr @.TypeMapEntry.27060_to; char* to + }, ; 15219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27062_from, ; char* from + ptr @.TypeMapEntry.27063_to; char* to + }, ; 15220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27064_from, ; char* from + ptr @.TypeMapEntry.27063_to; char* to + }, ; 15221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27065_from, ; char* from + ptr @.TypeMapEntry.27066_to; char* to + }, ; 15222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27067_from, ; char* from + ptr @.TypeMapEntry.27066_to; char* to + }, ; 15223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27068_from, ; char* from + ptr @.TypeMapEntry.27069_to; char* to + }, ; 15224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27070_from, ; char* from + ptr @.TypeMapEntry.27069_to; char* to + }, ; 15225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27071_from, ; char* from + ptr @.TypeMapEntry.27072_to; char* to + }, ; 15226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27073_from, ; char* from + ptr @.TypeMapEntry.27072_to; char* to + }, ; 15227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27074_from, ; char* from + ptr @.TypeMapEntry.27075_to; char* to + }, ; 15228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27076_from, ; char* from + ptr @.TypeMapEntry.27077_to; char* to + }, ; 15229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27078_from, ; char* from + ptr @.TypeMapEntry.27079_to; char* to + }, ; 15230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27080_from, ; char* from + ptr @.TypeMapEntry.27069_to; char* to + }, ; 15231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27081_from, ; char* from + ptr @.TypeMapEntry.27082_to; char* to + }, ; 15232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27083_from, ; char* from + ptr @.TypeMapEntry.27069_to; char* to + }, ; 15233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27084_from, ; char* from + ptr @.TypeMapEntry.27085_to; char* to + }, ; 15234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27086_from, ; char* from + ptr @.TypeMapEntry.27087_to; char* to + }, ; 15235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27088_from, ; char* from + ptr @.TypeMapEntry.27089_to; char* to + }, ; 15236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27090_from, ; char* from + ptr @.TypeMapEntry.27091_to; char* to + }, ; 15237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27092_from, ; char* from + ptr @.TypeMapEntry.27093_to; char* to + }, ; 15238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27094_from, ; char* from + ptr @.TypeMapEntry.27093_to; char* to + }, ; 15239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27095_from, ; char* from + ptr @.TypeMapEntry.27096_to; char* to + }, ; 15240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27097_from, ; char* from + ptr @.TypeMapEntry.27096_to; char* to + }, ; 15241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27098_from, ; char* from + ptr @.TypeMapEntry.27099_to; char* to + }, ; 15242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27100_from, ; char* from + ptr @.TypeMapEntry.27099_to; char* to + }, ; 15243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27101_from, ; char* from + ptr @.TypeMapEntry.27102_to; char* to + }, ; 15244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27103_from, ; char* from + ptr @.TypeMapEntry.27102_to; char* to + }, ; 15245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27104_from, ; char* from + ptr @.TypeMapEntry.27105_to; char* to + }, ; 15246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27106_from, ; char* from + ptr @.TypeMapEntry.27105_to; char* to + }, ; 15247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27107_from, ; char* from + ptr @.TypeMapEntry.27108_to; char* to + }, ; 15248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27109_from, ; char* from + ptr @.TypeMapEntry.27108_to; char* to + }, ; 15249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27110_from, ; char* from + ptr @.TypeMapEntry.27111_to; char* to + }, ; 15250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27112_from, ; char* from + ptr @.TypeMapEntry.27111_to; char* to + }, ; 15251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27113_from, ; char* from + ptr @.TypeMapEntry.26999_to; char* to + }, ; 15252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27114_from, ; char* from + ptr @.TypeMapEntry.26999_to; char* to + }, ; 15253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27115_from, ; char* from + ptr @.TypeMapEntry.27116_to; char* to + }, ; 15254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27117_from, ; char* from + ptr @.TypeMapEntry.27116_to; char* to + }, ; 15255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27118_from, ; char* from + ptr @.TypeMapEntry.27119_to; char* to + }, ; 15256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27120_from, ; char* from + ptr @.TypeMapEntry.27119_to; char* to + }, ; 15257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27121_from, ; char* from + ptr @.TypeMapEntry.27122_to; char* to + }, ; 15258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27123_from, ; char* from + ptr @.TypeMapEntry.27122_to; char* to + }, ; 15259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27124_from, ; char* from + ptr @.TypeMapEntry.27125_to; char* to + }, ; 15260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27126_from, ; char* from + ptr @.TypeMapEntry.27125_to; char* to + }, ; 15261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27127_from, ; char* from + ptr @.TypeMapEntry.27128_to; char* to + }, ; 15262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27129_from, ; char* from + ptr @.TypeMapEntry.27128_to; char* to + }, ; 15263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27130_from, ; char* from + ptr @.TypeMapEntry.27131_to; char* to + }, ; 15264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27132_from, ; char* from + ptr @.TypeMapEntry.27131_to; char* to + }, ; 15265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27133_from, ; char* from + ptr @.TypeMapEntry.27134_to; char* to + }, ; 15266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27135_from, ; char* from + ptr @.TypeMapEntry.27134_to; char* to + }, ; 15267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27136_from, ; char* from + ptr @.TypeMapEntry.27137_to; char* to + }, ; 15268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27138_from, ; char* from + ptr @.TypeMapEntry.27137_to; char* to + }, ; 15269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27139_from, ; char* from + ptr @.TypeMapEntry.27140_to; char* to + }, ; 15270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27141_from, ; char* from + ptr @.TypeMapEntry.27140_to; char* to + }, ; 15271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27142_from, ; char* from + ptr @.TypeMapEntry.27143_to; char* to + }, ; 15272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27144_from, ; char* from + ptr @.TypeMapEntry.27143_to; char* to + }, ; 15273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27145_from, ; char* from + ptr @.TypeMapEntry.27146_to; char* to + }, ; 15274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27147_from, ; char* from + ptr @.TypeMapEntry.27146_to; char* to + }, ; 15275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27148_from, ; char* from + ptr @.TypeMapEntry.27149_to; char* to + }, ; 15276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27150_from, ; char* from + ptr @.TypeMapEntry.27149_to; char* to + }, ; 15277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27151_from, ; char* from + ptr @.TypeMapEntry.27152_to; char* to + }, ; 15278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27153_from, ; char* from + ptr @.TypeMapEntry.27152_to; char* to + }, ; 15279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27154_from, ; char* from + ptr @.TypeMapEntry.27155_to; char* to + }, ; 15280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27156_from, ; char* from + ptr @.TypeMapEntry.27155_to; char* to + }, ; 15281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27157_from, ; char* from + ptr @.TypeMapEntry.27158_to; char* to + }, ; 15282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27159_from, ; char* from + ptr @.TypeMapEntry.27160_to; char* to + }, ; 15283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27161_from, ; char* from + ptr @.TypeMapEntry.27162_to; char* to + }, ; 15284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27163_from, ; char* from + ptr @.TypeMapEntry.27146_to; char* to + }, ; 15285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27164_from, ; char* from + ptr @.TypeMapEntry.27146_to; char* to + }, ; 15286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27165_from, ; char* from + ptr @.TypeMapEntry.27166_to; char* to + }, ; 15287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27167_from, ; char* from + ptr @.TypeMapEntry.27168_to; char* to + }, ; 15288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27169_from, ; char* from + ptr @.TypeMapEntry.27170_to; char* to + }, ; 15289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27171_from, ; char* from + ptr @.TypeMapEntry.27172_to; char* to + }, ; 15290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27173_from, ; char* from + ptr @.TypeMapEntry.27174_to; char* to + }, ; 15291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27175_from, ; char* from + ptr @.TypeMapEntry.27176_to; char* to + }, ; 15292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27177_from, ; char* from + ptr @.TypeMapEntry.27176_to; char* to + }, ; 15293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27178_from, ; char* from + ptr @.TypeMapEntry.27179_to; char* to + }, ; 15294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27180_from, ; char* from + ptr @.TypeMapEntry.27181_to; char* to + }, ; 15295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27182_from, ; char* from + ptr @.TypeMapEntry.27183_to; char* to + }, ; 15296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27184_from, ; char* from + ptr @.TypeMapEntry.27185_to; char* to + }, ; 15297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27186_from, ; char* from + ptr @.TypeMapEntry.27187_to; char* to + }, ; 15298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27188_from, ; char* from + ptr @.TypeMapEntry.27189_to; char* to + }, ; 15299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27190_from, ; char* from + ptr @.TypeMapEntry.27191_to; char* to + }, ; 15300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27192_from, ; char* from + ptr @.TypeMapEntry.27193_to; char* to + }, ; 15301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27194_from, ; char* from + ptr @.TypeMapEntry.27195_to; char* to + }, ; 15302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27196_from, ; char* from + ptr @.TypeMapEntry.27195_to; char* to + }, ; 15303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27197_from, ; char* from + ptr @.TypeMapEntry.27198_to; char* to + }, ; 15304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27199_from, ; char* from + ptr @.TypeMapEntry.27200_to; char* to + }, ; 15305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27201_from, ; char* from + ptr @.TypeMapEntry.27200_to; char* to + }, ; 15306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27202_from, ; char* from + ptr @.TypeMapEntry.27203_to; char* to + }, ; 15307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27204_from, ; char* from + ptr @.TypeMapEntry.27203_to; char* to + }, ; 15308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27205_from, ; char* from + ptr @.TypeMapEntry.27206_to; char* to + }, ; 15309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27207_from, ; char* from + ptr @.TypeMapEntry.27206_to; char* to + }, ; 15310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27208_from, ; char* from + ptr @.TypeMapEntry.27198_to; char* to + }, ; 15311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27209_from, ; char* from + ptr @.TypeMapEntry.27210_to; char* to + }, ; 15312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27211_from, ; char* from + ptr @.TypeMapEntry.27210_to; char* to + }, ; 15313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27212_from, ; char* from + ptr @.TypeMapEntry.27213_to; char* to + }, ; 15314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27214_from, ; char* from + ptr @.TypeMapEntry.27215_to; char* to + }, ; 15315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27216_from, ; char* from + ptr @.TypeMapEntry.27217_to; char* to + }, ; 15316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27218_from, ; char* from + ptr @.TypeMapEntry.27219_to; char* to + }, ; 15317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27220_from, ; char* from + ptr @.TypeMapEntry.27221_to; char* to + }, ; 15318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27222_from, ; char* from + ptr @.TypeMapEntry.27223_to; char* to + }, ; 15319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27224_from, ; char* from + ptr @.TypeMapEntry.27225_to; char* to + }, ; 15320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27226_from, ; char* from + ptr @.TypeMapEntry.27227_to; char* to + }, ; 15321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27228_from, ; char* from + ptr @.TypeMapEntry.27229_to; char* to + }, ; 15322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27230_from, ; char* from + ptr @.TypeMapEntry.27229_to; char* to + }, ; 15323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27231_from, ; char* from + ptr @.TypeMapEntry.27232_to; char* to + }, ; 15324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27233_from, ; char* from + ptr @.TypeMapEntry.27232_to; char* to + }, ; 15325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27234_from, ; char* from + ptr @.TypeMapEntry.27235_to; char* to + }, ; 15326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27236_from, ; char* from + ptr @.TypeMapEntry.27237_to; char* to + }, ; 15327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27238_from, ; char* from + ptr @.TypeMapEntry.27239_to; char* to + }, ; 15328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27240_from, ; char* from + ptr @.TypeMapEntry.27241_to; char* to + }, ; 15329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27242_from, ; char* from + ptr @.TypeMapEntry.27243_to; char* to + }, ; 15330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27244_from, ; char* from + ptr @.TypeMapEntry.27245_to; char* to + }, ; 15331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27246_from, ; char* from + ptr @.TypeMapEntry.27247_to; char* to + }, ; 15332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27248_from, ; char* from + ptr @.TypeMapEntry.27249_to; char* to + }, ; 15333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27250_from, ; char* from + ptr @.TypeMapEntry.27251_to; char* to + }, ; 15334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27252_from, ; char* from + ptr @.TypeMapEntry.27253_to; char* to + }, ; 15335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27254_from, ; char* from + ptr @.TypeMapEntry.27255_to; char* to + }, ; 15336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27256_from, ; char* from + ptr @.TypeMapEntry.27257_to; char* to + }, ; 15337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27258_from, ; char* from + ptr @.TypeMapEntry.27259_to; char* to + }, ; 15338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27260_from, ; char* from + ptr @.TypeMapEntry.27261_to; char* to + } ; 15339 +], align 8 + +@map_java_to_managed = internal dso_local constant [15340 x %struct.TypeMapEntry] [ + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27255_to, ; char* from + ptr @.TypeMapEntry.27254_from; char* to + }, ; 0 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27257_to, ; char* from + ptr @.TypeMapEntry.27256_from; char* to + }, ; 1 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3901_to, ; char* from + ptr @.TypeMapEntry.3900_from; char* to + }, ; 2 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3897_to, ; char* from + ptr @.TypeMapEntry.3896_from; char* to + }, ; 3 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3899_to, ; char* from + ptr @.TypeMapEntry.3898_from; char* to + }, ; 4 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7169_to, ; char* from + ptr @.TypeMapEntry.7168_from; char* to + }, ; 5 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7127_to, ; char* from + ptr @.TypeMapEntry.7126_from; char* to + }, ; 6 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7129_to, ; char* from + ptr @.TypeMapEntry.7128_from; char* to + }, ; 7 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7131_to, ; char* from + ptr @.TypeMapEntry.7130_from; char* to + }, ; 8 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7133_to, ; char* from + ptr @.TypeMapEntry.7132_from; char* to + }, ; 9 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7135_to, ; char* from + ptr @.TypeMapEntry.7134_from; char* to + }, ; 10 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7137_to, ; char* from + ptr @.TypeMapEntry.7136_from; char* to + }, ; 11 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7139_to, ; char* from + ptr @.TypeMapEntry.7138_from; char* to + }, ; 12 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7141_to, ; char* from + ptr @.TypeMapEntry.7140_from; char* to + }, ; 13 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7143_to, ; char* from + ptr @.TypeMapEntry.7142_from; char* to + }, ; 14 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7145_to, ; char* from + ptr @.TypeMapEntry.7144_from; char* to + }, ; 15 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7147_to, ; char* from + ptr @.TypeMapEntry.7146_from; char* to + }, ; 16 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7149_to, ; char* from + ptr @.TypeMapEntry.7148_from; char* to + }, ; 17 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7151_to, ; char* from + ptr @.TypeMapEntry.7150_from; char* to + }, ; 18 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7153_to, ; char* from + ptr @.TypeMapEntry.7152_from; char* to + }, ; 19 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7155_to, ; char* from + ptr @.TypeMapEntry.7154_from; char* to + }, ; 20 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7157_to, ; char* from + ptr @.TypeMapEntry.7156_from; char* to + }, ; 21 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7159_to, ; char* from + ptr @.TypeMapEntry.7158_from; char* to + }, ; 22 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7161_to, ; char* from + ptr @.TypeMapEntry.7160_from; char* to + }, ; 23 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7163_to, ; char* from + ptr @.TypeMapEntry.7162_from; char* to + }, ; 24 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7165_to, ; char* from + ptr @.TypeMapEntry.7164_from; char* to + }, ; 25 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7167_to, ; char* from + ptr @.TypeMapEntry.7166_from; char* to + }, ; 26 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4_to, ; char* from + ptr @.TypeMapEntry.3_from; char* to + }, ; 27 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1_to, ; char* from + ptr @.TypeMapEntry.0_from; char* to + }, ; 28 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1_to, ; char* from + ptr @.TypeMapEntry.0_from; char* to + }, ; 29 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6_to, ; char* from + ptr @.TypeMapEntry.5_from; char* to + }, ; 30 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.30_to, ; char* from + ptr @.TypeMapEntry.29_from; char* to + }, ; 31 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.30_to, ; char* from + ptr @.TypeMapEntry.29_from; char* to + }, ; 32 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8_to, ; char* from + ptr @.TypeMapEntry.7_from; char* to + }, ; 33 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8_to, ; char* from + ptr @.TypeMapEntry.7_from; char* to + }, ; 34 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19_to, ; char* from + ptr @.TypeMapEntry.18_from; char* to + }, ; 35 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14_to, ; char* from + ptr null; char* to + }, ; 36 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14_to, ; char* from + ptr null; char* to + }, ; 37 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21_to, ; char* from + ptr @.TypeMapEntry.20_from; char* to + }, ; 38 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.28_to, ; char* from + ptr @.TypeMapEntry.27_from; char* to + }, ; 39 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23_to, ; char* from + ptr null; char* to + }, ; 40 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23_to, ; char* from + ptr null; char* to + }, ; 41 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11_to, ; char* from + ptr null; char* to + }, ; 42 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11_to, ; char* from + ptr null; char* to + }, ; 43 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.32_to, ; char* from + ptr @.TypeMapEntry.31_from; char* to + }, ; 44 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.49_to, ; char* from + ptr null; char* to + }, ; 45 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.49_to, ; char* from + ptr null; char* to + }, ; 46 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.46_to, ; char* from + ptr null; char* to + }, ; 47 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.46_to, ; char* from + ptr null; char* to + }, ; 48 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.38_to, ; char* from + ptr @.TypeMapEntry.37_from; char* to + }, ; 49 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.35_to, ; char* from + ptr @.TypeMapEntry.34_from; char* to + }, ; 50 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.35_to, ; char* from + ptr @.TypeMapEntry.34_from; char* to + }, ; 51 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.44_to, ; char* from + ptr @.TypeMapEntry.43_from; char* to + }, ; 52 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.40_to, ; char* from + ptr @.TypeMapEntry.39_from; char* to + }, ; 53 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.42_to, ; char* from + ptr @.TypeMapEntry.41_from; char* to + }, ; 54 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.54_to, ; char* from + ptr @.TypeMapEntry.53_from; char* to + }, ; 55 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.52_to, ; char* from + ptr @.TypeMapEntry.51_from; char* to + }, ; 56 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.58_to, ; char* from + ptr @.TypeMapEntry.57_from; char* to + }, ; 57 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.56_to, ; char* from + ptr @.TypeMapEntry.55_from; char* to + }, ; 58 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.63_to, ; char* from + ptr @.TypeMapEntry.62_from; char* to + }, ; 59 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.60_to, ; char* from + ptr null; char* to + }, ; 60 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.60_to, ; char* from + ptr null; char* to + }, ; 61 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.65_to, ; char* from + ptr @.TypeMapEntry.64_from; char* to + }, ; 62 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.65_to, ; char* from + ptr @.TypeMapEntry.64_from; char* to + }, ; 63 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.68_to, ; char* from + ptr @.TypeMapEntry.67_from; char* to + }, ; 64 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.70_to, ; char* from + ptr @.TypeMapEntry.69_from; char* to + }, ; 65 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.72_to, ; char* from + ptr @.TypeMapEntry.71_from; char* to + }, ; 66 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.74_to, ; char* from + ptr @.TypeMapEntry.73_from; char* to + }, ; 67 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.82_to, ; char* from + ptr null; char* to + }, ; 68 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.82_to, ; char* from + ptr null; char* to + }, ; 69 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.85_to, ; char* from + ptr null; char* to + }, ; 70 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.85_to, ; char* from + ptr null; char* to + }, ; 71 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.76_to, ; char* from + ptr @.TypeMapEntry.75_from; char* to + }, ; 72 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.78_to, ; char* from + ptr @.TypeMapEntry.77_from; char* to + }, ; 73 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.80_to, ; char* from + ptr @.TypeMapEntry.79_from; char* to + }, ; 74 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.93_to, ; char* from + ptr @.TypeMapEntry.92_from; char* to + }, ; 75 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.88_to, ; char* from + ptr null; char* to + }, ; 76 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.88_to, ; char* from + ptr null; char* to + }, ; 77 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.95_to, ; char* from + ptr @.TypeMapEntry.94_from; char* to + }, ; 78 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.159_to, ; char* from + ptr @.TypeMapEntry.158_from; char* to + }, ; 79 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.161_to, ; char* from + ptr @.TypeMapEntry.160_from; char* to + }, ; 80 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.97_to, ; char* from + ptr @.TypeMapEntry.96_from; char* to + }, ; 81 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.99_to, ; char* from + ptr @.TypeMapEntry.98_from; char* to + }, ; 82 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.103_to, ; char* from + ptr @.TypeMapEntry.102_from; char* to + }, ; 83 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.101_to, ; char* from + ptr @.TypeMapEntry.100_from; char* to + }, ; 84 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.107_to, ; char* from + ptr @.TypeMapEntry.106_from; char* to + }, ; 85 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.105_to, ; char* from + ptr @.TypeMapEntry.104_from; char* to + }, ; 86 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.109_to, ; char* from + ptr @.TypeMapEntry.108_from; char* to + }, ; 87 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.113_to, ; char* from + ptr @.TypeMapEntry.112_from; char* to + }, ; 88 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.111_to, ; char* from + ptr @.TypeMapEntry.110_from; char* to + }, ; 89 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.115_to, ; char* from + ptr @.TypeMapEntry.114_from; char* to + }, ; 90 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.117_to, ; char* from + ptr @.TypeMapEntry.116_from; char* to + }, ; 91 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.119_to, ; char* from + ptr @.TypeMapEntry.118_from; char* to + }, ; 92 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.121_to, ; char* from + ptr @.TypeMapEntry.120_from; char* to + }, ; 93 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.123_to, ; char* from + ptr @.TypeMapEntry.122_from; char* to + }, ; 94 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.127_to, ; char* from + ptr @.TypeMapEntry.126_from; char* to + }, ; 95 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.125_to, ; char* from + ptr @.TypeMapEntry.124_from; char* to + }, ; 96 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.129_to, ; char* from + ptr @.TypeMapEntry.128_from; char* to + }, ; 97 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.133_to, ; char* from + ptr @.TypeMapEntry.132_from; char* to + }, ; 98 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.131_to, ; char* from + ptr @.TypeMapEntry.130_from; char* to + }, ; 99 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.135_to, ; char* from + ptr @.TypeMapEntry.134_from; char* to + }, ; 100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.137_to, ; char* from + ptr @.TypeMapEntry.136_from; char* to + }, ; 101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.141_to, ; char* from + ptr @.TypeMapEntry.140_from; char* to + }, ; 102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.139_to, ; char* from + ptr @.TypeMapEntry.138_from; char* to + }, ; 103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.143_to, ; char* from + ptr @.TypeMapEntry.142_from; char* to + }, ; 104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.147_to, ; char* from + ptr @.TypeMapEntry.146_from; char* to + }, ; 105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.145_to, ; char* from + ptr @.TypeMapEntry.144_from; char* to + }, ; 106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.151_to, ; char* from + ptr @.TypeMapEntry.150_from; char* to + }, ; 107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.149_to, ; char* from + ptr @.TypeMapEntry.148_from; char* to + }, ; 108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.153_to, ; char* from + ptr @.TypeMapEntry.152_from; char* to + }, ; 109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.157_to, ; char* from + ptr @.TypeMapEntry.156_from; char* to + }, ; 110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.155_to, ; char* from + ptr @.TypeMapEntry.154_from; char* to + }, ; 111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.163_to, ; char* from + ptr @.TypeMapEntry.162_from; char* to + }, ; 112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.165_to, ; char* from + ptr @.TypeMapEntry.164_from; char* to + }, ; 113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.169_to, ; char* from + ptr @.TypeMapEntry.168_from; char* to + }, ; 114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.167_to, ; char* from + ptr @.TypeMapEntry.166_from; char* to + }, ; 115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.173_to, ; char* from + ptr @.TypeMapEntry.172_from; char* to + }, ; 116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.171_to, ; char* from + ptr @.TypeMapEntry.170_from; char* to + }, ; 117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.175_to, ; char* from + ptr @.TypeMapEntry.174_from; char* to + }, ; 118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.189_to, ; char* from + ptr null; char* to + }, ; 119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.189_to, ; char* from + ptr null; char* to + }, ; 120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.177_to, ; char* from + ptr @.TypeMapEntry.176_from; char* to + }, ; 121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.179_to, ; char* from + ptr @.TypeMapEntry.178_from; char* to + }, ; 122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.183_to, ; char* from + ptr @.TypeMapEntry.182_from; char* to + }, ; 123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.181_to, ; char* from + ptr @.TypeMapEntry.180_from; char* to + }, ; 124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.187_to, ; char* from + ptr @.TypeMapEntry.186_from; char* to + }, ; 125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.185_to, ; char* from + ptr @.TypeMapEntry.184_from; char* to + }, ; 126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.194_to, ; char* from + ptr @.TypeMapEntry.193_from; char* to + }, ; 127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.192_to, ; char* from + ptr @.TypeMapEntry.191_from; char* to + }, ; 128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.198_to, ; char* from + ptr @.TypeMapEntry.197_from; char* to + }, ; 129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.196_to, ; char* from + ptr @.TypeMapEntry.195_from; char* to + }, ; 130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.202_to, ; char* from + ptr @.TypeMapEntry.201_from; char* to + }, ; 131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.200_to, ; char* from + ptr @.TypeMapEntry.199_from; char* to + }, ; 132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.204_to, ; char* from + ptr @.TypeMapEntry.203_from; char* to + }, ; 133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.208_to, ; char* from + ptr @.TypeMapEntry.207_from; char* to + }, ; 134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.206_to, ; char* from + ptr @.TypeMapEntry.205_from; char* to + }, ; 135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.212_to, ; char* from + ptr @.TypeMapEntry.211_from; char* to + }, ; 136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.210_to, ; char* from + ptr @.TypeMapEntry.209_from; char* to + }, ; 137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.216_to, ; char* from + ptr @.TypeMapEntry.215_from; char* to + }, ; 138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.214_to, ; char* from + ptr @.TypeMapEntry.213_from; char* to + }, ; 139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.220_to, ; char* from + ptr @.TypeMapEntry.219_from; char* to + }, ; 140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.218_to, ; char* from + ptr @.TypeMapEntry.217_from; char* to + }, ; 141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.224_to, ; char* from + ptr @.TypeMapEntry.223_from; char* to + }, ; 142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.222_to, ; char* from + ptr @.TypeMapEntry.221_from; char* to + }, ; 143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.228_to, ; char* from + ptr @.TypeMapEntry.227_from; char* to + }, ; 144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.226_to, ; char* from + ptr @.TypeMapEntry.225_from; char* to + }, ; 145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.230_to, ; char* from + ptr @.TypeMapEntry.229_from; char* to + }, ; 146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.234_to, ; char* from + ptr @.TypeMapEntry.233_from; char* to + }, ; 147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.232_to, ; char* from + ptr @.TypeMapEntry.231_from; char* to + }, ; 148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.236_to, ; char* from + ptr @.TypeMapEntry.235_from; char* to + }, ; 149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.240_to, ; char* from + ptr @.TypeMapEntry.239_from; char* to + }, ; 150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.238_to, ; char* from + ptr @.TypeMapEntry.237_from; char* to + }, ; 151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.242_to, ; char* from + ptr @.TypeMapEntry.241_from; char* to + }, ; 152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.246_to, ; char* from + ptr @.TypeMapEntry.245_from; char* to + }, ; 153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.244_to, ; char* from + ptr @.TypeMapEntry.243_from; char* to + }, ; 154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.250_to, ; char* from + ptr @.TypeMapEntry.249_from; char* to + }, ; 155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.248_to, ; char* from + ptr @.TypeMapEntry.247_from; char* to + }, ; 156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.254_to, ; char* from + ptr @.TypeMapEntry.253_from; char* to + }, ; 157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.252_to, ; char* from + ptr @.TypeMapEntry.251_from; char* to + }, ; 158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.258_to, ; char* from + ptr @.TypeMapEntry.257_from; char* to + }, ; 159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.256_to, ; char* from + ptr @.TypeMapEntry.255_from; char* to + }, ; 160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.262_to, ; char* from + ptr @.TypeMapEntry.261_from; char* to + }, ; 161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.260_to, ; char* from + ptr @.TypeMapEntry.259_from; char* to + }, ; 162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.264_to, ; char* from + ptr @.TypeMapEntry.263_from; char* to + }, ; 163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.266_to, ; char* from + ptr @.TypeMapEntry.265_from; char* to + }, ; 164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.270_to, ; char* from + ptr @.TypeMapEntry.269_from; char* to + }, ; 165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.268_to, ; char* from + ptr @.TypeMapEntry.267_from; char* to + }, ; 166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.272_to, ; char* from + ptr @.TypeMapEntry.271_from; char* to + }, ; 167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.276_to, ; char* from + ptr @.TypeMapEntry.275_from; char* to + }, ; 168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.274_to, ; char* from + ptr @.TypeMapEntry.273_from; char* to + }, ; 169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.280_to, ; char* from + ptr @.TypeMapEntry.279_from; char* to + }, ; 170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.278_to, ; char* from + ptr @.TypeMapEntry.277_from; char* to + }, ; 171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.282_to, ; char* from + ptr @.TypeMapEntry.281_from; char* to + }, ; 172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.284_to, ; char* from + ptr @.TypeMapEntry.283_from; char* to + }, ; 173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.288_to, ; char* from + ptr @.TypeMapEntry.287_from; char* to + }, ; 174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.286_to, ; char* from + ptr @.TypeMapEntry.285_from; char* to + }, ; 175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.292_to, ; char* from + ptr @.TypeMapEntry.291_from; char* to + }, ; 176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.290_to, ; char* from + ptr @.TypeMapEntry.289_from; char* to + }, ; 177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.296_to, ; char* from + ptr @.TypeMapEntry.295_from; char* to + }, ; 178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.294_to, ; char* from + ptr @.TypeMapEntry.293_from; char* to + }, ; 179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.313_to, ; char* from + ptr @.TypeMapEntry.312_from; char* to + }, ; 180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.307_to, ; char* from + ptr @.TypeMapEntry.306_from; char* to + }, ; 181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.311_to, ; char* from + ptr @.TypeMapEntry.310_from; char* to + }, ; 182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.309_to, ; char* from + ptr @.TypeMapEntry.308_from; char* to + }, ; 183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.317_to, ; char* from + ptr @.TypeMapEntry.316_from; char* to + }, ; 184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.315_to, ; char* from + ptr @.TypeMapEntry.314_from; char* to + }, ; 185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.319_to, ; char* from + ptr @.TypeMapEntry.318_from; char* to + }, ; 186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.319_to, ; char* from + ptr @.TypeMapEntry.318_from; char* to + }, ; 187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.321_to, ; char* from + ptr @.TypeMapEntry.320_from; char* to + }, ; 188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.298_to, ; char* from + ptr null; char* to + }, ; 189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.298_to, ; char* from + ptr null; char* to + }, ; 190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.301_to, ; char* from + ptr null; char* to + }, ; 191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.301_to, ; char* from + ptr null; char* to + }, ; 192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.324_to, ; char* from + ptr @.TypeMapEntry.323_from; char* to + }, ; 193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.326_to, ; char* from + ptr @.TypeMapEntry.325_from; char* to + }, ; 194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.304_to, ; char* from + ptr null; char* to + }, ; 195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.304_to, ; char* from + ptr null; char* to + }, ; 196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.328_to, ; char* from + ptr @.TypeMapEntry.327_from; char* to + }, ; 197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.332_to, ; char* from + ptr @.TypeMapEntry.331_from; char* to + }, ; 198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.330_to, ; char* from + ptr @.TypeMapEntry.329_from; char* to + }, ; 199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.334_to, ; char* from + ptr @.TypeMapEntry.333_from; char* to + }, ; 200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.338_to, ; char* from + ptr @.TypeMapEntry.337_from; char* to + }, ; 201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.336_to, ; char* from + ptr @.TypeMapEntry.335_from; char* to + }, ; 202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.342_to, ; char* from + ptr @.TypeMapEntry.341_from; char* to + }, ; 203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.340_to, ; char* from + ptr @.TypeMapEntry.339_from; char* to + }, ; 204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.346_to, ; char* from + ptr @.TypeMapEntry.345_from; char* to + }, ; 205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.344_to, ; char* from + ptr @.TypeMapEntry.343_from; char* to + }, ; 206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.348_to, ; char* from + ptr @.TypeMapEntry.347_from; char* to + }, ; 207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.350_to, ; char* from + ptr @.TypeMapEntry.349_from; char* to + }, ; 208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.354_to, ; char* from + ptr @.TypeMapEntry.353_from; char* to + }, ; 209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.352_to, ; char* from + ptr @.TypeMapEntry.351_from; char* to + }, ; 210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.356_to, ; char* from + ptr @.TypeMapEntry.355_from; char* to + }, ; 211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.360_to, ; char* from + ptr @.TypeMapEntry.359_from; char* to + }, ; 212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.358_to, ; char* from + ptr @.TypeMapEntry.357_from; char* to + }, ; 213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.364_to, ; char* from + ptr @.TypeMapEntry.363_from; char* to + }, ; 214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.362_to, ; char* from + ptr @.TypeMapEntry.361_from; char* to + }, ; 215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.366_to, ; char* from + ptr @.TypeMapEntry.365_from; char* to + }, ; 216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.368_to, ; char* from + ptr @.TypeMapEntry.367_from; char* to + }, ; 217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.372_to, ; char* from + ptr @.TypeMapEntry.371_from; char* to + }, ; 218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.370_to, ; char* from + ptr @.TypeMapEntry.369_from; char* to + }, ; 219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.374_to, ; char* from + ptr @.TypeMapEntry.373_from; char* to + }, ; 220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.378_to, ; char* from + ptr @.TypeMapEntry.377_from; char* to + }, ; 221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.376_to, ; char* from + ptr @.TypeMapEntry.375_from; char* to + }, ; 222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.380_to, ; char* from + ptr @.TypeMapEntry.379_from; char* to + }, ; 223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.384_to, ; char* from + ptr @.TypeMapEntry.383_from; char* to + }, ; 224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.382_to, ; char* from + ptr @.TypeMapEntry.381_from; char* to + }, ; 225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.388_to, ; char* from + ptr @.TypeMapEntry.387_from; char* to + }, ; 226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.386_to, ; char* from + ptr @.TypeMapEntry.385_from; char* to + }, ; 227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.390_to, ; char* from + ptr @.TypeMapEntry.389_from; char* to + }, ; 228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.392_to, ; char* from + ptr @.TypeMapEntry.391_from; char* to + }, ; 229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.404_to, ; char* from + ptr @.TypeMapEntry.403_from; char* to + }, ; 230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.404_to, ; char* from + ptr @.TypeMapEntry.403_from; char* to + }, ; 231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.394_to, ; char* from + ptr null; char* to + }, ; 232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.394_to, ; char* from + ptr null; char* to + }, ; 233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.399_to, ; char* from + ptr null; char* to + }, ; 234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.399_to, ; char* from + ptr null; char* to + }, ; 235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.408_to, ; char* from + ptr @.TypeMapEntry.407_from; char* to + }, ; 236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.411_to, ; char* from + ptr @.TypeMapEntry.410_from; char* to + }, ; 237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.411_to, ; char* from + ptr @.TypeMapEntry.410_from; char* to + }, ; 238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.416_to, ; char* from + ptr @.TypeMapEntry.415_from; char* to + }, ; 239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.414_to, ; char* from + ptr @.TypeMapEntry.413_from; char* to + }, ; 240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.418_to, ; char* from + ptr @.TypeMapEntry.417_from; char* to + }, ; 241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.420_to, ; char* from + ptr @.TypeMapEntry.419_from; char* to + }, ; 242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.420_to, ; char* from + ptr @.TypeMapEntry.419_from; char* to + }, ; 243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.423_to, ; char* from + ptr @.TypeMapEntry.422_from; char* to + }, ; 244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.425_to, ; char* from + ptr @.TypeMapEntry.424_from; char* to + }, ; 245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.433_to, ; char* from + ptr @.TypeMapEntry.432_from; char* to + }, ; 246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.435_to, ; char* from + ptr @.TypeMapEntry.434_from; char* to + }, ; 247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.437_to, ; char* from + ptr @.TypeMapEntry.436_from; char* to + }, ; 248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.437_to, ; char* from + ptr @.TypeMapEntry.436_from; char* to + }, ; 249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.445_to, ; char* from + ptr @.TypeMapEntry.444_from; char* to + }, ; 250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.440_to, ; char* from + ptr null; char* to + }, ; 251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.440_to, ; char* from + ptr null; char* to + }, ; 252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.447_to, ; char* from + ptr @.TypeMapEntry.446_from; char* to + }, ; 253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.449_to, ; char* from + ptr @.TypeMapEntry.448_from; char* to + }, ; 254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.451_to, ; char* from + ptr @.TypeMapEntry.450_from; char* to + }, ; 255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.453_to, ; char* from + ptr @.TypeMapEntry.452_from; char* to + }, ; 256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.455_to, ; char* from + ptr @.TypeMapEntry.454_from; char* to + }, ; 257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.462_to, ; char* from + ptr @.TypeMapEntry.461_from; char* to + }, ; 258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.457_to, ; char* from + ptr null; char* to + }, ; 259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.457_to, ; char* from + ptr null; char* to + }, ; 260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.427_to, ; char* from + ptr null; char* to + }, ; 261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.427_to, ; char* from + ptr null; char* to + }, ; 262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.464_to, ; char* from + ptr @.TypeMapEntry.463_from; char* to + }, ; 263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.464_to, ; char* from + ptr @.TypeMapEntry.463_from; char* to + }, ; 264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.430_to, ; char* from + ptr null; char* to + }, ; 265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.430_to, ; char* from + ptr null; char* to + }, ; 266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.477_to, ; char* from + ptr @.TypeMapEntry.476_from; char* to + }, ; 267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.467_to, ; char* from + ptr null; char* to + }, ; 268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.467_to, ; char* from + ptr null; char* to + }, ; 269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.472_to, ; char* from + ptr null; char* to + }, ; 270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.472_to, ; char* from + ptr null; char* to + }, ; 271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.479_to, ; char* from + ptr null; char* to + }, ; 272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.479_to, ; char* from + ptr null; char* to + }, ; 273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.479_to, ; char* from + ptr null; char* to + }, ; 274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.479_to, ; char* from + ptr null; char* to + }, ; 275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.482_to, ; char* from + ptr null; char* to + }, ; 276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.482_to, ; char* from + ptr null; char* to + }, ; 277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.482_to, ; char* from + ptr null; char* to + }, ; 278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.482_to, ; char* from + ptr null; char* to + }, ; 279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.509_to, ; char* from + ptr @.TypeMapEntry.508_from; char* to + }, ; 280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.509_to, ; char* from + ptr @.TypeMapEntry.508_from; char* to + }, ; 281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.504_to, ; char* from + ptr @.TypeMapEntry.503_from; char* to + }, ; 282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.489_to, ; char* from + ptr null; char* to + }, ; 283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.489_to, ; char* from + ptr null; char* to + }, ; 284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.494_to, ; char* from + ptr null; char* to + }, ; 285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.494_to, ; char* from + ptr null; char* to + }, ; 286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.506_to, ; char* from + ptr @.TypeMapEntry.505_from; char* to + }, ; 287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.506_to, ; char* from + ptr @.TypeMapEntry.505_from; char* to + }, ; 288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.499_to, ; char* from + ptr null; char* to + }, ; 289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.499_to, ; char* from + ptr null; char* to + }, ; 290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.515_to, ; char* from + ptr @.TypeMapEntry.514_from; char* to + }, ; 291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.512_to, ; char* from + ptr null; char* to + }, ; 292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.512_to, ; char* from + ptr null; char* to + }, ; 293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.517_to, ; char* from + ptr @.TypeMapEntry.516_from; char* to + }, ; 294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.537_to, ; char* from + ptr @.TypeMapEntry.536_from; char* to + }, ; 295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.519_to, ; char* from + ptr @.TypeMapEntry.518_from; char* to + }, ; 296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.521_to, ; char* from + ptr @.TypeMapEntry.520_from; char* to + }, ; 297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.523_to, ; char* from + ptr @.TypeMapEntry.522_from; char* to + }, ; 298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.525_to, ; char* from + ptr @.TypeMapEntry.524_from; char* to + }, ; 299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.527_to, ; char* from + ptr @.TypeMapEntry.526_from; char* to + }, ; 300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.529_to, ; char* from + ptr @.TypeMapEntry.528_from; char* to + }, ; 301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.531_to, ; char* from + ptr @.TypeMapEntry.530_from; char* to + }, ; 302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.535_to, ; char* from + ptr @.TypeMapEntry.534_from; char* to + }, ; 303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.533_to, ; char* from + ptr @.TypeMapEntry.532_from; char* to + }, ; 304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.539_to, ; char* from + ptr @.TypeMapEntry.538_from; char* to + }, ; 305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.541_to, ; char* from + ptr @.TypeMapEntry.540_from; char* to + }, ; 306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.616_to, ; char* from + ptr @.TypeMapEntry.615_from; char* to + }, ; 307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.609_to, ; char* from + ptr @.TypeMapEntry.608_from; char* to + }, ; 308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.611_to, ; char* from + ptr null; char* to + }, ; 309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.611_to, ; char* from + ptr null; char* to + }, ; 310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.620_to, ; char* from + ptr @.TypeMapEntry.619_from; char* to + }, ; 311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.618_to, ; char* from + ptr @.TypeMapEntry.617_from; char* to + }, ; 312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.622_to, ; char* from + ptr @.TypeMapEntry.621_from; char* to + }, ; 313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.624_to, ; char* from + ptr @.TypeMapEntry.623_from; char* to + }, ; 314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.639_to, ; char* from + ptr @.TypeMapEntry.638_from; char* to + }, ; 315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.626_to, ; char* from + ptr null; char* to + }, ; 316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.626_to, ; char* from + ptr null; char* to + }, ; 317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.631_to, ; char* from + ptr null; char* to + }, ; 318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.631_to, ; char* from + ptr null; char* to + }, ; 319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.636_to, ; char* from + ptr @.TypeMapEntry.635_from; char* to + }, ; 320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.636_to, ; char* from + ptr @.TypeMapEntry.635_from; char* to + }, ; 321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.799_to, ; char* from + ptr @.TypeMapEntry.798_from; char* to + }, ; 322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.791_to, ; char* from + ptr null; char* to + }, ; 323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.791_to, ; char* from + ptr null; char* to + }, ; 324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.794_to, ; char* from + ptr null; char* to + }, ; 325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.794_to, ; char* from + ptr null; char* to + }, ; 326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.809_to, ; char* from + ptr @.TypeMapEntry.808_from; char* to + }, ; 327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.801_to, ; char* from + ptr @.TypeMapEntry.800_from; char* to + }, ; 328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.803_to, ; char* from + ptr @.TypeMapEntry.802_from; char* to + }, ; 329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.805_to, ; char* from + ptr @.TypeMapEntry.804_from; char* to + }, ; 330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.807_to, ; char* from + ptr @.TypeMapEntry.806_from; char* to + }, ; 331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.811_to, ; char* from + ptr @.TypeMapEntry.810_from; char* to + }, ; 332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.813_to, ; char* from + ptr @.TypeMapEntry.812_from; char* to + }, ; 333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.823_to, ; char* from + ptr @.TypeMapEntry.822_from; char* to + }, ; 334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.825_to, ; char* from + ptr @.TypeMapEntry.824_from; char* to + }, ; 335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.829_to, ; char* from + ptr @.TypeMapEntry.828_from; char* to + }, ; 336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.827_to, ; char* from + ptr @.TypeMapEntry.826_from; char* to + }, ; 337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.831_to, ; char* from + ptr @.TypeMapEntry.830_from; char* to + }, ; 338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.866_to, ; char* from + ptr @.TypeMapEntry.865_from; char* to + }, ; 339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.868_to, ; char* from + ptr @.TypeMapEntry.867_from; char* to + }, ; 340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.875_to, ; char* from + ptr @.TypeMapEntry.874_from; char* to + }, ; 341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.870_to, ; char* from + ptr null; char* to + }, ; 342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.870_to, ; char* from + ptr null; char* to + }, ; 343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.877_to, ; char* from + ptr @.TypeMapEntry.876_from; char* to + }, ; 344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.879_to, ; char* from + ptr @.TypeMapEntry.878_from; char* to + }, ; 345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.883_to, ; char* from + ptr @.TypeMapEntry.882_from; char* to + }, ; 346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.881_to, ; char* from + ptr @.TypeMapEntry.880_from; char* to + }, ; 347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.889_to, ; char* from + ptr @.TypeMapEntry.888_from; char* to + }, ; 348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.885_to, ; char* from + ptr @.TypeMapEntry.884_from; char* to + }, ; 349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.887_to, ; char* from + ptr @.TypeMapEntry.886_from; char* to + }, ; 350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.891_to, ; char* from + ptr @.TypeMapEntry.890_from; char* to + }, ; 351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.893_to, ; char* from + ptr @.TypeMapEntry.892_from; char* to + }, ; 352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.895_to, ; char* from + ptr @.TypeMapEntry.894_from; char* to + }, ; 353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.895_to, ; char* from + ptr @.TypeMapEntry.894_from; char* to + }, ; 354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.902_to, ; char* from + ptr @.TypeMapEntry.901_from; char* to + }, ; 355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.898_to, ; char* from + ptr @.TypeMapEntry.897_from; char* to + }, ; 356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.900_to, ; char* from + ptr @.TypeMapEntry.899_from; char* to + }, ; 357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.909_to, ; char* from + ptr @.TypeMapEntry.908_from; char* to + }, ; 358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.904_to, ; char* from + ptr null; char* to + }, ; 359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.904_to, ; char* from + ptr null; char* to + }, ; 360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.911_to, ; char* from + ptr @.TypeMapEntry.910_from; char* to + }, ; 361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.911_to, ; char* from + ptr @.TypeMapEntry.910_from; char* to + }, ; 362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.914_to, ; char* from + ptr @.TypeMapEntry.913_from; char* to + }, ; 363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.916_to, ; char* from + ptr @.TypeMapEntry.915_from; char* to + }, ; 364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.916_to, ; char* from + ptr @.TypeMapEntry.915_from; char* to + }, ; 365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.930_to, ; char* from + ptr @.TypeMapEntry.929_from; char* to + }, ; 366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.930_to, ; char* from + ptr @.TypeMapEntry.929_from; char* to + }, ; 367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.922_to, ; char* from + ptr null; char* to + }, ; 368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.922_to, ; char* from + ptr null; char* to + }, ; 369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.919_to, ; char* from + ptr @.TypeMapEntry.918_from; char* to + }, ; 370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.919_to, ; char* from + ptr @.TypeMapEntry.918_from; char* to + }, ; 371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.925_to, ; char* from + ptr null; char* to + }, ; 372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.925_to, ; char* from + ptr null; char* to + }, ; 373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.933_to, ; char* from + ptr @.TypeMapEntry.932_from; char* to + }, ; 374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.935_to, ; char* from + ptr @.TypeMapEntry.934_from; char* to + }, ; 375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.935_to, ; char* from + ptr @.TypeMapEntry.934_from; char* to + }, ; 376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.938_to, ; char* from + ptr @.TypeMapEntry.937_from; char* to + }, ; 377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.940_to, ; char* from + ptr @.TypeMapEntry.939_from; char* to + }, ; 378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.942_to, ; char* from + ptr @.TypeMapEntry.941_from; char* to + }, ; 379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.951_to, ; char* from + ptr @.TypeMapEntry.950_from; char* to + }, ; 380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.947_to, ; char* from + ptr @.TypeMapEntry.946_from; char* to + }, ; 381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.949_to, ; char* from + ptr @.TypeMapEntry.948_from; char* to + }, ; 382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.956_to, ; char* from + ptr @.TypeMapEntry.955_from; char* to + }, ; 383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.992_to, ; char* from + ptr @.TypeMapEntry.991_from; char* to + }, ; 384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.987_to, ; char* from + ptr @.TypeMapEntry.986_from; char* to + }, ; 385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.987_to, ; char* from + ptr @.TypeMapEntry.986_from; char* to + }, ; 386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.990_to, ; char* from + ptr @.TypeMapEntry.989_from; char* to + }, ; 387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.979_to, ; char* from + ptr null; char* to + }, ; 388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.979_to, ; char* from + ptr null; char* to + }, ; 389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.984_to, ; char* from + ptr null; char* to + }, ; 390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.984_to, ; char* from + ptr null; char* to + }, ; 391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.998_to, ; char* from + ptr @.TypeMapEntry.997_from; char* to + }, ; 392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.998_to, ; char* from + ptr @.TypeMapEntry.997_from; char* to + }, ; 393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.994_to, ; char* from + ptr @.TypeMapEntry.993_from; char* to + }, ; 394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.996_to, ; char* from + ptr @.TypeMapEntry.995_from; char* to + }, ; 395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1001_to, ; char* from + ptr @.TypeMapEntry.1000_from; char* to + }, ; 396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1003_to, ; char* from + ptr @.TypeMapEntry.1002_from; char* to + }, ; 397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1008_to, ; char* from + ptr @.TypeMapEntry.1007_from; char* to + }, ; 398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1008_to, ; char* from + ptr @.TypeMapEntry.1007_from; char* to + }, ; 399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1005_to, ; char* from + ptr null; char* to + }, ; 400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1005_to, ; char* from + ptr null; char* to + }, ; 401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1011_to, ; char* from + ptr @.TypeMapEntry.1010_from; char* to + }, ; 402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1013_to, ; char* from + ptr @.TypeMapEntry.1012_from; char* to + }, ; 403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1015_to, ; char* from + ptr @.TypeMapEntry.1014_from; char* to + }, ; 404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1017_to, ; char* from + ptr @.TypeMapEntry.1016_from; char* to + }, ; 405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1019_to, ; char* from + ptr @.TypeMapEntry.1018_from; char* to + }, ; 406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1021_to, ; char* from + ptr @.TypeMapEntry.1020_from; char* to + }, ; 407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1023_to, ; char* from + ptr @.TypeMapEntry.1022_from; char* to + }, ; 408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1074_to, ; char* from + ptr @.TypeMapEntry.1073_from; char* to + }, ; 409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1032_to, ; char* from + ptr @.TypeMapEntry.1031_from; char* to + }, ; 410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1025_to, ; char* from + ptr @.TypeMapEntry.1024_from; char* to + }, ; 411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1027_to, ; char* from + ptr null; char* to + }, ; 412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1027_to, ; char* from + ptr null; char* to + }, ; 413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1030_to, ; char* from + ptr @.TypeMapEntry.1029_from; char* to + }, ; 414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1034_to, ; char* from + ptr @.TypeMapEntry.1033_from; char* to + }, ; 415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1036_to, ; char* from + ptr @.TypeMapEntry.1035_from; char* to + }, ; 416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1040_to, ; char* from + ptr @.TypeMapEntry.1039_from; char* to + }, ; 417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1038_to, ; char* from + ptr @.TypeMapEntry.1037_from; char* to + }, ; 418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1042_to, ; char* from + ptr @.TypeMapEntry.1041_from; char* to + }, ; 419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1044_to, ; char* from + ptr @.TypeMapEntry.1043_from; char* to + }, ; 420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1050_to, ; char* from + ptr @.TypeMapEntry.1049_from; char* to + }, ; 421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1046_to, ; char* from + ptr @.TypeMapEntry.1045_from; char* to + }, ; 422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1048_to, ; char* from + ptr @.TypeMapEntry.1047_from; char* to + }, ; 423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1052_to, ; char* from + ptr @.TypeMapEntry.1051_from; char* to + }, ; 424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1054_to, ; char* from + ptr @.TypeMapEntry.1053_from; char* to + }, ; 425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1056_to, ; char* from + ptr null; char* to + }, ; 426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1056_to, ; char* from + ptr null; char* to + }, ; 427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1059_to, ; char* from + ptr @.TypeMapEntry.1058_from; char* to + }, ; 428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1061_to, ; char* from + ptr @.TypeMapEntry.1060_from; char* to + }, ; 429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1065_to, ; char* from + ptr @.TypeMapEntry.1064_from; char* to + }, ; 430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1063_to, ; char* from + ptr @.TypeMapEntry.1062_from; char* to + }, ; 431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1067_to, ; char* from + ptr @.TypeMapEntry.1066_from; char* to + }, ; 432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1067_to, ; char* from + ptr @.TypeMapEntry.1066_from; char* to + }, ; 433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1070_to, ; char* from + ptr @.TypeMapEntry.1069_from; char* to + }, ; 434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1072_to, ; char* from + ptr @.TypeMapEntry.1071_from; char* to + }, ; 435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1076_to, ; char* from + ptr @.TypeMapEntry.1075_from; char* to + }, ; 436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1078_to, ; char* from + ptr @.TypeMapEntry.1077_from; char* to + }, ; 437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1082_to, ; char* from + ptr @.TypeMapEntry.1081_from; char* to + }, ; 438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1080_to, ; char* from + ptr @.TypeMapEntry.1079_from; char* to + }, ; 439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1089_to, ; char* from + ptr @.TypeMapEntry.1088_from; char* to + }, ; 440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1084_to, ; char* from + ptr @.TypeMapEntry.1083_from; char* to + }, ; 441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1086_to, ; char* from + ptr null; char* to + }, ; 442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1086_to, ; char* from + ptr null; char* to + }, ; 443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1099_to, ; char* from + ptr @.TypeMapEntry.1098_from; char* to + }, ; 444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1097_to, ; char* from + ptr @.TypeMapEntry.1096_from; char* to + }, ; 445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1103_to, ; char* from + ptr @.TypeMapEntry.1102_from; char* to + }, ; 446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1101_to, ; char* from + ptr @.TypeMapEntry.1100_from; char* to + }, ; 447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1105_to, ; char* from + ptr @.TypeMapEntry.1104_from; char* to + }, ; 448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1107_to, ; char* from + ptr @.TypeMapEntry.1106_from; char* to + }, ; 449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1109_to, ; char* from + ptr @.TypeMapEntry.1108_from; char* to + }, ; 450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1111_to, ; char* from + ptr @.TypeMapEntry.1110_from; char* to + }, ; 451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1113_to, ; char* from + ptr @.TypeMapEntry.1112_from; char* to + }, ; 452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1117_to, ; char* from + ptr @.TypeMapEntry.1116_from; char* to + }, ; 453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1115_to, ; char* from + ptr @.TypeMapEntry.1114_from; char* to + }, ; 454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1152_to, ; char* from + ptr @.TypeMapEntry.1151_from; char* to + }, ; 455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1142_to, ; char* from + ptr null; char* to + }, ; 456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1142_to, ; char* from + ptr null; char* to + }, ; 457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1147_to, ; char* from + ptr null; char* to + }, ; 458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1147_to, ; char* from + ptr null; char* to + }, ; 459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1154_to, ; char* from + ptr @.TypeMapEntry.1153_from; char* to + }, ; 460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1156_to, ; char* from + ptr @.TypeMapEntry.1155_from; char* to + }, ; 461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1156_to, ; char* from + ptr @.TypeMapEntry.1155_from; char* to + }, ; 462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1159_to, ; char* from + ptr @.TypeMapEntry.1158_from; char* to + }, ; 463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1159_to, ; char* from + ptr @.TypeMapEntry.1158_from; char* to + }, ; 464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1167_to, ; char* from + ptr @.TypeMapEntry.1166_from; char* to + }, ; 465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1167_to, ; char* from + ptr @.TypeMapEntry.1166_from; char* to + }, ; 466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1162_to, ; char* from + ptr null; char* to + }, ; 467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1162_to, ; char* from + ptr null; char* to + }, ; 468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1185_to, ; char* from + ptr @.TypeMapEntry.1184_from; char* to + }, ; 469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1187_to, ; char* from + ptr @.TypeMapEntry.1186_from; char* to + }, ; 470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1189_to, ; char* from + ptr @.TypeMapEntry.1188_from; char* to + }, ; 471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1191_to, ; char* from + ptr @.TypeMapEntry.1190_from; char* to + }, ; 472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1195_to, ; char* from + ptr @.TypeMapEntry.1194_from; char* to + }, ; 473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1197_to, ; char* from + ptr @.TypeMapEntry.1196_from; char* to + }, ; 474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1204_to, ; char* from + ptr @.TypeMapEntry.1203_from; char* to + }, ; 475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1199_to, ; char* from + ptr null; char* to + }, ; 476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1199_to, ; char* from + ptr null; char* to + }, ; 477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1214_to, ; char* from + ptr @.TypeMapEntry.1213_from; char* to + }, ; 478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1206_to, ; char* from + ptr null; char* to + }, ; 479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1206_to, ; char* from + ptr null; char* to + }, ; 480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1209_to, ; char* from + ptr null; char* to + }, ; 481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1209_to, ; char* from + ptr null; char* to + }, ; 482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1221_to, ; char* from + ptr @.TypeMapEntry.1220_from; char* to + }, ; 483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1216_to, ; char* from + ptr null; char* to + }, ; 484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1216_to, ; char* from + ptr null; char* to + }, ; 485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1271_to, ; char* from + ptr @.TypeMapEntry.1270_from; char* to + }, ; 486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1254_to, ; char* from + ptr @.TypeMapEntry.1253_from; char* to + }, ; 487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1256_to, ; char* from + ptr @.TypeMapEntry.1255_from; char* to + }, ; 488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1258_to, ; char* from + ptr @.TypeMapEntry.1257_from; char* to + }, ; 489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1260_to, ; char* from + ptr @.TypeMapEntry.1259_from; char* to + }, ; 490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1264_to, ; char* from + ptr @.TypeMapEntry.1263_from; char* to + }, ; 491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1262_to, ; char* from + ptr @.TypeMapEntry.1261_from; char* to + }, ; 492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1266_to, ; char* from + ptr @.TypeMapEntry.1265_from; char* to + }, ; 493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1268_to, ; char* from + ptr @.TypeMapEntry.1267_from; char* to + }, ; 494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1268_to, ; char* from + ptr @.TypeMapEntry.1267_from; char* to + }, ; 495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1273_to, ; char* from + ptr @.TypeMapEntry.1272_from; char* to + }, ; 496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1275_to, ; char* from + ptr @.TypeMapEntry.1274_from; char* to + }, ; 497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1282_to, ; char* from + ptr @.TypeMapEntry.1281_from; char* to + }, ; 498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1277_to, ; char* from + ptr null; char* to + }, ; 499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1277_to, ; char* from + ptr null; char* to + }, ; 500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.944_to, ; char* from + ptr null; char* to + }, ; 501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.944_to, ; char* from + ptr null; char* to + }, ; 502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.543_to, ; char* from + ptr @.TypeMapEntry.542_from; char* to + }, ; 503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.545_to, ; char* from + ptr @.TypeMapEntry.544_from; char* to + }, ; 504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.547_to, ; char* from + ptr @.TypeMapEntry.546_from; char* to + }, ; 505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.549_to, ; char* from + ptr @.TypeMapEntry.548_from; char* to + }, ; 506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.551_to, ; char* from + ptr @.TypeMapEntry.550_from; char* to + }, ; 507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.553_to, ; char* from + ptr @.TypeMapEntry.552_from; char* to + }, ; 508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.563_to, ; char* from + ptr @.TypeMapEntry.562_from; char* to + }, ; 509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.560_to, ; char* from + ptr @.TypeMapEntry.559_from; char* to + }, ; 510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.560_to, ; char* from + ptr @.TypeMapEntry.559_from; char* to + }, ; 511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.555_to, ; char* from + ptr null; char* to + }, ; 512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.555_to, ; char* from + ptr null; char* to + }, ; 513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.565_to, ; char* from + ptr @.TypeMapEntry.564_from; char* to + }, ; 514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.567_to, ; char* from + ptr @.TypeMapEntry.566_from; char* to + }, ; 515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.569_to, ; char* from + ptr @.TypeMapEntry.568_from; char* to + }, ; 516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.573_to, ; char* from + ptr @.TypeMapEntry.572_from; char* to + }, ; 517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.571_to, ; char* from + ptr @.TypeMapEntry.570_from; char* to + }, ; 518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.575_to, ; char* from + ptr @.TypeMapEntry.574_from; char* to + }, ; 519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.577_to, ; char* from + ptr @.TypeMapEntry.576_from; char* to + }, ; 520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.579_to, ; char* from + ptr @.TypeMapEntry.578_from; char* to + }, ; 521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.579_to, ; char* from + ptr @.TypeMapEntry.578_from; char* to + }, ; 522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.582_to, ; char* from + ptr @.TypeMapEntry.581_from; char* to + }, ; 523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.584_to, ; char* from + ptr @.TypeMapEntry.583_from; char* to + }, ; 524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.584_to, ; char* from + ptr @.TypeMapEntry.583_from; char* to + }, ; 525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.587_to, ; char* from + ptr @.TypeMapEntry.586_from; char* to + }, ; 526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.591_to, ; char* from + ptr @.TypeMapEntry.590_from; char* to + }, ; 527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.589_to, ; char* from + ptr @.TypeMapEntry.588_from; char* to + }, ; 528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.595_to, ; char* from + ptr @.TypeMapEntry.594_from; char* to + }, ; 529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.593_to, ; char* from + ptr @.TypeMapEntry.592_from; char* to + }, ; 530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.597_to, ; char* from + ptr @.TypeMapEntry.596_from; char* to + }, ; 531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.601_to, ; char* from + ptr @.TypeMapEntry.600_from; char* to + }, ; 532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.599_to, ; char* from + ptr @.TypeMapEntry.598_from; char* to + }, ; 533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.603_to, ; char* from + ptr @.TypeMapEntry.602_from; char* to + }, ; 534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.605_to, ; char* from + ptr @.TypeMapEntry.604_from; char* to + }, ; 535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.607_to, ; char* from + ptr @.TypeMapEntry.606_from; char* to + }, ; 536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.643_to, ; char* from + ptr @.TypeMapEntry.642_from; char* to + }, ; 537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.641_to, ; char* from + ptr @.TypeMapEntry.640_from; char* to + }, ; 538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.649_to, ; char* from + ptr @.TypeMapEntry.648_from; char* to + }, ; 539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.647_to, ; char* from + ptr @.TypeMapEntry.646_from; char* to + }, ; 540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.645_to, ; char* from + ptr @.TypeMapEntry.644_from; char* to + }, ; 541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.651_to, ; char* from + ptr @.TypeMapEntry.650_from; char* to + }, ; 542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.682_to, ; char* from + ptr @.TypeMapEntry.681_from; char* to + }, ; 543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.655_to, ; char* from + ptr @.TypeMapEntry.654_from; char* to + }, ; 544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.653_to, ; char* from + ptr @.TypeMapEntry.652_from; char* to + }, ; 545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.657_to, ; char* from + ptr @.TypeMapEntry.656_from; char* to + }, ; 546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.661_to, ; char* from + ptr @.TypeMapEntry.660_from; char* to + }, ; 547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.659_to, ; char* from + ptr @.TypeMapEntry.658_from; char* to + }, ; 548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.665_to, ; char* from + ptr @.TypeMapEntry.664_from; char* to + }, ; 549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.663_to, ; char* from + ptr @.TypeMapEntry.662_from; char* to + }, ; 550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.669_to, ; char* from + ptr @.TypeMapEntry.668_from; char* to + }, ; 551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.667_to, ; char* from + ptr @.TypeMapEntry.666_from; char* to + }, ; 552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.673_to, ; char* from + ptr @.TypeMapEntry.672_from; char* to + }, ; 553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.671_to, ; char* from + ptr @.TypeMapEntry.670_from; char* to + }, ; 554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.675_to, ; char* from + ptr @.TypeMapEntry.674_from; char* to + }, ; 555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.675_to, ; char* from + ptr @.TypeMapEntry.674_from; char* to + }, ; 556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.680_to, ; char* from + ptr @.TypeMapEntry.679_from; char* to + }, ; 557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.678_to, ; char* from + ptr @.TypeMapEntry.677_from; char* to + }, ; 558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.684_to, ; char* from + ptr @.TypeMapEntry.683_from; char* to + }, ; 559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.704_to, ; char* from + ptr null; char* to + }, ; 560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.704_to, ; char* from + ptr null; char* to + }, ; 561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.686_to, ; char* from + ptr @.TypeMapEntry.685_from; char* to + }, ; 562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.692_to, ; char* from + ptr @.TypeMapEntry.691_from; char* to + }, ; 563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.690_to, ; char* from + ptr @.TypeMapEntry.689_from; char* to + }, ; 564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.696_to, ; char* from + ptr @.TypeMapEntry.695_from; char* to + }, ; 565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.694_to, ; char* from + ptr @.TypeMapEntry.693_from; char* to + }, ; 566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.700_to, ; char* from + ptr @.TypeMapEntry.699_from; char* to + }, ; 567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.698_to, ; char* from + ptr @.TypeMapEntry.697_from; char* to + }, ; 568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.702_to, ; char* from + ptr @.TypeMapEntry.701_from; char* to + }, ; 569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.709_to, ; char* from + ptr @.TypeMapEntry.708_from; char* to + }, ; 570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.707_to, ; char* from + ptr @.TypeMapEntry.706_from; char* to + }, ; 571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.711_to, ; char* from + ptr @.TypeMapEntry.710_from; char* to + }, ; 572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.711_to, ; char* from + ptr @.TypeMapEntry.710_from; char* to + }, ; 573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.725_to, ; char* from + ptr @.TypeMapEntry.724_from; char* to + }, ; 574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.729_to, ; char* from + ptr @.TypeMapEntry.728_from; char* to + }, ; 575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.727_to, ; char* from + ptr @.TypeMapEntry.726_from; char* to + }, ; 576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.733_to, ; char* from + ptr @.TypeMapEntry.732_from; char* to + }, ; 577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.731_to, ; char* from + ptr @.TypeMapEntry.730_from; char* to + }, ; 578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.737_to, ; char* from + ptr @.TypeMapEntry.736_from; char* to + }, ; 579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.735_to, ; char* from + ptr @.TypeMapEntry.734_from; char* to + }, ; 580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.741_to, ; char* from + ptr @.TypeMapEntry.740_from; char* to + }, ; 581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.739_to, ; char* from + ptr @.TypeMapEntry.738_from; char* to + }, ; 582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.745_to, ; char* from + ptr @.TypeMapEntry.744_from; char* to + }, ; 583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.743_to, ; char* from + ptr @.TypeMapEntry.742_from; char* to + }, ; 584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.749_to, ; char* from + ptr @.TypeMapEntry.748_from; char* to + }, ; 585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.747_to, ; char* from + ptr @.TypeMapEntry.746_from; char* to + }, ; 586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.759_to, ; char* from + ptr @.TypeMapEntry.758_from; char* to + }, ; 587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.751_to, ; char* from + ptr @.TypeMapEntry.750_from; char* to + }, ; 588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.755_to, ; char* from + ptr @.TypeMapEntry.754_from; char* to + }, ; 589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.753_to, ; char* from + ptr @.TypeMapEntry.752_from; char* to + }, ; 590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.757_to, ; char* from + ptr @.TypeMapEntry.756_from; char* to + }, ; 591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.761_to, ; char* from + ptr @.TypeMapEntry.760_from; char* to + }, ; 592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.765_to, ; char* from + ptr @.TypeMapEntry.764_from; char* to + }, ; 593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.763_to, ; char* from + ptr @.TypeMapEntry.762_from; char* to + }, ; 594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.769_to, ; char* from + ptr @.TypeMapEntry.768_from; char* to + }, ; 595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.767_to, ; char* from + ptr @.TypeMapEntry.766_from; char* to + }, ; 596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.773_to, ; char* from + ptr @.TypeMapEntry.772_from; char* to + }, ; 597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.771_to, ; char* from + ptr @.TypeMapEntry.770_from; char* to + }, ; 598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.777_to, ; char* from + ptr @.TypeMapEntry.776_from; char* to + }, ; 599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.775_to, ; char* from + ptr @.TypeMapEntry.774_from; char* to + }, ; 600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.783_to, ; char* from + ptr @.TypeMapEntry.782_from; char* to + }, ; 601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.779_to, ; char* from + ptr @.TypeMapEntry.778_from; char* to + }, ; 602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.781_to, ; char* from + ptr @.TypeMapEntry.780_from; char* to + }, ; 603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.787_to, ; char* from + ptr @.TypeMapEntry.786_from; char* to + }, ; 604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.785_to, ; char* from + ptr @.TypeMapEntry.784_from; char* to + }, ; 605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.688_to, ; char* from + ptr @.TypeMapEntry.687_from; char* to + }, ; 606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.714_to, ; char* from + ptr @.TypeMapEntry.713_from; char* to + }, ; 607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.716_to, ; char* from + ptr null; char* to + }, ; 608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.716_to, ; char* from + ptr null; char* to + }, ; 609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.721_to, ; char* from + ptr @.TypeMapEntry.720_from; char* to + }, ; 610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.719_to, ; char* from + ptr @.TypeMapEntry.718_from; char* to + }, ; 611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.723_to, ; char* from + ptr @.TypeMapEntry.722_from; char* to + }, ; 612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.789_to, ; char* from + ptr @.TypeMapEntry.788_from; char* to + }, ; 613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.815_to, ; char* from + ptr @.TypeMapEntry.814_from; char* to + }, ; 614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.821_to, ; char* from + ptr @.TypeMapEntry.820_from; char* to + }, ; 615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.817_to, ; char* from + ptr @.TypeMapEntry.816_from; char* to + }, ; 616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.819_to, ; char* from + ptr @.TypeMapEntry.818_from; char* to + }, ; 617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.833_to, ; char* from + ptr @.TypeMapEntry.832_from; char* to + }, ; 618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.833_to, ; char* from + ptr @.TypeMapEntry.832_from; char* to + }, ; 619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.835_to, ; char* from + ptr @.TypeMapEntry.834_from; char* to + }, ; 620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.838_to, ; char* from + ptr @.TypeMapEntry.837_from; char* to + }, ; 621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.840_to, ; char* from + ptr @.TypeMapEntry.839_from; char* to + }, ; 622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.842_to, ; char* from + ptr @.TypeMapEntry.841_from; char* to + }, ; 623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.852_to, ; char* from + ptr null; char* to + }, ; 624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.852_to, ; char* from + ptr null; char* to + }, ; 625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.844_to, ; char* from + ptr @.TypeMapEntry.843_from; char* to + }, ; 626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.846_to, ; char* from + ptr @.TypeMapEntry.845_from; char* to + }, ; 627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.848_to, ; char* from + ptr @.TypeMapEntry.847_from; char* to + }, ; 628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.850_to, ; char* from + ptr @.TypeMapEntry.849_from; char* to + }, ; 629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.855_to, ; char* from + ptr @.TypeMapEntry.854_from; char* to + }, ; 630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.855_to, ; char* from + ptr @.TypeMapEntry.854_from; char* to + }, ; 631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.858_to, ; char* from + ptr @.TypeMapEntry.857_from; char* to + }, ; 632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.860_to, ; char* from + ptr @.TypeMapEntry.859_from; char* to + }, ; 633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.864_to, ; char* from + ptr @.TypeMapEntry.863_from; char* to + }, ; 634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.862_to, ; char* from + ptr @.TypeMapEntry.861_from; char* to + }, ; 635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.962_to, ; char* from + ptr @.TypeMapEntry.961_from; char* to + }, ; 636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.958_to, ; char* from + ptr @.TypeMapEntry.957_from; char* to + }, ; 637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.960_to, ; char* from + ptr @.TypeMapEntry.959_from; char* to + }, ; 638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.964_to, ; char* from + ptr @.TypeMapEntry.963_from; char* to + }, ; 639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.966_to, ; char* from + ptr @.TypeMapEntry.965_from; char* to + }, ; 640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.966_to, ; char* from + ptr @.TypeMapEntry.965_from; char* to + }, ; 641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.969_to, ; char* from + ptr @.TypeMapEntry.968_from; char* to + }, ; 642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.969_to, ; char* from + ptr @.TypeMapEntry.968_from; char* to + }, ; 643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.971_to, ; char* from + ptr @.TypeMapEntry.970_from; char* to + }, ; 644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.971_to, ; char* from + ptr @.TypeMapEntry.970_from; char* to + }, ; 645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.977_to, ; char* from + ptr @.TypeMapEntry.976_from; char* to + }, ; 646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.975_to, ; char* from + ptr @.TypeMapEntry.974_from; char* to + }, ; 647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1093_to, ; char* from + ptr @.TypeMapEntry.1092_from; char* to + }, ; 648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1091_to, ; char* from + ptr @.TypeMapEntry.1090_from; char* to + }, ; 649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1095_to, ; char* from + ptr @.TypeMapEntry.1094_from; char* to + }, ; 650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1119_to, ; char* from + ptr @.TypeMapEntry.1118_from; char* to + }, ; 651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1121_to, ; char* from + ptr @.TypeMapEntry.1120_from; char* to + }, ; 652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1123_to, ; char* from + ptr @.TypeMapEntry.1122_from; char* to + }, ; 653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1125_to, ; char* from + ptr @.TypeMapEntry.1124_from; char* to + }, ; 654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1127_to, ; char* from + ptr @.TypeMapEntry.1126_from; char* to + }, ; 655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1129_to, ; char* from + ptr @.TypeMapEntry.1128_from; char* to + }, ; 656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1129_to, ; char* from + ptr @.TypeMapEntry.1128_from; char* to + }, ; 657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1140_to, ; char* from + ptr @.TypeMapEntry.1139_from; char* to + }, ; 658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1137_to, ; char* from + ptr null; char* to + }, ; 659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1137_to, ; char* from + ptr null; char* to + }, ; 660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1132_to, ; char* from + ptr null; char* to + }, ; 661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1132_to, ; char* from + ptr null; char* to + }, ; 662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1135_to, ; char* from + ptr @.TypeMapEntry.1134_from; char* to + }, ; 663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1172_to, ; char* from + ptr @.TypeMapEntry.1171_from; char* to + }, ; 664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1170_to, ; char* from + ptr @.TypeMapEntry.1169_from; char* to + }, ; 665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1174_to, ; char* from + ptr @.TypeMapEntry.1173_from; char* to + }, ; 666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1176_to, ; char* from + ptr @.TypeMapEntry.1175_from; char* to + }, ; 667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1178_to, ; char* from + ptr @.TypeMapEntry.1177_from; char* to + }, ; 668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1180_to, ; char* from + ptr @.TypeMapEntry.1179_from; char* to + }, ; 669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1180_to, ; char* from + ptr @.TypeMapEntry.1179_from; char* to + }, ; 670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1183_to, ; char* from + ptr @.TypeMapEntry.1182_from; char* to + }, ; 671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1223_to, ; char* from + ptr @.TypeMapEntry.1222_from; char* to + }, ; 672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1225_to, ; char* from + ptr @.TypeMapEntry.1224_from; char* to + }, ; 673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1227_to, ; char* from + ptr @.TypeMapEntry.1226_from; char* to + }, ; 674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1231_to, ; char* from + ptr @.TypeMapEntry.1230_from; char* to + }, ; 675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1229_to, ; char* from + ptr @.TypeMapEntry.1228_from; char* to + }, ; 676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1236_to, ; char* from + ptr @.TypeMapEntry.1235_from; char* to + }, ; 677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1233_to, ; char* from + ptr @.TypeMapEntry.1232_from; char* to + }, ; 678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1233_to, ; char* from + ptr @.TypeMapEntry.1232_from; char* to + }, ; 679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1238_to, ; char* from + ptr @.TypeMapEntry.1237_from; char* to + }, ; 680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1240_to, ; char* from + ptr @.TypeMapEntry.1239_from; char* to + }, ; 681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1244_to, ; char* from + ptr @.TypeMapEntry.1243_from; char* to + }, ; 682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1242_to, ; char* from + ptr @.TypeMapEntry.1241_from; char* to + }, ; 683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1248_to, ; char* from + ptr @.TypeMapEntry.1247_from; char* to + }, ; 684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1246_to, ; char* from + ptr @.TypeMapEntry.1245_from; char* to + }, ; 685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1250_to, ; char* from + ptr @.TypeMapEntry.1249_from; char* to + }, ; 686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1252_to, ; char* from + ptr @.TypeMapEntry.1251_from; char* to + }, ; 687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1284_to, ; char* from + ptr @.TypeMapEntry.1283_from; char* to + }, ; 688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1286_to, ; char* from + ptr @.TypeMapEntry.1285_from; char* to + }, ; 689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1288_to, ; char* from + ptr @.TypeMapEntry.1287_from; char* to + }, ; 690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1290_to, ; char* from + ptr @.TypeMapEntry.1289_from; char* to + }, ; 691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1292_to, ; char* from + ptr @.TypeMapEntry.1291_from; char* to + }, ; 692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1294_to, ; char* from + ptr @.TypeMapEntry.1293_from; char* to + }, ; 693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1299_to, ; char* from + ptr @.TypeMapEntry.1298_from; char* to + }, ; 694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1296_to, ; char* from + ptr null; char* to + }, ; 695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1296_to, ; char* from + ptr null; char* to + }, ; 696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1301_to, ; char* from + ptr @.TypeMapEntry.1300_from; char* to + }, ; 697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1309_to, ; char* from + ptr @.TypeMapEntry.1308_from; char* to + }, ; 698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1305_to, ; char* from + ptr @.TypeMapEntry.1304_from; char* to + }, ; 699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1303_to, ; char* from + ptr @.TypeMapEntry.1302_from; char* to + }, ; 700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1307_to, ; char* from + ptr @.TypeMapEntry.1306_from; char* to + }, ; 701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1313_to, ; char* from + ptr @.TypeMapEntry.1312_from; char* to + }, ; 702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1311_to, ; char* from + ptr @.TypeMapEntry.1310_from; char* to + }, ; 703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1317_to, ; char* from + ptr @.TypeMapEntry.1316_from; char* to + }, ; 704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1315_to, ; char* from + ptr @.TypeMapEntry.1314_from; char* to + }, ; 705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1319_to, ; char* from + ptr @.TypeMapEntry.1318_from; char* to + }, ; 706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1321_to, ; char* from + ptr @.TypeMapEntry.1320_from; char* to + }, ; 707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1323_to, ; char* from + ptr @.TypeMapEntry.1322_from; char* to + }, ; 708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1325_to, ; char* from + ptr @.TypeMapEntry.1324_from; char* to + }, ; 709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1327_to, ; char* from + ptr @.TypeMapEntry.1326_from; char* to + }, ; 710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1327_to, ; char* from + ptr @.TypeMapEntry.1326_from; char* to + }, ; 711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1330_to, ; char* from + ptr @.TypeMapEntry.1329_from; char* to + }, ; 712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1332_to, ; char* from + ptr @.TypeMapEntry.1331_from; char* to + }, ; 713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1334_to, ; char* from + ptr @.TypeMapEntry.1333_from; char* to + }, ; 714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1336_to, ; char* from + ptr @.TypeMapEntry.1335_from; char* to + }, ; 715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1336_to, ; char* from + ptr @.TypeMapEntry.1335_from; char* to + }, ; 716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1339_to, ; char* from + ptr @.TypeMapEntry.1338_from; char* to + }, ; 717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1341_to, ; char* from + ptr @.TypeMapEntry.1340_from; char* to + }, ; 718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1343_to, ; char* from + ptr @.TypeMapEntry.1342_from; char* to + }, ; 719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1345_to, ; char* from + ptr @.TypeMapEntry.1344_from; char* to + }, ; 720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1347_to, ; char* from + ptr @.TypeMapEntry.1346_from; char* to + }, ; 721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1347_to, ; char* from + ptr @.TypeMapEntry.1346_from; char* to + }, ; 722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1350_to, ; char* from + ptr @.TypeMapEntry.1349_from; char* to + }, ; 723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1355_to, ; char* from + ptr @.TypeMapEntry.1354_from; char* to + }, ; 724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1352_to, ; char* from + ptr @.TypeMapEntry.1351_from; char* to + }, ; 725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1352_to, ; char* from + ptr @.TypeMapEntry.1351_from; char* to + }, ; 726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1357_to, ; char* from + ptr @.TypeMapEntry.1356_from; char* to + }, ; 727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1359_to, ; char* from + ptr @.TypeMapEntry.1358_from; char* to + }, ; 728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1361_to, ; char* from + ptr @.TypeMapEntry.1360_from; char* to + }, ; 729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1365_to, ; char* from + ptr @.TypeMapEntry.1364_from; char* to + }, ; 730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1363_to, ; char* from + ptr @.TypeMapEntry.1362_from; char* to + }, ; 731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1367_to, ; char* from + ptr @.TypeMapEntry.1366_from; char* to + }, ; 732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1369_to, ; char* from + ptr @.TypeMapEntry.1368_from; char* to + }, ; 733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1381_to, ; char* from + ptr null; char* to + }, ; 734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1381_to, ; char* from + ptr null; char* to + }, ; 735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1384_to, ; char* from + ptr null; char* to + }, ; 736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1384_to, ; char* from + ptr null; char* to + }, ; 737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1373_to, ; char* from + ptr @.TypeMapEntry.1372_from; char* to + }, ; 738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1375_to, ; char* from + ptr @.TypeMapEntry.1374_from; char* to + }, ; 739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1377_to, ; char* from + ptr @.TypeMapEntry.1376_from; char* to + }, ; 740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1379_to, ; char* from + ptr @.TypeMapEntry.1378_from; char* to + }, ; 741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1389_to, ; char* from + ptr @.TypeMapEntry.1388_from; char* to + }, ; 742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1389_to, ; char* from + ptr @.TypeMapEntry.1388_from; char* to + }, ; 743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1394_to, ; char* from + ptr @.TypeMapEntry.1393_from; char* to + }, ; 744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1392_to, ; char* from + ptr @.TypeMapEntry.1391_from; char* to + }, ; 745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1398_to, ; char* from + ptr @.TypeMapEntry.1397_from; char* to + }, ; 746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1396_to, ; char* from + ptr @.TypeMapEntry.1395_from; char* to + }, ; 747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1400_to, ; char* from + ptr @.TypeMapEntry.1399_from; char* to + }, ; 748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1402_to, ; char* from + ptr @.TypeMapEntry.1401_from; char* to + }, ; 749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1402_to, ; char* from + ptr @.TypeMapEntry.1401_from; char* to + }, ; 750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1407_to, ; char* from + ptr @.TypeMapEntry.1406_from; char* to + }, ; 751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1405_to, ; char* from + ptr @.TypeMapEntry.1404_from; char* to + }, ; 752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1409_to, ; char* from + ptr @.TypeMapEntry.1408_from; char* to + }, ; 753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1411_to, ; char* from + ptr @.TypeMapEntry.1410_from; char* to + }, ; 754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1415_to, ; char* from + ptr @.TypeMapEntry.1414_from; char* to + }, ; 755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1413_to, ; char* from + ptr @.TypeMapEntry.1412_from; char* to + }, ; 756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1417_to, ; char* from + ptr @.TypeMapEntry.1416_from; char* to + }, ; 757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1417_to, ; char* from + ptr @.TypeMapEntry.1416_from; char* to + }, ; 758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1422_to, ; char* from + ptr @.TypeMapEntry.1421_from; char* to + }, ; 759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1420_to, ; char* from + ptr @.TypeMapEntry.1419_from; char* to + }, ; 760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1424_to, ; char* from + ptr @.TypeMapEntry.1423_from; char* to + }, ; 761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1426_to, ; char* from + ptr @.TypeMapEntry.1425_from; char* to + }, ; 762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1430_to, ; char* from + ptr @.TypeMapEntry.1429_from; char* to + }, ; 763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1428_to, ; char* from + ptr @.TypeMapEntry.1427_from; char* to + }, ; 764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1432_to, ; char* from + ptr @.TypeMapEntry.1431_from; char* to + }, ; 765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1434_to, ; char* from + ptr @.TypeMapEntry.1433_from; char* to + }, ; 766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1436_to, ; char* from + ptr @.TypeMapEntry.1435_from; char* to + }, ; 767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1438_to, ; char* from + ptr @.TypeMapEntry.1437_from; char* to + }, ; 768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1442_to, ; char* from + ptr @.TypeMapEntry.1441_from; char* to + }, ; 769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1440_to, ; char* from + ptr @.TypeMapEntry.1439_from; char* to + }, ; 770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1446_to, ; char* from + ptr @.TypeMapEntry.1445_from; char* to + }, ; 771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1444_to, ; char* from + ptr @.TypeMapEntry.1443_from; char* to + }, ; 772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1450_to, ; char* from + ptr @.TypeMapEntry.1449_from; char* to + }, ; 773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1448_to, ; char* from + ptr @.TypeMapEntry.1447_from; char* to + }, ; 774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1455_to, ; char* from + ptr @.TypeMapEntry.1454_from; char* to + }, ; 775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1452_to, ; char* from + ptr @.TypeMapEntry.1451_from; char* to + }, ; 776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1452_to, ; char* from + ptr @.TypeMapEntry.1451_from; char* to + }, ; 777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1457_to, ; char* from + ptr @.TypeMapEntry.1456_from; char* to + }, ; 778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1457_to, ; char* from + ptr @.TypeMapEntry.1456_from; char* to + }, ; 779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1460_to, ; char* from + ptr @.TypeMapEntry.1459_from; char* to + }, ; 780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1464_to, ; char* from + ptr null; char* to + }, ; 781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1464_to, ; char* from + ptr null; char* to + }, ; 782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1462_to, ; char* from + ptr @.TypeMapEntry.1461_from; char* to + }, ; 783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1478_to, ; char* from + ptr @.TypeMapEntry.1477_from; char* to + }, ; 784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1476_to, ; char* from + ptr @.TypeMapEntry.1475_from; char* to + }, ; 785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1467_to, ; char* from + ptr @.TypeMapEntry.1466_from; char* to + }, ; 786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1474_to, ; char* from + ptr @.TypeMapEntry.1473_from; char* to + }, ; 787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1469_to, ; char* from + ptr null; char* to + }, ; 788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1469_to, ; char* from + ptr null; char* to + }, ; 789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1480_to, ; char* from + ptr @.TypeMapEntry.1479_from; char* to + }, ; 790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1480_to, ; char* from + ptr @.TypeMapEntry.1479_from; char* to + }, ; 791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1483_to, ; char* from + ptr @.TypeMapEntry.1482_from; char* to + }, ; 792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1489_to, ; char* from + ptr @.TypeMapEntry.1488_from; char* to + }, ; 793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1489_to, ; char* from + ptr @.TypeMapEntry.1488_from; char* to + }, ; 794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1485_to, ; char* from + ptr @.TypeMapEntry.1484_from; char* to + }, ; 795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1487_to, ; char* from + ptr @.TypeMapEntry.1486_from; char* to + }, ; 796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1492_to, ; char* from + ptr @.TypeMapEntry.1491_from; char* to + }, ; 797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1492_to, ; char* from + ptr @.TypeMapEntry.1491_from; char* to + }, ; 798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1497_to, ; char* from + ptr @.TypeMapEntry.1496_from; char* to + }, ; 799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1495_to, ; char* from + ptr @.TypeMapEntry.1494_from; char* to + }, ; 800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1501_to, ; char* from + ptr @.TypeMapEntry.1500_from; char* to + }, ; 801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1501_to, ; char* from + ptr @.TypeMapEntry.1500_from; char* to + }, ; 802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1499_to, ; char* from + ptr @.TypeMapEntry.1498_from; char* to + }, ; 803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1508_to, ; char* from + ptr @.TypeMapEntry.1507_from; char* to + }, ; 804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1506_to, ; char* from + ptr @.TypeMapEntry.1505_from; char* to + }, ; 805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1504_to, ; char* from + ptr @.TypeMapEntry.1503_from; char* to + }, ; 806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1510_to, ; char* from + ptr @.TypeMapEntry.1509_from; char* to + }, ; 807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1517_to, ; char* from + ptr @.TypeMapEntry.1516_from; char* to + }, ; 808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1512_to, ; char* from + ptr null; char* to + }, ; 809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1512_to, ; char* from + ptr null; char* to + }, ; 810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1569_to, ; char* from + ptr null; char* to + }, ; 811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1569_to, ; char* from + ptr null; char* to + }, ; 812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1571_to, ; char* from + ptr null; char* to + }, ; 813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1571_to, ; char* from + ptr null; char* to + }, ; 814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1521_to, ; char* from + ptr @.TypeMapEntry.1520_from; char* to + }, ; 815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1528_to, ; char* from + ptr @.TypeMapEntry.1527_from; char* to + }, ; 816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1528_to, ; char* from + ptr @.TypeMapEntry.1527_from; char* to + }, ; 817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1523_to, ; char* from + ptr @.TypeMapEntry.1522_from; char* to + }, ; 818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1525_to, ; char* from + ptr null; char* to + }, ; 819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1525_to, ; char* from + ptr null; char* to + }, ; 820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1530_to, ; char* from + ptr @.TypeMapEntry.1529_from; char* to + }, ; 821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1535_to, ; char* from + ptr @.TypeMapEntry.1534_from; char* to + }, ; 822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1533_to, ; char* from + ptr @.TypeMapEntry.1532_from; char* to + }, ; 823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1537_to, ; char* from + ptr @.TypeMapEntry.1536_from; char* to + }, ; 824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1539_to, ; char* from + ptr @.TypeMapEntry.1538_from; char* to + }, ; 825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1543_to, ; char* from + ptr @.TypeMapEntry.1542_from; char* to + }, ; 826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1543_to, ; char* from + ptr @.TypeMapEntry.1542_from; char* to + }, ; 827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1541_to, ; char* from + ptr @.TypeMapEntry.1540_from; char* to + }, ; 828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1546_to, ; char* from + ptr @.TypeMapEntry.1545_from; char* to + }, ; 829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1548_to, ; char* from + ptr @.TypeMapEntry.1547_from; char* to + }, ; 830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1552_to, ; char* from + ptr @.TypeMapEntry.1551_from; char* to + }, ; 831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1552_to, ; char* from + ptr @.TypeMapEntry.1551_from; char* to + }, ; 832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1550_to, ; char* from + ptr @.TypeMapEntry.1549_from; char* to + }, ; 833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1557_to, ; char* from + ptr @.TypeMapEntry.1556_from; char* to + }, ; 834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1555_to, ; char* from + ptr @.TypeMapEntry.1554_from; char* to + }, ; 835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1559_to, ; char* from + ptr @.TypeMapEntry.1558_from; char* to + }, ; 836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1561_to, ; char* from + ptr @.TypeMapEntry.1560_from; char* to + }, ; 837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1575_to, ; char* from + ptr null; char* to + }, ; 838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1575_to, ; char* from + ptr null; char* to + }, ; 839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1578_to, ; char* from + ptr null; char* to + }, ; 840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1578_to, ; char* from + ptr null; char* to + }, ; 841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1583_to, ; char* from + ptr null; char* to + }, ; 842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1583_to, ; char* from + ptr null; char* to + }, ; 843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1588_to, ; char* from + ptr null; char* to + }, ; 844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1588_to, ; char* from + ptr null; char* to + }, ; 845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1593_to, ; char* from + ptr null; char* to + }, ; 846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1593_to, ; char* from + ptr null; char* to + }, ; 847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1598_to, ; char* from + ptr null; char* to + }, ; 848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1598_to, ; char* from + ptr null; char* to + }, ; 849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1603_to, ; char* from + ptr null; char* to + }, ; 850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1603_to, ; char* from + ptr null; char* to + }, ; 851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1567_to, ; char* from + ptr @.TypeMapEntry.1566_from; char* to + }, ; 852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1565_to, ; char* from + ptr @.TypeMapEntry.1564_from; char* to + }, ; 853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1629_to, ; char* from + ptr @.TypeMapEntry.1628_from; char* to + }, ; 854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1625_to, ; char* from + ptr @.TypeMapEntry.1624_from; char* to + }, ; 855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1627_to, ; char* from + ptr @.TypeMapEntry.1626_from; char* to + }, ; 856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1635_to, ; char* from + ptr @.TypeMapEntry.1634_from; char* to + }, ; 857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1631_to, ; char* from + ptr @.TypeMapEntry.1630_from; char* to + }, ; 858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1633_to, ; char* from + ptr @.TypeMapEntry.1632_from; char* to + }, ; 859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1642_to, ; char* from + ptr @.TypeMapEntry.1641_from; char* to + }, ; 860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1637_to, ; char* from + ptr null; char* to + }, ; 861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1637_to, ; char* from + ptr null; char* to + }, ; 862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1640_to, ; char* from + ptr @.TypeMapEntry.1639_from; char* to + }, ; 863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1656_to, ; char* from + ptr @.TypeMapEntry.1655_from; char* to + }, ; 864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1644_to, ; char* from + ptr @.TypeMapEntry.1643_from; char* to + }, ; 865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1646_to, ; char* from + ptr null; char* to + }, ; 866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1646_to, ; char* from + ptr null; char* to + }, ; 867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1651_to, ; char* from + ptr null; char* to + }, ; 868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1651_to, ; char* from + ptr null; char* to + }, ; 869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1658_to, ; char* from + ptr @.TypeMapEntry.1657_from; char* to + }, ; 870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1660_to, ; char* from + ptr @.TypeMapEntry.1659_from; char* to + }, ; 871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1672_to, ; char* from + ptr @.TypeMapEntry.1671_from; char* to + }, ; 872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1820_to, ; char* from + ptr @.TypeMapEntry.1819_from; char* to + }, ; 873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1822_to, ; char* from + ptr @.TypeMapEntry.1821_from; char* to + }, ; 874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1824_to, ; char* from + ptr @.TypeMapEntry.1823_from; char* to + }, ; 875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1865_to, ; char* from + ptr @.TypeMapEntry.1864_from; char* to + }, ; 876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1867_to, ; char* from + ptr @.TypeMapEntry.1866_from; char* to + }, ; 877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1869_to, ; char* from + ptr @.TypeMapEntry.1868_from; char* to + }, ; 878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1608_to, ; char* from + ptr null; char* to + }, ; 879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1608_to, ; char* from + ptr null; char* to + }, ; 880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1611_to, ; char* from + ptr null; char* to + }, ; 881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1611_to, ; char* from + ptr null; char* to + }, ; 882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1613_to, ; char* from + ptr null; char* to + }, ; 883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1613_to, ; char* from + ptr null; char* to + }, ; 884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1617_to, ; char* from + ptr null; char* to + }, ; 885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1617_to, ; char* from + ptr null; char* to + }, ; 886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1871_to, ; char* from + ptr @.TypeMapEntry.1870_from; char* to + }, ; 887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1873_to, ; char* from + ptr @.TypeMapEntry.1872_from; char* to + }, ; 888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1875_to, ; char* from + ptr @.TypeMapEntry.1874_from; char* to + }, ; 889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1879_to, ; char* from + ptr @.TypeMapEntry.1878_from; char* to + }, ; 890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1877_to, ; char* from + ptr @.TypeMapEntry.1876_from; char* to + }, ; 891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1881_to, ; char* from + ptr @.TypeMapEntry.1880_from; char* to + }, ; 892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1883_to, ; char* from + ptr @.TypeMapEntry.1882_from; char* to + }, ; 893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1622_to, ; char* from + ptr null; char* to + }, ; 894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1622_to, ; char* from + ptr null; char* to + }, ; 895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1885_to, ; char* from + ptr @.TypeMapEntry.1884_from; char* to + }, ; 896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1887_to, ; char* from + ptr @.TypeMapEntry.1886_from; char* to + }, ; 897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1889_to, ; char* from + ptr @.TypeMapEntry.1888_from; char* to + }, ; 898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1891_to, ; char* from + ptr @.TypeMapEntry.1890_from; char* to + }, ; 899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1662_to, ; char* from + ptr @.TypeMapEntry.1661_from; char* to + }, ; 900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1664_to, ; char* from + ptr @.TypeMapEntry.1663_from; char* to + }, ; 901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1666_to, ; char* from + ptr @.TypeMapEntry.1665_from; char* to + }, ; 902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1668_to, ; char* from + ptr @.TypeMapEntry.1667_from; char* to + }, ; 903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1670_to, ; char* from + ptr @.TypeMapEntry.1669_from; char* to + }, ; 904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1676_to, ; char* from + ptr @.TypeMapEntry.1675_from; char* to + }, ; 905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1674_to, ; char* from + ptr @.TypeMapEntry.1673_from; char* to + }, ; 906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1678_to, ; char* from + ptr @.TypeMapEntry.1677_from; char* to + }, ; 907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1682_to, ; char* from + ptr @.TypeMapEntry.1681_from; char* to + }, ; 908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1680_to, ; char* from + ptr @.TypeMapEntry.1679_from; char* to + }, ; 909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1684_to, ; char* from + ptr @.TypeMapEntry.1683_from; char* to + }, ; 910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1686_to, ; char* from + ptr @.TypeMapEntry.1685_from; char* to + }, ; 911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1688_to, ; char* from + ptr @.TypeMapEntry.1687_from; char* to + }, ; 912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1692_to, ; char* from + ptr @.TypeMapEntry.1691_from; char* to + }, ; 913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1690_to, ; char* from + ptr @.TypeMapEntry.1689_from; char* to + }, ; 914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1696_to, ; char* from + ptr @.TypeMapEntry.1695_from; char* to + }, ; 915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1694_to, ; char* from + ptr @.TypeMapEntry.1693_from; char* to + }, ; 916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1698_to, ; char* from + ptr @.TypeMapEntry.1697_from; char* to + }, ; 917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1700_to, ; char* from + ptr @.TypeMapEntry.1699_from; char* to + }, ; 918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1702_to, ; char* from + ptr @.TypeMapEntry.1701_from; char* to + }, ; 919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1704_to, ; char* from + ptr @.TypeMapEntry.1703_from; char* to + }, ; 920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1706_to, ; char* from + ptr @.TypeMapEntry.1705_from; char* to + }, ; 921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1708_to, ; char* from + ptr @.TypeMapEntry.1707_from; char* to + }, ; 922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1710_to, ; char* from + ptr @.TypeMapEntry.1709_from; char* to + }, ; 923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1712_to, ; char* from + ptr @.TypeMapEntry.1711_from; char* to + }, ; 924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1714_to, ; char* from + ptr @.TypeMapEntry.1713_from; char* to + }, ; 925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1716_to, ; char* from + ptr @.TypeMapEntry.1715_from; char* to + }, ; 926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1718_to, ; char* from + ptr @.TypeMapEntry.1717_from; char* to + }, ; 927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1729_to, ; char* from + ptr @.TypeMapEntry.1728_from; char* to + }, ; 928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1720_to, ; char* from + ptr @.TypeMapEntry.1719_from; char* to + }, ; 929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1722_to, ; char* from + ptr @.TypeMapEntry.1721_from; char* to + }, ; 930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1722_to, ; char* from + ptr @.TypeMapEntry.1721_from; char* to + }, ; 931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1725_to, ; char* from + ptr @.TypeMapEntry.1724_from; char* to + }, ; 932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1727_to, ; char* from + ptr @.TypeMapEntry.1726_from; char* to + }, ; 933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1731_to, ; char* from + ptr @.TypeMapEntry.1730_from; char* to + }, ; 934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1733_to, ; char* from + ptr @.TypeMapEntry.1732_from; char* to + }, ; 935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1735_to, ; char* from + ptr @.TypeMapEntry.1734_from; char* to + }, ; 936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1758_to, ; char* from + ptr @.TypeMapEntry.1757_from; char* to + }, ; 937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1739_to, ; char* from + ptr @.TypeMapEntry.1738_from; char* to + }, ; 938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1737_to, ; char* from + ptr @.TypeMapEntry.1736_from; char* to + }, ; 939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1741_to, ; char* from + ptr @.TypeMapEntry.1740_from; char* to + }, ; 940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1745_to, ; char* from + ptr @.TypeMapEntry.1744_from; char* to + }, ; 941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1743_to, ; char* from + ptr @.TypeMapEntry.1742_from; char* to + }, ; 942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1747_to, ; char* from + ptr @.TypeMapEntry.1746_from; char* to + }, ; 943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1749_to, ; char* from + ptr @.TypeMapEntry.1748_from; char* to + }, ; 944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1749_to, ; char* from + ptr @.TypeMapEntry.1748_from; char* to + }, ; 945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1752_to, ; char* from + ptr @.TypeMapEntry.1751_from; char* to + }, ; 946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1754_to, ; char* from + ptr @.TypeMapEntry.1753_from; char* to + }, ; 947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1756_to, ; char* from + ptr @.TypeMapEntry.1755_from; char* to + }, ; 948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1762_to, ; char* from + ptr @.TypeMapEntry.1761_from; char* to + }, ; 949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1760_to, ; char* from + ptr @.TypeMapEntry.1759_from; char* to + }, ; 950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1783_to, ; char* from + ptr @.TypeMapEntry.1782_from; char* to + }, ; 951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1783_to, ; char* from + ptr @.TypeMapEntry.1782_from; char* to + }, ; 952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1764_to, ; char* from + ptr @.TypeMapEntry.1763_from; char* to + }, ; 953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1766_to, ; char* from + ptr @.TypeMapEntry.1765_from; char* to + }, ; 954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1768_to, ; char* from + ptr @.TypeMapEntry.1767_from; char* to + }, ; 955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1775_to, ; char* from + ptr @.TypeMapEntry.1774_from; char* to + }, ; 956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1770_to, ; char* from + ptr null; char* to + }, ; 957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1770_to, ; char* from + ptr null; char* to + }, ; 958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1777_to, ; char* from + ptr @.TypeMapEntry.1776_from; char* to + }, ; 959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1779_to, ; char* from + ptr @.TypeMapEntry.1778_from; char* to + }, ; 960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1781_to, ; char* from + ptr @.TypeMapEntry.1780_from; char* to + }, ; 961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1786_to, ; char* from + ptr @.TypeMapEntry.1785_from; char* to + }, ; 962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1788_to, ; char* from + ptr @.TypeMapEntry.1787_from; char* to + }, ; 963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1790_to, ; char* from + ptr @.TypeMapEntry.1789_from; char* to + }, ; 964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1792_to, ; char* from + ptr @.TypeMapEntry.1791_from; char* to + }, ; 965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1794_to, ; char* from + ptr @.TypeMapEntry.1793_from; char* to + }, ; 966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1798_to, ; char* from + ptr @.TypeMapEntry.1797_from; char* to + }, ; 967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1796_to, ; char* from + ptr @.TypeMapEntry.1795_from; char* to + }, ; 968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1800_to, ; char* from + ptr @.TypeMapEntry.1799_from; char* to + }, ; 969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1802_to, ; char* from + ptr @.TypeMapEntry.1801_from; char* to + }, ; 970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1806_to, ; char* from + ptr @.TypeMapEntry.1805_from; char* to + }, ; 971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1804_to, ; char* from + ptr @.TypeMapEntry.1803_from; char* to + }, ; 972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1808_to, ; char* from + ptr @.TypeMapEntry.1807_from; char* to + }, ; 973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1810_to, ; char* from + ptr @.TypeMapEntry.1809_from; char* to + }, ; 974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1812_to, ; char* from + ptr @.TypeMapEntry.1811_from; char* to + }, ; 975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1818_to, ; char* from + ptr @.TypeMapEntry.1817_from; char* to + }, ; 976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1814_to, ; char* from + ptr @.TypeMapEntry.1813_from; char* to + }, ; 977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1816_to, ; char* from + ptr @.TypeMapEntry.1815_from; char* to + }, ; 978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1830_to, ; char* from + ptr @.TypeMapEntry.1829_from; char* to + }, ; 979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1826_to, ; char* from + ptr @.TypeMapEntry.1825_from; char* to + }, ; 980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1828_to, ; char* from + ptr @.TypeMapEntry.1827_from; char* to + }, ; 981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1834_to, ; char* from + ptr @.TypeMapEntry.1833_from; char* to + }, ; 982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1832_to, ; char* from + ptr @.TypeMapEntry.1831_from; char* to + }, ; 983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1836_to, ; char* from + ptr @.TypeMapEntry.1835_from; char* to + }, ; 984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1838_to, ; char* from + ptr @.TypeMapEntry.1837_from; char* to + }, ; 985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1840_to, ; char* from + ptr null; char* to + }, ; 986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1840_to, ; char* from + ptr null; char* to + }, ; 987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1853_to, ; char* from + ptr @.TypeMapEntry.1852_from; char* to + }, ; 988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1855_to, ; char* from + ptr @.TypeMapEntry.1854_from; char* to + }, ; 989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1861_to, ; char* from + ptr @.TypeMapEntry.1860_from; char* to + }, ; 990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1857_to, ; char* from + ptr @.TypeMapEntry.1856_from; char* to + }, ; 991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1859_to, ; char* from + ptr @.TypeMapEntry.1858_from; char* to + }, ; 992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1863_to, ; char* from + ptr @.TypeMapEntry.1862_from; char* to + }, ; 993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1843_to, ; char* from + ptr null; char* to + }, ; 994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1843_to, ; char* from + ptr null; char* to + }, ; 995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1846_to, ; char* from + ptr null; char* to + }, ; 996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1846_to, ; char* from + ptr null; char* to + }, ; 997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1849_to, ; char* from + ptr @.TypeMapEntry.1848_from; char* to + }, ; 998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1851_to, ; char* from + ptr @.TypeMapEntry.1850_from; char* to + }, ; 999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1893_to, ; char* from + ptr @.TypeMapEntry.1892_from; char* to + }, ; 1000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1895_to, ; char* from + ptr @.TypeMapEntry.1894_from; char* to + }, ; 1001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1897_to, ; char* from + ptr @.TypeMapEntry.1896_from; char* to + }, ; 1002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1901_to, ; char* from + ptr @.TypeMapEntry.1900_from; char* to + }, ; 1003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1899_to, ; char* from + ptr @.TypeMapEntry.1898_from; char* to + }, ; 1004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1903_to, ; char* from + ptr @.TypeMapEntry.1902_from; char* to + }, ; 1005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1905_to, ; char* from + ptr @.TypeMapEntry.1904_from; char* to + }, ; 1006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1907_to, ; char* from + ptr @.TypeMapEntry.1906_from; char* to + }, ; 1007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1909_to, ; char* from + ptr @.TypeMapEntry.1908_from; char* to + }, ; 1008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1913_to, ; char* from + ptr @.TypeMapEntry.1912_from; char* to + }, ; 1009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1911_to, ; char* from + ptr @.TypeMapEntry.1910_from; char* to + }, ; 1010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1915_to, ; char* from + ptr @.TypeMapEntry.1914_from; char* to + }, ; 1011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1919_to, ; char* from + ptr @.TypeMapEntry.1918_from; char* to + }, ; 1012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1917_to, ; char* from + ptr @.TypeMapEntry.1916_from; char* to + }, ; 1013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1921_to, ; char* from + ptr @.TypeMapEntry.1920_from; char* to + }, ; 1014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1925_to, ; char* from + ptr @.TypeMapEntry.1924_from; char* to + }, ; 1015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1923_to, ; char* from + ptr @.TypeMapEntry.1922_from; char* to + }, ; 1016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1927_to, ; char* from + ptr @.TypeMapEntry.1926_from; char* to + }, ; 1017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1929_to, ; char* from + ptr @.TypeMapEntry.1928_from; char* to + }, ; 1018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1931_to, ; char* from + ptr null; char* to + }, ; 1019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1931_to, ; char* from + ptr null; char* to + }, ; 1020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1934_to, ; char* from + ptr @.TypeMapEntry.1933_from; char* to + }, ; 1021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1938_to, ; char* from + ptr @.TypeMapEntry.1937_from; char* to + }, ; 1022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1938_to, ; char* from + ptr @.TypeMapEntry.1937_from; char* to + }, ; 1023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1936_to, ; char* from + ptr @.TypeMapEntry.1935_from; char* to + }, ; 1024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1941_to, ; char* from + ptr @.TypeMapEntry.1940_from; char* to + }, ; 1025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1941_to, ; char* from + ptr @.TypeMapEntry.1940_from; char* to + }, ; 1026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1944_to, ; char* from + ptr @.TypeMapEntry.1943_from; char* to + }, ; 1027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1946_to, ; char* from + ptr @.TypeMapEntry.1945_from; char* to + }, ; 1028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1948_to, ; char* from + ptr @.TypeMapEntry.1947_from; char* to + }, ; 1029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1948_to, ; char* from + ptr @.TypeMapEntry.1947_from; char* to + }, ; 1030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1976_to, ; char* from + ptr null; char* to + }, ; 1031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1976_to, ; char* from + ptr null; char* to + }, ; 1032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1951_to, ; char* from + ptr @.TypeMapEntry.1950_from; char* to + }, ; 1033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1979_to, ; char* from + ptr null; char* to + }, ; 1034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1979_to, ; char* from + ptr null; char* to + }, ; 1035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1953_to, ; char* from + ptr @.TypeMapEntry.1952_from; char* to + }, ; 1036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1957_to, ; char* from + ptr @.TypeMapEntry.1956_from; char* to + }, ; 1037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1955_to, ; char* from + ptr @.TypeMapEntry.1954_from; char* to + }, ; 1038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1959_to, ; char* from + ptr @.TypeMapEntry.1958_from; char* to + }, ; 1039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1961_to, ; char* from + ptr @.TypeMapEntry.1960_from; char* to + }, ; 1040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1963_to, ; char* from + ptr @.TypeMapEntry.1962_from; char* to + }, ; 1041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1965_to, ; char* from + ptr @.TypeMapEntry.1964_from; char* to + }, ; 1042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1967_to, ; char* from + ptr @.TypeMapEntry.1966_from; char* to + }, ; 1043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1967_to, ; char* from + ptr @.TypeMapEntry.1966_from; char* to + }, ; 1044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1982_to, ; char* from + ptr null; char* to + }, ; 1045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1982_to, ; char* from + ptr null; char* to + }, ; 1046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1972_to, ; char* from + ptr @.TypeMapEntry.1971_from; char* to + }, ; 1047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1970_to, ; char* from + ptr @.TypeMapEntry.1969_from; char* to + }, ; 1048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1974_to, ; char* from + ptr @.TypeMapEntry.1973_from; char* to + }, ; 1049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1987_to, ; char* from + ptr @.TypeMapEntry.1986_from; char* to + }, ; 1050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1985_to, ; char* from + ptr @.TypeMapEntry.1984_from; char* to + }, ; 1051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1989_to, ; char* from + ptr @.TypeMapEntry.1988_from; char* to + }, ; 1052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1991_to, ; char* from + ptr @.TypeMapEntry.1990_from; char* to + }, ; 1053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1991_to, ; char* from + ptr @.TypeMapEntry.1990_from; char* to + }, ; 1054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1994_to, ; char* from + ptr @.TypeMapEntry.1993_from; char* to + }, ; 1055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2066_to, ; char* from + ptr @.TypeMapEntry.2065_from; char* to + }, ; 1056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2004_to, ; char* from + ptr @.TypeMapEntry.2003_from; char* to + }, ; 1057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2006_to, ; char* from + ptr @.TypeMapEntry.2005_from; char* to + }, ; 1058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2008_to, ; char* from + ptr @.TypeMapEntry.2007_from; char* to + }, ; 1059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2010_to, ; char* from + ptr @.TypeMapEntry.2009_from; char* to + }, ; 1060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2012_to, ; char* from + ptr @.TypeMapEntry.2011_from; char* to + }, ; 1061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2014_to, ; char* from + ptr @.TypeMapEntry.2013_from; char* to + }, ; 1062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2014_to, ; char* from + ptr @.TypeMapEntry.2013_from; char* to + }, ; 1063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2017_to, ; char* from + ptr @.TypeMapEntry.2016_from; char* to + }, ; 1064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2019_to, ; char* from + ptr @.TypeMapEntry.2018_from; char* to + }, ; 1065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1996_to, ; char* from + ptr null; char* to + }, ; 1066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1996_to, ; char* from + ptr null; char* to + }, ; 1067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2028_to, ; char* from + ptr @.TypeMapEntry.2027_from; char* to + }, ; 1068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2021_to, ; char* from + ptr null; char* to + }, ; 1069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2021_to, ; char* from + ptr null; char* to + }, ; 1070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2026_to, ; char* from + ptr @.TypeMapEntry.2025_from; char* to + }, ; 1071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2024_to, ; char* from + ptr @.TypeMapEntry.2023_from; char* to + }, ; 1072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2030_to, ; char* from + ptr @.TypeMapEntry.2029_from; char* to + }, ; 1073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2032_to, ; char* from + ptr @.TypeMapEntry.2031_from; char* to + }, ; 1074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2034_to, ; char* from + ptr @.TypeMapEntry.2033_from; char* to + }, ; 1075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2036_to, ; char* from + ptr @.TypeMapEntry.2035_from; char* to + }, ; 1076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2038_to, ; char* from + ptr @.TypeMapEntry.2037_from; char* to + }, ; 1077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2040_to, ; char* from + ptr @.TypeMapEntry.2039_from; char* to + }, ; 1078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2042_to, ; char* from + ptr @.TypeMapEntry.2041_from; char* to + }, ; 1079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2044_to, ; char* from + ptr @.TypeMapEntry.2043_from; char* to + }, ; 1080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2046_to, ; char* from + ptr @.TypeMapEntry.2045_from; char* to + }, ; 1081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2046_to, ; char* from + ptr @.TypeMapEntry.2045_from; char* to + }, ; 1082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2049_to, ; char* from + ptr @.TypeMapEntry.2048_from; char* to + }, ; 1083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2051_to, ; char* from + ptr @.TypeMapEntry.2050_from; char* to + }, ; 1084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2051_to, ; char* from + ptr @.TypeMapEntry.2050_from; char* to + }, ; 1085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2054_to, ; char* from + ptr @.TypeMapEntry.2053_from; char* to + }, ; 1086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2056_to, ; char* from + ptr @.TypeMapEntry.2055_from; char* to + }, ; 1087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2058_to, ; char* from + ptr @.TypeMapEntry.2057_from; char* to + }, ; 1088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2060_to, ; char* from + ptr @.TypeMapEntry.2059_from; char* to + }, ; 1089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2062_to, ; char* from + ptr @.TypeMapEntry.2061_from; char* to + }, ; 1090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2064_to, ; char* from + ptr @.TypeMapEntry.2063_from; char* to + }, ; 1091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1999_to, ; char* from + ptr null; char* to + }, ; 1092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1999_to, ; char* from + ptr null; char* to + }, ; 1093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2068_to, ; char* from + ptr @.TypeMapEntry.2067_from; char* to + }, ; 1094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2070_to, ; char* from + ptr @.TypeMapEntry.2069_from; char* to + }, ; 1095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2072_to, ; char* from + ptr @.TypeMapEntry.2071_from; char* to + }, ; 1096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2074_to, ; char* from + ptr @.TypeMapEntry.2073_from; char* to + }, ; 1097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2076_to, ; char* from + ptr @.TypeMapEntry.2075_from; char* to + }, ; 1098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2078_to, ; char* from + ptr @.TypeMapEntry.2077_from; char* to + }, ; 1099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2080_to, ; char* from + ptr @.TypeMapEntry.2079_from; char* to + }, ; 1100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2082_to, ; char* from + ptr @.TypeMapEntry.2081_from; char* to + }, ; 1101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2084_to, ; char* from + ptr @.TypeMapEntry.2083_from; char* to + }, ; 1102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2101_to, ; char* from + ptr @.TypeMapEntry.2100_from; char* to + }, ; 1103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2086_to, ; char* from + ptr null; char* to + }, ; 1104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2086_to, ; char* from + ptr null; char* to + }, ; 1105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2091_to, ; char* from + ptr null; char* to + }, ; 1106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2091_to, ; char* from + ptr null; char* to + }, ; 1107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2096_to, ; char* from + ptr null; char* to + }, ; 1108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2096_to, ; char* from + ptr null; char* to + }, ; 1109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2103_to, ; char* from + ptr @.TypeMapEntry.2102_from; char* to + }, ; 1110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2115_to, ; char* from + ptr @.TypeMapEntry.2114_from; char* to + }, ; 1111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2105_to, ; char* from + ptr @.TypeMapEntry.2104_from; char* to + }, ; 1112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2109_to, ; char* from + ptr @.TypeMapEntry.2108_from; char* to + }, ; 1113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2111_to, ; char* from + ptr @.TypeMapEntry.2110_from; char* to + }, ; 1114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2113_to, ; char* from + ptr @.TypeMapEntry.2112_from; char* to + }, ; 1115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2117_to, ; char* from + ptr @.TypeMapEntry.2116_from; char* to + }, ; 1116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2121_to, ; char* from + ptr @.TypeMapEntry.2120_from; char* to + }, ; 1117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2119_to, ; char* from + ptr @.TypeMapEntry.2118_from; char* to + }, ; 1118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2123_to, ; char* from + ptr @.TypeMapEntry.2122_from; char* to + }, ; 1119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2125_to, ; char* from + ptr @.TypeMapEntry.2124_from; char* to + }, ; 1120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2127_to, ; char* from + ptr @.TypeMapEntry.2126_from; char* to + }, ; 1121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2129_to, ; char* from + ptr @.TypeMapEntry.2128_from; char* to + }, ; 1122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2129_to, ; char* from + ptr @.TypeMapEntry.2128_from; char* to + }, ; 1123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2147_to, ; char* from + ptr @.TypeMapEntry.2146_from; char* to + }, ; 1124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2132_to, ; char* from + ptr null; char* to + }, ; 1125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2132_to, ; char* from + ptr null; char* to + }, ; 1126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2137_to, ; char* from + ptr null; char* to + }, ; 1127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2137_to, ; char* from + ptr null; char* to + }, ; 1128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2142_to, ; char* from + ptr null; char* to + }, ; 1129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2142_to, ; char* from + ptr null; char* to + }, ; 1130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2149_to, ; char* from + ptr @.TypeMapEntry.2148_from; char* to + }, ; 1131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2151_to, ; char* from + ptr @.TypeMapEntry.2150_from; char* to + }, ; 1132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2153_to, ; char* from + ptr @.TypeMapEntry.2152_from; char* to + }, ; 1133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2155_to, ; char* from + ptr @.TypeMapEntry.2154_from; char* to + }, ; 1134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2157_to, ; char* from + ptr @.TypeMapEntry.2156_from; char* to + }, ; 1135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2159_to, ; char* from + ptr @.TypeMapEntry.2158_from; char* to + }, ; 1136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2163_to, ; char* from + ptr @.TypeMapEntry.2162_from; char* to + }, ; 1137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2161_to, ; char* from + ptr @.TypeMapEntry.2160_from; char* to + }, ; 1138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2169_to, ; char* from + ptr @.TypeMapEntry.2168_from; char* to + }, ; 1139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2165_to, ; char* from + ptr @.TypeMapEntry.2164_from; char* to + }, ; 1140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2167_to, ; char* from + ptr @.TypeMapEntry.2166_from; char* to + }, ; 1141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2173_to, ; char* from + ptr @.TypeMapEntry.2172_from; char* to + }, ; 1142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2171_to, ; char* from + ptr @.TypeMapEntry.2170_from; char* to + }, ; 1143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2175_to, ; char* from + ptr @.TypeMapEntry.2174_from; char* to + }, ; 1144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2177_to, ; char* from + ptr @.TypeMapEntry.2176_from; char* to + }, ; 1145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2179_to, ; char* from + ptr @.TypeMapEntry.2178_from; char* to + }, ; 1146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2181_to, ; char* from + ptr @.TypeMapEntry.2180_from; char* to + }, ; 1147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2185_to, ; char* from + ptr @.TypeMapEntry.2184_from; char* to + }, ; 1148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2183_to, ; char* from + ptr @.TypeMapEntry.2182_from; char* to + }, ; 1149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2187_to, ; char* from + ptr @.TypeMapEntry.2186_from; char* to + }, ; 1150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2193_to, ; char* from + ptr @.TypeMapEntry.2192_from; char* to + }, ; 1151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2189_to, ; char* from + ptr @.TypeMapEntry.2188_from; char* to + }, ; 1152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2191_to, ; char* from + ptr @.TypeMapEntry.2190_from; char* to + }, ; 1153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2201_to, ; char* from + ptr @.TypeMapEntry.2200_from; char* to + }, ; 1154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2195_to, ; char* from + ptr @.TypeMapEntry.2194_from; char* to + }, ; 1155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2197_to, ; char* from + ptr @.TypeMapEntry.2196_from; char* to + }, ; 1156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2199_to, ; char* from + ptr @.TypeMapEntry.2198_from; char* to + }, ; 1157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2217_to, ; char* from + ptr @.TypeMapEntry.2216_from; char* to + }, ; 1158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2217_to, ; char* from + ptr @.TypeMapEntry.2216_from; char* to + }, ; 1159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2203_to, ; char* from + ptr @.TypeMapEntry.2202_from; char* to + }, ; 1160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2205_to, ; char* from + ptr @.TypeMapEntry.2204_from; char* to + }, ; 1161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2207_to, ; char* from + ptr @.TypeMapEntry.2206_from; char* to + }, ; 1162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2209_to, ; char* from + ptr @.TypeMapEntry.2208_from; char* to + }, ; 1163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2211_to, ; char* from + ptr @.TypeMapEntry.2210_from; char* to + }, ; 1164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2215_to, ; char* from + ptr @.TypeMapEntry.2214_from; char* to + }, ; 1165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2213_to, ; char* from + ptr @.TypeMapEntry.2212_from; char* to + }, ; 1166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2220_to, ; char* from + ptr @.TypeMapEntry.2219_from; char* to + }, ; 1167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2222_to, ; char* from + ptr @.TypeMapEntry.2221_from; char* to + }, ; 1168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2224_to, ; char* from + ptr @.TypeMapEntry.2223_from; char* to + }, ; 1169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2226_to, ; char* from + ptr @.TypeMapEntry.2225_from; char* to + }, ; 1170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2228_to, ; char* from + ptr @.TypeMapEntry.2227_from; char* to + }, ; 1171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2230_to, ; char* from + ptr @.TypeMapEntry.2229_from; char* to + }, ; 1172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2329_to, ; char* from + ptr @.TypeMapEntry.2328_from; char* to + }, ; 1173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2345_to, ; char* from + ptr @.TypeMapEntry.2344_from; char* to + }, ; 1174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2351_to, ; char* from + ptr @.TypeMapEntry.2350_from; char* to + }, ; 1175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2347_to, ; char* from + ptr @.TypeMapEntry.2346_from; char* to + }, ; 1176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2349_to, ; char* from + ptr @.TypeMapEntry.2348_from; char* to + }, ; 1177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2355_to, ; char* from + ptr @.TypeMapEntry.2354_from; char* to + }, ; 1178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2353_to, ; char* from + ptr @.TypeMapEntry.2352_from; char* to + }, ; 1179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2377_to, ; char* from + ptr @.TypeMapEntry.2376_from; char* to + }, ; 1180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2360_to, ; char* from + ptr @.TypeMapEntry.2359_from; char* to + }, ; 1181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2372_to, ; char* from + ptr @.TypeMapEntry.2371_from; char* to + }, ; 1182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2362_to, ; char* from + ptr null; char* to + }, ; 1183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2362_to, ; char* from + ptr null; char* to + }, ; 1184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2367_to, ; char* from + ptr null; char* to + }, ; 1185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2367_to, ; char* from + ptr null; char* to + }, ; 1186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2374_to, ; char* from + ptr @.TypeMapEntry.2373_from; char* to + }, ; 1187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2374_to, ; char* from + ptr @.TypeMapEntry.2373_from; char* to + }, ; 1188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2379_to, ; char* from + ptr @.TypeMapEntry.2378_from; char* to + }, ; 1189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2381_to, ; char* from + ptr @.TypeMapEntry.2380_from; char* to + }, ; 1190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2385_to, ; char* from + ptr @.TypeMapEntry.2384_from; char* to + }, ; 1191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2383_to, ; char* from + ptr @.TypeMapEntry.2382_from; char* to + }, ; 1192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2387_to, ; char* from + ptr @.TypeMapEntry.2386_from; char* to + }, ; 1193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2389_to, ; char* from + ptr @.TypeMapEntry.2388_from; char* to + }, ; 1194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2391_to, ; char* from + ptr @.TypeMapEntry.2390_from; char* to + }, ; 1195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2393_to, ; char* from + ptr @.TypeMapEntry.2392_from; char* to + }, ; 1196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2397_to, ; char* from + ptr @.TypeMapEntry.2396_from; char* to + }, ; 1197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2395_to, ; char* from + ptr @.TypeMapEntry.2394_from; char* to + }, ; 1198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2399_to, ; char* from + ptr @.TypeMapEntry.2398_from; char* to + }, ; 1199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2401_to, ; char* from + ptr @.TypeMapEntry.2400_from; char* to + }, ; 1200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2407_to, ; char* from + ptr @.TypeMapEntry.2406_from; char* to + }, ; 1201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2403_to, ; char* from + ptr @.TypeMapEntry.2402_from; char* to + }, ; 1202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2405_to, ; char* from + ptr @.TypeMapEntry.2404_from; char* to + }, ; 1203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2409_to, ; char* from + ptr @.TypeMapEntry.2408_from; char* to + }, ; 1204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2411_to, ; char* from + ptr @.TypeMapEntry.2410_from; char* to + }, ; 1205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2413_to, ; char* from + ptr @.TypeMapEntry.2412_from; char* to + }, ; 1206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2427_to, ; char* from + ptr @.TypeMapEntry.2426_from; char* to + }, ; 1207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2415_to, ; char* from + ptr @.TypeMapEntry.2414_from; char* to + }, ; 1208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2417_to, ; char* from + ptr @.TypeMapEntry.2416_from; char* to + }, ; 1209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2419_to, ; char* from + ptr @.TypeMapEntry.2418_from; char* to + }, ; 1210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2421_to, ; char* from + ptr @.TypeMapEntry.2420_from; char* to + }, ; 1211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2423_to, ; char* from + ptr @.TypeMapEntry.2422_from; char* to + }, ; 1212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2425_to, ; char* from + ptr @.TypeMapEntry.2424_from; char* to + }, ; 1213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2429_to, ; char* from + ptr @.TypeMapEntry.2428_from; char* to + }, ; 1214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2431_to, ; char* from + ptr @.TypeMapEntry.2430_from; char* to + }, ; 1215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2439_to, ; char* from + ptr @.TypeMapEntry.2438_from; char* to + }, ; 1216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2433_to, ; char* from + ptr @.TypeMapEntry.2432_from; char* to + }, ; 1217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2435_to, ; char* from + ptr @.TypeMapEntry.2434_from; char* to + }, ; 1218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2437_to, ; char* from + ptr @.TypeMapEntry.2436_from; char* to + }, ; 1219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2443_to, ; char* from + ptr @.TypeMapEntry.2442_from; char* to + }, ; 1220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2441_to, ; char* from + ptr @.TypeMapEntry.2440_from; char* to + }, ; 1221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2445_to, ; char* from + ptr @.TypeMapEntry.2444_from; char* to + }, ; 1222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2449_to, ; char* from + ptr @.TypeMapEntry.2448_from; char* to + }, ; 1223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2447_to, ; char* from + ptr @.TypeMapEntry.2446_from; char* to + }, ; 1224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2451_to, ; char* from + ptr @.TypeMapEntry.2450_from; char* to + }, ; 1225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2503_to, ; char* from + ptr @.TypeMapEntry.2502_from; char* to + }, ; 1226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2505_to, ; char* from + ptr @.TypeMapEntry.2504_from; char* to + }, ; 1227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2507_to, ; char* from + ptr @.TypeMapEntry.2506_from; char* to + }, ; 1228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2509_to, ; char* from + ptr @.TypeMapEntry.2508_from; char* to + }, ; 1229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2511_to, ; char* from + ptr @.TypeMapEntry.2510_from; char* to + }, ; 1230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2515_to, ; char* from + ptr @.TypeMapEntry.2514_from; char* to + }, ; 1231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2513_to, ; char* from + ptr @.TypeMapEntry.2512_from; char* to + }, ; 1232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2517_to, ; char* from + ptr @.TypeMapEntry.2516_from; char* to + }, ; 1233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2519_to, ; char* from + ptr @.TypeMapEntry.2518_from; char* to + }, ; 1234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2357_to, ; char* from + ptr null; char* to + }, ; 1235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2357_to, ; char* from + ptr null; char* to + }, ; 1236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2521_to, ; char* from + ptr @.TypeMapEntry.2520_from; char* to + }, ; 1237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2523_to, ; char* from + ptr @.TypeMapEntry.2522_from; char* to + }, ; 1238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2525_to, ; char* from + ptr @.TypeMapEntry.2524_from; char* to + }, ; 1239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2527_to, ; char* from + ptr @.TypeMapEntry.2526_from; char* to + }, ; 1240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2529_to, ; char* from + ptr @.TypeMapEntry.2528_from; char* to + }, ; 1241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2533_to, ; char* from + ptr @.TypeMapEntry.2532_from; char* to + }, ; 1242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2531_to, ; char* from + ptr @.TypeMapEntry.2530_from; char* to + }, ; 1243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2535_to, ; char* from + ptr @.TypeMapEntry.2534_from; char* to + }, ; 1244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2537_to, ; char* from + ptr @.TypeMapEntry.2536_from; char* to + }, ; 1245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2539_to, ; char* from + ptr @.TypeMapEntry.2538_from; char* to + }, ; 1246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2541_to, ; char* from + ptr @.TypeMapEntry.2540_from; char* to + }, ; 1247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2545_to, ; char* from + ptr @.TypeMapEntry.2544_from; char* to + }, ; 1248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2543_to, ; char* from + ptr @.TypeMapEntry.2542_from; char* to + }, ; 1249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2547_to, ; char* from + ptr @.TypeMapEntry.2546_from; char* to + }, ; 1250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2556_to, ; char* from + ptr @.TypeMapEntry.2555_from; char* to + }, ; 1251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2549_to, ; char* from + ptr null; char* to + }, ; 1252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2549_to, ; char* from + ptr null; char* to + }, ; 1253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2554_to, ; char* from + ptr @.TypeMapEntry.2553_from; char* to + }, ; 1254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2558_to, ; char* from + ptr @.TypeMapEntry.2557_from; char* to + }, ; 1255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2584_to, ; char* from + ptr @.TypeMapEntry.2583_from; char* to + }, ; 1256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2580_to, ; char* from + ptr @.TypeMapEntry.2579_from; char* to + }, ; 1257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2582_to, ; char* from + ptr @.TypeMapEntry.2581_from; char* to + }, ; 1258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2586_to, ; char* from + ptr @.TypeMapEntry.2585_from; char* to + }, ; 1259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2588_to, ; char* from + ptr @.TypeMapEntry.2587_from; char* to + }, ; 1260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2232_to, ; char* from + ptr @.TypeMapEntry.2231_from; char* to + }, ; 1261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2274_to, ; char* from + ptr null; char* to + }, ; 1262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2274_to, ; char* from + ptr null; char* to + }, ; 1263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2276_to, ; char* from + ptr null; char* to + }, ; 1264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2276_to, ; char* from + ptr null; char* to + }, ; 1265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2234_to, ; char* from + ptr @.TypeMapEntry.2233_from; char* to + }, ; 1266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2234_to, ; char* from + ptr @.TypeMapEntry.2233_from; char* to + }, ; 1267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2237_to, ; char* from + ptr @.TypeMapEntry.2236_from; char* to + }, ; 1268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2239_to, ; char* from + ptr @.TypeMapEntry.2238_from; char* to + }, ; 1269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2241_to, ; char* from + ptr @.TypeMapEntry.2240_from; char* to + }, ; 1270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2243_to, ; char* from + ptr @.TypeMapEntry.2242_from; char* to + }, ; 1271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2245_to, ; char* from + ptr @.TypeMapEntry.2244_from; char* to + }, ; 1272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2247_to, ; char* from + ptr @.TypeMapEntry.2246_from; char* to + }, ; 1273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2249_to, ; char* from + ptr @.TypeMapEntry.2248_from; char* to + }, ; 1274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2251_to, ; char* from + ptr @.TypeMapEntry.2250_from; char* to + }, ; 1275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2259_to, ; char* from + ptr @.TypeMapEntry.2258_from; char* to + }, ; 1276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2259_to, ; char* from + ptr @.TypeMapEntry.2258_from; char* to + }, ; 1277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2256_to, ; char* from + ptr null; char* to + }, ; 1278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2256_to, ; char* from + ptr null; char* to + }, ; 1279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2253_to, ; char* from + ptr @.TypeMapEntry.2252_from; char* to + }, ; 1280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2253_to, ; char* from + ptr @.TypeMapEntry.2252_from; char* to + }, ; 1281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2264_to, ; char* from + ptr @.TypeMapEntry.2263_from; char* to + }, ; 1282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2261_to, ; char* from + ptr @.TypeMapEntry.2260_from; char* to + }, ; 1283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2261_to, ; char* from + ptr @.TypeMapEntry.2260_from; char* to + }, ; 1284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2267_to, ; char* from + ptr @.TypeMapEntry.2266_from; char* to + }, ; 1285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2267_to, ; char* from + ptr @.TypeMapEntry.2266_from; char* to + }, ; 1286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2272_to, ; char* from + ptr @.TypeMapEntry.2271_from; char* to + }, ; 1287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2270_to, ; char* from + ptr @.TypeMapEntry.2269_from; char* to + }, ; 1288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2285_to, ; char* from + ptr @.TypeMapEntry.2284_from; char* to + }, ; 1289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2280_to, ; char* from + ptr null; char* to + }, ; 1290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2280_to, ; char* from + ptr null; char* to + }, ; 1291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2287_to, ; char* from + ptr @.TypeMapEntry.2286_from; char* to + }, ; 1292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2289_to, ; char* from + ptr @.TypeMapEntry.2288_from; char* to + }, ; 1293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2291_to, ; char* from + ptr @.TypeMapEntry.2290_from; char* to + }, ; 1294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2293_to, ; char* from + ptr @.TypeMapEntry.2292_from; char* to + }, ; 1295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2295_to, ; char* from + ptr @.TypeMapEntry.2294_from; char* to + }, ; 1296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2297_to, ; char* from + ptr @.TypeMapEntry.2296_from; char* to + }, ; 1297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2299_to, ; char* from + ptr @.TypeMapEntry.2298_from; char* to + }, ; 1298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2301_to, ; char* from + ptr @.TypeMapEntry.2300_from; char* to + }, ; 1299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2303_to, ; char* from + ptr @.TypeMapEntry.2302_from; char* to + }, ; 1300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2308_to, ; char* from + ptr @.TypeMapEntry.2307_from; char* to + }, ; 1301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2305_to, ; char* from + ptr @.TypeMapEntry.2304_from; char* to + }, ; 1302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2305_to, ; char* from + ptr @.TypeMapEntry.2304_from; char* to + }, ; 1303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2323_to, ; char* from + ptr @.TypeMapEntry.2322_from; char* to + }, ; 1304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2325_to, ; char* from + ptr @.TypeMapEntry.2324_from; char* to + }, ; 1305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2327_to, ; char* from + ptr @.TypeMapEntry.2326_from; char* to + }, ; 1306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2310_to, ; char* from + ptr @.TypeMapEntry.2309_from; char* to + }, ; 1307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2312_to, ; char* from + ptr @.TypeMapEntry.2311_from; char* to + }, ; 1308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2314_to, ; char* from + ptr @.TypeMapEntry.2313_from; char* to + }, ; 1309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2316_to, ; char* from + ptr @.TypeMapEntry.2315_from; char* to + }, ; 1310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2318_to, ; char* from + ptr @.TypeMapEntry.2317_from; char* to + }, ; 1311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2320_to, ; char* from + ptr @.TypeMapEntry.2319_from; char* to + }, ; 1312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2320_to, ; char* from + ptr @.TypeMapEntry.2319_from; char* to + }, ; 1313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2333_to, ; char* from + ptr @.TypeMapEntry.2332_from; char* to + }, ; 1314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2331_to, ; char* from + ptr @.TypeMapEntry.2330_from; char* to + }, ; 1315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2337_to, ; char* from + ptr @.TypeMapEntry.2336_from; char* to + }, ; 1316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2335_to, ; char* from + ptr @.TypeMapEntry.2334_from; char* to + }, ; 1317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2339_to, ; char* from + ptr @.TypeMapEntry.2338_from; char* to + }, ; 1318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2341_to, ; char* from + ptr @.TypeMapEntry.2340_from; char* to + }, ; 1319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2343_to, ; char* from + ptr @.TypeMapEntry.2342_from; char* to + }, ; 1320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2465_to, ; char* from + ptr @.TypeMapEntry.2464_from; char* to + }, ; 1321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2463_to, ; char* from + ptr @.TypeMapEntry.2462_from; char* to + }, ; 1322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2489_to, ; char* from + ptr @.TypeMapEntry.2488_from; char* to + }, ; 1323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2483_to, ; char* from + ptr @.TypeMapEntry.2482_from; char* to + }, ; 1324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2487_to, ; char* from + ptr @.TypeMapEntry.2486_from; char* to + }, ; 1325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2485_to, ; char* from + ptr @.TypeMapEntry.2484_from; char* to + }, ; 1326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2493_to, ; char* from + ptr @.TypeMapEntry.2492_from; char* to + }, ; 1327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2491_to, ; char* from + ptr @.TypeMapEntry.2490_from; char* to + }, ; 1328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2497_to, ; char* from + ptr @.TypeMapEntry.2496_from; char* to + }, ; 1329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2495_to, ; char* from + ptr @.TypeMapEntry.2494_from; char* to + }, ; 1330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2501_to, ; char* from + ptr @.TypeMapEntry.2500_from; char* to + }, ; 1331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2499_to, ; char* from + ptr @.TypeMapEntry.2498_from; char* to + }, ; 1332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2455_to, ; char* from + ptr @.TypeMapEntry.2454_from; char* to + }, ; 1333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2453_to, ; char* from + ptr @.TypeMapEntry.2452_from; char* to + }, ; 1334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2457_to, ; char* from + ptr @.TypeMapEntry.2456_from; char* to + }, ; 1335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2459_to, ; char* from + ptr @.TypeMapEntry.2458_from; char* to + }, ; 1336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2461_to, ; char* from + ptr @.TypeMapEntry.2460_from; char* to + }, ; 1337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2469_to, ; char* from + ptr @.TypeMapEntry.2468_from; char* to + }, ; 1338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2467_to, ; char* from + ptr @.TypeMapEntry.2466_from; char* to + }, ; 1339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2473_to, ; char* from + ptr @.TypeMapEntry.2472_from; char* to + }, ; 1340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2471_to, ; char* from + ptr @.TypeMapEntry.2470_from; char* to + }, ; 1341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2475_to, ; char* from + ptr @.TypeMapEntry.2474_from; char* to + }, ; 1342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2477_to, ; char* from + ptr @.TypeMapEntry.2476_from; char* to + }, ; 1343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2479_to, ; char* from + ptr @.TypeMapEntry.2478_from; char* to + }, ; 1344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2481_to, ; char* from + ptr @.TypeMapEntry.2480_from; char* to + }, ; 1345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2562_to, ; char* from + ptr @.TypeMapEntry.2561_from; char* to + }, ; 1346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2560_to, ; char* from + ptr @.TypeMapEntry.2559_from; char* to + }, ; 1347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2570_to, ; char* from + ptr @.TypeMapEntry.2569_from; char* to + }, ; 1348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2564_to, ; char* from + ptr @.TypeMapEntry.2563_from; char* to + }, ; 1349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2566_to, ; char* from + ptr @.TypeMapEntry.2565_from; char* to + }, ; 1350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2568_to, ; char* from + ptr @.TypeMapEntry.2567_from; char* to + }, ; 1351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2574_to, ; char* from + ptr @.TypeMapEntry.2573_from; char* to + }, ; 1352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2572_to, ; char* from + ptr @.TypeMapEntry.2571_from; char* to + }, ; 1353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2576_to, ; char* from + ptr @.TypeMapEntry.2575_from; char* to + }, ; 1354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2578_to, ; char* from + ptr @.TypeMapEntry.2577_from; char* to + }, ; 1355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2590_to, ; char* from + ptr @.TypeMapEntry.2589_from; char* to + }, ; 1356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2590_to, ; char* from + ptr @.TypeMapEntry.2589_from; char* to + }, ; 1357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2664_to, ; char* from + ptr @.TypeMapEntry.2663_from; char* to + }, ; 1358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2626_to, ; char* from + ptr @.TypeMapEntry.2625_from; char* to + }, ; 1359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2632_to, ; char* from + ptr null; char* to + }, ; 1360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2632_to, ; char* from + ptr null; char* to + }, ; 1361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2635_to, ; char* from + ptr null; char* to + }, ; 1362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2635_to, ; char* from + ptr null; char* to + }, ; 1363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2628_to, ; char* from + ptr @.TypeMapEntry.2627_from; char* to + }, ; 1364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2638_to, ; char* from + ptr null; char* to + }, ; 1365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2638_to, ; char* from + ptr null; char* to + }, ; 1366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2630_to, ; char* from + ptr @.TypeMapEntry.2629_from; char* to + }, ; 1367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2641_to, ; char* from + ptr null; char* to + }, ; 1368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2641_to, ; char* from + ptr null; char* to + }, ; 1369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2646_to, ; char* from + ptr null; char* to + }, ; 1370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2646_to, ; char* from + ptr null; char* to + }, ; 1371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2660_to, ; char* from + ptr @.TypeMapEntry.2659_from; char* to + }, ; 1372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2651_to, ; char* from + ptr null; char* to + }, ; 1373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2651_to, ; char* from + ptr null; char* to + }, ; 1374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2654_to, ; char* from + ptr null; char* to + }, ; 1375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2654_to, ; char* from + ptr null; char* to + }, ; 1376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2657_to, ; char* from + ptr null; char* to + }, ; 1377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2657_to, ; char* from + ptr null; char* to + }, ; 1378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2662_to, ; char* from + ptr @.TypeMapEntry.2661_from; char* to + }, ; 1379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2793_to, ; char* from + ptr @.TypeMapEntry.2792_from; char* to + }, ; 1380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2791_to, ; char* from + ptr @.TypeMapEntry.2790_from; char* to + }, ; 1381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2795_to, ; char* from + ptr @.TypeMapEntry.2794_from; char* to + }, ; 1382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2826_to, ; char* from + ptr @.TypeMapEntry.2825_from; char* to + }, ; 1383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2828_to, ; char* from + ptr @.TypeMapEntry.2827_from; char* to + }, ; 1384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2878_to, ; char* from + ptr @.TypeMapEntry.2877_from; char* to + }, ; 1385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2880_to, ; char* from + ptr @.TypeMapEntry.2879_from; char* to + }, ; 1386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2882_to, ; char* from + ptr @.TypeMapEntry.2881_from; char* to + }, ; 1387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2884_to, ; char* from + ptr @.TypeMapEntry.2883_from; char* to + }, ; 1388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2886_to, ; char* from + ptr @.TypeMapEntry.2885_from; char* to + }, ; 1389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2888_to, ; char* from + ptr @.TypeMapEntry.2887_from; char* to + }, ; 1390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2888_to, ; char* from + ptr @.TypeMapEntry.2887_from; char* to + }, ; 1391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2830_to, ; char* from + ptr null; char* to + }, ; 1392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2830_to, ; char* from + ptr null; char* to + }, ; 1393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2832_to, ; char* from + ptr null; char* to + }, ; 1394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2832_to, ; char* from + ptr null; char* to + }, ; 1395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2838_to, ; char* from + ptr null; char* to + }, ; 1396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2838_to, ; char* from + ptr null; char* to + }, ; 1397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2894_to, ; char* from + ptr @.TypeMapEntry.2893_from; char* to + }, ; 1398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2894_to, ; char* from + ptr @.TypeMapEntry.2893_from; char* to + }, ; 1399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2891_to, ; char* from + ptr @.TypeMapEntry.2890_from; char* to + }, ; 1400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2891_to, ; char* from + ptr @.TypeMapEntry.2890_from; char* to + }, ; 1401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2899_to, ; char* from + ptr @.TypeMapEntry.2898_from; char* to + }, ; 1402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2897_to, ; char* from + ptr @.TypeMapEntry.2896_from; char* to + }, ; 1403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2901_to, ; char* from + ptr @.TypeMapEntry.2900_from; char* to + }, ; 1404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2903_to, ; char* from + ptr @.TypeMapEntry.2902_from; char* to + }, ; 1405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2905_to, ; char* from + ptr @.TypeMapEntry.2904_from; char* to + }, ; 1406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2905_to, ; char* from + ptr @.TypeMapEntry.2904_from; char* to + }, ; 1407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2595_to, ; char* from + ptr @.TypeMapEntry.2594_from; char* to + }, ; 1408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2593_to, ; char* from + ptr @.TypeMapEntry.2592_from; char* to + }, ; 1409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2606_to, ; char* from + ptr @.TypeMapEntry.2605_from; char* to + }, ; 1410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2597_to, ; char* from + ptr @.TypeMapEntry.2596_from; char* to + }, ; 1411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2597_to, ; char* from + ptr @.TypeMapEntry.2596_from; char* to + }, ; 1412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2600_to, ; char* from + ptr @.TypeMapEntry.2599_from; char* to + }, ; 1413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2602_to, ; char* from + ptr @.TypeMapEntry.2601_from; char* to + }, ; 1414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2604_to, ; char* from + ptr @.TypeMapEntry.2603_from; char* to + }, ; 1415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2608_to, ; char* from + ptr null; char* to + }, ; 1416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2608_to, ; char* from + ptr null; char* to + }, ; 1417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2614_to, ; char* from + ptr @.TypeMapEntry.2613_from; char* to + }, ; 1418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2616_to, ; char* from + ptr @.TypeMapEntry.2615_from; char* to + }, ; 1419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2611_to, ; char* from + ptr null; char* to + }, ; 1420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2611_to, ; char* from + ptr null; char* to + }, ; 1421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2620_to, ; char* from + ptr @.TypeMapEntry.2619_from; char* to + }, ; 1422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2618_to, ; char* from + ptr @.TypeMapEntry.2617_from; char* to + }, ; 1423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2624_to, ; char* from + ptr @.TypeMapEntry.2623_from; char* to + }, ; 1424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2622_to, ; char* from + ptr @.TypeMapEntry.2621_from; char* to + }, ; 1425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2666_to, ; char* from + ptr @.TypeMapEntry.2665_from; char* to + }, ; 1426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2674_to, ; char* from + ptr @.TypeMapEntry.2673_from; char* to + }, ; 1427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2674_to, ; char* from + ptr @.TypeMapEntry.2673_from; char* to + }, ; 1428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2668_to, ; char* from + ptr @.TypeMapEntry.2667_from; char* to + }, ; 1429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2668_to, ; char* from + ptr @.TypeMapEntry.2667_from; char* to + }, ; 1430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2671_to, ; char* from + ptr @.TypeMapEntry.2670_from; char* to + }, ; 1431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2671_to, ; char* from + ptr @.TypeMapEntry.2670_from; char* to + }, ; 1432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2679_to, ; char* from + ptr @.TypeMapEntry.2678_from; char* to + }, ; 1433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2677_to, ; char* from + ptr @.TypeMapEntry.2676_from; char* to + }, ; 1434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2681_to, ; char* from + ptr @.TypeMapEntry.2680_from; char* to + }, ; 1435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2681_to, ; char* from + ptr @.TypeMapEntry.2680_from; char* to + }, ; 1436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2690_to, ; char* from + ptr @.TypeMapEntry.2689_from; char* to + }, ; 1437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2690_to, ; char* from + ptr @.TypeMapEntry.2689_from; char* to + }, ; 1438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2684_to, ; char* from + ptr @.TypeMapEntry.2683_from; char* to + }, ; 1439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2684_to, ; char* from + ptr @.TypeMapEntry.2683_from; char* to + }, ; 1440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2687_to, ; char* from + ptr @.TypeMapEntry.2686_from; char* to + }, ; 1441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2687_to, ; char* from + ptr @.TypeMapEntry.2686_from; char* to + }, ; 1442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2693_to, ; char* from + ptr @.TypeMapEntry.2692_from; char* to + }, ; 1443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2703_to, ; char* from + ptr @.TypeMapEntry.2702_from; char* to + }, ; 1444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2703_to, ; char* from + ptr @.TypeMapEntry.2702_from; char* to + }, ; 1445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2695_to, ; char* from + ptr @.TypeMapEntry.2694_from; char* to + }, ; 1446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2695_to, ; char* from + ptr @.TypeMapEntry.2694_from; char* to + }, ; 1447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2698_to, ; char* from + ptr @.TypeMapEntry.2697_from; char* to + }, ; 1448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2698_to, ; char* from + ptr @.TypeMapEntry.2697_from; char* to + }, ; 1449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2701_to, ; char* from + ptr @.TypeMapEntry.2700_from; char* to + }, ; 1450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2712_to, ; char* from + ptr @.TypeMapEntry.2711_from; char* to + }, ; 1451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2706_to, ; char* from + ptr @.TypeMapEntry.2705_from; char* to + }, ; 1452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2706_to, ; char* from + ptr @.TypeMapEntry.2705_from; char* to + }, ; 1453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2709_to, ; char* from + ptr @.TypeMapEntry.2708_from; char* to + }, ; 1454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2709_to, ; char* from + ptr @.TypeMapEntry.2708_from; char* to + }, ; 1455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2714_to, ; char* from + ptr @.TypeMapEntry.2713_from; char* to + }, ; 1456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2714_to, ; char* from + ptr @.TypeMapEntry.2713_from; char* to + }, ; 1457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2720_to, ; char* from + ptr @.TypeMapEntry.2719_from; char* to + }, ; 1458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2720_to, ; char* from + ptr @.TypeMapEntry.2719_from; char* to + }, ; 1459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2717_to, ; char* from + ptr @.TypeMapEntry.2716_from; char* to + }, ; 1460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2717_to, ; char* from + ptr @.TypeMapEntry.2716_from; char* to + }, ; 1461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2723_to, ; char* from + ptr @.TypeMapEntry.2722_from; char* to + }, ; 1462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2729_to, ; char* from + ptr @.TypeMapEntry.2728_from; char* to + }, ; 1463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2725_to, ; char* from + ptr @.TypeMapEntry.2724_from; char* to + }, ; 1464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2727_to, ; char* from + ptr @.TypeMapEntry.2726_from; char* to + }, ; 1465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2733_to, ; char* from + ptr @.TypeMapEntry.2732_from; char* to + }, ; 1466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2731_to, ; char* from + ptr @.TypeMapEntry.2730_from; char* to + }, ; 1467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2735_to, ; char* from + ptr @.TypeMapEntry.2734_from; char* to + }, ; 1468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2737_to, ; char* from + ptr @.TypeMapEntry.2736_from; char* to + }, ; 1469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2789_to, ; char* from + ptr @.TypeMapEntry.2788_from; char* to + }, ; 1470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2739_to, ; char* from + ptr @.TypeMapEntry.2738_from; char* to + }, ; 1471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2741_to, ; char* from + ptr @.TypeMapEntry.2740_from; char* to + }, ; 1472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2743_to, ; char* from + ptr @.TypeMapEntry.2742_from; char* to + }, ; 1473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2745_to, ; char* from + ptr @.TypeMapEntry.2744_from; char* to + }, ; 1474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2749_to, ; char* from + ptr @.TypeMapEntry.2748_from; char* to + }, ; 1475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2747_to, ; char* from + ptr @.TypeMapEntry.2746_from; char* to + }, ; 1476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2751_to, ; char* from + ptr @.TypeMapEntry.2750_from; char* to + }, ; 1477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2753_to, ; char* from + ptr @.TypeMapEntry.2752_from; char* to + }, ; 1478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2757_to, ; char* from + ptr @.TypeMapEntry.2756_from; char* to + }, ; 1479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2755_to, ; char* from + ptr @.TypeMapEntry.2754_from; char* to + }, ; 1480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2759_to, ; char* from + ptr @.TypeMapEntry.2758_from; char* to + }, ; 1481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2761_to, ; char* from + ptr @.TypeMapEntry.2760_from; char* to + }, ; 1482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2763_to, ; char* from + ptr @.TypeMapEntry.2762_from; char* to + }, ; 1483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2767_to, ; char* from + ptr @.TypeMapEntry.2766_from; char* to + }, ; 1484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2765_to, ; char* from + ptr @.TypeMapEntry.2764_from; char* to + }, ; 1485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2769_to, ; char* from + ptr @.TypeMapEntry.2768_from; char* to + }, ; 1486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2771_to, ; char* from + ptr @.TypeMapEntry.2770_from; char* to + }, ; 1487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2773_to, ; char* from + ptr @.TypeMapEntry.2772_from; char* to + }, ; 1488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2775_to, ; char* from + ptr @.TypeMapEntry.2774_from; char* to + }, ; 1489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2777_to, ; char* from + ptr @.TypeMapEntry.2776_from; char* to + }, ; 1490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2779_to, ; char* from + ptr @.TypeMapEntry.2778_from; char* to + }, ; 1491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2781_to, ; char* from + ptr @.TypeMapEntry.2780_from; char* to + }, ; 1492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2783_to, ; char* from + ptr @.TypeMapEntry.2782_from; char* to + }, ; 1493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2785_to, ; char* from + ptr @.TypeMapEntry.2784_from; char* to + }, ; 1494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2787_to, ; char* from + ptr @.TypeMapEntry.2786_from; char* to + }, ; 1495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2797_to, ; char* from + ptr @.TypeMapEntry.2796_from; char* to + }, ; 1496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2804_to, ; char* from + ptr @.TypeMapEntry.2803_from; char* to + }, ; 1497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2799_to, ; char* from + ptr null; char* to + }, ; 1498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2799_to, ; char* from + ptr null; char* to + }, ; 1499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2806_to, ; char* from + ptr @.TypeMapEntry.2805_from; char* to + }, ; 1500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2811_to, ; char* from + ptr @.TypeMapEntry.2810_from; char* to + }, ; 1501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2808_to, ; char* from + ptr @.TypeMapEntry.2807_from; char* to + }, ; 1502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2808_to, ; char* from + ptr @.TypeMapEntry.2807_from; char* to + }, ; 1503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2815_to, ; char* from + ptr @.TypeMapEntry.2814_from; char* to + }, ; 1504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2813_to, ; char* from + ptr @.TypeMapEntry.2812_from; char* to + }, ; 1505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2824_to, ; char* from + ptr @.TypeMapEntry.2823_from; char* to + }, ; 1506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2817_to, ; char* from + ptr @.TypeMapEntry.2816_from; char* to + }, ; 1507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2817_to, ; char* from + ptr @.TypeMapEntry.2816_from; char* to + }, ; 1508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2820_to, ; char* from + ptr @.TypeMapEntry.2819_from; char* to + }, ; 1509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2822_to, ; char* from + ptr @.TypeMapEntry.2821_from; char* to + }, ; 1510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2843_to, ; char* from + ptr @.TypeMapEntry.2842_from; char* to + }, ; 1511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2850_to, ; char* from + ptr @.TypeMapEntry.2849_from; char* to + }, ; 1512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2845_to, ; char* from + ptr null; char* to + }, ; 1513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2845_to, ; char* from + ptr null; char* to + }, ; 1514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2852_to, ; char* from + ptr @.TypeMapEntry.2851_from; char* to + }, ; 1515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2856_to, ; char* from + ptr @.TypeMapEntry.2855_from; char* to + }, ; 1516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2854_to, ; char* from + ptr @.TypeMapEntry.2853_from; char* to + }, ; 1517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2861_to, ; char* from + ptr @.TypeMapEntry.2860_from; char* to + }, ; 1518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2861_to, ; char* from + ptr @.TypeMapEntry.2860_from; char* to + }, ; 1519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2858_to, ; char* from + ptr @.TypeMapEntry.2857_from; char* to + }, ; 1520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2858_to, ; char* from + ptr @.TypeMapEntry.2857_from; char* to + }, ; 1521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2866_to, ; char* from + ptr @.TypeMapEntry.2865_from; char* to + }, ; 1522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2864_to, ; char* from + ptr @.TypeMapEntry.2863_from; char* to + }, ; 1523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2868_to, ; char* from + ptr @.TypeMapEntry.2867_from; char* to + }, ; 1524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2870_to, ; char* from + ptr @.TypeMapEntry.2869_from; char* to + }, ; 1525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2870_to, ; char* from + ptr @.TypeMapEntry.2869_from; char* to + }, ; 1526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2873_to, ; char* from + ptr @.TypeMapEntry.2872_from; char* to + }, ; 1527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2873_to, ; char* from + ptr @.TypeMapEntry.2872_from; char* to + }, ; 1528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2876_to, ; char* from + ptr @.TypeMapEntry.2875_from; char* to + }, ; 1529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2908_to, ; char* from + ptr @.TypeMapEntry.2907_from; char* to + }, ; 1530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2910_to, ; char* from + ptr @.TypeMapEntry.2909_from; char* to + }, ; 1531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2912_to, ; char* from + ptr @.TypeMapEntry.2911_from; char* to + }, ; 1532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2914_to, ; char* from + ptr @.TypeMapEntry.2913_from; char* to + }, ; 1533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2916_to, ; char* from + ptr @.TypeMapEntry.2915_from; char* to + }, ; 1534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2918_to, ; char* from + ptr @.TypeMapEntry.2917_from; char* to + }, ; 1535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2920_to, ; char* from + ptr @.TypeMapEntry.2919_from; char* to + }, ; 1536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2922_to, ; char* from + ptr @.TypeMapEntry.2921_from; char* to + }, ; 1537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2924_to, ; char* from + ptr @.TypeMapEntry.2923_from; char* to + }, ; 1538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2926_to, ; char* from + ptr @.TypeMapEntry.2925_from; char* to + }, ; 1539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2928_to, ; char* from + ptr @.TypeMapEntry.2927_from; char* to + }, ; 1540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2932_to, ; char* from + ptr @.TypeMapEntry.2931_from; char* to + }, ; 1541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2930_to, ; char* from + ptr @.TypeMapEntry.2929_from; char* to + }, ; 1542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2934_to, ; char* from + ptr @.TypeMapEntry.2933_from; char* to + }, ; 1543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3263_to, ; char* from + ptr @.TypeMapEntry.3262_from; char* to + }, ; 1544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3265_to, ; char* from + ptr @.TypeMapEntry.3264_from; char* to + }, ; 1545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3267_to, ; char* from + ptr @.TypeMapEntry.3266_from; char* to + }, ; 1546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3272_to, ; char* from + ptr @.TypeMapEntry.3271_from; char* to + }, ; 1547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3276_to, ; char* from + ptr @.TypeMapEntry.3275_from; char* to + }, ; 1548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3274_to, ; char* from + ptr @.TypeMapEntry.3273_from; char* to + }, ; 1549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3278_to, ; char* from + ptr @.TypeMapEntry.3277_from; char* to + }, ; 1550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3278_to, ; char* from + ptr @.TypeMapEntry.3277_from; char* to + }, ; 1551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3283_to, ; char* from + ptr @.TypeMapEntry.3282_from; char* to + }, ; 1552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3281_to, ; char* from + ptr @.TypeMapEntry.3280_from; char* to + }, ; 1553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3287_to, ; char* from + ptr @.TypeMapEntry.3286_from; char* to + }, ; 1554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3285_to, ; char* from + ptr @.TypeMapEntry.3284_from; char* to + }, ; 1555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3289_to, ; char* from + ptr @.TypeMapEntry.3288_from; char* to + }, ; 1556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3291_to, ; char* from + ptr @.TypeMapEntry.3290_from; char* to + }, ; 1557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3295_to, ; char* from + ptr @.TypeMapEntry.3294_from; char* to + }, ; 1558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3293_to, ; char* from + ptr @.TypeMapEntry.3292_from; char* to + }, ; 1559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3269_to, ; char* from + ptr null; char* to + }, ; 1560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3269_to, ; char* from + ptr null; char* to + }, ; 1561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2938_to, ; char* from + ptr @.TypeMapEntry.2937_from; char* to + }, ; 1562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2936_to, ; char* from + ptr @.TypeMapEntry.2935_from; char* to + }, ; 1563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2940_to, ; char* from + ptr @.TypeMapEntry.2939_from; char* to + }, ; 1564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2944_to, ; char* from + ptr @.TypeMapEntry.2943_from; char* to + }, ; 1565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2942_to, ; char* from + ptr @.TypeMapEntry.2941_from; char* to + }, ; 1566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2948_to, ; char* from + ptr @.TypeMapEntry.2947_from; char* to + }, ; 1567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2946_to, ; char* from + ptr @.TypeMapEntry.2945_from; char* to + }, ; 1568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2952_to, ; char* from + ptr @.TypeMapEntry.2951_from; char* to + }, ; 1569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2950_to, ; char* from + ptr @.TypeMapEntry.2949_from; char* to + }, ; 1570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2954_to, ; char* from + ptr @.TypeMapEntry.2953_from; char* to + }, ; 1571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2956_to, ; char* from + ptr @.TypeMapEntry.2955_from; char* to + }, ; 1572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2960_to, ; char* from + ptr @.TypeMapEntry.2959_from; char* to + }, ; 1573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2958_to, ; char* from + ptr @.TypeMapEntry.2957_from; char* to + }, ; 1574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2964_to, ; char* from + ptr @.TypeMapEntry.2963_from; char* to + }, ; 1575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2962_to, ; char* from + ptr @.TypeMapEntry.2961_from; char* to + }, ; 1576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2972_to, ; char* from + ptr @.TypeMapEntry.2971_from; char* to + }, ; 1577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2966_to, ; char* from + ptr @.TypeMapEntry.2965_from; char* to + }, ; 1578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2968_to, ; char* from + ptr @.TypeMapEntry.2967_from; char* to + }, ; 1579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2970_to, ; char* from + ptr @.TypeMapEntry.2969_from; char* to + }, ; 1580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2980_to, ; char* from + ptr @.TypeMapEntry.2979_from; char* to + }, ; 1581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2974_to, ; char* from + ptr @.TypeMapEntry.2973_from; char* to + }, ; 1582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2976_to, ; char* from + ptr @.TypeMapEntry.2975_from; char* to + }, ; 1583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2978_to, ; char* from + ptr @.TypeMapEntry.2977_from; char* to + }, ; 1584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2984_to, ; char* from + ptr @.TypeMapEntry.2983_from; char* to + }, ; 1585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2982_to, ; char* from + ptr @.TypeMapEntry.2981_from; char* to + }, ; 1586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2986_to, ; char* from + ptr @.TypeMapEntry.2985_from; char* to + }, ; 1587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2990_to, ; char* from + ptr @.TypeMapEntry.2989_from; char* to + }, ; 1588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2988_to, ; char* from + ptr @.TypeMapEntry.2987_from; char* to + }, ; 1589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2994_to, ; char* from + ptr @.TypeMapEntry.2993_from; char* to + }, ; 1590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2992_to, ; char* from + ptr @.TypeMapEntry.2991_from; char* to + }, ; 1591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2998_to, ; char* from + ptr @.TypeMapEntry.2997_from; char* to + }, ; 1592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2996_to, ; char* from + ptr @.TypeMapEntry.2995_from; char* to + }, ; 1593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3006_to, ; char* from + ptr @.TypeMapEntry.3005_from; char* to + }, ; 1594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3000_to, ; char* from + ptr @.TypeMapEntry.2999_from; char* to + }, ; 1595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3002_to, ; char* from + ptr @.TypeMapEntry.3001_from; char* to + }, ; 1596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3004_to, ; char* from + ptr @.TypeMapEntry.3003_from; char* to + }, ; 1597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3012_to, ; char* from + ptr @.TypeMapEntry.3011_from; char* to + }, ; 1598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3008_to, ; char* from + ptr @.TypeMapEntry.3007_from; char* to + }, ; 1599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3010_to, ; char* from + ptr @.TypeMapEntry.3009_from; char* to + }, ; 1600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3016_to, ; char* from + ptr @.TypeMapEntry.3015_from; char* to + }, ; 1601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3014_to, ; char* from + ptr @.TypeMapEntry.3013_from; char* to + }, ; 1602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3020_to, ; char* from + ptr @.TypeMapEntry.3019_from; char* to + }, ; 1603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3018_to, ; char* from + ptr @.TypeMapEntry.3017_from; char* to + }, ; 1604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3024_to, ; char* from + ptr @.TypeMapEntry.3023_from; char* to + }, ; 1605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3022_to, ; char* from + ptr @.TypeMapEntry.3021_from; char* to + }, ; 1606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3028_to, ; char* from + ptr @.TypeMapEntry.3027_from; char* to + }, ; 1607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3026_to, ; char* from + ptr @.TypeMapEntry.3025_from; char* to + }, ; 1608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3048_to, ; char* from + ptr @.TypeMapEntry.3047_from; char* to + }, ; 1609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3048_to, ; char* from + ptr @.TypeMapEntry.3047_from; char* to + }, ; 1610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3030_to, ; char* from + ptr @.TypeMapEntry.3029_from; char* to + }, ; 1611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3032_to, ; char* from + ptr @.TypeMapEntry.3031_from; char* to + }, ; 1612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3034_to, ; char* from + ptr @.TypeMapEntry.3033_from; char* to + }, ; 1613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3036_to, ; char* from + ptr @.TypeMapEntry.3035_from; char* to + }, ; 1614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3038_to, ; char* from + ptr @.TypeMapEntry.3037_from; char* to + }, ; 1615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3040_to, ; char* from + ptr @.TypeMapEntry.3039_from; char* to + }, ; 1616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3042_to, ; char* from + ptr @.TypeMapEntry.3041_from; char* to + }, ; 1617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3044_to, ; char* from + ptr @.TypeMapEntry.3043_from; char* to + }, ; 1618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3046_to, ; char* from + ptr @.TypeMapEntry.3045_from; char* to + }, ; 1619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3053_to, ; char* from + ptr @.TypeMapEntry.3052_from; char* to + }, ; 1620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3051_to, ; char* from + ptr @.TypeMapEntry.3050_from; char* to + }, ; 1621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3071_to, ; char* from + ptr @.TypeMapEntry.3070_from; char* to + }, ; 1622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3071_to, ; char* from + ptr @.TypeMapEntry.3070_from; char* to + }, ; 1623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3055_to, ; char* from + ptr @.TypeMapEntry.3054_from; char* to + }, ; 1624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3057_to, ; char* from + ptr @.TypeMapEntry.3056_from; char* to + }, ; 1625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3059_to, ; char* from + ptr @.TypeMapEntry.3058_from; char* to + }, ; 1626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3061_to, ; char* from + ptr @.TypeMapEntry.3060_from; char* to + }, ; 1627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3063_to, ; char* from + ptr @.TypeMapEntry.3062_from; char* to + }, ; 1628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3065_to, ; char* from + ptr @.TypeMapEntry.3064_from; char* to + }, ; 1629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3067_to, ; char* from + ptr @.TypeMapEntry.3066_from; char* to + }, ; 1630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3069_to, ; char* from + ptr @.TypeMapEntry.3068_from; char* to + }, ; 1631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3078_to, ; char* from + ptr @.TypeMapEntry.3077_from; char* to + }, ; 1632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3076_to, ; char* from + ptr @.TypeMapEntry.3075_from; char* to + }, ; 1633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3074_to, ; char* from + ptr @.TypeMapEntry.3073_from; char* to + }, ; 1634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3082_to, ; char* from + ptr @.TypeMapEntry.3081_from; char* to + }, ; 1635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3080_to, ; char* from + ptr @.TypeMapEntry.3079_from; char* to + }, ; 1636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3084_to, ; char* from + ptr @.TypeMapEntry.3083_from; char* to + }, ; 1637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3088_to, ; char* from + ptr @.TypeMapEntry.3087_from; char* to + }, ; 1638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3086_to, ; char* from + ptr @.TypeMapEntry.3085_from; char* to + }, ; 1639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3090_to, ; char* from + ptr @.TypeMapEntry.3089_from; char* to + }, ; 1640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3094_to, ; char* from + ptr @.TypeMapEntry.3093_from; char* to + }, ; 1641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3092_to, ; char* from + ptr @.TypeMapEntry.3091_from; char* to + }, ; 1642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3100_to, ; char* from + ptr @.TypeMapEntry.3099_from; char* to + }, ; 1643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3096_to, ; char* from + ptr @.TypeMapEntry.3095_from; char* to + }, ; 1644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3098_to, ; char* from + ptr @.TypeMapEntry.3097_from; char* to + }, ; 1645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3104_to, ; char* from + ptr @.TypeMapEntry.3103_from; char* to + }, ; 1646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3102_to, ; char* from + ptr @.TypeMapEntry.3101_from; char* to + }, ; 1647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3108_to, ; char* from + ptr @.TypeMapEntry.3107_from; char* to + }, ; 1648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3106_to, ; char* from + ptr @.TypeMapEntry.3105_from; char* to + }, ; 1649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3112_to, ; char* from + ptr @.TypeMapEntry.3111_from; char* to + }, ; 1650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3110_to, ; char* from + ptr @.TypeMapEntry.3109_from; char* to + }, ; 1651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3114_to, ; char* from + ptr @.TypeMapEntry.3113_from; char* to + }, ; 1652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3114_to, ; char* from + ptr @.TypeMapEntry.3113_from; char* to + }, ; 1653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3119_to, ; char* from + ptr @.TypeMapEntry.3118_from; char* to + }, ; 1654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3117_to, ; char* from + ptr @.TypeMapEntry.3116_from; char* to + }, ; 1655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3121_to, ; char* from + ptr @.TypeMapEntry.3120_from; char* to + }, ; 1656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3121_to, ; char* from + ptr @.TypeMapEntry.3120_from; char* to + }, ; 1657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3126_to, ; char* from + ptr @.TypeMapEntry.3125_from; char* to + }, ; 1658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3124_to, ; char* from + ptr @.TypeMapEntry.3123_from; char* to + }, ; 1659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3128_to, ; char* from + ptr @.TypeMapEntry.3127_from; char* to + }, ; 1660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3134_to, ; char* from + ptr @.TypeMapEntry.3133_from; char* to + }, ; 1661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3130_to, ; char* from + ptr @.TypeMapEntry.3129_from; char* to + }, ; 1662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3132_to, ; char* from + ptr @.TypeMapEntry.3131_from; char* to + }, ; 1663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3138_to, ; char* from + ptr @.TypeMapEntry.3137_from; char* to + }, ; 1664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3136_to, ; char* from + ptr @.TypeMapEntry.3135_from; char* to + }, ; 1665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3142_to, ; char* from + ptr @.TypeMapEntry.3141_from; char* to + }, ; 1666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3140_to, ; char* from + ptr @.TypeMapEntry.3139_from; char* to + }, ; 1667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3146_to, ; char* from + ptr @.TypeMapEntry.3145_from; char* to + }, ; 1668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3144_to, ; char* from + ptr @.TypeMapEntry.3143_from; char* to + }, ; 1669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3152_to, ; char* from + ptr @.TypeMapEntry.3151_from; char* to + }, ; 1670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3148_to, ; char* from + ptr @.TypeMapEntry.3147_from; char* to + }, ; 1671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3150_to, ; char* from + ptr @.TypeMapEntry.3149_from; char* to + }, ; 1672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3156_to, ; char* from + ptr @.TypeMapEntry.3155_from; char* to + }, ; 1673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3154_to, ; char* from + ptr @.TypeMapEntry.3153_from; char* to + }, ; 1674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3160_to, ; char* from + ptr @.TypeMapEntry.3159_from; char* to + }, ; 1675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3158_to, ; char* from + ptr @.TypeMapEntry.3157_from; char* to + }, ; 1676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3164_to, ; char* from + ptr @.TypeMapEntry.3163_from; char* to + }, ; 1677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3162_to, ; char* from + ptr @.TypeMapEntry.3161_from; char* to + }, ; 1678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3168_to, ; char* from + ptr @.TypeMapEntry.3167_from; char* to + }, ; 1679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3166_to, ; char* from + ptr @.TypeMapEntry.3165_from; char* to + }, ; 1680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3174_to, ; char* from + ptr @.TypeMapEntry.3173_from; char* to + }, ; 1681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3170_to, ; char* from + ptr @.TypeMapEntry.3169_from; char* to + }, ; 1682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3172_to, ; char* from + ptr @.TypeMapEntry.3171_from; char* to + }, ; 1683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3176_to, ; char* from + ptr @.TypeMapEntry.3175_from; char* to + }, ; 1684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3176_to, ; char* from + ptr @.TypeMapEntry.3175_from; char* to + }, ; 1685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3181_to, ; char* from + ptr @.TypeMapEntry.3180_from; char* to + }, ; 1686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3179_to, ; char* from + ptr @.TypeMapEntry.3178_from; char* to + }, ; 1687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3185_to, ; char* from + ptr @.TypeMapEntry.3184_from; char* to + }, ; 1688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3183_to, ; char* from + ptr @.TypeMapEntry.3182_from; char* to + }, ; 1689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3191_to, ; char* from + ptr @.TypeMapEntry.3190_from; char* to + }, ; 1690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3187_to, ; char* from + ptr @.TypeMapEntry.3186_from; char* to + }, ; 1691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3189_to, ; char* from + ptr @.TypeMapEntry.3188_from; char* to + }, ; 1692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3197_to, ; char* from + ptr @.TypeMapEntry.3196_from; char* to + }, ; 1693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3193_to, ; char* from + ptr @.TypeMapEntry.3192_from; char* to + }, ; 1694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3195_to, ; char* from + ptr @.TypeMapEntry.3194_from; char* to + }, ; 1695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3205_to, ; char* from + ptr @.TypeMapEntry.3204_from; char* to + }, ; 1696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3199_to, ; char* from + ptr @.TypeMapEntry.3198_from; char* to + }, ; 1697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3201_to, ; char* from + ptr @.TypeMapEntry.3200_from; char* to + }, ; 1698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3203_to, ; char* from + ptr @.TypeMapEntry.3202_from; char* to + }, ; 1699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3211_to, ; char* from + ptr @.TypeMapEntry.3210_from; char* to + }, ; 1700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3207_to, ; char* from + ptr @.TypeMapEntry.3206_from; char* to + }, ; 1701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3209_to, ; char* from + ptr @.TypeMapEntry.3208_from; char* to + }, ; 1702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3217_to, ; char* from + ptr @.TypeMapEntry.3216_from; char* to + }, ; 1703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3213_to, ; char* from + ptr @.TypeMapEntry.3212_from; char* to + }, ; 1704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3215_to, ; char* from + ptr @.TypeMapEntry.3214_from; char* to + }, ; 1705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3221_to, ; char* from + ptr @.TypeMapEntry.3220_from; char* to + }, ; 1706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3219_to, ; char* from + ptr @.TypeMapEntry.3218_from; char* to + }, ; 1707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3225_to, ; char* from + ptr @.TypeMapEntry.3224_from; char* to + }, ; 1708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3223_to, ; char* from + ptr @.TypeMapEntry.3222_from; char* to + }, ; 1709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3253_to, ; char* from + ptr @.TypeMapEntry.3252_from; char* to + }, ; 1710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3249_to, ; char* from + ptr @.TypeMapEntry.3248_from; char* to + }, ; 1711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3251_to, ; char* from + ptr @.TypeMapEntry.3250_from; char* to + }, ; 1712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3257_to, ; char* from + ptr @.TypeMapEntry.3256_from; char* to + }, ; 1713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3255_to, ; char* from + ptr @.TypeMapEntry.3254_from; char* to + }, ; 1714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3261_to, ; char* from + ptr @.TypeMapEntry.3260_from; char* to + }, ; 1715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3259_to, ; char* from + ptr @.TypeMapEntry.3258_from; char* to + }, ; 1716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3227_to, ; char* from + ptr @.TypeMapEntry.3226_from; char* to + }, ; 1717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3229_to, ; char* from + ptr @.TypeMapEntry.3228_from; char* to + }, ; 1718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3231_to, ; char* from + ptr @.TypeMapEntry.3230_from; char* to + }, ; 1719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3233_to, ; char* from + ptr @.TypeMapEntry.3232_from; char* to + }, ; 1720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3235_to, ; char* from + ptr @.TypeMapEntry.3234_from; char* to + }, ; 1721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3237_to, ; char* from + ptr @.TypeMapEntry.3236_from; char* to + }, ; 1722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3239_to, ; char* from + ptr @.TypeMapEntry.3238_from; char* to + }, ; 1723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3241_to, ; char* from + ptr @.TypeMapEntry.3240_from; char* to + }, ; 1724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3243_to, ; char* from + ptr @.TypeMapEntry.3242_from; char* to + }, ; 1725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3245_to, ; char* from + ptr @.TypeMapEntry.3244_from; char* to + }, ; 1726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3247_to, ; char* from + ptr @.TypeMapEntry.3246_from; char* to + }, ; 1727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3327_to, ; char* from + ptr @.TypeMapEntry.3326_from; char* to + }, ; 1728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3321_to, ; char* from + ptr @.TypeMapEntry.3320_from; char* to + }, ; 1729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3329_to, ; char* from + ptr @.TypeMapEntry.3328_from; char* to + }, ; 1730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3331_to, ; char* from + ptr @.TypeMapEntry.3330_from; char* to + }, ; 1731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3337_to, ; char* from + ptr @.TypeMapEntry.3336_from; char* to + }, ; 1732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3345_to, ; char* from + ptr @.TypeMapEntry.3344_from; char* to + }, ; 1733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3343_to, ; char* from + ptr @.TypeMapEntry.3342_from; char* to + }, ; 1734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3347_to, ; char* from + ptr @.TypeMapEntry.3346_from; char* to + }, ; 1735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3349_to, ; char* from + ptr @.TypeMapEntry.3348_from; char* to + }, ; 1736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3351_to, ; char* from + ptr @.TypeMapEntry.3350_from; char* to + }, ; 1737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3353_to, ; char* from + ptr @.TypeMapEntry.3352_from; char* to + }, ; 1738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3353_to, ; char* from + ptr @.TypeMapEntry.3352_from; char* to + }, ; 1739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3356_to, ; char* from + ptr @.TypeMapEntry.3355_from; char* to + }, ; 1740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3358_to, ; char* from + ptr @.TypeMapEntry.3357_from; char* to + }, ; 1741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3360_to, ; char* from + ptr @.TypeMapEntry.3359_from; char* to + }, ; 1742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3360_to, ; char* from + ptr @.TypeMapEntry.3359_from; char* to + }, ; 1743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3363_to, ; char* from + ptr @.TypeMapEntry.3362_from; char* to + }, ; 1744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3365_to, ; char* from + ptr @.TypeMapEntry.3364_from; char* to + }, ; 1745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3367_to, ; char* from + ptr @.TypeMapEntry.3366_from; char* to + }, ; 1746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3369_to, ; char* from + ptr @.TypeMapEntry.3368_from; char* to + }, ; 1747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3383_to, ; char* from + ptr @.TypeMapEntry.3382_from; char* to + }, ; 1748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3371_to, ; char* from + ptr @.TypeMapEntry.3370_from; char* to + }, ; 1749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3373_to, ; char* from + ptr @.TypeMapEntry.3372_from; char* to + }, ; 1750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3375_to, ; char* from + ptr @.TypeMapEntry.3374_from; char* to + }, ; 1751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3377_to, ; char* from + ptr @.TypeMapEntry.3376_from; char* to + }, ; 1752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3379_to, ; char* from + ptr @.TypeMapEntry.3378_from; char* to + }, ; 1753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3381_to, ; char* from + ptr @.TypeMapEntry.3380_from; char* to + }, ; 1754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3385_to, ; char* from + ptr @.TypeMapEntry.3384_from; char* to + }, ; 1755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3385_to, ; char* from + ptr @.TypeMapEntry.3384_from; char* to + }, ; 1756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3394_to, ; char* from + ptr @.TypeMapEntry.3393_from; char* to + }, ; 1757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3394_to, ; char* from + ptr @.TypeMapEntry.3393_from; char* to + }, ; 1758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3388_to, ; char* from + ptr @.TypeMapEntry.3387_from; char* to + }, ; 1759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3390_to, ; char* from + ptr @.TypeMapEntry.3389_from; char* to + }, ; 1760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3392_to, ; char* from + ptr @.TypeMapEntry.3391_from; char* to + }, ; 1761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3397_to, ; char* from + ptr @.TypeMapEntry.3396_from; char* to + }, ; 1762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3397_to, ; char* from + ptr @.TypeMapEntry.3396_from; char* to + }, ; 1763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3400_to, ; char* from + ptr @.TypeMapEntry.3399_from; char* to + }, ; 1764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3400_to, ; char* from + ptr @.TypeMapEntry.3399_from; char* to + }, ; 1765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3403_to, ; char* from + ptr @.TypeMapEntry.3402_from; char* to + }, ; 1766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3405_to, ; char* from + ptr @.TypeMapEntry.3404_from; char* to + }, ; 1767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3407_to, ; char* from + ptr @.TypeMapEntry.3406_from; char* to + }, ; 1768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3409_to, ; char* from + ptr @.TypeMapEntry.3408_from; char* to + }, ; 1769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3411_to, ; char* from + ptr @.TypeMapEntry.3410_from; char* to + }, ; 1770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3421_to, ; char* from + ptr @.TypeMapEntry.3420_from; char* to + }, ; 1771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3415_to, ; char* from + ptr @.TypeMapEntry.3414_from; char* to + }, ; 1772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3413_to, ; char* from + ptr @.TypeMapEntry.3412_from; char* to + }, ; 1773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3417_to, ; char* from + ptr @.TypeMapEntry.3416_from; char* to + }, ; 1774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3419_to, ; char* from + ptr @.TypeMapEntry.3418_from; char* to + }, ; 1775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3423_to, ; char* from + ptr @.TypeMapEntry.3422_from; char* to + }, ; 1776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3425_to, ; char* from + ptr @.TypeMapEntry.3424_from; char* to + }, ; 1777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3427_to, ; char* from + ptr @.TypeMapEntry.3426_from; char* to + }, ; 1778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3429_to, ; char* from + ptr @.TypeMapEntry.3428_from; char* to + }, ; 1779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3429_to, ; char* from + ptr @.TypeMapEntry.3428_from; char* to + }, ; 1780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3440_to, ; char* from + ptr @.TypeMapEntry.3439_from; char* to + }, ; 1781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3440_to, ; char* from + ptr @.TypeMapEntry.3439_from; char* to + }, ; 1782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3432_to, ; char* from + ptr @.TypeMapEntry.3431_from; char* to + }, ; 1783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3434_to, ; char* from + ptr @.TypeMapEntry.3433_from; char* to + }, ; 1784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3436_to, ; char* from + ptr @.TypeMapEntry.3435_from; char* to + }, ; 1785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3438_to, ; char* from + ptr @.TypeMapEntry.3437_from; char* to + }, ; 1786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3443_to, ; char* from + ptr @.TypeMapEntry.3442_from; char* to + }, ; 1787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3447_to, ; char* from + ptr @.TypeMapEntry.3446_from; char* to + }, ; 1788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3445_to, ; char* from + ptr @.TypeMapEntry.3444_from; char* to + }, ; 1789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3451_to, ; char* from + ptr @.TypeMapEntry.3450_from; char* to + }, ; 1790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3451_to, ; char* from + ptr @.TypeMapEntry.3450_from; char* to + }, ; 1791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3456_to, ; char* from + ptr @.TypeMapEntry.3455_from; char* to + }, ; 1792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3454_to, ; char* from + ptr @.TypeMapEntry.3453_from; char* to + }, ; 1793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3458_to, ; char* from + ptr @.TypeMapEntry.3457_from; char* to + }, ; 1794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3460_to, ; char* from + ptr @.TypeMapEntry.3459_from; char* to + }, ; 1795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3468_to, ; char* from + ptr @.TypeMapEntry.3467_from; char* to + }, ; 1796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3468_to, ; char* from + ptr @.TypeMapEntry.3467_from; char* to + }, ; 1797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3462_to, ; char* from + ptr @.TypeMapEntry.3461_from; char* to + }, ; 1798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3464_to, ; char* from + ptr @.TypeMapEntry.3463_from; char* to + }, ; 1799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3466_to, ; char* from + ptr @.TypeMapEntry.3465_from; char* to + }, ; 1800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3471_to, ; char* from + ptr @.TypeMapEntry.3470_from; char* to + }, ; 1801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3475_to, ; char* from + ptr @.TypeMapEntry.3474_from; char* to + }, ; 1802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3473_to, ; char* from + ptr @.TypeMapEntry.3472_from; char* to + }, ; 1803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3479_to, ; char* from + ptr @.TypeMapEntry.3478_from; char* to + }, ; 1804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3477_to, ; char* from + ptr @.TypeMapEntry.3476_from; char* to + }, ; 1805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3485_to, ; char* from + ptr @.TypeMapEntry.3484_from; char* to + }, ; 1806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3481_to, ; char* from + ptr @.TypeMapEntry.3480_from; char* to + }, ; 1807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3483_to, ; char* from + ptr @.TypeMapEntry.3482_from; char* to + }, ; 1808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3487_to, ; char* from + ptr @.TypeMapEntry.3486_from; char* to + }, ; 1809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3489_to, ; char* from + ptr @.TypeMapEntry.3488_from; char* to + }, ; 1810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3493_to, ; char* from + ptr @.TypeMapEntry.3492_from; char* to + }, ; 1811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3491_to, ; char* from + ptr @.TypeMapEntry.3490_from; char* to + }, ; 1812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3511_to, ; char* from + ptr @.TypeMapEntry.3510_from; char* to + }, ; 1813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3495_to, ; char* from + ptr @.TypeMapEntry.3494_from; char* to + }, ; 1814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3497_to, ; char* from + ptr @.TypeMapEntry.3496_from; char* to + }, ; 1815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3499_to, ; char* from + ptr @.TypeMapEntry.3498_from; char* to + }, ; 1816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3501_to, ; char* from + ptr @.TypeMapEntry.3500_from; char* to + }, ; 1817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3503_to, ; char* from + ptr @.TypeMapEntry.3502_from; char* to + }, ; 1818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3505_to, ; char* from + ptr @.TypeMapEntry.3504_from; char* to + }, ; 1819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3507_to, ; char* from + ptr @.TypeMapEntry.3506_from; char* to + }, ; 1820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3509_to, ; char* from + ptr @.TypeMapEntry.3508_from; char* to + }, ; 1821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3515_to, ; char* from + ptr @.TypeMapEntry.3514_from; char* to + }, ; 1822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3513_to, ; char* from + ptr @.TypeMapEntry.3512_from; char* to + }, ; 1823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3524_to, ; char* from + ptr null; char* to + }, ; 1824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3524_to, ; char* from + ptr null; char* to + }, ; 1825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3521_to, ; char* from + ptr @.TypeMapEntry.3520_from; char* to + }, ; 1826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3521_to, ; char* from + ptr @.TypeMapEntry.3520_from; char* to + }, ; 1827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3517_to, ; char* from + ptr @.TypeMapEntry.3516_from; char* to + }, ; 1828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3519_to, ; char* from + ptr @.TypeMapEntry.3518_from; char* to + }, ; 1829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3542_to, ; char* from + ptr @.TypeMapEntry.3541_from; char* to + }, ; 1830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3536_to, ; char* from + ptr @.TypeMapEntry.3535_from; char* to + }, ; 1831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3538_to, ; char* from + ptr @.TypeMapEntry.3537_from; char* to + }, ; 1832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3540_to, ; char* from + ptr @.TypeMapEntry.3539_from; char* to + }, ; 1833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3548_to, ; char* from + ptr @.TypeMapEntry.3547_from; char* to + }, ; 1834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3548_to, ; char* from + ptr @.TypeMapEntry.3547_from; char* to + }, ; 1835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3544_to, ; char* from + ptr @.TypeMapEntry.3543_from; char* to + }, ; 1836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3546_to, ; char* from + ptr @.TypeMapEntry.3545_from; char* to + }, ; 1837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3553_to, ; char* from + ptr @.TypeMapEntry.3552_from; char* to + }, ; 1838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3551_to, ; char* from + ptr @.TypeMapEntry.3550_from; char* to + }, ; 1839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3557_to, ; char* from + ptr @.TypeMapEntry.3556_from; char* to + }, ; 1840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3555_to, ; char* from + ptr @.TypeMapEntry.3554_from; char* to + }, ; 1841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3567_to, ; char* from + ptr @.TypeMapEntry.3566_from; char* to + }, ; 1842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3559_to, ; char* from + ptr @.TypeMapEntry.3558_from; char* to + }, ; 1843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3561_to, ; char* from + ptr @.TypeMapEntry.3560_from; char* to + }, ; 1844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3565_to, ; char* from + ptr @.TypeMapEntry.3564_from; char* to + }, ; 1845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3563_to, ; char* from + ptr @.TypeMapEntry.3562_from; char* to + }, ; 1846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3571_to, ; char* from + ptr @.TypeMapEntry.3570_from; char* to + }, ; 1847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3569_to, ; char* from + ptr @.TypeMapEntry.3568_from; char* to + }, ; 1848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3575_to, ; char* from + ptr @.TypeMapEntry.3574_from; char* to + }, ; 1849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3575_to, ; char* from + ptr @.TypeMapEntry.3574_from; char* to + }, ; 1850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3573_to, ; char* from + ptr @.TypeMapEntry.3572_from; char* to + }, ; 1851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3580_to, ; char* from + ptr @.TypeMapEntry.3579_from; char* to + }, ; 1852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3580_to, ; char* from + ptr @.TypeMapEntry.3579_from; char* to + }, ; 1853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3578_to, ; char* from + ptr @.TypeMapEntry.3577_from; char* to + }, ; 1854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3583_to, ; char* from + ptr @.TypeMapEntry.3582_from; char* to + }, ; 1855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3585_to, ; char* from + ptr @.TypeMapEntry.3584_from; char* to + }, ; 1856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3589_to, ; char* from + ptr @.TypeMapEntry.3588_from; char* to + }, ; 1857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3587_to, ; char* from + ptr @.TypeMapEntry.3586_from; char* to + }, ; 1858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3603_to, ; char* from + ptr @.TypeMapEntry.3602_from; char* to + }, ; 1859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3591_to, ; char* from + ptr @.TypeMapEntry.3590_from; char* to + }, ; 1860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3593_to, ; char* from + ptr @.TypeMapEntry.3592_from; char* to + }, ; 1861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3595_to, ; char* from + ptr @.TypeMapEntry.3594_from; char* to + }, ; 1862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3597_to, ; char* from + ptr @.TypeMapEntry.3596_from; char* to + }, ; 1863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3599_to, ; char* from + ptr @.TypeMapEntry.3598_from; char* to + }, ; 1864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3601_to, ; char* from + ptr @.TypeMapEntry.3600_from; char* to + }, ; 1865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3527_to, ; char* from + ptr null; char* to + }, ; 1866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3527_to, ; char* from + ptr null; char* to + }, ; 1867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3605_to, ; char* from + ptr @.TypeMapEntry.3604_from; char* to + }, ; 1868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3607_to, ; char* from + ptr @.TypeMapEntry.3606_from; char* to + }, ; 1869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3611_to, ; char* from + ptr @.TypeMapEntry.3610_from; char* to + }, ; 1870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3611_to, ; char* from + ptr @.TypeMapEntry.3610_from; char* to + }, ; 1871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3609_to, ; char* from + ptr @.TypeMapEntry.3608_from; char* to + }, ; 1872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3614_to, ; char* from + ptr @.TypeMapEntry.3613_from; char* to + }, ; 1873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3616_to, ; char* from + ptr @.TypeMapEntry.3615_from; char* to + }, ; 1874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3618_to, ; char* from + ptr @.TypeMapEntry.3617_from; char* to + }, ; 1875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3620_to, ; char* from + ptr @.TypeMapEntry.3619_from; char* to + }, ; 1876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3530_to, ; char* from + ptr null; char* to + }, ; 1877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3530_to, ; char* from + ptr null; char* to + }, ; 1878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3632_to, ; char* from + ptr @.TypeMapEntry.3631_from; char* to + }, ; 1879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3624_to, ; char* from + ptr @.TypeMapEntry.3623_from; char* to + }, ; 1880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3626_to, ; char* from + ptr @.TypeMapEntry.3625_from; char* to + }, ; 1881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3628_to, ; char* from + ptr @.TypeMapEntry.3627_from; char* to + }, ; 1882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3630_to, ; char* from + ptr @.TypeMapEntry.3629_from; char* to + }, ; 1883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3636_to, ; char* from + ptr @.TypeMapEntry.3635_from; char* to + }, ; 1884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3636_to, ; char* from + ptr @.TypeMapEntry.3635_from; char* to + }, ; 1885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3634_to, ; char* from + ptr @.TypeMapEntry.3633_from; char* to + }, ; 1886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3641_to, ; char* from + ptr @.TypeMapEntry.3640_from; char* to + }, ; 1887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3641_to, ; char* from + ptr @.TypeMapEntry.3640_from; char* to + }, ; 1888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3639_to, ; char* from + ptr @.TypeMapEntry.3638_from; char* to + }, ; 1889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3644_to, ; char* from + ptr @.TypeMapEntry.3643_from; char* to + }, ; 1890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3644_to, ; char* from + ptr @.TypeMapEntry.3643_from; char* to + }, ; 1891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3647_to, ; char* from + ptr @.TypeMapEntry.3646_from; char* to + }, ; 1892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3647_to, ; char* from + ptr @.TypeMapEntry.3646_from; char* to + }, ; 1893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3650_to, ; char* from + ptr @.TypeMapEntry.3649_from; char* to + }, ; 1894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3650_to, ; char* from + ptr @.TypeMapEntry.3649_from; char* to + }, ; 1895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3533_to, ; char* from + ptr null; char* to + }, ; 1896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3533_to, ; char* from + ptr null; char* to + }, ; 1897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3661_to, ; char* from + ptr @.TypeMapEntry.3660_from; char* to + }, ; 1898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3655_to, ; char* from + ptr @.TypeMapEntry.3654_from; char* to + }, ; 1899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3657_to, ; char* from + ptr @.TypeMapEntry.3656_from; char* to + }, ; 1900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3659_to, ; char* from + ptr @.TypeMapEntry.3658_from; char* to + }, ; 1901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3663_to, ; char* from + ptr @.TypeMapEntry.3662_from; char* to + }, ; 1902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3669_to, ; char* from + ptr @.TypeMapEntry.3668_from; char* to + }, ; 1903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3665_to, ; char* from + ptr @.TypeMapEntry.3664_from; char* to + }, ; 1904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3667_to, ; char* from + ptr @.TypeMapEntry.3666_from; char* to + }, ; 1905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3671_to, ; char* from + ptr @.TypeMapEntry.3670_from; char* to + }, ; 1906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3673_to, ; char* from + ptr @.TypeMapEntry.3672_from; char* to + }, ; 1907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3673_to, ; char* from + ptr @.TypeMapEntry.3672_from; char* to + }, ; 1908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3678_to, ; char* from + ptr @.TypeMapEntry.3677_from; char* to + }, ; 1909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3678_to, ; char* from + ptr @.TypeMapEntry.3677_from; char* to + }, ; 1910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3676_to, ; char* from + ptr @.TypeMapEntry.3675_from; char* to + }, ; 1911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3681_to, ; char* from + ptr @.TypeMapEntry.3680_from; char* to + }, ; 1912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3683_to, ; char* from + ptr @.TypeMapEntry.3682_from; char* to + }, ; 1913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3687_to, ; char* from + ptr @.TypeMapEntry.3686_from; char* to + }, ; 1914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3685_to, ; char* from + ptr @.TypeMapEntry.3684_from; char* to + }, ; 1915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3689_to, ; char* from + ptr @.TypeMapEntry.3688_from; char* to + }, ; 1916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3691_to, ; char* from + ptr @.TypeMapEntry.3690_from; char* to + }, ; 1917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3693_to, ; char* from + ptr @.TypeMapEntry.3692_from; char* to + }, ; 1918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3701_to, ; char* from + ptr null; char* to + }, ; 1919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3701_to, ; char* from + ptr null; char* to + }, ; 1920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3695_to, ; char* from + ptr @.TypeMapEntry.3694_from; char* to + }, ; 1921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3697_to, ; char* from + ptr @.TypeMapEntry.3696_from; char* to + }, ; 1922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3699_to, ; char* from + ptr @.TypeMapEntry.3698_from; char* to + }, ; 1923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3710_to, ; char* from + ptr @.TypeMapEntry.3709_from; char* to + }, ; 1924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3712_to, ; char* from + ptr @.TypeMapEntry.3711_from; char* to + }, ; 1925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3716_to, ; char* from + ptr @.TypeMapEntry.3715_from; char* to + }, ; 1926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3714_to, ; char* from + ptr @.TypeMapEntry.3713_from; char* to + }, ; 1927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3718_to, ; char* from + ptr @.TypeMapEntry.3717_from; char* to + }, ; 1928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3724_to, ; char* from + ptr @.TypeMapEntry.3723_from; char* to + }, ; 1929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3720_to, ; char* from + ptr @.TypeMapEntry.3719_from; char* to + }, ; 1930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3722_to, ; char* from + ptr @.TypeMapEntry.3721_from; char* to + }, ; 1931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3726_to, ; char* from + ptr @.TypeMapEntry.3725_from; char* to + }, ; 1932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3732_to, ; char* from + ptr @.TypeMapEntry.3731_from; char* to + }, ; 1933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3728_to, ; char* from + ptr @.TypeMapEntry.3727_from; char* to + }, ; 1934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3730_to, ; char* from + ptr @.TypeMapEntry.3729_from; char* to + }, ; 1935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3734_to, ; char* from + ptr @.TypeMapEntry.3733_from; char* to + }, ; 1936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3704_to, ; char* from + ptr null; char* to + }, ; 1937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3704_to, ; char* from + ptr null; char* to + }, ; 1938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3736_to, ; char* from + ptr @.TypeMapEntry.3735_from; char* to + }, ; 1939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3738_to, ; char* from + ptr @.TypeMapEntry.3737_from; char* to + }, ; 1940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3740_to, ; char* from + ptr @.TypeMapEntry.3739_from; char* to + }, ; 1941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3744_to, ; char* from + ptr @.TypeMapEntry.3743_from; char* to + }, ; 1942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3744_to, ; char* from + ptr @.TypeMapEntry.3743_from; char* to + }, ; 1943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3742_to, ; char* from + ptr @.TypeMapEntry.3741_from; char* to + }, ; 1944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3753_to, ; char* from + ptr @.TypeMapEntry.3752_from; char* to + }, ; 1945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3747_to, ; char* from + ptr @.TypeMapEntry.3746_from; char* to + }, ; 1946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3749_to, ; char* from + ptr @.TypeMapEntry.3748_from; char* to + }, ; 1947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3751_to, ; char* from + ptr @.TypeMapEntry.3750_from; char* to + }, ; 1948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3755_to, ; char* from + ptr @.TypeMapEntry.3754_from; char* to + }, ; 1949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3707_to, ; char* from + ptr null; char* to + }, ; 1950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3707_to, ; char* from + ptr null; char* to + }, ; 1951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3757_to, ; char* from + ptr @.TypeMapEntry.3756_from; char* to + }, ; 1952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3759_to, ; char* from + ptr @.TypeMapEntry.3758_from; char* to + }, ; 1953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3767_to, ; char* from + ptr @.TypeMapEntry.3766_from; char* to + }, ; 1954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3767_to, ; char* from + ptr @.TypeMapEntry.3766_from; char* to + }, ; 1955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3761_to, ; char* from + ptr @.TypeMapEntry.3760_from; char* to + }, ; 1956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3761_to, ; char* from + ptr @.TypeMapEntry.3760_from; char* to + }, ; 1957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3764_to, ; char* from + ptr @.TypeMapEntry.3763_from; char* to + }, ; 1958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3764_to, ; char* from + ptr @.TypeMapEntry.3763_from; char* to + }, ; 1959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3770_to, ; char* from + ptr @.TypeMapEntry.3769_from; char* to + }, ; 1960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3778_to, ; char* from + ptr @.TypeMapEntry.3777_from; char* to + }, ; 1961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3772_to, ; char* from + ptr @.TypeMapEntry.3771_from; char* to + }, ; 1962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3774_to, ; char* from + ptr @.TypeMapEntry.3773_from; char* to + }, ; 1963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3776_to, ; char* from + ptr @.TypeMapEntry.3775_from; char* to + }, ; 1964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3784_to, ; char* from + ptr @.TypeMapEntry.3783_from; char* to + }, ; 1965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3780_to, ; char* from + ptr @.TypeMapEntry.3779_from; char* to + }, ; 1966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3782_to, ; char* from + ptr @.TypeMapEntry.3781_from; char* to + }, ; 1967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3791_to, ; char* from + ptr @.TypeMapEntry.3790_from; char* to + }, ; 1968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3786_to, ; char* from + ptr null; char* to + }, ; 1969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3786_to, ; char* from + ptr null; char* to + }, ; 1970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3793_to, ; char* from + ptr @.TypeMapEntry.3792_from; char* to + }, ; 1971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3797_to, ; char* from + ptr @.TypeMapEntry.3796_from; char* to + }, ; 1972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3804_to, ; char* from + ptr @.TypeMapEntry.3803_from; char* to + }, ; 1973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3799_to, ; char* from + ptr null; char* to + }, ; 1974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3799_to, ; char* from + ptr null; char* to + }, ; 1975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3817_to, ; char* from + ptr @.TypeMapEntry.3816_from; char* to + }, ; 1976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3806_to, ; char* from + ptr @.TypeMapEntry.3805_from; char* to + }, ; 1977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3808_to, ; char* from + ptr null; char* to + }, ; 1978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3808_to, ; char* from + ptr null; char* to + }, ; 1979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3813_to, ; char* from + ptr @.TypeMapEntry.3812_from; char* to + }, ; 1980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3815_to, ; char* from + ptr @.TypeMapEntry.3814_from; char* to + }, ; 1981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3821_to, ; char* from + ptr @.TypeMapEntry.3820_from; char* to + }, ; 1982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3819_to, ; char* from + ptr @.TypeMapEntry.3818_from; char* to + }, ; 1983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3825_to, ; char* from + ptr @.TypeMapEntry.3824_from; char* to + }, ; 1984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3823_to, ; char* from + ptr @.TypeMapEntry.3822_from; char* to + }, ; 1985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3827_to, ; char* from + ptr @.TypeMapEntry.3826_from; char* to + }, ; 1986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3829_to, ; char* from + ptr @.TypeMapEntry.3828_from; char* to + }, ; 1987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3833_to, ; char* from + ptr @.TypeMapEntry.3832_from; char* to + }, ; 1988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3831_to, ; char* from + ptr @.TypeMapEntry.3830_from; char* to + }, ; 1989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3840_to, ; char* from + ptr @.TypeMapEntry.3839_from; char* to + }, ; 1990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3835_to, ; char* from + ptr @.TypeMapEntry.3834_from; char* to + }, ; 1991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3837_to, ; char* from + ptr @.TypeMapEntry.3836_from; char* to + }, ; 1992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3837_to, ; char* from + ptr @.TypeMapEntry.3836_from; char* to + }, ; 1993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3845_to, ; char* from + ptr @.TypeMapEntry.3844_from; char* to + }, ; 1994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3842_to, ; char* from + ptr @.TypeMapEntry.3841_from; char* to + }, ; 1995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3842_to, ; char* from + ptr @.TypeMapEntry.3841_from; char* to + }, ; 1996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3847_to, ; char* from + ptr @.TypeMapEntry.3846_from; char* to + }, ; 1997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3854_to, ; char* from + ptr @.TypeMapEntry.3853_from; char* to + }, ; 1998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3849_to, ; char* from + ptr @.TypeMapEntry.3848_from; char* to + }, ; 1999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3851_to, ; char* from + ptr @.TypeMapEntry.3850_from; char* to + }, ; 2000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3851_to, ; char* from + ptr @.TypeMapEntry.3850_from; char* to + }, ; 2001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3856_to, ; char* from + ptr @.TypeMapEntry.3855_from; char* to + }, ; 2002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3868_to, ; char* from + ptr @.TypeMapEntry.3867_from; char* to + }, ; 2003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3858_to, ; char* from + ptr null; char* to + }, ; 2004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3858_to, ; char* from + ptr null; char* to + }, ; 2005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3863_to, ; char* from + ptr null; char* to + }, ; 2006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3863_to, ; char* from + ptr null; char* to + }, ; 2007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3880_to, ; char* from + ptr @.TypeMapEntry.3879_from; char* to + }, ; 2008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3870_to, ; char* from + ptr null; char* to + }, ; 2009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3870_to, ; char* from + ptr null; char* to + }, ; 2010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3882_to, ; char* from + ptr @.TypeMapEntry.3881_from; char* to + }, ; 2011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3884_to, ; char* from + ptr @.TypeMapEntry.3883_from; char* to + }, ; 2012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3888_to, ; char* from + ptr @.TypeMapEntry.3887_from; char* to + }, ; 2013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3886_to, ; char* from + ptr @.TypeMapEntry.3885_from; char* to + }, ; 2014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3875_to, ; char* from + ptr null; char* to + }, ; 2015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3875_to, ; char* from + ptr null; char* to + }, ; 2016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3894_to, ; char* from + ptr @.TypeMapEntry.3893_from; char* to + }, ; 2017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3894_to, ; char* from + ptr @.TypeMapEntry.3893_from; char* to + }, ; 2018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3795_to, ; char* from + ptr @.TypeMapEntry.3794_from; char* to + }, ; 2019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3892_to, ; char* from + ptr @.TypeMapEntry.3891_from; char* to + }, ; 2020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3890_to, ; char* from + ptr @.TypeMapEntry.3889_from; char* to + }, ; 2021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3905_to, ; char* from + ptr @.TypeMapEntry.3904_from; char* to + }, ; 2022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3903_to, ; char* from + ptr @.TypeMapEntry.3902_from; char* to + }, ; 2023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3907_to, ; char* from + ptr @.TypeMapEntry.3906_from; char* to + }, ; 2024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3911_to, ; char* from + ptr @.TypeMapEntry.3910_from; char* to + }, ; 2025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3909_to, ; char* from + ptr @.TypeMapEntry.3908_from; char* to + }, ; 2026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3913_to, ; char* from + ptr @.TypeMapEntry.3912_from; char* to + }, ; 2027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3915_to, ; char* from + ptr @.TypeMapEntry.3914_from; char* to + }, ; 2028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3915_to, ; char* from + ptr @.TypeMapEntry.3914_from; char* to + }, ; 2029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3918_to, ; char* from + ptr @.TypeMapEntry.3917_from; char* to + }, ; 2030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3922_to, ; char* from + ptr @.TypeMapEntry.3921_from; char* to + }, ; 2031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3920_to, ; char* from + ptr @.TypeMapEntry.3919_from; char* to + }, ; 2032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3926_to, ; char* from + ptr @.TypeMapEntry.3925_from; char* to + }, ; 2033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3924_to, ; char* from + ptr @.TypeMapEntry.3923_from; char* to + }, ; 2034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3954_to, ; char* from + ptr @.TypeMapEntry.3953_from; char* to + }, ; 2035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3928_to, ; char* from + ptr @.TypeMapEntry.3927_from; char* to + }, ; 2036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3928_to, ; char* from + ptr @.TypeMapEntry.3927_from; char* to + }, ; 2037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3931_to, ; char* from + ptr @.TypeMapEntry.3930_from; char* to + }, ; 2038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3931_to, ; char* from + ptr @.TypeMapEntry.3930_from; char* to + }, ; 2039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3934_to, ; char* from + ptr null; char* to + }, ; 2040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3934_to, ; char* from + ptr null; char* to + }, ; 2041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3939_to, ; char* from + ptr null; char* to + }, ; 2042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3939_to, ; char* from + ptr null; char* to + }, ; 2043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3944_to, ; char* from + ptr null; char* to + }, ; 2044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3944_to, ; char* from + ptr null; char* to + }, ; 2045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3949_to, ; char* from + ptr null; char* to + }, ; 2046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3949_to, ; char* from + ptr null; char* to + }, ; 2047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3961_to, ; char* from + ptr @.TypeMapEntry.3960_from; char* to + }, ; 2048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3956_to, ; char* from + ptr @.TypeMapEntry.3955_from; char* to + }, ; 2049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3958_to, ; char* from + ptr null; char* to + }, ; 2050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3958_to, ; char* from + ptr null; char* to + }, ; 2051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4168_to, ; char* from + ptr null; char* to + }, ; 2052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4168_to, ; char* from + ptr null; char* to + }, ; 2053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4171_to, ; char* from + ptr null; char* to + }, ; 2054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4171_to, ; char* from + ptr null; char* to + }, ; 2055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3965_to, ; char* from + ptr @.TypeMapEntry.3964_from; char* to + }, ; 2056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3963_to, ; char* from + ptr @.TypeMapEntry.3962_from; char* to + }, ; 2057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3969_to, ; char* from + ptr @.TypeMapEntry.3968_from; char* to + }, ; 2058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3967_to, ; char* from + ptr @.TypeMapEntry.3966_from; char* to + }, ; 2059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3971_to, ; char* from + ptr @.TypeMapEntry.3970_from; char* to + }, ; 2060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3975_to, ; char* from + ptr @.TypeMapEntry.3974_from; char* to + }, ; 2061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3973_to, ; char* from + ptr @.TypeMapEntry.3972_from; char* to + }, ; 2062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3977_to, ; char* from + ptr @.TypeMapEntry.3976_from; char* to + }, ; 2063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3991_to, ; char* from + ptr @.TypeMapEntry.3990_from; char* to + }, ; 2064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3979_to, ; char* from + ptr @.TypeMapEntry.3978_from; char* to + }, ; 2065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3989_to, ; char* from + ptr @.TypeMapEntry.3988_from; char* to + }, ; 2066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3981_to, ; char* from + ptr null; char* to + }, ; 2067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3981_to, ; char* from + ptr null; char* to + }, ; 2068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3986_to, ; char* from + ptr null; char* to + }, ; 2069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3986_to, ; char* from + ptr null; char* to + }, ; 2070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3993_to, ; char* from + ptr @.TypeMapEntry.3992_from; char* to + }, ; 2071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4174_to, ; char* from + ptr null; char* to + }, ; 2072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4174_to, ; char* from + ptr null; char* to + }, ; 2073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4177_to, ; char* from + ptr null; char* to + }, ; 2074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4177_to, ; char* from + ptr null; char* to + }, ; 2075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4180_to, ; char* from + ptr null; char* to + }, ; 2076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4180_to, ; char* from + ptr null; char* to + }, ; 2077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3995_to, ; char* from + ptr @.TypeMapEntry.3994_from; char* to + }, ; 2078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4017_to, ; char* from + ptr @.TypeMapEntry.4016_from; char* to + }, ; 2079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3997_to, ; char* from + ptr @.TypeMapEntry.3996_from; char* to + }, ; 2080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4012_to, ; char* from + ptr @.TypeMapEntry.4011_from; char* to + }, ; 2081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3999_to, ; char* from + ptr null; char* to + }, ; 2082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3999_to, ; char* from + ptr null; char* to + }, ; 2083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4004_to, ; char* from + ptr null; char* to + }, ; 2084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4004_to, ; char* from + ptr null; char* to + }, ; 2085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4009_to, ; char* from + ptr null; char* to + }, ; 2086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4009_to, ; char* from + ptr null; char* to + }, ; 2087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4014_to, ; char* from + ptr @.TypeMapEntry.4013_from; char* to + }, ; 2088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4014_to, ; char* from + ptr @.TypeMapEntry.4013_from; char* to + }, ; 2089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4133_to, ; char* from + ptr @.TypeMapEntry.4132_from; char* to + }, ; 2090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4135_to, ; char* from + ptr @.TypeMapEntry.4134_from; char* to + }, ; 2091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4137_to, ; char* from + ptr @.TypeMapEntry.4136_from; char* to + }, ; 2092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4141_to, ; char* from + ptr @.TypeMapEntry.4140_from; char* to + }, ; 2093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4141_to, ; char* from + ptr @.TypeMapEntry.4140_from; char* to + }, ; 2094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4139_to, ; char* from + ptr @.TypeMapEntry.4138_from; char* to + }, ; 2095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4160_to, ; char* from + ptr @.TypeMapEntry.4159_from; char* to + }, ; 2096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4156_to, ; char* from + ptr @.TypeMapEntry.4155_from; char* to + }, ; 2097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4158_to, ; char* from + ptr @.TypeMapEntry.4157_from; char* to + }, ; 2098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4162_to, ; char* from + ptr @.TypeMapEntry.4161_from; char* to + }, ; 2099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4166_to, ; char* from + ptr @.TypeMapEntry.4165_from; char* to + }, ; 2100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4164_to, ; char* from + ptr @.TypeMapEntry.4163_from; char* to + }, ; 2101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4197_to, ; char* from + ptr @.TypeMapEntry.4196_from; char* to + }, ; 2102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4197_to, ; char* from + ptr @.TypeMapEntry.4196_from; char* to + }, ; 2103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4194_to, ; char* from + ptr @.TypeMapEntry.4193_from; char* to + }, ; 2104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4194_to, ; char* from + ptr @.TypeMapEntry.4193_from; char* to + }, ; 2105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4207_to, ; char* from + ptr @.TypeMapEntry.4206_from; char* to + }, ; 2106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4200_to, ; char* from + ptr @.TypeMapEntry.4199_from; char* to + }, ; 2107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4202_to, ; char* from + ptr null; char* to + }, ; 2108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4202_to, ; char* from + ptr null; char* to + }, ; 2109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4216_to, ; char* from + ptr @.TypeMapEntry.4215_from; char* to + }, ; 2110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4209_to, ; char* from + ptr @.TypeMapEntry.4208_from; char* to + }, ; 2111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4211_to, ; char* from + ptr null; char* to + }, ; 2112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4211_to, ; char* from + ptr null; char* to + }, ; 2113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4223_to, ; char* from + ptr @.TypeMapEntry.4222_from; char* to + }, ; 2114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4218_to, ; char* from + ptr null; char* to + }, ; 2115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4218_to, ; char* from + ptr null; char* to + }, ; 2116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4230_to, ; char* from + ptr @.TypeMapEntry.4229_from; char* to + }, ; 2117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4225_to, ; char* from + ptr null; char* to + }, ; 2118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4225_to, ; char* from + ptr null; char* to + }, ; 2119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4232_to, ; char* from + ptr @.TypeMapEntry.4231_from; char* to + }, ; 2120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4243_to, ; char* from + ptr @.TypeMapEntry.4242_from; char* to + }, ; 2121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4234_to, ; char* from + ptr null; char* to + }, ; 2122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4234_to, ; char* from + ptr null; char* to + }, ; 2123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4239_to, ; char* from + ptr @.TypeMapEntry.4238_from; char* to + }, ; 2124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4241_to, ; char* from + ptr @.TypeMapEntry.4240_from; char* to + }, ; 2125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4255_to, ; char* from + ptr @.TypeMapEntry.4254_from; char* to + }, ; 2126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4245_to, ; char* from + ptr @.TypeMapEntry.4244_from; char* to + }, ; 2127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4247_to, ; char* from + ptr @.TypeMapEntry.4246_from; char* to + }, ; 2128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4249_to, ; char* from + ptr @.TypeMapEntry.4248_from; char* to + }, ; 2129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4251_to, ; char* from + ptr @.TypeMapEntry.4250_from; char* to + }, ; 2130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4253_to, ; char* from + ptr @.TypeMapEntry.4252_from; char* to + }, ; 2131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4257_to, ; char* from + ptr @.TypeMapEntry.4256_from; char* to + }, ; 2132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4296_to, ; char* from + ptr @.TypeMapEntry.4295_from; char* to + }, ; 2133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4259_to, ; char* from + ptr @.TypeMapEntry.4258_from; char* to + }, ; 2134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4261_to, ; char* from + ptr @.TypeMapEntry.4260_from; char* to + }, ; 2135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4261_to, ; char* from + ptr @.TypeMapEntry.4260_from; char* to + }, ; 2136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4264_to, ; char* from + ptr @.TypeMapEntry.4263_from; char* to + }, ; 2137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4266_to, ; char* from + ptr @.TypeMapEntry.4265_from; char* to + }, ; 2138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4270_to, ; char* from + ptr @.TypeMapEntry.4269_from; char* to + }, ; 2139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4268_to, ; char* from + ptr @.TypeMapEntry.4267_from; char* to + }, ; 2140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4282_to, ; char* from + ptr @.TypeMapEntry.4281_from; char* to + }, ; 2141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4284_to, ; char* from + ptr @.TypeMapEntry.4283_from; char* to + }, ; 2142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4286_to, ; char* from + ptr @.TypeMapEntry.4285_from; char* to + }, ; 2143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4288_to, ; char* from + ptr @.TypeMapEntry.4287_from; char* to + }, ; 2144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4272_to, ; char* from + ptr null; char* to + }, ; 2145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4272_to, ; char* from + ptr null; char* to + }, ; 2146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4277_to, ; char* from + ptr null; char* to + }, ; 2147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4277_to, ; char* from + ptr null; char* to + }, ; 2148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4290_to, ; char* from + ptr @.TypeMapEntry.4289_from; char* to + }, ; 2149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4292_to, ; char* from + ptr @.TypeMapEntry.4291_from; char* to + }, ; 2150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4294_to, ; char* from + ptr @.TypeMapEntry.4293_from; char* to + }, ; 2151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4310_to, ; char* from + ptr @.TypeMapEntry.4309_from; char* to + }, ; 2152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4298_to, ; char* from + ptr @.TypeMapEntry.4297_from; char* to + }, ; 2153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4300_to, ; char* from + ptr @.TypeMapEntry.4299_from; char* to + }, ; 2154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4302_to, ; char* from + ptr @.TypeMapEntry.4301_from; char* to + }, ; 2155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4304_to, ; char* from + ptr @.TypeMapEntry.4303_from; char* to + }, ; 2156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4308_to, ; char* from + ptr @.TypeMapEntry.4307_from; char* to + }, ; 2157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4306_to, ; char* from + ptr @.TypeMapEntry.4305_from; char* to + }, ; 2158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4312_to, ; char* from + ptr @.TypeMapEntry.4311_from; char* to + }, ; 2159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4314_to, ; char* from + ptr @.TypeMapEntry.4313_from; char* to + }, ; 2160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4321_to, ; char* from + ptr @.TypeMapEntry.4320_from; char* to + }, ; 2161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4316_to, ; char* from + ptr @.TypeMapEntry.4315_from; char* to + }, ; 2162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4318_to, ; char* from + ptr @.TypeMapEntry.4317_from; char* to + }, ; 2163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4318_to, ; char* from + ptr @.TypeMapEntry.4317_from; char* to + }, ; 2164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4323_to, ; char* from + ptr @.TypeMapEntry.4322_from; char* to + }, ; 2165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4325_to, ; char* from + ptr @.TypeMapEntry.4324_from; char* to + }, ; 2166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4327_to, ; char* from + ptr @.TypeMapEntry.4326_from; char* to + }, ; 2167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4327_to, ; char* from + ptr @.TypeMapEntry.4326_from; char* to + }, ; 2168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4330_to, ; char* from + ptr @.TypeMapEntry.4329_from; char* to + }, ; 2169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4334_to, ; char* from + ptr @.TypeMapEntry.4333_from; char* to + }, ; 2170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4332_to, ; char* from + ptr @.TypeMapEntry.4331_from; char* to + }, ; 2171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4382_to, ; char* from + ptr @.TypeMapEntry.4381_from; char* to + }, ; 2172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4336_to, ; char* from + ptr @.TypeMapEntry.4335_from; char* to + }, ; 2173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4338_to, ; char* from + ptr @.TypeMapEntry.4337_from; char* to + }, ; 2174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4340_to, ; char* from + ptr null; char* to + }, ; 2175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4340_to, ; char* from + ptr null; char* to + }, ; 2176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4366_to, ; char* from + ptr @.TypeMapEntry.4365_from; char* to + }, ; 2177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4368_to, ; char* from + ptr @.TypeMapEntry.4367_from; char* to + }, ; 2178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4370_to, ; char* from + ptr @.TypeMapEntry.4369_from; char* to + }, ; 2179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4372_to, ; char* from + ptr @.TypeMapEntry.4371_from; char* to + }, ; 2180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4374_to, ; char* from + ptr @.TypeMapEntry.4373_from; char* to + }, ; 2181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4343_to, ; char* from + ptr null; char* to + }, ; 2182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4343_to, ; char* from + ptr null; char* to + }, ; 2183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4348_to, ; char* from + ptr null; char* to + }, ; 2184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4348_to, ; char* from + ptr null; char* to + }, ; 2185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4353_to, ; char* from + ptr null; char* to + }, ; 2186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4353_to, ; char* from + ptr null; char* to + }, ; 2187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4358_to, ; char* from + ptr null; char* to + }, ; 2188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4358_to, ; char* from + ptr null; char* to + }, ; 2189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4376_to, ; char* from + ptr @.TypeMapEntry.4375_from; char* to + }, ; 2190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4378_to, ; char* from + ptr @.TypeMapEntry.4377_from; char* to + }, ; 2191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4363_to, ; char* from + ptr null; char* to + }, ; 2192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4363_to, ; char* from + ptr null; char* to + }, ; 2193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4380_to, ; char* from + ptr @.TypeMapEntry.4379_from; char* to + }, ; 2194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4384_to, ; char* from + ptr @.TypeMapEntry.4383_from; char* to + }, ; 2195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4386_to, ; char* from + ptr @.TypeMapEntry.4385_from; char* to + }, ; 2196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4185_to, ; char* from + ptr null; char* to + }, ; 2197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4185_to, ; char* from + ptr null; char* to + }, ; 2198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4392_to, ; char* from + ptr @.TypeMapEntry.4391_from; char* to + }, ; 2199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4388_to, ; char* from + ptr @.TypeMapEntry.4387_from; char* to + }, ; 2200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4390_to, ; char* from + ptr @.TypeMapEntry.4389_from; char* to + }, ; 2201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4396_to, ; char* from + ptr @.TypeMapEntry.4395_from; char* to + }, ; 2202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4394_to, ; char* from + ptr @.TypeMapEntry.4393_from; char* to + }, ; 2203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4400_to, ; char* from + ptr @.TypeMapEntry.4399_from; char* to + }, ; 2204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4398_to, ; char* from + ptr @.TypeMapEntry.4397_from; char* to + }, ; 2205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4404_to, ; char* from + ptr @.TypeMapEntry.4403_from; char* to + }, ; 2206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4402_to, ; char* from + ptr @.TypeMapEntry.4401_from; char* to + }, ; 2207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4406_to, ; char* from + ptr @.TypeMapEntry.4405_from; char* to + }, ; 2208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4406_to, ; char* from + ptr @.TypeMapEntry.4405_from; char* to + }, ; 2209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4411_to, ; char* from + ptr @.TypeMapEntry.4410_from; char* to + }, ; 2210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4409_to, ; char* from + ptr @.TypeMapEntry.4408_from; char* to + }, ; 2211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4415_to, ; char* from + ptr @.TypeMapEntry.4414_from; char* to + }, ; 2212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4413_to, ; char* from + ptr @.TypeMapEntry.4412_from; char* to + }, ; 2213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4436_to, ; char* from + ptr @.TypeMapEntry.4435_from; char* to + }, ; 2214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4417_to, ; char* from + ptr null; char* to + }, ; 2215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4417_to, ; char* from + ptr null; char* to + }, ; 2216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4420_to, ; char* from + ptr null; char* to + }, ; 2217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4420_to, ; char* from + ptr null; char* to + }, ; 2218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4426_to, ; char* from + ptr @.TypeMapEntry.4425_from; char* to + }, ; 2219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4428_to, ; char* from + ptr @.TypeMapEntry.4427_from; char* to + }, ; 2220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4430_to, ; char* from + ptr @.TypeMapEntry.4429_from; char* to + }, ; 2221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4423_to, ; char* from + ptr null; char* to + }, ; 2222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4423_to, ; char* from + ptr null; char* to + }, ; 2223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4432_to, ; char* from + ptr @.TypeMapEntry.4431_from; char* to + }, ; 2224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4434_to, ; char* from + ptr @.TypeMapEntry.4433_from; char* to + }, ; 2225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4518_to, ; char* from + ptr @.TypeMapEntry.4517_from; char* to + }, ; 2226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4438_to, ; char* from + ptr @.TypeMapEntry.4437_from; char* to + }, ; 2227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4508_to, ; char* from + ptr @.TypeMapEntry.4507_from; char* to + }, ; 2228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4510_to, ; char* from + ptr @.TypeMapEntry.4509_from; char* to + }, ; 2229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4440_to, ; char* from + ptr null; char* to + }, ; 2230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4440_to, ; char* from + ptr null; char* to + }, ; 2231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4445_to, ; char* from + ptr null; char* to + }, ; 2232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4445_to, ; char* from + ptr null; char* to + }, ; 2233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4450_to, ; char* from + ptr null; char* to + }, ; 2234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4450_to, ; char* from + ptr null; char* to + }, ; 2235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4453_to, ; char* from + ptr null; char* to + }, ; 2236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4453_to, ; char* from + ptr null; char* to + }, ; 2237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4458_to, ; char* from + ptr null; char* to + }, ; 2238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4458_to, ; char* from + ptr null; char* to + }, ; 2239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4463_to, ; char* from + ptr null; char* to + }, ; 2240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4463_to, ; char* from + ptr null; char* to + }, ; 2241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4468_to, ; char* from + ptr null; char* to + }, ; 2242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4468_to, ; char* from + ptr null; char* to + }, ; 2243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4473_to, ; char* from + ptr null; char* to + }, ; 2244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4473_to, ; char* from + ptr null; char* to + }, ; 2245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4478_to, ; char* from + ptr null; char* to + }, ; 2246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4478_to, ; char* from + ptr null; char* to + }, ; 2247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4483_to, ; char* from + ptr null; char* to + }, ; 2248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4483_to, ; char* from + ptr null; char* to + }, ; 2249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4488_to, ; char* from + ptr null; char* to + }, ; 2250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4488_to, ; char* from + ptr null; char* to + }, ; 2251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4493_to, ; char* from + ptr null; char* to + }, ; 2252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4493_to, ; char* from + ptr null; char* to + }, ; 2253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4498_to, ; char* from + ptr null; char* to + }, ; 2254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4498_to, ; char* from + ptr null; char* to + }, ; 2255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4503_to, ; char* from + ptr null; char* to + }, ; 2256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4503_to, ; char* from + ptr null; char* to + }, ; 2257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4512_to, ; char* from + ptr @.TypeMapEntry.4511_from; char* to + }, ; 2258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4514_to, ; char* from + ptr @.TypeMapEntry.4513_from; char* to + }, ; 2259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4516_to, ; char* from + ptr @.TypeMapEntry.4515_from; char* to + }, ; 2260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4542_to, ; char* from + ptr @.TypeMapEntry.4541_from; char* to + }, ; 2261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4520_to, ; char* from + ptr @.TypeMapEntry.4519_from; char* to + }, ; 2262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4522_to, ; char* from + ptr @.TypeMapEntry.4521_from; char* to + }, ; 2263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4534_to, ; char* from + ptr @.TypeMapEntry.4533_from; char* to + }, ; 2264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4524_to, ; char* from + ptr null; char* to + }, ; 2265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4524_to, ; char* from + ptr null; char* to + }, ; 2266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4529_to, ; char* from + ptr null; char* to + }, ; 2267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4529_to, ; char* from + ptr null; char* to + }, ; 2268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4536_to, ; char* from + ptr @.TypeMapEntry.4535_from; char* to + }, ; 2269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4538_to, ; char* from + ptr @.TypeMapEntry.4537_from; char* to + }, ; 2270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4540_to, ; char* from + ptr @.TypeMapEntry.4539_from; char* to + }, ; 2271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4546_to, ; char* from + ptr @.TypeMapEntry.4545_from; char* to + }, ; 2272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4544_to, ; char* from + ptr @.TypeMapEntry.4543_from; char* to + }, ; 2273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4548_to, ; char* from + ptr @.TypeMapEntry.4547_from; char* to + }, ; 2274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4548_to, ; char* from + ptr @.TypeMapEntry.4547_from; char* to + }, ; 2275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4567_to, ; char* from + ptr @.TypeMapEntry.4566_from; char* to + }, ; 2276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4551_to, ; char* from + ptr @.TypeMapEntry.4550_from; char* to + }, ; 2277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4551_to, ; char* from + ptr @.TypeMapEntry.4550_from; char* to + }, ; 2278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4554_to, ; char* from + ptr @.TypeMapEntry.4553_from; char* to + }, ; 2279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4556_to, ; char* from + ptr @.TypeMapEntry.4555_from; char* to + }, ; 2280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4558_to, ; char* from + ptr @.TypeMapEntry.4557_from; char* to + }, ; 2281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4560_to, ; char* from + ptr @.TypeMapEntry.4559_from; char* to + }, ; 2282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4562_to, ; char* from + ptr @.TypeMapEntry.4561_from; char* to + }, ; 2283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4564_to, ; char* from + ptr @.TypeMapEntry.4563_from; char* to + }, ; 2284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4564_to, ; char* from + ptr @.TypeMapEntry.4563_from; char* to + }, ; 2285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4591_to, ; char* from + ptr @.TypeMapEntry.4590_from; char* to + }, ; 2286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4569_to, ; char* from + ptr @.TypeMapEntry.4568_from; char* to + }, ; 2287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4569_to, ; char* from + ptr @.TypeMapEntry.4568_from; char* to + }, ; 2288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4572_to, ; char* from + ptr null; char* to + }, ; 2289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4572_to, ; char* from + ptr null; char* to + }, ; 2290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4577_to, ; char* from + ptr @.TypeMapEntry.4576_from; char* to + }, ; 2291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4577_to, ; char* from + ptr @.TypeMapEntry.4576_from; char* to + }, ; 2292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4580_to, ; char* from + ptr @.TypeMapEntry.4579_from; char* to + }, ; 2293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4584_to, ; char* from + ptr @.TypeMapEntry.4583_from; char* to + }, ; 2294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4582_to, ; char* from + ptr @.TypeMapEntry.4581_from; char* to + }, ; 2295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4586_to, ; char* from + ptr @.TypeMapEntry.4585_from; char* to + }, ; 2296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4588_to, ; char* from + ptr @.TypeMapEntry.4587_from; char* to + }, ; 2297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4588_to, ; char* from + ptr @.TypeMapEntry.4587_from; char* to + }, ; 2298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4601_to, ; char* from + ptr @.TypeMapEntry.4600_from; char* to + }, ; 2299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4593_to, ; char* from + ptr null; char* to + }, ; 2300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4593_to, ; char* from + ptr null; char* to + }, ; 2301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4596_to, ; char* from + ptr null; char* to + }, ; 2302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4596_to, ; char* from + ptr null; char* to + }, ; 2303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4610_to, ; char* from + ptr @.TypeMapEntry.4609_from; char* to + }, ; 2304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4603_to, ; char* from + ptr @.TypeMapEntry.4602_from; char* to + }, ; 2305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4605_to, ; char* from + ptr @.TypeMapEntry.4604_from; char* to + }, ; 2306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4607_to, ; char* from + ptr @.TypeMapEntry.4606_from; char* to + }, ; 2307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4607_to, ; char* from + ptr @.TypeMapEntry.4606_from; char* to + }, ; 2308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4614_to, ; char* from + ptr @.TypeMapEntry.4613_from; char* to + }, ; 2309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4614_to, ; char* from + ptr @.TypeMapEntry.4613_from; char* to + }, ; 2310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4612_to, ; char* from + ptr @.TypeMapEntry.4611_from; char* to + }, ; 2311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4625_to, ; char* from + ptr @.TypeMapEntry.4624_from; char* to + }, ; 2312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4617_to, ; char* from + ptr @.TypeMapEntry.4616_from; char* to + }, ; 2313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4617_to, ; char* from + ptr @.TypeMapEntry.4616_from; char* to + }, ; 2314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4620_to, ; char* from + ptr null; char* to + }, ; 2315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4620_to, ; char* from + ptr null; char* to + }, ; 2316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4627_to, ; char* from + ptr @.TypeMapEntry.4626_from; char* to + }, ; 2317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4629_to, ; char* from + ptr @.TypeMapEntry.4628_from; char* to + }, ; 2318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4188_to, ; char* from + ptr null; char* to + }, ; 2319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4188_to, ; char* from + ptr null; char* to + }, ; 2320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4680_to, ; char* from + ptr @.TypeMapEntry.4679_from; char* to + }, ; 2321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4678_to, ; char* from + ptr @.TypeMapEntry.4677_from; char* to + }, ; 2322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4717_to, ; char* from + ptr @.TypeMapEntry.4716_from; char* to + }, ; 2323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4719_to, ; char* from + ptr @.TypeMapEntry.4718_from; char* to + }, ; 2324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4730_to, ; char* from + ptr @.TypeMapEntry.4729_from; char* to + }, ; 2325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4749_to, ; char* from + ptr @.TypeMapEntry.4748_from; char* to + }, ; 2326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4747_to, ; char* from + ptr @.TypeMapEntry.4746_from; char* to + }, ; 2327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4732_to, ; char* from + ptr null; char* to + }, ; 2328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4732_to, ; char* from + ptr null; char* to + }, ; 2329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4737_to, ; char* from + ptr null; char* to + }, ; 2330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4737_to, ; char* from + ptr null; char* to + }, ; 2331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4742_to, ; char* from + ptr null; char* to + }, ; 2332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4742_to, ; char* from + ptr null; char* to + }, ; 2333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4758_to, ; char* from + ptr @.TypeMapEntry.4757_from; char* to + }, ; 2334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4756_to, ; char* from + ptr @.TypeMapEntry.4755_from; char* to + }, ; 2335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4751_to, ; char* from + ptr null; char* to + }, ; 2336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4751_to, ; char* from + ptr null; char* to + }, ; 2337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4760_to, ; char* from + ptr @.TypeMapEntry.4759_from; char* to + }, ; 2338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4762_to, ; char* from + ptr @.TypeMapEntry.4761_from; char* to + }, ; 2339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4764_to, ; char* from + ptr @.TypeMapEntry.4763_from; char* to + }, ; 2340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4768_to, ; char* from + ptr @.TypeMapEntry.4767_from; char* to + }, ; 2341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4766_to, ; char* from + ptr @.TypeMapEntry.4765_from; char* to + }, ; 2342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4776_to, ; char* from + ptr @.TypeMapEntry.4775_from; char* to + }, ; 2343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4770_to, ; char* from + ptr @.TypeMapEntry.4769_from; char* to + }, ; 2344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4774_to, ; char* from + ptr @.TypeMapEntry.4773_from; char* to + }, ; 2345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4772_to, ; char* from + ptr @.TypeMapEntry.4771_from; char* to + }, ; 2346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4780_to, ; char* from + ptr @.TypeMapEntry.4779_from; char* to + }, ; 2347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4778_to, ; char* from + ptr @.TypeMapEntry.4777_from; char* to + }, ; 2348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4829_to, ; char* from + ptr @.TypeMapEntry.4828_from; char* to + }, ; 2349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4827_to, ; char* from + ptr @.TypeMapEntry.4826_from; char* to + }, ; 2350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4833_to, ; char* from + ptr @.TypeMapEntry.4832_from; char* to + }, ; 2351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4831_to, ; char* from + ptr @.TypeMapEntry.4830_from; char* to + }, ; 2352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4835_to, ; char* from + ptr @.TypeMapEntry.4834_from; char* to + }, ; 2353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4844_to, ; char* from + ptr @.TypeMapEntry.4843_from; char* to + }, ; 2354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4837_to, ; char* from + ptr @.TypeMapEntry.4836_from; char* to + }, ; 2355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4839_to, ; char* from + ptr null; char* to + }, ; 2356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4839_to, ; char* from + ptr null; char* to + }, ; 2357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4856_to, ; char* from + ptr @.TypeMapEntry.4855_from; char* to + }, ; 2358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4846_to, ; char* from + ptr null; char* to + }, ; 2359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4846_to, ; char* from + ptr null; char* to + }, ; 2360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4851_to, ; char* from + ptr null; char* to + }, ; 2361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4851_to, ; char* from + ptr null; char* to + }, ; 2362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4858_to, ; char* from + ptr @.TypeMapEntry.4857_from; char* to + }, ; 2363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4860_to, ; char* from + ptr @.TypeMapEntry.4859_from; char* to + }, ; 2364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5000_to, ; char* from + ptr @.TypeMapEntry.4999_from; char* to + }, ; 2365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5002_to, ; char* from + ptr @.TypeMapEntry.5001_from; char* to + }, ; 2366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5004_to, ; char* from + ptr @.TypeMapEntry.5003_from; char* to + }, ; 2367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5006_to, ; char* from + ptr @.TypeMapEntry.5005_from; char* to + }, ; 2368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5008_to, ; char* from + ptr @.TypeMapEntry.5007_from; char* to + }, ; 2369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4191_to, ; char* from + ptr null; char* to + }, ; 2370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4191_to, ; char* from + ptr null; char* to + }, ; 2371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5010_to, ; char* from + ptr @.TypeMapEntry.5009_from; char* to + }, ; 2372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5010_to, ; char* from + ptr @.TypeMapEntry.5009_from; char* to + }, ; 2373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5019_to, ; char* from + ptr @.TypeMapEntry.5018_from; char* to + }, ; 2374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5015_to, ; char* from + ptr @.TypeMapEntry.5014_from; char* to + }, ; 2375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5013_to, ; char* from + ptr @.TypeMapEntry.5012_from; char* to + }, ; 2376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5017_to, ; char* from + ptr @.TypeMapEntry.5016_from; char* to + }, ; 2377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4019_to, ; char* from + ptr @.TypeMapEntry.4018_from; char* to + }, ; 2378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4033_to, ; char* from + ptr @.TypeMapEntry.4032_from; char* to + }, ; 2379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4021_to, ; char* from + ptr @.TypeMapEntry.4020_from; char* to + }, ; 2380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4023_to, ; char* from + ptr null; char* to + }, ; 2381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4023_to, ; char* from + ptr null; char* to + }, ; 2382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4028_to, ; char* from + ptr null; char* to + }, ; 2383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4028_to, ; char* from + ptr null; char* to + }, ; 2384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4035_to, ; char* from + ptr @.TypeMapEntry.4034_from; char* to + }, ; 2385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4044_to, ; char* from + ptr @.TypeMapEntry.4043_from; char* to + }, ; 2386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4037_to, ; char* from + ptr null; char* to + }, ; 2387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4037_to, ; char* from + ptr null; char* to + }, ; 2388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4042_to, ; char* from + ptr @.TypeMapEntry.4041_from; char* to + }, ; 2389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4068_to, ; char* from + ptr @.TypeMapEntry.4067_from; char* to + }, ; 2390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4046_to, ; char* from + ptr @.TypeMapEntry.4045_from; char* to + }, ; 2391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4048_to, ; char* from + ptr @.TypeMapEntry.4047_from; char* to + }, ; 2392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4050_to, ; char* from + ptr @.TypeMapEntry.4049_from; char* to + }, ; 2393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4054_to, ; char* from + ptr @.TypeMapEntry.4053_from; char* to + }, ; 2394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4052_to, ; char* from + ptr @.TypeMapEntry.4051_from; char* to + }, ; 2395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4056_to, ; char* from + ptr @.TypeMapEntry.4055_from; char* to + }, ; 2396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4058_to, ; char* from + ptr @.TypeMapEntry.4057_from; char* to + }, ; 2397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4060_to, ; char* from + ptr @.TypeMapEntry.4059_from; char* to + }, ; 2398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4062_to, ; char* from + ptr @.TypeMapEntry.4061_from; char* to + }, ; 2399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4064_to, ; char* from + ptr @.TypeMapEntry.4063_from; char* to + }, ; 2400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4066_to, ; char* from + ptr @.TypeMapEntry.4065_from; char* to + }, ; 2401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4077_to, ; char* from + ptr @.TypeMapEntry.4076_from; char* to + }, ; 2402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4070_to, ; char* from + ptr null; char* to + }, ; 2403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4070_to, ; char* from + ptr null; char* to + }, ; 2404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4075_to, ; char* from + ptr @.TypeMapEntry.4074_from; char* to + }, ; 2405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4086_to, ; char* from + ptr @.TypeMapEntry.4085_from; char* to + }, ; 2406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4079_to, ; char* from + ptr null; char* to + }, ; 2407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4079_to, ; char* from + ptr null; char* to + }, ; 2408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4084_to, ; char* from + ptr @.TypeMapEntry.4083_from; char* to + }, ; 2409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4088_to, ; char* from + ptr @.TypeMapEntry.4087_from; char* to + }, ; 2410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4090_to, ; char* from + ptr @.TypeMapEntry.4089_from; char* to + }, ; 2411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4092_to, ; char* from + ptr @.TypeMapEntry.4091_from; char* to + }, ; 2412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4101_to, ; char* from + ptr @.TypeMapEntry.4100_from; char* to + }, ; 2413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4094_to, ; char* from + ptr null; char* to + }, ; 2414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4094_to, ; char* from + ptr null; char* to + }, ; 2415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4099_to, ; char* from + ptr @.TypeMapEntry.4098_from; char* to + }, ; 2416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4110_to, ; char* from + ptr @.TypeMapEntry.4109_from; char* to + }, ; 2417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4103_to, ; char* from + ptr null; char* to + }, ; 2418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4103_to, ; char* from + ptr null; char* to + }, ; 2419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4108_to, ; char* from + ptr @.TypeMapEntry.4107_from; char* to + }, ; 2420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4119_to, ; char* from + ptr @.TypeMapEntry.4118_from; char* to + }, ; 2421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4117_to, ; char* from + ptr @.TypeMapEntry.4116_from; char* to + }, ; 2422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4112_to, ; char* from + ptr null; char* to + }, ; 2423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4112_to, ; char* from + ptr null; char* to + }, ; 2424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4131_to, ; char* from + ptr @.TypeMapEntry.4130_from; char* to + }, ; 2425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4121_to, ; char* from + ptr @.TypeMapEntry.4120_from; char* to + }, ; 2426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4123_to, ; char* from + ptr @.TypeMapEntry.4122_from; char* to + }, ; 2427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4123_to, ; char* from + ptr @.TypeMapEntry.4122_from; char* to + }, ; 2428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4126_to, ; char* from + ptr @.TypeMapEntry.4125_from; char* to + }, ; 2429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4128_to, ; char* from + ptr @.TypeMapEntry.4127_from; char* to + }, ; 2430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4128_to, ; char* from + ptr @.TypeMapEntry.4127_from; char* to + }, ; 2431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4144_to, ; char* from + ptr @.TypeMapEntry.4143_from; char* to + }, ; 2432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4144_to, ; char* from + ptr @.TypeMapEntry.4143_from; char* to + }, ; 2433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4146_to, ; char* from + ptr @.TypeMapEntry.4145_from; char* to + }, ; 2434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4148_to, ; char* from + ptr @.TypeMapEntry.4147_from; char* to + }, ; 2435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4151_to, ; char* from + ptr null; char* to + }, ; 2436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4151_to, ; char* from + ptr null; char* to + }, ; 2437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4631_to, ; char* from + ptr @.TypeMapEntry.4630_from; char* to + }, ; 2438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4635_to, ; char* from + ptr @.TypeMapEntry.4634_from; char* to + }, ; 2439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4633_to, ; char* from + ptr @.TypeMapEntry.4632_from; char* to + }, ; 2440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4637_to, ; char* from + ptr @.TypeMapEntry.4636_from; char* to + }, ; 2441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4639_to, ; char* from + ptr @.TypeMapEntry.4638_from; char* to + }, ; 2442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4639_to, ; char* from + ptr @.TypeMapEntry.4638_from; char* to + }, ; 2443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4642_to, ; char* from + ptr @.TypeMapEntry.4641_from; char* to + }, ; 2444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4646_to, ; char* from + ptr @.TypeMapEntry.4645_from; char* to + }, ; 2445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4644_to, ; char* from + ptr @.TypeMapEntry.4643_from; char* to + }, ; 2446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4648_to, ; char* from + ptr @.TypeMapEntry.4647_from; char* to + }, ; 2447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4652_to, ; char* from + ptr @.TypeMapEntry.4651_from; char* to + }, ; 2448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4650_to, ; char* from + ptr @.TypeMapEntry.4649_from; char* to + }, ; 2449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4656_to, ; char* from + ptr @.TypeMapEntry.4655_from; char* to + }, ; 2450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4654_to, ; char* from + ptr @.TypeMapEntry.4653_from; char* to + }, ; 2451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4660_to, ; char* from + ptr @.TypeMapEntry.4659_from; char* to + }, ; 2452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4658_to, ; char* from + ptr @.TypeMapEntry.4657_from; char* to + }, ; 2453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4662_to, ; char* from + ptr @.TypeMapEntry.4661_from; char* to + }, ; 2454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4666_to, ; char* from + ptr @.TypeMapEntry.4665_from; char* to + }, ; 2455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4664_to, ; char* from + ptr @.TypeMapEntry.4663_from; char* to + }, ; 2456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4668_to, ; char* from + ptr @.TypeMapEntry.4667_from; char* to + }, ; 2457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4672_to, ; char* from + ptr @.TypeMapEntry.4671_from; char* to + }, ; 2458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4670_to, ; char* from + ptr @.TypeMapEntry.4669_from; char* to + }, ; 2459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4674_to, ; char* from + ptr @.TypeMapEntry.4673_from; char* to + }, ; 2460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4684_to, ; char* from + ptr @.TypeMapEntry.4683_from; char* to + }, ; 2461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4682_to, ; char* from + ptr @.TypeMapEntry.4681_from; char* to + }, ; 2462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4688_to, ; char* from + ptr @.TypeMapEntry.4687_from; char* to + }, ; 2463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4686_to, ; char* from + ptr @.TypeMapEntry.4685_from; char* to + }, ; 2464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4690_to, ; char* from + ptr @.TypeMapEntry.4689_from; char* to + }, ; 2465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4690_to, ; char* from + ptr @.TypeMapEntry.4689_from; char* to + }, ; 2466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4693_to, ; char* from + ptr @.TypeMapEntry.4692_from; char* to + }, ; 2467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4695_to, ; char* from + ptr @.TypeMapEntry.4694_from; char* to + }, ; 2468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4704_to, ; char* from + ptr @.TypeMapEntry.4703_from; char* to + }, ; 2469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4697_to, ; char* from + ptr @.TypeMapEntry.4696_from; char* to + }, ; 2470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4699_to, ; char* from + ptr null; char* to + }, ; 2471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4699_to, ; char* from + ptr null; char* to + }, ; 2472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4706_to, ; char* from + ptr @.TypeMapEntry.4705_from; char* to + }, ; 2473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4708_to, ; char* from + ptr @.TypeMapEntry.4707_from; char* to + }, ; 2474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4708_to, ; char* from + ptr @.TypeMapEntry.4707_from; char* to + }, ; 2475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4711_to, ; char* from + ptr @.TypeMapEntry.4710_from; char* to + }, ; 2476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4711_to, ; char* from + ptr @.TypeMapEntry.4710_from; char* to + }, ; 2477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4714_to, ; char* from + ptr @.TypeMapEntry.4713_from; char* to + }, ; 2478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4714_to, ; char* from + ptr @.TypeMapEntry.4713_from; char* to + }, ; 2479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4724_to, ; char* from + ptr @.TypeMapEntry.4723_from; char* to + }, ; 2480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4721_to, ; char* from + ptr @.TypeMapEntry.4720_from; char* to + }, ; 2481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4721_to, ; char* from + ptr @.TypeMapEntry.4720_from; char* to + }, ; 2482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4726_to, ; char* from + ptr @.TypeMapEntry.4725_from; char* to + }, ; 2483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4728_to, ; char* from + ptr @.TypeMapEntry.4727_from; char* to + }, ; 2484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4789_to, ; char* from + ptr @.TypeMapEntry.4788_from; char* to + }, ; 2485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4782_to, ; char* from + ptr @.TypeMapEntry.4781_from; char* to + }, ; 2486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4782_to, ; char* from + ptr @.TypeMapEntry.4781_from; char* to + }, ; 2487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4785_to, ; char* from + ptr @.TypeMapEntry.4784_from; char* to + }, ; 2488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4787_to, ; char* from + ptr @.TypeMapEntry.4786_from; char* to + }, ; 2489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4798_to, ; char* from + ptr @.TypeMapEntry.4797_from; char* to + }, ; 2490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4791_to, ; char* from + ptr @.TypeMapEntry.4790_from; char* to + }, ; 2491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4791_to, ; char* from + ptr @.TypeMapEntry.4790_from; char* to + }, ; 2492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4794_to, ; char* from + ptr @.TypeMapEntry.4793_from; char* to + }, ; 2493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4796_to, ; char* from + ptr @.TypeMapEntry.4795_from; char* to + }, ; 2494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4817_to, ; char* from + ptr @.TypeMapEntry.4816_from; char* to + }, ; 2495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4800_to, ; char* from + ptr null; char* to + }, ; 2496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4800_to, ; char* from + ptr null; char* to + }, ; 2497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4805_to, ; char* from + ptr null; char* to + }, ; 2498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4805_to, ; char* from + ptr null; char* to + }, ; 2499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4810_to, ; char* from + ptr null; char* to + }, ; 2500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4810_to, ; char* from + ptr null; char* to + }, ; 2501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4815_to, ; char* from + ptr @.TypeMapEntry.4814_from; char* to + }, ; 2502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4825_to, ; char* from + ptr @.TypeMapEntry.4824_from; char* to + }, ; 2503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4819_to, ; char* from + ptr @.TypeMapEntry.4818_from; char* to + }, ; 2504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4823_to, ; char* from + ptr @.TypeMapEntry.4822_from; char* to + }, ; 2505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4821_to, ; char* from + ptr @.TypeMapEntry.4820_from; char* to + }, ; 2506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4862_to, ; char* from + ptr @.TypeMapEntry.4861_from; char* to + }, ; 2507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4864_to, ; char* from + ptr @.TypeMapEntry.4863_from; char* to + }, ; 2508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4866_to, ; char* from + ptr @.TypeMapEntry.4865_from; char* to + }, ; 2509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4868_to, ; char* from + ptr @.TypeMapEntry.4867_from; char* to + }, ; 2510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4870_to, ; char* from + ptr @.TypeMapEntry.4869_from; char* to + }, ; 2511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4870_to, ; char* from + ptr @.TypeMapEntry.4869_from; char* to + }, ; 2512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4873_to, ; char* from + ptr @.TypeMapEntry.4872_from; char* to + }, ; 2513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4873_to, ; char* from + ptr @.TypeMapEntry.4872_from; char* to + }, ; 2514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4876_to, ; char* from + ptr @.TypeMapEntry.4875_from; char* to + }, ; 2515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4878_to, ; char* from + ptr @.TypeMapEntry.4877_from; char* to + }, ; 2516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4880_to, ; char* from + ptr @.TypeMapEntry.4879_from; char* to + }, ; 2517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4882_to, ; char* from + ptr @.TypeMapEntry.4881_from; char* to + }, ; 2518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4909_to, ; char* from + ptr @.TypeMapEntry.4908_from; char* to + }, ; 2519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4911_to, ; char* from + ptr @.TypeMapEntry.4910_from; char* to + }, ; 2520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4913_to, ; char* from + ptr @.TypeMapEntry.4912_from; char* to + }, ; 2521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4915_to, ; char* from + ptr @.TypeMapEntry.4914_from; char* to + }, ; 2522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4917_to, ; char* from + ptr @.TypeMapEntry.4916_from; char* to + }, ; 2523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4919_to, ; char* from + ptr @.TypeMapEntry.4918_from; char* to + }, ; 2524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4921_to, ; char* from + ptr @.TypeMapEntry.4920_from; char* to + }, ; 2525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4925_to, ; char* from + ptr @.TypeMapEntry.4924_from; char* to + }, ; 2526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4923_to, ; char* from + ptr @.TypeMapEntry.4922_from; char* to + }, ; 2527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4927_to, ; char* from + ptr @.TypeMapEntry.4926_from; char* to + }, ; 2528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4929_to, ; char* from + ptr @.TypeMapEntry.4928_from; char* to + }, ; 2529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4931_to, ; char* from + ptr @.TypeMapEntry.4930_from; char* to + }, ; 2530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4933_to, ; char* from + ptr @.TypeMapEntry.4932_from; char* to + }, ; 2531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4935_to, ; char* from + ptr @.TypeMapEntry.4934_from; char* to + }, ; 2532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4953_to, ; char* from + ptr @.TypeMapEntry.4952_from; char* to + }, ; 2533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4941_to, ; char* from + ptr @.TypeMapEntry.4940_from; char* to + }, ; 2534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4939_to, ; char* from + ptr @.TypeMapEntry.4938_from; char* to + }, ; 2535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4943_to, ; char* from + ptr @.TypeMapEntry.4942_from; char* to + }, ; 2536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4947_to, ; char* from + ptr @.TypeMapEntry.4946_from; char* to + }, ; 2537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4945_to, ; char* from + ptr @.TypeMapEntry.4944_from; char* to + }, ; 2538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4949_to, ; char* from + ptr @.TypeMapEntry.4948_from; char* to + }, ; 2539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4951_to, ; char* from + ptr @.TypeMapEntry.4950_from; char* to + }, ; 2540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4957_to, ; char* from + ptr @.TypeMapEntry.4956_from; char* to + }, ; 2541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4955_to, ; char* from + ptr @.TypeMapEntry.4954_from; char* to + }, ; 2542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4962_to, ; char* from + ptr @.TypeMapEntry.4961_from; char* to + }, ; 2543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4959_to, ; char* from + ptr @.TypeMapEntry.4958_from; char* to + }, ; 2544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4959_to, ; char* from + ptr @.TypeMapEntry.4958_from; char* to + }, ; 2545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4973_to, ; char* from + ptr @.TypeMapEntry.4972_from; char* to + }, ; 2546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4973_to, ; char* from + ptr @.TypeMapEntry.4972_from; char* to + }, ; 2547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4964_to, ; char* from + ptr @.TypeMapEntry.4963_from; char* to + }, ; 2548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4964_to, ; char* from + ptr @.TypeMapEntry.4963_from; char* to + }, ; 2549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4967_to, ; char* from + ptr @.TypeMapEntry.4966_from; char* to + }, ; 2550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4967_to, ; char* from + ptr @.TypeMapEntry.4966_from; char* to + }, ; 2551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4970_to, ; char* from + ptr @.TypeMapEntry.4969_from; char* to + }, ; 2552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4970_to, ; char* from + ptr @.TypeMapEntry.4969_from; char* to + }, ; 2553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4979_to, ; char* from + ptr @.TypeMapEntry.4978_from; char* to + }, ; 2554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4976_to, ; char* from + ptr @.TypeMapEntry.4975_from; char* to + }, ; 2555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4976_to, ; char* from + ptr @.TypeMapEntry.4975_from; char* to + }, ; 2556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4981_to, ; char* from + ptr @.TypeMapEntry.4980_from; char* to + }, ; 2557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4985_to, ; char* from + ptr @.TypeMapEntry.4984_from; char* to + }, ; 2558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4983_to, ; char* from + ptr @.TypeMapEntry.4982_from; char* to + }, ; 2559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4998_to, ; char* from + ptr @.TypeMapEntry.4997_from; char* to + }, ; 2560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4987_to, ; char* from + ptr null; char* to + }, ; 2561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4987_to, ; char* from + ptr null; char* to + }, ; 2562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4992_to, ; char* from + ptr @.TypeMapEntry.4991_from; char* to + }, ; 2563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4992_to, ; char* from + ptr @.TypeMapEntry.4991_from; char* to + }, ; 2564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4995_to, ; char* from + ptr @.TypeMapEntry.4994_from; char* to + }, ; 2565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4995_to, ; char* from + ptr @.TypeMapEntry.4994_from; char* to + }, ; 2566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4884_to, ; char* from + ptr @.TypeMapEntry.4883_from; char* to + }, ; 2567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4889_to, ; char* from + ptr @.TypeMapEntry.4888_from; char* to + }, ; 2568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4886_to, ; char* from + ptr @.TypeMapEntry.4885_from; char* to + }, ; 2569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4886_to, ; char* from + ptr @.TypeMapEntry.4885_from; char* to + }, ; 2570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4894_to, ; char* from + ptr @.TypeMapEntry.4893_from; char* to + }, ; 2571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4894_to, ; char* from + ptr @.TypeMapEntry.4893_from; char* to + }, ; 2572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4891_to, ; char* from + ptr @.TypeMapEntry.4890_from; char* to + }, ; 2573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4891_to, ; char* from + ptr @.TypeMapEntry.4890_from; char* to + }, ; 2574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4896_to, ; char* from + ptr @.TypeMapEntry.4895_from; char* to + }, ; 2575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4907_to, ; char* from + ptr @.TypeMapEntry.4906_from; char* to + }, ; 2576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4899_to, ; char* from + ptr null; char* to + }, ; 2577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4899_to, ; char* from + ptr null; char* to + }, ; 2578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4904_to, ; char* from + ptr @.TypeMapEntry.4903_from; char* to + }, ; 2579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4904_to, ; char* from + ptr @.TypeMapEntry.4903_from; char* to + }, ; 2580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5021_to, ; char* from + ptr @.TypeMapEntry.5020_from; char* to + }, ; 2581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5023_to, ; char* from + ptr @.TypeMapEntry.5022_from; char* to + }, ; 2582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5025_to, ; char* from + ptr @.TypeMapEntry.5024_from; char* to + }, ; 2583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5027_to, ; char* from + ptr @.TypeMapEntry.5026_from; char* to + }, ; 2584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5031_to, ; char* from + ptr @.TypeMapEntry.5030_from; char* to + }, ; 2585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5029_to, ; char* from + ptr @.TypeMapEntry.5028_from; char* to + }, ; 2586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5033_to, ; char* from + ptr @.TypeMapEntry.5032_from; char* to + }, ; 2587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5035_to, ; char* from + ptr @.TypeMapEntry.5034_from; char* to + }, ; 2588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5044_to, ; char* from + ptr @.TypeMapEntry.5043_from; char* to + }, ; 2589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5037_to, ; char* from + ptr @.TypeMapEntry.5036_from; char* to + }, ; 2590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5037_to, ; char* from + ptr @.TypeMapEntry.5036_from; char* to + }, ; 2591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5040_to, ; char* from + ptr @.TypeMapEntry.5039_from; char* to + }, ; 2592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5042_to, ; char* from + ptr @.TypeMapEntry.5041_from; char* to + }, ; 2593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5053_to, ; char* from + ptr @.TypeMapEntry.5052_from; char* to + }, ; 2594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5051_to, ; char* from + ptr @.TypeMapEntry.5050_from; char* to + }, ; 2595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5046_to, ; char* from + ptr null; char* to + }, ; 2596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5046_to, ; char* from + ptr null; char* to + }, ; 2597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5055_to, ; char* from + ptr @.TypeMapEntry.5054_from; char* to + }, ; 2598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5057_to, ; char* from + ptr @.TypeMapEntry.5056_from; char* to + }, ; 2599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5064_to, ; char* from + ptr @.TypeMapEntry.5063_from; char* to + }, ; 2600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5061_to, ; char* from + ptr null; char* to + }, ; 2601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5061_to, ; char* from + ptr null; char* to + }, ; 2602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5059_to, ; char* from + ptr @.TypeMapEntry.5058_from; char* to + }, ; 2603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5094_to, ; char* from + ptr @.TypeMapEntry.5093_from; char* to + }, ; 2604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5184_to, ; char* from + ptr @.TypeMapEntry.5183_from; char* to + }, ; 2605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5182_to, ; char* from + ptr @.TypeMapEntry.5181_from; char* to + }, ; 2606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5186_to, ; char* from + ptr @.TypeMapEntry.5185_from; char* to + }, ; 2607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5190_to, ; char* from + ptr @.TypeMapEntry.5189_from; char* to + }, ; 2608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5188_to, ; char* from + ptr @.TypeMapEntry.5187_from; char* to + }, ; 2609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5192_to, ; char* from + ptr @.TypeMapEntry.5191_from; char* to + }, ; 2610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5312_to, ; char* from + ptr @.TypeMapEntry.5311_from; char* to + }, ; 2611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5322_to, ; char* from + ptr @.TypeMapEntry.5321_from; char* to + }, ; 2612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5314_to, ; char* from + ptr @.TypeMapEntry.5313_from; char* to + }, ; 2613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5316_to, ; char* from + ptr @.TypeMapEntry.5315_from; char* to + }, ; 2614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5318_to, ; char* from + ptr @.TypeMapEntry.5317_from; char* to + }, ; 2615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5320_to, ; char* from + ptr @.TypeMapEntry.5319_from; char* to + }, ; 2616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5326_to, ; char* from + ptr @.TypeMapEntry.5325_from; char* to + }, ; 2617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5324_to, ; char* from + ptr @.TypeMapEntry.5323_from; char* to + }, ; 2618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5330_to, ; char* from + ptr @.TypeMapEntry.5329_from; char* to + }, ; 2619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5328_to, ; char* from + ptr @.TypeMapEntry.5327_from; char* to + }, ; 2620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5332_to, ; char* from + ptr @.TypeMapEntry.5331_from; char* to + }, ; 2621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5334_to, ; char* from + ptr @.TypeMapEntry.5333_from; char* to + }, ; 2622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5336_to, ; char* from + ptr @.TypeMapEntry.5335_from; char* to + }, ; 2623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5338_to, ; char* from + ptr @.TypeMapEntry.5337_from; char* to + }, ; 2624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5342_to, ; char* from + ptr @.TypeMapEntry.5341_from; char* to + }, ; 2625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5340_to, ; char* from + ptr @.TypeMapEntry.5339_from; char* to + }, ; 2626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5344_to, ; char* from + ptr @.TypeMapEntry.5343_from; char* to + }, ; 2627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5346_to, ; char* from + ptr @.TypeMapEntry.5345_from; char* to + }, ; 2628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5348_to, ; char* from + ptr @.TypeMapEntry.5347_from; char* to + }, ; 2629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5350_to, ; char* from + ptr @.TypeMapEntry.5349_from; char* to + }, ; 2630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5356_to, ; char* from + ptr @.TypeMapEntry.5355_from; char* to + }, ; 2631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5352_to, ; char* from + ptr @.TypeMapEntry.5351_from; char* to + }, ; 2632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5354_to, ; char* from + ptr @.TypeMapEntry.5353_from; char* to + }, ; 2633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5360_to, ; char* from + ptr @.TypeMapEntry.5359_from; char* to + }, ; 2634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5358_to, ; char* from + ptr @.TypeMapEntry.5357_from; char* to + }, ; 2635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5362_to, ; char* from + ptr @.TypeMapEntry.5361_from; char* to + }, ; 2636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5362_to, ; char* from + ptr @.TypeMapEntry.5361_from; char* to + }, ; 2637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5391_to, ; char* from + ptr @.TypeMapEntry.5390_from; char* to + }, ; 2638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5393_to, ; char* from + ptr @.TypeMapEntry.5392_from; char* to + }, ; 2639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5393_to, ; char* from + ptr @.TypeMapEntry.5392_from; char* to + }, ; 2640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5396_to, ; char* from + ptr @.TypeMapEntry.5395_from; char* to + }, ; 2641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5398_to, ; char* from + ptr @.TypeMapEntry.5397_from; char* to + }, ; 2642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5400_to, ; char* from + ptr @.TypeMapEntry.5399_from; char* to + }, ; 2643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5400_to, ; char* from + ptr @.TypeMapEntry.5399_from; char* to + }, ; 2644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5403_to, ; char* from + ptr @.TypeMapEntry.5402_from; char* to + }, ; 2645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5413_to, ; char* from + ptr @.TypeMapEntry.5412_from; char* to + }, ; 2646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5415_to, ; char* from + ptr @.TypeMapEntry.5414_from; char* to + }, ; 2647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5444_to, ; char* from + ptr @.TypeMapEntry.5443_from; char* to + }, ; 2648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5444_to, ; char* from + ptr @.TypeMapEntry.5443_from; char* to + }, ; 2649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5442_to, ; char* from + ptr @.TypeMapEntry.5441_from; char* to + }, ; 2650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5453_to, ; char* from + ptr @.TypeMapEntry.5452_from; char* to + }, ; 2651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5451_to, ; char* from + ptr @.TypeMapEntry.5450_from; char* to + }, ; 2652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5457_to, ; char* from + ptr @.TypeMapEntry.5456_from; char* to + }, ; 2653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5455_to, ; char* from + ptr @.TypeMapEntry.5454_from; char* to + }, ; 2654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5459_to, ; char* from + ptr @.TypeMapEntry.5458_from; char* to + }, ; 2655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5179_to, ; char* from + ptr null; char* to + }, ; 2656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5179_to, ; char* from + ptr null; char* to + }, ; 2657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5463_to, ; char* from + ptr @.TypeMapEntry.5462_from; char* to + }, ; 2658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5463_to, ; char* from + ptr @.TypeMapEntry.5462_from; char* to + }, ; 2659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5461_to, ; char* from + ptr @.TypeMapEntry.5460_from; char* to + }, ; 2660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5473_to, ; char* from + ptr @.TypeMapEntry.5472_from; char* to + }, ; 2661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5469_to, ; char* from + ptr @.TypeMapEntry.5468_from; char* to + }, ; 2662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5471_to, ; char* from + ptr @.TypeMapEntry.5470_from; char* to + }, ; 2663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5466_to, ; char* from + ptr null; char* to + }, ; 2664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5466_to, ; char* from + ptr null; char* to + }, ; 2665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5499_to, ; char* from + ptr @.TypeMapEntry.5498_from; char* to + }, ; 2666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5501_to, ; char* from + ptr @.TypeMapEntry.5500_from; char* to + }, ; 2667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5505_to, ; char* from + ptr @.TypeMapEntry.5504_from; char* to + }, ; 2668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5503_to, ; char* from + ptr @.TypeMapEntry.5502_from; char* to + }, ; 2669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5068_to, ; char* from + ptr @.TypeMapEntry.5067_from; char* to + }, ; 2670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5066_to, ; char* from + ptr @.TypeMapEntry.5065_from; char* to + }, ; 2671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5070_to, ; char* from + ptr @.TypeMapEntry.5069_from; char* to + }, ; 2672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5070_to, ; char* from + ptr @.TypeMapEntry.5069_from; char* to + }, ; 2673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5092_to, ; char* from + ptr @.TypeMapEntry.5091_from; char* to + }, ; 2674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5073_to, ; char* from + ptr @.TypeMapEntry.5072_from; char* to + }, ; 2675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5075_to, ; char* from + ptr @.TypeMapEntry.5074_from; char* to + }, ; 2676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5079_to, ; char* from + ptr @.TypeMapEntry.5078_from; char* to + }, ; 2677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5077_to, ; char* from + ptr @.TypeMapEntry.5076_from; char* to + }, ; 2678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5081_to, ; char* from + ptr @.TypeMapEntry.5080_from; char* to + }, ; 2679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5083_to, ; char* from + ptr @.TypeMapEntry.5082_from; char* to + }, ; 2680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5083_to, ; char* from + ptr @.TypeMapEntry.5082_from; char* to + }, ; 2681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5086_to, ; char* from + ptr @.TypeMapEntry.5085_from; char* to + }, ; 2682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5088_to, ; char* from + ptr @.TypeMapEntry.5087_from; char* to + }, ; 2683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5090_to, ; char* from + ptr @.TypeMapEntry.5089_from; char* to + }, ; 2684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5096_to, ; char* from + ptr @.TypeMapEntry.5095_from; char* to + }, ; 2685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5104_to, ; char* from + ptr @.TypeMapEntry.5103_from; char* to + }, ; 2686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5104_to, ; char* from + ptr @.TypeMapEntry.5103_from; char* to + }, ; 2687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5098_to, ; char* from + ptr @.TypeMapEntry.5097_from; char* to + }, ; 2688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5098_to, ; char* from + ptr @.TypeMapEntry.5097_from; char* to + }, ; 2689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5101_to, ; char* from + ptr null; char* to + }, ; 2690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5101_to, ; char* from + ptr null; char* to + }, ; 2691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5107_to, ; char* from + ptr @.TypeMapEntry.5106_from; char* to + }, ; 2692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5107_to, ; char* from + ptr @.TypeMapEntry.5106_from; char* to + }, ; 2693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5112_to, ; char* from + ptr @.TypeMapEntry.5111_from; char* to + }, ; 2694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5110_to, ; char* from + ptr @.TypeMapEntry.5109_from; char* to + }, ; 2695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5120_to, ; char* from + ptr @.TypeMapEntry.5119_from; char* to + }, ; 2696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5114_to, ; char* from + ptr @.TypeMapEntry.5113_from; char* to + }, ; 2697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5118_to, ; char* from + ptr @.TypeMapEntry.5117_from; char* to + }, ; 2698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5116_to, ; char* from + ptr @.TypeMapEntry.5115_from; char* to + }, ; 2699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5122_to, ; char* from + ptr @.TypeMapEntry.5121_from; char* to + }, ; 2700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5122_to, ; char* from + ptr @.TypeMapEntry.5121_from; char* to + }, ; 2701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5127_to, ; char* from + ptr @.TypeMapEntry.5126_from; char* to + }, ; 2702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5127_to, ; char* from + ptr @.TypeMapEntry.5126_from; char* to + }, ; 2703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5125_to, ; char* from + ptr @.TypeMapEntry.5124_from; char* to + }, ; 2704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5130_to, ; char* from + ptr @.TypeMapEntry.5129_from; char* to + }, ; 2705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5132_to, ; char* from + ptr @.TypeMapEntry.5131_from; char* to + }, ; 2706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5134_to, ; char* from + ptr @.TypeMapEntry.5133_from; char* to + }, ; 2707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5136_to, ; char* from + ptr @.TypeMapEntry.5135_from; char* to + }, ; 2708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5136_to, ; char* from + ptr @.TypeMapEntry.5135_from; char* to + }, ; 2709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5139_to, ; char* from + ptr @.TypeMapEntry.5138_from; char* to + }, ; 2710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5139_to, ; char* from + ptr @.TypeMapEntry.5138_from; char* to + }, ; 2711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5144_to, ; char* from + ptr @.TypeMapEntry.5143_from; char* to + }, ; 2712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5142_to, ; char* from + ptr @.TypeMapEntry.5141_from; char* to + }, ; 2713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5148_to, ; char* from + ptr @.TypeMapEntry.5147_from; char* to + }, ; 2714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5146_to, ; char* from + ptr @.TypeMapEntry.5145_from; char* to + }, ; 2715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5150_to, ; char* from + ptr @.TypeMapEntry.5149_from; char* to + }, ; 2716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5152_to, ; char* from + ptr @.TypeMapEntry.5151_from; char* to + }, ; 2717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5152_to, ; char* from + ptr @.TypeMapEntry.5151_from; char* to + }, ; 2718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5155_to, ; char* from + ptr @.TypeMapEntry.5154_from; char* to + }, ; 2719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5155_to, ; char* from + ptr @.TypeMapEntry.5154_from; char* to + }, ; 2720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5171_to, ; char* from + ptr @.TypeMapEntry.5170_from; char* to + }, ; 2721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5171_to, ; char* from + ptr @.TypeMapEntry.5170_from; char* to + }, ; 2722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5158_to, ; char* from + ptr @.TypeMapEntry.5157_from; char* to + }, ; 2723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5158_to, ; char* from + ptr @.TypeMapEntry.5157_from; char* to + }, ; 2724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5161_to, ; char* from + ptr null; char* to + }, ; 2725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5161_to, ; char* from + ptr null; char* to + }, ; 2726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5169_to, ; char* from + ptr @.TypeMapEntry.5168_from; char* to + }, ; 2727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5164_to, ; char* from + ptr null; char* to + }, ; 2728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5164_to, ; char* from + ptr null; char* to + }, ; 2729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5174_to, ; char* from + ptr @.TypeMapEntry.5173_from; char* to + }, ; 2730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5174_to, ; char* from + ptr @.TypeMapEntry.5173_from; char* to + }, ; 2731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5177_to, ; char* from + ptr @.TypeMapEntry.5176_from; char* to + }, ; 2732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5196_to, ; char* from + ptr @.TypeMapEntry.5195_from; char* to + }, ; 2733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5194_to, ; char* from + ptr @.TypeMapEntry.5193_from; char* to + }, ; 2734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5228_to, ; char* from + ptr null; char* to + }, ; 2735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5228_to, ; char* from + ptr null; char* to + }, ; 2736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5200_to, ; char* from + ptr @.TypeMapEntry.5199_from; char* to + }, ; 2737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5198_to, ; char* from + ptr @.TypeMapEntry.5197_from; char* to + }, ; 2738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5202_to, ; char* from + ptr @.TypeMapEntry.5201_from; char* to + }, ; 2739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5202_to, ; char* from + ptr @.TypeMapEntry.5201_from; char* to + }, ; 2740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5234_to, ; char* from + ptr @.TypeMapEntry.5233_from; char* to + }, ; 2741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5236_to, ; char* from + ptr @.TypeMapEntry.5235_from; char* to + }, ; 2742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5238_to, ; char* from + ptr @.TypeMapEntry.5237_from; char* to + }, ; 2743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5238_to, ; char* from + ptr @.TypeMapEntry.5237_from; char* to + }, ; 2744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5241_to, ; char* from + ptr @.TypeMapEntry.5240_from; char* to + }, ; 2745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5243_to, ; char* from + ptr @.TypeMapEntry.5242_from; char* to + }, ; 2746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5245_to, ; char* from + ptr @.TypeMapEntry.5244_from; char* to + }, ; 2747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5247_to, ; char* from + ptr @.TypeMapEntry.5246_from; char* to + }, ; 2748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5251_to, ; char* from + ptr @.TypeMapEntry.5250_from; char* to + }, ; 2749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5249_to, ; char* from + ptr @.TypeMapEntry.5248_from; char* to + }, ; 2750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5253_to, ; char* from + ptr @.TypeMapEntry.5252_from; char* to + }, ; 2751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5231_to, ; char* from + ptr null; char* to + }, ; 2752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5231_to, ; char* from + ptr null; char* to + }, ; 2753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5257_to, ; char* from + ptr @.TypeMapEntry.5256_from; char* to + }, ; 2754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5255_to, ; char* from + ptr @.TypeMapEntry.5254_from; char* to + }, ; 2755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5259_to, ; char* from + ptr @.TypeMapEntry.5258_from; char* to + }, ; 2756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5274_to, ; char* from + ptr @.TypeMapEntry.5273_from; char* to + }, ; 2757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5261_to, ; char* from + ptr @.TypeMapEntry.5260_from; char* to + }, ; 2758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5263_to, ; char* from + ptr @.TypeMapEntry.5262_from; char* to + }, ; 2759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5263_to, ; char* from + ptr @.TypeMapEntry.5262_from; char* to + }, ; 2760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5266_to, ; char* from + ptr @.TypeMapEntry.5265_from; char* to + }, ; 2761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5268_to, ; char* from + ptr @.TypeMapEntry.5267_from; char* to + }, ; 2762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5270_to, ; char* from + ptr @.TypeMapEntry.5269_from; char* to + }, ; 2763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5272_to, ; char* from + ptr @.TypeMapEntry.5271_from; char* to + }, ; 2764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5276_to, ; char* from + ptr @.TypeMapEntry.5275_from; char* to + }, ; 2765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5278_to, ; char* from + ptr @.TypeMapEntry.5277_from; char* to + }, ; 2766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5280_to, ; char* from + ptr @.TypeMapEntry.5279_from; char* to + }, ; 2767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5280_to, ; char* from + ptr @.TypeMapEntry.5279_from; char* to + }, ; 2768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5285_to, ; char* from + ptr @.TypeMapEntry.5284_from; char* to + }, ; 2769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5283_to, ; char* from + ptr @.TypeMapEntry.5282_from; char* to + }, ; 2770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5310_to, ; char* from + ptr @.TypeMapEntry.5309_from; char* to + }, ; 2771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5287_to, ; char* from + ptr @.TypeMapEntry.5286_from; char* to + }, ; 2772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5289_to, ; char* from + ptr null; char* to + }, ; 2773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5289_to, ; char* from + ptr null; char* to + }, ; 2774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5292_to, ; char* from + ptr null; char* to + }, ; 2775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5292_to, ; char* from + ptr null; char* to + }, ; 2776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5295_to, ; char* from + ptr null; char* to + }, ; 2777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5295_to, ; char* from + ptr null; char* to + }, ; 2778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5298_to, ; char* from + ptr null; char* to + }, ; 2779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5298_to, ; char* from + ptr null; char* to + }, ; 2780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5301_to, ; char* from + ptr null; char* to + }, ; 2781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5301_to, ; char* from + ptr null; char* to + }, ; 2782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5304_to, ; char* from + ptr null; char* to + }, ; 2783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5304_to, ; char* from + ptr null; char* to + }, ; 2784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5307_to, ; char* from + ptr null; char* to + }, ; 2785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5307_to, ; char* from + ptr null; char* to + }, ; 2786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5205_to, ; char* from + ptr @.TypeMapEntry.5204_from; char* to + }, ; 2787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5205_to, ; char* from + ptr @.TypeMapEntry.5204_from; char* to + }, ; 2788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5208_to, ; char* from + ptr @.TypeMapEntry.5207_from; char* to + }, ; 2789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5210_to, ; char* from + ptr @.TypeMapEntry.5209_from; char* to + }, ; 2790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5212_to, ; char* from + ptr @.TypeMapEntry.5211_from; char* to + }, ; 2791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5214_to, ; char* from + ptr @.TypeMapEntry.5213_from; char* to + }, ; 2792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5214_to, ; char* from + ptr @.TypeMapEntry.5213_from; char* to + }, ; 2793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5217_to, ; char* from + ptr @.TypeMapEntry.5216_from; char* to + }, ; 2794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5217_to, ; char* from + ptr @.TypeMapEntry.5216_from; char* to + }, ; 2795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5220_to, ; char* from + ptr @.TypeMapEntry.5219_from; char* to + }, ; 2796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5222_to, ; char* from + ptr @.TypeMapEntry.5221_from; char* to + }, ; 2797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5224_to, ; char* from + ptr @.TypeMapEntry.5223_from; char* to + }, ; 2798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5226_to, ; char* from + ptr @.TypeMapEntry.5225_from; char* to + }, ; 2799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5367_to, ; char* from + ptr @.TypeMapEntry.5366_from; char* to + }, ; 2800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5365_to, ; char* from + ptr @.TypeMapEntry.5364_from; char* to + }, ; 2801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5387_to, ; char* from + ptr @.TypeMapEntry.5386_from; char* to + }, ; 2802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5369_to, ; char* from + ptr null; char* to + }, ; 2803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5369_to, ; char* from + ptr null; char* to + }, ; 2804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5374_to, ; char* from + ptr null; char* to + }, ; 2805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5374_to, ; char* from + ptr null; char* to + }, ; 2806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5379_to, ; char* from + ptr null; char* to + }, ; 2807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5379_to, ; char* from + ptr null; char* to + }, ; 2808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5384_to, ; char* from + ptr null; char* to + }, ; 2809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5384_to, ; char* from + ptr null; char* to + }, ; 2810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5389_to, ; char* from + ptr @.TypeMapEntry.5388_from; char* to + }, ; 2811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5405_to, ; char* from + ptr @.TypeMapEntry.5404_from; char* to + }, ; 2812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5407_to, ; char* from + ptr @.TypeMapEntry.5406_from; char* to + }, ; 2813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5409_to, ; char* from + ptr @.TypeMapEntry.5408_from; char* to + }, ; 2814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5411_to, ; char* from + ptr @.TypeMapEntry.5410_from; char* to + }, ; 2815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5424_to, ; char* from + ptr @.TypeMapEntry.5423_from; char* to + }, ; 2816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5422_to, ; char* from + ptr @.TypeMapEntry.5421_from; char* to + }, ; 2817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5426_to, ; char* from + ptr @.TypeMapEntry.5425_from; char* to + }, ; 2818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5428_to, ; char* from + ptr @.TypeMapEntry.5427_from; char* to + }, ; 2819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5430_to, ; char* from + ptr @.TypeMapEntry.5429_from; char* to + }, ; 2820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5434_to, ; char* from + ptr @.TypeMapEntry.5433_from; char* to + }, ; 2821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5432_to, ; char* from + ptr @.TypeMapEntry.5431_from; char* to + }, ; 2822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5417_to, ; char* from + ptr null; char* to + }, ; 2823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5417_to, ; char* from + ptr null; char* to + }, ; 2824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5440_to, ; char* from + ptr @.TypeMapEntry.5439_from; char* to + }, ; 2825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5436_to, ; char* from + ptr @.TypeMapEntry.5435_from; char* to + }, ; 2826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5438_to, ; char* from + ptr @.TypeMapEntry.5437_from; char* to + }, ; 2827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5447_to, ; char* from + ptr @.TypeMapEntry.5446_from; char* to + }, ; 2828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5449_to, ; char* from + ptr @.TypeMapEntry.5448_from; char* to + }, ; 2829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5477_to, ; char* from + ptr @.TypeMapEntry.5476_from; char* to + }, ; 2830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5475_to, ; char* from + ptr @.TypeMapEntry.5474_from; char* to + }, ; 2831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5481_to, ; char* from + ptr @.TypeMapEntry.5480_from; char* to + }, ; 2832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5479_to, ; char* from + ptr @.TypeMapEntry.5478_from; char* to + }, ; 2833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5485_to, ; char* from + ptr @.TypeMapEntry.5484_from; char* to + }, ; 2834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5483_to, ; char* from + ptr @.TypeMapEntry.5482_from; char* to + }, ; 2835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5490_to, ; char* from + ptr @.TypeMapEntry.5489_from; char* to + }, ; 2836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5487_to, ; char* from + ptr @.TypeMapEntry.5486_from; char* to + }, ; 2837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5487_to, ; char* from + ptr @.TypeMapEntry.5486_from; char* to + }, ; 2838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5492_to, ; char* from + ptr @.TypeMapEntry.5491_from; char* to + }, ; 2839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5492_to, ; char* from + ptr @.TypeMapEntry.5491_from; char* to + }, ; 2840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5497_to, ; char* from + ptr @.TypeMapEntry.5496_from; char* to + }, ; 2841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5495_to, ; char* from + ptr @.TypeMapEntry.5494_from; char* to + }, ; 2842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5557_to, ; char* from + ptr @.TypeMapEntry.5556_from; char* to + }, ; 2843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5557_to, ; char* from + ptr @.TypeMapEntry.5556_from; char* to + }, ; 2844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5576_to, ; char* from + ptr @.TypeMapEntry.5575_from; char* to + }, ; 2845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5710_to, ; char* from + ptr @.TypeMapEntry.5709_from; char* to + }, ; 2846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5708_to, ; char* from + ptr @.TypeMapEntry.5707_from; char* to + }, ; 2847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5712_to, ; char* from + ptr @.TypeMapEntry.5711_from; char* to + }, ; 2848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5714_to, ; char* from + ptr @.TypeMapEntry.5713_from; char* to + }, ; 2849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5716_to, ; char* from + ptr @.TypeMapEntry.5715_from; char* to + }, ; 2850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5732_to, ; char* from + ptr @.TypeMapEntry.5731_from; char* to + }, ; 2851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5718_to, ; char* from + ptr @.TypeMapEntry.5717_from; char* to + }, ; 2852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5720_to, ; char* from + ptr @.TypeMapEntry.5719_from; char* to + }, ; 2853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5722_to, ; char* from + ptr @.TypeMapEntry.5721_from; char* to + }, ; 2854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5724_to, ; char* from + ptr @.TypeMapEntry.5723_from; char* to + }, ; 2855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5726_to, ; char* from + ptr @.TypeMapEntry.5725_from; char* to + }, ; 2856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5728_to, ; char* from + ptr @.TypeMapEntry.5727_from; char* to + }, ; 2857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5730_to, ; char* from + ptr @.TypeMapEntry.5729_from; char* to + }, ; 2858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5738_to, ; char* from + ptr @.TypeMapEntry.5737_from; char* to + }, ; 2859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5734_to, ; char* from + ptr @.TypeMapEntry.5733_from; char* to + }, ; 2860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5736_to, ; char* from + ptr @.TypeMapEntry.5735_from; char* to + }, ; 2861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5742_to, ; char* from + ptr @.TypeMapEntry.5741_from; char* to + }, ; 2862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5740_to, ; char* from + ptr @.TypeMapEntry.5739_from; char* to + }, ; 2863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5780_to, ; char* from + ptr @.TypeMapEntry.5779_from; char* to + }, ; 2864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5744_to, ; char* from + ptr @.TypeMapEntry.5743_from; char* to + }, ; 2865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5761_to, ; char* from + ptr @.TypeMapEntry.5760_from; char* to + }, ; 2866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5746_to, ; char* from + ptr null; char* to + }, ; 2867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5746_to, ; char* from + ptr null; char* to + }, ; 2868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5763_to, ; char* from + ptr @.TypeMapEntry.5762_from; char* to + }, ; 2869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5765_to, ; char* from + ptr @.TypeMapEntry.5764_from; char* to + }, ; 2870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5767_to, ; char* from + ptr @.TypeMapEntry.5766_from; char* to + }, ; 2871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5769_to, ; char* from + ptr @.TypeMapEntry.5768_from; char* to + }, ; 2872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5769_to, ; char* from + ptr @.TypeMapEntry.5768_from; char* to + }, ; 2873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5772_to, ; char* from + ptr @.TypeMapEntry.5771_from; char* to + }, ; 2874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5772_to, ; char* from + ptr @.TypeMapEntry.5771_from; char* to + }, ; 2875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5751_to, ; char* from + ptr null; char* to + }, ; 2876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5751_to, ; char* from + ptr null; char* to + }, ; 2877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5756_to, ; char* from + ptr null; char* to + }, ; 2878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5756_to, ; char* from + ptr null; char* to + }, ; 2879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5775_to, ; char* from + ptr @.TypeMapEntry.5774_from; char* to + }, ; 2880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5777_to, ; char* from + ptr @.TypeMapEntry.5776_from; char* to + }, ; 2881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5777_to, ; char* from + ptr @.TypeMapEntry.5776_from; char* to + }, ; 2882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5784_to, ; char* from + ptr @.TypeMapEntry.5783_from; char* to + }, ; 2883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5782_to, ; char* from + ptr @.TypeMapEntry.5781_from; char* to + }, ; 2884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5788_to, ; char* from + ptr @.TypeMapEntry.5787_from; char* to + }, ; 2885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5786_to, ; char* from + ptr @.TypeMapEntry.5785_from; char* to + }, ; 2886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5790_to, ; char* from + ptr @.TypeMapEntry.5789_from; char* to + }, ; 2887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5792_to, ; char* from + ptr @.TypeMapEntry.5791_from; char* to + }, ; 2888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5507_to, ; char* from + ptr @.TypeMapEntry.5506_from; char* to + }, ; 2889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5511_to, ; char* from + ptr @.TypeMapEntry.5510_from; char* to + }, ; 2890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5509_to, ; char* from + ptr @.TypeMapEntry.5508_from; char* to + }, ; 2891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5513_to, ; char* from + ptr @.TypeMapEntry.5512_from; char* to + }, ; 2892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5515_to, ; char* from + ptr @.TypeMapEntry.5514_from; char* to + }, ; 2893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5517_to, ; char* from + ptr @.TypeMapEntry.5516_from; char* to + }, ; 2894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5519_to, ; char* from + ptr @.TypeMapEntry.5518_from; char* to + }, ; 2895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5521_to, ; char* from + ptr @.TypeMapEntry.5520_from; char* to + }, ; 2896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5523_to, ; char* from + ptr @.TypeMapEntry.5522_from; char* to + }, ; 2897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5525_to, ; char* from + ptr @.TypeMapEntry.5524_from; char* to + }, ; 2898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5529_to, ; char* from + ptr @.TypeMapEntry.5528_from; char* to + }, ; 2899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5527_to, ; char* from + ptr @.TypeMapEntry.5526_from; char* to + }, ; 2900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5531_to, ; char* from + ptr @.TypeMapEntry.5530_from; char* to + }, ; 2901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5533_to, ; char* from + ptr @.TypeMapEntry.5532_from; char* to + }, ; 2902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5537_to, ; char* from + ptr @.TypeMapEntry.5536_from; char* to + }, ; 2903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5535_to, ; char* from + ptr @.TypeMapEntry.5534_from; char* to + }, ; 2904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5539_to, ; char* from + ptr @.TypeMapEntry.5538_from; char* to + }, ; 2905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5541_to, ; char* from + ptr @.TypeMapEntry.5540_from; char* to + }, ; 2906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5545_to, ; char* from + ptr @.TypeMapEntry.5544_from; char* to + }, ; 2907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5543_to, ; char* from + ptr @.TypeMapEntry.5542_from; char* to + }, ; 2908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5547_to, ; char* from + ptr @.TypeMapEntry.5546_from; char* to + }, ; 2909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5549_to, ; char* from + ptr @.TypeMapEntry.5548_from; char* to + }, ; 2910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5553_to, ; char* from + ptr @.TypeMapEntry.5552_from; char* to + }, ; 2911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5551_to, ; char* from + ptr @.TypeMapEntry.5550_from; char* to + }, ; 2912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5555_to, ; char* from + ptr @.TypeMapEntry.5554_from; char* to + }, ; 2913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5560_to, ; char* from + ptr @.TypeMapEntry.5559_from; char* to + }, ; 2914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5564_to, ; char* from + ptr @.TypeMapEntry.5563_from; char* to + }, ; 2915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5562_to, ; char* from + ptr @.TypeMapEntry.5561_from; char* to + }, ; 2916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5572_to, ; char* from + ptr @.TypeMapEntry.5571_from; char* to + }, ; 2917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5566_to, ; char* from + ptr @.TypeMapEntry.5565_from; char* to + }, ; 2918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5568_to, ; char* from + ptr @.TypeMapEntry.5567_from; char* to + }, ; 2919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5570_to, ; char* from + ptr @.TypeMapEntry.5569_from; char* to + }, ; 2920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5574_to, ; char* from + ptr @.TypeMapEntry.5573_from; char* to + }, ; 2921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5592_to, ; char* from + ptr @.TypeMapEntry.5591_from; char* to + }, ; 2922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5590_to, ; char* from + ptr @.TypeMapEntry.5589_from; char* to + }, ; 2923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5594_to, ; char* from + ptr @.TypeMapEntry.5593_from; char* to + }, ; 2924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5596_to, ; char* from + ptr @.TypeMapEntry.5595_from; char* to + }, ; 2925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5600_to, ; char* from + ptr @.TypeMapEntry.5599_from; char* to + }, ; 2926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5598_to, ; char* from + ptr @.TypeMapEntry.5597_from; char* to + }, ; 2927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5602_to, ; char* from + ptr @.TypeMapEntry.5601_from; char* to + }, ; 2928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5604_to, ; char* from + ptr @.TypeMapEntry.5603_from; char* to + }, ; 2929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5683_to, ; char* from + ptr @.TypeMapEntry.5682_from; char* to + }, ; 2930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5608_to, ; char* from + ptr null; char* to + }, ; 2931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5608_to, ; char* from + ptr null; char* to + }, ; 2932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5606_to, ; char* from + ptr @.TypeMapEntry.5605_from; char* to + }, ; 2933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5613_to, ; char* from + ptr null; char* to + }, ; 2934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5613_to, ; char* from + ptr null; char* to + }, ; 2935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5618_to, ; char* from + ptr null; char* to + }, ; 2936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5618_to, ; char* from + ptr null; char* to + }, ; 2937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5623_to, ; char* from + ptr null; char* to + }, ; 2938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5623_to, ; char* from + ptr null; char* to + }, ; 2939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5628_to, ; char* from + ptr null; char* to + }, ; 2940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5628_to, ; char* from + ptr null; char* to + }, ; 2941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5633_to, ; char* from + ptr null; char* to + }, ; 2942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5633_to, ; char* from + ptr null; char* to + }, ; 2943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5638_to, ; char* from + ptr null; char* to + }, ; 2944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5638_to, ; char* from + ptr null; char* to + }, ; 2945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5643_to, ; char* from + ptr null; char* to + }, ; 2946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5643_to, ; char* from + ptr null; char* to + }, ; 2947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5648_to, ; char* from + ptr null; char* to + }, ; 2948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5648_to, ; char* from + ptr null; char* to + }, ; 2949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5653_to, ; char* from + ptr null; char* to + }, ; 2950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5653_to, ; char* from + ptr null; char* to + }, ; 2951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5658_to, ; char* from + ptr null; char* to + }, ; 2952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5658_to, ; char* from + ptr null; char* to + }, ; 2953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5663_to, ; char* from + ptr null; char* to + }, ; 2954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5663_to, ; char* from + ptr null; char* to + }, ; 2955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5668_to, ; char* from + ptr null; char* to + }, ; 2956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5668_to, ; char* from + ptr null; char* to + }, ; 2957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5673_to, ; char* from + ptr null; char* to + }, ; 2958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5673_to, ; char* from + ptr null; char* to + }, ; 2959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5678_to, ; char* from + ptr null; char* to + }, ; 2960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5678_to, ; char* from + ptr null; char* to + }, ; 2961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5685_to, ; char* from + ptr @.TypeMapEntry.5684_from; char* to + }, ; 2962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5578_to, ; char* from + ptr @.TypeMapEntry.5577_from; char* to + }, ; 2963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5580_to, ; char* from + ptr @.TypeMapEntry.5579_from; char* to + }, ; 2964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5582_to, ; char* from + ptr @.TypeMapEntry.5581_from; char* to + }, ; 2965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5584_to, ; char* from + ptr @.TypeMapEntry.5583_from; char* to + }, ; 2966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5586_to, ; char* from + ptr @.TypeMapEntry.5585_from; char* to + }, ; 2967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5588_to, ; char* from + ptr @.TypeMapEntry.5587_from; char* to + }, ; 2968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5687_to, ; char* from + ptr @.TypeMapEntry.5686_from; char* to + }, ; 2969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5691_to, ; char* from + ptr @.TypeMapEntry.5690_from; char* to + }, ; 2970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5689_to, ; char* from + ptr @.TypeMapEntry.5688_from; char* to + }, ; 2971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5695_to, ; char* from + ptr @.TypeMapEntry.5694_from; char* to + }, ; 2972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5693_to, ; char* from + ptr @.TypeMapEntry.5692_from; char* to + }, ; 2973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5697_to, ; char* from + ptr @.TypeMapEntry.5696_from; char* to + }, ; 2974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5697_to, ; char* from + ptr @.TypeMapEntry.5696_from; char* to + }, ; 2975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5702_to, ; char* from + ptr @.TypeMapEntry.5701_from; char* to + }, ; 2976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5700_to, ; char* from + ptr @.TypeMapEntry.5699_from; char* to + }, ; 2977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5704_to, ; char* from + ptr @.TypeMapEntry.5703_from; char* to + }, ; 2978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5706_to, ; char* from + ptr @.TypeMapEntry.5705_from; char* to + }, ; 2979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5794_to, ; char* from + ptr @.TypeMapEntry.5793_from; char* to + }, ; 2980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5811_to, ; char* from + ptr @.TypeMapEntry.5810_from; char* to + }, ; 2981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5813_to, ; char* from + ptr @.TypeMapEntry.5812_from; char* to + }, ; 2982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5815_to, ; char* from + ptr @.TypeMapEntry.5814_from; char* to + }, ; 2983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5834_to, ; char* from + ptr @.TypeMapEntry.5833_from; char* to + }, ; 2984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5817_to, ; char* from + ptr null; char* to + }, ; 2985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5817_to, ; char* from + ptr null; char* to + }, ; 2986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5820_to, ; char* from + ptr null; char* to + }, ; 2987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5820_to, ; char* from + ptr null; char* to + }, ; 2988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5823_to, ; char* from + ptr null; char* to + }, ; 2989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5823_to, ; char* from + ptr null; char* to + }, ; 2990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5826_to, ; char* from + ptr null; char* to + }, ; 2991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5826_to, ; char* from + ptr null; char* to + }, ; 2992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5831_to, ; char* from + ptr null; char* to + }, ; 2993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5831_to, ; char* from + ptr null; char* to + }, ; 2994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5836_to, ; char* from + ptr @.TypeMapEntry.5835_from; char* to + }, ; 2995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5838_to, ; char* from + ptr @.TypeMapEntry.5837_from; char* to + }, ; 2996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5840_to, ; char* from + ptr @.TypeMapEntry.5839_from; char* to + }, ; 2997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5842_to, ; char* from + ptr @.TypeMapEntry.5841_from; char* to + }, ; 2998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5844_to, ; char* from + ptr @.TypeMapEntry.5843_from; char* to + }, ; 2999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5796_to, ; char* from + ptr @.TypeMapEntry.5795_from; char* to + }, ; 3000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5798_to, ; char* from + ptr @.TypeMapEntry.5797_from; char* to + }, ; 3001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5798_to, ; char* from + ptr @.TypeMapEntry.5797_from; char* to + }, ; 3002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5801_to, ; char* from + ptr @.TypeMapEntry.5800_from; char* to + }, ; 3003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5801_to, ; char* from + ptr @.TypeMapEntry.5800_from; char* to + }, ; 3004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5804_to, ; char* from + ptr @.TypeMapEntry.5803_from; char* to + }, ; 3005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5806_to, ; char* from + ptr @.TypeMapEntry.5805_from; char* to + }, ; 3006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5806_to, ; char* from + ptr @.TypeMapEntry.5805_from; char* to + }, ; 3007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5809_to, ; char* from + ptr @.TypeMapEntry.5808_from; char* to + }, ; 3008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5846_to, ; char* from + ptr @.TypeMapEntry.5845_from; char* to + }, ; 3009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5846_to, ; char* from + ptr @.TypeMapEntry.5845_from; char* to + }, ; 3010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5852_to, ; char* from + ptr @.TypeMapEntry.5851_from; char* to + }, ; 3011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5854_to, ; char* from + ptr @.TypeMapEntry.5853_from; char* to + }, ; 3012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5856_to, ; char* from + ptr @.TypeMapEntry.5855_from; char* to + }, ; 3013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5858_to, ; char* from + ptr @.TypeMapEntry.5857_from; char* to + }, ; 3014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5860_to, ; char* from + ptr @.TypeMapEntry.5859_from; char* to + }, ; 3015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5862_to, ; char* from + ptr @.TypeMapEntry.5861_from; char* to + }, ; 3016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5864_to, ; char* from + ptr @.TypeMapEntry.5863_from; char* to + }, ; 3017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5866_to, ; char* from + ptr @.TypeMapEntry.5865_from; char* to + }, ; 3018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5868_to, ; char* from + ptr @.TypeMapEntry.5867_from; char* to + }, ; 3019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5870_to, ; char* from + ptr @.TypeMapEntry.5869_from; char* to + }, ; 3020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5849_to, ; char* from + ptr null; char* to + }, ; 3021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5849_to, ; char* from + ptr null; char* to + }, ; 3022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6213_to, ; char* from + ptr @.TypeMapEntry.6212_from; char* to + }, ; 3023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6215_to, ; char* from + ptr @.TypeMapEntry.6214_from; char* to + }, ; 3024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6217_to, ; char* from + ptr @.TypeMapEntry.6216_from; char* to + }, ; 3025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6219_to, ; char* from + ptr @.TypeMapEntry.6218_from; char* to + }, ; 3026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6221_to, ; char* from + ptr @.TypeMapEntry.6220_from; char* to + }, ; 3027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6223_to, ; char* from + ptr @.TypeMapEntry.6222_from; char* to + }, ; 3028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6225_to, ; char* from + ptr @.TypeMapEntry.6224_from; char* to + }, ; 3029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6227_to, ; char* from + ptr @.TypeMapEntry.6226_from; char* to + }, ; 3030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6227_to, ; char* from + ptr @.TypeMapEntry.6226_from; char* to + }, ; 3031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6230_to, ; char* from + ptr @.TypeMapEntry.6229_from; char* to + }, ; 3032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6232_to, ; char* from + ptr @.TypeMapEntry.6231_from; char* to + }, ; 3033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6234_to, ; char* from + ptr @.TypeMapEntry.6233_from; char* to + }, ; 3034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6238_to, ; char* from + ptr @.TypeMapEntry.6237_from; char* to + }, ; 3035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6236_to, ; char* from + ptr @.TypeMapEntry.6235_from; char* to + }, ; 3036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6240_to, ; char* from + ptr @.TypeMapEntry.6239_from; char* to + }, ; 3037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6242_to, ; char* from + ptr @.TypeMapEntry.6241_from; char* to + }, ; 3038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6244_to, ; char* from + ptr @.TypeMapEntry.6243_from; char* to + }, ; 3039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6246_to, ; char* from + ptr @.TypeMapEntry.6245_from; char* to + }, ; 3040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6248_to, ; char* from + ptr @.TypeMapEntry.6247_from; char* to + }, ; 3041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6250_to, ; char* from + ptr @.TypeMapEntry.6249_from; char* to + }, ; 3042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6252_to, ; char* from + ptr @.TypeMapEntry.6251_from; char* to + }, ; 3043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6254_to, ; char* from + ptr @.TypeMapEntry.6253_from; char* to + }, ; 3044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6259_to, ; char* from + ptr @.TypeMapEntry.6258_from; char* to + }, ; 3045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6256_to, ; char* from + ptr null; char* to + }, ; 3046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6256_to, ; char* from + ptr null; char* to + }, ; 3047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6264_to, ; char* from + ptr @.TypeMapEntry.6263_from; char* to + }, ; 3048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6261_to, ; char* from + ptr null; char* to + }, ; 3049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6261_to, ; char* from + ptr null; char* to + }, ; 3050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6266_to, ; char* from + ptr @.TypeMapEntry.6265_from; char* to + }, ; 3051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6283_to, ; char* from + ptr @.TypeMapEntry.6282_from; char* to + }, ; 3052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6268_to, ; char* from + ptr null; char* to + }, ; 3053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6268_to, ; char* from + ptr null; char* to + }, ; 3054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6271_to, ; char* from + ptr null; char* to + }, ; 3055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6271_to, ; char* from + ptr null; char* to + }, ; 3056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6274_to, ; char* from + ptr null; char* to + }, ; 3057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6274_to, ; char* from + ptr null; char* to + }, ; 3058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6277_to, ; char* from + ptr null; char* to + }, ; 3059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6277_to, ; char* from + ptr null; char* to + }, ; 3060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6280_to, ; char* from + ptr null; char* to + }, ; 3061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6280_to, ; char* from + ptr null; char* to + }, ; 3062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6285_to, ; char* from + ptr @.TypeMapEntry.6284_from; char* to + }, ; 3063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6287_to, ; char* from + ptr @.TypeMapEntry.6286_from; char* to + }, ; 3064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6289_to, ; char* from + ptr @.TypeMapEntry.6288_from; char* to + }, ; 3065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6291_to, ; char* from + ptr @.TypeMapEntry.6290_from; char* to + }, ; 3066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5876_to, ; char* from + ptr null; char* to + }, ; 3067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5876_to, ; char* from + ptr null; char* to + }, ; 3068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5876_to, ; char* from + ptr null; char* to + }, ; 3069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5874_to, ; char* from + ptr @.TypeMapEntry.5873_from; char* to + }, ; 3070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5880_to, ; char* from + ptr @.TypeMapEntry.5879_from; char* to + }, ; 3071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5882_to, ; char* from + ptr @.TypeMapEntry.5881_from; char* to + }, ; 3072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5884_to, ; char* from + ptr @.TypeMapEntry.5883_from; char* to + }, ; 3073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5886_to, ; char* from + ptr @.TypeMapEntry.5885_from; char* to + }, ; 3074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5893_to, ; char* from + ptr @.TypeMapEntry.5892_from; char* to + }, ; 3075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5890_to, ; char* from + ptr @.TypeMapEntry.5889_from; char* to + }, ; 3076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5890_to, ; char* from + ptr @.TypeMapEntry.5889_from; char* to + }, ; 3077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5901_to, ; char* from + ptr @.TypeMapEntry.5900_from; char* to + }, ; 3078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5895_to, ; char* from + ptr @.TypeMapEntry.5894_from; char* to + }, ; 3079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5897_to, ; char* from + ptr @.TypeMapEntry.5896_from; char* to + }, ; 3080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5899_to, ; char* from + ptr @.TypeMapEntry.5898_from; char* to + }, ; 3081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5903_to, ; char* from + ptr @.TypeMapEntry.5902_from; char* to + }, ; 3082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5910_to, ; char* from + ptr @.TypeMapEntry.5909_from; char* to + }, ; 3083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5905_to, ; char* from + ptr null; char* to + }, ; 3084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5905_to, ; char* from + ptr null; char* to + }, ; 3085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5914_to, ; char* from + ptr @.TypeMapEntry.5913_from; char* to + }, ; 3086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5914_to, ; char* from + ptr @.TypeMapEntry.5913_from; char* to + }, ; 3087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5912_to, ; char* from + ptr @.TypeMapEntry.5911_from; char* to + }, ; 3088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5917_to, ; char* from + ptr @.TypeMapEntry.5916_from; char* to + }, ; 3089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5919_to, ; char* from + ptr @.TypeMapEntry.5918_from; char* to + }, ; 3090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5919_to, ; char* from + ptr @.TypeMapEntry.5918_from; char* to + }, ; 3091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5922_to, ; char* from + ptr @.TypeMapEntry.5921_from; char* to + }, ; 3092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5924_to, ; char* from + ptr @.TypeMapEntry.5923_from; char* to + }, ; 3093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5926_to, ; char* from + ptr @.TypeMapEntry.5925_from; char* to + }, ; 3094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5932_to, ; char* from + ptr @.TypeMapEntry.5931_from; char* to + }, ; 3095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5928_to, ; char* from + ptr @.TypeMapEntry.5927_from; char* to + }, ; 3096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5930_to, ; char* from + ptr @.TypeMapEntry.5929_from; char* to + }, ; 3097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5936_to, ; char* from + ptr @.TypeMapEntry.5935_from; char* to + }, ; 3098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5934_to, ; char* from + ptr @.TypeMapEntry.5933_from; char* to + }, ; 3099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5938_to, ; char* from + ptr @.TypeMapEntry.5937_from; char* to + }, ; 3100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5942_to, ; char* from + ptr @.TypeMapEntry.5941_from; char* to + }, ; 3101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5942_to, ; char* from + ptr @.TypeMapEntry.5941_from; char* to + }, ; 3102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5945_to, ; char* from + ptr @.TypeMapEntry.5944_from; char* to + }, ; 3103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5952_to, ; char* from + ptr @.TypeMapEntry.5951_from; char* to + }, ; 3104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5947_to, ; char* from + ptr null; char* to + }, ; 3105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5947_to, ; char* from + ptr null; char* to + }, ; 3106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5957_to, ; char* from + ptr @.TypeMapEntry.5956_from; char* to + }, ; 3107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5954_to, ; char* from + ptr null; char* to + }, ; 3108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5954_to, ; char* from + ptr null; char* to + }, ; 3109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5959_to, ; char* from + ptr @.TypeMapEntry.5958_from; char* to + }, ; 3110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5961_to, ; char* from + ptr @.TypeMapEntry.5960_from; char* to + }, ; 3111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5979_to, ; char* from + ptr null; char* to + }, ; 3112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5979_to, ; char* from + ptr null; char* to + }, ; 3113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5981_to, ; char* from + ptr null; char* to + }, ; 3114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5981_to, ; char* from + ptr null; char* to + }, ; 3115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5985_to, ; char* from + ptr null; char* to + }, ; 3116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5985_to, ; char* from + ptr null; char* to + }, ; 3117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6000_to, ; char* from + ptr @.TypeMapEntry.5999_from; char* to + }, ; 3118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6002_to, ; char* from + ptr @.TypeMapEntry.6001_from; char* to + }, ; 3119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6004_to, ; char* from + ptr @.TypeMapEntry.6003_from; char* to + }, ; 3120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6006_to, ; char* from + ptr @.TypeMapEntry.6005_from; char* to + }, ; 3121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6008_to, ; char* from + ptr @.TypeMapEntry.6007_from; char* to + }, ; 3122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6018_to, ; char* from + ptr @.TypeMapEntry.6017_from; char* to + }, ; 3123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6010_to, ; char* from + ptr null; char* to + }, ; 3124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6010_to, ; char* from + ptr null; char* to + }, ; 3125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6013_to, ; char* from + ptr null; char* to + }, ; 3126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6013_to, ; char* from + ptr null; char* to + }, ; 3127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6020_to, ; char* from + ptr @.TypeMapEntry.6019_from; char* to + }, ; 3128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6022_to, ; char* from + ptr @.TypeMapEntry.6021_from; char* to + }, ; 3129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6024_to, ; char* from + ptr @.TypeMapEntry.6023_from; char* to + }, ; 3130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5988_to, ; char* from + ptr null; char* to + }, ; 3131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5988_to, ; char* from + ptr null; char* to + }, ; 3132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6026_to, ; char* from + ptr @.TypeMapEntry.6025_from; char* to + }, ; 3133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6039_to, ; char* from + ptr @.TypeMapEntry.6038_from; char* to + }, ; 3134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6028_to, ; char* from + ptr @.TypeMapEntry.6027_from; char* to + }, ; 3135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6030_to, ; char* from + ptr @.TypeMapEntry.6029_from; char* to + }, ; 3136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6032_to, ; char* from + ptr @.TypeMapEntry.6031_from; char* to + }, ; 3137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6034_to, ; char* from + ptr null; char* to + }, ; 3138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6034_to, ; char* from + ptr null; char* to + }, ; 3139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6041_to, ; char* from + ptr @.TypeMapEntry.6040_from; char* to + }, ; 3140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6043_to, ; char* from + ptr @.TypeMapEntry.6042_from; char* to + }, ; 3141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5991_to, ; char* from + ptr null; char* to + }, ; 3142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5991_to, ; char* from + ptr null; char* to + }, ; 3143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5993_to, ; char* from + ptr null; char* to + }, ; 3144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5993_to, ; char* from + ptr null; char* to + }, ; 3145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5996_to, ; char* from + ptr null; char* to + }, ; 3146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5996_to, ; char* from + ptr null; char* to + }, ; 3147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6047_to, ; char* from + ptr @.TypeMapEntry.6046_from; char* to + }, ; 3148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6051_to, ; char* from + ptr @.TypeMapEntry.6050_from; char* to + }, ; 3149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6049_to, ; char* from + ptr @.TypeMapEntry.6048_from; char* to + }, ; 3150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6053_to, ; char* from + ptr @.TypeMapEntry.6052_from; char* to + }, ; 3151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6067_to, ; char* from + ptr @.TypeMapEntry.6066_from; char* to + }, ; 3152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6055_to, ; char* from + ptr null; char* to + }, ; 3153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6055_to, ; char* from + ptr null; char* to + }, ; 3154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6065_to, ; char* from + ptr @.TypeMapEntry.6064_from; char* to + }, ; 3155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6060_to, ; char* from + ptr null; char* to + }, ; 3156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6060_to, ; char* from + ptr null; char* to + }, ; 3157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6069_to, ; char* from + ptr @.TypeMapEntry.6068_from; char* to + }, ; 3158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6071_to, ; char* from + ptr @.TypeMapEntry.6070_from; char* to + }, ; 3159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6073_to, ; char* from + ptr @.TypeMapEntry.6072_from; char* to + }, ; 3160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6075_to, ; char* from + ptr @.TypeMapEntry.6074_from; char* to + }, ; 3161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6077_to, ; char* from + ptr @.TypeMapEntry.6076_from; char* to + }, ; 3162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6079_to, ; char* from + ptr @.TypeMapEntry.6078_from; char* to + }, ; 3163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6079_to, ; char* from + ptr @.TypeMapEntry.6078_from; char* to + }, ; 3164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6087_to, ; char* from + ptr @.TypeMapEntry.6086_from; char* to + }, ; 3165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6082_to, ; char* from + ptr null; char* to + }, ; 3166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6082_to, ; char* from + ptr null; char* to + }, ; 3167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6089_to, ; char* from + ptr @.TypeMapEntry.6088_from; char* to + }, ; 3168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6091_to, ; char* from + ptr @.TypeMapEntry.6090_from; char* to + }, ; 3169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6093_to, ; char* from + ptr @.TypeMapEntry.6092_from; char* to + }, ; 3170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6095_to, ; char* from + ptr @.TypeMapEntry.6094_from; char* to + }, ; 3171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6097_to, ; char* from + ptr @.TypeMapEntry.6096_from; char* to + }, ; 3172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6099_to, ; char* from + ptr @.TypeMapEntry.6098_from; char* to + }, ; 3173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6128_to, ; char* from + ptr @.TypeMapEntry.6127_from; char* to + }, ; 3174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6110_to, ; char* from + ptr null; char* to + }, ; 3175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6110_to, ; char* from + ptr null; char* to + }, ; 3176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6115_to, ; char* from + ptr null; char* to + }, ; 3177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6115_to, ; char* from + ptr null; char* to + }, ; 3178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6122_to, ; char* from + ptr @.TypeMapEntry.6121_from; char* to + }, ; 3179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6120_to, ; char* from + ptr @.TypeMapEntry.6119_from; char* to + }, ; 3180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6126_to, ; char* from + ptr @.TypeMapEntry.6125_from; char* to + }, ; 3181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6124_to, ; char* from + ptr @.TypeMapEntry.6123_from; char* to + }, ; 3182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6177_to, ; char* from + ptr @.TypeMapEntry.6176_from; char* to + }, ; 3183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6179_to, ; char* from + ptr @.TypeMapEntry.6178_from; char* to + }, ; 3184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6181_to, ; char* from + ptr @.TypeMapEntry.6180_from; char* to + }, ; 3185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6181_to, ; char* from + ptr @.TypeMapEntry.6180_from; char* to + }, ; 3186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6184_to, ; char* from + ptr @.TypeMapEntry.6183_from; char* to + }, ; 3187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6186_to, ; char* from + ptr @.TypeMapEntry.6185_from; char* to + }, ; 3188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6188_to, ; char* from + ptr @.TypeMapEntry.6187_from; char* to + }, ; 3189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6192_to, ; char* from + ptr @.TypeMapEntry.6191_from; char* to + }, ; 3190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6190_to, ; char* from + ptr @.TypeMapEntry.6189_from; char* to + }, ; 3191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6196_to, ; char* from + ptr @.TypeMapEntry.6195_from; char* to + }, ; 3192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6194_to, ; char* from + ptr @.TypeMapEntry.6193_from; char* to + }, ; 3193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6200_to, ; char* from + ptr @.TypeMapEntry.6199_from; char* to + }, ; 3194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6200_to, ; char* from + ptr @.TypeMapEntry.6199_from; char* to + }, ; 3195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6198_to, ; char* from + ptr @.TypeMapEntry.6197_from; char* to + }, ; 3196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6203_to, ; char* from + ptr @.TypeMapEntry.6202_from; char* to + }, ; 3197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6203_to, ; char* from + ptr @.TypeMapEntry.6202_from; char* to + }, ; 3198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6206_to, ; char* from + ptr @.TypeMapEntry.6205_from; char* to + }, ; 3199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6206_to, ; char* from + ptr @.TypeMapEntry.6205_from; char* to + }, ; 3200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6209_to, ; char* from + ptr @.TypeMapEntry.6208_from; char* to + }, ; 3201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6211_to, ; char* from + ptr @.TypeMapEntry.6210_from; char* to + }, ; 3202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5940_to, ; char* from + ptr @.TypeMapEntry.5939_from; char* to + }, ; 3203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5963_to, ; char* from + ptr @.TypeMapEntry.5962_from; char* to + }, ; 3204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5965_to, ; char* from + ptr @.TypeMapEntry.5964_from; char* to + }, ; 3205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5967_to, ; char* from + ptr @.TypeMapEntry.5966_from; char* to + }, ; 3206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5969_to, ; char* from + ptr @.TypeMapEntry.5968_from; char* to + }, ; 3207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5971_to, ; char* from + ptr @.TypeMapEntry.5970_from; char* to + }, ; 3208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5973_to, ; char* from + ptr @.TypeMapEntry.5972_from; char* to + }, ; 3209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5975_to, ; char* from + ptr @.TypeMapEntry.5974_from; char* to + }, ; 3210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5977_to, ; char* from + ptr @.TypeMapEntry.5976_from; char* to + }, ; 3211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6101_to, ; char* from + ptr @.TypeMapEntry.6100_from; char* to + }, ; 3212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6101_to, ; char* from + ptr @.TypeMapEntry.6100_from; char* to + }, ; 3213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6106_to, ; char* from + ptr @.TypeMapEntry.6105_from; char* to + }, ; 3214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6104_to, ; char* from + ptr @.TypeMapEntry.6103_from; char* to + }, ; 3215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6108_to, ; char* from + ptr @.TypeMapEntry.6107_from; char* to + }, ; 3216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6130_to, ; char* from + ptr @.TypeMapEntry.6129_from; char* to + }, ; 3217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6132_to, ; char* from + ptr @.TypeMapEntry.6131_from; char* to + }, ; 3218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6134_to, ; char* from + ptr @.TypeMapEntry.6133_from; char* to + }, ; 3219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6136_to, ; char* from + ptr @.TypeMapEntry.6135_from; char* to + }, ; 3220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6138_to, ; char* from + ptr @.TypeMapEntry.6137_from; char* to + }, ; 3221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6140_to, ; char* from + ptr @.TypeMapEntry.6139_from; char* to + }, ; 3222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6142_to, ; char* from + ptr @.TypeMapEntry.6141_from; char* to + }, ; 3223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6144_to, ; char* from + ptr @.TypeMapEntry.6143_from; char* to + }, ; 3224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6146_to, ; char* from + ptr @.TypeMapEntry.6145_from; char* to + }, ; 3225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6148_to, ; char* from + ptr @.TypeMapEntry.6147_from; char* to + }, ; 3226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6150_to, ; char* from + ptr @.TypeMapEntry.6149_from; char* to + }, ; 3227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6152_to, ; char* from + ptr @.TypeMapEntry.6151_from; char* to + }, ; 3228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6154_to, ; char* from + ptr @.TypeMapEntry.6153_from; char* to + }, ; 3229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6156_to, ; char* from + ptr @.TypeMapEntry.6155_from; char* to + }, ; 3230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6158_to, ; char* from + ptr @.TypeMapEntry.6157_from; char* to + }, ; 3231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6160_to, ; char* from + ptr @.TypeMapEntry.6159_from; char* to + }, ; 3232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6162_to, ; char* from + ptr @.TypeMapEntry.6161_from; char* to + }, ; 3233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6164_to, ; char* from + ptr @.TypeMapEntry.6163_from; char* to + }, ; 3234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6166_to, ; char* from + ptr @.TypeMapEntry.6165_from; char* to + }, ; 3235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6168_to, ; char* from + ptr @.TypeMapEntry.6167_from; char* to + }, ; 3236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6170_to, ; char* from + ptr @.TypeMapEntry.6169_from; char* to + }, ; 3237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6172_to, ; char* from + ptr @.TypeMapEntry.6171_from; char* to + }, ; 3238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6172_to, ; char* from + ptr @.TypeMapEntry.6171_from; char* to + }, ; 3239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6175_to, ; char* from + ptr @.TypeMapEntry.6174_from; char* to + }, ; 3240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6293_to, ; char* from + ptr @.TypeMapEntry.6292_from; char* to + }, ; 3241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6295_to, ; char* from + ptr @.TypeMapEntry.6294_from; char* to + }, ; 3242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6295_to, ; char* from + ptr @.TypeMapEntry.6294_from; char* to + }, ; 3243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6298_to, ; char* from + ptr @.TypeMapEntry.6297_from; char* to + }, ; 3244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6303_to, ; char* from + ptr @.TypeMapEntry.6302_from; char* to + }, ; 3245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6305_to, ; char* from + ptr @.TypeMapEntry.6304_from; char* to + }, ; 3246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6319_to, ; char* from + ptr @.TypeMapEntry.6318_from; char* to + }, ; 3247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6307_to, ; char* from + ptr @.TypeMapEntry.6306_from; char* to + }, ; 3248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6309_to, ; char* from + ptr null; char* to + }, ; 3249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6309_to, ; char* from + ptr null; char* to + }, ; 3250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6314_to, ; char* from + ptr null; char* to + }, ; 3251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6314_to, ; char* from + ptr null; char* to + }, ; 3252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6323_to, ; char* from + ptr @.TypeMapEntry.6322_from; char* to + }, ; 3253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6323_to, ; char* from + ptr @.TypeMapEntry.6322_from; char* to + }, ; 3254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6321_to, ; char* from + ptr @.TypeMapEntry.6320_from; char* to + }, ; 3255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6326_to, ; char* from + ptr @.TypeMapEntry.6325_from; char* to + }, ; 3256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6300_to, ; char* from + ptr null; char* to + }, ; 3257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6300_to, ; char* from + ptr null; char* to + }, ; 3258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6331_to, ; char* from + ptr @.TypeMapEntry.6330_from; char* to + }, ; 3259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6331_to, ; char* from + ptr @.TypeMapEntry.6330_from; char* to + }, ; 3260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6328_to, ; char* from + ptr null; char* to + }, ; 3261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6328_to, ; char* from + ptr null; char* to + }, ; 3262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6334_to, ; char* from + ptr @.TypeMapEntry.6333_from; char* to + }, ; 3263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6334_to, ; char* from + ptr @.TypeMapEntry.6333_from; char* to + }, ; 3264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6352_to, ; char* from + ptr @.TypeMapEntry.6351_from; char* to + }, ; 3265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6337_to, ; char* from + ptr null; char* to + }, ; 3266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6337_to, ; char* from + ptr null; char* to + }, ; 3267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6342_to, ; char* from + ptr null; char* to + }, ; 3268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6342_to, ; char* from + ptr null; char* to + }, ; 3269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6347_to, ; char* from + ptr null; char* to + }, ; 3270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6347_to, ; char* from + ptr null; char* to + }, ; 3271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6354_to, ; char* from + ptr @.TypeMapEntry.6353_from; char* to + }, ; 3272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6356_to, ; char* from + ptr @.TypeMapEntry.6355_from; char* to + }, ; 3273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6358_to, ; char* from + ptr @.TypeMapEntry.6357_from; char* to + }, ; 3274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6360_to, ; char* from + ptr @.TypeMapEntry.6359_from; char* to + }, ; 3275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6360_to, ; char* from + ptr @.TypeMapEntry.6359_from; char* to + }, ; 3276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6363_to, ; char* from + ptr @.TypeMapEntry.6362_from; char* to + }, ; 3277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6375_to, ; char* from + ptr @.TypeMapEntry.6374_from; char* to + }, ; 3278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6367_to, ; char* from + ptr @.TypeMapEntry.6366_from; char* to + }, ; 3279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6369_to, ; char* from + ptr @.TypeMapEntry.6368_from; char* to + }, ; 3280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6371_to, ; char* from + ptr @.TypeMapEntry.6370_from; char* to + }, ; 3281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6373_to, ; char* from + ptr @.TypeMapEntry.6372_from; char* to + }, ; 3282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6383_to, ; char* from + ptr @.TypeMapEntry.6382_from; char* to + }, ; 3283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6383_to, ; char* from + ptr @.TypeMapEntry.6382_from; char* to + }, ; 3284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6377_to, ; char* from + ptr @.TypeMapEntry.6376_from; char* to + }, ; 3285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6377_to, ; char* from + ptr @.TypeMapEntry.6376_from; char* to + }, ; 3286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6380_to, ; char* from + ptr @.TypeMapEntry.6379_from; char* to + }, ; 3287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6380_to, ; char* from + ptr @.TypeMapEntry.6379_from; char* to + }, ; 3288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6388_to, ; char* from + ptr @.TypeMapEntry.6387_from; char* to + }, ; 3289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6386_to, ; char* from + ptr @.TypeMapEntry.6385_from; char* to + }, ; 3290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6390_to, ; char* from + ptr @.TypeMapEntry.6389_from; char* to + }, ; 3291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6392_to, ; char* from + ptr @.TypeMapEntry.6391_from; char* to + }, ; 3292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6396_to, ; char* from + ptr @.TypeMapEntry.6395_from; char* to + }, ; 3293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6394_to, ; char* from + ptr @.TypeMapEntry.6393_from; char* to + }, ; 3294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6398_to, ; char* from + ptr @.TypeMapEntry.6397_from; char* to + }, ; 3295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6402_to, ; char* from + ptr @.TypeMapEntry.6401_from; char* to + }, ; 3296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6400_to, ; char* from + ptr @.TypeMapEntry.6399_from; char* to + }, ; 3297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6404_to, ; char* from + ptr @.TypeMapEntry.6403_from; char* to + }, ; 3298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6408_to, ; char* from + ptr @.TypeMapEntry.6407_from; char* to + }, ; 3299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6406_to, ; char* from + ptr @.TypeMapEntry.6405_from; char* to + }, ; 3300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6365_to, ; char* from + ptr @.TypeMapEntry.6364_from; char* to + }, ; 3301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6410_to, ; char* from + ptr @.TypeMapEntry.6409_from; char* to + }, ; 3302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6412_to, ; char* from + ptr @.TypeMapEntry.6411_from; char* to + }, ; 3303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6414_to, ; char* from + ptr @.TypeMapEntry.6413_from; char* to + }, ; 3304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6416_to, ; char* from + ptr @.TypeMapEntry.6415_from; char* to + }, ; 3305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6416_to, ; char* from + ptr @.TypeMapEntry.6415_from; char* to + }, ; 3306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6419_to, ; char* from + ptr @.TypeMapEntry.6418_from; char* to + }, ; 3307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6419_to, ; char* from + ptr @.TypeMapEntry.6418_from; char* to + }, ; 3308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6422_to, ; char* from + ptr @.TypeMapEntry.6421_from; char* to + }, ; 3309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6428_to, ; char* from + ptr @.TypeMapEntry.6427_from; char* to + }, ; 3310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6426_to, ; char* from + ptr @.TypeMapEntry.6425_from; char* to + }, ; 3311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6434_to, ; char* from + ptr @.TypeMapEntry.6433_from; char* to + }, ; 3312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6430_to, ; char* from + ptr @.TypeMapEntry.6429_from; char* to + }, ; 3313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6432_to, ; char* from + ptr @.TypeMapEntry.6431_from; char* to + }, ; 3314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6484_to, ; char* from + ptr @.TypeMapEntry.6483_from; char* to + }, ; 3315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6436_to, ; char* from + ptr @.TypeMapEntry.6435_from; char* to + }, ; 3316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6440_to, ; char* from + ptr @.TypeMapEntry.6439_from; char* to + }, ; 3317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6444_to, ; char* from + ptr @.TypeMapEntry.6443_from; char* to + }, ; 3318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6450_to, ; char* from + ptr @.TypeMapEntry.6449_from; char* to + }, ; 3319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6454_to, ; char* from + ptr @.TypeMapEntry.6453_from; char* to + }, ; 3320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6456_to, ; char* from + ptr @.TypeMapEntry.6455_from; char* to + }, ; 3321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6460_to, ; char* from + ptr @.TypeMapEntry.6459_from; char* to + }, ; 3322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6464_to, ; char* from + ptr @.TypeMapEntry.6463_from; char* to + }, ; 3323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6468_to, ; char* from + ptr @.TypeMapEntry.6467_from; char* to + }, ; 3324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6470_to, ; char* from + ptr @.TypeMapEntry.6469_from; char* to + }, ; 3325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6474_to, ; char* from + ptr @.TypeMapEntry.6473_from; char* to + }, ; 3326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6476_to, ; char* from + ptr @.TypeMapEntry.6475_from; char* to + }, ; 3327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6482_to, ; char* from + ptr @.TypeMapEntry.6481_from; char* to + }, ; 3328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6490_to, ; char* from + ptr @.TypeMapEntry.6489_from; char* to + }, ; 3329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6486_to, ; char* from + ptr @.TypeMapEntry.6485_from; char* to + }, ; 3330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6488_to, ; char* from + ptr @.TypeMapEntry.6487_from; char* to + }, ; 3331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6497_to, ; char* from + ptr @.TypeMapEntry.6496_from; char* to + }, ; 3332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6497_to, ; char* from + ptr @.TypeMapEntry.6496_from; char* to + }, ; 3333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6492_to, ; char* from + ptr @.TypeMapEntry.6491_from; char* to + }, ; 3334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6492_to, ; char* from + ptr @.TypeMapEntry.6491_from; char* to + }, ; 3335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6495_to, ; char* from + ptr @.TypeMapEntry.6494_from; char* to + }, ; 3336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6505_to, ; char* from + ptr @.TypeMapEntry.6504_from; char* to + }, ; 3337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6499_to, ; char* from + ptr @.TypeMapEntry.6498_from; char* to + }, ; 3338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6501_to, ; char* from + ptr @.TypeMapEntry.6500_from; char* to + }, ; 3339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6503_to, ; char* from + ptr @.TypeMapEntry.6502_from; char* to + }, ; 3340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6556_to, ; char* from + ptr @.TypeMapEntry.6555_from; char* to + }, ; 3341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6508_to, ; char* from + ptr @.TypeMapEntry.6507_from; char* to + }, ; 3342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6512_to, ; char* from + ptr @.TypeMapEntry.6511_from; char* to + }, ; 3343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6516_to, ; char* from + ptr @.TypeMapEntry.6515_from; char* to + }, ; 3344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6518_to, ; char* from + ptr @.TypeMapEntry.6517_from; char* to + }, ; 3345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6526_to, ; char* from + ptr @.TypeMapEntry.6525_from; char* to + }, ; 3346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6522_to, ; char* from + ptr @.TypeMapEntry.6521_from; char* to + }, ; 3347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6524_to, ; char* from + ptr @.TypeMapEntry.6523_from; char* to + }, ; 3348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6530_to, ; char* from + ptr @.TypeMapEntry.6529_from; char* to + }, ; 3349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6538_to, ; char* from + ptr @.TypeMapEntry.6537_from; char* to + }, ; 3350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6532_to, ; char* from + ptr @.TypeMapEntry.6531_from; char* to + }, ; 3351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6534_to, ; char* from + ptr @.TypeMapEntry.6533_from; char* to + }, ; 3352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6536_to, ; char* from + ptr @.TypeMapEntry.6535_from; char* to + }, ; 3353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6542_to, ; char* from + ptr @.TypeMapEntry.6541_from; char* to + }, ; 3354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6546_to, ; char* from + ptr @.TypeMapEntry.6545_from; char* to + }, ; 3355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6552_to, ; char* from + ptr @.TypeMapEntry.6551_from; char* to + }, ; 3356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6714_to, ; char* from + ptr @.TypeMapEntry.6713_from; char* to + }, ; 3357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6558_to, ; char* from + ptr @.TypeMapEntry.6557_from; char* to + }, ; 3358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6600_to, ; char* from + ptr @.TypeMapEntry.6599_from; char* to + }, ; 3359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6564_to, ; char* from + ptr @.TypeMapEntry.6563_from; char* to + }, ; 3360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6568_to, ; char* from + ptr @.TypeMapEntry.6567_from; char* to + }, ; 3361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6570_to, ; char* from + ptr @.TypeMapEntry.6569_from; char* to + }, ; 3362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6572_to, ; char* from + ptr @.TypeMapEntry.6571_from; char* to + }, ; 3363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6574_to, ; char* from + ptr @.TypeMapEntry.6573_from; char* to + }, ; 3364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6576_to, ; char* from + ptr @.TypeMapEntry.6575_from; char* to + }, ; 3365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6578_to, ; char* from + ptr @.TypeMapEntry.6577_from; char* to + }, ; 3366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6580_to, ; char* from + ptr @.TypeMapEntry.6579_from; char* to + }, ; 3367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6582_to, ; char* from + ptr @.TypeMapEntry.6581_from; char* to + }, ; 3368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6584_to, ; char* from + ptr @.TypeMapEntry.6583_from; char* to + }, ; 3369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6586_to, ; char* from + ptr @.TypeMapEntry.6585_from; char* to + }, ; 3370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6588_to, ; char* from + ptr @.TypeMapEntry.6587_from; char* to + }, ; 3371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6590_to, ; char* from + ptr @.TypeMapEntry.6589_from; char* to + }, ; 3372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6592_to, ; char* from + ptr @.TypeMapEntry.6591_from; char* to + }, ; 3373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6594_to, ; char* from + ptr @.TypeMapEntry.6593_from; char* to + }, ; 3374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6596_to, ; char* from + ptr @.TypeMapEntry.6595_from; char* to + }, ; 3375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6598_to, ; char* from + ptr @.TypeMapEntry.6597_from; char* to + }, ; 3376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6620_to, ; char* from + ptr @.TypeMapEntry.6619_from; char* to + }, ; 3377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6610_to, ; char* from + ptr @.TypeMapEntry.6609_from; char* to + }, ; 3378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6608_to, ; char* from + ptr @.TypeMapEntry.6607_from; char* to + }, ; 3379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6612_to, ; char* from + ptr @.TypeMapEntry.6611_from; char* to + }, ; 3380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6614_to, ; char* from + ptr @.TypeMapEntry.6613_from; char* to + }, ; 3381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6616_to, ; char* from + ptr @.TypeMapEntry.6615_from; char* to + }, ; 3382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6618_to, ; char* from + ptr @.TypeMapEntry.6617_from; char* to + }, ; 3383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6624_to, ; char* from + ptr @.TypeMapEntry.6623_from; char* to + }, ; 3384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6628_to, ; char* from + ptr @.TypeMapEntry.6627_from; char* to + }, ; 3385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6632_to, ; char* from + ptr @.TypeMapEntry.6631_from; char* to + }, ; 3386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6636_to, ; char* from + ptr @.TypeMapEntry.6635_from; char* to + }, ; 3387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6640_to, ; char* from + ptr @.TypeMapEntry.6639_from; char* to + }, ; 3388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6644_to, ; char* from + ptr @.TypeMapEntry.6643_from; char* to + }, ; 3389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6650_to, ; char* from + ptr @.TypeMapEntry.6649_from; char* to + }, ; 3390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6648_to, ; char* from + ptr @.TypeMapEntry.6647_from; char* to + }, ; 3391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6652_to, ; char* from + ptr @.TypeMapEntry.6651_from; char* to + }, ; 3392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6658_to, ; char* from + ptr @.TypeMapEntry.6657_from; char* to + }, ; 3393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6660_to, ; char* from + ptr @.TypeMapEntry.6659_from; char* to + }, ; 3394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6664_to, ; char* from + ptr @.TypeMapEntry.6663_from; char* to + }, ; 3395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6666_to, ; char* from + ptr @.TypeMapEntry.6665_from; char* to + }, ; 3396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6668_to, ; char* from + ptr @.TypeMapEntry.6667_from; char* to + }, ; 3397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6670_to, ; char* from + ptr @.TypeMapEntry.6669_from; char* to + }, ; 3398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6680_to, ; char* from + ptr @.TypeMapEntry.6679_from; char* to + }, ; 3399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6672_to, ; char* from + ptr @.TypeMapEntry.6671_from; char* to + }, ; 3400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6674_to, ; char* from + ptr @.TypeMapEntry.6673_from; char* to + }, ; 3401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6676_to, ; char* from + ptr @.TypeMapEntry.6675_from; char* to + }, ; 3402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6678_to, ; char* from + ptr @.TypeMapEntry.6677_from; char* to + }, ; 3403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6684_to, ; char* from + ptr @.TypeMapEntry.6683_from; char* to + }, ; 3404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6686_to, ; char* from + ptr @.TypeMapEntry.6685_from; char* to + }, ; 3405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6688_to, ; char* from + ptr @.TypeMapEntry.6687_from; char* to + }, ; 3406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6692_to, ; char* from + ptr @.TypeMapEntry.6691_from; char* to + }, ; 3407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6694_to, ; char* from + ptr @.TypeMapEntry.6693_from; char* to + }, ; 3408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6698_to, ; char* from + ptr @.TypeMapEntry.6697_from; char* to + }, ; 3409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6700_to, ; char* from + ptr @.TypeMapEntry.6699_from; char* to + }, ; 3410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6706_to, ; char* from + ptr @.TypeMapEntry.6705_from; char* to + }, ; 3411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6704_to, ; char* from + ptr @.TypeMapEntry.6703_from; char* to + }, ; 3412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6712_to, ; char* from + ptr @.TypeMapEntry.6711_from; char* to + }, ; 3413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6722_to, ; char* from + ptr @.TypeMapEntry.6721_from; char* to + }, ; 3414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6716_to, ; char* from + ptr @.TypeMapEntry.6715_from; char* to + }, ; 3415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6718_to, ; char* from + ptr @.TypeMapEntry.6717_from; char* to + }, ; 3416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6720_to, ; char* from + ptr @.TypeMapEntry.6719_from; char* to + }, ; 3417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6724_to, ; char* from + ptr @.TypeMapEntry.6723_from; char* to + }, ; 3418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6724_to, ; char* from + ptr @.TypeMapEntry.6723_from; char* to + }, ; 3419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6731_to, ; char* from + ptr @.TypeMapEntry.6730_from; char* to + }, ; 3420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6727_to, ; char* from + ptr @.TypeMapEntry.6726_from; char* to + }, ; 3421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6729_to, ; char* from + ptr @.TypeMapEntry.6728_from; char* to + }, ; 3422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6733_to, ; char* from + ptr @.TypeMapEntry.6732_from; char* to + }, ; 3423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6743_to, ; char* from + ptr @.TypeMapEntry.6742_from; char* to + }, ; 3424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6735_to, ; char* from + ptr @.TypeMapEntry.6734_from; char* to + }, ; 3425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6737_to, ; char* from + ptr @.TypeMapEntry.6736_from; char* to + }, ; 3426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6739_to, ; char* from + ptr @.TypeMapEntry.6738_from; char* to + }, ; 3427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6741_to, ; char* from + ptr @.TypeMapEntry.6740_from; char* to + }, ; 3428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6745_to, ; char* from + ptr @.TypeMapEntry.6744_from; char* to + }, ; 3429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6805_to, ; char* from + ptr @.TypeMapEntry.6804_from; char* to + }, ; 3430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6775_to, ; char* from + ptr @.TypeMapEntry.6774_from; char* to + }, ; 3431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6749_to, ; char* from + ptr @.TypeMapEntry.6748_from; char* to + }, ; 3432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6755_to, ; char* from + ptr @.TypeMapEntry.6754_from; char* to + }, ; 3433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6753_to, ; char* from + ptr @.TypeMapEntry.6752_from; char* to + }, ; 3434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6761_to, ; char* from + ptr @.TypeMapEntry.6760_from; char* to + }, ; 3435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6759_to, ; char* from + ptr @.TypeMapEntry.6758_from; char* to + }, ; 3436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6765_to, ; char* from + ptr @.TypeMapEntry.6764_from; char* to + }, ; 3437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6769_to, ; char* from + ptr @.TypeMapEntry.6768_from; char* to + }, ; 3438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6767_to, ; char* from + ptr @.TypeMapEntry.6766_from; char* to + }, ; 3439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6773_to, ; char* from + ptr @.TypeMapEntry.6772_from; char* to + }, ; 3440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6779_to, ; char* from + ptr @.TypeMapEntry.6778_from; char* to + }, ; 3441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6783_to, ; char* from + ptr @.TypeMapEntry.6782_from; char* to + }, ; 3442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6791_to, ; char* from + ptr @.TypeMapEntry.6790_from; char* to + }, ; 3443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6787_to, ; char* from + ptr @.TypeMapEntry.6786_from; char* to + }, ; 3444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6789_to, ; char* from + ptr @.TypeMapEntry.6788_from; char* to + }, ; 3445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6795_to, ; char* from + ptr @.TypeMapEntry.6794_from; char* to + }, ; 3446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6803_to, ; char* from + ptr @.TypeMapEntry.6802_from; char* to + }, ; 3447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6797_to, ; char* from + ptr @.TypeMapEntry.6796_from; char* to + }, ; 3448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6799_to, ; char* from + ptr @.TypeMapEntry.6798_from; char* to + }, ; 3449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6809_to, ; char* from + ptr @.TypeMapEntry.6808_from; char* to + }, ; 3450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6823_to, ; char* from + ptr @.TypeMapEntry.6822_from; char* to + }, ; 3451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6811_to, ; char* from + ptr @.TypeMapEntry.6810_from; char* to + }, ; 3452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6813_to, ; char* from + ptr @.TypeMapEntry.6812_from; char* to + }, ; 3453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6815_to, ; char* from + ptr @.TypeMapEntry.6814_from; char* to + }, ; 3454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6817_to, ; char* from + ptr @.TypeMapEntry.6816_from; char* to + }, ; 3455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6819_to, ; char* from + ptr @.TypeMapEntry.6818_from; char* to + }, ; 3456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6821_to, ; char* from + ptr @.TypeMapEntry.6820_from; char* to + }, ; 3457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6825_to, ; char* from + ptr @.TypeMapEntry.6824_from; char* to + }, ; 3458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6831_to, ; char* from + ptr @.TypeMapEntry.6830_from; char* to + }, ; 3459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6827_to, ; char* from + ptr @.TypeMapEntry.6826_from; char* to + }, ; 3460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6829_to, ; char* from + ptr @.TypeMapEntry.6828_from; char* to + }, ; 3461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6839_to, ; char* from + ptr @.TypeMapEntry.6838_from; char* to + }, ; 3462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6835_to, ; char* from + ptr @.TypeMapEntry.6834_from; char* to + }, ; 3463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6837_to, ; char* from + ptr @.TypeMapEntry.6836_from; char* to + }, ; 3464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6893_to, ; char* from + ptr @.TypeMapEntry.6892_from; char* to + }, ; 3465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6845_to, ; char* from + ptr @.TypeMapEntry.6844_from; char* to + }, ; 3466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6847_to, ; char* from + ptr @.TypeMapEntry.6846_from; char* to + }, ; 3467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6865_to, ; char* from + ptr @.TypeMapEntry.6864_from; char* to + }, ; 3468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6849_to, ; char* from + ptr @.TypeMapEntry.6848_from; char* to + }, ; 3469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6851_to, ; char* from + ptr @.TypeMapEntry.6850_from; char* to + }, ; 3470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6853_to, ; char* from + ptr @.TypeMapEntry.6852_from; char* to + }, ; 3471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6855_to, ; char* from + ptr @.TypeMapEntry.6854_from; char* to + }, ; 3472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6857_to, ; char* from + ptr @.TypeMapEntry.6856_from; char* to + }, ; 3473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6859_to, ; char* from + ptr @.TypeMapEntry.6858_from; char* to + }, ; 3474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6861_to, ; char* from + ptr @.TypeMapEntry.6860_from; char* to + }, ; 3475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6863_to, ; char* from + ptr @.TypeMapEntry.6862_from; char* to + }, ; 3476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6869_to, ; char* from + ptr @.TypeMapEntry.6868_from; char* to + }, ; 3477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6867_to, ; char* from + ptr @.TypeMapEntry.6866_from; char* to + }, ; 3478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6871_to, ; char* from + ptr @.TypeMapEntry.6870_from; char* to + }, ; 3479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6885_to, ; char* from + ptr @.TypeMapEntry.6884_from; char* to + }, ; 3480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6873_to, ; char* from + ptr @.TypeMapEntry.6872_from; char* to + }, ; 3481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6875_to, ; char* from + ptr @.TypeMapEntry.6874_from; char* to + }, ; 3482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6877_to, ; char* from + ptr @.TypeMapEntry.6876_from; char* to + }, ; 3483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6879_to, ; char* from + ptr @.TypeMapEntry.6878_from; char* to + }, ; 3484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6881_to, ; char* from + ptr @.TypeMapEntry.6880_from; char* to + }, ; 3485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6883_to, ; char* from + ptr @.TypeMapEntry.6882_from; char* to + }, ; 3486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6889_to, ; char* from + ptr @.TypeMapEntry.6888_from; char* to + }, ; 3487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6897_to, ; char* from + ptr @.TypeMapEntry.6896_from; char* to + }, ; 3488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6895_to, ; char* from + ptr @.TypeMapEntry.6894_from; char* to + }, ; 3489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6903_to, ; char* from + ptr @.TypeMapEntry.6902_from; char* to + }, ; 3490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6899_to, ; char* from + ptr @.TypeMapEntry.6898_from; char* to + }, ; 3491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6901_to, ; char* from + ptr @.TypeMapEntry.6900_from; char* to + }, ; 3492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6912_to, ; char* from + ptr @.TypeMapEntry.6911_from; char* to + }, ; 3493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6910_to, ; char* from + ptr @.TypeMapEntry.6909_from; char* to + }, ; 3494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6905_to, ; char* from + ptr null; char* to + }, ; 3495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6905_to, ; char* from + ptr null; char* to + }, ; 3496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6914_to, ; char* from + ptr @.TypeMapEntry.6913_from; char* to + }, ; 3497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6916_to, ; char* from + ptr @.TypeMapEntry.6915_from; char* to + }, ; 3498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6918_to, ; char* from + ptr @.TypeMapEntry.6917_from; char* to + }, ; 3499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6920_to, ; char* from + ptr @.TypeMapEntry.6919_from; char* to + }, ; 3500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6922_to, ; char* from + ptr @.TypeMapEntry.6921_from; char* to + }, ; 3501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6924_to, ; char* from + ptr @.TypeMapEntry.6923_from; char* to + }, ; 3502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6926_to, ; char* from + ptr @.TypeMapEntry.6925_from; char* to + }, ; 3503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6928_to, ; char* from + ptr @.TypeMapEntry.6927_from; char* to + }, ; 3504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6936_to, ; char* from + ptr @.TypeMapEntry.6935_from; char* to + }, ; 3505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6930_to, ; char* from + ptr @.TypeMapEntry.6929_from; char* to + }, ; 3506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6932_to, ; char* from + ptr @.TypeMapEntry.6931_from; char* to + }, ; 3507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6934_to, ; char* from + ptr @.TypeMapEntry.6933_from; char* to + }, ; 3508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6938_to, ; char* from + ptr @.TypeMapEntry.6937_from; char* to + }, ; 3509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6944_to, ; char* from + ptr @.TypeMapEntry.6943_from; char* to + }, ; 3510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6940_to, ; char* from + ptr @.TypeMapEntry.6939_from; char* to + }, ; 3511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6942_to, ; char* from + ptr @.TypeMapEntry.6941_from; char* to + }, ; 3512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6946_to, ; char* from + ptr @.TypeMapEntry.6945_from; char* to + }, ; 3513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6948_to, ; char* from + ptr @.TypeMapEntry.6947_from; char* to + }, ; 3514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6950_to, ; char* from + ptr @.TypeMapEntry.6949_from; char* to + }, ; 3515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6954_to, ; char* from + ptr @.TypeMapEntry.6953_from; char* to + }, ; 3516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6952_to, ; char* from + ptr @.TypeMapEntry.6951_from; char* to + }, ; 3517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6956_to, ; char* from + ptr @.TypeMapEntry.6955_from; char* to + }, ; 3518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6958_to, ; char* from + ptr @.TypeMapEntry.6957_from; char* to + }, ; 3519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6960_to, ; char* from + ptr @.TypeMapEntry.6959_from; char* to + }, ; 3520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6962_to, ; char* from + ptr @.TypeMapEntry.6961_from; char* to + }, ; 3521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6964_to, ; char* from + ptr @.TypeMapEntry.6963_from; char* to + }, ; 3522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6966_to, ; char* from + ptr @.TypeMapEntry.6965_from; char* to + }, ; 3523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6968_to, ; char* from + ptr @.TypeMapEntry.6967_from; char* to + }, ; 3524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6970_to, ; char* from + ptr @.TypeMapEntry.6969_from; char* to + }, ; 3525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6972_to, ; char* from + ptr @.TypeMapEntry.6971_from; char* to + }, ; 3526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6982_to, ; char* from + ptr @.TypeMapEntry.6981_from; char* to + }, ; 3527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6974_to, ; char* from + ptr @.TypeMapEntry.6973_from; char* to + }, ; 3528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6976_to, ; char* from + ptr @.TypeMapEntry.6975_from; char* to + }, ; 3529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6978_to, ; char* from + ptr @.TypeMapEntry.6977_from; char* to + }, ; 3530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6980_to, ; char* from + ptr @.TypeMapEntry.6979_from; char* to + }, ; 3531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6988_to, ; char* from + ptr @.TypeMapEntry.6987_from; char* to + }, ; 3532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6984_to, ; char* from + ptr @.TypeMapEntry.6983_from; char* to + }, ; 3533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6986_to, ; char* from + ptr @.TypeMapEntry.6985_from; char* to + }, ; 3534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6992_to, ; char* from + ptr @.TypeMapEntry.6991_from; char* to + }, ; 3535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6990_to, ; char* from + ptr @.TypeMapEntry.6989_from; char* to + }, ; 3536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7000_to, ; char* from + ptr @.TypeMapEntry.6999_from; char* to + }, ; 3537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6998_to, ; char* from + ptr @.TypeMapEntry.6997_from; char* to + }, ; 3538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6994_to, ; char* from + ptr @.TypeMapEntry.6993_from; char* to + }, ; 3539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6996_to, ; char* from + ptr @.TypeMapEntry.6995_from; char* to + }, ; 3540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7006_to, ; char* from + ptr @.TypeMapEntry.7005_from; char* to + }, ; 3541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7002_to, ; char* from + ptr @.TypeMapEntry.7001_from; char* to + }, ; 3542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7004_to, ; char* from + ptr @.TypeMapEntry.7003_from; char* to + }, ; 3543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7016_to, ; char* from + ptr @.TypeMapEntry.7015_from; char* to + }, ; 3544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7008_to, ; char* from + ptr @.TypeMapEntry.7007_from; char* to + }, ; 3545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7010_to, ; char* from + ptr @.TypeMapEntry.7009_from; char* to + }, ; 3546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7012_to, ; char* from + ptr @.TypeMapEntry.7011_from; char* to + }, ; 3547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7014_to, ; char* from + ptr @.TypeMapEntry.7013_from; char* to + }, ; 3548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7020_to, ; char* from + ptr @.TypeMapEntry.7019_from; char* to + }, ; 3549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7018_to, ; char* from + ptr @.TypeMapEntry.7017_from; char* to + }, ; 3550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7026_to, ; char* from + ptr @.TypeMapEntry.7025_from; char* to + }, ; 3551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7022_to, ; char* from + ptr @.TypeMapEntry.7021_from; char* to + }, ; 3552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7024_to, ; char* from + ptr @.TypeMapEntry.7023_from; char* to + }, ; 3553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7028_to, ; char* from + ptr @.TypeMapEntry.7027_from; char* to + }, ; 3554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7030_to, ; char* from + ptr @.TypeMapEntry.7029_from; char* to + }, ; 3555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7032_to, ; char* from + ptr @.TypeMapEntry.7031_from; char* to + }, ; 3556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7034_to, ; char* from + ptr @.TypeMapEntry.7033_from; char* to + }, ; 3557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7036_to, ; char* from + ptr @.TypeMapEntry.7035_from; char* to + }, ; 3558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7038_to, ; char* from + ptr @.TypeMapEntry.7037_from; char* to + }, ; 3559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7048_to, ; char* from + ptr @.TypeMapEntry.7047_from; char* to + }, ; 3560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7040_to, ; char* from + ptr @.TypeMapEntry.7039_from; char* to + }, ; 3561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7042_to, ; char* from + ptr @.TypeMapEntry.7041_from; char* to + }, ; 3562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7044_to, ; char* from + ptr @.TypeMapEntry.7043_from; char* to + }, ; 3563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7046_to, ; char* from + ptr @.TypeMapEntry.7045_from; char* to + }, ; 3564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7052_to, ; char* from + ptr @.TypeMapEntry.7051_from; char* to + }, ; 3565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7050_to, ; char* from + ptr @.TypeMapEntry.7049_from; char* to + }, ; 3566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7058_to, ; char* from + ptr @.TypeMapEntry.7057_from; char* to + }, ; 3567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7054_to, ; char* from + ptr @.TypeMapEntry.7053_from; char* to + }, ; 3568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7056_to, ; char* from + ptr @.TypeMapEntry.7055_from; char* to + }, ; 3569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7072_to, ; char* from + ptr @.TypeMapEntry.7071_from; char* to + }, ; 3570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7060_to, ; char* from + ptr @.TypeMapEntry.7059_from; char* to + }, ; 3571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7062_to, ; char* from + ptr @.TypeMapEntry.7061_from; char* to + }, ; 3572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7064_to, ; char* from + ptr @.TypeMapEntry.7063_from; char* to + }, ; 3573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7066_to, ; char* from + ptr @.TypeMapEntry.7065_from; char* to + }, ; 3574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7068_to, ; char* from + ptr @.TypeMapEntry.7067_from; char* to + }, ; 3575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7070_to, ; char* from + ptr @.TypeMapEntry.7069_from; char* to + }, ; 3576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7074_to, ; char* from + ptr @.TypeMapEntry.7073_from; char* to + }, ; 3577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7088_to, ; char* from + ptr @.TypeMapEntry.7087_from; char* to + }, ; 3578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7076_to, ; char* from + ptr @.TypeMapEntry.7075_from; char* to + }, ; 3579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7078_to, ; char* from + ptr @.TypeMapEntry.7077_from; char* to + }, ; 3580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7080_to, ; char* from + ptr @.TypeMapEntry.7079_from; char* to + }, ; 3581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7082_to, ; char* from + ptr @.TypeMapEntry.7081_from; char* to + }, ; 3582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7084_to, ; char* from + ptr @.TypeMapEntry.7083_from; char* to + }, ; 3583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7086_to, ; char* from + ptr @.TypeMapEntry.7085_from; char* to + }, ; 3584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7090_to, ; char* from + ptr @.TypeMapEntry.7089_from; char* to + }, ; 3585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7090_to, ; char* from + ptr @.TypeMapEntry.7089_from; char* to + }, ; 3586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7092_to, ; char* from + ptr @.TypeMapEntry.7091_from; char* to + }, ; 3587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7094_to, ; char* from + ptr @.TypeMapEntry.7093_from; char* to + }, ; 3588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7096_to, ; char* from + ptr @.TypeMapEntry.7095_from; char* to + }, ; 3589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7098_to, ; char* from + ptr @.TypeMapEntry.7097_from; char* to + }, ; 3590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7100_to, ; char* from + ptr @.TypeMapEntry.7099_from; char* to + }, ; 3591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7102_to, ; char* from + ptr @.TypeMapEntry.7101_from; char* to + }, ; 3592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7104_to, ; char* from + ptr @.TypeMapEntry.7103_from; char* to + }, ; 3593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7106_to, ; char* from + ptr @.TypeMapEntry.7105_from; char* to + }, ; 3594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7109_to, ; char* from + ptr @.TypeMapEntry.7108_from; char* to + }, ; 3595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7111_to, ; char* from + ptr @.TypeMapEntry.7110_from; char* to + }, ; 3596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7113_to, ; char* from + ptr @.TypeMapEntry.7112_from; char* to + }, ; 3597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7115_to, ; char* from + ptr @.TypeMapEntry.7114_from; char* to + }, ; 3598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7117_to, ; char* from + ptr @.TypeMapEntry.7116_from; char* to + }, ; 3599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7119_to, ; char* from + ptr @.TypeMapEntry.7118_from; char* to + }, ; 3600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7125_to, ; char* from + ptr @.TypeMapEntry.7124_from; char* to + }, ; 3601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7121_to, ; char* from + ptr @.TypeMapEntry.7120_from; char* to + }, ; 3602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7123_to, ; char* from + ptr @.TypeMapEntry.7122_from; char* to + }, ; 3603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7186_to, ; char* from + ptr @.TypeMapEntry.7185_from; char* to + }, ; 3604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7193_to, ; char* from + ptr @.TypeMapEntry.7192_from; char* to + }, ; 3605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7195_to, ; char* from + ptr @.TypeMapEntry.7194_from; char* to + }, ; 3606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7210_to, ; char* from + ptr @.TypeMapEntry.7209_from; char* to + }, ; 3607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7212_to, ; char* from + ptr null; char* to + }, ; 3608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7212_to, ; char* from + ptr null; char* to + }, ; 3609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7215_to, ; char* from + ptr null; char* to + }, ; 3610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7215_to, ; char* from + ptr null; char* to + }, ; 3611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7220_to, ; char* from + ptr null; char* to + }, ; 3612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7220_to, ; char* from + ptr null; char* to + }, ; 3613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7233_to, ; char* from + ptr @.TypeMapEntry.7232_from; char* to + }, ; 3614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7225_to, ; char* from + ptr null; char* to + }, ; 3615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7225_to, ; char* from + ptr null; char* to + }, ; 3616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7230_to, ; char* from + ptr null; char* to + }, ; 3617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7230_to, ; char* from + ptr null; char* to + }, ; 3618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7197_to, ; char* from + ptr @.TypeMapEntry.7196_from; char* to + }, ; 3619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7199_to, ; char* from + ptr @.TypeMapEntry.7198_from; char* to + }, ; 3620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7206_to, ; char* from + ptr @.TypeMapEntry.7205_from; char* to + }, ; 3621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7201_to, ; char* from + ptr null; char* to + }, ; 3622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7201_to, ; char* from + ptr null; char* to + }, ; 3623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7208_to, ; char* from + ptr @.TypeMapEntry.7207_from; char* to + }, ; 3624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7237_to, ; char* from + ptr @.TypeMapEntry.7236_from; char* to + }, ; 3625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7235_to, ; char* from + ptr @.TypeMapEntry.7234_from; char* to + }, ; 3626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7239_to, ; char* from + ptr @.TypeMapEntry.7238_from; char* to + }, ; 3627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7241_to, ; char* from + ptr @.TypeMapEntry.7240_from; char* to + }, ; 3628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7243_to, ; char* from + ptr @.TypeMapEntry.7242_from; char* to + }, ; 3629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7243_to, ; char* from + ptr @.TypeMapEntry.7242_from; char* to + }, ; 3630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7246_to, ; char* from + ptr @.TypeMapEntry.7245_from; char* to + }, ; 3631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7250_to, ; char* from + ptr @.TypeMapEntry.7249_from; char* to + }, ; 3632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7248_to, ; char* from + ptr @.TypeMapEntry.7247_from; char* to + }, ; 3633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7252_to, ; char* from + ptr @.TypeMapEntry.7251_from; char* to + }, ; 3634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7318_to, ; char* from + ptr @.TypeMapEntry.7317_from; char* to + }, ; 3635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7254_to, ; char* from + ptr null; char* to + }, ; 3636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7254_to, ; char* from + ptr null; char* to + }, ; 3637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7320_to, ; char* from + ptr @.TypeMapEntry.7319_from; char* to + }, ; 3638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7316_to, ; char* from + ptr @.TypeMapEntry.7315_from; char* to + }, ; 3639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7324_to, ; char* from + ptr @.TypeMapEntry.7323_from; char* to + }, ; 3640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7322_to, ; char* from + ptr @.TypeMapEntry.7321_from; char* to + }, ; 3641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7326_to, ; char* from + ptr @.TypeMapEntry.7325_from; char* to + }, ; 3642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7330_to, ; char* from + ptr @.TypeMapEntry.7329_from; char* to + }, ; 3643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7328_to, ; char* from + ptr @.TypeMapEntry.7327_from; char* to + }, ; 3644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7363_to, ; char* from + ptr @.TypeMapEntry.7362_from; char* to + }, ; 3645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7259_to, ; char* from + ptr @.TypeMapEntry.7258_from; char* to + }, ; 3646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7257_to, ; char* from + ptr @.TypeMapEntry.7256_from; char* to + }, ; 3647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7261_to, ; char* from + ptr @.TypeMapEntry.7260_from; char* to + }, ; 3648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7263_to, ; char* from + ptr @.TypeMapEntry.7262_from; char* to + }, ; 3649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7265_to, ; char* from + ptr @.TypeMapEntry.7264_from; char* to + }, ; 3650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7267_to, ; char* from + ptr @.TypeMapEntry.7266_from; char* to + }, ; 3651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7271_to, ; char* from + ptr @.TypeMapEntry.7270_from; char* to + }, ; 3652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7269_to, ; char* from + ptr @.TypeMapEntry.7268_from; char* to + }, ; 3653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7276_to, ; char* from + ptr @.TypeMapEntry.7275_from; char* to + }, ; 3654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7276_to, ; char* from + ptr @.TypeMapEntry.7275_from; char* to + }, ; 3655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7273_to, ; char* from + ptr null; char* to + }, ; 3656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7273_to, ; char* from + ptr null; char* to + }, ; 3657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7279_to, ; char* from + ptr @.TypeMapEntry.7278_from; char* to + }, ; 3658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7281_to, ; char* from + ptr @.TypeMapEntry.7280_from; char* to + }, ; 3659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7283_to, ; char* from + ptr @.TypeMapEntry.7282_from; char* to + }, ; 3660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7283_to, ; char* from + ptr @.TypeMapEntry.7282_from; char* to + }, ; 3661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7285_to, ; char* from + ptr @.TypeMapEntry.7284_from; char* to + }, ; 3662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7288_to, ; char* from + ptr @.TypeMapEntry.7287_from; char* to + }, ; 3663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7288_to, ; char* from + ptr @.TypeMapEntry.7287_from; char* to + }, ; 3664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7291_to, ; char* from + ptr @.TypeMapEntry.7290_from; char* to + }, ; 3665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7293_to, ; char* from + ptr @.TypeMapEntry.7292_from; char* to + }, ; 3666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7295_to, ; char* from + ptr @.TypeMapEntry.7294_from; char* to + }, ; 3667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7297_to, ; char* from + ptr @.TypeMapEntry.7296_from; char* to + }, ; 3668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7301_to, ; char* from + ptr @.TypeMapEntry.7300_from; char* to + }, ; 3669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7299_to, ; char* from + ptr @.TypeMapEntry.7298_from; char* to + }, ; 3670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7303_to, ; char* from + ptr @.TypeMapEntry.7302_from; char* to + }, ; 3671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7303_to, ; char* from + ptr @.TypeMapEntry.7302_from; char* to + }, ; 3672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7306_to, ; char* from + ptr @.TypeMapEntry.7305_from; char* to + }, ; 3673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7306_to, ; char* from + ptr @.TypeMapEntry.7305_from; char* to + }, ; 3674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7309_to, ; char* from + ptr @.TypeMapEntry.7308_from; char* to + }, ; 3675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7311_to, ; char* from + ptr @.TypeMapEntry.7310_from; char* to + }, ; 3676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7313_to, ; char* from + ptr @.TypeMapEntry.7312_from; char* to + }, ; 3677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7313_to, ; char* from + ptr @.TypeMapEntry.7312_from; char* to + }, ; 3678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7332_to, ; char* from + ptr @.TypeMapEntry.7331_from; char* to + }, ; 3679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7334_to, ; char* from + ptr @.TypeMapEntry.7333_from; char* to + }, ; 3680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7338_to, ; char* from + ptr @.TypeMapEntry.7337_from; char* to + }, ; 3681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7336_to, ; char* from + ptr @.TypeMapEntry.7335_from; char* to + }, ; 3682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7340_to, ; char* from + ptr @.TypeMapEntry.7339_from; char* to + }, ; 3683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7342_to, ; char* from + ptr @.TypeMapEntry.7341_from; char* to + }, ; 3684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7344_to, ; char* from + ptr @.TypeMapEntry.7343_from; char* to + }, ; 3685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7346_to, ; char* from + ptr @.TypeMapEntry.7345_from; char* to + }, ; 3686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7346_to, ; char* from + ptr @.TypeMapEntry.7345_from; char* to + }, ; 3687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7351_to, ; char* from + ptr @.TypeMapEntry.7350_from; char* to + }, ; 3688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7349_to, ; char* from + ptr @.TypeMapEntry.7348_from; char* to + }, ; 3689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7353_to, ; char* from + ptr @.TypeMapEntry.7352_from; char* to + }, ; 3690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7355_to, ; char* from + ptr @.TypeMapEntry.7354_from; char* to + }, ; 3691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7357_to, ; char* from + ptr @.TypeMapEntry.7356_from; char* to + }, ; 3692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7359_to, ; char* from + ptr @.TypeMapEntry.7358_from; char* to + }, ; 3693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7361_to, ; char* from + ptr @.TypeMapEntry.7360_from; char* to + }, ; 3694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7365_to, ; char* from + ptr @.TypeMapEntry.7364_from; char* to + }, ; 3695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7367_to, ; char* from + ptr @.TypeMapEntry.7366_from; char* to + }, ; 3696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7367_to, ; char* from + ptr @.TypeMapEntry.7366_from; char* to + }, ; 3697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7372_to, ; char* from + ptr @.TypeMapEntry.7371_from; char* to + }, ; 3698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7370_to, ; char* from + ptr @.TypeMapEntry.7369_from; char* to + }, ; 3699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7376_to, ; char* from + ptr @.TypeMapEntry.7375_from; char* to + }, ; 3700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7374_to, ; char* from + ptr @.TypeMapEntry.7373_from; char* to + }, ; 3701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7380_to, ; char* from + ptr @.TypeMapEntry.7379_from; char* to + }, ; 3702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7378_to, ; char* from + ptr @.TypeMapEntry.7377_from; char* to + }, ; 3703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7384_to, ; char* from + ptr @.TypeMapEntry.7383_from; char* to + }, ; 3704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7382_to, ; char* from + ptr @.TypeMapEntry.7381_from; char* to + }, ; 3705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7386_to, ; char* from + ptr @.TypeMapEntry.7385_from; char* to + }, ; 3706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7388_to, ; char* from + ptr @.TypeMapEntry.7387_from; char* to + }, ; 3707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7392_to, ; char* from + ptr @.TypeMapEntry.7391_from; char* to + }, ; 3708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7390_to, ; char* from + ptr @.TypeMapEntry.7389_from; char* to + }, ; 3709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7396_to, ; char* from + ptr @.TypeMapEntry.7395_from; char* to + }, ; 3710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7394_to, ; char* from + ptr @.TypeMapEntry.7393_from; char* to + }, ; 3711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7398_to, ; char* from + ptr @.TypeMapEntry.7397_from; char* to + }, ; 3712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7400_to, ; char* from + ptr @.TypeMapEntry.7399_from; char* to + }, ; 3713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7404_to, ; char* from + ptr @.TypeMapEntry.7403_from; char* to + }, ; 3714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7402_to, ; char* from + ptr @.TypeMapEntry.7401_from; char* to + }, ; 3715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7406_to, ; char* from + ptr @.TypeMapEntry.7405_from; char* to + }, ; 3716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7410_to, ; char* from + ptr @.TypeMapEntry.7409_from; char* to + }, ; 3717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7408_to, ; char* from + ptr @.TypeMapEntry.7407_from; char* to + }, ; 3718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7429_to, ; char* from + ptr @.TypeMapEntry.7428_from; char* to + }, ; 3719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7427_to, ; char* from + ptr @.TypeMapEntry.7426_from; char* to + }, ; 3720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7431_to, ; char* from + ptr @.TypeMapEntry.7430_from; char* to + }, ; 3721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7433_to, ; char* from + ptr @.TypeMapEntry.7432_from; char* to + }, ; 3722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7412_to, ; char* from + ptr null; char* to + }, ; 3723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7412_to, ; char* from + ptr null; char* to + }, ; 3724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7437_to, ; char* from + ptr @.TypeMapEntry.7436_from; char* to + }, ; 3725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7435_to, ; char* from + ptr @.TypeMapEntry.7434_from; char* to + }, ; 3726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7439_to, ; char* from + ptr @.TypeMapEntry.7438_from; char* to + }, ; 3727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7415_to, ; char* from + ptr null; char* to + }, ; 3728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7415_to, ; char* from + ptr null; char* to + }, ; 3729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7441_to, ; char* from + ptr @.TypeMapEntry.7440_from; char* to + }, ; 3730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7445_to, ; char* from + ptr @.TypeMapEntry.7444_from; char* to + }, ; 3731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7443_to, ; char* from + ptr @.TypeMapEntry.7442_from; char* to + }, ; 3732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7447_to, ; char* from + ptr @.TypeMapEntry.7446_from; char* to + }, ; 3733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7449_to, ; char* from + ptr @.TypeMapEntry.7448_from; char* to + }, ; 3734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7418_to, ; char* from + ptr null; char* to + }, ; 3735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7418_to, ; char* from + ptr null; char* to + }, ; 3736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7451_to, ; char* from + ptr @.TypeMapEntry.7450_from; char* to + }, ; 3737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7421_to, ; char* from + ptr null; char* to + }, ; 3738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7421_to, ; char* from + ptr null; char* to + }, ; 3739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7455_to, ; char* from + ptr @.TypeMapEntry.7454_from; char* to + }, ; 3740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7453_to, ; char* from + ptr @.TypeMapEntry.7452_from; char* to + }, ; 3741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7424_to, ; char* from + ptr null; char* to + }, ; 3742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7424_to, ; char* from + ptr null; char* to + }, ; 3743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7457_to, ; char* from + ptr @.TypeMapEntry.7456_from; char* to + }, ; 3744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7461_to, ; char* from + ptr @.TypeMapEntry.7460_from; char* to + }, ; 3745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7459_to, ; char* from + ptr @.TypeMapEntry.7458_from; char* to + }, ; 3746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7463_to, ; char* from + ptr @.TypeMapEntry.7462_from; char* to + }, ; 3747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7465_to, ; char* from + ptr @.TypeMapEntry.7464_from; char* to + }, ; 3748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7476_to, ; char* from + ptr @.TypeMapEntry.7475_from; char* to + }, ; 3749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7476_to, ; char* from + ptr @.TypeMapEntry.7475_from; char* to + }, ; 3750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7467_to, ; char* from + ptr null; char* to + }, ; 3751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7467_to, ; char* from + ptr null; char* to + }, ; 3752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7470_to, ; char* from + ptr @.TypeMapEntry.7469_from; char* to + }, ; 3753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7472_to, ; char* from + ptr @.TypeMapEntry.7471_from; char* to + }, ; 3754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7474_to, ; char* from + ptr @.TypeMapEntry.7473_from; char* to + }, ; 3755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7479_to, ; char* from + ptr @.TypeMapEntry.7478_from; char* to + }, ; 3756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7479_to, ; char* from + ptr @.TypeMapEntry.7478_from; char* to + }, ; 3757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7482_to, ; char* from + ptr @.TypeMapEntry.7481_from; char* to + }, ; 3758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7495_to, ; char* from + ptr null; char* to + }, ; 3759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7495_to, ; char* from + ptr null; char* to + }, ; 3760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7486_to, ; char* from + ptr @.TypeMapEntry.7485_from; char* to + }, ; 3761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7484_to, ; char* from + ptr @.TypeMapEntry.7483_from; char* to + }, ; 3762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7488_to, ; char* from + ptr @.TypeMapEntry.7487_from; char* to + }, ; 3763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7490_to, ; char* from + ptr @.TypeMapEntry.7489_from; char* to + }, ; 3764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7492_to, ; char* from + ptr @.TypeMapEntry.7491_from; char* to + }, ; 3765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7492_to, ; char* from + ptr @.TypeMapEntry.7491_from; char* to + }, ; 3766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7513_to, ; char* from + ptr @.TypeMapEntry.7512_from; char* to + }, ; 3767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7509_to, ; char* from + ptr @.TypeMapEntry.7508_from; char* to + }, ; 3768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7511_to, ; char* from + ptr @.TypeMapEntry.7510_from; char* to + }, ; 3769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7515_to, ; char* from + ptr @.TypeMapEntry.7514_from; char* to + }, ; 3770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7515_to, ; char* from + ptr @.TypeMapEntry.7514_from; char* to + }, ; 3771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7518_to, ; char* from + ptr @.TypeMapEntry.7517_from; char* to + }, ; 3772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7498_to, ; char* from + ptr @.TypeMapEntry.7497_from; char* to + }, ; 3773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7500_to, ; char* from + ptr @.TypeMapEntry.7499_from; char* to + }, ; 3774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7502_to, ; char* from + ptr @.TypeMapEntry.7501_from; char* to + }, ; 3775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7502_to, ; char* from + ptr @.TypeMapEntry.7501_from; char* to + }, ; 3776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7505_to, ; char* from + ptr @.TypeMapEntry.7504_from; char* to + }, ; 3777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7507_to, ; char* from + ptr @.TypeMapEntry.7506_from; char* to + }, ; 3778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7520_to, ; char* from + ptr @.TypeMapEntry.7519_from; char* to + }, ; 3779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7522_to, ; char* from + ptr @.TypeMapEntry.7521_from; char* to + }, ; 3780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7522_to, ; char* from + ptr @.TypeMapEntry.7521_from; char* to + }, ; 3781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7525_to, ; char* from + ptr @.TypeMapEntry.7524_from; char* to + }, ; 3782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7527_to, ; char* from + ptr @.TypeMapEntry.7526_from; char* to + }, ; 3783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7529_to, ; char* from + ptr @.TypeMapEntry.7528_from; char* to + }, ; 3784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7531_to, ; char* from + ptr @.TypeMapEntry.7530_from; char* to + }, ; 3785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7533_to, ; char* from + ptr @.TypeMapEntry.7532_from; char* to + }, ; 3786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7535_to, ; char* from + ptr @.TypeMapEntry.7534_from; char* to + }, ; 3787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7537_to, ; char* from + ptr @.TypeMapEntry.7536_from; char* to + }, ; 3788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7539_to, ; char* from + ptr @.TypeMapEntry.7538_from; char* to + }, ; 3789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7543_to, ; char* from + ptr @.TypeMapEntry.7542_from; char* to + }, ; 3790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7541_to, ; char* from + ptr @.TypeMapEntry.7540_from; char* to + }, ; 3791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7545_to, ; char* from + ptr @.TypeMapEntry.7544_from; char* to + }, ; 3792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7549_to, ; char* from + ptr @.TypeMapEntry.7548_from; char* to + }, ; 3793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7547_to, ; char* from + ptr @.TypeMapEntry.7546_from; char* to + }, ; 3794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7553_to, ; char* from + ptr @.TypeMapEntry.7552_from; char* to + }, ; 3795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7551_to, ; char* from + ptr @.TypeMapEntry.7550_from; char* to + }, ; 3796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7555_to, ; char* from + ptr @.TypeMapEntry.7554_from; char* to + }, ; 3797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7557_to, ; char* from + ptr @.TypeMapEntry.7556_from; char* to + }, ; 3798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7559_to, ; char* from + ptr @.TypeMapEntry.7558_from; char* to + }, ; 3799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7561_to, ; char* from + ptr @.TypeMapEntry.7560_from; char* to + }, ; 3800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7563_to, ; char* from + ptr @.TypeMapEntry.7562_from; char* to + }, ; 3801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7565_to, ; char* from + ptr @.TypeMapEntry.7564_from; char* to + }, ; 3802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7565_to, ; char* from + ptr @.TypeMapEntry.7564_from; char* to + }, ; 3803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7568_to, ; char* from + ptr @.TypeMapEntry.7567_from; char* to + }, ; 3804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7570_to, ; char* from + ptr @.TypeMapEntry.7569_from; char* to + }, ; 3805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7572_to, ; char* from + ptr @.TypeMapEntry.7571_from; char* to + }, ; 3806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7574_to, ; char* from + ptr @.TypeMapEntry.7573_from; char* to + }, ; 3807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7574_to, ; char* from + ptr @.TypeMapEntry.7573_from; char* to + }, ; 3808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7581_to, ; char* from + ptr @.TypeMapEntry.7580_from; char* to + }, ; 3809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7581_to, ; char* from + ptr @.TypeMapEntry.7580_from; char* to + }, ; 3810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7577_to, ; char* from + ptr @.TypeMapEntry.7576_from; char* to + }, ; 3811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7579_to, ; char* from + ptr @.TypeMapEntry.7578_from; char* to + }, ; 3812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7584_to, ; char* from + ptr @.TypeMapEntry.7583_from; char* to + }, ; 3813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7586_to, ; char* from + ptr @.TypeMapEntry.7585_from; char* to + }, ; 3814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7586_to, ; char* from + ptr @.TypeMapEntry.7585_from; char* to + }, ; 3815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7593_to, ; char* from + ptr @.TypeMapEntry.7592_from; char* to + }, ; 3816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7593_to, ; char* from + ptr @.TypeMapEntry.7592_from; char* to + }, ; 3817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7589_to, ; char* from + ptr @.TypeMapEntry.7588_from; char* to + }, ; 3818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7591_to, ; char* from + ptr @.TypeMapEntry.7590_from; char* to + }, ; 3819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7596_to, ; char* from + ptr @.TypeMapEntry.7595_from; char* to + }, ; 3820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7600_to, ; char* from + ptr @.TypeMapEntry.7599_from; char* to + }, ; 3821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7598_to, ; char* from + ptr @.TypeMapEntry.7597_from; char* to + }, ; 3822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7604_to, ; char* from + ptr @.TypeMapEntry.7603_from; char* to + }, ; 3823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7602_to, ; char* from + ptr @.TypeMapEntry.7601_from; char* to + }, ; 3824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7606_to, ; char* from + ptr @.TypeMapEntry.7605_from; char* to + }, ; 3825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7614_to, ; char* from + ptr null; char* to + }, ; 3826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7614_to, ; char* from + ptr null; char* to + }, ; 3827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7608_to, ; char* from + ptr @.TypeMapEntry.7607_from; char* to + }, ; 3828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7610_to, ; char* from + ptr @.TypeMapEntry.7609_from; char* to + }, ; 3829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7612_to, ; char* from + ptr @.TypeMapEntry.7611_from; char* to + }, ; 3830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7617_to, ; char* from + ptr @.TypeMapEntry.7616_from; char* to + }, ; 3831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7617_to, ; char* from + ptr @.TypeMapEntry.7616_from; char* to + }, ; 3832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7620_to, ; char* from + ptr @.TypeMapEntry.7619_from; char* to + }, ; 3833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7624_to, ; char* from + ptr @.TypeMapEntry.7623_from; char* to + }, ; 3834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7622_to, ; char* from + ptr @.TypeMapEntry.7621_from; char* to + }, ; 3835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7626_to, ; char* from + ptr @.TypeMapEntry.7625_from; char* to + }, ; 3836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7628_to, ; char* from + ptr @.TypeMapEntry.7627_from; char* to + }, ; 3837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7630_to, ; char* from + ptr @.TypeMapEntry.7629_from; char* to + }, ; 3838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7632_to, ; char* from + ptr @.TypeMapEntry.7631_from; char* to + }, ; 3839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7632_to, ; char* from + ptr @.TypeMapEntry.7631_from; char* to + }, ; 3840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7638_to, ; char* from + ptr @.TypeMapEntry.7637_from; char* to + }, ; 3841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7638_to, ; char* from + ptr @.TypeMapEntry.7637_from; char* to + }, ; 3842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7635_to, ; char* from + ptr @.TypeMapEntry.7634_from; char* to + }, ; 3843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7635_to, ; char* from + ptr @.TypeMapEntry.7634_from; char* to + }, ; 3844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7651_to, ; char* from + ptr @.TypeMapEntry.7650_from; char* to + }, ; 3845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7644_to, ; char* from + ptr @.TypeMapEntry.7643_from; char* to + }, ; 3846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7644_to, ; char* from + ptr @.TypeMapEntry.7643_from; char* to + }, ; 3847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7647_to, ; char* from + ptr @.TypeMapEntry.7646_from; char* to + }, ; 3848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7649_to, ; char* from + ptr @.TypeMapEntry.7648_from; char* to + }, ; 3849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7653_to, ; char* from + ptr @.TypeMapEntry.7652_from; char* to + }, ; 3850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7655_to, ; char* from + ptr @.TypeMapEntry.7654_from; char* to + }, ; 3851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7678_to, ; char* from + ptr @.TypeMapEntry.7677_from; char* to + }, ; 3852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7657_to, ; char* from + ptr @.TypeMapEntry.7656_from; char* to + }, ; 3853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7659_to, ; char* from + ptr @.TypeMapEntry.7658_from; char* to + }, ; 3854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7661_to, ; char* from + ptr @.TypeMapEntry.7660_from; char* to + }, ; 3855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7663_to, ; char* from + ptr @.TypeMapEntry.7662_from; char* to + }, ; 3856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7665_to, ; char* from + ptr @.TypeMapEntry.7664_from; char* to + }, ; 3857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7667_to, ; char* from + ptr @.TypeMapEntry.7666_from; char* to + }, ; 3858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7672_to, ; char* from + ptr @.TypeMapEntry.7671_from; char* to + }, ; 3859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7674_to, ; char* from + ptr @.TypeMapEntry.7673_from; char* to + }, ; 3860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7676_to, ; char* from + ptr @.TypeMapEntry.7675_from; char* to + }, ; 3861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7669_to, ; char* from + ptr null; char* to + }, ; 3862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7669_to, ; char* from + ptr null; char* to + }, ; 3863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7680_to, ; char* from + ptr @.TypeMapEntry.7679_from; char* to + }, ; 3864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7680_to, ; char* from + ptr @.TypeMapEntry.7679_from; char* to + }, ; 3865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7641_to, ; char* from + ptr @.TypeMapEntry.7640_from; char* to + }, ; 3866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7641_to, ; char* from + ptr @.TypeMapEntry.7640_from; char* to + }, ; 3867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7685_to, ; char* from + ptr @.TypeMapEntry.7684_from; char* to + }, ; 3868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7685_to, ; char* from + ptr @.TypeMapEntry.7684_from; char* to + }, ; 3869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7683_to, ; char* from + ptr @.TypeMapEntry.7682_from; char* to + }, ; 3870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7688_to, ; char* from + ptr @.TypeMapEntry.7687_from; char* to + }, ; 3871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7690_to, ; char* from + ptr @.TypeMapEntry.7689_from; char* to + }, ; 3872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7692_to, ; char* from + ptr null; char* to + }, ; 3873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7692_to, ; char* from + ptr null; char* to + }, ; 3874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7697_to, ; char* from + ptr null; char* to + }, ; 3875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7697_to, ; char* from + ptr null; char* to + }, ; 3876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7707_to, ; char* from + ptr @.TypeMapEntry.7706_from; char* to + }, ; 3877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7705_to, ; char* from + ptr @.TypeMapEntry.7704_from; char* to + }, ; 3878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7713_to, ; char* from + ptr @.TypeMapEntry.7712_from; char* to + }, ; 3879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7713_to, ; char* from + ptr @.TypeMapEntry.7712_from; char* to + }, ; 3880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7709_to, ; char* from + ptr @.TypeMapEntry.7708_from; char* to + }, ; 3881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7711_to, ; char* from + ptr @.TypeMapEntry.7710_from; char* to + }, ; 3882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7718_to, ; char* from + ptr @.TypeMapEntry.7717_from; char* to + }, ; 3883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7716_to, ; char* from + ptr @.TypeMapEntry.7715_from; char* to + }, ; 3884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7702_to, ; char* from + ptr null; char* to + }, ; 3885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7702_to, ; char* from + ptr null; char* to + }, ; 3886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7720_to, ; char* from + ptr @.TypeMapEntry.7719_from; char* to + }, ; 3887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7722_to, ; char* from + ptr @.TypeMapEntry.7721_from; char* to + }, ; 3888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7724_to, ; char* from + ptr @.TypeMapEntry.7723_from; char* to + }, ; 3889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7726_to, ; char* from + ptr null; char* to + }, ; 3890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7726_to, ; char* from + ptr null; char* to + }, ; 3891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7729_to, ; char* from + ptr @.TypeMapEntry.7728_from; char* to + }, ; 3892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7745_to, ; char* from + ptr @.TypeMapEntry.7744_from; char* to + }, ; 3893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7731_to, ; char* from + ptr @.TypeMapEntry.7730_from; char* to + }, ; 3894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7733_to, ; char* from + ptr @.TypeMapEntry.7732_from; char* to + }, ; 3895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7735_to, ; char* from + ptr null; char* to + }, ; 3896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7735_to, ; char* from + ptr null; char* to + }, ; 3897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7740_to, ; char* from + ptr null; char* to + }, ; 3898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7740_to, ; char* from + ptr null; char* to + }, ; 3899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7747_to, ; char* from + ptr @.TypeMapEntry.7746_from; char* to + }, ; 3900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7747_to, ; char* from + ptr @.TypeMapEntry.7746_from; char* to + }, ; 3901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7750_to, ; char* from + ptr @.TypeMapEntry.7749_from; char* to + }, ; 3902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7750_to, ; char* from + ptr @.TypeMapEntry.7749_from; char* to + }, ; 3903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7753_to, ; char* from + ptr @.TypeMapEntry.7752_from; char* to + }, ; 3904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7755_to, ; char* from + ptr @.TypeMapEntry.7754_from; char* to + }, ; 3905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7755_to, ; char* from + ptr @.TypeMapEntry.7754_from; char* to + }, ; 3906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7755_to, ; char* from + ptr @.TypeMapEntry.7754_from; char* to + }, ; 3907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7755_to, ; char* from + ptr @.TypeMapEntry.7754_from; char* to + }, ; 3908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7758_to, ; char* from + ptr @.TypeMapEntry.7757_from; char* to + }, ; 3909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7760_to, ; char* from + ptr @.TypeMapEntry.7759_from; char* to + }, ; 3910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7760_to, ; char* from + ptr @.TypeMapEntry.7759_from; char* to + }, ; 3911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7763_to, ; char* from + ptr @.TypeMapEntry.7762_from; char* to + }, ; 3912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7765_to, ; char* from + ptr @.TypeMapEntry.7764_from; char* to + }, ; 3913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7765_to, ; char* from + ptr @.TypeMapEntry.7764_from; char* to + }, ; 3914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7765_to, ; char* from + ptr @.TypeMapEntry.7764_from; char* to + }, ; 3915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7765_to, ; char* from + ptr @.TypeMapEntry.7764_from; char* to + }, ; 3916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7768_to, ; char* from + ptr @.TypeMapEntry.7767_from; char* to + }, ; 3917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7770_to, ; char* from + ptr @.TypeMapEntry.7769_from; char* to + }, ; 3918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7770_to, ; char* from + ptr @.TypeMapEntry.7769_from; char* to + }, ; 3919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7773_to, ; char* from + ptr @.TypeMapEntry.7772_from; char* to + }, ; 3920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7775_to, ; char* from + ptr @.TypeMapEntry.7774_from; char* to + }, ; 3921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7775_to, ; char* from + ptr @.TypeMapEntry.7774_from; char* to + }, ; 3922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7775_to, ; char* from + ptr @.TypeMapEntry.7774_from; char* to + }, ; 3923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7775_to, ; char* from + ptr @.TypeMapEntry.7774_from; char* to + }, ; 3924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7778_to, ; char* from + ptr @.TypeMapEntry.7777_from; char* to + }, ; 3925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7780_to, ; char* from + ptr @.TypeMapEntry.7779_from; char* to + }, ; 3926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7780_to, ; char* from + ptr @.TypeMapEntry.7779_from; char* to + }, ; 3927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7783_to, ; char* from + ptr @.TypeMapEntry.7782_from; char* to + }, ; 3928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7791_to, ; char* from + ptr @.TypeMapEntry.7793_from; char* to + }, ; 3929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7791_to, ; char* from + ptr @.TypeMapEntry.7793_from; char* to + }, ; 3930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7791_to, ; char* from + ptr @.TypeMapEntry.7793_from; char* to + }, ; 3931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7791_to, ; char* from + ptr @.TypeMapEntry.7793_from; char* to + }, ; 3932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7796_to, ; char* from + ptr @.TypeMapEntry.7795_from; char* to + }, ; 3933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7798_to, ; char* from + ptr @.TypeMapEntry.7797_from; char* to + }, ; 3934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7798_to, ; char* from + ptr @.TypeMapEntry.7797_from; char* to + }, ; 3935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7801_to, ; char* from + ptr @.TypeMapEntry.7800_from; char* to + }, ; 3936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7803_to, ; char* from + ptr @.TypeMapEntry.7808_from; char* to + }, ; 3937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7803_to, ; char* from + ptr @.TypeMapEntry.7808_from; char* to + }, ; 3938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7803_to, ; char* from + ptr @.TypeMapEntry.7808_from; char* to + }, ; 3939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7803_to, ; char* from + ptr @.TypeMapEntry.7808_from; char* to + }, ; 3940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7811_to, ; char* from + ptr @.TypeMapEntry.7810_from; char* to + }, ; 3941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7813_to, ; char* from + ptr @.TypeMapEntry.7812_from; char* to + }, ; 3942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7813_to, ; char* from + ptr @.TypeMapEntry.7812_from; char* to + }, ; 3943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7816_to, ; char* from + ptr @.TypeMapEntry.7815_from; char* to + }, ; 3944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7806_to, ; char* from + ptr @.TypeMapEntry.7817_from; char* to + }, ; 3945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7806_to, ; char* from + ptr @.TypeMapEntry.7817_from; char* to + }, ; 3946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7806_to, ; char* from + ptr @.TypeMapEntry.7817_from; char* to + }, ; 3947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7806_to, ; char* from + ptr @.TypeMapEntry.7817_from; char* to + }, ; 3948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7820_to, ; char* from + ptr @.TypeMapEntry.7819_from; char* to + }, ; 3949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7822_to, ; char* from + ptr @.TypeMapEntry.7821_from; char* to + }, ; 3950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7822_to, ; char* from + ptr @.TypeMapEntry.7821_from; char* to + }, ; 3951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7825_to, ; char* from + ptr @.TypeMapEntry.7824_from; char* to + }, ; 3952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7827_to, ; char* from + ptr @.TypeMapEntry.7829_from; char* to + }, ; 3953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7827_to, ; char* from + ptr @.TypeMapEntry.7829_from; char* to + }, ; 3954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7827_to, ; char* from + ptr @.TypeMapEntry.7829_from; char* to + }, ; 3955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7827_to, ; char* from + ptr @.TypeMapEntry.7829_from; char* to + }, ; 3956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7832_to, ; char* from + ptr @.TypeMapEntry.7831_from; char* to + }, ; 3957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7834_to, ; char* from + ptr @.TypeMapEntry.7833_from; char* to + }, ; 3958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7834_to, ; char* from + ptr @.TypeMapEntry.7833_from; char* to + }, ; 3959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7837_to, ; char* from + ptr @.TypeMapEntry.7836_from; char* to + }, ; 3960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7839_to, ; char* from + ptr @.TypeMapEntry.7838_from; char* to + }, ; 3961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7841_to, ; char* from + ptr @.TypeMapEntry.7840_from; char* to + }, ; 3962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7843_to, ; char* from + ptr null; char* to + }, ; 3963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7843_to, ; char* from + ptr null; char* to + }, ; 3964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7860_to, ; char* from + ptr @.TypeMapEntry.7859_from; char* to + }, ; 3965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7862_to, ; char* from + ptr @.TypeMapEntry.7861_from; char* to + }, ; 3966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7862_to, ; char* from + ptr @.TypeMapEntry.7861_from; char* to + }, ; 3967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7865_to, ; char* from + ptr @.TypeMapEntry.7864_from; char* to + }, ; 3968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7845_to, ; char* from + ptr @.TypeMapEntry.7850_from; char* to + }, ; 3969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7845_to, ; char* from + ptr @.TypeMapEntry.7850_from; char* to + }, ; 3970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7845_to, ; char* from + ptr @.TypeMapEntry.7850_from; char* to + }, ; 3971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7845_to, ; char* from + ptr @.TypeMapEntry.7850_from; char* to + }, ; 3972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7853_to, ; char* from + ptr @.TypeMapEntry.7852_from; char* to + }, ; 3973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7855_to, ; char* from + ptr @.TypeMapEntry.7854_from; char* to + }, ; 3974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7855_to, ; char* from + ptr @.TypeMapEntry.7854_from; char* to + }, ; 3975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7858_to, ; char* from + ptr @.TypeMapEntry.7857_from; char* to + }, ; 3976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7849_to, ; char* from + ptr @.TypeMapEntry.7848_from; char* to + }, ; 3977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7867_to, ; char* from + ptr @.TypeMapEntry.7866_from; char* to + }, ; 3978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7869_to, ; char* from + ptr @.TypeMapEntry.7868_from; char* to + }, ; 3979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7871_to, ; char* from + ptr @.TypeMapEntry.7870_from; char* to + }, ; 3980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7873_to, ; char* from + ptr @.TypeMapEntry.7872_from; char* to + }, ; 3981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7875_to, ; char* from + ptr @.TypeMapEntry.7874_from; char* to + }, ; 3982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7877_to, ; char* from + ptr @.TypeMapEntry.7876_from; char* to + }, ; 3983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7879_to, ; char* from + ptr @.TypeMapEntry.7878_from; char* to + }, ; 3984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7881_to, ; char* from + ptr @.TypeMapEntry.7880_from; char* to + }, ; 3985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7883_to, ; char* from + ptr @.TypeMapEntry.7882_from; char* to + }, ; 3986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7885_to, ; char* from + ptr @.TypeMapEntry.7884_from; char* to + }, ; 3987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7887_to, ; char* from + ptr @.TypeMapEntry.7886_from; char* to + }, ; 3988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7889_to, ; char* from + ptr @.TypeMapEntry.7888_from; char* to + }, ; 3989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7891_to, ; char* from + ptr @.TypeMapEntry.7890_from; char* to + }, ; 3990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7893_to, ; char* from + ptr @.TypeMapEntry.7892_from; char* to + }, ; 3991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7902_to, ; char* from + ptr @.TypeMapEntry.7901_from; char* to + }, ; 3992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7895_to, ; char* from + ptr @.TypeMapEntry.7894_from; char* to + }, ; 3993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7895_to, ; char* from + ptr @.TypeMapEntry.7894_from; char* to + }, ; 3994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7898_to, ; char* from + ptr @.TypeMapEntry.7897_from; char* to + }, ; 3995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7900_to, ; char* from + ptr @.TypeMapEntry.7899_from; char* to + }, ; 3996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7906_to, ; char* from + ptr @.TypeMapEntry.7905_from; char* to + }, ; 3997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7904_to, ; char* from + ptr @.TypeMapEntry.7903_from; char* to + }, ; 3998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7908_to, ; char* from + ptr @.TypeMapEntry.7907_from; char* to + }, ; 3999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7910_to, ; char* from + ptr @.TypeMapEntry.7909_from; char* to + }, ; 4000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7953_to, ; char* from + ptr null; char* to + }, ; 4001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7953_to, ; char* from + ptr null; char* to + }, ; 4002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7912_to, ; char* from + ptr @.TypeMapEntry.7911_from; char* to + }, ; 4003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7914_to, ; char* from + ptr @.TypeMapEntry.7913_from; char* to + }, ; 4004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7956_to, ; char* from + ptr null; char* to + }, ; 4005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7956_to, ; char* from + ptr null; char* to + }, ; 4006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7916_to, ; char* from + ptr @.TypeMapEntry.7915_from; char* to + }, ; 4007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7918_to, ; char* from + ptr @.TypeMapEntry.7917_from; char* to + }, ; 4008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7918_to, ; char* from + ptr @.TypeMapEntry.7917_from; char* to + }, ; 4009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7925_to, ; char* from + ptr @.TypeMapEntry.7924_from; char* to + }, ; 4010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7925_to, ; char* from + ptr @.TypeMapEntry.7924_from; char* to + }, ; 4011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7923_to, ; char* from + ptr @.TypeMapEntry.7922_from; char* to + }, ; 4012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7921_to, ; char* from + ptr @.TypeMapEntry.7920_from; char* to + }, ; 4013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7928_to, ; char* from + ptr @.TypeMapEntry.7927_from; char* to + }, ; 4014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7928_to, ; char* from + ptr @.TypeMapEntry.7927_from; char* to + }, ; 4015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7931_to, ; char* from + ptr @.TypeMapEntry.7930_from; char* to + }, ; 4016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7931_to, ; char* from + ptr @.TypeMapEntry.7930_from; char* to + }, ; 4017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7941_to, ; char* from + ptr @.TypeMapEntry.7940_from; char* to + }, ; 4018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7941_to, ; char* from + ptr @.TypeMapEntry.7940_from; char* to + }, ; 4019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7934_to, ; char* from + ptr @.TypeMapEntry.7933_from; char* to + }, ; 4020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7936_to, ; char* from + ptr @.TypeMapEntry.7935_from; char* to + }, ; 4021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7938_to, ; char* from + ptr @.TypeMapEntry.7937_from; char* to + }, ; 4022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7938_to, ; char* from + ptr @.TypeMapEntry.7937_from; char* to + }, ; 4023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7944_to, ; char* from + ptr @.TypeMapEntry.7943_from; char* to + }, ; 4024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7946_to, ; char* from + ptr @.TypeMapEntry.7945_from; char* to + }, ; 4025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7946_to, ; char* from + ptr @.TypeMapEntry.7945_from; char* to + }, ; 4026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7949_to, ; char* from + ptr @.TypeMapEntry.7948_from; char* to + }, ; 4027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7951_to, ; char* from + ptr @.TypeMapEntry.7950_from; char* to + }, ; 4028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7965_to, ; char* from + ptr @.TypeMapEntry.7964_from; char* to + }, ; 4029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7965_to, ; char* from + ptr @.TypeMapEntry.7964_from; char* to + }, ; 4030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7962_to, ; char* from + ptr @.TypeMapEntry.7961_from; char* to + }, ; 4031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7962_to, ; char* from + ptr @.TypeMapEntry.7961_from; char* to + }, ; 4032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7959_to, ; char* from + ptr @.TypeMapEntry.7958_from; char* to + }, ; 4033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7959_to, ; char* from + ptr @.TypeMapEntry.7958_from; char* to + }, ; 4034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7970_to, ; char* from + ptr @.TypeMapEntry.7969_from; char* to + }, ; 4035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7968_to, ; char* from + ptr @.TypeMapEntry.7967_from; char* to + }, ; 4036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7972_to, ; char* from + ptr @.TypeMapEntry.7971_from; char* to + }, ; 4037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7974_to, ; char* from + ptr @.TypeMapEntry.7973_from; char* to + }, ; 4038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7976_to, ; char* from + ptr @.TypeMapEntry.7975_from; char* to + }, ; 4039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7981_to, ; char* from + ptr @.TypeMapEntry.7980_from; char* to + }, ; 4040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7978_to, ; char* from + ptr @.TypeMapEntry.7977_from; char* to + }, ; 4041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7978_to, ; char* from + ptr @.TypeMapEntry.7977_from; char* to + }, ; 4042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7991_to, ; char* from + ptr @.TypeMapEntry.7990_from; char* to + }, ; 4043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7983_to, ; char* from + ptr @.TypeMapEntry.7982_from; char* to + }, ; 4044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7983_to, ; char* from + ptr @.TypeMapEntry.7982_from; char* to + }, ; 4045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7989_to, ; char* from + ptr @.TypeMapEntry.7988_from; char* to + }, ; 4046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7986_to, ; char* from + ptr @.TypeMapEntry.7985_from; char* to + }, ; 4047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7986_to, ; char* from + ptr @.TypeMapEntry.7985_from; char* to + }, ; 4048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7993_to, ; char* from + ptr @.TypeMapEntry.7992_from; char* to + }, ; 4049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7995_to, ; char* from + ptr @.TypeMapEntry.7994_from; char* to + }, ; 4050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7999_to, ; char* from + ptr @.TypeMapEntry.7998_from; char* to + }, ; 4051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7997_to, ; char* from + ptr @.TypeMapEntry.7996_from; char* to + }, ; 4052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8011_to, ; char* from + ptr @.TypeMapEntry.8010_from; char* to + }, ; 4053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8001_to, ; char* from + ptr @.TypeMapEntry.8000_from; char* to + }, ; 4054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8003_to, ; char* from + ptr @.TypeMapEntry.8002_from; char* to + }, ; 4055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8005_to, ; char* from + ptr @.TypeMapEntry.8004_from; char* to + }, ; 4056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8007_to, ; char* from + ptr @.TypeMapEntry.8006_from; char* to + }, ; 4057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8009_to, ; char* from + ptr @.TypeMapEntry.8008_from; char* to + }, ; 4058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8015_to, ; char* from + ptr @.TypeMapEntry.8014_from; char* to + }, ; 4059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8013_to, ; char* from + ptr @.TypeMapEntry.8012_from; char* to + }, ; 4060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8019_to, ; char* from + ptr @.TypeMapEntry.8018_from; char* to + }, ; 4061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8017_to, ; char* from + ptr @.TypeMapEntry.8016_from; char* to + }, ; 4062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8052_to, ; char* from + ptr @.TypeMapEntry.8051_from; char* to + }, ; 4063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8021_to, ; char* from + ptr @.TypeMapEntry.8020_from; char* to + }, ; 4064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8023_to, ; char* from + ptr @.TypeMapEntry.8022_from; char* to + }, ; 4065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8027_to, ; char* from + ptr null; char* to + }, ; 4066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8027_to, ; char* from + ptr null; char* to + }, ; 4067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8025_to, ; char* from + ptr @.TypeMapEntry.8024_from; char* to + }, ; 4068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8032_to, ; char* from + ptr @.TypeMapEntry.8031_from; char* to + }, ; 4069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8034_to, ; char* from + ptr @.TypeMapEntry.8033_from; char* to + }, ; 4070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8036_to, ; char* from + ptr @.TypeMapEntry.8035_from; char* to + }, ; 4071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8038_to, ; char* from + ptr @.TypeMapEntry.8037_from; char* to + }, ; 4072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8040_to, ; char* from + ptr @.TypeMapEntry.8039_from; char* to + }, ; 4073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8042_to, ; char* from + ptr @.TypeMapEntry.8041_from; char* to + }, ; 4074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8044_to, ; char* from + ptr @.TypeMapEntry.8043_from; char* to + }, ; 4075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8046_to, ; char* from + ptr @.TypeMapEntry.8045_from; char* to + }, ; 4076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8048_to, ; char* from + ptr @.TypeMapEntry.8047_from; char* to + }, ; 4077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8050_to, ; char* from + ptr @.TypeMapEntry.8049_from; char* to + }, ; 4078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8056_to, ; char* from + ptr @.TypeMapEntry.8055_from; char* to + }, ; 4079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8056_to, ; char* from + ptr @.TypeMapEntry.8055_from; char* to + }, ; 4080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8058_to, ; char* from + ptr @.TypeMapEntry.8057_from; char* to + }, ; 4081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8060_to, ; char* from + ptr @.TypeMapEntry.8059_from; char* to + }, ; 4082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8063_to, ; char* from + ptr @.TypeMapEntry.8062_from; char* to + }, ; 4083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8065_to, ; char* from + ptr @.TypeMapEntry.8064_from; char* to + }, ; 4084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8067_to, ; char* from + ptr @.TypeMapEntry.8066_from; char* to + }, ; 4085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8069_to, ; char* from + ptr @.TypeMapEntry.8068_from; char* to + }, ; 4086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8071_to, ; char* from + ptr @.TypeMapEntry.8070_from; char* to + }, ; 4087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8071_to, ; char* from + ptr @.TypeMapEntry.8070_from; char* to + }, ; 4088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8073_to, ; char* from + ptr @.TypeMapEntry.8072_from; char* to + }, ; 4089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8075_to, ; char* from + ptr @.TypeMapEntry.8074_from; char* to + }, ; 4090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8078_to, ; char* from + ptr @.TypeMapEntry.8077_from; char* to + }, ; 4091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8080_to, ; char* from + ptr @.TypeMapEntry.8079_from; char* to + }, ; 4092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8082_to, ; char* from + ptr @.TypeMapEntry.8081_from; char* to + }, ; 4093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8084_to, ; char* from + ptr @.TypeMapEntry.8083_from; char* to + }, ; 4094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8086_to, ; char* from + ptr @.TypeMapEntry.8085_from; char* to + }, ; 4095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8086_to, ; char* from + ptr @.TypeMapEntry.8085_from; char* to + }, ; 4096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8089_to, ; char* from + ptr @.TypeMapEntry.8088_from; char* to + }, ; 4097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8089_to, ; char* from + ptr @.TypeMapEntry.8088_from; char* to + }, ; 4098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8091_to, ; char* from + ptr @.TypeMapEntry.8090_from; char* to + }, ; 4099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8093_to, ; char* from + ptr @.TypeMapEntry.8092_from; char* to + }, ; 4100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8096_to, ; char* from + ptr @.TypeMapEntry.8095_from; char* to + }, ; 4101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8098_to, ; char* from + ptr @.TypeMapEntry.8097_from; char* to + }, ; 4102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8100_to, ; char* from + ptr @.TypeMapEntry.8099_from; char* to + }, ; 4103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8102_to, ; char* from + ptr @.TypeMapEntry.8101_from; char* to + }, ; 4104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8104_to, ; char* from + ptr @.TypeMapEntry.8103_from; char* to + }, ; 4105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8124_to, ; char* from + ptr @.TypeMapEntry.8123_from; char* to + }, ; 4106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8126_to, ; char* from + ptr @.TypeMapEntry.8125_from; char* to + }, ; 4107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8148_to, ; char* from + ptr @.TypeMapEntry.8147_from; char* to + }, ; 4108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8237_to, ; char* from + ptr @.TypeMapEntry.8236_from; char* to + }, ; 4109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8239_to, ; char* from + ptr @.TypeMapEntry.8238_from; char* to + }, ; 4110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8241_to, ; char* from + ptr @.TypeMapEntry.8240_from; char* to + }, ; 4111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8243_to, ; char* from + ptr @.TypeMapEntry.8242_from; char* to + }, ; 4112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8245_to, ; char* from + ptr @.TypeMapEntry.8244_from; char* to + }, ; 4113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8247_to, ; char* from + ptr @.TypeMapEntry.8246_from; char* to + }, ; 4114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8249_to, ; char* from + ptr @.TypeMapEntry.8248_from; char* to + }, ; 4115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8251_to, ; char* from + ptr @.TypeMapEntry.8250_from; char* to + }, ; 4116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8253_to, ; char* from + ptr @.TypeMapEntry.8252_from; char* to + }, ; 4117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8255_to, ; char* from + ptr @.TypeMapEntry.8254_from; char* to + }, ; 4118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8257_to, ; char* from + ptr @.TypeMapEntry.8256_from; char* to + }, ; 4119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8259_to, ; char* from + ptr @.TypeMapEntry.8258_from; char* to + }, ; 4120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8261_to, ; char* from + ptr @.TypeMapEntry.8260_from; char* to + }, ; 4121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8263_to, ; char* from + ptr @.TypeMapEntry.8262_from; char* to + }, ; 4122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8265_to, ; char* from + ptr @.TypeMapEntry.8264_from; char* to + }, ; 4123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8269_to, ; char* from + ptr @.TypeMapEntry.8268_from; char* to + }, ; 4124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8267_to, ; char* from + ptr @.TypeMapEntry.8266_from; char* to + }, ; 4125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8273_to, ; char* from + ptr @.TypeMapEntry.8272_from; char* to + }, ; 4126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8271_to, ; char* from + ptr @.TypeMapEntry.8270_from; char* to + }, ; 4127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8278_to, ; char* from + ptr @.TypeMapEntry.8277_from; char* to + }, ; 4128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8275_to, ; char* from + ptr @.TypeMapEntry.8274_from; char* to + }, ; 4129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8275_to, ; char* from + ptr @.TypeMapEntry.8274_from; char* to + }, ; 4130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8284_to, ; char* from + ptr @.TypeMapEntry.8283_from; char* to + }, ; 4131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8280_to, ; char* from + ptr @.TypeMapEntry.8279_from; char* to + }, ; 4132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8282_to, ; char* from + ptr @.TypeMapEntry.8281_from; char* to + }, ; 4133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8286_to, ; char* from + ptr @.TypeMapEntry.8285_from; char* to + }, ; 4134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8292_to, ; char* from + ptr @.TypeMapEntry.8291_from; char* to + }, ; 4135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8288_to, ; char* from + ptr @.TypeMapEntry.8287_from; char* to + }, ; 4136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8290_to, ; char* from + ptr @.TypeMapEntry.8289_from; char* to + }, ; 4137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8296_to, ; char* from + ptr @.TypeMapEntry.8295_from; char* to + }, ; 4138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8294_to, ; char* from + ptr @.TypeMapEntry.8293_from; char* to + }, ; 4139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8403_to, ; char* from + ptr @.TypeMapEntry.8402_from; char* to + }, ; 4140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8298_to, ; char* from + ptr null; char* to + }, ; 4141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8298_to, ; char* from + ptr null; char* to + }, ; 4142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8303_to, ; char* from + ptr null; char* to + }, ; 4143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8303_to, ; char* from + ptr null; char* to + }, ; 4144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8308_to, ; char* from + ptr null; char* to + }, ; 4145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8308_to, ; char* from + ptr null; char* to + }, ; 4146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8313_to, ; char* from + ptr null; char* to + }, ; 4147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8313_to, ; char* from + ptr null; char* to + }, ; 4148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8318_to, ; char* from + ptr null; char* to + }, ; 4149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8318_to, ; char* from + ptr null; char* to + }, ; 4150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8323_to, ; char* from + ptr null; char* to + }, ; 4151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8323_to, ; char* from + ptr null; char* to + }, ; 4152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8328_to, ; char* from + ptr null; char* to + }, ; 4153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8328_to, ; char* from + ptr null; char* to + }, ; 4154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8333_to, ; char* from + ptr null; char* to + }, ; 4155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8333_to, ; char* from + ptr null; char* to + }, ; 4156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8338_to, ; char* from + ptr null; char* to + }, ; 4157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8338_to, ; char* from + ptr null; char* to + }, ; 4158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8343_to, ; char* from + ptr null; char* to + }, ; 4159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8343_to, ; char* from + ptr null; char* to + }, ; 4160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8348_to, ; char* from + ptr null; char* to + }, ; 4161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8348_to, ; char* from + ptr null; char* to + }, ; 4162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8353_to, ; char* from + ptr null; char* to + }, ; 4163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8353_to, ; char* from + ptr null; char* to + }, ; 4164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8358_to, ; char* from + ptr null; char* to + }, ; 4165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8358_to, ; char* from + ptr null; char* to + }, ; 4166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8363_to, ; char* from + ptr null; char* to + }, ; 4167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8363_to, ; char* from + ptr null; char* to + }, ; 4168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8368_to, ; char* from + ptr null; char* to + }, ; 4169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8368_to, ; char* from + ptr null; char* to + }, ; 4170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8373_to, ; char* from + ptr null; char* to + }, ; 4171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8373_to, ; char* from + ptr null; char* to + }, ; 4172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8378_to, ; char* from + ptr null; char* to + }, ; 4173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8378_to, ; char* from + ptr null; char* to + }, ; 4174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8383_to, ; char* from + ptr null; char* to + }, ; 4175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8383_to, ; char* from + ptr null; char* to + }, ; 4176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8388_to, ; char* from + ptr null; char* to + }, ; 4177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8388_to, ; char* from + ptr null; char* to + }, ; 4178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8393_to, ; char* from + ptr null; char* to + }, ; 4179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8393_to, ; char* from + ptr null; char* to + }, ; 4180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8398_to, ; char* from + ptr null; char* to + }, ; 4181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8398_to, ; char* from + ptr null; char* to + }, ; 4182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8405_to, ; char* from + ptr @.TypeMapEntry.8404_from; char* to + }, ; 4183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8421_to, ; char* from + ptr @.TypeMapEntry.8420_from; char* to + }, ; 4184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8407_to, ; char* from + ptr @.TypeMapEntry.8406_from; char* to + }, ; 4185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8409_to, ; char* from + ptr @.TypeMapEntry.8408_from; char* to + }, ; 4186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8409_to, ; char* from + ptr @.TypeMapEntry.8408_from; char* to + }, ; 4187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8412_to, ; char* from + ptr @.TypeMapEntry.8411_from; char* to + }, ; 4188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8414_to, ; char* from + ptr @.TypeMapEntry.8413_from; char* to + }, ; 4189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8416_to, ; char* from + ptr @.TypeMapEntry.8415_from; char* to + }, ; 4190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8418_to, ; char* from + ptr @.TypeMapEntry.8417_from; char* to + }, ; 4191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8418_to, ; char* from + ptr @.TypeMapEntry.8417_from; char* to + }, ; 4192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8426_to, ; char* from + ptr @.TypeMapEntry.8425_from; char* to + }, ; 4193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8423_to, ; char* from + ptr @.TypeMapEntry.8422_from; char* to + }, ; 4194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8423_to, ; char* from + ptr @.TypeMapEntry.8422_from; char* to + }, ; 4195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8428_to, ; char* from + ptr @.TypeMapEntry.8427_from; char* to + }, ; 4196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8430_to, ; char* from + ptr @.TypeMapEntry.8429_from; char* to + }, ; 4197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8434_to, ; char* from + ptr @.TypeMapEntry.8433_from; char* to + }, ; 4198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8434_to, ; char* from + ptr @.TypeMapEntry.8433_from; char* to + }, ; 4199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8432_to, ; char* from + ptr @.TypeMapEntry.8431_from; char* to + }, ; 4200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8437_to, ; char* from + ptr @.TypeMapEntry.8436_from; char* to + }, ; 4201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8441_to, ; char* from + ptr @.TypeMapEntry.8440_from; char* to + }, ; 4202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8439_to, ; char* from + ptr @.TypeMapEntry.8438_from; char* to + }, ; 4203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8054_to, ; char* from + ptr @.TypeMapEntry.8053_from; char* to + }, ; 4204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8108_to, ; char* from + ptr @.TypeMapEntry.8107_from; char* to + }, ; 4205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8106_to, ; char* from + ptr @.TypeMapEntry.8105_from; char* to + }, ; 4206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8112_to, ; char* from + ptr @.TypeMapEntry.8111_from; char* to + }, ; 4207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8110_to, ; char* from + ptr @.TypeMapEntry.8109_from; char* to + }, ; 4208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8114_to, ; char* from + ptr @.TypeMapEntry.8113_from; char* to + }, ; 4209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8116_to, ; char* from + ptr @.TypeMapEntry.8115_from; char* to + }, ; 4210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8120_to, ; char* from + ptr @.TypeMapEntry.8119_from; char* to + }, ; 4211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8118_to, ; char* from + ptr @.TypeMapEntry.8117_from; char* to + }, ; 4212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8122_to, ; char* from + ptr @.TypeMapEntry.8121_from; char* to + }, ; 4213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8128_to, ; char* from + ptr @.TypeMapEntry.8127_from; char* to + }, ; 4214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8132_to, ; char* from + ptr @.TypeMapEntry.8131_from; char* to + }, ; 4215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8130_to, ; char* from + ptr @.TypeMapEntry.8129_from; char* to + }, ; 4216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8134_to, ; char* from + ptr @.TypeMapEntry.8133_from; char* to + }, ; 4217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8136_to, ; char* from + ptr @.TypeMapEntry.8135_from; char* to + }, ; 4218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8138_to, ; char* from + ptr @.TypeMapEntry.8137_from; char* to + }, ; 4219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8140_to, ; char* from + ptr @.TypeMapEntry.8139_from; char* to + }, ; 4220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8146_to, ; char* from + ptr @.TypeMapEntry.8145_from; char* to + }, ; 4221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8142_to, ; char* from + ptr @.TypeMapEntry.8141_from; char* to + }, ; 4222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8144_to, ; char* from + ptr @.TypeMapEntry.8143_from; char* to + }, ; 4223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8157_to, ; char* from + ptr @.TypeMapEntry.8156_from; char* to + }, ; 4224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8159_to, ; char* from + ptr @.TypeMapEntry.8158_from; char* to + }, ; 4225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8163_to, ; char* from + ptr @.TypeMapEntry.8162_from; char* to + }, ; 4226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8161_to, ; char* from + ptr @.TypeMapEntry.8160_from; char* to + }, ; 4227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8165_to, ; char* from + ptr @.TypeMapEntry.8164_from; char* to + }, ; 4228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8167_to, ; char* from + ptr @.TypeMapEntry.8166_from; char* to + }, ; 4229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8169_to, ; char* from + ptr @.TypeMapEntry.8168_from; char* to + }, ; 4230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8171_to, ; char* from + ptr @.TypeMapEntry.8170_from; char* to + }, ; 4231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8171_to, ; char* from + ptr @.TypeMapEntry.8170_from; char* to + }, ; 4232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8177_to, ; char* from + ptr @.TypeMapEntry.8176_from; char* to + }, ; 4233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8174_to, ; char* from + ptr @.TypeMapEntry.8173_from; char* to + }, ; 4234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8174_to, ; char* from + ptr @.TypeMapEntry.8173_from; char* to + }, ; 4235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8179_to, ; char* from + ptr @.TypeMapEntry.8178_from; char* to + }, ; 4236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8154_to, ; char* from + ptr null; char* to + }, ; 4237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8154_to, ; char* from + ptr null; char* to + }, ; 4238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8183_to, ; char* from + ptr @.TypeMapEntry.8182_from; char* to + }, ; 4239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8185_to, ; char* from + ptr @.TypeMapEntry.8184_from; char* to + }, ; 4240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8152_to, ; char* from + ptr @.TypeMapEntry.8151_from; char* to + }, ; 4241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8150_to, ; char* from + ptr @.TypeMapEntry.8149_from; char* to + }, ; 4242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8187_to, ; char* from + ptr @.TypeMapEntry.8186_from; char* to + }, ; 4243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8189_to, ; char* from + ptr @.TypeMapEntry.8188_from; char* to + }, ; 4244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8193_to, ; char* from + ptr @.TypeMapEntry.8192_from; char* to + }, ; 4245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8191_to, ; char* from + ptr @.TypeMapEntry.8190_from; char* to + }, ; 4246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8195_to, ; char* from + ptr @.TypeMapEntry.8194_from; char* to + }, ; 4247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8197_to, ; char* from + ptr @.TypeMapEntry.8196_from; char* to + }, ; 4248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8199_to, ; char* from + ptr @.TypeMapEntry.8198_from; char* to + }, ; 4249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8201_to, ; char* from + ptr @.TypeMapEntry.8200_from; char* to + }, ; 4250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8205_to, ; char* from + ptr null; char* to + }, ; 4251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8205_to, ; char* from + ptr null; char* to + }, ; 4252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8211_to, ; char* from + ptr @.TypeMapEntry.8210_from; char* to + }, ; 4253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8213_to, ; char* from + ptr @.TypeMapEntry.8212_from; char* to + }, ; 4254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8225_to, ; char* from + ptr @.TypeMapEntry.8224_from; char* to + }, ; 4255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8215_to, ; char* from + ptr @.TypeMapEntry.8214_from; char* to + }, ; 4256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8217_to, ; char* from + ptr @.TypeMapEntry.8216_from; char* to + }, ; 4257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8219_to, ; char* from + ptr @.TypeMapEntry.8218_from; char* to + }, ; 4258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8221_to, ; char* from + ptr @.TypeMapEntry.8220_from; char* to + }, ; 4259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8223_to, ; char* from + ptr @.TypeMapEntry.8222_from; char* to + }, ; 4260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8208_to, ; char* from + ptr null; char* to + }, ; 4261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8208_to, ; char* from + ptr null; char* to + }, ; 4262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8227_to, ; char* from + ptr @.TypeMapEntry.8226_from; char* to + }, ; 4263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8229_to, ; char* from + ptr @.TypeMapEntry.8228_from; char* to + }, ; 4264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8231_to, ; char* from + ptr @.TypeMapEntry.8230_from; char* to + }, ; 4265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8233_to, ; char* from + ptr @.TypeMapEntry.8232_from; char* to + }, ; 4266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8235_to, ; char* from + ptr @.TypeMapEntry.8234_from; char* to + }, ; 4267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8443_to, ; char* from + ptr @.TypeMapEntry.8442_from; char* to + }, ; 4268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8445_to, ; char* from + ptr @.TypeMapEntry.8444_from; char* to + }, ; 4269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8447_to, ; char* from + ptr @.TypeMapEntry.8446_from; char* to + }, ; 4270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8447_to, ; char* from + ptr @.TypeMapEntry.8446_from; char* to + }, ; 4271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8447_to, ; char* from + ptr @.TypeMapEntry.8446_from; char* to + }, ; 4272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8447_to, ; char* from + ptr @.TypeMapEntry.8446_from; char* to + }, ; 4273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8461_to, ; char* from + ptr @.TypeMapEntry.8460_from; char* to + }, ; 4274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8463_to, ; char* from + ptr @.TypeMapEntry.8462_from; char* to + }, ; 4275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8481_to, ; char* from + ptr @.TypeMapEntry.8480_from; char* to + }, ; 4276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8452_to, ; char* from + ptr null; char* to + }, ; 4277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8452_to, ; char* from + ptr null; char* to + }, ; 4278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8454_to, ; char* from + ptr null; char* to + }, ; 4279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8454_to, ; char* from + ptr null; char* to + }, ; 4280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8483_to, ; char* from + ptr @.TypeMapEntry.8482_from; char* to + }, ; 4281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8514_to, ; char* from + ptr @.TypeMapEntry.8513_from; char* to + }, ; 4282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8458_to, ; char* from + ptr null; char* to + }, ; 4283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8458_to, ; char* from + ptr null; char* to + }, ; 4284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8458_to, ; char* from + ptr null; char* to + }, ; 4285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8458_to, ; char* from + ptr null; char* to + }, ; 4286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8518_to, ; char* from + ptr @.TypeMapEntry.8517_from; char* to + }, ; 4287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8465_to, ; char* from + ptr @.TypeMapEntry.8464_from; char* to + }, ; 4288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8467_to, ; char* from + ptr @.TypeMapEntry.8466_from; char* to + }, ; 4289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8469_to, ; char* from + ptr @.TypeMapEntry.8468_from; char* to + }, ; 4290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8471_to, ; char* from + ptr @.TypeMapEntry.8470_from; char* to + }, ; 4291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8473_to, ; char* from + ptr @.TypeMapEntry.8472_from; char* to + }, ; 4292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8475_to, ; char* from + ptr @.TypeMapEntry.8474_from; char* to + }, ; 4293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8477_to, ; char* from + ptr @.TypeMapEntry.8476_from; char* to + }, ; 4294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8479_to, ; char* from + ptr @.TypeMapEntry.8478_from; char* to + }, ; 4295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8510_to, ; char* from + ptr @.TypeMapEntry.8509_from; char* to + }, ; 4296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8512_to, ; char* from + ptr @.TypeMapEntry.8511_from; char* to + }, ; 4297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8485_to, ; char* from + ptr null; char* to + }, ; 4298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8485_to, ; char* from + ptr null; char* to + }, ; 4299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8485_to, ; char* from + ptr null; char* to + }, ; 4300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8485_to, ; char* from + ptr null; char* to + }, ; 4301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8488_to, ; char* from + ptr null; char* to + }, ; 4302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8488_to, ; char* from + ptr null; char* to + }, ; 4303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8488_to, ; char* from + ptr null; char* to + }, ; 4304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8488_to, ; char* from + ptr null; char* to + }, ; 4305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8491_to, ; char* from + ptr null; char* to + }, ; 4306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8491_to, ; char* from + ptr null; char* to + }, ; 4307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8491_to, ; char* from + ptr null; char* to + }, ; 4308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8491_to, ; char* from + ptr null; char* to + }, ; 4309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8494_to, ; char* from + ptr null; char* to + }, ; 4310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8494_to, ; char* from + ptr null; char* to + }, ; 4311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8494_to, ; char* from + ptr null; char* to + }, ; 4312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8494_to, ; char* from + ptr null; char* to + }, ; 4313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8497_to, ; char* from + ptr null; char* to + }, ; 4314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8497_to, ; char* from + ptr null; char* to + }, ; 4315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8497_to, ; char* from + ptr null; char* to + }, ; 4316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8497_to, ; char* from + ptr null; char* to + }, ; 4317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8520_to, ; char* from + ptr @.TypeMapEntry.8519_from; char* to + }, ; 4318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8522_to, ; char* from + ptr @.TypeMapEntry.8521_from; char* to + }, ; 4319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8524_to, ; char* from + ptr @.TypeMapEntry.8523_from; char* to + }, ; 4320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8526_to, ; char* from + ptr @.TypeMapEntry.8525_from; char* to + }, ; 4321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8530_to, ; char* from + ptr @.TypeMapEntry.8529_from; char* to + }, ; 4322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8528_to, ; char* from + ptr @.TypeMapEntry.8527_from; char* to + }, ; 4323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8534_to, ; char* from + ptr @.TypeMapEntry.8533_from; char* to + }, ; 4324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8532_to, ; char* from + ptr @.TypeMapEntry.8531_from; char* to + }, ; 4325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8536_to, ; char* from + ptr @.TypeMapEntry.8535_from; char* to + }, ; 4326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8536_to, ; char* from + ptr @.TypeMapEntry.8535_from; char* to + }, ; 4327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8541_to, ; char* from + ptr @.TypeMapEntry.8540_from; char* to + }, ; 4328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8539_to, ; char* from + ptr @.TypeMapEntry.8538_from; char* to + }, ; 4329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8569_to, ; char* from + ptr null; char* to + }, ; 4330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8569_to, ; char* from + ptr null; char* to + }, ; 4331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8543_to, ; char* from + ptr @.TypeMapEntry.8542_from; char* to + }, ; 4332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8545_to, ; char* from + ptr @.TypeMapEntry.8544_from; char* to + }, ; 4333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8572_to, ; char* from + ptr null; char* to + }, ; 4334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8572_to, ; char* from + ptr null; char* to + }, ; 4335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8555_to, ; char* from + ptr @.TypeMapEntry.8554_from; char* to + }, ; 4336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8559_to, ; char* from + ptr @.TypeMapEntry.8558_from; char* to + }, ; 4337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8557_to, ; char* from + ptr @.TypeMapEntry.8556_from; char* to + }, ; 4338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8567_to, ; char* from + ptr @.TypeMapEntry.8566_from; char* to + }, ; 4339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8561_to, ; char* from + ptr null; char* to + }, ; 4340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8561_to, ; char* from + ptr null; char* to + }, ; 4341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8564_to, ; char* from + ptr null; char* to + }, ; 4342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8564_to, ; char* from + ptr null; char* to + }, ; 4343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8575_to, ; char* from + ptr null; char* to + }, ; 4344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8575_to, ; char* from + ptr null; char* to + }, ; 4345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8602_to, ; char* from + ptr @.TypeMapEntry.8601_from; char* to + }, ; 4346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8604_to, ; char* from + ptr @.TypeMapEntry.8603_from; char* to + }, ; 4347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8578_to, ; char* from + ptr null; char* to + }, ; 4348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8578_to, ; char* from + ptr null; char* to + }, ; 4349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8615_to, ; char* from + ptr @.TypeMapEntry.8614_from; char* to + }, ; 4350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8615_to, ; char* from + ptr @.TypeMapEntry.8614_from; char* to + }, ; 4351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8606_to, ; char* from + ptr @.TypeMapEntry.8605_from; char* to + }, ; 4352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8608_to, ; char* from + ptr @.TypeMapEntry.8607_from; char* to + }, ; 4353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8610_to, ; char* from + ptr @.TypeMapEntry.8609_from; char* to + }, ; 4354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8612_to, ; char* from + ptr null; char* to + }, ; 4355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8612_to, ; char* from + ptr null; char* to + }, ; 4356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8624_to, ; char* from + ptr @.TypeMapEntry.8623_from; char* to + }, ; 4357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8624_to, ; char* from + ptr @.TypeMapEntry.8623_from; char* to + }, ; 4358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8618_to, ; char* from + ptr @.TypeMapEntry.8617_from; char* to + }, ; 4359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8620_to, ; char* from + ptr @.TypeMapEntry.8619_from; char* to + }, ; 4360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8622_to, ; char* from + ptr @.TypeMapEntry.8621_from; char* to + }, ; 4361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8581_to, ; char* from + ptr null; char* to + }, ; 4362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8581_to, ; char* from + ptr null; char* to + }, ; 4363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8684_to, ; char* from + ptr @.TypeMapEntry.8683_from; char* to + }, ; 4364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8584_to, ; char* from + ptr null; char* to + }, ; 4365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8584_to, ; char* from + ptr null; char* to + }, ; 4366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8688_to, ; char* from + ptr @.TypeMapEntry.8687_from; char* to + }, ; 4367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8688_to, ; char* from + ptr @.TypeMapEntry.8687_from; char* to + }, ; 4368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8686_to, ; char* from + ptr @.TypeMapEntry.8685_from; char* to + }, ; 4369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8691_to, ; char* from + ptr @.TypeMapEntry.8690_from; char* to + }, ; 4370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8587_to, ; char* from + ptr null; char* to + }, ; 4371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8587_to, ; char* from + ptr null; char* to + }, ; 4372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8590_to, ; char* from + ptr null; char* to + }, ; 4373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8590_to, ; char* from + ptr null; char* to + }, ; 4374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8693_to, ; char* from + ptr @.TypeMapEntry.8692_from; char* to + }, ; 4375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8695_to, ; char* from + ptr @.TypeMapEntry.8694_from; char* to + }, ; 4376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8697_to, ; char* from + ptr @.TypeMapEntry.8696_from; char* to + }, ; 4377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8699_to, ; char* from + ptr @.TypeMapEntry.8698_from; char* to + }, ; 4378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8699_to, ; char* from + ptr @.TypeMapEntry.8698_from; char* to + }, ; 4379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8593_to, ; char* from + ptr null; char* to + }, ; 4380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8593_to, ; char* from + ptr null; char* to + }, ; 4381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8702_to, ; char* from + ptr @.TypeMapEntry.8701_from; char* to + }, ; 4382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8706_to, ; char* from + ptr @.TypeMapEntry.8705_from; char* to + }, ; 4383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8704_to, ; char* from + ptr @.TypeMapEntry.8703_from; char* to + }, ; 4384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8596_to, ; char* from + ptr null; char* to + }, ; 4385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8596_to, ; char* from + ptr null; char* to + }, ; 4386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8848_to, ; char* from + ptr @.TypeMapEntry.8847_from; char* to + }, ; 4387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8850_to, ; char* from + ptr @.TypeMapEntry.8849_from; char* to + }, ; 4388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8855_to, ; char* from + ptr @.TypeMapEntry.8854_from; char* to + }, ; 4389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8852_to, ; char* from + ptr null; char* to + }, ; 4390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8852_to, ; char* from + ptr null; char* to + }, ; 4391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8867_to, ; char* from + ptr @.TypeMapEntry.8866_from; char* to + }, ; 4392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8857_to, ; char* from + ptr null; char* to + }, ; 4393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8857_to, ; char* from + ptr null; char* to + }, ; 4394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8863_to, ; char* from + ptr @.TypeMapEntry.8862_from; char* to + }, ; 4395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8860_to, ; char* from + ptr null; char* to + }, ; 4396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8860_to, ; char* from + ptr null; char* to + }, ; 4397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8865_to, ; char* from + ptr @.TypeMapEntry.8864_from; char* to + }, ; 4398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8599_to, ; char* from + ptr null; char* to + }, ; 4399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8599_to, ; char* from + ptr null; char* to + }, ; 4400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8883_to, ; char* from + ptr @.TypeMapEntry.8882_from; char* to + }, ; 4401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8547_to, ; char* from + ptr @.TypeMapEntry.8546_from; char* to + }, ; 4402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8549_to, ; char* from + ptr @.TypeMapEntry.8548_from; char* to + }, ; 4403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8551_to, ; char* from + ptr @.TypeMapEntry.8550_from; char* to + }, ; 4404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8553_to, ; char* from + ptr @.TypeMapEntry.8552_from; char* to + }, ; 4405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8627_to, ; char* from + ptr @.TypeMapEntry.8626_from; char* to + }, ; 4406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8629_to, ; char* from + ptr @.TypeMapEntry.8628_from; char* to + }, ; 4407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8629_to, ; char* from + ptr @.TypeMapEntry.8628_from; char* to + }, ; 4408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8632_to, ; char* from + ptr @.TypeMapEntry.8631_from; char* to + }, ; 4409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8634_to, ; char* from + ptr @.TypeMapEntry.8633_from; char* to + }, ; 4410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8636_to, ; char* from + ptr @.TypeMapEntry.8635_from; char* to + }, ; 4411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8638_to, ; char* from + ptr @.TypeMapEntry.8637_from; char* to + }, ; 4412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8640_to, ; char* from + ptr @.TypeMapEntry.8639_from; char* to + }, ; 4413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8642_to, ; char* from + ptr @.TypeMapEntry.8641_from; char* to + }, ; 4414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8644_to, ; char* from + ptr @.TypeMapEntry.8643_from; char* to + }, ; 4415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8646_to, ; char* from + ptr null; char* to + }, ; 4416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8646_to, ; char* from + ptr null; char* to + }, ; 4417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8655_to, ; char* from + ptr @.TypeMapEntry.8654_from; char* to + }, ; 4418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8657_to, ; char* from + ptr @.TypeMapEntry.8656_from; char* to + }, ; 4419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8657_to, ; char* from + ptr @.TypeMapEntry.8656_from; char* to + }, ; 4420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8649_to, ; char* from + ptr null; char* to + }, ; 4421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8649_to, ; char* from + ptr null; char* to + }, ; 4422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8660_to, ; char* from + ptr @.TypeMapEntry.8659_from; char* to + }, ; 4423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8662_to, ; char* from + ptr @.TypeMapEntry.8661_from; char* to + }, ; 4424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8662_to, ; char* from + ptr @.TypeMapEntry.8661_from; char* to + }, ; 4425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8665_to, ; char* from + ptr @.TypeMapEntry.8664_from; char* to + }, ; 4426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8667_to, ; char* from + ptr @.TypeMapEntry.8666_from; char* to + }, ; 4427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8669_to, ; char* from + ptr @.TypeMapEntry.8668_from; char* to + }, ; 4428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8669_to, ; char* from + ptr @.TypeMapEntry.8668_from; char* to + }, ; 4429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8672_to, ; char* from + ptr @.TypeMapEntry.8671_from; char* to + }, ; 4430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8674_to, ; char* from + ptr @.TypeMapEntry.8673_from; char* to + }, ; 4431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8678_to, ; char* from + ptr @.TypeMapEntry.8677_from; char* to + }, ; 4432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8676_to, ; char* from + ptr @.TypeMapEntry.8675_from; char* to + }, ; 4433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8680_to, ; char* from + ptr @.TypeMapEntry.8679_from; char* to + }, ; 4434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8682_to, ; char* from + ptr @.TypeMapEntry.8681_from; char* to + }, ; 4435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8652_to, ; char* from + ptr null; char* to + }, ; 4436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8652_to, ; char* from + ptr null; char* to + }, ; 4437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8708_to, ; char* from + ptr @.TypeMapEntry.8707_from; char* to + }, ; 4438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8731_to, ; char* from + ptr null; char* to + }, ; 4439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8731_to, ; char* from + ptr null; char* to + }, ; 4440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8710_to, ; char* from + ptr @.TypeMapEntry.8709_from; char* to + }, ; 4441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8712_to, ; char* from + ptr @.TypeMapEntry.8711_from; char* to + }, ; 4442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8714_to, ; char* from + ptr @.TypeMapEntry.8713_from; char* to + }, ; 4443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8716_to, ; char* from + ptr @.TypeMapEntry.8715_from; char* to + }, ; 4444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8716_to, ; char* from + ptr @.TypeMapEntry.8715_from; char* to + }, ; 4445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8719_to, ; char* from + ptr @.TypeMapEntry.8718_from; char* to + }, ; 4446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8719_to, ; char* from + ptr @.TypeMapEntry.8718_from; char* to + }, ; 4447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8722_to, ; char* from + ptr @.TypeMapEntry.8721_from; char* to + }, ; 4448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8724_to, ; char* from + ptr @.TypeMapEntry.8723_from; char* to + }, ; 4449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8724_to, ; char* from + ptr @.TypeMapEntry.8723_from; char* to + }, ; 4450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8727_to, ; char* from + ptr @.TypeMapEntry.8726_from; char* to + }, ; 4451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8729_to, ; char* from + ptr @.TypeMapEntry.8728_from; char* to + }, ; 4452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8764_to, ; char* from + ptr @.TypeMapEntry.8763_from; char* to + }, ; 4453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8766_to, ; char* from + ptr @.TypeMapEntry.8765_from; char* to + }, ; 4454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8734_to, ; char* from + ptr null; char* to + }, ; 4455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8734_to, ; char* from + ptr null; char* to + }, ; 4456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8737_to, ; char* from + ptr null; char* to + }, ; 4457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8737_to, ; char* from + ptr null; char* to + }, ; 4458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8768_to, ; char* from + ptr @.TypeMapEntry.8767_from; char* to + }, ; 4459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8740_to, ; char* from + ptr null; char* to + }, ; 4460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8740_to, ; char* from + ptr null; char* to + }, ; 4461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8770_to, ; char* from + ptr @.TypeMapEntry.8769_from; char* to + }, ; 4462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8772_to, ; char* from + ptr @.TypeMapEntry.8771_from; char* to + }, ; 4463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8743_to, ; char* from + ptr null; char* to + }, ; 4464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8743_to, ; char* from + ptr null; char* to + }, ; 4465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8774_to, ; char* from + ptr @.TypeMapEntry.8773_from; char* to + }, ; 4466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8746_to, ; char* from + ptr null; char* to + }, ; 4467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8746_to, ; char* from + ptr null; char* to + }, ; 4468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8776_to, ; char* from + ptr @.TypeMapEntry.8775_from; char* to + }, ; 4469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8778_to, ; char* from + ptr @.TypeMapEntry.8777_from; char* to + }, ; 4470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8780_to, ; char* from + ptr @.TypeMapEntry.8779_from; char* to + }, ; 4471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8780_to, ; char* from + ptr @.TypeMapEntry.8779_from; char* to + }, ; 4472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8749_to, ; char* from + ptr null; char* to + }, ; 4473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8749_to, ; char* from + ptr null; char* to + }, ; 4474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8783_to, ; char* from + ptr @.TypeMapEntry.8782_from; char* to + }, ; 4475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8785_to, ; char* from + ptr @.TypeMapEntry.8784_from; char* to + }, ; 4476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8787_to, ; char* from + ptr @.TypeMapEntry.8786_from; char* to + }, ; 4477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8789_to, ; char* from + ptr @.TypeMapEntry.8788_from; char* to + }, ; 4478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8789_to, ; char* from + ptr @.TypeMapEntry.8788_from; char* to + }, ; 4479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8792_to, ; char* from + ptr @.TypeMapEntry.8791_from; char* to + }, ; 4480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8794_to, ; char* from + ptr @.TypeMapEntry.8793_from; char* to + }, ; 4481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8796_to, ; char* from + ptr @.TypeMapEntry.8795_from; char* to + }, ; 4482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8798_to, ; char* from + ptr @.TypeMapEntry.8797_from; char* to + }, ; 4483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8800_to, ; char* from + ptr @.TypeMapEntry.8799_from; char* to + }, ; 4484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8802_to, ; char* from + ptr @.TypeMapEntry.8801_from; char* to + }, ; 4485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8804_to, ; char* from + ptr @.TypeMapEntry.8803_from; char* to + }, ; 4486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8752_to, ; char* from + ptr null; char* to + }, ; 4487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8752_to, ; char* from + ptr null; char* to + }, ; 4488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8806_to, ; char* from + ptr @.TypeMapEntry.8805_from; char* to + }, ; 4489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8808_to, ; char* from + ptr @.TypeMapEntry.8807_from; char* to + }, ; 4490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8840_to, ; char* from + ptr @.TypeMapEntry.8839_from; char* to + }, ; 4491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8810_to, ; char* from + ptr @.TypeMapEntry.8809_from; char* to + }, ; 4492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8812_to, ; char* from + ptr @.TypeMapEntry.8811_from; char* to + }, ; 4493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8814_to, ; char* from + ptr @.TypeMapEntry.8813_from; char* to + }, ; 4494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8816_to, ; char* from + ptr @.TypeMapEntry.8815_from; char* to + }, ; 4495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8818_to, ; char* from + ptr @.TypeMapEntry.8817_from; char* to + }, ; 4496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8820_to, ; char* from + ptr @.TypeMapEntry.8819_from; char* to + }, ; 4497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8822_to, ; char* from + ptr @.TypeMapEntry.8821_from; char* to + }, ; 4498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8824_to, ; char* from + ptr @.TypeMapEntry.8823_from; char* to + }, ; 4499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8826_to, ; char* from + ptr @.TypeMapEntry.8825_from; char* to + }, ; 4500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8828_to, ; char* from + ptr @.TypeMapEntry.8827_from; char* to + }, ; 4501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8830_to, ; char* from + ptr @.TypeMapEntry.8829_from; char* to + }, ; 4502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8832_to, ; char* from + ptr @.TypeMapEntry.8831_from; char* to + }, ; 4503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8834_to, ; char* from + ptr @.TypeMapEntry.8833_from; char* to + }, ; 4504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8836_to, ; char* from + ptr @.TypeMapEntry.8835_from; char* to + }, ; 4505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8838_to, ; char* from + ptr @.TypeMapEntry.8837_from; char* to + }, ; 4506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8842_to, ; char* from + ptr @.TypeMapEntry.8841_from; char* to + }, ; 4507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8844_to, ; char* from + ptr @.TypeMapEntry.8843_from; char* to + }, ; 4508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8846_to, ; char* from + ptr @.TypeMapEntry.8845_from; char* to + }, ; 4509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8755_to, ; char* from + ptr null; char* to + }, ; 4510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8755_to, ; char* from + ptr null; char* to + }, ; 4511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8758_to, ; char* from + ptr null; char* to + }, ; 4512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8758_to, ; char* from + ptr null; char* to + }, ; 4513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8761_to, ; char* from + ptr null; char* to + }, ; 4514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8761_to, ; char* from + ptr null; char* to + }, ; 4515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8877_to, ; char* from + ptr @.TypeMapEntry.8876_from; char* to + }, ; 4516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8871_to, ; char* from + ptr null; char* to + }, ; 4517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8871_to, ; char* from + ptr null; char* to + }, ; 4518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8874_to, ; char* from + ptr null; char* to + }, ; 4519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8874_to, ; char* from + ptr null; char* to + }, ; 4520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8879_to, ; char* from + ptr @.TypeMapEntry.8878_from; char* to + }, ; 4521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8881_to, ; char* from + ptr @.TypeMapEntry.8880_from; char* to + }, ; 4522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8885_to, ; char* from + ptr @.TypeMapEntry.8884_from; char* to + }, ; 4523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8887_to, ; char* from + ptr @.TypeMapEntry.8886_from; char* to + }, ; 4524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8889_to, ; char* from + ptr @.TypeMapEntry.8888_from; char* to + }, ; 4525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8891_to, ; char* from + ptr @.TypeMapEntry.8890_from; char* to + }, ; 4526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8893_to, ; char* from + ptr @.TypeMapEntry.8892_from; char* to + }, ; 4527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8895_to, ; char* from + ptr @.TypeMapEntry.8894_from; char* to + }, ; 4528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8897_to, ; char* from + ptr @.TypeMapEntry.8896_from; char* to + }, ; 4529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8899_to, ; char* from + ptr @.TypeMapEntry.8898_from; char* to + }, ; 4530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8901_to, ; char* from + ptr @.TypeMapEntry.8900_from; char* to + }, ; 4531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8903_to, ; char* from + ptr @.TypeMapEntry.8902_from; char* to + }, ; 4532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8905_to, ; char* from + ptr @.TypeMapEntry.8904_from; char* to + }, ; 4533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8905_to, ; char* from + ptr @.TypeMapEntry.8904_from; char* to + }, ; 4534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8908_to, ; char* from + ptr @.TypeMapEntry.8907_from; char* to + }, ; 4535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8910_to, ; char* from + ptr @.TypeMapEntry.8909_from; char* to + }, ; 4536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8912_to, ; char* from + ptr @.TypeMapEntry.8911_from; char* to + }, ; 4537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8914_to, ; char* from + ptr @.TypeMapEntry.8913_from; char* to + }, ; 4538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8924_to, ; char* from + ptr @.TypeMapEntry.8923_from; char* to + }, ; 4539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8924_to, ; char* from + ptr @.TypeMapEntry.8923_from; char* to + }, ; 4540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8916_to, ; char* from + ptr @.TypeMapEntry.8915_from; char* to + }, ; 4541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8916_to, ; char* from + ptr @.TypeMapEntry.8915_from; char* to + }, ; 4542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8919_to, ; char* from + ptr null; char* to + }, ; 4543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8919_to, ; char* from + ptr null; char* to + }, ; 4544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8926_to, ; char* from + ptr @.TypeMapEntry.8925_from; char* to + }, ; 4545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8929_to, ; char* from + ptr @.TypeMapEntry.8928_from; char* to + }, ; 4546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8929_to, ; char* from + ptr @.TypeMapEntry.8928_from; char* to + }, ; 4547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8932_to, ; char* from + ptr @.TypeMapEntry.8931_from; char* to + }, ; 4548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8934_to, ; char* from + ptr @.TypeMapEntry.8933_from; char* to + }, ; 4549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8934_to, ; char* from + ptr @.TypeMapEntry.8933_from; char* to + }, ; 4550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8937_to, ; char* from + ptr @.TypeMapEntry.8936_from; char* to + }, ; 4551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8939_to, ; char* from + ptr @.TypeMapEntry.8938_from; char* to + }, ; 4552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8941_to, ; char* from + ptr @.TypeMapEntry.8940_from; char* to + }, ; 4553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8941_to, ; char* from + ptr @.TypeMapEntry.8940_from; char* to + }, ; 4554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8944_to, ; char* from + ptr @.TypeMapEntry.8943_from; char* to + }, ; 4555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8944_to, ; char* from + ptr @.TypeMapEntry.8943_from; char* to + }, ; 4556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8947_to, ; char* from + ptr @.TypeMapEntry.8946_from; char* to + }, ; 4557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8949_to, ; char* from + ptr @.TypeMapEntry.8948_from; char* to + }, ; 4558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8951_to, ; char* from + ptr @.TypeMapEntry.8950_from; char* to + }, ; 4559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8953_to, ; char* from + ptr @.TypeMapEntry.8952_from; char* to + }, ; 4560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8955_to, ; char* from + ptr @.TypeMapEntry.8954_from; char* to + }, ; 4561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8988_to, ; char* from + ptr null; char* to + }, ; 4562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8988_to, ; char* from + ptr null; char* to + }, ; 4563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8957_to, ; char* from + ptr @.TypeMapEntry.8956_from; char* to + }, ; 4564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8959_to, ; char* from + ptr @.TypeMapEntry.8958_from; char* to + }, ; 4565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8961_to, ; char* from + ptr @.TypeMapEntry.8960_from; char* to + }, ; 4566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8963_to, ; char* from + ptr @.TypeMapEntry.8962_from; char* to + }, ; 4567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8965_to, ; char* from + ptr @.TypeMapEntry.8964_from; char* to + }, ; 4568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8967_to, ; char* from + ptr @.TypeMapEntry.8966_from; char* to + }, ; 4569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8969_to, ; char* from + ptr @.TypeMapEntry.8968_from; char* to + }, ; 4570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8971_to, ; char* from + ptr @.TypeMapEntry.8970_from; char* to + }, ; 4571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8991_to, ; char* from + ptr null; char* to + }, ; 4572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8991_to, ; char* from + ptr null; char* to + }, ; 4573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8993_to, ; char* from + ptr null; char* to + }, ; 4574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8993_to, ; char* from + ptr null; char* to + }, ; 4575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8975_to, ; char* from + ptr @.TypeMapEntry.8974_from; char* to + }, ; 4576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8973_to, ; char* from + ptr @.TypeMapEntry.8972_from; char* to + }, ; 4577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8979_to, ; char* from + ptr @.TypeMapEntry.8978_from; char* to + }, ; 4578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8977_to, ; char* from + ptr @.TypeMapEntry.8976_from; char* to + }, ; 4579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8981_to, ; char* from + ptr @.TypeMapEntry.8980_from; char* to + }, ; 4580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8983_to, ; char* from + ptr @.TypeMapEntry.8982_from; char* to + }, ; 4581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8983_to, ; char* from + ptr @.TypeMapEntry.8982_from; char* to + }, ; 4582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8986_to, ; char* from + ptr @.TypeMapEntry.8985_from; char* to + }, ; 4583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9000_to, ; char* from + ptr @.TypeMapEntry.8999_from; char* to + }, ; 4584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9000_to, ; char* from + ptr @.TypeMapEntry.8999_from; char* to + }, ; 4585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9003_to, ; char* from + ptr @.TypeMapEntry.9002_from; char* to + }, ; 4586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9005_to, ; char* from + ptr @.TypeMapEntry.9004_from; char* to + }, ; 4587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9007_to, ; char* from + ptr @.TypeMapEntry.9006_from; char* to + }, ; 4588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9009_to, ; char* from + ptr @.TypeMapEntry.9008_from; char* to + }, ; 4589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9011_to, ; char* from + ptr @.TypeMapEntry.9010_from; char* to + }, ; 4590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9013_to, ; char* from + ptr @.TypeMapEntry.9012_from; char* to + }, ; 4591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9015_to, ; char* from + ptr @.TypeMapEntry.9014_from; char* to + }, ; 4592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9017_to, ; char* from + ptr @.TypeMapEntry.9016_from; char* to + }, ; 4593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9019_to, ; char* from + ptr @.TypeMapEntry.9018_from; char* to + }, ; 4594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9021_to, ; char* from + ptr @.TypeMapEntry.9020_from; char* to + }, ; 4595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9023_to, ; char* from + ptr @.TypeMapEntry.9022_from; char* to + }, ; 4596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9025_to, ; char* from + ptr @.TypeMapEntry.9024_from; char* to + }, ; 4597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9027_to, ; char* from + ptr @.TypeMapEntry.9026_from; char* to + }, ; 4598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9029_to, ; char* from + ptr @.TypeMapEntry.9028_from; char* to + }, ; 4599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9031_to, ; char* from + ptr @.TypeMapEntry.9030_from; char* to + }, ; 4600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9033_to, ; char* from + ptr @.TypeMapEntry.9032_from; char* to + }, ; 4601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9035_to, ; char* from + ptr @.TypeMapEntry.9034_from; char* to + }, ; 4602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9037_to, ; char* from + ptr @.TypeMapEntry.9036_from; char* to + }, ; 4603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9039_to, ; char* from + ptr @.TypeMapEntry.9038_from; char* to + }, ; 4604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9041_to, ; char* from + ptr @.TypeMapEntry.9040_from; char* to + }, ; 4605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9043_to, ; char* from + ptr @.TypeMapEntry.9042_from; char* to + }, ; 4606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9045_to, ; char* from + ptr @.TypeMapEntry.9044_from; char* to + }, ; 4607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9047_to, ; char* from + ptr @.TypeMapEntry.9046_from; char* to + }, ; 4608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8997_to, ; char* from + ptr null; char* to + }, ; 4609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8997_to, ; char* from + ptr null; char* to + }, ; 4610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9049_to, ; char* from + ptr @.TypeMapEntry.9048_from; char* to + }, ; 4611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9049_to, ; char* from + ptr @.TypeMapEntry.9048_from; char* to + }, ; 4612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9054_to, ; char* from + ptr @.TypeMapEntry.9053_from; char* to + }, ; 4613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9056_to, ; char* from + ptr @.TypeMapEntry.9055_from; char* to + }, ; 4614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9058_to, ; char* from + ptr @.TypeMapEntry.9057_from; char* to + }, ; 4615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9060_to, ; char* from + ptr @.TypeMapEntry.9059_from; char* to + }, ; 4616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9062_to, ; char* from + ptr null; char* to + }, ; 4617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9062_to, ; char* from + ptr null; char* to + }, ; 4618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9065_to, ; char* from + ptr @.TypeMapEntry.9064_from; char* to + }, ; 4619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9067_to, ; char* from + ptr @.TypeMapEntry.9066_from; char* to + }, ; 4620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9069_to, ; char* from + ptr @.TypeMapEntry.9068_from; char* to + }, ; 4621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9071_to, ; char* from + ptr @.TypeMapEntry.9070_from; char* to + }, ; 4622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9073_to, ; char* from + ptr @.TypeMapEntry.9072_from; char* to + }, ; 4623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9075_to, ; char* from + ptr @.TypeMapEntry.9074_from; char* to + }, ; 4624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9077_to, ; char* from + ptr @.TypeMapEntry.9076_from; char* to + }, ; 4625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9079_to, ; char* from + ptr @.TypeMapEntry.9078_from; char* to + }, ; 4626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9081_to, ; char* from + ptr @.TypeMapEntry.9080_from; char* to + }, ; 4627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9083_to, ; char* from + ptr @.TypeMapEntry.9082_from; char* to + }, ; 4628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9087_to, ; char* from + ptr @.TypeMapEntry.9086_from; char* to + }, ; 4629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9085_to, ; char* from + ptr @.TypeMapEntry.9084_from; char* to + }, ; 4630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9052_to, ; char* from + ptr @.TypeMapEntry.9051_from; char* to + }, ; 4631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9089_to, ; char* from + ptr @.TypeMapEntry.9088_from; char* to + }, ; 4632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9089_to, ; char* from + ptr @.TypeMapEntry.9088_from; char* to + }, ; 4633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9160_to, ; char* from + ptr @.TypeMapEntry.9159_from; char* to + }, ; 4634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9160_to, ; char* from + ptr @.TypeMapEntry.9159_from; char* to + }, ; 4635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9157_to, ; char* from + ptr null; char* to + }, ; 4636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9157_to, ; char* from + ptr null; char* to + }, ; 4637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9154_to, ; char* from + ptr @.TypeMapEntry.9153_from; char* to + }, ; 4638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9154_to, ; char* from + ptr @.TypeMapEntry.9153_from; char* to + }, ; 4639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9168_to, ; char* from + ptr @.TypeMapEntry.9167_from; char* to + }, ; 4640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9168_to, ; char* from + ptr @.TypeMapEntry.9167_from; char* to + }, ; 4641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9163_to, ; char* from + ptr null; char* to + }, ; 4642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9163_to, ; char* from + ptr null; char* to + }, ; 4643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9346_to, ; char* from + ptr null; char* to + }, ; 4644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9346_to, ; char* from + ptr null; char* to + }, ; 4645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9341_to, ; char* from + ptr null; char* to + }, ; 4646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9341_to, ; char* from + ptr null; char* to + }, ; 4647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9252_to, ; char* from + ptr @.TypeMapEntry.9251_from; char* to + }, ; 4648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9246_to, ; char* from + ptr null; char* to + }, ; 4649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9246_to, ; char* from + ptr null; char* to + }, ; 4650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9242_to, ; char* from + ptr @.TypeMapEntry.9241_from; char* to + }, ; 4651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9244_to, ; char* from + ptr @.TypeMapEntry.9243_from; char* to + }, ; 4652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9249_to, ; char* from + ptr null; char* to + }, ; 4653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9249_to, ; char* from + ptr null; char* to + }, ; 4654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9349_to, ; char* from + ptr null; char* to + }, ; 4655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9349_to, ; char* from + ptr null; char* to + }, ; 4656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9280_to, ; char* from + ptr @.TypeMapEntry.9279_from; char* to + }, ; 4657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9278_to, ; char* from + ptr @.TypeMapEntry.9277_from; char* to + }, ; 4658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9352_to, ; char* from + ptr null; char* to + }, ; 4659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9352_to, ; char* from + ptr null; char* to + }, ; 4660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9354_to, ; char* from + ptr null; char* to + }, ; 4661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9354_to, ; char* from + ptr null; char* to + }, ; 4662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9282_to, ; char* from + ptr @.TypeMapEntry.9281_from; char* to + }, ; 4663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9288_to, ; char* from + ptr @.TypeMapEntry.9287_from; char* to + }, ; 4664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9284_to, ; char* from + ptr @.TypeMapEntry.9283_from; char* to + }, ; 4665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9286_to, ; char* from + ptr @.TypeMapEntry.9285_from; char* to + }, ; 4666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9292_to, ; char* from + ptr @.TypeMapEntry.9291_from; char* to + }, ; 4667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9290_to, ; char* from + ptr @.TypeMapEntry.9289_from; char* to + }, ; 4668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9305_to, ; char* from + ptr @.TypeMapEntry.9304_from; char* to + }, ; 4669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9307_to, ; char* from + ptr @.TypeMapEntry.9306_from; char* to + }, ; 4670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9309_to, ; char* from + ptr @.TypeMapEntry.9308_from; char* to + }, ; 4671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9311_to, ; char* from + ptr @.TypeMapEntry.9310_from; char* to + }, ; 4672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9313_to, ; char* from + ptr @.TypeMapEntry.9312_from; char* to + }, ; 4673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9315_to, ; char* from + ptr @.TypeMapEntry.9314_from; char* to + }, ; 4674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9315_to, ; char* from + ptr @.TypeMapEntry.9314_from; char* to + }, ; 4675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9335_to, ; char* from + ptr @.TypeMapEntry.9334_from; char* to + }, ; 4676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9318_to, ; char* from + ptr null; char* to + }, ; 4677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9318_to, ; char* from + ptr null; char* to + }, ; 4678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9323_to, ; char* from + ptr null; char* to + }, ; 4679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9323_to, ; char* from + ptr null; char* to + }, ; 4680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9328_to, ; char* from + ptr null; char* to + }, ; 4681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9328_to, ; char* from + ptr null; char* to + }, ; 4682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9333_to, ; char* from + ptr @.TypeMapEntry.9332_from; char* to + }, ; 4683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9337_to, ; char* from + ptr @.TypeMapEntry.9336_from; char* to + }, ; 4684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9339_to, ; char* from + ptr @.TypeMapEntry.9338_from; char* to + }, ; 4685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9425_to, ; char* from + ptr @.TypeMapEntry.9424_from; char* to + }, ; 4686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9431_to, ; char* from + ptr @.TypeMapEntry.9430_from; char* to + }, ; 4687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9427_to, ; char* from + ptr @.TypeMapEntry.9426_from; char* to + }, ; 4688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9429_to, ; char* from + ptr @.TypeMapEntry.9428_from; char* to + }, ; 4689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9433_to, ; char* from + ptr @.TypeMapEntry.9432_from; char* to + }, ; 4690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9433_to, ; char* from + ptr @.TypeMapEntry.9432_from; char* to + }, ; 4691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9561_to, ; char* from + ptr @.TypeMapEntry.9560_from; char* to + }, ; 4692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9558_to, ; char* from + ptr null; char* to + }, ; 4693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9558_to, ; char* from + ptr null; char* to + }, ; 4694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9591_to, ; char* from + ptr @.TypeMapEntry.9590_from; char* to + }, ; 4695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9587_to, ; char* from + ptr @.TypeMapEntry.9586_from; char* to + }, ; 4696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9589_to, ; char* from + ptr @.TypeMapEntry.9588_from; char* to + }, ; 4697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9598_to, ; char* from + ptr @.TypeMapEntry.9597_from; char* to + }, ; 4698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9595_to, ; char* from + ptr null; char* to + }, ; 4699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9595_to, ; char* from + ptr null; char* to + }, ; 4700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9593_to, ; char* from + ptr @.TypeMapEntry.9592_from; char* to + }, ; 4701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9600_to, ; char* from + ptr @.TypeMapEntry.9599_from; char* to + }, ; 4702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9602_to, ; char* from + ptr @.TypeMapEntry.9601_from; char* to + }, ; 4703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9613_to, ; char* from + ptr @.TypeMapEntry.9612_from; char* to + }, ; 4704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9613_to, ; char* from + ptr @.TypeMapEntry.9612_from; char* to + }, ; 4705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9604_to, ; char* from + ptr null; char* to + }, ; 4706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9604_to, ; char* from + ptr null; char* to + }, ; 4707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9606_to, ; char* from + ptr null; char* to + }, ; 4708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9606_to, ; char* from + ptr null; char* to + }, ; 4709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9610_to, ; char* from + ptr null; char* to + }, ; 4710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9610_to, ; char* from + ptr null; char* to + }, ; 4711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9358_to, ; char* from + ptr null; char* to + }, ; 4712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9358_to, ; char* from + ptr null; char* to + }, ; 4713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9618_to, ; char* from + ptr @.TypeMapEntry.9617_from; char* to + }, ; 4714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9361_to, ; char* from + ptr null; char* to + }, ; 4715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9361_to, ; char* from + ptr null; char* to + }, ; 4716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9364_to, ; char* from + ptr null; char* to + }, ; 4717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9364_to, ; char* from + ptr null; char* to + }, ; 4718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9369_to, ; char* from + ptr null; char* to + }, ; 4719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9369_to, ; char* from + ptr null; char* to + }, ; 4720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9624_to, ; char* from + ptr @.TypeMapEntry.9623_from; char* to + }, ; 4721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9620_to, ; char* from + ptr @.TypeMapEntry.9619_from; char* to + }, ; 4722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9622_to, ; char* from + ptr @.TypeMapEntry.9621_from; char* to + }, ; 4723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9626_to, ; char* from + ptr @.TypeMapEntry.9625_from; char* to + }, ; 4724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9374_to, ; char* from + ptr null; char* to + }, ; 4725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9374_to, ; char* from + ptr null; char* to + }, ; 4726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9628_to, ; char* from + ptr @.TypeMapEntry.9627_from; char* to + }, ; 4727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9628_to, ; char* from + ptr @.TypeMapEntry.9627_from; char* to + }, ; 4728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9631_to, ; char* from + ptr @.TypeMapEntry.9630_from; char* to + }, ; 4729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9631_to, ; char* from + ptr @.TypeMapEntry.9630_from; char* to + }, ; 4730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9645_to, ; char* from + ptr @.TypeMapEntry.9644_from; char* to + }, ; 4731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9634_to, ; char* from + ptr null; char* to + }, ; 4732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9634_to, ; char* from + ptr null; char* to + }, ; 4733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9641_to, ; char* from + ptr @.TypeMapEntry.9640_from; char* to + }, ; 4734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9639_to, ; char* from + ptr @.TypeMapEntry.9638_from; char* to + }, ; 4735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9643_to, ; char* from + ptr @.TypeMapEntry.9642_from; char* to + }, ; 4736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9647_to, ; char* from + ptr @.TypeMapEntry.9646_from; char* to + }, ; 4737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9649_to, ; char* from + ptr @.TypeMapEntry.9648_from; char* to + }, ; 4738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9658_to, ; char* from + ptr @.TypeMapEntry.9657_from; char* to + }, ; 4739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9651_to, ; char* from + ptr null; char* to + }, ; 4740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9651_to, ; char* from + ptr null; char* to + }, ; 4741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9656_to, ; char* from + ptr @.TypeMapEntry.9655_from; char* to + }, ; 4742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9379_to, ; char* from + ptr null; char* to + }, ; 4743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9379_to, ; char* from + ptr null; char* to + }, ; 4744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9660_to, ; char* from + ptr @.TypeMapEntry.9659_from; char* to + }, ; 4745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9662_to, ; char* from + ptr @.TypeMapEntry.9661_from; char* to + }, ; 4746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9382_to, ; char* from + ptr null; char* to + }, ; 4747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9382_to, ; char* from + ptr null; char* to + }, ; 4748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9664_to, ; char* from + ptr @.TypeMapEntry.9663_from; char* to + }, ; 4749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9666_to, ; char* from + ptr @.TypeMapEntry.9665_from; char* to + }, ; 4750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9385_to, ; char* from + ptr null; char* to + }, ; 4751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9385_to, ; char* from + ptr null; char* to + }, ; 4752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9670_to, ; char* from + ptr @.TypeMapEntry.9669_from; char* to + }, ; 4753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9668_to, ; char* from + ptr @.TypeMapEntry.9667_from; char* to + }, ; 4754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9685_to, ; char* from + ptr @.TypeMapEntry.9684_from; char* to + }, ; 4755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9672_to, ; char* from + ptr @.TypeMapEntry.9671_from; char* to + }, ; 4756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9679_to, ; char* from + ptr @.TypeMapEntry.9678_from; char* to + }, ; 4757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9674_to, ; char* from + ptr null; char* to + }, ; 4758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9674_to, ; char* from + ptr null; char* to + }, ; 4759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9681_to, ; char* from + ptr @.TypeMapEntry.9680_from; char* to + }, ; 4760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9683_to, ; char* from + ptr @.TypeMapEntry.9682_from; char* to + }, ; 4761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9388_to, ; char* from + ptr null; char* to + }, ; 4762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9388_to, ; char* from + ptr null; char* to + }, ; 4763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9689_to, ; char* from + ptr @.TypeMapEntry.9688_from; char* to + }, ; 4764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9687_to, ; char* from + ptr @.TypeMapEntry.9686_from; char* to + }, ; 4765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9391_to, ; char* from + ptr null; char* to + }, ; 4766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9391_to, ; char* from + ptr null; char* to + }, ; 4767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9691_to, ; char* from + ptr @.TypeMapEntry.9690_from; char* to + }, ; 4768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9393_to, ; char* from + ptr null; char* to + }, ; 4769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9393_to, ; char* from + ptr null; char* to + }, ; 4770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9395_to, ; char* from + ptr null; char* to + }, ; 4771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9395_to, ; char* from + ptr null; char* to + }, ; 4772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9693_to, ; char* from + ptr @.TypeMapEntry.9692_from; char* to + }, ; 4773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9817_to, ; char* from + ptr @.TypeMapEntry.9816_from; char* to + }, ; 4774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9812_to, ; char* from + ptr null; char* to + }, ; 4775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9812_to, ; char* from + ptr null; char* to + }, ; 4776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9819_to, ; char* from + ptr @.TypeMapEntry.9818_from; char* to + }, ; 4777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9863_to, ; char* from + ptr @.TypeMapEntry.9862_from; char* to + }, ; 4778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9865_to, ; char* from + ptr @.TypeMapEntry.9864_from; char* to + }, ; 4779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9865_to, ; char* from + ptr @.TypeMapEntry.9864_from; char* to + }, ; 4780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9868_to, ; char* from + ptr @.TypeMapEntry.9867_from; char* to + }, ; 4781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9870_to, ; char* from + ptr @.TypeMapEntry.9869_from; char* to + }, ; 4782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9965_to, ; char* from + ptr @.TypeMapEntry.9964_from; char* to + }, ; 4783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9872_to, ; char* from + ptr @.TypeMapEntry.9871_from; char* to + }, ; 4784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9874_to, ; char* from + ptr @.TypeMapEntry.9873_from; char* to + }, ; 4785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9876_to, ; char* from + ptr @.TypeMapEntry.9875_from; char* to + }, ; 4786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9963_to, ; char* from + ptr @.TypeMapEntry.9962_from; char* to + }, ; 4787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9878_to, ; char* from + ptr null; char* to + }, ; 4788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9878_to, ; char* from + ptr null; char* to + }, ; 4789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9883_to, ; char* from + ptr null; char* to + }, ; 4790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9883_to, ; char* from + ptr null; char* to + }, ; 4791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9888_to, ; char* from + ptr null; char* to + }, ; 4792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9888_to, ; char* from + ptr null; char* to + }, ; 4793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9893_to, ; char* from + ptr null; char* to + }, ; 4794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9893_to, ; char* from + ptr null; char* to + }, ; 4795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9898_to, ; char* from + ptr null; char* to + }, ; 4796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9898_to, ; char* from + ptr null; char* to + }, ; 4797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9903_to, ; char* from + ptr null; char* to + }, ; 4798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9903_to, ; char* from + ptr null; char* to + }, ; 4799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9908_to, ; char* from + ptr null; char* to + }, ; 4800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9908_to, ; char* from + ptr null; char* to + }, ; 4801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9913_to, ; char* from + ptr null; char* to + }, ; 4802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9913_to, ; char* from + ptr null; char* to + }, ; 4803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9918_to, ; char* from + ptr null; char* to + }, ; 4804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9918_to, ; char* from + ptr null; char* to + }, ; 4805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9923_to, ; char* from + ptr null; char* to + }, ; 4806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9923_to, ; char* from + ptr null; char* to + }, ; 4807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9928_to, ; char* from + ptr null; char* to + }, ; 4808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9928_to, ; char* from + ptr null; char* to + }, ; 4809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9933_to, ; char* from + ptr null; char* to + }, ; 4810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9933_to, ; char* from + ptr null; char* to + }, ; 4811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9938_to, ; char* from + ptr null; char* to + }, ; 4812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9938_to, ; char* from + ptr null; char* to + }, ; 4813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9943_to, ; char* from + ptr null; char* to + }, ; 4814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9943_to, ; char* from + ptr null; char* to + }, ; 4815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9948_to, ; char* from + ptr null; char* to + }, ; 4816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9948_to, ; char* from + ptr null; char* to + }, ; 4817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9953_to, ; char* from + ptr null; char* to + }, ; 4818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9953_to, ; char* from + ptr null; char* to + }, ; 4819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9958_to, ; char* from + ptr null; char* to + }, ; 4820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9958_to, ; char* from + ptr null; char* to + }, ; 4821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9967_to, ; char* from + ptr @.TypeMapEntry.9966_from; char* to + }, ; 4822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9969_to, ; char* from + ptr @.TypeMapEntry.9968_from; char* to + }, ; 4823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9987_to, ; char* from + ptr @.TypeMapEntry.9986_from; char* to + }, ; 4824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9971_to, ; char* from + ptr @.TypeMapEntry.9970_from; char* to + }, ; 4825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9971_to, ; char* from + ptr @.TypeMapEntry.9970_from; char* to + }, ; 4826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9974_to, ; char* from + ptr @.TypeMapEntry.9973_from; char* to + }, ; 4827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9974_to, ; char* from + ptr @.TypeMapEntry.9973_from; char* to + }, ; 4828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9977_to, ; char* from + ptr @.TypeMapEntry.9976_from; char* to + }, ; 4829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9977_to, ; char* from + ptr @.TypeMapEntry.9976_from; char* to + }, ; 4830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9980_to, ; char* from + ptr @.TypeMapEntry.9979_from; char* to + }, ; 4831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9982_to, ; char* from + ptr @.TypeMapEntry.9981_from; char* to + }, ; 4832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9982_to, ; char* from + ptr @.TypeMapEntry.9981_from; char* to + }, ; 4833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9985_to, ; char* from + ptr @.TypeMapEntry.9984_from; char* to + }, ; 4834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9998_to, ; char* from + ptr @.TypeMapEntry.9997_from; char* to + }, ; 4835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9998_to, ; char* from + ptr @.TypeMapEntry.9997_from; char* to + }, ; 4836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9994_to, ; char* from + ptr @.TypeMapEntry.9993_from; char* to + }, ; 4837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9996_to, ; char* from + ptr @.TypeMapEntry.9995_from; char* to + }, ; 4838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9989_to, ; char* from + ptr null; char* to + }, ; 4839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9989_to, ; char* from + ptr null; char* to + }, ; 4840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10001_to, ; char* from + ptr @.TypeMapEntry.10000_from; char* to + }, ; 4841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9400_to, ; char* from + ptr null; char* to + }, ; 4842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9400_to, ; char* from + ptr null; char* to + }, ; 4843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10003_to, ; char* from + ptr @.TypeMapEntry.10002_from; char* to + }, ; 4844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10003_to, ; char* from + ptr @.TypeMapEntry.10002_from; char* to + }, ; 4845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10006_to, ; char* from + ptr @.TypeMapEntry.10005_from; char* to + }, ; 4846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9403_to, ; char* from + ptr null; char* to + }, ; 4847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9403_to, ; char* from + ptr null; char* to + }, ; 4848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10008_to, ; char* from + ptr @.TypeMapEntry.10007_from; char* to + }, ; 4849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10016_to, ; char* from + ptr @.TypeMapEntry.10015_from; char* to + }, ; 4850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10016_to, ; char* from + ptr @.TypeMapEntry.10015_from; char* to + }, ; 4851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10013_to, ; char* from + ptr @.TypeMapEntry.10012_from; char* to + }, ; 4852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10013_to, ; char* from + ptr @.TypeMapEntry.10012_from; char* to + }, ; 4853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10010_to, ; char* from + ptr @.TypeMapEntry.10009_from; char* to + }, ; 4854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10010_to, ; char* from + ptr @.TypeMapEntry.10009_from; char* to + }, ; 4855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10024_to, ; char* from + ptr @.TypeMapEntry.10023_from; char* to + }, ; 4856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10019_to, ; char* from + ptr null; char* to + }, ; 4857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10019_to, ; char* from + ptr null; char* to + }, ; 4858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10071_to, ; char* from + ptr @.TypeMapEntry.10070_from; char* to + }, ; 4859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10026_to, ; char* from + ptr null; char* to + }, ; 4860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10026_to, ; char* from + ptr null; char* to + }, ; 4861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10031_to, ; char* from + ptr null; char* to + }, ; 4862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10031_to, ; char* from + ptr null; char* to + }, ; 4863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10036_to, ; char* from + ptr null; char* to + }, ; 4864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10036_to, ; char* from + ptr null; char* to + }, ; 4865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10041_to, ; char* from + ptr null; char* to + }, ; 4866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10041_to, ; char* from + ptr null; char* to + }, ; 4867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10046_to, ; char* from + ptr null; char* to + }, ; 4868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10046_to, ; char* from + ptr null; char* to + }, ; 4869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10051_to, ; char* from + ptr null; char* to + }, ; 4870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10051_to, ; char* from + ptr null; char* to + }, ; 4871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10056_to, ; char* from + ptr null; char* to + }, ; 4872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10056_to, ; char* from + ptr null; char* to + }, ; 4873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10061_to, ; char* from + ptr null; char* to + }, ; 4874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10061_to, ; char* from + ptr null; char* to + }, ; 4875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10066_to, ; char* from + ptr null; char* to + }, ; 4876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10066_to, ; char* from + ptr null; char* to + }, ; 4877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10086_to, ; char* from + ptr @.TypeMapEntry.10085_from; char* to + }, ; 4878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10086_to, ; char* from + ptr @.TypeMapEntry.10085_from; char* to + }, ; 4879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10073_to, ; char* from + ptr null; char* to + }, ; 4880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10073_to, ; char* from + ptr null; char* to + }, ; 4881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10076_to, ; char* from + ptr null; char* to + }, ; 4882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10076_to, ; char* from + ptr null; char* to + }, ; 4883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10081_to, ; char* from + ptr null; char* to + }, ; 4884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10081_to, ; char* from + ptr null; char* to + }, ; 4885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10088_to, ; char* from + ptr @.TypeMapEntry.10087_from; char* to + }, ; 4886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10090_to, ; char* from + ptr @.TypeMapEntry.10089_from; char* to + }, ; 4887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10095_to, ; char* from + ptr @.TypeMapEntry.10094_from; char* to + }, ; 4888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10092_to, ; char* from + ptr @.TypeMapEntry.10091_from; char* to + }, ; 4889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10092_to, ; char* from + ptr @.TypeMapEntry.10091_from; char* to + }, ; 4890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10103_to, ; char* from + ptr @.TypeMapEntry.10102_from; char* to + }, ; 4891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10097_to, ; char* from + ptr @.TypeMapEntry.10096_from; char* to + }, ; 4892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10099_to, ; char* from + ptr @.TypeMapEntry.10098_from; char* to + }, ; 4893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10101_to, ; char* from + ptr @.TypeMapEntry.10100_from; char* to + }, ; 4894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10110_to, ; char* from + ptr @.TypeMapEntry.10109_from; char* to + }, ; 4895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10105_to, ; char* from + ptr @.TypeMapEntry.10104_from; char* to + }, ; 4896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10107_to, ; char* from + ptr @.TypeMapEntry.10106_from; char* to + }, ; 4897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10107_to, ; char* from + ptr @.TypeMapEntry.10106_from; char* to + }, ; 4898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9406_to, ; char* from + ptr null; char* to + }, ; 4899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9406_to, ; char* from + ptr null; char* to + }, ; 4900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9411_to, ; char* from + ptr null; char* to + }, ; 4901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9411_to, ; char* from + ptr null; char* to + }, ; 4902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9419_to, ; char* from + ptr null; char* to + }, ; 4903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9419_to, ; char* from + ptr null; char* to + }, ; 4904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9414_to, ; char* from + ptr null; char* to + }, ; 4905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9414_to, ; char* from + ptr null; char* to + }, ; 4906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9422_to, ; char* from + ptr null; char* to + }, ; 4907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9422_to, ; char* from + ptr null; char* to + }, ; 4908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10115_to, ; char* from + ptr @.TypeMapEntry.10114_from; char* to + }, ; 4909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10117_to, ; char* from + ptr @.TypeMapEntry.10116_from; char* to + }, ; 4910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10119_to, ; char* from + ptr @.TypeMapEntry.10118_from; char* to + }, ; 4911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10121_to, ; char* from + ptr @.TypeMapEntry.10120_from; char* to + }, ; 4912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9092_to, ; char* from + ptr @.TypeMapEntry.9091_from; char* to + }, ; 4913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9151_to, ; char* from + ptr null; char* to + }, ; 4914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9151_to, ; char* from + ptr null; char* to + }, ; 4915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9114_to, ; char* from + ptr @.TypeMapEntry.9113_from; char* to + }, ; 4916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9094_to, ; char* from + ptr null; char* to + }, ; 4917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9094_to, ; char* from + ptr null; char* to + }, ; 4918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9099_to, ; char* from + ptr null; char* to + }, ; 4919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9099_to, ; char* from + ptr null; char* to + }, ; 4920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9104_to, ; char* from + ptr null; char* to + }, ; 4921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9104_to, ; char* from + ptr null; char* to + }, ; 4922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9109_to, ; char* from + ptr null; char* to + }, ; 4923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9109_to, ; char* from + ptr null; char* to + }, ; 4924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9132_to, ; char* from + ptr @.TypeMapEntry.9131_from; char* to + }, ; 4925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9116_to, ; char* from + ptr @.TypeMapEntry.9115_from; char* to + }, ; 4926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9120_to, ; char* from + ptr @.TypeMapEntry.9119_from; char* to + }, ; 4927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9118_to, ; char* from + ptr @.TypeMapEntry.9117_from; char* to + }, ; 4928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9124_to, ; char* from + ptr @.TypeMapEntry.9123_from; char* to + }, ; 4929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9122_to, ; char* from + ptr @.TypeMapEntry.9121_from; char* to + }, ; 4930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9126_to, ; char* from + ptr @.TypeMapEntry.9125_from; char* to + }, ; 4931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9128_to, ; char* from + ptr @.TypeMapEntry.9127_from; char* to + }, ; 4932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9130_to, ; char* from + ptr @.TypeMapEntry.9129_from; char* to + }, ; 4933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9134_to, ; char* from + ptr @.TypeMapEntry.9133_from; char* to + }, ; 4934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9134_to, ; char* from + ptr @.TypeMapEntry.9133_from; char* to + }, ; 4935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9137_to, ; char* from + ptr @.TypeMapEntry.9136_from; char* to + }, ; 4936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9139_to, ; char* from + ptr @.TypeMapEntry.9138_from; char* to + }, ; 4937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9139_to, ; char* from + ptr @.TypeMapEntry.9138_from; char* to + }, ; 4938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9142_to, ; char* from + ptr @.TypeMapEntry.9141_from; char* to + }, ; 4939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9149_to, ; char* from + ptr @.TypeMapEntry.9148_from; char* to + }, ; 4940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9144_to, ; char* from + ptr @.TypeMapEntry.9143_from; char* to + }, ; 4941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9146_to, ; char* from + ptr @.TypeMapEntry.9145_from; char* to + }, ; 4942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9146_to, ; char* from + ptr @.TypeMapEntry.9145_from; char* to + }, ; 4943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9171_to, ; char* from + ptr @.TypeMapEntry.9170_from; char* to + }, ; 4944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9173_to, ; char* from + ptr @.TypeMapEntry.9172_from; char* to + }, ; 4945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9175_to, ; char* from + ptr @.TypeMapEntry.9174_from; char* to + }, ; 4946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9184_to, ; char* from + ptr @.TypeMapEntry.9183_from; char* to + }, ; 4947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9184_to, ; char* from + ptr @.TypeMapEntry.9183_from; char* to + }, ; 4948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9179_to, ; char* from + ptr null; char* to + }, ; 4949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9179_to, ; char* from + ptr null; char* to + }, ; 4950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9177_to, ; char* from + ptr @.TypeMapEntry.9176_from; char* to + }, ; 4951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9187_to, ; char* from + ptr @.TypeMapEntry.9186_from; char* to + }, ; 4952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9189_to, ; char* from + ptr @.TypeMapEntry.9188_from; char* to + }, ; 4953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9191_to, ; char* from + ptr @.TypeMapEntry.9190_from; char* to + }, ; 4954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9193_to, ; char* from + ptr @.TypeMapEntry.9192_from; char* to + }, ; 4955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9195_to, ; char* from + ptr @.TypeMapEntry.9194_from; char* to + }, ; 4956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9195_to, ; char* from + ptr @.TypeMapEntry.9194_from; char* to + }, ; 4957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9198_to, ; char* from + ptr @.TypeMapEntry.9197_from; char* to + }, ; 4958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9200_to, ; char* from + ptr @.TypeMapEntry.9199_from; char* to + }, ; 4959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9202_to, ; char* from + ptr @.TypeMapEntry.9201_from; char* to + }, ; 4960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9206_to, ; char* from + ptr @.TypeMapEntry.9205_from; char* to + }, ; 4961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9204_to, ; char* from + ptr @.TypeMapEntry.9203_from; char* to + }, ; 4962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9208_to, ; char* from + ptr null; char* to + }, ; 4963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9208_to, ; char* from + ptr null; char* to + }, ; 4964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9213_to, ; char* from + ptr @.TypeMapEntry.9212_from; char* to + }, ; 4965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9211_to, ; char* from + ptr @.TypeMapEntry.9210_from; char* to + }, ; 4966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9215_to, ; char* from + ptr @.TypeMapEntry.9214_from; char* to + }, ; 4967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9217_to, ; char* from + ptr @.TypeMapEntry.9216_from; char* to + }, ; 4968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9219_to, ; char* from + ptr @.TypeMapEntry.9218_from; char* to + }, ; 4969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9221_to, ; char* from + ptr @.TypeMapEntry.9220_from; char* to + }, ; 4970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9223_to, ; char* from + ptr @.TypeMapEntry.9222_from; char* to + }, ; 4971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9225_to, ; char* from + ptr @.TypeMapEntry.9224_from; char* to + }, ; 4972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9227_to, ; char* from + ptr @.TypeMapEntry.9226_from; char* to + }, ; 4973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9229_to, ; char* from + ptr @.TypeMapEntry.9228_from; char* to + }, ; 4974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9234_to, ; char* from + ptr @.TypeMapEntry.9233_from; char* to + }, ; 4975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9231_to, ; char* from + ptr @.TypeMapEntry.9230_from; char* to + }, ; 4976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9231_to, ; char* from + ptr @.TypeMapEntry.9230_from; char* to + }, ; 4977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9236_to, ; char* from + ptr @.TypeMapEntry.9235_from; char* to + }, ; 4978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9240_to, ; char* from + ptr @.TypeMapEntry.9239_from; char* to + }, ; 4979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9238_to, ; char* from + ptr @.TypeMapEntry.9237_from; char* to + }, ; 4980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9254_to, ; char* from + ptr @.TypeMapEntry.9253_from; char* to + }, ; 4981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9258_to, ; char* from + ptr @.TypeMapEntry.9257_from; char* to + }, ; 4982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9256_to, ; char* from + ptr @.TypeMapEntry.9255_from; char* to + }, ; 4983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9260_to, ; char* from + ptr @.TypeMapEntry.9259_from; char* to + }, ; 4984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9262_to, ; char* from + ptr @.TypeMapEntry.9261_from; char* to + }, ; 4985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9262_to, ; char* from + ptr @.TypeMapEntry.9261_from; char* to + }, ; 4986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9264_to, ; char* from + ptr @.TypeMapEntry.9263_from; char* to + }, ; 4987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9271_to, ; char* from + ptr @.TypeMapEntry.9270_from; char* to + }, ; 4988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9267_to, ; char* from + ptr @.TypeMapEntry.9266_from; char* to + }, ; 4989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9269_to, ; char* from + ptr @.TypeMapEntry.9268_from; char* to + }, ; 4990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9273_to, ; char* from + ptr @.TypeMapEntry.9272_from; char* to + }, ; 4991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9275_to, ; char* from + ptr null; char* to + }, ; 4992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9275_to, ; char* from + ptr null; char* to + }, ; 4993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9294_to, ; char* from + ptr @.TypeMapEntry.9293_from; char* to + }, ; 4994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9296_to, ; char* from + ptr @.TypeMapEntry.9295_from; char* to + }, ; 4995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9300_to, ; char* from + ptr null; char* to + }, ; 4996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9300_to, ; char* from + ptr null; char* to + }, ; 4997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9303_to, ; char* from + ptr @.TypeMapEntry.9302_from; char* to + }, ; 4998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9436_to, ; char* from + ptr @.TypeMapEntry.9435_from; char* to + }, ; 4999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9438_to, ; char* from + ptr @.TypeMapEntry.9437_from; char* to + }, ; 5000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9467_to, ; char* from + ptr null; char* to + }, ; 5001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9467_to, ; char* from + ptr null; char* to + }, ; 5002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9440_to, ; char* from + ptr @.TypeMapEntry.9439_from; char* to + }, ; 5003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9444_to, ; char* from + ptr @.TypeMapEntry.9443_from; char* to + }, ; 5004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9442_to, ; char* from + ptr @.TypeMapEntry.9441_from; char* to + }, ; 5005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9448_to, ; char* from + ptr @.TypeMapEntry.9447_from; char* to + }, ; 5006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9446_to, ; char* from + ptr @.TypeMapEntry.9445_from; char* to + }, ; 5007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9452_to, ; char* from + ptr @.TypeMapEntry.9451_from; char* to + }, ; 5008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9450_to, ; char* from + ptr @.TypeMapEntry.9449_from; char* to + }, ; 5009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9456_to, ; char* from + ptr @.TypeMapEntry.9455_from; char* to + }, ; 5010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9454_to, ; char* from + ptr @.TypeMapEntry.9453_from; char* to + }, ; 5011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9458_to, ; char* from + ptr @.TypeMapEntry.9457_from; char* to + }, ; 5012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9460_to, ; char* from + ptr @.TypeMapEntry.9459_from; char* to + }, ; 5013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9462_to, ; char* from + ptr @.TypeMapEntry.9461_from; char* to + }, ; 5014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9464_to, ; char* from + ptr @.TypeMapEntry.9463_from; char* to + }, ; 5015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9464_to, ; char* from + ptr @.TypeMapEntry.9463_from; char* to + }, ; 5016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9485_to, ; char* from + ptr @.TypeMapEntry.9484_from; char* to + }, ; 5017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9487_to, ; char* from + ptr @.TypeMapEntry.9486_from; char* to + }, ; 5018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9491_to, ; char* from + ptr @.TypeMapEntry.9490_from; char* to + }, ; 5019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9489_to, ; char* from + ptr @.TypeMapEntry.9488_from; char* to + }, ; 5020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9493_to, ; char* from + ptr @.TypeMapEntry.9492_from; char* to + }, ; 5021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9495_to, ; char* from + ptr @.TypeMapEntry.9494_from; char* to + }, ; 5022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9470_to, ; char* from + ptr null; char* to + }, ; 5023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9470_to, ; char* from + ptr null; char* to + }, ; 5024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9499_to, ; char* from + ptr @.TypeMapEntry.9498_from; char* to + }, ; 5025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9501_to, ; char* from + ptr @.TypeMapEntry.9500_from; char* to + }, ; 5026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9473_to, ; char* from + ptr null; char* to + }, ; 5027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9473_to, ; char* from + ptr null; char* to + }, ; 5028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9478_to, ; char* from + ptr null; char* to + }, ; 5029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9478_to, ; char* from + ptr null; char* to + }, ; 5030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9505_to, ; char* from + ptr @.TypeMapEntry.9504_from; char* to + }, ; 5031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9507_to, ; char* from + ptr @.TypeMapEntry.9506_from; char* to + }, ; 5032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9476_to, ; char* from + ptr null; char* to + }, ; 5033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9476_to, ; char* from + ptr null; char* to + }, ; 5034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9481_to, ; char* from + ptr null; char* to + }, ; 5035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9481_to, ; char* from + ptr null; char* to + }, ; 5036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9511_to, ; char* from + ptr @.TypeMapEntry.9510_from; char* to + }, ; 5037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9509_to, ; char* from + ptr @.TypeMapEntry.9508_from; char* to + }, ; 5038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9515_to, ; char* from + ptr @.TypeMapEntry.9514_from; char* to + }, ; 5039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9513_to, ; char* from + ptr @.TypeMapEntry.9512_from; char* to + }, ; 5040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9519_to, ; char* from + ptr @.TypeMapEntry.9518_from; char* to + }, ; 5041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9517_to, ; char* from + ptr @.TypeMapEntry.9516_from; char* to + }, ; 5042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9523_to, ; char* from + ptr @.TypeMapEntry.9522_from; char* to + }, ; 5043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9521_to, ; char* from + ptr @.TypeMapEntry.9520_from; char* to + }, ; 5044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9525_to, ; char* from + ptr @.TypeMapEntry.9524_from; char* to + }, ; 5045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9525_to, ; char* from + ptr @.TypeMapEntry.9524_from; char* to + }, ; 5046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9530_to, ; char* from + ptr @.TypeMapEntry.9529_from; char* to + }, ; 5047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9528_to, ; char* from + ptr @.TypeMapEntry.9527_from; char* to + }, ; 5048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9534_to, ; char* from + ptr @.TypeMapEntry.9533_from; char* to + }, ; 5049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9532_to, ; char* from + ptr @.TypeMapEntry.9531_from; char* to + }, ; 5050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9538_to, ; char* from + ptr @.TypeMapEntry.9537_from; char* to + }, ; 5051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9536_to, ; char* from + ptr @.TypeMapEntry.9535_from; char* to + }, ; 5052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9540_to, ; char* from + ptr @.TypeMapEntry.9539_from; char* to + }, ; 5053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9544_to, ; char* from + ptr @.TypeMapEntry.9543_from; char* to + }, ; 5054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9542_to, ; char* from + ptr @.TypeMapEntry.9541_from; char* to + }, ; 5055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9548_to, ; char* from + ptr @.TypeMapEntry.9547_from; char* to + }, ; 5056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9546_to, ; char* from + ptr @.TypeMapEntry.9545_from; char* to + }, ; 5057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9552_to, ; char* from + ptr @.TypeMapEntry.9551_from; char* to + }, ; 5058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9550_to, ; char* from + ptr @.TypeMapEntry.9549_from; char* to + }, ; 5059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9554_to, ; char* from + ptr @.TypeMapEntry.9553_from; char* to + }, ; 5060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9556_to, ; char* from + ptr @.TypeMapEntry.9555_from; char* to + }, ; 5061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9563_to, ; char* from + ptr null; char* to + }, ; 5062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9563_to, ; char* from + ptr null; char* to + }, ; 5063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9575_to, ; char* from + ptr @.TypeMapEntry.9574_from; char* to + }, ; 5064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9566_to, ; char* from + ptr null; char* to + }, ; 5065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9566_to, ; char* from + ptr null; char* to + }, ; 5066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9577_to, ; char* from + ptr @.TypeMapEntry.9576_from; char* to + }, ; 5067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9569_to, ; char* from + ptr null; char* to + }, ; 5068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9569_to, ; char* from + ptr null; char* to + }, ; 5069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9579_to, ; char* from + ptr @.TypeMapEntry.9578_from; char* to + }, ; 5070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9572_to, ; char* from + ptr null; char* to + }, ; 5071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9572_to, ; char* from + ptr null; char* to + }, ; 5072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9581_to, ; char* from + ptr @.TypeMapEntry.9580_from; char* to + }, ; 5073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9583_to, ; char* from + ptr @.TypeMapEntry.9582_from; char* to + }, ; 5074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9585_to, ; char* from + ptr @.TypeMapEntry.9584_from; char* to + }, ; 5075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9697_to, ; char* from + ptr @.TypeMapEntry.9696_from; char* to + }, ; 5076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9695_to, ; char* from + ptr @.TypeMapEntry.9694_from; char* to + }, ; 5077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9707_to, ; char* from + ptr @.TypeMapEntry.9706_from; char* to + }, ; 5078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9701_to, ; char* from + ptr @.TypeMapEntry.9700_from; char* to + }, ; 5079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9699_to, ; char* from + ptr @.TypeMapEntry.9698_from; char* to + }, ; 5080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9705_to, ; char* from + ptr @.TypeMapEntry.9704_from; char* to + }, ; 5081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9703_to, ; char* from + ptr @.TypeMapEntry.9702_from; char* to + }, ; 5082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9715_to, ; char* from + ptr @.TypeMapEntry.9714_from; char* to + }, ; 5083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9723_to, ; char* from + ptr @.TypeMapEntry.9722_from; char* to + }, ; 5084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9717_to, ; char* from + ptr @.TypeMapEntry.9716_from; char* to + }, ; 5085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9721_to, ; char* from + ptr @.TypeMapEntry.9720_from; char* to + }, ; 5086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9719_to, ; char* from + ptr @.TypeMapEntry.9718_from; char* to + }, ; 5087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9727_to, ; char* from + ptr @.TypeMapEntry.9726_from; char* to + }, ; 5088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9725_to, ; char* from + ptr @.TypeMapEntry.9724_from; char* to + }, ; 5089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9729_to, ; char* from + ptr @.TypeMapEntry.9728_from; char* to + }, ; 5090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9709_to, ; char* from + ptr null; char* to + }, ; 5091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9709_to, ; char* from + ptr null; char* to + }, ; 5092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9731_to, ; char* from + ptr @.TypeMapEntry.9730_from; char* to + }, ; 5093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9712_to, ; char* from + ptr null; char* to + }, ; 5094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9712_to, ; char* from + ptr null; char* to + }, ; 5095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9737_to, ; char* from + ptr @.TypeMapEntry.9736_from; char* to + }, ; 5096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9735_to, ; char* from + ptr @.TypeMapEntry.9734_from; char* to + }, ; 5097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9758_to, ; char* from + ptr @.TypeMapEntry.9757_from; char* to + }, ; 5098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9758_to, ; char* from + ptr @.TypeMapEntry.9757_from; char* to + }, ; 5099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9739_to, ; char* from + ptr @.TypeMapEntry.9738_from; char* to + }, ; 5100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9739_to, ; char* from + ptr @.TypeMapEntry.9738_from; char* to + }, ; 5101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9744_to, ; char* from + ptr @.TypeMapEntry.9743_from; char* to + }, ; 5102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9742_to, ; char* from + ptr @.TypeMapEntry.9741_from; char* to + }, ; 5103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9748_to, ; char* from + ptr @.TypeMapEntry.9747_from; char* to + }, ; 5104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9746_to, ; char* from + ptr @.TypeMapEntry.9745_from; char* to + }, ; 5105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9752_to, ; char* from + ptr @.TypeMapEntry.9751_from; char* to + }, ; 5106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9750_to, ; char* from + ptr @.TypeMapEntry.9749_from; char* to + }, ; 5107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9756_to, ; char* from + ptr @.TypeMapEntry.9755_from; char* to + }, ; 5108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9754_to, ; char* from + ptr @.TypeMapEntry.9753_from; char* to + }, ; 5109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9767_to, ; char* from + ptr @.TypeMapEntry.9766_from; char* to + }, ; 5110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9761_to, ; char* from + ptr @.TypeMapEntry.9760_from; char* to + }, ; 5111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9765_to, ; char* from + ptr @.TypeMapEntry.9764_from; char* to + }, ; 5112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9763_to, ; char* from + ptr @.TypeMapEntry.9762_from; char* to + }, ; 5113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9779_to, ; char* from + ptr @.TypeMapEntry.9778_from; char* to + }, ; 5114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9769_to, ; char* from + ptr @.TypeMapEntry.9768_from; char* to + }, ; 5115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9773_to, ; char* from + ptr @.TypeMapEntry.9772_from; char* to + }, ; 5116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9771_to, ; char* from + ptr @.TypeMapEntry.9770_from; char* to + }, ; 5117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9775_to, ; char* from + ptr @.TypeMapEntry.9774_from; char* to + }, ; 5118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9777_to, ; char* from + ptr @.TypeMapEntry.9776_from; char* to + }, ; 5119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9787_to, ; char* from + ptr @.TypeMapEntry.9786_from; char* to + }, ; 5120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9781_to, ; char* from + ptr @.TypeMapEntry.9780_from; char* to + }, ; 5121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9785_to, ; char* from + ptr @.TypeMapEntry.9784_from; char* to + }, ; 5122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9783_to, ; char* from + ptr @.TypeMapEntry.9782_from; char* to + }, ; 5123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9789_to, ; char* from + ptr @.TypeMapEntry.9788_from; char* to + }, ; 5124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9791_to, ; char* from + ptr @.TypeMapEntry.9790_from; char* to + }, ; 5125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9802_to, ; char* from + ptr @.TypeMapEntry.9801_from; char* to + }, ; 5126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9793_to, ; char* from + ptr null; char* to + }, ; 5127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9793_to, ; char* from + ptr null; char* to + }, ; 5128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9800_to, ; char* from + ptr @.TypeMapEntry.9799_from; char* to + }, ; 5129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9798_to, ; char* from + ptr @.TypeMapEntry.9797_from; char* to + }, ; 5130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9804_to, ; char* from + ptr @.TypeMapEntry.9803_from; char* to + }, ; 5131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9806_to, ; char* from + ptr @.TypeMapEntry.9805_from; char* to + }, ; 5132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9808_to, ; char* from + ptr @.TypeMapEntry.9807_from; char* to + }, ; 5133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9810_to, ; char* from + ptr @.TypeMapEntry.9809_from; char* to + }, ; 5134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9827_to, ; char* from + ptr @.TypeMapEntry.9826_from; char* to + }, ; 5135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9831_to, ; char* from + ptr @.TypeMapEntry.9830_from; char* to + }, ; 5136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9829_to, ; char* from + ptr @.TypeMapEntry.9828_from; char* to + }, ; 5137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9833_to, ; char* from + ptr @.TypeMapEntry.9832_from; char* to + }, ; 5138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9837_to, ; char* from + ptr @.TypeMapEntry.9836_from; char* to + }, ; 5139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9835_to, ; char* from + ptr @.TypeMapEntry.9834_from; char* to + }, ; 5140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9839_to, ; char* from + ptr @.TypeMapEntry.9838_from; char* to + }, ; 5141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9843_to, ; char* from + ptr @.TypeMapEntry.9842_from; char* to + }, ; 5142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9841_to, ; char* from + ptr @.TypeMapEntry.9840_from; char* to + }, ; 5143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9847_to, ; char* from + ptr @.TypeMapEntry.9846_from; char* to + }, ; 5144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9845_to, ; char* from + ptr @.TypeMapEntry.9844_from; char* to + }, ; 5145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9849_to, ; char* from + ptr @.TypeMapEntry.9848_from; char* to + }, ; 5146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9851_to, ; char* from + ptr @.TypeMapEntry.9850_from; char* to + }, ; 5147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9853_to, ; char* from + ptr @.TypeMapEntry.9852_from; char* to + }, ; 5148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9821_to, ; char* from + ptr null; char* to + }, ; 5149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9821_to, ; char* from + ptr null; char* to + }, ; 5150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9824_to, ; char* from + ptr null; char* to + }, ; 5151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9824_to, ; char* from + ptr null; char* to + }, ; 5152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9857_to, ; char* from + ptr @.TypeMapEntry.9856_from; char* to + }, ; 5153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9855_to, ; char* from + ptr @.TypeMapEntry.9854_from; char* to + }, ; 5154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9861_to, ; char* from + ptr @.TypeMapEntry.9860_from; char* to + }, ; 5155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9859_to, ; char* from + ptr @.TypeMapEntry.9858_from; char* to + }, ; 5156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10125_to, ; char* from + ptr @.TypeMapEntry.10124_from; char* to + }, ; 5157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10123_to, ; char* from + ptr @.TypeMapEntry.10122_from; char* to + }, ; 5158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10127_to, ; char* from + ptr @.TypeMapEntry.10126_from; char* to + }, ; 5159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10127_to, ; char* from + ptr @.TypeMapEntry.10126_from; char* to + }, ; 5160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10132_to, ; char* from + ptr @.TypeMapEntry.10131_from; char* to + }, ; 5161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10130_to, ; char* from + ptr @.TypeMapEntry.10129_from; char* to + }, ; 5162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10134_to, ; char* from + ptr @.TypeMapEntry.10133_from; char* to + }, ; 5163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10134_to, ; char* from + ptr @.TypeMapEntry.10133_from; char* to + }, ; 5164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10137_to, ; char* from + ptr @.TypeMapEntry.10136_from; char* to + }, ; 5165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10139_to, ; char* from + ptr @.TypeMapEntry.10138_from; char* to + }, ; 5166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10148_to, ; char* from + ptr null; char* to + }, ; 5167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10148_to, ; char* from + ptr null; char* to + }, ; 5168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10144_to, ; char* from + ptr @.TypeMapEntry.10143_from; char* to + }, ; 5169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10141_to, ; char* from + ptr null; char* to + }, ; 5170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10141_to, ; char* from + ptr null; char* to + }, ; 5171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10146_to, ; char* from + ptr @.TypeMapEntry.10145_from; char* to + }, ; 5172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10153_to, ; char* from + ptr null; char* to + }, ; 5173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10153_to, ; char* from + ptr null; char* to + }, ; 5174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10153_to, ; char* from + ptr null; char* to + }, ; 5175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10153_to, ; char* from + ptr null; char* to + }, ; 5176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10170_to, ; char* from + ptr @.TypeMapEntry.10169_from; char* to + }, ; 5177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10172_to, ; char* from + ptr @.TypeMapEntry.10171_from; char* to + }, ; 5178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10174_to, ; char* from + ptr @.TypeMapEntry.10173_from; char* to + }, ; 5179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10176_to, ; char* from + ptr @.TypeMapEntry.10175_from; char* to + }, ; 5180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10176_to, ; char* from + ptr @.TypeMapEntry.10175_from; char* to + }, ; 5181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10182_to, ; char* from + ptr @.TypeMapEntry.10181_from; char* to + }, ; 5182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10179_to, ; char* from + ptr null; char* to + }, ; 5183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10179_to, ; char* from + ptr null; char* to + }, ; 5184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10184_to, ; char* from + ptr @.TypeMapEntry.10183_from; char* to + }, ; 5185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10186_to, ; char* from + ptr @.TypeMapEntry.10185_from; char* to + }, ; 5186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10156_to, ; char* from + ptr null; char* to + }, ; 5187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10156_to, ; char* from + ptr null; char* to + }, ; 5188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10188_to, ; char* from + ptr @.TypeMapEntry.10187_from; char* to + }, ; 5189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10188_to, ; char* from + ptr @.TypeMapEntry.10187_from; char* to + }, ; 5190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10191_to, ; char* from + ptr @.TypeMapEntry.10190_from; char* to + }, ; 5191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10191_to, ; char* from + ptr @.TypeMapEntry.10190_from; char* to + }, ; 5192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10194_to, ; char* from + ptr @.TypeMapEntry.10193_from; char* to + }, ; 5193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10196_to, ; char* from + ptr @.TypeMapEntry.10195_from; char* to + }, ; 5194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10196_to, ; char* from + ptr @.TypeMapEntry.10195_from; char* to + }, ; 5195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10199_to, ; char* from + ptr @.TypeMapEntry.10198_from; char* to + }, ; 5196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10199_to, ; char* from + ptr @.TypeMapEntry.10198_from; char* to + }, ; 5197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10202_to, ; char* from + ptr @.TypeMapEntry.10201_from; char* to + }, ; 5198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10206_to, ; char* from + ptr @.TypeMapEntry.10205_from; char* to + }, ; 5199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10204_to, ; char* from + ptr @.TypeMapEntry.10203_from; char* to + }, ; 5200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10208_to, ; char* from + ptr @.TypeMapEntry.10207_from; char* to + }, ; 5201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10208_to, ; char* from + ptr @.TypeMapEntry.10207_from; char* to + }, ; 5202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10211_to, ; char* from + ptr @.TypeMapEntry.10210_from; char* to + }, ; 5203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10159_to, ; char* from + ptr null; char* to + }, ; 5204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10159_to, ; char* from + ptr null; char* to + }, ; 5205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10213_to, ; char* from + ptr @.TypeMapEntry.10212_from; char* to + }, ; 5206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10162_to, ; char* from + ptr null; char* to + }, ; 5207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10162_to, ; char* from + ptr null; char* to + }, ; 5208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10215_to, ; char* from + ptr @.TypeMapEntry.10214_from; char* to + }, ; 5209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10215_to, ; char* from + ptr @.TypeMapEntry.10214_from; char* to + }, ; 5210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10224_to, ; char* from + ptr @.TypeMapEntry.10223_from; char* to + }, ; 5211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10221_to, ; char* from + ptr null; char* to + }, ; 5212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10221_to, ; char* from + ptr null; char* to + }, ; 5213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10218_to, ; char* from + ptr @.TypeMapEntry.10217_from; char* to + }, ; 5214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10218_to, ; char* from + ptr @.TypeMapEntry.10217_from; char* to + }, ; 5215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10226_to, ; char* from + ptr @.TypeMapEntry.10225_from; char* to + }, ; 5216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10226_to, ; char* from + ptr @.TypeMapEntry.10225_from; char* to + }, ; 5217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10234_to, ; char* from + ptr @.TypeMapEntry.10233_from; char* to + }, ; 5218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10234_to, ; char* from + ptr @.TypeMapEntry.10233_from; char* to + }, ; 5219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10229_to, ; char* from + ptr null; char* to + }, ; 5220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10229_to, ; char* from + ptr null; char* to + }, ; 5221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10237_to, ; char* from + ptr @.TypeMapEntry.10236_from; char* to + }, ; 5222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10242_to, ; char* from + ptr @.TypeMapEntry.10241_from; char* to + }, ; 5223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10242_to, ; char* from + ptr @.TypeMapEntry.10241_from; char* to + }, ; 5224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10239_to, ; char* from + ptr @.TypeMapEntry.10238_from; char* to + }, ; 5225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10239_to, ; char* from + ptr @.TypeMapEntry.10238_from; char* to + }, ; 5226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10245_to, ; char* from + ptr @.TypeMapEntry.10244_from; char* to + }, ; 5227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10245_to, ; char* from + ptr @.TypeMapEntry.10244_from; char* to + }, ; 5228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10165_to, ; char* from + ptr null; char* to + }, ; 5229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10165_to, ; char* from + ptr null; char* to + }, ; 5230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10248_to, ; char* from + ptr @.TypeMapEntry.10247_from; char* to + }, ; 5231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10260_to, ; char* from + ptr @.TypeMapEntry.10259_from; char* to + }, ; 5232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10260_to, ; char* from + ptr @.TypeMapEntry.10259_from; char* to + }, ; 5233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10250_to, ; char* from + ptr @.TypeMapEntry.10249_from; char* to + }, ; 5234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10252_to, ; char* from + ptr @.TypeMapEntry.10251_from; char* to + }, ; 5235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10254_to, ; char* from + ptr @.TypeMapEntry.10253_from; char* to + }, ; 5236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10256_to, ; char* from + ptr @.TypeMapEntry.10255_from; char* to + }, ; 5237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10258_to, ; char* from + ptr @.TypeMapEntry.10257_from; char* to + }, ; 5238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10268_to, ; char* from + ptr @.TypeMapEntry.10267_from; char* to + }, ; 5239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10266_to, ; char* from + ptr @.TypeMapEntry.10265_from; char* to + }, ; 5240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10263_to, ; char* from + ptr null; char* to + }, ; 5241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10263_to, ; char* from + ptr null; char* to + }, ; 5242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10270_to, ; char* from + ptr @.TypeMapEntry.10269_from; char* to + }, ; 5243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10270_to, ; char* from + ptr @.TypeMapEntry.10269_from; char* to + }, ; 5244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10290_to, ; char* from + ptr @.TypeMapEntry.10289_from; char* to + }, ; 5245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10275_to, ; char* from + ptr null; char* to + }, ; 5246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10275_to, ; char* from + ptr null; char* to + }, ; 5247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10273_to, ; char* from + ptr @.TypeMapEntry.10272_from; char* to + }, ; 5248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10280_to, ; char* from + ptr null; char* to + }, ; 5249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10280_to, ; char* from + ptr null; char* to + }, ; 5250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10285_to, ; char* from + ptr @.TypeMapEntry.10284_from; char* to + }, ; 5251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10285_to, ; char* from + ptr @.TypeMapEntry.10284_from; char* to + }, ; 5252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10288_to, ; char* from + ptr @.TypeMapEntry.10287_from; char* to + }, ; 5253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10292_to, ; char* from + ptr @.TypeMapEntry.10291_from; char* to + }, ; 5254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10294_to, ; char* from + ptr @.TypeMapEntry.10293_from; char* to + }, ; 5255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10294_to, ; char* from + ptr @.TypeMapEntry.10293_from; char* to + }, ; 5256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10297_to, ; char* from + ptr @.TypeMapEntry.10296_from; char* to + }, ; 5257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10299_to, ; char* from + ptr @.TypeMapEntry.10298_from; char* to + }, ; 5258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10299_to, ; char* from + ptr @.TypeMapEntry.10298_from; char* to + }, ; 5259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10301_to, ; char* from + ptr @.TypeMapEntry.10300_from; char* to + }, ; 5260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10301_to, ; char* from + ptr @.TypeMapEntry.10300_from; char* to + }, ; 5261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10323_to, ; char* from + ptr @.TypeMapEntry.10322_from; char* to + }, ; 5262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10323_to, ; char* from + ptr @.TypeMapEntry.10322_from; char* to + }, ; 5263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10321_to, ; char* from + ptr @.TypeMapEntry.10320_from; char* to + }, ; 5264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10305_to, ; char* from + ptr null; char* to + }, ; 5265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10305_to, ; char* from + ptr null; char* to + }, ; 5266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10308_to, ; char* from + ptr null; char* to + }, ; 5267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10308_to, ; char* from + ptr null; char* to + }, ; 5268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10313_to, ; char* from + ptr null; char* to + }, ; 5269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10313_to, ; char* from + ptr null; char* to + }, ; 5270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10318_to, ; char* from + ptr null; char* to + }, ; 5271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10318_to, ; char* from + ptr null; char* to + }, ; 5272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10326_to, ; char* from + ptr @.TypeMapEntry.10325_from; char* to + }, ; 5273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10326_to, ; char* from + ptr @.TypeMapEntry.10325_from; char* to + }, ; 5274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10329_to, ; char* from + ptr @.TypeMapEntry.10328_from; char* to + }, ; 5275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10329_to, ; char* from + ptr @.TypeMapEntry.10328_from; char* to + }, ; 5276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10334_to, ; char* from + ptr @.TypeMapEntry.10333_from; char* to + }, ; 5277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10332_to, ; char* from + ptr @.TypeMapEntry.10331_from; char* to + }, ; 5278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10343_to, ; char* from + ptr @.TypeMapEntry.10342_from; char* to + }, ; 5279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10341_to, ; char* from + ptr @.TypeMapEntry.10340_from; char* to + }, ; 5280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10336_to, ; char* from + ptr null; char* to + }, ; 5281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10336_to, ; char* from + ptr null; char* to + }, ; 5282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10503_to, ; char* from + ptr null; char* to + }, ; 5283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10503_to, ; char* from + ptr null; char* to + }, ; 5284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10364_to, ; char* from + ptr @.TypeMapEntry.10363_from; char* to + }, ; 5285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10364_to, ; char* from + ptr @.TypeMapEntry.10363_from; char* to + }, ; 5286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10364_to, ; char* from + ptr @.TypeMapEntry.10363_from; char* to + }, ; 5287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10347_to, ; char* from + ptr @.TypeMapEntry.10346_from; char* to + }, ; 5288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10349_to, ; char* from + ptr null; char* to + }, ; 5289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10349_to, ; char* from + ptr null; char* to + }, ; 5290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10354_to, ; char* from + ptr null; char* to + }, ; 5291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10354_to, ; char* from + ptr null; char* to + }, ; 5292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10359_to, ; char* from + ptr null; char* to + }, ; 5293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10359_to, ; char* from + ptr null; char* to + }, ; 5294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10366_to, ; char* from + ptr @.TypeMapEntry.10365_from; char* to + }, ; 5295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10366_to, ; char* from + ptr @.TypeMapEntry.10365_from; char* to + }, ; 5296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10369_to, ; char* from + ptr @.TypeMapEntry.10368_from; char* to + }, ; 5297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10506_to, ; char* from + ptr null; char* to + }, ; 5298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10506_to, ; char* from + ptr null; char* to + }, ; 5299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10373_to, ; char* from + ptr @.TypeMapEntry.10372_from; char* to + }, ; 5300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10375_to, ; char* from + ptr @.TypeMapEntry.10374_from; char* to + }, ; 5301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10377_to, ; char* from + ptr null; char* to + }, ; 5302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10377_to, ; char* from + ptr null; char* to + }, ; 5303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10388_to, ; char* from + ptr @.TypeMapEntry.10387_from; char* to + }, ; 5304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10380_to, ; char* from + ptr null; char* to + }, ; 5305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10380_to, ; char* from + ptr null; char* to + }, ; 5306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10385_to, ; char* from + ptr null; char* to + }, ; 5307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10385_to, ; char* from + ptr null; char* to + }, ; 5308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10390_to, ; char* from + ptr null; char* to + }, ; 5309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10390_to, ; char* from + ptr null; char* to + }, ; 5310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10390_to, ; char* from + ptr null; char* to + }, ; 5311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10394_to, ; char* from + ptr @.TypeMapEntry.10393_from; char* to + }, ; 5312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10394_to, ; char* from + ptr @.TypeMapEntry.10393_from; char* to + }, ; 5313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10397_to, ; char* from + ptr @.TypeMapEntry.10396_from; char* to + }, ; 5314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10404_to, ; char* from + ptr @.TypeMapEntry.10403_from; char* to + }, ; 5315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10399_to, ; char* from + ptr null; char* to + }, ; 5316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10399_to, ; char* from + ptr null; char* to + }, ; 5317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10406_to, ; char* from + ptr @.TypeMapEntry.10405_from; char* to + }, ; 5318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10509_to, ; char* from + ptr null; char* to + }, ; 5319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10509_to, ; char* from + ptr null; char* to + }, ; 5320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10408_to, ; char* from + ptr @.TypeMapEntry.10407_from; char* to + }, ; 5321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10415_to, ; char* from + ptr @.TypeMapEntry.10414_from; char* to + }, ; 5322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10410_to, ; char* from + ptr null; char* to + }, ; 5323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10410_to, ; char* from + ptr null; char* to + }, ; 5324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10422_to, ; char* from + ptr @.TypeMapEntry.10421_from; char* to + }, ; 5325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10422_to, ; char* from + ptr @.TypeMapEntry.10421_from; char* to + }, ; 5326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10417_to, ; char* from + ptr null; char* to + }, ; 5327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10417_to, ; char* from + ptr null; char* to + }, ; 5328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10425_to, ; char* from + ptr @.TypeMapEntry.10424_from; char* to + }, ; 5329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10425_to, ; char* from + ptr @.TypeMapEntry.10424_from; char* to + }, ; 5330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10428_to, ; char* from + ptr @.TypeMapEntry.10427_from; char* to + }, ; 5331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10428_to, ; char* from + ptr @.TypeMapEntry.10427_from; char* to + }, ; 5332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10436_to, ; char* from + ptr @.TypeMapEntry.10435_from; char* to + }, ; 5333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10431_to, ; char* from + ptr null; char* to + }, ; 5334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10431_to, ; char* from + ptr null; char* to + }, ; 5335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10438_to, ; char* from + ptr @.TypeMapEntry.10437_from; char* to + }, ; 5336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10440_to, ; char* from + ptr @.TypeMapEntry.10439_from; char* to + }, ; 5337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10442_to, ; char* from + ptr @.TypeMapEntry.10441_from; char* to + }, ; 5338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10444_to, ; char* from + ptr @.TypeMapEntry.10443_from; char* to + }, ; 5339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10512_to, ; char* from + ptr null; char* to + }, ; 5340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10512_to, ; char* from + ptr null; char* to + }, ; 5341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10468_to, ; char* from + ptr @.TypeMapEntry.10467_from; char* to + }, ; 5342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10446_to, ; char* from + ptr @.TypeMapEntry.10445_from; char* to + }, ; 5343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10448_to, ; char* from + ptr null; char* to + }, ; 5344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10448_to, ; char* from + ptr null; char* to + }, ; 5345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10453_to, ; char* from + ptr null; char* to + }, ; 5346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10453_to, ; char* from + ptr null; char* to + }, ; 5347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10458_to, ; char* from + ptr null; char* to + }, ; 5348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10458_to, ; char* from + ptr null; char* to + }, ; 5349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10463_to, ; char* from + ptr null; char* to + }, ; 5350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10463_to, ; char* from + ptr null; char* to + }, ; 5351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10477_to, ; char* from + ptr @.TypeMapEntry.10476_from; char* to + }, ; 5352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10477_to, ; char* from + ptr @.TypeMapEntry.10476_from; char* to + }, ; 5353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10472_to, ; char* from + ptr null; char* to + }, ; 5354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10472_to, ; char* from + ptr null; char* to + }, ; 5355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10470_to, ; char* from + ptr @.TypeMapEntry.10469_from; char* to + }, ; 5356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10515_to, ; char* from + ptr null; char* to + }, ; 5357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10515_to, ; char* from + ptr null; char* to + }, ; 5358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10518_to, ; char* from + ptr null; char* to + }, ; 5359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10518_to, ; char* from + ptr null; char* to + }, ; 5360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10482_to, ; char* from + ptr @.TypeMapEntry.10481_from; char* to + }, ; 5361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10480_to, ; char* from + ptr @.TypeMapEntry.10479_from; char* to + }, ; 5362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10486_to, ; char* from + ptr @.TypeMapEntry.10485_from; char* to + }, ; 5363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10484_to, ; char* from + ptr @.TypeMapEntry.10483_from; char* to + }, ; 5364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10495_to, ; char* from + ptr @.TypeMapEntry.10494_from; char* to + }, ; 5365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10488_to, ; char* from + ptr @.TypeMapEntry.10487_from; char* to + }, ; 5366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10488_to, ; char* from + ptr @.TypeMapEntry.10487_from; char* to + }, ; 5367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10491_to, ; char* from + ptr @.TypeMapEntry.10490_from; char* to + }, ; 5368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10493_to, ; char* from + ptr @.TypeMapEntry.10492_from; char* to + }, ; 5369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10497_to, ; char* from + ptr @.TypeMapEntry.10496_from; char* to + }, ; 5370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10499_to, ; char* from + ptr @.TypeMapEntry.10498_from; char* to + }, ; 5371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10521_to, ; char* from + ptr null; char* to + }, ; 5372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10521_to, ; char* from + ptr null; char* to + }, ; 5373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10501_to, ; char* from + ptr @.TypeMapEntry.10500_from; char* to + }, ; 5374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10539_to, ; char* from + ptr @.TypeMapEntry.10538_from; char* to + }, ; 5375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10541_to, ; char* from + ptr @.TypeMapEntry.10540_from; char* to + }, ; 5376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10545_to, ; char* from + ptr @.TypeMapEntry.10544_from; char* to + }, ; 5377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10543_to, ; char* from + ptr @.TypeMapEntry.10542_from; char* to + }, ; 5378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10558_to, ; char* from + ptr @.TypeMapEntry.10557_from; char* to + }, ; 5379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10556_to, ; char* from + ptr @.TypeMapEntry.10555_from; char* to + }, ; 5380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10524_to, ; char* from + ptr null; char* to + }, ; 5381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10524_to, ; char* from + ptr null; char* to + }, ; 5382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10560_to, ; char* from + ptr @.TypeMapEntry.10559_from; char* to + }, ; 5383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10564_to, ; char* from + ptr @.TypeMapEntry.10563_from; char* to + }, ; 5384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10562_to, ; char* from + ptr @.TypeMapEntry.10561_from; char* to + }, ; 5385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10568_to, ; char* from + ptr @.TypeMapEntry.10567_from; char* to + }, ; 5386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10566_to, ; char* from + ptr @.TypeMapEntry.10565_from; char* to + }, ; 5387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10573_to, ; char* from + ptr @.TypeMapEntry.10572_from; char* to + }, ; 5388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10570_to, ; char* from + ptr null; char* to + }, ; 5389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10570_to, ; char* from + ptr null; char* to + }, ; 5390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10580_to, ; char* from + ptr @.TypeMapEntry.10579_from; char* to + }, ; 5391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10575_to, ; char* from + ptr @.TypeMapEntry.10574_from; char* to + }, ; 5392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10577_to, ; char* from + ptr null; char* to + }, ; 5393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10577_to, ; char* from + ptr null; char* to + }, ; 5394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10595_to, ; char* from + ptr @.TypeMapEntry.10594_from; char* to + }, ; 5395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10582_to, ; char* from + ptr null; char* to + }, ; 5396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10582_to, ; char* from + ptr null; char* to + }, ; 5397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10585_to, ; char* from + ptr null; char* to + }, ; 5398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10585_to, ; char* from + ptr null; char* to + }, ; 5399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10590_to, ; char* from + ptr null; char* to + }, ; 5400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10590_to, ; char* from + ptr null; char* to + }, ; 5401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10597_to, ; char* from + ptr @.TypeMapEntry.10596_from; char* to + }, ; 5402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10609_to, ; char* from + ptr @.TypeMapEntry.10608_from; char* to + }, ; 5403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10599_to, ; char* from + ptr null; char* to + }, ; 5404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10599_to, ; char* from + ptr null; char* to + }, ; 5405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10604_to, ; char* from + ptr null; char* to + }, ; 5406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10604_to, ; char* from + ptr null; char* to + }, ; 5407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10616_to, ; char* from + ptr @.TypeMapEntry.10615_from; char* to + }, ; 5408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10611_to, ; char* from + ptr null; char* to + }, ; 5409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10611_to, ; char* from + ptr null; char* to + }, ; 5410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10618_to, ; char* from + ptr @.TypeMapEntry.10617_from; char* to + }, ; 5411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10620_to, ; char* from + ptr @.TypeMapEntry.10619_from; char* to + }, ; 5412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10622_to, ; char* from + ptr @.TypeMapEntry.10621_from; char* to + }, ; 5413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10631_to, ; char* from + ptr @.TypeMapEntry.10630_from; char* to + }, ; 5414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10629_to, ; char* from + ptr @.TypeMapEntry.10628_from; char* to + }, ; 5415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10624_to, ; char* from + ptr null; char* to + }, ; 5416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10624_to, ; char* from + ptr null; char* to + }, ; 5417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10638_to, ; char* from + ptr @.TypeMapEntry.10637_from; char* to + }, ; 5418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10633_to, ; char* from + ptr null; char* to + }, ; 5419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10633_to, ; char* from + ptr null; char* to + }, ; 5420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10642_to, ; char* from + ptr @.TypeMapEntry.10641_from; char* to + }, ; 5421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10640_to, ; char* from + ptr @.TypeMapEntry.10639_from; char* to + }, ; 5422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10661_to, ; char* from + ptr @.TypeMapEntry.10660_from; char* to + }, ; 5423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10644_to, ; char* from + ptr @.TypeMapEntry.10643_from; char* to + }, ; 5424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10648_to, ; char* from + ptr @.TypeMapEntry.10647_from; char* to + }, ; 5425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10646_to, ; char* from + ptr @.TypeMapEntry.10645_from; char* to + }, ; 5426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10652_to, ; char* from + ptr @.TypeMapEntry.10651_from; char* to + }, ; 5427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10650_to, ; char* from + ptr @.TypeMapEntry.10649_from; char* to + }, ; 5428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10654_to, ; char* from + ptr @.TypeMapEntry.10653_from; char* to + }, ; 5429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10656_to, ; char* from + ptr @.TypeMapEntry.10655_from; char* to + }, ; 5430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10656_to, ; char* from + ptr @.TypeMapEntry.10655_from; char* to + }, ; 5431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10659_to, ; char* from + ptr @.TypeMapEntry.10658_from; char* to + }, ; 5432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10666_to, ; char* from + ptr @.TypeMapEntry.10665_from; char* to + }, ; 5433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10666_to, ; char* from + ptr @.TypeMapEntry.10665_from; char* to + }, ; 5434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10663_to, ; char* from + ptr null; char* to + }, ; 5435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10663_to, ; char* from + ptr null; char* to + }, ; 5436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10669_to, ; char* from + ptr @.TypeMapEntry.10668_from; char* to + }, ; 5437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10669_to, ; char* from + ptr @.TypeMapEntry.10668_from; char* to + }, ; 5438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10672_to, ; char* from + ptr @.TypeMapEntry.10671_from; char* to + }, ; 5439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10672_to, ; char* from + ptr @.TypeMapEntry.10671_from; char* to + }, ; 5440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10675_to, ; char* from + ptr @.TypeMapEntry.10674_from; char* to + }, ; 5441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10677_to, ; char* from + ptr @.TypeMapEntry.10676_from; char* to + }, ; 5442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10694_to, ; char* from + ptr @.TypeMapEntry.10693_from; char* to + }, ; 5443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10679_to, ; char* from + ptr null; char* to + }, ; 5444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10679_to, ; char* from + ptr null; char* to + }, ; 5445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10684_to, ; char* from + ptr null; char* to + }, ; 5446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10684_to, ; char* from + ptr null; char* to + }, ; 5447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10689_to, ; char* from + ptr null; char* to + }, ; 5448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10689_to, ; char* from + ptr null; char* to + }, ; 5449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10527_to, ; char* from + ptr null; char* to + }, ; 5450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10527_to, ; char* from + ptr null; char* to + }, ; 5451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10701_to, ; char* from + ptr @.TypeMapEntry.10700_from; char* to + }, ; 5452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10696_to, ; char* from + ptr null; char* to + }, ; 5453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10696_to, ; char* from + ptr null; char* to + }, ; 5454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10708_to, ; char* from + ptr @.TypeMapEntry.10707_from; char* to + }, ; 5455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10703_to, ; char* from + ptr null; char* to + }, ; 5456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10703_to, ; char* from + ptr null; char* to + }, ; 5457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10713_to, ; char* from + ptr @.TypeMapEntry.10712_from; char* to + }, ; 5458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10710_to, ; char* from + ptr null; char* to + }, ; 5459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10710_to, ; char* from + ptr null; char* to + }, ; 5460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10721_to, ; char* from + ptr @.TypeMapEntry.10720_from; char* to + }, ; 5461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10715_to, ; char* from + ptr null; char* to + }, ; 5462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10715_to, ; char* from + ptr null; char* to + }, ; 5463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10718_to, ; char* from + ptr null; char* to + }, ; 5464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10718_to, ; char* from + ptr null; char* to + }, ; 5465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10726_to, ; char* from + ptr @.TypeMapEntry.10725_from; char* to + }, ; 5466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10726_to, ; char* from + ptr @.TypeMapEntry.10725_from; char* to + }, ; 5467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10723_to, ; char* from + ptr null; char* to + }, ; 5468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10723_to, ; char* from + ptr null; char* to + }, ; 5469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10729_to, ; char* from + ptr @.TypeMapEntry.10728_from; char* to + }, ; 5470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10746_to, ; char* from + ptr @.TypeMapEntry.10745_from; char* to + }, ; 5471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10731_to, ; char* from + ptr null; char* to + }, ; 5472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10731_to, ; char* from + ptr null; char* to + }, ; 5473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10736_to, ; char* from + ptr null; char* to + }, ; 5474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10736_to, ; char* from + ptr null; char* to + }, ; 5475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10741_to, ; char* from + ptr null; char* to + }, ; 5476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10741_to, ; char* from + ptr null; char* to + }, ; 5477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10748_to, ; char* from + ptr @.TypeMapEntry.10747_from; char* to + }, ; 5478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10750_to, ; char* from + ptr @.TypeMapEntry.10749_from; char* to + }, ; 5479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10530_to, ; char* from + ptr null; char* to + }, ; 5480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10530_to, ; char* from + ptr null; char* to + }, ; 5481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10752_to, ; char* from + ptr @.TypeMapEntry.10751_from; char* to + }, ; 5482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10754_to, ; char* from + ptr @.TypeMapEntry.10753_from; char* to + }, ; 5483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10766_to, ; char* from + ptr @.TypeMapEntry.10765_from; char* to + }, ; 5484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10756_to, ; char* from + ptr null; char* to + }, ; 5485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10756_to, ; char* from + ptr null; char* to + }, ; 5486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10761_to, ; char* from + ptr null; char* to + }, ; 5487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10761_to, ; char* from + ptr null; char* to + }, ; 5488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10764_to, ; char* from + ptr @.TypeMapEntry.10763_from; char* to + }, ; 5489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10768_to, ; char* from + ptr @.TypeMapEntry.10767_from; char* to + }, ; 5490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10772_to, ; char* from + ptr @.TypeMapEntry.10771_from; char* to + }, ; 5491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10770_to, ; char* from + ptr @.TypeMapEntry.10769_from; char* to + }, ; 5492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10776_to, ; char* from + ptr @.TypeMapEntry.10775_from; char* to + }, ; 5493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10774_to, ; char* from + ptr @.TypeMapEntry.10773_from; char* to + }, ; 5494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10778_to, ; char* from + ptr @.TypeMapEntry.10777_from; char* to + }, ; 5495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10780_to, ; char* from + ptr @.TypeMapEntry.10779_from; char* to + }, ; 5496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10791_to, ; char* from + ptr @.TypeMapEntry.10790_from; char* to + }, ; 5497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10782_to, ; char* from + ptr @.TypeMapEntry.10781_from; char* to + }, ; 5498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10784_to, ; char* from + ptr null; char* to + }, ; 5499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10784_to, ; char* from + ptr null; char* to + }, ; 5500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10789_to, ; char* from + ptr @.TypeMapEntry.10788_from; char* to + }, ; 5501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10533_to, ; char* from + ptr null; char* to + }, ; 5502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10533_to, ; char* from + ptr null; char* to + }, ; 5503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10798_to, ; char* from + ptr @.TypeMapEntry.10797_from; char* to + }, ; 5504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10793_to, ; char* from + ptr null; char* to + }, ; 5505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10793_to, ; char* from + ptr null; char* to + }, ; 5506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10803_to, ; char* from + ptr @.TypeMapEntry.10802_from; char* to + }, ; 5507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10800_to, ; char* from + ptr @.TypeMapEntry.10799_from; char* to + }, ; 5508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10800_to, ; char* from + ptr @.TypeMapEntry.10799_from; char* to + }, ; 5509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10805_to, ; char* from + ptr @.TypeMapEntry.10804_from; char* to + }, ; 5510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10814_to, ; char* from + ptr @.TypeMapEntry.10813_from; char* to + }, ; 5511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10812_to, ; char* from + ptr @.TypeMapEntry.10811_from; char* to + }, ; 5512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10807_to, ; char* from + ptr null; char* to + }, ; 5513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10807_to, ; char* from + ptr null; char* to + }, ; 5514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10816_to, ; char* from + ptr @.TypeMapEntry.10815_from; char* to + }, ; 5515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10818_to, ; char* from + ptr @.TypeMapEntry.10817_from; char* to + }, ; 5516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10820_to, ; char* from + ptr @.TypeMapEntry.10819_from; char* to + }, ; 5517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10822_to, ; char* from + ptr @.TypeMapEntry.10821_from; char* to + }, ; 5518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10827_to, ; char* from + ptr @.TypeMapEntry.10826_from; char* to + }, ; 5519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10824_to, ; char* from + ptr null; char* to + }, ; 5520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10824_to, ; char* from + ptr null; char* to + }, ; 5521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10536_to, ; char* from + ptr null; char* to + }, ; 5522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10536_to, ; char* from + ptr null; char* to + }, ; 5523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10829_to, ; char* from + ptr @.TypeMapEntry.10828_from; char* to + }, ; 5524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10836_to, ; char* from + ptr @.TypeMapEntry.10835_from; char* to + }, ; 5525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10831_to, ; char* from + ptr null; char* to + }, ; 5526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10831_to, ; char* from + ptr null; char* to + }, ; 5527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10838_to, ; char* from + ptr @.TypeMapEntry.10837_from; char* to + }, ; 5528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10550_to, ; char* from + ptr @.TypeMapEntry.10549_from; char* to + }, ; 5529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10547_to, ; char* from + ptr null; char* to + }, ; 5530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10547_to, ; char* from + ptr null; char* to + }, ; 5531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10554_to, ; char* from + ptr @.TypeMapEntry.10553_from; char* to + }, ; 5532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10552_to, ; char* from + ptr @.TypeMapEntry.10551_from; char* to + }, ; 5533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10840_to, ; char* from + ptr @.TypeMapEntry.10839_from; char* to + }, ; 5534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10859_to, ; char* from + ptr @.TypeMapEntry.10858_from; char* to + }, ; 5535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10842_to, ; char* from + ptr null; char* to + }, ; 5536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10842_to, ; char* from + ptr null; char* to + }, ; 5537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10845_to, ; char* from + ptr null; char* to + }, ; 5538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10845_to, ; char* from + ptr null; char* to + }, ; 5539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10848_to, ; char* from + ptr null; char* to + }, ; 5540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10848_to, ; char* from + ptr null; char* to + }, ; 5541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10851_to, ; char* from + ptr null; char* to + }, ; 5542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10851_to, ; char* from + ptr null; char* to + }, ; 5543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10854_to, ; char* from + ptr null; char* to + }, ; 5544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10854_to, ; char* from + ptr null; char* to + }, ; 5545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10863_to, ; char* from + ptr @.TypeMapEntry.10862_from; char* to + }, ; 5546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10865_to, ; char* from + ptr @.TypeMapEntry.10864_from; char* to + }, ; 5547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10867_to, ; char* from + ptr @.TypeMapEntry.10866_from; char* to + }, ; 5548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10869_to, ; char* from + ptr @.TypeMapEntry.10868_from; char* to + }, ; 5549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10876_to, ; char* from + ptr @.TypeMapEntry.10875_from; char* to + }, ; 5550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10871_to, ; char* from + ptr @.TypeMapEntry.10870_from; char* to + }, ; 5551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10873_to, ; char* from + ptr null; char* to + }, ; 5552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10873_to, ; char* from + ptr null; char* to + }, ; 5553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10880_to, ; char* from + ptr @.TypeMapEntry.10879_from; char* to + }, ; 5554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10878_to, ; char* from + ptr @.TypeMapEntry.10877_from; char* to + }, ; 5555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10882_to, ; char* from + ptr @.TypeMapEntry.10881_from; char* to + }, ; 5556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10896_to, ; char* from + ptr @.TypeMapEntry.10895_from; char* to + }, ; 5557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10898_to, ; char* from + ptr @.TypeMapEntry.10897_from; char* to + }, ; 5558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10900_to, ; char* from + ptr @.TypeMapEntry.10899_from; char* to + }, ; 5559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10902_to, ; char* from + ptr null; char* to + }, ; 5560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10902_to, ; char* from + ptr null; char* to + }, ; 5561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10908_to, ; char* from + ptr @.TypeMapEntry.10907_from; char* to + }, ; 5562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10908_to, ; char* from + ptr @.TypeMapEntry.10907_from; char* to + }, ; 5563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10911_to, ; char* from + ptr @.TypeMapEntry.10910_from; char* to + }, ; 5564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10913_to, ; char* from + ptr @.TypeMapEntry.10912_from; char* to + }, ; 5565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10905_to, ; char* from + ptr null; char* to + }, ; 5566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10905_to, ; char* from + ptr null; char* to + }, ; 5567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10915_to, ; char* from + ptr @.TypeMapEntry.10914_from; char* to + }, ; 5568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11023_to, ; char* from + ptr @.TypeMapEntry.11022_from; char* to + }, ; 5569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11021_to, ; char* from + ptr @.TypeMapEntry.11020_from; char* to + }, ; 5570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11025_to, ; char* from + ptr @.TypeMapEntry.11024_from; char* to + }, ; 5571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11027_to, ; char* from + ptr @.TypeMapEntry.11026_from; char* to + }, ; 5572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10888_to, ; char* from + ptr null; char* to + }, ; 5573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10888_to, ; char* from + ptr null; char* to + }, ; 5574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10884_to, ; char* from + ptr @.TypeMapEntry.10883_from; char* to + }, ; 5575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10886_to, ; char* from + ptr @.TypeMapEntry.10885_from; char* to + }, ; 5576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10891_to, ; char* from + ptr null; char* to + }, ; 5577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10891_to, ; char* from + ptr null; char* to + }, ; 5578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10919_to, ; char* from + ptr @.TypeMapEntry.10918_from; char* to + }, ; 5579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10917_to, ; char* from + ptr @.TypeMapEntry.10916_from; char* to + }, ; 5580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11000_to, ; char* from + ptr null; char* to + }, ; 5581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11000_to, ; char* from + ptr null; char* to + }, ; 5582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11003_to, ; char* from + ptr null; char* to + }, ; 5583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11003_to, ; char* from + ptr null; char* to + }, ; 5584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10921_to, ; char* from + ptr @.TypeMapEntry.10920_from; char* to + }, ; 5585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10923_to, ; char* from + ptr @.TypeMapEntry.10922_from; char* to + }, ; 5586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10925_to, ; char* from + ptr @.TypeMapEntry.10924_from; char* to + }, ; 5587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10925_to, ; char* from + ptr @.TypeMapEntry.10924_from; char* to + }, ; 5588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10928_to, ; char* from + ptr @.TypeMapEntry.10927_from; char* to + }, ; 5589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10930_to, ; char* from + ptr @.TypeMapEntry.10929_from; char* to + }, ; 5590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10930_to, ; char* from + ptr @.TypeMapEntry.10929_from; char* to + }, ; 5591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11006_to, ; char* from + ptr null; char* to + }, ; 5592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11006_to, ; char* from + ptr null; char* to + }, ; 5593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11013_to, ; char* from + ptr @.TypeMapEntry.11012_from; char* to + }, ; 5594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11009_to, ; char* from + ptr @.TypeMapEntry.11008_from; char* to + }, ; 5595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11011_to, ; char* from + ptr @.TypeMapEntry.11010_from; char* to + }, ; 5596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11017_to, ; char* from + ptr @.TypeMapEntry.11016_from; char* to + }, ; 5597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11015_to, ; char* from + ptr @.TypeMapEntry.11014_from; char* to + }, ; 5598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11019_to, ; char* from + ptr @.TypeMapEntry.11018_from; char* to + }, ; 5599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10935_to, ; char* from + ptr @.TypeMapEntry.10934_from; char* to + }, ; 5600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10935_to, ; char* from + ptr @.TypeMapEntry.10934_from; char* to + }, ; 5601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10933_to, ; char* from + ptr @.TypeMapEntry.10932_from; char* to + }, ; 5602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10998_to, ; char* from + ptr @.TypeMapEntry.10997_from; char* to + }, ; 5603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10938_to, ; char* from + ptr @.TypeMapEntry.10937_from; char* to + }, ; 5604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10940_to, ; char* from + ptr @.TypeMapEntry.10939_from; char* to + }, ; 5605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10942_to, ; char* from + ptr @.TypeMapEntry.10941_from; char* to + }, ; 5606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10944_to, ; char* from + ptr @.TypeMapEntry.10943_from; char* to + }, ; 5607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10946_to, ; char* from + ptr @.TypeMapEntry.10945_from; char* to + }, ; 5608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10948_to, ; char* from + ptr @.TypeMapEntry.10947_from; char* to + }, ; 5609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10950_to, ; char* from + ptr @.TypeMapEntry.10949_from; char* to + }, ; 5610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10952_to, ; char* from + ptr @.TypeMapEntry.10951_from; char* to + }, ; 5611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10954_to, ; char* from + ptr @.TypeMapEntry.10953_from; char* to + }, ; 5612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10976_to, ; char* from + ptr @.TypeMapEntry.10975_from; char* to + }, ; 5613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10956_to, ; char* from + ptr @.TypeMapEntry.10955_from; char* to + }, ; 5614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10962_to, ; char* from + ptr @.TypeMapEntry.10961_from; char* to + }, ; 5615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10962_to, ; char* from + ptr @.TypeMapEntry.10961_from; char* to + }, ; 5616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10958_to, ; char* from + ptr @.TypeMapEntry.10957_from; char* to + }, ; 5617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10960_to, ; char* from + ptr @.TypeMapEntry.10959_from; char* to + }, ; 5618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10968_to, ; char* from + ptr @.TypeMapEntry.10967_from; char* to + }, ; 5619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10970_to, ; char* from + ptr @.TypeMapEntry.10969_from; char* to + }, ; 5620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10972_to, ; char* from + ptr @.TypeMapEntry.10971_from; char* to + }, ; 5621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10974_to, ; char* from + ptr @.TypeMapEntry.10973_from; char* to + }, ; 5622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10965_to, ; char* from + ptr null; char* to + }, ; 5623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10965_to, ; char* from + ptr null; char* to + }, ; 5624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10980_to, ; char* from + ptr @.TypeMapEntry.10979_from; char* to + }, ; 5625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10978_to, ; char* from + ptr @.TypeMapEntry.10977_from; char* to + }, ; 5626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10982_to, ; char* from + ptr @.TypeMapEntry.10981_from; char* to + }, ; 5627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10986_to, ; char* from + ptr @.TypeMapEntry.10985_from; char* to + }, ; 5628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10984_to, ; char* from + ptr @.TypeMapEntry.10983_from; char* to + }, ; 5629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10990_to, ; char* from + ptr @.TypeMapEntry.10989_from; char* to + }, ; 5630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10988_to, ; char* from + ptr @.TypeMapEntry.10987_from; char* to + }, ; 5631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10992_to, ; char* from + ptr @.TypeMapEntry.10991_from; char* to + }, ; 5632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10994_to, ; char* from + ptr @.TypeMapEntry.10993_from; char* to + }, ; 5633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10996_to, ; char* from + ptr @.TypeMapEntry.10995_from; char* to + }, ; 5634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11042_to, ; char* from + ptr null; char* to + }, ; 5635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11042_to, ; char* from + ptr null; char* to + }, ; 5636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11045_to, ; char* from + ptr null; char* to + }, ; 5637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11045_to, ; char* from + ptr null; char* to + }, ; 5638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11048_to, ; char* from + ptr null; char* to + }, ; 5639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11048_to, ; char* from + ptr null; char* to + }, ; 5640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11051_to, ; char* from + ptr null; char* to + }, ; 5641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11051_to, ; char* from + ptr null; char* to + }, ; 5642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11054_to, ; char* from + ptr null; char* to + }, ; 5643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11054_to, ; char* from + ptr null; char* to + }, ; 5644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11057_to, ; char* from + ptr null; char* to + }, ; 5645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11057_to, ; char* from + ptr null; char* to + }, ; 5646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11060_to, ; char* from + ptr null; char* to + }, ; 5647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11060_to, ; char* from + ptr null; char* to + }, ; 5648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11063_to, ; char* from + ptr null; char* to + }, ; 5649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11063_to, ; char* from + ptr null; char* to + }, ; 5650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11066_to, ; char* from + ptr null; char* to + }, ; 5651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11066_to, ; char* from + ptr null; char* to + }, ; 5652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11069_to, ; char* from + ptr null; char* to + }, ; 5653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11069_to, ; char* from + ptr null; char* to + }, ; 5654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11072_to, ; char* from + ptr null; char* to + }, ; 5655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11072_to, ; char* from + ptr null; char* to + }, ; 5656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11075_to, ; char* from + ptr null; char* to + }, ; 5657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11075_to, ; char* from + ptr null; char* to + }, ; 5658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11078_to, ; char* from + ptr null; char* to + }, ; 5659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11078_to, ; char* from + ptr null; char* to + }, ; 5660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11081_to, ; char* from + ptr null; char* to + }, ; 5661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11081_to, ; char* from + ptr null; char* to + }, ; 5662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11084_to, ; char* from + ptr null; char* to + }, ; 5663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11084_to, ; char* from + ptr null; char* to + }, ; 5664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11087_to, ; char* from + ptr null; char* to + }, ; 5665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11087_to, ; char* from + ptr null; char* to + }, ; 5666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11090_to, ; char* from + ptr null; char* to + }, ; 5667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11090_to, ; char* from + ptr null; char* to + }, ; 5668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11029_to, ; char* from + ptr @.TypeMapEntry.11028_from; char* to + }, ; 5669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11029_to, ; char* from + ptr @.TypeMapEntry.11028_from; char* to + }, ; 5670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11029_to, ; char* from + ptr @.TypeMapEntry.11028_from; char* to + }, ; 5671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11029_to, ; char* from + ptr @.TypeMapEntry.11028_from; char* to + }, ; 5672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11031_to, ; char* from + ptr @.TypeMapEntry.11030_from; char* to + }, ; 5673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11095_to, ; char* from + ptr null; char* to + }, ; 5674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11095_to, ; char* from + ptr null; char* to + }, ; 5675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11098_to, ; char* from + ptr null; char* to + }, ; 5676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11098_to, ; char* from + ptr null; char* to + }, ; 5677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11101_to, ; char* from + ptr null; char* to + }, ; 5678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11101_to, ; char* from + ptr null; char* to + }, ; 5679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11104_to, ; char* from + ptr null; char* to + }, ; 5680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11104_to, ; char* from + ptr null; char* to + }, ; 5681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11107_to, ; char* from + ptr null; char* to + }, ; 5682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11107_to, ; char* from + ptr null; char* to + }, ; 5683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11110_to, ; char* from + ptr null; char* to + }, ; 5684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11110_to, ; char* from + ptr null; char* to + }, ; 5685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11113_to, ; char* from + ptr null; char* to + }, ; 5686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11113_to, ; char* from + ptr null; char* to + }, ; 5687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11116_to, ; char* from + ptr null; char* to + }, ; 5688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11116_to, ; char* from + ptr null; char* to + }, ; 5689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11119_to, ; char* from + ptr null; char* to + }, ; 5690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11119_to, ; char* from + ptr null; char* to + }, ; 5691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11122_to, ; char* from + ptr null; char* to + }, ; 5692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11122_to, ; char* from + ptr null; char* to + }, ; 5693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11125_to, ; char* from + ptr null; char* to + }, ; 5694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11125_to, ; char* from + ptr null; char* to + }, ; 5695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11128_to, ; char* from + ptr null; char* to + }, ; 5696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11128_to, ; char* from + ptr null; char* to + }, ; 5697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11131_to, ; char* from + ptr null; char* to + }, ; 5698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11131_to, ; char* from + ptr null; char* to + }, ; 5699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11133_to, ; char* from + ptr null; char* to + }, ; 5700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11133_to, ; char* from + ptr null; char* to + }, ; 5701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11136_to, ; char* from + ptr null; char* to + }, ; 5702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11136_to, ; char* from + ptr null; char* to + }, ; 5703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11260_to, ; char* from + ptr @.TypeMapEntry.11259_from; char* to + }, ; 5704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11140_to, ; char* from + ptr null; char* to + }, ; 5705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11140_to, ; char* from + ptr null; char* to + }, ; 5706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11143_to, ; char* from + ptr null; char* to + }, ; 5707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11143_to, ; char* from + ptr null; char* to + }, ; 5708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11146_to, ; char* from + ptr null; char* to + }, ; 5709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11146_to, ; char* from + ptr null; char* to + }, ; 5710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11149_to, ; char* from + ptr null; char* to + }, ; 5711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11149_to, ; char* from + ptr null; char* to + }, ; 5712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11152_to, ; char* from + ptr null; char* to + }, ; 5713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11152_to, ; char* from + ptr null; char* to + }, ; 5714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11155_to, ; char* from + ptr null; char* to + }, ; 5715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11155_to, ; char* from + ptr null; char* to + }, ; 5716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11158_to, ; char* from + ptr null; char* to + }, ; 5717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11158_to, ; char* from + ptr null; char* to + }, ; 5718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11161_to, ; char* from + ptr null; char* to + }, ; 5719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11161_to, ; char* from + ptr null; char* to + }, ; 5720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11164_to, ; char* from + ptr null; char* to + }, ; 5721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11164_to, ; char* from + ptr null; char* to + }, ; 5722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11167_to, ; char* from + ptr null; char* to + }, ; 5723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11167_to, ; char* from + ptr null; char* to + }, ; 5724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11170_to, ; char* from + ptr null; char* to + }, ; 5725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11170_to, ; char* from + ptr null; char* to + }, ; 5726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11173_to, ; char* from + ptr null; char* to + }, ; 5727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11173_to, ; char* from + ptr null; char* to + }, ; 5728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11176_to, ; char* from + ptr null; char* to + }, ; 5729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11176_to, ; char* from + ptr null; char* to + }, ; 5730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11179_to, ; char* from + ptr null; char* to + }, ; 5731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11179_to, ; char* from + ptr null; char* to + }, ; 5732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11182_to, ; char* from + ptr null; char* to + }, ; 5733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11182_to, ; char* from + ptr null; char* to + }, ; 5734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11185_to, ; char* from + ptr null; char* to + }, ; 5735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11185_to, ; char* from + ptr null; char* to + }, ; 5736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11188_to, ; char* from + ptr null; char* to + }, ; 5737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11188_to, ; char* from + ptr null; char* to + }, ; 5738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11191_to, ; char* from + ptr null; char* to + }, ; 5739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11191_to, ; char* from + ptr null; char* to + }, ; 5740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11194_to, ; char* from + ptr null; char* to + }, ; 5741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11194_to, ; char* from + ptr null; char* to + }, ; 5742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11197_to, ; char* from + ptr null; char* to + }, ; 5743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11197_to, ; char* from + ptr null; char* to + }, ; 5744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11200_to, ; char* from + ptr null; char* to + }, ; 5745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11200_to, ; char* from + ptr null; char* to + }, ; 5746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11202_to, ; char* from + ptr null; char* to + }, ; 5747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11202_to, ; char* from + ptr null; char* to + }, ; 5748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11206_to, ; char* from + ptr null; char* to + }, ; 5749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11206_to, ; char* from + ptr null; char* to + }, ; 5750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11209_to, ; char* from + ptr null; char* to + }, ; 5751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11209_to, ; char* from + ptr null; char* to + }, ; 5752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11262_to, ; char* from + ptr @.TypeMapEntry.11261_from; char* to + }, ; 5753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11212_to, ; char* from + ptr null; char* to + }, ; 5754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11212_to, ; char* from + ptr null; char* to + }, ; 5755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11215_to, ; char* from + ptr null; char* to + }, ; 5756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11215_to, ; char* from + ptr null; char* to + }, ; 5757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11218_to, ; char* from + ptr null; char* to + }, ; 5758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11218_to, ; char* from + ptr null; char* to + }, ; 5759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11221_to, ; char* from + ptr null; char* to + }, ; 5760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11221_to, ; char* from + ptr null; char* to + }, ; 5761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11264_to, ; char* from + ptr @.TypeMapEntry.11263_from; char* to + }, ; 5762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11224_to, ; char* from + ptr null; char* to + }, ; 5763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11224_to, ; char* from + ptr null; char* to + }, ; 5764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11227_to, ; char* from + ptr null; char* to + }, ; 5765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11227_to, ; char* from + ptr null; char* to + }, ; 5766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11230_to, ; char* from + ptr null; char* to + }, ; 5767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11230_to, ; char* from + ptr null; char* to + }, ; 5768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11233_to, ; char* from + ptr null; char* to + }, ; 5769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11233_to, ; char* from + ptr null; char* to + }, ; 5770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11236_to, ; char* from + ptr null; char* to + }, ; 5771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11236_to, ; char* from + ptr null; char* to + }, ; 5772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11239_to, ; char* from + ptr null; char* to + }, ; 5773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11239_to, ; char* from + ptr null; char* to + }, ; 5774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11242_to, ; char* from + ptr null; char* to + }, ; 5775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11242_to, ; char* from + ptr null; char* to + }, ; 5776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11245_to, ; char* from + ptr null; char* to + }, ; 5777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11245_to, ; char* from + ptr null; char* to + }, ; 5778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11248_to, ; char* from + ptr null; char* to + }, ; 5779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11248_to, ; char* from + ptr null; char* to + }, ; 5780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11251_to, ; char* from + ptr @.TypeMapEntry.11265_from; char* to + }, ; 5781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11251_to, ; char* from + ptr @.TypeMapEntry.11265_from; char* to + }, ; 5782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11251_to, ; char* from + ptr @.TypeMapEntry.11265_from; char* to + }, ; 5783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11251_to, ; char* from + ptr @.TypeMapEntry.11265_from; char* to + }, ; 5784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11267_to, ; char* from + ptr @.TypeMapEntry.11266_from; char* to + }, ; 5785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11254_to, ; char* from + ptr null; char* to + }, ; 5786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11254_to, ; char* from + ptr null; char* to + }, ; 5787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11257_to, ; char* from + ptr null; char* to + }, ; 5788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11257_to, ; char* from + ptr null; char* to + }, ; 5789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11036_to, ; char* from + ptr null; char* to + }, ; 5790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11036_to, ; char* from + ptr null; char* to + }, ; 5791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11034_to, ; char* from + ptr @.TypeMapEntry.11033_from; char* to + }, ; 5792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11039_to, ; char* from + ptr null; char* to + }, ; 5793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11039_to, ; char* from + ptr null; char* to + }, ; 5794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11296_to, ; char* from + ptr @.TypeMapEntry.11295_from; char* to + }, ; 5795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11296_to, ; char* from + ptr @.TypeMapEntry.11295_from; char* to + }, ; 5796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11270_to, ; char* from + ptr null; char* to + }, ; 5797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11270_to, ; char* from + ptr null; char* to + }, ; 5798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11291_to, ; char* from + ptr @.TypeMapEntry.11290_from; char* to + }, ; 5799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11273_to, ; char* from + ptr null; char* to + }, ; 5800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11273_to, ; char* from + ptr null; char* to + }, ; 5801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11276_to, ; char* from + ptr null; char* to + }, ; 5802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11276_to, ; char* from + ptr null; char* to + }, ; 5803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11281_to, ; char* from + ptr null; char* to + }, ; 5804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11281_to, ; char* from + ptr null; char* to + }, ; 5805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11293_to, ; char* from + ptr @.TypeMapEntry.11292_from; char* to + }, ; 5806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11293_to, ; char* from + ptr @.TypeMapEntry.11292_from; char* to + }, ; 5807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11286_to, ; char* from + ptr null; char* to + }, ; 5808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11286_to, ; char* from + ptr null; char* to + }, ; 5809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11304_to, ; char* from + ptr @.TypeMapEntry.11303_from; char* to + }, ; 5810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11298_to, ; char* from + ptr null; char* to + }, ; 5811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11298_to, ; char* from + ptr null; char* to + }, ; 5812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11301_to, ; char* from + ptr null; char* to + }, ; 5813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11301_to, ; char* from + ptr null; char* to + }, ; 5814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11315_to, ; char* from + ptr @.TypeMapEntry.11314_from; char* to + }, ; 5815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11307_to, ; char* from + ptr @.TypeMapEntry.11306_from; char* to + }, ; 5816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11309_to, ; char* from + ptr @.TypeMapEntry.11308_from; char* to + }, ; 5817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11311_to, ; char* from + ptr @.TypeMapEntry.11310_from; char* to + }, ; 5818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11313_to, ; char* from + ptr @.TypeMapEntry.11312_from; char* to + }, ; 5819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11317_to, ; char* from + ptr @.TypeMapEntry.11316_from; char* to + }, ; 5820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11333_to, ; char* from + ptr null; char* to + }, ; 5821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11333_to, ; char* from + ptr null; char* to + }, ; 5822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11322_to, ; char* from + ptr @.TypeMapEntry.11321_from; char* to + }, ; 5823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11322_to, ; char* from + ptr @.TypeMapEntry.11321_from; char* to + }, ; 5824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11319_to, ; char* from + ptr null; char* to + }, ; 5825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11319_to, ; char* from + ptr null; char* to + }, ; 5826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11325_to, ; char* from + ptr @.TypeMapEntry.11324_from; char* to + }, ; 5827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11327_to, ; char* from + ptr @.TypeMapEntry.11326_from; char* to + }, ; 5828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11329_to, ; char* from + ptr @.TypeMapEntry.11328_from; char* to + }, ; 5829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11331_to, ; char* from + ptr @.TypeMapEntry.11330_from; char* to + }, ; 5830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11340_to, ; char* from + ptr @.TypeMapEntry.11339_from; char* to + }, ; 5831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11336_to, ; char* from + ptr @.TypeMapEntry.11335_from; char* to + }, ; 5832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11338_to, ; char* from + ptr @.TypeMapEntry.11337_from; char* to + }, ; 5833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11342_to, ; char* from + ptr @.TypeMapEntry.11341_from; char* to + }, ; 5834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11344_to, ; char* from + ptr @.TypeMapEntry.11343_from; char* to + }, ; 5835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11348_to, ; char* from + ptr @.TypeMapEntry.11347_from; char* to + }, ; 5836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11352_to, ; char* from + ptr @.TypeMapEntry.11351_from; char* to + }, ; 5837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11357_to, ; char* from + ptr @.TypeMapEntry.11356_from; char* to + }, ; 5838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11354_to, ; char* from + ptr null; char* to + }, ; 5839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11354_to, ; char* from + ptr null; char* to + }, ; 5840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11359_to, ; char* from + ptr @.TypeMapEntry.11358_from; char* to + }, ; 5841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11361_to, ; char* from + ptr @.TypeMapEntry.11360_from; char* to + }, ; 5842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11363_to, ; char* from + ptr @.TypeMapEntry.11362_from; char* to + }, ; 5843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11365_to, ; char* from + ptr @.TypeMapEntry.11364_from; char* to + }, ; 5844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11370_to, ; char* from + ptr @.TypeMapEntry.11369_from; char* to + }, ; 5845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11370_to, ; char* from + ptr @.TypeMapEntry.11369_from; char* to + }, ; 5846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11367_to, ; char* from + ptr null; char* to + }, ; 5847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11367_to, ; char* from + ptr null; char* to + }, ; 5848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11375_to, ; char* from + ptr null; char* to + }, ; 5849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11375_to, ; char* from + ptr null; char* to + }, ; 5850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11373_to, ; char* from + ptr @.TypeMapEntry.11372_from; char* to + }, ; 5851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11430_to, ; char* from + ptr @.TypeMapEntry.11429_from; char* to + }, ; 5852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11434_to, ; char* from + ptr @.TypeMapEntry.11433_from; char* to + }, ; 5853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11432_to, ; char* from + ptr @.TypeMapEntry.11431_from; char* to + }, ; 5854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11436_to, ; char* from + ptr @.TypeMapEntry.11435_from; char* to + }, ; 5855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11438_to, ; char* from + ptr @.TypeMapEntry.11437_from; char* to + }, ; 5856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11440_to, ; char* from + ptr @.TypeMapEntry.11439_from; char* to + }, ; 5857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11378_to, ; char* from + ptr @.TypeMapEntry.11377_from; char* to + }, ; 5858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11383_to, ; char* from + ptr @.TypeMapEntry.11382_from; char* to + }, ; 5859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11380_to, ; char* from + ptr @.TypeMapEntry.11379_from; char* to + }, ; 5860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11380_to, ; char* from + ptr @.TypeMapEntry.11379_from; char* to + }, ; 5861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11385_to, ; char* from + ptr @.TypeMapEntry.11384_from; char* to + }, ; 5862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11385_to, ; char* from + ptr @.TypeMapEntry.11384_from; char* to + }, ; 5863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11388_to, ; char* from + ptr @.TypeMapEntry.11387_from; char* to + }, ; 5864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11405_to, ; char* from + ptr @.TypeMapEntry.11404_from; char* to + }, ; 5865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11407_to, ; char* from + ptr @.TypeMapEntry.11406_from; char* to + }, ; 5866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11409_to, ; char* from + ptr @.TypeMapEntry.11408_from; char* to + }, ; 5867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11417_to, ; char* from + ptr @.TypeMapEntry.11416_from; char* to + }, ; 5868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11411_to, ; char* from + ptr null; char* to + }, ; 5869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11411_to, ; char* from + ptr null; char* to + }, ; 5870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11414_to, ; char* from + ptr null; char* to + }, ; 5871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11414_to, ; char* from + ptr null; char* to + }, ; 5872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11419_to, ; char* from + ptr @.TypeMapEntry.11418_from; char* to + }, ; 5873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11421_to, ; char* from + ptr @.TypeMapEntry.11420_from; char* to + }, ; 5874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11421_to, ; char* from + ptr @.TypeMapEntry.11420_from; char* to + }, ; 5875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11423_to, ; char* from + ptr @.TypeMapEntry.11422_from; char* to + }, ; 5876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11390_to, ; char* from + ptr null; char* to + }, ; 5877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11390_to, ; char* from + ptr null; char* to + }, ; 5878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11392_to, ; char* from + ptr null; char* to + }, ; 5879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11392_to, ; char* from + ptr null; char* to + }, ; 5880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11396_to, ; char* from + ptr null; char* to + }, ; 5881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11396_to, ; char* from + ptr null; char* to + }, ; 5882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11399_to, ; char* from + ptr null; char* to + }, ; 5883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11399_to, ; char* from + ptr null; char* to + }, ; 5884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11426_to, ; char* from + ptr @.TypeMapEntry.11425_from; char* to + }, ; 5885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11402_to, ; char* from + ptr null; char* to + }, ; 5886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11402_to, ; char* from + ptr null; char* to + }, ; 5887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11428_to, ; char* from + ptr @.TypeMapEntry.11427_from; char* to + }, ; 5888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11444_to, ; char* from + ptr @.TypeMapEntry.11443_from; char* to + }, ; 5889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11444_to, ; char* from + ptr @.TypeMapEntry.11443_from; char* to + }, ; 5890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11442_to, ; char* from + ptr @.TypeMapEntry.11441_from; char* to + }, ; 5891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11447_to, ; char* from + ptr @.TypeMapEntry.11446_from; char* to + }, ; 5892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11449_to, ; char* from + ptr @.TypeMapEntry.11448_from; char* to + }, ; 5893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11456_to, ; char* from + ptr @.TypeMapEntry.11455_from; char* to + }, ; 5894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11451_to, ; char* from + ptr null; char* to + }, ; 5895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11451_to, ; char* from + ptr null; char* to + }, ; 5896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11454_to, ; char* from + ptr @.TypeMapEntry.11453_from; char* to + }, ; 5897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11458_to, ; char* from + ptr @.TypeMapEntry.11457_from; char* to + }, ; 5898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11470_to, ; char* from + ptr @.TypeMapEntry.11469_from; char* to + }, ; 5899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11460_to, ; char* from + ptr null; char* to + }, ; 5900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11460_to, ; char* from + ptr null; char* to + }, ; 5901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11468_to, ; char* from + ptr @.TypeMapEntry.11467_from; char* to + }, ; 5902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11463_to, ; char* from + ptr null; char* to + }, ; 5903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11463_to, ; char* from + ptr null; char* to + }, ; 5904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11476_to, ; char* from + ptr @.TypeMapEntry.11475_from; char* to + }, ; 5905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11472_to, ; char* from + ptr @.TypeMapEntry.11471_from; char* to + }, ; 5906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11474_to, ; char* from + ptr @.TypeMapEntry.11473_from; char* to + }, ; 5907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11480_to, ; char* from + ptr @.TypeMapEntry.11479_from; char* to + }, ; 5908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11478_to, ; char* from + ptr @.TypeMapEntry.11477_from; char* to + }, ; 5909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11482_to, ; char* from + ptr @.TypeMapEntry.11481_from; char* to + }, ; 5910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11486_to, ; char* from + ptr @.TypeMapEntry.11485_from; char* to + }, ; 5911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11484_to, ; char* from + ptr @.TypeMapEntry.11483_from; char* to + }, ; 5912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11490_to, ; char* from + ptr @.TypeMapEntry.11489_from; char* to + }, ; 5913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11488_to, ; char* from + ptr @.TypeMapEntry.11487_from; char* to + }, ; 5914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11494_to, ; char* from + ptr @.TypeMapEntry.11493_from; char* to + }, ; 5915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11492_to, ; char* from + ptr @.TypeMapEntry.11491_from; char* to + }, ; 5916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11498_to, ; char* from + ptr @.TypeMapEntry.11497_from; char* to + }, ; 5917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11496_to, ; char* from + ptr @.TypeMapEntry.11495_from; char* to + }, ; 5918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11500_to, ; char* from + ptr @.TypeMapEntry.11499_from; char* to + }, ; 5919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11504_to, ; char* from + ptr @.TypeMapEntry.11503_from; char* to + }, ; 5920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11502_to, ; char* from + ptr @.TypeMapEntry.11501_from; char* to + }, ; 5921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11508_to, ; char* from + ptr @.TypeMapEntry.11507_from; char* to + }, ; 5922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11506_to, ; char* from + ptr @.TypeMapEntry.11505_from; char* to + }, ; 5923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11510_to, ; char* from + ptr @.TypeMapEntry.11509_from; char* to + }, ; 5924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11514_to, ; char* from + ptr @.TypeMapEntry.11513_from; char* to + }, ; 5925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11512_to, ; char* from + ptr @.TypeMapEntry.11511_from; char* to + }, ; 5926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11518_to, ; char* from + ptr @.TypeMapEntry.11517_from; char* to + }, ; 5927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11516_to, ; char* from + ptr @.TypeMapEntry.11515_from; char* to + }, ; 5928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11522_to, ; char* from + ptr @.TypeMapEntry.11521_from; char* to + }, ; 5929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11520_to, ; char* from + ptr @.TypeMapEntry.11519_from; char* to + }, ; 5930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11524_to, ; char* from + ptr @.TypeMapEntry.11523_from; char* to + }, ; 5931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11526_to, ; char* from + ptr @.TypeMapEntry.11525_from; char* to + }, ; 5932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11530_to, ; char* from + ptr @.TypeMapEntry.11529_from; char* to + }, ; 5933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11528_to, ; char* from + ptr @.TypeMapEntry.11527_from; char* to + }, ; 5934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11534_to, ; char* from + ptr @.TypeMapEntry.11533_from; char* to + }, ; 5935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11532_to, ; char* from + ptr @.TypeMapEntry.11531_from; char* to + }, ; 5936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11538_to, ; char* from + ptr @.TypeMapEntry.11537_from; char* to + }, ; 5937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11536_to, ; char* from + ptr @.TypeMapEntry.11535_from; char* to + }, ; 5938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11540_to, ; char* from + ptr @.TypeMapEntry.11539_from; char* to + }, ; 5939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11547_to, ; char* from + ptr @.TypeMapEntry.11546_from; char* to + }, ; 5940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11542_to, ; char* from + ptr null; char* to + }, ; 5941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11542_to, ; char* from + ptr null; char* to + }, ; 5942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11562_to, ; char* from + ptr null; char* to + }, ; 5943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11562_to, ; char* from + ptr null; char* to + }, ; 5944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11565_to, ; char* from + ptr null; char* to + }, ; 5945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11565_to, ; char* from + ptr null; char* to + }, ; 5946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11549_to, ; char* from + ptr @.TypeMapEntry.11548_from; char* to + }, ; 5947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11551_to, ; char* from + ptr @.TypeMapEntry.11550_from; char* to + }, ; 5948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11553_to, ; char* from + ptr @.TypeMapEntry.11552_from; char* to + }, ; 5949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11568_to, ; char* from + ptr null; char* to + }, ; 5950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11568_to, ; char* from + ptr null; char* to + }, ; 5951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11555_to, ; char* from + ptr @.TypeMapEntry.11554_from; char* to + }, ; 5952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11557_to, ; char* from + ptr @.TypeMapEntry.11556_from; char* to + }, ; 5953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11571_to, ; char* from + ptr null; char* to + }, ; 5954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11571_to, ; char* from + ptr null; char* to + }, ; 5955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11574_to, ; char* from + ptr null; char* to + }, ; 5956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11574_to, ; char* from + ptr null; char* to + }, ; 5957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11559_to, ; char* from + ptr @.TypeMapEntry.11558_from; char* to + }, ; 5958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11559_to, ; char* from + ptr @.TypeMapEntry.11558_from; char* to + }, ; 5959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11600_to, ; char* from + ptr @.TypeMapEntry.11599_from; char* to + }, ; 5960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11590_to, ; char* from + ptr null; char* to + }, ; 5961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11590_to, ; char* from + ptr null; char* to + }, ; 5962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11596_to, ; char* from + ptr @.TypeMapEntry.11595_from; char* to + }, ; 5963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11598_to, ; char* from + ptr @.TypeMapEntry.11597_from; char* to + }, ; 5964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11593_to, ; char* from + ptr null; char* to + }, ; 5965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11593_to, ; char* from + ptr null; char* to + }, ; 5966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11602_to, ; char* from + ptr @.TypeMapEntry.11601_from; char* to + }, ; 5967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11579_to, ; char* from + ptr null; char* to + }, ; 5968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11579_to, ; char* from + ptr null; char* to + }, ; 5969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11606_to, ; char* from + ptr @.TypeMapEntry.11605_from; char* to + }, ; 5970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11604_to, ; char* from + ptr @.TypeMapEntry.11603_from; char* to + }, ; 5971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11618_to, ; char* from + ptr @.TypeMapEntry.11617_from; char* to + }, ; 5972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11608_to, ; char* from + ptr null; char* to + }, ; 5973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11608_to, ; char* from + ptr null; char* to + }, ; 5974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11613_to, ; char* from + ptr null; char* to + }, ; 5975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11613_to, ; char* from + ptr null; char* to + }, ; 5976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11625_to, ; char* from + ptr @.TypeMapEntry.11624_from; char* to + }, ; 5977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11620_to, ; char* from + ptr @.TypeMapEntry.11619_from; char* to + }, ; 5978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11622_to, ; char* from + ptr null; char* to + }, ; 5979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11622_to, ; char* from + ptr null; char* to + }, ; 5980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11629_to, ; char* from + ptr @.TypeMapEntry.11628_from; char* to + }, ; 5981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11627_to, ; char* from + ptr @.TypeMapEntry.11626_from; char* to + }, ; 5982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11650_to, ; char* from + ptr @.TypeMapEntry.11649_from; char* to + }, ; 5983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11646_to, ; char* from + ptr @.TypeMapEntry.11645_from; char* to + }, ; 5984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11631_to, ; char* from + ptr null; char* to + }, ; 5985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11631_to, ; char* from + ptr null; char* to + }, ; 5986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11636_to, ; char* from + ptr null; char* to + }, ; 5987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11636_to, ; char* from + ptr null; char* to + }, ; 5988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11641_to, ; char* from + ptr null; char* to + }, ; 5989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11641_to, ; char* from + ptr null; char* to + }, ; 5990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11648_to, ; char* from + ptr @.TypeMapEntry.11647_from; char* to + }, ; 5991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11657_to, ; char* from + ptr @.TypeMapEntry.11656_from; char* to + }, ; 5992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11652_to, ; char* from + ptr null; char* to + }, ; 5993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11652_to, ; char* from + ptr null; char* to + }, ; 5994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11661_to, ; char* from + ptr @.TypeMapEntry.11660_from; char* to + }, ; 5995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11659_to, ; char* from + ptr @.TypeMapEntry.11658_from; char* to + }, ; 5996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11663_to, ; char* from + ptr @.TypeMapEntry.11662_from; char* to + }, ; 5997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11584_to, ; char* from + ptr null; char* to + }, ; 5998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11584_to, ; char* from + ptr null; char* to + }, ; 5999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11665_to, ; char* from + ptr @.TypeMapEntry.11664_from; char* to + }, ; 6000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11667_to, ; char* from + ptr @.TypeMapEntry.11666_from; char* to + }, ; 6001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11669_to, ; char* from + ptr @.TypeMapEntry.11668_from; char* to + }, ; 6002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11671_to, ; char* from + ptr @.TypeMapEntry.11670_from; char* to + }, ; 6003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11686_to, ; char* from + ptr @.TypeMapEntry.11685_from; char* to + }, ; 6004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11678_to, ; char* from + ptr @.TypeMapEntry.11677_from; char* to + }, ; 6005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11680_to, ; char* from + ptr @.TypeMapEntry.11679_from; char* to + }, ; 6006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11673_to, ; char* from + ptr null; char* to + }, ; 6007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11673_to, ; char* from + ptr null; char* to + }, ; 6008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11684_to, ; char* from + ptr @.TypeMapEntry.11683_from; char* to + }, ; 6009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11688_to, ; char* from + ptr @.TypeMapEntry.11687_from; char* to + }, ; 6010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11682_to, ; char* from + ptr @.TypeMapEntry.11681_from; char* to + }, ; 6011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11690_to, ; char* from + ptr @.TypeMapEntry.11689_from; char* to + }, ; 6012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11692_to, ; char* from + ptr @.TypeMapEntry.11691_from; char* to + }, ; 6013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11699_to, ; char* from + ptr @.TypeMapEntry.11698_from; char* to + }, ; 6014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11694_to, ; char* from + ptr null; char* to + }, ; 6015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11694_to, ; char* from + ptr null; char* to + }, ; 6016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11701_to, ; char* from + ptr @.TypeMapEntry.11700_from; char* to + }, ; 6017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11587_to, ; char* from + ptr null; char* to + }, ; 6018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11587_to, ; char* from + ptr null; char* to + }, ; 6019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11703_to, ; char* from + ptr @.TypeMapEntry.11702_from; char* to + }, ; 6020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11705_to, ; char* from + ptr @.TypeMapEntry.11704_from; char* to + }, ; 6021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11707_to, ; char* from + ptr @.TypeMapEntry.11706_from; char* to + }, ; 6022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11707_to, ; char* from + ptr @.TypeMapEntry.11706_from; char* to + }, ; 6023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11710_to, ; char* from + ptr @.TypeMapEntry.11709_from; char* to + }, ; 6024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11722_to, ; char* from + ptr @.TypeMapEntry.11721_from; char* to + }, ; 6025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11712_to, ; char* from + ptr @.TypeMapEntry.11711_from; char* to + }, ; 6026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11714_to, ; char* from + ptr @.TypeMapEntry.11713_from; char* to + }, ; 6027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11716_to, ; char* from + ptr @.TypeMapEntry.11715_from; char* to + }, ; 6028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11716_to, ; char* from + ptr @.TypeMapEntry.11715_from; char* to + }, ; 6029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11719_to, ; char* from + ptr @.TypeMapEntry.11718_from; char* to + }, ; 6030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11719_to, ; char* from + ptr @.TypeMapEntry.11718_from; char* to + }, ; 6031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11724_to, ; char* from + ptr null; char* to + }, ; 6032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11724_to, ; char* from + ptr null; char* to + }, ; 6033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11727_to, ; char* from + ptr @.TypeMapEntry.11726_from; char* to + }, ; 6034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11729_to, ; char* from + ptr @.TypeMapEntry.11728_from; char* to + }, ; 6035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11739_to, ; char* from + ptr @.TypeMapEntry.11738_from; char* to + }, ; 6036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11733_to, ; char* from + ptr null; char* to + }, ; 6037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11733_to, ; char* from + ptr null; char* to + }, ; 6038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11736_to, ; char* from + ptr null; char* to + }, ; 6039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11736_to, ; char* from + ptr null; char* to + }, ; 6040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11731_to, ; char* from + ptr @.TypeMapEntry.11730_from; char* to + }, ; 6041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11741_to, ; char* from + ptr @.TypeMapEntry.11740_from; char* to + }, ; 6042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11745_to, ; char* from + ptr @.TypeMapEntry.11744_from; char* to + }, ; 6043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11743_to, ; char* from + ptr @.TypeMapEntry.11742_from; char* to + }, ; 6044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11750_to, ; char* from + ptr @.TypeMapEntry.11749_from; char* to + }, ; 6045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11747_to, ; char* from + ptr null; char* to + }, ; 6046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11747_to, ; char* from + ptr null; char* to + }, ; 6047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11754_to, ; char* from + ptr @.TypeMapEntry.11753_from; char* to + }, ; 6048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11752_to, ; char* from + ptr @.TypeMapEntry.11751_from; char* to + }, ; 6049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11759_to, ; char* from + ptr @.TypeMapEntry.11758_from; char* to + }, ; 6050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11756_to, ; char* from + ptr null; char* to + }, ; 6051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11756_to, ; char* from + ptr null; char* to + }, ; 6052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11784_to, ; char* from + ptr @.TypeMapEntry.11783_from; char* to + }, ; 6053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11763_to, ; char* from + ptr null; char* to + }, ; 6054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11763_to, ; char* from + ptr null; char* to + }, ; 6055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11766_to, ; char* from + ptr null; char* to + }, ; 6056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11766_to, ; char* from + ptr null; char* to + }, ; 6057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11769_to, ; char* from + ptr null; char* to + }, ; 6058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11769_to, ; char* from + ptr null; char* to + }, ; 6059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11772_to, ; char* from + ptr null; char* to + }, ; 6060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11772_to, ; char* from + ptr null; char* to + }, ; 6061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11761_to, ; char* from + ptr @.TypeMapEntry.11760_from; char* to + }, ; 6062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11775_to, ; char* from + ptr null; char* to + }, ; 6063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11775_to, ; char* from + ptr null; char* to + }, ; 6064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11778_to, ; char* from + ptr null; char* to + }, ; 6065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11778_to, ; char* from + ptr null; char* to + }, ; 6066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11781_to, ; char* from + ptr null; char* to + }, ; 6067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11781_to, ; char* from + ptr null; char* to + }, ; 6068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11795_to, ; char* from + ptr @.TypeMapEntry.11794_from; char* to + }, ; 6069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11795_to, ; char* from + ptr @.TypeMapEntry.11794_from; char* to + }, ; 6070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11786_to, ; char* from + ptr null; char* to + }, ; 6071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11786_to, ; char* from + ptr null; char* to + }, ; 6072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11789_to, ; char* from + ptr null; char* to + }, ; 6073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11789_to, ; char* from + ptr null; char* to + }, ; 6074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11792_to, ; char* from + ptr null; char* to + }, ; 6075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11792_to, ; char* from + ptr null; char* to + }, ; 6076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11797_to, ; char* from + ptr @.TypeMapEntry.11796_from; char* to + }, ; 6077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11797_to, ; char* from + ptr @.TypeMapEntry.11796_from; char* to + }, ; 6078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11805_to, ; char* from + ptr @.TypeMapEntry.11804_from; char* to + }, ; 6079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11803_to, ; char* from + ptr @.TypeMapEntry.11802_from; char* to + }, ; 6080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11807_to, ; char* from + ptr @.TypeMapEntry.11806_from; char* to + }, ; 6081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11809_to, ; char* from + ptr null; char* to + }, ; 6082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11809_to, ; char* from + ptr null; char* to + }, ; 6083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11812_to, ; char* from + ptr null; char* to + }, ; 6084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11812_to, ; char* from + ptr null; char* to + }, ; 6085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11815_to, ; char* from + ptr null; char* to + }, ; 6086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11815_to, ; char* from + ptr null; char* to + }, ; 6087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11820_to, ; char* from + ptr @.TypeMapEntry.11819_from; char* to + }, ; 6088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11822_to, ; char* from + ptr @.TypeMapEntry.11821_from; char* to + }, ; 6089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11822_to, ; char* from + ptr @.TypeMapEntry.11821_from; char* to + }, ; 6090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11825_to, ; char* from + ptr @.TypeMapEntry.11824_from; char* to + }, ; 6091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11833_to, ; char* from + ptr @.TypeMapEntry.11832_from; char* to + }, ; 6092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11838_to, ; char* from + ptr @.TypeMapEntry.11837_from; char* to + }, ; 6093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11835_to, ; char* from + ptr null; char* to + }, ; 6094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11835_to, ; char* from + ptr null; char* to + }, ; 6095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11858_to, ; char* from + ptr @.TypeMapEntry.11857_from; char* to + }, ; 6096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11827_to, ; char* from + ptr null; char* to + }, ; 6097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11827_to, ; char* from + ptr null; char* to + }, ; 6098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11860_to, ; char* from + ptr @.TypeMapEntry.11859_from; char* to + }, ; 6099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11860_to, ; char* from + ptr @.TypeMapEntry.11859_from; char* to + }, ; 6100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11863_to, ; char* from + ptr @.TypeMapEntry.11862_from; char* to + }, ; 6101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11830_to, ; char* from + ptr @.TypeMapEntry.11864_from; char* to + }, ; 6102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11830_to, ; char* from + ptr @.TypeMapEntry.11864_from; char* to + }, ; 6103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11830_to, ; char* from + ptr @.TypeMapEntry.11864_from; char* to + }, ; 6104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11830_to, ; char* from + ptr @.TypeMapEntry.11864_from; char* to + }, ; 6105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11867_to, ; char* from + ptr @.TypeMapEntry.11866_from; char* to + }, ; 6106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11869_to, ; char* from + ptr @.TypeMapEntry.11868_from; char* to + }, ; 6107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11871_to, ; char* from + ptr @.TypeMapEntry.11870_from; char* to + }, ; 6108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11873_to, ; char* from + ptr @.TypeMapEntry.11872_from; char* to + }, ; 6109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11875_to, ; char* from + ptr @.TypeMapEntry.11874_from; char* to + }, ; 6110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11875_to, ; char* from + ptr @.TypeMapEntry.11874_from; char* to + }, ; 6111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11877_to, ; char* from + ptr @.TypeMapEntry.11876_from; char* to + }, ; 6112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11879_to, ; char* from + ptr @.TypeMapEntry.11878_from; char* to + }, ; 6113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11840_to, ; char* from + ptr @.TypeMapEntry.11839_from; char* to + }, ; 6114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11852_to, ; char* from + ptr @.TypeMapEntry.11851_from; char* to + }, ; 6115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11844_to, ; char* from + ptr null; char* to + }, ; 6116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11844_to, ; char* from + ptr null; char* to + }, ; 6117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11842_to, ; char* from + ptr @.TypeMapEntry.11841_from; char* to + }, ; 6118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11850_to, ; char* from + ptr @.TypeMapEntry.11849_from; char* to + }, ; 6119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11847_to, ; char* from + ptr null; char* to + }, ; 6120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11847_to, ; char* from + ptr null; char* to + }, ; 6121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11854_to, ; char* from + ptr @.TypeMapEntry.11853_from; char* to + }, ; 6122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11856_to, ; char* from + ptr @.TypeMapEntry.11855_from; char* to + }, ; 6123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11882_to, ; char* from + ptr @.TypeMapEntry.11881_from; char* to + }, ; 6124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11884_to, ; char* from + ptr @.TypeMapEntry.11883_from; char* to + }, ; 6125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11886_to, ; char* from + ptr @.TypeMapEntry.11885_from; char* to + }, ; 6126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11888_to, ; char* from + ptr @.TypeMapEntry.11887_from; char* to + }, ; 6127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11890_to, ; char* from + ptr @.TypeMapEntry.11889_from; char* to + }, ; 6128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11892_to, ; char* from + ptr @.TypeMapEntry.11891_from; char* to + }, ; 6129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11894_to, ; char* from + ptr @.TypeMapEntry.11893_from; char* to + }, ; 6130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11896_to, ; char* from + ptr @.TypeMapEntry.11895_from; char* to + }, ; 6131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11898_to, ; char* from + ptr @.TypeMapEntry.11897_from; char* to + }, ; 6132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11898_to, ; char* from + ptr @.TypeMapEntry.11897_from; char* to + }, ; 6133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11901_to, ; char* from + ptr @.TypeMapEntry.11900_from; char* to + }, ; 6134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11903_to, ; char* from + ptr @.TypeMapEntry.11902_from; char* to + }, ; 6135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11905_to, ; char* from + ptr @.TypeMapEntry.11904_from; char* to + }, ; 6136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11905_to, ; char* from + ptr @.TypeMapEntry.11904_from; char* to + }, ; 6137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11908_to, ; char* from + ptr @.TypeMapEntry.11907_from; char* to + }, ; 6138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11910_to, ; char* from + ptr @.TypeMapEntry.11909_from; char* to + }, ; 6139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11912_to, ; char* from + ptr @.TypeMapEntry.11911_from; char* to + }, ; 6140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11912_to, ; char* from + ptr @.TypeMapEntry.11911_from; char* to + }, ; 6141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11915_to, ; char* from + ptr @.TypeMapEntry.11914_from; char* to + }, ; 6142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11917_to, ; char* from + ptr @.TypeMapEntry.11916_from; char* to + }, ; 6143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11917_to, ; char* from + ptr @.TypeMapEntry.11916_from; char* to + }, ; 6144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11920_to, ; char* from + ptr @.TypeMapEntry.11919_from; char* to + }, ; 6145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11922_to, ; char* from + ptr @.TypeMapEntry.11921_from; char* to + }, ; 6146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11922_to, ; char* from + ptr @.TypeMapEntry.11921_from; char* to + }, ; 6147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11925_to, ; char* from + ptr @.TypeMapEntry.11924_from; char* to + }, ; 6148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11927_to, ; char* from + ptr @.TypeMapEntry.11926_from; char* to + }, ; 6149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11927_to, ; char* from + ptr @.TypeMapEntry.11926_from; char* to + }, ; 6150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11930_to, ; char* from + ptr @.TypeMapEntry.11929_from; char* to + }, ; 6151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11932_to, ; char* from + ptr @.TypeMapEntry.11931_from; char* to + }, ; 6152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11932_to, ; char* from + ptr @.TypeMapEntry.11931_from; char* to + }, ; 6153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11935_to, ; char* from + ptr @.TypeMapEntry.11934_from; char* to + }, ; 6154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11937_to, ; char* from + ptr @.TypeMapEntry.11936_from; char* to + }, ; 6155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11937_to, ; char* from + ptr @.TypeMapEntry.11936_from; char* to + }, ; 6156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11940_to, ; char* from + ptr @.TypeMapEntry.11939_from; char* to + }, ; 6157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11942_to, ; char* from + ptr @.TypeMapEntry.11941_from; char* to + }, ; 6158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11942_to, ; char* from + ptr @.TypeMapEntry.11941_from; char* to + }, ; 6159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11945_to, ; char* from + ptr @.TypeMapEntry.11944_from; char* to + }, ; 6160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11947_to, ; char* from + ptr @.TypeMapEntry.11946_from; char* to + }, ; 6161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11949_to, ; char* from + ptr @.TypeMapEntry.11948_from; char* to + }, ; 6162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11949_to, ; char* from + ptr @.TypeMapEntry.11948_from; char* to + }, ; 6163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11952_to, ; char* from + ptr @.TypeMapEntry.11951_from; char* to + }, ; 6164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11954_to, ; char* from + ptr @.TypeMapEntry.11953_from; char* to + }, ; 6165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11954_to, ; char* from + ptr @.TypeMapEntry.11953_from; char* to + }, ; 6166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11957_to, ; char* from + ptr @.TypeMapEntry.11956_from; char* to + }, ; 6167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11959_to, ; char* from + ptr @.TypeMapEntry.11958_from; char* to + }, ; 6168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11959_to, ; char* from + ptr @.TypeMapEntry.11958_from; char* to + }, ; 6169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11962_to, ; char* from + ptr @.TypeMapEntry.11961_from; char* to + }, ; 6170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11964_to, ; char* from + ptr @.TypeMapEntry.11963_from; char* to + }, ; 6171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11964_to, ; char* from + ptr @.TypeMapEntry.11963_from; char* to + }, ; 6172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11967_to, ; char* from + ptr @.TypeMapEntry.11966_from; char* to + }, ; 6173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11977_to, ; char* from + ptr @.TypeMapEntry.11976_from; char* to + }, ; 6174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11977_to, ; char* from + ptr @.TypeMapEntry.11976_from; char* to + }, ; 6175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11980_to, ; char* from + ptr @.TypeMapEntry.11979_from; char* to + }, ; 6176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11982_to, ; char* from + ptr @.TypeMapEntry.11981_from; char* to + }, ; 6177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11982_to, ; char* from + ptr @.TypeMapEntry.11981_from; char* to + }, ; 6178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11985_to, ; char* from + ptr @.TypeMapEntry.11984_from; char* to + }, ; 6179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11987_to, ; char* from + ptr @.TypeMapEntry.11986_from; char* to + }, ; 6180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11987_to, ; char* from + ptr @.TypeMapEntry.11986_from; char* to + }, ; 6181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11990_to, ; char* from + ptr @.TypeMapEntry.11989_from; char* to + }, ; 6182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11992_to, ; char* from + ptr @.TypeMapEntry.11991_from; char* to + }, ; 6183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11992_to, ; char* from + ptr @.TypeMapEntry.11991_from; char* to + }, ; 6184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11995_to, ; char* from + ptr @.TypeMapEntry.11994_from; char* to + }, ; 6185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11997_to, ; char* from + ptr @.TypeMapEntry.11996_from; char* to + }, ; 6186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11999_to, ; char* from + ptr @.TypeMapEntry.11998_from; char* to + }, ; 6187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11999_to, ; char* from + ptr @.TypeMapEntry.11998_from; char* to + }, ; 6188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12002_to, ; char* from + ptr @.TypeMapEntry.12001_from; char* to + }, ; 6189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12004_to, ; char* from + ptr @.TypeMapEntry.12003_from; char* to + }, ; 6190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12004_to, ; char* from + ptr @.TypeMapEntry.12003_from; char* to + }, ; 6191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12007_to, ; char* from + ptr @.TypeMapEntry.12006_from; char* to + }, ; 6192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12009_to, ; char* from + ptr @.TypeMapEntry.12008_from; char* to + }, ; 6193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12011_to, ; char* from + ptr @.TypeMapEntry.12010_from; char* to + }, ; 6194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12013_to, ; char* from + ptr @.TypeMapEntry.12012_from; char* to + }, ; 6195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12015_to, ; char* from + ptr @.TypeMapEntry.12014_from; char* to + }, ; 6196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12017_to, ; char* from + ptr @.TypeMapEntry.12016_from; char* to + }, ; 6197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12019_to, ; char* from + ptr @.TypeMapEntry.12018_from; char* to + }, ; 6198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12021_to, ; char* from + ptr @.TypeMapEntry.12020_from; char* to + }, ; 6199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12023_to, ; char* from + ptr @.TypeMapEntry.12022_from; char* to + }, ; 6200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12025_to, ; char* from + ptr @.TypeMapEntry.12024_from; char* to + }, ; 6201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12027_to, ; char* from + ptr @.TypeMapEntry.12026_from; char* to + }, ; 6202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12029_to, ; char* from + ptr @.TypeMapEntry.12028_from; char* to + }, ; 6203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12031_to, ; char* from + ptr @.TypeMapEntry.12030_from; char* to + }, ; 6204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12033_to, ; char* from + ptr @.TypeMapEntry.12032_from; char* to + }, ; 6205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12035_to, ; char* from + ptr @.TypeMapEntry.12034_from; char* to + }, ; 6206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12037_to, ; char* from + ptr @.TypeMapEntry.12036_from; char* to + }, ; 6207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12039_to, ; char* from + ptr @.TypeMapEntry.12038_from; char* to + }, ; 6208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12041_to, ; char* from + ptr @.TypeMapEntry.12040_from; char* to + }, ; 6209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12043_to, ; char* from + ptr @.TypeMapEntry.12042_from; char* to + }, ; 6210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12045_to, ; char* from + ptr @.TypeMapEntry.12044_from; char* to + }, ; 6211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12047_to, ; char* from + ptr @.TypeMapEntry.12046_from; char* to + }, ; 6212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12049_to, ; char* from + ptr @.TypeMapEntry.12048_from; char* to + }, ; 6213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12051_to, ; char* from + ptr @.TypeMapEntry.12050_from; char* to + }, ; 6214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12053_to, ; char* from + ptr @.TypeMapEntry.12052_from; char* to + }, ; 6215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12055_to, ; char* from + ptr @.TypeMapEntry.12054_from; char* to + }, ; 6216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12057_to, ; char* from + ptr @.TypeMapEntry.12056_from; char* to + }, ; 6217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12059_to, ; char* from + ptr @.TypeMapEntry.12058_from; char* to + }, ; 6218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12061_to, ; char* from + ptr @.TypeMapEntry.12060_from; char* to + }, ; 6219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12063_to, ; char* from + ptr @.TypeMapEntry.12062_from; char* to + }, ; 6220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12065_to, ; char* from + ptr @.TypeMapEntry.12064_from; char* to + }, ; 6221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12067_to, ; char* from + ptr @.TypeMapEntry.12066_from; char* to + }, ; 6222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12069_to, ; char* from + ptr @.TypeMapEntry.12068_from; char* to + }, ; 6223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12069_to, ; char* from + ptr @.TypeMapEntry.12068_from; char* to + }, ; 6224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12072_to, ; char* from + ptr @.TypeMapEntry.12071_from; char* to + }, ; 6225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12074_to, ; char* from + ptr @.TypeMapEntry.12073_from; char* to + }, ; 6226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12074_to, ; char* from + ptr @.TypeMapEntry.12073_from; char* to + }, ; 6227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12077_to, ; char* from + ptr @.TypeMapEntry.12076_from; char* to + }, ; 6228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12079_to, ; char* from + ptr @.TypeMapEntry.12078_from; char* to + }, ; 6229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12079_to, ; char* from + ptr @.TypeMapEntry.12078_from; char* to + }, ; 6230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12082_to, ; char* from + ptr @.TypeMapEntry.12081_from; char* to + }, ; 6231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12084_to, ; char* from + ptr @.TypeMapEntry.12083_from; char* to + }, ; 6232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12084_to, ; char* from + ptr @.TypeMapEntry.12083_from; char* to + }, ; 6233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12087_to, ; char* from + ptr @.TypeMapEntry.12086_from; char* to + }, ; 6234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12089_to, ; char* from + ptr @.TypeMapEntry.12088_from; char* to + }, ; 6235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12089_to, ; char* from + ptr @.TypeMapEntry.12088_from; char* to + }, ; 6236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12092_to, ; char* from + ptr @.TypeMapEntry.12091_from; char* to + }, ; 6237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12094_to, ; char* from + ptr @.TypeMapEntry.12093_from; char* to + }, ; 6238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12096_to, ; char* from + ptr @.TypeMapEntry.12095_from; char* to + }, ; 6239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12096_to, ; char* from + ptr @.TypeMapEntry.12095_from; char* to + }, ; 6240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12099_to, ; char* from + ptr @.TypeMapEntry.12098_from; char* to + }, ; 6241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12101_to, ; char* from + ptr @.TypeMapEntry.12100_from; char* to + }, ; 6242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12101_to, ; char* from + ptr @.TypeMapEntry.12100_from; char* to + }, ; 6243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12104_to, ; char* from + ptr @.TypeMapEntry.12103_from; char* to + }, ; 6244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12106_to, ; char* from + ptr @.TypeMapEntry.12105_from; char* to + }, ; 6245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12108_to, ; char* from + ptr @.TypeMapEntry.12107_from; char* to + }, ; 6246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12110_to, ; char* from + ptr @.TypeMapEntry.12109_from; char* to + }, ; 6247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12112_to, ; char* from + ptr @.TypeMapEntry.12111_from; char* to + }, ; 6248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12114_to, ; char* from + ptr @.TypeMapEntry.12113_from; char* to + }, ; 6249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12116_to, ; char* from + ptr @.TypeMapEntry.12115_from; char* to + }, ; 6250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12118_to, ; char* from + ptr @.TypeMapEntry.12117_from; char* to + }, ; 6251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11969_to, ; char* from + ptr @.TypeMapEntry.11968_from; char* to + }, ; 6252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11971_to, ; char* from + ptr @.TypeMapEntry.11970_from; char* to + }, ; 6253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11973_to, ; char* from + ptr @.TypeMapEntry.11972_from; char* to + }, ; 6254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11975_to, ; char* from + ptr @.TypeMapEntry.11974_from; char* to + }, ; 6255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12120_to, ; char* from + ptr @.TypeMapEntry.12119_from; char* to + }, ; 6256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12120_to, ; char* from + ptr @.TypeMapEntry.12119_from; char* to + }, ; 6257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12128_to, ; char* from + ptr @.TypeMapEntry.12127_from; char* to + }, ; 6258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12123_to, ; char* from + ptr @.TypeMapEntry.12122_from; char* to + }, ; 6259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12125_to, ; char* from + ptr null; char* to + }, ; 6260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12125_to, ; char* from + ptr null; char* to + }, ; 6261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12130_to, ; char* from + ptr @.TypeMapEntry.12129_from; char* to + }, ; 6262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12132_to, ; char* from + ptr @.TypeMapEntry.12131_from; char* to + }, ; 6263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12134_to, ; char* from + ptr @.TypeMapEntry.12133_from; char* to + }, ; 6264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12139_to, ; char* from + ptr @.TypeMapEntry.12138_from; char* to + }, ; 6265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12136_to, ; char* from + ptr null; char* to + }, ; 6266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12136_to, ; char* from + ptr null; char* to + }, ; 6267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12141_to, ; char* from + ptr @.TypeMapEntry.12140_from; char* to + }, ; 6268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12241_to, ; char* from + ptr @.TypeMapEntry.12240_from; char* to + }, ; 6269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12243_to, ; char* from + ptr @.TypeMapEntry.12242_from; char* to + }, ; 6270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12245_to, ; char* from + ptr @.TypeMapEntry.12244_from; char* to + }, ; 6271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12427_to, ; char* from + ptr @.TypeMapEntry.12426_from; char* to + }, ; 6272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12431_to, ; char* from + ptr @.TypeMapEntry.12430_from; char* to + }, ; 6273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12429_to, ; char* from + ptr @.TypeMapEntry.12428_from; char* to + }, ; 6274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12433_to, ; char* from + ptr @.TypeMapEntry.12432_from; char* to + }, ; 6275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12143_to, ; char* from + ptr @.TypeMapEntry.12142_from; char* to + }, ; 6276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12149_to, ; char* from + ptr @.TypeMapEntry.12148_from; char* to + }, ; 6277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12149_to, ; char* from + ptr @.TypeMapEntry.12148_from; char* to + }, ; 6278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12145_to, ; char* from + ptr @.TypeMapEntry.12144_from; char* to + }, ; 6279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12147_to, ; char* from + ptr @.TypeMapEntry.12146_from; char* to + }, ; 6280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12168_to, ; char* from + ptr @.TypeMapEntry.12167_from; char* to + }, ; 6281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12152_to, ; char* from + ptr @.TypeMapEntry.12151_from; char* to + }, ; 6282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12154_to, ; char* from + ptr @.TypeMapEntry.12153_from; char* to + }, ; 6283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12156_to, ; char* from + ptr @.TypeMapEntry.12155_from; char* to + }, ; 6284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12158_to, ; char* from + ptr @.TypeMapEntry.12157_from; char* to + }, ; 6285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12160_to, ; char* from + ptr @.TypeMapEntry.12159_from; char* to + }, ; 6286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12162_to, ; char* from + ptr @.TypeMapEntry.12161_from; char* to + }, ; 6287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12164_to, ; char* from + ptr @.TypeMapEntry.12163_from; char* to + }, ; 6288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12166_to, ; char* from + ptr @.TypeMapEntry.12165_from; char* to + }, ; 6289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12170_to, ; char* from + ptr @.TypeMapEntry.12169_from; char* to + }, ; 6290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12172_to, ; char* from + ptr @.TypeMapEntry.12171_from; char* to + }, ; 6291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12172_to, ; char* from + ptr @.TypeMapEntry.12171_from; char* to + }, ; 6292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12177_to, ; char* from + ptr @.TypeMapEntry.12176_from; char* to + }, ; 6293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12175_to, ; char* from + ptr @.TypeMapEntry.12174_from; char* to + }, ; 6294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12183_to, ; char* from + ptr @.TypeMapEntry.12182_from; char* to + }, ; 6295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12179_to, ; char* from + ptr @.TypeMapEntry.12178_from; char* to + }, ; 6296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12181_to, ; char* from + ptr @.TypeMapEntry.12180_from; char* to + }, ; 6297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12189_to, ; char* from + ptr @.TypeMapEntry.12188_from; char* to + }, ; 6298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12185_to, ; char* from + ptr @.TypeMapEntry.12184_from; char* to + }, ; 6299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12187_to, ; char* from + ptr @.TypeMapEntry.12186_from; char* to + }, ; 6300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12195_to, ; char* from + ptr @.TypeMapEntry.12194_from; char* to + }, ; 6301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12191_to, ; char* from + ptr @.TypeMapEntry.12190_from; char* to + }, ; 6302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12193_to, ; char* from + ptr @.TypeMapEntry.12192_from; char* to + }, ; 6303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12199_to, ; char* from + ptr @.TypeMapEntry.12198_from; char* to + }, ; 6304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12197_to, ; char* from + ptr @.TypeMapEntry.12196_from; char* to + }, ; 6305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12203_to, ; char* from + ptr @.TypeMapEntry.12202_from; char* to + }, ; 6306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12201_to, ; char* from + ptr @.TypeMapEntry.12200_from; char* to + }, ; 6307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12205_to, ; char* from + ptr @.TypeMapEntry.12204_from; char* to + }, ; 6308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12209_to, ; char* from + ptr @.TypeMapEntry.12208_from; char* to + }, ; 6309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12207_to, ; char* from + ptr @.TypeMapEntry.12206_from; char* to + }, ; 6310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12213_to, ; char* from + ptr @.TypeMapEntry.12212_from; char* to + }, ; 6311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12211_to, ; char* from + ptr @.TypeMapEntry.12210_from; char* to + }, ; 6312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12215_to, ; char* from + ptr @.TypeMapEntry.12214_from; char* to + }, ; 6313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12217_to, ; char* from + ptr @.TypeMapEntry.12216_from; char* to + }, ; 6314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12229_to, ; char* from + ptr @.TypeMapEntry.12228_from; char* to + }, ; 6315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12219_to, ; char* from + ptr @.TypeMapEntry.12218_from; char* to + }, ; 6316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12221_to, ; char* from + ptr @.TypeMapEntry.12220_from; char* to + }, ; 6317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12223_to, ; char* from + ptr @.TypeMapEntry.12222_from; char* to + }, ; 6318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12225_to, ; char* from + ptr @.TypeMapEntry.12224_from; char* to + }, ; 6319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12227_to, ; char* from + ptr @.TypeMapEntry.12226_from; char* to + }, ; 6320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12231_to, ; char* from + ptr @.TypeMapEntry.12230_from; char* to + }, ; 6321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12233_to, ; char* from + ptr @.TypeMapEntry.12232_from; char* to + }, ; 6322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12237_to, ; char* from + ptr @.TypeMapEntry.12236_from; char* to + }, ; 6323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12235_to, ; char* from + ptr @.TypeMapEntry.12234_from; char* to + }, ; 6324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12239_to, ; char* from + ptr @.TypeMapEntry.12238_from; char* to + }, ; 6325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12249_to, ; char* from + ptr @.TypeMapEntry.12248_from; char* to + }, ; 6326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12247_to, ; char* from + ptr @.TypeMapEntry.12246_from; char* to + }, ; 6327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12251_to, ; char* from + ptr @.TypeMapEntry.12250_from; char* to + }, ; 6328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12268_to, ; char* from + ptr @.TypeMapEntry.12267_from; char* to + }, ; 6329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12270_to, ; char* from + ptr @.TypeMapEntry.12269_from; char* to + }, ; 6330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12276_to, ; char* from + ptr @.TypeMapEntry.12275_from; char* to + }, ; 6331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12272_to, ; char* from + ptr @.TypeMapEntry.12271_from; char* to + }, ; 6332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12274_to, ; char* from + ptr @.TypeMapEntry.12273_from; char* to + }, ; 6333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12253_to, ; char* from + ptr @.TypeMapEntry.12252_from; char* to + }, ; 6334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12255_to, ; char* from + ptr @.TypeMapEntry.12254_from; char* to + }, ; 6335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12255_to, ; char* from + ptr @.TypeMapEntry.12254_from; char* to + }, ; 6336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12257_to, ; char* from + ptr @.TypeMapEntry.12256_from; char* to + }, ; 6337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12259_to, ; char* from + ptr @.TypeMapEntry.12258_from; char* to + }, ; 6338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12262_to, ; char* from + ptr @.TypeMapEntry.12261_from; char* to + }, ; 6339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12264_to, ; char* from + ptr @.TypeMapEntry.12263_from; char* to + }, ; 6340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12266_to, ; char* from + ptr @.TypeMapEntry.12265_from; char* to + }, ; 6341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12278_to, ; char* from + ptr @.TypeMapEntry.12277_from; char* to + }, ; 6342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12280_to, ; char* from + ptr @.TypeMapEntry.12279_from; char* to + }, ; 6343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12282_to, ; char* from + ptr @.TypeMapEntry.12281_from; char* to + }, ; 6344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12282_to, ; char* from + ptr @.TypeMapEntry.12281_from; char* to + }, ; 6345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12293_to, ; char* from + ptr null; char* to + }, ; 6346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12293_to, ; char* from + ptr null; char* to + }, ; 6347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12285_to, ; char* from + ptr @.TypeMapEntry.12284_from; char* to + }, ; 6348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12287_to, ; char* from + ptr @.TypeMapEntry.12286_from; char* to + }, ; 6349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12291_to, ; char* from + ptr @.TypeMapEntry.12290_from; char* to + }, ; 6350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12289_to, ; char* from + ptr @.TypeMapEntry.12288_from; char* to + }, ; 6351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12329_to, ; char* from + ptr @.TypeMapEntry.12328_from; char* to + }, ; 6352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12333_to, ; char* from + ptr @.TypeMapEntry.12332_from; char* to + }, ; 6353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12333_to, ; char* from + ptr @.TypeMapEntry.12332_from; char* to + }, ; 6354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12331_to, ; char* from + ptr @.TypeMapEntry.12330_from; char* to + }, ; 6355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12340_to, ; char* from + ptr @.TypeMapEntry.12339_from; char* to + }, ; 6356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12336_to, ; char* from + ptr @.TypeMapEntry.12335_from; char* to + }, ; 6357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12338_to, ; char* from + ptr @.TypeMapEntry.12337_from; char* to + }, ; 6358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12342_to, ; char* from + ptr @.TypeMapEntry.12341_from; char* to + }, ; 6359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12344_to, ; char* from + ptr @.TypeMapEntry.12343_from; char* to + }, ; 6360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12346_to, ; char* from + ptr @.TypeMapEntry.12345_from; char* to + }, ; 6361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12348_to, ; char* from + ptr @.TypeMapEntry.12347_from; char* to + }, ; 6362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12350_to, ; char* from + ptr @.TypeMapEntry.12349_from; char* to + }, ; 6363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12356_to, ; char* from + ptr @.TypeMapEntry.12355_from; char* to + }, ; 6364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12356_to, ; char* from + ptr @.TypeMapEntry.12355_from; char* to + }, ; 6365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12352_to, ; char* from + ptr @.TypeMapEntry.12351_from; char* to + }, ; 6366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12354_to, ; char* from + ptr @.TypeMapEntry.12353_from; char* to + }, ; 6367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12359_to, ; char* from + ptr @.TypeMapEntry.12358_from; char* to + }, ; 6368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12361_to, ; char* from + ptr @.TypeMapEntry.12360_from; char* to + }, ; 6369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12296_to, ; char* from + ptr null; char* to + }, ; 6370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12296_to, ; char* from + ptr null; char* to + }, ; 6371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12365_to, ; char* from + ptr @.TypeMapEntry.12364_from; char* to + }, ; 6372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12363_to, ; char* from + ptr @.TypeMapEntry.12362_from; char* to + }, ; 6373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12373_to, ; char* from + ptr @.TypeMapEntry.12372_from; char* to + }, ; 6374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12373_to, ; char* from + ptr @.TypeMapEntry.12372_from; char* to + }, ; 6375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12367_to, ; char* from + ptr @.TypeMapEntry.12366_from; char* to + }, ; 6376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12369_to, ; char* from + ptr @.TypeMapEntry.12368_from; char* to + }, ; 6377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12371_to, ; char* from + ptr @.TypeMapEntry.12370_from; char* to + }, ; 6378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12376_to, ; char* from + ptr @.TypeMapEntry.12375_from; char* to + }, ; 6379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12299_to, ; char* from + ptr @.TypeMapEntry.12377_from; char* to + }, ; 6380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12299_to, ; char* from + ptr @.TypeMapEntry.12377_from; char* to + }, ; 6381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12299_to, ; char* from + ptr @.TypeMapEntry.12377_from; char* to + }, ; 6382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12299_to, ; char* from + ptr @.TypeMapEntry.12377_from; char* to + }, ; 6383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12301_to, ; char* from + ptr @.TypeMapEntry.12378_from; char* to + }, ; 6384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12301_to, ; char* from + ptr @.TypeMapEntry.12378_from; char* to + }, ; 6385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12301_to, ; char* from + ptr @.TypeMapEntry.12378_from; char* to + }, ; 6386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12301_to, ; char* from + ptr @.TypeMapEntry.12378_from; char* to + }, ; 6387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12304_to, ; char* from + ptr @.TypeMapEntry.12381_from; char* to + }, ; 6388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12304_to, ; char* from + ptr @.TypeMapEntry.12381_from; char* to + }, ; 6389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12304_to, ; char* from + ptr @.TypeMapEntry.12381_from; char* to + }, ; 6390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12304_to, ; char* from + ptr @.TypeMapEntry.12381_from; char* to + }, ; 6391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12307_to, ; char* from + ptr @.TypeMapEntry.12383_from; char* to + }, ; 6392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12307_to, ; char* from + ptr @.TypeMapEntry.12383_from; char* to + }, ; 6393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12307_to, ; char* from + ptr @.TypeMapEntry.12383_from; char* to + }, ; 6394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12307_to, ; char* from + ptr @.TypeMapEntry.12383_from; char* to + }, ; 6395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12311_to, ; char* from + ptr @.TypeMapEntry.12385_from; char* to + }, ; 6396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12311_to, ; char* from + ptr @.TypeMapEntry.12385_from; char* to + }, ; 6397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12311_to, ; char* from + ptr @.TypeMapEntry.12385_from; char* to + }, ; 6398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12311_to, ; char* from + ptr @.TypeMapEntry.12385_from; char* to + }, ; 6399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12314_to, ; char* from + ptr @.TypeMapEntry.12387_from; char* to + }, ; 6400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12314_to, ; char* from + ptr @.TypeMapEntry.12387_from; char* to + }, ; 6401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12314_to, ; char* from + ptr @.TypeMapEntry.12387_from; char* to + }, ; 6402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12314_to, ; char* from + ptr @.TypeMapEntry.12387_from; char* to + }, ; 6403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12317_to, ; char* from + ptr @.TypeMapEntry.12389_from; char* to + }, ; 6404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12317_to, ; char* from + ptr @.TypeMapEntry.12389_from; char* to + }, ; 6405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12317_to, ; char* from + ptr @.TypeMapEntry.12389_from; char* to + }, ; 6406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12317_to, ; char* from + ptr @.TypeMapEntry.12389_from; char* to + }, ; 6407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12320_to, ; char* from + ptr @.TypeMapEntry.12391_from; char* to + }, ; 6408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12320_to, ; char* from + ptr @.TypeMapEntry.12391_from; char* to + }, ; 6409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12320_to, ; char* from + ptr @.TypeMapEntry.12391_from; char* to + }, ; 6410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12320_to, ; char* from + ptr @.TypeMapEntry.12391_from; char* to + }, ; 6411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12323_to, ; char* from + ptr @.TypeMapEntry.12393_from; char* to + }, ; 6412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12323_to, ; char* from + ptr @.TypeMapEntry.12393_from; char* to + }, ; 6413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12323_to, ; char* from + ptr @.TypeMapEntry.12393_from; char* to + }, ; 6414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12323_to, ; char* from + ptr @.TypeMapEntry.12393_from; char* to + }, ; 6415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12326_to, ; char* from + ptr @.TypeMapEntry.12395_from; char* to + }, ; 6416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12326_to, ; char* from + ptr @.TypeMapEntry.12395_from; char* to + }, ; 6417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12326_to, ; char* from + ptr @.TypeMapEntry.12395_from; char* to + }, ; 6418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12326_to, ; char* from + ptr @.TypeMapEntry.12395_from; char* to + }, ; 6419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12401_to, ; char* from + ptr @.TypeMapEntry.12400_from; char* to + }, ; 6420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12398_to, ; char* from + ptr null; char* to + }, ; 6421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12398_to, ; char* from + ptr null; char* to + }, ; 6422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12403_to, ; char* from + ptr @.TypeMapEntry.12402_from; char* to + }, ; 6423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12405_to, ; char* from + ptr @.TypeMapEntry.12404_from; char* to + }, ; 6424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12407_to, ; char* from + ptr @.TypeMapEntry.12406_from; char* to + }, ; 6425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12409_to, ; char* from + ptr @.TypeMapEntry.12408_from; char* to + }, ; 6426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12411_to, ; char* from + ptr @.TypeMapEntry.12410_from; char* to + }, ; 6427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12413_to, ; char* from + ptr @.TypeMapEntry.12412_from; char* to + }, ; 6428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12415_to, ; char* from + ptr @.TypeMapEntry.12414_from; char* to + }, ; 6429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12417_to, ; char* from + ptr @.TypeMapEntry.12416_from; char* to + }, ; 6430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12419_to, ; char* from + ptr @.TypeMapEntry.12418_from; char* to + }, ; 6431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12421_to, ; char* from + ptr @.TypeMapEntry.12420_from; char* to + }, ; 6432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12423_to, ; char* from + ptr @.TypeMapEntry.12422_from; char* to + }, ; 6433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12425_to, ; char* from + ptr @.TypeMapEntry.12424_from; char* to + }, ; 6434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12438_to, ; char* from + ptr @.TypeMapEntry.12437_from; char* to + }, ; 6435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12435_to, ; char* from + ptr null; char* to + }, ; 6436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12435_to, ; char* from + ptr null; char* to + }, ; 6437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12446_to, ; char* from + ptr @.TypeMapEntry.12445_from; char* to + }, ; 6438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12440_to, ; char* from + ptr @.TypeMapEntry.12439_from; char* to + }, ; 6439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12442_to, ; char* from + ptr @.TypeMapEntry.12441_from; char* to + }, ; 6440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12444_to, ; char* from + ptr @.TypeMapEntry.12443_from; char* to + }, ; 6441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12475_to, ; char* from + ptr null; char* to + }, ; 6442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12475_to, ; char* from + ptr null; char* to + }, ; 6443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12478_to, ; char* from + ptr null; char* to + }, ; 6444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12478_to, ; char* from + ptr null; char* to + }, ; 6445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12450_to, ; char* from + ptr @.TypeMapEntry.12449_from; char* to + }, ; 6446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12448_to, ; char* from + ptr @.TypeMapEntry.12447_from; char* to + }, ; 6447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12452_to, ; char* from + ptr @.TypeMapEntry.12451_from; char* to + }, ; 6448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12481_to, ; char* from + ptr null; char* to + }, ; 6449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12481_to, ; char* from + ptr null; char* to + }, ; 6450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12484_to, ; char* from + ptr null; char* to + }, ; 6451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12484_to, ; char* from + ptr null; char* to + }, ; 6452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12490_to, ; char* from + ptr @.TypeMapEntry.12489_from; char* to + }, ; 6453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12487_to, ; char* from + ptr null; char* to + }, ; 6454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12487_to, ; char* from + ptr null; char* to + }, ; 6455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12502_to, ; char* from + ptr @.TypeMapEntry.12501_from; char* to + }, ; 6456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12492_to, ; char* from + ptr @.TypeMapEntry.12491_from; char* to + }, ; 6457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12494_to, ; char* from + ptr @.TypeMapEntry.12493_from; char* to + }, ; 6458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12496_to, ; char* from + ptr @.TypeMapEntry.12495_from; char* to + }, ; 6459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12498_to, ; char* from + ptr @.TypeMapEntry.12497_from; char* to + }, ; 6460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12500_to, ; char* from + ptr @.TypeMapEntry.12499_from; char* to + }, ; 6461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12506_to, ; char* from + ptr @.TypeMapEntry.12505_from; char* to + }, ; 6462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12504_to, ; char* from + ptr @.TypeMapEntry.12503_from; char* to + }, ; 6463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12508_to, ; char* from + ptr @.TypeMapEntry.12507_from; char* to + }, ; 6464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12510_to, ; char* from + ptr @.TypeMapEntry.12509_from; char* to + }, ; 6465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12454_to, ; char* from + ptr @.TypeMapEntry.12453_from; char* to + }, ; 6466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12456_to, ; char* from + ptr @.TypeMapEntry.12455_from; char* to + }, ; 6467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12458_to, ; char* from + ptr @.TypeMapEntry.12457_from; char* to + }, ; 6468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12460_to, ; char* from + ptr @.TypeMapEntry.12459_from; char* to + }, ; 6469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12470_to, ; char* from + ptr null; char* to + }, ; 6470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12470_to, ; char* from + ptr null; char* to + }, ; 6471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12462_to, ; char* from + ptr @.TypeMapEntry.12461_from; char* to + }, ; 6472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12464_to, ; char* from + ptr @.TypeMapEntry.12463_from; char* to + }, ; 6473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12466_to, ; char* from + ptr @.TypeMapEntry.12465_from; char* to + }, ; 6474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12468_to, ; char* from + ptr @.TypeMapEntry.12467_from; char* to + }, ; 6475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12473_to, ; char* from + ptr @.TypeMapEntry.12472_from; char* to + }, ; 6476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12512_to, ; char* from + ptr @.TypeMapEntry.12511_from; char* to + }, ; 6477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12514_to, ; char* from + ptr @.TypeMapEntry.12513_from; char* to + }, ; 6478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12547_to, ; char* from + ptr @.TypeMapEntry.12546_from; char* to + }, ; 6479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12549_to, ; char* from + ptr @.TypeMapEntry.12548_from; char* to + }, ; 6480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12551_to, ; char* from + ptr @.TypeMapEntry.12550_from; char* to + }, ; 6481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12555_to, ; char* from + ptr @.TypeMapEntry.12554_from; char* to + }, ; 6482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12553_to, ; char* from + ptr @.TypeMapEntry.12552_from; char* to + }, ; 6483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12559_to, ; char* from + ptr @.TypeMapEntry.12558_from; char* to + }, ; 6484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12557_to, ; char* from + ptr @.TypeMapEntry.12556_from; char* to + }, ; 6485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12561_to, ; char* from + ptr @.TypeMapEntry.12560_from; char* to + }, ; 6486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12563_to, ; char* from + ptr @.TypeMapEntry.12562_from; char* to + }, ; 6487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12565_to, ; char* from + ptr @.TypeMapEntry.12564_from; char* to + }, ; 6488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12569_to, ; char* from + ptr null; char* to + }, ; 6489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12569_to, ; char* from + ptr null; char* to + }, ; 6490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12567_to, ; char* from + ptr @.TypeMapEntry.12566_from; char* to + }, ; 6491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12572_to, ; char* from + ptr @.TypeMapEntry.12571_from; char* to + }, ; 6492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12574_to, ; char* from + ptr @.TypeMapEntry.12573_from; char* to + }, ; 6493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12576_to, ; char* from + ptr @.TypeMapEntry.12575_from; char* to + }, ; 6494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12578_to, ; char* from + ptr @.TypeMapEntry.12577_from; char* to + }, ; 6495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12580_to, ; char* from + ptr @.TypeMapEntry.12579_from; char* to + }, ; 6496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12521_to, ; char* from + ptr @.TypeMapEntry.12520_from; char* to + }, ; 6497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12519_to, ; char* from + ptr @.TypeMapEntry.12518_from; char* to + }, ; 6498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12516_to, ; char* from + ptr null; char* to + }, ; 6499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12516_to, ; char* from + ptr null; char* to + }, ; 6500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12523_to, ; char* from + ptr @.TypeMapEntry.12522_from; char* to + }, ; 6501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12535_to, ; char* from + ptr null; char* to + }, ; 6502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12535_to, ; char* from + ptr null; char* to + }, ; 6503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12525_to, ; char* from + ptr @.TypeMapEntry.12524_from; char* to + }, ; 6504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12527_to, ; char* from + ptr @.TypeMapEntry.12526_from; char* to + }, ; 6505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12529_to, ; char* from + ptr @.TypeMapEntry.12528_from; char* to + }, ; 6506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12531_to, ; char* from + ptr @.TypeMapEntry.12530_from; char* to + }, ; 6507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12533_to, ; char* from + ptr @.TypeMapEntry.12532_from; char* to + }, ; 6508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12538_to, ; char* from + ptr @.TypeMapEntry.12537_from; char* to + }, ; 6509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12540_to, ; char* from + ptr @.TypeMapEntry.12539_from; char* to + }, ; 6510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12544_to, ; char* from + ptr @.TypeMapEntry.12543_from; char* to + }, ; 6511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12544_to, ; char* from + ptr @.TypeMapEntry.12543_from; char* to + }, ; 6512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12542_to, ; char* from + ptr @.TypeMapEntry.12541_from; char* to + }, ; 6513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12585_to, ; char* from + ptr @.TypeMapEntry.12584_from; char* to + }, ; 6514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12582_to, ; char* from + ptr null; char* to + }, ; 6515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12582_to, ; char* from + ptr null; char* to + }, ; 6516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12587_to, ; char* from + ptr @.TypeMapEntry.12586_from; char* to + }, ; 6517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12589_to, ; char* from + ptr @.TypeMapEntry.12588_from; char* to + }, ; 6518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12591_to, ; char* from + ptr @.TypeMapEntry.12590_from; char* to + }, ; 6519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12593_to, ; char* from + ptr @.TypeMapEntry.12592_from; char* to + }, ; 6520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12595_to, ; char* from + ptr @.TypeMapEntry.12594_from; char* to + }, ; 6521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12597_to, ; char* from + ptr @.TypeMapEntry.12596_from; char* to + }, ; 6522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12599_to, ; char* from + ptr @.TypeMapEntry.12598_from; char* to + }, ; 6523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12601_to, ; char* from + ptr @.TypeMapEntry.12600_from; char* to + }, ; 6524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12605_to, ; char* from + ptr @.TypeMapEntry.12604_from; char* to + }, ; 6525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12605_to, ; char* from + ptr @.TypeMapEntry.12604_from; char* to + }, ; 6526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12603_to, ; char* from + ptr @.TypeMapEntry.12602_from; char* to + }, ; 6527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12612_to, ; char* from + ptr @.TypeMapEntry.12611_from; char* to + }, ; 6528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12612_to, ; char* from + ptr @.TypeMapEntry.12611_from; char* to + }, ; 6529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12608_to, ; char* from + ptr @.TypeMapEntry.12607_from; char* to + }, ; 6530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12610_to, ; char* from + ptr @.TypeMapEntry.12609_from; char* to + }, ; 6531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12615_to, ; char* from + ptr @.TypeMapEntry.12614_from; char* to + }, ; 6532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12621_to, ; char* from + ptr @.TypeMapEntry.12620_from; char* to + }, ; 6533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12621_to, ; char* from + ptr @.TypeMapEntry.12620_from; char* to + }, ; 6534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12617_to, ; char* from + ptr @.TypeMapEntry.12616_from; char* to + }, ; 6535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12619_to, ; char* from + ptr @.TypeMapEntry.12618_from; char* to + }, ; 6536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12628_to, ; char* from + ptr null; char* to + }, ; 6537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12628_to, ; char* from + ptr null; char* to + }, ; 6538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12631_to, ; char* from + ptr null; char* to + }, ; 6539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12631_to, ; char* from + ptr null; char* to + }, ; 6540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12624_to, ; char* from + ptr @.TypeMapEntry.12623_from; char* to + }, ; 6541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12626_to, ; char* from + ptr @.TypeMapEntry.12625_from; char* to + }, ; 6542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12634_to, ; char* from + ptr null; char* to + }, ; 6543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12634_to, ; char* from + ptr null; char* to + }, ; 6544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12640_to, ; char* from + ptr @.TypeMapEntry.12639_from; char* to + }, ; 6545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12640_to, ; char* from + ptr @.TypeMapEntry.12639_from; char* to + }, ; 6546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12642_to, ; char* from + ptr @.TypeMapEntry.12641_from; char* to + }, ; 6547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12644_to, ; char* from + ptr @.TypeMapEntry.12643_from; char* to + }, ; 6548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12646_to, ; char* from + ptr @.TypeMapEntry.12645_from; char* to + }, ; 6549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12649_to, ; char* from + ptr @.TypeMapEntry.12648_from; char* to + }, ; 6550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12651_to, ; char* from + ptr @.TypeMapEntry.12650_from; char* to + }, ; 6551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12653_to, ; char* from + ptr @.TypeMapEntry.12652_from; char* to + }, ; 6552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12655_to, ; char* from + ptr @.TypeMapEntry.12654_from; char* to + }, ; 6553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12657_to, ; char* from + ptr @.TypeMapEntry.12656_from; char* to + }, ; 6554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12637_to, ; char* from + ptr null; char* to + }, ; 6555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12637_to, ; char* from + ptr null; char* to + }, ; 6556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12659_to, ; char* from + ptr @.TypeMapEntry.12658_from; char* to + }, ; 6557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12659_to, ; char* from + ptr @.TypeMapEntry.12658_from; char* to + }, ; 6558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12670_to, ; char* from + ptr @.TypeMapEntry.12669_from; char* to + }, ; 6559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12662_to, ; char* from + ptr null; char* to + }, ; 6560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12662_to, ; char* from + ptr null; char* to + }, ; 6561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12665_to, ; char* from + ptr null; char* to + }, ; 6562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12665_to, ; char* from + ptr null; char* to + }, ; 6563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12676_to, ; char* from + ptr @.TypeMapEntry.12675_from; char* to + }, ; 6564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12674_to, ; char* from + ptr @.TypeMapEntry.12673_from; char* to + }, ; 6565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12672_to, ; char* from + ptr @.TypeMapEntry.12671_from; char* to + }, ; 6566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12678_to, ; char* from + ptr @.TypeMapEntry.12677_from; char* to + }, ; 6567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12680_to, ; char* from + ptr @.TypeMapEntry.12679_from; char* to + }, ; 6568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12680_to, ; char* from + ptr @.TypeMapEntry.12679_from; char* to + }, ; 6569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12683_to, ; char* from + ptr @.TypeMapEntry.12682_from; char* to + }, ; 6570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12685_to, ; char* from + ptr @.TypeMapEntry.12684_from; char* to + }, ; 6571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12687_to, ; char* from + ptr @.TypeMapEntry.12686_from; char* to + }, ; 6572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12689_to, ; char* from + ptr @.TypeMapEntry.12688_from; char* to + }, ; 6573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12691_to, ; char* from + ptr @.TypeMapEntry.12690_from; char* to + }, ; 6574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12693_to, ; char* from + ptr @.TypeMapEntry.12692_from; char* to + }, ; 6575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12695_to, ; char* from + ptr @.TypeMapEntry.12694_from; char* to + }, ; 6576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12697_to, ; char* from + ptr @.TypeMapEntry.12696_from; char* to + }, ; 6577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12699_to, ; char* from + ptr @.TypeMapEntry.12698_from; char* to + }, ; 6578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12701_to, ; char* from + ptr @.TypeMapEntry.12700_from; char* to + }, ; 6579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12705_to, ; char* from + ptr @.TypeMapEntry.12704_from; char* to + }, ; 6580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12703_to, ; char* from + ptr @.TypeMapEntry.12702_from; char* to + }, ; 6581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12707_to, ; char* from + ptr @.TypeMapEntry.12706_from; char* to + }, ; 6582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12707_to, ; char* from + ptr @.TypeMapEntry.12706_from; char* to + }, ; 6583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12715_to, ; char* from + ptr @.TypeMapEntry.12714_from; char* to + }, ; 6584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12713_to, ; char* from + ptr @.TypeMapEntry.12712_from; char* to + }, ; 6585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12710_to, ; char* from + ptr null; char* to + }, ; 6586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12710_to, ; char* from + ptr null; char* to + }, ; 6587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12717_to, ; char* from + ptr @.TypeMapEntry.12716_from; char* to + }, ; 6588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12719_to, ; char* from + ptr @.TypeMapEntry.12718_from; char* to + }, ; 6589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12721_to, ; char* from + ptr @.TypeMapEntry.12720_from; char* to + }, ; 6590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12735_to, ; char* from + ptr @.TypeMapEntry.12734_from; char* to + }, ; 6591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12725_to, ; char* from + ptr @.TypeMapEntry.12724_from; char* to + }, ; 6592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12723_to, ; char* from + ptr @.TypeMapEntry.12722_from; char* to + }, ; 6593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12727_to, ; char* from + ptr @.TypeMapEntry.12726_from; char* to + }, ; 6594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12729_to, ; char* from + ptr @.TypeMapEntry.12728_from; char* to + }, ; 6595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12731_to, ; char* from + ptr @.TypeMapEntry.12730_from; char* to + }, ; 6596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12733_to, ; char* from + ptr @.TypeMapEntry.12732_from; char* to + }, ; 6597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12739_to, ; char* from + ptr @.TypeMapEntry.12738_from; char* to + }, ; 6598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12737_to, ; char* from + ptr @.TypeMapEntry.12736_from; char* to + }, ; 6599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12741_to, ; char* from + ptr @.TypeMapEntry.12740_from; char* to + }, ; 6600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12741_to, ; char* from + ptr @.TypeMapEntry.12740_from; char* to + }, ; 6601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12744_to, ; char* from + ptr @.TypeMapEntry.12743_from; char* to + }, ; 6602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12746_to, ; char* from + ptr @.TypeMapEntry.12745_from; char* to + }, ; 6603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12748_to, ; char* from + ptr @.TypeMapEntry.12747_from; char* to + }, ; 6604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12750_to, ; char* from + ptr @.TypeMapEntry.12749_from; char* to + }, ; 6605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12757_to, ; char* from + ptr @.TypeMapEntry.12756_from; char* to + }, ; 6606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12752_to, ; char* from + ptr null; char* to + }, ; 6607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12752_to, ; char* from + ptr null; char* to + }, ; 6608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12759_to, ; char* from + ptr @.TypeMapEntry.12758_from; char* to + }, ; 6609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12761_to, ; char* from + ptr @.TypeMapEntry.12760_from; char* to + }, ; 6610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12761_to, ; char* from + ptr @.TypeMapEntry.12760_from; char* to + }, ; 6611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12780_to, ; char* from + ptr @.TypeMapEntry.12779_from; char* to + }, ; 6612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12767_to, ; char* from + ptr null; char* to + }, ; 6613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12767_to, ; char* from + ptr null; char* to + }, ; 6614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12764_to, ; char* from + ptr @.TypeMapEntry.12763_from; char* to + }, ; 6615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12764_to, ; char* from + ptr @.TypeMapEntry.12763_from; char* to + }, ; 6616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12770_to, ; char* from + ptr null; char* to + }, ; 6617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12770_to, ; char* from + ptr null; char* to + }, ; 6618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12773_to, ; char* from + ptr null; char* to + }, ; 6619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12773_to, ; char* from + ptr null; char* to + }, ; 6620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12776_to, ; char* from + ptr @.TypeMapEntry.12775_from; char* to + }, ; 6621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12778_to, ; char* from + ptr @.TypeMapEntry.12777_from; char* to + }, ; 6622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12782_to, ; char* from + ptr @.TypeMapEntry.12781_from; char* to + }, ; 6623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12784_to, ; char* from + ptr @.TypeMapEntry.12783_from; char* to + }, ; 6624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12786_to, ; char* from + ptr @.TypeMapEntry.12785_from; char* to + }, ; 6625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12788_to, ; char* from + ptr @.TypeMapEntry.12787_from; char* to + }, ; 6626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12799_to, ; char* from + ptr @.TypeMapEntry.12798_from; char* to + }, ; 6627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12790_to, ; char* from + ptr null; char* to + }, ; 6628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12790_to, ; char* from + ptr null; char* to + }, ; 6629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12793_to, ; char* from + ptr null; char* to + }, ; 6630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12793_to, ; char* from + ptr null; char* to + }, ; 6631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12796_to, ; char* from + ptr null; char* to + }, ; 6632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12796_to, ; char* from + ptr null; char* to + }, ; 6633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12801_to, ; char* from + ptr @.TypeMapEntry.12800_from; char* to + }, ; 6634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12806_to, ; char* from + ptr @.TypeMapEntry.12805_from; char* to + }, ; 6635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12803_to, ; char* from + ptr null; char* to + }, ; 6636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12803_to, ; char* from + ptr null; char* to + }, ; 6637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12808_to, ; char* from + ptr @.TypeMapEntry.12807_from; char* to + }, ; 6638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12810_to, ; char* from + ptr @.TypeMapEntry.12809_from; char* to + }, ; 6639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12812_to, ; char* from + ptr @.TypeMapEntry.12811_from; char* to + }, ; 6640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12814_to, ; char* from + ptr @.TypeMapEntry.12813_from; char* to + }, ; 6641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12816_to, ; char* from + ptr @.TypeMapEntry.12815_from; char* to + }, ; 6642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12818_to, ; char* from + ptr @.TypeMapEntry.12817_from; char* to + }, ; 6643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12822_to, ; char* from + ptr @.TypeMapEntry.12821_from; char* to + }, ; 6644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12820_to, ; char* from + ptr @.TypeMapEntry.12819_from; char* to + }, ; 6645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12827_to, ; char* from + ptr @.TypeMapEntry.12826_from; char* to + }, ; 6646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12824_to, ; char* from + ptr null; char* to + }, ; 6647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12824_to, ; char* from + ptr null; char* to + }, ; 6648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12829_to, ; char* from + ptr @.TypeMapEntry.12828_from; char* to + }, ; 6649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12834_to, ; char* from + ptr @.TypeMapEntry.12833_from; char* to + }, ; 6650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12831_to, ; char* from + ptr null; char* to + }, ; 6651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12831_to, ; char* from + ptr null; char* to + }, ; 6652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12839_to, ; char* from + ptr @.TypeMapEntry.12838_from; char* to + }, ; 6653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12836_to, ; char* from + ptr null; char* to + }, ; 6654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12836_to, ; char* from + ptr null; char* to + }, ; 6655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12856_to, ; char* from + ptr @.TypeMapEntry.12855_from; char* to + }, ; 6656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12856_to, ; char* from + ptr @.TypeMapEntry.12855_from; char* to + }, ; 6657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12859_to, ; char* from + ptr @.TypeMapEntry.12858_from; char* to + }, ; 6658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12861_to, ; char* from + ptr @.TypeMapEntry.12860_from; char* to + }, ; 6659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12863_to, ; char* from + ptr @.TypeMapEntry.12862_from; char* to + }, ; 6660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12841_to, ; char* from + ptr null; char* to + }, ; 6661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12841_to, ; char* from + ptr null; char* to + }, ; 6662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12867_to, ; char* from + ptr @.TypeMapEntry.12866_from; char* to + }, ; 6663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12865_to, ; char* from + ptr @.TypeMapEntry.12864_from; char* to + }, ; 6664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12871_to, ; char* from + ptr @.TypeMapEntry.12870_from; char* to + }, ; 6665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12869_to, ; char* from + ptr @.TypeMapEntry.12868_from; char* to + }, ; 6666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12945_to, ; char* from + ptr @.TypeMapEntry.12944_from; char* to + }, ; 6667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12885_to, ; char* from + ptr @.TypeMapEntry.12884_from; char* to + }, ; 6668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12875_to, ; char* from + ptr @.TypeMapEntry.12874_from; char* to + }, ; 6669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12873_to, ; char* from + ptr @.TypeMapEntry.12872_from; char* to + }, ; 6670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12877_to, ; char* from + ptr null; char* to + }, ; 6671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12877_to, ; char* from + ptr null; char* to + }, ; 6672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12880_to, ; char* from + ptr null; char* to + }, ; 6673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12880_to, ; char* from + ptr null; char* to + }, ; 6674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12883_to, ; char* from + ptr @.TypeMapEntry.12882_from; char* to + }, ; 6675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12912_to, ; char* from + ptr null; char* to + }, ; 6676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12912_to, ; char* from + ptr null; char* to + }, ; 6677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12887_to, ; char* from + ptr @.TypeMapEntry.12886_from; char* to + }, ; 6678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12889_to, ; char* from + ptr @.TypeMapEntry.12888_from; char* to + }, ; 6679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12893_to, ; char* from + ptr @.TypeMapEntry.12892_from; char* to + }, ; 6680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12891_to, ; char* from + ptr @.TypeMapEntry.12890_from; char* to + }, ; 6681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12895_to, ; char* from + ptr @.TypeMapEntry.12894_from; char* to + }, ; 6682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12902_to, ; char* from + ptr @.TypeMapEntry.12901_from; char* to + }, ; 6683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12897_to, ; char* from + ptr @.TypeMapEntry.12896_from; char* to + }, ; 6684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12899_to, ; char* from + ptr null; char* to + }, ; 6685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12899_to, ; char* from + ptr null; char* to + }, ; 6686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12908_to, ; char* from + ptr @.TypeMapEntry.12907_from; char* to + }, ; 6687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12906_to, ; char* from + ptr @.TypeMapEntry.12905_from; char* to + }, ; 6688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12904_to, ; char* from + ptr @.TypeMapEntry.12903_from; char* to + }, ; 6689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12910_to, ; char* from + ptr @.TypeMapEntry.12909_from; char* to + }, ; 6690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12915_to, ; char* from + ptr null; char* to + }, ; 6691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12915_to, ; char* from + ptr null; char* to + }, ; 6692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12918_to, ; char* from + ptr null; char* to + }, ; 6693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12918_to, ; char* from + ptr null; char* to + }, ; 6694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12930_to, ; char* from + ptr @.TypeMapEntry.12929_from; char* to + }, ; 6695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12934_to, ; char* from + ptr @.TypeMapEntry.12933_from; char* to + }, ; 6696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12932_to, ; char* from + ptr @.TypeMapEntry.12931_from; char* to + }, ; 6697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12921_to, ; char* from + ptr null; char* to + }, ; 6698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12921_to, ; char* from + ptr null; char* to + }, ; 6699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12924_to, ; char* from + ptr null; char* to + }, ; 6700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12924_to, ; char* from + ptr null; char* to + }, ; 6701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12927_to, ; char* from + ptr null; char* to + }, ; 6702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12927_to, ; char* from + ptr null; char* to + }, ; 6703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12936_to, ; char* from + ptr @.TypeMapEntry.12935_from; char* to + }, ; 6704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12936_to, ; char* from + ptr @.TypeMapEntry.12935_from; char* to + }, ; 6705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12939_to, ; char* from + ptr @.TypeMapEntry.12938_from; char* to + }, ; 6706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12943_to, ; char* from + ptr @.TypeMapEntry.12942_from; char* to + }, ; 6707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12941_to, ; char* from + ptr @.TypeMapEntry.12940_from; char* to + }, ; 6708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12947_to, ; char* from + ptr @.TypeMapEntry.12946_from; char* to + }, ; 6709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12949_to, ; char* from + ptr @.TypeMapEntry.12948_from; char* to + }, ; 6710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12949_to, ; char* from + ptr @.TypeMapEntry.12948_from; char* to + }, ; 6711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12957_to, ; char* from + ptr @.TypeMapEntry.12956_from; char* to + }, ; 6712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12952_to, ; char* from + ptr null; char* to + }, ; 6713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12952_to, ; char* from + ptr null; char* to + }, ; 6714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12955_to, ; char* from + ptr @.TypeMapEntry.12954_from; char* to + }, ; 6715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12844_to, ; char* from + ptr null; char* to + }, ; 6716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12844_to, ; char* from + ptr null; char* to + }, ; 6717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12847_to, ; char* from + ptr null; char* to + }, ; 6718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12847_to, ; char* from + ptr null; char* to + }, ; 6719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12850_to, ; char* from + ptr null; char* to + }, ; 6720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12850_to, ; char* from + ptr null; char* to + }, ; 6721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12853_to, ; char* from + ptr null; char* to + }, ; 6722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12853_to, ; char* from + ptr null; char* to + }, ; 6723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12962_to, ; char* from + ptr @.TypeMapEntry.12961_from; char* to + }, ; 6724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12959_to, ; char* from + ptr null; char* to + }, ; 6725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12959_to, ; char* from + ptr null; char* to + }, ; 6726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12966_to, ; char* from + ptr @.TypeMapEntry.12965_from; char* to + }, ; 6727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12964_to, ; char* from + ptr @.TypeMapEntry.12963_from; char* to + }, ; 6728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12968_to, ; char* from + ptr @.TypeMapEntry.12967_from; char* to + }, ; 6729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12970_to, ; char* from + ptr @.TypeMapEntry.12969_from; char* to + }, ; 6730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12972_to, ; char* from + ptr @.TypeMapEntry.12971_from; char* to + }, ; 6731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12982_to, ; char* from + ptr @.TypeMapEntry.12981_from; char* to + }, ; 6732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12974_to, ; char* from + ptr @.TypeMapEntry.12973_from; char* to + }, ; 6733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12976_to, ; char* from + ptr null; char* to + }, ; 6734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12976_to, ; char* from + ptr null; char* to + }, ; 6735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12979_to, ; char* from + ptr null; char* to + }, ; 6736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12979_to, ; char* from + ptr null; char* to + }, ; 6737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12987_to, ; char* from + ptr @.TypeMapEntry.12986_from; char* to + }, ; 6738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12984_to, ; char* from + ptr null; char* to + }, ; 6739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12984_to, ; char* from + ptr null; char* to + }, ; 6740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12993_to, ; char* from + ptr @.TypeMapEntry.12992_from; char* to + }, ; 6741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12989_to, ; char* from + ptr @.TypeMapEntry.12988_from; char* to + }, ; 6742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12991_to, ; char* from + ptr @.TypeMapEntry.12990_from; char* to + }, ; 6743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13000_to, ; char* from + ptr @.TypeMapEntry.12999_from; char* to + }, ; 6744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13000_to, ; char* from + ptr @.TypeMapEntry.12999_from; char* to + }, ; 6745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12995_to, ; char* from + ptr null; char* to + }, ; 6746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12995_to, ; char* from + ptr null; char* to + }, ; 6747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13006_to, ; char* from + ptr @.TypeMapEntry.13005_from; char* to + }, ; 6748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13003_to, ; char* from + ptr null; char* to + }, ; 6749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13003_to, ; char* from + ptr null; char* to + }, ; 6750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13008_to, ; char* from + ptr @.TypeMapEntry.13013_from; char* to + }, ; 6751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13008_to, ; char* from + ptr @.TypeMapEntry.13013_from; char* to + }, ; 6752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13008_to, ; char* from + ptr @.TypeMapEntry.13013_from; char* to + }, ; 6753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13008_to, ; char* from + ptr @.TypeMapEntry.13013_from; char* to + }, ; 6754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13016_to, ; char* from + ptr @.TypeMapEntry.13015_from; char* to + }, ; 6755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13018_to, ; char* from + ptr @.TypeMapEntry.13017_from; char* to + }, ; 6756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13018_to, ; char* from + ptr @.TypeMapEntry.13017_from; char* to + }, ; 6757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13011_to, ; char* from + ptr @.TypeMapEntry.13020_from; char* to + }, ; 6758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13011_to, ; char* from + ptr @.TypeMapEntry.13020_from; char* to + }, ; 6759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13011_to, ; char* from + ptr @.TypeMapEntry.13020_from; char* to + }, ; 6760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13011_to, ; char* from + ptr @.TypeMapEntry.13020_from; char* to + }, ; 6761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13023_to, ; char* from + ptr @.TypeMapEntry.13022_from; char* to + }, ; 6762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13025_to, ; char* from + ptr @.TypeMapEntry.13024_from; char* to + }, ; 6763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13025_to, ; char* from + ptr @.TypeMapEntry.13024_from; char* to + }, ; 6764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13028_to, ; char* from + ptr @.TypeMapEntry.13027_from; char* to + }, ; 6765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13030_to, ; char* from + ptr @.TypeMapEntry.13029_from; char* to + }, ; 6766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13032_to, ; char* from + ptr @.TypeMapEntry.13031_from; char* to + }, ; 6767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13037_to, ; char* from + ptr @.TypeMapEntry.13036_from; char* to + }, ; 6768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13034_to, ; char* from + ptr null; char* to + }, ; 6769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13034_to, ; char* from + ptr null; char* to + }, ; 6770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13039_to, ; char* from + ptr @.TypeMapEntry.13038_from; char* to + }, ; 6771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13041_to, ; char* from + ptr @.TypeMapEntry.13040_from; char* to + }, ; 6772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13049_to, ; char* from + ptr @.TypeMapEntry.13048_from; char* to + }, ; 6773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13053_to, ; char* from + ptr @.TypeMapEntry.13052_from; char* to + }, ; 6774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13051_to, ; char* from + ptr @.TypeMapEntry.13050_from; char* to + }, ; 6775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13055_to, ; char* from + ptr @.TypeMapEntry.13054_from; char* to + }, ; 6776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13057_to, ; char* from + ptr @.TypeMapEntry.13056_from; char* to + }, ; 6777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13043_to, ; char* from + ptr null; char* to + }, ; 6778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13043_to, ; char* from + ptr null; char* to + }, ; 6779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13046_to, ; char* from + ptr null; char* to + }, ; 6780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13046_to, ; char* from + ptr null; char* to + }, ; 6781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13096_to, ; char* from + ptr @.TypeMapEntry.13095_from; char* to + }, ; 6782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13093_to, ; char* from + ptr null; char* to + }, ; 6783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13093_to, ; char* from + ptr null; char* to + }, ; 6784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13101_to, ; char* from + ptr @.TypeMapEntry.13100_from; char* to + }, ; 6785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13098_to, ; char* from + ptr null; char* to + }, ; 6786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13098_to, ; char* from + ptr null; char* to + }, ; 6787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13138_to, ; char* from + ptr @.TypeMapEntry.13137_from; char* to + }, ; 6788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13136_to, ; char* from + ptr @.TypeMapEntry.13135_from; char* to + }, ; 6789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13140_to, ; char* from + ptr @.TypeMapEntry.13139_from; char* to + }, ; 6790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13142_to, ; char* from + ptr @.TypeMapEntry.13141_from; char* to + }, ; 6791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13144_to, ; char* from + ptr @.TypeMapEntry.13143_from; char* to + }, ; 6792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13144_to, ; char* from + ptr @.TypeMapEntry.13143_from; char* to + }, ; 6793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13147_to, ; char* from + ptr @.TypeMapEntry.13146_from; char* to + }, ; 6794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13149_to, ; char* from + ptr @.TypeMapEntry.13148_from; char* to + }, ; 6795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13059_to, ; char* from + ptr @.TypeMapEntry.13058_from; char* to + }, ; 6796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13061_to, ; char* from + ptr @.TypeMapEntry.13060_from; char* to + }, ; 6797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13069_to, ; char* from + ptr @.TypeMapEntry.13068_from; char* to + }, ; 6798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13063_to, ; char* from + ptr null; char* to + }, ; 6799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13063_to, ; char* from + ptr null; char* to + }, ; 6800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13065_to, ; char* from + ptr null; char* to + }, ; 6801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13065_to, ; char* from + ptr null; char* to + }, ; 6802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13071_to, ; char* from + ptr @.TypeMapEntry.13070_from; char* to + }, ; 6803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13071_to, ; char* from + ptr @.TypeMapEntry.13070_from; char* to + }, ; 6804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13079_to, ; char* from + ptr @.TypeMapEntry.13078_from; char* to + }, ; 6805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13074_to, ; char* from + ptr @.TypeMapEntry.13073_from; char* to + }, ; 6806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13076_to, ; char* from + ptr null; char* to + }, ; 6807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13076_to, ; char* from + ptr null; char* to + }, ; 6808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13083_to, ; char* from + ptr @.TypeMapEntry.13082_from; char* to + }, ; 6809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13083_to, ; char* from + ptr @.TypeMapEntry.13082_from; char* to + }, ; 6810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13081_to, ; char* from + ptr @.TypeMapEntry.13080_from; char* to + }, ; 6811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13089_to, ; char* from + ptr @.TypeMapEntry.13088_from; char* to + }, ; 6812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13086_to, ; char* from + ptr null; char* to + }, ; 6813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13086_to, ; char* from + ptr null; char* to + }, ; 6814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13091_to, ; char* from + ptr @.TypeMapEntry.13090_from; char* to + }, ; 6815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13103_to, ; char* from + ptr @.TypeMapEntry.13102_from; char* to + }, ; 6816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13105_to, ; char* from + ptr @.TypeMapEntry.13104_from; char* to + }, ; 6817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13107_to, ; char* from + ptr @.TypeMapEntry.13106_from; char* to + }, ; 6818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13109_to, ; char* from + ptr @.TypeMapEntry.13108_from; char* to + }, ; 6819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13123_to, ; char* from + ptr @.TypeMapEntry.13122_from; char* to + }, ; 6820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13115_to, ; char* from + ptr null; char* to + }, ; 6821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13115_to, ; char* from + ptr null; char* to + }, ; 6822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13118_to, ; char* from + ptr null; char* to + }, ; 6823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13118_to, ; char* from + ptr null; char* to + }, ; 6824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13111_to, ; char* from + ptr @.TypeMapEntry.13110_from; char* to + }, ; 6825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13113_to, ; char* from + ptr @.TypeMapEntry.13112_from; char* to + }, ; 6826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13121_to, ; char* from + ptr @.TypeMapEntry.13120_from; char* to + }, ; 6827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13130_to, ; char* from + ptr @.TypeMapEntry.13129_from; char* to + }, ; 6828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13125_to, ; char* from + ptr @.TypeMapEntry.13124_from; char* to + }, ; 6829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13125_to, ; char* from + ptr @.TypeMapEntry.13124_from; char* to + }, ; 6830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13128_to, ; char* from + ptr @.TypeMapEntry.13127_from; char* to + }, ; 6831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13132_to, ; char* from + ptr @.TypeMapEntry.13131_from; char* to + }, ; 6832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13134_to, ; char* from + ptr @.TypeMapEntry.13133_from; char* to + }, ; 6833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13151_to, ; char* from + ptr @.TypeMapEntry.13150_from; char* to + }, ; 6834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13153_to, ; char* from + ptr @.TypeMapEntry.13152_from; char* to + }, ; 6835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13155_to, ; char* from + ptr @.TypeMapEntry.13154_from; char* to + }, ; 6836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13157_to, ; char* from + ptr @.TypeMapEntry.13156_from; char* to + }, ; 6837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13159_to, ; char* from + ptr @.TypeMapEntry.13158_from; char* to + }, ; 6838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13161_to, ; char* from + ptr @.TypeMapEntry.13160_from; char* to + }, ; 6839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13163_to, ; char* from + ptr @.TypeMapEntry.13162_from; char* to + }, ; 6840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13165_to, ; char* from + ptr @.TypeMapEntry.13164_from; char* to + }, ; 6841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13167_to, ; char* from + ptr @.TypeMapEntry.13166_from; char* to + }, ; 6842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13169_to, ; char* from + ptr @.TypeMapEntry.13168_from; char* to + }, ; 6843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13171_to, ; char* from + ptr @.TypeMapEntry.13170_from; char* to + }, ; 6844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13173_to, ; char* from + ptr @.TypeMapEntry.13172_from; char* to + }, ; 6845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13203_to, ; char* from + ptr @.TypeMapEntry.13202_from; char* to + }, ; 6846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13205_to, ; char* from + ptr @.TypeMapEntry.13204_from; char* to + }, ; 6847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13207_to, ; char* from + ptr @.TypeMapEntry.13206_from; char* to + }, ; 6848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13209_to, ; char* from + ptr @.TypeMapEntry.13208_from; char* to + }, ; 6849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13211_to, ; char* from + ptr @.TypeMapEntry.13210_from; char* to + }, ; 6850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13213_to, ; char* from + ptr @.TypeMapEntry.13212_from; char* to + }, ; 6851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13217_to, ; char* from + ptr @.TypeMapEntry.13216_from; char* to + }, ; 6852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13215_to, ; char* from + ptr @.TypeMapEntry.13214_from; char* to + }, ; 6853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13219_to, ; char* from + ptr @.TypeMapEntry.13218_from; char* to + }, ; 6854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13221_to, ; char* from + ptr @.TypeMapEntry.13220_from; char* to + }, ; 6855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13223_to, ; char* from + ptr @.TypeMapEntry.13222_from; char* to + }, ; 6856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13225_to, ; char* from + ptr @.TypeMapEntry.13224_from; char* to + }, ; 6857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13227_to, ; char* from + ptr @.TypeMapEntry.13226_from; char* to + }, ; 6858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13229_to, ; char* from + ptr @.TypeMapEntry.13228_from; char* to + }, ; 6859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13231_to, ; char* from + ptr @.TypeMapEntry.13230_from; char* to + }, ; 6860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13233_to, ; char* from + ptr @.TypeMapEntry.13232_from; char* to + }, ; 6861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13237_to, ; char* from + ptr @.TypeMapEntry.13236_from; char* to + }, ; 6862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13235_to, ; char* from + ptr @.TypeMapEntry.13234_from; char* to + }, ; 6863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13239_to, ; char* from + ptr @.TypeMapEntry.13238_from; char* to + }, ; 6864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13175_to, ; char* from + ptr @.TypeMapEntry.13174_from; char* to + }, ; 6865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13177_to, ; char* from + ptr @.TypeMapEntry.13176_from; char* to + }, ; 6866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13179_to, ; char* from + ptr @.TypeMapEntry.13178_from; char* to + }, ; 6867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13181_to, ; char* from + ptr @.TypeMapEntry.13180_from; char* to + }, ; 6868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13192_to, ; char* from + ptr @.TypeMapEntry.13191_from; char* to + }, ; 6869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13189_to, ; char* from + ptr null; char* to + }, ; 6870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13189_to, ; char* from + ptr null; char* to + }, ; 6871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13194_to, ; char* from + ptr @.TypeMapEntry.13193_from; char* to + }, ; 6872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13196_to, ; char* from + ptr @.TypeMapEntry.13195_from; char* to + }, ; 6873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13198_to, ; char* from + ptr @.TypeMapEntry.13197_from; char* to + }, ; 6874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13198_to, ; char* from + ptr @.TypeMapEntry.13197_from; char* to + }, ; 6875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13200_to, ; char* from + ptr @.TypeMapEntry.13199_from; char* to + }, ; 6876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13183_to, ; char* from + ptr null; char* to + }, ; 6877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13183_to, ; char* from + ptr null; char* to + }, ; 6878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13186_to, ; char* from + ptr null; char* to + }, ; 6879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13186_to, ; char* from + ptr null; char* to + }, ; 6880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13241_to, ; char* from + ptr @.TypeMapEntry.13240_from; char* to + }, ; 6881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13243_to, ; char* from + ptr null; char* to + }, ; 6882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13243_to, ; char* from + ptr null; char* to + }, ; 6883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13253_to, ; char* from + ptr @.TypeMapEntry.13252_from; char* to + }, ; 6884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13246_to, ; char* from + ptr @.TypeMapEntry.13245_from; char* to + }, ; 6885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13246_to, ; char* from + ptr @.TypeMapEntry.13245_from; char* to + }, ; 6886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13249_to, ; char* from + ptr @.TypeMapEntry.13248_from; char* to + }, ; 6887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13251_to, ; char* from + ptr @.TypeMapEntry.13250_from; char* to + }, ; 6888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13255_to, ; char* from + ptr @.TypeMapEntry.13263_from; char* to + }, ; 6889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13255_to, ; char* from + ptr @.TypeMapEntry.13263_from; char* to + }, ; 6890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13255_to, ; char* from + ptr @.TypeMapEntry.13263_from; char* to + }, ; 6891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13255_to, ; char* from + ptr @.TypeMapEntry.13263_from; char* to + }, ; 6892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13258_to, ; char* from + ptr @.TypeMapEntry.13265_from; char* to + }, ; 6893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13258_to, ; char* from + ptr @.TypeMapEntry.13265_from; char* to + }, ; 6894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13258_to, ; char* from + ptr @.TypeMapEntry.13265_from; char* to + }, ; 6895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13258_to, ; char* from + ptr @.TypeMapEntry.13265_from; char* to + }, ; 6896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13261_to, ; char* from + ptr null; char* to + }, ; 6897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13261_to, ; char* from + ptr null; char* to + }, ; 6898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13274_to, ; char* from + ptr @.TypeMapEntry.13273_from; char* to + }, ; 6899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13274_to, ; char* from + ptr @.TypeMapEntry.13273_from; char* to + }, ; 6900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13268_to, ; char* from + ptr @.TypeMapEntry.13267_from; char* to + }, ; 6901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13268_to, ; char* from + ptr @.TypeMapEntry.13267_from; char* to + }, ; 6902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13271_to, ; char* from + ptr null; char* to + }, ; 6903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13271_to, ; char* from + ptr null; char* to + }, ; 6904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13280_to, ; char* from + ptr @.TypeMapEntry.13279_from; char* to + }, ; 6905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13282_to, ; char* from + ptr @.TypeMapEntry.13281_from; char* to + }, ; 6906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13277_to, ; char* from + ptr null; char* to + }, ; 6907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13277_to, ; char* from + ptr null; char* to + }, ; 6908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13284_to, ; char* from + ptr @.TypeMapEntry.13283_from; char* to + }, ; 6909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13291_to, ; char* from + ptr @.TypeMapEntry.13290_from; char* to + }, ; 6910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13286_to, ; char* from + ptr @.TypeMapEntry.13285_from; char* to + }, ; 6911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13288_to, ; char* from + ptr null; char* to + }, ; 6912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13288_to, ; char* from + ptr null; char* to + }, ; 6913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13293_to, ; char* from + ptr @.TypeMapEntry.13292_from; char* to + }, ; 6914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13298_to, ; char* from + ptr @.TypeMapEntry.13297_from; char* to + }, ; 6915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13295_to, ; char* from + ptr null; char* to + }, ; 6916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13295_to, ; char* from + ptr null; char* to + }, ; 6917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13300_to, ; char* from + ptr @.TypeMapEntry.13299_from; char* to + }, ; 6918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13302_to, ; char* from + ptr @.TypeMapEntry.13301_from; char* to + }, ; 6919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13304_to, ; char* from + ptr @.TypeMapEntry.13303_from; char* to + }, ; 6920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13306_to, ; char* from + ptr @.TypeMapEntry.13305_from; char* to + }, ; 6921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13308_to, ; char* from + ptr @.TypeMapEntry.13307_from; char* to + }, ; 6922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13312_to, ; char* from + ptr @.TypeMapEntry.13311_from; char* to + }, ; 6923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13312_to, ; char* from + ptr @.TypeMapEntry.13311_from; char* to + }, ; 6924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13310_to, ; char* from + ptr @.TypeMapEntry.13309_from; char* to + }, ; 6925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13318_to, ; char* from + ptr @.TypeMapEntry.13317_from; char* to + }, ; 6926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13315_to, ; char* from + ptr null; char* to + }, ; 6927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13315_to, ; char* from + ptr null; char* to + }, ; 6928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13320_to, ; char* from + ptr @.TypeMapEntry.13319_from; char* to + }, ; 6929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13322_to, ; char* from + ptr @.TypeMapEntry.13321_from; char* to + }, ; 6930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13329_to, ; char* from + ptr @.TypeMapEntry.13328_from; char* to + }, ; 6931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13324_to, ; char* from + ptr null; char* to + }, ; 6932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13324_to, ; char* from + ptr null; char* to + }, ; 6933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13331_to, ; char* from + ptr @.TypeMapEntry.13330_from; char* to + }, ; 6934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13333_to, ; char* from + ptr @.TypeMapEntry.13332_from; char* to + }, ; 6935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13335_to, ; char* from + ptr @.TypeMapEntry.13334_from; char* to + }, ; 6936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13337_to, ; char* from + ptr @.TypeMapEntry.13336_from; char* to + }, ; 6937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13339_to, ; char* from + ptr @.TypeMapEntry.13338_from; char* to + }, ; 6938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13341_to, ; char* from + ptr @.TypeMapEntry.13340_from; char* to + }, ; 6939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13349_to, ; char* from + ptr @.TypeMapEntry.13348_from; char* to + }, ; 6940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13351_to, ; char* from + ptr @.TypeMapEntry.13350_from; char* to + }, ; 6941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13353_to, ; char* from + ptr @.TypeMapEntry.13352_from; char* to + }, ; 6942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13355_to, ; char* from + ptr @.TypeMapEntry.13354_from; char* to + }, ; 6943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13343_to, ; char* from + ptr null; char* to + }, ; 6944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13343_to, ; char* from + ptr null; char* to + }, ; 6945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13357_to, ; char* from + ptr @.TypeMapEntry.13356_from; char* to + }, ; 6946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13359_to, ; char* from + ptr @.TypeMapEntry.13358_from; char* to + }, ; 6947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13361_to, ; char* from + ptr @.TypeMapEntry.13360_from; char* to + }, ; 6948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13346_to, ; char* from + ptr null; char* to + }, ; 6949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13346_to, ; char* from + ptr null; char* to + }, ; 6950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13363_to, ; char* from + ptr @.TypeMapEntry.13362_from; char* to + }, ; 6951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13365_to, ; char* from + ptr @.TypeMapEntry.13364_from; char* to + }, ; 6952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13367_to, ; char* from + ptr @.TypeMapEntry.13366_from; char* to + }, ; 6953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13369_to, ; char* from + ptr @.TypeMapEntry.13368_from; char* to + }, ; 6954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13371_to, ; char* from + ptr @.TypeMapEntry.13370_from; char* to + }, ; 6955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13371_to, ; char* from + ptr @.TypeMapEntry.13370_from; char* to + }, ; 6956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13374_to, ; char* from + ptr @.TypeMapEntry.13373_from; char* to + }, ; 6957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13376_to, ; char* from + ptr @.TypeMapEntry.13375_from; char* to + }, ; 6958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13378_to, ; char* from + ptr @.TypeMapEntry.13377_from; char* to + }, ; 6959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13380_to, ; char* from + ptr @.TypeMapEntry.13379_from; char* to + }, ; 6960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13382_to, ; char* from + ptr @.TypeMapEntry.13381_from; char* to + }, ; 6961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13384_to, ; char* from + ptr @.TypeMapEntry.13383_from; char* to + }, ; 6962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13388_to, ; char* from + ptr @.TypeMapEntry.13387_from; char* to + }, ; 6963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13386_to, ; char* from + ptr @.TypeMapEntry.13385_from; char* to + }, ; 6964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13390_to, ; char* from + ptr @.TypeMapEntry.13389_from; char* to + }, ; 6965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13406_to, ; char* from + ptr @.TypeMapEntry.13405_from; char* to + }, ; 6966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13392_to, ; char* from + ptr @.TypeMapEntry.13391_from; char* to + }, ; 6967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13394_to, ; char* from + ptr @.TypeMapEntry.13393_from; char* to + }, ; 6968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13396_to, ; char* from + ptr @.TypeMapEntry.13395_from; char* to + }, ; 6969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13401_to, ; char* from + ptr @.TypeMapEntry.13400_from; char* to + }, ; 6970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13398_to, ; char* from + ptr null; char* to + }, ; 6971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13398_to, ; char* from + ptr null; char* to + }, ; 6972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13403_to, ; char* from + ptr null; char* to + }, ; 6973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13403_to, ; char* from + ptr null; char* to + }, ; 6974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13411_to, ; char* from + ptr @.TypeMapEntry.13410_from; char* to + }, ; 6975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13408_to, ; char* from + ptr null; char* to + }, ; 6976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13408_to, ; char* from + ptr null; char* to + }, ; 6977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13413_to, ; char* from + ptr @.TypeMapEntry.13412_from; char* to + }, ; 6978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13415_to, ; char* from + ptr @.TypeMapEntry.13414_from; char* to + }, ; 6979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13419_to, ; char* from + ptr @.TypeMapEntry.13418_from; char* to + }, ; 6980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13421_to, ; char* from + ptr @.TypeMapEntry.13420_from; char* to + }, ; 6981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13417_to, ; char* from + ptr @.TypeMapEntry.13416_from; char* to + }, ; 6982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13425_to, ; char* from + ptr @.TypeMapEntry.13424_from; char* to + }, ; 6983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13423_to, ; char* from + ptr @.TypeMapEntry.13422_from; char* to + }, ; 6984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13427_to, ; char* from + ptr @.TypeMapEntry.13426_from; char* to + }, ; 6985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13429_to, ; char* from + ptr @.TypeMapEntry.13428_from; char* to + }, ; 6986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13431_to, ; char* from + ptr @.TypeMapEntry.13430_from; char* to + }, ; 6987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13433_to, ; char* from + ptr @.TypeMapEntry.13432_from; char* to + }, ; 6988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13438_to, ; char* from + ptr @.TypeMapEntry.13437_from; char* to + }, ; 6989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13446_to, ; char* from + ptr @.TypeMapEntry.13445_from; char* to + }, ; 6990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13444_to, ; char* from + ptr @.TypeMapEntry.13443_from; char* to + }, ; 6991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13442_to, ; char* from + ptr @.TypeMapEntry.13441_from; char* to + }, ; 6992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13448_to, ; char* from + ptr @.TypeMapEntry.13447_from; char* to + }, ; 6993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13450_to, ; char* from + ptr @.TypeMapEntry.13449_from; char* to + }, ; 6994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13452_to, ; char* from + ptr @.TypeMapEntry.13451_from; char* to + }, ; 6995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13454_to, ; char* from + ptr @.TypeMapEntry.13453_from; char* to + }, ; 6996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13435_to, ; char* from + ptr null; char* to + }, ; 6997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13435_to, ; char* from + ptr null; char* to + }, ; 6998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13459_to, ; char* from + ptr @.TypeMapEntry.13458_from; char* to + }, ; 6999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13456_to, ; char* from + ptr @.TypeMapEntry.13455_from; char* to + }, ; 7000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13456_to, ; char* from + ptr @.TypeMapEntry.13455_from; char* to + }, ; 7001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13461_to, ; char* from + ptr @.TypeMapEntry.13460_from; char* to + }, ; 7002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13440_to, ; char* from + ptr @.TypeMapEntry.13439_from; char* to + }, ; 7003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13466_to, ; char* from + ptr @.TypeMapEntry.13465_from; char* to + }, ; 7004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13463_to, ; char* from + ptr null; char* to + }, ; 7005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13463_to, ; char* from + ptr null; char* to + }, ; 7006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13488_to, ; char* from + ptr @.TypeMapEntry.13487_from; char* to + }, ; 7007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13471_to, ; char* from + ptr @.TypeMapEntry.13470_from; char* to + }, ; 7008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13468_to, ; char* from + ptr null; char* to + }, ; 7009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13468_to, ; char* from + ptr null; char* to + }, ; 7010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13476_to, ; char* from + ptr @.TypeMapEntry.13475_from; char* to + }, ; 7011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13473_to, ; char* from + ptr null; char* to + }, ; 7012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13473_to, ; char* from + ptr null; char* to + }, ; 7013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13481_to, ; char* from + ptr @.TypeMapEntry.13480_from; char* to + }, ; 7014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13478_to, ; char* from + ptr null; char* to + }, ; 7015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13478_to, ; char* from + ptr null; char* to + }, ; 7016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13486_to, ; char* from + ptr @.TypeMapEntry.13485_from; char* to + }, ; 7017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13483_to, ; char* from + ptr null; char* to + }, ; 7018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13483_to, ; char* from + ptr null; char* to + }, ; 7019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13490_to, ; char* from + ptr @.TypeMapEntry.13489_from; char* to + }, ; 7020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13492_to, ; char* from + ptr @.TypeMapEntry.13491_from; char* to + }, ; 7021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13494_to, ; char* from + ptr @.TypeMapEntry.13493_from; char* to + }, ; 7022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13496_to, ; char* from + ptr @.TypeMapEntry.13495_from; char* to + }, ; 7023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13504_to, ; char* from + ptr null; char* to + }, ; 7024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13504_to, ; char* from + ptr null; char* to + }, ; 7025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13498_to, ; char* from + ptr @.TypeMapEntry.13497_from; char* to + }, ; 7026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13500_to, ; char* from + ptr @.TypeMapEntry.13499_from; char* to + }, ; 7027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13507_to, ; char* from + ptr null; char* to + }, ; 7028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13507_to, ; char* from + ptr null; char* to + }, ; 7029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13502_to, ; char* from + ptr @.TypeMapEntry.13501_from; char* to + }, ; 7030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13516_to, ; char* from + ptr @.TypeMapEntry.13515_from; char* to + }, ; 7031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13518_to, ; char* from + ptr @.TypeMapEntry.13517_from; char* to + }, ; 7032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13520_to, ; char* from + ptr @.TypeMapEntry.13519_from; char* to + }, ; 7033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13522_to, ; char* from + ptr @.TypeMapEntry.13521_from; char* to + }, ; 7034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13524_to, ; char* from + ptr @.TypeMapEntry.13523_from; char* to + }, ; 7035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13526_to, ; char* from + ptr @.TypeMapEntry.13525_from; char* to + }, ; 7036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13528_to, ; char* from + ptr @.TypeMapEntry.13527_from; char* to + }, ; 7037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13537_to, ; char* from + ptr @.TypeMapEntry.13536_from; char* to + }, ; 7038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13530_to, ; char* from + ptr null; char* to + }, ; 7039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13530_to, ; char* from + ptr null; char* to + }, ; 7040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13533_to, ; char* from + ptr @.TypeMapEntry.13532_from; char* to + }, ; 7041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13535_to, ; char* from + ptr @.TypeMapEntry.13534_from; char* to + }, ; 7042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13539_to, ; char* from + ptr @.TypeMapEntry.13538_from; char* to + }, ; 7043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13510_to, ; char* from + ptr @.TypeMapEntry.13540_from; char* to + }, ; 7044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13510_to, ; char* from + ptr @.TypeMapEntry.13540_from; char* to + }, ; 7045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13510_to, ; char* from + ptr @.TypeMapEntry.13540_from; char* to + }, ; 7046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13510_to, ; char* from + ptr @.TypeMapEntry.13540_from; char* to + }, ; 7047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13543_to, ; char* from + ptr @.TypeMapEntry.13542_from; char* to + }, ; 7048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13545_to, ; char* from + ptr @.TypeMapEntry.13544_from; char* to + }, ; 7049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13547_to, ; char* from + ptr @.TypeMapEntry.13546_from; char* to + }, ; 7050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13549_to, ; char* from + ptr @.TypeMapEntry.13548_from; char* to + }, ; 7051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13551_to, ; char* from + ptr @.TypeMapEntry.13550_from; char* to + }, ; 7052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13553_to, ; char* from + ptr @.TypeMapEntry.13552_from; char* to + }, ; 7053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13555_to, ; char* from + ptr @.TypeMapEntry.13554_from; char* to + }, ; 7054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13557_to, ; char* from + ptr @.TypeMapEntry.13556_from; char* to + }, ; 7055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13513_to, ; char* from + ptr null; char* to + }, ; 7056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13513_to, ; char* from + ptr null; char* to + }, ; 7057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13559_to, ; char* from + ptr @.TypeMapEntry.13558_from; char* to + }, ; 7058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13564_to, ; char* from + ptr @.TypeMapEntry.13563_from; char* to + }, ; 7059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13561_to, ; char* from + ptr null; char* to + }, ; 7060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13561_to, ; char* from + ptr null; char* to + }, ; 7061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13630_to, ; char* from + ptr @.TypeMapEntry.13629_from; char* to + }, ; 7062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13642_to, ; char* from + ptr @.TypeMapEntry.13641_from; char* to + }, ; 7063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13642_to, ; char* from + ptr @.TypeMapEntry.13641_from; char* to + }, ; 7064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13632_to, ; char* from + ptr null; char* to + }, ; 7065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13632_to, ; char* from + ptr null; char* to + }, ; 7066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13637_to, ; char* from + ptr null; char* to + }, ; 7067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13637_to, ; char* from + ptr null; char* to + }, ; 7068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13659_to, ; char* from + ptr @.TypeMapEntry.13658_from; char* to + }, ; 7069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13651_to, ; char* from + ptr @.TypeMapEntry.13650_from; char* to + }, ; 7070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13653_to, ; char* from + ptr null; char* to + }, ; 7071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13653_to, ; char* from + ptr null; char* to + }, ; 7072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13656_to, ; char* from + ptr null; char* to + }, ; 7073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13656_to, ; char* from + ptr null; char* to + }, ; 7074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13661_to, ; char* from + ptr @.TypeMapEntry.13660_from; char* to + }, ; 7075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13690_to, ; char* from + ptr null; char* to + }, ; 7076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13690_to, ; char* from + ptr null; char* to + }, ; 7077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13665_to, ; char* from + ptr @.TypeMapEntry.13664_from; char* to + }, ; 7078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13663_to, ; char* from + ptr @.TypeMapEntry.13662_from; char* to + }, ; 7079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13667_to, ; char* from + ptr @.TypeMapEntry.13666_from; char* to + }, ; 7080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13669_to, ; char* from + ptr @.TypeMapEntry.13668_from; char* to + }, ; 7081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13676_to, ; char* from + ptr @.TypeMapEntry.13675_from; char* to + }, ; 7082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13671_to, ; char* from + ptr null; char* to + }, ; 7083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13671_to, ; char* from + ptr null; char* to + }, ; 7084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13678_to, ; char* from + ptr @.TypeMapEntry.13677_from; char* to + }, ; 7085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13680_to, ; char* from + ptr @.TypeMapEntry.13679_from; char* to + }, ; 7086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13688_to, ; char* from + ptr @.TypeMapEntry.13687_from; char* to + }, ; 7087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13682_to, ; char* from + ptr null; char* to + }, ; 7088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13682_to, ; char* from + ptr null; char* to + }, ; 7089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13685_to, ; char* from + ptr null; char* to + }, ; 7090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13685_to, ; char* from + ptr null; char* to + }, ; 7091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13752_to, ; char* from + ptr @.TypeMapEntry.13751_from; char* to + }, ; 7092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13777_to, ; char* from + ptr @.TypeMapEntry.13776_from; char* to + }, ; 7093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13774_to, ; char* from + ptr null; char* to + }, ; 7094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13774_to, ; char* from + ptr null; char* to + }, ; 7095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13779_to, ; char* from + ptr @.TypeMapEntry.13778_from; char* to + }, ; 7096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13693_to, ; char* from + ptr null; char* to + }, ; 7097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13693_to, ; char* from + ptr null; char* to + }, ; 7098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13781_to, ; char* from + ptr @.TypeMapEntry.13780_from; char* to + }, ; 7099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13783_to, ; char* from + ptr @.TypeMapEntry.13782_from; char* to + }, ; 7100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13696_to, ; char* from + ptr null; char* to + }, ; 7101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13696_to, ; char* from + ptr null; char* to + }, ; 7102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13785_to, ; char* from + ptr @.TypeMapEntry.13784_from; char* to + }, ; 7103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13792_to, ; char* from + ptr @.TypeMapEntry.13791_from; char* to + }, ; 7104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13787_to, ; char* from + ptr null; char* to + }, ; 7105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13787_to, ; char* from + ptr null; char* to + }, ; 7106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13794_to, ; char* from + ptr @.TypeMapEntry.13793_from; char* to + }, ; 7107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13699_to, ; char* from + ptr null; char* to + }, ; 7108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13699_to, ; char* from + ptr null; char* to + }, ; 7109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13796_to, ; char* from + ptr @.TypeMapEntry.13795_from; char* to + }, ; 7110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13702_to, ; char* from + ptr null; char* to + }, ; 7111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13702_to, ; char* from + ptr null; char* to + }, ; 7112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13704_to, ; char* from + ptr null; char* to + }, ; 7113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13704_to, ; char* from + ptr null; char* to + }, ; 7114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13707_to, ; char* from + ptr null; char* to + }, ; 7115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13707_to, ; char* from + ptr null; char* to + }, ; 7116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13798_to, ; char* from + ptr @.TypeMapEntry.13797_from; char* to + }, ; 7117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13711_to, ; char* from + ptr null; char* to + }, ; 7118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13711_to, ; char* from + ptr null; char* to + }, ; 7119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13713_to, ; char* from + ptr null; char* to + }, ; 7120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13713_to, ; char* from + ptr null; char* to + }, ; 7121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13716_to, ; char* from + ptr null; char* to + }, ; 7122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13716_to, ; char* from + ptr null; char* to + }, ; 7123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13800_to, ; char* from + ptr @.TypeMapEntry.13799_from; char* to + }, ; 7124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13720_to, ; char* from + ptr null; char* to + }, ; 7125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13720_to, ; char* from + ptr null; char* to + }, ; 7126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13725_to, ; char* from + ptr null; char* to + }, ; 7127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13725_to, ; char* from + ptr null; char* to + }, ; 7128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13730_to, ; char* from + ptr null; char* to + }, ; 7129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13730_to, ; char* from + ptr null; char* to + }, ; 7130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13802_to, ; char* from + ptr @.TypeMapEntry.13801_from; char* to + }, ; 7131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13804_to, ; char* from + ptr @.TypeMapEntry.13803_from; char* to + }, ; 7132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13806_to, ; char* from + ptr @.TypeMapEntry.13805_from; char* to + }, ; 7133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13808_to, ; char* from + ptr @.TypeMapEntry.13807_from; char* to + }, ; 7134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13733_to, ; char* from + ptr null; char* to + }, ; 7135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13733_to, ; char* from + ptr null; char* to + }, ; 7136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13810_to, ; char* from + ptr @.TypeMapEntry.13809_from; char* to + }, ; 7137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13736_to, ; char* from + ptr null; char* to + }, ; 7138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13736_to, ; char* from + ptr null; char* to + }, ; 7139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13815_to, ; char* from + ptr @.TypeMapEntry.13814_from; char* to + }, ; 7140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13812_to, ; char* from + ptr null; char* to + }, ; 7141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13812_to, ; char* from + ptr null; char* to + }, ; 7142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13838_to, ; char* from + ptr @.TypeMapEntry.13837_from; char* to + }, ; 7143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13817_to, ; char* from + ptr null; char* to + }, ; 7144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13817_to, ; char* from + ptr null; char* to + }, ; 7145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13820_to, ; char* from + ptr null; char* to + }, ; 7146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13820_to, ; char* from + ptr null; char* to + }, ; 7147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13823_to, ; char* from + ptr null; char* to + }, ; 7148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13823_to, ; char* from + ptr null; char* to + }, ; 7149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13826_to, ; char* from + ptr null; char* to + }, ; 7150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13826_to, ; char* from + ptr null; char* to + }, ; 7151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13829_to, ; char* from + ptr null; char* to + }, ; 7152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13829_to, ; char* from + ptr null; char* to + }, ; 7153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13832_to, ; char* from + ptr null; char* to + }, ; 7154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13832_to, ; char* from + ptr null; char* to + }, ; 7155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13835_to, ; char* from + ptr null; char* to + }, ; 7156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13835_to, ; char* from + ptr null; char* to + }, ; 7157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13840_to, ; char* from + ptr @.TypeMapEntry.13839_from; char* to + }, ; 7158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13842_to, ; char* from + ptr @.TypeMapEntry.13841_from; char* to + }, ; 7159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13844_to, ; char* from + ptr @.TypeMapEntry.13843_from; char* to + }, ; 7160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13846_to, ; char* from + ptr @.TypeMapEntry.13845_from; char* to + }, ; 7161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13848_to, ; char* from + ptr @.TypeMapEntry.13847_from; char* to + }, ; 7162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13850_to, ; char* from + ptr @.TypeMapEntry.13849_from; char* to + }, ; 7163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13739_to, ; char* from + ptr null; char* to + }, ; 7164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13739_to, ; char* from + ptr null; char* to + }, ; 7165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13852_to, ; char* from + ptr @.TypeMapEntry.13851_from; char* to + }, ; 7166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13744_to, ; char* from + ptr null; char* to + }, ; 7167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13744_to, ; char* from + ptr null; char* to + }, ; 7168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13854_to, ; char* from + ptr @.TypeMapEntry.13853_from; char* to + }, ; 7169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13856_to, ; char* from + ptr @.TypeMapEntry.13855_from; char* to + }, ; 7170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13866_to, ; char* from + ptr @.TypeMapEntry.13865_from; char* to + }, ; 7171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13858_to, ; char* from + ptr @.TypeMapEntry.13857_from; char* to + }, ; 7172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13863_to, ; char* from + ptr @.TypeMapEntry.13862_from; char* to + }, ; 7173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13863_to, ; char* from + ptr @.TypeMapEntry.13862_from; char* to + }, ; 7174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13860_to, ; char* from + ptr null; char* to + }, ; 7175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13860_to, ; char* from + ptr null; char* to + }, ; 7176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13749_to, ; char* from + ptr null; char* to + }, ; 7177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13749_to, ; char* from + ptr null; char* to + }, ; 7178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13868_to, ; char* from + ptr @.TypeMapEntry.13867_from; char* to + }, ; 7179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13882_to, ; char* from + ptr @.TypeMapEntry.13881_from; char* to + }, ; 7180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13870_to, ; char* from + ptr @.TypeMapEntry.13869_from; char* to + }, ; 7181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13875_to, ; char* from + ptr @.TypeMapEntry.13874_from; char* to + }, ; 7182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13872_to, ; char* from + ptr null; char* to + }, ; 7183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13872_to, ; char* from + ptr null; char* to + }, ; 7184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13880_to, ; char* from + ptr @.TypeMapEntry.13879_from; char* to + }, ; 7185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13877_to, ; char* from + ptr null; char* to + }, ; 7186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13877_to, ; char* from + ptr null; char* to + }, ; 7187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13889_to, ; char* from + ptr @.TypeMapEntry.13888_from; char* to + }, ; 7188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13884_to, ; char* from + ptr null; char* to + }, ; 7189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13884_to, ; char* from + ptr null; char* to + }, ; 7190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13566_to, ; char* from + ptr @.TypeMapEntry.13565_from; char* to + }, ; 7191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13571_to, ; char* from + ptr @.TypeMapEntry.13570_from; char* to + }, ; 7192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13568_to, ; char* from + ptr null; char* to + }, ; 7193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13568_to, ; char* from + ptr null; char* to + }, ; 7194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13586_to, ; char* from + ptr @.TypeMapEntry.13585_from; char* to + }, ; 7195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13576_to, ; char* from + ptr null; char* to + }, ; 7196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13576_to, ; char* from + ptr null; char* to + }, ; 7197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13573_to, ; char* from + ptr @.TypeMapEntry.13572_from; char* to + }, ; 7198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13573_to, ; char* from + ptr @.TypeMapEntry.13572_from; char* to + }, ; 7199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13581_to, ; char* from + ptr null; char* to + }, ; 7200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13581_to, ; char* from + ptr null; char* to + }, ; 7201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13602_to, ; char* from + ptr @.TypeMapEntry.13601_from; char* to + }, ; 7202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13588_to, ; char* from + ptr @.TypeMapEntry.13587_from; char* to + }, ; 7203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13592_to, ; char* from + ptr @.TypeMapEntry.13591_from; char* to + }, ; 7204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13590_to, ; char* from + ptr @.TypeMapEntry.13589_from; char* to + }, ; 7205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13596_to, ; char* from + ptr @.TypeMapEntry.13595_from; char* to + }, ; 7206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13594_to, ; char* from + ptr @.TypeMapEntry.13593_from; char* to + }, ; 7207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13598_to, ; char* from + ptr @.TypeMapEntry.13597_from; char* to + }, ; 7208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13600_to, ; char* from + ptr @.TypeMapEntry.13599_from; char* to + }, ; 7209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13604_to, ; char* from + ptr @.TypeMapEntry.13603_from; char* to + }, ; 7210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13606_to, ; char* from + ptr @.TypeMapEntry.13605_from; char* to + }, ; 7211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13627_to, ; char* from + ptr null; char* to + }, ; 7212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13627_to, ; char* from + ptr null; char* to + }, ; 7213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13608_to, ; char* from + ptr @.TypeMapEntry.13607_from; char* to + }, ; 7214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13608_to, ; char* from + ptr @.TypeMapEntry.13607_from; char* to + }, ; 7215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13611_to, ; char* from + ptr @.TypeMapEntry.13610_from; char* to + }, ; 7216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13613_to, ; char* from + ptr @.TypeMapEntry.13612_from; char* to + }, ; 7217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13615_to, ; char* from + ptr @.TypeMapEntry.13614_from; char* to + }, ; 7218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13617_to, ; char* from + ptr @.TypeMapEntry.13616_from; char* to + }, ; 7219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13619_to, ; char* from + ptr @.TypeMapEntry.13618_from; char* to + }, ; 7220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13621_to, ; char* from + ptr @.TypeMapEntry.13620_from; char* to + }, ; 7221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13623_to, ; char* from + ptr @.TypeMapEntry.13622_from; char* to + }, ; 7222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13625_to, ; char* from + ptr @.TypeMapEntry.13624_from; char* to + }, ; 7223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13645_to, ; char* from + ptr @.TypeMapEntry.13644_from; char* to + }, ; 7224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13647_to, ; char* from + ptr @.TypeMapEntry.13646_from; char* to + }, ; 7225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13649_to, ; char* from + ptr @.TypeMapEntry.13648_from; char* to + }, ; 7226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13754_to, ; char* from + ptr @.TypeMapEntry.13753_from; char* to + }, ; 7227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13761_to, ; char* from + ptr @.TypeMapEntry.13760_from; char* to + }, ; 7228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13756_to, ; char* from + ptr null; char* to + }, ; 7229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13756_to, ; char* from + ptr null; char* to + }, ; 7230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13763_to, ; char* from + ptr @.TypeMapEntry.13762_from; char* to + }, ; 7231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13765_to, ; char* from + ptr @.TypeMapEntry.13764_from; char* to + }, ; 7232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13767_to, ; char* from + ptr @.TypeMapEntry.13766_from; char* to + }, ; 7233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13769_to, ; char* from + ptr @.TypeMapEntry.13768_from; char* to + }, ; 7234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13769_to, ; char* from + ptr @.TypeMapEntry.13768_from; char* to + }, ; 7235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13772_to, ; char* from + ptr @.TypeMapEntry.13771_from; char* to + }, ; 7236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13891_to, ; char* from + ptr @.TypeMapEntry.13890_from; char* to + }, ; 7237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13893_to, ; char* from + ptr @.TypeMapEntry.13892_from; char* to + }, ; 7238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13893_to, ; char* from + ptr @.TypeMapEntry.13892_from; char* to + }, ; 7239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13896_to, ; char* from + ptr @.TypeMapEntry.13895_from; char* to + }, ; 7240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13896_to, ; char* from + ptr @.TypeMapEntry.13895_from; char* to + }, ; 7241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13896_to, ; char* from + ptr @.TypeMapEntry.13895_from; char* to + }, ; 7242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13896_to, ; char* from + ptr @.TypeMapEntry.13895_from; char* to + }, ; 7243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13899_to, ; char* from + ptr @.TypeMapEntry.13898_from; char* to + }, ; 7244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13901_to, ; char* from + ptr @.TypeMapEntry.13900_from; char* to + }, ; 7245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13903_to, ; char* from + ptr @.TypeMapEntry.13902_from; char* to + }, ; 7246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13905_to, ; char* from + ptr @.TypeMapEntry.13904_from; char* to + }, ; 7247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13921_to, ; char* from + ptr @.TypeMapEntry.13920_from; char* to + }, ; 7248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13923_to, ; char* from + ptr @.TypeMapEntry.13922_from; char* to + }, ; 7249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13925_to, ; char* from + ptr @.TypeMapEntry.13924_from; char* to + }, ; 7250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13927_to, ; char* from + ptr @.TypeMapEntry.13926_from; char* to + }, ; 7251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13934_to, ; char* from + ptr @.TypeMapEntry.13933_from; char* to + }, ; 7252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13929_to, ; char* from + ptr null; char* to + }, ; 7253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13929_to, ; char* from + ptr null; char* to + }, ; 7254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13936_to, ; char* from + ptr @.TypeMapEntry.13935_from; char* to + }, ; 7255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13938_to, ; char* from + ptr @.TypeMapEntry.13937_from; char* to + }, ; 7256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13940_to, ; char* from + ptr @.TypeMapEntry.13939_from; char* to + }, ; 7257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13945_to, ; char* from + ptr @.TypeMapEntry.13944_from; char* to + }, ; 7258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13942_to, ; char* from + ptr null; char* to + }, ; 7259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13942_to, ; char* from + ptr null; char* to + }, ; 7260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13947_to, ; char* from + ptr @.TypeMapEntry.13946_from; char* to + }, ; 7261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13949_to, ; char* from + ptr @.TypeMapEntry.13948_from; char* to + }, ; 7262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13909_to, ; char* from + ptr null; char* to + }, ; 7263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13909_to, ; char* from + ptr null; char* to + }, ; 7264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13912_to, ; char* from + ptr null; char* to + }, ; 7265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13912_to, ; char* from + ptr null; char* to + }, ; 7266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13915_to, ; char* from + ptr null; char* to + }, ; 7267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13915_to, ; char* from + ptr null; char* to + }, ; 7268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13918_to, ; char* from + ptr null; char* to + }, ; 7269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13918_to, ; char* from + ptr null; char* to + }, ; 7270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13951_to, ; char* from + ptr @.TypeMapEntry.13950_from; char* to + }, ; 7271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13951_to, ; char* from + ptr @.TypeMapEntry.13950_from; char* to + }, ; 7272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13954_to, ; char* from + ptr @.TypeMapEntry.13953_from; char* to + }, ; 7273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13956_to, ; char* from + ptr @.TypeMapEntry.13955_from; char* to + }, ; 7274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13956_to, ; char* from + ptr @.TypeMapEntry.13955_from; char* to + }, ; 7275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13965_to, ; char* from + ptr @.TypeMapEntry.13964_from; char* to + }, ; 7276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13959_to, ; char* from + ptr null; char* to + }, ; 7277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13959_to, ; char* from + ptr null; char* to + }, ; 7278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13962_to, ; char* from + ptr null; char* to + }, ; 7279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13962_to, ; char* from + ptr null; char* to + }, ; 7280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13972_to, ; char* from + ptr @.TypeMapEntry.13971_from; char* to + }, ; 7281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13967_to, ; char* from + ptr null; char* to + }, ; 7282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13967_to, ; char* from + ptr null; char* to + }, ; 7283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13974_to, ; char* from + ptr @.TypeMapEntry.13973_from; char* to + }, ; 7284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13974_to, ; char* from + ptr @.TypeMapEntry.13973_from; char* to + }, ; 7285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13977_to, ; char* from + ptr @.TypeMapEntry.13976_from; char* to + }, ; 7286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13977_to, ; char* from + ptr @.TypeMapEntry.13976_from; char* to + }, ; 7287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13980_to, ; char* from + ptr null; char* to + }, ; 7288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13980_to, ; char* from + ptr null; char* to + }, ; 7289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13986_to, ; char* from + ptr @.TypeMapEntry.13985_from; char* to + }, ; 7290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13983_to, ; char* from + ptr @.TypeMapEntry.13982_from; char* to + }, ; 7291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13983_to, ; char* from + ptr @.TypeMapEntry.13982_from; char* to + }, ; 7292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14000_to, ; char* from + ptr @.TypeMapEntry.13999_from; char* to + }, ; 7293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13988_to, ; char* from + ptr null; char* to + }, ; 7294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13988_to, ; char* from + ptr null; char* to + }, ; 7295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13993_to, ; char* from + ptr @.TypeMapEntry.13992_from; char* to + }, ; 7296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13995_to, ; char* from + ptr @.TypeMapEntry.13994_from; char* to + }, ; 7297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13997_to, ; char* from + ptr @.TypeMapEntry.13996_from; char* to + }, ; 7298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13997_to, ; char* from + ptr @.TypeMapEntry.13996_from; char* to + }, ; 7299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14009_to, ; char* from + ptr @.TypeMapEntry.14008_from; char* to + }, ; 7300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14004_to, ; char* from + ptr null; char* to + }, ; 7301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14004_to, ; char* from + ptr null; char* to + }, ; 7302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14002_to, ; char* from + ptr @.TypeMapEntry.14001_from; char* to + }, ; 7303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14024_to, ; char* from + ptr @.TypeMapEntry.14023_from; char* to + }, ; 7304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14024_to, ; char* from + ptr @.TypeMapEntry.14023_from; char* to + }, ; 7305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14011_to, ; char* from + ptr null; char* to + }, ; 7306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14011_to, ; char* from + ptr null; char* to + }, ; 7307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14016_to, ; char* from + ptr null; char* to + }, ; 7308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14016_to, ; char* from + ptr null; char* to + }, ; 7309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14021_to, ; char* from + ptr @.TypeMapEntry.14020_from; char* to + }, ; 7310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14021_to, ; char* from + ptr @.TypeMapEntry.14020_from; char* to + }, ; 7311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14027_to, ; char* from + ptr @.TypeMapEntry.14026_from; char* to + }, ; 7312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14029_to, ; char* from + ptr @.TypeMapEntry.14028_from; char* to + }, ; 7313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14029_to, ; char* from + ptr @.TypeMapEntry.14028_from; char* to + }, ; 7314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14032_to, ; char* from + ptr @.TypeMapEntry.14031_from; char* to + }, ; 7315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14034_to, ; char* from + ptr null; char* to + }, ; 7316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14034_to, ; char* from + ptr null; char* to + }, ; 7317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14037_to, ; char* from + ptr @.TypeMapEntry.14036_from; char* to + }, ; 7318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14039_to, ; char* from + ptr @.TypeMapEntry.14038_from; char* to + }, ; 7319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14047_to, ; char* from + ptr @.TypeMapEntry.14046_from; char* to + }, ; 7320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14041_to, ; char* from + ptr @.TypeMapEntry.14040_from; char* to + }, ; 7321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14043_to, ; char* from + ptr @.TypeMapEntry.14042_from; char* to + }, ; 7322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14045_to, ; char* from + ptr @.TypeMapEntry.14044_from; char* to + }, ; 7323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14078_to, ; char* from + ptr @.TypeMapEntry.14077_from; char* to + }, ; 7324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14054_to, ; char* from + ptr null; char* to + }, ; 7325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14054_to, ; char* from + ptr null; char* to + }, ; 7326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14049_to, ; char* from + ptr @.TypeMapEntry.14048_from; char* to + }, ; 7327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14049_to, ; char* from + ptr @.TypeMapEntry.14048_from; char* to + }, ; 7328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14052_to, ; char* from + ptr @.TypeMapEntry.14051_from; char* to + }, ; 7329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14057_to, ; char* from + ptr null; char* to + }, ; 7330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14057_to, ; char* from + ptr null; char* to + }, ; 7331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14072_to, ; char* from + ptr @.TypeMapEntry.14071_from; char* to + }, ; 7332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14072_to, ; char* from + ptr @.TypeMapEntry.14071_from; char* to + }, ; 7333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14060_to, ; char* from + ptr null; char* to + }, ; 7334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14060_to, ; char* from + ptr null; char* to + }, ; 7335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14063_to, ; char* from + ptr null; char* to + }, ; 7336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14063_to, ; char* from + ptr null; char* to + }, ; 7337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14075_to, ; char* from + ptr @.TypeMapEntry.14074_from; char* to + }, ; 7338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14075_to, ; char* from + ptr @.TypeMapEntry.14074_from; char* to + }, ; 7339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14066_to, ; char* from + ptr null; char* to + }, ; 7340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14066_to, ; char* from + ptr null; char* to + }, ; 7341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14069_to, ; char* from + ptr null; char* to + }, ; 7342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14069_to, ; char* from + ptr null; char* to + }, ; 7343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14080_to, ; char* from + ptr @.TypeMapEntry.14079_from; char* to + }, ; 7344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14082_to, ; char* from + ptr @.TypeMapEntry.14081_from; char* to + }, ; 7345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14084_to, ; char* from + ptr @.TypeMapEntry.14083_from; char* to + }, ; 7346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14084_to, ; char* from + ptr @.TypeMapEntry.14083_from; char* to + }, ; 7347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14158_to, ; char* from + ptr @.TypeMapEntry.14157_from; char* to + }, ; 7348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14151_to, ; char* from + ptr @.TypeMapEntry.14150_from; char* to + }, ; 7349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14153_to, ; char* from + ptr @.TypeMapEntry.14152_from; char* to + }, ; 7350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14155_to, ; char* from + ptr @.TypeMapEntry.14154_from; char* to + }, ; 7351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14155_to, ; char* from + ptr @.TypeMapEntry.14154_from; char* to + }, ; 7352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14160_to, ; char* from + ptr @.TypeMapEntry.14159_from; char* to + }, ; 7353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14162_to, ; char* from + ptr @.TypeMapEntry.14161_from; char* to + }, ; 7354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14167_to, ; char* from + ptr @.TypeMapEntry.14166_from; char* to + }, ; 7355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14164_to, ; char* from + ptr null; char* to + }, ; 7356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14164_to, ; char* from + ptr null; char* to + }, ; 7357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14169_to, ; char* from + ptr @.TypeMapEntry.14168_from; char* to + }, ; 7358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14087_to, ; char* from + ptr @.TypeMapEntry.14086_from; char* to + }, ; 7359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14089_to, ; char* from + ptr @.TypeMapEntry.14088_from; char* to + }, ; 7360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14091_to, ; char* from + ptr @.TypeMapEntry.14090_from; char* to + }, ; 7361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14093_to, ; char* from + ptr @.TypeMapEntry.14092_from; char* to + }, ; 7362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14095_to, ; char* from + ptr @.TypeMapEntry.14094_from; char* to + }, ; 7363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14097_to, ; char* from + ptr @.TypeMapEntry.14096_from; char* to + }, ; 7364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14099_to, ; char* from + ptr @.TypeMapEntry.14098_from; char* to + }, ; 7365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14101_to, ; char* from + ptr @.TypeMapEntry.14100_from; char* to + }, ; 7366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14108_to, ; char* from + ptr @.TypeMapEntry.14107_from; char* to + }, ; 7367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14103_to, ; char* from + ptr @.TypeMapEntry.14102_from; char* to + }, ; 7368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14103_to, ; char* from + ptr @.TypeMapEntry.14102_from; char* to + }, ; 7369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14106_to, ; char* from + ptr @.TypeMapEntry.14105_from; char* to + }, ; 7370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14116_to, ; char* from + ptr @.TypeMapEntry.14115_from; char* to + }, ; 7371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14110_to, ; char* from + ptr @.TypeMapEntry.14109_from; char* to + }, ; 7372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14112_to, ; char* from + ptr @.TypeMapEntry.14111_from; char* to + }, ; 7373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14114_to, ; char* from + ptr @.TypeMapEntry.14113_from; char* to + }, ; 7374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14118_to, ; char* from + ptr @.TypeMapEntry.14117_from; char* to + }, ; 7375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14120_to, ; char* from + ptr @.TypeMapEntry.14119_from; char* to + }, ; 7376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14122_to, ; char* from + ptr @.TypeMapEntry.14121_from; char* to + }, ; 7377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14124_to, ; char* from + ptr @.TypeMapEntry.14123_from; char* to + }, ; 7378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14128_to, ; char* from + ptr @.TypeMapEntry.14127_from; char* to + }, ; 7379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14126_to, ; char* from + ptr @.TypeMapEntry.14125_from; char* to + }, ; 7380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14132_to, ; char* from + ptr @.TypeMapEntry.14131_from; char* to + }, ; 7381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14130_to, ; char* from + ptr @.TypeMapEntry.14129_from; char* to + }, ; 7382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14134_to, ; char* from + ptr @.TypeMapEntry.14133_from; char* to + }, ; 7383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14136_to, ; char* from + ptr @.TypeMapEntry.14135_from; char* to + }, ; 7384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14138_to, ; char* from + ptr @.TypeMapEntry.14137_from; char* to + }, ; 7385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14140_to, ; char* from + ptr @.TypeMapEntry.14139_from; char* to + }, ; 7386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14142_to, ; char* from + ptr @.TypeMapEntry.14141_from; char* to + }, ; 7387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14144_to, ; char* from + ptr @.TypeMapEntry.14143_from; char* to + }, ; 7388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14144_to, ; char* from + ptr @.TypeMapEntry.14143_from; char* to + }, ; 7389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14147_to, ; char* from + ptr @.TypeMapEntry.14146_from; char* to + }, ; 7390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14149_to, ; char* from + ptr @.TypeMapEntry.14148_from; char* to + }, ; 7391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14171_to, ; char* from + ptr @.TypeMapEntry.14170_from; char* to + }, ; 7392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14173_to, ; char* from + ptr @.TypeMapEntry.14172_from; char* to + }, ; 7393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14181_to, ; char* from + ptr @.TypeMapEntry.14180_from; char* to + }, ; 7394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14175_to, ; char* from + ptr null; char* to + }, ; 7395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14175_to, ; char* from + ptr null; char* to + }, ; 7396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14178_to, ; char* from + ptr null; char* to + }, ; 7397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14178_to, ; char* from + ptr null; char* to + }, ; 7398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14183_to, ; char* from + ptr @.TypeMapEntry.14182_from; char* to + }, ; 7399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14185_to, ; char* from + ptr @.TypeMapEntry.14184_from; char* to + }, ; 7400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14191_to, ; char* from + ptr @.TypeMapEntry.14190_from; char* to + }, ; 7401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14187_to, ; char* from + ptr @.TypeMapEntry.14186_from; char* to + }, ; 7402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14189_to, ; char* from + ptr @.TypeMapEntry.14188_from; char* to + }, ; 7403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14193_to, ; char* from + ptr @.TypeMapEntry.14192_from; char* to + }, ; 7404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14195_to, ; char* from + ptr @.TypeMapEntry.14194_from; char* to + }, ; 7405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14195_to, ; char* from + ptr @.TypeMapEntry.14194_from; char* to + }, ; 7406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14198_to, ; char* from + ptr @.TypeMapEntry.14197_from; char* to + }, ; 7407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14200_to, ; char* from + ptr @.TypeMapEntry.14199_from; char* to + }, ; 7408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14202_to, ; char* from + ptr @.TypeMapEntry.14201_from; char* to + }, ; 7409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14204_to, ; char* from + ptr @.TypeMapEntry.14203_from; char* to + }, ; 7410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14204_to, ; char* from + ptr @.TypeMapEntry.14203_from; char* to + }, ; 7411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14207_to, ; char* from + ptr @.TypeMapEntry.14206_from; char* to + }, ; 7412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14220_to, ; char* from + ptr @.TypeMapEntry.14219_from; char* to + }, ; 7413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14220_to, ; char* from + ptr @.TypeMapEntry.14219_from; char* to + }, ; 7414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14212_to, ; char* from + ptr null; char* to + }, ; 7415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14212_to, ; char* from + ptr null; char* to + }, ; 7416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14209_to, ; char* from + ptr @.TypeMapEntry.14208_from; char* to + }, ; 7417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14209_to, ; char* from + ptr @.TypeMapEntry.14208_from; char* to + }, ; 7418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14215_to, ; char* from + ptr null; char* to + }, ; 7419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14215_to, ; char* from + ptr null; char* to + }, ; 7420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14223_to, ; char* from + ptr @.TypeMapEntry.14222_from; char* to + }, ; 7421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14225_to, ; char* from + ptr @.TypeMapEntry.14224_from; char* to + }, ; 7422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14245_to, ; char* from + ptr null; char* to + }, ; 7423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14245_to, ; char* from + ptr null; char* to + }, ; 7424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14227_to, ; char* from + ptr @.TypeMapEntry.14226_from; char* to + }, ; 7425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14227_to, ; char* from + ptr @.TypeMapEntry.14226_from; char* to + }, ; 7426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14250_to, ; char* from + ptr null; char* to + }, ; 7427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14250_to, ; char* from + ptr null; char* to + }, ; 7428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14255_to, ; char* from + ptr null; char* to + }, ; 7429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14255_to, ; char* from + ptr null; char* to + }, ; 7430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14230_to, ; char* from + ptr @.TypeMapEntry.14229_from; char* to + }, ; 7431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14230_to, ; char* from + ptr @.TypeMapEntry.14229_from; char* to + }, ; 7432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14233_to, ; char* from + ptr @.TypeMapEntry.14232_from; char* to + }, ; 7433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14235_to, ; char* from + ptr @.TypeMapEntry.14234_from; char* to + }, ; 7434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14235_to, ; char* from + ptr @.TypeMapEntry.14234_from; char* to + }, ; 7435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14238_to, ; char* from + ptr @.TypeMapEntry.14237_from; char* to + }, ; 7436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14240_to, ; char* from + ptr @.TypeMapEntry.14239_from; char* to + }, ; 7437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14240_to, ; char* from + ptr @.TypeMapEntry.14239_from; char* to + }, ; 7438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14243_to, ; char* from + ptr @.TypeMapEntry.14242_from; char* to + }, ; 7439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14261_to, ; char* from + ptr @.TypeMapEntry.14260_from; char* to + }, ; 7440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14258_to, ; char* from + ptr null; char* to + }, ; 7441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14258_to, ; char* from + ptr null; char* to + }, ; 7442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14303_to, ; char* from + ptr @.TypeMapEntry.14302_from; char* to + }, ; 7443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14263_to, ; char* from + ptr @.TypeMapEntry.14262_from; char* to + }, ; 7444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14274_to, ; char* from + ptr @.TypeMapEntry.14273_from; char* to + }, ; 7445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14265_to, ; char* from + ptr null; char* to + }, ; 7446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14265_to, ; char* from + ptr null; char* to + }, ; 7447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14272_to, ; char* from + ptr @.TypeMapEntry.14271_from; char* to + }, ; 7448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14270_to, ; char* from + ptr @.TypeMapEntry.14269_from; char* to + }, ; 7449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14276_to, ; char* from + ptr @.TypeMapEntry.14275_from; char* to + }, ; 7450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14278_to, ; char* from + ptr @.TypeMapEntry.14277_from; char* to + }, ; 7451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14280_to, ; char* from + ptr @.TypeMapEntry.14279_from; char* to + }, ; 7452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14282_to, ; char* from + ptr @.TypeMapEntry.14281_from; char* to + }, ; 7453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14284_to, ; char* from + ptr @.TypeMapEntry.14283_from; char* to + }, ; 7454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14284_to, ; char* from + ptr @.TypeMapEntry.14283_from; char* to + }, ; 7455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14287_to, ; char* from + ptr @.TypeMapEntry.14286_from; char* to + }, ; 7456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14289_to, ; char* from + ptr @.TypeMapEntry.14288_from; char* to + }, ; 7457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14291_to, ; char* from + ptr @.TypeMapEntry.14290_from; char* to + }, ; 7458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14293_to, ; char* from + ptr @.TypeMapEntry.14292_from; char* to + }, ; 7459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14293_to, ; char* from + ptr @.TypeMapEntry.14292_from; char* to + }, ; 7460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14296_to, ; char* from + ptr @.TypeMapEntry.14295_from; char* to + }, ; 7461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14296_to, ; char* from + ptr @.TypeMapEntry.14295_from; char* to + }, ; 7462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14299_to, ; char* from + ptr @.TypeMapEntry.14298_from; char* to + }, ; 7463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14301_to, ; char* from + ptr @.TypeMapEntry.14300_from; char* to + }, ; 7464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14305_to, ; char* from + ptr @.TypeMapEntry.14304_from; char* to + }, ; 7465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14307_to, ; char* from + ptr @.TypeMapEntry.14306_from; char* to + }, ; 7466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14309_to, ; char* from + ptr @.TypeMapEntry.14308_from; char* to + }, ; 7467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14311_to, ; char* from + ptr @.TypeMapEntry.14310_from; char* to + }, ; 7468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14311_to, ; char* from + ptr @.TypeMapEntry.14310_from; char* to + }, ; 7469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14314_to, ; char* from + ptr @.TypeMapEntry.14313_from; char* to + }, ; 7470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14314_to, ; char* from + ptr @.TypeMapEntry.14313_from; char* to + }, ; 7471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14317_to, ; char* from + ptr @.TypeMapEntry.14316_from; char* to + }, ; 7472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14319_to, ; char* from + ptr @.TypeMapEntry.14318_from; char* to + }, ; 7473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14321_to, ; char* from + ptr @.TypeMapEntry.14320_from; char* to + }, ; 7474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14321_to, ; char* from + ptr @.TypeMapEntry.14320_from; char* to + }, ; 7475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14324_to, ; char* from + ptr @.TypeMapEntry.14323_from; char* to + }, ; 7476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14330_to, ; char* from + ptr null; char* to + }, ; 7477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14330_to, ; char* from + ptr null; char* to + }, ; 7478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14326_to, ; char* from + ptr @.TypeMapEntry.14325_from; char* to + }, ; 7479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14328_to, ; char* from + ptr @.TypeMapEntry.14327_from; char* to + }, ; 7480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14333_to, ; char* from + ptr null; char* to + }, ; 7481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14333_to, ; char* from + ptr null; char* to + }, ; 7482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14336_to, ; char* from + ptr null; char* to + }, ; 7483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14336_to, ; char* from + ptr null; char* to + }, ; 7484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14339_to, ; char* from + ptr null; char* to + }, ; 7485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14339_to, ; char* from + ptr null; char* to + }, ; 7486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14373_to, ; char* from + ptr @.TypeMapEntry.14372_from; char* to + }, ; 7487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14373_to, ; char* from + ptr @.TypeMapEntry.14372_from; char* to + }, ; 7488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14369_to, ; char* from + ptr @.TypeMapEntry.14368_from; char* to + }, ; 7489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14365_to, ; char* from + ptr @.TypeMapEntry.14364_from; char* to + }, ; 7490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14363_to, ; char* from + ptr @.TypeMapEntry.14362_from; char* to + }, ; 7491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14367_to, ; char* from + ptr @.TypeMapEntry.14366_from; char* to + }, ; 7492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14371_to, ; char* from + ptr @.TypeMapEntry.14370_from; char* to + }, ; 7493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14375_to, ; char* from + ptr @.TypeMapEntry.14374_from; char* to + }, ; 7494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14375_to, ; char* from + ptr @.TypeMapEntry.14374_from; char* to + }, ; 7495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14378_to, ; char* from + ptr @.TypeMapEntry.14377_from; char* to + }, ; 7496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14342_to, ; char* from + ptr null; char* to + }, ; 7497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14342_to, ; char* from + ptr null; char* to + }, ; 7498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14381_to, ; char* from + ptr @.TypeMapEntry.14380_from; char* to + }, ; 7499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14345_to, ; char* from + ptr null; char* to + }, ; 7500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14345_to, ; char* from + ptr null; char* to + }, ; 7501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14348_to, ; char* from + ptr null; char* to + }, ; 7502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14348_to, ; char* from + ptr null; char* to + }, ; 7503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14383_to, ; char* from + ptr @.TypeMapEntry.14382_from; char* to + }, ; 7504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14387_to, ; char* from + ptr @.TypeMapEntry.14386_from; char* to + }, ; 7505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14385_to, ; char* from + ptr @.TypeMapEntry.14384_from; char* to + }, ; 7506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14351_to, ; char* from + ptr null; char* to + }, ; 7507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14351_to, ; char* from + ptr null; char* to + }, ; 7508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14389_to, ; char* from + ptr @.TypeMapEntry.14388_from; char* to + }, ; 7509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14391_to, ; char* from + ptr @.TypeMapEntry.14390_from; char* to + }, ; 7510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14393_to, ; char* from + ptr @.TypeMapEntry.14392_from; char* to + }, ; 7511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14400_to, ; char* from + ptr @.TypeMapEntry.14399_from; char* to + }, ; 7512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14400_to, ; char* from + ptr @.TypeMapEntry.14399_from; char* to + }, ; 7513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14395_to, ; char* from + ptr @.TypeMapEntry.14394_from; char* to + }, ; 7514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14397_to, ; char* from + ptr @.TypeMapEntry.14396_from; char* to + }, ; 7515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14397_to, ; char* from + ptr @.TypeMapEntry.14396_from; char* to + }, ; 7516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14403_to, ; char* from + ptr @.TypeMapEntry.14402_from; char* to + }, ; 7517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14354_to, ; char* from + ptr null; char* to + }, ; 7518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14354_to, ; char* from + ptr null; char* to + }, ; 7519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14405_to, ; char* from + ptr @.TypeMapEntry.14404_from; char* to + }, ; 7520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14407_to, ; char* from + ptr @.TypeMapEntry.14406_from; char* to + }, ; 7521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14409_to, ; char* from + ptr @.TypeMapEntry.14408_from; char* to + }, ; 7522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14357_to, ; char* from + ptr null; char* to + }, ; 7523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14357_to, ; char* from + ptr null; char* to + }, ; 7524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14411_to, ; char* from + ptr @.TypeMapEntry.14410_from; char* to + }, ; 7525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14413_to, ; char* from + ptr @.TypeMapEntry.14412_from; char* to + }, ; 7526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14417_to, ; char* from + ptr @.TypeMapEntry.14416_from; char* to + }, ; 7527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14415_to, ; char* from + ptr @.TypeMapEntry.14414_from; char* to + }, ; 7528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14419_to, ; char* from + ptr @.TypeMapEntry.14418_from; char* to + }, ; 7529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14428_to, ; char* from + ptr @.TypeMapEntry.14427_from; char* to + }, ; 7530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14423_to, ; char* from + ptr null; char* to + }, ; 7531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14423_to, ; char* from + ptr null; char* to + }, ; 7532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14421_to, ; char* from + ptr @.TypeMapEntry.14420_from; char* to + }, ; 7533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14432_to, ; char* from + ptr @.TypeMapEntry.14431_from; char* to + }, ; 7534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14430_to, ; char* from + ptr @.TypeMapEntry.14429_from; char* to + }, ; 7535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14434_to, ; char* from + ptr @.TypeMapEntry.14433_from; char* to + }, ; 7536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14436_to, ; char* from + ptr @.TypeMapEntry.14435_from; char* to + }, ; 7537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14438_to, ; char* from + ptr @.TypeMapEntry.14437_from; char* to + }, ; 7538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14440_to, ; char* from + ptr @.TypeMapEntry.14439_from; char* to + }, ; 7539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14442_to, ; char* from + ptr @.TypeMapEntry.14441_from; char* to + }, ; 7540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14444_to, ; char* from + ptr @.TypeMapEntry.14443_from; char* to + }, ; 7541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14446_to, ; char* from + ptr @.TypeMapEntry.14445_from; char* to + }, ; 7542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14446_to, ; char* from + ptr @.TypeMapEntry.14445_from; char* to + }, ; 7543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14449_to, ; char* from + ptr @.TypeMapEntry.14448_from; char* to + }, ; 7544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14451_to, ; char* from + ptr @.TypeMapEntry.14450_from; char* to + }, ; 7545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14472_to, ; char* from + ptr @.TypeMapEntry.14471_from; char* to + }, ; 7546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14455_to, ; char* from + ptr @.TypeMapEntry.14454_from; char* to + }, ; 7547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14453_to, ; char* from + ptr @.TypeMapEntry.14452_from; char* to + }, ; 7548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14457_to, ; char* from + ptr @.TypeMapEntry.14456_from; char* to + }, ; 7549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14459_to, ; char* from + ptr @.TypeMapEntry.14458_from; char* to + }, ; 7550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14459_to, ; char* from + ptr @.TypeMapEntry.14458_from; char* to + }, ; 7551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14459_to, ; char* from + ptr @.TypeMapEntry.14458_from; char* to + }, ; 7552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14459_to, ; char* from + ptr @.TypeMapEntry.14458_from; char* to + }, ; 7553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14461_to, ; char* from + ptr @.TypeMapEntry.14460_from; char* to + }, ; 7554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14468_to, ; char* from + ptr @.TypeMapEntry.14467_from; char* to + }, ; 7555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14466_to, ; char* from + ptr @.TypeMapEntry.14465_from; char* to + }, ; 7556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14470_to, ; char* from + ptr @.TypeMapEntry.14469_from; char* to + }, ; 7557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14474_to, ; char* from + ptr @.TypeMapEntry.14473_from; char* to + }, ; 7558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14476_to, ; char* from + ptr @.TypeMapEntry.14475_from; char* to + }, ; 7559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14360_to, ; char* from + ptr null; char* to + }, ; 7560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14360_to, ; char* from + ptr null; char* to + }, ; 7561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14507_to, ; char* from + ptr @.TypeMapEntry.14506_from; char* to + }, ; 7562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14509_to, ; char* from + ptr @.TypeMapEntry.14508_from; char* to + }, ; 7563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14511_to, ; char* from + ptr @.TypeMapEntry.14510_from; char* to + }, ; 7564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14513_to, ; char* from + ptr @.TypeMapEntry.14512_from; char* to + }, ; 7565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14483_to, ; char* from + ptr @.TypeMapEntry.14482_from; char* to + }, ; 7566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14483_to, ; char* from + ptr @.TypeMapEntry.14482_from; char* to + }, ; 7567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14478_to, ; char* from + ptr @.TypeMapEntry.14477_from; char* to + }, ; 7568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14480_to, ; char* from + ptr null; char* to + }, ; 7569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14480_to, ; char* from + ptr null; char* to + }, ; 7570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14489_to, ; char* from + ptr @.TypeMapEntry.14488_from; char* to + }, ; 7571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14491_to, ; char* from + ptr @.TypeMapEntry.14490_from; char* to + }, ; 7572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14501_to, ; char* from + ptr @.TypeMapEntry.14500_from; char* to + }, ; 7573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14486_to, ; char* from + ptr null; char* to + }, ; 7574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14486_to, ; char* from + ptr null; char* to + }, ; 7575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14503_to, ; char* from + ptr @.TypeMapEntry.14502_from; char* to + }, ; 7576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14505_to, ; char* from + ptr @.TypeMapEntry.14504_from; char* to + }, ; 7577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14493_to, ; char* from + ptr @.TypeMapEntry.14492_from; char* to + }, ; 7578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14495_to, ; char* from + ptr @.TypeMapEntry.14494_from; char* to + }, ; 7579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14497_to, ; char* from + ptr @.TypeMapEntry.14496_from; char* to + }, ; 7580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14499_to, ; char* from + ptr @.TypeMapEntry.14498_from; char* to + }, ; 7581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14518_to, ; char* from + ptr @.TypeMapEntry.14517_from; char* to + }, ; 7582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14518_to, ; char* from + ptr @.TypeMapEntry.14517_from; char* to + }, ; 7583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14515_to, ; char* from + ptr null; char* to + }, ; 7584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14515_to, ; char* from + ptr null; char* to + }, ; 7585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14521_to, ; char* from + ptr @.TypeMapEntry.14520_from; char* to + }, ; 7586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14521_to, ; char* from + ptr @.TypeMapEntry.14520_from; char* to + }, ; 7587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14524_to, ; char* from + ptr @.TypeMapEntry.14523_from; char* to + }, ; 7588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14538_to, ; char* from + ptr @.TypeMapEntry.14537_from; char* to + }, ; 7589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14526_to, ; char* from + ptr @.TypeMapEntry.14525_from; char* to + }, ; 7590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14528_to, ; char* from + ptr null; char* to + }, ; 7591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14528_to, ; char* from + ptr null; char* to + }, ; 7592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14533_to, ; char* from + ptr null; char* to + }, ; 7593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14533_to, ; char* from + ptr null; char* to + }, ; 7594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14540_to, ; char* from + ptr @.TypeMapEntry.14539_from; char* to + }, ; 7595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14542_to, ; char* from + ptr @.TypeMapEntry.14541_from; char* to + }, ; 7596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14544_to, ; char* from + ptr @.TypeMapEntry.14543_from; char* to + }, ; 7597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14554_to, ; char* from + ptr @.TypeMapEntry.14553_from; char* to + }, ; 7598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14546_to, ; char* from + ptr @.TypeMapEntry.14545_from; char* to + }, ; 7599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14548_to, ; char* from + ptr @.TypeMapEntry.14547_from; char* to + }, ; 7600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14552_to, ; char* from + ptr @.TypeMapEntry.14551_from; char* to + }, ; 7601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14550_to, ; char* from + ptr @.TypeMapEntry.14549_from; char* to + }, ; 7602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14556_to, ; char* from + ptr @.TypeMapEntry.14555_from; char* to + }, ; 7603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14558_to, ; char* from + ptr @.TypeMapEntry.14557_from; char* to + }, ; 7604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14560_to, ; char* from + ptr @.TypeMapEntry.14559_from; char* to + }, ; 7605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14562_to, ; char* from + ptr @.TypeMapEntry.14561_from; char* to + }, ; 7606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14564_to, ; char* from + ptr @.TypeMapEntry.14563_from; char* to + }, ; 7607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14564_to, ; char* from + ptr @.TypeMapEntry.14563_from; char* to + }, ; 7608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14600_to, ; char* from + ptr null; char* to + }, ; 7609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14600_to, ; char* from + ptr null; char* to + }, ; 7610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14627_to, ; char* from + ptr @.TypeMapEntry.14626_from; char* to + }, ; 7611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14629_to, ; char* from + ptr @.TypeMapEntry.14628_from; char* to + }, ; 7612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14631_to, ; char* from + ptr @.TypeMapEntry.14630_from; char* to + }, ; 7613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14633_to, ; char* from + ptr @.TypeMapEntry.14632_from; char* to + }, ; 7614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14603_to, ; char* from + ptr null; char* to + }, ; 7615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14603_to, ; char* from + ptr null; char* to + }, ; 7616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14635_to, ; char* from + ptr @.TypeMapEntry.14634_from; char* to + }, ; 7617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14637_to, ; char* from + ptr @.TypeMapEntry.14636_from; char* to + }, ; 7618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14641_to, ; char* from + ptr @.TypeMapEntry.14640_from; char* to + }, ; 7619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14639_to, ; char* from + ptr @.TypeMapEntry.14638_from; char* to + }, ; 7620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14643_to, ; char* from + ptr @.TypeMapEntry.14642_from; char* to + }, ; 7621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14645_to, ; char* from + ptr @.TypeMapEntry.14644_from; char* to + }, ; 7622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14649_to, ; char* from + ptr @.TypeMapEntry.14648_from; char* to + }, ; 7623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14647_to, ; char* from + ptr @.TypeMapEntry.14646_from; char* to + }, ; 7624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14651_to, ; char* from + ptr @.TypeMapEntry.14650_from; char* to + }, ; 7625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14660_to, ; char* from + ptr @.TypeMapEntry.14659_from; char* to + }, ; 7626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14653_to, ; char* from + ptr @.TypeMapEntry.14652_from; char* to + }, ; 7627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14655_to, ; char* from + ptr null; char* to + }, ; 7628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14655_to, ; char* from + ptr null; char* to + }, ; 7629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14662_to, ; char* from + ptr @.TypeMapEntry.14661_from; char* to + }, ; 7630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14666_to, ; char* from + ptr @.TypeMapEntry.14665_from; char* to + }, ; 7631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14664_to, ; char* from + ptr @.TypeMapEntry.14663_from; char* to + }, ; 7632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14668_to, ; char* from + ptr @.TypeMapEntry.14667_from; char* to + }, ; 7633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14606_to, ; char* from + ptr null; char* to + }, ; 7634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14606_to, ; char* from + ptr null; char* to + }, ; 7635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14670_to, ; char* from + ptr @.TypeMapEntry.14669_from; char* to + }, ; 7636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14672_to, ; char* from + ptr @.TypeMapEntry.14671_from; char* to + }, ; 7637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14678_to, ; char* from + ptr @.TypeMapEntry.14677_from; char* to + }, ; 7638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14676_to, ; char* from + ptr @.TypeMapEntry.14675_from; char* to + }, ; 7639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14674_to, ; char* from + ptr @.TypeMapEntry.14673_from; char* to + }, ; 7640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14609_to, ; char* from + ptr null; char* to + }, ; 7641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14609_to, ; char* from + ptr null; char* to + }, ; 7642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14687_to, ; char* from + ptr @.TypeMapEntry.14686_from; char* to + }, ; 7643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14684_to, ; char* from + ptr null; char* to + }, ; 7644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14684_to, ; char* from + ptr null; char* to + }, ; 7645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14680_to, ; char* from + ptr @.TypeMapEntry.14679_from; char* to + }, ; 7646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14682_to, ; char* from + ptr @.TypeMapEntry.14681_from; char* to + }, ; 7647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14689_to, ; char* from + ptr @.TypeMapEntry.14688_from; char* to + }, ; 7648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14612_to, ; char* from + ptr null; char* to + }, ; 7649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14612_to, ; char* from + ptr null; char* to + }, ; 7650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14615_to, ; char* from + ptr null; char* to + }, ; 7651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14615_to, ; char* from + ptr null; char* to + }, ; 7652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14693_to, ; char* from + ptr @.TypeMapEntry.14692_from; char* to + }, ; 7653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14691_to, ; char* from + ptr @.TypeMapEntry.14690_from; char* to + }, ; 7654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14695_to, ; char* from + ptr @.TypeMapEntry.14694_from; char* to + }, ; 7655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14697_to, ; char* from + ptr @.TypeMapEntry.14696_from; char* to + }, ; 7656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14699_to, ; char* from + ptr @.TypeMapEntry.14698_from; char* to + }, ; 7657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14701_to, ; char* from + ptr @.TypeMapEntry.14700_from; char* to + }, ; 7658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14703_to, ; char* from + ptr @.TypeMapEntry.14702_from; char* to + }, ; 7659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14618_to, ; char* from + ptr null; char* to + }, ; 7660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14618_to, ; char* from + ptr null; char* to + }, ; 7661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14705_to, ; char* from + ptr @.TypeMapEntry.14704_from; char* to + }, ; 7662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14707_to, ; char* from + ptr @.TypeMapEntry.14706_from; char* to + }, ; 7663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14711_to, ; char* from + ptr @.TypeMapEntry.14710_from; char* to + }, ; 7664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14709_to, ; char* from + ptr @.TypeMapEntry.14708_from; char* to + }, ; 7665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14715_to, ; char* from + ptr @.TypeMapEntry.14714_from; char* to + }, ; 7666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14713_to, ; char* from + ptr @.TypeMapEntry.14712_from; char* to + }, ; 7667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14717_to, ; char* from + ptr @.TypeMapEntry.14716_from; char* to + }, ; 7668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14719_to, ; char* from + ptr @.TypeMapEntry.14718_from; char* to + }, ; 7669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14621_to, ; char* from + ptr null; char* to + }, ; 7670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14621_to, ; char* from + ptr null; char* to + }, ; 7671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14733_to, ; char* from + ptr @.TypeMapEntry.14732_from; char* to + }, ; 7672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14733_to, ; char* from + ptr @.TypeMapEntry.14732_from; char* to + }, ; 7673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14721_to, ; char* from + ptr @.TypeMapEntry.14720_from; char* to + }, ; 7674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14723_to, ; char* from + ptr @.TypeMapEntry.14722_from; char* to + }, ; 7675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14725_to, ; char* from + ptr @.TypeMapEntry.14724_from; char* to + }, ; 7676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14727_to, ; char* from + ptr @.TypeMapEntry.14726_from; char* to + }, ; 7677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14729_to, ; char* from + ptr @.TypeMapEntry.14728_from; char* to + }, ; 7678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14731_to, ; char* from + ptr @.TypeMapEntry.14730_from; char* to + }, ; 7679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14624_to, ; char* from + ptr null; char* to + }, ; 7680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14624_to, ; char* from + ptr null; char* to + }, ; 7681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14736_to, ; char* from + ptr @.TypeMapEntry.14735_from; char* to + }, ; 7682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14744_to, ; char* from + ptr @.TypeMapEntry.14743_from; char* to + }, ; 7683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14744_to, ; char* from + ptr @.TypeMapEntry.14743_from; char* to + }, ; 7684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14738_to, ; char* from + ptr null; char* to + }, ; 7685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14738_to, ; char* from + ptr null; char* to + }, ; 7686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14741_to, ; char* from + ptr null; char* to + }, ; 7687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14741_to, ; char* from + ptr null; char* to + }, ; 7688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14747_to, ; char* from + ptr @.TypeMapEntry.14746_from; char* to + }, ; 7689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14749_to, ; char* from + ptr @.TypeMapEntry.14748_from; char* to + }, ; 7690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14751_to, ; char* from + ptr @.TypeMapEntry.14750_from; char* to + }, ; 7691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14751_to, ; char* from + ptr @.TypeMapEntry.14750_from; char* to + }, ; 7692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14754_to, ; char* from + ptr @.TypeMapEntry.14753_from; char* to + }, ; 7693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14756_to, ; char* from + ptr @.TypeMapEntry.14755_from; char* to + }, ; 7694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14758_to, ; char* from + ptr @.TypeMapEntry.14757_from; char* to + }, ; 7695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14800_to, ; char* from + ptr @.TypeMapEntry.14799_from; char* to + }, ; 7696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14567_to, ; char* from + ptr @.TypeMapEntry.14566_from; char* to + }, ; 7697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14567_to, ; char* from + ptr @.TypeMapEntry.14566_from; char* to + }, ; 7698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14572_to, ; char* from + ptr @.TypeMapEntry.14571_from; char* to + }, ; 7699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14570_to, ; char* from + ptr @.TypeMapEntry.14569_from; char* to + }, ; 7700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14574_to, ; char* from + ptr @.TypeMapEntry.14573_from; char* to + }, ; 7701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14576_to, ; char* from + ptr @.TypeMapEntry.14575_from; char* to + }, ; 7702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14578_to, ; char* from + ptr @.TypeMapEntry.14577_from; char* to + }, ; 7703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14580_to, ; char* from + ptr @.TypeMapEntry.14579_from; char* to + }, ; 7704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14588_to, ; char* from + ptr @.TypeMapEntry.14587_from; char* to + }, ; 7705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14582_to, ; char* from + ptr @.TypeMapEntry.14581_from; char* to + }, ; 7706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14586_to, ; char* from + ptr @.TypeMapEntry.14585_from; char* to + }, ; 7707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14584_to, ; char* from + ptr @.TypeMapEntry.14583_from; char* to + }, ; 7708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14590_to, ; char* from + ptr @.TypeMapEntry.14589_from; char* to + }, ; 7709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14592_to, ; char* from + ptr @.TypeMapEntry.14591_from; char* to + }, ; 7710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14594_to, ; char* from + ptr @.TypeMapEntry.14593_from; char* to + }, ; 7711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14598_to, ; char* from + ptr @.TypeMapEntry.14597_from; char* to + }, ; 7712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14596_to, ; char* from + ptr @.TypeMapEntry.14595_from; char* to + }, ; 7713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14762_to, ; char* from + ptr @.TypeMapEntry.14761_from; char* to + }, ; 7714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14760_to, ; char* from + ptr @.TypeMapEntry.14759_from; char* to + }, ; 7715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14764_to, ; char* from + ptr @.TypeMapEntry.14763_from; char* to + }, ; 7716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14766_to, ; char* from + ptr @.TypeMapEntry.14765_from; char* to + }, ; 7717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14768_to, ; char* from + ptr @.TypeMapEntry.14767_from; char* to + }, ; 7718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14770_to, ; char* from + ptr @.TypeMapEntry.14769_from; char* to + }, ; 7719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14779_to, ; char* from + ptr @.TypeMapEntry.14778_from; char* to + }, ; 7720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14772_to, ; char* from + ptr @.TypeMapEntry.14771_from; char* to + }, ; 7721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14774_to, ; char* from + ptr null; char* to + }, ; 7722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14774_to, ; char* from + ptr null; char* to + }, ; 7723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14781_to, ; char* from + ptr @.TypeMapEntry.14780_from; char* to + }, ; 7724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14783_to, ; char* from + ptr @.TypeMapEntry.14782_from; char* to + }, ; 7725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14785_to, ; char* from + ptr @.TypeMapEntry.14784_from; char* to + }, ; 7726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14790_to, ; char* from + ptr @.TypeMapEntry.14789_from; char* to + }, ; 7727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14792_to, ; char* from + ptr @.TypeMapEntry.14791_from; char* to + }, ; 7728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14794_to, ; char* from + ptr @.TypeMapEntry.14793_from; char* to + }, ; 7729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14787_to, ; char* from + ptr null; char* to + }, ; 7730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14787_to, ; char* from + ptr null; char* to + }, ; 7731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14796_to, ; char* from + ptr @.TypeMapEntry.14795_from; char* to + }, ; 7732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14798_to, ; char* from + ptr @.TypeMapEntry.14797_from; char* to + }, ; 7733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14802_to, ; char* from + ptr @.TypeMapEntry.14801_from; char* to + }, ; 7734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14804_to, ; char* from + ptr @.TypeMapEntry.14803_from; char* to + }, ; 7735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14815_to, ; char* from + ptr @.TypeMapEntry.14814_from; char* to + }, ; 7736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14806_to, ; char* from + ptr null; char* to + }, ; 7737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14806_to, ; char* from + ptr null; char* to + }, ; 7738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14809_to, ; char* from + ptr null; char* to + }, ; 7739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14809_to, ; char* from + ptr null; char* to + }, ; 7740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14812_to, ; char* from + ptr null; char* to + }, ; 7741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14812_to, ; char* from + ptr null; char* to + }, ; 7742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14819_to, ; char* from + ptr @.TypeMapEntry.14818_from; char* to + }, ; 7743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14817_to, ; char* from + ptr @.TypeMapEntry.14816_from; char* to + }, ; 7744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14826_to, ; char* from + ptr @.TypeMapEntry.14825_from; char* to + }, ; 7745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14824_to, ; char* from + ptr @.TypeMapEntry.14823_from; char* to + }, ; 7746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14821_to, ; char* from + ptr null; char* to + }, ; 7747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14821_to, ; char* from + ptr null; char* to + }, ; 7748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14828_to, ; char* from + ptr @.TypeMapEntry.14827_from; char* to + }, ; 7749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14830_to, ; char* from + ptr @.TypeMapEntry.14829_from; char* to + }, ; 7750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14834_to, ; char* from + ptr @.TypeMapEntry.14833_from; char* to + }, ; 7751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14832_to, ; char* from + ptr @.TypeMapEntry.14831_from; char* to + }, ; 7752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14841_to, ; char* from + ptr @.TypeMapEntry.14840_from; char* to + }, ; 7753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14836_to, ; char* from + ptr null; char* to + }, ; 7754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14836_to, ; char* from + ptr null; char* to + }, ; 7755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14849_to, ; char* from + ptr @.TypeMapEntry.14848_from; char* to + }, ; 7756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14843_to, ; char* from + ptr @.TypeMapEntry.14842_from; char* to + }, ; 7757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14843_to, ; char* from + ptr @.TypeMapEntry.14842_from; char* to + }, ; 7758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14846_to, ; char* from + ptr @.TypeMapEntry.14845_from; char* to + }, ; 7759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14846_to, ; char* from + ptr @.TypeMapEntry.14845_from; char* to + }, ; 7760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14851_to, ; char* from + ptr @.TypeMapEntry.14850_from; char* to + }, ; 7761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14859_to, ; char* from + ptr @.TypeMapEntry.14858_from; char* to + }, ; 7762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14857_to, ; char* from + ptr @.TypeMapEntry.14856_from; char* to + }, ; 7763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14853_to, ; char* from + ptr @.TypeMapEntry.14852_from; char* to + }, ; 7764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14855_to, ; char* from + ptr @.TypeMapEntry.14854_from; char* to + }, ; 7765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14861_to, ; char* from + ptr @.TypeMapEntry.14860_from; char* to + }, ; 7766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14871_to, ; char* from + ptr @.TypeMapEntry.14870_from; char* to + }, ; 7767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14863_to, ; char* from + ptr @.TypeMapEntry.14862_from; char* to + }, ; 7768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14863_to, ; char* from + ptr @.TypeMapEntry.14862_from; char* to + }, ; 7769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14866_to, ; char* from + ptr @.TypeMapEntry.14865_from; char* to + }, ; 7770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14868_to, ; char* from + ptr @.TypeMapEntry.14867_from; char* to + }, ; 7771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14868_to, ; char* from + ptr @.TypeMapEntry.14867_from; char* to + }, ; 7772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14873_to, ; char* from + ptr @.TypeMapEntry.14872_from; char* to + }, ; 7773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14882_to, ; char* from + ptr @.TypeMapEntry.14881_from; char* to + }, ; 7774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14875_to, ; char* from + ptr @.TypeMapEntry.14874_from; char* to + }, ; 7775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14877_to, ; char* from + ptr @.TypeMapEntry.14876_from; char* to + }, ; 7776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14879_to, ; char* from + ptr @.TypeMapEntry.14878_from; char* to + }, ; 7777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14879_to, ; char* from + ptr @.TypeMapEntry.14878_from; char* to + }, ; 7778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14899_to, ; char* from + ptr @.TypeMapEntry.14898_from; char* to + }, ; 7779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14890_to, ; char* from + ptr @.TypeMapEntry.14889_from; char* to + }, ; 7780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14890_to, ; char* from + ptr @.TypeMapEntry.14889_from; char* to + }, ; 7781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14896_to, ; char* from + ptr @.TypeMapEntry.14895_from; char* to + }, ; 7782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14896_to, ; char* from + ptr @.TypeMapEntry.14895_from; char* to + }, ; 7783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14893_to, ; char* from + ptr null; char* to + }, ; 7784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14893_to, ; char* from + ptr null; char* to + }, ; 7785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14884_to, ; char* from + ptr null; char* to + }, ; 7786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14884_to, ; char* from + ptr null; char* to + }, ; 7787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14901_to, ; char* from + ptr @.TypeMapEntry.14900_from; char* to + }, ; 7788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14907_to, ; char* from + ptr @.TypeMapEntry.14906_from; char* to + }, ; 7789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14903_to, ; char* from + ptr @.TypeMapEntry.14902_from; char* to + }, ; 7790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14905_to, ; char* from + ptr @.TypeMapEntry.14904_from; char* to + }, ; 7791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14909_to, ; char* from + ptr @.TypeMapEntry.14908_from; char* to + }, ; 7792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14911_to, ; char* from + ptr @.TypeMapEntry.14910_from; char* to + }, ; 7793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14913_to, ; char* from + ptr @.TypeMapEntry.14912_from; char* to + }, ; 7794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14913_to, ; char* from + ptr @.TypeMapEntry.14912_from; char* to + }, ; 7795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14887_to, ; char* from + ptr null; char* to + }, ; 7796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14887_to, ; char* from + ptr null; char* to + }, ; 7797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14916_to, ; char* from + ptr @.TypeMapEntry.14915_from; char* to + }, ; 7798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14916_to, ; char* from + ptr @.TypeMapEntry.14915_from; char* to + }, ; 7799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14919_to, ; char* from + ptr @.TypeMapEntry.14918_from; char* to + }, ; 7800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15013_to, ; char* from + ptr @.TypeMapEntry.15012_from; char* to + }, ; 7801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14923_to, ; char* from + ptr @.TypeMapEntry.14922_from; char* to + }, ; 7802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14923_to, ; char* from + ptr @.TypeMapEntry.14922_from; char* to + }, ; 7803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14921_to, ; char* from + ptr @.TypeMapEntry.14920_from; char* to + }, ; 7804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14925_to, ; char* from + ptr @.TypeMapEntry.14924_from; char* to + }, ; 7805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14925_to, ; char* from + ptr @.TypeMapEntry.14924_from; char* to + }, ; 7806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14934_to, ; char* from + ptr null; char* to + }, ; 7807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14934_to, ; char* from + ptr null; char* to + }, ; 7808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14932_to, ; char* from + ptr @.TypeMapEntry.14931_from; char* to + }, ; 7809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14929_to, ; char* from + ptr null; char* to + }, ; 7810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14929_to, ; char* from + ptr null; char* to + }, ; 7811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14965_to, ; char* from + ptr @.TypeMapEntry.14964_from; char* to + }, ; 7812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14965_to, ; char* from + ptr @.TypeMapEntry.14964_from; char* to + }, ; 7813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14955_to, ; char* from + ptr null; char* to + }, ; 7814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14955_to, ; char* from + ptr null; char* to + }, ; 7815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14958_to, ; char* from + ptr null; char* to + }, ; 7816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14958_to, ; char* from + ptr null; char* to + }, ; 7817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14963_to, ; char* from + ptr @.TypeMapEntry.14962_from; char* to + }, ; 7818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14968_to, ; char* from + ptr @.TypeMapEntry.14967_from; char* to + }, ; 7819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14968_to, ; char* from + ptr @.TypeMapEntry.14967_from; char* to + }, ; 7820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14976_to, ; char* from + ptr @.TypeMapEntry.14975_from; char* to + }, ; 7821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14976_to, ; char* from + ptr @.TypeMapEntry.14975_from; char* to + }, ; 7822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14971_to, ; char* from + ptr null; char* to + }, ; 7823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14971_to, ; char* from + ptr null; char* to + }, ; 7824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14974_to, ; char* from + ptr @.TypeMapEntry.14973_from; char* to + }, ; 7825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14979_to, ; char* from + ptr @.TypeMapEntry.14978_from; char* to + }, ; 7826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14937_to, ; char* from + ptr null; char* to + }, ; 7827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14937_to, ; char* from + ptr null; char* to + }, ; 7828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14981_to, ; char* from + ptr @.TypeMapEntry.14980_from; char* to + }, ; 7829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14981_to, ; char* from + ptr @.TypeMapEntry.14980_from; char* to + }, ; 7830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14942_to, ; char* from + ptr null; char* to + }, ; 7831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14942_to, ; char* from + ptr null; char* to + }, ; 7832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14984_to, ; char* from + ptr @.TypeMapEntry.14983_from; char* to + }, ; 7833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14984_to, ; char* from + ptr @.TypeMapEntry.14983_from; char* to + }, ; 7834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14947_to, ; char* from + ptr null; char* to + }, ; 7835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14947_to, ; char* from + ptr null; char* to + }, ; 7836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14989_to, ; char* from + ptr @.TypeMapEntry.14988_from; char* to + }, ; 7837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14987_to, ; char* from + ptr @.TypeMapEntry.14986_from; char* to + }, ; 7838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14991_to, ; char* from + ptr @.TypeMapEntry.14990_from; char* to + }, ; 7839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14950_to, ; char* from + ptr null; char* to + }, ; 7840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14950_to, ; char* from + ptr null; char* to + }, ; 7841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14993_to, ; char* from + ptr @.TypeMapEntry.14992_from; char* to + }, ; 7842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14995_to, ; char* from + ptr @.TypeMapEntry.14994_from; char* to + }, ; 7843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15002_to, ; char* from + ptr @.TypeMapEntry.15001_from; char* to + }, ; 7844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15002_to, ; char* from + ptr @.TypeMapEntry.15001_from; char* to + }, ; 7845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14997_to, ; char* from + ptr @.TypeMapEntry.14996_from; char* to + }, ; 7846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14999_to, ; char* from + ptr null; char* to + }, ; 7847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14999_to, ; char* from + ptr null; char* to + }, ; 7848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15005_to, ; char* from + ptr @.TypeMapEntry.15004_from; char* to + }, ; 7849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15007_to, ; char* from + ptr @.TypeMapEntry.15006_from; char* to + }, ; 7850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15007_to, ; char* from + ptr @.TypeMapEntry.15006_from; char* to + }, ; 7851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15010_to, ; char* from + ptr @.TypeMapEntry.15009_from; char* to + }, ; 7852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15010_to, ; char* from + ptr @.TypeMapEntry.15009_from; char* to + }, ; 7853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15017_to, ; char* from + ptr @.TypeMapEntry.15016_from; char* to + }, ; 7854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15015_to, ; char* from + ptr @.TypeMapEntry.15014_from; char* to + }, ; 7855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15019_to, ; char* from + ptr @.TypeMapEntry.15018_from; char* to + }, ; 7856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15019_to, ; char* from + ptr @.TypeMapEntry.15018_from; char* to + }, ; 7857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15022_to, ; char* from + ptr @.TypeMapEntry.15021_from; char* to + }, ; 7858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15022_to, ; char* from + ptr @.TypeMapEntry.15021_from; char* to + }, ; 7859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15030_to, ; char* from + ptr @.TypeMapEntry.15029_from; char* to + }, ; 7860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15025_to, ; char* from + ptr @.TypeMapEntry.15024_from; char* to + }, ; 7861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15027_to, ; char* from + ptr @.TypeMapEntry.15026_from; char* to + }, ; 7862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15027_to, ; char* from + ptr @.TypeMapEntry.15026_from; char* to + }, ; 7863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15032_to, ; char* from + ptr @.TypeMapEntry.15031_from; char* to + }, ; 7864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15032_to, ; char* from + ptr @.TypeMapEntry.15031_from; char* to + }, ; 7865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15039_to, ; char* from + ptr @.TypeMapEntry.15038_from; char* to + }, ; 7866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15035_to, ; char* from + ptr @.TypeMapEntry.15034_from; char* to + }, ; 7867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15037_to, ; char* from + ptr @.TypeMapEntry.15036_from; char* to + }, ; 7868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15041_to, ; char* from + ptr null; char* to + }, ; 7869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15041_to, ; char* from + ptr null; char* to + }, ; 7870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15044_to, ; char* from + ptr null; char* to + }, ; 7871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15044_to, ; char* from + ptr null; char* to + }, ; 7872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15046_to, ; char* from + ptr null; char* to + }, ; 7873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15046_to, ; char* from + ptr null; char* to + }, ; 7874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15059_to, ; char* from + ptr @.TypeMapEntry.15058_from; char* to + }, ; 7875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15053_to, ; char* from + ptr null; char* to + }, ; 7876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15053_to, ; char* from + ptr null; char* to + }, ; 7877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15056_to, ; char* from + ptr null; char* to + }, ; 7878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15056_to, ; char* from + ptr null; char* to + }, ; 7879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15063_to, ; char* from + ptr @.TypeMapEntry.15062_from; char* to + }, ; 7880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15061_to, ; char* from + ptr @.TypeMapEntry.15060_from; char* to + }, ; 7881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15050_to, ; char* from + ptr null; char* to + }, ; 7882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15050_to, ; char* from + ptr null; char* to + }, ; 7883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15065_to, ; char* from + ptr @.TypeMapEntry.15064_from; char* to + }, ; 7884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15067_to, ; char* from + ptr @.TypeMapEntry.15066_from; char* to + }, ; 7885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15073_to, ; char* from + ptr @.TypeMapEntry.15072_from; char* to + }, ; 7886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15069_to, ; char* from + ptr @.TypeMapEntry.15068_from; char* to + }, ; 7887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15071_to, ; char* from + ptr @.TypeMapEntry.15070_from; char* to + }, ; 7888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15079_to, ; char* from + ptr @.TypeMapEntry.15078_from; char* to + }, ; 7889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15075_to, ; char* from + ptr @.TypeMapEntry.15074_from; char* to + }, ; 7890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15077_to, ; char* from + ptr @.TypeMapEntry.15076_from; char* to + }, ; 7891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15085_to, ; char* from + ptr @.TypeMapEntry.15084_from; char* to + }, ; 7892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15081_to, ; char* from + ptr @.TypeMapEntry.15080_from; char* to + }, ; 7893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15083_to, ; char* from + ptr @.TypeMapEntry.15082_from; char* to + }, ; 7894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15087_to, ; char* from + ptr @.TypeMapEntry.15086_from; char* to + }, ; 7895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15098_to, ; char* from + ptr @.TypeMapEntry.15097_from; char* to + }, ; 7896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15094_to, ; char* from + ptr @.TypeMapEntry.15093_from; char* to + }, ; 7897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15089_to, ; char* from + ptr null; char* to + }, ; 7898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15089_to, ; char* from + ptr null; char* to + }, ; 7899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15096_to, ; char* from + ptr @.TypeMapEntry.15095_from; char* to + }, ; 7900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15100_to, ; char* from + ptr @.TypeMapEntry.15099_from; char* to + }, ; 7901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15105_to, ; char* from + ptr @.TypeMapEntry.15104_from; char* to + }, ; 7902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15102_to, ; char* from + ptr null; char* to + }, ; 7903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15102_to, ; char* from + ptr null; char* to + }, ; 7904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15107_to, ; char* from + ptr @.TypeMapEntry.15106_from; char* to + }, ; 7905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15109_to, ; char* from + ptr @.TypeMapEntry.15108_from; char* to + }, ; 7906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15114_to, ; char* from + ptr @.TypeMapEntry.15113_from; char* to + }, ; 7907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15111_to, ; char* from + ptr null; char* to + }, ; 7908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15111_to, ; char* from + ptr null; char* to + }, ; 7909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15124_to, ; char* from + ptr @.TypeMapEntry.15123_from; char* to + }, ; 7910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15116_to, ; char* from + ptr null; char* to + }, ; 7911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15116_to, ; char* from + ptr null; char* to + }, ; 7912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15119_to, ; char* from + ptr null; char* to + }, ; 7913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15119_to, ; char* from + ptr null; char* to + }, ; 7914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15126_to, ; char* from + ptr @.TypeMapEntry.15125_from; char* to + }, ; 7915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15128_to, ; char* from + ptr @.TypeMapEntry.15127_from; char* to + }, ; 7916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15130_to, ; char* from + ptr @.TypeMapEntry.15129_from; char* to + }, ; 7917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15132_to, ; char* from + ptr @.TypeMapEntry.15131_from; char* to + }, ; 7918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15134_to, ; char* from + ptr @.TypeMapEntry.15133_from; char* to + }, ; 7919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15136_to, ; char* from + ptr @.TypeMapEntry.15135_from; char* to + }, ; 7920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15138_to, ; char* from + ptr @.TypeMapEntry.15137_from; char* to + }, ; 7921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15140_to, ; char* from + ptr @.TypeMapEntry.15139_from; char* to + }, ; 7922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15142_to, ; char* from + ptr @.TypeMapEntry.15141_from; char* to + }, ; 7923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15144_to, ; char* from + ptr @.TypeMapEntry.15143_from; char* to + }, ; 7924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15146_to, ; char* from + ptr @.TypeMapEntry.15145_from; char* to + }, ; 7925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15150_to, ; char* from + ptr @.TypeMapEntry.15149_from; char* to + }, ; 7926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15155_to, ; char* from + ptr @.TypeMapEntry.15154_from; char* to + }, ; 7927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15155_to, ; char* from + ptr @.TypeMapEntry.15154_from; char* to + }, ; 7928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15158_to, ; char* from + ptr @.TypeMapEntry.15157_from; char* to + }, ; 7929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15162_to, ; char* from + ptr @.TypeMapEntry.15161_from; char* to + }, ; 7930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15164_to, ; char* from + ptr @.TypeMapEntry.15163_from; char* to + }, ; 7931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15169_to, ; char* from + ptr @.TypeMapEntry.15168_from; char* to + }, ; 7932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15166_to, ; char* from + ptr null; char* to + }, ; 7933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15166_to, ; char* from + ptr null; char* to + }, ; 7934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15182_to, ; char* from + ptr @.TypeMapEntry.15181_from; char* to + }, ; 7935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15182_to, ; char* from + ptr @.TypeMapEntry.15181_from; char* to + }, ; 7936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15171_to, ; char* from + ptr @.TypeMapEntry.15170_from; char* to + }, ; 7937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15171_to, ; char* from + ptr @.TypeMapEntry.15170_from; char* to + }, ; 7938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15174_to, ; char* from + ptr null; char* to + }, ; 7939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15174_to, ; char* from + ptr null; char* to + }, ; 7940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15177_to, ; char* from + ptr null; char* to + }, ; 7941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15177_to, ; char* from + ptr null; char* to + }, ; 7942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15184_to, ; char* from + ptr @.TypeMapEntry.15183_from; char* to + }, ; 7943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15187_to, ; char* from + ptr @.TypeMapEntry.15186_from; char* to + }, ; 7944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15189_to, ; char* from + ptr @.TypeMapEntry.15188_from; char* to + }, ; 7945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15191_to, ; char* from + ptr @.TypeMapEntry.15190_from; char* to + }, ; 7946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15191_to, ; char* from + ptr @.TypeMapEntry.15190_from; char* to + }, ; 7947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15152_to, ; char* from + ptr null; char* to + }, ; 7948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15152_to, ; char* from + ptr null; char* to + }, ; 7949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15194_to, ; char* from + ptr @.TypeMapEntry.15193_from; char* to + }, ; 7950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15200_to, ; char* from + ptr @.TypeMapEntry.15199_from; char* to + }, ; 7951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15205_to, ; char* from + ptr @.TypeMapEntry.15204_from; char* to + }, ; 7952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15205_to, ; char* from + ptr @.TypeMapEntry.15204_from; char* to + }, ; 7953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15202_to, ; char* from + ptr null; char* to + }, ; 7954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15202_to, ; char* from + ptr null; char* to + }, ; 7955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15208_to, ; char* from + ptr @.TypeMapEntry.15207_from; char* to + }, ; 7956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15208_to, ; char* from + ptr @.TypeMapEntry.15207_from; char* to + }, ; 7957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15222_to, ; char* from + ptr null; char* to + }, ; 7958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15222_to, ; char* from + ptr null; char* to + }, ; 7959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15211_to, ; char* from + ptr @.TypeMapEntry.15210_from; char* to + }, ; 7960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15211_to, ; char* from + ptr @.TypeMapEntry.15210_from; char* to + }, ; 7961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15214_to, ; char* from + ptr @.TypeMapEntry.15213_from; char* to + }, ; 7962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15216_to, ; char* from + ptr @.TypeMapEntry.15215_from; char* to + }, ; 7963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15218_to, ; char* from + ptr @.TypeMapEntry.15217_from; char* to + }, ; 7964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15220_to, ; char* from + ptr @.TypeMapEntry.15219_from; char* to + }, ; 7965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15225_to, ; char* from + ptr @.TypeMapEntry.15224_from; char* to + }, ; 7966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15227_to, ; char* from + ptr @.TypeMapEntry.15226_from; char* to + }, ; 7967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15227_to, ; char* from + ptr @.TypeMapEntry.15226_from; char* to + }, ; 7968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15230_to, ; char* from + ptr @.TypeMapEntry.15229_from; char* to + }, ; 7969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15232_to, ; char* from + ptr @.TypeMapEntry.15231_from; char* to + }, ; 7970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15232_to, ; char* from + ptr @.TypeMapEntry.15231_from; char* to + }, ; 7971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15235_to, ; char* from + ptr null; char* to + }, ; 7972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15235_to, ; char* from + ptr null; char* to + }, ; 7973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15238_to, ; char* from + ptr null; char* to + }, ; 7974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15238_to, ; char* from + ptr null; char* to + }, ; 7975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15247_to, ; char* from + ptr @.TypeMapEntry.15246_from; char* to + }, ; 7976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15249_to, ; char* from + ptr @.TypeMapEntry.15248_from; char* to + }, ; 7977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15253_to, ; char* from + ptr @.TypeMapEntry.15252_from; char* to + }, ; 7978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15253_to, ; char* from + ptr @.TypeMapEntry.15252_from; char* to + }, ; 7979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15251_to, ; char* from + ptr @.TypeMapEntry.15250_from; char* to + }, ; 7980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15241_to, ; char* from + ptr null; char* to + }, ; 7981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15241_to, ; char* from + ptr null; char* to + }, ; 7982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15244_to, ; char* from + ptr null; char* to + }, ; 7983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15244_to, ; char* from + ptr null; char* to + }, ; 7984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15256_to, ; char* from + ptr @.TypeMapEntry.15255_from; char* to + }, ; 7985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15256_to, ; char* from + ptr @.TypeMapEntry.15255_from; char* to + }, ; 7986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15259_to, ; char* from + ptr @.TypeMapEntry.15258_from; char* to + }, ; 7987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15261_to, ; char* from + ptr @.TypeMapEntry.15260_from; char* to + }, ; 7988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15285_to, ; char* from + ptr @.TypeMapEntry.15284_from; char* to + }, ; 7989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15263_to, ; char* from + ptr null; char* to + }, ; 7990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15263_to, ; char* from + ptr null; char* to + }, ; 7991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15279_to, ; char* from + ptr @.TypeMapEntry.15278_from; char* to + }, ; 7992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15266_to, ; char* from + ptr null; char* to + }, ; 7993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15266_to, ; char* from + ptr null; char* to + }, ; 7994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15271_to, ; char* from + ptr null; char* to + }, ; 7995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15271_to, ; char* from + ptr null; char* to + }, ; 7996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15276_to, ; char* from + ptr null; char* to + }, ; 7997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15276_to, ; char* from + ptr null; char* to + }, ; 7998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15281_to, ; char* from + ptr @.TypeMapEntry.15280_from; char* to + }, ; 7999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15283_to, ; char* from + ptr @.TypeMapEntry.15282_from; char* to + }, ; 8000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15298_to, ; char* from + ptr @.TypeMapEntry.15297_from; char* to + }, ; 8001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15298_to, ; char* from + ptr @.TypeMapEntry.15297_from; char* to + }, ; 8002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15295_to, ; char* from + ptr null; char* to + }, ; 8003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15295_to, ; char* from + ptr null; char* to + }, ; 8004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15292_to, ; char* from + ptr @.TypeMapEntry.15291_from; char* to + }, ; 8005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15292_to, ; char* from + ptr @.TypeMapEntry.15291_from; char* to + }, ; 8006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15287_to, ; char* from + ptr null; char* to + }, ; 8007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15287_to, ; char* from + ptr null; char* to + }, ; 8008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15301_to, ; char* from + ptr @.TypeMapEntry.15300_from; char* to + }, ; 8009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15303_to, ; char* from + ptr null; char* to + }, ; 8010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15303_to, ; char* from + ptr null; char* to + }, ; 8011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15306_to, ; char* from + ptr @.TypeMapEntry.15305_from; char* to + }, ; 8012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15308_to, ; char* from + ptr @.TypeMapEntry.15307_from; char* to + }, ; 8013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15325_to, ; char* from + ptr @.TypeMapEntry.15324_from; char* to + }, ; 8014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15310_to, ; char* from + ptr null; char* to + }, ; 8015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15310_to, ; char* from + ptr null; char* to + }, ; 8016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15322_to, ; char* from + ptr @.TypeMapEntry.15321_from; char* to + }, ; 8017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15322_to, ; char* from + ptr @.TypeMapEntry.15321_from; char* to + }, ; 8018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15313_to, ; char* from + ptr null; char* to + }, ; 8019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15313_to, ; char* from + ptr null; char* to + }, ; 8020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15316_to, ; char* from + ptr null; char* to + }, ; 8021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15316_to, ; char* from + ptr null; char* to + }, ; 8022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15319_to, ; char* from + ptr null; char* to + }, ; 8023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15319_to, ; char* from + ptr null; char* to + }, ; 8024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15327_to, ; char* from + ptr @.TypeMapEntry.15326_from; char* to + }, ; 8025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15468_to, ; char* from + ptr null; char* to + }, ; 8026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15468_to, ; char* from + ptr null; char* to + }, ; 8027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15513_to, ; char* from + ptr @.TypeMapEntry.15512_from; char* to + }, ; 8028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15517_to, ; char* from + ptr @.TypeMapEntry.15516_from; char* to + }, ; 8029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15517_to, ; char* from + ptr @.TypeMapEntry.15516_from; char* to + }, ; 8030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15515_to, ; char* from + ptr @.TypeMapEntry.15514_from; char* to + }, ; 8031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15367_to, ; char* from + ptr @.TypeMapEntry.15366_from; char* to + }, ; 8032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15361_to, ; char* from + ptr @.TypeMapEntry.15360_from; char* to + }, ; 8033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15359_to, ; char* from + ptr @.TypeMapEntry.15358_from; char* to + }, ; 8034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15365_to, ; char* from + ptr @.TypeMapEntry.15364_from; char* to + }, ; 8035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15363_to, ; char* from + ptr @.TypeMapEntry.15362_from; char* to + }, ; 8036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15329_to, ; char* from + ptr @.TypeMapEntry.15368_from; char* to + }, ; 8037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15329_to, ; char* from + ptr @.TypeMapEntry.15368_from; char* to + }, ; 8038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15329_to, ; char* from + ptr @.TypeMapEntry.15368_from; char* to + }, ; 8039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15329_to, ; char* from + ptr @.TypeMapEntry.15368_from; char* to + }, ; 8040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15370_to, ; char* from + ptr @.TypeMapEntry.15369_from; char* to + }, ; 8041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15331_to, ; char* from + ptr null; char* to + }, ; 8042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15331_to, ; char* from + ptr null; char* to + }, ; 8043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15377_to, ; char* from + ptr @.TypeMapEntry.15376_from; char* to + }, ; 8044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15375_to, ; char* from + ptr @.TypeMapEntry.15374_from; char* to + }, ; 8045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15373_to, ; char* from + ptr @.TypeMapEntry.15372_from; char* to + }, ; 8046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15335_to, ; char* from + ptr null; char* to + }, ; 8047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15335_to, ; char* from + ptr null; char* to + }, ; 8048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15338_to, ; char* from + ptr null; char* to + }, ; 8049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15338_to, ; char* from + ptr null; char* to + }, ; 8050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15340_to, ; char* from + ptr null; char* to + }, ; 8051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15340_to, ; char* from + ptr null; char* to + }, ; 8052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15344_to, ; char* from + ptr null; char* to + }, ; 8053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15344_to, ; char* from + ptr null; char* to + }, ; 8054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15347_to, ; char* from + ptr null; char* to + }, ; 8055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15347_to, ; char* from + ptr null; char* to + }, ; 8056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15350_to, ; char* from + ptr null; char* to + }, ; 8057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15350_to, ; char* from + ptr null; char* to + }, ; 8058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15353_to, ; char* from + ptr null; char* to + }, ; 8059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15353_to, ; char* from + ptr null; char* to + }, ; 8060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15356_to, ; char* from + ptr null; char* to + }, ; 8061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15356_to, ; char* from + ptr null; char* to + }, ; 8062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15379_to, ; char* from + ptr null; char* to + }, ; 8063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15379_to, ; char* from + ptr null; char* to + }, ; 8064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15384_to, ; char* from + ptr @.TypeMapEntry.15383_from; char* to + }, ; 8065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15382_to, ; char* from + ptr @.TypeMapEntry.15381_from; char* to + }, ; 8066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15386_to, ; char* from + ptr @.TypeMapEntry.15385_from; char* to + }, ; 8067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15390_to, ; char* from + ptr @.TypeMapEntry.15389_from; char* to + }, ; 8068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15388_to, ; char* from + ptr @.TypeMapEntry.15387_from; char* to + }, ; 8069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15392_to, ; char* from + ptr @.TypeMapEntry.15391_from; char* to + }, ; 8070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15396_to, ; char* from + ptr @.TypeMapEntry.15395_from; char* to + }, ; 8071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15394_to, ; char* from + ptr @.TypeMapEntry.15393_from; char* to + }, ; 8072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15398_to, ; char* from + ptr @.TypeMapEntry.15397_from; char* to + }, ; 8073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15398_to, ; char* from + ptr @.TypeMapEntry.15397_from; char* to + }, ; 8074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15398_to, ; char* from + ptr @.TypeMapEntry.15397_from; char* to + }, ; 8075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15398_to, ; char* from + ptr @.TypeMapEntry.15397_from; char* to + }, ; 8076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15400_to, ; char* from + ptr @.TypeMapEntry.15399_from; char* to + }, ; 8077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15407_to, ; char* from + ptr null; char* to + }, ; 8078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15407_to, ; char* from + ptr null; char* to + }, ; 8079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15403_to, ; char* from + ptr @.TypeMapEntry.15402_from; char* to + }, ; 8080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15403_to, ; char* from + ptr @.TypeMapEntry.15402_from; char* to + }, ; 8081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15413_to, ; char* from + ptr @.TypeMapEntry.15412_from; char* to + }, ; 8082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15411_to, ; char* from + ptr @.TypeMapEntry.15410_from; char* to + }, ; 8083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15427_to, ; char* from + ptr @.TypeMapEntry.15426_from; char* to + }, ; 8084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15415_to, ; char* from + ptr @.TypeMapEntry.15414_from; char* to + }, ; 8085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15417_to, ; char* from + ptr @.TypeMapEntry.15416_from; char* to + }, ; 8086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15421_to, ; char* from + ptr @.TypeMapEntry.15420_from; char* to + }, ; 8087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15419_to, ; char* from + ptr @.TypeMapEntry.15418_from; char* to + }, ; 8088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15425_to, ; char* from + ptr @.TypeMapEntry.15424_from; char* to + }, ; 8089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15423_to, ; char* from + ptr @.TypeMapEntry.15422_from; char* to + }, ; 8090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15429_to, ; char* from + ptr @.TypeMapEntry.15428_from; char* to + }, ; 8091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15437_to, ; char* from + ptr @.TypeMapEntry.15436_from; char* to + }, ; 8092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15431_to, ; char* from + ptr @.TypeMapEntry.15430_from; char* to + }, ; 8093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15435_to, ; char* from + ptr @.TypeMapEntry.15434_from; char* to + }, ; 8094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15433_to, ; char* from + ptr @.TypeMapEntry.15432_from; char* to + }, ; 8095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15439_to, ; char* from + ptr @.TypeMapEntry.15438_from; char* to + }, ; 8096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15441_to, ; char* from + ptr @.TypeMapEntry.15440_from; char* to + }, ; 8097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15445_to, ; char* from + ptr @.TypeMapEntry.15444_from; char* to + }, ; 8098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15443_to, ; char* from + ptr @.TypeMapEntry.15442_from; char* to + }, ; 8099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15449_to, ; char* from + ptr @.TypeMapEntry.15448_from; char* to + }, ; 8100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15447_to, ; char* from + ptr @.TypeMapEntry.15446_from; char* to + }, ; 8101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15457_to, ; char* from + ptr @.TypeMapEntry.15456_from; char* to + }, ; 8102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15451_to, ; char* from + ptr @.TypeMapEntry.15450_from; char* to + }, ; 8103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15455_to, ; char* from + ptr @.TypeMapEntry.15454_from; char* to + }, ; 8104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15453_to, ; char* from + ptr @.TypeMapEntry.15452_from; char* to + }, ; 8105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15459_to, ; char* from + ptr null; char* to + }, ; 8106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15459_to, ; char* from + ptr null; char* to + }, ; 8107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15462_to, ; char* from + ptr null; char* to + }, ; 8108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15462_to, ; char* from + ptr null; char* to + }, ; 8109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15465_to, ; char* from + ptr null; char* to + }, ; 8110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15465_to, ; char* from + ptr null; char* to + }, ; 8111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15483_to, ; char* from + ptr null; char* to + }, ; 8112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15483_to, ; char* from + ptr null; char* to + }, ; 8113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15486_to, ; char* from + ptr null; char* to + }, ; 8114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15486_to, ; char* from + ptr null; char* to + }, ; 8115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15473_to, ; char* from + ptr @.TypeMapEntry.15472_from; char* to + }, ; 8116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15471_to, ; char* from + ptr @.TypeMapEntry.15470_from; char* to + }, ; 8117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15477_to, ; char* from + ptr @.TypeMapEntry.15476_from; char* to + }, ; 8118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15475_to, ; char* from + ptr @.TypeMapEntry.15474_from; char* to + }, ; 8119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15481_to, ; char* from + ptr @.TypeMapEntry.15480_from; char* to + }, ; 8120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15479_to, ; char* from + ptr @.TypeMapEntry.15478_from; char* to + }, ; 8121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15489_to, ; char* from + ptr @.TypeMapEntry.15500_from; char* to + }, ; 8122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15489_to, ; char* from + ptr @.TypeMapEntry.15500_from; char* to + }, ; 8123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15489_to, ; char* from + ptr @.TypeMapEntry.15500_from; char* to + }, ; 8124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15489_to, ; char* from + ptr @.TypeMapEntry.15500_from; char* to + }, ; 8125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15502_to, ; char* from + ptr @.TypeMapEntry.15501_from; char* to + }, ; 8126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15491_to, ; char* from + ptr null; char* to + }, ; 8127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15491_to, ; char* from + ptr null; char* to + }, ; 8128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15505_to, ; char* from + ptr @.TypeMapEntry.15504_from; char* to + }, ; 8129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15507_to, ; char* from + ptr @.TypeMapEntry.15506_from; char* to + }, ; 8130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15495_to, ; char* from + ptr @.TypeMapEntry.15508_from; char* to + }, ; 8131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15495_to, ; char* from + ptr @.TypeMapEntry.15508_from; char* to + }, ; 8132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15495_to, ; char* from + ptr @.TypeMapEntry.15508_from; char* to + }, ; 8133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15495_to, ; char* from + ptr @.TypeMapEntry.15508_from; char* to + }, ; 8134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15510_to, ; char* from + ptr @.TypeMapEntry.15509_from; char* to + }, ; 8135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15497_to, ; char* from + ptr null; char* to + }, ; 8136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15497_to, ; char* from + ptr null; char* to + }, ; 8137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15526_to, ; char* from + ptr @.TypeMapEntry.15525_from; char* to + }, ; 8138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15526_to, ; char* from + ptr @.TypeMapEntry.15525_from; char* to + }, ; 8139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15529_to, ; char* from + ptr @.TypeMapEntry.15528_from; char* to + }, ; 8140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15551_to, ; char* from + ptr @.TypeMapEntry.15550_from; char* to + }, ; 8141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15548_to, ; char* from + ptr null; char* to + }, ; 8142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15548_to, ; char* from + ptr null; char* to + }, ; 8143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15555_to, ; char* from + ptr @.TypeMapEntry.15554_from; char* to + }, ; 8144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15553_to, ; char* from + ptr @.TypeMapEntry.15552_from; char* to + }, ; 8145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15557_to, ; char* from + ptr @.TypeMapEntry.15556_from; char* to + }, ; 8146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15559_to, ; char* from + ptr @.TypeMapEntry.15558_from; char* to + }, ; 8147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15567_to, ; char* from + ptr @.TypeMapEntry.15566_from; char* to + }, ; 8148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15561_to, ; char* from + ptr null; char* to + }, ; 8149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15561_to, ; char* from + ptr null; char* to + }, ; 8150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15564_to, ; char* from + ptr null; char* to + }, ; 8151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15564_to, ; char* from + ptr null; char* to + }, ; 8152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16095_to, ; char* from + ptr @.TypeMapEntry.16094_from; char* to + }, ; 8153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16114_to, ; char* from + ptr @.TypeMapEntry.16113_from; char* to + }, ; 8154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16138_to, ; char* from + ptr @.TypeMapEntry.16137_from; char* to + }, ; 8155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16128_to, ; char* from + ptr @.TypeMapEntry.16127_from; char* to + }, ; 8156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16130_to, ; char* from + ptr @.TypeMapEntry.16129_from; char* to + }, ; 8157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16132_to, ; char* from + ptr @.TypeMapEntry.16131_from; char* to + }, ; 8158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16134_to, ; char* from + ptr @.TypeMapEntry.16133_from; char* to + }, ; 8159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16136_to, ; char* from + ptr @.TypeMapEntry.16135_from; char* to + }, ; 8160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16254_to, ; char* from + ptr @.TypeMapEntry.16253_from; char* to + }, ; 8161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16256_to, ; char* from + ptr @.TypeMapEntry.16255_from; char* to + }, ; 8162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16268_to, ; char* from + ptr @.TypeMapEntry.16267_from; char* to + }, ; 8163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16268_to, ; char* from + ptr @.TypeMapEntry.16267_from; char* to + }, ; 8164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15524_to, ; char* from + ptr @.TypeMapEntry.15523_from; char* to + }, ; 8165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15520_to, ; char* from + ptr @.TypeMapEntry.15519_from; char* to + }, ; 8166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15522_to, ; char* from + ptr @.TypeMapEntry.15521_from; char* to + }, ; 8167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15531_to, ; char* from + ptr @.TypeMapEntry.15530_from; char* to + }, ; 8168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15531_to, ; char* from + ptr @.TypeMapEntry.15530_from; char* to + }, ; 8169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15531_to, ; char* from + ptr @.TypeMapEntry.15530_from; char* to + }, ; 8170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15531_to, ; char* from + ptr @.TypeMapEntry.15530_from; char* to + }, ; 8171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15539_to, ; char* from + ptr null; char* to + }, ; 8172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15539_to, ; char* from + ptr null; char* to + }, ; 8173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15542_to, ; char* from + ptr null; char* to + }, ; 8174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15542_to, ; char* from + ptr null; char* to + }, ; 8175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15534_to, ; char* from + ptr @.TypeMapEntry.15533_from; char* to + }, ; 8176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15536_to, ; char* from + ptr @.TypeMapEntry.15535_from; char* to + }, ; 8177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15546_to, ; char* from + ptr @.TypeMapEntry.15545_from; char* to + }, ; 8178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15620_to, ; char* from + ptr @.TypeMapEntry.15619_from; char* to + }, ; 8179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15622_to, ; char* from + ptr @.TypeMapEntry.15621_from; char* to + }, ; 8180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15624_to, ; char* from + ptr @.TypeMapEntry.15623_from; char* to + }, ; 8181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15737_to, ; char* from + ptr null; char* to + }, ; 8182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15737_to, ; char* from + ptr null; char* to + }, ; 8183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15735_to, ; char* from + ptr @.TypeMapEntry.15734_from; char* to + }, ; 8184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15740_to, ; char* from + ptr @.TypeMapEntry.15754_from; char* to + }, ; 8185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15740_to, ; char* from + ptr @.TypeMapEntry.15754_from; char* to + }, ; 8186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15740_to, ; char* from + ptr @.TypeMapEntry.15754_from; char* to + }, ; 8187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15740_to, ; char* from + ptr @.TypeMapEntry.15754_from; char* to + }, ; 8188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15757_to, ; char* from + ptr @.TypeMapEntry.15756_from; char* to + }, ; 8189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15759_to, ; char* from + ptr @.TypeMapEntry.15758_from; char* to + }, ; 8190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15743_to, ; char* from + ptr @.TypeMapEntry.15760_from; char* to + }, ; 8191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15743_to, ; char* from + ptr @.TypeMapEntry.15760_from; char* to + }, ; 8192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15743_to, ; char* from + ptr @.TypeMapEntry.15760_from; char* to + }, ; 8193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15743_to, ; char* from + ptr @.TypeMapEntry.15760_from; char* to + }, ; 8194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15908_to, ; char* from + ptr @.TypeMapEntry.15907_from; char* to + }, ; 8195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15913_to, ; char* from + ptr @.TypeMapEntry.15912_from; char* to + }, ; 8196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15910_to, ; char* from + ptr null; char* to + }, ; 8197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15910_to, ; char* from + ptr null; char* to + }, ; 8198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15915_to, ; char* from + ptr @.TypeMapEntry.15914_from; char* to + }, ; 8199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15917_to, ; char* from + ptr @.TypeMapEntry.15916_from; char* to + }, ; 8200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15746_to, ; char* from + ptr null; char* to + }, ; 8201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15746_to, ; char* from + ptr null; char* to + }, ; 8202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15749_to, ; char* from + ptr null; char* to + }, ; 8203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15749_to, ; char* from + ptr null; char* to + }, ; 8204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15752_to, ; char* from + ptr null; char* to + }, ; 8205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15752_to, ; char* from + ptr null; char* to + }, ; 8206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15569_to, ; char* from + ptr @.TypeMapEntry.15568_from; char* to + }, ; 8207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15571_to, ; char* from + ptr @.TypeMapEntry.15570_from; char* to + }, ; 8208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15571_to, ; char* from + ptr @.TypeMapEntry.15570_from; char* to + }, ; 8209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15574_to, ; char* from + ptr @.TypeMapEntry.15573_from; char* to + }, ; 8210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15586_to, ; char* from + ptr null; char* to + }, ; 8211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15586_to, ; char* from + ptr null; char* to + }, ; 8212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15588_to, ; char* from + ptr null; char* to + }, ; 8213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15588_to, ; char* from + ptr null; char* to + }, ; 8214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15592_to, ; char* from + ptr null; char* to + }, ; 8215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15592_to, ; char* from + ptr null; char* to + }, ; 8216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15594_to, ; char* from + ptr null; char* to + }, ; 8217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15594_to, ; char* from + ptr null; char* to + }, ; 8218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15576_to, ; char* from + ptr @.TypeMapEntry.15575_from; char* to + }, ; 8219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15578_to, ; char* from + ptr @.TypeMapEntry.15577_from; char* to + }, ; 8220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15580_to, ; char* from + ptr @.TypeMapEntry.15579_from; char* to + }, ; 8221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15582_to, ; char* from + ptr @.TypeMapEntry.15581_from; char* to + }, ; 8222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15584_to, ; char* from + ptr @.TypeMapEntry.15583_from; char* to + }, ; 8223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15600_to, ; char* from + ptr @.TypeMapEntry.15599_from; char* to + }, ; 8224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15598_to, ; char* from + ptr @.TypeMapEntry.15597_from; char* to + }, ; 8225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15602_to, ; char* from + ptr @.TypeMapEntry.15601_from; char* to + }, ; 8226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15602_to, ; char* from + ptr @.TypeMapEntry.15601_from; char* to + }, ; 8227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15614_to, ; char* from + ptr @.TypeMapEntry.15613_from; char* to + }, ; 8228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15612_to, ; char* from + ptr @.TypeMapEntry.15611_from; char* to + }, ; 8229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15616_to, ; char* from + ptr @.TypeMapEntry.15615_from; char* to + }, ; 8230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15618_to, ; char* from + ptr @.TypeMapEntry.15617_from; char* to + }, ; 8231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15608_to, ; char* from + ptr @.TypeMapEntry.15607_from; char* to + }, ; 8232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15610_to, ; char* from + ptr @.TypeMapEntry.15609_from; char* to + }, ; 8233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15605_to, ; char* from + ptr null; char* to + }, ; 8234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15605_to, ; char* from + ptr null; char* to + }, ; 8235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15701_to, ; char* from + ptr @.TypeMapEntry.15700_from; char* to + }, ; 8236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15703_to, ; char* from + ptr @.TypeMapEntry.15702_from; char* to + }, ; 8237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15703_to, ; char* from + ptr @.TypeMapEntry.15702_from; char* to + }, ; 8238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15708_to, ; char* from + ptr @.TypeMapEntry.15707_from; char* to + }, ; 8239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15706_to, ; char* from + ptr @.TypeMapEntry.15705_from; char* to + }, ; 8240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15719_to, ; char* from + ptr @.TypeMapEntry.15718_from; char* to + }, ; 8241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15721_to, ; char* from + ptr null; char* to + }, ; 8242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15721_to, ; char* from + ptr null; char* to + }, ; 8243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15727_to, ; char* from + ptr @.TypeMapEntry.15726_from; char* to + }, ; 8244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15724_to, ; char* from + ptr null; char* to + }, ; 8245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15724_to, ; char* from + ptr null; char* to + }, ; 8246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15626_to, ; char* from + ptr @.TypeMapEntry.15625_from; char* to + }, ; 8247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15626_to, ; char* from + ptr @.TypeMapEntry.15625_from; char* to + }, ; 8248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15626_to, ; char* from + ptr @.TypeMapEntry.15625_from; char* to + }, ; 8249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15626_to, ; char* from + ptr @.TypeMapEntry.15625_from; char* to + }, ; 8250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15629_to, ; char* from + ptr @.TypeMapEntry.15628_from; char* to + }, ; 8251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15629_to, ; char* from + ptr @.TypeMapEntry.15628_from; char* to + }, ; 8252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15638_to, ; char* from + ptr null; char* to + }, ; 8253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15638_to, ; char* from + ptr null; char* to + }, ; 8254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15632_to, ; char* from + ptr @.TypeMapEntry.15631_from; char* to + }, ; 8255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15634_to, ; char* from + ptr @.TypeMapEntry.15633_from; char* to + }, ; 8256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15647_to, ; char* from + ptr @.TypeMapEntry.15646_from; char* to + }, ; 8257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15649_to, ; char* from + ptr @.TypeMapEntry.15648_from; char* to + }, ; 8258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15651_to, ; char* from + ptr @.TypeMapEntry.15650_from; char* to + }, ; 8259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15641_to, ; char* from + ptr null; char* to + }, ; 8260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15641_to, ; char* from + ptr null; char* to + }, ; 8261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15644_to, ; char* from + ptr null; char* to + }, ; 8262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15644_to, ; char* from + ptr null; char* to + }, ; 8263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15653_to, ; char* from + ptr @.TypeMapEntry.15652_from; char* to + }, ; 8264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15673_to, ; char* from + ptr null; char* to + }, ; 8265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15673_to, ; char* from + ptr null; char* to + }, ; 8266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15659_to, ; char* from + ptr @.TypeMapEntry.15658_from; char* to + }, ; 8267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15659_to, ; char* from + ptr @.TypeMapEntry.15658_from; char* to + }, ; 8268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15659_to, ; char* from + ptr @.TypeMapEntry.15658_from; char* to + }, ; 8269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15659_to, ; char* from + ptr @.TypeMapEntry.15658_from; char* to + }, ; 8270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15678_to, ; char* from + ptr null; char* to + }, ; 8271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15678_to, ; char* from + ptr null; char* to + }, ; 8272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15657_to, ; char* from + ptr @.TypeMapEntry.15656_from; char* to + }, ; 8273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15655_to, ; char* from + ptr @.TypeMapEntry.15654_from; char* to + }, ; 8274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15665_to, ; char* from + ptr @.TypeMapEntry.15664_from; char* to + }, ; 8275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15662_to, ; char* from + ptr null; char* to + }, ; 8276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15662_to, ; char* from + ptr null; char* to + }, ; 8277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15667_to, ; char* from + ptr @.TypeMapEntry.15666_from; char* to + }, ; 8278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15669_to, ; char* from + ptr @.TypeMapEntry.15668_from; char* to + }, ; 8279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15671_to, ; char* from + ptr @.TypeMapEntry.15670_from; char* to + }, ; 8280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15689_to, ; char* from + ptr @.TypeMapEntry.15688_from; char* to + }, ; 8281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15691_to, ; char* from + ptr @.TypeMapEntry.15690_from; char* to + }, ; 8282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15681_to, ; char* from + ptr null; char* to + }, ; 8283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15681_to, ; char* from + ptr null; char* to + }, ; 8284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15684_to, ; char* from + ptr null; char* to + }, ; 8285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15684_to, ; char* from + ptr null; char* to + }, ; 8286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15693_to, ; char* from + ptr @.TypeMapEntry.15692_from; char* to + }, ; 8287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15697_to, ; char* from + ptr @.TypeMapEntry.15696_from; char* to + }, ; 8288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15695_to, ; char* from + ptr @.TypeMapEntry.15694_from; char* to + }, ; 8289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15699_to, ; char* from + ptr @.TypeMapEntry.15698_from; char* to + }, ; 8290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15717_to, ; char* from + ptr @.TypeMapEntry.15716_from; char* to + }, ; 8291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15710_to, ; char* from + ptr @.TypeMapEntry.15709_from; char* to + }, ; 8292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15712_to, ; char* from + ptr @.TypeMapEntry.15714_from; char* to + }, ; 8293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15712_to, ; char* from + ptr @.TypeMapEntry.15714_from; char* to + }, ; 8294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15712_to, ; char* from + ptr @.TypeMapEntry.15714_from; char* to + }, ; 8295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15712_to, ; char* from + ptr @.TypeMapEntry.15714_from; char* to + }, ; 8296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15729_to, ; char* from + ptr @.TypeMapEntry.15728_from; char* to + }, ; 8297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15733_to, ; char* from + ptr @.TypeMapEntry.15732_from; char* to + }, ; 8298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15731_to, ; char* from + ptr @.TypeMapEntry.15730_from; char* to + }, ; 8299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15770_to, ; char* from + ptr @.TypeMapEntry.15769_from; char* to + }, ; 8300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15765_to, ; char* from + ptr null; char* to + }, ; 8301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15765_to, ; char* from + ptr null; char* to + }, ; 8302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15763_to, ; char* from + ptr @.TypeMapEntry.15762_from; char* to + }, ; 8303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15768_to, ; char* from + ptr @.TypeMapEntry.15767_from; char* to + }, ; 8304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15779_to, ; char* from + ptr @.TypeMapEntry.15778_from; char* to + }, ; 8305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15772_to, ; char* from + ptr @.TypeMapEntry.15771_from; char* to + }, ; 8306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15774_to, ; char* from + ptr null; char* to + }, ; 8307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15774_to, ; char* from + ptr null; char* to + }, ; 8308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15777_to, ; char* from + ptr @.TypeMapEntry.15776_from; char* to + }, ; 8309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15781_to, ; char* from + ptr @.TypeMapEntry.15780_from; char* to + }, ; 8310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15785_to, ; char* from + ptr @.TypeMapEntry.15784_from; char* to + }, ; 8311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15783_to, ; char* from + ptr @.TypeMapEntry.15782_from; char* to + }, ; 8312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15792_to, ; char* from + ptr @.TypeMapEntry.15791_from; char* to + }, ; 8313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15787_to, ; char* from + ptr null; char* to + }, ; 8314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15787_to, ; char* from + ptr null; char* to + }, ; 8315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15790_to, ; char* from + ptr @.TypeMapEntry.15789_from; char* to + }, ; 8316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15794_to, ; char* from + ptr @.TypeMapEntry.15793_from; char* to + }, ; 8317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15805_to, ; char* from + ptr @.TypeMapEntry.15804_from; char* to + }, ; 8318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15796_to, ; char* from + ptr @.TypeMapEntry.15795_from; char* to + }, ; 8319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15798_to, ; char* from + ptr @.TypeMapEntry.15797_from; char* to + }, ; 8320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15800_to, ; char* from + ptr null; char* to + }, ; 8321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15800_to, ; char* from + ptr null; char* to + }, ; 8322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15803_to, ; char* from + ptr @.TypeMapEntry.15802_from; char* to + }, ; 8323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15807_to, ; char* from + ptr @.TypeMapEntry.15806_from; char* to + }, ; 8324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15809_to, ; char* from + ptr @.TypeMapEntry.15808_from; char* to + }, ; 8325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15809_to, ; char* from + ptr @.TypeMapEntry.15808_from; char* to + }, ; 8326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15809_to, ; char* from + ptr @.TypeMapEntry.15808_from; char* to + }, ; 8327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15809_to, ; char* from + ptr @.TypeMapEntry.15808_from; char* to + }, ; 8328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15814_to, ; char* from + ptr null; char* to + }, ; 8329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15814_to, ; char* from + ptr null; char* to + }, ; 8330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15828_to, ; char* from + ptr @.TypeMapEntry.15827_from; char* to + }, ; 8331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15826_to, ; char* from + ptr @.TypeMapEntry.15825_from; char* to + }, ; 8332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15832_to, ; char* from + ptr @.TypeMapEntry.15831_from; char* to + }, ; 8333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15830_to, ; char* from + ptr @.TypeMapEntry.15829_from; char* to + }, ; 8334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15817_to, ; char* from + ptr null; char* to + }, ; 8335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15817_to, ; char* from + ptr null; char* to + }, ; 8336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15834_to, ; char* from + ptr @.TypeMapEntry.15833_from; char* to + }, ; 8337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15820_to, ; char* from + ptr null; char* to + }, ; 8338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15820_to, ; char* from + ptr null; char* to + }, ; 8339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15836_to, ; char* from + ptr @.TypeMapEntry.15835_from; char* to + }, ; 8340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15822_to, ; char* from + ptr null; char* to + }, ; 8341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15822_to, ; char* from + ptr null; char* to + }, ; 8342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15838_to, ; char* from + ptr @.TypeMapEntry.15837_from; char* to + }, ; 8343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15840_to, ; char* from + ptr @.TypeMapEntry.15839_from; char* to + }, ; 8344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15850_to, ; char* from + ptr @.TypeMapEntry.15849_from; char* to + }, ; 8345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15842_to, ; char* from + ptr @.TypeMapEntry.15841_from; char* to + }, ; 8346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15844_to, ; char* from + ptr @.TypeMapEntry.15843_from; char* to + }, ; 8347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15846_to, ; char* from + ptr @.TypeMapEntry.15845_from; char* to + }, ; 8348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15848_to, ; char* from + ptr @.TypeMapEntry.15847_from; char* to + }, ; 8349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15852_to, ; char* from + ptr @.TypeMapEntry.15851_from; char* to + }, ; 8350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15879_to, ; char* from + ptr @.TypeMapEntry.15878_from; char* to + }, ; 8351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15887_to, ; char* from + ptr @.TypeMapEntry.15886_from; char* to + }, ; 8352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15881_to, ; char* from + ptr @.TypeMapEntry.15880_from; char* to + }, ; 8353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15883_to, ; char* from + ptr @.TypeMapEntry.15882_from; char* to + }, ; 8354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15885_to, ; char* from + ptr @.TypeMapEntry.15884_from; char* to + }, ; 8355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15891_to, ; char* from + ptr @.TypeMapEntry.15890_from; char* to + }, ; 8356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15889_to, ; char* from + ptr @.TypeMapEntry.15888_from; char* to + }, ; 8357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15902_to, ; char* from + ptr @.TypeMapEntry.15901_from; char* to + }, ; 8358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15893_to, ; char* from + ptr @.TypeMapEntry.15892_from; char* to + }, ; 8359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15895_to, ; char* from + ptr @.TypeMapEntry.15894_from; char* to + }, ; 8360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15897_to, ; char* from + ptr null; char* to + }, ; 8361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15897_to, ; char* from + ptr null; char* to + }, ; 8362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15900_to, ; char* from + ptr @.TypeMapEntry.15899_from; char* to + }, ; 8363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15906_to, ; char* from + ptr @.TypeMapEntry.15905_from; char* to + }, ; 8364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15904_to, ; char* from + ptr @.TypeMapEntry.15903_from; char* to + }, ; 8365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15854_to, ; char* from + ptr @.TypeMapEntry.15853_from; char* to + }, ; 8366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15854_to, ; char* from + ptr @.TypeMapEntry.15853_from; char* to + }, ; 8367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15859_to, ; char* from + ptr @.TypeMapEntry.15858_from; char* to + }, ; 8368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15857_to, ; char* from + ptr @.TypeMapEntry.15856_from; char* to + }, ; 8369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15863_to, ; char* from + ptr @.TypeMapEntry.15862_from; char* to + }, ; 8370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15861_to, ; char* from + ptr @.TypeMapEntry.15860_from; char* to + }, ; 8371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15867_to, ; char* from + ptr @.TypeMapEntry.15866_from; char* to + }, ; 8372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15865_to, ; char* from + ptr @.TypeMapEntry.15864_from; char* to + }, ; 8373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15871_to, ; char* from + ptr @.TypeMapEntry.15870_from; char* to + }, ; 8374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15869_to, ; char* from + ptr @.TypeMapEntry.15868_from; char* to + }, ; 8375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15873_to, ; char* from + ptr @.TypeMapEntry.15872_from; char* to + }, ; 8376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15877_to, ; char* from + ptr @.TypeMapEntry.15876_from; char* to + }, ; 8377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15875_to, ; char* from + ptr @.TypeMapEntry.15874_from; char* to + }, ; 8378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16000_to, ; char* from + ptr @.TypeMapEntry.15999_from; char* to + }, ; 8379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16039_to, ; char* from + ptr @.TypeMapEntry.16038_from; char* to + }, ; 8380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16056_to, ; char* from + ptr @.TypeMapEntry.16055_from; char* to + }, ; 8381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15919_to, ; char* from + ptr @.TypeMapEntry.15918_from; char* to + }, ; 8382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15921_to, ; char* from + ptr @.TypeMapEntry.15920_from; char* to + }, ; 8383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15923_to, ; char* from + ptr @.TypeMapEntry.15922_from; char* to + }, ; 8384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15925_to, ; char* from + ptr @.TypeMapEntry.15924_from; char* to + }, ; 8385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15927_to, ; char* from + ptr @.TypeMapEntry.15926_from; char* to + }, ; 8386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15929_to, ; char* from + ptr @.TypeMapEntry.15928_from; char* to + }, ; 8387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15931_to, ; char* from + ptr @.TypeMapEntry.15930_from; char* to + }, ; 8388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15933_to, ; char* from + ptr @.TypeMapEntry.15932_from; char* to + }, ; 8389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15933_to, ; char* from + ptr @.TypeMapEntry.15932_from; char* to + }, ; 8390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15936_to, ; char* from + ptr @.TypeMapEntry.15935_from; char* to + }, ; 8391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15938_to, ; char* from + ptr @.TypeMapEntry.15937_from; char* to + }, ; 8392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15940_to, ; char* from + ptr @.TypeMapEntry.15939_from; char* to + }, ; 8393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15942_to, ; char* from + ptr @.TypeMapEntry.15941_from; char* to + }, ; 8394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15944_to, ; char* from + ptr @.TypeMapEntry.15943_from; char* to + }, ; 8395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15946_to, ; char* from + ptr @.TypeMapEntry.15945_from; char* to + }, ; 8396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15948_to, ; char* from + ptr @.TypeMapEntry.15947_from; char* to + }, ; 8397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15952_to, ; char* from + ptr @.TypeMapEntry.15951_from; char* to + }, ; 8398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15952_to, ; char* from + ptr @.TypeMapEntry.15951_from; char* to + }, ; 8399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15950_to, ; char* from + ptr @.TypeMapEntry.15949_from; char* to + }, ; 8400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15958_to, ; char* from + ptr @.TypeMapEntry.15957_from; char* to + }, ; 8401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15955_to, ; char* from + ptr null; char* to + }, ; 8402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15955_to, ; char* from + ptr null; char* to + }, ; 8403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15960_to, ; char* from + ptr @.TypeMapEntry.15959_from; char* to + }, ; 8404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15962_to, ; char* from + ptr @.TypeMapEntry.15961_from; char* to + }, ; 8405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15964_to, ; char* from + ptr @.TypeMapEntry.15963_from; char* to + }, ; 8406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15966_to, ; char* from + ptr @.TypeMapEntry.15965_from; char* to + }, ; 8407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15968_to, ; char* from + ptr @.TypeMapEntry.15967_from; char* to + }, ; 8408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15970_to, ; char* from + ptr @.TypeMapEntry.15969_from; char* to + }, ; 8409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15972_to, ; char* from + ptr @.TypeMapEntry.15971_from; char* to + }, ; 8410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15974_to, ; char* from + ptr @.TypeMapEntry.15973_from; char* to + }, ; 8411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15976_to, ; char* from + ptr @.TypeMapEntry.15975_from; char* to + }, ; 8412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15978_to, ; char* from + ptr @.TypeMapEntry.15977_from; char* to + }, ; 8413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15980_to, ; char* from + ptr @.TypeMapEntry.15979_from; char* to + }, ; 8414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15982_to, ; char* from + ptr @.TypeMapEntry.15981_from; char* to + }, ; 8415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15984_to, ; char* from + ptr @.TypeMapEntry.15983_from; char* to + }, ; 8416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15986_to, ; char* from + ptr @.TypeMapEntry.15985_from; char* to + }, ; 8417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15988_to, ; char* from + ptr @.TypeMapEntry.15987_from; char* to + }, ; 8418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15990_to, ; char* from + ptr @.TypeMapEntry.15989_from; char* to + }, ; 8419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15992_to, ; char* from + ptr @.TypeMapEntry.15991_from; char* to + }, ; 8420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15996_to, ; char* from + ptr @.TypeMapEntry.15995_from; char* to + }, ; 8421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15994_to, ; char* from + ptr @.TypeMapEntry.15993_from; char* to + }, ; 8422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15998_to, ; char* from + ptr @.TypeMapEntry.15997_from; char* to + }, ; 8423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16002_to, ; char* from + ptr @.TypeMapEntry.16001_from; char* to + }, ; 8424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16004_to, ; char* from + ptr @.TypeMapEntry.16003_from; char* to + }, ; 8425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16006_to, ; char* from + ptr @.TypeMapEntry.16005_from; char* to + }, ; 8426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16008_to, ; char* from + ptr @.TypeMapEntry.16007_from; char* to + }, ; 8427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16008_to, ; char* from + ptr @.TypeMapEntry.16007_from; char* to + }, ; 8428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16011_to, ; char* from + ptr @.TypeMapEntry.16010_from; char* to + }, ; 8429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16013_to, ; char* from + ptr @.TypeMapEntry.16012_from; char* to + }, ; 8430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16015_to, ; char* from + ptr @.TypeMapEntry.16014_from; char* to + }, ; 8431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16017_to, ; char* from + ptr @.TypeMapEntry.16016_from; char* to + }, ; 8432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16019_to, ; char* from + ptr @.TypeMapEntry.16018_from; char* to + }, ; 8433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16021_to, ; char* from + ptr @.TypeMapEntry.16020_from; char* to + }, ; 8434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16023_to, ; char* from + ptr @.TypeMapEntry.16022_from; char* to + }, ; 8435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16025_to, ; char* from + ptr @.TypeMapEntry.16024_from; char* to + }, ; 8436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16027_to, ; char* from + ptr @.TypeMapEntry.16026_from; char* to + }, ; 8437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16029_to, ; char* from + ptr @.TypeMapEntry.16028_from; char* to + }, ; 8438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16031_to, ; char* from + ptr @.TypeMapEntry.16030_from; char* to + }, ; 8439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16033_to, ; char* from + ptr @.TypeMapEntry.16032_from; char* to + }, ; 8440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16035_to, ; char* from + ptr @.TypeMapEntry.16034_from; char* to + }, ; 8441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16037_to, ; char* from + ptr @.TypeMapEntry.16036_from; char* to + }, ; 8442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16041_to, ; char* from + ptr @.TypeMapEntry.16040_from; char* to + }, ; 8443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16043_to, ; char* from + ptr @.TypeMapEntry.16042_from; char* to + }, ; 8444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16045_to, ; char* from + ptr @.TypeMapEntry.16044_from; char* to + }, ; 8445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16047_to, ; char* from + ptr @.TypeMapEntry.16046_from; char* to + }, ; 8446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16049_to, ; char* from + ptr null; char* to + }, ; 8447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16049_to, ; char* from + ptr null; char* to + }, ; 8448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16052_to, ; char* from + ptr @.TypeMapEntry.16051_from; char* to + }, ; 8449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16054_to, ; char* from + ptr @.TypeMapEntry.16053_from; char* to + }, ; 8450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16060_to, ; char* from + ptr null; char* to + }, ; 8451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16060_to, ; char* from + ptr null; char* to + }, ; 8452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16062_to, ; char* from + ptr null; char* to + }, ; 8453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16062_to, ; char* from + ptr null; char* to + }, ; 8454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16067_to, ; char* from + ptr null; char* to + }, ; 8455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16067_to, ; char* from + ptr null; char* to + }, ; 8456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16058_to, ; char* from + ptr @.TypeMapEntry.16057_from; char* to + }, ; 8457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16071_to, ; char* from + ptr null; char* to + }, ; 8458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16071_to, ; char* from + ptr null; char* to + }, ; 8459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16074_to, ; char* from + ptr null; char* to + }, ; 8460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16074_to, ; char* from + ptr null; char* to + }, ; 8461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16082_to, ; char* from + ptr @.TypeMapEntry.16081_from; char* to + }, ; 8462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16087_to, ; char* from + ptr @.TypeMapEntry.16086_from; char* to + }, ; 8463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16084_to, ; char* from + ptr null; char* to + }, ; 8464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16084_to, ; char* from + ptr null; char* to + }, ; 8465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16079_to, ; char* from + ptr null; char* to + }, ; 8466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16079_to, ; char* from + ptr null; char* to + }, ; 8467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16089_to, ; char* from + ptr @.TypeMapEntry.16088_from; char* to + }, ; 8468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16091_to, ; char* from + ptr @.TypeMapEntry.16090_from; char* to + }, ; 8469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16093_to, ; char* from + ptr @.TypeMapEntry.16092_from; char* to + }, ; 8470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16097_to, ; char* from + ptr @.TypeMapEntry.16096_from; char* to + }, ; 8471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16097_to, ; char* from + ptr @.TypeMapEntry.16096_from; char* to + }, ; 8472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16100_to, ; char* from + ptr null; char* to + }, ; 8473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16100_to, ; char* from + ptr null; char* to + }, ; 8474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16103_to, ; char* from + ptr null; char* to + }, ; 8475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16103_to, ; char* from + ptr null; char* to + }, ; 8476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16109_to, ; char* from + ptr @.TypeMapEntry.16108_from; char* to + }, ; 8477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16109_to, ; char* from + ptr @.TypeMapEntry.16108_from; char* to + }, ; 8478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16112_to, ; char* from + ptr @.TypeMapEntry.16111_from; char* to + }, ; 8479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16106_to, ; char* from + ptr null; char* to + }, ; 8480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16106_to, ; char* from + ptr null; char* to + }, ; 8481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16116_to, ; char* from + ptr @.TypeMapEntry.16115_from; char* to + }, ; 8482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16118_to, ; char* from + ptr @.TypeMapEntry.16117_from; char* to + }, ; 8483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16120_to, ; char* from + ptr @.TypeMapEntry.16119_from; char* to + }, ; 8484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16122_to, ; char* from + ptr @.TypeMapEntry.16121_from; char* to + }, ; 8485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16124_to, ; char* from + ptr @.TypeMapEntry.16123_from; char* to + }, ; 8486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16126_to, ; char* from + ptr @.TypeMapEntry.16125_from; char* to + }, ; 8487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16140_to, ; char* from + ptr @.TypeMapEntry.16139_from; char* to + }, ; 8488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16140_to, ; char* from + ptr @.TypeMapEntry.16139_from; char* to + }, ; 8489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16143_to, ; char* from + ptr @.TypeMapEntry.16142_from; char* to + }, ; 8490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16145_to, ; char* from + ptr null; char* to + }, ; 8491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16145_to, ; char* from + ptr null; char* to + }, ; 8492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16148_to, ; char* from + ptr null; char* to + }, ; 8493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16148_to, ; char* from + ptr null; char* to + }, ; 8494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16150_to, ; char* from + ptr null; char* to + }, ; 8495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16150_to, ; char* from + ptr null; char* to + }, ; 8496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16162_to, ; char* from + ptr @.TypeMapEntry.16161_from; char* to + }, ; 8497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16164_to, ; char* from + ptr @.TypeMapEntry.16163_from; char* to + }, ; 8498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16154_to, ; char* from + ptr null; char* to + }, ; 8499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16154_to, ; char* from + ptr null; char* to + }, ; 8500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16166_to, ; char* from + ptr @.TypeMapEntry.16165_from; char* to + }, ; 8501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16159_to, ; char* from + ptr null; char* to + }, ; 8502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16159_to, ; char* from + ptr null; char* to + }, ; 8503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16168_to, ; char* from + ptr @.TypeMapEntry.16167_from; char* to + }, ; 8504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16217_to, ; char* from + ptr @.TypeMapEntry.16216_from; char* to + }, ; 8505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16170_to, ; char* from + ptr @.TypeMapEntry.16169_from; char* to + }, ; 8506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16172_to, ; char* from + ptr @.TypeMapEntry.16171_from; char* to + }, ; 8507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16172_to, ; char* from + ptr @.TypeMapEntry.16171_from; char* to + }, ; 8508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16175_to, ; char* from + ptr @.TypeMapEntry.16174_from; char* to + }, ; 8509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16177_to, ; char* from + ptr @.TypeMapEntry.16176_from; char* to + }, ; 8510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16179_to, ; char* from + ptr @.TypeMapEntry.16178_from; char* to + }, ; 8511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16179_to, ; char* from + ptr @.TypeMapEntry.16178_from; char* to + }, ; 8512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16182_to, ; char* from + ptr @.TypeMapEntry.16181_from; char* to + }, ; 8513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16182_to, ; char* from + ptr @.TypeMapEntry.16181_from; char* to + }, ; 8514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16185_to, ; char* from + ptr @.TypeMapEntry.16184_from; char* to + }, ; 8515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16187_to, ; char* from + ptr @.TypeMapEntry.16186_from; char* to + }, ; 8516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16189_to, ; char* from + ptr @.TypeMapEntry.16188_from; char* to + }, ; 8517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16197_to, ; char* from + ptr @.TypeMapEntry.16196_from; char* to + }, ; 8518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16197_to, ; char* from + ptr @.TypeMapEntry.16196_from; char* to + }, ; 8519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16199_to, ; char* from + ptr @.TypeMapEntry.16198_from; char* to + }, ; 8520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16202_to, ; char* from + ptr @.TypeMapEntry.16201_from; char* to + }, ; 8521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16204_to, ; char* from + ptr @.TypeMapEntry.16203_from; char* to + }, ; 8522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16206_to, ; char* from + ptr @.TypeMapEntry.16205_from; char* to + }, ; 8523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16206_to, ; char* from + ptr @.TypeMapEntry.16205_from; char* to + }, ; 8524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16191_to, ; char* from + ptr null; char* to + }, ; 8525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16191_to, ; char* from + ptr null; char* to + }, ; 8526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16194_to, ; char* from + ptr @.TypeMapEntry.16208_from; char* to + }, ; 8527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16194_to, ; char* from + ptr @.TypeMapEntry.16208_from; char* to + }, ; 8528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16194_to, ; char* from + ptr @.TypeMapEntry.16208_from; char* to + }, ; 8529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16194_to, ; char* from + ptr @.TypeMapEntry.16208_from; char* to + }, ; 8530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16211_to, ; char* from + ptr @.TypeMapEntry.16210_from; char* to + }, ; 8531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16211_to, ; char* from + ptr @.TypeMapEntry.16210_from; char* to + }, ; 8532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16214_to, ; char* from + ptr @.TypeMapEntry.16213_from; char* to + }, ; 8533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16214_to, ; char* from + ptr @.TypeMapEntry.16213_from; char* to + }, ; 8534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16219_to, ; char* from + ptr @.TypeMapEntry.16218_from; char* to + }, ; 8535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16219_to, ; char* from + ptr @.TypeMapEntry.16218_from; char* to + }, ; 8536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16222_to, ; char* from + ptr @.TypeMapEntry.16221_from; char* to + }, ; 8537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16226_to, ; char* from + ptr @.TypeMapEntry.16225_from; char* to + }, ; 8538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16224_to, ; char* from + ptr @.TypeMapEntry.16223_from; char* to + }, ; 8539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16228_to, ; char* from + ptr @.TypeMapEntry.16227_from; char* to + }, ; 8540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16241_to, ; char* from + ptr @.TypeMapEntry.16240_from; char* to + }, ; 8541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16239_to, ; char* from + ptr @.TypeMapEntry.16238_from; char* to + }, ; 8542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16230_to, ; char* from + ptr null; char* to + }, ; 8543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16230_to, ; char* from + ptr null; char* to + }, ; 8544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16236_to, ; char* from + ptr null; char* to + }, ; 8545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16236_to, ; char* from + ptr null; char* to + }, ; 8546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16232_to, ; char* from + ptr null; char* to + }, ; 8547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16232_to, ; char* from + ptr null; char* to + }, ; 8548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16243_to, ; char* from + ptr @.TypeMapEntry.16242_from; char* to + }, ; 8549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16245_to, ; char* from + ptr @.TypeMapEntry.16244_from; char* to + }, ; 8550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16250_to, ; char* from + ptr @.TypeMapEntry.16249_from; char* to + }, ; 8551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16247_to, ; char* from + ptr null; char* to + }, ; 8552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16247_to, ; char* from + ptr null; char* to + }, ; 8553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16252_to, ; char* from + ptr @.TypeMapEntry.16251_from; char* to + }, ; 8554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16258_to, ; char* from + ptr @.TypeMapEntry.16257_from; char* to + }, ; 8555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16260_to, ; char* from + ptr @.TypeMapEntry.16259_from; char* to + }, ; 8556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16262_to, ; char* from + ptr @.TypeMapEntry.16261_from; char* to + }, ; 8557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16264_to, ; char* from + ptr @.TypeMapEntry.16263_from; char* to + }, ; 8558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16266_to, ; char* from + ptr @.TypeMapEntry.16265_from; char* to + }, ; 8559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16271_to, ; char* from + ptr @.TypeMapEntry.16270_from; char* to + }, ; 8560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16273_to, ; char* from + ptr @.TypeMapEntry.16272_from; char* to + }, ; 8561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16275_to, ; char* from + ptr @.TypeMapEntry.16274_from; char* to + }, ; 8562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16277_to, ; char* from + ptr @.TypeMapEntry.16276_from; char* to + }, ; 8563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16279_to, ; char* from + ptr @.TypeMapEntry.16278_from; char* to + }, ; 8564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16281_to, ; char* from + ptr @.TypeMapEntry.16280_from; char* to + }, ; 8565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16283_to, ; char* from + ptr @.TypeMapEntry.16282_from; char* to + }, ; 8566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16288_to, ; char* from + ptr @.TypeMapEntry.16287_from; char* to + }, ; 8567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16285_to, ; char* from + ptr null; char* to + }, ; 8568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16285_to, ; char* from + ptr null; char* to + }, ; 8569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16293_to, ; char* from + ptr @.TypeMapEntry.16292_from; char* to + }, ; 8570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16295_to, ; char* from + ptr @.TypeMapEntry.16294_from; char* to + }, ; 8571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16297_to, ; char* from + ptr @.TypeMapEntry.16296_from; char* to + }, ; 8572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16299_to, ; char* from + ptr @.TypeMapEntry.16298_from; char* to + }, ; 8573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16317_to, ; char* from + ptr @.TypeMapEntry.16316_from; char* to + }, ; 8574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16290_to, ; char* from + ptr null; char* to + }, ; 8575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16290_to, ; char* from + ptr null; char* to + }, ; 8576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16319_to, ; char* from + ptr @.TypeMapEntry.16318_from; char* to + }, ; 8577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16321_to, ; char* from + ptr @.TypeMapEntry.16320_from; char* to + }, ; 8578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16310_to, ; char* from + ptr @.TypeMapEntry.16309_from; char* to + }, ; 8579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16301_to, ; char* from + ptr null; char* to + }, ; 8580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16301_to, ; char* from + ptr null; char* to + }, ; 8581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16304_to, ; char* from + ptr null; char* to + }, ; 8582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16304_to, ; char* from + ptr null; char* to + }, ; 8583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16307_to, ; char* from + ptr null; char* to + }, ; 8584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16307_to, ; char* from + ptr null; char* to + }, ; 8585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16312_to, ; char* from + ptr @.TypeMapEntry.16311_from; char* to + }, ; 8586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16314_to, ; char* from + ptr @.TypeMapEntry.16313_from; char* to + }, ; 8587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16314_to, ; char* from + ptr @.TypeMapEntry.16313_from; char* to + }, ; 8588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16374_to, ; char* from + ptr null; char* to + }, ; 8589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16374_to, ; char* from + ptr null; char* to + }, ; 8590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16377_to, ; char* from + ptr null; char* to + }, ; 8591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16377_to, ; char* from + ptr null; char* to + }, ; 8592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16364_to, ; char* from + ptr @.TypeMapEntry.16363_from; char* to + }, ; 8593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16366_to, ; char* from + ptr @.TypeMapEntry.16365_from; char* to + }, ; 8594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16368_to, ; char* from + ptr @.TypeMapEntry.16367_from; char* to + }, ; 8595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16370_to, ; char* from + ptr @.TypeMapEntry.16369_from; char* to + }, ; 8596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16372_to, ; char* from + ptr @.TypeMapEntry.16371_from; char* to + }, ; 8597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16385_to, ; char* from + ptr @.TypeMapEntry.16384_from; char* to + }, ; 8598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16387_to, ; char* from + ptr @.TypeMapEntry.16386_from; char* to + }, ; 8599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16389_to, ; char* from + ptr @.TypeMapEntry.16388_from; char* to + }, ; 8600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16391_to, ; char* from + ptr @.TypeMapEntry.16390_from; char* to + }, ; 8601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16393_to, ; char* from + ptr @.TypeMapEntry.16392_from; char* to + }, ; 8602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16382_to, ; char* from + ptr null; char* to + }, ; 8603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16382_to, ; char* from + ptr null; char* to + }, ; 8604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16432_to, ; char* from + ptr @.TypeMapEntry.16431_from; char* to + }, ; 8605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16400_to, ; char* from + ptr @.TypeMapEntry.16399_from; char* to + }, ; 8606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16395_to, ; char* from + ptr @.TypeMapEntry.16394_from; char* to + }, ; 8607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16395_to, ; char* from + ptr @.TypeMapEntry.16394_from; char* to + }, ; 8608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16398_to, ; char* from + ptr @.TypeMapEntry.16397_from; char* to + }, ; 8609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16405_to, ; char* from + ptr @.TypeMapEntry.16404_from; char* to + }, ; 8610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16402_to, ; char* from + ptr @.TypeMapEntry.16401_from; char* to + }, ; 8611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16402_to, ; char* from + ptr @.TypeMapEntry.16401_from; char* to + }, ; 8612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16407_to, ; char* from + ptr @.TypeMapEntry.16406_from; char* to + }, ; 8613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16407_to, ; char* from + ptr @.TypeMapEntry.16406_from; char* to + }, ; 8614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16410_to, ; char* from + ptr @.TypeMapEntry.16409_from; char* to + }, ; 8615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16428_to, ; char* from + ptr @.TypeMapEntry.16427_from; char* to + }, ; 8616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16422_to, ; char* from + ptr null; char* to + }, ; 8617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16422_to, ; char* from + ptr null; char* to + }, ; 8618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16425_to, ; char* from + ptr null; char* to + }, ; 8619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16425_to, ; char* from + ptr null; char* to + }, ; 8620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16412_to, ; char* from + ptr null; char* to + }, ; 8621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16412_to, ; char* from + ptr null; char* to + }, ; 8622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16417_to, ; char* from + ptr null; char* to + }, ; 8623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16417_to, ; char* from + ptr null; char* to + }, ; 8624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16430_to, ; char* from + ptr @.TypeMapEntry.16429_from; char* to + }, ; 8625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16442_to, ; char* from + ptr @.TypeMapEntry.16441_from; char* to + }, ; 8626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16440_to, ; char* from + ptr @.TypeMapEntry.16439_from; char* to + }, ; 8627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16434_to, ; char* from + ptr null; char* to + }, ; 8628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16434_to, ; char* from + ptr null; char* to + }, ; 8629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16437_to, ; char* from + ptr null; char* to + }, ; 8630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16437_to, ; char* from + ptr null; char* to + }, ; 8631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16444_to, ; char* from + ptr @.TypeMapEntry.16443_from; char* to + }, ; 8632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16444_to, ; char* from + ptr @.TypeMapEntry.16443_from; char* to + }, ; 8633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16447_to, ; char* from + ptr @.TypeMapEntry.16446_from; char* to + }, ; 8634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16447_to, ; char* from + ptr @.TypeMapEntry.16446_from; char* to + }, ; 8635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16450_to, ; char* from + ptr @.TypeMapEntry.16449_from; char* to + }, ; 8636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16452_to, ; char* from + ptr @.TypeMapEntry.16451_from; char* to + }, ; 8637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16457_to, ; char* from + ptr @.TypeMapEntry.16456_from; char* to + }, ; 8638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16454_to, ; char* from + ptr null; char* to + }, ; 8639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16454_to, ; char* from + ptr null; char* to + }, ; 8640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16461_to, ; char* from + ptr @.TypeMapEntry.16460_from; char* to + }, ; 8641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16459_to, ; char* from + ptr @.TypeMapEntry.16458_from; char* to + }, ; 8642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16463_to, ; char* from + ptr @.TypeMapEntry.16462_from; char* to + }, ; 8643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16465_to, ; char* from + ptr null; char* to + }, ; 8644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16465_to, ; char* from + ptr null; char* to + }, ; 8645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16476_to, ; char* from + ptr @.TypeMapEntry.16475_from; char* to + }, ; 8646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16468_to, ; char* from + ptr null; char* to + }, ; 8647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16468_to, ; char* from + ptr null; char* to + }, ; 8648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16473_to, ; char* from + ptr null; char* to + }, ; 8649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16473_to, ; char* from + ptr null; char* to + }, ; 8650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16483_to, ; char* from + ptr @.TypeMapEntry.16482_from; char* to + }, ; 8651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16478_to, ; char* from + ptr null; char* to + }, ; 8652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16478_to, ; char* from + ptr null; char* to + }, ; 8653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16499_to, ; char* from + ptr @.TypeMapEntry.16498_from; char* to + }, ; 8654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16485_to, ; char* from + ptr @.TypeMapEntry.16484_from; char* to + }, ; 8655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16487_to, ; char* from + ptr null; char* to + }, ; 8656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16487_to, ; char* from + ptr null; char* to + }, ; 8657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16490_to, ; char* from + ptr null; char* to + }, ; 8658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16490_to, ; char* from + ptr null; char* to + }, ; 8659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16493_to, ; char* from + ptr null; char* to + }, ; 8660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16493_to, ; char* from + ptr null; char* to + }, ; 8661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16496_to, ; char* from + ptr null; char* to + }, ; 8662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16496_to, ; char* from + ptr null; char* to + }, ; 8663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16501_to, ; char* from + ptr @.TypeMapEntry.16500_from; char* to + }, ; 8664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16503_to, ; char* from + ptr @.TypeMapEntry.16502_from; char* to + }, ; 8665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16505_to, ; char* from + ptr @.TypeMapEntry.16504_from; char* to + }, ; 8666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16513_to, ; char* from + ptr @.TypeMapEntry.16512_from; char* to + }, ; 8667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16507_to, ; char* from + ptr null; char* to + }, ; 8668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16507_to, ; char* from + ptr null; char* to + }, ; 8669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16510_to, ; char* from + ptr null; char* to + }, ; 8670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16510_to, ; char* from + ptr null; char* to + }, ; 8671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16515_to, ; char* from + ptr @.TypeMapEntry.16517_from; char* to + }, ; 8672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16515_to, ; char* from + ptr @.TypeMapEntry.16517_from; char* to + }, ; 8673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16515_to, ; char* from + ptr @.TypeMapEntry.16517_from; char* to + }, ; 8674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16515_to, ; char* from + ptr @.TypeMapEntry.16517_from; char* to + }, ; 8675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16534_to, ; char* from + ptr @.TypeMapEntry.16533_from; char* to + }, ; 8676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16520_to, ; char* from + ptr @.TypeMapEntry.16519_from; char* to + }, ; 8677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16520_to, ; char* from + ptr @.TypeMapEntry.16519_from; char* to + }, ; 8678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16523_to, ; char* from + ptr null; char* to + }, ; 8679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16523_to, ; char* from + ptr null; char* to + }, ; 8680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16532_to, ; char* from + ptr @.TypeMapEntry.16531_from; char* to + }, ; 8681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16526_to, ; char* from + ptr null; char* to + }, ; 8682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16526_to, ; char* from + ptr null; char* to + }, ; 8683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16529_to, ; char* from + ptr null; char* to + }, ; 8684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16529_to, ; char* from + ptr null; char* to + }, ; 8685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16536_to, ; char* from + ptr @.TypeMapEntry.16535_from; char* to + }, ; 8686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16538_to, ; char* from + ptr @.TypeMapEntry.16537_from; char* to + }, ; 8687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16540_to, ; char* from + ptr @.TypeMapEntry.16539_from; char* to + }, ; 8688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16552_to, ; char* from + ptr @.TypeMapEntry.16551_from; char* to + }, ; 8689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16542_to, ; char* from + ptr null; char* to + }, ; 8690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16542_to, ; char* from + ptr null; char* to + }, ; 8691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16550_to, ; char* from + ptr @.TypeMapEntry.16549_from; char* to + }, ; 8692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16545_to, ; char* from + ptr null; char* to + }, ; 8693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16545_to, ; char* from + ptr null; char* to + }, ; 8694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16559_to, ; char* from + ptr @.TypeMapEntry.16558_from; char* to + }, ; 8695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16554_to, ; char* from + ptr null; char* to + }, ; 8696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16554_to, ; char* from + ptr null; char* to + }, ; 8697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16564_to, ; char* from + ptr @.TypeMapEntry.16563_from; char* to + }, ; 8698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16561_to, ; char* from + ptr null; char* to + }, ; 8699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16561_to, ; char* from + ptr null; char* to + }, ; 8700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16574_to, ; char* from + ptr @.TypeMapEntry.16573_from; char* to + }, ; 8701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16566_to, ; char* from + ptr null; char* to + }, ; 8702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16566_to, ; char* from + ptr null; char* to + }, ; 8703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16569_to, ; char* from + ptr null; char* to + }, ; 8704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16569_to, ; char* from + ptr null; char* to + }, ; 8705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16576_to, ; char* from + ptr @.TypeMapEntry.16575_from; char* to + }, ; 8706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16578_to, ; char* from + ptr @.TypeMapEntry.16577_from; char* to + }, ; 8707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16580_to, ; char* from + ptr @.TypeMapEntry.16579_from; char* to + }, ; 8708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16580_to, ; char* from + ptr @.TypeMapEntry.16579_from; char* to + }, ; 8709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16583_to, ; char* from + ptr @.TypeMapEntry.16582_from; char* to + }, ; 8710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16585_to, ; char* from + ptr @.TypeMapEntry.16584_from; char* to + }, ; 8711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16592_to, ; char* from + ptr @.TypeMapEntry.16591_from; char* to + }, ; 8712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16594_to, ; char* from + ptr @.TypeMapEntry.16593_from; char* to + }, ; 8713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16587_to, ; char* from + ptr null; char* to + }, ; 8714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16587_to, ; char* from + ptr null; char* to + }, ; 8715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16596_to, ; char* from + ptr @.TypeMapEntry.16595_from; char* to + }, ; 8716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16611_to, ; char* from + ptr @.TypeMapEntry.16610_from; char* to + }, ; 8717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16598_to, ; char* from + ptr null; char* to + }, ; 8718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16598_to, ; char* from + ptr null; char* to + }, ; 8719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16601_to, ; char* from + ptr null; char* to + }, ; 8720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16601_to, ; char* from + ptr null; char* to + }, ; 8721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16606_to, ; char* from + ptr null; char* to + }, ; 8722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16606_to, ; char* from + ptr null; char* to + }, ; 8723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16613_to, ; char* from + ptr @.TypeMapEntry.16612_from; char* to + }, ; 8724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16618_to, ; char* from + ptr @.TypeMapEntry.16617_from; char* to + }, ; 8725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16615_to, ; char* from + ptr null; char* to + }, ; 8726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16615_to, ; char* from + ptr null; char* to + }, ; 8727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16632_to, ; char* from + ptr @.TypeMapEntry.16631_from; char* to + }, ; 8728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16630_to, ; char* from + ptr @.TypeMapEntry.16629_from; char* to + }, ; 8729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16620_to, ; char* from + ptr null; char* to + }, ; 8730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16620_to, ; char* from + ptr null; char* to + }, ; 8731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16625_to, ; char* from + ptr null; char* to + }, ; 8732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16625_to, ; char* from + ptr null; char* to + }, ; 8733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16636_to, ; char* from + ptr @.TypeMapEntry.16635_from; char* to + }, ; 8734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16638_to, ; char* from + ptr @.TypeMapEntry.16637_from; char* to + }, ; 8735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16640_to, ; char* from + ptr @.TypeMapEntry.16639_from; char* to + }, ; 8736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16648_to, ; char* from + ptr @.TypeMapEntry.16647_from; char* to + }, ; 8737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16642_to, ; char* from + ptr null; char* to + }, ; 8738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16642_to, ; char* from + ptr null; char* to + }, ; 8739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16645_to, ; char* from + ptr null; char* to + }, ; 8740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16645_to, ; char* from + ptr null; char* to + }, ; 8741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16650_to, ; char* from + ptr @.TypeMapEntry.16649_from; char* to + }, ; 8742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16652_to, ; char* from + ptr @.TypeMapEntry.16651_from; char* to + }, ; 8743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16664_to, ; char* from + ptr null; char* to + }, ; 8744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16664_to, ; char* from + ptr null; char* to + }, ; 8745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16654_to, ; char* from + ptr @.TypeMapEntry.16653_from; char* to + }, ; 8746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16656_to, ; char* from + ptr @.TypeMapEntry.16655_from; char* to + }, ; 8747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16658_to, ; char* from + ptr @.TypeMapEntry.16657_from; char* to + }, ; 8748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16660_to, ; char* from + ptr @.TypeMapEntry.16659_from; char* to + }, ; 8749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16634_to, ; char* from + ptr @.TypeMapEntry.16633_from; char* to + }, ; 8750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16662_to, ; char* from + ptr @.TypeMapEntry.16661_from; char* to + }, ; 8751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16667_to, ; char* from + ptr @.TypeMapEntry.16666_from; char* to + }, ; 8752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16671_to, ; char* from + ptr @.TypeMapEntry.16670_from; char* to + }, ; 8753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16669_to, ; char* from + ptr @.TypeMapEntry.16668_from; char* to + }, ; 8754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16695_to, ; char* from + ptr null; char* to + }, ; 8755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16695_to, ; char* from + ptr null; char* to + }, ; 8756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16673_to, ; char* from + ptr @.TypeMapEntry.16672_from; char* to + }, ; 8757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16681_to, ; char* from + ptr @.TypeMapEntry.16680_from; char* to + }, ; 8758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16675_to, ; char* from + ptr null; char* to + }, ; 8759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16675_to, ; char* from + ptr null; char* to + }, ; 8760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16678_to, ; char* from + ptr null; char* to + }, ; 8761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16678_to, ; char* from + ptr null; char* to + }, ; 8762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16685_to, ; char* from + ptr @.TypeMapEntry.16684_from; char* to + }, ; 8763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16683_to, ; char* from + ptr @.TypeMapEntry.16682_from; char* to + }, ; 8764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16687_to, ; char* from + ptr @.TypeMapEntry.16686_from; char* to + }, ; 8765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16689_to, ; char* from + ptr @.TypeMapEntry.16688_from; char* to + }, ; 8766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16693_to, ; char* from + ptr @.TypeMapEntry.16692_from; char* to + }, ; 8767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16691_to, ; char* from + ptr @.TypeMapEntry.16690_from; char* to + }, ; 8768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16698_to, ; char* from + ptr @.TypeMapEntry.16697_from; char* to + }, ; 8769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16700_to, ; char* from + ptr @.TypeMapEntry.16699_from; char* to + }, ; 8770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16702_to, ; char* from + ptr @.TypeMapEntry.16701_from; char* to + }, ; 8771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16704_to, ; char* from + ptr @.TypeMapEntry.16703_from; char* to + }, ; 8772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16706_to, ; char* from + ptr @.TypeMapEntry.16705_from; char* to + }, ; 8773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16708_to, ; char* from + ptr @.TypeMapEntry.16707_from; char* to + }, ; 8774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16710_to, ; char* from + ptr @.TypeMapEntry.16709_from; char* to + }, ; 8775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16712_to, ; char* from + ptr @.TypeMapEntry.16711_from; char* to + }, ; 8776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16714_to, ; char* from + ptr @.TypeMapEntry.16713_from; char* to + }, ; 8777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16716_to, ; char* from + ptr @.TypeMapEntry.16715_from; char* to + }, ; 8778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16718_to, ; char* from + ptr @.TypeMapEntry.16717_from; char* to + }, ; 8779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16720_to, ; char* from + ptr @.TypeMapEntry.16719_from; char* to + }, ; 8780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16722_to, ; char* from + ptr @.TypeMapEntry.16721_from; char* to + }, ; 8781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16724_to, ; char* from + ptr @.TypeMapEntry.16723_from; char* to + }, ; 8782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16729_to, ; char* from + ptr @.TypeMapEntry.16728_from; char* to + }, ; 8783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16731_to, ; char* from + ptr @.TypeMapEntry.16730_from; char* to + }, ; 8784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16726_to, ; char* from + ptr null; char* to + }, ; 8785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16726_to, ; char* from + ptr null; char* to + }, ; 8786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16733_to, ; char* from + ptr @.TypeMapEntry.16732_from; char* to + }, ; 8787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16735_to, ; char* from + ptr @.TypeMapEntry.16734_from; char* to + }, ; 8788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16737_to, ; char* from + ptr @.TypeMapEntry.16736_from; char* to + }, ; 8789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16739_to, ; char* from + ptr @.TypeMapEntry.16738_from; char* to + }, ; 8790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16741_to, ; char* from + ptr @.TypeMapEntry.16740_from; char* to + }, ; 8791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16743_to, ; char* from + ptr @.TypeMapEntry.16742_from; char* to + }, ; 8792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16745_to, ; char* from + ptr @.TypeMapEntry.16744_from; char* to + }, ; 8793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16747_to, ; char* from + ptr @.TypeMapEntry.16746_from; char* to + }, ; 8794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16749_to, ; char* from + ptr @.TypeMapEntry.16748_from; char* to + }, ; 8795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16751_to, ; char* from + ptr @.TypeMapEntry.16750_from; char* to + }, ; 8796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16753_to, ; char* from + ptr @.TypeMapEntry.16752_from; char* to + }, ; 8797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16755_to, ; char* from + ptr @.TypeMapEntry.16754_from; char* to + }, ; 8798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16757_to, ; char* from + ptr @.TypeMapEntry.16756_from; char* to + }, ; 8799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16759_to, ; char* from + ptr @.TypeMapEntry.16758_from; char* to + }, ; 8800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16761_to, ; char* from + ptr @.TypeMapEntry.16760_from; char* to + }, ; 8801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16763_to, ; char* from + ptr @.TypeMapEntry.16762_from; char* to + }, ; 8802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16765_to, ; char* from + ptr @.TypeMapEntry.16764_from; char* to + }, ; 8803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16767_to, ; char* from + ptr @.TypeMapEntry.16766_from; char* to + }, ; 8804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16769_to, ; char* from + ptr @.TypeMapEntry.16768_from; char* to + }, ; 8805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16771_to, ; char* from + ptr @.TypeMapEntry.16770_from; char* to + }, ; 8806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16773_to, ; char* from + ptr @.TypeMapEntry.16772_from; char* to + }, ; 8807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16775_to, ; char* from + ptr @.TypeMapEntry.16774_from; char* to + }, ; 8808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16777_to, ; char* from + ptr @.TypeMapEntry.16776_from; char* to + }, ; 8809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16784_to, ; char* from + ptr @.TypeMapEntry.16783_from; char* to + }, ; 8810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16779_to, ; char* from + ptr @.TypeMapEntry.16778_from; char* to + }, ; 8811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16781_to, ; char* from + ptr null; char* to + }, ; 8812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16781_to, ; char* from + ptr null; char* to + }, ; 8813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16786_to, ; char* from + ptr @.TypeMapEntry.16785_from; char* to + }, ; 8814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16788_to, ; char* from + ptr @.TypeMapEntry.16787_from; char* to + }, ; 8815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16788_to, ; char* from + ptr @.TypeMapEntry.16787_from; char* to + }, ; 8816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16788_to, ; char* from + ptr @.TypeMapEntry.16787_from; char* to + }, ; 8817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16788_to, ; char* from + ptr @.TypeMapEntry.16787_from; char* to + }, ; 8818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16791_to, ; char* from + ptr @.TypeMapEntry.16790_from; char* to + }, ; 8819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16793_to, ; char* from + ptr @.TypeMapEntry.16792_from; char* to + }, ; 8820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16795_to, ; char* from + ptr @.TypeMapEntry.16794_from; char* to + }, ; 8821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16795_to, ; char* from + ptr @.TypeMapEntry.16794_from; char* to + }, ; 8822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16805_to, ; char* from + ptr @.TypeMapEntry.16804_from; char* to + }, ; 8823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16812_to, ; char* from + ptr @.TypeMapEntry.16811_from; char* to + }, ; 8824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16807_to, ; char* from + ptr @.TypeMapEntry.16806_from; char* to + }, ; 8825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16809_to, ; char* from + ptr null; char* to + }, ; 8826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16809_to, ; char* from + ptr null; char* to + }, ; 8827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16800_to, ; char* from + ptr null; char* to + }, ; 8828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16800_to, ; char* from + ptr null; char* to + }, ; 8829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16814_to, ; char* from + ptr @.TypeMapEntry.16813_from; char* to + }, ; 8830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16816_to, ; char* from + ptr @.TypeMapEntry.16815_from; char* to + }, ; 8831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16818_to, ; char* from + ptr @.TypeMapEntry.16817_from; char* to + }, ; 8832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16818_to, ; char* from + ptr @.TypeMapEntry.16817_from; char* to + }, ; 8833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16821_to, ; char* from + ptr @.TypeMapEntry.16820_from; char* to + }, ; 8834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16823_to, ; char* from + ptr @.TypeMapEntry.16822_from; char* to + }, ; 8835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16825_to, ; char* from + ptr @.TypeMapEntry.16824_from; char* to + }, ; 8836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16827_to, ; char* from + ptr @.TypeMapEntry.16826_from; char* to + }, ; 8837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16829_to, ; char* from + ptr @.TypeMapEntry.16828_from; char* to + }, ; 8838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16831_to, ; char* from + ptr @.TypeMapEntry.16830_from; char* to + }, ; 8839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16833_to, ; char* from + ptr @.TypeMapEntry.16832_from; char* to + }, ; 8840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16835_to, ; char* from + ptr @.TypeMapEntry.16834_from; char* to + }, ; 8841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16837_to, ; char* from + ptr @.TypeMapEntry.16836_from; char* to + }, ; 8842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16839_to, ; char* from + ptr @.TypeMapEntry.16838_from; char* to + }, ; 8843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16841_to, ; char* from + ptr @.TypeMapEntry.16840_from; char* to + }, ; 8844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16845_to, ; char* from + ptr null; char* to + }, ; 8845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16845_to, ; char* from + ptr null; char* to + }, ; 8846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16848_to, ; char* from + ptr null; char* to + }, ; 8847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16848_to, ; char* from + ptr null; char* to + }, ; 8848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16843_to, ; char* from + ptr @.TypeMapEntry.16842_from; char* to + }, ; 8849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16851_to, ; char* from + ptr @.TypeMapEntry.16850_from; char* to + }, ; 8850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16851_to, ; char* from + ptr @.TypeMapEntry.16850_from; char* to + }, ; 8851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16859_to, ; char* from + ptr @.TypeMapEntry.16858_from; char* to + }, ; 8852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16854_to, ; char* from + ptr @.TypeMapEntry.16853_from; char* to + }, ; 8853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16856_to, ; char* from + ptr @.TypeMapEntry.16855_from; char* to + }, ; 8854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16856_to, ; char* from + ptr @.TypeMapEntry.16855_from; char* to + }, ; 8855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16871_to, ; char* from + ptr @.TypeMapEntry.16870_from; char* to + }, ; 8856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16861_to, ; char* from + ptr @.TypeMapEntry.16860_from; char* to + }, ; 8857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16863_to, ; char* from + ptr @.TypeMapEntry.16862_from; char* to + }, ; 8858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16868_to, ; char* from + ptr @.TypeMapEntry.16867_from; char* to + }, ; 8859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16868_to, ; char* from + ptr @.TypeMapEntry.16867_from; char* to + }, ; 8860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16865_to, ; char* from + ptr null; char* to + }, ; 8861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16865_to, ; char* from + ptr null; char* to + }, ; 8862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16873_to, ; char* from + ptr @.TypeMapEntry.16872_from; char* to + }, ; 8863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16875_to, ; char* from + ptr @.TypeMapEntry.16874_from; char* to + }, ; 8864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16882_to, ; char* from + ptr @.TypeMapEntry.16881_from; char* to + }, ; 8865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16877_to, ; char* from + ptr null; char* to + }, ; 8866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16877_to, ; char* from + ptr null; char* to + }, ; 8867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16884_to, ; char* from + ptr @.TypeMapEntry.16883_from; char* to + }, ; 8868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16886_to, ; char* from + ptr @.TypeMapEntry.16885_from; char* to + }, ; 8869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16888_to, ; char* from + ptr @.TypeMapEntry.16887_from; char* to + }, ; 8870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16890_to, ; char* from + ptr @.TypeMapEntry.16889_from; char* to + }, ; 8871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16892_to, ; char* from + ptr @.TypeMapEntry.16891_from; char* to + }, ; 8872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16894_to, ; char* from + ptr @.TypeMapEntry.16893_from; char* to + }, ; 8873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16896_to, ; char* from + ptr @.TypeMapEntry.16895_from; char* to + }, ; 8874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16906_to, ; char* from + ptr null; char* to + }, ; 8875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16906_to, ; char* from + ptr null; char* to + }, ; 8876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16898_to, ; char* from + ptr @.TypeMapEntry.16897_from; char* to + }, ; 8877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16900_to, ; char* from + ptr @.TypeMapEntry.16899_from; char* to + }, ; 8878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16902_to, ; char* from + ptr @.TypeMapEntry.16901_from; char* to + }, ; 8879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16904_to, ; char* from + ptr @.TypeMapEntry.16903_from; char* to + }, ; 8880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16923_to, ; char* from + ptr @.TypeMapEntry.16922_from; char* to + }, ; 8881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16909_to, ; char* from + ptr null; char* to + }, ; 8882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16909_to, ; char* from + ptr null; char* to + }, ; 8883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16912_to, ; char* from + ptr null; char* to + }, ; 8884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16912_to, ; char* from + ptr null; char* to + }, ; 8885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16925_to, ; char* from + ptr @.TypeMapEntry.16924_from; char* to + }, ; 8886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16927_to, ; char* from + ptr @.TypeMapEntry.16926_from; char* to + }, ; 8887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16929_to, ; char* from + ptr @.TypeMapEntry.16928_from; char* to + }, ; 8888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16931_to, ; char* from + ptr @.TypeMapEntry.16930_from; char* to + }, ; 8889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16933_to, ; char* from + ptr @.TypeMapEntry.16932_from; char* to + }, ; 8890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16935_to, ; char* from + ptr @.TypeMapEntry.16934_from; char* to + }, ; 8891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16937_to, ; char* from + ptr @.TypeMapEntry.16936_from; char* to + }, ; 8892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16939_to, ; char* from + ptr @.TypeMapEntry.16938_from; char* to + }, ; 8893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16941_to, ; char* from + ptr @.TypeMapEntry.16940_from; char* to + }, ; 8894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16943_to, ; char* from + ptr @.TypeMapEntry.16942_from; char* to + }, ; 8895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16945_to, ; char* from + ptr @.TypeMapEntry.16944_from; char* to + }, ; 8896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16947_to, ; char* from + ptr @.TypeMapEntry.16946_from; char* to + }, ; 8897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16949_to, ; char* from + ptr @.TypeMapEntry.16948_from; char* to + }, ; 8898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16917_to, ; char* from + ptr null; char* to + }, ; 8899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16917_to, ; char* from + ptr null; char* to + }, ; 8900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16954_to, ; char* from + ptr @.TypeMapEntry.16953_from; char* to + }, ; 8901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16951_to, ; char* from + ptr null; char* to + }, ; 8902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16951_to, ; char* from + ptr null; char* to + }, ; 8903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16956_to, ; char* from + ptr @.TypeMapEntry.16955_from; char* to + }, ; 8904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16958_to, ; char* from + ptr @.TypeMapEntry.16957_from; char* to + }, ; 8905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16960_to, ; char* from + ptr @.TypeMapEntry.16959_from; char* to + }, ; 8906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16962_to, ; char* from + ptr @.TypeMapEntry.16961_from; char* to + }, ; 8907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16964_to, ; char* from + ptr @.TypeMapEntry.16963_from; char* to + }, ; 8908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16920_to, ; char* from + ptr null; char* to + }, ; 8909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16920_to, ; char* from + ptr null; char* to + }, ; 8910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16973_to, ; char* from + ptr @.TypeMapEntry.16972_from; char* to + }, ; 8911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16966_to, ; char* from + ptr null; char* to + }, ; 8912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16966_to, ; char* from + ptr null; char* to + }, ; 8913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16971_to, ; char* from + ptr @.TypeMapEntry.16970_from; char* to + }, ; 8914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16975_to, ; char* from + ptr @.TypeMapEntry.16974_from; char* to + }, ; 8915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16977_to, ; char* from + ptr @.TypeMapEntry.16976_from; char* to + }, ; 8916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16979_to, ; char* from + ptr @.TypeMapEntry.16978_from; char* to + }, ; 8917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16981_to, ; char* from + ptr @.TypeMapEntry.16980_from; char* to + }, ; 8918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16986_to, ; char* from + ptr @.TypeMapEntry.16985_from; char* to + }, ; 8919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16986_to, ; char* from + ptr @.TypeMapEntry.16985_from; char* to + }, ; 8920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16983_to, ; char* from + ptr null; char* to + }, ; 8921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16983_to, ; char* from + ptr null; char* to + }, ; 8922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16989_to, ; char* from + ptr @.TypeMapEntry.16988_from; char* to + }, ; 8923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16991_to, ; char* from + ptr @.TypeMapEntry.16990_from; char* to + }, ; 8924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16993_to, ; char* from + ptr @.TypeMapEntry.16992_from; char* to + }, ; 8925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16995_to, ; char* from + ptr @.TypeMapEntry.16994_from; char* to + }, ; 8926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16997_to, ; char* from + ptr @.TypeMapEntry.16996_from; char* to + }, ; 8927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16999_to, ; char* from + ptr @.TypeMapEntry.16998_from; char* to + }, ; 8928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17001_to, ; char* from + ptr @.TypeMapEntry.17000_from; char* to + }, ; 8929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17001_to, ; char* from + ptr @.TypeMapEntry.17000_from; char* to + }, ; 8930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17004_to, ; char* from + ptr @.TypeMapEntry.17003_from; char* to + }, ; 8931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17006_to, ; char* from + ptr @.TypeMapEntry.17005_from; char* to + }, ; 8932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17006_to, ; char* from + ptr @.TypeMapEntry.17005_from; char* to + }, ; 8933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17009_to, ; char* from + ptr @.TypeMapEntry.17008_from; char* to + }, ; 8934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17024_to, ; char* from + ptr @.TypeMapEntry.17023_from; char* to + }, ; 8935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17024_to, ; char* from + ptr @.TypeMapEntry.17023_from; char* to + }, ; 8936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17011_to, ; char* from + ptr null; char* to + }, ; 8937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17011_to, ; char* from + ptr null; char* to + }, ; 8938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17014_to, ; char* from + ptr null; char* to + }, ; 8939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17014_to, ; char* from + ptr null; char* to + }, ; 8940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17019_to, ; char* from + ptr null; char* to + }, ; 8941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17019_to, ; char* from + ptr null; char* to + }, ; 8942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17034_to, ; char* from + ptr @.TypeMapEntry.17033_from; char* to + }, ; 8943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17027_to, ; char* from + ptr null; char* to + }, ; 8944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17027_to, ; char* from + ptr null; char* to + }, ; 8945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17032_to, ; char* from + ptr @.TypeMapEntry.17031_from; char* to + }, ; 8946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17036_to, ; char* from + ptr @.TypeMapEntry.17035_from; char* to + }, ; 8947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17038_to, ; char* from + ptr @.TypeMapEntry.17037_from; char* to + }, ; 8948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17040_to, ; char* from + ptr @.TypeMapEntry.17039_from; char* to + }, ; 8949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17048_to, ; char* from + ptr @.TypeMapEntry.17047_from; char* to + }, ; 8950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17048_to, ; char* from + ptr @.TypeMapEntry.17047_from; char* to + }, ; 8951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17042_to, ; char* from + ptr null; char* to + }, ; 8952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17042_to, ; char* from + ptr null; char* to + }, ; 8953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17045_to, ; char* from + ptr null; char* to + }, ; 8954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17045_to, ; char* from + ptr null; char* to + }, ; 8955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17051_to, ; char* from + ptr @.TypeMapEntry.17050_from; char* to + }, ; 8956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17051_to, ; char* from + ptr @.TypeMapEntry.17050_from; char* to + }, ; 8957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17057_to, ; char* from + ptr @.TypeMapEntry.17056_from; char* to + }, ; 8958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17054_to, ; char* from + ptr null; char* to + }, ; 8959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17054_to, ; char* from + ptr null; char* to + }, ; 8960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17059_to, ; char* from + ptr @.TypeMapEntry.17058_from; char* to + }, ; 8961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17061_to, ; char* from + ptr @.TypeMapEntry.17060_from; char* to + }, ; 8962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17063_to, ; char* from + ptr @.TypeMapEntry.17062_from; char* to + }, ; 8963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17071_to, ; char* from + ptr @.TypeMapEntry.17070_from; char* to + }, ; 8964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17065_to, ; char* from + ptr null; char* to + }, ; 8965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17065_to, ; char* from + ptr null; char* to + }, ; 8966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17068_to, ; char* from + ptr null; char* to + }, ; 8967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17068_to, ; char* from + ptr null; char* to + }, ; 8968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17073_to, ; char* from + ptr @.TypeMapEntry.17072_from; char* to + }, ; 8969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17075_to, ; char* from + ptr @.TypeMapEntry.17074_from; char* to + }, ; 8970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17080_to, ; char* from + ptr @.TypeMapEntry.17079_from; char* to + }, ; 8971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17077_to, ; char* from + ptr null; char* to + }, ; 8972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17077_to, ; char* from + ptr null; char* to + }, ; 8973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17082_to, ; char* from + ptr @.TypeMapEntry.17081_from; char* to + }, ; 8974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17084_to, ; char* from + ptr @.TypeMapEntry.17083_from; char* to + }, ; 8975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17086_to, ; char* from + ptr @.TypeMapEntry.17085_from; char* to + }, ; 8976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17088_to, ; char* from + ptr @.TypeMapEntry.17087_from; char* to + }, ; 8977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17090_to, ; char* from + ptr @.TypeMapEntry.17089_from; char* to + }, ; 8978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17090_to, ; char* from + ptr @.TypeMapEntry.17089_from; char* to + }, ; 8979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17093_to, ; char* from + ptr @.TypeMapEntry.17092_from; char* to + }, ; 8980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17095_to, ; char* from + ptr @.TypeMapEntry.17094_from; char* to + }, ; 8981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17097_to, ; char* from + ptr @.TypeMapEntry.17096_from; char* to + }, ; 8982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17104_to, ; char* from + ptr @.TypeMapEntry.17103_from; char* to + }, ; 8983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17099_to, ; char* from + ptr @.TypeMapEntry.17098_from; char* to + }, ; 8984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17099_to, ; char* from + ptr @.TypeMapEntry.17098_from; char* to + }, ; 8985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17102_to, ; char* from + ptr @.TypeMapEntry.17101_from; char* to + }, ; 8986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17115_to, ; char* from + ptr @.TypeMapEntry.17114_from; char* to + }, ; 8987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17106_to, ; char* from + ptr @.TypeMapEntry.17105_from; char* to + }, ; 8988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17108_to, ; char* from + ptr null; char* to + }, ; 8989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17108_to, ; char* from + ptr null; char* to + }, ; 8990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17113_to, ; char* from + ptr @.TypeMapEntry.17112_from; char* to + }, ; 8991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17120_to, ; char* from + ptr @.TypeMapEntry.17119_from; char* to + }, ; 8992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17122_to, ; char* from + ptr @.TypeMapEntry.17121_from; char* to + }, ; 8993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17117_to, ; char* from + ptr null; char* to + }, ; 8994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17117_to, ; char* from + ptr null; char* to + }, ; 8995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17124_to, ; char* from + ptr @.TypeMapEntry.17123_from; char* to + }, ; 8996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17126_to, ; char* from + ptr @.TypeMapEntry.17125_from; char* to + }, ; 8997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17128_to, ; char* from + ptr @.TypeMapEntry.17127_from; char* to + }, ; 8998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17130_to, ; char* from + ptr @.TypeMapEntry.17129_from; char* to + }, ; 8999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17130_to, ; char* from + ptr @.TypeMapEntry.17129_from; char* to + }, ; 9000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17130_to, ; char* from + ptr @.TypeMapEntry.17129_from; char* to + }, ; 9001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17130_to, ; char* from + ptr @.TypeMapEntry.17129_from; char* to + }, ; 9002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17141_to, ; char* from + ptr null; char* to + }, ; 9003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17141_to, ; char* from + ptr null; char* to + }, ; 9004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17133_to, ; char* from + ptr @.TypeMapEntry.17132_from; char* to + }, ; 9005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17135_to, ; char* from + ptr @.TypeMapEntry.17134_from; char* to + }, ; 9006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17137_to, ; char* from + ptr @.TypeMapEntry.17136_from; char* to + }, ; 9007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17147_to, ; char* from + ptr @.TypeMapEntry.17146_from; char* to + }, ; 9008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17149_to, ; char* from + ptr @.TypeMapEntry.17148_from; char* to + }, ; 9009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17156_to, ; char* from + ptr @.TypeMapEntry.17155_from; char* to + }, ; 9010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17151_to, ; char* from + ptr null; char* to + }, ; 9011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17151_to, ; char* from + ptr null; char* to + }, ; 9012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17154_to, ; char* from + ptr @.TypeMapEntry.17153_from; char* to + }, ; 9013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17158_to, ; char* from + ptr @.TypeMapEntry.17157_from; char* to + }, ; 9014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17160_to, ; char* from + ptr @.TypeMapEntry.17159_from; char* to + }, ; 9015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17162_to, ; char* from + ptr @.TypeMapEntry.17161_from; char* to + }, ; 9016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17164_to, ; char* from + ptr @.TypeMapEntry.17163_from; char* to + }, ; 9017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17171_to, ; char* from + ptr @.TypeMapEntry.17170_from; char* to + }, ; 9018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17166_to, ; char* from + ptr @.TypeMapEntry.17165_from; char* to + }, ; 9019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17168_to, ; char* from + ptr null; char* to + }, ; 9020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17168_to, ; char* from + ptr null; char* to + }, ; 9021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17178_to, ; char* from + ptr @.TypeMapEntry.17177_from; char* to + }, ; 9022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17173_to, ; char* from + ptr null; char* to + }, ; 9023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17173_to, ; char* from + ptr null; char* to + }, ; 9024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17191_to, ; char* from + ptr @.TypeMapEntry.17190_from; char* to + }, ; 9025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17180_to, ; char* from + ptr @.TypeMapEntry.17179_from; char* to + }, ; 9026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17182_to, ; char* from + ptr @.TypeMapEntry.17181_from; char* to + }, ; 9027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17184_to, ; char* from + ptr @.TypeMapEntry.17183_from; char* to + }, ; 9028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17186_to, ; char* from + ptr @.TypeMapEntry.17185_from; char* to + }, ; 9029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17186_to, ; char* from + ptr @.TypeMapEntry.17185_from; char* to + }, ; 9030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17189_to, ; char* from + ptr @.TypeMapEntry.17188_from; char* to + }, ; 9031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17193_to, ; char* from + ptr @.TypeMapEntry.17192_from; char* to + }, ; 9032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17144_to, ; char* from + ptr null; char* to + }, ; 9033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17144_to, ; char* from + ptr null; char* to + }, ; 9034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17195_to, ; char* from + ptr @.TypeMapEntry.17194_from; char* to + }, ; 9035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17195_to, ; char* from + ptr @.TypeMapEntry.17194_from; char* to + }, ; 9036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17198_to, ; char* from + ptr @.TypeMapEntry.17197_from; char* to + }, ; 9037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17202_to, ; char* from + ptr @.TypeMapEntry.17201_from; char* to + }, ; 9038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17200_to, ; char* from + ptr @.TypeMapEntry.17199_from; char* to + }, ; 9039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17204_to, ; char* from + ptr @.TypeMapEntry.17203_from; char* to + }, ; 9040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17204_to, ; char* from + ptr @.TypeMapEntry.17203_from; char* to + }, ; 9041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17207_to, ; char* from + ptr @.TypeMapEntry.17206_from; char* to + }, ; 9042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17211_to, ; char* from + ptr null; char* to + }, ; 9043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17211_to, ; char* from + ptr null; char* to + }, ; 9044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17216_to, ; char* from + ptr null; char* to + }, ; 9045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17216_to, ; char* from + ptr null; char* to + }, ; 9046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17209_to, ; char* from + ptr @.TypeMapEntry.17208_from; char* to + }, ; 9047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17221_to, ; char* from + ptr @.TypeMapEntry.17223_from; char* to + }, ; 9048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17221_to, ; char* from + ptr @.TypeMapEntry.17223_from; char* to + }, ; 9049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17221_to, ; char* from + ptr @.TypeMapEntry.17223_from; char* to + }, ; 9050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17221_to, ; char* from + ptr @.TypeMapEntry.17223_from; char* to + }, ; 9051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17232_to, ; char* from + ptr @.TypeMapEntry.17231_from; char* to + }, ; 9052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17226_to, ; char* from + ptr null; char* to + }, ; 9053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17226_to, ; char* from + ptr null; char* to + }, ; 9054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17229_to, ; char* from + ptr null; char* to + }, ; 9055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17229_to, ; char* from + ptr null; char* to + }, ; 9056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17240_to, ; char* from + ptr @.TypeMapEntry.17239_from; char* to + }, ; 9057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17234_to, ; char* from + ptr null; char* to + }, ; 9058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17234_to, ; char* from + ptr null; char* to + }, ; 9059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17237_to, ; char* from + ptr null; char* to + }, ; 9060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17237_to, ; char* from + ptr null; char* to + }, ; 9061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17263_to, ; char* from + ptr @.TypeMapEntry.17262_from; char* to + }, ; 9062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17263_to, ; char* from + ptr @.TypeMapEntry.17262_from; char* to + }, ; 9063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17252_to, ; char* from + ptr null; char* to + }, ; 9064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17252_to, ; char* from + ptr null; char* to + }, ; 9065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17245_to, ; char* from + ptr @.TypeMapEntry.17244_from; char* to + }, ; 9066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17245_to, ; char* from + ptr @.TypeMapEntry.17244_from; char* to + }, ; 9067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17242_to, ; char* from + ptr null; char* to + }, ; 9068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17242_to, ; char* from + ptr null; char* to + }, ; 9069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17248_to, ; char* from + ptr @.TypeMapEntry.17247_from; char* to + }, ; 9070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17250_to, ; char* from + ptr @.TypeMapEntry.17249_from; char* to + }, ; 9071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17255_to, ; char* from + ptr null; char* to + }, ; 9072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17255_to, ; char* from + ptr null; char* to + }, ; 9073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17258_to, ; char* from + ptr null; char* to + }, ; 9074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17258_to, ; char* from + ptr null; char* to + }, ; 9075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17261_to, ; char* from + ptr @.TypeMapEntry.17260_from; char* to + }, ; 9076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17266_to, ; char* from + ptr null; char* to + }, ; 9077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17266_to, ; char* from + ptr null; char* to + }, ; 9078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17275_to, ; char* from + ptr @.TypeMapEntry.17274_from; char* to + }, ; 9079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17269_to, ; char* from + ptr @.TypeMapEntry.17268_from; char* to + }, ; 9080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17273_to, ; char* from + ptr @.TypeMapEntry.17272_from; char* to + }, ; 9081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17277_to, ; char* from + ptr @.TypeMapEntry.17276_from; char* to + }, ; 9082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17271_to, ; char* from + ptr @.TypeMapEntry.17270_from; char* to + }, ; 9083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17279_to, ; char* from + ptr @.TypeMapEntry.17278_from; char* to + }, ; 9084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17281_to, ; char* from + ptr @.TypeMapEntry.17280_from; char* to + }, ; 9085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17285_to, ; char* from + ptr @.TypeMapEntry.17284_from; char* to + }, ; 9086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17318_to, ; char* from + ptr @.TypeMapEntry.17317_from; char* to + }, ; 9087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17293_to, ; char* from + ptr null; char* to + }, ; 9088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17293_to, ; char* from + ptr null; char* to + }, ; 9089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17287_to, ; char* from + ptr null; char* to + }, ; 9090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17287_to, ; char* from + ptr null; char* to + }, ; 9091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17290_to, ; char* from + ptr null; char* to + }, ; 9092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17290_to, ; char* from + ptr null; char* to + }, ; 9093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17295_to, ; char* from + ptr null; char* to + }, ; 9094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17295_to, ; char* from + ptr null; char* to + }, ; 9095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17310_to, ; char* from + ptr @.TypeMapEntry.17309_from; char* to + }, ; 9096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17301_to, ; char* from + ptr null; char* to + }, ; 9097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17301_to, ; char* from + ptr null; char* to + }, ; 9098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17304_to, ; char* from + ptr null; char* to + }, ; 9099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17304_to, ; char* from + ptr null; char* to + }, ; 9100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17307_to, ; char* from + ptr null; char* to + }, ; 9101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17307_to, ; char* from + ptr null; char* to + }, ; 9102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17312_to, ; char* from + ptr @.TypeMapEntry.17311_from; char* to + }, ; 9103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17314_to, ; char* from + ptr @.TypeMapEntry.17313_from; char* to + }, ; 9104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17316_to, ; char* from + ptr @.TypeMapEntry.17315_from; char* to + }, ; 9105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17323_to, ; char* from + ptr @.TypeMapEntry.17322_from; char* to + }, ; 9106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17320_to, ; char* from + ptr null; char* to + }, ; 9107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17320_to, ; char* from + ptr null; char* to + }, ; 9108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17283_to, ; char* from + ptr @.TypeMapEntry.17282_from; char* to + }, ; 9109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17325_to, ; char* from + ptr @.TypeMapEntry.17324_from; char* to + }, ; 9110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17327_to, ; char* from + ptr @.TypeMapEntry.17326_from; char* to + }, ; 9111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17350_to, ; char* from + ptr @.TypeMapEntry.17349_from; char* to + }, ; 9112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17329_to, ; char* from + ptr @.TypeMapEntry.17328_from; char* to + }, ; 9113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17331_to, ; char* from + ptr null; char* to + }, ; 9114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17331_to, ; char* from + ptr null; char* to + }, ; 9115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17334_to, ; char* from + ptr null; char* to + }, ; 9116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17334_to, ; char* from + ptr null; char* to + }, ; 9117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17337_to, ; char* from + ptr null; char* to + }, ; 9118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17337_to, ; char* from + ptr null; char* to + }, ; 9119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17340_to, ; char* from + ptr null; char* to + }, ; 9120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17340_to, ; char* from + ptr null; char* to + }, ; 9121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17345_to, ; char* from + ptr null; char* to + }, ; 9122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17345_to, ; char* from + ptr null; char* to + }, ; 9123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17352_to, ; char* from + ptr @.TypeMapEntry.17351_from; char* to + }, ; 9124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17354_to, ; char* from + ptr @.TypeMapEntry.17353_from; char* to + }, ; 9125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17356_to, ; char* from + ptr @.TypeMapEntry.17355_from; char* to + }, ; 9126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17363_to, ; char* from + ptr @.TypeMapEntry.17362_from; char* to + }, ; 9127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17361_to, ; char* from + ptr @.TypeMapEntry.17360_from; char* to + }, ; 9128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17358_to, ; char* from + ptr @.TypeMapEntry.17364_from; char* to + }, ; 9129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17358_to, ; char* from + ptr @.TypeMapEntry.17364_from; char* to + }, ; 9130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17358_to, ; char* from + ptr @.TypeMapEntry.17364_from; char* to + }, ; 9131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17358_to, ; char* from + ptr @.TypeMapEntry.17364_from; char* to + }, ; 9132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17367_to, ; char* from + ptr @.TypeMapEntry.17366_from; char* to + }, ; 9133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17369_to, ; char* from + ptr @.TypeMapEntry.17368_from; char* to + }, ; 9134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17369_to, ; char* from + ptr @.TypeMapEntry.17368_from; char* to + }, ; 9135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17372_to, ; char* from + ptr @.TypeMapEntry.17371_from; char* to + }, ; 9136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17372_to, ; char* from + ptr @.TypeMapEntry.17371_from; char* to + }, ; 9137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17377_to, ; char* from + ptr @.TypeMapEntry.17376_from; char* to + }, ; 9138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17377_to, ; char* from + ptr @.TypeMapEntry.17376_from; char* to + }, ; 9139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17375_to, ; char* from + ptr @.TypeMapEntry.17374_from; char* to + }, ; 9140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17380_to, ; char* from + ptr @.TypeMapEntry.17379_from; char* to + }, ; 9141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17382_to, ; char* from + ptr @.TypeMapEntry.17381_from; char* to + }, ; 9142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17384_to, ; char* from + ptr @.TypeMapEntry.17383_from; char* to + }, ; 9143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17386_to, ; char* from + ptr @.TypeMapEntry.17385_from; char* to + }, ; 9144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17388_to, ; char* from + ptr @.TypeMapEntry.17387_from; char* to + }, ; 9145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17390_to, ; char* from + ptr @.TypeMapEntry.17389_from; char* to + }, ; 9146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17392_to, ; char* from + ptr @.TypeMapEntry.17391_from; char* to + }, ; 9147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17397_to, ; char* from + ptr @.TypeMapEntry.17396_from; char* to + }, ; 9148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17410_to, ; char* from + ptr @.TypeMapEntry.17409_from; char* to + }, ; 9149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17399_to, ; char* from + ptr null; char* to + }, ; 9150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17399_to, ; char* from + ptr null; char* to + }, ; 9151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17402_to, ; char* from + ptr null; char* to + }, ; 9152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17402_to, ; char* from + ptr null; char* to + }, ; 9153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17408_to, ; char* from + ptr @.TypeMapEntry.17407_from; char* to + }, ; 9154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17405_to, ; char* from + ptr null; char* to + }, ; 9155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17405_to, ; char* from + ptr null; char* to + }, ; 9156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17412_to, ; char* from + ptr @.TypeMapEntry.17411_from; char* to + }, ; 9157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17414_to, ; char* from + ptr @.TypeMapEntry.17413_from; char* to + }, ; 9158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17416_to, ; char* from + ptr @.TypeMapEntry.17415_from; char* to + }, ; 9159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17421_to, ; char* from + ptr @.TypeMapEntry.17420_from; char* to + }, ; 9160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17418_to, ; char* from + ptr null; char* to + }, ; 9161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17418_to, ; char* from + ptr null; char* to + }, ; 9162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17472_to, ; char* from + ptr @.TypeMapEntry.17471_from; char* to + }, ; 9163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17477_to, ; char* from + ptr @.TypeMapEntry.17476_from; char* to + }, ; 9164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17474_to, ; char* from + ptr null; char* to + }, ; 9165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17474_to, ; char* from + ptr null; char* to + }, ; 9166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17394_to, ; char* from + ptr null; char* to + }, ; 9167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17394_to, ; char* from + ptr null; char* to + }, ; 9168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17423_to, ; char* from + ptr @.TypeMapEntry.17422_from; char* to + }, ; 9169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17425_to, ; char* from + ptr @.TypeMapEntry.17424_from; char* to + }, ; 9170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17427_to, ; char* from + ptr @.TypeMapEntry.17426_from; char* to + }, ; 9171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17432_to, ; char* from + ptr @.TypeMapEntry.17431_from; char* to + }, ; 9172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17445_to, ; char* from + ptr @.TypeMapEntry.17444_from; char* to + }, ; 9173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17434_to, ; char* from + ptr null; char* to + }, ; 9174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17434_to, ; char* from + ptr null; char* to + }, ; 9175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17437_to, ; char* from + ptr null; char* to + }, ; 9176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17437_to, ; char* from + ptr null; char* to + }, ; 9177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17443_to, ; char* from + ptr @.TypeMapEntry.17442_from; char* to + }, ; 9178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17440_to, ; char* from + ptr null; char* to + }, ; 9179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17440_to, ; char* from + ptr null; char* to + }, ; 9180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17452_to, ; char* from + ptr @.TypeMapEntry.17451_from; char* to + }, ; 9181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17447_to, ; char* from + ptr null; char* to + }, ; 9182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17447_to, ; char* from + ptr null; char* to + }, ; 9183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17450_to, ; char* from + ptr @.TypeMapEntry.17449_from; char* to + }, ; 9184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17454_to, ; char* from + ptr @.TypeMapEntry.17453_from; char* to + }, ; 9185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17456_to, ; char* from + ptr @.TypeMapEntry.17455_from; char* to + }, ; 9186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17458_to, ; char* from + ptr @.TypeMapEntry.17457_from; char* to + }, ; 9187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17463_to, ; char* from + ptr @.TypeMapEntry.17462_from; char* to + }, ; 9188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17460_to, ; char* from + ptr null; char* to + }, ; 9189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17460_to, ; char* from + ptr null; char* to + }, ; 9190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17465_to, ; char* from + ptr @.TypeMapEntry.17464_from; char* to + }, ; 9191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17470_to, ; char* from + ptr @.TypeMapEntry.17469_from; char* to + }, ; 9192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17467_to, ; char* from + ptr null; char* to + }, ; 9193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17467_to, ; char* from + ptr null; char* to + }, ; 9194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17429_to, ; char* from + ptr null; char* to + }, ; 9195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17429_to, ; char* from + ptr null; char* to + }, ; 9196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17479_to, ; char* from + ptr null; char* to + }, ; 9197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17479_to, ; char* from + ptr null; char* to + }, ; 9198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24542_to, ; char* from + ptr null; char* to + }, ; 9199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24542_to, ; char* from + ptr null; char* to + }, ; 9200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24545_to, ; char* from + ptr null; char* to + }, ; 9201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24545_to, ; char* from + ptr null; char* to + }, ; 9202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24378_to, ; char* from + ptr @.TypeMapEntry.24377_from; char* to + }, ; 9203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24380_to, ; char* from + ptr @.TypeMapEntry.24379_from; char* to + }, ; 9204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24382_to, ; char* from + ptr @.TypeMapEntry.24381_from; char* to + }, ; 9205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24384_to, ; char* from + ptr @.TypeMapEntry.24383_from; char* to + }, ; 9206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24395_to, ; char* from + ptr @.TypeMapEntry.24394_from; char* to + }, ; 9207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24395_to, ; char* from + ptr @.TypeMapEntry.24394_from; char* to + }, ; 9208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24397_to, ; char* from + ptr @.TypeMapEntry.24396_from; char* to + }, ; 9209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24400_to, ; char* from + ptr @.TypeMapEntry.24399_from; char* to + }, ; 9210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24402_to, ; char* from + ptr @.TypeMapEntry.24401_from; char* to + }, ; 9211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24548_to, ; char* from + ptr null; char* to + }, ; 9212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24548_to, ; char* from + ptr null; char* to + }, ; 9213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24551_to, ; char* from + ptr null; char* to + }, ; 9214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24551_to, ; char* from + ptr null; char* to + }, ; 9215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24554_to, ; char* from + ptr null; char* to + }, ; 9216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24554_to, ; char* from + ptr null; char* to + }, ; 9217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24590_to, ; char* from + ptr @.TypeMapEntry.24589_from; char* to + }, ; 9218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24745_to, ; char* from + ptr @.TypeMapEntry.24744_from; char* to + }, ; 9219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24747_to, ; char* from + ptr @.TypeMapEntry.24746_from; char* to + }, ; 9220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24863_to, ; char* from + ptr @.TypeMapEntry.24862_from; char* to + }, ; 9221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24863_to, ; char* from + ptr @.TypeMapEntry.24862_from; char* to + }, ; 9222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24893_to, ; char* from + ptr @.TypeMapEntry.24892_from; char* to + }, ; 9223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24893_to, ; char* from + ptr @.TypeMapEntry.24892_from; char* to + }, ; 9224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24557_to, ; char* from + ptr null; char* to + }, ; 9225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24557_to, ; char* from + ptr null; char* to + }, ; 9226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24897_to, ; char* from + ptr @.TypeMapEntry.24896_from; char* to + }, ; 9227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24901_to, ; char* from + ptr @.TypeMapEntry.24900_from; char* to + }, ; 9228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24899_to, ; char* from + ptr @.TypeMapEntry.24898_from; char* to + }, ; 9229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24903_to, ; char* from + ptr @.TypeMapEntry.24902_from; char* to + }, ; 9230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24560_to, ; char* from + ptr null; char* to + }, ; 9231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24560_to, ; char* from + ptr null; char* to + }, ; 9232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24911_to, ; char* from + ptr @.TypeMapEntry.24910_from; char* to + }, ; 9233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24907_to, ; char* from + ptr @.TypeMapEntry.24906_from; char* to + }, ; 9234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24905_to, ; char* from + ptr @.TypeMapEntry.24904_from; char* to + }, ; 9235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24909_to, ; char* from + ptr @.TypeMapEntry.24908_from; char* to + }, ; 9236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24913_to, ; char* from + ptr @.TypeMapEntry.24912_from; char* to + }, ; 9237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24563_to, ; char* from + ptr null; char* to + }, ; 9238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24563_to, ; char* from + ptr null; char* to + }, ; 9239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24566_to, ; char* from + ptr null; char* to + }, ; 9240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24566_to, ; char* from + ptr null; char* to + }, ; 9241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24569_to, ; char* from + ptr null; char* to + }, ; 9242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24569_to, ; char* from + ptr null; char* to + }, ; 9243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24915_to, ; char* from + ptr @.TypeMapEntry.24914_from; char* to + }, ; 9244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24917_to, ; char* from + ptr @.TypeMapEntry.24916_from; char* to + }, ; 9245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24572_to, ; char* from + ptr null; char* to + }, ; 9246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24572_to, ; char* from + ptr null; char* to + }, ; 9247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24984_to, ; char* from + ptr @.TypeMapEntry.24983_from; char* to + }, ; 9248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24986_to, ; char* from + ptr @.TypeMapEntry.24985_from; char* to + }, ; 9249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24986_to, ; char* from + ptr @.TypeMapEntry.24985_from; char* to + }, ; 9250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24989_to, ; char* from + ptr @.TypeMapEntry.24988_from; char* to + }, ; 9251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24575_to, ; char* from + ptr null; char* to + }, ; 9252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24575_to, ; char* from + ptr null; char* to + }, ; 9253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24578_to, ; char* from + ptr null; char* to + }, ; 9254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24578_to, ; char* from + ptr null; char* to + }, ; 9255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24581_to, ; char* from + ptr null; char* to + }, ; 9256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24581_to, ; char* from + ptr null; char* to + }, ; 9257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24584_to, ; char* from + ptr null; char* to + }, ; 9258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24584_to, ; char* from + ptr null; char* to + }, ; 9259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25822_to, ; char* from + ptr @.TypeMapEntry.25821_from; char* to + }, ; 9260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25824_to, ; char* from + ptr @.TypeMapEntry.25823_from; char* to + }, ; 9261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25826_to, ; char* from + ptr @.TypeMapEntry.25825_from; char* to + }, ; 9262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24587_to, ; char* from + ptr null; char* to + }, ; 9263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24587_to, ; char* from + ptr null; char* to + }, ; 9264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26768_to, ; char* from + ptr @.TypeMapEntry.26767_from; char* to + }, ; 9265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26770_to, ; char* from + ptr @.TypeMapEntry.26769_from; char* to + }, ; 9266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26772_to, ; char* from + ptr @.TypeMapEntry.26771_from; char* to + }, ; 9267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26795_to, ; char* from + ptr @.TypeMapEntry.26794_from; char* to + }, ; 9268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24216_to, ; char* from + ptr @.TypeMapEntry.24215_from; char* to + }, ; 9269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24218_to, ; char* from + ptr @.TypeMapEntry.24217_from; char* to + }, ; 9270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24220_to, ; char* from + ptr @.TypeMapEntry.24219_from; char* to + }, ; 9271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24220_to, ; char* from + ptr @.TypeMapEntry.24219_from; char* to + }, ; 9272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24223_to, ; char* from + ptr @.TypeMapEntry.24222_from; char* to + }, ; 9273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24225_to, ; char* from + ptr @.TypeMapEntry.24224_from; char* to + }, ; 9274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24225_to, ; char* from + ptr @.TypeMapEntry.24224_from; char* to + }, ; 9275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24228_to, ; char* from + ptr @.TypeMapEntry.24227_from; char* to + }, ; 9276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24232_to, ; char* from + ptr @.TypeMapEntry.24231_from; char* to + }, ; 9277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24230_to, ; char* from + ptr @.TypeMapEntry.24229_from; char* to + }, ; 9278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24234_to, ; char* from + ptr @.TypeMapEntry.24233_from; char* to + }, ; 9279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24242_to, ; char* from + ptr @.TypeMapEntry.24241_from; char* to + }, ; 9280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24236_to, ; char* from + ptr @.TypeMapEntry.24235_from; char* to + }, ; 9281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24238_to, ; char* from + ptr @.TypeMapEntry.24237_from; char* to + }, ; 9282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24240_to, ; char* from + ptr @.TypeMapEntry.24239_from; char* to + }, ; 9283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24246_to, ; char* from + ptr @.TypeMapEntry.24245_from; char* to + }, ; 9284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24244_to, ; char* from + ptr @.TypeMapEntry.24243_from; char* to + }, ; 9285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24248_to, ; char* from + ptr @.TypeMapEntry.24247_from; char* to + }, ; 9286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24254_to, ; char* from + ptr @.TypeMapEntry.24253_from; char* to + }, ; 9287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24250_to, ; char* from + ptr @.TypeMapEntry.24249_from; char* to + }, ; 9288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24252_to, ; char* from + ptr @.TypeMapEntry.24251_from; char* to + }, ; 9289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24258_to, ; char* from + ptr @.TypeMapEntry.24257_from; char* to + }, ; 9290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24256_to, ; char* from + ptr @.TypeMapEntry.24255_from; char* to + }, ; 9291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24260_to, ; char* from + ptr @.TypeMapEntry.24259_from; char* to + }, ; 9292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24266_to, ; char* from + ptr @.TypeMapEntry.24265_from; char* to + }, ; 9293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24262_to, ; char* from + ptr @.TypeMapEntry.24261_from; char* to + }, ; 9294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24264_to, ; char* from + ptr @.TypeMapEntry.24263_from; char* to + }, ; 9295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24270_to, ; char* from + ptr @.TypeMapEntry.24269_from; char* to + }, ; 9296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24268_to, ; char* from + ptr @.TypeMapEntry.24267_from; char* to + }, ; 9297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24272_to, ; char* from + ptr @.TypeMapEntry.24271_from; char* to + }, ; 9298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24278_to, ; char* from + ptr @.TypeMapEntry.24277_from; char* to + }, ; 9299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24274_to, ; char* from + ptr @.TypeMapEntry.24273_from; char* to + }, ; 9300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24276_to, ; char* from + ptr @.TypeMapEntry.24275_from; char* to + }, ; 9301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24280_to, ; char* from + ptr @.TypeMapEntry.24279_from; char* to + }, ; 9302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24282_to, ; char* from + ptr @.TypeMapEntry.24281_from; char* to + }, ; 9303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24286_to, ; char* from + ptr @.TypeMapEntry.24285_from; char* to + }, ; 9304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24284_to, ; char* from + ptr @.TypeMapEntry.24283_from; char* to + }, ; 9305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24326_to, ; char* from + ptr @.TypeMapEntry.24325_from; char* to + }, ; 9306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24328_to, ; char* from + ptr @.TypeMapEntry.24327_from; char* to + }, ; 9307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24330_to, ; char* from + ptr @.TypeMapEntry.24329_from; char* to + }, ; 9308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24332_to, ; char* from + ptr @.TypeMapEntry.24331_from; char* to + }, ; 9309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24336_to, ; char* from + ptr @.TypeMapEntry.24335_from; char* to + }, ; 9310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24334_to, ; char* from + ptr @.TypeMapEntry.24333_from; char* to + }, ; 9311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24338_to, ; char* from + ptr @.TypeMapEntry.24337_from; char* to + }, ; 9312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24346_to, ; char* from + ptr @.TypeMapEntry.24345_from; char* to + }, ; 9313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24340_to, ; char* from + ptr @.TypeMapEntry.24339_from; char* to + }, ; 9314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24342_to, ; char* from + ptr @.TypeMapEntry.24341_from; char* to + }, ; 9315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24344_to, ; char* from + ptr @.TypeMapEntry.24343_from; char* to + }, ; 9316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24348_to, ; char* from + ptr @.TypeMapEntry.24347_from; char* to + }, ; 9317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24350_to, ; char* from + ptr @.TypeMapEntry.24349_from; char* to + }, ; 9318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24359_to, ; char* from + ptr @.TypeMapEntry.24358_from; char* to + }, ; 9319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24361_to, ; char* from + ptr @.TypeMapEntry.24360_from; char* to + }, ; 9320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24365_to, ; char* from + ptr @.TypeMapEntry.24364_from; char* to + }, ; 9321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24363_to, ; char* from + ptr @.TypeMapEntry.24362_from; char* to + }, ; 9322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24367_to, ; char* from + ptr @.TypeMapEntry.24366_from; char* to + }, ; 9323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24369_to, ; char* from + ptr @.TypeMapEntry.24368_from; char* to + }, ; 9324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24373_to, ; char* from + ptr @.TypeMapEntry.24372_from; char* to + }, ; 9325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24371_to, ; char* from + ptr @.TypeMapEntry.24370_from; char* to + }, ; 9326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24288_to, ; char* from + ptr @.TypeMapEntry.24287_from; char* to + }, ; 9327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24290_to, ; char* from + ptr @.TypeMapEntry.24289_from; char* to + }, ; 9328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24292_to, ; char* from + ptr @.TypeMapEntry.24291_from; char* to + }, ; 9329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24294_to, ; char* from + ptr @.TypeMapEntry.24293_from; char* to + }, ; 9330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24296_to, ; char* from + ptr @.TypeMapEntry.24295_from; char* to + }, ; 9331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24298_to, ; char* from + ptr @.TypeMapEntry.24297_from; char* to + }, ; 9332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24300_to, ; char* from + ptr @.TypeMapEntry.24299_from; char* to + }, ; 9333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24302_to, ; char* from + ptr @.TypeMapEntry.24301_from; char* to + }, ; 9334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24304_to, ; char* from + ptr @.TypeMapEntry.24303_from; char* to + }, ; 9335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24306_to, ; char* from + ptr @.TypeMapEntry.24305_from; char* to + }, ; 9336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24308_to, ; char* from + ptr @.TypeMapEntry.24307_from; char* to + }, ; 9337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24310_to, ; char* from + ptr @.TypeMapEntry.24309_from; char* to + }, ; 9338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24312_to, ; char* from + ptr @.TypeMapEntry.24311_from; char* to + }, ; 9339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24314_to, ; char* from + ptr @.TypeMapEntry.24313_from; char* to + }, ; 9340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24316_to, ; char* from + ptr @.TypeMapEntry.24315_from; char* to + }, ; 9341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24318_to, ; char* from + ptr @.TypeMapEntry.24317_from; char* to + }, ; 9342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24320_to, ; char* from + ptr @.TypeMapEntry.24319_from; char* to + }, ; 9343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24322_to, ; char* from + ptr @.TypeMapEntry.24321_from; char* to + }, ; 9344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24324_to, ; char* from + ptr @.TypeMapEntry.24323_from; char* to + }, ; 9345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24356_to, ; char* from + ptr null; char* to + }, ; 9346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24356_to, ; char* from + ptr null; char* to + }, ; 9347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24352_to, ; char* from + ptr @.TypeMapEntry.24351_from; char* to + }, ; 9348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24354_to, ; char* from + ptr @.TypeMapEntry.24353_from; char* to + }, ; 9349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24375_to, ; char* from + ptr null; char* to + }, ; 9350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24375_to, ; char* from + ptr null; char* to + }, ; 9351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24391_to, ; char* from + ptr @.TypeMapEntry.24390_from; char* to + }, ; 9352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24393_to, ; char* from + ptr @.TypeMapEntry.24392_from; char* to + }, ; 9353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24389_to, ; char* from + ptr @.TypeMapEntry.24388_from; char* to + }, ; 9354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24386_to, ; char* from + ptr @.TypeMapEntry.24385_from; char* to + }, ; 9355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24386_to, ; char* from + ptr @.TypeMapEntry.24385_from; char* to + }, ; 9356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24406_to, ; char* from + ptr @.TypeMapEntry.24405_from; char* to + }, ; 9357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24404_to, ; char* from + ptr @.TypeMapEntry.24403_from; char* to + }, ; 9358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24408_to, ; char* from + ptr @.TypeMapEntry.24407_from; char* to + }, ; 9359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24414_to, ; char* from + ptr @.TypeMapEntry.24413_from; char* to + }, ; 9360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24410_to, ; char* from + ptr @.TypeMapEntry.24409_from; char* to + }, ; 9361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24412_to, ; char* from + ptr @.TypeMapEntry.24411_from; char* to + }, ; 9362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24416_to, ; char* from + ptr @.TypeMapEntry.24415_from; char* to + }, ; 9363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24418_to, ; char* from + ptr @.TypeMapEntry.24417_from; char* to + }, ; 9364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24420_to, ; char* from + ptr @.TypeMapEntry.24419_from; char* to + }, ; 9365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24420_to, ; char* from + ptr @.TypeMapEntry.24419_from; char* to + }, ; 9366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24423_to, ; char* from + ptr @.TypeMapEntry.24422_from; char* to + }, ; 9367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24425_to, ; char* from + ptr @.TypeMapEntry.24424_from; char* to + }, ; 9368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24425_to, ; char* from + ptr @.TypeMapEntry.24424_from; char* to + }, ; 9369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24428_to, ; char* from + ptr @.TypeMapEntry.24427_from; char* to + }, ; 9370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24434_to, ; char* from + ptr @.TypeMapEntry.24433_from; char* to + }, ; 9371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24430_to, ; char* from + ptr @.TypeMapEntry.24429_from; char* to + }, ; 9372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24432_to, ; char* from + ptr @.TypeMapEntry.24431_from; char* to + }, ; 9373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24436_to, ; char* from + ptr @.TypeMapEntry.24435_from; char* to + }, ; 9374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24448_to, ; char* from + ptr @.TypeMapEntry.24447_from; char* to + }, ; 9375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24438_to, ; char* from + ptr @.TypeMapEntry.24437_from; char* to + }, ; 9376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24440_to, ; char* from + ptr @.TypeMapEntry.24439_from; char* to + }, ; 9377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24442_to, ; char* from + ptr @.TypeMapEntry.24441_from; char* to + }, ; 9378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24444_to, ; char* from + ptr @.TypeMapEntry.24443_from; char* to + }, ; 9379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24446_to, ; char* from + ptr @.TypeMapEntry.24445_from; char* to + }, ; 9380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24450_to, ; char* from + ptr @.TypeMapEntry.24449_from; char* to + }, ; 9381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24452_to, ; char* from + ptr @.TypeMapEntry.24451_from; char* to + }, ; 9382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24458_to, ; char* from + ptr @.TypeMapEntry.24457_from; char* to + }, ; 9383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24454_to, ; char* from + ptr @.TypeMapEntry.24453_from; char* to + }, ; 9384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24456_to, ; char* from + ptr @.TypeMapEntry.24455_from; char* to + }, ; 9385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24460_to, ; char* from + ptr @.TypeMapEntry.24459_from; char* to + }, ; 9386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24462_to, ; char* from + ptr @.TypeMapEntry.24461_from; char* to + }, ; 9387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24464_to, ; char* from + ptr @.TypeMapEntry.24463_from; char* to + }, ; 9388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24466_to, ; char* from + ptr @.TypeMapEntry.24465_from; char* to + }, ; 9389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24468_to, ; char* from + ptr @.TypeMapEntry.24467_from; char* to + }, ; 9390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24470_to, ; char* from + ptr @.TypeMapEntry.24469_from; char* to + }, ; 9391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24472_to, ; char* from + ptr @.TypeMapEntry.24471_from; char* to + }, ; 9392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24474_to, ; char* from + ptr @.TypeMapEntry.24473_from; char* to + }, ; 9393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24476_to, ; char* from + ptr @.TypeMapEntry.24475_from; char* to + }, ; 9394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24478_to, ; char* from + ptr @.TypeMapEntry.24477_from; char* to + }, ; 9395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24480_to, ; char* from + ptr @.TypeMapEntry.24479_from; char* to + }, ; 9396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24482_to, ; char* from + ptr @.TypeMapEntry.24481_from; char* to + }, ; 9397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24482_to, ; char* from + ptr @.TypeMapEntry.24481_from; char* to + }, ; 9398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24485_to, ; char* from + ptr @.TypeMapEntry.24484_from; char* to + }, ; 9399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24485_to, ; char* from + ptr @.TypeMapEntry.24484_from; char* to + }, ; 9400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24488_to, ; char* from + ptr @.TypeMapEntry.24487_from; char* to + }, ; 9401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24488_to, ; char* from + ptr @.TypeMapEntry.24487_from; char* to + }, ; 9402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24536_to, ; char* from + ptr @.TypeMapEntry.24535_from; char* to + }, ; 9403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24494_to, ; char* from + ptr @.TypeMapEntry.24493_from; char* to + }, ; 9404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24491_to, ; char* from + ptr null; char* to + }, ; 9405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24491_to, ; char* from + ptr null; char* to + }, ; 9406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24496_to, ; char* from + ptr @.TypeMapEntry.24495_from; char* to + }, ; 9407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24516_to, ; char* from + ptr null; char* to + }, ; 9408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24516_to, ; char* from + ptr null; char* to + }, ; 9409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24498_to, ; char* from + ptr @.TypeMapEntry.24497_from; char* to + }, ; 9410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24500_to, ; char* from + ptr @.TypeMapEntry.24499_from; char* to + }, ; 9411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24502_to, ; char* from + ptr @.TypeMapEntry.24501_from; char* to + }, ; 9412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24519_to, ; char* from + ptr null; char* to + }, ; 9413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24519_to, ; char* from + ptr null; char* to + }, ; 9414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24522_to, ; char* from + ptr null; char* to + }, ; 9415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24522_to, ; char* from + ptr null; char* to + }, ; 9416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24504_to, ; char* from + ptr @.TypeMapEntry.24503_from; char* to + }, ; 9417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24506_to, ; char* from + ptr @.TypeMapEntry.24505_from; char* to + }, ; 9418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24508_to, ; char* from + ptr @.TypeMapEntry.24507_from; char* to + }, ; 9419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24510_to, ; char* from + ptr @.TypeMapEntry.24509_from; char* to + }, ; 9420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24512_to, ; char* from + ptr @.TypeMapEntry.24511_from; char* to + }, ; 9421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24514_to, ; char* from + ptr @.TypeMapEntry.24513_from; char* to + }, ; 9422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24528_to, ; char* from + ptr @.TypeMapEntry.24527_from; char* to + }, ; 9423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24530_to, ; char* from + ptr @.TypeMapEntry.24529_from; char* to + }, ; 9424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24525_to, ; char* from + ptr null; char* to + }, ; 9425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24525_to, ; char* from + ptr null; char* to + }, ; 9426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24534_to, ; char* from + ptr @.TypeMapEntry.24533_from; char* to + }, ; 9427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24532_to, ; char* from + ptr @.TypeMapEntry.24531_from; char* to + }, ; 9428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24538_to, ; char* from + ptr @.TypeMapEntry.24537_from; char* to + }, ; 9429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24540_to, ; char* from + ptr @.TypeMapEntry.24539_from; char* to + }, ; 9430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24594_to, ; char* from + ptr @.TypeMapEntry.24593_from; char* to + }, ; 9431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24592_to, ; char* from + ptr @.TypeMapEntry.24591_from; char* to + }, ; 9432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24596_to, ; char* from + ptr @.TypeMapEntry.24595_from; char* to + }, ; 9433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24598_to, ; char* from + ptr @.TypeMapEntry.24597_from; char* to + }, ; 9434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24602_to, ; char* from + ptr @.TypeMapEntry.24601_from; char* to + }, ; 9435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24600_to, ; char* from + ptr @.TypeMapEntry.24599_from; char* to + }, ; 9436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24604_to, ; char* from + ptr @.TypeMapEntry.24603_from; char* to + }, ; 9437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24606_to, ; char* from + ptr @.TypeMapEntry.24605_from; char* to + }, ; 9438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24608_to, ; char* from + ptr @.TypeMapEntry.24607_from; char* to + }, ; 9439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24610_to, ; char* from + ptr @.TypeMapEntry.24609_from; char* to + }, ; 9440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24612_to, ; char* from + ptr @.TypeMapEntry.24611_from; char* to + }, ; 9441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24614_to, ; char* from + ptr @.TypeMapEntry.24613_from; char* to + }, ; 9442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24616_to, ; char* from + ptr @.TypeMapEntry.24615_from; char* to + }, ; 9443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24620_to, ; char* from + ptr @.TypeMapEntry.24619_from; char* to + }, ; 9444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24618_to, ; char* from + ptr @.TypeMapEntry.24617_from; char* to + }, ; 9445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24622_to, ; char* from + ptr @.TypeMapEntry.24621_from; char* to + }, ; 9446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24639_to, ; char* from + ptr @.TypeMapEntry.24638_from; char* to + }, ; 9447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24639_to, ; char* from + ptr @.TypeMapEntry.24638_from; char* to + }, ; 9448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24642_to, ; char* from + ptr @.TypeMapEntry.24641_from; char* to + }, ; 9449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24644_to, ; char* from + ptr @.TypeMapEntry.24643_from; char* to + }, ; 9450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24649_to, ; char* from + ptr @.TypeMapEntry.24648_from; char* to + }, ; 9451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24649_to, ; char* from + ptr @.TypeMapEntry.24648_from; char* to + }, ; 9452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24646_to, ; char* from + ptr null; char* to + }, ; 9453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24646_to, ; char* from + ptr null; char* to + }, ; 9454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24655_to, ; char* from + ptr @.TypeMapEntry.24654_from; char* to + }, ; 9455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24655_to, ; char* from + ptr @.TypeMapEntry.24654_from; char* to + }, ; 9456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24652_to, ; char* from + ptr null; char* to + }, ; 9457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24652_to, ; char* from + ptr null; char* to + }, ; 9458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24658_to, ; char* from + ptr @.TypeMapEntry.24657_from; char* to + }, ; 9459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24660_to, ; char* from + ptr @.TypeMapEntry.24659_from; char* to + }, ; 9460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24624_to, ; char* from + ptr null; char* to + }, ; 9461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24624_to, ; char* from + ptr null; char* to + }, ; 9462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24626_to, ; char* from + ptr null; char* to + }, ; 9463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24626_to, ; char* from + ptr null; char* to + }, ; 9464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24662_to, ; char* from + ptr @.TypeMapEntry.24661_from; char* to + }, ; 9465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24664_to, ; char* from + ptr @.TypeMapEntry.24663_from; char* to + }, ; 9466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24666_to, ; char* from + ptr @.TypeMapEntry.24665_from; char* to + }, ; 9467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24670_to, ; char* from + ptr @.TypeMapEntry.24669_from; char* to + }, ; 9468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24668_to, ; char* from + ptr @.TypeMapEntry.24667_from; char* to + }, ; 9469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24630_to, ; char* from + ptr null; char* to + }, ; 9470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24630_to, ; char* from + ptr null; char* to + }, ; 9471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24633_to, ; char* from + ptr null; char* to + }, ; 9472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24633_to, ; char* from + ptr null; char* to + }, ; 9473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24672_to, ; char* from + ptr @.TypeMapEntry.24671_from; char* to + }, ; 9474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24677_to, ; char* from + ptr @.TypeMapEntry.24676_from; char* to + }, ; 9475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24674_to, ; char* from + ptr null; char* to + }, ; 9476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24674_to, ; char* from + ptr null; char* to + }, ; 9477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24682_to, ; char* from + ptr @.TypeMapEntry.24681_from; char* to + }, ; 9478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24679_to, ; char* from + ptr null; char* to + }, ; 9479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24679_to, ; char* from + ptr null; char* to + }, ; 9480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24684_to, ; char* from + ptr @.TypeMapEntry.24683_from; char* to + }, ; 9481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24686_to, ; char* from + ptr @.TypeMapEntry.24685_from; char* to + }, ; 9482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24688_to, ; char* from + ptr @.TypeMapEntry.24687_from; char* to + }, ; 9483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24690_to, ; char* from + ptr @.TypeMapEntry.24689_from; char* to + }, ; 9484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24692_to, ; char* from + ptr @.TypeMapEntry.24691_from; char* to + }, ; 9485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24697_to, ; char* from + ptr @.TypeMapEntry.24696_from; char* to + }, ; 9486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24697_to, ; char* from + ptr @.TypeMapEntry.24696_from; char* to + }, ; 9487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24694_to, ; char* from + ptr null; char* to + }, ; 9488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24694_to, ; char* from + ptr null; char* to + }, ; 9489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24703_to, ; char* from + ptr @.TypeMapEntry.24702_from; char* to + }, ; 9490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24703_to, ; char* from + ptr @.TypeMapEntry.24702_from; char* to + }, ; 9491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24700_to, ; char* from + ptr null; char* to + }, ; 9492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24700_to, ; char* from + ptr null; char* to + }, ; 9493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24708_to, ; char* from + ptr @.TypeMapEntry.24707_from; char* to + }, ; 9494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24706_to, ; char* from + ptr @.TypeMapEntry.24705_from; char* to + }, ; 9495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24713_to, ; char* from + ptr @.TypeMapEntry.24712_from; char* to + }, ; 9496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24713_to, ; char* from + ptr @.TypeMapEntry.24712_from; char* to + }, ; 9497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24710_to, ; char* from + ptr null; char* to + }, ; 9498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24710_to, ; char* from + ptr null; char* to + }, ; 9499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24716_to, ; char* from + ptr @.TypeMapEntry.24715_from; char* to + }, ; 9500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24716_to, ; char* from + ptr @.TypeMapEntry.24715_from; char* to + }, ; 9501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24721_to, ; char* from + ptr @.TypeMapEntry.24720_from; char* to + }, ; 9502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24719_to, ; char* from + ptr @.TypeMapEntry.24718_from; char* to + }, ; 9503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24723_to, ; char* from + ptr @.TypeMapEntry.24722_from; char* to + }, ; 9504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24725_to, ; char* from + ptr @.TypeMapEntry.24724_from; char* to + }, ; 9505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24727_to, ; char* from + ptr @.TypeMapEntry.24726_from; char* to + }, ; 9506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24729_to, ; char* from + ptr @.TypeMapEntry.24728_from; char* to + }, ; 9507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24636_to, ; char* from + ptr null; char* to + }, ; 9508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24636_to, ; char* from + ptr null; char* to + }, ; 9509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24733_to, ; char* from + ptr @.TypeMapEntry.24732_from; char* to + }, ; 9510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24731_to, ; char* from + ptr @.TypeMapEntry.24730_from; char* to + }, ; 9511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24741_to, ; char* from + ptr @.TypeMapEntry.24740_from; char* to + }, ; 9512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24735_to, ; char* from + ptr null; char* to + }, ; 9513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24735_to, ; char* from + ptr null; char* to + }, ; 9514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24738_to, ; char* from + ptr null; char* to + }, ; 9515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24738_to, ; char* from + ptr null; char* to + }, ; 9516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24743_to, ; char* from + ptr @.TypeMapEntry.24742_from; char* to + }, ; 9517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24764_to, ; char* from + ptr @.TypeMapEntry.24763_from; char* to + }, ; 9518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24772_to, ; char* from + ptr @.TypeMapEntry.24771_from; char* to + }, ; 9519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24766_to, ; char* from + ptr @.TypeMapEntry.24765_from; char* to + }, ; 9520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24768_to, ; char* from + ptr @.TypeMapEntry.24767_from; char* to + }, ; 9521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24770_to, ; char* from + ptr @.TypeMapEntry.24769_from; char* to + }, ; 9522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24774_to, ; char* from + ptr @.TypeMapEntry.24773_from; char* to + }, ; 9523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24778_to, ; char* from + ptr @.TypeMapEntry.24777_from; char* to + }, ; 9524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24776_to, ; char* from + ptr @.TypeMapEntry.24775_from; char* to + }, ; 9525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24780_to, ; char* from + ptr @.TypeMapEntry.24779_from; char* to + }, ; 9526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24784_to, ; char* from + ptr @.TypeMapEntry.24783_from; char* to + }, ; 9527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24782_to, ; char* from + ptr @.TypeMapEntry.24781_from; char* to + }, ; 9528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24786_to, ; char* from + ptr @.TypeMapEntry.24785_from; char* to + }, ; 9529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24794_to, ; char* from + ptr @.TypeMapEntry.24793_from; char* to + }, ; 9530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24788_to, ; char* from + ptr @.TypeMapEntry.24787_from; char* to + }, ; 9531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24790_to, ; char* from + ptr @.TypeMapEntry.24789_from; char* to + }, ; 9532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24792_to, ; char* from + ptr @.TypeMapEntry.24791_from; char* to + }, ; 9533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24796_to, ; char* from + ptr @.TypeMapEntry.24795_from; char* to + }, ; 9534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24749_to, ; char* from + ptr null; char* to + }, ; 9535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24749_to, ; char* from + ptr null; char* to + }, ; 9536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24798_to, ; char* from + ptr @.TypeMapEntry.24797_from; char* to + }, ; 9537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24800_to, ; char* from + ptr @.TypeMapEntry.24799_from; char* to + }, ; 9538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24800_to, ; char* from + ptr @.TypeMapEntry.24799_from; char* to + }, ; 9539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24803_to, ; char* from + ptr @.TypeMapEntry.24802_from; char* to + }, ; 9540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24803_to, ; char* from + ptr @.TypeMapEntry.24802_from; char* to + }, ; 9541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24752_to, ; char* from + ptr null; char* to + }, ; 9542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24752_to, ; char* from + ptr null; char* to + }, ; 9543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24754_to, ; char* from + ptr null; char* to + }, ; 9544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24754_to, ; char* from + ptr null; char* to + }, ; 9545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24758_to, ; char* from + ptr null; char* to + }, ; 9546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24758_to, ; char* from + ptr null; char* to + }, ; 9547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24760_to, ; char* from + ptr null; char* to + }, ; 9548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24760_to, ; char* from + ptr null; char* to + }, ; 9549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24812_to, ; char* from + ptr @.TypeMapEntry.24811_from; char* to + }, ; 9550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24806_to, ; char* from + ptr @.TypeMapEntry.24805_from; char* to + }, ; 9551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24808_to, ; char* from + ptr @.TypeMapEntry.24807_from; char* to + }, ; 9552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24810_to, ; char* from + ptr @.TypeMapEntry.24809_from; char* to + }, ; 9553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24816_to, ; char* from + ptr @.TypeMapEntry.24815_from; char* to + }, ; 9554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24814_to, ; char* from + ptr @.TypeMapEntry.24813_from; char* to + }, ; 9555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24820_to, ; char* from + ptr @.TypeMapEntry.24819_from; char* to + }, ; 9556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24818_to, ; char* from + ptr @.TypeMapEntry.24817_from; char* to + }, ; 9557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24822_to, ; char* from + ptr @.TypeMapEntry.24821_from; char* to + }, ; 9558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24830_to, ; char* from + ptr @.TypeMapEntry.24829_from; char* to + }, ; 9559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24824_to, ; char* from + ptr @.TypeMapEntry.24823_from; char* to + }, ; 9560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24826_to, ; char* from + ptr @.TypeMapEntry.24825_from; char* to + }, ; 9561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24828_to, ; char* from + ptr @.TypeMapEntry.24827_from; char* to + }, ; 9562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24834_to, ; char* from + ptr @.TypeMapEntry.24833_from; char* to + }, ; 9563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24832_to, ; char* from + ptr @.TypeMapEntry.24831_from; char* to + }, ; 9564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24838_to, ; char* from + ptr @.TypeMapEntry.24837_from; char* to + }, ; 9565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24836_to, ; char* from + ptr @.TypeMapEntry.24835_from; char* to + }, ; 9566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24840_to, ; char* from + ptr @.TypeMapEntry.24839_from; char* to + }, ; 9567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24842_to, ; char* from + ptr @.TypeMapEntry.24841_from; char* to + }, ; 9568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24844_to, ; char* from + ptr @.TypeMapEntry.24843_from; char* to + }, ; 9569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24844_to, ; char* from + ptr @.TypeMapEntry.24843_from; char* to + }, ; 9570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24847_to, ; char* from + ptr @.TypeMapEntry.24846_from; char* to + }, ; 9571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24847_to, ; char* from + ptr @.TypeMapEntry.24846_from; char* to + }, ; 9572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24850_to, ; char* from + ptr @.TypeMapEntry.24849_from; char* to + }, ; 9573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24850_to, ; char* from + ptr @.TypeMapEntry.24849_from; char* to + }, ; 9574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24855_to, ; char* from + ptr @.TypeMapEntry.24854_from; char* to + }, ; 9575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24853_to, ; char* from + ptr @.TypeMapEntry.24852_from; char* to + }, ; 9576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24859_to, ; char* from + ptr @.TypeMapEntry.24858_from; char* to + }, ; 9577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24857_to, ; char* from + ptr @.TypeMapEntry.24856_from; char* to + }, ; 9578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24861_to, ; char* from + ptr @.TypeMapEntry.24860_from; char* to + }, ; 9579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24877_to, ; char* from + ptr @.TypeMapEntry.24876_from; char* to + }, ; 9580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24879_to, ; char* from + ptr @.TypeMapEntry.24878_from; char* to + }, ; 9581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24879_to, ; char* from + ptr @.TypeMapEntry.24878_from; char* to + }, ; 9582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24882_to, ; char* from + ptr @.TypeMapEntry.24881_from; char* to + }, ; 9583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24882_to, ; char* from + ptr @.TypeMapEntry.24881_from; char* to + }, ; 9584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24865_to, ; char* from + ptr null; char* to + }, ; 9585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24865_to, ; char* from + ptr null; char* to + }, ; 9586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24885_to, ; char* from + ptr @.TypeMapEntry.24884_from; char* to + }, ; 9587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24887_to, ; char* from + ptr @.TypeMapEntry.24886_from; char* to + }, ; 9588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24891_to, ; char* from + ptr @.TypeMapEntry.24890_from; char* to + }, ; 9589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24889_to, ; char* from + ptr @.TypeMapEntry.24888_from; char* to + }, ; 9590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24868_to, ; char* from + ptr null; char* to + }, ; 9591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24868_to, ; char* from + ptr null; char* to + }, ; 9592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24871_to, ; char* from + ptr @.TypeMapEntry.24870_from; char* to + }, ; 9593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24873_to, ; char* from + ptr @.TypeMapEntry.24872_from; char* to + }, ; 9594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24875_to, ; char* from + ptr @.TypeMapEntry.24874_from; char* to + }, ; 9595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24921_to, ; char* from + ptr @.TypeMapEntry.24920_from; char* to + }, ; 9596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24919_to, ; char* from + ptr @.TypeMapEntry.24918_from; char* to + }, ; 9597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24923_to, ; char* from + ptr @.TypeMapEntry.24922_from; char* to + }, ; 9598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24929_to, ; char* from + ptr @.TypeMapEntry.24928_from; char* to + }, ; 9599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24925_to, ; char* from + ptr @.TypeMapEntry.24924_from; char* to + }, ; 9600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24927_to, ; char* from + ptr @.TypeMapEntry.24926_from; char* to + }, ; 9601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24947_to, ; char* from + ptr null; char* to + }, ; 9602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24947_to, ; char* from + ptr null; char* to + }, ; 9603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24949_to, ; char* from + ptr null; char* to + }, ; 9604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24949_to, ; char* from + ptr null; char* to + }, ; 9605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24953_to, ; char* from + ptr null; char* to + }, ; 9606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24953_to, ; char* from + ptr null; char* to + }, ; 9607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24931_to, ; char* from + ptr @.TypeMapEntry.24930_from; char* to + }, ; 9608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24935_to, ; char* from + ptr @.TypeMapEntry.24934_from; char* to + }, ; 9609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24933_to, ; char* from + ptr @.TypeMapEntry.24932_from; char* to + }, ; 9610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24937_to, ; char* from + ptr @.TypeMapEntry.24936_from; char* to + }, ; 9611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24945_to, ; char* from + ptr @.TypeMapEntry.24944_from; char* to + }, ; 9612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24939_to, ; char* from + ptr @.TypeMapEntry.24938_from; char* to + }, ; 9613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24941_to, ; char* from + ptr @.TypeMapEntry.24940_from; char* to + }, ; 9614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24943_to, ; char* from + ptr @.TypeMapEntry.24942_from; char* to + }, ; 9615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24968_to, ; char* from + ptr @.TypeMapEntry.24967_from; char* to + }, ; 9616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24970_to, ; char* from + ptr @.TypeMapEntry.24969_from; char* to + }, ; 9617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24972_to, ; char* from + ptr @.TypeMapEntry.24971_from; char* to + }, ; 9618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24972_to, ; char* from + ptr @.TypeMapEntry.24971_from; char* to + }, ; 9619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24975_to, ; char* from + ptr @.TypeMapEntry.24974_from; char* to + }, ; 9620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24977_to, ; char* from + ptr @.TypeMapEntry.24976_from; char* to + }, ; 9621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24977_to, ; char* from + ptr @.TypeMapEntry.24976_from; char* to + }, ; 9622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24980_to, ; char* from + ptr @.TypeMapEntry.24979_from; char* to + }, ; 9623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24982_to, ; char* from + ptr @.TypeMapEntry.24981_from; char* to + }, ; 9624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24956_to, ; char* from + ptr @.TypeMapEntry.24955_from; char* to + }, ; 9625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24958_to, ; char* from + ptr @.TypeMapEntry.24957_from; char* to + }, ; 9626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24960_to, ; char* from + ptr @.TypeMapEntry.24959_from; char* to + }, ; 9627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24962_to, ; char* from + ptr @.TypeMapEntry.24961_from; char* to + }, ; 9628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24964_to, ; char* from + ptr @.TypeMapEntry.24963_from; char* to + }, ; 9629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24966_to, ; char* from + ptr @.TypeMapEntry.24965_from; char* to + }, ; 9630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24991_to, ; char* from + ptr @.TypeMapEntry.24990_from; char* to + }, ; 9631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24993_to, ; char* from + ptr @.TypeMapEntry.24992_from; char* to + }, ; 9632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24995_to, ; char* from + ptr @.TypeMapEntry.24994_from; char* to + }, ; 9633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24999_to, ; char* from + ptr @.TypeMapEntry.24998_from; char* to + }, ; 9634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24997_to, ; char* from + ptr @.TypeMapEntry.24996_from; char* to + }, ; 9635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25001_to, ; char* from + ptr @.TypeMapEntry.25000_from; char* to + }, ; 9636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25007_to, ; char* from + ptr @.TypeMapEntry.25006_from; char* to + }, ; 9637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25003_to, ; char* from + ptr @.TypeMapEntry.25002_from; char* to + }, ; 9638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25005_to, ; char* from + ptr @.TypeMapEntry.25004_from; char* to + }, ; 9639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25011_to, ; char* from + ptr @.TypeMapEntry.25010_from; char* to + }, ; 9640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25009_to, ; char* from + ptr @.TypeMapEntry.25008_from; char* to + }, ; 9641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25013_to, ; char* from + ptr @.TypeMapEntry.25012_from; char* to + }, ; 9642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25019_to, ; char* from + ptr @.TypeMapEntry.25018_from; char* to + }, ; 9643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25015_to, ; char* from + ptr @.TypeMapEntry.25014_from; char* to + }, ; 9644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25017_to, ; char* from + ptr @.TypeMapEntry.25016_from; char* to + }, ; 9645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25034_to, ; char* from + ptr @.TypeMapEntry.25033_from; char* to + }, ; 9646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25021_to, ; char* from + ptr null; char* to + }, ; 9647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25021_to, ; char* from + ptr null; char* to + }, ; 9648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25036_to, ; char* from + ptr @.TypeMapEntry.25035_from; char* to + }, ; 9649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25038_to, ; char* from + ptr @.TypeMapEntry.25037_from; char* to + }, ; 9650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25038_to, ; char* from + ptr @.TypeMapEntry.25037_from; char* to + }, ; 9651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25041_to, ; char* from + ptr @.TypeMapEntry.25040_from; char* to + }, ; 9652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25043_to, ; char* from + ptr @.TypeMapEntry.25042_from; char* to + }, ; 9653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25043_to, ; char* from + ptr @.TypeMapEntry.25042_from; char* to + }, ; 9654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25046_to, ; char* from + ptr @.TypeMapEntry.25045_from; char* to + }, ; 9655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25046_to, ; char* from + ptr @.TypeMapEntry.25045_from; char* to + }, ; 9656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25049_to, ; char* from + ptr @.TypeMapEntry.25048_from; char* to + }, ; 9657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25024_to, ; char* from + ptr @.TypeMapEntry.25023_from; char* to + }, ; 9658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25026_to, ; char* from + ptr @.TypeMapEntry.25025_from; char* to + }, ; 9659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25028_to, ; char* from + ptr @.TypeMapEntry.25027_from; char* to + }, ; 9660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25030_to, ; char* from + ptr @.TypeMapEntry.25029_from; char* to + }, ; 9661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25032_to, ; char* from + ptr @.TypeMapEntry.25031_from; char* to + }, ; 9662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25051_to, ; char* from + ptr @.TypeMapEntry.25050_from; char* to + }, ; 9663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25055_to, ; char* from + ptr @.TypeMapEntry.25054_from; char* to + }, ; 9664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25053_to, ; char* from + ptr @.TypeMapEntry.25052_from; char* to + }, ; 9665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25059_to, ; char* from + ptr @.TypeMapEntry.25058_from; char* to + }, ; 9666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25057_to, ; char* from + ptr @.TypeMapEntry.25056_from; char* to + }, ; 9667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25321_to, ; char* from + ptr null; char* to + }, ; 9668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25321_to, ; char* from + ptr null; char* to + }, ; 9669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25324_to, ; char* from + ptr null; char* to + }, ; 9670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25324_to, ; char* from + ptr null; char* to + }, ; 9671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25063_to, ; char* from + ptr @.TypeMapEntry.25062_from; char* to + }, ; 9672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25061_to, ; char* from + ptr @.TypeMapEntry.25060_from; char* to + }, ; 9673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25327_to, ; char* from + ptr null; char* to + }, ; 9674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25327_to, ; char* from + ptr null; char* to + }, ; 9675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25065_to, ; char* from + ptr @.TypeMapEntry.25064_from; char* to + }, ; 9676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25069_to, ; char* from + ptr @.TypeMapEntry.25068_from; char* to + }, ; 9677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25067_to, ; char* from + ptr @.TypeMapEntry.25066_from; char* to + }, ; 9678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25073_to, ; char* from + ptr @.TypeMapEntry.25072_from; char* to + }, ; 9679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25071_to, ; char* from + ptr @.TypeMapEntry.25070_from; char* to + }, ; 9680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25330_to, ; char* from + ptr null; char* to + }, ; 9681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25330_to, ; char* from + ptr null; char* to + }, ; 9682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25333_to, ; char* from + ptr null; char* to + }, ; 9683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25333_to, ; char* from + ptr null; char* to + }, ; 9684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25075_to, ; char* from + ptr @.TypeMapEntry.25074_from; char* to + }, ; 9685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25077_to, ; char* from + ptr @.TypeMapEntry.25076_from; char* to + }, ; 9686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25081_to, ; char* from + ptr @.TypeMapEntry.25080_from; char* to + }, ; 9687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25079_to, ; char* from + ptr @.TypeMapEntry.25078_from; char* to + }, ; 9688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25085_to, ; char* from + ptr @.TypeMapEntry.25084_from; char* to + }, ; 9689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25083_to, ; char* from + ptr @.TypeMapEntry.25082_from; char* to + }, ; 9690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25336_to, ; char* from + ptr null; char* to + }, ; 9691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25336_to, ; char* from + ptr null; char* to + }, ; 9692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25339_to, ; char* from + ptr null; char* to + }, ; 9693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25339_to, ; char* from + ptr null; char* to + }, ; 9694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25087_to, ; char* from + ptr @.TypeMapEntry.25086_from; char* to + }, ; 9695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25091_to, ; char* from + ptr @.TypeMapEntry.25090_from; char* to + }, ; 9696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25089_to, ; char* from + ptr @.TypeMapEntry.25088_from; char* to + }, ; 9697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25095_to, ; char* from + ptr @.TypeMapEntry.25094_from; char* to + }, ; 9698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25093_to, ; char* from + ptr @.TypeMapEntry.25092_from; char* to + }, ; 9699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25342_to, ; char* from + ptr null; char* to + }, ; 9700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25342_to, ; char* from + ptr null; char* to + }, ; 9701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25345_to, ; char* from + ptr null; char* to + }, ; 9702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25345_to, ; char* from + ptr null; char* to + }, ; 9703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25099_to, ; char* from + ptr @.TypeMapEntry.25098_from; char* to + }, ; 9704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25097_to, ; char* from + ptr @.TypeMapEntry.25096_from; char* to + }, ; 9705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25348_to, ; char* from + ptr null; char* to + }, ; 9706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25348_to, ; char* from + ptr null; char* to + }, ; 9707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25103_to, ; char* from + ptr @.TypeMapEntry.25102_from; char* to + }, ; 9708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25101_to, ; char* from + ptr @.TypeMapEntry.25100_from; char* to + }, ; 9709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25107_to, ; char* from + ptr @.TypeMapEntry.25106_from; char* to + }, ; 9710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25105_to, ; char* from + ptr @.TypeMapEntry.25104_from; char* to + }, ; 9711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25351_to, ; char* from + ptr null; char* to + }, ; 9712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25351_to, ; char* from + ptr null; char* to + }, ; 9713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25354_to, ; char* from + ptr null; char* to + }, ; 9714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25354_to, ; char* from + ptr null; char* to + }, ; 9715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25111_to, ; char* from + ptr @.TypeMapEntry.25110_from; char* to + }, ; 9716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25109_to, ; char* from + ptr @.TypeMapEntry.25108_from; char* to + }, ; 9717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25357_to, ; char* from + ptr null; char* to + }, ; 9718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25357_to, ; char* from + ptr null; char* to + }, ; 9719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25113_to, ; char* from + ptr @.TypeMapEntry.25112_from; char* to + }, ; 9720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25117_to, ; char* from + ptr @.TypeMapEntry.25116_from; char* to + }, ; 9721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25115_to, ; char* from + ptr @.TypeMapEntry.25114_from; char* to + }, ; 9722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25121_to, ; char* from + ptr @.TypeMapEntry.25120_from; char* to + }, ; 9723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25119_to, ; char* from + ptr @.TypeMapEntry.25118_from; char* to + }, ; 9724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25360_to, ; char* from + ptr null; char* to + }, ; 9725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25360_to, ; char* from + ptr null; char* to + }, ; 9726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25363_to, ; char* from + ptr null; char* to + }, ; 9727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25363_to, ; char* from + ptr null; char* to + }, ; 9728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25125_to, ; char* from + ptr @.TypeMapEntry.25124_from; char* to + }, ; 9729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25123_to, ; char* from + ptr @.TypeMapEntry.25122_from; char* to + }, ; 9730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25366_to, ; char* from + ptr null; char* to + }, ; 9731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25366_to, ; char* from + ptr null; char* to + }, ; 9732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25127_to, ; char* from + ptr @.TypeMapEntry.25126_from; char* to + }, ; 9733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25129_to, ; char* from + ptr @.TypeMapEntry.25128_from; char* to + }, ; 9734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25133_to, ; char* from + ptr @.TypeMapEntry.25132_from; char* to + }, ; 9735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25131_to, ; char* from + ptr @.TypeMapEntry.25130_from; char* to + }, ; 9736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25137_to, ; char* from + ptr @.TypeMapEntry.25136_from; char* to + }, ; 9737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25135_to, ; char* from + ptr @.TypeMapEntry.25134_from; char* to + }, ; 9738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25369_to, ; char* from + ptr null; char* to + }, ; 9739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25369_to, ; char* from + ptr null; char* to + }, ; 9740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25372_to, ; char* from + ptr null; char* to + }, ; 9741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25372_to, ; char* from + ptr null; char* to + }, ; 9742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25141_to, ; char* from + ptr @.TypeMapEntry.25140_from; char* to + }, ; 9743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25139_to, ; char* from + ptr @.TypeMapEntry.25138_from; char* to + }, ; 9744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25375_to, ; char* from + ptr null; char* to + }, ; 9745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25375_to, ; char* from + ptr null; char* to + }, ; 9746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25145_to, ; char* from + ptr @.TypeMapEntry.25144_from; char* to + }, ; 9747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25143_to, ; char* from + ptr @.TypeMapEntry.25142_from; char* to + }, ; 9748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25149_to, ; char* from + ptr @.TypeMapEntry.25148_from; char* to + }, ; 9749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25147_to, ; char* from + ptr @.TypeMapEntry.25146_from; char* to + }, ; 9750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25378_to, ; char* from + ptr null; char* to + }, ; 9751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25378_to, ; char* from + ptr null; char* to + }, ; 9752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25381_to, ; char* from + ptr null; char* to + }, ; 9753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25381_to, ; char* from + ptr null; char* to + }, ; 9754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25151_to, ; char* from + ptr @.TypeMapEntry.25150_from; char* to + }, ; 9755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25155_to, ; char* from + ptr @.TypeMapEntry.25154_from; char* to + }, ; 9756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25153_to, ; char* from + ptr @.TypeMapEntry.25152_from; char* to + }, ; 9757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25159_to, ; char* from + ptr @.TypeMapEntry.25158_from; char* to + }, ; 9758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25157_to, ; char* from + ptr @.TypeMapEntry.25156_from; char* to + }, ; 9759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25384_to, ; char* from + ptr null; char* to + }, ; 9760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25384_to, ; char* from + ptr null; char* to + }, ; 9761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25387_to, ; char* from + ptr null; char* to + }, ; 9762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25387_to, ; char* from + ptr null; char* to + }, ; 9763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25161_to, ; char* from + ptr @.TypeMapEntry.25160_from; char* to + }, ; 9764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25165_to, ; char* from + ptr @.TypeMapEntry.25164_from; char* to + }, ; 9765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25163_to, ; char* from + ptr @.TypeMapEntry.25162_from; char* to + }, ; 9766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25169_to, ; char* from + ptr @.TypeMapEntry.25168_from; char* to + }, ; 9767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25167_to, ; char* from + ptr @.TypeMapEntry.25166_from; char* to + }, ; 9768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25390_to, ; char* from + ptr null; char* to + }, ; 9769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25390_to, ; char* from + ptr null; char* to + }, ; 9770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25393_to, ; char* from + ptr null; char* to + }, ; 9771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25393_to, ; char* from + ptr null; char* to + }, ; 9772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25173_to, ; char* from + ptr @.TypeMapEntry.25172_from; char* to + }, ; 9773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25171_to, ; char* from + ptr @.TypeMapEntry.25170_from; char* to + }, ; 9774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25177_to, ; char* from + ptr @.TypeMapEntry.25176_from; char* to + }, ; 9775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25175_to, ; char* from + ptr @.TypeMapEntry.25174_from; char* to + }, ; 9776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25396_to, ; char* from + ptr null; char* to + }, ; 9777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25396_to, ; char* from + ptr null; char* to + }, ; 9778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25399_to, ; char* from + ptr null; char* to + }, ; 9779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25399_to, ; char* from + ptr null; char* to + }, ; 9780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25179_to, ; char* from + ptr @.TypeMapEntry.25178_from; char* to + }, ; 9781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25181_to, ; char* from + ptr @.TypeMapEntry.25180_from; char* to + }, ; 9782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25183_to, ; char* from + ptr @.TypeMapEntry.25182_from; char* to + }, ; 9783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25185_to, ; char* from + ptr @.TypeMapEntry.25184_from; char* to + }, ; 9784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25187_to, ; char* from + ptr @.TypeMapEntry.25186_from; char* to + }, ; 9785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25191_to, ; char* from + ptr @.TypeMapEntry.25190_from; char* to + }, ; 9786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25189_to, ; char* from + ptr @.TypeMapEntry.25188_from; char* to + }, ; 9787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25402_to, ; char* from + ptr null; char* to + }, ; 9788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25402_to, ; char* from + ptr null; char* to + }, ; 9789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25195_to, ; char* from + ptr @.TypeMapEntry.25194_from; char* to + }, ; 9790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25193_to, ; char* from + ptr @.TypeMapEntry.25192_from; char* to + }, ; 9791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25405_to, ; char* from + ptr null; char* to + }, ; 9792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25405_to, ; char* from + ptr null; char* to + }, ; 9793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25199_to, ; char* from + ptr @.TypeMapEntry.25198_from; char* to + }, ; 9794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25197_to, ; char* from + ptr @.TypeMapEntry.25196_from; char* to + }, ; 9795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25408_to, ; char* from + ptr null; char* to + }, ; 9796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25408_to, ; char* from + ptr null; char* to + }, ; 9797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25203_to, ; char* from + ptr @.TypeMapEntry.25202_from; char* to + }, ; 9798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25201_to, ; char* from + ptr @.TypeMapEntry.25200_from; char* to + }, ; 9799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25411_to, ; char* from + ptr null; char* to + }, ; 9800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25411_to, ; char* from + ptr null; char* to + }, ; 9801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25205_to, ; char* from + ptr @.TypeMapEntry.25204_from; char* to + }, ; 9802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25209_to, ; char* from + ptr @.TypeMapEntry.25208_from; char* to + }, ; 9803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25207_to, ; char* from + ptr @.TypeMapEntry.25206_from; char* to + }, ; 9804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25414_to, ; char* from + ptr null; char* to + }, ; 9805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25414_to, ; char* from + ptr null; char* to + }, ; 9806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25211_to, ; char* from + ptr @.TypeMapEntry.25210_from; char* to + }, ; 9807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25215_to, ; char* from + ptr @.TypeMapEntry.25214_from; char* to + }, ; 9808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25213_to, ; char* from + ptr @.TypeMapEntry.25212_from; char* to + }, ; 9809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25417_to, ; char* from + ptr null; char* to + }, ; 9810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25417_to, ; char* from + ptr null; char* to + }, ; 9811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25219_to, ; char* from + ptr @.TypeMapEntry.25218_from; char* to + }, ; 9812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25217_to, ; char* from + ptr @.TypeMapEntry.25216_from; char* to + }, ; 9813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25420_to, ; char* from + ptr null; char* to + }, ; 9814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25420_to, ; char* from + ptr null; char* to + }, ; 9815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25223_to, ; char* from + ptr @.TypeMapEntry.25222_from; char* to + }, ; 9816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25221_to, ; char* from + ptr @.TypeMapEntry.25220_from; char* to + }, ; 9817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25423_to, ; char* from + ptr null; char* to + }, ; 9818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25423_to, ; char* from + ptr null; char* to + }, ; 9819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25227_to, ; char* from + ptr @.TypeMapEntry.25226_from; char* to + }, ; 9820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25225_to, ; char* from + ptr @.TypeMapEntry.25224_from; char* to + }, ; 9821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25426_to, ; char* from + ptr null; char* to + }, ; 9822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25426_to, ; char* from + ptr null; char* to + }, ; 9823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25231_to, ; char* from + ptr @.TypeMapEntry.25230_from; char* to + }, ; 9824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25229_to, ; char* from + ptr @.TypeMapEntry.25228_from; char* to + }, ; 9825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25429_to, ; char* from + ptr null; char* to + }, ; 9826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25429_to, ; char* from + ptr null; char* to + }, ; 9827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25233_to, ; char* from + ptr @.TypeMapEntry.25232_from; char* to + }, ; 9828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25237_to, ; char* from + ptr @.TypeMapEntry.25236_from; char* to + }, ; 9829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25235_to, ; char* from + ptr @.TypeMapEntry.25234_from; char* to + }, ; 9830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25432_to, ; char* from + ptr null; char* to + }, ; 9831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25432_to, ; char* from + ptr null; char* to + }, ; 9832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25241_to, ; char* from + ptr @.TypeMapEntry.25240_from; char* to + }, ; 9833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25239_to, ; char* from + ptr @.TypeMapEntry.25238_from; char* to + }, ; 9834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25435_to, ; char* from + ptr null; char* to + }, ; 9835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25435_to, ; char* from + ptr null; char* to + }, ; 9836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25245_to, ; char* from + ptr @.TypeMapEntry.25244_from; char* to + }, ; 9837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25243_to, ; char* from + ptr @.TypeMapEntry.25242_from; char* to + }, ; 9838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25438_to, ; char* from + ptr null; char* to + }, ; 9839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25438_to, ; char* from + ptr null; char* to + }, ; 9840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25247_to, ; char* from + ptr @.TypeMapEntry.25246_from; char* to + }, ; 9841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25251_to, ; char* from + ptr @.TypeMapEntry.25250_from; char* to + }, ; 9842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25249_to, ; char* from + ptr @.TypeMapEntry.25248_from; char* to + }, ; 9843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25441_to, ; char* from + ptr null; char* to + }, ; 9844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25441_to, ; char* from + ptr null; char* to + }, ; 9845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25253_to, ; char* from + ptr @.TypeMapEntry.25252_from; char* to + }, ; 9846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25255_to, ; char* from + ptr @.TypeMapEntry.25254_from; char* to + }, ; 9847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25259_to, ; char* from + ptr @.TypeMapEntry.25258_from; char* to + }, ; 9848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25257_to, ; char* from + ptr @.TypeMapEntry.25256_from; char* to + }, ; 9849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25263_to, ; char* from + ptr @.TypeMapEntry.25262_from; char* to + }, ; 9850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25261_to, ; char* from + ptr @.TypeMapEntry.25260_from; char* to + }, ; 9851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25444_to, ; char* from + ptr null; char* to + }, ; 9852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25444_to, ; char* from + ptr null; char* to + }, ; 9853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25447_to, ; char* from + ptr null; char* to + }, ; 9854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25447_to, ; char* from + ptr null; char* to + }, ; 9855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25267_to, ; char* from + ptr @.TypeMapEntry.25266_from; char* to + }, ; 9856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25265_to, ; char* from + ptr @.TypeMapEntry.25264_from; char* to + }, ; 9857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25450_to, ; char* from + ptr null; char* to + }, ; 9858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25450_to, ; char* from + ptr null; char* to + }, ; 9859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25269_to, ; char* from + ptr @.TypeMapEntry.25268_from; char* to + }, ; 9860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25273_to, ; char* from + ptr @.TypeMapEntry.25272_from; char* to + }, ; 9861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25271_to, ; char* from + ptr @.TypeMapEntry.25270_from; char* to + }, ; 9862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25277_to, ; char* from + ptr @.TypeMapEntry.25276_from; char* to + }, ; 9863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25275_to, ; char* from + ptr @.TypeMapEntry.25274_from; char* to + }, ; 9864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25453_to, ; char* from + ptr null; char* to + }, ; 9865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25453_to, ; char* from + ptr null; char* to + }, ; 9866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25456_to, ; char* from + ptr null; char* to + }, ; 9867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25456_to, ; char* from + ptr null; char* to + }, ; 9868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25281_to, ; char* from + ptr @.TypeMapEntry.25280_from; char* to + }, ; 9869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25279_to, ; char* from + ptr @.TypeMapEntry.25278_from; char* to + }, ; 9870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25459_to, ; char* from + ptr null; char* to + }, ; 9871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25459_to, ; char* from + ptr null; char* to + }, ; 9872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25283_to, ; char* from + ptr @.TypeMapEntry.25282_from; char* to + }, ; 9873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25287_to, ; char* from + ptr @.TypeMapEntry.25286_from; char* to + }, ; 9874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25285_to, ; char* from + ptr @.TypeMapEntry.25284_from; char* to + }, ; 9875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25291_to, ; char* from + ptr @.TypeMapEntry.25290_from; char* to + }, ; 9876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25289_to, ; char* from + ptr @.TypeMapEntry.25288_from; char* to + }, ; 9877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25462_to, ; char* from + ptr null; char* to + }, ; 9878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25462_to, ; char* from + ptr null; char* to + }, ; 9879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25465_to, ; char* from + ptr null; char* to + }, ; 9880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25465_to, ; char* from + ptr null; char* to + }, ; 9881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25295_to, ; char* from + ptr @.TypeMapEntry.25294_from; char* to + }, ; 9882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25293_to, ; char* from + ptr @.TypeMapEntry.25292_from; char* to + }, ; 9883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25468_to, ; char* from + ptr null; char* to + }, ; 9884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25468_to, ; char* from + ptr null; char* to + }, ; 9885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25297_to, ; char* from + ptr @.TypeMapEntry.25296_from; char* to + }, ; 9886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25299_to, ; char* from + ptr @.TypeMapEntry.25298_from; char* to + }, ; 9887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25301_to, ; char* from + ptr @.TypeMapEntry.25300_from; char* to + }, ; 9888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25303_to, ; char* from + ptr @.TypeMapEntry.25302_from; char* to + }, ; 9889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25307_to, ; char* from + ptr @.TypeMapEntry.25306_from; char* to + }, ; 9890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25305_to, ; char* from + ptr @.TypeMapEntry.25304_from; char* to + }, ; 9891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25471_to, ; char* from + ptr null; char* to + }, ; 9892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25471_to, ; char* from + ptr null; char* to + }, ; 9893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25311_to, ; char* from + ptr @.TypeMapEntry.25310_from; char* to + }, ; 9894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25309_to, ; char* from + ptr @.TypeMapEntry.25308_from; char* to + }, ; 9895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25474_to, ; char* from + ptr null; char* to + }, ; 9896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25474_to, ; char* from + ptr null; char* to + }, ; 9897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25315_to, ; char* from + ptr @.TypeMapEntry.25314_from; char* to + }, ; 9898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25313_to, ; char* from + ptr @.TypeMapEntry.25312_from; char* to + }, ; 9899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25477_to, ; char* from + ptr null; char* to + }, ; 9900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25477_to, ; char* from + ptr null; char* to + }, ; 9901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25319_to, ; char* from + ptr @.TypeMapEntry.25318_from; char* to + }, ; 9902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25317_to, ; char* from + ptr @.TypeMapEntry.25316_from; char* to + }, ; 9903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25480_to, ; char* from + ptr null; char* to + }, ; 9904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25480_to, ; char* from + ptr null; char* to + }, ; 9905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25594_to, ; char* from + ptr @.TypeMapEntry.25593_from; char* to + }, ; 9906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25596_to, ; char* from + ptr @.TypeMapEntry.25595_from; char* to + }, ; 9907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25600_to, ; char* from + ptr @.TypeMapEntry.25599_from; char* to + }, ; 9908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25598_to, ; char* from + ptr @.TypeMapEntry.25597_from; char* to + }, ; 9909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25483_to, ; char* from + ptr null; char* to + }, ; 9910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25483_to, ; char* from + ptr null; char* to + }, ; 9911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25604_to, ; char* from + ptr @.TypeMapEntry.25603_from; char* to + }, ; 9912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25602_to, ; char* from + ptr @.TypeMapEntry.25601_from; char* to + }, ; 9913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25486_to, ; char* from + ptr null; char* to + }, ; 9914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25486_to, ; char* from + ptr null; char* to + }, ; 9915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25615_to, ; char* from + ptr @.TypeMapEntry.25614_from; char* to + }, ; 9916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25606_to, ; char* from + ptr @.TypeMapEntry.25605_from; char* to + }, ; 9917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25610_to, ; char* from + ptr @.TypeMapEntry.25609_from; char* to + }, ; 9918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25608_to, ; char* from + ptr @.TypeMapEntry.25607_from; char* to + }, ; 9919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25612_to, ; char* from + ptr null; char* to + }, ; 9920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25612_to, ; char* from + ptr null; char* to + }, ; 9921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25489_to, ; char* from + ptr null; char* to + }, ; 9922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25489_to, ; char* from + ptr null; char* to + }, ; 9923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25617_to, ; char* from + ptr @.TypeMapEntry.25616_from; char* to + }, ; 9924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25619_to, ; char* from + ptr @.TypeMapEntry.25618_from; char* to + }, ; 9925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25630_to, ; char* from + ptr @.TypeMapEntry.25629_from; char* to + }, ; 9926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25621_to, ; char* from + ptr @.TypeMapEntry.25620_from; char* to + }, ; 9927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25625_to, ; char* from + ptr @.TypeMapEntry.25624_from; char* to + }, ; 9928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25623_to, ; char* from + ptr @.TypeMapEntry.25622_from; char* to + }, ; 9929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25627_to, ; char* from + ptr null; char* to + }, ; 9930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25627_to, ; char* from + ptr null; char* to + }, ; 9931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25634_to, ; char* from + ptr @.TypeMapEntry.25633_from; char* to + }, ; 9932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25632_to, ; char* from + ptr @.TypeMapEntry.25631_from; char* to + }, ; 9933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25492_to, ; char* from + ptr null; char* to + }, ; 9934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25492_to, ; char* from + ptr null; char* to + }, ; 9935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25495_to, ; char* from + ptr null; char* to + }, ; 9936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25495_to, ; char* from + ptr null; char* to + }, ; 9937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25636_to, ; char* from + ptr @.TypeMapEntry.25635_from; char* to + }, ; 9938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25638_to, ; char* from + ptr @.TypeMapEntry.25637_from; char* to + }, ; 9939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25642_to, ; char* from + ptr @.TypeMapEntry.25641_from; char* to + }, ; 9940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25640_to, ; char* from + ptr @.TypeMapEntry.25639_from; char* to + }, ; 9941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25498_to, ; char* from + ptr null; char* to + }, ; 9942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25498_to, ; char* from + ptr null; char* to + }, ; 9943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25646_to, ; char* from + ptr @.TypeMapEntry.25645_from; char* to + }, ; 9944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25644_to, ; char* from + ptr @.TypeMapEntry.25643_from; char* to + }, ; 9945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25501_to, ; char* from + ptr null; char* to + }, ; 9946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25501_to, ; char* from + ptr null; char* to + }, ; 9947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25657_to, ; char* from + ptr @.TypeMapEntry.25656_from; char* to + }, ; 9948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25648_to, ; char* from + ptr @.TypeMapEntry.25647_from; char* to + }, ; 9949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25652_to, ; char* from + ptr @.TypeMapEntry.25651_from; char* to + }, ; 9950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25650_to, ; char* from + ptr @.TypeMapEntry.25649_from; char* to + }, ; 9951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25654_to, ; char* from + ptr null; char* to + }, ; 9952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25654_to, ; char* from + ptr null; char* to + }, ; 9953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25504_to, ; char* from + ptr null; char* to + }, ; 9954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25504_to, ; char* from + ptr null; char* to + }, ; 9955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25659_to, ; char* from + ptr @.TypeMapEntry.25658_from; char* to + }, ; 9956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25661_to, ; char* from + ptr @.TypeMapEntry.25660_from; char* to + }, ; 9957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25665_to, ; char* from + ptr @.TypeMapEntry.25664_from; char* to + }, ; 9958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25663_to, ; char* from + ptr @.TypeMapEntry.25662_from; char* to + }, ; 9959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25507_to, ; char* from + ptr null; char* to + }, ; 9960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25507_to, ; char* from + ptr null; char* to + }, ; 9961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25669_to, ; char* from + ptr @.TypeMapEntry.25668_from; char* to + }, ; 9962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25667_to, ; char* from + ptr @.TypeMapEntry.25666_from; char* to + }, ; 9963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25510_to, ; char* from + ptr null; char* to + }, ; 9964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25510_to, ; char* from + ptr null; char* to + }, ; 9965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25680_to, ; char* from + ptr @.TypeMapEntry.25679_from; char* to + }, ; 9966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25671_to, ; char* from + ptr @.TypeMapEntry.25670_from; char* to + }, ; 9967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25675_to, ; char* from + ptr @.TypeMapEntry.25674_from; char* to + }, ; 9968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25673_to, ; char* from + ptr @.TypeMapEntry.25672_from; char* to + }, ; 9969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25677_to, ; char* from + ptr null; char* to + }, ; 9970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25677_to, ; char* from + ptr null; char* to + }, ; 9971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25513_to, ; char* from + ptr null; char* to + }, ; 9972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25513_to, ; char* from + ptr null; char* to + }, ; 9973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25686_to, ; char* from + ptr @.TypeMapEntry.25685_from; char* to + }, ; 9974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25682_to, ; char* from + ptr @.TypeMapEntry.25681_from; char* to + }, ; 9975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25684_to, ; char* from + ptr @.TypeMapEntry.25683_from; char* to + }, ; 9976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25516_to, ; char* from + ptr null; char* to + }, ; 9977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25516_to, ; char* from + ptr null; char* to + }, ; 9978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25688_to, ; char* from + ptr @.TypeMapEntry.25687_from; char* to + }, ; 9979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25692_to, ; char* from + ptr @.TypeMapEntry.25691_from; char* to + }, ; 9980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25690_to, ; char* from + ptr @.TypeMapEntry.25689_from; char* to + }, ; 9981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25519_to, ; char* from + ptr null; char* to + }, ; 9982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25519_to, ; char* from + ptr null; char* to + }, ; 9983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25696_to, ; char* from + ptr @.TypeMapEntry.25695_from; char* to + }, ; 9984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25694_to, ; char* from + ptr @.TypeMapEntry.25693_from; char* to + }, ; 9985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25522_to, ; char* from + ptr null; char* to + }, ; 9986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25522_to, ; char* from + ptr null; char* to + }, ; 9987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25707_to, ; char* from + ptr @.TypeMapEntry.25706_from; char* to + }, ; 9988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25698_to, ; char* from + ptr @.TypeMapEntry.25697_from; char* to + }, ; 9989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25705_to, ; char* from + ptr @.TypeMapEntry.25704_from; char* to + }, ; 9990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25703_to, ; char* from + ptr @.TypeMapEntry.25702_from; char* to + }, ; 9991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25700_to, ; char* from + ptr null; char* to + }, ; 9992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25700_to, ; char* from + ptr null; char* to + }, ; 9993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25718_to, ; char* from + ptr @.TypeMapEntry.25717_from; char* to + }, ; 9994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25709_to, ; char* from + ptr @.TypeMapEntry.25708_from; char* to + }, ; 9995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25716_to, ; char* from + ptr @.TypeMapEntry.25715_from; char* to + }, ; 9996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25714_to, ; char* from + ptr @.TypeMapEntry.25713_from; char* to + }, ; 9997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25711_to, ; char* from + ptr null; char* to + }, ; 9998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25711_to, ; char* from + ptr null; char* to + }, ; 9999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25525_to, ; char* from + ptr null; char* to + }, ; 10000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25525_to, ; char* from + ptr null; char* to + }, ; 10001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25528_to, ; char* from + ptr null; char* to + }, ; 10002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25528_to, ; char* from + ptr null; char* to + }, ; 10003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25720_to, ; char* from + ptr @.TypeMapEntry.25719_from; char* to + }, ; 10004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25724_to, ; char* from + ptr @.TypeMapEntry.25723_from; char* to + }, ; 10005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25722_to, ; char* from + ptr @.TypeMapEntry.25721_from; char* to + }, ; 10006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25728_to, ; char* from + ptr @.TypeMapEntry.25727_from; char* to + }, ; 10007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25726_to, ; char* from + ptr @.TypeMapEntry.25725_from; char* to + }, ; 10008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25531_to, ; char* from + ptr null; char* to + }, ; 10009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25531_to, ; char* from + ptr null; char* to + }, ; 10010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25534_to, ; char* from + ptr null; char* to + }, ; 10011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25534_to, ; char* from + ptr null; char* to + }, ; 10012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25730_to, ; char* from + ptr @.TypeMapEntry.25729_from; char* to + }, ; 10013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25734_to, ; char* from + ptr @.TypeMapEntry.25733_from; char* to + }, ; 10014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25732_to, ; char* from + ptr @.TypeMapEntry.25731_from; char* to + }, ; 10015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25738_to, ; char* from + ptr @.TypeMapEntry.25737_from; char* to + }, ; 10016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25736_to, ; char* from + ptr @.TypeMapEntry.25735_from; char* to + }, ; 10017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25537_to, ; char* from + ptr null; char* to + }, ; 10018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25537_to, ; char* from + ptr null; char* to + }, ; 10019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25540_to, ; char* from + ptr null; char* to + }, ; 10020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25540_to, ; char* from + ptr null; char* to + }, ; 10021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25740_to, ; char* from + ptr @.TypeMapEntry.25739_from; char* to + }, ; 10022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25742_to, ; char* from + ptr @.TypeMapEntry.25741_from; char* to + }, ; 10023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25746_to, ; char* from + ptr @.TypeMapEntry.25745_from; char* to + }, ; 10024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25744_to, ; char* from + ptr @.TypeMapEntry.25743_from; char* to + }, ; 10025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25750_to, ; char* from + ptr @.TypeMapEntry.25749_from; char* to + }, ; 10026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25748_to, ; char* from + ptr @.TypeMapEntry.25747_from; char* to + }, ; 10027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25543_to, ; char* from + ptr null; char* to + }, ; 10028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25543_to, ; char* from + ptr null; char* to + }, ; 10029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25546_to, ; char* from + ptr null; char* to + }, ; 10030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25546_to, ; char* from + ptr null; char* to + }, ; 10031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25754_to, ; char* from + ptr @.TypeMapEntry.25753_from; char* to + }, ; 10032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25752_to, ; char* from + ptr @.TypeMapEntry.25751_from; char* to + }, ; 10033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25549_to, ; char* from + ptr null; char* to + }, ; 10034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25549_to, ; char* from + ptr null; char* to + }, ; 10035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25758_to, ; char* from + ptr @.TypeMapEntry.25757_from; char* to + }, ; 10036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25756_to, ; char* from + ptr @.TypeMapEntry.25755_from; char* to + }, ; 10037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25552_to, ; char* from + ptr null; char* to + }, ; 10038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25552_to, ; char* from + ptr null; char* to + }, ; 10039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25760_to, ; char* from + ptr @.TypeMapEntry.25759_from; char* to + }, ; 10040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25764_to, ; char* from + ptr @.TypeMapEntry.25763_from; char* to + }, ; 10041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25762_to, ; char* from + ptr @.TypeMapEntry.25761_from; char* to + }, ; 10042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25555_to, ; char* from + ptr null; char* to + }, ; 10043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25555_to, ; char* from + ptr null; char* to + }, ; 10044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25768_to, ; char* from + ptr @.TypeMapEntry.25767_from; char* to + }, ; 10045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25766_to, ; char* from + ptr @.TypeMapEntry.25765_from; char* to + }, ; 10046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25558_to, ; char* from + ptr null; char* to + }, ; 10047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25558_to, ; char* from + ptr null; char* to + }, ; 10048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25772_to, ; char* from + ptr @.TypeMapEntry.25771_from; char* to + }, ; 10049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25770_to, ; char* from + ptr @.TypeMapEntry.25769_from; char* to + }, ; 10050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25561_to, ; char* from + ptr null; char* to + }, ; 10051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25561_to, ; char* from + ptr null; char* to + }, ; 10052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25776_to, ; char* from + ptr @.TypeMapEntry.25775_from; char* to + }, ; 10053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25774_to, ; char* from + ptr @.TypeMapEntry.25773_from; char* to + }, ; 10054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25564_to, ; char* from + ptr null; char* to + }, ; 10055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25564_to, ; char* from + ptr null; char* to + }, ; 10056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25778_to, ; char* from + ptr @.TypeMapEntry.25777_from; char* to + }, ; 10057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25782_to, ; char* from + ptr @.TypeMapEntry.25781_from; char* to + }, ; 10058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25780_to, ; char* from + ptr @.TypeMapEntry.25779_from; char* to + }, ; 10059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25567_to, ; char* from + ptr null; char* to + }, ; 10060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25567_to, ; char* from + ptr null; char* to + }, ; 10061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25786_to, ; char* from + ptr @.TypeMapEntry.25785_from; char* to + }, ; 10062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25784_to, ; char* from + ptr @.TypeMapEntry.25783_from; char* to + }, ; 10063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25570_to, ; char* from + ptr null; char* to + }, ; 10064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25570_to, ; char* from + ptr null; char* to + }, ; 10065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25790_to, ; char* from + ptr @.TypeMapEntry.25789_from; char* to + }, ; 10066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25788_to, ; char* from + ptr @.TypeMapEntry.25787_from; char* to + }, ; 10067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25573_to, ; char* from + ptr null; char* to + }, ; 10068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25573_to, ; char* from + ptr null; char* to + }, ; 10069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25794_to, ; char* from + ptr @.TypeMapEntry.25793_from; char* to + }, ; 10070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25792_to, ; char* from + ptr @.TypeMapEntry.25791_from; char* to + }, ; 10071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25576_to, ; char* from + ptr null; char* to + }, ; 10072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25576_to, ; char* from + ptr null; char* to + }, ; 10073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25796_to, ; char* from + ptr @.TypeMapEntry.25795_from; char* to + }, ; 10074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25798_to, ; char* from + ptr @.TypeMapEntry.25797_from; char* to + }, ; 10075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25802_to, ; char* from + ptr @.TypeMapEntry.25801_from; char* to + }, ; 10076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25800_to, ; char* from + ptr @.TypeMapEntry.25799_from; char* to + }, ; 10077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25806_to, ; char* from + ptr @.TypeMapEntry.25805_from; char* to + }, ; 10078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25804_to, ; char* from + ptr @.TypeMapEntry.25803_from; char* to + }, ; 10079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25579_to, ; char* from + ptr null; char* to + }, ; 10080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25579_to, ; char* from + ptr null; char* to + }, ; 10081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25582_to, ; char* from + ptr null; char* to + }, ; 10082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25582_to, ; char* from + ptr null; char* to + }, ; 10083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25810_to, ; char* from + ptr @.TypeMapEntry.25809_from; char* to + }, ; 10084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25808_to, ; char* from + ptr @.TypeMapEntry.25807_from; char* to + }, ; 10085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25585_to, ; char* from + ptr null; char* to + }, ; 10086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25585_to, ; char* from + ptr null; char* to + }, ; 10087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25814_to, ; char* from + ptr @.TypeMapEntry.25813_from; char* to + }, ; 10088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25812_to, ; char* from + ptr @.TypeMapEntry.25811_from; char* to + }, ; 10089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25818_to, ; char* from + ptr @.TypeMapEntry.25817_from; char* to + }, ; 10090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25816_to, ; char* from + ptr @.TypeMapEntry.25815_from; char* to + }, ; 10091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25588_to, ; char* from + ptr null; char* to + }, ; 10092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25588_to, ; char* from + ptr null; char* to + }, ; 10093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25591_to, ; char* from + ptr null; char* to + }, ; 10094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25591_to, ; char* from + ptr null; char* to + }, ; 10095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25820_to, ; char* from + ptr @.TypeMapEntry.25819_from; char* to + }, ; 10096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25836_to, ; char* from + ptr @.TypeMapEntry.25835_from; char* to + }, ; 10097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25836_to, ; char* from + ptr @.TypeMapEntry.25835_from; char* to + }, ; 10098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25830_to, ; char* from + ptr @.TypeMapEntry.25829_from; char* to + }, ; 10099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25830_to, ; char* from + ptr @.TypeMapEntry.25829_from; char* to + }, ; 10100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25828_to, ; char* from + ptr @.TypeMapEntry.25827_from; char* to + }, ; 10101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25833_to, ; char* from + ptr null; char* to + }, ; 10102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25833_to, ; char* from + ptr null; char* to + }, ; 10103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25839_to, ; char* from + ptr @.TypeMapEntry.25838_from; char* to + }, ; 10104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25839_to, ; char* from + ptr @.TypeMapEntry.25838_from; char* to + }, ; 10105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25844_to, ; char* from + ptr @.TypeMapEntry.25843_from; char* to + }, ; 10106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25842_to, ; char* from + ptr @.TypeMapEntry.25841_from; char* to + }, ; 10107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26218_to, ; char* from + ptr null; char* to + }, ; 10108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26218_to, ; char* from + ptr null; char* to + }, ; 10109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25846_to, ; char* from + ptr @.TypeMapEntry.25845_from; char* to + }, ; 10110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25850_to, ; char* from + ptr @.TypeMapEntry.25849_from; char* to + }, ; 10111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25848_to, ; char* from + ptr @.TypeMapEntry.25847_from; char* to + }, ; 10112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26221_to, ; char* from + ptr null; char* to + }, ; 10113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26221_to, ; char* from + ptr null; char* to + }, ; 10114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25852_to, ; char* from + ptr @.TypeMapEntry.25851_from; char* to + }, ; 10115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25856_to, ; char* from + ptr @.TypeMapEntry.25855_from; char* to + }, ; 10116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25854_to, ; char* from + ptr @.TypeMapEntry.25853_from; char* to + }, ; 10117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26224_to, ; char* from + ptr null; char* to + }, ; 10118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26224_to, ; char* from + ptr null; char* to + }, ; 10119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25858_to, ; char* from + ptr @.TypeMapEntry.25857_from; char* to + }, ; 10120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25858_to, ; char* from + ptr @.TypeMapEntry.25857_from; char* to + }, ; 10121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25866_to, ; char* from + ptr @.TypeMapEntry.25865_from; char* to + }, ; 10122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25866_to, ; char* from + ptr @.TypeMapEntry.25865_from; char* to + }, ; 10123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25861_to, ; char* from + ptr null; char* to + }, ; 10124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25861_to, ; char* from + ptr null; char* to + }, ; 10125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25864_to, ; char* from + ptr @.TypeMapEntry.25863_from; char* to + }, ; 10126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25871_to, ; char* from + ptr @.TypeMapEntry.25870_from; char* to + }, ; 10127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25869_to, ; char* from + ptr @.TypeMapEntry.25868_from; char* to + }, ; 10128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26227_to, ; char* from + ptr null; char* to + }, ; 10129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26227_to, ; char* from + ptr null; char* to + }, ; 10130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25873_to, ; char* from + ptr @.TypeMapEntry.25872_from; char* to + }, ; 10131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25873_to, ; char* from + ptr @.TypeMapEntry.25872_from; char* to + }, ; 10132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25878_to, ; char* from + ptr @.TypeMapEntry.25877_from; char* to + }, ; 10133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25878_to, ; char* from + ptr @.TypeMapEntry.25877_from; char* to + }, ; 10134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25876_to, ; char* from + ptr @.TypeMapEntry.25875_from; char* to + }, ; 10135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26146_to, ; char* from + ptr @.TypeMapEntry.26145_from; char* to + }, ; 10136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25897_to, ; char* from + ptr @.TypeMapEntry.25896_from; char* to + }, ; 10137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25881_to, ; char* from + ptr @.TypeMapEntry.25880_from; char* to + }, ; 10138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25885_to, ; char* from + ptr @.TypeMapEntry.25884_from; char* to + }, ; 10139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25883_to, ; char* from + ptr @.TypeMapEntry.25882_from; char* to + }, ; 10140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25887_to, ; char* from + ptr null; char* to + }, ; 10141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25887_to, ; char* from + ptr null; char* to + }, ; 10142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25895_to, ; char* from + ptr @.TypeMapEntry.25894_from; char* to + }, ; 10143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25893_to, ; char* from + ptr @.TypeMapEntry.25892_from; char* to + }, ; 10144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25890_to, ; char* from + ptr null; char* to + }, ; 10145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25890_to, ; char* from + ptr null; char* to + }, ; 10146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26025_to, ; char* from + ptr null; char* to + }, ; 10147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26025_to, ; char* from + ptr null; char* to + }, ; 10148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25899_to, ; char* from + ptr @.TypeMapEntry.25898_from; char* to + }, ; 10149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25910_to, ; char* from + ptr @.TypeMapEntry.25909_from; char* to + }, ; 10150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25901_to, ; char* from + ptr @.TypeMapEntry.25900_from; char* to + }, ; 10151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25905_to, ; char* from + ptr @.TypeMapEntry.25904_from; char* to + }, ; 10152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25903_to, ; char* from + ptr @.TypeMapEntry.25902_from; char* to + }, ; 10153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25907_to, ; char* from + ptr null; char* to + }, ; 10154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25907_to, ; char* from + ptr null; char* to + }, ; 10155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26028_to, ; char* from + ptr null; char* to + }, ; 10156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26028_to, ; char* from + ptr null; char* to + }, ; 10157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25914_to, ; char* from + ptr @.TypeMapEntry.25913_from; char* to + }, ; 10158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25912_to, ; char* from + ptr @.TypeMapEntry.25911_from; char* to + }, ; 10159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26031_to, ; char* from + ptr null; char* to + }, ; 10160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26031_to, ; char* from + ptr null; char* to + }, ; 10161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25918_to, ; char* from + ptr @.TypeMapEntry.25917_from; char* to + }, ; 10162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25916_to, ; char* from + ptr @.TypeMapEntry.25915_from; char* to + }, ; 10163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26034_to, ; char* from + ptr null; char* to + }, ; 10164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26034_to, ; char* from + ptr null; char* to + }, ; 10165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25922_to, ; char* from + ptr @.TypeMapEntry.25921_from; char* to + }, ; 10166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25920_to, ; char* from + ptr @.TypeMapEntry.25919_from; char* to + }, ; 10167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26037_to, ; char* from + ptr null; char* to + }, ; 10168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26037_to, ; char* from + ptr null; char* to + }, ; 10169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25935_to, ; char* from + ptr @.TypeMapEntry.25934_from; char* to + }, ; 10170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25924_to, ; char* from + ptr @.TypeMapEntry.25923_from; char* to + }, ; 10171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25928_to, ; char* from + ptr @.TypeMapEntry.25927_from; char* to + }, ; 10172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25926_to, ; char* from + ptr @.TypeMapEntry.25925_from; char* to + }, ; 10173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25930_to, ; char* from + ptr null; char* to + }, ; 10174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25930_to, ; char* from + ptr null; char* to + }, ; 10175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25933_to, ; char* from + ptr @.TypeMapEntry.25932_from; char* to + }, ; 10176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26040_to, ; char* from + ptr null; char* to + }, ; 10177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26040_to, ; char* from + ptr null; char* to + }, ; 10178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25951_to, ; char* from + ptr @.TypeMapEntry.25950_from; char* to + }, ; 10179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25937_to, ; char* from + ptr @.TypeMapEntry.25936_from; char* to + }, ; 10180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25939_to, ; char* from + ptr @.TypeMapEntry.25938_from; char* to + }, ; 10181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25941_to, ; char* from + ptr @.TypeMapEntry.25940_from; char* to + }, ; 10182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25943_to, ; char* from + ptr @.TypeMapEntry.25942_from; char* to + }, ; 10183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25945_to, ; char* from + ptr @.TypeMapEntry.25944_from; char* to + }, ; 10184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25947_to, ; char* from + ptr @.TypeMapEntry.25946_from; char* to + }, ; 10185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25949_to, ; char* from + ptr @.TypeMapEntry.25948_from; char* to + }, ; 10186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25962_to, ; char* from + ptr @.TypeMapEntry.25961_from; char* to + }, ; 10187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25953_to, ; char* from + ptr @.TypeMapEntry.25952_from; char* to + }, ; 10188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25957_to, ; char* from + ptr @.TypeMapEntry.25956_from; char* to + }, ; 10189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25955_to, ; char* from + ptr @.TypeMapEntry.25954_from; char* to + }, ; 10190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25959_to, ; char* from + ptr null; char* to + }, ; 10191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25959_to, ; char* from + ptr null; char* to + }, ; 10192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26043_to, ; char* from + ptr null; char* to + }, ; 10193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26043_to, ; char* from + ptr null; char* to + }, ; 10194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26046_to, ; char* from + ptr null; char* to + }, ; 10195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26046_to, ; char* from + ptr null; char* to + }, ; 10196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25970_to, ; char* from + ptr @.TypeMapEntry.25969_from; char* to + }, ; 10197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25964_to, ; char* from + ptr @.TypeMapEntry.25963_from; char* to + }, ; 10198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25966_to, ; char* from + ptr @.TypeMapEntry.25965_from; char* to + }, ; 10199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25968_to, ; char* from + ptr @.TypeMapEntry.25967_from; char* to + }, ; 10200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26049_to, ; char* from + ptr null; char* to + }, ; 10201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26049_to, ; char* from + ptr null; char* to + }, ; 10202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25996_to, ; char* from + ptr @.TypeMapEntry.25995_from; char* to + }, ; 10203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25972_to, ; char* from + ptr @.TypeMapEntry.25971_from; char* to + }, ; 10204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25974_to, ; char* from + ptr @.TypeMapEntry.25973_from; char* to + }, ; 10205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25978_to, ; char* from + ptr @.TypeMapEntry.25977_from; char* to + }, ; 10206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25976_to, ; char* from + ptr @.TypeMapEntry.25975_from; char* to + }, ; 10207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25984_to, ; char* from + ptr null; char* to + }, ; 10208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25984_to, ; char* from + ptr null; char* to + }, ; 10209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25982_to, ; char* from + ptr @.TypeMapEntry.25981_from; char* to + }, ; 10210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25980_to, ; char* from + ptr @.TypeMapEntry.25979_from; char* to + }, ; 10211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25987_to, ; char* from + ptr null; char* to + }, ; 10212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25987_to, ; char* from + ptr null; char* to + }, ; 10213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25990_to, ; char* from + ptr @.TypeMapEntry.25989_from; char* to + }, ; 10214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25992_to, ; char* from + ptr @.TypeMapEntry.25991_from; char* to + }, ; 10215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25994_to, ; char* from + ptr @.TypeMapEntry.25993_from; char* to + }, ; 10216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26052_to, ; char* from + ptr null; char* to + }, ; 10217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26052_to, ; char* from + ptr null; char* to + }, ; 10218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26000_to, ; char* from + ptr @.TypeMapEntry.25999_from; char* to + }, ; 10219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25998_to, ; char* from + ptr @.TypeMapEntry.25997_from; char* to + }, ; 10220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26055_to, ; char* from + ptr null; char* to + }, ; 10221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26055_to, ; char* from + ptr null; char* to + }, ; 10222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26004_to, ; char* from + ptr @.TypeMapEntry.26003_from; char* to + }, ; 10223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26002_to, ; char* from + ptr @.TypeMapEntry.26001_from; char* to + }, ; 10224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26058_to, ; char* from + ptr null; char* to + }, ; 10225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26058_to, ; char* from + ptr null; char* to + }, ; 10226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26010_to, ; char* from + ptr @.TypeMapEntry.26009_from; char* to + }, ; 10227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26006_to, ; char* from + ptr @.TypeMapEntry.26005_from; char* to + }, ; 10228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26008_to, ; char* from + ptr @.TypeMapEntry.26007_from; char* to + }, ; 10229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26061_to, ; char* from + ptr null; char* to + }, ; 10230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26061_to, ; char* from + ptr null; char* to + }, ; 10231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26023_to, ; char* from + ptr @.TypeMapEntry.26022_from; char* to + }, ; 10232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26016_to, ; char* from + ptr @.TypeMapEntry.26015_from; char* to + }, ; 10233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26012_to, ; char* from + ptr @.TypeMapEntry.26011_from; char* to + }, ; 10234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26014_to, ; char* from + ptr @.TypeMapEntry.26013_from; char* to + }, ; 10235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26020_to, ; char* from + ptr null; char* to + }, ; 10236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26020_to, ; char* from + ptr null; char* to + }, ; 10237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26018_to, ; char* from + ptr @.TypeMapEntry.26017_from; char* to + }, ; 10238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26064_to, ; char* from + ptr null; char* to + }, ; 10239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26064_to, ; char* from + ptr null; char* to + }, ; 10240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26096_to, ; char* from + ptr @.TypeMapEntry.26095_from; char* to + }, ; 10241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26094_to, ; char* from + ptr @.TypeMapEntry.26093_from; char* to + }, ; 10242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26067_to, ; char* from + ptr null; char* to + }, ; 10243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26067_to, ; char* from + ptr null; char* to + }, ; 10244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26100_to, ; char* from + ptr @.TypeMapEntry.26099_from; char* to + }, ; 10245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26098_to, ; char* from + ptr @.TypeMapEntry.26097_from; char* to + }, ; 10246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26070_to, ; char* from + ptr null; char* to + }, ; 10247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26070_to, ; char* from + ptr null; char* to + }, ; 10248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26106_to, ; char* from + ptr @.TypeMapEntry.26105_from; char* to + }, ; 10249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26102_to, ; char* from + ptr @.TypeMapEntry.26101_from; char* to + }, ; 10250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26104_to, ; char* from + ptr @.TypeMapEntry.26103_from; char* to + }, ; 10251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26073_to, ; char* from + ptr null; char* to + }, ; 10252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26073_to, ; char* from + ptr null; char* to + }, ; 10253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26110_to, ; char* from + ptr @.TypeMapEntry.26109_from; char* to + }, ; 10254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26108_to, ; char* from + ptr @.TypeMapEntry.26107_from; char* to + }, ; 10255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26076_to, ; char* from + ptr null; char* to + }, ; 10256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26076_to, ; char* from + ptr null; char* to + }, ; 10257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26114_to, ; char* from + ptr @.TypeMapEntry.26113_from; char* to + }, ; 10258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26112_to, ; char* from + ptr @.TypeMapEntry.26111_from; char* to + }, ; 10259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26079_to, ; char* from + ptr null; char* to + }, ; 10260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26079_to, ; char* from + ptr null; char* to + }, ; 10261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26118_to, ; char* from + ptr @.TypeMapEntry.26117_from; char* to + }, ; 10262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26116_to, ; char* from + ptr @.TypeMapEntry.26115_from; char* to + }, ; 10263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26082_to, ; char* from + ptr null; char* to + }, ; 10264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26082_to, ; char* from + ptr null; char* to + }, ; 10265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26122_to, ; char* from + ptr @.TypeMapEntry.26121_from; char* to + }, ; 10266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26120_to, ; char* from + ptr @.TypeMapEntry.26119_from; char* to + }, ; 10267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26085_to, ; char* from + ptr null; char* to + }, ; 10268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26085_to, ; char* from + ptr null; char* to + }, ; 10269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26133_to, ; char* from + ptr @.TypeMapEntry.26132_from; char* to + }, ; 10270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26124_to, ; char* from + ptr @.TypeMapEntry.26123_from; char* to + }, ; 10271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26131_to, ; char* from + ptr @.TypeMapEntry.26130_from; char* to + }, ; 10272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26129_to, ; char* from + ptr @.TypeMapEntry.26128_from; char* to + }, ; 10273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26126_to, ; char* from + ptr null; char* to + }, ; 10274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26126_to, ; char* from + ptr null; char* to + }, ; 10275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26088_to, ; char* from + ptr null; char* to + }, ; 10276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26088_to, ; char* from + ptr null; char* to + }, ; 10277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26144_to, ; char* from + ptr @.TypeMapEntry.26143_from; char* to + }, ; 10278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26135_to, ; char* from + ptr @.TypeMapEntry.26134_from; char* to + }, ; 10279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26142_to, ; char* from + ptr @.TypeMapEntry.26141_from; char* to + }, ; 10280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26140_to, ; char* from + ptr @.TypeMapEntry.26139_from; char* to + }, ; 10281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26137_to, ; char* from + ptr null; char* to + }, ; 10282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26137_to, ; char* from + ptr null; char* to + }, ; 10283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26091_to, ; char* from + ptr null; char* to + }, ; 10284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26091_to, ; char* from + ptr null; char* to + }, ; 10285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26150_to, ; char* from + ptr @.TypeMapEntry.26149_from; char* to + }, ; 10286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26148_to, ; char* from + ptr @.TypeMapEntry.26147_from; char* to + }, ; 10287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26230_to, ; char* from + ptr null; char* to + }, ; 10288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26230_to, ; char* from + ptr null; char* to + }, ; 10289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26154_to, ; char* from + ptr @.TypeMapEntry.26153_from; char* to + }, ; 10290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26152_to, ; char* from + ptr @.TypeMapEntry.26151_from; char* to + }, ; 10291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26233_to, ; char* from + ptr null; char* to + }, ; 10292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26233_to, ; char* from + ptr null; char* to + }, ; 10293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26156_to, ; char* from + ptr @.TypeMapEntry.26155_from; char* to + }, ; 10294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26160_to, ; char* from + ptr @.TypeMapEntry.26159_from; char* to + }, ; 10295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26158_to, ; char* from + ptr @.TypeMapEntry.26157_from; char* to + }, ; 10296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26236_to, ; char* from + ptr null; char* to + }, ; 10297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26236_to, ; char* from + ptr null; char* to + }, ; 10298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26162_to, ; char* from + ptr @.TypeMapEntry.26161_from; char* to + }, ; 10299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26166_to, ; char* from + ptr @.TypeMapEntry.26165_from; char* to + }, ; 10300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26164_to, ; char* from + ptr @.TypeMapEntry.26163_from; char* to + }, ; 10301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26239_to, ; char* from + ptr null; char* to + }, ; 10302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26239_to, ; char* from + ptr null; char* to + }, ; 10303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26170_to, ; char* from + ptr @.TypeMapEntry.26169_from; char* to + }, ; 10304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26168_to, ; char* from + ptr @.TypeMapEntry.26167_from; char* to + }, ; 10305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26242_to, ; char* from + ptr null; char* to + }, ; 10306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26242_to, ; char* from + ptr null; char* to + }, ; 10307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26245_to, ; char* from + ptr null; char* to + }, ; 10308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26245_to, ; char* from + ptr null; char* to + }, ; 10309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26172_to, ; char* from + ptr @.TypeMapEntry.26171_from; char* to + }, ; 10310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26172_to, ; char* from + ptr @.TypeMapEntry.26171_from; char* to + }, ; 10311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26175_to, ; char* from + ptr @.TypeMapEntry.26174_from; char* to + }, ; 10312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26179_to, ; char* from + ptr @.TypeMapEntry.26178_from; char* to + }, ; 10313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26177_to, ; char* from + ptr @.TypeMapEntry.26176_from; char* to + }, ; 10314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26248_to, ; char* from + ptr null; char* to + }, ; 10315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26248_to, ; char* from + ptr null; char* to + }, ; 10316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26181_to, ; char* from + ptr @.TypeMapEntry.26180_from; char* to + }, ; 10317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26186_to, ; char* from + ptr @.TypeMapEntry.26185_from; char* to + }, ; 10318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26183_to, ; char* from + ptr null; char* to + }, ; 10319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26183_to, ; char* from + ptr null; char* to + }, ; 10320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26188_to, ; char* from + ptr @.TypeMapEntry.26187_from; char* to + }, ; 10321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26192_to, ; char* from + ptr @.TypeMapEntry.26191_from; char* to + }, ; 10322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26190_to, ; char* from + ptr @.TypeMapEntry.26189_from; char* to + }, ; 10323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26251_to, ; char* from + ptr null; char* to + }, ; 10324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26251_to, ; char* from + ptr null; char* to + }, ; 10325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26215_to, ; char* from + ptr @.TypeMapEntry.26214_from; char* to + }, ; 10326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26215_to, ; char* from + ptr @.TypeMapEntry.26214_from; char* to + }, ; 10327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26194_to, ; char* from + ptr @.TypeMapEntry.26193_from; char* to + }, ; 10328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26196_to, ; char* from + ptr @.TypeMapEntry.26195_from; char* to + }, ; 10329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26198_to, ; char* from + ptr @.TypeMapEntry.26197_from; char* to + }, ; 10330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26198_to, ; char* from + ptr @.TypeMapEntry.26197_from; char* to + }, ; 10331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26203_to, ; char* from + ptr @.TypeMapEntry.26202_from; char* to + }, ; 10332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26203_to, ; char* from + ptr @.TypeMapEntry.26202_from; char* to + }, ; 10333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26201_to, ; char* from + ptr @.TypeMapEntry.26200_from; char* to + }, ; 10334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26208_to, ; char* from + ptr null; char* to + }, ; 10335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26208_to, ; char* from + ptr null; char* to + }, ; 10336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26206_to, ; char* from + ptr @.TypeMapEntry.26205_from; char* to + }, ; 10337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26211_to, ; char* from + ptr @.TypeMapEntry.26210_from; char* to + }, ; 10338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26213_to, ; char* from + ptr @.TypeMapEntry.26212_from; char* to + }, ; 10339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26313_to, ; char* from + ptr @.TypeMapEntry.26312_from; char* to + }, ; 10340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26311_to, ; char* from + ptr @.TypeMapEntry.26310_from; char* to + }, ; 10341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26254_to, ; char* from + ptr null; char* to + }, ; 10342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26254_to, ; char* from + ptr null; char* to + }, ; 10343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26317_to, ; char* from + ptr @.TypeMapEntry.26316_from; char* to + }, ; 10344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26315_to, ; char* from + ptr @.TypeMapEntry.26314_from; char* to + }, ; 10345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26257_to, ; char* from + ptr null; char* to + }, ; 10346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26257_to, ; char* from + ptr null; char* to + }, ; 10347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26361_to, ; char* from + ptr @.TypeMapEntry.26360_from; char* to + }, ; 10348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26319_to, ; char* from + ptr null; char* to + }, ; 10349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26319_to, ; char* from + ptr null; char* to + }, ; 10350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26322_to, ; char* from + ptr null; char* to + }, ; 10351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26322_to, ; char* from + ptr null; char* to + }, ; 10352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26325_to, ; char* from + ptr null; char* to + }, ; 10353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26325_to, ; char* from + ptr null; char* to + }, ; 10354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26328_to, ; char* from + ptr null; char* to + }, ; 10355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26328_to, ; char* from + ptr null; char* to + }, ; 10356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26331_to, ; char* from + ptr null; char* to + }, ; 10357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26331_to, ; char* from + ptr null; char* to + }, ; 10358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26334_to, ; char* from + ptr null; char* to + }, ; 10359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26334_to, ; char* from + ptr null; char* to + }, ; 10360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26337_to, ; char* from + ptr null; char* to + }, ; 10361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26337_to, ; char* from + ptr null; char* to + }, ; 10362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26349_to, ; char* from + ptr @.TypeMapEntry.26348_from; char* to + }, ; 10363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26346_to, ; char* from + ptr null; char* to + }, ; 10364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26346_to, ; char* from + ptr null; char* to + }, ; 10365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26354_to, ; char* from + ptr @.TypeMapEntry.26353_from; char* to + }, ; 10366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26351_to, ; char* from + ptr null; char* to + }, ; 10367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26351_to, ; char* from + ptr null; char* to + }, ; 10368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26340_to, ; char* from + ptr null; char* to + }, ; 10369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26340_to, ; char* from + ptr null; char* to + }, ; 10370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26359_to, ; char* from + ptr @.TypeMapEntry.26358_from; char* to + }, ; 10371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26356_to, ; char* from + ptr null; char* to + }, ; 10372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26356_to, ; char* from + ptr null; char* to + }, ; 10373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26343_to, ; char* from + ptr null; char* to + }, ; 10374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26343_to, ; char* from + ptr null; char* to + }, ; 10375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26365_to, ; char* from + ptr @.TypeMapEntry.26364_from; char* to + }, ; 10376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26363_to, ; char* from + ptr @.TypeMapEntry.26362_from; char* to + }, ; 10377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26376_to, ; char* from + ptr @.TypeMapEntry.26375_from; char* to + }, ; 10378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26374_to, ; char* from + ptr @.TypeMapEntry.26373_from; char* to + }, ; 10379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26370_to, ; char* from + ptr @.TypeMapEntry.26369_from; char* to + }, ; 10380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26372_to, ; char* from + ptr @.TypeMapEntry.26371_from; char* to + }, ; 10381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26367_to, ; char* from + ptr null; char* to + }, ; 10382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26367_to, ; char* from + ptr null; char* to + }, ; 10383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26378_to, ; char* from + ptr @.TypeMapEntry.26377_from; char* to + }, ; 10384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26380_to, ; char* from + ptr @.TypeMapEntry.26379_from; char* to + }, ; 10385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26382_to, ; char* from + ptr @.TypeMapEntry.26381_from; char* to + }, ; 10386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26384_to, ; char* from + ptr @.TypeMapEntry.26383_from; char* to + }, ; 10387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26260_to, ; char* from + ptr null; char* to + }, ; 10388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26260_to, ; char* from + ptr null; char* to + }, ; 10389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26388_to, ; char* from + ptr @.TypeMapEntry.26387_from; char* to + }, ; 10390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26386_to, ; char* from + ptr @.TypeMapEntry.26385_from; char* to + }, ; 10391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26263_to, ; char* from + ptr null; char* to + }, ; 10392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26263_to, ; char* from + ptr null; char* to + }, ; 10393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26390_to, ; char* from + ptr @.TypeMapEntry.26389_from; char* to + }, ; 10394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26392_to, ; char* from + ptr @.TypeMapEntry.26391_from; char* to + }, ; 10395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26266_to, ; char* from + ptr null; char* to + }, ; 10396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26266_to, ; char* from + ptr null; char* to + }, ; 10397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26268_to, ; char* from + ptr null; char* to + }, ; 10398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26268_to, ; char* from + ptr null; char* to + }, ; 10399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26272_to, ; char* from + ptr null; char* to + }, ; 10400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26272_to, ; char* from + ptr null; char* to + }, ; 10401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26396_to, ; char* from + ptr @.TypeMapEntry.26395_from; char* to + }, ; 10402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26394_to, ; char* from + ptr @.TypeMapEntry.26393_from; char* to + }, ; 10403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26275_to, ; char* from + ptr null; char* to + }, ; 10404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26275_to, ; char* from + ptr null; char* to + }, ; 10405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26400_to, ; char* from + ptr @.TypeMapEntry.26399_from; char* to + }, ; 10406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26398_to, ; char* from + ptr @.TypeMapEntry.26397_from; char* to + }, ; 10407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26278_to, ; char* from + ptr null; char* to + }, ; 10408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26278_to, ; char* from + ptr null; char* to + }, ; 10409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26402_to, ; char* from + ptr @.TypeMapEntry.26401_from; char* to + }, ; 10410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26406_to, ; char* from + ptr @.TypeMapEntry.26405_from; char* to + }, ; 10411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26404_to, ; char* from + ptr @.TypeMapEntry.26403_from; char* to + }, ; 10412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26281_to, ; char* from + ptr null; char* to + }, ; 10413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26281_to, ; char* from + ptr null; char* to + }, ; 10414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26284_to, ; char* from + ptr null; char* to + }, ; 10415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26284_to, ; char* from + ptr null; char* to + }, ; 10416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26408_to, ; char* from + ptr @.TypeMapEntry.26407_from; char* to + }, ; 10417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26287_to, ; char* from + ptr null; char* to + }, ; 10418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26287_to, ; char* from + ptr null; char* to + }, ; 10419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26414_to, ; char* from + ptr @.TypeMapEntry.26413_from; char* to + }, ; 10420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26410_to, ; char* from + ptr @.TypeMapEntry.26409_from; char* to + }, ; 10421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26412_to, ; char* from + ptr @.TypeMapEntry.26411_from; char* to + }, ; 10422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26418_to, ; char* from + ptr @.TypeMapEntry.26417_from; char* to + }, ; 10423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26416_to, ; char* from + ptr @.TypeMapEntry.26415_from; char* to + }, ; 10424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26290_to, ; char* from + ptr null; char* to + }, ; 10425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26290_to, ; char* from + ptr null; char* to + }, ; 10426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26420_to, ; char* from + ptr @.TypeMapEntry.26419_from; char* to + }, ; 10427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26424_to, ; char* from + ptr @.TypeMapEntry.26423_from; char* to + }, ; 10428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26422_to, ; char* from + ptr @.TypeMapEntry.26421_from; char* to + }, ; 10429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26293_to, ; char* from + ptr null; char* to + }, ; 10430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26293_to, ; char* from + ptr null; char* to + }, ; 10431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26428_to, ; char* from + ptr @.TypeMapEntry.26427_from; char* to + }, ; 10432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26426_to, ; char* from + ptr @.TypeMapEntry.26425_from; char* to + }, ; 10433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26296_to, ; char* from + ptr null; char* to + }, ; 10434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26296_to, ; char* from + ptr null; char* to + }, ; 10435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26430_to, ; char* from + ptr @.TypeMapEntry.26429_from; char* to + }, ; 10436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26432_to, ; char* from + ptr @.TypeMapEntry.26431_from; char* to + }, ; 10437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26436_to, ; char* from + ptr @.TypeMapEntry.26435_from; char* to + }, ; 10438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26434_to, ; char* from + ptr @.TypeMapEntry.26433_from; char* to + }, ; 10439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26299_to, ; char* from + ptr null; char* to + }, ; 10440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26299_to, ; char* from + ptr null; char* to + }, ; 10441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26438_to, ; char* from + ptr @.TypeMapEntry.26437_from; char* to + }, ; 10442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26442_to, ; char* from + ptr @.TypeMapEntry.26441_from; char* to + }, ; 10443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26440_to, ; char* from + ptr @.TypeMapEntry.26439_from; char* to + }, ; 10444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26444_to, ; char* from + ptr @.TypeMapEntry.26443_from; char* to + }, ; 10445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26448_to, ; char* from + ptr @.TypeMapEntry.26447_from; char* to + }, ; 10446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26446_to, ; char* from + ptr @.TypeMapEntry.26445_from; char* to + }, ; 10447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26302_to, ; char* from + ptr null; char* to + }, ; 10448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26302_to, ; char* from + ptr null; char* to + }, ; 10449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26452_to, ; char* from + ptr @.TypeMapEntry.26451_from; char* to + }, ; 10450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26450_to, ; char* from + ptr @.TypeMapEntry.26449_from; char* to + }, ; 10451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26305_to, ; char* from + ptr null; char* to + }, ; 10452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26305_to, ; char* from + ptr null; char* to + }, ; 10453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26454_to, ; char* from + ptr @.TypeMapEntry.26453_from; char* to + }, ; 10454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26456_to, ; char* from + ptr @.TypeMapEntry.26455_from; char* to + }, ; 10455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26458_to, ; char* from + ptr @.TypeMapEntry.26457_from; char* to + }, ; 10456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26460_to, ; char* from + ptr @.TypeMapEntry.26459_from; char* to + }, ; 10457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26466_to, ; char* from + ptr @.TypeMapEntry.26465_from; char* to + }, ; 10458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26462_to, ; char* from + ptr @.TypeMapEntry.26461_from; char* to + }, ; 10459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26464_to, ; char* from + ptr @.TypeMapEntry.26463_from; char* to + }, ; 10460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26308_to, ; char* from + ptr null; char* to + }, ; 10461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26308_to, ; char* from + ptr null; char* to + }, ; 10462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26472_to, ; char* from + ptr @.TypeMapEntry.26471_from; char* to + }, ; 10463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26468_to, ; char* from + ptr @.TypeMapEntry.26467_from; char* to + }, ; 10464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26470_to, ; char* from + ptr @.TypeMapEntry.26469_from; char* to + }, ; 10465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26474_to, ; char* from + ptr @.TypeMapEntry.26473_from; char* to + }, ; 10466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26486_to, ; char* from + ptr @.TypeMapEntry.26485_from; char* to + }, ; 10467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26476_to, ; char* from + ptr @.TypeMapEntry.26475_from; char* to + }, ; 10468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26478_to, ; char* from + ptr @.TypeMapEntry.26477_from; char* to + }, ; 10469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26480_to, ; char* from + ptr @.TypeMapEntry.26479_from; char* to + }, ; 10470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26482_to, ; char* from + ptr @.TypeMapEntry.26481_from; char* to + }, ; 10471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26484_to, ; char* from + ptr @.TypeMapEntry.26483_from; char* to + }, ; 10472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26490_to, ; char* from + ptr @.TypeMapEntry.26489_from; char* to + }, ; 10473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26488_to, ; char* from + ptr @.TypeMapEntry.26487_from; char* to + }, ; 10474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26494_to, ; char* from + ptr @.TypeMapEntry.26493_from; char* to + }, ; 10475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26492_to, ; char* from + ptr @.TypeMapEntry.26491_from; char* to + }, ; 10476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26496_to, ; char* from + ptr @.TypeMapEntry.26495_from; char* to + }, ; 10477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26500_to, ; char* from + ptr @.TypeMapEntry.26499_from; char* to + }, ; 10478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26498_to, ; char* from + ptr @.TypeMapEntry.26497_from; char* to + }, ; 10479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26502_to, ; char* from + ptr @.TypeMapEntry.26501_from; char* to + }, ; 10480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26504_to, ; char* from + ptr @.TypeMapEntry.26503_from; char* to + }, ; 10481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26506_to, ; char* from + ptr @.TypeMapEntry.26505_from; char* to + }, ; 10482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26536_to, ; char* from + ptr @.TypeMapEntry.26535_from; char* to + }, ; 10483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26538_to, ; char* from + ptr @.TypeMapEntry.26537_from; char* to + }, ; 10484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26540_to, ; char* from + ptr @.TypeMapEntry.26539_from; char* to + }, ; 10485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26542_to, ; char* from + ptr @.TypeMapEntry.26541_from; char* to + }, ; 10486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26544_to, ; char* from + ptr @.TypeMapEntry.26543_from; char* to + }, ; 10487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26546_to, ; char* from + ptr @.TypeMapEntry.26545_from; char* to + }, ; 10488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26548_to, ; char* from + ptr @.TypeMapEntry.26547_from; char* to + }, ; 10489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26556_to, ; char* from + ptr @.TypeMapEntry.26555_from; char* to + }, ; 10490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26550_to, ; char* from + ptr @.TypeMapEntry.26549_from; char* to + }, ; 10491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26552_to, ; char* from + ptr @.TypeMapEntry.26551_from; char* to + }, ; 10492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26554_to, ; char* from + ptr @.TypeMapEntry.26553_from; char* to + }, ; 10493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26560_to, ; char* from + ptr @.TypeMapEntry.26559_from; char* to + }, ; 10494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26558_to, ; char* from + ptr @.TypeMapEntry.26557_from; char* to + }, ; 10495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26564_to, ; char* from + ptr @.TypeMapEntry.26563_from; char* to + }, ; 10496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26562_to, ; char* from + ptr @.TypeMapEntry.26561_from; char* to + }, ; 10497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26566_to, ; char* from + ptr @.TypeMapEntry.26565_from; char* to + }, ; 10498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26574_to, ; char* from + ptr @.TypeMapEntry.26573_from; char* to + }, ; 10499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26568_to, ; char* from + ptr @.TypeMapEntry.26567_from; char* to + }, ; 10500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26570_to, ; char* from + ptr @.TypeMapEntry.26569_from; char* to + }, ; 10501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26572_to, ; char* from + ptr @.TypeMapEntry.26571_from; char* to + }, ; 10502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26578_to, ; char* from + ptr @.TypeMapEntry.26577_from; char* to + }, ; 10503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26576_to, ; char* from + ptr @.TypeMapEntry.26575_from; char* to + }, ; 10504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26582_to, ; char* from + ptr @.TypeMapEntry.26581_from; char* to + }, ; 10505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26580_to, ; char* from + ptr @.TypeMapEntry.26579_from; char* to + }, ; 10506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26584_to, ; char* from + ptr @.TypeMapEntry.26583_from; char* to + }, ; 10507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26586_to, ; char* from + ptr @.TypeMapEntry.26585_from; char* to + }, ; 10508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26588_to, ; char* from + ptr @.TypeMapEntry.26587_from; char* to + }, ; 10509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26590_to, ; char* from + ptr @.TypeMapEntry.26589_from; char* to + }, ; 10510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26590_to, ; char* from + ptr @.TypeMapEntry.26589_from; char* to + }, ; 10511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26595_to, ; char* from + ptr @.TypeMapEntry.26594_from; char* to + }, ; 10512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26593_to, ; char* from + ptr @.TypeMapEntry.26592_from; char* to + }, ; 10513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26597_to, ; char* from + ptr @.TypeMapEntry.26596_from; char* to + }, ; 10514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26597_to, ; char* from + ptr @.TypeMapEntry.26596_from; char* to + }, ; 10515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26600_to, ; char* from + ptr @.TypeMapEntry.26599_from; char* to + }, ; 10516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26600_to, ; char* from + ptr @.TypeMapEntry.26599_from; char* to + }, ; 10517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26508_to, ; char* from + ptr @.TypeMapEntry.26507_from; char* to + }, ; 10518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26510_to, ; char* from + ptr @.TypeMapEntry.26509_from; char* to + }, ; 10519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26512_to, ; char* from + ptr @.TypeMapEntry.26511_from; char* to + }, ; 10520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26514_to, ; char* from + ptr @.TypeMapEntry.26513_from; char* to + }, ; 10521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26516_to, ; char* from + ptr @.TypeMapEntry.26515_from; char* to + }, ; 10522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26518_to, ; char* from + ptr @.TypeMapEntry.26517_from; char* to + }, ; 10523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26520_to, ; char* from + ptr @.TypeMapEntry.26519_from; char* to + }, ; 10524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26522_to, ; char* from + ptr @.TypeMapEntry.26521_from; char* to + }, ; 10525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26524_to, ; char* from + ptr @.TypeMapEntry.26523_from; char* to + }, ; 10526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26526_to, ; char* from + ptr @.TypeMapEntry.26525_from; char* to + }, ; 10527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26528_to, ; char* from + ptr @.TypeMapEntry.26527_from; char* to + }, ; 10528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26530_to, ; char* from + ptr @.TypeMapEntry.26529_from; char* to + }, ; 10529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26532_to, ; char* from + ptr @.TypeMapEntry.26531_from; char* to + }, ; 10530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26534_to, ; char* from + ptr @.TypeMapEntry.26533_from; char* to + }, ; 10531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26603_to, ; char* from + ptr @.TypeMapEntry.26602_from; char* to + }, ; 10532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26605_to, ; char* from + ptr @.TypeMapEntry.26604_from; char* to + }, ; 10533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26611_to, ; char* from + ptr @.TypeMapEntry.26610_from; char* to + }, ; 10534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26607_to, ; char* from + ptr @.TypeMapEntry.26606_from; char* to + }, ; 10535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26609_to, ; char* from + ptr @.TypeMapEntry.26608_from; char* to + }, ; 10536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26613_to, ; char* from + ptr @.TypeMapEntry.26612_from; char* to + }, ; 10537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26615_to, ; char* from + ptr @.TypeMapEntry.26614_from; char* to + }, ; 10538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26621_to, ; char* from + ptr @.TypeMapEntry.26620_from; char* to + }, ; 10539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26617_to, ; char* from + ptr @.TypeMapEntry.26616_from; char* to + }, ; 10540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26619_to, ; char* from + ptr @.TypeMapEntry.26618_from; char* to + }, ; 10541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26629_to, ; char* from + ptr @.TypeMapEntry.26628_from; char* to + }, ; 10542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26631_to, ; char* from + ptr @.TypeMapEntry.26630_from; char* to + }, ; 10543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26633_to, ; char* from + ptr @.TypeMapEntry.26632_from; char* to + }, ; 10544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26635_to, ; char* from + ptr @.TypeMapEntry.26634_from; char* to + }, ; 10545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26635_to, ; char* from + ptr @.TypeMapEntry.26634_from; char* to + }, ; 10546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26638_to, ; char* from + ptr @.TypeMapEntry.26637_from; char* to + }, ; 10547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26640_to, ; char* from + ptr @.TypeMapEntry.26639_from; char* to + }, ; 10548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26640_to, ; char* from + ptr @.TypeMapEntry.26639_from; char* to + }, ; 10549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26643_to, ; char* from + ptr @.TypeMapEntry.26642_from; char* to + }, ; 10550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26623_to, ; char* from + ptr @.TypeMapEntry.26622_from; char* to + }, ; 10551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26625_to, ; char* from + ptr @.TypeMapEntry.26624_from; char* to + }, ; 10552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26627_to, ; char* from + ptr @.TypeMapEntry.26626_from; char* to + }, ; 10553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26645_to, ; char* from + ptr @.TypeMapEntry.26644_from; char* to + }, ; 10554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26647_to, ; char* from + ptr @.TypeMapEntry.26646_from; char* to + }, ; 10555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26649_to, ; char* from + ptr @.TypeMapEntry.26648_from; char* to + }, ; 10556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26651_to, ; char* from + ptr @.TypeMapEntry.26650_from; char* to + }, ; 10557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26653_to, ; char* from + ptr @.TypeMapEntry.26652_from; char* to + }, ; 10558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26655_to, ; char* from + ptr @.TypeMapEntry.26654_from; char* to + }, ; 10559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26657_to, ; char* from + ptr @.TypeMapEntry.26656_from; char* to + }, ; 10560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26659_to, ; char* from + ptr @.TypeMapEntry.26658_from; char* to + }, ; 10561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26661_to, ; char* from + ptr @.TypeMapEntry.26660_from; char* to + }, ; 10562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26663_to, ; char* from + ptr @.TypeMapEntry.26662_from; char* to + }, ; 10563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26665_to, ; char* from + ptr @.TypeMapEntry.26664_from; char* to + }, ; 10564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26667_to, ; char* from + ptr @.TypeMapEntry.26666_from; char* to + }, ; 10565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26669_to, ; char* from + ptr @.TypeMapEntry.26668_from; char* to + }, ; 10566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26671_to, ; char* from + ptr @.TypeMapEntry.26670_from; char* to + }, ; 10567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26675_to, ; char* from + ptr @.TypeMapEntry.26674_from; char* to + }, ; 10568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26673_to, ; char* from + ptr @.TypeMapEntry.26672_from; char* to + }, ; 10569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26679_to, ; char* from + ptr @.TypeMapEntry.26678_from; char* to + }, ; 10570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26677_to, ; char* from + ptr @.TypeMapEntry.26676_from; char* to + }, ; 10571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26681_to, ; char* from + ptr @.TypeMapEntry.26680_from; char* to + }, ; 10572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26689_to, ; char* from + ptr @.TypeMapEntry.26688_from; char* to + }, ; 10573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26683_to, ; char* from + ptr @.TypeMapEntry.26682_from; char* to + }, ; 10574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26685_to, ; char* from + ptr @.TypeMapEntry.26684_from; char* to + }, ; 10575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26687_to, ; char* from + ptr @.TypeMapEntry.26686_from; char* to + }, ; 10576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26691_to, ; char* from + ptr @.TypeMapEntry.26690_from; char* to + }, ; 10577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26693_to, ; char* from + ptr @.TypeMapEntry.26692_from; char* to + }, ; 10578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26717_to, ; char* from + ptr null; char* to + }, ; 10579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26717_to, ; char* from + ptr null; char* to + }, ; 10580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26695_to, ; char* from + ptr @.TypeMapEntry.26694_from; char* to + }, ; 10581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26697_to, ; char* from + ptr @.TypeMapEntry.26696_from; char* to + }, ; 10582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26699_to, ; char* from + ptr @.TypeMapEntry.26698_from; char* to + }, ; 10583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26701_to, ; char* from + ptr @.TypeMapEntry.26700_from; char* to + }, ; 10584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26703_to, ; char* from + ptr @.TypeMapEntry.26702_from; char* to + }, ; 10585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26705_to, ; char* from + ptr @.TypeMapEntry.26704_from; char* to + }, ; 10586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26707_to, ; char* from + ptr @.TypeMapEntry.26706_from; char* to + }, ; 10587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26711_to, ; char* from + ptr @.TypeMapEntry.26710_from; char* to + }, ; 10588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26709_to, ; char* from + ptr @.TypeMapEntry.26708_from; char* to + }, ; 10589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26713_to, ; char* from + ptr @.TypeMapEntry.26712_from; char* to + }, ; 10590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26715_to, ; char* from + ptr @.TypeMapEntry.26714_from; char* to + }, ; 10591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26720_to, ; char* from + ptr null; char* to + }, ; 10592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26720_to, ; char* from + ptr null; char* to + }, ; 10593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26729_to, ; char* from + ptr @.TypeMapEntry.26728_from; char* to + }, ; 10594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26731_to, ; char* from + ptr @.TypeMapEntry.26730_from; char* to + }, ; 10595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26740_to, ; char* from + ptr @.TypeMapEntry.26739_from; char* to + }, ; 10596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26742_to, ; char* from + ptr @.TypeMapEntry.26741_from; char* to + }, ; 10597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26744_to, ; char* from + ptr @.TypeMapEntry.26743_from; char* to + }, ; 10598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26746_to, ; char* from + ptr @.TypeMapEntry.26745_from; char* to + }, ; 10599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26748_to, ; char* from + ptr @.TypeMapEntry.26747_from; char* to + }, ; 10600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26750_to, ; char* from + ptr @.TypeMapEntry.26749_from; char* to + }, ; 10601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26752_to, ; char* from + ptr @.TypeMapEntry.26751_from; char* to + }, ; 10602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26754_to, ; char* from + ptr @.TypeMapEntry.26753_from; char* to + }, ; 10603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26756_to, ; char* from + ptr @.TypeMapEntry.26755_from; char* to + }, ; 10604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26758_to, ; char* from + ptr @.TypeMapEntry.26757_from; char* to + }, ; 10605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26723_to, ; char* from + ptr null; char* to + }, ; 10606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26723_to, ; char* from + ptr null; char* to + }, ; 10607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26726_to, ; char* from + ptr null; char* to + }, ; 10608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26726_to, ; char* from + ptr null; char* to + }, ; 10609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26760_to, ; char* from + ptr @.TypeMapEntry.26759_from; char* to + }, ; 10610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26762_to, ; char* from + ptr @.TypeMapEntry.26761_from; char* to + }, ; 10611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26764_to, ; char* from + ptr @.TypeMapEntry.26763_from; char* to + }, ; 10612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26766_to, ; char* from + ptr @.TypeMapEntry.26765_from; char* to + }, ; 10613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26733_to, ; char* from + ptr @.TypeMapEntry.26732_from; char* to + }, ; 10614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26738_to, ; char* from + ptr @.TypeMapEntry.26737_from; char* to + }, ; 10615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26735_to, ; char* from + ptr null; char* to + }, ; 10616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26735_to, ; char* from + ptr null; char* to + }, ; 10617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26781_to, ; char* from + ptr @.TypeMapEntry.26780_from; char* to + }, ; 10618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26785_to, ; char* from + ptr @.TypeMapEntry.26784_from; char* to + }, ; 10619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26783_to, ; char* from + ptr @.TypeMapEntry.26782_from; char* to + }, ; 10620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26787_to, ; char* from + ptr @.TypeMapEntry.26786_from; char* to + }, ; 10621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26774_to, ; char* from + ptr null; char* to + }, ; 10622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26774_to, ; char* from + ptr null; char* to + }, ; 10623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26777_to, ; char* from + ptr @.TypeMapEntry.26776_from; char* to + }, ; 10624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26779_to, ; char* from + ptr @.TypeMapEntry.26778_from; char* to + }, ; 10625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26789_to, ; char* from + ptr @.TypeMapEntry.26788_from; char* to + }, ; 10626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26791_to, ; char* from + ptr @.TypeMapEntry.26790_from; char* to + }, ; 10627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26793_to, ; char* from + ptr @.TypeMapEntry.26792_from; char* to + }, ; 10628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26809_to, ; char* from + ptr null; char* to + }, ; 10629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26809_to, ; char* from + ptr null; char* to + }, ; 10630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26812_to, ; char* from + ptr null; char* to + }, ; 10631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26812_to, ; char* from + ptr null; char* to + }, ; 10632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26815_to, ; char* from + ptr null; char* to + }, ; 10633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26815_to, ; char* from + ptr null; char* to + }, ; 10634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26818_to, ; char* from + ptr null; char* to + }, ; 10635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26818_to, ; char* from + ptr null; char* to + }, ; 10636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26821_to, ; char* from + ptr null; char* to + }, ; 10637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26821_to, ; char* from + ptr null; char* to + }, ; 10638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26824_to, ; char* from + ptr null; char* to + }, ; 10639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26824_to, ; char* from + ptr null; char* to + }, ; 10640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26827_to, ; char* from + ptr null; char* to + }, ; 10641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26827_to, ; char* from + ptr null; char* to + }, ; 10642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26830_to, ; char* from + ptr null; char* to + }, ; 10643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26830_to, ; char* from + ptr null; char* to + }, ; 10644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26833_to, ; char* from + ptr null; char* to + }, ; 10645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26833_to, ; char* from + ptr null; char* to + }, ; 10646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26836_to, ; char* from + ptr null; char* to + }, ; 10647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26836_to, ; char* from + ptr null; char* to + }, ; 10648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26839_to, ; char* from + ptr null; char* to + }, ; 10649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26839_to, ; char* from + ptr null; char* to + }, ; 10650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26842_to, ; char* from + ptr null; char* to + }, ; 10651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26842_to, ; char* from + ptr null; char* to + }, ; 10652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26845_to, ; char* from + ptr null; char* to + }, ; 10653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26845_to, ; char* from + ptr null; char* to + }, ; 10654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26848_to, ; char* from + ptr null; char* to + }, ; 10655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26848_to, ; char* from + ptr null; char* to + }, ; 10656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26851_to, ; char* from + ptr null; char* to + }, ; 10657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26851_to, ; char* from + ptr null; char* to + }, ; 10658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26881_to, ; char* from + ptr @.TypeMapEntry.26880_from; char* to + }, ; 10659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26854_to, ; char* from + ptr null; char* to + }, ; 10660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26854_to, ; char* from + ptr null; char* to + }, ; 10661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26857_to, ; char* from + ptr null; char* to + }, ; 10662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26857_to, ; char* from + ptr null; char* to + }, ; 10663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26860_to, ; char* from + ptr null; char* to + }, ; 10664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26860_to, ; char* from + ptr null; char* to + }, ; 10665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26863_to, ; char* from + ptr null; char* to + }, ; 10666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26863_to, ; char* from + ptr null; char* to + }, ; 10667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26866_to, ; char* from + ptr null; char* to + }, ; 10668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26866_to, ; char* from + ptr null; char* to + }, ; 10669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26869_to, ; char* from + ptr null; char* to + }, ; 10670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26869_to, ; char* from + ptr null; char* to + }, ; 10671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26872_to, ; char* from + ptr null; char* to + }, ; 10672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26872_to, ; char* from + ptr null; char* to + }, ; 10673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26875_to, ; char* from + ptr null; char* to + }, ; 10674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26875_to, ; char* from + ptr null; char* to + }, ; 10675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26878_to, ; char* from + ptr null; char* to + }, ; 10676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26878_to, ; char* from + ptr null; char* to + }, ; 10677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26797_to, ; char* from + ptr null; char* to + }, ; 10678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26797_to, ; char* from + ptr null; char* to + }, ; 10679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26800_to, ; char* from + ptr null; char* to + }, ; 10680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26800_to, ; char* from + ptr null; char* to + }, ; 10681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26803_to, ; char* from + ptr null; char* to + }, ; 10682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26803_to, ; char* from + ptr null; char* to + }, ; 10683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26806_to, ; char* from + ptr null; char* to + }, ; 10684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26806_to, ; char* from + ptr null; char* to + }, ; 10685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17508_to, ; char* from + ptr null; char* to + }, ; 10686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17508_to, ; char* from + ptr null; char* to + }, ; 10687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17497_to, ; char* from + ptr @.TypeMapEntry.17496_from; char* to + }, ; 10688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17499_to, ; char* from + ptr @.TypeMapEntry.17498_from; char* to + }, ; 10689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17499_to, ; char* from + ptr @.TypeMapEntry.17498_from; char* to + }, ; 10690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17511_to, ; char* from + ptr null; char* to + }, ; 10691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17511_to, ; char* from + ptr null; char* to + }, ; 10692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17502_to, ; char* from + ptr @.TypeMapEntry.17501_from; char* to + }, ; 10693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17504_to, ; char* from + ptr @.TypeMapEntry.17503_from; char* to + }, ; 10694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17506_to, ; char* from + ptr @.TypeMapEntry.17505_from; char* to + }, ; 10695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17514_to, ; char* from + ptr null; char* to + }, ; 10696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17514_to, ; char* from + ptr null; char* to + }, ; 10697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17538_to, ; char* from + ptr @.TypeMapEntry.17537_from; char* to + }, ; 10698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17517_to, ; char* from + ptr null; char* to + }, ; 10699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17517_to, ; char* from + ptr null; char* to + }, ; 10700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17520_to, ; char* from + ptr null; char* to + }, ; 10701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17520_to, ; char* from + ptr null; char* to + }, ; 10702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17540_to, ; char* from + ptr @.TypeMapEntry.17539_from; char* to + }, ; 10703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17540_to, ; char* from + ptr @.TypeMapEntry.17539_from; char* to + }, ; 10704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17543_to, ; char* from + ptr @.TypeMapEntry.17542_from; char* to + }, ; 10705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17545_to, ; char* from + ptr @.TypeMapEntry.17544_from; char* to + }, ; 10706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17547_to, ; char* from + ptr @.TypeMapEntry.17546_from; char* to + }, ; 10707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17549_to, ; char* from + ptr @.TypeMapEntry.17548_from; char* to + }, ; 10708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17551_to, ; char* from + ptr @.TypeMapEntry.17550_from; char* to + }, ; 10709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17553_to, ; char* from + ptr @.TypeMapEntry.17552_from; char* to + }, ; 10710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17523_to, ; char* from + ptr null; char* to + }, ; 10711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17523_to, ; char* from + ptr null; char* to + }, ; 10712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17526_to, ; char* from + ptr null; char* to + }, ; 10713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17526_to, ; char* from + ptr null; char* to + }, ; 10714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17555_to, ; char* from + ptr @.TypeMapEntry.17554_from; char* to + }, ; 10715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17557_to, ; char* from + ptr @.TypeMapEntry.17556_from; char* to + }, ; 10716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17559_to, ; char* from + ptr @.TypeMapEntry.17558_from; char* to + }, ; 10717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17559_to, ; char* from + ptr @.TypeMapEntry.17558_from; char* to + }, ; 10718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17529_to, ; char* from + ptr @.TypeMapEntry.17563_from; char* to + }, ; 10719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17529_to, ; char* from + ptr @.TypeMapEntry.17563_from; char* to + }, ; 10720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17529_to, ; char* from + ptr @.TypeMapEntry.17563_from; char* to + }, ; 10721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17529_to, ; char* from + ptr @.TypeMapEntry.17563_from; char* to + }, ; 10722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17566_to, ; char* from + ptr @.TypeMapEntry.17565_from; char* to + }, ; 10723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17576_to, ; char* from + ptr @.TypeMapEntry.17575_from; char* to + }, ; 10724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17578_to, ; char* from + ptr @.TypeMapEntry.17577_from; char* to + }, ; 10725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17578_to, ; char* from + ptr @.TypeMapEntry.17577_from; char* to + }, ; 10726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17532_to, ; char* from + ptr null; char* to + }, ; 10727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17532_to, ; char* from + ptr null; char* to + }, ; 10728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17581_to, ; char* from + ptr @.TypeMapEntry.17580_from; char* to + }, ; 10729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17581_to, ; char* from + ptr @.TypeMapEntry.17580_from; char* to + }, ; 10730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17535_to, ; char* from + ptr null; char* to + }, ; 10731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17535_to, ; char* from + ptr null; char* to + }, ; 10732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17482_to, ; char* from + ptr null; char* to + }, ; 10733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17482_to, ; char* from + ptr null; char* to + }, ; 10734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17485_to, ; char* from + ptr null; char* to + }, ; 10735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17485_to, ; char* from + ptr null; char* to + }, ; 10736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17488_to, ; char* from + ptr null; char* to + }, ; 10737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17488_to, ; char* from + ptr null; char* to + }, ; 10738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17491_to, ; char* from + ptr null; char* to + }, ; 10739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17491_to, ; char* from + ptr null; char* to + }, ; 10740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17494_to, ; char* from + ptr null; char* to + }, ; 10741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17494_to, ; char* from + ptr null; char* to + }, ; 10742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17562_to, ; char* from + ptr @.TypeMapEntry.17561_from; char* to + }, ; 10743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17568_to, ; char* from + ptr @.TypeMapEntry.17567_from; char* to + }, ; 10744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17570_to, ; char* from + ptr @.TypeMapEntry.17569_from; char* to + }, ; 10745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17572_to, ; char* from + ptr @.TypeMapEntry.17571_from; char* to + }, ; 10746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17574_to, ; char* from + ptr @.TypeMapEntry.17573_from; char* to + }, ; 10747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22991_to, ; char* from + ptr @.TypeMapEntry.22990_from; char* to + }, ; 10748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22991_to, ; char* from + ptr @.TypeMapEntry.22990_from; char* to + }, ; 10749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22994_to, ; char* from + ptr null; char* to + }, ; 10750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22994_to, ; char* from + ptr null; char* to + }, ; 10751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23012_to, ; char* from + ptr @.TypeMapEntry.23011_from; char* to + }, ; 10752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23110_to, ; char* from + ptr @.TypeMapEntry.23109_from; char* to + }, ; 10753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23112_to, ; char* from + ptr @.TypeMapEntry.23111_from; char* to + }, ; 10754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23112_to, ; char* from + ptr @.TypeMapEntry.23111_from; char* to + }, ; 10755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23115_to, ; char* from + ptr @.TypeMapEntry.23114_from; char* to + }, ; 10756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23117_to, ; char* from + ptr @.TypeMapEntry.23116_from; char* to + }, ; 10757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23119_to, ; char* from + ptr @.TypeMapEntry.23118_from; char* to + }, ; 10758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23121_to, ; char* from + ptr @.TypeMapEntry.23120_from; char* to + }, ; 10759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23123_to, ; char* from + ptr @.TypeMapEntry.23122_from; char* to + }, ; 10760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23125_to, ; char* from + ptr @.TypeMapEntry.23124_from; char* to + }, ; 10761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23127_to, ; char* from + ptr @.TypeMapEntry.23126_from; char* to + }, ; 10762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22997_to, ; char* from + ptr null; char* to + }, ; 10763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22997_to, ; char* from + ptr null; char* to + }, ; 10764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23129_to, ; char* from + ptr @.TypeMapEntry.23128_from; char* to + }, ; 10765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23129_to, ; char* from + ptr @.TypeMapEntry.23128_from; char* to + }, ; 10766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22725_to, ; char* from + ptr @.TypeMapEntry.22724_from; char* to + }, ; 10767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22947_to, ; char* from + ptr @.TypeMapEntry.22946_from; char* to + }, ; 10768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22949_to, ; char* from + ptr @.TypeMapEntry.22948_from; char* to + }, ; 10769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22951_to, ; char* from + ptr @.TypeMapEntry.22950_from; char* to + }, ; 10770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22855_to, ; char* from + ptr @.TypeMapEntry.22854_from; char* to + }, ; 10771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22857_to, ; char* from + ptr @.TypeMapEntry.22856_from; char* to + }, ; 10772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22859_to, ; char* from + ptr @.TypeMapEntry.22858_from; char* to + }, ; 10773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22861_to, ; char* from + ptr @.TypeMapEntry.22860_from; char* to + }, ; 10774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22863_to, ; char* from + ptr @.TypeMapEntry.22862_from; char* to + }, ; 10775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22865_to, ; char* from + ptr @.TypeMapEntry.22864_from; char* to + }, ; 10776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22871_to, ; char* from + ptr @.TypeMapEntry.22870_from; char* to + }, ; 10777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22867_to, ; char* from + ptr @.TypeMapEntry.22866_from; char* to + }, ; 10778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22869_to, ; char* from + ptr @.TypeMapEntry.22868_from; char* to + }, ; 10779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22873_to, ; char* from + ptr @.TypeMapEntry.22872_from; char* to + }, ; 10780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22877_to, ; char* from + ptr @.TypeMapEntry.22876_from; char* to + }, ; 10781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22875_to, ; char* from + ptr @.TypeMapEntry.22874_from; char* to + }, ; 10782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22879_to, ; char* from + ptr @.TypeMapEntry.22878_from; char* to + }, ; 10783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22881_to, ; char* from + ptr @.TypeMapEntry.22880_from; char* to + }, ; 10784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22883_to, ; char* from + ptr @.TypeMapEntry.22882_from; char* to + }, ; 10785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22885_to, ; char* from + ptr @.TypeMapEntry.22884_from; char* to + }, ; 10786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22887_to, ; char* from + ptr @.TypeMapEntry.22886_from; char* to + }, ; 10787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22891_to, ; char* from + ptr @.TypeMapEntry.22890_from; char* to + }, ; 10788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22897_to, ; char* from + ptr @.TypeMapEntry.22896_from; char* to + }, ; 10789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22893_to, ; char* from + ptr @.TypeMapEntry.22892_from; char* to + }, ; 10790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22895_to, ; char* from + ptr @.TypeMapEntry.22894_from; char* to + }, ; 10791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22889_to, ; char* from + ptr @.TypeMapEntry.22888_from; char* to + }, ; 10792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22901_to, ; char* from + ptr @.TypeMapEntry.22900_from; char* to + }, ; 10793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22899_to, ; char* from + ptr @.TypeMapEntry.22898_from; char* to + }, ; 10794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22905_to, ; char* from + ptr @.TypeMapEntry.22904_from; char* to + }, ; 10795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22903_to, ; char* from + ptr @.TypeMapEntry.22902_from; char* to + }, ; 10796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22853_to, ; char* from + ptr @.TypeMapEntry.22852_from; char* to + }, ; 10797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22907_to, ; char* from + ptr @.TypeMapEntry.22906_from; char* to + }, ; 10798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22911_to, ; char* from + ptr @.TypeMapEntry.22910_from; char* to + }, ; 10799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22909_to, ; char* from + ptr @.TypeMapEntry.22908_from; char* to + }, ; 10800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22913_to, ; char* from + ptr @.TypeMapEntry.22912_from; char* to + }, ; 10801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22915_to, ; char* from + ptr @.TypeMapEntry.22914_from; char* to + }, ; 10802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22917_to, ; char* from + ptr @.TypeMapEntry.22916_from; char* to + }, ; 10803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22919_to, ; char* from + ptr @.TypeMapEntry.22918_from; char* to + }, ; 10804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22921_to, ; char* from + ptr @.TypeMapEntry.22920_from; char* to + }, ; 10805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22923_to, ; char* from + ptr @.TypeMapEntry.22922_from; char* to + }, ; 10806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22925_to, ; char* from + ptr @.TypeMapEntry.22924_from; char* to + }, ; 10807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22927_to, ; char* from + ptr @.TypeMapEntry.22926_from; char* to + }, ; 10808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22933_to, ; char* from + ptr @.TypeMapEntry.22932_from; char* to + }, ; 10809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22931_to, ; char* from + ptr @.TypeMapEntry.22930_from; char* to + }, ; 10810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22929_to, ; char* from + ptr @.TypeMapEntry.22928_from; char* to + }, ; 10811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22935_to, ; char* from + ptr null; char* to + }, ; 10812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22937_to, ; char* from + ptr @.TypeMapEntry.22936_from; char* to + }, ; 10813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22939_to, ; char* from + ptr @.TypeMapEntry.22938_from; char* to + }, ; 10814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22941_to, ; char* from + ptr @.TypeMapEntry.22940_from; char* to + }, ; 10815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11346_to, ; char* from + ptr @.TypeMapEntry.11345_from; char* to + }, ; 10816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11350_to, ; char* from + ptr @.TypeMapEntry.11349_from; char* to + }, ; 10817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11799_to, ; char* from + ptr @.TypeMapEntry.11798_from; char* to + }, ; 10818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11818_to, ; char* from + ptr @.TypeMapEntry.11817_from; char* to + }, ; 10819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22973_to, ; char* from + ptr @.TypeMapEntry.22972_from; char* to + }, ; 10820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23020_to, ; char* from + ptr @.TypeMapEntry.23019_from; char* to + }, ; 10821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23022_to, ; char* from + ptr @.TypeMapEntry.23021_from; char* to + }, ; 10822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23024_to, ; char* from + ptr @.TypeMapEntry.23023_from; char* to + }, ; 10823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23026_to, ; char* from + ptr @.TypeMapEntry.23025_from; char* to + }, ; 10824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23028_to, ; char* from + ptr @.TypeMapEntry.23027_from; char* to + }, ; 10825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23030_to, ; char* from + ptr @.TypeMapEntry.23029_from; char* to + }, ; 10826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23032_to, ; char* from + ptr @.TypeMapEntry.23031_from; char* to + }, ; 10827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23034_to, ; char* from + ptr @.TypeMapEntry.23033_from; char* to + }, ; 10828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23036_to, ; char* from + ptr @.TypeMapEntry.23035_from; char* to + }, ; 10829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23038_to, ; char* from + ptr @.TypeMapEntry.23037_from; char* to + }, ; 10830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23040_to, ; char* from + ptr @.TypeMapEntry.23039_from; char* to + }, ; 10831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23042_to, ; char* from + ptr @.TypeMapEntry.23041_from; char* to + }, ; 10832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23044_to, ; char* from + ptr @.TypeMapEntry.23043_from; char* to + }, ; 10833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23046_to, ; char* from + ptr @.TypeMapEntry.23045_from; char* to + }, ; 10834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23048_to, ; char* from + ptr @.TypeMapEntry.23047_from; char* to + }, ; 10835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23052_to, ; char* from + ptr @.TypeMapEntry.23051_from; char* to + }, ; 10836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23050_to, ; char* from + ptr @.TypeMapEntry.23049_from; char* to + }, ; 10837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23058_to, ; char* from + ptr @.TypeMapEntry.23057_from; char* to + }, ; 10838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23056_to, ; char* from + ptr @.TypeMapEntry.23055_from; char* to + }, ; 10839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23060_to, ; char* from + ptr @.TypeMapEntry.23059_from; char* to + }, ; 10840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23062_to, ; char* from + ptr @.TypeMapEntry.23061_from; char* to + }, ; 10841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23064_to, ; char* from + ptr @.TypeMapEntry.23063_from; char* to + }, ; 10842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23066_to, ; char* from + ptr @.TypeMapEntry.23065_from; char* to + }, ; 10843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23068_to, ; char* from + ptr @.TypeMapEntry.23067_from; char* to + }, ; 10844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23070_to, ; char* from + ptr @.TypeMapEntry.23069_from; char* to + }, ; 10845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23072_to, ; char* from + ptr @.TypeMapEntry.23071_from; char* to + }, ; 10846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23074_to, ; char* from + ptr @.TypeMapEntry.23073_from; char* to + }, ; 10847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23076_to, ; char* from + ptr @.TypeMapEntry.23075_from; char* to + }, ; 10848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23078_to, ; char* from + ptr @.TypeMapEntry.23077_from; char* to + }, ; 10849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23080_to, ; char* from + ptr @.TypeMapEntry.23079_from; char* to + }, ; 10850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23082_to, ; char* from + ptr @.TypeMapEntry.23081_from; char* to + }, ; 10851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23084_to, ; char* from + ptr @.TypeMapEntry.23083_from; char* to + }, ; 10852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23086_to, ; char* from + ptr @.TypeMapEntry.23085_from; char* to + }, ; 10853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23088_to, ; char* from + ptr @.TypeMapEntry.23087_from; char* to + }, ; 10854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23090_to, ; char* from + ptr @.TypeMapEntry.23089_from; char* to + }, ; 10855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23092_to, ; char* from + ptr @.TypeMapEntry.23091_from; char* to + }, ; 10856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23094_to, ; char* from + ptr @.TypeMapEntry.23093_from; char* to + }, ; 10857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23096_to, ; char* from + ptr @.TypeMapEntry.23095_from; char* to + }, ; 10858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23098_to, ; char* from + ptr @.TypeMapEntry.23097_from; char* to + }, ; 10859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23100_to, ; char* from + ptr @.TypeMapEntry.23099_from; char* to + }, ; 10860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23102_to, ; char* from + ptr @.TypeMapEntry.23101_from; char* to + }, ; 10861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23104_to, ; char* from + ptr @.TypeMapEntry.23103_from; char* to + }, ; 10862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23106_to, ; char* from + ptr @.TypeMapEntry.23105_from; char* to + }, ; 10863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23108_to, ; char* from + ptr @.TypeMapEntry.23107_from; char* to + }, ; 10864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22781_to, ; char* from + ptr @.TypeMapEntry.22780_from; char* to + }, ; 10865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22783_to, ; char* from + ptr null; char* to + }, ; 10866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22785_to, ; char* from + ptr @.TypeMapEntry.22784_from; char* to + }, ; 10867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22787_to, ; char* from + ptr @.TypeMapEntry.22786_from; char* to + }, ; 10868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22789_to, ; char* from + ptr @.TypeMapEntry.22788_from; char* to + }, ; 10869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22791_to, ; char* from + ptr @.TypeMapEntry.22790_from; char* to + }, ; 10870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22793_to, ; char* from + ptr @.TypeMapEntry.22792_from; char* to + }, ; 10871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22795_to, ; char* from + ptr @.TypeMapEntry.22794_from; char* to + }, ; 10872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22797_to, ; char* from + ptr @.TypeMapEntry.22796_from; char* to + }, ; 10873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22799_to, ; char* from + ptr @.TypeMapEntry.22798_from; char* to + }, ; 10874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22801_to, ; char* from + ptr null; char* to + }, ; 10875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22803_to, ; char* from + ptr @.TypeMapEntry.22802_from; char* to + }, ; 10876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22805_to, ; char* from + ptr null; char* to + }, ; 10877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22809_to, ; char* from + ptr @.TypeMapEntry.22808_from; char* to + }, ; 10878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22807_to, ; char* from + ptr @.TypeMapEntry.22806_from; char* to + }, ; 10879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22811_to, ; char* from + ptr null; char* to + }, ; 10880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22815_to, ; char* from + ptr @.TypeMapEntry.22814_from; char* to + }, ; 10881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22813_to, ; char* from + ptr @.TypeMapEntry.22812_from; char* to + }, ; 10882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22817_to, ; char* from + ptr @.TypeMapEntry.22816_from; char* to + }, ; 10883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22819_to, ; char* from + ptr null; char* to + }, ; 10884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22821_to, ; char* from + ptr null; char* to + }, ; 10885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22823_to, ; char* from + ptr @.TypeMapEntry.22822_from; char* to + }, ; 10886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22825_to, ; char* from + ptr null; char* to + }, ; 10887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22827_to, ; char* from + ptr @.TypeMapEntry.22826_from; char* to + }, ; 10888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22829_to, ; char* from + ptr @.TypeMapEntry.22828_from; char* to + }, ; 10889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22831_to, ; char* from + ptr @.TypeMapEntry.22830_from; char* to + }, ; 10890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22833_to, ; char* from + ptr @.TypeMapEntry.22832_from; char* to + }, ; 10891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22835_to, ; char* from + ptr @.TypeMapEntry.22834_from; char* to + }, ; 10892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22837_to, ; char* from + ptr @.TypeMapEntry.22836_from; char* to + }, ; 10893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22839_to, ; char* from + ptr @.TypeMapEntry.22838_from; char* to + }, ; 10894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22841_to, ; char* from + ptr @.TypeMapEntry.22840_from; char* to + }, ; 10895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22843_to, ; char* from + ptr null; char* to + }, ; 10896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22845_to, ; char* from + ptr @.TypeMapEntry.22844_from; char* to + }, ; 10897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22847_to, ; char* from + ptr @.TypeMapEntry.22846_from; char* to + }, ; 10898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22729_to, ; char* from + ptr @.TypeMapEntry.22728_from; char* to + }, ; 10899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22731_to, ; char* from + ptr @.TypeMapEntry.22730_from; char* to + }, ; 10900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23000_to, ; char* from + ptr @.TypeMapEntry.22999_from; char* to + }, ; 10901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23002_to, ; char* from + ptr null; char* to + }, ; 10902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23004_to, ; char* from + ptr @.TypeMapEntry.23003_from; char* to + }, ; 10903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23006_to, ; char* from + ptr @.TypeMapEntry.23005_from; char* to + }, ; 10904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23010_to, ; char* from + ptr @.TypeMapEntry.23009_from; char* to + }, ; 10905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23008_to, ; char* from + ptr @.TypeMapEntry.23007_from; char* to + }, ; 10906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23014_to, ; char* from + ptr @.TypeMapEntry.23013_from; char* to + }, ; 10907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22849_to, ; char* from + ptr @.TypeMapEntry.22848_from; char* to + }, ; 10908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22851_to, ; char* from + ptr @.TypeMapEntry.22850_from; char* to + }, ; 10909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22721_to, ; char* from + ptr @.TypeMapEntry.22720_from; char* to + }, ; 10910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15148_to, ; char* from + ptr @.TypeMapEntry.15147_from; char* to + }, ; 10911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15160_to, ; char* from + ptr @.TypeMapEntry.15159_from; char* to + }, ; 10912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15198_to, ; char* from + ptr @.TypeMapEntry.15197_from; char* to + }, ; 10913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15196_to, ; char* from + ptr @.TypeMapEntry.15195_from; char* to + }, ; 10914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22969_to, ; char* from + ptr @.TypeMapEntry.22968_from; char* to + }, ; 10915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22971_to, ; char* from + ptr @.TypeMapEntry.22970_from; char* to + }, ; 10916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22975_to, ; char* from + ptr @.TypeMapEntry.22974_from; char* to + }, ; 10917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22723_to, ; char* from + ptr @.TypeMapEntry.22722_from; char* to + }, ; 10918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22727_to, ; char* from + ptr @.TypeMapEntry.22726_from; char* to + }, ; 10919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27259_to, ; char* from + ptr @.TypeMapEntry.27258_from; char* to + }, ; 10920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27261_to, ; char* from + ptr @.TypeMapEntry.27260_from; char* to + }, ; 10921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22711_to, ; char* from + ptr @.TypeMapEntry.22710_from; char* to + }, ; 10922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22713_to, ; char* from + ptr @.TypeMapEntry.22712_from; char* to + }, ; 10923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22715_to, ; char* from + ptr @.TypeMapEntry.22714_from; char* to + }, ; 10924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22719_to, ; char* from + ptr @.TypeMapEntry.22718_from; char* to + }, ; 10925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22717_to, ; char* from + ptr @.TypeMapEntry.22716_from; char* to + }, ; 10926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22733_to, ; char* from + ptr @.TypeMapEntry.22732_from; char* to + }, ; 10927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22735_to, ; char* from + ptr @.TypeMapEntry.22734_from; char* to + }, ; 10928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22737_to, ; char* from + ptr @.TypeMapEntry.22736_from; char* to + }, ; 10929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22739_to, ; char* from + ptr @.TypeMapEntry.22738_from; char* to + }, ; 10930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22741_to, ; char* from + ptr @.TypeMapEntry.22740_from; char* to + }, ; 10931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22743_to, ; char* from + ptr @.TypeMapEntry.22742_from; char* to + }, ; 10932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22745_to, ; char* from + ptr @.TypeMapEntry.22744_from; char* to + }, ; 10933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22747_to, ; char* from + ptr @.TypeMapEntry.22746_from; char* to + }, ; 10934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22749_to, ; char* from + ptr @.TypeMapEntry.22748_from; char* to + }, ; 10935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22759_to, ; char* from + ptr @.TypeMapEntry.22758_from; char* to + }, ; 10936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22751_to, ; char* from + ptr @.TypeMapEntry.22750_from; char* to + }, ; 10937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22753_to, ; char* from + ptr @.TypeMapEntry.22752_from; char* to + }, ; 10938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22755_to, ; char* from + ptr @.TypeMapEntry.22754_from; char* to + }, ; 10939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22757_to, ; char* from + ptr @.TypeMapEntry.22756_from; char* to + }, ; 10940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22761_to, ; char* from + ptr @.TypeMapEntry.22760_from; char* to + }, ; 10941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22763_to, ; char* from + ptr @.TypeMapEntry.22762_from; char* to + }, ; 10942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22765_to, ; char* from + ptr @.TypeMapEntry.22764_from; char* to + }, ; 10943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22767_to, ; char* from + ptr @.TypeMapEntry.22766_from; char* to + }, ; 10944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22773_to, ; char* from + ptr @.TypeMapEntry.22772_from; char* to + }, ; 10945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22769_to, ; char* from + ptr @.TypeMapEntry.22768_from; char* to + }, ; 10946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22771_to, ; char* from + ptr @.TypeMapEntry.22770_from; char* to + }, ; 10947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22775_to, ; char* from + ptr @.TypeMapEntry.22774_from; char* to + }, ; 10948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22777_to, ; char* from + ptr null; char* to + }, ; 10949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22779_to, ; char* from + ptr null; char* to + }, ; 10950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23016_to, ; char* from + ptr @.TypeMapEntry.23015_from; char* to + }, ; 10951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23018_to, ; char* from + ptr @.TypeMapEntry.23017_from; char* to + }, ; 10952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22953_to, ; char* from + ptr @.TypeMapEntry.22952_from; char* to + }, ; 10953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22955_to, ; char* from + ptr @.TypeMapEntry.22954_from; char* to + }, ; 10954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22957_to, ; char* from + ptr @.TypeMapEntry.22956_from; char* to + }, ; 10955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22959_to, ; char* from + ptr @.TypeMapEntry.22958_from; char* to + }, ; 10956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22961_to, ; char* from + ptr @.TypeMapEntry.22960_from; char* to + }, ; 10957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22963_to, ; char* from + ptr @.TypeMapEntry.22962_from; char* to + }, ; 10958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22965_to, ; char* from + ptr @.TypeMapEntry.22964_from; char* to + }, ; 10959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22967_to, ; char* from + ptr @.TypeMapEntry.22966_from; char* to + }, ; 10960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22943_to, ; char* from + ptr @.TypeMapEntry.22942_from; char* to + }, ; 10961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22945_to, ; char* from + ptr @.TypeMapEntry.22944_from; char* to + }, ; 10962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22977_to, ; char* from + ptr @.TypeMapEntry.22976_from; char* to + }, ; 10963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22979_to, ; char* from + ptr @.TypeMapEntry.22978_from; char* to + }, ; 10964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22981_to, ; char* from + ptr @.TypeMapEntry.22980_from; char* to + }, ; 10965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22983_to, ; char* from + ptr @.TypeMapEntry.22982_from; char* to + }, ; 10966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22985_to, ; char* from + ptr @.TypeMapEntry.22984_from; char* to + }, ; 10967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22987_to, ; char* from + ptr @.TypeMapEntry.22986_from; char* to + }, ; 10968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22989_to, ; char* from + ptr @.TypeMapEntry.22988_from; char* to + }, ; 10969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16323_to, ; char* from + ptr null; char* to + }, ; 10970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16323_to, ; char* from + ptr null; char* to + }, ; 10971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16323_to, ; char* from + ptr null; char* to + }, ; 10972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16323_to, ; char* from + ptr null; char* to + }, ; 10973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16325_to, ; char* from + ptr null; char* to + }, ; 10974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16325_to, ; char* from + ptr null; char* to + }, ; 10975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16325_to, ; char* from + ptr null; char* to + }, ; 10976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16325_to, ; char* from + ptr null; char* to + }, ; 10977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16329_to, ; char* from + ptr null; char* to + }, ; 10978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16329_to, ; char* from + ptr null; char* to + }, ; 10979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16332_to, ; char* from + ptr null; char* to + }, ; 10980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16332_to, ; char* from + ptr null; char* to + }, ; 10981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16339_to, ; char* from + ptr @.TypeMapEntry.16338_from; char* to + }, ; 10982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16343_to, ; char* from + ptr @.TypeMapEntry.16342_from; char* to + }, ; 10983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16345_to, ; char* from + ptr @.TypeMapEntry.16344_from; char* to + }, ; 10984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16347_to, ; char* from + ptr @.TypeMapEntry.16346_from; char* to + }, ; 10985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16349_to, ; char* from + ptr @.TypeMapEntry.16348_from; char* to + }, ; 10986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16353_to, ; char* from + ptr @.TypeMapEntry.16352_from; char* to + }, ; 10987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16351_to, ; char* from + ptr @.TypeMapEntry.16350_from; char* to + }, ; 10988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16355_to, ; char* from + ptr @.TypeMapEntry.16354_from; char* to + }, ; 10989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16357_to, ; char* from + ptr @.TypeMapEntry.16356_from; char* to + }, ; 10990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16362_to, ; char* from + ptr @.TypeMapEntry.16361_from; char* to + }, ; 10991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16359_to, ; char* from + ptr null; char* to + }, ; 10992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16359_to, ; char* from + ptr null; char* to + }, ; 10993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17665_to, ; char* from + ptr @.TypeMapEntry.17664_from; char* to + }, ; 10994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17663_to, ; char* from + ptr @.TypeMapEntry.17662_from; char* to + }, ; 10995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17667_to, ; char* from + ptr @.TypeMapEntry.17666_from; char* to + }, ; 10996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17672_to, ; char* from + ptr @.TypeMapEntry.17671_from; char* to + }, ; 10997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17674_to, ; char* from + ptr @.TypeMapEntry.17673_from; char* to + }, ; 10998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17669_to, ; char* from + ptr null; char* to + }, ; 10999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17669_to, ; char* from + ptr null; char* to + }, ; 11000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17676_to, ; char* from + ptr @.TypeMapEntry.17675_from; char* to + }, ; 11001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17678_to, ; char* from + ptr @.TypeMapEntry.17677_from; char* to + }, ; 11002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17680_to, ; char* from + ptr @.TypeMapEntry.17679_from; char* to + }, ; 11003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17682_to, ; char* from + ptr @.TypeMapEntry.17681_from; char* to + }, ; 11004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17684_to, ; char* from + ptr @.TypeMapEntry.17683_from; char* to + }, ; 11005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17686_to, ; char* from + ptr @.TypeMapEntry.17685_from; char* to + }, ; 11006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17688_to, ; char* from + ptr @.TypeMapEntry.17687_from; char* to + }, ; 11007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17690_to, ; char* from + ptr @.TypeMapEntry.17689_from; char* to + }, ; 11008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17692_to, ; char* from + ptr @.TypeMapEntry.17691_from; char* to + }, ; 11009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17694_to, ; char* from + ptr @.TypeMapEntry.17693_from; char* to + }, ; 11010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17696_to, ; char* from + ptr @.TypeMapEntry.17695_from; char* to + }, ; 11011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17732_to, ; char* from + ptr null; char* to + }, ; 11012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17732_to, ; char* from + ptr null; char* to + }, ; 11013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17698_to, ; char* from + ptr @.TypeMapEntry.17697_from; char* to + }, ; 11014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17735_to, ; char* from + ptr null; char* to + }, ; 11015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17735_to, ; char* from + ptr null; char* to + }, ; 11016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17700_to, ; char* from + ptr @.TypeMapEntry.17699_from; char* to + }, ; 11017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17738_to, ; char* from + ptr null; char* to + }, ; 11018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17738_to, ; char* from + ptr null; char* to + }, ; 11019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17702_to, ; char* from + ptr @.TypeMapEntry.17701_from; char* to + }, ; 11020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17704_to, ; char* from + ptr @.TypeMapEntry.17703_from; char* to + }, ; 11021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17741_to, ; char* from + ptr null; char* to + }, ; 11022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17741_to, ; char* from + ptr null; char* to + }, ; 11023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17706_to, ; char* from + ptr @.TypeMapEntry.17705_from; char* to + }, ; 11024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17708_to, ; char* from + ptr @.TypeMapEntry.17707_from; char* to + }, ; 11025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17744_to, ; char* from + ptr null; char* to + }, ; 11026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17744_to, ; char* from + ptr null; char* to + }, ; 11027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17710_to, ; char* from + ptr @.TypeMapEntry.17709_from; char* to + }, ; 11028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17712_to, ; char* from + ptr @.TypeMapEntry.17711_from; char* to + }, ; 11029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17714_to, ; char* from + ptr @.TypeMapEntry.17713_from; char* to + }, ; 11030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17716_to, ; char* from + ptr @.TypeMapEntry.17715_from; char* to + }, ; 11031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17718_to, ; char* from + ptr @.TypeMapEntry.17717_from; char* to + }, ; 11032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17720_to, ; char* from + ptr @.TypeMapEntry.17719_from; char* to + }, ; 11033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17747_to, ; char* from + ptr null; char* to + }, ; 11034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17747_to, ; char* from + ptr null; char* to + }, ; 11035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17722_to, ; char* from + ptr @.TypeMapEntry.17721_from; char* to + }, ; 11036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17724_to, ; char* from + ptr @.TypeMapEntry.17723_from; char* to + }, ; 11037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17726_to, ; char* from + ptr @.TypeMapEntry.17725_from; char* to + }, ; 11038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17726_to, ; char* from + ptr @.TypeMapEntry.17725_from; char* to + }, ; 11039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17729_to, ; char* from + ptr @.TypeMapEntry.17728_from; char* to + }, ; 11040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17729_to, ; char* from + ptr @.TypeMapEntry.17728_from; char* to + }, ; 11041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17750_to, ; char* from + ptr null; char* to + }, ; 11042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17750_to, ; char* from + ptr null; char* to + }, ; 11043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17753_to, ; char* from + ptr @.TypeMapEntry.17752_from; char* to + }, ; 11044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17755_to, ; char* from + ptr @.TypeMapEntry.17754_from; char* to + }, ; 11045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17772_to, ; char* from + ptr @.TypeMapEntry.17771_from; char* to + }, ; 11046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17772_to, ; char* from + ptr @.TypeMapEntry.17771_from; char* to + }, ; 11047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17775_to, ; char* from + ptr @.TypeMapEntry.17774_from; char* to + }, ; 11048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17777_to, ; char* from + ptr @.TypeMapEntry.17776_from; char* to + }, ; 11049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17779_to, ; char* from + ptr @.TypeMapEntry.17778_from; char* to + }, ; 11050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17781_to, ; char* from + ptr @.TypeMapEntry.17780_from; char* to + }, ; 11051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17783_to, ; char* from + ptr @.TypeMapEntry.17782_from; char* to + }, ; 11052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17785_to, ; char* from + ptr @.TypeMapEntry.17784_from; char* to + }, ; 11053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17787_to, ; char* from + ptr @.TypeMapEntry.17786_from; char* to + }, ; 11054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17789_to, ; char* from + ptr @.TypeMapEntry.17788_from; char* to + }, ; 11055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17757_to, ; char* from + ptr null; char* to + }, ; 11056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17757_to, ; char* from + ptr null; char* to + }, ; 11057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17794_to, ; char* from + ptr @.TypeMapEntry.17793_from; char* to + }, ; 11058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17791_to, ; char* from + ptr @.TypeMapEntry.17790_from; char* to + }, ; 11059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17791_to, ; char* from + ptr @.TypeMapEntry.17790_from; char* to + }, ; 11060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17760_to, ; char* from + ptr null; char* to + }, ; 11061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17760_to, ; char* from + ptr null; char* to + }, ; 11062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17763_to, ; char* from + ptr null; char* to + }, ; 11063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17763_to, ; char* from + ptr null; char* to + }, ; 11064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17799_to, ; char* from + ptr @.TypeMapEntry.17798_from; char* to + }, ; 11065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17796_to, ; char* from + ptr @.TypeMapEntry.17795_from; char* to + }, ; 11066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17796_to, ; char* from + ptr @.TypeMapEntry.17795_from; char* to + }, ; 11067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17801_to, ; char* from + ptr @.TypeMapEntry.17800_from; char* to + }, ; 11068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17805_to, ; char* from + ptr @.TypeMapEntry.17804_from; char* to + }, ; 11069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17805_to, ; char* from + ptr @.TypeMapEntry.17804_from; char* to + }, ; 11070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17808_to, ; char* from + ptr @.TypeMapEntry.17807_from; char* to + }, ; 11071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17810_to, ; char* from + ptr @.TypeMapEntry.17809_from; char* to + }, ; 11072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17812_to, ; char* from + ptr @.TypeMapEntry.17811_from; char* to + }, ; 11073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17812_to, ; char* from + ptr @.TypeMapEntry.17811_from; char* to + }, ; 11074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17815_to, ; char* from + ptr @.TypeMapEntry.17814_from; char* to + }, ; 11075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17817_to, ; char* from + ptr @.TypeMapEntry.17816_from; char* to + }, ; 11076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17819_to, ; char* from + ptr @.TypeMapEntry.17818_from; char* to + }, ; 11077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17821_to, ; char* from + ptr @.TypeMapEntry.17820_from; char* to + }, ; 11078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17823_to, ; char* from + ptr @.TypeMapEntry.17822_from; char* to + }, ; 11079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17825_to, ; char* from + ptr @.TypeMapEntry.17824_from; char* to + }, ; 11080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17827_to, ; char* from + ptr @.TypeMapEntry.17826_from; char* to + }, ; 11081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17829_to, ; char* from + ptr @.TypeMapEntry.17828_from; char* to + }, ; 11082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17831_to, ; char* from + ptr @.TypeMapEntry.17830_from; char* to + }, ; 11083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17833_to, ; char* from + ptr @.TypeMapEntry.17832_from; char* to + }, ; 11084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17835_to, ; char* from + ptr @.TypeMapEntry.17834_from; char* to + }, ; 11085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17835_to, ; char* from + ptr @.TypeMapEntry.17834_from; char* to + }, ; 11086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17838_to, ; char* from + ptr @.TypeMapEntry.17837_from; char* to + }, ; 11087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17766_to, ; char* from + ptr null; char* to + }, ; 11088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17766_to, ; char* from + ptr null; char* to + }, ; 11089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17769_to, ; char* from + ptr null; char* to + }, ; 11090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17769_to, ; char* from + ptr null; char* to + }, ; 11091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17840_to, ; char* from + ptr @.TypeMapEntry.17839_from; char* to + }, ; 11092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17842_to, ; char* from + ptr @.TypeMapEntry.17841_from; char* to + }, ; 11093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17844_to, ; char* from + ptr @.TypeMapEntry.17843_from; char* to + }, ; 11094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17846_to, ; char* from + ptr @.TypeMapEntry.17845_from; char* to + }, ; 11095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17848_to, ; char* from + ptr @.TypeMapEntry.17847_from; char* to + }, ; 11096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17850_to, ; char* from + ptr @.TypeMapEntry.17849_from; char* to + }, ; 11097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17852_to, ; char* from + ptr @.TypeMapEntry.17851_from; char* to + }, ; 11098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17854_to, ; char* from + ptr @.TypeMapEntry.17853_from; char* to + }, ; 11099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17856_to, ; char* from + ptr @.TypeMapEntry.17855_from; char* to + }, ; 11100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17858_to, ; char* from + ptr @.TypeMapEntry.17857_from; char* to + }, ; 11101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17860_to, ; char* from + ptr @.TypeMapEntry.17859_from; char* to + }, ; 11102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17862_to, ; char* from + ptr @.TypeMapEntry.17861_from; char* to + }, ; 11103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17862_to, ; char* from + ptr @.TypeMapEntry.17861_from; char* to + }, ; 11104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17867_to, ; char* from + ptr @.TypeMapEntry.17866_from; char* to + }, ; 11105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17869_to, ; char* from + ptr @.TypeMapEntry.17868_from; char* to + }, ; 11106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17869_to, ; char* from + ptr @.TypeMapEntry.17868_from; char* to + }, ; 11107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17973_to, ; char* from + ptr null; char* to + }, ; 11108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17973_to, ; char* from + ptr null; char* to + }, ; 11109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17911_to, ; char* from + ptr @.TypeMapEntry.17910_from; char* to + }, ; 11110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17913_to, ; char* from + ptr @.TypeMapEntry.17912_from; char* to + }, ; 11111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17915_to, ; char* from + ptr @.TypeMapEntry.17914_from; char* to + }, ; 11112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17917_to, ; char* from + ptr @.TypeMapEntry.17916_from; char* to + }, ; 11113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17976_to, ; char* from + ptr null; char* to + }, ; 11114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17976_to, ; char* from + ptr null; char* to + }, ; 11115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17919_to, ; char* from + ptr @.TypeMapEntry.17918_from; char* to + }, ; 11116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17921_to, ; char* from + ptr @.TypeMapEntry.17920_from; char* to + }, ; 11117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17923_to, ; char* from + ptr @.TypeMapEntry.17922_from; char* to + }, ; 11118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17979_to, ; char* from + ptr null; char* to + }, ; 11119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17979_to, ; char* from + ptr null; char* to + }, ; 11120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17933_to, ; char* from + ptr @.TypeMapEntry.17932_from; char* to + }, ; 11121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17927_to, ; char* from + ptr @.TypeMapEntry.17926_from; char* to + }, ; 11122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17929_to, ; char* from + ptr @.TypeMapEntry.17928_from; char* to + }, ; 11123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17931_to, ; char* from + ptr @.TypeMapEntry.17930_from; char* to + }, ; 11124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17935_to, ; char* from + ptr @.TypeMapEntry.17934_from; char* to + }, ; 11125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17937_to, ; char* from + ptr @.TypeMapEntry.17936_from; char* to + }, ; 11126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17939_to, ; char* from + ptr @.TypeMapEntry.17938_from; char* to + }, ; 11127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17941_to, ; char* from + ptr @.TypeMapEntry.17940_from; char* to + }, ; 11128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17943_to, ; char* from + ptr @.TypeMapEntry.17942_from; char* to + }, ; 11129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17943_to, ; char* from + ptr @.TypeMapEntry.17942_from; char* to + }, ; 11130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17946_to, ; char* from + ptr @.TypeMapEntry.17945_from; char* to + }, ; 11131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17948_to, ; char* from + ptr @.TypeMapEntry.17947_from; char* to + }, ; 11132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17948_to, ; char* from + ptr @.TypeMapEntry.17947_from; char* to + }, ; 11133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17951_to, ; char* from + ptr @.TypeMapEntry.17950_from; char* to + }, ; 11134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17982_to, ; char* from + ptr null; char* to + }, ; 11135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17982_to, ; char* from + ptr null; char* to + }, ; 11136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17985_to, ; char* from + ptr null; char* to + }, ; 11137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17985_to, ; char* from + ptr null; char* to + }, ; 11138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17953_to, ; char* from + ptr @.TypeMapEntry.17952_from; char* to + }, ; 11139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17955_to, ; char* from + ptr @.TypeMapEntry.17954_from; char* to + }, ; 11140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17955_to, ; char* from + ptr @.TypeMapEntry.17954_from; char* to + }, ; 11141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17955_to, ; char* from + ptr @.TypeMapEntry.17954_from; char* to + }, ; 11142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17955_to, ; char* from + ptr @.TypeMapEntry.17954_from; char* to + }, ; 11143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17958_to, ; char* from + ptr @.TypeMapEntry.17957_from; char* to + }, ; 11144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17960_to, ; char* from + ptr @.TypeMapEntry.17959_from; char* to + }, ; 11145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17960_to, ; char* from + ptr @.TypeMapEntry.17959_from; char* to + }, ; 11146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17962_to, ; char* from + ptr @.TypeMapEntry.17961_from; char* to + }, ; 11147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17965_to, ; char* from + ptr @.TypeMapEntry.17964_from; char* to + }, ; 11148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17967_to, ; char* from + ptr @.TypeMapEntry.17966_from; char* to + }, ; 11149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17969_to, ; char* from + ptr @.TypeMapEntry.17968_from; char* to + }, ; 11150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17971_to, ; char* from + ptr @.TypeMapEntry.17970_from; char* to + }, ; 11151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17990_to, ; char* from + ptr null; char* to + }, ; 11152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17990_to, ; char* from + ptr null; char* to + }, ; 11153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18011_to, ; char* from + ptr @.TypeMapEntry.18010_from; char* to + }, ; 11154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18013_to, ; char* from + ptr @.TypeMapEntry.18012_from; char* to + }, ; 11155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18015_to, ; char* from + ptr @.TypeMapEntry.18014_from; char* to + }, ; 11156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18017_to, ; char* from + ptr @.TypeMapEntry.18016_from; char* to + }, ; 11157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18019_to, ; char* from + ptr @.TypeMapEntry.18018_from; char* to + }, ; 11158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18021_to, ; char* from + ptr @.TypeMapEntry.18020_from; char* to + }, ; 11159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18023_to, ; char* from + ptr @.TypeMapEntry.18022_from; char* to + }, ; 11160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18025_to, ; char* from + ptr @.TypeMapEntry.18024_from; char* to + }, ; 11161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18027_to, ; char* from + ptr @.TypeMapEntry.18026_from; char* to + }, ; 11162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18029_to, ; char* from + ptr @.TypeMapEntry.18028_from; char* to + }, ; 11163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18031_to, ; char* from + ptr @.TypeMapEntry.18030_from; char* to + }, ; 11164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18033_to, ; char* from + ptr @.TypeMapEntry.18032_from; char* to + }, ; 11165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18035_to, ; char* from + ptr @.TypeMapEntry.18034_from; char* to + }, ; 11166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18037_to, ; char* from + ptr @.TypeMapEntry.18036_from; char* to + }, ; 11167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17993_to, ; char* from + ptr null; char* to + }, ; 11168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17993_to, ; char* from + ptr null; char* to + }, ; 11169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18082_to, ; char* from + ptr @.TypeMapEntry.18081_from; char* to + }, ; 11170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18084_to, ; char* from + ptr @.TypeMapEntry.18083_from; char* to + }, ; 11171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18086_to, ; char* from + ptr @.TypeMapEntry.18085_from; char* to + }, ; 11172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18088_to, ; char* from + ptr @.TypeMapEntry.18087_from; char* to + }, ; 11173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18090_to, ; char* from + ptr @.TypeMapEntry.18089_from; char* to + }, ; 11174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18092_to, ; char* from + ptr @.TypeMapEntry.18091_from; char* to + }, ; 11175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18094_to, ; char* from + ptr @.TypeMapEntry.18093_from; char* to + }, ; 11176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18096_to, ; char* from + ptr @.TypeMapEntry.18095_from; char* to + }, ; 11177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18098_to, ; char* from + ptr @.TypeMapEntry.18097_from; char* to + }, ; 11178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18100_to, ; char* from + ptr @.TypeMapEntry.18099_from; char* to + }, ; 11179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18102_to, ; char* from + ptr @.TypeMapEntry.18101_from; char* to + }, ; 11180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18102_to, ; char* from + ptr @.TypeMapEntry.18101_from; char* to + }, ; 11181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18104_to, ; char* from + ptr @.TypeMapEntry.18103_from; char* to + }, ; 11182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18107_to, ; char* from + ptr @.TypeMapEntry.18106_from; char* to + }, ; 11183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18109_to, ; char* from + ptr @.TypeMapEntry.18108_from; char* to + }, ; 11184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17996_to, ; char* from + ptr null; char* to + }, ; 11185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17996_to, ; char* from + ptr null; char* to + }, ; 11186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17996_to, ; char* from + ptr null; char* to + }, ; 11187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17996_to, ; char* from + ptr null; char* to + }, ; 11188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18113_to, ; char* from + ptr @.TypeMapEntry.18112_from; char* to + }, ; 11189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18115_to, ; char* from + ptr @.TypeMapEntry.18114_from; char* to + }, ; 11190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18115_to, ; char* from + ptr @.TypeMapEntry.18114_from; char* to + }, ; 11191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18122_to, ; char* from + ptr @.TypeMapEntry.18121_from; char* to + }, ; 11192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18119_to, ; char* from + ptr @.TypeMapEntry.18118_from; char* to + }, ; 11193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18119_to, ; char* from + ptr @.TypeMapEntry.18118_from; char* to + }, ; 11194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18117_to, ; char* from + ptr @.TypeMapEntry.18116_from; char* to + }, ; 11195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17999_to, ; char* from + ptr null; char* to + }, ; 11196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17999_to, ; char* from + ptr null; char* to + }, ; 11197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18125_to, ; char* from + ptr @.TypeMapEntry.18124_from; char* to + }, ; 11198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18125_to, ; char* from + ptr @.TypeMapEntry.18124_from; char* to + }, ; 11199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18206_to, ; char* from + ptr @.TypeMapEntry.18205_from; char* to + }, ; 11200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18002_to, ; char* from + ptr null; char* to + }, ; 11201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18002_to, ; char* from + ptr null; char* to + }, ; 11202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18210_to, ; char* from + ptr @.TypeMapEntry.18209_from; char* to + }, ; 11203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18212_to, ; char* from + ptr @.TypeMapEntry.18211_from; char* to + }, ; 11204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18214_to, ; char* from + ptr @.TypeMapEntry.18213_from; char* to + }, ; 11205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18005_to, ; char* from + ptr null; char* to + }, ; 11206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18005_to, ; char* from + ptr null; char* to + }, ; 11207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18218_to, ; char* from + ptr @.TypeMapEntry.18217_from; char* to + }, ; 11208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18220_to, ; char* from + ptr @.TypeMapEntry.18219_from; char* to + }, ; 11209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18222_to, ; char* from + ptr @.TypeMapEntry.18221_from; char* to + }, ; 11210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18224_to, ; char* from + ptr @.TypeMapEntry.18223_from; char* to + }, ; 11211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18226_to, ; char* from + ptr @.TypeMapEntry.18225_from; char* to + }, ; 11212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18233_to, ; char* from + ptr @.TypeMapEntry.18232_from; char* to + }, ; 11213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18231_to, ; char* from + ptr @.TypeMapEntry.18230_from; char* to + }, ; 11214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18228_to, ; char* from + ptr null; char* to + }, ; 11215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18228_to, ; char* from + ptr null; char* to + }, ; 11216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18235_to, ; char* from + ptr @.TypeMapEntry.18234_from; char* to + }, ; 11217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18237_to, ; char* from + ptr @.TypeMapEntry.18236_from; char* to + }, ; 11218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18239_to, ; char* from + ptr @.TypeMapEntry.18238_from; char* to + }, ; 11219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18241_to, ; char* from + ptr @.TypeMapEntry.18240_from; char* to + }, ; 11220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18243_to, ; char* from + ptr @.TypeMapEntry.18242_from; char* to + }, ; 11221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18008_to, ; char* from + ptr null; char* to + }, ; 11222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18008_to, ; char* from + ptr null; char* to + }, ; 11223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18008_to, ; char* from + ptr null; char* to + }, ; 11224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18008_to, ; char* from + ptr null; char* to + }, ; 11225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18080_to, ; char* from + ptr @.TypeMapEntry.18079_from; char* to + }, ; 11226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18254_to, ; char* from + ptr @.TypeMapEntry.18253_from; char* to + }, ; 11227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18252_to, ; char* from + ptr @.TypeMapEntry.18251_from; char* to + }, ; 11228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18247_to, ; char* from + ptr null; char* to + }, ; 11229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18247_to, ; char* from + ptr null; char* to + }, ; 11230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18256_to, ; char* from + ptr @.TypeMapEntry.18255_from; char* to + }, ; 11231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18258_to, ; char* from + ptr @.TypeMapEntry.18257_from; char* to + }, ; 11232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18260_to, ; char* from + ptr @.TypeMapEntry.18259_from; char* to + }, ; 11233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18262_to, ; char* from + ptr @.TypeMapEntry.18261_from; char* to + }, ; 11234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18264_to, ; char* from + ptr @.TypeMapEntry.18263_from; char* to + }, ; 11235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18266_to, ; char* from + ptr @.TypeMapEntry.18265_from; char* to + }, ; 11236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18268_to, ; char* from + ptr @.TypeMapEntry.18267_from; char* to + }, ; 11237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18270_to, ; char* from + ptr @.TypeMapEntry.18269_from; char* to + }, ; 11238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18272_to, ; char* from + ptr @.TypeMapEntry.18271_from; char* to + }, ; 11239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18274_to, ; char* from + ptr @.TypeMapEntry.18273_from; char* to + }, ; 11240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18276_to, ; char* from + ptr @.TypeMapEntry.18275_from; char* to + }, ; 11241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18276_to, ; char* from + ptr @.TypeMapEntry.18275_from; char* to + }, ; 11242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18279_to, ; char* from + ptr @.TypeMapEntry.18278_from; char* to + }, ; 11243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17881_to, ; char* from + ptr null; char* to + }, ; 11244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17881_to, ; char* from + ptr null; char* to + }, ; 11245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17872_to, ; char* from + ptr @.TypeMapEntry.17871_from; char* to + }, ; 11246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17874_to, ; char* from + ptr @.TypeMapEntry.17873_from; char* to + }, ; 11247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17876_to, ; char* from + ptr @.TypeMapEntry.17875_from; char* to + }, ; 11248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17876_to, ; char* from + ptr @.TypeMapEntry.17875_from; char* to + }, ; 11249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17876_to, ; char* from + ptr @.TypeMapEntry.17875_from; char* to + }, ; 11250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17876_to, ; char* from + ptr @.TypeMapEntry.17875_from; char* to + }, ; 11251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17879_to, ; char* from + ptr @.TypeMapEntry.17878_from; char* to + }, ; 11252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17901_to, ; char* from + ptr @.TypeMapEntry.17900_from; char* to + }, ; 11253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17886_to, ; char* from + ptr null; char* to + }, ; 11254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17886_to, ; char* from + ptr null; char* to + }, ; 11255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17886_to, ; char* from + ptr null; char* to + }, ; 11256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17886_to, ; char* from + ptr null; char* to + }, ; 11257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17889_to, ; char* from + ptr null; char* to + }, ; 11258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17889_to, ; char* from + ptr null; char* to + }, ; 11259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17892_to, ; char* from + ptr null; char* to + }, ; 11260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17892_to, ; char* from + ptr null; char* to + }, ; 11261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17895_to, ; char* from + ptr null; char* to + }, ; 11262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17895_to, ; char* from + ptr null; char* to + }, ; 11263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17895_to, ; char* from + ptr null; char* to + }, ; 11264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17895_to, ; char* from + ptr null; char* to + }, ; 11265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17907_to, ; char* from + ptr @.TypeMapEntry.17906_from; char* to + }, ; 11266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17898_to, ; char* from + ptr null; char* to + }, ; 11267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17898_to, ; char* from + ptr null; char* to + }, ; 11268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17898_to, ; char* from + ptr null; char* to + }, ; 11269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17898_to, ; char* from + ptr null; char* to + }, ; 11270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18039_to, ; char* from + ptr @.TypeMapEntry.18038_from; char* to + }, ; 11271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18039_to, ; char* from + ptr @.TypeMapEntry.18038_from; char* to + }, ; 11272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18042_to, ; char* from + ptr @.TypeMapEntry.18041_from; char* to + }, ; 11273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18056_to, ; char* from + ptr @.TypeMapEntry.18055_from; char* to + }, ; 11274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18058_to, ; char* from + ptr @.TypeMapEntry.18057_from; char* to + }, ; 11275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18058_to, ; char* from + ptr @.TypeMapEntry.18057_from; char* to + }, ; 11276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18044_to, ; char* from + ptr null; char* to + }, ; 11277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18044_to, ; char* from + ptr null; char* to + }, ; 11278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18065_to, ; char* from + ptr @.TypeMapEntry.18064_from; char* to + }, ; 11279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18063_to, ; char* from + ptr @.TypeMapEntry.18062_from; char* to + }, ; 11280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18067_to, ; char* from + ptr @.TypeMapEntry.18066_from; char* to + }, ; 11281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18069_to, ; char* from + ptr @.TypeMapEntry.18068_from; char* to + }, ; 11282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18053_to, ; char* from + ptr null; char* to + }, ; 11283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18053_to, ; char* from + ptr null; char* to + }, ; 11284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18047_to, ; char* from + ptr null; char* to + }, ; 11285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18047_to, ; char* from + ptr null; char* to + }, ; 11286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18050_to, ; char* from + ptr null; char* to + }, ; 11287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18050_to, ; char* from + ptr null; char* to + }, ; 11288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18073_to, ; char* from + ptr @.TypeMapEntry.18072_from; char* to + }, ; 11289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18073_to, ; char* from + ptr @.TypeMapEntry.18072_from; char* to + }, ; 11290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18071_to, ; char* from + ptr @.TypeMapEntry.18070_from; char* to + }, ; 11291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18076_to, ; char* from + ptr @.TypeMapEntry.18075_from; char* to + }, ; 11292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18078_to, ; char* from + ptr @.TypeMapEntry.18077_from; char* to + }, ; 11293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18131_to, ; char* from + ptr @.TypeMapEntry.18130_from; char* to + }, ; 11294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18128_to, ; char* from + ptr null; char* to + }, ; 11295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18128_to, ; char* from + ptr null; char* to + }, ; 11296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18133_to, ; char* from + ptr @.TypeMapEntry.18132_from; char* to + }, ; 11297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18135_to, ; char* from + ptr @.TypeMapEntry.18134_from; char* to + }, ; 11298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18135_to, ; char* from + ptr @.TypeMapEntry.18134_from; char* to + }, ; 11299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18138_to, ; char* from + ptr @.TypeMapEntry.18137_from; char* to + }, ; 11300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18140_to, ; char* from + ptr @.TypeMapEntry.18139_from; char* to + }, ; 11301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18142_to, ; char* from + ptr @.TypeMapEntry.18141_from; char* to + }, ; 11302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18144_to, ; char* from + ptr @.TypeMapEntry.18143_from; char* to + }, ; 11303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18157_to, ; char* from + ptr null; char* to + }, ; 11304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18157_to, ; char* from + ptr null; char* to + }, ; 11305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18146_to, ; char* from + ptr @.TypeMapEntry.18145_from; char* to + }, ; 11306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18148_to, ; char* from + ptr @.TypeMapEntry.18147_from; char* to + }, ; 11307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18150_to, ; char* from + ptr @.TypeMapEntry.18149_from; char* to + }, ; 11308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18150_to, ; char* from + ptr @.TypeMapEntry.18149_from; char* to + }, ; 11309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18153_to, ; char* from + ptr @.TypeMapEntry.18152_from; char* to + }, ; 11310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18160_to, ; char* from + ptr null; char* to + }, ; 11311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18160_to, ; char* from + ptr null; char* to + }, ; 11312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18163_to, ; char* from + ptr null; char* to + }, ; 11313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18163_to, ; char* from + ptr null; char* to + }, ; 11314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18155_to, ; char* from + ptr @.TypeMapEntry.18154_from; char* to + }, ; 11315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18166_to, ; char* from + ptr null; char* to + }, ; 11316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18166_to, ; char* from + ptr null; char* to + }, ; 11317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18184_to, ; char* from + ptr @.TypeMapEntry.18183_from; char* to + }, ; 11318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18186_to, ; char* from + ptr @.TypeMapEntry.18185_from; char* to + }, ; 11319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18188_to, ; char* from + ptr @.TypeMapEntry.18187_from; char* to + }, ; 11320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18169_to, ; char* from + ptr null; char* to + }, ; 11321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18169_to, ; char* from + ptr null; char* to + }, ; 11322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18192_to, ; char* from + ptr @.TypeMapEntry.18191_from; char* to + }, ; 11323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18194_to, ; char* from + ptr @.TypeMapEntry.18193_from; char* to + }, ; 11324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18196_to, ; char* from + ptr @.TypeMapEntry.18195_from; char* to + }, ; 11325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18172_to, ; char* from + ptr null; char* to + }, ; 11326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18172_to, ; char* from + ptr null; char* to + }, ; 11327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18198_to, ; char* from + ptr @.TypeMapEntry.18197_from; char* to + }, ; 11328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18200_to, ; char* from + ptr @.TypeMapEntry.18199_from; char* to + }, ; 11329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18202_to, ; char* from + ptr @.TypeMapEntry.18201_from; char* to + }, ; 11330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18175_to, ; char* from + ptr null; char* to + }, ; 11331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18175_to, ; char* from + ptr null; char* to + }, ; 11332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18178_to, ; char* from + ptr null; char* to + }, ; 11333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18178_to, ; char* from + ptr null; char* to + }, ; 11334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18204_to, ; char* from + ptr @.TypeMapEntry.18203_from; char* to + }, ; 11335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18181_to, ; char* from + ptr null; char* to + }, ; 11336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18181_to, ; char* from + ptr null; char* to + }, ; 11337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18216_to, ; char* from + ptr @.TypeMapEntry.18215_from; char* to + }, ; 11338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18281_to, ; char* from + ptr @.TypeMapEntry.18280_from; char* to + }, ; 11339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18283_to, ; char* from + ptr @.TypeMapEntry.18282_from; char* to + }, ; 11340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18285_to, ; char* from + ptr @.TypeMapEntry.18284_from; char* to + }, ; 11341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18287_to, ; char* from + ptr @.TypeMapEntry.18286_from; char* to + }, ; 11342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18291_to, ; char* from + ptr @.TypeMapEntry.18290_from; char* to + }, ; 11343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18291_to, ; char* from + ptr @.TypeMapEntry.18290_from; char* to + }, ; 11344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18289_to, ; char* from + ptr @.TypeMapEntry.18288_from; char* to + }, ; 11345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18294_to, ; char* from + ptr @.TypeMapEntry.18293_from; char* to + }, ; 11346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18296_to, ; char* from + ptr @.TypeMapEntry.18295_from; char* to + }, ; 11347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18296_to, ; char* from + ptr @.TypeMapEntry.18295_from; char* to + }, ; 11348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18299_to, ; char* from + ptr @.TypeMapEntry.18298_from; char* to + }, ; 11349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18299_to, ; char* from + ptr @.TypeMapEntry.18298_from; char* to + }, ; 11350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18302_to, ; char* from + ptr @.TypeMapEntry.18301_from; char* to + }, ; 11351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18304_to, ; char* from + ptr @.TypeMapEntry.18303_from; char* to + }, ; 11352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18304_to, ; char* from + ptr @.TypeMapEntry.18303_from; char* to + }, ; 11353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18328_to, ; char* from + ptr null; char* to + }, ; 11354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18328_to, ; char* from + ptr null; char* to + }, ; 11355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18307_to, ; char* from + ptr @.TypeMapEntry.18306_from; char* to + }, ; 11356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18307_to, ; char* from + ptr @.TypeMapEntry.18306_from; char* to + }, ; 11357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18310_to, ; char* from + ptr @.TypeMapEntry.18309_from; char* to + }, ; 11358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18331_to, ; char* from + ptr null; char* to + }, ; 11359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18331_to, ; char* from + ptr null; char* to + }, ; 11360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18334_to, ; char* from + ptr null; char* to + }, ; 11361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18334_to, ; char* from + ptr null; char* to + }, ; 11362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18314_to, ; char* from + ptr @.TypeMapEntry.18313_from; char* to + }, ; 11363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18316_to, ; char* from + ptr @.TypeMapEntry.18315_from; char* to + }, ; 11364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18318_to, ; char* from + ptr @.TypeMapEntry.18317_from; char* to + }, ; 11365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18318_to, ; char* from + ptr @.TypeMapEntry.18317_from; char* to + }, ; 11366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18339_to, ; char* from + ptr null; char* to + }, ; 11367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18339_to, ; char* from + ptr null; char* to + }, ; 11368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18342_to, ; char* from + ptr null; char* to + }, ; 11369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18342_to, ; char* from + ptr null; char* to + }, ; 11370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18321_to, ; char* from + ptr @.TypeMapEntry.18320_from; char* to + }, ; 11371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18323_to, ; char* from + ptr @.TypeMapEntry.18322_from; char* to + }, ; 11372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18325_to, ; char* from + ptr @.TypeMapEntry.18324_from; char* to + }, ; 11373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18325_to, ; char* from + ptr @.TypeMapEntry.18324_from; char* to + }, ; 11374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18337_to, ; char* from + ptr @.TypeMapEntry.18336_from; char* to + }, ; 11375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18360_to, ; char* from + ptr @.TypeMapEntry.18359_from; char* to + }, ; 11376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18362_to, ; char* from + ptr @.TypeMapEntry.18361_from; char* to + }, ; 11377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18364_to, ; char* from + ptr @.TypeMapEntry.18363_from; char* to + }, ; 11378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18366_to, ; char* from + ptr @.TypeMapEntry.18365_from; char* to + }, ; 11379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18368_to, ; char* from + ptr @.TypeMapEntry.18367_from; char* to + }, ; 11380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18370_to, ; char* from + ptr @.TypeMapEntry.18369_from; char* to + }, ; 11381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18370_to, ; char* from + ptr @.TypeMapEntry.18369_from; char* to + }, ; 11382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18373_to, ; char* from + ptr @.TypeMapEntry.18372_from; char* to + }, ; 11383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18375_to, ; char* from + ptr @.TypeMapEntry.18374_from; char* to + }, ; 11384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18377_to, ; char* from + ptr @.TypeMapEntry.18376_from; char* to + }, ; 11385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18379_to, ; char* from + ptr @.TypeMapEntry.18378_from; char* to + }, ; 11386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18381_to, ; char* from + ptr @.TypeMapEntry.18380_from; char* to + }, ; 11387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18383_to, ; char* from + ptr @.TypeMapEntry.18382_from; char* to + }, ; 11388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18385_to, ; char* from + ptr @.TypeMapEntry.18384_from; char* to + }, ; 11389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18387_to, ; char* from + ptr @.TypeMapEntry.18386_from; char* to + }, ; 11390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18345_to, ; char* from + ptr null; char* to + }, ; 11391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18345_to, ; char* from + ptr null; char* to + }, ; 11392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18391_to, ; char* from + ptr @.TypeMapEntry.18390_from; char* to + }, ; 11393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18389_to, ; char* from + ptr @.TypeMapEntry.18388_from; char* to + }, ; 11394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18393_to, ; char* from + ptr @.TypeMapEntry.18392_from; char* to + }, ; 11395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18393_to, ; char* from + ptr @.TypeMapEntry.18392_from; char* to + }, ; 11396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18396_to, ; char* from + ptr @.TypeMapEntry.18395_from; char* to + }, ; 11397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18396_to, ; char* from + ptr @.TypeMapEntry.18395_from; char* to + }, ; 11398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18399_to, ; char* from + ptr @.TypeMapEntry.18398_from; char* to + }, ; 11399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18399_to, ; char* from + ptr @.TypeMapEntry.18398_from; char* to + }, ; 11400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18402_to, ; char* from + ptr @.TypeMapEntry.18401_from; char* to + }, ; 11401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18404_to, ; char* from + ptr @.TypeMapEntry.18403_from; char* to + }, ; 11402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18406_to, ; char* from + ptr @.TypeMapEntry.18405_from; char* to + }, ; 11403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18406_to, ; char* from + ptr @.TypeMapEntry.18405_from; char* to + }, ; 11404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18409_to, ; char* from + ptr @.TypeMapEntry.18408_from; char* to + }, ; 11405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18411_to, ; char* from + ptr @.TypeMapEntry.18410_from; char* to + }, ; 11406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18411_to, ; char* from + ptr @.TypeMapEntry.18410_from; char* to + }, ; 11407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18348_to, ; char* from + ptr null; char* to + }, ; 11408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18348_to, ; char* from + ptr null; char* to + }, ; 11409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18351_to, ; char* from + ptr null; char* to + }, ; 11410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18351_to, ; char* from + ptr null; char* to + }, ; 11411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18354_to, ; char* from + ptr null; char* to + }, ; 11412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18354_to, ; char* from + ptr null; char* to + }, ; 11413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18416_to, ; char* from + ptr @.TypeMapEntry.18415_from; char* to + }, ; 11414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18418_to, ; char* from + ptr @.TypeMapEntry.18417_from; char* to + }, ; 11415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18420_to, ; char* from + ptr @.TypeMapEntry.18419_from; char* to + }, ; 11416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18422_to, ; char* from + ptr @.TypeMapEntry.18421_from; char* to + }, ; 11417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18424_to, ; char* from + ptr @.TypeMapEntry.18423_from; char* to + }, ; 11418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18426_to, ; char* from + ptr @.TypeMapEntry.18425_from; char* to + }, ; 11419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18428_to, ; char* from + ptr @.TypeMapEntry.18427_from; char* to + }, ; 11420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18430_to, ; char* from + ptr @.TypeMapEntry.18429_from; char* to + }, ; 11421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18432_to, ; char* from + ptr @.TypeMapEntry.18431_from; char* to + }, ; 11422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18432_to, ; char* from + ptr @.TypeMapEntry.18431_from; char* to + }, ; 11423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18435_to, ; char* from + ptr @.TypeMapEntry.18434_from; char* to + }, ; 11424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18437_to, ; char* from + ptr @.TypeMapEntry.18436_from; char* to + }, ; 11425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18439_to, ; char* from + ptr @.TypeMapEntry.18438_from; char* to + }, ; 11426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18439_to, ; char* from + ptr @.TypeMapEntry.18438_from; char* to + }, ; 11427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18357_to, ; char* from + ptr null; char* to + }, ; 11428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18357_to, ; char* from + ptr null; char* to + }, ; 11429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18442_to, ; char* from + ptr @.TypeMapEntry.18441_from; char* to + }, ; 11430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18444_to, ; char* from + ptr @.TypeMapEntry.18443_from; char* to + }, ; 11431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18446_to, ; char* from + ptr @.TypeMapEntry.18445_from; char* to + }, ; 11432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18446_to, ; char* from + ptr @.TypeMapEntry.18445_from; char* to + }, ; 11433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18449_to, ; char* from + ptr @.TypeMapEntry.18448_from; char* to + }, ; 11434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18451_to, ; char* from + ptr @.TypeMapEntry.18450_from; char* to + }, ; 11435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18453_to, ; char* from + ptr @.TypeMapEntry.18452_from; char* to + }, ; 11436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18453_to, ; char* from + ptr @.TypeMapEntry.18452_from; char* to + }, ; 11437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18456_to, ; char* from + ptr @.TypeMapEntry.18455_from; char* to + }, ; 11438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18611_to, ; char* from + ptr @.TypeMapEntry.18610_from; char* to + }, ; 11439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18611_to, ; char* from + ptr @.TypeMapEntry.18610_from; char* to + }, ; 11440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18644_to, ; char* from + ptr @.TypeMapEntry.18643_from; char* to + }, ; 11441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18644_to, ; char* from + ptr @.TypeMapEntry.18643_from; char* to + }, ; 11442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18831_to, ; char* from + ptr @.TypeMapEntry.18830_from; char* to + }, ; 11443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18831_to, ; char* from + ptr @.TypeMapEntry.18830_from; char* to + }, ; 11444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18834_to, ; char* from + ptr @.TypeMapEntry.18833_from; char* to + }, ; 11445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18834_to, ; char* from + ptr @.TypeMapEntry.18833_from; char* to + }, ; 11446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18837_to, ; char* from + ptr @.TypeMapEntry.18836_from; char* to + }, ; 11447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18839_to, ; char* from + ptr @.TypeMapEntry.18838_from; char* to + }, ; 11448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18839_to, ; char* from + ptr @.TypeMapEntry.18838_from; char* to + }, ; 11449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18842_to, ; char* from + ptr @.TypeMapEntry.18841_from; char* to + }, ; 11450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18842_to, ; char* from + ptr @.TypeMapEntry.18841_from; char* to + }, ; 11451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18845_to, ; char* from + ptr @.TypeMapEntry.18844_from; char* to + }, ; 11452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18847_to, ; char* from + ptr @.TypeMapEntry.18846_from; char* to + }, ; 11453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18847_to, ; char* from + ptr @.TypeMapEntry.18846_from; char* to + }, ; 11454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18458_to, ; char* from + ptr @.TypeMapEntry.18457_from; char* to + }, ; 11455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18460_to, ; char* from + ptr @.TypeMapEntry.18459_from; char* to + }, ; 11456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18462_to, ; char* from + ptr @.TypeMapEntry.18461_from; char* to + }, ; 11457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18503_to, ; char* from + ptr null; char* to + }, ; 11458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18503_to, ; char* from + ptr null; char* to + }, ; 11459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18506_to, ; char* from + ptr null; char* to + }, ; 11460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18506_to, ; char* from + ptr null; char* to + }, ; 11461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18464_to, ; char* from + ptr @.TypeMapEntry.18463_from; char* to + }, ; 11462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18464_to, ; char* from + ptr @.TypeMapEntry.18463_from; char* to + }, ; 11463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18467_to, ; char* from + ptr @.TypeMapEntry.18466_from; char* to + }, ; 11464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18469_to, ; char* from + ptr @.TypeMapEntry.18468_from; char* to + }, ; 11465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18469_to, ; char* from + ptr @.TypeMapEntry.18468_from; char* to + }, ; 11466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18472_to, ; char* from + ptr @.TypeMapEntry.18471_from; char* to + }, ; 11467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18472_to, ; char* from + ptr @.TypeMapEntry.18471_from; char* to + }, ; 11468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18475_to, ; char* from + ptr @.TypeMapEntry.18474_from; char* to + }, ; 11469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18475_to, ; char* from + ptr @.TypeMapEntry.18474_from; char* to + }, ; 11470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18509_to, ; char* from + ptr null; char* to + }, ; 11471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18509_to, ; char* from + ptr null; char* to + }, ; 11472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18478_to, ; char* from + ptr @.TypeMapEntry.18477_from; char* to + }, ; 11473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18512_to, ; char* from + ptr null; char* to + }, ; 11474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18512_to, ; char* from + ptr null; char* to + }, ; 11475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18480_to, ; char* from + ptr @.TypeMapEntry.18479_from; char* to + }, ; 11476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18482_to, ; char* from + ptr @.TypeMapEntry.18481_from; char* to + }, ; 11477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18484_to, ; char* from + ptr @.TypeMapEntry.18483_from; char* to + }, ; 11478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18486_to, ; char* from + ptr @.TypeMapEntry.18485_from; char* to + }, ; 11479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18515_to, ; char* from + ptr null; char* to + }, ; 11480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18515_to, ; char* from + ptr null; char* to + }, ; 11481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18488_to, ; char* from + ptr @.TypeMapEntry.18487_from; char* to + }, ; 11482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18490_to, ; char* from + ptr @.TypeMapEntry.18489_from; char* to + }, ; 11483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18490_to, ; char* from + ptr @.TypeMapEntry.18489_from; char* to + }, ; 11484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18495_to, ; char* from + ptr @.TypeMapEntry.18494_from; char* to + }, ; 11485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18495_to, ; char* from + ptr @.TypeMapEntry.18494_from; char* to + }, ; 11486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18493_to, ; char* from + ptr @.TypeMapEntry.18492_from; char* to + }, ; 11487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18498_to, ; char* from + ptr @.TypeMapEntry.18497_from; char* to + }, ; 11488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18498_to, ; char* from + ptr @.TypeMapEntry.18497_from; char* to + }, ; 11489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18500_to, ; char* from + ptr @.TypeMapEntry.18499_from; char* to + }, ; 11490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18518_to, ; char* from + ptr null; char* to + }, ; 11491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18518_to, ; char* from + ptr null; char* to + }, ; 11492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18536_to, ; char* from + ptr @.TypeMapEntry.18535_from; char* to + }, ; 11493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18538_to, ; char* from + ptr @.TypeMapEntry.18537_from; char* to + }, ; 11494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18540_to, ; char* from + ptr @.TypeMapEntry.18539_from; char* to + }, ; 11495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18542_to, ; char* from + ptr @.TypeMapEntry.18541_from; char* to + }, ; 11496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18521_to, ; char* from + ptr null; char* to + }, ; 11497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18521_to, ; char* from + ptr null; char* to + }, ; 11498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18544_to, ; char* from + ptr @.TypeMapEntry.18543_from; char* to + }, ; 11499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18544_to, ; char* from + ptr @.TypeMapEntry.18543_from; char* to + }, ; 11500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18547_to, ; char* from + ptr @.TypeMapEntry.18546_from; char* to + }, ; 11501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18549_to, ; char* from + ptr @.TypeMapEntry.18548_from; char* to + }, ; 11502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18551_to, ; char* from + ptr @.TypeMapEntry.18550_from; char* to + }, ; 11503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18553_to, ; char* from + ptr @.TypeMapEntry.18552_from; char* to + }, ; 11504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18555_to, ; char* from + ptr @.TypeMapEntry.18554_from; char* to + }, ; 11505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18557_to, ; char* from + ptr @.TypeMapEntry.18556_from; char* to + }, ; 11506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18565_to, ; char* from + ptr @.TypeMapEntry.18564_from; char* to + }, ; 11507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18565_to, ; char* from + ptr @.TypeMapEntry.18564_from; char* to + }, ; 11508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18559_to, ; char* from + ptr @.TypeMapEntry.18558_from; char* to + }, ; 11509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18559_to, ; char* from + ptr @.TypeMapEntry.18558_from; char* to + }, ; 11510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18562_to, ; char* from + ptr @.TypeMapEntry.18561_from; char* to + }, ; 11511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18562_to, ; char* from + ptr @.TypeMapEntry.18561_from; char* to + }, ; 11512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18568_to, ; char* from + ptr @.TypeMapEntry.18567_from; char* to + }, ; 11513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18524_to, ; char* from + ptr null; char* to + }, ; 11514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18524_to, ; char* from + ptr null; char* to + }, ; 11515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18527_to, ; char* from + ptr null; char* to + }, ; 11516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18527_to, ; char* from + ptr null; char* to + }, ; 11517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18530_to, ; char* from + ptr null; char* to + }, ; 11518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18530_to, ; char* from + ptr null; char* to + }, ; 11519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18570_to, ; char* from + ptr @.TypeMapEntry.18569_from; char* to + }, ; 11520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18570_to, ; char* from + ptr @.TypeMapEntry.18569_from; char* to + }, ; 11521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18573_to, ; char* from + ptr @.TypeMapEntry.18572_from; char* to + }, ; 11522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18573_to, ; char* from + ptr @.TypeMapEntry.18572_from; char* to + }, ; 11523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18576_to, ; char* from + ptr @.TypeMapEntry.18575_from; char* to + }, ; 11524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18576_to, ; char* from + ptr @.TypeMapEntry.18575_from; char* to + }, ; 11525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18579_to, ; char* from + ptr @.TypeMapEntry.18578_from; char* to + }, ; 11526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18579_to, ; char* from + ptr @.TypeMapEntry.18578_from; char* to + }, ; 11527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18582_to, ; char* from + ptr @.TypeMapEntry.18581_from; char* to + }, ; 11528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18584_to, ; char* from + ptr @.TypeMapEntry.18583_from; char* to + }, ; 11529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18584_to, ; char* from + ptr @.TypeMapEntry.18583_from; char* to + }, ; 11530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18605_to, ; char* from + ptr @.TypeMapEntry.18604_from; char* to + }, ; 11531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18607_to, ; char* from + ptr @.TypeMapEntry.18606_from; char* to + }, ; 11532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18533_to, ; char* from + ptr null; char* to + }, ; 11533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18533_to, ; char* from + ptr null; char* to + }, ; 11534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18609_to, ; char* from + ptr @.TypeMapEntry.18608_from; char* to + }, ; 11535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18587_to, ; char* from + ptr @.TypeMapEntry.18586_from; char* to + }, ; 11536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18587_to, ; char* from + ptr @.TypeMapEntry.18586_from; char* to + }, ; 11537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18590_to, ; char* from + ptr @.TypeMapEntry.18589_from; char* to + }, ; 11538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18590_to, ; char* from + ptr @.TypeMapEntry.18589_from; char* to + }, ; 11539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18593_to, ; char* from + ptr @.TypeMapEntry.18592_from; char* to + }, ; 11540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18593_to, ; char* from + ptr @.TypeMapEntry.18592_from; char* to + }, ; 11541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18596_to, ; char* from + ptr @.TypeMapEntry.18595_from; char* to + }, ; 11542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18596_to, ; char* from + ptr @.TypeMapEntry.18595_from; char* to + }, ; 11543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18599_to, ; char* from + ptr @.TypeMapEntry.18598_from; char* to + }, ; 11544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18599_to, ; char* from + ptr @.TypeMapEntry.18598_from; char* to + }, ; 11545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18602_to, ; char* from + ptr @.TypeMapEntry.18601_from; char* to + }, ; 11546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18602_to, ; char* from + ptr @.TypeMapEntry.18601_from; char* to + }, ; 11547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18614_to, ; char* from + ptr @.TypeMapEntry.18613_from; char* to + }, ; 11548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18616_to, ; char* from + ptr @.TypeMapEntry.18615_from; char* to + }, ; 11549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18616_to, ; char* from + ptr @.TypeMapEntry.18615_from; char* to + }, ; 11550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18618_to, ; char* from + ptr @.TypeMapEntry.18617_from; char* to + }, ; 11551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18618_to, ; char* from + ptr @.TypeMapEntry.18617_from; char* to + }, ; 11552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18621_to, ; char* from + ptr @.TypeMapEntry.18620_from; char* to + }, ; 11553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18621_to, ; char* from + ptr @.TypeMapEntry.18620_from; char* to + }, ; 11554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18625_to, ; char* from + ptr @.TypeMapEntry.18624_from; char* to + }, ; 11555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18627_to, ; char* from + ptr @.TypeMapEntry.18626_from; char* to + }, ; 11556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18629_to, ; char* from + ptr @.TypeMapEntry.18628_from; char* to + }, ; 11557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18631_to, ; char* from + ptr @.TypeMapEntry.18630_from; char* to + }, ; 11558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18633_to, ; char* from + ptr @.TypeMapEntry.18632_from; char* to + }, ; 11559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18638_to, ; char* from + ptr @.TypeMapEntry.18637_from; char* to + }, ; 11560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18640_to, ; char* from + ptr @.TypeMapEntry.18639_from; char* to + }, ; 11561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18642_to, ; char* from + ptr @.TypeMapEntry.18641_from; char* to + }, ; 11562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18635_to, ; char* from + ptr @.TypeMapEntry.18634_from; char* to + }, ; 11563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18635_to, ; char* from + ptr @.TypeMapEntry.18634_from; char* to + }, ; 11564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18647_to, ; char* from + ptr @.TypeMapEntry.18646_from; char* to + }, ; 11565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18649_to, ; char* from + ptr @.TypeMapEntry.18648_from; char* to + }, ; 11566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18651_to, ; char* from + ptr @.TypeMapEntry.18650_from; char* to + }, ; 11567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18719_to, ; char* from + ptr @.TypeMapEntry.18718_from; char* to + }, ; 11568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18721_to, ; char* from + ptr @.TypeMapEntry.18720_from; char* to + }, ; 11569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18723_to, ; char* from + ptr @.TypeMapEntry.18722_from; char* to + }, ; 11570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18753_to, ; char* from + ptr null; char* to + }, ; 11571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18753_to, ; char* from + ptr null; char* to + }, ; 11572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18725_to, ; char* from + ptr @.TypeMapEntry.18724_from; char* to + }, ; 11573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18727_to, ; char* from + ptr @.TypeMapEntry.18726_from; char* to + }, ; 11574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18756_to, ; char* from + ptr null; char* to + }, ; 11575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18756_to, ; char* from + ptr null; char* to + }, ; 11576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18758_to, ; char* from + ptr null; char* to + }, ; 11577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18758_to, ; char* from + ptr null; char* to + }, ; 11578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18729_to, ; char* from + ptr @.TypeMapEntry.18728_from; char* to + }, ; 11579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18731_to, ; char* from + ptr @.TypeMapEntry.18730_from; char* to + }, ; 11580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18731_to, ; char* from + ptr @.TypeMapEntry.18730_from; char* to + }, ; 11581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18734_to, ; char* from + ptr @.TypeMapEntry.18733_from; char* to + }, ; 11582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18734_to, ; char* from + ptr @.TypeMapEntry.18733_from; char* to + }, ; 11583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18736_to, ; char* from + ptr @.TypeMapEntry.18735_from; char* to + }, ; 11584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18738_to, ; char* from + ptr @.TypeMapEntry.18737_from; char* to + }, ; 11585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18741_to, ; char* from + ptr @.TypeMapEntry.18740_from; char* to + }, ; 11586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18743_to, ; char* from + ptr @.TypeMapEntry.18742_from; char* to + }, ; 11587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18745_to, ; char* from + ptr @.TypeMapEntry.18744_from; char* to + }, ; 11588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18747_to, ; char* from + ptr @.TypeMapEntry.18746_from; char* to + }, ; 11589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18749_to, ; char* from + ptr @.TypeMapEntry.18748_from; char* to + }, ; 11590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18762_to, ; char* from + ptr null; char* to + }, ; 11591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18762_to, ; char* from + ptr null; char* to + }, ; 11592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18751_to, ; char* from + ptr @.TypeMapEntry.18750_from; char* to + }, ; 11593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18795_to, ; char* from + ptr @.TypeMapEntry.18794_from; char* to + }, ; 11594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18797_to, ; char* from + ptr @.TypeMapEntry.18796_from; char* to + }, ; 11595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18799_to, ; char* from + ptr @.TypeMapEntry.18798_from; char* to + }, ; 11596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18801_to, ; char* from + ptr @.TypeMapEntry.18800_from; char* to + }, ; 11597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18803_to, ; char* from + ptr @.TypeMapEntry.18802_from; char* to + }, ; 11598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18805_to, ; char* from + ptr @.TypeMapEntry.18804_from; char* to + }, ; 11599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18765_to, ; char* from + ptr null; char* to + }, ; 11600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18765_to, ; char* from + ptr null; char* to + }, ; 11601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18768_to, ; char* from + ptr null; char* to + }, ; 11602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18768_to, ; char* from + ptr null; char* to + }, ; 11603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18771_to, ; char* from + ptr null; char* to + }, ; 11604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18771_to, ; char* from + ptr null; char* to + }, ; 11605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18809_to, ; char* from + ptr @.TypeMapEntry.18808_from; char* to + }, ; 11606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18811_to, ; char* from + ptr @.TypeMapEntry.18810_from; char* to + }, ; 11607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18813_to, ; char* from + ptr @.TypeMapEntry.18812_from; char* to + }, ; 11608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18815_to, ; char* from + ptr @.TypeMapEntry.18814_from; char* to + }, ; 11609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18774_to, ; char* from + ptr null; char* to + }, ; 11610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18774_to, ; char* from + ptr null; char* to + }, ; 11611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18817_to, ; char* from + ptr @.TypeMapEntry.18816_from; char* to + }, ; 11612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18825_to, ; char* from + ptr @.TypeMapEntry.18824_from; char* to + }, ; 11613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18827_to, ; char* from + ptr @.TypeMapEntry.18826_from; char* to + }, ; 11614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18829_to, ; char* from + ptr @.TypeMapEntry.18828_from; char* to + }, ; 11615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18777_to, ; char* from + ptr null; char* to + }, ; 11616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18777_to, ; char* from + ptr null; char* to + }, ; 11617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18780_to, ; char* from + ptr null; char* to + }, ; 11618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18780_to, ; char* from + ptr null; char* to + }, ; 11619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18783_to, ; char* from + ptr null; char* to + }, ; 11620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18783_to, ; char* from + ptr null; char* to + }, ; 11621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18786_to, ; char* from + ptr null; char* to + }, ; 11622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18786_to, ; char* from + ptr null; char* to + }, ; 11623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18789_to, ; char* from + ptr null; char* to + }, ; 11624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18789_to, ; char* from + ptr null; char* to + }, ; 11625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18792_to, ; char* from + ptr null; char* to + }, ; 11626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18792_to, ; char* from + ptr null; char* to + }, ; 11627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18655_to, ; char* from + ptr @.TypeMapEntry.18654_from; char* to + }, ; 11628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18653_to, ; char* from + ptr @.TypeMapEntry.18652_from; char* to + }, ; 11629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18657_to, ; char* from + ptr @.TypeMapEntry.18656_from; char* to + }, ; 11630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18659_to, ; char* from + ptr @.TypeMapEntry.18658_from; char* to + }, ; 11631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18661_to, ; char* from + ptr @.TypeMapEntry.18660_from; char* to + }, ; 11632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18665_to, ; char* from + ptr null; char* to + }, ; 11633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18665_to, ; char* from + ptr null; char* to + }, ; 11634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18668_to, ; char* from + ptr null; char* to + }, ; 11635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18668_to, ; char* from + ptr null; char* to + }, ; 11636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18671_to, ; char* from + ptr null; char* to + }, ; 11637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18671_to, ; char* from + ptr null; char* to + }, ; 11638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18674_to, ; char* from + ptr null; char* to + }, ; 11639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18674_to, ; char* from + ptr null; char* to + }, ; 11640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18677_to, ; char* from + ptr null; char* to + }, ; 11641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18677_to, ; char* from + ptr null; char* to + }, ; 11642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18680_to, ; char* from + ptr null; char* to + }, ; 11643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18680_to, ; char* from + ptr null; char* to + }, ; 11644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18683_to, ; char* from + ptr null; char* to + }, ; 11645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18683_to, ; char* from + ptr null; char* to + }, ; 11646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18686_to, ; char* from + ptr null; char* to + }, ; 11647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18686_to, ; char* from + ptr null; char* to + }, ; 11648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18689_to, ; char* from + ptr null; char* to + }, ; 11649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18689_to, ; char* from + ptr null; char* to + }, ; 11650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18692_to, ; char* from + ptr null; char* to + }, ; 11651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18692_to, ; char* from + ptr null; char* to + }, ; 11652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18663_to, ; char* from + ptr @.TypeMapEntry.18662_from; char* to + }, ; 11653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18695_to, ; char* from + ptr null; char* to + }, ; 11654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18695_to, ; char* from + ptr null; char* to + }, ; 11655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18698_to, ; char* from + ptr null; char* to + }, ; 11656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18698_to, ; char* from + ptr null; char* to + }, ; 11657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18701_to, ; char* from + ptr null; char* to + }, ; 11658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18701_to, ; char* from + ptr null; char* to + }, ; 11659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18710_to, ; char* from + ptr @.TypeMapEntry.18709_from; char* to + }, ; 11660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18712_to, ; char* from + ptr @.TypeMapEntry.18711_from; char* to + }, ; 11661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18704_to, ; char* from + ptr null; char* to + }, ; 11662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18704_to, ; char* from + ptr null; char* to + }, ; 11663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18707_to, ; char* from + ptr null; char* to + }, ; 11664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18707_to, ; char* from + ptr null; char* to + }, ; 11665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18714_to, ; char* from + ptr @.TypeMapEntry.18713_from; char* to + }, ; 11666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18714_to, ; char* from + ptr @.TypeMapEntry.18713_from; char* to + }, ; 11667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18717_to, ; char* from + ptr @.TypeMapEntry.18716_from; char* to + }, ; 11668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18819_to, ; char* from + ptr @.TypeMapEntry.18818_from; char* to + }, ; 11669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18819_to, ; char* from + ptr @.TypeMapEntry.18818_from; char* to + }, ; 11670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18822_to, ; char* from + ptr @.TypeMapEntry.18821_from; char* to + }, ; 11671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18822_to, ; char* from + ptr @.TypeMapEntry.18821_from; char* to + }, ; 11672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18850_to, ; char* from + ptr @.TypeMapEntry.18849_from; char* to + }, ; 11673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18852_to, ; char* from + ptr @.TypeMapEntry.18851_from; char* to + }, ; 11674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18854_to, ; char* from + ptr @.TypeMapEntry.18853_from; char* to + }, ; 11675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19054_to, ; char* from + ptr null; char* to + }, ; 11676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19054_to, ; char* from + ptr null; char* to + }, ; 11677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18877_to, ; char* from + ptr @.TypeMapEntry.18876_from; char* to + }, ; 11678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18879_to, ; char* from + ptr @.TypeMapEntry.18878_from; char* to + }, ; 11679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18879_to, ; char* from + ptr @.TypeMapEntry.18878_from; char* to + }, ; 11680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18882_to, ; char* from + ptr @.TypeMapEntry.18881_from; char* to + }, ; 11681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18884_to, ; char* from + ptr @.TypeMapEntry.18883_from; char* to + }, ; 11682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18884_to, ; char* from + ptr @.TypeMapEntry.18883_from; char* to + }, ; 11683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18887_to, ; char* from + ptr @.TypeMapEntry.18886_from; char* to + }, ; 11684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18889_to, ; char* from + ptr @.TypeMapEntry.18888_from; char* to + }, ; 11685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18889_to, ; char* from + ptr @.TypeMapEntry.18888_from; char* to + }, ; 11686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18892_to, ; char* from + ptr @.TypeMapEntry.18891_from; char* to + }, ; 11687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18892_to, ; char* from + ptr @.TypeMapEntry.18891_from; char* to + }, ; 11688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19057_to, ; char* from + ptr null; char* to + }, ; 11689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19057_to, ; char* from + ptr null; char* to + }, ; 11690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19026_to, ; char* from + ptr @.TypeMapEntry.19025_from; char* to + }, ; 11691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19028_to, ; char* from + ptr @.TypeMapEntry.19027_from; char* to + }, ; 11692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19030_to, ; char* from + ptr @.TypeMapEntry.19029_from; char* to + }, ; 11693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19032_to, ; char* from + ptr @.TypeMapEntry.19031_from; char* to + }, ; 11694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19034_to, ; char* from + ptr @.TypeMapEntry.19033_from; char* to + }, ; 11695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19036_to, ; char* from + ptr @.TypeMapEntry.19035_from; char* to + }, ; 11696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19060_to, ; char* from + ptr null; char* to + }, ; 11697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19060_to, ; char* from + ptr null; char* to + }, ; 11698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19038_to, ; char* from + ptr @.TypeMapEntry.19037_from; char* to + }, ; 11699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19048_to, ; char* from + ptr @.TypeMapEntry.19047_from; char* to + }, ; 11700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19040_to, ; char* from + ptr @.TypeMapEntry.19039_from; char* to + }, ; 11701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19042_to, ; char* from + ptr @.TypeMapEntry.19041_from; char* to + }, ; 11702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19044_to, ; char* from + ptr @.TypeMapEntry.19043_from; char* to + }, ; 11703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19046_to, ; char* from + ptr @.TypeMapEntry.19045_from; char* to + }, ; 11704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19050_to, ; char* from + ptr @.TypeMapEntry.19049_from; char* to + }, ; 11705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19063_to, ; char* from + ptr null; char* to + }, ; 11706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19063_to, ; char* from + ptr null; char* to + }, ; 11707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19052_to, ; char* from + ptr @.TypeMapEntry.19051_from; char* to + }, ; 11708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19087_to, ; char* from + ptr @.TypeMapEntry.19086_from; char* to + }, ; 11709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19087_to, ; char* from + ptr @.TypeMapEntry.19086_from; char* to + }, ; 11710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19090_to, ; char* from + ptr @.TypeMapEntry.19089_from; char* to + }, ; 11711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19090_to, ; char* from + ptr @.TypeMapEntry.19089_from; char* to + }, ; 11712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19166_to, ; char* from + ptr @.TypeMapEntry.19165_from; char* to + }, ; 11713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19168_to, ; char* from + ptr @.TypeMapEntry.19167_from; char* to + }, ; 11714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19170_to, ; char* from + ptr @.TypeMapEntry.19169_from; char* to + }, ; 11715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19066_to, ; char* from + ptr null; char* to + }, ; 11716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19066_to, ; char* from + ptr null; char* to + }, ; 11717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19174_to, ; char* from + ptr @.TypeMapEntry.19173_from; char* to + }, ; 11718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19176_to, ; char* from + ptr @.TypeMapEntry.19175_from; char* to + }, ; 11719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19178_to, ; char* from + ptr @.TypeMapEntry.19177_from; char* to + }, ; 11720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19178_to, ; char* from + ptr @.TypeMapEntry.19177_from; char* to + }, ; 11721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19181_to, ; char* from + ptr @.TypeMapEntry.19180_from; char* to + }, ; 11722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19183_to, ; char* from + ptr @.TypeMapEntry.19182_from; char* to + }, ; 11723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19185_to, ; char* from + ptr @.TypeMapEntry.19184_from; char* to + }, ; 11724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19185_to, ; char* from + ptr @.TypeMapEntry.19184_from; char* to + }, ; 11725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19188_to, ; char* from + ptr @.TypeMapEntry.19187_from; char* to + }, ; 11726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19188_to, ; char* from + ptr @.TypeMapEntry.19187_from; char* to + }, ; 11727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19193_to, ; char* from + ptr @.TypeMapEntry.19192_from; char* to + }, ; 11728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19191_to, ; char* from + ptr @.TypeMapEntry.19190_from; char* to + }, ; 11729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19220_to, ; char* from + ptr @.TypeMapEntry.19219_from; char* to + }, ; 11730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19195_to, ; char* from + ptr @.TypeMapEntry.19194_from; char* to + }, ; 11731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19195_to, ; char* from + ptr @.TypeMapEntry.19194_from; char* to + }, ; 11732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19198_to, ; char* from + ptr @.TypeMapEntry.19197_from; char* to + }, ; 11733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19200_to, ; char* from + ptr null; char* to + }, ; 11734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19200_to, ; char* from + ptr null; char* to + }, ; 11735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19202_to, ; char* from + ptr null; char* to + }, ; 11736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19202_to, ; char* from + ptr null; char* to + }, ; 11737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19206_to, ; char* from + ptr null; char* to + }, ; 11738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19206_to, ; char* from + ptr null; char* to + }, ; 11739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19212_to, ; char* from + ptr @.TypeMapEntry.19211_from; char* to + }, ; 11740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19214_to, ; char* from + ptr @.TypeMapEntry.19213_from; char* to + }, ; 11741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19209_to, ; char* from + ptr null; char* to + }, ; 11742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19209_to, ; char* from + ptr null; char* to + }, ; 11743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19216_to, ; char* from + ptr @.TypeMapEntry.19215_from; char* to + }, ; 11744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19218_to, ; char* from + ptr @.TypeMapEntry.19217_from; char* to + }, ; 11745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19222_to, ; char* from + ptr @.TypeMapEntry.19221_from; char* to + }, ; 11746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19224_to, ; char* from + ptr @.TypeMapEntry.19223_from; char* to + }, ; 11747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19224_to, ; char* from + ptr @.TypeMapEntry.19223_from; char* to + }, ; 11748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19227_to, ; char* from + ptr @.TypeMapEntry.19226_from; char* to + }, ; 11749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19227_to, ; char* from + ptr @.TypeMapEntry.19226_from; char* to + }, ; 11750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19230_to, ; char* from + ptr @.TypeMapEntry.19229_from; char* to + }, ; 11751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19230_to, ; char* from + ptr @.TypeMapEntry.19229_from; char* to + }, ; 11752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19233_to, ; char* from + ptr @.TypeMapEntry.19232_from; char* to + }, ; 11753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19235_to, ; char* from + ptr @.TypeMapEntry.19234_from; char* to + }, ; 11754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19237_to, ; char* from + ptr @.TypeMapEntry.19236_from; char* to + }, ; 11755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19239_to, ; char* from + ptr @.TypeMapEntry.19238_from; char* to + }, ; 11756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19239_to, ; char* from + ptr @.TypeMapEntry.19238_from; char* to + }, ; 11757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19241_to, ; char* from + ptr @.TypeMapEntry.19240_from; char* to + }, ; 11758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19241_to, ; char* from + ptr @.TypeMapEntry.19240_from; char* to + }, ; 11759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19245_to, ; char* from + ptr @.TypeMapEntry.19244_from; char* to + }, ; 11760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19250_to, ; char* from + ptr @.TypeMapEntry.19249_from; char* to + }, ; 11761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19250_to, ; char* from + ptr @.TypeMapEntry.19249_from; char* to + }, ; 11762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19247_to, ; char* from + ptr null; char* to + }, ; 11763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19247_to, ; char* from + ptr null; char* to + }, ; 11764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19253_to, ; char* from + ptr @.TypeMapEntry.19252_from; char* to + }, ; 11765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19253_to, ; char* from + ptr @.TypeMapEntry.19252_from; char* to + }, ; 11766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19069_to, ; char* from + ptr null; char* to + }, ; 11767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19069_to, ; char* from + ptr null; char* to + }, ; 11768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19072_to, ; char* from + ptr null; char* to + }, ; 11769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19072_to, ; char* from + ptr null; char* to + }, ; 11770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19075_to, ; char* from + ptr null; char* to + }, ; 11771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19075_to, ; char* from + ptr null; char* to + }, ; 11772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19258_to, ; char* from + ptr @.TypeMapEntry.19257_from; char* to + }, ; 11773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19078_to, ; char* from + ptr null; char* to + }, ; 11774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19078_to, ; char* from + ptr null; char* to + }, ; 11775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19260_to, ; char* from + ptr @.TypeMapEntry.19259_from; char* to + }, ; 11776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19264_to, ; char* from + ptr @.TypeMapEntry.19263_from; char* to + }, ; 11777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19264_to, ; char* from + ptr @.TypeMapEntry.19263_from; char* to + }, ; 11778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19262_to, ; char* from + ptr @.TypeMapEntry.19261_from; char* to + }, ; 11779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19266_to, ; char* from + ptr @.TypeMapEntry.19265_from; char* to + }, ; 11780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19081_to, ; char* from + ptr null; char* to + }, ; 11781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19081_to, ; char* from + ptr null; char* to + }, ; 11782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19271_to, ; char* from + ptr @.TypeMapEntry.19270_from; char* to + }, ; 11783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19273_to, ; char* from + ptr @.TypeMapEntry.19272_from; char* to + }, ; 11784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19084_to, ; char* from + ptr null; char* to + }, ; 11785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19084_to, ; char* from + ptr null; char* to + }, ; 11786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19275_to, ; char* from + ptr @.TypeMapEntry.19274_from; char* to + }, ; 11787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19275_to, ; char* from + ptr @.TypeMapEntry.19274_from; char* to + }, ; 11788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19278_to, ; char* from + ptr @.TypeMapEntry.19277_from; char* to + }, ; 11789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19280_to, ; char* from + ptr @.TypeMapEntry.19279_from; char* to + }, ; 11790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19282_to, ; char* from + ptr @.TypeMapEntry.19281_from; char* to + }, ; 11791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19282_to, ; char* from + ptr @.TypeMapEntry.19281_from; char* to + }, ; 11792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19284_to, ; char* from + ptr @.TypeMapEntry.19283_from; char* to + }, ; 11793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19287_to, ; char* from + ptr @.TypeMapEntry.19286_from; char* to + }, ; 11794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19287_to, ; char* from + ptr @.TypeMapEntry.19286_from; char* to + }, ; 11795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19290_to, ; char* from + ptr @.TypeMapEntry.19289_from; char* to + }, ; 11796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19292_to, ; char* from + ptr @.TypeMapEntry.19291_from; char* to + }, ; 11797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19292_to, ; char* from + ptr @.TypeMapEntry.19291_from; char* to + }, ; 11798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19369_to, ; char* from + ptr @.TypeMapEntry.19368_from; char* to + }, ; 11799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19371_to, ; char* from + ptr @.TypeMapEntry.19370_from; char* to + }, ; 11800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19373_to, ; char* from + ptr @.TypeMapEntry.19372_from; char* to + }, ; 11801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19375_to, ; char* from + ptr @.TypeMapEntry.19374_from; char* to + }, ; 11802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18858_to, ; char* from + ptr null; char* to + }, ; 11803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18858_to, ; char* from + ptr null; char* to + }, ; 11804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18860_to, ; char* from + ptr null; char* to + }, ; 11805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18860_to, ; char* from + ptr null; char* to + }, ; 11806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18856_to, ; char* from + ptr @.TypeMapEntry.18855_from; char* to + }, ; 11807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18864_to, ; char* from + ptr null; char* to + }, ; 11808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18864_to, ; char* from + ptr null; char* to + }, ; 11809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18873_to, ; char* from + ptr @.TypeMapEntry.18872_from; char* to + }, ; 11810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18875_to, ; char* from + ptr @.TypeMapEntry.18874_from; char* to + }, ; 11811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18867_to, ; char* from + ptr null; char* to + }, ; 11812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18867_to, ; char* from + ptr null; char* to + }, ; 11813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18870_to, ; char* from + ptr null; char* to + }, ; 11814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18870_to, ; char* from + ptr null; char* to + }, ; 11815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18895_to, ; char* from + ptr @.TypeMapEntry.18894_from; char* to + }, ; 11816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18895_to, ; char* from + ptr @.TypeMapEntry.18894_from; char* to + }, ; 11817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18897_to, ; char* from + ptr @.TypeMapEntry.18896_from; char* to + }, ; 11818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18900_to, ; char* from + ptr @.TypeMapEntry.18899_from; char* to + }, ; 11819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18957_to, ; char* from + ptr null; char* to + }, ; 11820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18957_to, ; char* from + ptr null; char* to + }, ; 11821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18904_to, ; char* from + ptr @.TypeMapEntry.18903_from; char* to + }, ; 11822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18904_to, ; char* from + ptr @.TypeMapEntry.18903_from; char* to + }, ; 11823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18902_to, ; char* from + ptr @.TypeMapEntry.18901_from; char* to + }, ; 11824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18906_to, ; char* from + ptr @.TypeMapEntry.18905_from; char* to + }, ; 11825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18908_to, ; char* from + ptr @.TypeMapEntry.18907_from; char* to + }, ; 11826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18960_to, ; char* from + ptr null; char* to + }, ; 11827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18960_to, ; char* from + ptr null; char* to + }, ; 11828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18910_to, ; char* from + ptr @.TypeMapEntry.18909_from; char* to + }, ; 11829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18910_to, ; char* from + ptr @.TypeMapEntry.18909_from; char* to + }, ; 11830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18963_to, ; char* from + ptr null; char* to + }, ; 11831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18963_to, ; char* from + ptr null; char* to + }, ; 11832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18966_to, ; char* from + ptr null; char* to + }, ; 11833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18966_to, ; char* from + ptr null; char* to + }, ; 11834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18914_to, ; char* from + ptr @.TypeMapEntry.18913_from; char* to + }, ; 11835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18921_to, ; char* from + ptr @.TypeMapEntry.18920_from; char* to + }, ; 11836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18916_to, ; char* from + ptr @.TypeMapEntry.18915_from; char* to + }, ; 11837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18918_to, ; char* from + ptr null; char* to + }, ; 11838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18918_to, ; char* from + ptr null; char* to + }, ; 11839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18969_to, ; char* from + ptr null; char* to + }, ; 11840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18969_to, ; char* from + ptr null; char* to + }, ; 11841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18923_to, ; char* from + ptr @.TypeMapEntry.18922_from; char* to + }, ; 11842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18923_to, ; char* from + ptr @.TypeMapEntry.18922_from; char* to + }, ; 11843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18972_to, ; char* from + ptr null; char* to + }, ; 11844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18972_to, ; char* from + ptr null; char* to + }, ; 11845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18926_to, ; char* from + ptr @.TypeMapEntry.18925_from; char* to + }, ; 11846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18928_to, ; char* from + ptr @.TypeMapEntry.18927_from; char* to + }, ; 11847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18975_to, ; char* from + ptr null; char* to + }, ; 11848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18975_to, ; char* from + ptr null; char* to + }, ; 11849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18930_to, ; char* from + ptr @.TypeMapEntry.18929_from; char* to + }, ; 11850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18930_to, ; char* from + ptr @.TypeMapEntry.18929_from; char* to + }, ; 11851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18935_to, ; char* from + ptr @.TypeMapEntry.18934_from; char* to + }, ; 11852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18935_to, ; char* from + ptr @.TypeMapEntry.18934_from; char* to + }, ; 11853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18933_to, ; char* from + ptr @.TypeMapEntry.18932_from; char* to + }, ; 11854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18937_to, ; char* from + ptr @.TypeMapEntry.18936_from; char* to + }, ; 11855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18939_to, ; char* from + ptr @.TypeMapEntry.18938_from; char* to + }, ; 11856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18941_to, ; char* from + ptr @.TypeMapEntry.18940_from; char* to + }, ; 11857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18943_to, ; char* from + ptr @.TypeMapEntry.18942_from; char* to + }, ; 11858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18945_to, ; char* from + ptr @.TypeMapEntry.18944_from; char* to + }, ; 11859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18945_to, ; char* from + ptr @.TypeMapEntry.18944_from; char* to + }, ; 11860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18949_to, ; char* from + ptr @.TypeMapEntry.18948_from; char* to + }, ; 11861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18951_to, ; char* from + ptr @.TypeMapEntry.18950_from; char* to + }, ; 11862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18953_to, ; char* from + ptr @.TypeMapEntry.18952_from; char* to + }, ; 11863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18955_to, ; char* from + ptr @.TypeMapEntry.18954_from; char* to + }, ; 11864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18978_to, ; char* from + ptr null; char* to + }, ; 11865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18978_to, ; char* from + ptr null; char* to + }, ; 11866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18987_to, ; char* from + ptr @.TypeMapEntry.18986_from; char* to + }, ; 11867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18989_to, ; char* from + ptr @.TypeMapEntry.18988_from; char* to + }, ; 11868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18991_to, ; char* from + ptr @.TypeMapEntry.18990_from; char* to + }, ; 11869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18993_to, ; char* from + ptr @.TypeMapEntry.18992_from; char* to + }, ; 11870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18993_to, ; char* from + ptr @.TypeMapEntry.18992_from; char* to + }, ; 11871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18996_to, ; char* from + ptr @.TypeMapEntry.18995_from; char* to + }, ; 11872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18998_to, ; char* from + ptr @.TypeMapEntry.18997_from; char* to + }, ; 11873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19000_to, ; char* from + ptr @.TypeMapEntry.18999_from; char* to + }, ; 11874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19004_to, ; char* from + ptr @.TypeMapEntry.19003_from; char* to + }, ; 11875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19004_to, ; char* from + ptr @.TypeMapEntry.19003_from; char* to + }, ; 11876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19002_to, ; char* from + ptr @.TypeMapEntry.19001_from; char* to + }, ; 11877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18981_to, ; char* from + ptr null; char* to + }, ; 11878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18981_to, ; char* from + ptr null; char* to + }, ; 11879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19007_to, ; char* from + ptr @.TypeMapEntry.19006_from; char* to + }, ; 11880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19009_to, ; char* from + ptr @.TypeMapEntry.19008_from; char* to + }, ; 11881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19011_to, ; char* from + ptr @.TypeMapEntry.19010_from; char* to + }, ; 11882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19013_to, ; char* from + ptr @.TypeMapEntry.19012_from; char* to + }, ; 11883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19013_to, ; char* from + ptr @.TypeMapEntry.19012_from; char* to + }, ; 11884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19015_to, ; char* from + ptr @.TypeMapEntry.19014_from; char* to + }, ; 11885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19015_to, ; char* from + ptr @.TypeMapEntry.19014_from; char* to + }, ; 11886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19019_to, ; char* from + ptr @.TypeMapEntry.19018_from; char* to + }, ; 11887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19021_to, ; char* from + ptr @.TypeMapEntry.19020_from; char* to + }, ; 11888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19023_to, ; char* from + ptr @.TypeMapEntry.19022_from; char* to + }, ; 11889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19023_to, ; char* from + ptr @.TypeMapEntry.19022_from; char* to + }, ; 11890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18984_to, ; char* from + ptr null; char* to + }, ; 11891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18984_to, ; char* from + ptr null; char* to + }, ; 11892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19101_to, ; char* from + ptr null; char* to + }, ; 11893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19101_to, ; char* from + ptr null; char* to + }, ; 11894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19104_to, ; char* from + ptr null; char* to + }, ; 11895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19104_to, ; char* from + ptr null; char* to + }, ; 11896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19107_to, ; char* from + ptr null; char* to + }, ; 11897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19107_to, ; char* from + ptr null; char* to + }, ; 11898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19110_to, ; char* from + ptr null; char* to + }, ; 11899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19110_to, ; char* from + ptr null; char* to + }, ; 11900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19113_to, ; char* from + ptr null; char* to + }, ; 11901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19113_to, ; char* from + ptr null; char* to + }, ; 11902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19116_to, ; char* from + ptr null; char* to + }, ; 11903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19116_to, ; char* from + ptr null; char* to + }, ; 11904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19119_to, ; char* from + ptr null; char* to + }, ; 11905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19119_to, ; char* from + ptr null; char* to + }, ; 11906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19122_to, ; char* from + ptr null; char* to + }, ; 11907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19122_to, ; char* from + ptr null; char* to + }, ; 11908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19125_to, ; char* from + ptr null; char* to + }, ; 11909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19125_to, ; char* from + ptr null; char* to + }, ; 11910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19128_to, ; char* from + ptr null; char* to + }, ; 11911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19128_to, ; char* from + ptr null; char* to + }, ; 11912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19131_to, ; char* from + ptr null; char* to + }, ; 11913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19131_to, ; char* from + ptr null; char* to + }, ; 11914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19134_to, ; char* from + ptr null; char* to + }, ; 11915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19134_to, ; char* from + ptr null; char* to + }, ; 11916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19137_to, ; char* from + ptr null; char* to + }, ; 11917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19137_to, ; char* from + ptr null; char* to + }, ; 11918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19140_to, ; char* from + ptr null; char* to + }, ; 11919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19140_to, ; char* from + ptr null; char* to + }, ; 11920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19143_to, ; char* from + ptr null; char* to + }, ; 11921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19143_to, ; char* from + ptr null; char* to + }, ; 11922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19146_to, ; char* from + ptr null; char* to + }, ; 11923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19146_to, ; char* from + ptr null; char* to + }, ; 11924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19149_to, ; char* from + ptr null; char* to + }, ; 11925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19149_to, ; char* from + ptr null; char* to + }, ; 11926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19152_to, ; char* from + ptr null; char* to + }, ; 11927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19152_to, ; char* from + ptr null; char* to + }, ; 11928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19155_to, ; char* from + ptr null; char* to + }, ; 11929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19155_to, ; char* from + ptr null; char* to + }, ; 11930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19330_to, ; char* from + ptr null; char* to + }, ; 11931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19330_to, ; char* from + ptr null; char* to + }, ; 11932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19295_to, ; char* from + ptr @.TypeMapEntry.19294_from; char* to + }, ; 11933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19297_to, ; char* from + ptr @.TypeMapEntry.19296_from; char* to + }, ; 11934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19299_to, ; char* from + ptr @.TypeMapEntry.19298_from; char* to + }, ; 11935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19301_to, ; char* from + ptr @.TypeMapEntry.19300_from; char* to + }, ; 11936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19333_to, ; char* from + ptr null; char* to + }, ; 11937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19333_to, ; char* from + ptr null; char* to + }, ; 11938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19303_to, ; char* from + ptr @.TypeMapEntry.19302_from; char* to + }, ; 11939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19305_to, ; char* from + ptr @.TypeMapEntry.19304_from; char* to + }, ; 11940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19307_to, ; char* from + ptr @.TypeMapEntry.19306_from; char* to + }, ; 11941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19309_to, ; char* from + ptr @.TypeMapEntry.19308_from; char* to + }, ; 11942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19311_to, ; char* from + ptr @.TypeMapEntry.19310_from; char* to + }, ; 11943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19313_to, ; char* from + ptr @.TypeMapEntry.19312_from; char* to + }, ; 11944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19315_to, ; char* from + ptr @.TypeMapEntry.19314_from; char* to + }, ; 11945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19317_to, ; char* from + ptr @.TypeMapEntry.19316_from; char* to + }, ; 11946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19319_to, ; char* from + ptr @.TypeMapEntry.19318_from; char* to + }, ; 11947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19321_to, ; char* from + ptr @.TypeMapEntry.19320_from; char* to + }, ; 11948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19323_to, ; char* from + ptr @.TypeMapEntry.19322_from; char* to + }, ; 11949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19325_to, ; char* from + ptr @.TypeMapEntry.19324_from; char* to + }, ; 11950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19327_to, ; char* from + ptr @.TypeMapEntry.19326_from; char* to + }, ; 11951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19327_to, ; char* from + ptr @.TypeMapEntry.19326_from; char* to + }, ; 11952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19339_to, ; char* from + ptr @.TypeMapEntry.19338_from; char* to + }, ; 11953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19341_to, ; char* from + ptr @.TypeMapEntry.19340_from; char* to + }, ; 11954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19336_to, ; char* from + ptr null; char* to + }, ; 11955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19336_to, ; char* from + ptr null; char* to + }, ; 11956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19343_to, ; char* from + ptr @.TypeMapEntry.19342_from; char* to + }, ; 11957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19345_to, ; char* from + ptr @.TypeMapEntry.19344_from; char* to + }, ; 11958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19347_to, ; char* from + ptr @.TypeMapEntry.19346_from; char* to + }, ; 11959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19349_to, ; char* from + ptr @.TypeMapEntry.19348_from; char* to + }, ; 11960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19351_to, ; char* from + ptr @.TypeMapEntry.19350_from; char* to + }, ; 11961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19353_to, ; char* from + ptr @.TypeMapEntry.19352_from; char* to + }, ; 11962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19355_to, ; char* from + ptr @.TypeMapEntry.19354_from; char* to + }, ; 11963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19357_to, ; char* from + ptr @.TypeMapEntry.19356_from; char* to + }, ; 11964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19359_to, ; char* from + ptr @.TypeMapEntry.19358_from; char* to + }, ; 11965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19361_to, ; char* from + ptr @.TypeMapEntry.19360_from; char* to + }, ; 11966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19363_to, ; char* from + ptr @.TypeMapEntry.19362_from; char* to + }, ; 11967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19365_to, ; char* from + ptr @.TypeMapEntry.19364_from; char* to + }, ; 11968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19367_to, ; char* from + ptr @.TypeMapEntry.19366_from; char* to + }, ; 11969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19393_to, ; char* from + ptr null; char* to + }, ; 11970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19393_to, ; char* from + ptr null; char* to + }, ; 11971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19377_to, ; char* from + ptr @.TypeMapEntry.19376_from; char* to + }, ; 11972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19396_to, ; char* from + ptr null; char* to + }, ; 11973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19396_to, ; char* from + ptr null; char* to + }, ; 11974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19399_to, ; char* from + ptr null; char* to + }, ; 11975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19399_to, ; char* from + ptr null; char* to + }, ; 11976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19379_to, ; char* from + ptr @.TypeMapEntry.19378_from; char* to + }, ; 11977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19402_to, ; char* from + ptr null; char* to + }, ; 11978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19402_to, ; char* from + ptr null; char* to + }, ; 11979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19405_to, ; char* from + ptr null; char* to + }, ; 11980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19405_to, ; char* from + ptr null; char* to + }, ; 11981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19383_to, ; char* from + ptr @.TypeMapEntry.19382_from; char* to + }, ; 11982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19408_to, ; char* from + ptr null; char* to + }, ; 11983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19408_to, ; char* from + ptr null; char* to + }, ; 11984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19387_to, ; char* from + ptr @.TypeMapEntry.19386_from; char* to + }, ; 11985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19411_to, ; char* from + ptr null; char* to + }, ; 11986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19411_to, ; char* from + ptr null; char* to + }, ; 11987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19389_to, ; char* from + ptr @.TypeMapEntry.19388_from; char* to + }, ; 11988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19391_to, ; char* from + ptr @.TypeMapEntry.19390_from; char* to + }, ; 11989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19414_to, ; char* from + ptr null; char* to + }, ; 11990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19414_to, ; char* from + ptr null; char* to + }, ; 11991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19417_to, ; char* from + ptr null; char* to + }, ; 11992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19417_to, ; char* from + ptr null; char* to + }, ; 11993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19420_to, ; char* from + ptr null; char* to + }, ; 11994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19420_to, ; char* from + ptr null; char* to + }, ; 11995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19423_to, ; char* from + ptr null; char* to + }, ; 11996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19423_to, ; char* from + ptr null; char* to + }, ; 11997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19426_to, ; char* from + ptr null; char* to + }, ; 11998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19426_to, ; char* from + ptr null; char* to + }, ; 11999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19429_to, ; char* from + ptr null; char* to + }, ; 12000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19429_to, ; char* from + ptr null; char* to + }, ; 12001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19432_to, ; char* from + ptr null; char* to + }, ; 12002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19432_to, ; char* from + ptr null; char* to + }, ; 12003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19465_to, ; char* from + ptr @.TypeMapEntry.19464_from; char* to + }, ; 12004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19467_to, ; char* from + ptr @.TypeMapEntry.19466_from; char* to + }, ; 12005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19435_to, ; char* from + ptr null; char* to + }, ; 12006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19435_to, ; char* from + ptr null; char* to + }, ; 12007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19469_to, ; char* from + ptr @.TypeMapEntry.19468_from; char* to + }, ; 12008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19471_to, ; char* from + ptr @.TypeMapEntry.19470_from; char* to + }, ; 12009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19473_to, ; char* from + ptr @.TypeMapEntry.19472_from; char* to + }, ; 12010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19438_to, ; char* from + ptr null; char* to + }, ; 12011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19438_to, ; char* from + ptr null; char* to + }, ; 12012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19475_to, ; char* from + ptr @.TypeMapEntry.19474_from; char* to + }, ; 12013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19477_to, ; char* from + ptr @.TypeMapEntry.19476_from; char* to + }, ; 12014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19479_to, ; char* from + ptr @.TypeMapEntry.19478_from; char* to + }, ; 12015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19481_to, ; char* from + ptr @.TypeMapEntry.19480_from; char* to + }, ; 12016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19441_to, ; char* from + ptr null; char* to + }, ; 12017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19441_to, ; char* from + ptr null; char* to + }, ; 12018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19483_to, ; char* from + ptr @.TypeMapEntry.19482_from; char* to + }, ; 12019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19485_to, ; char* from + ptr @.TypeMapEntry.19484_from; char* to + }, ; 12020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19487_to, ; char* from + ptr @.TypeMapEntry.19486_from; char* to + }, ; 12021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19489_to, ; char* from + ptr @.TypeMapEntry.19488_from; char* to + }, ; 12022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19491_to, ; char* from + ptr @.TypeMapEntry.19490_from; char* to + }, ; 12023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19493_to, ; char* from + ptr @.TypeMapEntry.19492_from; char* to + }, ; 12024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19495_to, ; char* from + ptr @.TypeMapEntry.19494_from; char* to + }, ; 12025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19497_to, ; char* from + ptr @.TypeMapEntry.19496_from; char* to + }, ; 12026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19444_to, ; char* from + ptr null; char* to + }, ; 12027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19444_to, ; char* from + ptr null; char* to + }, ; 12028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19447_to, ; char* from + ptr null; char* to + }, ; 12029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19447_to, ; char* from + ptr null; char* to + }, ; 12030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19450_to, ; char* from + ptr null; char* to + }, ; 12031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19450_to, ; char* from + ptr null; char* to + }, ; 12032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19453_to, ; char* from + ptr null; char* to + }, ; 12033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19453_to, ; char* from + ptr null; char* to + }, ; 12034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19501_to, ; char* from + ptr @.TypeMapEntry.19500_from; char* to + }, ; 12035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19503_to, ; char* from + ptr @.TypeMapEntry.19502_from; char* to + }, ; 12036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19505_to, ; char* from + ptr @.TypeMapEntry.19504_from; char* to + }, ; 12037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19456_to, ; char* from + ptr null; char* to + }, ; 12038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19456_to, ; char* from + ptr null; char* to + }, ; 12039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19507_to, ; char* from + ptr @.TypeMapEntry.19506_from; char* to + }, ; 12040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19543_to, ; char* from + ptr null; char* to + }, ; 12041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19543_to, ; char* from + ptr null; char* to + }, ; 12042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19509_to, ; char* from + ptr @.TypeMapEntry.19508_from; char* to + }, ; 12043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19511_to, ; char* from + ptr @.TypeMapEntry.19510_from; char* to + }, ; 12044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19513_to, ; char* from + ptr @.TypeMapEntry.19512_from; char* to + }, ; 12045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19515_to, ; char* from + ptr @.TypeMapEntry.19514_from; char* to + }, ; 12046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19515_to, ; char* from + ptr @.TypeMapEntry.19514_from; char* to + }, ; 12047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19546_to, ; char* from + ptr null; char* to + }, ; 12048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19546_to, ; char* from + ptr null; char* to + }, ; 12049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19520_to, ; char* from + ptr @.TypeMapEntry.19519_from; char* to + }, ; 12050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19522_to, ; char* from + ptr @.TypeMapEntry.19521_from; char* to + }, ; 12051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19524_to, ; char* from + ptr @.TypeMapEntry.19523_from; char* to + }, ; 12052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19524_to, ; char* from + ptr @.TypeMapEntry.19523_from; char* to + }, ; 12053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19527_to, ; char* from + ptr @.TypeMapEntry.19526_from; char* to + }, ; 12054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19527_to, ; char* from + ptr @.TypeMapEntry.19526_from; char* to + }, ; 12055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19532_to, ; char* from + ptr @.TypeMapEntry.19531_from; char* to + }, ; 12056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19532_to, ; char* from + ptr @.TypeMapEntry.19531_from; char* to + }, ; 12057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19530_to, ; char* from + ptr @.TypeMapEntry.19529_from; char* to + }, ; 12058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19535_to, ; char* from + ptr @.TypeMapEntry.19534_from; char* to + }, ; 12059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19537_to, ; char* from + ptr @.TypeMapEntry.19536_from; char* to + }, ; 12060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19539_to, ; char* from + ptr @.TypeMapEntry.19538_from; char* to + }, ; 12061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19541_to, ; char* from + ptr @.TypeMapEntry.19540_from; char* to + }, ; 12062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19574_to, ; char* from + ptr @.TypeMapEntry.19573_from; char* to + }, ; 12063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19574_to, ; char* from + ptr @.TypeMapEntry.19573_from; char* to + }, ; 12064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19572_to, ; char* from + ptr @.TypeMapEntry.19571_from; char* to + }, ; 12065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19551_to, ; char* from + ptr @.TypeMapEntry.19550_from; char* to + }, ; 12066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19549_to, ; char* from + ptr @.TypeMapEntry.19548_from; char* to + }, ; 12067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19555_to, ; char* from + ptr @.TypeMapEntry.19554_from; char* to + }, ; 12068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19553_to, ; char* from + ptr @.TypeMapEntry.19552_from; char* to + }, ; 12069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19559_to, ; char* from + ptr @.TypeMapEntry.19558_from; char* to + }, ; 12070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19559_to, ; char* from + ptr @.TypeMapEntry.19558_from; char* to + }, ; 12071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19557_to, ; char* from + ptr @.TypeMapEntry.19556_from; char* to + }, ; 12072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19562_to, ; char* from + ptr @.TypeMapEntry.19561_from; char* to + }, ; 12073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19564_to, ; char* from + ptr @.TypeMapEntry.19563_from; char* to + }, ; 12074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19566_to, ; char* from + ptr @.TypeMapEntry.19565_from; char* to + }, ; 12075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19568_to, ; char* from + ptr @.TypeMapEntry.19567_from; char* to + }, ; 12076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19570_to, ; char* from + ptr @.TypeMapEntry.19569_from; char* to + }, ; 12077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19620_to, ; char* from + ptr @.TypeMapEntry.19619_from; char* to + }, ; 12078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19620_to, ; char* from + ptr @.TypeMapEntry.19619_from; char* to + }, ; 12079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19623_to, ; char* from + ptr @.TypeMapEntry.19622_from; char* to + }, ; 12080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19625_to, ; char* from + ptr @.TypeMapEntry.19624_from; char* to + }, ; 12081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19627_to, ; char* from + ptr @.TypeMapEntry.19626_from; char* to + }, ; 12082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19648_to, ; char* from + ptr @.TypeMapEntry.19647_from; char* to + }, ; 12083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19645_to, ; char* from + ptr null; char* to + }, ; 12084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19645_to, ; char* from + ptr null; char* to + }, ; 12085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19650_to, ; char* from + ptr @.TypeMapEntry.19649_from; char* to + }, ; 12086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19652_to, ; char* from + ptr @.TypeMapEntry.19651_from; char* to + }, ; 12087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19654_to, ; char* from + ptr @.TypeMapEntry.19653_from; char* to + }, ; 12088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19656_to, ; char* from + ptr @.TypeMapEntry.19655_from; char* to + }, ; 12089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19658_to, ; char* from + ptr @.TypeMapEntry.19657_from; char* to + }, ; 12090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19660_to, ; char* from + ptr @.TypeMapEntry.19659_from; char* to + }, ; 12091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19662_to, ; char* from + ptr @.TypeMapEntry.19661_from; char* to + }, ; 12092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19664_to, ; char* from + ptr @.TypeMapEntry.19663_from; char* to + }, ; 12093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19705_to, ; char* from + ptr @.TypeMapEntry.19704_from; char* to + }, ; 12094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19707_to, ; char* from + ptr @.TypeMapEntry.19706_from; char* to + }, ; 12095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19719_to, ; char* from + ptr @.TypeMapEntry.19718_from; char* to + }, ; 12096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19719_to, ; char* from + ptr @.TypeMapEntry.19718_from; char* to + }, ; 12097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19722_to, ; char* from + ptr @.TypeMapEntry.19721_from; char* to + }, ; 12098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19724_to, ; char* from + ptr @.TypeMapEntry.19723_from; char* to + }, ; 12099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19577_to, ; char* from + ptr @.TypeMapEntry.19576_from; char* to + }, ; 12100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19577_to, ; char* from + ptr @.TypeMapEntry.19576_from; char* to + }, ; 12101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19592_to, ; char* from + ptr null; char* to + }, ; 12102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19592_to, ; char* from + ptr null; char* to + }, ; 12103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19595_to, ; char* from + ptr null; char* to + }, ; 12104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19595_to, ; char* from + ptr null; char* to + }, ; 12105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19598_to, ; char* from + ptr null; char* to + }, ; 12106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19598_to, ; char* from + ptr null; char* to + }, ; 12107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19601_to, ; char* from + ptr null; char* to + }, ; 12108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19601_to, ; char* from + ptr null; char* to + }, ; 12109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19604_to, ; char* from + ptr null; char* to + }, ; 12110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19604_to, ; char* from + ptr null; char* to + }, ; 12111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19607_to, ; char* from + ptr null; char* to + }, ; 12112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19607_to, ; char* from + ptr null; char* to + }, ; 12113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19590_to, ; char* from + ptr @.TypeMapEntry.19589_from; char* to + }, ; 12114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19610_to, ; char* from + ptr @.TypeMapEntry.19609_from; char* to + }, ; 12115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19612_to, ; char* from + ptr @.TypeMapEntry.19611_from; char* to + }, ; 12116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19614_to, ; char* from + ptr @.TypeMapEntry.19613_from; char* to + }, ; 12117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19616_to, ; char* from + ptr @.TypeMapEntry.19615_from; char* to + }, ; 12118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19618_to, ; char* from + ptr @.TypeMapEntry.19617_from; char* to + }, ; 12119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19629_to, ; char* from + ptr @.TypeMapEntry.19628_from; char* to + }, ; 12120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19631_to, ; char* from + ptr @.TypeMapEntry.19630_from; char* to + }, ; 12121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19633_to, ; char* from + ptr @.TypeMapEntry.19632_from; char* to + }, ; 12122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19635_to, ; char* from + ptr @.TypeMapEntry.19634_from; char* to + }, ; 12123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19637_to, ; char* from + ptr @.TypeMapEntry.19636_from; char* to + }, ; 12124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19639_to, ; char* from + ptr @.TypeMapEntry.19638_from; char* to + }, ; 12125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19641_to, ; char* from + ptr @.TypeMapEntry.19640_from; char* to + }, ; 12126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19643_to, ; char* from + ptr @.TypeMapEntry.19642_from; char* to + }, ; 12127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19666_to, ; char* from + ptr @.TypeMapEntry.19665_from; char* to + }, ; 12128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19668_to, ; char* from + ptr @.TypeMapEntry.19667_from; char* to + }, ; 12129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19691_to, ; char* from + ptr @.TypeMapEntry.19690_from; char* to + }, ; 12130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19693_to, ; char* from + ptr @.TypeMapEntry.19692_from; char* to + }, ; 12131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19670_to, ; char* from + ptr null; char* to + }, ; 12132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19670_to, ; char* from + ptr null; char* to + }, ; 12133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19672_to, ; char* from + ptr null; char* to + }, ; 12134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19672_to, ; char* from + ptr null; char* to + }, ; 12135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19675_to, ; char* from + ptr null; char* to + }, ; 12136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19675_to, ; char* from + ptr null; char* to + }, ; 12137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19695_to, ; char* from + ptr @.TypeMapEntry.19694_from; char* to + }, ; 12138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19678_to, ; char* from + ptr null; char* to + }, ; 12139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19678_to, ; char* from + ptr null; char* to + }, ; 12140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19681_to, ; char* from + ptr null; char* to + }, ; 12141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19681_to, ; char* from + ptr null; char* to + }, ; 12142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19697_to, ; char* from + ptr @.TypeMapEntry.19696_from; char* to + }, ; 12143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19685_to, ; char* from + ptr null; char* to + }, ; 12144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19685_to, ; char* from + ptr null; char* to + }, ; 12145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19688_to, ; char* from + ptr null; char* to + }, ; 12146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19688_to, ; char* from + ptr null; char* to + }, ; 12147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19699_to, ; char* from + ptr @.TypeMapEntry.19698_from; char* to + }, ; 12148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19701_to, ; char* from + ptr @.TypeMapEntry.19700_from; char* to + }, ; 12149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19703_to, ; char* from + ptr @.TypeMapEntry.19702_from; char* to + }, ; 12150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19709_to, ; char* from + ptr @.TypeMapEntry.19708_from; char* to + }, ; 12151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19713_to, ; char* from + ptr @.TypeMapEntry.19712_from; char* to + }, ; 12152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19711_to, ; char* from + ptr @.TypeMapEntry.19710_from; char* to + }, ; 12153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19715_to, ; char* from + ptr @.TypeMapEntry.19714_from; char* to + }, ; 12154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19717_to, ; char* from + ptr @.TypeMapEntry.19716_from; char* to + }, ; 12155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19726_to, ; char* from + ptr @.TypeMapEntry.19725_from; char* to + }, ; 12156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19726_to, ; char* from + ptr @.TypeMapEntry.19725_from; char* to + }, ; 12157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19729_to, ; char* from + ptr @.TypeMapEntry.19728_from; char* to + }, ; 12158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19729_to, ; char* from + ptr @.TypeMapEntry.19728_from; char* to + }, ; 12159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19736_to, ; char* from + ptr @.TypeMapEntry.19735_from; char* to + }, ; 12160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19736_to, ; char* from + ptr @.TypeMapEntry.19735_from; char* to + }, ; 12161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19732_to, ; char* from + ptr @.TypeMapEntry.19731_from; char* to + }, ; 12162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19734_to, ; char* from + ptr @.TypeMapEntry.19733_from; char* to + }, ; 12163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19739_to, ; char* from + ptr @.TypeMapEntry.19738_from; char* to + }, ; 12164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19739_to, ; char* from + ptr @.TypeMapEntry.19738_from; char* to + }, ; 12165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19742_to, ; char* from + ptr @.TypeMapEntry.19741_from; char* to + }, ; 12166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19742_to, ; char* from + ptr @.TypeMapEntry.19741_from; char* to + }, ; 12167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19745_to, ; char* from + ptr @.TypeMapEntry.19744_from; char* to + }, ; 12168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19745_to, ; char* from + ptr @.TypeMapEntry.19744_from; char* to + }, ; 12169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19748_to, ; char* from + ptr @.TypeMapEntry.19747_from; char* to + }, ; 12170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7181_to, ; char* from + ptr @.TypeMapEntry.7180_from; char* to + }, ; 12171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7181_to, ; char* from + ptr @.TypeMapEntry.7180_from; char* to + }, ; 12172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7181_to, ; char* from + ptr @.TypeMapEntry.7180_from; char* to + }, ; 12173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19751_to, ; char* from + ptr @.TypeMapEntry.19750_from; char* to + }, ; 12174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19757_to, ; char* from + ptr @.TypeMapEntry.19756_from; char* to + }, ; 12175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19753_to, ; char* from + ptr @.TypeMapEntry.19752_from; char* to + }, ; 12176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19755_to, ; char* from + ptr @.TypeMapEntry.19754_from; char* to + }, ; 12177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19759_to, ; char* from + ptr @.TypeMapEntry.19758_from; char* to + }, ; 12178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19763_to, ; char* from + ptr @.TypeMapEntry.19762_from; char* to + }, ; 12179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19763_to, ; char* from + ptr @.TypeMapEntry.19762_from; char* to + }, ; 12180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19761_to, ; char* from + ptr @.TypeMapEntry.19760_from; char* to + }, ; 12181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7175_to, ; char* from + ptr @.TypeMapEntry.7174_from; char* to + }, ; 12182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7175_to, ; char* from + ptr @.TypeMapEntry.7174_from; char* to + }, ; 12183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7175_to, ; char* from + ptr @.TypeMapEntry.7174_from; char* to + }, ; 12184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7175_to, ; char* from + ptr @.TypeMapEntry.7174_from; char* to + }, ; 12185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19766_to, ; char* from + ptr @.TypeMapEntry.19765_from; char* to + }, ; 12186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20197_to, ; char* from + ptr null; char* to + }, ; 12187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20197_to, ; char* from + ptr null; char* to + }, ; 12188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20009_to, ; char* from + ptr @.TypeMapEntry.20008_from; char* to + }, ; 12189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20011_to, ; char* from + ptr @.TypeMapEntry.20010_from; char* to + }, ; 12190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20013_to, ; char* from + ptr @.TypeMapEntry.20012_from; char* to + }, ; 12191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20200_to, ; char* from + ptr null; char* to + }, ; 12192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20200_to, ; char* from + ptr null; char* to + }, ; 12193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20015_to, ; char* from + ptr @.TypeMapEntry.20014_from; char* to + }, ; 12194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20015_to, ; char* from + ptr @.TypeMapEntry.20014_from; char* to + }, ; 12195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20018_to, ; char* from + ptr @.TypeMapEntry.20017_from; char* to + }, ; 12196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20020_to, ; char* from + ptr @.TypeMapEntry.20019_from; char* to + }, ; 12197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20022_to, ; char* from + ptr @.TypeMapEntry.20021_from; char* to + }, ; 12198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20024_to, ; char* from + ptr @.TypeMapEntry.20023_from; char* to + }, ; 12199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20026_to, ; char* from + ptr @.TypeMapEntry.20025_from; char* to + }, ; 12200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20026_to, ; char* from + ptr @.TypeMapEntry.20025_from; char* to + }, ; 12201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20203_to, ; char* from + ptr null; char* to + }, ; 12202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20203_to, ; char* from + ptr null; char* to + }, ; 12203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20206_to, ; char* from + ptr null; char* to + }, ; 12204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20206_to, ; char* from + ptr null; char* to + }, ; 12205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20029_to, ; char* from + ptr @.TypeMapEntry.20028_from; char* to + }, ; 12206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20029_to, ; char* from + ptr @.TypeMapEntry.20028_from; char* to + }, ; 12207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20032_to, ; char* from + ptr @.TypeMapEntry.20031_from; char* to + }, ; 12208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20034_to, ; char* from + ptr @.TypeMapEntry.20033_from; char* to + }, ; 12209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20211_to, ; char* from + ptr null; char* to + }, ; 12210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20211_to, ; char* from + ptr null; char* to + }, ; 12211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20036_to, ; char* from + ptr @.TypeMapEntry.20035_from; char* to + }, ; 12212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20040_to, ; char* from + ptr @.TypeMapEntry.20039_from; char* to + }, ; 12213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20038_to, ; char* from + ptr @.TypeMapEntry.20037_from; char* to + }, ; 12214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20042_to, ; char* from + ptr @.TypeMapEntry.20041_from; char* to + }, ; 12215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20187_to, ; char* from + ptr @.TypeMapEntry.20186_from; char* to + }, ; 12216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7178_to, ; char* from + ptr @.TypeMapEntry.7177_from; char* to + }, ; 12217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7178_to, ; char* from + ptr @.TypeMapEntry.7177_from; char* to + }, ; 12218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7178_to, ; char* from + ptr @.TypeMapEntry.7177_from; char* to + }, ; 12219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7188_to, ; char* from + ptr @.TypeMapEntry.7187_from; char* to + }, ; 12220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7188_to, ; char* from + ptr @.TypeMapEntry.7187_from; char* to + }, ; 12221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7188_to, ; char* from + ptr @.TypeMapEntry.7187_from; char* to + }, ; 12222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20191_to, ; char* from + ptr @.TypeMapEntry.20190_from; char* to + }, ; 12223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20193_to, ; char* from + ptr @.TypeMapEntry.20192_from; char* to + }, ; 12224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20277_to, ; char* from + ptr @.TypeMapEntry.20276_from; char* to + }, ; 12225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20279_to, ; char* from + ptr @.TypeMapEntry.20278_from; char* to + }, ; 12226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20281_to, ; char* from + ptr @.TypeMapEntry.20280_from; char* to + }, ; 12227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20283_to, ; char* from + ptr @.TypeMapEntry.20282_from; char* to + }, ; 12228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20285_to, ; char* from + ptr @.TypeMapEntry.20284_from; char* to + }, ; 12229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20287_to, ; char* from + ptr @.TypeMapEntry.20286_from; char* to + }, ; 12230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20289_to, ; char* from + ptr @.TypeMapEntry.20288_from; char* to + }, ; 12231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20291_to, ; char* from + ptr @.TypeMapEntry.20290_from; char* to + }, ; 12232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20293_to, ; char* from + ptr @.TypeMapEntry.20292_from; char* to + }, ; 12233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20295_to, ; char* from + ptr @.TypeMapEntry.20294_from; char* to + }, ; 12234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20297_to, ; char* from + ptr @.TypeMapEntry.20296_from; char* to + }, ; 12235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20214_to, ; char* from + ptr null; char* to + }, ; 12236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20214_to, ; char* from + ptr null; char* to + }, ; 12237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20328_to, ; char* from + ptr @.TypeMapEntry.20327_from; char* to + }, ; 12238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20330_to, ; char* from + ptr @.TypeMapEntry.20329_from; char* to + }, ; 12239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20332_to, ; char* from + ptr @.TypeMapEntry.20331_from; char* to + }, ; 12240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20217_to, ; char* from + ptr null; char* to + }, ; 12241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20217_to, ; char* from + ptr null; char* to + }, ; 12242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20220_to, ; char* from + ptr null; char* to + }, ; 12243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20220_to, ; char* from + ptr null; char* to + }, ; 12244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20336_to, ; char* from + ptr @.TypeMapEntry.20335_from; char* to + }, ; 12245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20336_to, ; char* from + ptr @.TypeMapEntry.20335_from; char* to + }, ; 12246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20349_to, ; char* from + ptr @.TypeMapEntry.20348_from; char* to + }, ; 12247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20339_to, ; char* from + ptr @.TypeMapEntry.20338_from; char* to + }, ; 12248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20341_to, ; char* from + ptr @.TypeMapEntry.20340_from; char* to + }, ; 12249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20343_to, ; char* from + ptr @.TypeMapEntry.20342_from; char* to + }, ; 12250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20345_to, ; char* from + ptr @.TypeMapEntry.20344_from; char* to + }, ; 12251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20347_to, ; char* from + ptr @.TypeMapEntry.20346_from; char* to + }, ; 12252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20389_to, ; char* from + ptr @.TypeMapEntry.20388_from; char* to + }, ; 12253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20223_to, ; char* from + ptr null; char* to + }, ; 12254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20223_to, ; char* from + ptr null; char* to + }, ; 12255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20225_to, ; char* from + ptr null; char* to + }, ; 12256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20225_to, ; char* from + ptr null; char* to + }, ; 12257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20395_to, ; char* from + ptr @.TypeMapEntry.20394_from; char* to + }, ; 12258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20397_to, ; char* from + ptr @.TypeMapEntry.20396_from; char* to + }, ; 12259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20399_to, ; char* from + ptr @.TypeMapEntry.20398_from; char* to + }, ; 12260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20229_to, ; char* from + ptr null; char* to + }, ; 12261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20229_to, ; char* from + ptr null; char* to + }, ; 12262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20232_to, ; char* from + ptr null; char* to + }, ; 12263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20232_to, ; char* from + ptr null; char* to + }, ; 12264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20401_to, ; char* from + ptr @.TypeMapEntry.20400_from; char* to + }, ; 12265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20403_to, ; char* from + ptr @.TypeMapEntry.20402_from; char* to + }, ; 12266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20405_to, ; char* from + ptr @.TypeMapEntry.20404_from; char* to + }, ; 12267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20235_to, ; char* from + ptr null; char* to + }, ; 12268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20235_to, ; char* from + ptr null; char* to + }, ; 12269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20407_to, ; char* from + ptr @.TypeMapEntry.20406_from; char* to + }, ; 12270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20409_to, ; char* from + ptr @.TypeMapEntry.20408_from; char* to + }, ; 12271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20411_to, ; char* from + ptr @.TypeMapEntry.20410_from; char* to + }, ; 12272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20413_to, ; char* from + ptr @.TypeMapEntry.20412_from; char* to + }, ; 12273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20238_to, ; char* from + ptr null; char* to + }, ; 12274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20238_to, ; char* from + ptr null; char* to + }, ; 12275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20241_to, ; char* from + ptr null; char* to + }, ; 12276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20241_to, ; char* from + ptr null; char* to + }, ; 12277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20244_to, ; char* from + ptr null; char* to + }, ; 12278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20244_to, ; char* from + ptr null; char* to + }, ; 12279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20247_to, ; char* from + ptr null; char* to + }, ; 12280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20247_to, ; char* from + ptr null; char* to + }, ; 12281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20438_to, ; char* from + ptr @.TypeMapEntry.20437_from; char* to + }, ; 12282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20440_to, ; char* from + ptr @.TypeMapEntry.20439_from; char* to + }, ; 12283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20442_to, ; char* from + ptr @.TypeMapEntry.20441_from; char* to + }, ; 12284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20444_to, ; char* from + ptr @.TypeMapEntry.20443_from; char* to + }, ; 12285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20250_to, ; char* from + ptr null; char* to + }, ; 12286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20250_to, ; char* from + ptr null; char* to + }, ; 12287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20446_to, ; char* from + ptr @.TypeMapEntry.20445_from; char* to + }, ; 12288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20253_to, ; char* from + ptr null; char* to + }, ; 12289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20253_to, ; char* from + ptr null; char* to + }, ; 12290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20464_to, ; char* from + ptr @.TypeMapEntry.20463_from; char* to + }, ; 12291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20464_to, ; char* from + ptr @.TypeMapEntry.20463_from; char* to + }, ; 12292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20462_to, ; char* from + ptr @.TypeMapEntry.20461_from; char* to + }, ; 12293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20467_to, ; char* from + ptr @.TypeMapEntry.20466_from; char* to + }, ; 12294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20256_to, ; char* from + ptr null; char* to + }, ; 12295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20256_to, ; char* from + ptr null; char* to + }, ; 12296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20259_to, ; char* from + ptr null; char* to + }, ; 12297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20259_to, ; char* from + ptr null; char* to + }, ; 12298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20262_to, ; char* from + ptr null; char* to + }, ; 12299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20262_to, ; char* from + ptr null; char* to + }, ; 12300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20469_to, ; char* from + ptr @.TypeMapEntry.20468_from; char* to + }, ; 12301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20474_to, ; char* from + ptr @.TypeMapEntry.20473_from; char* to + }, ; 12302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20471_to, ; char* from + ptr null; char* to + }, ; 12303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20471_to, ; char* from + ptr null; char* to + }, ; 12304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20265_to, ; char* from + ptr null; char* to + }, ; 12305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20265_to, ; char* from + ptr null; char* to + }, ; 12306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20478_to, ; char* from + ptr @.TypeMapEntry.20477_from; char* to + }, ; 12307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20268_to, ; char* from + ptr null; char* to + }, ; 12308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20268_to, ; char* from + ptr null; char* to + }, ; 12309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20271_to, ; char* from + ptr null; char* to + }, ; 12310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20271_to, ; char* from + ptr null; char* to + }, ; 12311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20274_to, ; char* from + ptr null; char* to + }, ; 12312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20274_to, ; char* from + ptr null; char* to + }, ; 12313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20494_to, ; char* from + ptr @.TypeMapEntry.20493_from; char* to + }, ; 12314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20482_to, ; char* from + ptr @.TypeMapEntry.20481_from; char* to + }, ; 12315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20482_to, ; char* from + ptr @.TypeMapEntry.20481_from; char* to + }, ; 12316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20485_to, ; char* from + ptr @.TypeMapEntry.20484_from; char* to + }, ; 12317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20485_to, ; char* from + ptr @.TypeMapEntry.20484_from; char* to + }, ; 12318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20488_to, ; char* from + ptr @.TypeMapEntry.20487_from; char* to + }, ; 12319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20488_to, ; char* from + ptr @.TypeMapEntry.20487_from; char* to + }, ; 12320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20491_to, ; char* from + ptr @.TypeMapEntry.20490_from; char* to + }, ; 12321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20491_to, ; char* from + ptr @.TypeMapEntry.20490_from; char* to + }, ; 12322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20496_to, ; char* from + ptr @.TypeMapEntry.20495_from; char* to + }, ; 12323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20498_to, ; char* from + ptr @.TypeMapEntry.20497_from; char* to + }, ; 12324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20514_to, ; char* from + ptr @.TypeMapEntry.20513_from; char* to + }, ; 12325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20516_to, ; char* from + ptr @.TypeMapEntry.20515_from; char* to + }, ; 12326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20518_to, ; char* from + ptr @.TypeMapEntry.20517_from; char* to + }, ; 12327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20518_to, ; char* from + ptr @.TypeMapEntry.20517_from; char* to + }, ; 12328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20521_to, ; char* from + ptr @.TypeMapEntry.20520_from; char* to + }, ; 12329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20523_to, ; char* from + ptr @.TypeMapEntry.20522_from; char* to + }, ; 12330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20523_to, ; char* from + ptr @.TypeMapEntry.20522_from; char* to + }, ; 12331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20526_to, ; char* from + ptr @.TypeMapEntry.20525_from; char* to + }, ; 12332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20528_to, ; char* from + ptr @.TypeMapEntry.20527_from; char* to + }, ; 12333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20530_to, ; char* from + ptr @.TypeMapEntry.20529_from; char* to + }, ; 12334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20532_to, ; char* from + ptr @.TypeMapEntry.20531_from; char* to + }, ; 12335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20534_to, ; char* from + ptr @.TypeMapEntry.20533_from; char* to + }, ; 12336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20536_to, ; char* from + ptr @.TypeMapEntry.20535_from; char* to + }, ; 12337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20538_to, ; char* from + ptr @.TypeMapEntry.20537_from; char* to + }, ; 12338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20540_to, ; char* from + ptr @.TypeMapEntry.20539_from; char* to + }, ; 12339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19770_to, ; char* from + ptr @.TypeMapEntry.19769_from; char* to + }, ; 12340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19770_to, ; char* from + ptr @.TypeMapEntry.19769_from; char* to + }, ; 12341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19773_to, ; char* from + ptr @.TypeMapEntry.19772_from; char* to + }, ; 12342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19882_to, ; char* from + ptr null; char* to + }, ; 12343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19882_to, ; char* from + ptr null; char* to + }, ; 12344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19885_to, ; char* from + ptr null; char* to + }, ; 12345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19885_to, ; char* from + ptr null; char* to + }, ; 12346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19813_to, ; char* from + ptr @.TypeMapEntry.19812_from; char* to + }, ; 12347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19888_to, ; char* from + ptr null; char* to + }, ; 12348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19888_to, ; char* from + ptr null; char* to + }, ; 12349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19815_to, ; char* from + ptr @.TypeMapEntry.19814_from; char* to + }, ; 12350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19820_to, ; char* from + ptr @.TypeMapEntry.19819_from; char* to + }, ; 12351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19817_to, ; char* from + ptr null; char* to + }, ; 12352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19817_to, ; char* from + ptr null; char* to + }, ; 12353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19822_to, ; char* from + ptr @.TypeMapEntry.19821_from; char* to + }, ; 12354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19891_to, ; char* from + ptr null; char* to + }, ; 12355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19891_to, ; char* from + ptr null; char* to + }, ; 12356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19894_to, ; char* from + ptr null; char* to + }, ; 12357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19894_to, ; char* from + ptr null; char* to + }, ; 12358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19824_to, ; char* from + ptr @.TypeMapEntry.19823_from; char* to + }, ; 12359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19826_to, ; char* from + ptr @.TypeMapEntry.19825_from; char* to + }, ; 12360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19828_to, ; char* from + ptr @.TypeMapEntry.19827_from; char* to + }, ; 12361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19897_to, ; char* from + ptr null; char* to + }, ; 12362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19897_to, ; char* from + ptr null; char* to + }, ; 12363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19830_to, ; char* from + ptr @.TypeMapEntry.19829_from; char* to + }, ; 12364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19832_to, ; char* from + ptr @.TypeMapEntry.19831_from; char* to + }, ; 12365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19834_to, ; char* from + ptr @.TypeMapEntry.19833_from; char* to + }, ; 12366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19836_to, ; char* from + ptr @.TypeMapEntry.19835_from; char* to + }, ; 12367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19838_to, ; char* from + ptr @.TypeMapEntry.19837_from; char* to + }, ; 12368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19838_to, ; char* from + ptr @.TypeMapEntry.19837_from; char* to + }, ; 12369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19841_to, ; char* from + ptr @.TypeMapEntry.19840_from; char* to + }, ; 12370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19843_to, ; char* from + ptr @.TypeMapEntry.19842_from; char* to + }, ; 12371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19900_to, ; char* from + ptr null; char* to + }, ; 12372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19900_to, ; char* from + ptr null; char* to + }, ; 12373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19845_to, ; char* from + ptr @.TypeMapEntry.19844_from; char* to + }, ; 12374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19847_to, ; char* from + ptr @.TypeMapEntry.19846_from; char* to + }, ; 12375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19903_to, ; char* from + ptr null; char* to + }, ; 12376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19903_to, ; char* from + ptr null; char* to + }, ; 12377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19849_to, ; char* from + ptr @.TypeMapEntry.19848_from; char* to + }, ; 12378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19906_to, ; char* from + ptr null; char* to + }, ; 12379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19906_to, ; char* from + ptr null; char* to + }, ; 12380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19851_to, ; char* from + ptr @.TypeMapEntry.19850_from; char* to + }, ; 12381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19865_to, ; char* from + ptr @.TypeMapEntry.19864_from; char* to + }, ; 12382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19853_to, ; char* from + ptr null; char* to + }, ; 12383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19853_to, ; char* from + ptr null; char* to + }, ; 12384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19856_to, ; char* from + ptr null; char* to + }, ; 12385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19856_to, ; char* from + ptr null; char* to + }, ; 12386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19859_to, ; char* from + ptr null; char* to + }, ; 12387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19859_to, ; char* from + ptr null; char* to + }, ; 12388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19862_to, ; char* from + ptr null; char* to + }, ; 12389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19862_to, ; char* from + ptr null; char* to + }, ; 12390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19873_to, ; char* from + ptr @.TypeMapEntry.19872_from; char* to + }, ; 12391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19867_to, ; char* from + ptr null; char* to + }, ; 12392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19867_to, ; char* from + ptr null; char* to + }, ; 12393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19870_to, ; char* from + ptr null; char* to + }, ; 12394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19870_to, ; char* from + ptr null; char* to + }, ; 12395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19875_to, ; char* from + ptr @.TypeMapEntry.19874_from; char* to + }, ; 12396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19875_to, ; char* from + ptr @.TypeMapEntry.19874_from; char* to + }, ; 12397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19878_to, ; char* from + ptr @.TypeMapEntry.19877_from; char* to + }, ; 12398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19909_to, ; char* from + ptr null; char* to + }, ; 12399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19909_to, ; char* from + ptr null; char* to + }, ; 12400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19880_to, ; char* from + ptr @.TypeMapEntry.19879_from; char* to + }, ; 12401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19933_to, ; char* from + ptr @.TypeMapEntry.19932_from; char* to + }, ; 12402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19935_to, ; char* from + ptr @.TypeMapEntry.19934_from; char* to + }, ; 12403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19937_to, ; char* from + ptr @.TypeMapEntry.19936_from; char* to + }, ; 12404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19973_to, ; char* from + ptr @.TypeMapEntry.19972_from; char* to + }, ; 12405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19975_to, ; char* from + ptr @.TypeMapEntry.19974_from; char* to + }, ; 12406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19977_to, ; char* from + ptr @.TypeMapEntry.19976_from; char* to + }, ; 12407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19977_to, ; char* from + ptr @.TypeMapEntry.19976_from; char* to + }, ; 12408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19980_to, ; char* from + ptr @.TypeMapEntry.19979_from; char* to + }, ; 12409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19980_to, ; char* from + ptr @.TypeMapEntry.19979_from; char* to + }, ; 12410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19983_to, ; char* from + ptr @.TypeMapEntry.19982_from; char* to + }, ; 12411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19912_to, ; char* from + ptr null; char* to + }, ; 12412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19912_to, ; char* from + ptr null; char* to + }, ; 12413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19915_to, ; char* from + ptr null; char* to + }, ; 12414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19915_to, ; char* from + ptr null; char* to + }, ; 12415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19918_to, ; char* from + ptr null; char* to + }, ; 12416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19918_to, ; char* from + ptr null; char* to + }, ; 12417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19921_to, ; char* from + ptr null; char* to + }, ; 12418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19921_to, ; char* from + ptr null; char* to + }, ; 12419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19924_to, ; char* from + ptr null; char* to + }, ; 12420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19924_to, ; char* from + ptr null; char* to + }, ; 12421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19985_to, ; char* from + ptr @.TypeMapEntry.19984_from; char* to + }, ; 12422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19987_to, ; char* from + ptr @.TypeMapEntry.19986_from; char* to + }, ; 12423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19989_to, ; char* from + ptr @.TypeMapEntry.19988_from; char* to + }, ; 12424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19991_to, ; char* from + ptr @.TypeMapEntry.19990_from; char* to + }, ; 12425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19927_to, ; char* from + ptr null; char* to + }, ; 12426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19927_to, ; char* from + ptr null; char* to + }, ; 12427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19993_to, ; char* from + ptr @.TypeMapEntry.19992_from; char* to + }, ; 12428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20003_to, ; char* from + ptr @.TypeMapEntry.20002_from; char* to + }, ; 12429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19995_to, ; char* from + ptr @.TypeMapEntry.19994_from; char* to + }, ; 12430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19997_to, ; char* from + ptr @.TypeMapEntry.19996_from; char* to + }, ; 12431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19999_to, ; char* from + ptr @.TypeMapEntry.19998_from; char* to + }, ; 12432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20001_to, ; char* from + ptr @.TypeMapEntry.20000_from; char* to + }, ; 12433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20005_to, ; char* from + ptr @.TypeMapEntry.20004_from; char* to + }, ; 12434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20007_to, ; char* from + ptr @.TypeMapEntry.20006_from; char* to + }, ; 12435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19930_to, ; char* from + ptr null; char* to + }, ; 12436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19930_to, ; char* from + ptr null; char* to + }, ; 12437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19775_to, ; char* from + ptr @.TypeMapEntry.19774_from; char* to + }, ; 12438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19777_to, ; char* from + ptr @.TypeMapEntry.19776_from; char* to + }, ; 12439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19779_to, ; char* from + ptr @.TypeMapEntry.19778_from; char* to + }, ; 12440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19781_to, ; char* from + ptr @.TypeMapEntry.19780_from; char* to + }, ; 12441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19781_to, ; char* from + ptr @.TypeMapEntry.19780_from; char* to + }, ; 12442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19784_to, ; char* from + ptr @.TypeMapEntry.19783_from; char* to + }, ; 12443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19786_to, ; char* from + ptr @.TypeMapEntry.19785_from; char* to + }, ; 12444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19788_to, ; char* from + ptr @.TypeMapEntry.19787_from; char* to + }, ; 12445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19788_to, ; char* from + ptr @.TypeMapEntry.19787_from; char* to + }, ; 12446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19791_to, ; char* from + ptr @.TypeMapEntry.19790_from; char* to + }, ; 12447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19793_to, ; char* from + ptr @.TypeMapEntry.19792_from; char* to + }, ; 12448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19795_to, ; char* from + ptr @.TypeMapEntry.19794_from; char* to + }, ; 12449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19797_to, ; char* from + ptr @.TypeMapEntry.19796_from; char* to + }, ; 12450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19797_to, ; char* from + ptr @.TypeMapEntry.19796_from; char* to + }, ; 12451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19800_to, ; char* from + ptr @.TypeMapEntry.19799_from; char* to + }, ; 12452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19802_to, ; char* from + ptr @.TypeMapEntry.19801_from; char* to + }, ; 12453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19804_to, ; char* from + ptr @.TypeMapEntry.19803_from; char* to + }, ; 12454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19806_to, ; char* from + ptr @.TypeMapEntry.19805_from; char* to + }, ; 12455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19808_to, ; char* from + ptr @.TypeMapEntry.19807_from; char* to + }, ; 12456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19810_to, ; char* from + ptr @.TypeMapEntry.19809_from; char* to + }, ; 12457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19810_to, ; char* from + ptr @.TypeMapEntry.19809_from; char* to + }, ; 12458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19939_to, ; char* from + ptr @.TypeMapEntry.19938_from; char* to + }, ; 12459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19939_to, ; char* from + ptr @.TypeMapEntry.19938_from; char* to + }, ; 12460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19944_to, ; char* from + ptr @.TypeMapEntry.19943_from; char* to + }, ; 12461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19944_to, ; char* from + ptr @.TypeMapEntry.19943_from; char* to + }, ; 12462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19942_to, ; char* from + ptr @.TypeMapEntry.19941_from; char* to + }, ; 12463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19949_to, ; char* from + ptr @.TypeMapEntry.19948_from; char* to + }, ; 12464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19949_to, ; char* from + ptr @.TypeMapEntry.19948_from; char* to + }, ; 12465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19947_to, ; char* from + ptr @.TypeMapEntry.19946_from; char* to + }, ; 12466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19952_to, ; char* from + ptr null; char* to + }, ; 12467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19952_to, ; char* from + ptr null; char* to + }, ; 12468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19955_to, ; char* from + ptr null; char* to + }, ; 12469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19955_to, ; char* from + ptr null; char* to + }, ; 12470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19961_to, ; char* from + ptr @.TypeMapEntry.19960_from; char* to + }, ; 12471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19958_to, ; char* from + ptr null; char* to + }, ; 12472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19958_to, ; char* from + ptr null; char* to + }, ; 12473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19963_to, ; char* from + ptr @.TypeMapEntry.19962_from; char* to + }, ; 12474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19969_to, ; char* from + ptr @.TypeMapEntry.19968_from; char* to + }, ; 12475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19965_to, ; char* from + ptr @.TypeMapEntry.19964_from; char* to + }, ; 12476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19967_to, ; char* from + ptr @.TypeMapEntry.19966_from; char* to + }, ; 12477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19971_to, ; char* from + ptr @.TypeMapEntry.19970_from; char* to + }, ; 12478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20050_to, ; char* from + ptr null; char* to + }, ; 12479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20050_to, ; char* from + ptr null; char* to + }, ; 12480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20053_to, ; char* from + ptr null; char* to + }, ; 12481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20053_to, ; char* from + ptr null; char* to + }, ; 12482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20056_to, ; char* from + ptr null; char* to + }, ; 12483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20056_to, ; char* from + ptr null; char* to + }, ; 12484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20059_to, ; char* from + ptr null; char* to + }, ; 12485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20059_to, ; char* from + ptr null; char* to + }, ; 12486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20062_to, ; char* from + ptr null; char* to + }, ; 12487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20062_to, ; char* from + ptr null; char* to + }, ; 12488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20065_to, ; char* from + ptr null; char* to + }, ; 12489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20065_to, ; char* from + ptr null; char* to + }, ; 12490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20068_to, ; char* from + ptr null; char* to + }, ; 12491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20068_to, ; char* from + ptr null; char* to + }, ; 12492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20071_to, ; char* from + ptr null; char* to + }, ; 12493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20071_to, ; char* from + ptr null; char* to + }, ; 12494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20074_to, ; char* from + ptr null; char* to + }, ; 12495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20074_to, ; char* from + ptr null; char* to + }, ; 12496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20077_to, ; char* from + ptr null; char* to + }, ; 12497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20077_to, ; char* from + ptr null; char* to + }, ; 12498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20080_to, ; char* from + ptr null; char* to + }, ; 12499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20080_to, ; char* from + ptr null; char* to + }, ; 12500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20083_to, ; char* from + ptr null; char* to + }, ; 12501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20083_to, ; char* from + ptr null; char* to + }, ; 12502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20086_to, ; char* from + ptr null; char* to + }, ; 12503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20086_to, ; char* from + ptr null; char* to + }, ; 12504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20089_to, ; char* from + ptr null; char* to + }, ; 12505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20089_to, ; char* from + ptr null; char* to + }, ; 12506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20092_to, ; char* from + ptr null; char* to + }, ; 12507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20092_to, ; char* from + ptr null; char* to + }, ; 12508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20095_to, ; char* from + ptr null; char* to + }, ; 12509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20095_to, ; char* from + ptr null; char* to + }, ; 12510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20098_to, ; char* from + ptr null; char* to + }, ; 12511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20098_to, ; char* from + ptr null; char* to + }, ; 12512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20101_to, ; char* from + ptr null; char* to + }, ; 12513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20101_to, ; char* from + ptr null; char* to + }, ; 12514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20104_to, ; char* from + ptr null; char* to + }, ; 12515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20104_to, ; char* from + ptr null; char* to + }, ; 12516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20107_to, ; char* from + ptr null; char* to + }, ; 12517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20107_to, ; char* from + ptr null; char* to + }, ; 12518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20110_to, ; char* from + ptr null; char* to + }, ; 12519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20110_to, ; char* from + ptr null; char* to + }, ; 12520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20113_to, ; char* from + ptr null; char* to + }, ; 12521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20113_to, ; char* from + ptr null; char* to + }, ; 12522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20116_to, ; char* from + ptr null; char* to + }, ; 12523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20116_to, ; char* from + ptr null; char* to + }, ; 12524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20119_to, ; char* from + ptr null; char* to + }, ; 12525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20119_to, ; char* from + ptr null; char* to + }, ; 12526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20122_to, ; char* from + ptr null; char* to + }, ; 12527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20122_to, ; char* from + ptr null; char* to + }, ; 12528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20125_to, ; char* from + ptr null; char* to + }, ; 12529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20125_to, ; char* from + ptr null; char* to + }, ; 12530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20128_to, ; char* from + ptr null; char* to + }, ; 12531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20128_to, ; char* from + ptr null; char* to + }, ; 12532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20131_to, ; char* from + ptr null; char* to + }, ; 12533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20131_to, ; char* from + ptr null; char* to + }, ; 12534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20134_to, ; char* from + ptr null; char* to + }, ; 12535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20134_to, ; char* from + ptr null; char* to + }, ; 12536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20137_to, ; char* from + ptr null; char* to + }, ; 12537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20137_to, ; char* from + ptr null; char* to + }, ; 12538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20140_to, ; char* from + ptr null; char* to + }, ; 12539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20140_to, ; char* from + ptr null; char* to + }, ; 12540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20143_to, ; char* from + ptr null; char* to + }, ; 12541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20143_to, ; char* from + ptr null; char* to + }, ; 12542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20146_to, ; char* from + ptr null; char* to + }, ; 12543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20146_to, ; char* from + ptr null; char* to + }, ; 12544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20149_to, ; char* from + ptr null; char* to + }, ; 12545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20149_to, ; char* from + ptr null; char* to + }, ; 12546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20152_to, ; char* from + ptr null; char* to + }, ; 12547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20152_to, ; char* from + ptr null; char* to + }, ; 12548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20155_to, ; char* from + ptr null; char* to + }, ; 12549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20155_to, ; char* from + ptr null; char* to + }, ; 12550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20158_to, ; char* from + ptr null; char* to + }, ; 12551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20158_to, ; char* from + ptr null; char* to + }, ; 12552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20161_to, ; char* from + ptr null; char* to + }, ; 12553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20161_to, ; char* from + ptr null; char* to + }, ; 12554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20164_to, ; char* from + ptr null; char* to + }, ; 12555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20164_to, ; char* from + ptr null; char* to + }, ; 12556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20167_to, ; char* from + ptr null; char* to + }, ; 12557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20167_to, ; char* from + ptr null; char* to + }, ; 12558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20170_to, ; char* from + ptr null; char* to + }, ; 12559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20170_to, ; char* from + ptr null; char* to + }, ; 12560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20173_to, ; char* from + ptr null; char* to + }, ; 12561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20173_to, ; char* from + ptr null; char* to + }, ; 12562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20176_to, ; char* from + ptr null; char* to + }, ; 12563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20176_to, ; char* from + ptr null; char* to + }, ; 12564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20301_to, ; char* from + ptr @.TypeMapEntry.20300_from; char* to + }, ; 12565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20299_to, ; char* from + ptr @.TypeMapEntry.20298_from; char* to + }, ; 12566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20303_to, ; char* from + ptr @.TypeMapEntry.20302_from; char* to + }, ; 12567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20305_to, ; char* from + ptr @.TypeMapEntry.20304_from; char* to + }, ; 12568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20307_to, ; char* from + ptr @.TypeMapEntry.20306_from; char* to + }, ; 12569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20309_to, ; char* from + ptr @.TypeMapEntry.20308_from; char* to + }, ; 12570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20311_to, ; char* from + ptr @.TypeMapEntry.20310_from; char* to + }, ; 12571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20313_to, ; char* from + ptr @.TypeMapEntry.20312_from; char* to + }, ; 12572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20325_to, ; char* from + ptr @.TypeMapEntry.20324_from; char* to + }, ; 12573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20325_to, ; char* from + ptr @.TypeMapEntry.20324_from; char* to + }, ; 12574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20315_to, ; char* from + ptr null; char* to + }, ; 12575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20315_to, ; char* from + ptr null; char* to + }, ; 12576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20318_to, ; char* from + ptr null; char* to + }, ; 12577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20318_to, ; char* from + ptr null; char* to + }, ; 12578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20351_to, ; char* from + ptr @.TypeMapEntry.20350_from; char* to + }, ; 12579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20353_to, ; char* from + ptr @.TypeMapEntry.20352_from; char* to + }, ; 12580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20355_to, ; char* from + ptr @.TypeMapEntry.20354_from; char* to + }, ; 12581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20363_to, ; char* from + ptr null; char* to + }, ; 12582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20363_to, ; char* from + ptr null; char* to + }, ; 12583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20357_to, ; char* from + ptr @.TypeMapEntry.20356_from; char* to + }, ; 12584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20357_to, ; char* from + ptr @.TypeMapEntry.20356_from; char* to + }, ; 12585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20360_to, ; char* from + ptr @.TypeMapEntry.20359_from; char* to + }, ; 12586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20360_to, ; char* from + ptr @.TypeMapEntry.20359_from; char* to + }, ; 12587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20369_to, ; char* from + ptr @.TypeMapEntry.20368_from; char* to + }, ; 12588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20371_to, ; char* from + ptr @.TypeMapEntry.20370_from; char* to + }, ; 12589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20373_to, ; char* from + ptr @.TypeMapEntry.20372_from; char* to + }, ; 12590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20375_to, ; char* from + ptr @.TypeMapEntry.20374_from; char* to + }, ; 12591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20366_to, ; char* from + ptr null; char* to + }, ; 12592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20366_to, ; char* from + ptr null; char* to + }, ; 12593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20377_to, ; char* from + ptr @.TypeMapEntry.20376_from; char* to + }, ; 12594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20379_to, ; char* from + ptr @.TypeMapEntry.20378_from; char* to + }, ; 12595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20381_to, ; char* from + ptr @.TypeMapEntry.20380_from; char* to + }, ; 12596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20383_to, ; char* from + ptr @.TypeMapEntry.20382_from; char* to + }, ; 12597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20385_to, ; char* from + ptr @.TypeMapEntry.20384_from; char* to + }, ; 12598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20387_to, ; char* from + ptr @.TypeMapEntry.20386_from; char* to + }, ; 12599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20415_to, ; char* from + ptr @.TypeMapEntry.20414_from; char* to + }, ; 12600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20415_to, ; char* from + ptr @.TypeMapEntry.20414_from; char* to + }, ; 12601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20418_to, ; char* from + ptr @.TypeMapEntry.20417_from; char* to + }, ; 12602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20429_to, ; char* from + ptr @.TypeMapEntry.20428_from; char* to + }, ; 12603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20431_to, ; char* from + ptr @.TypeMapEntry.20430_from; char* to + }, ; 12604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20420_to, ; char* from + ptr null; char* to + }, ; 12605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20420_to, ; char* from + ptr null; char* to + }, ; 12606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20433_to, ; char* from + ptr @.TypeMapEntry.20432_from; char* to + }, ; 12607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20423_to, ; char* from + ptr null; char* to + }, ; 12608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20423_to, ; char* from + ptr null; char* to + }, ; 12609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20435_to, ; char* from + ptr @.TypeMapEntry.20434_from; char* to + }, ; 12610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20435_to, ; char* from + ptr @.TypeMapEntry.20434_from; char* to + }, ; 12611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20426_to, ; char* from + ptr null; char* to + }, ; 12612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20426_to, ; char* from + ptr null; char* to + }, ; 12613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20448_to, ; char* from + ptr null; char* to + }, ; 12614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20448_to, ; char* from + ptr null; char* to + }, ; 12615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20451_to, ; char* from + ptr @.TypeMapEntry.20450_from; char* to + }, ; 12616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20453_to, ; char* from + ptr null; char* to + }, ; 12617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20453_to, ; char* from + ptr null; char* to + }, ; 12618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20456_to, ; char* from + ptr @.TypeMapEntry.20455_from; char* to + }, ; 12619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20458_to, ; char* from + ptr @.TypeMapEntry.20457_from; char* to + }, ; 12620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20460_to, ; char* from + ptr @.TypeMapEntry.20459_from; char* to + }, ; 12621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20506_to, ; char* from + ptr null; char* to + }, ; 12622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20506_to, ; char* from + ptr null; char* to + }, ; 12623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20509_to, ; char* from + ptr null; char* to + }, ; 12624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20509_to, ; char* from + ptr null; char* to + }, ; 12625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20502_to, ; char* from + ptr @.TypeMapEntry.20501_from; char* to + }, ; 12626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20504_to, ; char* from + ptr @.TypeMapEntry.20503_from; char* to + }, ; 12627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20512_to, ; char* from + ptr @.TypeMapEntry.20511_from; char* to + }, ; 12628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20542_to, ; char* from + ptr @.TypeMapEntry.20541_from; char* to + }, ; 12629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20544_to, ; char* from + ptr @.TypeMapEntry.20543_from; char* to + }, ; 12630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20546_to, ; char* from + ptr @.TypeMapEntry.20545_from; char* to + }, ; 12631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20548_to, ; char* from + ptr @.TypeMapEntry.20547_from; char* to + }, ; 12632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20550_to, ; char* from + ptr @.TypeMapEntry.20549_from; char* to + }, ; 12633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20564_to, ; char* from + ptr null; char* to + }, ; 12634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20564_to, ; char* from + ptr null; char* to + }, ; 12635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20552_to, ; char* from + ptr @.TypeMapEntry.20551_from; char* to + }, ; 12636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20554_to, ; char* from + ptr @.TypeMapEntry.20553_from; char* to + }, ; 12637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20556_to, ; char* from + ptr @.TypeMapEntry.20555_from; char* to + }, ; 12638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20558_to, ; char* from + ptr @.TypeMapEntry.20557_from; char* to + }, ; 12639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20560_to, ; char* from + ptr @.TypeMapEntry.20559_from; char* to + }, ; 12640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20562_to, ; char* from + ptr @.TypeMapEntry.20561_from; char* to + }, ; 12641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20567_to, ; char* from + ptr @.TypeMapEntry.20566_from; char* to + }, ; 12642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20569_to, ; char* from + ptr @.TypeMapEntry.20568_from; char* to + }, ; 12643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20571_to, ; char* from + ptr @.TypeMapEntry.20570_from; char* to + }, ; 12644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20573_to, ; char* from + ptr @.TypeMapEntry.20572_from; char* to + }, ; 12645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20575_to, ; char* from + ptr @.TypeMapEntry.20574_from; char* to + }, ; 12646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20577_to, ; char* from + ptr @.TypeMapEntry.20576_from; char* to + }, ; 12647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20579_to, ; char* from + ptr @.TypeMapEntry.20578_from; char* to + }, ; 12648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20581_to, ; char* from + ptr @.TypeMapEntry.20580_from; char* to + }, ; 12649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20583_to, ; char* from + ptr @.TypeMapEntry.20582_from; char* to + }, ; 12650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20597_to, ; char* from + ptr null; char* to + }, ; 12651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20597_to, ; char* from + ptr null; char* to + }, ; 12652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20600_to, ; char* from + ptr null; char* to + }, ; 12653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20600_to, ; char* from + ptr null; char* to + }, ; 12654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20603_to, ; char* from + ptr null; char* to + }, ; 12655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20603_to, ; char* from + ptr null; char* to + }, ; 12656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20606_to, ; char* from + ptr null; char* to + }, ; 12657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20606_to, ; char* from + ptr null; char* to + }, ; 12658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20609_to, ; char* from + ptr null; char* to + }, ; 12659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20609_to, ; char* from + ptr null; char* to + }, ; 12660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20657_to, ; char* from + ptr @.TypeMapEntry.20656_from; char* to + }, ; 12661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20612_to, ; char* from + ptr null; char* to + }, ; 12662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20612_to, ; char* from + ptr null; char* to + }, ; 12663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20679_to, ; char* from + ptr @.TypeMapEntry.20678_from; char* to + }, ; 12664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20615_to, ; char* from + ptr null; char* to + }, ; 12665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20615_to, ; char* from + ptr null; char* to + }, ; 12666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20681_to, ; char* from + ptr @.TypeMapEntry.20680_from; char* to + }, ; 12667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20618_to, ; char* from + ptr null; char* to + }, ; 12668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20618_to, ; char* from + ptr null; char* to + }, ; 12669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20621_to, ; char* from + ptr null; char* to + }, ; 12670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20621_to, ; char* from + ptr null; char* to + }, ; 12671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20624_to, ; char* from + ptr null; char* to + }, ; 12672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20624_to, ; char* from + ptr null; char* to + }, ; 12673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20627_to, ; char* from + ptr null; char* to + }, ; 12674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20627_to, ; char* from + ptr null; char* to + }, ; 12675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20630_to, ; char* from + ptr null; char* to + }, ; 12676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20630_to, ; char* from + ptr null; char* to + }, ; 12677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20633_to, ; char* from + ptr null; char* to + }, ; 12678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20633_to, ; char* from + ptr null; char* to + }, ; 12679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20686_to, ; char* from + ptr @.TypeMapEntry.20685_from; char* to + }, ; 12680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20636_to, ; char* from + ptr null; char* to + }, ; 12681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20636_to, ; char* from + ptr null; char* to + }, ; 12682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20639_to, ; char* from + ptr null; char* to + }, ; 12683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20639_to, ; char* from + ptr null; char* to + }, ; 12684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20642_to, ; char* from + ptr null; char* to + }, ; 12685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20642_to, ; char* from + ptr null; char* to + }, ; 12686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20645_to, ; char* from + ptr null; char* to + }, ; 12687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20645_to, ; char* from + ptr null; char* to + }, ; 12688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20648_to, ; char* from + ptr null; char* to + }, ; 12689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20648_to, ; char* from + ptr null; char* to + }, ; 12690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20651_to, ; char* from + ptr null; char* to + }, ; 12691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20651_to, ; char* from + ptr null; char* to + }, ; 12692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20654_to, ; char* from + ptr null; char* to + }, ; 12693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20654_to, ; char* from + ptr null; char* to + }, ; 12694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20585_to, ; char* from + ptr null; char* to + }, ; 12695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20585_to, ; char* from + ptr null; char* to + }, ; 12696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20588_to, ; char* from + ptr null; char* to + }, ; 12697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20588_to, ; char* from + ptr null; char* to + }, ; 12698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20591_to, ; char* from + ptr null; char* to + }, ; 12699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20591_to, ; char* from + ptr null; char* to + }, ; 12700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20594_to, ; char* from + ptr null; char* to + }, ; 12701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20594_to, ; char* from + ptr null; char* to + }, ; 12702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20659_to, ; char* from + ptr null; char* to + }, ; 12703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20659_to, ; char* from + ptr null; char* to + }, ; 12704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20662_to, ; char* from + ptr null; char* to + }, ; 12705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20662_to, ; char* from + ptr null; char* to + }, ; 12706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20665_to, ; char* from + ptr null; char* to + }, ; 12707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20665_to, ; char* from + ptr null; char* to + }, ; 12708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20667_to, ; char* from + ptr null; char* to + }, ; 12709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20667_to, ; char* from + ptr null; char* to + }, ; 12710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20671_to, ; char* from + ptr null; char* to + }, ; 12711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20671_to, ; char* from + ptr null; char* to + }, ; 12712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20674_to, ; char* from + ptr null; char* to + }, ; 12713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20674_to, ; char* from + ptr null; char* to + }, ; 12714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20677_to, ; char* from + ptr @.TypeMapEntry.20676_from; char* to + }, ; 12715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20683_to, ; char* from + ptr null; char* to + }, ; 12716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20683_to, ; char* from + ptr null; char* to + }, ; 12717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20688_to, ; char* from + ptr @.TypeMapEntry.20687_from; char* to + }, ; 12718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20690_to, ; char* from + ptr @.TypeMapEntry.20689_from; char* to + }, ; 12719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20692_to, ; char* from + ptr @.TypeMapEntry.20691_from; char* to + }, ; 12720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20694_to, ; char* from + ptr @.TypeMapEntry.20693_from; char* to + }, ; 12721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20696_to, ; char* from + ptr @.TypeMapEntry.20695_from; char* to + }, ; 12722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20698_to, ; char* from + ptr @.TypeMapEntry.20697_from; char* to + }, ; 12723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20698_to, ; char* from + ptr @.TypeMapEntry.20697_from; char* to + }, ; 12724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20701_to, ; char* from + ptr @.TypeMapEntry.20700_from; char* to + }, ; 12725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20703_to, ; char* from + ptr @.TypeMapEntry.20702_from; char* to + }, ; 12726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20705_to, ; char* from + ptr @.TypeMapEntry.20704_from; char* to + }, ; 12727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20707_to, ; char* from + ptr @.TypeMapEntry.20706_from; char* to + }, ; 12728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20707_to, ; char* from + ptr @.TypeMapEntry.20706_from; char* to + }, ; 12729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20713_to, ; char* from + ptr @.TypeMapEntry.20712_from; char* to + }, ; 12730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20733_to, ; char* from + ptr @.TypeMapEntry.20732_from; char* to + }, ; 12731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20735_to, ; char* from + ptr @.TypeMapEntry.20734_from; char* to + }, ; 12732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20735_to, ; char* from + ptr @.TypeMapEntry.20734_from; char* to + }, ; 12733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20738_to, ; char* from + ptr @.TypeMapEntry.20737_from; char* to + }, ; 12734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20740_to, ; char* from + ptr @.TypeMapEntry.20739_from; char* to + }, ; 12735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20740_to, ; char* from + ptr @.TypeMapEntry.20739_from; char* to + }, ; 12736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20743_to, ; char* from + ptr @.TypeMapEntry.20742_from; char* to + }, ; 12737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20745_to, ; char* from + ptr @.TypeMapEntry.20744_from; char* to + }, ; 12738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20745_to, ; char* from + ptr @.TypeMapEntry.20744_from; char* to + }, ; 12739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20748_to, ; char* from + ptr @.TypeMapEntry.20747_from; char* to + }, ; 12740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20750_to, ; char* from + ptr @.TypeMapEntry.20749_from; char* to + }, ; 12741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20752_to, ; char* from + ptr @.TypeMapEntry.20751_from; char* to + }, ; 12742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20710_to, ; char* from + ptr null; char* to + }, ; 12743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20710_to, ; char* from + ptr null; char* to + }, ; 12744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20756_to, ; char* from + ptr @.TypeMapEntry.20755_from; char* to + }, ; 12745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20758_to, ; char* from + ptr @.TypeMapEntry.20757_from; char* to + }, ; 12746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20758_to, ; char* from + ptr @.TypeMapEntry.20757_from; char* to + }, ; 12747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20761_to, ; char* from + ptr @.TypeMapEntry.20760_from; char* to + }, ; 12748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20719_to, ; char* from + ptr null; char* to + }, ; 12749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20719_to, ; char* from + ptr null; char* to + }, ; 12750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20722_to, ; char* from + ptr null; char* to + }, ; 12751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20722_to, ; char* from + ptr null; char* to + }, ; 12752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20725_to, ; char* from + ptr null; char* to + }, ; 12753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20725_to, ; char* from + ptr null; char* to + }, ; 12754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20728_to, ; char* from + ptr null; char* to + }, ; 12755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20728_to, ; char* from + ptr null; char* to + }, ; 12756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20763_to, ; char* from + ptr @.TypeMapEntry.20762_from; char* to + }, ; 12757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20765_to, ; char* from + ptr @.TypeMapEntry.20764_from; char* to + }, ; 12758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20767_to, ; char* from + ptr @.TypeMapEntry.20766_from; char* to + }, ; 12759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20769_to, ; char* from + ptr @.TypeMapEntry.20768_from; char* to + }, ; 12760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20771_to, ; char* from + ptr @.TypeMapEntry.20770_from; char* to + }, ; 12761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20773_to, ; char* from + ptr @.TypeMapEntry.20772_from; char* to + }, ; 12762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20775_to, ; char* from + ptr @.TypeMapEntry.20774_from; char* to + }, ; 12763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20777_to, ; char* from + ptr @.TypeMapEntry.20776_from; char* to + }, ; 12764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20779_to, ; char* from + ptr @.TypeMapEntry.20778_from; char* to + }, ; 12765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20781_to, ; char* from + ptr @.TypeMapEntry.20780_from; char* to + }, ; 12766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20783_to, ; char* from + ptr @.TypeMapEntry.20782_from; char* to + }, ; 12767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20785_to, ; char* from + ptr @.TypeMapEntry.20784_from; char* to + }, ; 12768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20789_to, ; char* from + ptr @.TypeMapEntry.20788_from; char* to + }, ; 12769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20787_to, ; char* from + ptr @.TypeMapEntry.20786_from; char* to + }, ; 12770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20791_to, ; char* from + ptr @.TypeMapEntry.20790_from; char* to + }, ; 12771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20793_to, ; char* from + ptr @.TypeMapEntry.20792_from; char* to + }, ; 12772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20795_to, ; char* from + ptr @.TypeMapEntry.20794_from; char* to + }, ; 12773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20813_to, ; char* from + ptr null; char* to + }, ; 12774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20813_to, ; char* from + ptr null; char* to + }, ; 12775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20815_to, ; char* from + ptr null; char* to + }, ; 12776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20815_to, ; char* from + ptr null; char* to + }, ; 12777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20818_to, ; char* from + ptr null; char* to + }, ; 12778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20818_to, ; char* from + ptr null; char* to + }, ; 12779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20801_to, ; char* from + ptr @.TypeMapEntry.20800_from; char* to + }, ; 12780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20801_to, ; char* from + ptr @.TypeMapEntry.20800_from; char* to + }, ; 12781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20804_to, ; char* from + ptr @.TypeMapEntry.20803_from; char* to + }, ; 12782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20804_to, ; char* from + ptr @.TypeMapEntry.20803_from; char* to + }, ; 12783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20807_to, ; char* from + ptr @.TypeMapEntry.20806_from; char* to + }, ; 12784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20807_to, ; char* from + ptr @.TypeMapEntry.20806_from; char* to + }, ; 12785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20810_to, ; char* from + ptr @.TypeMapEntry.20809_from; char* to + }, ; 12786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20810_to, ; char* from + ptr @.TypeMapEntry.20809_from; char* to + }, ; 12787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20830_to, ; char* from + ptr null; char* to + }, ; 12788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20830_to, ; char* from + ptr null; char* to + }, ; 12789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20832_to, ; char* from + ptr null; char* to + }, ; 12790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20832_to, ; char* from + ptr null; char* to + }, ; 12791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20834_to, ; char* from + ptr null; char* to + }, ; 12792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20834_to, ; char* from + ptr null; char* to + }, ; 12793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20838_to, ; char* from + ptr null; char* to + }, ; 12794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20838_to, ; char* from + ptr null; char* to + }, ; 12795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20840_to, ; char* from + ptr null; char* to + }, ; 12796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20840_to, ; char* from + ptr null; char* to + }, ; 12797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20843_to, ; char* from + ptr null; char* to + }, ; 12798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20843_to, ; char* from + ptr null; char* to + }, ; 12799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20848_to, ; char* from + ptr @.TypeMapEntry.20847_from; char* to + }, ; 12800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20848_to, ; char* from + ptr @.TypeMapEntry.20847_from; char* to + }, ; 12801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20851_to, ; char* from + ptr @.TypeMapEntry.20850_from; char* to + }, ; 12802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20851_to, ; char* from + ptr @.TypeMapEntry.20850_from; char* to + }, ; 12803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20854_to, ; char* from + ptr @.TypeMapEntry.20853_from; char* to + }, ; 12804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20856_to, ; char* from + ptr @.TypeMapEntry.20855_from; char* to + }, ; 12805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20856_to, ; char* from + ptr @.TypeMapEntry.20855_from; char* to + }, ; 12806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20859_to, ; char* from + ptr @.TypeMapEntry.20858_from; char* to + }, ; 12807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20864_to, ; char* from + ptr null; char* to + }, ; 12808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20864_to, ; char* from + ptr null; char* to + }, ; 12809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20867_to, ; char* from + ptr null; char* to + }, ; 12810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20867_to, ; char* from + ptr null; char* to + }, ; 12811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20861_to, ; char* from + ptr @.TypeMapEntry.20860_from; char* to + }, ; 12812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20861_to, ; char* from + ptr @.TypeMapEntry.20860_from; char* to + }, ; 12813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20870_to, ; char* from + ptr null; char* to + }, ; 12814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20870_to, ; char* from + ptr null; char* to + }, ; 12815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20894_to, ; char* from + ptr @.TypeMapEntry.20893_from; char* to + }, ; 12816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20896_to, ; char* from + ptr @.TypeMapEntry.20895_from; char* to + }, ; 12817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20896_to, ; char* from + ptr @.TypeMapEntry.20895_from; char* to + }, ; 12818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20899_to, ; char* from + ptr @.TypeMapEntry.20898_from; char* to + }, ; 12819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20873_to, ; char* from + ptr null; char* to + }, ; 12820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20873_to, ; char* from + ptr null; char* to + }, ; 12821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20901_to, ; char* from + ptr @.TypeMapEntry.20900_from; char* to + }, ; 12822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20903_to, ; char* from + ptr @.TypeMapEntry.20902_from; char* to + }, ; 12823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20903_to, ; char* from + ptr @.TypeMapEntry.20902_from; char* to + }, ; 12824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20906_to, ; char* from + ptr @.TypeMapEntry.20905_from; char* to + }, ; 12825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20906_to, ; char* from + ptr @.TypeMapEntry.20905_from; char* to + }, ; 12826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20909_to, ; char* from + ptr @.TypeMapEntry.20908_from; char* to + }, ; 12827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20911_to, ; char* from + ptr @.TypeMapEntry.20910_from; char* to + }, ; 12828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20911_to, ; char* from + ptr @.TypeMapEntry.20910_from; char* to + }, ; 12829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20914_to, ; char* from + ptr @.TypeMapEntry.20913_from; char* to + }, ; 12830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20914_to, ; char* from + ptr @.TypeMapEntry.20913_from; char* to + }, ; 12831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20921_to, ; char* from + ptr @.TypeMapEntry.20920_from; char* to + }, ; 12832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20917_to, ; char* from + ptr @.TypeMapEntry.20916_from; char* to + }, ; 12833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20919_to, ; char* from + ptr @.TypeMapEntry.20918_from; char* to + }, ; 12834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20923_to, ; char* from + ptr @.TypeMapEntry.20922_from; char* to + }, ; 12835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20925_to, ; char* from + ptr @.TypeMapEntry.20924_from; char* to + }, ; 12836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20927_to, ; char* from + ptr @.TypeMapEntry.20926_from; char* to + }, ; 12837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20929_to, ; char* from + ptr @.TypeMapEntry.20928_from; char* to + }, ; 12838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20931_to, ; char* from + ptr @.TypeMapEntry.20930_from; char* to + }, ; 12839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20933_to, ; char* from + ptr @.TypeMapEntry.20932_from; char* to + }, ; 12840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20935_to, ; char* from + ptr @.TypeMapEntry.20934_from; char* to + }, ; 12841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20937_to, ; char* from + ptr @.TypeMapEntry.20936_from; char* to + }, ; 12842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20937_to, ; char* from + ptr @.TypeMapEntry.20936_from; char* to + }, ; 12843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20939_to, ; char* from + ptr @.TypeMapEntry.20938_from; char* to + }, ; 12844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20939_to, ; char* from + ptr @.TypeMapEntry.20938_from; char* to + }, ; 12845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20876_to, ; char* from + ptr null; char* to + }, ; 12846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20876_to, ; char* from + ptr null; char* to + }, ; 12847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20943_to, ; char* from + ptr @.TypeMapEntry.20942_from; char* to + }, ; 12848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20878_to, ; char* from + ptr null; char* to + }, ; 12849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20878_to, ; char* from + ptr null; char* to + }, ; 12850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20881_to, ; char* from + ptr null; char* to + }, ; 12851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20881_to, ; char* from + ptr null; char* to + }, ; 12852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20945_to, ; char* from + ptr @.TypeMapEntry.20944_from; char* to + }, ; 12853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20945_to, ; char* from + ptr @.TypeMapEntry.20944_from; char* to + }, ; 12854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20947_to, ; char* from + ptr @.TypeMapEntry.20946_from; char* to + }, ; 12855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20947_to, ; char* from + ptr @.TypeMapEntry.20946_from; char* to + }, ; 12856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20951_to, ; char* from + ptr @.TypeMapEntry.20950_from; char* to + }, ; 12857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20885_to, ; char* from + ptr null; char* to + }, ; 12858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20885_to, ; char* from + ptr null; char* to + }, ; 12859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20953_to, ; char* from + ptr @.TypeMapEntry.20952_from; char* to + }, ; 12860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20955_to, ; char* from + ptr @.TypeMapEntry.20954_from; char* to + }, ; 12861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20955_to, ; char* from + ptr @.TypeMapEntry.20954_from; char* to + }, ; 12862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20958_to, ; char* from + ptr @.TypeMapEntry.20957_from; char* to + }, ; 12863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20958_to, ; char* from + ptr @.TypeMapEntry.20957_from; char* to + }, ; 12864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20961_to, ; char* from + ptr @.TypeMapEntry.20960_from; char* to + }, ; 12865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20961_to, ; char* from + ptr @.TypeMapEntry.20960_from; char* to + }, ; 12866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20888_to, ; char* from + ptr null; char* to + }, ; 12867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20888_to, ; char* from + ptr null; char* to + }, ; 12868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20891_to, ; char* from + ptr null; char* to + }, ; 12869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20891_to, ; char* from + ptr null; char* to + }, ; 12870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20964_to, ; char* from + ptr @.TypeMapEntry.20963_from; char* to + }, ; 12871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20976_to, ; char* from + ptr @.TypeMapEntry.20975_from; char* to + }, ; 12872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20978_to, ; char* from + ptr null; char* to + }, ; 12873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20978_to, ; char* from + ptr null; char* to + }, ; 12874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20983_to, ; char* from + ptr @.TypeMapEntry.20982_from; char* to + }, ; 12875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20985_to, ; char* from + ptr @.TypeMapEntry.20984_from; char* to + }, ; 12876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20987_to, ; char* from + ptr @.TypeMapEntry.20986_from; char* to + }, ; 12877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20966_to, ; char* from + ptr null; char* to + }, ; 12878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20966_to, ; char* from + ptr null; char* to + }, ; 12879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20968_to, ; char* from + ptr null; char* to + }, ; 12880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20968_to, ; char* from + ptr null; char* to + }, ; 12881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20972_to, ; char* from + ptr @.TypeMapEntry.20971_from; char* to + }, ; 12882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20974_to, ; char* from + ptr @.TypeMapEntry.20973_from; char* to + }, ; 12883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20981_to, ; char* from + ptr @.TypeMapEntry.20980_from; char* to + }, ; 12884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20989_to, ; char* from + ptr @.TypeMapEntry.20988_from; char* to + }, ; 12885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20991_to, ; char* from + ptr @.TypeMapEntry.20990_from; char* to + }, ; 12886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20993_to, ; char* from + ptr @.TypeMapEntry.20992_from; char* to + }, ; 12887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20993_to, ; char* from + ptr @.TypeMapEntry.20992_from; char* to + }, ; 12888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20995_to, ; char* from + ptr @.TypeMapEntry.20994_from; char* to + }, ; 12889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20997_to, ; char* from + ptr @.TypeMapEntry.20996_from; char* to + }, ; 12890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20999_to, ; char* from + ptr @.TypeMapEntry.20998_from; char* to + }, ; 12891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21002_to, ; char* from + ptr @.TypeMapEntry.21001_from; char* to + }, ; 12892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21004_to, ; char* from + ptr @.TypeMapEntry.21003_from; char* to + }, ; 12893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21006_to, ; char* from + ptr @.TypeMapEntry.21005_from; char* to + }, ; 12894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21006_to, ; char* from + ptr @.TypeMapEntry.21005_from; char* to + }, ; 12895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21011_to, ; char* from + ptr null; char* to + }, ; 12896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21011_to, ; char* from + ptr null; char* to + }, ; 12897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21009_to, ; char* from + ptr @.TypeMapEntry.21008_from; char* to + }, ; 12898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21014_to, ; char* from + ptr null; char* to + }, ; 12899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21014_to, ; char* from + ptr null; char* to + }, ; 12900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21017_to, ; char* from + ptr null; char* to + }, ; 12901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21017_to, ; char* from + ptr null; char* to + }, ; 12902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21020_to, ; char* from + ptr null; char* to + }, ; 12903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21020_to, ; char* from + ptr null; char* to + }, ; 12904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21023_to, ; char* from + ptr null; char* to + }, ; 12905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21023_to, ; char* from + ptr null; char* to + }, ; 12906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21026_to, ; char* from + ptr null; char* to + }, ; 12907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21026_to, ; char* from + ptr null; char* to + }, ; 12908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21047_to, ; char* from + ptr @.TypeMapEntry.21046_from; char* to + }, ; 12909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21028_to, ; char* from + ptr null; char* to + }, ; 12910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21028_to, ; char* from + ptr null; char* to + }, ; 12911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21032_to, ; char* from + ptr null; char* to + }, ; 12912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21032_to, ; char* from + ptr null; char* to + }, ; 12913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21035_to, ; char* from + ptr null; char* to + }, ; 12914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21035_to, ; char* from + ptr null; char* to + }, ; 12915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21038_to, ; char* from + ptr null; char* to + }, ; 12916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21038_to, ; char* from + ptr null; char* to + }, ; 12917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21041_to, ; char* from + ptr null; char* to + }, ; 12918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21041_to, ; char* from + ptr null; char* to + }, ; 12919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21049_to, ; char* from + ptr @.TypeMapEntry.21048_from; char* to + }, ; 12920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21044_to, ; char* from + ptr null; char* to + }, ; 12921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21044_to, ; char* from + ptr null; char* to + }, ; 12922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21165_to, ; char* from + ptr @.TypeMapEntry.21164_from; char* to + }, ; 12923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21051_to, ; char* from + ptr @.TypeMapEntry.21050_from; char* to + }, ; 12924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21055_to, ; char* from + ptr @.TypeMapEntry.21054_from; char* to + }, ; 12925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21053_to, ; char* from + ptr @.TypeMapEntry.21052_from; char* to + }, ; 12926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21057_to, ; char* from + ptr @.TypeMapEntry.21056_from; char* to + }, ; 12927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21057_to, ; char* from + ptr @.TypeMapEntry.21056_from; char* to + }, ; 12928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21060_to, ; char* from + ptr @.TypeMapEntry.21059_from; char* to + }, ; 12929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21060_to, ; char* from + ptr @.TypeMapEntry.21059_from; char* to + }, ; 12930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21063_to, ; char* from + ptr @.TypeMapEntry.21062_from; char* to + }, ; 12931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21063_to, ; char* from + ptr @.TypeMapEntry.21062_from; char* to + }, ; 12932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21066_to, ; char* from + ptr null; char* to + }, ; 12933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21066_to, ; char* from + ptr null; char* to + }, ; 12934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21069_to, ; char* from + ptr @.TypeMapEntry.21068_from; char* to + }, ; 12935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21071_to, ; char* from + ptr @.TypeMapEntry.21070_from; char* to + }, ; 12936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21071_to, ; char* from + ptr @.TypeMapEntry.21070_from; char* to + }, ; 12937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21073_to, ; char* from + ptr @.TypeMapEntry.21072_from; char* to + }, ; 12938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21073_to, ; char* from + ptr @.TypeMapEntry.21072_from; char* to + }, ; 12939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21077_to, ; char* from + ptr @.TypeMapEntry.21076_from; char* to + }, ; 12940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21079_to, ; char* from + ptr @.TypeMapEntry.21078_from; char* to + }, ; 12941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21081_to, ; char* from + ptr @.TypeMapEntry.21080_from; char* to + }, ; 12942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21081_to, ; char* from + ptr @.TypeMapEntry.21080_from; char* to + }, ; 12943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21083_to, ; char* from + ptr @.TypeMapEntry.21082_from; char* to + }, ; 12944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21083_to, ; char* from + ptr @.TypeMapEntry.21082_from; char* to + }, ; 12945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21094_to, ; char* from + ptr null; char* to + }, ; 12946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21094_to, ; char* from + ptr null; char* to + }, ; 12947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21114_to, ; char* from + ptr @.TypeMapEntry.21113_from; char* to + }, ; 12948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21099_to, ; char* from + ptr null; char* to + }, ; 12949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21099_to, ; char* from + ptr null; char* to + }, ; 12950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21102_to, ; char* from + ptr null; char* to + }, ; 12951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21102_to, ; char* from + ptr null; char* to + }, ; 12952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21105_to, ; char* from + ptr null; char* to + }, ; 12953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21105_to, ; char* from + ptr null; char* to + }, ; 12954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21108_to, ; char* from + ptr null; char* to + }, ; 12955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21108_to, ; char* from + ptr null; char* to + }, ; 12956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21135_to, ; char* from + ptr @.TypeMapEntry.21134_from; char* to + }, ; 12957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21135_to, ; char* from + ptr @.TypeMapEntry.21134_from; char* to + }, ; 12958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21137_to, ; char* from + ptr @.TypeMapEntry.21136_from; char* to + }, ; 12959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21139_to, ; char* from + ptr @.TypeMapEntry.21138_from; char* to + }, ; 12960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21141_to, ; char* from + ptr @.TypeMapEntry.21140_from; char* to + }, ; 12961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21141_to, ; char* from + ptr @.TypeMapEntry.21140_from; char* to + }, ; 12962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21143_to, ; char* from + ptr @.TypeMapEntry.21142_from; char* to + }, ; 12963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21111_to, ; char* from + ptr null; char* to + }, ; 12964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21111_to, ; char* from + ptr null; char* to + }, ; 12965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21091_to, ; char* from + ptr null; char* to + }, ; 12966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21091_to, ; char* from + ptr null; char* to + }, ; 12967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21087_to, ; char* from + ptr @.TypeMapEntry.21086_from; char* to + }, ; 12968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21089_to, ; char* from + ptr @.TypeMapEntry.21088_from; char* to + }, ; 12969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21124_to, ; char* from + ptr @.TypeMapEntry.21123_from; char* to + }, ; 12970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21126_to, ; char* from + ptr @.TypeMapEntry.21125_from; char* to + }, ; 12971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21128_to, ; char* from + ptr @.TypeMapEntry.21127_from; char* to + }, ; 12972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21128_to, ; char* from + ptr @.TypeMapEntry.21127_from; char* to + }, ; 12973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21118_to, ; char* from + ptr null; char* to + }, ; 12974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21118_to, ; char* from + ptr null; char* to + }, ; 12975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21121_to, ; char* from + ptr null; char* to + }, ; 12976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21121_to, ; char* from + ptr null; char* to + }, ; 12977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21131_to, ; char* from + ptr @.TypeMapEntry.21130_from; char* to + }, ; 12978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21133_to, ; char* from + ptr @.TypeMapEntry.21132_from; char* to + }, ; 12979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21147_to, ; char* from + ptr @.TypeMapEntry.21146_from; char* to + }, ; 12980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21147_to, ; char* from + ptr @.TypeMapEntry.21146_from; char* to + }, ; 12981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21149_to, ; char* from + ptr @.TypeMapEntry.21148_from; char* to + }, ; 12982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21149_to, ; char* from + ptr @.TypeMapEntry.21148_from; char* to + }, ; 12983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21152_to, ; char* from + ptr @.TypeMapEntry.21151_from; char* to + }, ; 12984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21152_to, ; char* from + ptr @.TypeMapEntry.21151_from; char* to + }, ; 12985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21156_to, ; char* from + ptr @.TypeMapEntry.21155_from; char* to + }, ; 12986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21156_to, ; char* from + ptr @.TypeMapEntry.21155_from; char* to + }, ; 12987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21159_to, ; char* from + ptr @.TypeMapEntry.21158_from; char* to + }, ; 12988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21159_to, ; char* from + ptr @.TypeMapEntry.21158_from; char* to + }, ; 12989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21161_to, ; char* from + ptr @.TypeMapEntry.21160_from; char* to + }, ; 12990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21161_to, ; char* from + ptr @.TypeMapEntry.21160_from; char* to + }, ; 12991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21167_to, ; char* from + ptr null; char* to + }, ; 12992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21167_to, ; char* from + ptr null; char* to + }, ; 12993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21182_to, ; char* from + ptr @.TypeMapEntry.21181_from; char* to + }, ; 12994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21184_to, ; char* from + ptr @.TypeMapEntry.21183_from; char* to + }, ; 12995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21169_to, ; char* from + ptr null; char* to + }, ; 12996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21169_to, ; char* from + ptr null; char* to + }, ; 12997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21186_to, ; char* from + ptr @.TypeMapEntry.21185_from; char* to + }, ; 12998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21188_to, ; char* from + ptr @.TypeMapEntry.21187_from; char* to + }, ; 12999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21188_to, ; char* from + ptr @.TypeMapEntry.21187_from; char* to + }, ; 13000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21190_to, ; char* from + ptr @.TypeMapEntry.21189_from; char* to + }, ; 13001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21172_to, ; char* from + ptr null; char* to + }, ; 13002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21172_to, ; char* from + ptr null; char* to + }, ; 13003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21193_to, ; char* from + ptr @.TypeMapEntry.21192_from; char* to + }, ; 13004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21175_to, ; char* from + ptr null; char* to + }, ; 13005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21175_to, ; char* from + ptr null; char* to + }, ; 13006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21179_to, ; char* from + ptr null; char* to + }, ; 13007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21179_to, ; char* from + ptr null; char* to + }, ; 13008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21306_to, ; char* from + ptr @.TypeMapEntry.21305_from; char* to + }, ; 13009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21555_to, ; char* from + ptr null; char* to + }, ; 13010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21555_to, ; char* from + ptr null; char* to + }, ; 13011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21308_to, ; char* from + ptr @.TypeMapEntry.21307_from; char* to + }, ; 13012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21310_to, ; char* from + ptr @.TypeMapEntry.21309_from; char* to + }, ; 13013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21425_to, ; char* from + ptr @.TypeMapEntry.21424_from; char* to + }, ; 13014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21558_to, ; char* from + ptr null; char* to + }, ; 13015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21558_to, ; char* from + ptr null; char* to + }, ; 13016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21561_to, ; char* from + ptr null; char* to + }, ; 13017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21561_to, ; char* from + ptr null; char* to + }, ; 13018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21521_to, ; char* from + ptr @.TypeMapEntry.21520_from; char* to + }, ; 13019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21523_to, ; char* from + ptr @.TypeMapEntry.21522_from; char* to + }, ; 13020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21525_to, ; char* from + ptr @.TypeMapEntry.21524_from; char* to + }, ; 13021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21525_to, ; char* from + ptr @.TypeMapEntry.21524_from; char* to + }, ; 13022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21564_to, ; char* from + ptr null; char* to + }, ; 13023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21564_to, ; char* from + ptr null; char* to + }, ; 13024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21567_to, ; char* from + ptr null; char* to + }, ; 13025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21567_to, ; char* from + ptr null; char* to + }, ; 13026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21528_to, ; char* from + ptr @.TypeMapEntry.21527_from; char* to + }, ; 13027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21570_to, ; char* from + ptr null; char* to + }, ; 13028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21570_to, ; char* from + ptr null; char* to + }, ; 13029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21537_to, ; char* from + ptr @.TypeMapEntry.21536_from; char* to + }, ; 13030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21573_to, ; char* from + ptr null; char* to + }, ; 13031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21573_to, ; char* from + ptr null; char* to + }, ; 13032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21576_to, ; char* from + ptr null; char* to + }, ; 13033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21576_to, ; char* from + ptr null; char* to + }, ; 13034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21579_to, ; char* from + ptr null; char* to + }, ; 13035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21579_to, ; char* from + ptr null; char* to + }, ; 13036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21582_to, ; char* from + ptr null; char* to + }, ; 13037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21582_to, ; char* from + ptr null; char* to + }, ; 13038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21585_to, ; char* from + ptr null; char* to + }, ; 13039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21585_to, ; char* from + ptr null; char* to + }, ; 13040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21588_to, ; char* from + ptr null; char* to + }, ; 13041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21588_to, ; char* from + ptr null; char* to + }, ; 13042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21591_to, ; char* from + ptr null; char* to + }, ; 13043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21591_to, ; char* from + ptr null; char* to + }, ; 13044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21553_to, ; char* from + ptr @.TypeMapEntry.21552_from; char* to + }, ; 13045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22034_to, ; char* from + ptr @.TypeMapEntry.22033_from; char* to + }, ; 13046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22036_to, ; char* from + ptr @.TypeMapEntry.22035_from; char* to + }, ; 13047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22038_to, ; char* from + ptr @.TypeMapEntry.22037_from; char* to + }, ; 13048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21594_to, ; char* from + ptr null; char* to + }, ; 13049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21594_to, ; char* from + ptr null; char* to + }, ; 13050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22040_to, ; char* from + ptr @.TypeMapEntry.22039_from; char* to + }, ; 13051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22042_to, ; char* from + ptr @.TypeMapEntry.22041_from; char* to + }, ; 13052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21597_to, ; char* from + ptr null; char* to + }, ; 13053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21597_to, ; char* from + ptr null; char* to + }, ; 13054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22048_to, ; char* from + ptr @.TypeMapEntry.22047_from; char* to + }, ; 13055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22050_to, ; char* from + ptr @.TypeMapEntry.22049_from; char* to + }, ; 13056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22052_to, ; char* from + ptr @.TypeMapEntry.22051_from; char* to + }, ; 13057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22054_to, ; char* from + ptr @.TypeMapEntry.22053_from; char* to + }, ; 13058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21664_to, ; char* from + ptr null; char* to + }, ; 13059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21664_to, ; char* from + ptr null; char* to + }, ; 13060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21667_to, ; char* from + ptr null; char* to + }, ; 13061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21667_to, ; char* from + ptr null; char* to + }, ; 13062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21670_to, ; char* from + ptr null; char* to + }, ; 13063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21670_to, ; char* from + ptr null; char* to + }, ; 13064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22056_to, ; char* from + ptr @.TypeMapEntry.22055_from; char* to + }, ; 13065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21673_to, ; char* from + ptr null; char* to + }, ; 13066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21673_to, ; char* from + ptr null; char* to + }, ; 13067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22058_to, ; char* from + ptr @.TypeMapEntry.22057_from; char* to + }, ; 13068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22074_to, ; char* from + ptr @.TypeMapEntry.22073_from; char* to + }, ; 13069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21676_to, ; char* from + ptr null; char* to + }, ; 13070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21676_to, ; char* from + ptr null; char* to + }, ; 13071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21679_to, ; char* from + ptr null; char* to + }, ; 13072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21679_to, ; char* from + ptr null; char* to + }, ; 13073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21682_to, ; char* from + ptr null; char* to + }, ; 13074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21682_to, ; char* from + ptr null; char* to + }, ; 13075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22270_to, ; char* from + ptr @.TypeMapEntry.22269_from; char* to + }, ; 13076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22272_to, ; char* from + ptr @.TypeMapEntry.22271_from; char* to + }, ; 13077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22274_to, ; char* from + ptr @.TypeMapEntry.22273_from; char* to + }, ; 13078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21685_to, ; char* from + ptr null; char* to + }, ; 13079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21685_to, ; char* from + ptr null; char* to + }, ; 13080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22286_to, ; char* from + ptr @.TypeMapEntry.22285_from; char* to + }, ; 13081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21688_to, ; char* from + ptr null; char* to + }, ; 13082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21688_to, ; char* from + ptr null; char* to + }, ; 13083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21691_to, ; char* from + ptr null; char* to + }, ; 13084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21691_to, ; char* from + ptr null; char* to + }, ; 13085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22290_to, ; char* from + ptr @.TypeMapEntry.22289_from; char* to + }, ; 13086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22365_to, ; char* from + ptr @.TypeMapEntry.22364_from; char* to + }, ; 13087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22420_to, ; char* from + ptr @.TypeMapEntry.22419_from; char* to + }, ; 13088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22422_to, ; char* from + ptr @.TypeMapEntry.22421_from; char* to + }, ; 13089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22424_to, ; char* from + ptr @.TypeMapEntry.22423_from; char* to + }, ; 13090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22426_to, ; char* from + ptr @.TypeMapEntry.22425_from; char* to + }, ; 13091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22428_to, ; char* from + ptr @.TypeMapEntry.22427_from; char* to + }, ; 13092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22430_to, ; char* from + ptr @.TypeMapEntry.22429_from; char* to + }, ; 13093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22432_to, ; char* from + ptr @.TypeMapEntry.22431_from; char* to + }, ; 13094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22434_to, ; char* from + ptr @.TypeMapEntry.22433_from; char* to + }, ; 13095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22436_to, ; char* from + ptr @.TypeMapEntry.22435_from; char* to + }, ; 13096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22438_to, ; char* from + ptr @.TypeMapEntry.22437_from; char* to + }, ; 13097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22440_to, ; char* from + ptr @.TypeMapEntry.22439_from; char* to + }, ; 13098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22442_to, ; char* from + ptr @.TypeMapEntry.22441_from; char* to + }, ; 13099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22444_to, ; char* from + ptr @.TypeMapEntry.22443_from; char* to + }, ; 13100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22446_to, ; char* from + ptr @.TypeMapEntry.22445_from; char* to + }, ; 13101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22448_to, ; char* from + ptr @.TypeMapEntry.22447_from; char* to + }, ; 13102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22450_to, ; char* from + ptr @.TypeMapEntry.22449_from; char* to + }, ; 13103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22452_to, ; char* from + ptr @.TypeMapEntry.22451_from; char* to + }, ; 13104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22454_to, ; char* from + ptr @.TypeMapEntry.22453_from; char* to + }, ; 13105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22456_to, ; char* from + ptr @.TypeMapEntry.22455_from; char* to + }, ; 13106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22458_to, ; char* from + ptr @.TypeMapEntry.22457_from; char* to + }, ; 13107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22460_to, ; char* from + ptr @.TypeMapEntry.22459_from; char* to + }, ; 13108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22462_to, ; char* from + ptr @.TypeMapEntry.22461_from; char* to + }, ; 13109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22464_to, ; char* from + ptr @.TypeMapEntry.22463_from; char* to + }, ; 13110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21694_to, ; char* from + ptr null; char* to + }, ; 13111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21694_to, ; char* from + ptr null; char* to + }, ; 13112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22466_to, ; char* from + ptr @.TypeMapEntry.22465_from; char* to + }, ; 13113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21290_to, ; char* from + ptr @.TypeMapEntry.21289_from; char* to + }, ; 13114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21292_to, ; char* from + ptr @.TypeMapEntry.21291_from; char* to + }, ; 13115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21294_to, ; char* from + ptr null; char* to + }, ; 13116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21294_to, ; char* from + ptr null; char* to + }, ; 13117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21297_to, ; char* from + ptr null; char* to + }, ; 13118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21297_to, ; char* from + ptr null; char* to + }, ; 13119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21300_to, ; char* from + ptr null; char* to + }, ; 13120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21300_to, ; char* from + ptr null; char* to + }, ; 13121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21303_to, ; char* from + ptr null; char* to + }, ; 13122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21303_to, ; char* from + ptr null; char* to + }, ; 13123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21312_to, ; char* from + ptr @.TypeMapEntry.21311_from; char* to + }, ; 13124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21312_to, ; char* from + ptr @.TypeMapEntry.21311_from; char* to + }, ; 13125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21315_to, ; char* from + ptr @.TypeMapEntry.21314_from; char* to + }, ; 13126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21315_to, ; char* from + ptr @.TypeMapEntry.21314_from; char* to + }, ; 13127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21318_to, ; char* from + ptr @.TypeMapEntry.21317_from; char* to + }, ; 13128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21318_to, ; char* from + ptr @.TypeMapEntry.21317_from; char* to + }, ; 13129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21321_to, ; char* from + ptr @.TypeMapEntry.21320_from; char* to + }, ; 13130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21321_to, ; char* from + ptr @.TypeMapEntry.21320_from; char* to + }, ; 13131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21324_to, ; char* from + ptr @.TypeMapEntry.21323_from; char* to + }, ; 13132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21324_to, ; char* from + ptr @.TypeMapEntry.21323_from; char* to + }, ; 13133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21327_to, ; char* from + ptr @.TypeMapEntry.21326_from; char* to + }, ; 13134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21327_to, ; char* from + ptr @.TypeMapEntry.21326_from; char* to + }, ; 13135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21330_to, ; char* from + ptr @.TypeMapEntry.21329_from; char* to + }, ; 13136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21330_to, ; char* from + ptr @.TypeMapEntry.21329_from; char* to + }, ; 13137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21333_to, ; char* from + ptr @.TypeMapEntry.21332_from; char* to + }, ; 13138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21333_to, ; char* from + ptr @.TypeMapEntry.21332_from; char* to + }, ; 13139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21336_to, ; char* from + ptr @.TypeMapEntry.21335_from; char* to + }, ; 13140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21336_to, ; char* from + ptr @.TypeMapEntry.21335_from; char* to + }, ; 13141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21339_to, ; char* from + ptr @.TypeMapEntry.21338_from; char* to + }, ; 13142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21341_to, ; char* from + ptr @.TypeMapEntry.21340_from; char* to + }, ; 13143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21343_to, ; char* from + ptr @.TypeMapEntry.21342_from; char* to + }, ; 13144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21343_to, ; char* from + ptr @.TypeMapEntry.21342_from; char* to + }, ; 13145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21377_to, ; char* from + ptr @.TypeMapEntry.21376_from; char* to + }, ; 13146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21377_to, ; char* from + ptr @.TypeMapEntry.21376_from; char* to + }, ; 13147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21380_to, ; char* from + ptr @.TypeMapEntry.21379_from; char* to + }, ; 13148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21380_to, ; char* from + ptr @.TypeMapEntry.21379_from; char* to + }, ; 13149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21383_to, ; char* from + ptr @.TypeMapEntry.21382_from; char* to + }, ; 13150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21385_to, ; char* from + ptr @.TypeMapEntry.21384_from; char* to + }, ; 13151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21385_to, ; char* from + ptr @.TypeMapEntry.21384_from; char* to + }, ; 13152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21388_to, ; char* from + ptr @.TypeMapEntry.21387_from; char* to + }, ; 13153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21388_to, ; char* from + ptr @.TypeMapEntry.21387_from; char* to + }, ; 13154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21393_to, ; char* from + ptr null; char* to + }, ; 13155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21393_to, ; char* from + ptr null; char* to + }, ; 13156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21391_to, ; char* from + ptr @.TypeMapEntry.21390_from; char* to + }, ; 13157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21396_to, ; char* from + ptr @.TypeMapEntry.21395_from; char* to + }, ; 13158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21398_to, ; char* from + ptr @.TypeMapEntry.21397_from; char* to + }, ; 13159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21398_to, ; char* from + ptr @.TypeMapEntry.21397_from; char* to + }, ; 13160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21403_to, ; char* from + ptr @.TypeMapEntry.21402_from; char* to + }, ; 13161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21403_to, ; char* from + ptr @.TypeMapEntry.21402_from; char* to + }, ; 13162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21406_to, ; char* from + ptr @.TypeMapEntry.21405_from; char* to + }, ; 13163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21408_to, ; char* from + ptr @.TypeMapEntry.21407_from; char* to + }, ; 13164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21410_to, ; char* from + ptr @.TypeMapEntry.21409_from; char* to + }, ; 13165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21412_to, ; char* from + ptr @.TypeMapEntry.21411_from; char* to + }, ; 13166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21412_to, ; char* from + ptr @.TypeMapEntry.21411_from; char* to + }, ; 13167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21415_to, ; char* from + ptr @.TypeMapEntry.21414_from; char* to + }, ; 13168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21417_to, ; char* from + ptr @.TypeMapEntry.21416_from; char* to + }, ; 13169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21419_to, ; char* from + ptr @.TypeMapEntry.21418_from; char* to + }, ; 13170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21421_to, ; char* from + ptr @.TypeMapEntry.21420_from; char* to + }, ; 13171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21346_to, ; char* from + ptr @.TypeMapEntry.21345_from; char* to + }, ; 13172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21346_to, ; char* from + ptr @.TypeMapEntry.21345_from; char* to + }, ; 13173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21351_to, ; char* from + ptr @.TypeMapEntry.21350_from; char* to + }, ; 13174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21349_to, ; char* from + ptr @.TypeMapEntry.21348_from; char* to + }, ; 13175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21353_to, ; char* from + ptr @.TypeMapEntry.21352_from; char* to + }, ; 13176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21365_to, ; char* from + ptr @.TypeMapEntry.21364_from; char* to + }, ; 13177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21355_to, ; char* from + ptr @.TypeMapEntry.21354_from; char* to + }, ; 13178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21357_to, ; char* from + ptr @.TypeMapEntry.21356_from; char* to + }, ; 13179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21359_to, ; char* from + ptr @.TypeMapEntry.21358_from; char* to + }, ; 13180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21361_to, ; char* from + ptr @.TypeMapEntry.21360_from; char* to + }, ; 13181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21363_to, ; char* from + ptr @.TypeMapEntry.21362_from; char* to + }, ; 13182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21367_to, ; char* from + ptr @.TypeMapEntry.21366_from; char* to + }, ; 13183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21369_to, ; char* from + ptr @.TypeMapEntry.21368_from; char* to + }, ; 13184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21371_to, ; char* from + ptr @.TypeMapEntry.21370_from; char* to + }, ; 13185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21373_to, ; char* from + ptr @.TypeMapEntry.21372_from; char* to + }, ; 13186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21375_to, ; char* from + ptr @.TypeMapEntry.21374_from; char* to + }, ; 13187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21401_to, ; char* from + ptr @.TypeMapEntry.21400_from; char* to + }, ; 13188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21423_to, ; char* from + ptr @.TypeMapEntry.21422_from; char* to + }, ; 13189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21427_to, ; char* from + ptr @.TypeMapEntry.21426_from; char* to + }, ; 13190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21429_to, ; char* from + ptr @.TypeMapEntry.21428_from; char* to + }, ; 13191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21431_to, ; char* from + ptr @.TypeMapEntry.21430_from; char* to + }, ; 13192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21433_to, ; char* from + ptr @.TypeMapEntry.21432_from; char* to + }, ; 13193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21435_to, ; char* from + ptr @.TypeMapEntry.21434_from; char* to + }, ; 13194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21437_to, ; char* from + ptr @.TypeMapEntry.21436_from; char* to + }, ; 13195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21443_to, ; char* from + ptr null; char* to + }, ; 13196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21443_to, ; char* from + ptr null; char* to + }, ; 13197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21446_to, ; char* from + ptr null; char* to + }, ; 13198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21446_to, ; char* from + ptr null; char* to + }, ; 13199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21449_to, ; char* from + ptr null; char* to + }, ; 13200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21449_to, ; char* from + ptr null; char* to + }, ; 13201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21439_to, ; char* from + ptr @.TypeMapEntry.21438_from; char* to + }, ; 13202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21441_to, ; char* from + ptr @.TypeMapEntry.21440_from; char* to + }, ; 13203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21452_to, ; char* from + ptr null; char* to + }, ; 13204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21452_to, ; char* from + ptr null; char* to + }, ; 13205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21455_to, ; char* from + ptr null; char* to + }, ; 13206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21455_to, ; char* from + ptr null; char* to + }, ; 13207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21467_to, ; char* from + ptr @.TypeMapEntry.21466_from; char* to + }, ; 13208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21458_to, ; char* from + ptr null; char* to + }, ; 13209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21458_to, ; char* from + ptr null; char* to + }, ; 13210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21461_to, ; char* from + ptr null; char* to + }, ; 13211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21461_to, ; char* from + ptr null; char* to + }, ; 13212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21464_to, ; char* from + ptr null; char* to + }, ; 13213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21464_to, ; char* from + ptr null; char* to + }, ; 13214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21469_to, ; char* from + ptr @.TypeMapEntry.21468_from; char* to + }, ; 13215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21469_to, ; char* from + ptr @.TypeMapEntry.21468_from; char* to + }, ; 13216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21491_to, ; char* from + ptr null; char* to + }, ; 13217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21491_to, ; char* from + ptr null; char* to + }, ; 13218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21474_to, ; char* from + ptr @.TypeMapEntry.21473_from; char* to + }, ; 13219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21474_to, ; char* from + ptr @.TypeMapEntry.21473_from; char* to + }, ; 13220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21474_to, ; char* from + ptr @.TypeMapEntry.21473_from; char* to + }, ; 13221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21474_to, ; char* from + ptr @.TypeMapEntry.21473_from; char* to + }, ; 13222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21477_to, ; char* from + ptr @.TypeMapEntry.21476_from; char* to + }, ; 13223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21479_to, ; char* from + ptr @.TypeMapEntry.21478_from; char* to + }, ; 13224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21481_to, ; char* from + ptr @.TypeMapEntry.21480_from; char* to + }, ; 13225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21496_to, ; char* from + ptr null; char* to + }, ; 13226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21496_to, ; char* from + ptr null; char* to + }, ; 13227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21483_to, ; char* from + ptr @.TypeMapEntry.21482_from; char* to + }, ; 13228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21498_to, ; char* from + ptr null; char* to + }, ; 13229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21498_to, ; char* from + ptr null; char* to + }, ; 13230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21485_to, ; char* from + ptr @.TypeMapEntry.21484_from; char* to + }, ; 13231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21502_to, ; char* from + ptr null; char* to + }, ; 13232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21502_to, ; char* from + ptr null; char* to + }, ; 13233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21487_to, ; char* from + ptr @.TypeMapEntry.21486_from; char* to + }, ; 13234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21489_to, ; char* from + ptr @.TypeMapEntry.21488_from; char* to + }, ; 13235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21505_to, ; char* from + ptr null; char* to + }, ; 13236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21505_to, ; char* from + ptr null; char* to + }, ; 13237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21472_to, ; char* from + ptr @.TypeMapEntry.21471_from; char* to + }, ; 13238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21508_to, ; char* from + ptr @.TypeMapEntry.21507_from; char* to + }, ; 13239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21510_to, ; char* from + ptr @.TypeMapEntry.21509_from; char* to + }, ; 13240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21516_to, ; char* from + ptr null; char* to + }, ; 13241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21516_to, ; char* from + ptr null; char* to + }, ; 13242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21512_to, ; char* from + ptr @.TypeMapEntry.21511_from; char* to + }, ; 13243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21514_to, ; char* from + ptr @.TypeMapEntry.21513_from; char* to + }, ; 13244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21519_to, ; char* from + ptr @.TypeMapEntry.21518_from; char* to + }, ; 13245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21534_to, ; char* from + ptr null; char* to + }, ; 13246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21534_to, ; char* from + ptr null; char* to + }, ; 13247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21530_to, ; char* from + ptr @.TypeMapEntry.21529_from; char* to + }, ; 13248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21532_to, ; char* from + ptr @.TypeMapEntry.21531_from; char* to + }, ; 13249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21539_to, ; char* from + ptr @.TypeMapEntry.21538_from; char* to + }, ; 13250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21541_to, ; char* from + ptr null; char* to + }, ; 13251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21541_to, ; char* from + ptr null; char* to + }, ; 13252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21544_to, ; char* from + ptr null; char* to + }, ; 13253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21544_to, ; char* from + ptr null; char* to + }, ; 13254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21547_to, ; char* from + ptr null; char* to + }, ; 13255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21547_to, ; char* from + ptr null; char* to + }, ; 13256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21550_to, ; char* from + ptr null; char* to + }, ; 13257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21550_to, ; char* from + ptr null; char* to + }, ; 13258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21697_to, ; char* from + ptr @.TypeMapEntry.21696_from; char* to + }, ; 13259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21699_to, ; char* from + ptr @.TypeMapEntry.21698_from; char* to + }, ; 13260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21701_to, ; char* from + ptr @.TypeMapEntry.21700_from; char* to + }, ; 13261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21600_to, ; char* from + ptr @.TypeMapEntry.21599_from; char* to + }, ; 13262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21602_to, ; char* from + ptr @.TypeMapEntry.21601_from; char* to + }, ; 13263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21604_to, ; char* from + ptr @.TypeMapEntry.21603_from; char* to + }, ; 13264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21606_to, ; char* from + ptr @.TypeMapEntry.21605_from; char* to + }, ; 13265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21608_to, ; char* from + ptr @.TypeMapEntry.21607_from; char* to + }, ; 13266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21625_to, ; char* from + ptr @.TypeMapEntry.21624_from; char* to + }, ; 13267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21627_to, ; char* from + ptr @.TypeMapEntry.21626_from; char* to + }, ; 13268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21629_to, ; char* from + ptr @.TypeMapEntry.21628_from; char* to + }, ; 13269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21631_to, ; char* from + ptr @.TypeMapEntry.21630_from; char* to + }, ; 13270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21633_to, ; char* from + ptr @.TypeMapEntry.21632_from; char* to + }, ; 13271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21635_to, ; char* from + ptr @.TypeMapEntry.21634_from; char* to + }, ; 13272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21637_to, ; char* from + ptr @.TypeMapEntry.21636_from; char* to + }, ; 13273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21639_to, ; char* from + ptr @.TypeMapEntry.21638_from; char* to + }, ; 13274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21660_to, ; char* from + ptr @.TypeMapEntry.21659_from; char* to + }, ; 13275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21662_to, ; char* from + ptr @.TypeMapEntry.21661_from; char* to + }, ; 13276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21614_to, ; char* from + ptr @.TypeMapEntry.21613_from; char* to + }, ; 13277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21610_to, ; char* from + ptr @.TypeMapEntry.21609_from; char* to + }, ; 13278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21612_to, ; char* from + ptr @.TypeMapEntry.21611_from; char* to + }, ; 13279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21616_to, ; char* from + ptr @.TypeMapEntry.21615_from; char* to + }, ; 13280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21618_to, ; char* from + ptr @.TypeMapEntry.21617_from; char* to + }, ; 13281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21620_to, ; char* from + ptr null; char* to + }, ; 13282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21620_to, ; char* from + ptr null; char* to + }, ; 13283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21623_to, ; char* from + ptr @.TypeMapEntry.21622_from; char* to + }, ; 13284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21643_to, ; char* from + ptr null; char* to + }, ; 13285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21643_to, ; char* from + ptr null; char* to + }, ; 13286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21641_to, ; char* from + ptr @.TypeMapEntry.21640_from; char* to + }, ; 13287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21646_to, ; char* from + ptr null; char* to + }, ; 13288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21646_to, ; char* from + ptr null; char* to + }, ; 13289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21649_to, ; char* from + ptr null; char* to + }, ; 13290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21649_to, ; char* from + ptr null; char* to + }, ; 13291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21652_to, ; char* from + ptr @.TypeMapEntry.21651_from; char* to + }, ; 13292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21654_to, ; char* from + ptr @.TypeMapEntry.21653_from; char* to + }, ; 13293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21656_to, ; char* from + ptr @.TypeMapEntry.21655_from; char* to + }, ; 13294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21658_to, ; char* from + ptr @.TypeMapEntry.21657_from; char* to + }, ; 13295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21718_to, ; char* from + ptr @.TypeMapEntry.21717_from; char* to + }, ; 13296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21703_to, ; char* from + ptr null; char* to + }, ; 13297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21703_to, ; char* from + ptr null; char* to + }, ; 13298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21706_to, ; char* from + ptr null; char* to + }, ; 13299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21706_to, ; char* from + ptr null; char* to + }, ; 13300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21709_to, ; char* from + ptr null; char* to + }, ; 13301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21709_to, ; char* from + ptr null; char* to + }, ; 13302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21712_to, ; char* from + ptr null; char* to + }, ; 13303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21712_to, ; char* from + ptr null; char* to + }, ; 13304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21715_to, ; char* from + ptr null; char* to + }, ; 13305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21715_to, ; char* from + ptr null; char* to + }, ; 13306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21792_to, ; char* from + ptr null; char* to + }, ; 13307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21792_to, ; char* from + ptr null; char* to + }, ; 13308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22028_to, ; char* from + ptr @.TypeMapEntry.22027_from; char* to + }, ; 13309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21795_to, ; char* from + ptr null; char* to + }, ; 13310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21795_to, ; char* from + ptr null; char* to + }, ; 13311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21798_to, ; char* from + ptr null; char* to + }, ; 13312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21798_to, ; char* from + ptr null; char* to + }, ; 13313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21801_to, ; char* from + ptr null; char* to + }, ; 13314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21801_to, ; char* from + ptr null; char* to + }, ; 13315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21804_to, ; char* from + ptr null; char* to + }, ; 13316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21804_to, ; char* from + ptr null; char* to + }, ; 13317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21807_to, ; char* from + ptr null; char* to + }, ; 13318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21807_to, ; char* from + ptr null; char* to + }, ; 13319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21810_to, ; char* from + ptr null; char* to + }, ; 13320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21810_to, ; char* from + ptr null; char* to + }, ; 13321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21813_to, ; char* from + ptr null; char* to + }, ; 13322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21813_to, ; char* from + ptr null; char* to + }, ; 13323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21816_to, ; char* from + ptr null; char* to + }, ; 13324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21816_to, ; char* from + ptr null; char* to + }, ; 13325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21819_to, ; char* from + ptr null; char* to + }, ; 13326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21819_to, ; char* from + ptr null; char* to + }, ; 13327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21822_to, ; char* from + ptr null; char* to + }, ; 13328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21822_to, ; char* from + ptr null; char* to + }, ; 13329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21825_to, ; char* from + ptr null; char* to + }, ; 13330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21825_to, ; char* from + ptr null; char* to + }, ; 13331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21828_to, ; char* from + ptr null; char* to + }, ; 13332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21828_to, ; char* from + ptr null; char* to + }, ; 13333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21831_to, ; char* from + ptr null; char* to + }, ; 13334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21831_to, ; char* from + ptr null; char* to + }, ; 13335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21834_to, ; char* from + ptr null; char* to + }, ; 13336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21834_to, ; char* from + ptr null; char* to + }, ; 13337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22030_to, ; char* from + ptr @.TypeMapEntry.22029_from; char* to + }, ; 13338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21837_to, ; char* from + ptr null; char* to + }, ; 13339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21837_to, ; char* from + ptr null; char* to + }, ; 13340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21840_to, ; char* from + ptr null; char* to + }, ; 13341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21840_to, ; char* from + ptr null; char* to + }, ; 13342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21843_to, ; char* from + ptr null; char* to + }, ; 13343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21843_to, ; char* from + ptr null; char* to + }, ; 13344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21846_to, ; char* from + ptr null; char* to + }, ; 13345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21846_to, ; char* from + ptr null; char* to + }, ; 13346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21849_to, ; char* from + ptr null; char* to + }, ; 13347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21849_to, ; char* from + ptr null; char* to + }, ; 13348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21852_to, ; char* from + ptr null; char* to + }, ; 13349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21852_to, ; char* from + ptr null; char* to + }, ; 13350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21720_to, ; char* from + ptr null; char* to + }, ; 13351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21720_to, ; char* from + ptr null; char* to + }, ; 13352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21723_to, ; char* from + ptr null; char* to + }, ; 13353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21723_to, ; char* from + ptr null; char* to + }, ; 13354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21725_to, ; char* from + ptr null; char* to + }, ; 13355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21725_to, ; char* from + ptr null; char* to + }, ; 13356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21728_to, ; char* from + ptr null; char* to + }, ; 13357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21728_to, ; char* from + ptr null; char* to + }, ; 13358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21731_to, ; char* from + ptr null; char* to + }, ; 13359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21731_to, ; char* from + ptr null; char* to + }, ; 13360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21734_to, ; char* from + ptr null; char* to + }, ; 13361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21734_to, ; char* from + ptr null; char* to + }, ; 13362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21737_to, ; char* from + ptr null; char* to + }, ; 13363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21737_to, ; char* from + ptr null; char* to + }, ; 13364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21740_to, ; char* from + ptr null; char* to + }, ; 13365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21740_to, ; char* from + ptr null; char* to + }, ; 13366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21743_to, ; char* from + ptr null; char* to + }, ; 13367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21743_to, ; char* from + ptr null; char* to + }, ; 13368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21746_to, ; char* from + ptr null; char* to + }, ; 13369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21746_to, ; char* from + ptr null; char* to + }, ; 13370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21749_to, ; char* from + ptr null; char* to + }, ; 13371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21749_to, ; char* from + ptr null; char* to + }, ; 13372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21752_to, ; char* from + ptr null; char* to + }, ; 13373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21752_to, ; char* from + ptr null; char* to + }, ; 13374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21756_to, ; char* from + ptr null; char* to + }, ; 13375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21756_to, ; char* from + ptr null; char* to + }, ; 13376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21758_to, ; char* from + ptr null; char* to + }, ; 13377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21758_to, ; char* from + ptr null; char* to + }, ; 13378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21761_to, ; char* from + ptr null; char* to + }, ; 13379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21761_to, ; char* from + ptr null; char* to + }, ; 13380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21764_to, ; char* from + ptr null; char* to + }, ; 13381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21764_to, ; char* from + ptr null; char* to + }, ; 13382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21768_to, ; char* from + ptr null; char* to + }, ; 13383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21768_to, ; char* from + ptr null; char* to + }, ; 13384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21771_to, ; char* from + ptr null; char* to + }, ; 13385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21771_to, ; char* from + ptr null; char* to + }, ; 13386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21774_to, ; char* from + ptr null; char* to + }, ; 13387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21774_to, ; char* from + ptr null; char* to + }, ; 13388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21777_to, ; char* from + ptr null; char* to + }, ; 13389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21777_to, ; char* from + ptr null; char* to + }, ; 13390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21780_to, ; char* from + ptr null; char* to + }, ; 13391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21780_to, ; char* from + ptr null; char* to + }, ; 13392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21783_to, ; char* from + ptr null; char* to + }, ; 13393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21783_to, ; char* from + ptr null; char* to + }, ; 13394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21786_to, ; char* from + ptr null; char* to + }, ; 13395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21786_to, ; char* from + ptr null; char* to + }, ; 13396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21789_to, ; char* from + ptr null; char* to + }, ; 13397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21789_to, ; char* from + ptr null; char* to + }, ; 13398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21855_to, ; char* from + ptr @.TypeMapEntry.21854_from; char* to + }, ; 13399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21857_to, ; char* from + ptr @.TypeMapEntry.21856_from; char* to + }, ; 13400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21859_to, ; char* from + ptr @.TypeMapEntry.21858_from; char* to + }, ; 13401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21861_to, ; char* from + ptr @.TypeMapEntry.21860_from; char* to + }, ; 13402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21863_to, ; char* from + ptr @.TypeMapEntry.21862_from; char* to + }, ; 13403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21865_to, ; char* from + ptr @.TypeMapEntry.21864_from; char* to + }, ; 13404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21865_to, ; char* from + ptr @.TypeMapEntry.21864_from; char* to + }, ; 13405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21868_to, ; char* from + ptr @.TypeMapEntry.21867_from; char* to + }, ; 13406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21886_to, ; char* from + ptr null; char* to + }, ; 13407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21886_to, ; char* from + ptr null; char* to + }, ; 13408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21872_to, ; char* from + ptr @.TypeMapEntry.21871_from; char* to + }, ; 13409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21870_to, ; char* from + ptr @.TypeMapEntry.21869_from; char* to + }, ; 13410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21874_to, ; char* from + ptr @.TypeMapEntry.21873_from; char* to + }, ; 13411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21876_to, ; char* from + ptr @.TypeMapEntry.21875_from; char* to + }, ; 13412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21878_to, ; char* from + ptr @.TypeMapEntry.21877_from; char* to + }, ; 13413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21880_to, ; char* from + ptr @.TypeMapEntry.21879_from; char* to + }, ; 13414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21882_to, ; char* from + ptr @.TypeMapEntry.21881_from; char* to + }, ; 13415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21889_to, ; char* from + ptr null; char* to + }, ; 13416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21889_to, ; char* from + ptr null; char* to + }, ; 13417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21892_to, ; char* from + ptr null; char* to + }, ; 13418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21892_to, ; char* from + ptr null; char* to + }, ; 13419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21884_to, ; char* from + ptr @.TypeMapEntry.21883_from; char* to + }, ; 13420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21907_to, ; char* from + ptr @.TypeMapEntry.21906_from; char* to + }, ; 13421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21909_to, ; char* from + ptr @.TypeMapEntry.21908_from; char* to + }, ; 13422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21913_to, ; char* from + ptr @.TypeMapEntry.21912_from; char* to + }, ; 13423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21911_to, ; char* from + ptr @.TypeMapEntry.21910_from; char* to + }, ; 13424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21895_to, ; char* from + ptr null; char* to + }, ; 13425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21895_to, ; char* from + ptr null; char* to + }, ; 13426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21915_to, ; char* from + ptr @.TypeMapEntry.21914_from; char* to + }, ; 13427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21915_to, ; char* from + ptr @.TypeMapEntry.21914_from; char* to + }, ; 13428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21918_to, ; char* from + ptr @.TypeMapEntry.21917_from; char* to + }, ; 13429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21920_to, ; char* from + ptr @.TypeMapEntry.21919_from; char* to + }, ; 13430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21922_to, ; char* from + ptr @.TypeMapEntry.21921_from; char* to + }, ; 13431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21924_to, ; char* from + ptr @.TypeMapEntry.21923_from; char* to + }, ; 13432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21953_to, ; char* from + ptr @.TypeMapEntry.21952_from; char* to + }, ; 13433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21955_to, ; char* from + ptr @.TypeMapEntry.21954_from; char* to + }, ; 13434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21955_to, ; char* from + ptr @.TypeMapEntry.21954_from; char* to + }, ; 13435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21957_to, ; char* from + ptr @.TypeMapEntry.21956_from; char* to + }, ; 13436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21957_to, ; char* from + ptr @.TypeMapEntry.21956_from; char* to + }, ; 13437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21960_to, ; char* from + ptr @.TypeMapEntry.21959_from; char* to + }, ; 13438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21960_to, ; char* from + ptr @.TypeMapEntry.21959_from; char* to + }, ; 13439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21963_to, ; char* from + ptr @.TypeMapEntry.21962_from; char* to + }, ; 13440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21963_to, ; char* from + ptr @.TypeMapEntry.21962_from; char* to + }, ; 13441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21967_to, ; char* from + ptr @.TypeMapEntry.21966_from; char* to + }, ; 13442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21969_to, ; char* from + ptr @.TypeMapEntry.21968_from; char* to + }, ; 13443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21969_to, ; char* from + ptr @.TypeMapEntry.21968_from; char* to + }, ; 13444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21972_to, ; char* from + ptr @.TypeMapEntry.21971_from; char* to + }, ; 13445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21972_to, ; char* from + ptr @.TypeMapEntry.21971_from; char* to + }, ; 13446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21974_to, ; char* from + ptr @.TypeMapEntry.21973_from; char* to + }, ; 13447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21974_to, ; char* from + ptr @.TypeMapEntry.21973_from; char* to + }, ; 13448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21977_to, ; char* from + ptr @.TypeMapEntry.21976_from; char* to + }, ; 13449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21977_to, ; char* from + ptr @.TypeMapEntry.21976_from; char* to + }, ; 13450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21980_to, ; char* from + ptr @.TypeMapEntry.21979_from; char* to + }, ; 13451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21980_to, ; char* from + ptr @.TypeMapEntry.21979_from; char* to + }, ; 13452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22002_to, ; char* from + ptr @.TypeMapEntry.22001_from; char* to + }, ; 13453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21984_to, ; char* from + ptr @.TypeMapEntry.21983_from; char* to + }, ; 13454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21986_to, ; char* from + ptr @.TypeMapEntry.21985_from; char* to + }, ; 13455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21988_to, ; char* from + ptr @.TypeMapEntry.21987_from; char* to + }, ; 13456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21990_to, ; char* from + ptr @.TypeMapEntry.21989_from; char* to + }, ; 13457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21992_to, ; char* from + ptr @.TypeMapEntry.21991_from; char* to + }, ; 13458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21994_to, ; char* from + ptr @.TypeMapEntry.21993_from; char* to + }, ; 13459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21996_to, ; char* from + ptr @.TypeMapEntry.21995_from; char* to + }, ; 13460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21998_to, ; char* from + ptr @.TypeMapEntry.21997_from; char* to + }, ; 13461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22000_to, ; char* from + ptr @.TypeMapEntry.21999_from; char* to + }, ; 13462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22004_to, ; char* from + ptr @.TypeMapEntry.22003_from; char* to + }, ; 13463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22006_to, ; char* from + ptr @.TypeMapEntry.22005_from; char* to + }, ; 13464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21898_to, ; char* from + ptr null; char* to + }, ; 13465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21898_to, ; char* from + ptr null; char* to + }, ; 13466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21901_to, ; char* from + ptr null; char* to + }, ; 13467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21901_to, ; char* from + ptr null; char* to + }, ; 13468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22008_to, ; char* from + ptr @.TypeMapEntry.22007_from; char* to + }, ; 13469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21904_to, ; char* from + ptr null; char* to + }, ; 13470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21904_to, ; char* from + ptr null; char* to + }, ; 13471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22010_to, ; char* from + ptr @.TypeMapEntry.22009_from; char* to + }, ; 13472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22012_to, ; char* from + ptr @.TypeMapEntry.22011_from; char* to + }, ; 13473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22018_to, ; char* from + ptr @.TypeMapEntry.22017_from; char* to + }, ; 13474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22016_to, ; char* from + ptr @.TypeMapEntry.22015_from; char* to + }, ; 13475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22014_to, ; char* from + ptr @.TypeMapEntry.22013_from; char* to + }, ; 13476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22022_to, ; char* from + ptr @.TypeMapEntry.22021_from; char* to + }, ; 13477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22020_to, ; char* from + ptr @.TypeMapEntry.22019_from; char* to + }, ; 13478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21926_to, ; char* from + ptr null; char* to + }, ; 13479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21926_to, ; char* from + ptr null; char* to + }, ; 13480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21929_to, ; char* from + ptr null; char* to + }, ; 13481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21929_to, ; char* from + ptr null; char* to + }, ; 13482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21932_to, ; char* from + ptr null; char* to + }, ; 13483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21932_to, ; char* from + ptr null; char* to + }, ; 13484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21935_to, ; char* from + ptr null; char* to + }, ; 13485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21935_to, ; char* from + ptr null; char* to + }, ; 13486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21938_to, ; char* from + ptr null; char* to + }, ; 13487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21938_to, ; char* from + ptr null; char* to + }, ; 13488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21941_to, ; char* from + ptr null; char* to + }, ; 13489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21941_to, ; char* from + ptr null; char* to + }, ; 13490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21944_to, ; char* from + ptr null; char* to + }, ; 13491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21944_to, ; char* from + ptr null; char* to + }, ; 13492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21946_to, ; char* from + ptr null; char* to + }, ; 13493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21946_to, ; char* from + ptr null; char* to + }, ; 13494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21950_to, ; char* from + ptr null; char* to + }, ; 13495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21950_to, ; char* from + ptr null; char* to + }, ; 13496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22024_to, ; char* from + ptr @.TypeMapEntry.22023_from; char* to + }, ; 13497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22026_to, ; char* from + ptr @.TypeMapEntry.22025_from; char* to + }, ; 13498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22032_to, ; char* from + ptr @.TypeMapEntry.22031_from; char* to + }, ; 13499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22044_to, ; char* from + ptr @.TypeMapEntry.22043_from; char* to + }, ; 13500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22046_to, ; char* from + ptr @.TypeMapEntry.22045_from; char* to + }, ; 13501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22060_to, ; char* from + ptr @.TypeMapEntry.22059_from; char* to + }, ; 13502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22071_to, ; char* from + ptr @.TypeMapEntry.22070_from; char* to + }, ; 13503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22071_to, ; char* from + ptr @.TypeMapEntry.22070_from; char* to + }, ; 13504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22062_to, ; char* from + ptr null; char* to + }, ; 13505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22062_to, ; char* from + ptr null; char* to + }, ; 13506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22065_to, ; char* from + ptr null; char* to + }, ; 13507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22065_to, ; char* from + ptr null; char* to + }, ; 13508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22068_to, ; char* from + ptr null; char* to + }, ; 13509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22068_to, ; char* from + ptr null; char* to + }, ; 13510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22076_to, ; char* from + ptr @.TypeMapEntry.22075_from; char* to + }, ; 13511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22080_to, ; char* from + ptr @.TypeMapEntry.22079_from; char* to + }, ; 13512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22080_to, ; char* from + ptr @.TypeMapEntry.22079_from; char* to + }, ; 13513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22078_to, ; char* from + ptr @.TypeMapEntry.22077_from; char* to + }, ; 13514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22083_to, ; char* from + ptr @.TypeMapEntry.22082_from; char* to + }, ; 13515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22085_to, ; char* from + ptr @.TypeMapEntry.22084_from; char* to + }, ; 13516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22089_to, ; char* from + ptr @.TypeMapEntry.22088_from; char* to + }, ; 13517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22087_to, ; char* from + ptr @.TypeMapEntry.22086_from; char* to + }, ; 13518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22093_to, ; char* from + ptr @.TypeMapEntry.22092_from; char* to + }, ; 13519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22091_to, ; char* from + ptr @.TypeMapEntry.22090_from; char* to + }, ; 13520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22099_to, ; char* from + ptr null; char* to + }, ; 13521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22099_to, ; char* from + ptr null; char* to + }, ; 13522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22095_to, ; char* from + ptr @.TypeMapEntry.22094_from; char* to + }, ; 13523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22102_to, ; char* from + ptr null; char* to + }, ; 13524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22102_to, ; char* from + ptr null; char* to + }, ; 13525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22097_to, ; char* from + ptr @.TypeMapEntry.22096_from; char* to + }, ; 13526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22110_to, ; char* from + ptr @.TypeMapEntry.22109_from; char* to + }, ; 13527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22108_to, ; char* from + ptr @.TypeMapEntry.22107_from; char* to + }, ; 13528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22114_to, ; char* from + ptr @.TypeMapEntry.22113_from; char* to + }, ; 13529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22112_to, ; char* from + ptr @.TypeMapEntry.22111_from; char* to + }, ; 13530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22118_to, ; char* from + ptr @.TypeMapEntry.22117_from; char* to + }, ; 13531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22116_to, ; char* from + ptr @.TypeMapEntry.22115_from; char* to + }, ; 13532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22122_to, ; char* from + ptr @.TypeMapEntry.22121_from; char* to + }, ; 13533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22120_to, ; char* from + ptr @.TypeMapEntry.22119_from; char* to + }, ; 13534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22105_to, ; char* from + ptr null; char* to + }, ; 13535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22105_to, ; char* from + ptr null; char* to + }, ; 13536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22124_to, ; char* from + ptr @.TypeMapEntry.22123_from; char* to + }, ; 13537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22126_to, ; char* from + ptr @.TypeMapEntry.22125_from; char* to + }, ; 13538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22130_to, ; char* from + ptr @.TypeMapEntry.22129_from; char* to + }, ; 13539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22128_to, ; char* from + ptr @.TypeMapEntry.22127_from; char* to + }, ; 13540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22134_to, ; char* from + ptr @.TypeMapEntry.22133_from; char* to + }, ; 13541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22132_to, ; char* from + ptr @.TypeMapEntry.22131_from; char* to + }, ; 13542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22138_to, ; char* from + ptr @.TypeMapEntry.22137_from; char* to + }, ; 13543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22136_to, ; char* from + ptr @.TypeMapEntry.22135_from; char* to + }, ; 13544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22142_to, ; char* from + ptr @.TypeMapEntry.22141_from; char* to + }, ; 13545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22140_to, ; char* from + ptr @.TypeMapEntry.22139_from; char* to + }, ; 13546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22144_to, ; char* from + ptr @.TypeMapEntry.22143_from; char* to + }, ; 13547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22146_to, ; char* from + ptr null; char* to + }, ; 13548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22146_to, ; char* from + ptr null; char* to + }, ; 13549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22149_to, ; char* from + ptr null; char* to + }, ; 13550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22149_to, ; char* from + ptr null; char* to + }, ; 13551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22224_to, ; char* from + ptr @.TypeMapEntry.22223_from; char* to + }, ; 13552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22152_to, ; char* from + ptr null; char* to + }, ; 13553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22152_to, ; char* from + ptr null; char* to + }, ; 13554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22226_to, ; char* from + ptr @.TypeMapEntry.22225_from; char* to + }, ; 13555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22228_to, ; char* from + ptr @.TypeMapEntry.22227_from; char* to + }, ; 13556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22230_to, ; char* from + ptr @.TypeMapEntry.22229_from; char* to + }, ; 13557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22155_to, ; char* from + ptr null; char* to + }, ; 13558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22155_to, ; char* from + ptr null; char* to + }, ; 13559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22158_to, ; char* from + ptr null; char* to + }, ; 13560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22158_to, ; char* from + ptr null; char* to + }, ; 13561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22161_to, ; char* from + ptr null; char* to + }, ; 13562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22161_to, ; char* from + ptr null; char* to + }, ; 13563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22232_to, ; char* from + ptr @.TypeMapEntry.22231_from; char* to + }, ; 13564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22164_to, ; char* from + ptr null; char* to + }, ; 13565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22164_to, ; char* from + ptr null; char* to + }, ; 13566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22185_to, ; char* from + ptr null; char* to + }, ; 13567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22185_to, ; char* from + ptr null; char* to + }, ; 13568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22166_to, ; char* from + ptr null; char* to + }, ; 13569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22166_to, ; char* from + ptr null; char* to + }, ; 13570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22234_to, ; char* from + ptr @.TypeMapEntry.22233_from; char* to + }, ; 13571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22169_to, ; char* from + ptr null; char* to + }, ; 13572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22169_to, ; char* from + ptr null; char* to + }, ; 13573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22172_to, ; char* from + ptr null; char* to + }, ; 13574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22172_to, ; char* from + ptr null; char* to + }, ; 13575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22236_to, ; char* from + ptr @.TypeMapEntry.22235_from; char* to + }, ; 13576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22175_to, ; char* from + ptr null; char* to + }, ; 13577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22175_to, ; char* from + ptr null; char* to + }, ; 13578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22178_to, ; char* from + ptr null; char* to + }, ; 13579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22178_to, ; char* from + ptr null; char* to + }, ; 13580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22238_to, ; char* from + ptr @.TypeMapEntry.22237_from; char* to + }, ; 13581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22181_to, ; char* from + ptr null; char* to + }, ; 13582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22181_to, ; char* from + ptr null; char* to + }, ; 13583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22188_to, ; char* from + ptr null; char* to + }, ; 13584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22188_to, ; char* from + ptr null; char* to + }, ; 13585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22240_to, ; char* from + ptr @.TypeMapEntry.22239_from; char* to + }, ; 13586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22242_to, ; char* from + ptr @.TypeMapEntry.22241_from; char* to + }, ; 13587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22191_to, ; char* from + ptr null; char* to + }, ; 13588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22191_to, ; char* from + ptr null; char* to + }, ; 13589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22211_to, ; char* from + ptr null; char* to + }, ; 13590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22211_to, ; char* from + ptr null; char* to + }, ; 13591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22250_to, ; char* from + ptr @.TypeMapEntry.22249_from; char* to + }, ; 13592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22214_to, ; char* from + ptr null; char* to + }, ; 13593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22214_to, ; char* from + ptr null; char* to + }, ; 13594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22193_to, ; char* from + ptr null; char* to + }, ; 13595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22193_to, ; char* from + ptr null; char* to + }, ; 13596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22244_to, ; char* from + ptr @.TypeMapEntry.22243_from; char* to + }, ; 13597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22195_to, ; char* from + ptr null; char* to + }, ; 13598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22195_to, ; char* from + ptr null; char* to + }, ; 13599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22199_to, ; char* from + ptr null; char* to + }, ; 13600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22199_to, ; char* from + ptr null; char* to + }, ; 13601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22246_to, ; char* from + ptr @.TypeMapEntry.22245_from; char* to + }, ; 13602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22201_to, ; char* from + ptr null; char* to + }, ; 13603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22201_to, ; char* from + ptr null; char* to + }, ; 13604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22205_to, ; char* from + ptr null; char* to + }, ; 13605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22205_to, ; char* from + ptr null; char* to + }, ; 13606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22248_to, ; char* from + ptr @.TypeMapEntry.22247_from; char* to + }, ; 13607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22207_to, ; char* from + ptr null; char* to + }, ; 13608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22207_to, ; char* from + ptr null; char* to + }, ; 13609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22218_to, ; char* from + ptr null; char* to + }, ; 13610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22218_to, ; char* from + ptr null; char* to + }, ; 13611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22252_to, ; char* from + ptr @.TypeMapEntry.22251_from; char* to + }, ; 13612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22221_to, ; char* from + ptr null; char* to + }, ; 13613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22221_to, ; char* from + ptr null; char* to + }, ; 13614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22258_to, ; char* from + ptr @.TypeMapEntry.22257_from; char* to + }, ; 13615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22254_to, ; char* from + ptr @.TypeMapEntry.22253_from; char* to + }, ; 13616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22256_to, ; char* from + ptr @.TypeMapEntry.22255_from; char* to + }, ; 13617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22260_to, ; char* from + ptr @.TypeMapEntry.22259_from; char* to + }, ; 13618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22262_to, ; char* from + ptr @.TypeMapEntry.22261_from; char* to + }, ; 13619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22264_to, ; char* from + ptr @.TypeMapEntry.22263_from; char* to + }, ; 13620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22268_to, ; char* from + ptr @.TypeMapEntry.22267_from; char* to + }, ; 13621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22266_to, ; char* from + ptr @.TypeMapEntry.22265_from; char* to + }, ; 13622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22276_to, ; char* from + ptr null; char* to + }, ; 13623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22276_to, ; char* from + ptr null; char* to + }, ; 13624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22279_to, ; char* from + ptr @.TypeMapEntry.22278_from; char* to + }, ; 13625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22279_to, ; char* from + ptr @.TypeMapEntry.22278_from; char* to + }, ; 13626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22282_to, ; char* from + ptr @.TypeMapEntry.22281_from; char* to + }, ; 13627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22284_to, ; char* from + ptr @.TypeMapEntry.22283_from; char* to + }, ; 13628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22288_to, ; char* from + ptr @.TypeMapEntry.22287_from; char* to + }, ; 13629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22292_to, ; char* from + ptr @.TypeMapEntry.22291_from; char* to + }, ; 13630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22294_to, ; char* from + ptr @.TypeMapEntry.22293_from; char* to + }, ; 13631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22298_to, ; char* from + ptr @.TypeMapEntry.22297_from; char* to + }, ; 13632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22296_to, ; char* from + ptr @.TypeMapEntry.22295_from; char* to + }, ; 13633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22302_to, ; char* from + ptr @.TypeMapEntry.22301_from; char* to + }, ; 13634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22300_to, ; char* from + ptr @.TypeMapEntry.22299_from; char* to + }, ; 13635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22304_to, ; char* from + ptr @.TypeMapEntry.22303_from; char* to + }, ; 13636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22306_to, ; char* from + ptr @.TypeMapEntry.22305_from; char* to + }, ; 13637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22308_to, ; char* from + ptr @.TypeMapEntry.22307_from; char* to + }, ; 13638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22310_to, ; char* from + ptr @.TypeMapEntry.22309_from; char* to + }, ; 13639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22324_to, ; char* from + ptr @.TypeMapEntry.22323_from; char* to + }, ; 13640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22312_to, ; char* from + ptr @.TypeMapEntry.22311_from; char* to + }, ; 13641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22316_to, ; char* from + ptr @.TypeMapEntry.22315_from; char* to + }, ; 13642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22314_to, ; char* from + ptr @.TypeMapEntry.22313_from; char* to + }, ; 13643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22318_to, ; char* from + ptr @.TypeMapEntry.22317_from; char* to + }, ; 13644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22322_to, ; char* from + ptr @.TypeMapEntry.22321_from; char* to + }, ; 13645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22320_to, ; char* from + ptr @.TypeMapEntry.22319_from; char* to + }, ; 13646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22326_to, ; char* from + ptr @.TypeMapEntry.22325_from; char* to + }, ; 13647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22339_to, ; char* from + ptr @.TypeMapEntry.22338_from; char* to + }, ; 13648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22328_to, ; char* from + ptr null; char* to + }, ; 13649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22328_to, ; char* from + ptr null; char* to + }, ; 13650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22331_to, ; char* from + ptr null; char* to + }, ; 13651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22331_to, ; char* from + ptr null; char* to + }, ; 13652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22334_to, ; char* from + ptr null; char* to + }, ; 13653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22334_to, ; char* from + ptr null; char* to + }, ; 13654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22341_to, ; char* from + ptr @.TypeMapEntry.22340_from; char* to + }, ; 13655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22343_to, ; char* from + ptr @.TypeMapEntry.22342_from; char* to + }, ; 13656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22347_to, ; char* from + ptr @.TypeMapEntry.22346_from; char* to + }, ; 13657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22345_to, ; char* from + ptr @.TypeMapEntry.22344_from; char* to + }, ; 13658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22349_to, ; char* from + ptr @.TypeMapEntry.22348_from; char* to + }, ; 13659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22351_to, ; char* from + ptr @.TypeMapEntry.22350_from; char* to + }, ; 13660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22353_to, ; char* from + ptr @.TypeMapEntry.22352_from; char* to + }, ; 13661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22355_to, ; char* from + ptr @.TypeMapEntry.22354_from; char* to + }, ; 13662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22357_to, ; char* from + ptr @.TypeMapEntry.22356_from; char* to + }, ; 13663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22359_to, ; char* from + ptr @.TypeMapEntry.22358_from; char* to + }, ; 13664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22361_to, ; char* from + ptr @.TypeMapEntry.22360_from; char* to + }, ; 13665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22363_to, ; char* from + ptr @.TypeMapEntry.22362_from; char* to + }, ; 13666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22337_to, ; char* from + ptr @.TypeMapEntry.22336_from; char* to + }, ; 13667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22367_to, ; char* from + ptr @.TypeMapEntry.22366_from; char* to + }, ; 13668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22367_to, ; char* from + ptr @.TypeMapEntry.22366_from; char* to + }, ; 13669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22370_to, ; char* from + ptr @.TypeMapEntry.22369_from; char* to + }, ; 13670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22370_to, ; char* from + ptr @.TypeMapEntry.22369_from; char* to + }, ; 13671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22387_to, ; char* from + ptr null; char* to + }, ; 13672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22387_to, ; char* from + ptr null; char* to + }, ; 13673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22373_to, ; char* from + ptr @.TypeMapEntry.22372_from; char* to + }, ; 13674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22377_to, ; char* from + ptr @.TypeMapEntry.22376_from; char* to + }, ; 13675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22375_to, ; char* from + ptr @.TypeMapEntry.22374_from; char* to + }, ; 13676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22379_to, ; char* from + ptr @.TypeMapEntry.22378_from; char* to + }, ; 13677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22381_to, ; char* from + ptr @.TypeMapEntry.22380_from; char* to + }, ; 13678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22383_to, ; char* from + ptr @.TypeMapEntry.22382_from; char* to + }, ; 13679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22385_to, ; char* from + ptr @.TypeMapEntry.22384_from; char* to + }, ; 13680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22390_to, ; char* from + ptr null; char* to + }, ; 13681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22390_to, ; char* from + ptr null; char* to + }, ; 13682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22404_to, ; char* from + ptr @.TypeMapEntry.22403_from; char* to + }, ; 13683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22406_to, ; char* from + ptr @.TypeMapEntry.22405_from; char* to + }, ; 13684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22408_to, ; char* from + ptr @.TypeMapEntry.22407_from; char* to + }, ; 13685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22410_to, ; char* from + ptr @.TypeMapEntry.22409_from; char* to + }, ; 13686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22393_to, ; char* from + ptr null; char* to + }, ; 13687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22393_to, ; char* from + ptr null; char* to + }, ; 13688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22412_to, ; char* from + ptr @.TypeMapEntry.22411_from; char* to + }, ; 13689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22396_to, ; char* from + ptr null; char* to + }, ; 13690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22396_to, ; char* from + ptr null; char* to + }, ; 13691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22416_to, ; char* from + ptr @.TypeMapEntry.22415_from; char* to + }, ; 13692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22414_to, ; char* from + ptr @.TypeMapEntry.22413_from; char* to + }, ; 13693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22399_to, ; char* from + ptr null; char* to + }, ; 13694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22399_to, ; char* from + ptr null; char* to + }, ; 13695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22418_to, ; char* from + ptr @.TypeMapEntry.22417_from; char* to + }, ; 13696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22402_to, ; char* from + ptr @.TypeMapEntry.22401_from; char* to + }, ; 13697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22468_to, ; char* from + ptr null; char* to + }, ; 13698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22468_to, ; char* from + ptr null; char* to + }, ; 13699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22473_to, ; char* from + ptr @.TypeMapEntry.22472_from; char* to + }, ; 13700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22471_to, ; char* from + ptr @.TypeMapEntry.22470_from; char* to + }, ; 13701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22475_to, ; char* from + ptr @.TypeMapEntry.22474_from; char* to + }, ; 13702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22477_to, ; char* from + ptr @.TypeMapEntry.22476_from; char* to + }, ; 13703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22479_to, ; char* from + ptr @.TypeMapEntry.22478_from; char* to + }, ; 13704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22481_to, ; char* from + ptr @.TypeMapEntry.22480_from; char* to + }, ; 13705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22483_to, ; char* from + ptr @.TypeMapEntry.22482_from; char* to + }, ; 13706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22485_to, ; char* from + ptr @.TypeMapEntry.22484_from; char* to + }, ; 13707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22487_to, ; char* from + ptr @.TypeMapEntry.22486_from; char* to + }, ; 13708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22489_to, ; char* from + ptr @.TypeMapEntry.22488_from; char* to + }, ; 13709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22491_to, ; char* from + ptr @.TypeMapEntry.22490_from; char* to + }, ; 13710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22493_to, ; char* from + ptr @.TypeMapEntry.22492_from; char* to + }, ; 13711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22495_to, ; char* from + ptr @.TypeMapEntry.22494_from; char* to + }, ; 13712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22499_to, ; char* from + ptr @.TypeMapEntry.22498_from; char* to + }, ; 13713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22503_to, ; char* from + ptr @.TypeMapEntry.22502_from; char* to + }, ; 13714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22501_to, ; char* from + ptr @.TypeMapEntry.22500_from; char* to + }, ; 13715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22505_to, ; char* from + ptr @.TypeMapEntry.22504_from; char* to + }, ; 13716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22507_to, ; char* from + ptr @.TypeMapEntry.22506_from; char* to + }, ; 13717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22509_to, ; char* from + ptr @.TypeMapEntry.22508_from; char* to + }, ; 13718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22497_to, ; char* from + ptr @.TypeMapEntry.22496_from; char* to + }, ; 13719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26895_to, ; char* from + ptr @.TypeMapEntry.26894_from; char* to + }, ; 13720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26897_to, ; char* from + ptr @.TypeMapEntry.26896_from; char* to + }, ; 13721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26899_to, ; char* from + ptr @.TypeMapEntry.26898_from; char* to + }, ; 13722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27093_to, ; char* from + ptr null; char* to + }, ; 13723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27093_to, ; char* from + ptr null; char* to + }, ; 13724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26901_to, ; char* from + ptr @.TypeMapEntry.26900_from; char* to + }, ; 13725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26903_to, ; char* from + ptr @.TypeMapEntry.26902_from; char* to + }, ; 13726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26905_to, ; char* from + ptr @.TypeMapEntry.26904_from; char* to + }, ; 13727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27096_to, ; char* from + ptr null; char* to + }, ; 13728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27096_to, ; char* from + ptr null; char* to + }, ; 13729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26976_to, ; char* from + ptr @.TypeMapEntry.26975_from; char* to + }, ; 13730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27099_to, ; char* from + ptr null; char* to + }, ; 13731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27099_to, ; char* from + ptr null; char* to + }, ; 13732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26978_to, ; char* from + ptr @.TypeMapEntry.26977_from; char* to + }, ; 13733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27102_to, ; char* from + ptr null; char* to + }, ; 13734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27102_to, ; char* from + ptr null; char* to + }, ; 13735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26980_to, ; char* from + ptr @.TypeMapEntry.26979_from; char* to + }, ; 13736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26982_to, ; char* from + ptr @.TypeMapEntry.26981_from; char* to + }, ; 13737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27105_to, ; char* from + ptr null; char* to + }, ; 13738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27105_to, ; char* from + ptr null; char* to + }, ; 13739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26984_to, ; char* from + ptr @.TypeMapEntry.26983_from; char* to + }, ; 13740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26986_to, ; char* from + ptr @.TypeMapEntry.26985_from; char* to + }, ; 13741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26988_to, ; char* from + ptr @.TypeMapEntry.26987_from; char* to + }, ; 13742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26990_to, ; char* from + ptr @.TypeMapEntry.26989_from; char* to + }, ; 13743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27108_to, ; char* from + ptr null; char* to + }, ; 13744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27108_to, ; char* from + ptr null; char* to + }, ; 13745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26992_to, ; char* from + ptr @.TypeMapEntry.26991_from; char* to + }, ; 13746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27111_to, ; char* from + ptr null; char* to + }, ; 13747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27111_to, ; char* from + ptr null; char* to + }, ; 13748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26994_to, ; char* from + ptr @.TypeMapEntry.26993_from; char* to + }, ; 13749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26996_to, ; char* from + ptr @.TypeMapEntry.26995_from; char* to + }, ; 13750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26996_to, ; char* from + ptr @.TypeMapEntry.26995_from; char* to + }, ; 13751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26999_to, ; char* from + ptr @.TypeMapEntry.26998_from; char* to + }, ; 13752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26999_to, ; char* from + ptr @.TypeMapEntry.26998_from; char* to + }, ; 13753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26999_to, ; char* from + ptr @.TypeMapEntry.26998_from; char* to + }, ; 13754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26999_to, ; char* from + ptr @.TypeMapEntry.26998_from; char* to + }, ; 13755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27002_to, ; char* from + ptr @.TypeMapEntry.27001_from; char* to + }, ; 13756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27004_to, ; char* from + ptr @.TypeMapEntry.27003_from; char* to + }, ; 13757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27006_to, ; char* from + ptr @.TypeMapEntry.27005_from; char* to + }, ; 13758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27010_to, ; char* from + ptr @.TypeMapEntry.27009_from; char* to + }, ; 13759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27008_to, ; char* from + ptr @.TypeMapEntry.27007_from; char* to + }, ; 13760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27116_to, ; char* from + ptr null; char* to + }, ; 13761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27116_to, ; char* from + ptr null; char* to + }, ; 13762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27012_to, ; char* from + ptr @.TypeMapEntry.27011_from; char* to + }, ; 13763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27016_to, ; char* from + ptr @.TypeMapEntry.27015_from; char* to + }, ; 13764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27014_to, ; char* from + ptr @.TypeMapEntry.27013_from; char* to + }, ; 13765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27023_to, ; char* from + ptr @.TypeMapEntry.27022_from; char* to + }, ; 13766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27025_to, ; char* from + ptr @.TypeMapEntry.27024_from; char* to + }, ; 13767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27027_to, ; char* from + ptr @.TypeMapEntry.27026_from; char* to + }, ; 13768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27119_to, ; char* from + ptr null; char* to + }, ; 13769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27119_to, ; char* from + ptr null; char* to + }, ; 13770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27029_to, ; char* from + ptr @.TypeMapEntry.27028_from; char* to + }, ; 13771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27122_to, ; char* from + ptr null; char* to + }, ; 13772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27122_to, ; char* from + ptr null; char* to + }, ; 13773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27031_to, ; char* from + ptr @.TypeMapEntry.27030_from; char* to + }, ; 13774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27033_to, ; char* from + ptr @.TypeMapEntry.27032_from; char* to + }, ; 13775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27125_to, ; char* from + ptr null; char* to + }, ; 13776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27125_to, ; char* from + ptr null; char* to + }, ; 13777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27035_to, ; char* from + ptr @.TypeMapEntry.27034_from; char* to + }, ; 13778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27037_to, ; char* from + ptr @.TypeMapEntry.27036_from; char* to + }, ; 13779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27039_to, ; char* from + ptr @.TypeMapEntry.27038_from; char* to + }, ; 13780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27128_to, ; char* from + ptr null; char* to + }, ; 13781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27128_to, ; char* from + ptr null; char* to + }, ; 13782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27041_to, ; char* from + ptr @.TypeMapEntry.27040_from; char* to + }, ; 13783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27043_to, ; char* from + ptr @.TypeMapEntry.27042_from; char* to + }, ; 13784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27045_to, ; char* from + ptr @.TypeMapEntry.27044_from; char* to + }, ; 13785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27047_to, ; char* from + ptr @.TypeMapEntry.27046_from; char* to + }, ; 13786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27047_to, ; char* from + ptr @.TypeMapEntry.27046_from; char* to + }, ; 13787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27050_to, ; char* from + ptr @.TypeMapEntry.27049_from; char* to + }, ; 13788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27131_to, ; char* from + ptr null; char* to + }, ; 13789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27131_to, ; char* from + ptr null; char* to + }, ; 13790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27134_to, ; char* from + ptr null; char* to + }, ; 13791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27134_to, ; char* from + ptr null; char* to + }, ; 13792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27137_to, ; char* from + ptr null; char* to + }, ; 13793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27137_to, ; char* from + ptr null; char* to + }, ; 13794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27091_to, ; char* from + ptr @.TypeMapEntry.27090_from; char* to + }, ; 13795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27140_to, ; char* from + ptr null; char* to + }, ; 13796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27140_to, ; char* from + ptr null; char* to + }, ; 13797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27143_to, ; char* from + ptr null; char* to + }, ; 13798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27143_to, ; char* from + ptr null; char* to + }, ; 13799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27158_to, ; char* from + ptr @.TypeMapEntry.27157_from; char* to + }, ; 13800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27146_to, ; char* from + ptr @.TypeMapEntry.27163_from; char* to + }, ; 13801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27146_to, ; char* from + ptr @.TypeMapEntry.27163_from; char* to + }, ; 13802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27146_to, ; char* from + ptr @.TypeMapEntry.27163_from; char* to + }, ; 13803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27146_to, ; char* from + ptr @.TypeMapEntry.27163_from; char* to + }, ; 13804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27166_to, ; char* from + ptr @.TypeMapEntry.27165_from; char* to + }, ; 13805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27168_to, ; char* from + ptr @.TypeMapEntry.27167_from; char* to + }, ; 13806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27170_to, ; char* from + ptr @.TypeMapEntry.27169_from; char* to + }, ; 13807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27172_to, ; char* from + ptr @.TypeMapEntry.27171_from; char* to + }, ; 13808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27174_to, ; char* from + ptr @.TypeMapEntry.27173_from; char* to + }, ; 13809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27176_to, ; char* from + ptr @.TypeMapEntry.27175_from; char* to + }, ; 13810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27176_to, ; char* from + ptr @.TypeMapEntry.27175_from; char* to + }, ; 13811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27179_to, ; char* from + ptr @.TypeMapEntry.27178_from; char* to + }, ; 13812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27181_to, ; char* from + ptr @.TypeMapEntry.27180_from; char* to + }, ; 13813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27149_to, ; char* from + ptr null; char* to + }, ; 13814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27149_to, ; char* from + ptr null; char* to + }, ; 13815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27152_to, ; char* from + ptr null; char* to + }, ; 13816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27152_to, ; char* from + ptr null; char* to + }, ; 13817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27183_to, ; char* from + ptr @.TypeMapEntry.27182_from; char* to + }, ; 13818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27185_to, ; char* from + ptr @.TypeMapEntry.27184_from; char* to + }, ; 13819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27187_to, ; char* from + ptr @.TypeMapEntry.27186_from; char* to + }, ; 13820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27227_to, ; char* from + ptr @.TypeMapEntry.27226_from; char* to + }, ; 13821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27155_to, ; char* from + ptr null; char* to + }, ; 13822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27155_to, ; char* from + ptr null; char* to + }, ; 13823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27241_to, ; char* from + ptr @.TypeMapEntry.27240_from; char* to + }, ; 13824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27243_to, ; char* from + ptr @.TypeMapEntry.27242_from; char* to + }, ; 13825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27245_to, ; char* from + ptr @.TypeMapEntry.27244_from; char* to + }, ; 13826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27249_to, ; char* from + ptr @.TypeMapEntry.27248_from; char* to + }, ; 13827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27251_to, ; char* from + ptr @.TypeMapEntry.27250_from; char* to + }, ; 13828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27253_to, ; char* from + ptr @.TypeMapEntry.27252_from; char* to + }, ; 13829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27018_to, ; char* from + ptr @.TypeMapEntry.27017_from; char* to + }, ; 13830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27018_to, ; char* from + ptr @.TypeMapEntry.27017_from; char* to + }, ; 13831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27021_to, ; char* from + ptr @.TypeMapEntry.27020_from; char* to + }, ; 13832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26907_to, ; char* from + ptr @.TypeMapEntry.26906_from; char* to + }, ; 13833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26944_to, ; char* from + ptr null; char* to + }, ; 13834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26944_to, ; char* from + ptr null; char* to + }, ; 13835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26909_to, ; char* from + ptr @.TypeMapEntry.26908_from; char* to + }, ; 13836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26947_to, ; char* from + ptr null; char* to + }, ; 13837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26947_to, ; char* from + ptr null; char* to + }, ; 13838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26911_to, ; char* from + ptr @.TypeMapEntry.26910_from; char* to + }, ; 13839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26913_to, ; char* from + ptr @.TypeMapEntry.26912_from; char* to + }, ; 13840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26915_to, ; char* from + ptr @.TypeMapEntry.26914_from; char* to + }, ; 13841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26917_to, ; char* from + ptr @.TypeMapEntry.26916_from; char* to + }, ; 13842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26919_to, ; char* from + ptr @.TypeMapEntry.26918_from; char* to + }, ; 13843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26921_to, ; char* from + ptr @.TypeMapEntry.26920_from; char* to + }, ; 13844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26921_to, ; char* from + ptr @.TypeMapEntry.26920_from; char* to + }, ; 13845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26921_to, ; char* from + ptr @.TypeMapEntry.26920_from; char* to + }, ; 13846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26921_to, ; char* from + ptr @.TypeMapEntry.26920_from; char* to + }, ; 13847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26924_to, ; char* from + ptr @.TypeMapEntry.26923_from; char* to + }, ; 13848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26926_to, ; char* from + ptr @.TypeMapEntry.26925_from; char* to + }, ; 13849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26952_to, ; char* from + ptr null; char* to + }, ; 13850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26952_to, ; char* from + ptr null; char* to + }, ; 13851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26928_to, ; char* from + ptr @.TypeMapEntry.26927_from; char* to + }, ; 13852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26930_to, ; char* from + ptr @.TypeMapEntry.26929_from; char* to + }, ; 13853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26934_to, ; char* from + ptr @.TypeMapEntry.26933_from; char* to + }, ; 13854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26932_to, ; char* from + ptr @.TypeMapEntry.26931_from; char* to + }, ; 13855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26936_to, ; char* from + ptr @.TypeMapEntry.26935_from; char* to + }, ; 13856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26938_to, ; char* from + ptr @.TypeMapEntry.26937_from; char* to + }, ; 13857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26940_to, ; char* from + ptr @.TypeMapEntry.26939_from; char* to + }, ; 13858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26942_to, ; char* from + ptr @.TypeMapEntry.26941_from; char* to + }, ; 13859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26964_to, ; char* from + ptr @.TypeMapEntry.26963_from; char* to + }, ; 13860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26955_to, ; char* from + ptr null; char* to + }, ; 13861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26955_to, ; char* from + ptr null; char* to + }, ; 13862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26966_to, ; char* from + ptr @.TypeMapEntry.26965_from; char* to + }, ; 13863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26958_to, ; char* from + ptr null; char* to + }, ; 13864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26958_to, ; char* from + ptr null; char* to + }, ; 13865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26968_to, ; char* from + ptr @.TypeMapEntry.26967_from; char* to + }, ; 13866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26961_to, ; char* from + ptr null; char* to + }, ; 13867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26961_to, ; char* from + ptr null; char* to + }, ; 13868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26970_to, ; char* from + ptr @.TypeMapEntry.26969_from; char* to + }, ; 13869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26972_to, ; char* from + ptr @.TypeMapEntry.26971_from; char* to + }, ; 13870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26974_to, ; char* from + ptr @.TypeMapEntry.26973_from; char* to + }, ; 13871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27054_to, ; char* from + ptr null; char* to + }, ; 13872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27054_to, ; char* from + ptr null; char* to + }, ; 13873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27056_to, ; char* from + ptr null; char* to + }, ; 13874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27056_to, ; char* from + ptr null; char* to + }, ; 13875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27052_to, ; char* from + ptr @.TypeMapEntry.27051_from; char* to + }, ; 13876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27075_to, ; char* from + ptr @.TypeMapEntry.27074_from; char* to + }, ; 13877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27060_to, ; char* from + ptr null; char* to + }, ; 13878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27060_to, ; char* from + ptr null; char* to + }, ; 13879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27063_to, ; char* from + ptr null; char* to + }, ; 13880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27063_to, ; char* from + ptr null; char* to + }, ; 13881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27066_to, ; char* from + ptr null; char* to + }, ; 13882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27066_to, ; char* from + ptr null; char* to + }, ; 13883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27077_to, ; char* from + ptr @.TypeMapEntry.27076_from; char* to + }, ; 13884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27079_to, ; char* from + ptr @.TypeMapEntry.27078_from; char* to + }, ; 13885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27069_to, ; char* from + ptr @.TypeMapEntry.27080_from; char* to + }, ; 13886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27069_to, ; char* from + ptr @.TypeMapEntry.27080_from; char* to + }, ; 13887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27069_to, ; char* from + ptr @.TypeMapEntry.27080_from; char* to + }, ; 13888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27069_to, ; char* from + ptr @.TypeMapEntry.27080_from; char* to + }, ; 13889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27082_to, ; char* from + ptr @.TypeMapEntry.27081_from; char* to + }, ; 13890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27085_to, ; char* from + ptr @.TypeMapEntry.27084_from; char* to + }, ; 13891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27072_to, ; char* from + ptr null; char* to + }, ; 13892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27072_to, ; char* from + ptr null; char* to + }, ; 13893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27087_to, ; char* from + ptr @.TypeMapEntry.27086_from; char* to + }, ; 13894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27089_to, ; char* from + ptr @.TypeMapEntry.27088_from; char* to + }, ; 13895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27160_to, ; char* from + ptr @.TypeMapEntry.27159_from; char* to + }, ; 13896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27162_to, ; char* from + ptr @.TypeMapEntry.27161_from; char* to + }, ; 13897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27189_to, ; char* from + ptr @.TypeMapEntry.27188_from; char* to + }, ; 13898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27191_to, ; char* from + ptr @.TypeMapEntry.27190_from; char* to + }, ; 13899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27193_to, ; char* from + ptr @.TypeMapEntry.27192_from; char* to + }, ; 13900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27213_to, ; char* from + ptr @.TypeMapEntry.27212_from; char* to + }, ; 13901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27195_to, ; char* from + ptr null; char* to + }, ; 13902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27195_to, ; char* from + ptr null; char* to + }, ; 13903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27215_to, ; char* from + ptr @.TypeMapEntry.27214_from; char* to + }, ; 13904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27198_to, ; char* from + ptr null; char* to + }, ; 13905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27198_to, ; char* from + ptr null; char* to + }, ; 13906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27200_to, ; char* from + ptr null; char* to + }, ; 13907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27200_to, ; char* from + ptr null; char* to + }, ; 13908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27203_to, ; char* from + ptr null; char* to + }, ; 13909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27203_to, ; char* from + ptr null; char* to + }, ; 13910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27206_to, ; char* from + ptr null; char* to + }, ; 13911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27206_to, ; char* from + ptr null; char* to + }, ; 13912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27210_to, ; char* from + ptr null; char* to + }, ; 13913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27210_to, ; char* from + ptr null; char* to + }, ; 13914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27217_to, ; char* from + ptr @.TypeMapEntry.27216_from; char* to + }, ; 13915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27219_to, ; char* from + ptr @.TypeMapEntry.27218_from; char* to + }, ; 13916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27221_to, ; char* from + ptr @.TypeMapEntry.27220_from; char* to + }, ; 13917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27223_to, ; char* from + ptr @.TypeMapEntry.27222_from; char* to + }, ; 13918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27225_to, ; char* from + ptr @.TypeMapEntry.27224_from; char* to + }, ; 13919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27229_to, ; char* from + ptr null; char* to + }, ; 13920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27229_to, ; char* from + ptr null; char* to + }, ; 13921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27235_to, ; char* from + ptr @.TypeMapEntry.27234_from; char* to + }, ; 13922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27237_to, ; char* from + ptr @.TypeMapEntry.27236_from; char* to + }, ; 13923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27232_to, ; char* from + ptr null; char* to + }, ; 13924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27232_to, ; char* from + ptr null; char* to + }, ; 13925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27239_to, ; char* from + ptr @.TypeMapEntry.27238_from; char* to + }, ; 13926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.27247_to, ; char* from + ptr @.TypeMapEntry.27246_from; char* to + }, ; 13927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22615_to, ; char* from + ptr null; char* to + }, ; 13928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22615_to, ; char* from + ptr null; char* to + }, ; 13929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22618_to, ; char* from + ptr null; char* to + }, ; 13930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22618_to, ; char* from + ptr null; char* to + }, ; 13931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22515_to, ; char* from + ptr @.TypeMapEntry.22514_from; char* to + }, ; 13932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22621_to, ; char* from + ptr null; char* to + }, ; 13933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22621_to, ; char* from + ptr null; char* to + }, ; 13934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22624_to, ; char* from + ptr null; char* to + }, ; 13935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22624_to, ; char* from + ptr null; char* to + }, ; 13936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22576_to, ; char* from + ptr @.TypeMapEntry.22575_from; char* to + }, ; 13937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22627_to, ; char* from + ptr null; char* to + }, ; 13938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22627_to, ; char* from + ptr null; char* to + }, ; 13939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22630_to, ; char* from + ptr null; char* to + }, ; 13940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22630_to, ; char* from + ptr null; char* to + }, ; 13941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22633_to, ; char* from + ptr null; char* to + }, ; 13942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22633_to, ; char* from + ptr null; char* to + }, ; 13943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22636_to, ; char* from + ptr null; char* to + }, ; 13944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22636_to, ; char* from + ptr null; char* to + }, ; 13945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22639_to, ; char* from + ptr null; char* to + }, ; 13946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22639_to, ; char* from + ptr null; char* to + }, ; 13947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22642_to, ; char* from + ptr null; char* to + }, ; 13948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22642_to, ; char* from + ptr null; char* to + }, ; 13949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22681_to, ; char* from + ptr @.TypeMapEntry.22680_from; char* to + }, ; 13950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22645_to, ; char* from + ptr null; char* to + }, ; 13951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22645_to, ; char* from + ptr null; char* to + }, ; 13952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22701_to, ; char* from + ptr @.TypeMapEntry.22700_from; char* to + }, ; 13953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22648_to, ; char* from + ptr null; char* to + }, ; 13954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22648_to, ; char* from + ptr null; char* to + }, ; 13955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22651_to, ; char* from + ptr null; char* to + }, ; 13956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22651_to, ; char* from + ptr null; char* to + }, ; 13957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22703_to, ; char* from + ptr @.TypeMapEntry.22702_from; char* to + }, ; 13958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22654_to, ; char* from + ptr null; char* to + }, ; 13959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22654_to, ; char* from + ptr null; char* to + }, ; 13960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22657_to, ; char* from + ptr null; char* to + }, ; 13961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22657_to, ; char* from + ptr null; char* to + }, ; 13962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22660_to, ; char* from + ptr null; char* to + }, ; 13963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22660_to, ; char* from + ptr null; char* to + }, ; 13964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22705_to, ; char* from + ptr @.TypeMapEntry.22704_from; char* to + }, ; 13965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22663_to, ; char* from + ptr null; char* to + }, ; 13966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22663_to, ; char* from + ptr null; char* to + }, ; 13967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22666_to, ; char* from + ptr null; char* to + }, ; 13968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22666_to, ; char* from + ptr null; char* to + }, ; 13969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22707_to, ; char* from + ptr @.TypeMapEntry.22706_from; char* to + }, ; 13970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22709_to, ; char* from + ptr @.TypeMapEntry.22708_from; char* to + }, ; 13971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22669_to, ; char* from + ptr null; char* to + }, ; 13972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22669_to, ; char* from + ptr null; char* to + }, ; 13973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22672_to, ; char* from + ptr null; char* to + }, ; 13974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22672_to, ; char* from + ptr null; char* to + }, ; 13975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22675_to, ; char* from + ptr null; char* to + }, ; 13976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22675_to, ; char* from + ptr null; char* to + }, ; 13977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22678_to, ; char* from + ptr null; char* to + }, ; 13978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22678_to, ; char* from + ptr null; char* to + }, ; 13979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22511_to, ; char* from + ptr @.TypeMapEntry.22510_from; char* to + }, ; 13980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22513_to, ; char* from + ptr @.TypeMapEntry.22512_from; char* to + }, ; 13981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22517_to, ; char* from + ptr @.TypeMapEntry.22516_from; char* to + }, ; 13982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22519_to, ; char* from + ptr @.TypeMapEntry.22518_from; char* to + }, ; 13983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22528_to, ; char* from + ptr @.TypeMapEntry.22527_from; char* to + }, ; 13984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22528_to, ; char* from + ptr @.TypeMapEntry.22527_from; char* to + }, ; 13985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22524_to, ; char* from + ptr @.TypeMapEntry.22523_from; char* to + }, ; 13986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22526_to, ; char* from + ptr @.TypeMapEntry.22525_from; char* to + }, ; 13987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22549_to, ; char* from + ptr @.TypeMapEntry.22548_from; char* to + }, ; 13988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22549_to, ; char* from + ptr @.TypeMapEntry.22548_from; char* to + }, ; 13989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22531_to, ; char* from + ptr @.TypeMapEntry.22530_from; char* to + }, ; 13990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22533_to, ; char* from + ptr @.TypeMapEntry.22532_from; char* to + }, ; 13991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22535_to, ; char* from + ptr @.TypeMapEntry.22534_from; char* to + }, ; 13992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22537_to, ; char* from + ptr @.TypeMapEntry.22536_from; char* to + }, ; 13993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22539_to, ; char* from + ptr @.TypeMapEntry.22538_from; char* to + }, ; 13994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22541_to, ; char* from + ptr @.TypeMapEntry.22540_from; char* to + }, ; 13995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22543_to, ; char* from + ptr @.TypeMapEntry.22542_from; char* to + }, ; 13996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22545_to, ; char* from + ptr @.TypeMapEntry.22544_from; char* to + }, ; 13997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22547_to, ; char* from + ptr @.TypeMapEntry.22546_from; char* to + }, ; 13998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22521_to, ; char* from + ptr null; char* to + }, ; 13999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22521_to, ; char* from + ptr null; char* to + }, ; 14000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22552_to, ; char* from + ptr @.TypeMapEntry.22551_from; char* to + }, ; 14001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22554_to, ; char* from + ptr @.TypeMapEntry.22553_from; char* to + }, ; 14002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22556_to, ; char* from + ptr @.TypeMapEntry.22555_from; char* to + }, ; 14003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22562_to, ; char* from + ptr @.TypeMapEntry.22561_from; char* to + }, ; 14004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22562_to, ; char* from + ptr @.TypeMapEntry.22561_from; char* to + }, ; 14005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22558_to, ; char* from + ptr @.TypeMapEntry.22557_from; char* to + }, ; 14006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22560_to, ; char* from + ptr @.TypeMapEntry.22559_from; char* to + }, ; 14007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22573_to, ; char* from + ptr @.TypeMapEntry.22572_from; char* to + }, ; 14008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22573_to, ; char* from + ptr @.TypeMapEntry.22572_from; char* to + }, ; 14009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22565_to, ; char* from + ptr @.TypeMapEntry.22564_from; char* to + }, ; 14010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22567_to, ; char* from + ptr @.TypeMapEntry.22566_from; char* to + }, ; 14011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22569_to, ; char* from + ptr @.TypeMapEntry.22568_from; char* to + }, ; 14012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22571_to, ; char* from + ptr @.TypeMapEntry.22570_from; char* to + }, ; 14013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22578_to, ; char* from + ptr @.TypeMapEntry.22577_from; char* to + }, ; 14014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22578_to, ; char* from + ptr @.TypeMapEntry.22577_from; char* to + }, ; 14015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22581_to, ; char* from + ptr @.TypeMapEntry.22580_from; char* to + }, ; 14016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22581_to, ; char* from + ptr @.TypeMapEntry.22580_from; char* to + }, ; 14017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22601_to, ; char* from + ptr null; char* to + }, ; 14018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22601_to, ; char* from + ptr null; char* to + }, ; 14019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22584_to, ; char* from + ptr @.TypeMapEntry.22583_from; char* to + }, ; 14020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22584_to, ; char* from + ptr @.TypeMapEntry.22583_from; char* to + }, ; 14021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22584_to, ; char* from + ptr @.TypeMapEntry.22583_from; char* to + }, ; 14022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22584_to, ; char* from + ptr @.TypeMapEntry.22583_from; char* to + }, ; 14023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22586_to, ; char* from + ptr @.TypeMapEntry.22585_from; char* to + }, ; 14024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22589_to, ; char* from + ptr @.TypeMapEntry.22588_from; char* to + }, ; 14025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22606_to, ; char* from + ptr null; char* to + }, ; 14026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22606_to, ; char* from + ptr null; char* to + }, ; 14027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22591_to, ; char* from + ptr @.TypeMapEntry.22590_from; char* to + }, ; 14028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22609_to, ; char* from + ptr null; char* to + }, ; 14029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22609_to, ; char* from + ptr null; char* to + }, ; 14030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22593_to, ; char* from + ptr @.TypeMapEntry.22592_from; char* to + }, ; 14031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22595_to, ; char* from + ptr @.TypeMapEntry.22594_from; char* to + }, ; 14032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22612_to, ; char* from + ptr null; char* to + }, ; 14033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22612_to, ; char* from + ptr null; char* to + }, ; 14034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22597_to, ; char* from + ptr @.TypeMapEntry.22596_from; char* to + }, ; 14035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22599_to, ; char* from + ptr @.TypeMapEntry.22598_from; char* to + }, ; 14036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22686_to, ; char* from + ptr @.TypeMapEntry.22685_from; char* to + }, ; 14037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22688_to, ; char* from + ptr @.TypeMapEntry.22687_from; char* to + }, ; 14038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22690_to, ; char* from + ptr @.TypeMapEntry.22689_from; char* to + }, ; 14039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22690_to, ; char* from + ptr @.TypeMapEntry.22689_from; char* to + }, ; 14040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22692_to, ; char* from + ptr @.TypeMapEntry.22691_from; char* to + }, ; 14041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22694_to, ; char* from + ptr @.TypeMapEntry.22693_from; char* to + }, ; 14042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22683_to, ; char* from + ptr null; char* to + }, ; 14043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22683_to, ; char* from + ptr null; char* to + }, ; 14044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22696_to, ; char* from + ptr @.TypeMapEntry.22695_from; char* to + }, ; 14045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.22699_to, ; char* from + ptr @.TypeMapEntry.22698_from; char* to + }, ; 14046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23132_to, ; char* from + ptr @.TypeMapEntry.23131_from; char* to + }, ; 14047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23054_to, ; char* from + ptr @.TypeMapEntry.23053_from; char* to + }, ; 14048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17865_to, ; char* from + ptr @.TypeMapEntry.17864_from; char* to + }, ; 14049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16_to, ; char* from + ptr @.TypeMapEntry.15_from; char* to + }, ; 14050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.25_to, ; char* from + ptr @.TypeMapEntry.24_from; char* to + }, ; 14051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.90_to, ; char* from + ptr @.TypeMapEntry.89_from; char* to + }, ; 14052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.406_to, ; char* from + ptr @.TypeMapEntry.405_from; char* to + }, ; 14053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.396_to, ; char* from + ptr @.TypeMapEntry.395_from; char* to + }, ; 14054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.401_to, ; char* from + ptr @.TypeMapEntry.400_from; char* to + }, ; 14055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.442_to, ; char* from + ptr @.TypeMapEntry.441_from; char* to + }, ; 14056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.459_to, ; char* from + ptr @.TypeMapEntry.458_from; char* to + }, ; 14057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.469_to, ; char* from + ptr @.TypeMapEntry.468_from; char* to + }, ; 14058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.474_to, ; char* from + ptr @.TypeMapEntry.473_from; char* to + }, ; 14059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.491_to, ; char* from + ptr @.TypeMapEntry.490_from; char* to + }, ; 14060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.496_to, ; char* from + ptr @.TypeMapEntry.495_from; char* to + }, ; 14061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.501_to, ; char* from + ptr @.TypeMapEntry.500_from; char* to + }, ; 14062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.613_to, ; char* from + ptr @.TypeMapEntry.612_from; char* to + }, ; 14063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.628_to, ; char* from + ptr @.TypeMapEntry.627_from; char* to + }, ; 14064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.633_to, ; char* from + ptr @.TypeMapEntry.632_from; char* to + }, ; 14065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.796_to, ; char* from + ptr @.TypeMapEntry.795_from; char* to + }, ; 14066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.872_to, ; char* from + ptr @.TypeMapEntry.871_from; char* to + }, ; 14067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.906_to, ; char* from + ptr @.TypeMapEntry.905_from; char* to + }, ; 14068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.927_to, ; char* from + ptr @.TypeMapEntry.926_from; char* to + }, ; 14069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.953_to, ; char* from + ptr @.TypeMapEntry.952_from; char* to + }, ; 14070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.953_to, ; char* from + ptr @.TypeMapEntry.952_from; char* to + }, ; 14071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.981_to, ; char* from + ptr @.TypeMapEntry.980_from; char* to + }, ; 14072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1144_to, ; char* from + ptr @.TypeMapEntry.1143_from; char* to + }, ; 14073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1149_to, ; char* from + ptr @.TypeMapEntry.1148_from; char* to + }, ; 14074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1164_to, ; char* from + ptr @.TypeMapEntry.1163_from; char* to + }, ; 14075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1193_to, ; char* from + ptr @.TypeMapEntry.1192_from; char* to + }, ; 14076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1201_to, ; char* from + ptr @.TypeMapEntry.1200_from; char* to + }, ; 14077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1211_to, ; char* from + ptr @.TypeMapEntry.1210_from; char* to + }, ; 14078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1218_to, ; char* from + ptr @.TypeMapEntry.1217_from; char* to + }, ; 14079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1279_to, ; char* from + ptr @.TypeMapEntry.1278_from; char* to + }, ; 14080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.557_to, ; char* from + ptr @.TypeMapEntry.556_from; char* to + }, ; 14081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1386_to, ; char* from + ptr @.TypeMapEntry.1385_from; char* to + }, ; 14082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1471_to, ; char* from + ptr @.TypeMapEntry.1470_from; char* to + }, ; 14083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1514_to, ; char* from + ptr @.TypeMapEntry.1513_from; char* to + }, ; 14084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1580_to, ; char* from + ptr @.TypeMapEntry.1579_from; char* to + }, ; 14085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1585_to, ; char* from + ptr @.TypeMapEntry.1584_from; char* to + }, ; 14086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1590_to, ; char* from + ptr @.TypeMapEntry.1589_from; char* to + }, ; 14087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1595_to, ; char* from + ptr @.TypeMapEntry.1594_from; char* to + }, ; 14088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1600_to, ; char* from + ptr @.TypeMapEntry.1599_from; char* to + }, ; 14089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1605_to, ; char* from + ptr @.TypeMapEntry.1604_from; char* to + }, ; 14090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1648_to, ; char* from + ptr @.TypeMapEntry.1647_from; char* to + }, ; 14091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1653_to, ; char* from + ptr @.TypeMapEntry.1652_from; char* to + }, ; 14092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1619_to, ; char* from + ptr @.TypeMapEntry.1618_from; char* to + }, ; 14093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1772_to, ; char* from + ptr @.TypeMapEntry.1771_from; char* to + }, ; 14094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2001_to, ; char* from + ptr @.TypeMapEntry.2000_from; char* to + }, ; 14095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2088_to, ; char* from + ptr @.TypeMapEntry.2087_from; char* to + }, ; 14096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2093_to, ; char* from + ptr @.TypeMapEntry.2092_from; char* to + }, ; 14097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2098_to, ; char* from + ptr @.TypeMapEntry.2097_from; char* to + }, ; 14098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2134_to, ; char* from + ptr @.TypeMapEntry.2133_from; char* to + }, ; 14099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2139_to, ; char* from + ptr @.TypeMapEntry.2138_from; char* to + }, ; 14100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2144_to, ; char* from + ptr @.TypeMapEntry.2143_from; char* to + }, ; 14101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2364_to, ; char* from + ptr @.TypeMapEntry.2363_from; char* to + }, ; 14102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2369_to, ; char* from + ptr @.TypeMapEntry.2368_from; char* to + }, ; 14103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2551_to, ; char* from + ptr @.TypeMapEntry.2550_from; char* to + }, ; 14104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2282_to, ; char* from + ptr @.TypeMapEntry.2281_from; char* to + }, ; 14105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2643_to, ; char* from + ptr @.TypeMapEntry.2642_from; char* to + }, ; 14106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2648_to, ; char* from + ptr @.TypeMapEntry.2647_from; char* to + }, ; 14107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2835_to, ; char* from + ptr @.TypeMapEntry.2834_from; char* to + }, ; 14108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2840_to, ; char* from + ptr @.TypeMapEntry.2839_from; char* to + }, ; 14109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2801_to, ; char* from + ptr @.TypeMapEntry.2800_from; char* to + }, ; 14110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2847_to, ; char* from + ptr @.TypeMapEntry.2846_from; char* to + }, ; 14111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3788_to, ; char* from + ptr @.TypeMapEntry.3787_from; char* to + }, ; 14112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3801_to, ; char* from + ptr @.TypeMapEntry.3800_from; char* to + }, ; 14113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3810_to, ; char* from + ptr @.TypeMapEntry.3809_from; char* to + }, ; 14114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3860_to, ; char* from + ptr @.TypeMapEntry.3859_from; char* to + }, ; 14115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3865_to, ; char* from + ptr @.TypeMapEntry.3864_from; char* to + }, ; 14116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3872_to, ; char* from + ptr @.TypeMapEntry.3871_from; char* to + }, ; 14117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3877_to, ; char* from + ptr @.TypeMapEntry.3876_from; char* to + }, ; 14118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3936_to, ; char* from + ptr @.TypeMapEntry.3935_from; char* to + }, ; 14119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3941_to, ; char* from + ptr @.TypeMapEntry.3940_from; char* to + }, ; 14120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3946_to, ; char* from + ptr @.TypeMapEntry.3945_from; char* to + }, ; 14121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3951_to, ; char* from + ptr @.TypeMapEntry.3950_from; char* to + }, ; 14122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3983_to, ; char* from + ptr @.TypeMapEntry.3982_from; char* to + }, ; 14123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4182_to, ; char* from + ptr @.TypeMapEntry.4181_from; char* to + }, ; 14124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4001_to, ; char* from + ptr @.TypeMapEntry.4000_from; char* to + }, ; 14125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4006_to, ; char* from + ptr @.TypeMapEntry.4005_from; char* to + }, ; 14126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4204_to, ; char* from + ptr @.TypeMapEntry.4203_from; char* to + }, ; 14127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4213_to, ; char* from + ptr @.TypeMapEntry.4212_from; char* to + }, ; 14128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4220_to, ; char* from + ptr @.TypeMapEntry.4219_from; char* to + }, ; 14129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4227_to, ; char* from + ptr @.TypeMapEntry.4226_from; char* to + }, ; 14130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4236_to, ; char* from + ptr @.TypeMapEntry.4235_from; char* to + }, ; 14131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4274_to, ; char* from + ptr @.TypeMapEntry.4273_from; char* to + }, ; 14132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4279_to, ; char* from + ptr @.TypeMapEntry.4278_from; char* to + }, ; 14133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4345_to, ; char* from + ptr @.TypeMapEntry.4344_from; char* to + }, ; 14134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4350_to, ; char* from + ptr @.TypeMapEntry.4349_from; char* to + }, ; 14135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4355_to, ; char* from + ptr @.TypeMapEntry.4354_from; char* to + }, ; 14136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4360_to, ; char* from + ptr @.TypeMapEntry.4359_from; char* to + }, ; 14137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4442_to, ; char* from + ptr @.TypeMapEntry.4441_from; char* to + }, ; 14138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4447_to, ; char* from + ptr @.TypeMapEntry.4446_from; char* to + }, ; 14139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4455_to, ; char* from + ptr @.TypeMapEntry.4454_from; char* to + }, ; 14140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4460_to, ; char* from + ptr @.TypeMapEntry.4459_from; char* to + }, ; 14141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4465_to, ; char* from + ptr @.TypeMapEntry.4464_from; char* to + }, ; 14142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4470_to, ; char* from + ptr @.TypeMapEntry.4469_from; char* to + }, ; 14143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4475_to, ; char* from + ptr @.TypeMapEntry.4474_from; char* to + }, ; 14144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4480_to, ; char* from + ptr @.TypeMapEntry.4479_from; char* to + }, ; 14145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4485_to, ; char* from + ptr @.TypeMapEntry.4484_from; char* to + }, ; 14146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4490_to, ; char* from + ptr @.TypeMapEntry.4489_from; char* to + }, ; 14147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4495_to, ; char* from + ptr @.TypeMapEntry.4494_from; char* to + }, ; 14148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4500_to, ; char* from + ptr @.TypeMapEntry.4499_from; char* to + }, ; 14149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4505_to, ; char* from + ptr @.TypeMapEntry.4504_from; char* to + }, ; 14150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4526_to, ; char* from + ptr @.TypeMapEntry.4525_from; char* to + }, ; 14151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4531_to, ; char* from + ptr @.TypeMapEntry.4530_from; char* to + }, ; 14152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4574_to, ; char* from + ptr @.TypeMapEntry.4573_from; char* to + }, ; 14153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4598_to, ; char* from + ptr @.TypeMapEntry.4597_from; char* to + }, ; 14154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4622_to, ; char* from + ptr @.TypeMapEntry.4621_from; char* to + }, ; 14155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4734_to, ; char* from + ptr @.TypeMapEntry.4733_from; char* to + }, ; 14156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4739_to, ; char* from + ptr @.TypeMapEntry.4738_from; char* to + }, ; 14157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4744_to, ; char* from + ptr @.TypeMapEntry.4743_from; char* to + }, ; 14158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4753_to, ; char* from + ptr @.TypeMapEntry.4752_from; char* to + }, ; 14159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4841_to, ; char* from + ptr @.TypeMapEntry.4840_from; char* to + }, ; 14160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4848_to, ; char* from + ptr @.TypeMapEntry.4847_from; char* to + }, ; 14161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4853_to, ; char* from + ptr @.TypeMapEntry.4852_from; char* to + }, ; 14162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4025_to, ; char* from + ptr @.TypeMapEntry.4024_from; char* to + }, ; 14163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4030_to, ; char* from + ptr @.TypeMapEntry.4029_from; char* to + }, ; 14164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4039_to, ; char* from + ptr @.TypeMapEntry.4038_from; char* to + }, ; 14165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4072_to, ; char* from + ptr @.TypeMapEntry.4071_from; char* to + }, ; 14166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4081_to, ; char* from + ptr @.TypeMapEntry.4080_from; char* to + }, ; 14167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4096_to, ; char* from + ptr @.TypeMapEntry.4095_from; char* to + }, ; 14168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4105_to, ; char* from + ptr @.TypeMapEntry.4104_from; char* to + }, ; 14169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4114_to, ; char* from + ptr @.TypeMapEntry.4113_from; char* to + }, ; 14170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4153_to, ; char* from + ptr @.TypeMapEntry.4152_from; char* to + }, ; 14171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4701_to, ; char* from + ptr @.TypeMapEntry.4700_from; char* to + }, ; 14172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4802_to, ; char* from + ptr @.TypeMapEntry.4801_from; char* to + }, ; 14173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4807_to, ; char* from + ptr @.TypeMapEntry.4806_from; char* to + }, ; 14174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4812_to, ; char* from + ptr @.TypeMapEntry.4811_from; char* to + }, ; 14175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4989_to, ; char* from + ptr @.TypeMapEntry.4988_from; char* to + }, ; 14176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4901_to, ; char* from + ptr @.TypeMapEntry.4900_from; char* to + }, ; 14177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5048_to, ; char* from + ptr @.TypeMapEntry.5047_from; char* to + }, ; 14178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5166_to, ; char* from + ptr @.TypeMapEntry.5165_from; char* to + }, ; 14179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5371_to, ; char* from + ptr @.TypeMapEntry.5370_from; char* to + }, ; 14180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5376_to, ; char* from + ptr @.TypeMapEntry.5375_from; char* to + }, ; 14181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5381_to, ; char* from + ptr @.TypeMapEntry.5380_from; char* to + }, ; 14182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5419_to, ; char* from + ptr @.TypeMapEntry.5418_from; char* to + }, ; 14183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5748_to, ; char* from + ptr @.TypeMapEntry.5747_from; char* to + }, ; 14184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5753_to, ; char* from + ptr @.TypeMapEntry.5752_from; char* to + }, ; 14185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5758_to, ; char* from + ptr @.TypeMapEntry.5757_from; char* to + }, ; 14186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5610_to, ; char* from + ptr @.TypeMapEntry.5609_from; char* to + }, ; 14187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5615_to, ; char* from + ptr @.TypeMapEntry.5614_from; char* to + }, ; 14188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5620_to, ; char* from + ptr @.TypeMapEntry.5619_from; char* to + }, ; 14189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5625_to, ; char* from + ptr @.TypeMapEntry.5624_from; char* to + }, ; 14190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5630_to, ; char* from + ptr @.TypeMapEntry.5629_from; char* to + }, ; 14191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5635_to, ; char* from + ptr @.TypeMapEntry.5634_from; char* to + }, ; 14192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5640_to, ; char* from + ptr @.TypeMapEntry.5639_from; char* to + }, ; 14193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5645_to, ; char* from + ptr @.TypeMapEntry.5644_from; char* to + }, ; 14194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5650_to, ; char* from + ptr @.TypeMapEntry.5649_from; char* to + }, ; 14195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5655_to, ; char* from + ptr @.TypeMapEntry.5654_from; char* to + }, ; 14196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5660_to, ; char* from + ptr @.TypeMapEntry.5659_from; char* to + }, ; 14197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5665_to, ; char* from + ptr @.TypeMapEntry.5664_from; char* to + }, ; 14198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5670_to, ; char* from + ptr @.TypeMapEntry.5669_from; char* to + }, ; 14199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5675_to, ; char* from + ptr @.TypeMapEntry.5674_from; char* to + }, ; 14200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5680_to, ; char* from + ptr @.TypeMapEntry.5679_from; char* to + }, ; 14201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5828_to, ; char* from + ptr @.TypeMapEntry.5827_from; char* to + }, ; 14202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5872_to, ; char* from + ptr @.TypeMapEntry.5871_from; char* to + }, ; 14203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5907_to, ; char* from + ptr @.TypeMapEntry.5906_from; char* to + }, ; 14204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5949_to, ; char* from + ptr @.TypeMapEntry.5948_from; char* to + }, ; 14205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6015_to, ; char* from + ptr @.TypeMapEntry.6014_from; char* to + }, ; 14206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6036_to, ; char* from + ptr @.TypeMapEntry.6035_from; char* to + }, ; 14207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6057_to, ; char* from + ptr @.TypeMapEntry.6056_from; char* to + }, ; 14208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6062_to, ; char* from + ptr @.TypeMapEntry.6061_from; char* to + }, ; 14209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6084_to, ; char* from + ptr @.TypeMapEntry.6083_from; char* to + }, ; 14210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6112_to, ; char* from + ptr @.TypeMapEntry.6111_from; char* to + }, ; 14211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6117_to, ; char* from + ptr @.TypeMapEntry.6116_from; char* to + }, ; 14212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6339_to, ; char* from + ptr @.TypeMapEntry.6338_from; char* to + }, ; 14213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6344_to, ; char* from + ptr @.TypeMapEntry.6343_from; char* to + }, ; 14214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6349_to, ; char* from + ptr @.TypeMapEntry.6348_from; char* to + }, ; 14215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6311_to, ; char* from + ptr @.TypeMapEntry.6310_from; char* to + }, ; 14216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6316_to, ; char* from + ptr @.TypeMapEntry.6315_from; char* to + }, ; 14217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6907_to, ; char* from + ptr @.TypeMapEntry.6906_from; char* to + }, ; 14218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7171_to, ; char* from + ptr @.TypeMapEntry.7170_from; char* to + }, ; 14219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7173_to, ; char* from + ptr null; char* to + }, ; 14220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7184_to, ; char* from + ptr @.TypeMapEntry.7183_from; char* to + }, ; 14221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7191_to, ; char* from + ptr @.TypeMapEntry.7190_from; char* to + }, ; 14222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7217_to, ; char* from + ptr @.TypeMapEntry.7216_from; char* to + }, ; 14223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7222_to, ; char* from + ptr @.TypeMapEntry.7221_from; char* to + }, ; 14224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7227_to, ; char* from + ptr @.TypeMapEntry.7226_from; char* to + }, ; 14225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7203_to, ; char* from + ptr @.TypeMapEntry.7202_from; char* to + }, ; 14226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7694_to, ; char* from + ptr @.TypeMapEntry.7693_from; char* to + }, ; 14227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7699_to, ; char* from + ptr @.TypeMapEntry.7698_from; char* to + }, ; 14228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7737_to, ; char* from + ptr @.TypeMapEntry.7736_from; char* to + }, ; 14229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.7742_to, ; char* from + ptr @.TypeMapEntry.7741_from; char* to + }, ; 14230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8029_to, ; char* from + ptr @.TypeMapEntry.8028_from; char* to + }, ; 14231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8300_to, ; char* from + ptr @.TypeMapEntry.8299_from; char* to + }, ; 14232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8305_to, ; char* from + ptr @.TypeMapEntry.8304_from; char* to + }, ; 14233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8310_to, ; char* from + ptr @.TypeMapEntry.8309_from; char* to + }, ; 14234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8315_to, ; char* from + ptr @.TypeMapEntry.8314_from; char* to + }, ; 14235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8320_to, ; char* from + ptr @.TypeMapEntry.8319_from; char* to + }, ; 14236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8325_to, ; char* from + ptr @.TypeMapEntry.8324_from; char* to + }, ; 14237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8330_to, ; char* from + ptr @.TypeMapEntry.8329_from; char* to + }, ; 14238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8335_to, ; char* from + ptr @.TypeMapEntry.8334_from; char* to + }, ; 14239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8340_to, ; char* from + ptr @.TypeMapEntry.8339_from; char* to + }, ; 14240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8345_to, ; char* from + ptr @.TypeMapEntry.8344_from; char* to + }, ; 14241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8350_to, ; char* from + ptr @.TypeMapEntry.8349_from; char* to + }, ; 14242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8355_to, ; char* from + ptr @.TypeMapEntry.8354_from; char* to + }, ; 14243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8360_to, ; char* from + ptr @.TypeMapEntry.8359_from; char* to + }, ; 14244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8365_to, ; char* from + ptr @.TypeMapEntry.8364_from; char* to + }, ; 14245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8370_to, ; char* from + ptr @.TypeMapEntry.8369_from; char* to + }, ; 14246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8375_to, ; char* from + ptr @.TypeMapEntry.8374_from; char* to + }, ; 14247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8380_to, ; char* from + ptr @.TypeMapEntry.8379_from; char* to + }, ; 14248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8385_to, ; char* from + ptr @.TypeMapEntry.8384_from; char* to + }, ; 14249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8390_to, ; char* from + ptr @.TypeMapEntry.8389_from; char* to + }, ; 14250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8395_to, ; char* from + ptr @.TypeMapEntry.8394_from; char* to + }, ; 14251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8400_to, ; char* from + ptr @.TypeMapEntry.8399_from; char* to + }, ; 14252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8869_to, ; char* from + ptr @.TypeMapEntry.8868_from; char* to + }, ; 14253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8921_to, ; char* from + ptr @.TypeMapEntry.8920_from; char* to + }, ; 14254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9165_to, ; char* from + ptr @.TypeMapEntry.9164_from; char* to + }, ; 14255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9343_to, ; char* from + ptr @.TypeMapEntry.9342_from; char* to + }, ; 14256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9320_to, ; char* from + ptr @.TypeMapEntry.9319_from; char* to + }, ; 14257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9325_to, ; char* from + ptr @.TypeMapEntry.9324_from; char* to + }, ; 14258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9330_to, ; char* from + ptr @.TypeMapEntry.9329_from; char* to + }, ; 14259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9366_to, ; char* from + ptr @.TypeMapEntry.9365_from; char* to + }, ; 14260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9371_to, ; char* from + ptr @.TypeMapEntry.9370_from; char* to + }, ; 14261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9376_to, ; char* from + ptr @.TypeMapEntry.9375_from; char* to + }, ; 14262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9636_to, ; char* from + ptr @.TypeMapEntry.9635_from; char* to + }, ; 14263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9653_to, ; char* from + ptr @.TypeMapEntry.9652_from; char* to + }, ; 14264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9676_to, ; char* from + ptr @.TypeMapEntry.9675_from; char* to + }, ; 14265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9814_to, ; char* from + ptr @.TypeMapEntry.9813_from; char* to + }, ; 14266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9991_to, ; char* from + ptr @.TypeMapEntry.9990_from; char* to + }, ; 14267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10021_to, ; char* from + ptr @.TypeMapEntry.10020_from; char* to + }, ; 14268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10028_to, ; char* from + ptr @.TypeMapEntry.10027_from; char* to + }, ; 14269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10033_to, ; char* from + ptr @.TypeMapEntry.10032_from; char* to + }, ; 14270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10038_to, ; char* from + ptr @.TypeMapEntry.10037_from; char* to + }, ; 14271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10043_to, ; char* from + ptr @.TypeMapEntry.10042_from; char* to + }, ; 14272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10048_to, ; char* from + ptr @.TypeMapEntry.10047_from; char* to + }, ; 14273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10053_to, ; char* from + ptr @.TypeMapEntry.10052_from; char* to + }, ; 14274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10058_to, ; char* from + ptr @.TypeMapEntry.10057_from; char* to + }, ; 14275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10063_to, ; char* from + ptr @.TypeMapEntry.10062_from; char* to + }, ; 14276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10068_to, ; char* from + ptr @.TypeMapEntry.10067_from; char* to + }, ; 14277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9880_to, ; char* from + ptr @.TypeMapEntry.9879_from; char* to + }, ; 14278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9885_to, ; char* from + ptr @.TypeMapEntry.9884_from; char* to + }, ; 14279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9890_to, ; char* from + ptr @.TypeMapEntry.9889_from; char* to + }, ; 14280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9895_to, ; char* from + ptr @.TypeMapEntry.9894_from; char* to + }, ; 14281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9900_to, ; char* from + ptr @.TypeMapEntry.9899_from; char* to + }, ; 14282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9905_to, ; char* from + ptr @.TypeMapEntry.9904_from; char* to + }, ; 14283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9910_to, ; char* from + ptr @.TypeMapEntry.9909_from; char* to + }, ; 14284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9915_to, ; char* from + ptr @.TypeMapEntry.9914_from; char* to + }, ; 14285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9920_to, ; char* from + ptr @.TypeMapEntry.9919_from; char* to + }, ; 14286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9925_to, ; char* from + ptr @.TypeMapEntry.9924_from; char* to + }, ; 14287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9930_to, ; char* from + ptr @.TypeMapEntry.9929_from; char* to + }, ; 14288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9935_to, ; char* from + ptr @.TypeMapEntry.9934_from; char* to + }, ; 14289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9940_to, ; char* from + ptr @.TypeMapEntry.9939_from; char* to + }, ; 14290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9945_to, ; char* from + ptr @.TypeMapEntry.9944_from; char* to + }, ; 14291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9950_to, ; char* from + ptr @.TypeMapEntry.9949_from; char* to + }, ; 14292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9955_to, ; char* from + ptr @.TypeMapEntry.9954_from; char* to + }, ; 14293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9960_to, ; char* from + ptr @.TypeMapEntry.9959_from; char* to + }, ; 14294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9408_to, ; char* from + ptr @.TypeMapEntry.9407_from; char* to + }, ; 14295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9416_to, ; char* from + ptr @.TypeMapEntry.9415_from; char* to + }, ; 14296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10078_to, ; char* from + ptr @.TypeMapEntry.10077_from; char* to + }, ; 14297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10083_to, ; char* from + ptr @.TypeMapEntry.10082_from; char* to + }, ; 14298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9096_to, ; char* from + ptr @.TypeMapEntry.9095_from; char* to + }, ; 14299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9101_to, ; char* from + ptr @.TypeMapEntry.9100_from; char* to + }, ; 14300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9106_to, ; char* from + ptr @.TypeMapEntry.9105_from; char* to + }, ; 14301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9111_to, ; char* from + ptr @.TypeMapEntry.9110_from; char* to + }, ; 14302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9181_to, ; char* from + ptr @.TypeMapEntry.9180_from; char* to + }, ; 14303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9795_to, ; char* from + ptr @.TypeMapEntry.9794_from; char* to + }, ; 14304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10150_to, ; char* from + ptr @.TypeMapEntry.10149_from; char* to + }, ; 14305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10231_to, ; char* from + ptr @.TypeMapEntry.10230_from; char* to + }, ; 14306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10277_to, ; char* from + ptr @.TypeMapEntry.10276_from; char* to + }, ; 14307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10282_to, ; char* from + ptr @.TypeMapEntry.10281_from; char* to + }, ; 14308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10310_to, ; char* from + ptr @.TypeMapEntry.10309_from; char* to + }, ; 14309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10315_to, ; char* from + ptr @.TypeMapEntry.10314_from; char* to + }, ; 14310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10338_to, ; char* from + ptr @.TypeMapEntry.10337_from; char* to + }, ; 14311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10351_to, ; char* from + ptr @.TypeMapEntry.10350_from; char* to + }, ; 14312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10356_to, ; char* from + ptr @.TypeMapEntry.10355_from; char* to + }, ; 14313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10361_to, ; char* from + ptr @.TypeMapEntry.10360_from; char* to + }, ; 14314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10382_to, ; char* from + ptr @.TypeMapEntry.10381_from; char* to + }, ; 14315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10401_to, ; char* from + ptr @.TypeMapEntry.10400_from; char* to + }, ; 14316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10412_to, ; char* from + ptr @.TypeMapEntry.10411_from; char* to + }, ; 14317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10419_to, ; char* from + ptr @.TypeMapEntry.10418_from; char* to + }, ; 14318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10433_to, ; char* from + ptr @.TypeMapEntry.10432_from; char* to + }, ; 14319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10450_to, ; char* from + ptr @.TypeMapEntry.10449_from; char* to + }, ; 14320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10455_to, ; char* from + ptr @.TypeMapEntry.10454_from; char* to + }, ; 14321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10460_to, ; char* from + ptr @.TypeMapEntry.10459_from; char* to + }, ; 14322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10465_to, ; char* from + ptr @.TypeMapEntry.10464_from; char* to + }, ; 14323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10474_to, ; char* from + ptr @.TypeMapEntry.10473_from; char* to + }, ; 14324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10587_to, ; char* from + ptr @.TypeMapEntry.10586_from; char* to + }, ; 14325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10592_to, ; char* from + ptr @.TypeMapEntry.10591_from; char* to + }, ; 14326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10601_to, ; char* from + ptr @.TypeMapEntry.10600_from; char* to + }, ; 14327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10606_to, ; char* from + ptr @.TypeMapEntry.10605_from; char* to + }, ; 14328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10613_to, ; char* from + ptr @.TypeMapEntry.10612_from; char* to + }, ; 14329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10626_to, ; char* from + ptr @.TypeMapEntry.10625_from; char* to + }, ; 14330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10635_to, ; char* from + ptr @.TypeMapEntry.10634_from; char* to + }, ; 14331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10681_to, ; char* from + ptr @.TypeMapEntry.10680_from; char* to + }, ; 14332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10686_to, ; char* from + ptr @.TypeMapEntry.10685_from; char* to + }, ; 14333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10691_to, ; char* from + ptr @.TypeMapEntry.10690_from; char* to + }, ; 14334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10698_to, ; char* from + ptr @.TypeMapEntry.10697_from; char* to + }, ; 14335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10705_to, ; char* from + ptr @.TypeMapEntry.10704_from; char* to + }, ; 14336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10733_to, ; char* from + ptr @.TypeMapEntry.10732_from; char* to + }, ; 14337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10738_to, ; char* from + ptr @.TypeMapEntry.10737_from; char* to + }, ; 14338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10743_to, ; char* from + ptr @.TypeMapEntry.10742_from; char* to + }, ; 14339 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10758_to, ; char* from + ptr @.TypeMapEntry.10757_from; char* to + }, ; 14340 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10786_to, ; char* from + ptr @.TypeMapEntry.10785_from; char* to + }, ; 14341 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10795_to, ; char* from + ptr @.TypeMapEntry.10794_from; char* to + }, ; 14342 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10809_to, ; char* from + ptr @.TypeMapEntry.10808_from; char* to + }, ; 14343 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10833_to, ; char* from + ptr @.TypeMapEntry.10832_from; char* to + }, ; 14344 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10856_to, ; char* from + ptr @.TypeMapEntry.10855_from; char* to + }, ; 14345 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10893_to, ; char* from + ptr @.TypeMapEntry.10892_from; char* to + }, ; 14346 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11278_to, ; char* from + ptr @.TypeMapEntry.11277_from; char* to + }, ; 14347 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11283_to, ; char* from + ptr @.TypeMapEntry.11282_from; char* to + }, ; 14348 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11288_to, ; char* from + ptr @.TypeMapEntry.11287_from; char* to + }, ; 14349 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11465_to, ; char* from + ptr @.TypeMapEntry.11464_from; char* to + }, ; 14350 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11544_to, ; char* from + ptr @.TypeMapEntry.11543_from; char* to + }, ; 14351 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11576_to, ; char* from + ptr @.TypeMapEntry.11575_from; char* to + }, ; 14352 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11581_to, ; char* from + ptr @.TypeMapEntry.11580_from; char* to + }, ; 14353 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11610_to, ; char* from + ptr @.TypeMapEntry.11609_from; char* to + }, ; 14354 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11615_to, ; char* from + ptr @.TypeMapEntry.11614_from; char* to + }, ; 14355 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11633_to, ; char* from + ptr @.TypeMapEntry.11632_from; char* to + }, ; 14356 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11638_to, ; char* from + ptr @.TypeMapEntry.11637_from; char* to + }, ; 14357 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11643_to, ; char* from + ptr @.TypeMapEntry.11642_from; char* to + }, ; 14358 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11654_to, ; char* from + ptr @.TypeMapEntry.11653_from; char* to + }, ; 14359 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11675_to, ; char* from + ptr @.TypeMapEntry.11674_from; char* to + }, ; 14360 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.11696_to, ; char* from + ptr @.TypeMapEntry.11695_from; char* to + }, ; 14361 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12667_to, ; char* from + ptr @.TypeMapEntry.12666_from; char* to + }, ; 14362 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12754_to, ; char* from + ptr @.TypeMapEntry.12753_from; char* to + }, ; 14363 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.12997_to, ; char* from + ptr @.TypeMapEntry.12996_from; char* to + }, ; 14364 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13326_to, ; char* from + ptr @.TypeMapEntry.13325_from; char* to + }, ; 14365 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13634_to, ; char* from + ptr @.TypeMapEntry.13633_from; char* to + }, ; 14366 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13639_to, ; char* from + ptr @.TypeMapEntry.13638_from; char* to + }, ; 14367 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13673_to, ; char* from + ptr @.TypeMapEntry.13672_from; char* to + }, ; 14368 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13789_to, ; char* from + ptr @.TypeMapEntry.13788_from; char* to + }, ; 14369 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13722_to, ; char* from + ptr @.TypeMapEntry.13721_from; char* to + }, ; 14370 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13727_to, ; char* from + ptr @.TypeMapEntry.13726_from; char* to + }, ; 14371 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13741_to, ; char* from + ptr @.TypeMapEntry.13740_from; char* to + }, ; 14372 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13746_to, ; char* from + ptr @.TypeMapEntry.13745_from; char* to + }, ; 14373 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13886_to, ; char* from + ptr @.TypeMapEntry.13885_from; char* to + }, ; 14374 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13578_to, ; char* from + ptr @.TypeMapEntry.13577_from; char* to + }, ; 14375 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13583_to, ; char* from + ptr @.TypeMapEntry.13582_from; char* to + }, ; 14376 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13758_to, ; char* from + ptr @.TypeMapEntry.13757_from; char* to + }, ; 14377 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13931_to, ; char* from + ptr @.TypeMapEntry.13930_from; char* to + }, ; 14378 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13969_to, ; char* from + ptr @.TypeMapEntry.13968_from; char* to + }, ; 14379 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.13990_to, ; char* from + ptr @.TypeMapEntry.13989_from; char* to + }, ; 14380 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14006_to, ; char* from + ptr @.TypeMapEntry.14005_from; char* to + }, ; 14381 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14013_to, ; char* from + ptr @.TypeMapEntry.14012_from; char* to + }, ; 14382 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14018_to, ; char* from + ptr @.TypeMapEntry.14017_from; char* to + }, ; 14383 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14217_to, ; char* from + ptr @.TypeMapEntry.14216_from; char* to + }, ; 14384 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14247_to, ; char* from + ptr @.TypeMapEntry.14246_from; char* to + }, ; 14385 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14252_to, ; char* from + ptr @.TypeMapEntry.14251_from; char* to + }, ; 14386 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14267_to, ; char* from + ptr @.TypeMapEntry.14266_from; char* to + }, ; 14387 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14425_to, ; char* from + ptr @.TypeMapEntry.14424_from; char* to + }, ; 14388 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14530_to, ; char* from + ptr @.TypeMapEntry.14529_from; char* to + }, ; 14389 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14535_to, ; char* from + ptr @.TypeMapEntry.14534_from; char* to + }, ; 14390 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14657_to, ; char* from + ptr @.TypeMapEntry.14656_from; char* to + }, ; 14391 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14776_to, ; char* from + ptr @.TypeMapEntry.14775_from; char* to + }, ; 14392 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14838_to, ; char* from + ptr @.TypeMapEntry.14837_from; char* to + }, ; 14393 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14960_to, ; char* from + ptr @.TypeMapEntry.14959_from; char* to + }, ; 14394 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14939_to, ; char* from + ptr @.TypeMapEntry.14938_from; char* to + }, ; 14395 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14944_to, ; char* from + ptr @.TypeMapEntry.14943_from; char* to + }, ; 14396 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.14952_to, ; char* from + ptr @.TypeMapEntry.14951_from; char* to + }, ; 14397 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15091_to, ; char* from + ptr @.TypeMapEntry.15090_from; char* to + }, ; 14398 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15121_to, ; char* from + ptr @.TypeMapEntry.15120_from; char* to + }, ; 14399 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15179_to, ; char* from + ptr @.TypeMapEntry.15178_from; char* to + }, ; 14400 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15268_to, ; char* from + ptr @.TypeMapEntry.15267_from; char* to + }, ; 14401 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15273_to, ; char* from + ptr @.TypeMapEntry.15272_from; char* to + }, ; 14402 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15289_to, ; char* from + ptr @.TypeMapEntry.15288_from; char* to + }, ; 14403 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.15686_to, ; char* from + ptr @.TypeMapEntry.15685_from; char* to + }, ; 14404 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16064_to, ; char* from + ptr @.TypeMapEntry.16063_from; char* to + }, ; 14405 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16076_to, ; char* from + ptr @.TypeMapEntry.16075_from; char* to + }, ; 14406 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16156_to, ; char* from + ptr @.TypeMapEntry.16155_from; char* to + }, ; 14407 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16379_to, ; char* from + ptr @.TypeMapEntry.16378_from; char* to + }, ; 14408 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16414_to, ; char* from + ptr @.TypeMapEntry.16413_from; char* to + }, ; 14409 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16419_to, ; char* from + ptr @.TypeMapEntry.16418_from; char* to + }, ; 14410 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16470_to, ; char* from + ptr @.TypeMapEntry.16469_from; char* to + }, ; 14411 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16480_to, ; char* from + ptr @.TypeMapEntry.16479_from; char* to + }, ; 14412 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16556_to, ; char* from + ptr @.TypeMapEntry.16555_from; char* to + }, ; 14413 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16547_to, ; char* from + ptr @.TypeMapEntry.16546_from; char* to + }, ; 14414 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16571_to, ; char* from + ptr @.TypeMapEntry.16570_from; char* to + }, ; 14415 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16589_to, ; char* from + ptr @.TypeMapEntry.16588_from; char* to + }, ; 14416 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16603_to, ; char* from + ptr @.TypeMapEntry.16602_from; char* to + }, ; 14417 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16608_to, ; char* from + ptr @.TypeMapEntry.16607_from; char* to + }, ; 14418 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16622_to, ; char* from + ptr @.TypeMapEntry.16621_from; char* to + }, ; 14419 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16627_to, ; char* from + ptr @.TypeMapEntry.16626_from; char* to + }, ; 14420 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16802_to, ; char* from + ptr @.TypeMapEntry.16801_from; char* to + }, ; 14421 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16879_to, ; char* from + ptr @.TypeMapEntry.16878_from; char* to + }, ; 14422 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16914_to, ; char* from + ptr @.TypeMapEntry.16913_from; char* to + }, ; 14423 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16968_to, ; char* from + ptr @.TypeMapEntry.16967_from; char* to + }, ; 14424 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17016_to, ; char* from + ptr @.TypeMapEntry.17015_from; char* to + }, ; 14425 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17021_to, ; char* from + ptr @.TypeMapEntry.17020_from; char* to + }, ; 14426 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17029_to, ; char* from + ptr @.TypeMapEntry.17028_from; char* to + }, ; 14427 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17110_to, ; char* from + ptr @.TypeMapEntry.17109_from; char* to + }, ; 14428 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17175_to, ; char* from + ptr @.TypeMapEntry.17174_from; char* to + }, ; 14429 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17213_to, ; char* from + ptr @.TypeMapEntry.17212_from; char* to + }, ; 14430 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17218_to, ; char* from + ptr @.TypeMapEntry.17217_from; char* to + }, ; 14431 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17298_to, ; char* from + ptr @.TypeMapEntry.17297_from; char* to + }, ; 14432 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17342_to, ; char* from + ptr @.TypeMapEntry.17341_from; char* to + }, ; 14433 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17347_to, ; char* from + ptr @.TypeMapEntry.17346_from; char* to + }, ; 14434 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1371_to, ; char* from + ptr @.TypeMapEntry.1370_from; char* to + }, ; 14435 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1519_to, ; char* from + ptr @.TypeMapEntry.1518_from; char* to + }, ; 14436 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.1563_to, ; char* from + ptr @.TypeMapEntry.1562_from; char* to + }, ; 14437 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.2107_to, ; char* from + ptr @.TypeMapEntry.2106_from; char* to + }, ; 14438 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3297_to, ; char* from + ptr @.TypeMapEntry.3296_from; char* to + }, ; 14439 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3299_to, ; char* from + ptr @.TypeMapEntry.3298_from; char* to + }, ; 14440 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3301_to, ; char* from + ptr @.TypeMapEntry.3300_from; char* to + }, ; 14441 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3303_to, ; char* from + ptr @.TypeMapEntry.3302_from; char* to + }, ; 14442 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3305_to, ; char* from + ptr @.TypeMapEntry.3304_from; char* to + }, ; 14443 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3307_to, ; char* from + ptr @.TypeMapEntry.3306_from; char* to + }, ; 14444 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3309_to, ; char* from + ptr @.TypeMapEntry.3308_from; char* to + }, ; 14445 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3311_to, ; char* from + ptr @.TypeMapEntry.3310_from; char* to + }, ; 14446 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3313_to, ; char* from + ptr @.TypeMapEntry.3312_from; char* to + }, ; 14447 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3315_to, ; char* from + ptr @.TypeMapEntry.3314_from; char* to + }, ; 14448 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3317_to, ; char* from + ptr @.TypeMapEntry.3316_from; char* to + }, ; 14449 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3319_to, ; char* from + ptr @.TypeMapEntry.3318_from; char* to + }, ; 14450 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3323_to, ; char* from + ptr @.TypeMapEntry.3322_from; char* to + }, ; 14451 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3325_to, ; char* from + ptr @.TypeMapEntry.3324_from; char* to + }, ; 14452 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3333_to, ; char* from + ptr @.TypeMapEntry.3332_from; char* to + }, ; 14453 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3335_to, ; char* from + ptr @.TypeMapEntry.3334_from; char* to + }, ; 14454 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3339_to, ; char* from + ptr @.TypeMapEntry.3338_from; char* to + }, ; 14455 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3341_to, ; char* from + ptr @.TypeMapEntry.3340_from; char* to + }, ; 14456 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3449_to, ; char* from + ptr @.TypeMapEntry.3448_from; char* to + }, ; 14457 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3622_to, ; char* from + ptr @.TypeMapEntry.3621_from; char* to + }, ; 14458 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.3653_to, ; char* from + ptr @.TypeMapEntry.3652_from; char* to + }, ; 14459 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4676_to, ; char* from + ptr @.TypeMapEntry.4675_from; char* to + }, ; 14460 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.4937_to, ; char* from + ptr @.TypeMapEntry.4936_from; char* to + }, ; 14461 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.5888_to, ; char* from + ptr @.TypeMapEntry.5887_from; char* to + }, ; 14462 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6045_to, ; char* from + ptr @.TypeMapEntry.6044_from; char* to + }, ; 14463 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6424_to, ; char* from + ptr @.TypeMapEntry.6423_from; char* to + }, ; 14464 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6438_to, ; char* from + ptr @.TypeMapEntry.6437_from; char* to + }, ; 14465 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6442_to, ; char* from + ptr @.TypeMapEntry.6441_from; char* to + }, ; 14466 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6446_to, ; char* from + ptr @.TypeMapEntry.6445_from; char* to + }, ; 14467 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6448_to, ; char* from + ptr @.TypeMapEntry.6447_from; char* to + }, ; 14468 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6452_to, ; char* from + ptr @.TypeMapEntry.6451_from; char* to + }, ; 14469 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6458_to, ; char* from + ptr @.TypeMapEntry.6457_from; char* to + }, ; 14470 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6462_to, ; char* from + ptr @.TypeMapEntry.6461_from; char* to + }, ; 14471 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6466_to, ; char* from + ptr @.TypeMapEntry.6465_from; char* to + }, ; 14472 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6472_to, ; char* from + ptr @.TypeMapEntry.6471_from; char* to + }, ; 14473 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6478_to, ; char* from + ptr @.TypeMapEntry.6477_from; char* to + }, ; 14474 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6480_to, ; char* from + ptr @.TypeMapEntry.6479_from; char* to + }, ; 14475 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6510_to, ; char* from + ptr @.TypeMapEntry.6509_from; char* to + }, ; 14476 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6514_to, ; char* from + ptr @.TypeMapEntry.6513_from; char* to + }, ; 14477 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6520_to, ; char* from + ptr @.TypeMapEntry.6519_from; char* to + }, ; 14478 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6528_to, ; char* from + ptr @.TypeMapEntry.6527_from; char* to + }, ; 14479 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6540_to, ; char* from + ptr @.TypeMapEntry.6539_from; char* to + }, ; 14480 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6544_to, ; char* from + ptr @.TypeMapEntry.6543_from; char* to + }, ; 14481 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6548_to, ; char* from + ptr @.TypeMapEntry.6547_from; char* to + }, ; 14482 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6550_to, ; char* from + ptr @.TypeMapEntry.6549_from; char* to + }, ; 14483 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6554_to, ; char* from + ptr @.TypeMapEntry.6553_from; char* to + }, ; 14484 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6560_to, ; char* from + ptr @.TypeMapEntry.6559_from; char* to + }, ; 14485 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6562_to, ; char* from + ptr @.TypeMapEntry.6561_from; char* to + }, ; 14486 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6566_to, ; char* from + ptr @.TypeMapEntry.6565_from; char* to + }, ; 14487 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6602_to, ; char* from + ptr @.TypeMapEntry.6601_from; char* to + }, ; 14488 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6604_to, ; char* from + ptr @.TypeMapEntry.6603_from; char* to + }, ; 14489 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6606_to, ; char* from + ptr @.TypeMapEntry.6605_from; char* to + }, ; 14490 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6622_to, ; char* from + ptr @.TypeMapEntry.6621_from; char* to + }, ; 14491 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6626_to, ; char* from + ptr @.TypeMapEntry.6625_from; char* to + }, ; 14492 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6630_to, ; char* from + ptr @.TypeMapEntry.6629_from; char* to + }, ; 14493 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6634_to, ; char* from + ptr @.TypeMapEntry.6633_from; char* to + }, ; 14494 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6638_to, ; char* from + ptr @.TypeMapEntry.6637_from; char* to + }, ; 14495 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6642_to, ; char* from + ptr @.TypeMapEntry.6641_from; char* to + }, ; 14496 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6646_to, ; char* from + ptr @.TypeMapEntry.6645_from; char* to + }, ; 14497 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6654_to, ; char* from + ptr @.TypeMapEntry.6653_from; char* to + }, ; 14498 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6656_to, ; char* from + ptr @.TypeMapEntry.6655_from; char* to + }, ; 14499 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6662_to, ; char* from + ptr @.TypeMapEntry.6661_from; char* to + }, ; 14500 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6682_to, ; char* from + ptr @.TypeMapEntry.6681_from; char* to + }, ; 14501 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6690_to, ; char* from + ptr @.TypeMapEntry.6689_from; char* to + }, ; 14502 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6696_to, ; char* from + ptr @.TypeMapEntry.6695_from; char* to + }, ; 14503 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6702_to, ; char* from + ptr @.TypeMapEntry.6701_from; char* to + }, ; 14504 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6708_to, ; char* from + ptr @.TypeMapEntry.6707_from; char* to + }, ; 14505 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6710_to, ; char* from + ptr @.TypeMapEntry.6709_from; char* to + }, ; 14506 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6747_to, ; char* from + ptr @.TypeMapEntry.6746_from; char* to + }, ; 14507 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6751_to, ; char* from + ptr @.TypeMapEntry.6750_from; char* to + }, ; 14508 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6757_to, ; char* from + ptr @.TypeMapEntry.6756_from; char* to + }, ; 14509 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6763_to, ; char* from + ptr @.TypeMapEntry.6762_from; char* to + }, ; 14510 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6771_to, ; char* from + ptr @.TypeMapEntry.6770_from; char* to + }, ; 14511 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6777_to, ; char* from + ptr @.TypeMapEntry.6776_from; char* to + }, ; 14512 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6781_to, ; char* from + ptr @.TypeMapEntry.6780_from; char* to + }, ; 14513 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6785_to, ; char* from + ptr @.TypeMapEntry.6784_from; char* to + }, ; 14514 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6793_to, ; char* from + ptr @.TypeMapEntry.6792_from; char* to + }, ; 14515 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6801_to, ; char* from + ptr @.TypeMapEntry.6800_from; char* to + }, ; 14516 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6807_to, ; char* from + ptr @.TypeMapEntry.6806_from; char* to + }, ; 14517 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6833_to, ; char* from + ptr @.TypeMapEntry.6832_from; char* to + }, ; 14518 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6841_to, ; char* from + ptr @.TypeMapEntry.6840_from; char* to + }, ; 14519 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6843_to, ; char* from + ptr @.TypeMapEntry.6842_from; char* to + }, ; 14520 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6887_to, ; char* from + ptr @.TypeMapEntry.6886_from; char* to + }, ; 14521 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.6891_to, ; char* from + ptr @.TypeMapEntry.6890_from; char* to + }, ; 14522 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8181_to, ; char* from + ptr @.TypeMapEntry.8180_from; char* to + }, ; 14523 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.8203_to, ; char* from + ptr @.TypeMapEntry.8202_from; char* to + }, ; 14524 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9616_to, ; char* from + ptr @.TypeMapEntry.9615_from; char* to + }, ; 14525 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10113_to, ; char* from + ptr @.TypeMapEntry.10112_from; char* to + }, ; 14526 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9298_to, ; char* from + ptr @.TypeMapEntry.9297_from; char* to + }, ; 14527 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9497_to, ; char* from + ptr @.TypeMapEntry.9496_from; char* to + }, ; 14528 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9503_to, ; char* from + ptr @.TypeMapEntry.9502_from; char* to + }, ; 14529 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.9733_to, ; char* from + ptr @.TypeMapEntry.9732_from; char* to + }, ; 14530 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10345_to, ; char* from + ptr @.TypeMapEntry.10344_from; char* to + }, ; 14531 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.10861_to, ; char* from + ptr @.TypeMapEntry.10860_from; char* to + }, ; 14532 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.16341_to, ; char* from + ptr @.TypeMapEntry.16340_from; char* to + }, ; 14533 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17803_to, ; char* from + ptr @.TypeMapEntry.17802_from; char* to + }, ; 14534 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17925_to, ; char* from + ptr @.TypeMapEntry.17924_from; char* to + }, ; 14535 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18060_to, ; char* from + ptr @.TypeMapEntry.18059_from; char* to + }, ; 14536 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18190_to, ; char* from + ptr @.TypeMapEntry.18189_from; char* to + }, ; 14537 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18312_to, ; char* from + ptr @.TypeMapEntry.18311_from; char* to + }, ; 14538 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18414_to, ; char* from + ptr @.TypeMapEntry.18413_from; char* to + }, ; 14539 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18807_to, ; char* from + ptr @.TypeMapEntry.18806_from; char* to + }, ; 14540 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19172_to, ; char* from + ptr @.TypeMapEntry.19171_from; char* to + }, ; 14541 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19256_to, ; char* from + ptr @.TypeMapEntry.19255_from; char* to + }, ; 14542 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19269_to, ; char* from + ptr @.TypeMapEntry.19268_from; char* to + }, ; 14543 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19093_to, ; char* from + ptr @.TypeMapEntry.19092_from; char* to + }, ; 14544 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19095_to, ; char* from + ptr @.TypeMapEntry.19094_from; char* to + }, ; 14545 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19097_to, ; char* from + ptr @.TypeMapEntry.19096_from; char* to + }, ; 14546 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19099_to, ; char* from + ptr @.TypeMapEntry.19098_from; char* to + }, ; 14547 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19158_to, ; char* from + ptr @.TypeMapEntry.19157_from; char* to + }, ; 14548 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19160_to, ; char* from + ptr @.TypeMapEntry.19159_from; char* to + }, ; 14549 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19162_to, ; char* from + ptr @.TypeMapEntry.19161_from; char* to + }, ; 14550 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19164_to, ; char* from + ptr @.TypeMapEntry.19163_from; char* to + }, ; 14551 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19381_to, ; char* from + ptr @.TypeMapEntry.19380_from; char* to + }, ; 14552 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19385_to, ; char* from + ptr @.TypeMapEntry.19384_from; char* to + }, ; 14553 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19459_to, ; char* from + ptr @.TypeMapEntry.19458_from; char* to + }, ; 14554 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19461_to, ; char* from + ptr @.TypeMapEntry.19460_from; char* to + }, ; 14555 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19463_to, ; char* from + ptr @.TypeMapEntry.19462_from; char* to + }, ; 14556 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19499_to, ; char* from + ptr @.TypeMapEntry.19498_from; char* to + }, ; 14557 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19518_to, ; char* from + ptr @.TypeMapEntry.19517_from; char* to + }, ; 14558 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19580_to, ; char* from + ptr @.TypeMapEntry.19579_from; char* to + }, ; 14559 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19582_to, ; char* from + ptr @.TypeMapEntry.19581_from; char* to + }, ; 14560 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19584_to, ; char* from + ptr @.TypeMapEntry.19583_from; char* to + }, ; 14561 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19586_to, ; char* from + ptr @.TypeMapEntry.19585_from; char* to + }, ; 14562 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19588_to, ; char* from + ptr @.TypeMapEntry.19587_from; char* to + }, ; 14563 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.19768_to, ; char* from + ptr @.TypeMapEntry.19767_from; char* to + }, ; 14564 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20334_to, ; char* from + ptr @.TypeMapEntry.20333_from; char* to + }, ; 14565 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20391_to, ; char* from + ptr @.TypeMapEntry.20390_from; char* to + }, ; 14566 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20393_to, ; char* from + ptr @.TypeMapEntry.20392_from; char* to + }, ; 14567 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20476_to, ; char* from + ptr @.TypeMapEntry.20475_from; char* to + }, ; 14568 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20480_to, ; char* from + ptr @.TypeMapEntry.20479_from; char* to + }, ; 14569 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20044_to, ; char* from + ptr @.TypeMapEntry.20043_from; char* to + }, ; 14570 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20046_to, ; char* from + ptr @.TypeMapEntry.20045_from; char* to + }, ; 14571 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20048_to, ; char* from + ptr @.TypeMapEntry.20047_from; char* to + }, ; 14572 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20179_to, ; char* from + ptr @.TypeMapEntry.20178_from; char* to + }, ; 14573 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20181_to, ; char* from + ptr @.TypeMapEntry.20180_from; char* to + }, ; 14574 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20183_to, ; char* from + ptr @.TypeMapEntry.20182_from; char* to + }, ; 14575 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20185_to, ; char* from + ptr @.TypeMapEntry.20184_from; char* to + }, ; 14576 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20321_to, ; char* from + ptr @.TypeMapEntry.20320_from; char* to + }, ; 14577 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20323_to, ; char* from + ptr @.TypeMapEntry.20322_from; char* to + }, ; 14578 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20500_to, ; char* from + ptr @.TypeMapEntry.20499_from; char* to + }, ; 14579 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20754_to, ; char* from + ptr @.TypeMapEntry.20753_from; char* to + }, ; 14580 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20715_to, ; char* from + ptr @.TypeMapEntry.20714_from; char* to + }, ; 14581 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20717_to, ; char* from + ptr @.TypeMapEntry.20716_from; char* to + }, ; 14582 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20731_to, ; char* from + ptr @.TypeMapEntry.20730_from; char* to + }, ; 14583 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20797_to, ; char* from + ptr @.TypeMapEntry.20796_from; char* to + }, ; 14584 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20799_to, ; char* from + ptr @.TypeMapEntry.20798_from; char* to + }, ; 14585 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20822_to, ; char* from + ptr @.TypeMapEntry.20821_from; char* to + }, ; 14586 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20824_to, ; char* from + ptr @.TypeMapEntry.20823_from; char* to + }, ; 14587 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20826_to, ; char* from + ptr @.TypeMapEntry.20825_from; char* to + }, ; 14588 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20828_to, ; char* from + ptr @.TypeMapEntry.20827_from; char* to + }, ; 14589 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21116_to, ; char* from + ptr @.TypeMapEntry.21115_from; char* to + }, ; 14590 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23453_to, ; char* from + ptr @.TypeMapEntry.23452_from; char* to + }, ; 14591 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23137_to, ; char* from + ptr @.TypeMapEntry.23136_from; char* to + }, ; 14592 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23239_to, ; char* from + ptr @.TypeMapEntry.23238_from; char* to + }, ; 14593 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23247_to, ; char* from + ptr @.TypeMapEntry.23246_from; char* to + }, ; 14594 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23310_to, ; char* from + ptr @.TypeMapEntry.23309_from; char* to + }, ; 14595 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23314_to, ; char* from + ptr @.TypeMapEntry.23313_from; char* to + }, ; 14596 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23322_to, ; char* from + ptr @.TypeMapEntry.23321_from; char* to + }, ; 14597 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23335_to, ; char* from + ptr @.TypeMapEntry.23334_from; char* to + }, ; 14598 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23389_to, ; char* from + ptr @.TypeMapEntry.23388_from; char* to + }, ; 14599 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23418_to, ; char* from + ptr @.TypeMapEntry.23417_from; char* to + }, ; 14600 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23385_to, ; char* from + ptr @.TypeMapEntry.23384_from; char* to + }, ; 14601 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23429_to, ; char* from + ptr @.TypeMapEntry.23428_from; char* to + }, ; 14602 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23873_to, ; char* from + ptr @.TypeMapEntry.23872_from; char* to + }, ; 14603 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23875_to, ; char* from + ptr @.TypeMapEntry.23874_from; char* to + }, ; 14604 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23901_to, ; char* from + ptr @.TypeMapEntry.23900_from; char* to + }, ; 14605 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23905_to, ; char* from + ptr @.TypeMapEntry.23904_from; char* to + }, ; 14606 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23990_to, ; char* from + ptr @.TypeMapEntry.23989_from; char* to + }, ; 14607 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24104_to, ; char* from + ptr @.TypeMapEntry.24103_from; char* to + }, ; 14608 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24106_to, ; char* from + ptr @.TypeMapEntry.24105_from; char* to + }, ; 14609 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24108_to, ; char* from + ptr @.TypeMapEntry.24107_from; char* to + }, ; 14610 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24075_to, ; char* from + ptr @.TypeMapEntry.24074_from; char* to + }, ; 14611 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24100_to, ; char* from + ptr @.TypeMapEntry.24099_from; char* to + }, ; 14612 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24102_to, ; char* from + ptr @.TypeMapEntry.24101_from; char* to + }, ; 14613 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24202_to, ; char* from + ptr @.TypeMapEntry.24201_from; char* to + }, ; 14614 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18208_to, ; char* from + ptr @.TypeMapEntry.18207_from; char* to + }, ; 14615 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.18250_to, ; char* from + ptr @.TypeMapEntry.18249_from; char* to + }, ; 14616 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.20208_to, ; char* from + ptr @.TypeMapEntry.20207_from; char* to + }, ; 14617 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21096_to, ; char* from + ptr @.TypeMapEntry.21095_from; char* to + }, ; 14618 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23134_to, ; char* from + ptr null; char* to + }, ; 14619 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23134_to, ; char* from + ptr null; char* to + }, ; 14620 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23383_to, ; char* from + ptr @.TypeMapEntry.23382_from; char* to + }, ; 14621 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23457_to, ; char* from + ptr null; char* to + }, ; 14622 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23457_to, ; char* from + ptr null; char* to + }, ; 14623 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23460_to, ; char* from + ptr null; char* to + }, ; 14624 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23460_to, ; char* from + ptr null; char* to + }, ; 14625 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23463_to, ; char* from + ptr null; char* to + }, ; 14626 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23463_to, ; char* from + ptr null; char* to + }, ; 14627 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23465_to, ; char* from + ptr null; char* to + }, ; 14628 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23465_to, ; char* from + ptr null; char* to + }, ; 14629 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23468_to, ; char* from + ptr null; char* to + }, ; 14630 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23468_to, ; char* from + ptr null; char* to + }, ; 14631 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23472_to, ; char* from + ptr null; char* to + }, ; 14632 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23472_to, ; char* from + ptr null; char* to + }, ; 14633 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23475_to, ; char* from + ptr null; char* to + }, ; 14634 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23475_to, ; char* from + ptr null; char* to + }, ; 14635 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23478_to, ; char* from + ptr null; char* to + }, ; 14636 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23478_to, ; char* from + ptr null; char* to + }, ; 14637 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23481_to, ; char* from + ptr null; char* to + }, ; 14638 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23481_to, ; char* from + ptr null; char* to + }, ; 14639 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23484_to, ; char* from + ptr null; char* to + }, ; 14640 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23484_to, ; char* from + ptr null; char* to + }, ; 14641 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23486_to, ; char* from + ptr null; char* to + }, ; 14642 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23486_to, ; char* from + ptr null; char* to + }, ; 14643 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23449_to, ; char* from + ptr @.TypeMapEntry.23448_from; char* to + }, ; 14644 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23451_to, ; char* from + ptr @.TypeMapEntry.23450_from; char* to + }, ; 14645 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23490_to, ; char* from + ptr null; char* to + }, ; 14646 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23490_to, ; char* from + ptr null; char* to + }, ; 14647 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23493_to, ; char* from + ptr null; char* to + }, ; 14648 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23493_to, ; char* from + ptr null; char* to + }, ; 14649 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23496_to, ; char* from + ptr null; char* to + }, ; 14650 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23496_to, ; char* from + ptr null; char* to + }, ; 14651 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23498_to, ; char* from + ptr null; char* to + }, ; 14652 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23498_to, ; char* from + ptr null; char* to + }, ; 14653 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23501_to, ; char* from + ptr null; char* to + }, ; 14654 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23501_to, ; char* from + ptr null; char* to + }, ; 14655 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23505_to, ; char* from + ptr null; char* to + }, ; 14656 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23505_to, ; char* from + ptr null; char* to + }, ; 14657 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23507_to, ; char* from + ptr null; char* to + }, ; 14658 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23507_to, ; char* from + ptr null; char* to + }, ; 14659 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23510_to, ; char* from + ptr null; char* to + }, ; 14660 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23510_to, ; char* from + ptr null; char* to + }, ; 14661 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23514_to, ; char* from + ptr null; char* to + }, ; 14662 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23514_to, ; char* from + ptr null; char* to + }, ; 14663 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23455_to, ; char* from + ptr @.TypeMapEntry.23454_from; char* to + }, ; 14664 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23809_to, ; char* from + ptr @.TypeMapEntry.23808_from; char* to + }, ; 14665 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23864_to, ; char* from + ptr @.TypeMapEntry.23863_from; char* to + }, ; 14666 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23517_to, ; char* from + ptr null; char* to + }, ; 14667 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23517_to, ; char* from + ptr null; char* to + }, ; 14668 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23866_to, ; char* from + ptr @.TypeMapEntry.23865_from; char* to + }, ; 14669 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23893_to, ; char* from + ptr @.TypeMapEntry.23892_from; char* to + }, ; 14670 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23960_to, ; char* from + ptr @.TypeMapEntry.23959_from; char* to + }, ; 14671 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23962_to, ; char* from + ptr @.TypeMapEntry.23961_from; char* to + }, ; 14672 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23535_to, ; char* from + ptr null; char* to + }, ; 14673 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23535_to, ; char* from + ptr null; char* to + }, ; 14674 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23538_to, ; char* from + ptr null; char* to + }, ; 14675 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23538_to, ; char* from + ptr null; char* to + }, ; 14676 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23541_to, ; char* from + ptr null; char* to + }, ; 14677 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23541_to, ; char* from + ptr null; char* to + }, ; 14678 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23544_to, ; char* from + ptr null; char* to + }, ; 14679 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23544_to, ; char* from + ptr null; char* to + }, ; 14680 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23964_to, ; char* from + ptr @.TypeMapEntry.23963_from; char* to + }, ; 14681 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23143_to, ; char* from + ptr @.TypeMapEntry.23142_from; char* to + }, ; 14682 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23155_to, ; char* from + ptr null; char* to + }, ; 14683 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23155_to, ; char* from + ptr null; char* to + }, ; 14684 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23157_to, ; char* from + ptr null; char* to + }, ; 14685 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23157_to, ; char* from + ptr null; char* to + }, ; 14686 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23145_to, ; char* from + ptr @.TypeMapEntry.23144_from; char* to + }, ; 14687 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23147_to, ; char* from + ptr @.TypeMapEntry.23146_from; char* to + }, ; 14688 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23149_to, ; char* from + ptr @.TypeMapEntry.23148_from; char* to + }, ; 14689 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23151_to, ; char* from + ptr @.TypeMapEntry.23150_from; char* to + }, ; 14690 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23153_to, ; char* from + ptr @.TypeMapEntry.23152_from; char* to + }, ; 14691 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23161_to, ; char* from + ptr null; char* to + }, ; 14692 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23161_to, ; char* from + ptr null; char* to + }, ; 14693 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23164_to, ; char* from + ptr @.TypeMapEntry.23163_from; char* to + }, ; 14694 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23166_to, ; char* from + ptr @.TypeMapEntry.23165_from; char* to + }, ; 14695 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23168_to, ; char* from + ptr @.TypeMapEntry.23167_from; char* to + }, ; 14696 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23170_to, ; char* from + ptr @.TypeMapEntry.23169_from; char* to + }, ; 14697 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23172_to, ; char* from + ptr @.TypeMapEntry.23171_from; char* to + }, ; 14698 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23139_to, ; char* from + ptr @.TypeMapEntry.23138_from; char* to + }, ; 14699 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23141_to, ; char* from + ptr @.TypeMapEntry.23140_from; char* to + }, ; 14700 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23182_to, ; char* from + ptr null; char* to + }, ; 14701 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23182_to, ; char* from + ptr null; char* to + }, ; 14702 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23174_to, ; char* from + ptr @.TypeMapEntry.23173_from; char* to + }, ; 14703 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23176_to, ; char* from + ptr @.TypeMapEntry.23175_from; char* to + }, ; 14704 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23185_to, ; char* from + ptr null; char* to + }, ; 14705 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23185_to, ; char* from + ptr null; char* to + }, ; 14706 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23188_to, ; char* from + ptr null; char* to + }, ; 14707 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23188_to, ; char* from + ptr null; char* to + }, ; 14708 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23191_to, ; char* from + ptr null; char* to + }, ; 14709 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23191_to, ; char* from + ptr null; char* to + }, ; 14710 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23194_to, ; char* from + ptr null; char* to + }, ; 14711 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23194_to, ; char* from + ptr null; char* to + }, ; 14712 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23180_to, ; char* from + ptr @.TypeMapEntry.23179_from; char* to + }, ; 14713 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23235_to, ; char* from + ptr @.TypeMapEntry.23234_from; char* to + }, ; 14714 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23261_to, ; char* from + ptr @.TypeMapEntry.23260_from; char* to + }, ; 14715 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23197_to, ; char* from + ptr null; char* to + }, ; 14716 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23197_to, ; char* from + ptr null; char* to + }, ; 14717 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23200_to, ; char* from + ptr null; char* to + }, ; 14718 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23200_to, ; char* from + ptr null; char* to + }, ; 14719 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23203_to, ; char* from + ptr null; char* to + }, ; 14720 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23203_to, ; char* from + ptr null; char* to + }, ; 14721 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23206_to, ; char* from + ptr null; char* to + }, ; 14722 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23206_to, ; char* from + ptr null; char* to + }, ; 14723 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23178_to, ; char* from + ptr @.TypeMapEntry.23177_from; char* to + }, ; 14724 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23229_to, ; char* from + ptr null; char* to + }, ; 14725 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23229_to, ; char* from + ptr null; char* to + }, ; 14726 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23209_to, ; char* from + ptr @.TypeMapEntry.23208_from; char* to + }, ; 14727 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23211_to, ; char* from + ptr @.TypeMapEntry.23210_from; char* to + }, ; 14728 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23211_to, ; char* from + ptr @.TypeMapEntry.23210_from; char* to + }, ; 14729 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23214_to, ; char* from + ptr @.TypeMapEntry.23213_from; char* to + }, ; 14730 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23216_to, ; char* from + ptr @.TypeMapEntry.23215_from; char* to + }, ; 14731 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23218_to, ; char* from + ptr @.TypeMapEntry.23217_from; char* to + }, ; 14732 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23220_to, ; char* from + ptr @.TypeMapEntry.23219_from; char* to + }, ; 14733 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23222_to, ; char* from + ptr @.TypeMapEntry.23221_from; char* to + }, ; 14734 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23224_to, ; char* from + ptr @.TypeMapEntry.23223_from; char* to + }, ; 14735 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23224_to, ; char* from + ptr @.TypeMapEntry.23223_from; char* to + }, ; 14736 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23227_to, ; char* from + ptr @.TypeMapEntry.23226_from; char* to + }, ; 14737 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23232_to, ; char* from + ptr null; char* to + }, ; 14738 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23232_to, ; char* from + ptr null; char* to + }, ; 14739 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23237_to, ; char* from + ptr @.TypeMapEntry.23236_from; char* to + }, ; 14740 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23241_to, ; char* from + ptr @.TypeMapEntry.23240_from; char* to + }, ; 14741 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23243_to, ; char* from + ptr @.TypeMapEntry.23242_from; char* to + }, ; 14742 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23245_to, ; char* from + ptr @.TypeMapEntry.23244_from; char* to + }, ; 14743 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23249_to, ; char* from + ptr @.TypeMapEntry.23248_from; char* to + }, ; 14744 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23251_to, ; char* from + ptr @.TypeMapEntry.23250_from; char* to + }, ; 14745 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23253_to, ; char* from + ptr @.TypeMapEntry.23252_from; char* to + }, ; 14746 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23255_to, ; char* from + ptr @.TypeMapEntry.23254_from; char* to + }, ; 14747 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23257_to, ; char* from + ptr @.TypeMapEntry.23256_from; char* to + }, ; 14748 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23259_to, ; char* from + ptr @.TypeMapEntry.23258_from; char* to + }, ; 14749 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23263_to, ; char* from + ptr @.TypeMapEntry.23262_from; char* to + }, ; 14750 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23265_to, ; char* from + ptr @.TypeMapEntry.23264_from; char* to + }, ; 14751 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23267_to, ; char* from + ptr @.TypeMapEntry.23266_from; char* to + }, ; 14752 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23269_to, ; char* from + ptr @.TypeMapEntry.23268_from; char* to + }, ; 14753 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23271_to, ; char* from + ptr @.TypeMapEntry.23270_from; char* to + }, ; 14754 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23281_to, ; char* from + ptr null; char* to + }, ; 14755 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23281_to, ; char* from + ptr null; char* to + }, ; 14756 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23283_to, ; char* from + ptr null; char* to + }, ; 14757 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23283_to, ; char* from + ptr null; char* to + }, ; 14758 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23287_to, ; char* from + ptr null; char* to + }, ; 14759 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23287_to, ; char* from + ptr null; char* to + }, ; 14760 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23290_to, ; char* from + ptr null; char* to + }, ; 14761 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23290_to, ; char* from + ptr null; char* to + }, ; 14762 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23273_to, ; char* from + ptr @.TypeMapEntry.23272_from; char* to + }, ; 14763 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23293_to, ; char* from + ptr null; char* to + }, ; 14764 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23293_to, ; char* from + ptr null; char* to + }, ; 14765 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23275_to, ; char* from + ptr @.TypeMapEntry.23274_from; char* to + }, ; 14766 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23296_to, ; char* from + ptr null; char* to + }, ; 14767 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23296_to, ; char* from + ptr null; char* to + }, ; 14768 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23277_to, ; char* from + ptr @.TypeMapEntry.23276_from; char* to + }, ; 14769 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23299_to, ; char* from + ptr null; char* to + }, ; 14770 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23299_to, ; char* from + ptr null; char* to + }, ; 14771 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23279_to, ; char* from + ptr @.TypeMapEntry.23278_from; char* to + }, ; 14772 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23302_to, ; char* from + ptr null; char* to + }, ; 14773 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23302_to, ; char* from + ptr null; char* to + }, ; 14774 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23308_to, ; char* from + ptr @.TypeMapEntry.23307_from; char* to + }, ; 14775 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23305_to, ; char* from + ptr null; char* to + }, ; 14776 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23305_to, ; char* from + ptr null; char* to + }, ; 14777 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23312_to, ; char* from + ptr @.TypeMapEntry.23311_from; char* to + }, ; 14778 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23316_to, ; char* from + ptr @.TypeMapEntry.23315_from; char* to + }, ; 14779 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23318_to, ; char* from + ptr @.TypeMapEntry.23317_from; char* to + }, ; 14780 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23328_to, ; char* from + ptr null; char* to + }, ; 14781 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23328_to, ; char* from + ptr null; char* to + }, ; 14782 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23320_to, ; char* from + ptr @.TypeMapEntry.23319_from; char* to + }, ; 14783 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23324_to, ; char* from + ptr @.TypeMapEntry.23323_from; char* to + }, ; 14784 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23326_to, ; char* from + ptr @.TypeMapEntry.23325_from; char* to + }, ; 14785 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23331_to, ; char* from + ptr @.TypeMapEntry.23330_from; char* to + }, ; 14786 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23333_to, ; char* from + ptr @.TypeMapEntry.23332_from; char* to + }, ; 14787 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23337_to, ; char* from + ptr null; char* to + }, ; 14788 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23337_to, ; char* from + ptr null; char* to + }, ; 14789 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23340_to, ; char* from + ptr null; char* to + }, ; 14790 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23340_to, ; char* from + ptr null; char* to + }, ; 14791 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23343_to, ; char* from + ptr null; char* to + }, ; 14792 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23343_to, ; char* from + ptr null; char* to + }, ; 14793 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23346_to, ; char* from + ptr @.TypeMapEntry.23345_from; char* to + }, ; 14794 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23348_to, ; char* from + ptr @.TypeMapEntry.23347_from; char* to + }, ; 14795 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23350_to, ; char* from + ptr @.TypeMapEntry.23349_from; char* to + }, ; 14796 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23352_to, ; char* from + ptr null; char* to + }, ; 14797 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23352_to, ; char* from + ptr null; char* to + }, ; 14798 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23355_to, ; char* from + ptr null; char* to + }, ; 14799 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23355_to, ; char* from + ptr null; char* to + }, ; 14800 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23361_to, ; char* from + ptr @.TypeMapEntry.23360_from; char* to + }, ; 14801 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23363_to, ; char* from + ptr @.TypeMapEntry.23362_from; char* to + }, ; 14802 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23365_to, ; char* from + ptr @.TypeMapEntry.23364_from; char* to + }, ; 14803 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23358_to, ; char* from + ptr null; char* to + }, ; 14804 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23358_to, ; char* from + ptr null; char* to + }, ; 14805 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23367_to, ; char* from + ptr @.TypeMapEntry.23366_from; char* to + }, ; 14806 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23367_to, ; char* from + ptr @.TypeMapEntry.23366_from; char* to + }, ; 14807 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23370_to, ; char* from + ptr @.TypeMapEntry.23369_from; char* to + }, ; 14808 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23372_to, ; char* from + ptr @.TypeMapEntry.23371_from; char* to + }, ; 14809 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23377_to, ; char* from + ptr @.TypeMapEntry.23376_from; char* to + }, ; 14810 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23379_to, ; char* from + ptr @.TypeMapEntry.23378_from; char* to + }, ; 14811 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23374_to, ; char* from + ptr null; char* to + }, ; 14812 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23374_to, ; char* from + ptr null; char* to + }, ; 14813 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23381_to, ; char* from + ptr @.TypeMapEntry.23380_from; char* to + }, ; 14814 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23395_to, ; char* from + ptr null; char* to + }, ; 14815 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23395_to, ; char* from + ptr null; char* to + }, ; 14816 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23398_to, ; char* from + ptr null; char* to + }, ; 14817 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23398_to, ; char* from + ptr null; char* to + }, ; 14818 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23400_to, ; char* from + ptr null; char* to + }, ; 14819 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23400_to, ; char* from + ptr null; char* to + }, ; 14820 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23391_to, ; char* from + ptr @.TypeMapEntry.23390_from; char* to + }, ; 14821 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23404_to, ; char* from + ptr null; char* to + }, ; 14822 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23404_to, ; char* from + ptr null; char* to + }, ; 14823 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23406_to, ; char* from + ptr null; char* to + }, ; 14824 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23406_to, ; char* from + ptr null; char* to + }, ; 14825 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23393_to, ; char* from + ptr @.TypeMapEntry.23392_from; char* to + }, ; 14826 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23416_to, ; char* from + ptr @.TypeMapEntry.23415_from; char* to + }, ; 14827 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23410_to, ; char* from + ptr null; char* to + }, ; 14828 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23410_to, ; char* from + ptr null; char* to + }, ; 14829 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23412_to, ; char* from + ptr null; char* to + }, ; 14830 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23412_to, ; char* from + ptr null; char* to + }, ; 14831 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23387_to, ; char* from + ptr @.TypeMapEntry.23386_from; char* to + }, ; 14832 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23420_to, ; char* from + ptr @.TypeMapEntry.23419_from; char* to + }, ; 14833 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23420_to, ; char* from + ptr @.TypeMapEntry.23419_from; char* to + }, ; 14834 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23423_to, ; char* from + ptr @.TypeMapEntry.23422_from; char* to + }, ; 14835 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23425_to, ; char* from + ptr @.TypeMapEntry.23424_from; char* to + }, ; 14836 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23427_to, ; char* from + ptr @.TypeMapEntry.23426_from; char* to + }, ; 14837 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23437_to, ; char* from + ptr null; char* to + }, ; 14838 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23437_to, ; char* from + ptr null; char* to + }, ; 14839 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23440_to, ; char* from + ptr null; char* to + }, ; 14840 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23440_to, ; char* from + ptr null; char* to + }, ; 14841 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23431_to, ; char* from + ptr @.TypeMapEntry.23430_from; char* to + }, ; 14842 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23433_to, ; char* from + ptr @.TypeMapEntry.23432_from; char* to + }, ; 14843 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23435_to, ; char* from + ptr @.TypeMapEntry.23434_from; char* to + }, ; 14844 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23443_to, ; char* from + ptr @.TypeMapEntry.23442_from; char* to + }, ; 14845 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23445_to, ; char* from + ptr @.TypeMapEntry.23444_from; char* to + }, ; 14846 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23447_to, ; char* from + ptr @.TypeMapEntry.23446_from; char* to + }, ; 14847 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23547_to, ; char* from + ptr @.TypeMapEntry.23546_from; char* to + }, ; 14848 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23547_to, ; char* from + ptr @.TypeMapEntry.23546_from; char* to + }, ; 14849 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23550_to, ; char* from + ptr @.TypeMapEntry.23549_from; char* to + }, ; 14850 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23550_to, ; char* from + ptr @.TypeMapEntry.23549_from; char* to + }, ; 14851 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23743_to, ; char* from + ptr @.TypeMapEntry.23742_from; char* to + }, ; 14852 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23745_to, ; char* from + ptr @.TypeMapEntry.23744_from; char* to + }, ; 14853 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23747_to, ; char* from + ptr @.TypeMapEntry.23746_from; char* to + }, ; 14854 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23749_to, ; char* from + ptr @.TypeMapEntry.23748_from; char* to + }, ; 14855 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23751_to, ; char* from + ptr @.TypeMapEntry.23750_from; char* to + }, ; 14856 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23753_to, ; char* from + ptr @.TypeMapEntry.23752_from; char* to + }, ; 14857 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23763_to, ; char* from + ptr @.TypeMapEntry.23762_from; char* to + }, ; 14858 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23803_to, ; char* from + ptr @.TypeMapEntry.23802_from; char* to + }, ; 14859 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23805_to, ; char* from + ptr @.TypeMapEntry.23804_from; char* to + }, ; 14860 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23807_to, ; char* from + ptr @.TypeMapEntry.23806_from; char* to + }, ; 14861 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23553_to, ; char* from + ptr @.TypeMapEntry.23552_from; char* to + }, ; 14862 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23553_to, ; char* from + ptr @.TypeMapEntry.23552_from; char* to + }, ; 14863 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23556_to, ; char* from + ptr @.TypeMapEntry.23555_from; char* to + }, ; 14864 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23558_to, ; char* from + ptr @.TypeMapEntry.23557_from; char* to + }, ; 14865 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23560_to, ; char* from + ptr @.TypeMapEntry.23559_from; char* to + }, ; 14866 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23562_to, ; char* from + ptr @.TypeMapEntry.23561_from; char* to + }, ; 14867 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23564_to, ; char* from + ptr null; char* to + }, ; 14868 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23564_to, ; char* from + ptr null; char* to + }, ; 14869 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23567_to, ; char* from + ptr @.TypeMapEntry.23566_from; char* to + }, ; 14870 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23569_to, ; char* from + ptr @.TypeMapEntry.23568_from; char* to + }, ; 14871 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23571_to, ; char* from + ptr @.TypeMapEntry.23570_from; char* to + }, ; 14872 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23571_to, ; char* from + ptr @.TypeMapEntry.23570_from; char* to + }, ; 14873 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23574_to, ; char* from + ptr @.TypeMapEntry.23573_from; char* to + }, ; 14874 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23576_to, ; char* from + ptr @.TypeMapEntry.23575_from; char* to + }, ; 14875 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23576_to, ; char* from + ptr @.TypeMapEntry.23575_from; char* to + }, ; 14876 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23579_to, ; char* from + ptr @.TypeMapEntry.23578_from; char* to + }, ; 14877 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23579_to, ; char* from + ptr @.TypeMapEntry.23578_from; char* to + }, ; 14878 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23582_to, ; char* from + ptr @.TypeMapEntry.23581_from; char* to + }, ; 14879 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23584_to, ; char* from + ptr @.TypeMapEntry.23583_from; char* to + }, ; 14880 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23586_to, ; char* from + ptr @.TypeMapEntry.23585_from; char* to + }, ; 14881 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23588_to, ; char* from + ptr @.TypeMapEntry.23587_from; char* to + }, ; 14882 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23590_to, ; char* from + ptr @.TypeMapEntry.23589_from; char* to + }, ; 14883 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23592_to, ; char* from + ptr @.TypeMapEntry.23591_from; char* to + }, ; 14884 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23594_to, ; char* from + ptr @.TypeMapEntry.23593_from; char* to + }, ; 14885 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23596_to, ; char* from + ptr @.TypeMapEntry.23595_from; char* to + }, ; 14886 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23598_to, ; char* from + ptr @.TypeMapEntry.23597_from; char* to + }, ; 14887 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23600_to, ; char* from + ptr @.TypeMapEntry.23599_from; char* to + }, ; 14888 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23602_to, ; char* from + ptr @.TypeMapEntry.23601_from; char* to + }, ; 14889 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23604_to, ; char* from + ptr @.TypeMapEntry.23603_from; char* to + }, ; 14890 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23606_to, ; char* from + ptr @.TypeMapEntry.23605_from; char* to + }, ; 14891 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23608_to, ; char* from + ptr @.TypeMapEntry.23607_from; char* to + }, ; 14892 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23610_to, ; char* from + ptr @.TypeMapEntry.23609_from; char* to + }, ; 14893 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23612_to, ; char* from + ptr @.TypeMapEntry.23611_from; char* to + }, ; 14894 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23614_to, ; char* from + ptr @.TypeMapEntry.23613_from; char* to + }, ; 14895 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23616_to, ; char* from + ptr @.TypeMapEntry.23615_from; char* to + }, ; 14896 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23616_to, ; char* from + ptr @.TypeMapEntry.23615_from; char* to + }, ; 14897 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23619_to, ; char* from + ptr @.TypeMapEntry.23618_from; char* to + }, ; 14898 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23619_to, ; char* from + ptr @.TypeMapEntry.23618_from; char* to + }, ; 14899 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23622_to, ; char* from + ptr @.TypeMapEntry.23621_from; char* to + }, ; 14900 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23622_to, ; char* from + ptr @.TypeMapEntry.23621_from; char* to + }, ; 14901 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23625_to, ; char* from + ptr @.TypeMapEntry.23624_from; char* to + }, ; 14902 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23627_to, ; char* from + ptr @.TypeMapEntry.23626_from; char* to + }, ; 14903 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23629_to, ; char* from + ptr @.TypeMapEntry.23628_from; char* to + }, ; 14904 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23631_to, ; char* from + ptr @.TypeMapEntry.23630_from; char* to + }, ; 14905 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23633_to, ; char* from + ptr @.TypeMapEntry.23632_from; char* to + }, ; 14906 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23635_to, ; char* from + ptr @.TypeMapEntry.23634_from; char* to + }, ; 14907 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23637_to, ; char* from + ptr @.TypeMapEntry.23636_from; char* to + }, ; 14908 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23639_to, ; char* from + ptr @.TypeMapEntry.23638_from; char* to + }, ; 14909 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23645_to, ; char* from + ptr @.TypeMapEntry.23644_from; char* to + }, ; 14910 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23641_to, ; char* from + ptr @.TypeMapEntry.23640_from; char* to + }, ; 14911 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23643_to, ; char* from + ptr @.TypeMapEntry.23642_from; char* to + }, ; 14912 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23674_to, ; char* from + ptr @.TypeMapEntry.23673_from; char* to + }, ; 14913 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23647_to, ; char* from + ptr @.TypeMapEntry.23646_from; char* to + }, ; 14914 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23647_to, ; char* from + ptr @.TypeMapEntry.23646_from; char* to + }, ; 14915 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23650_to, ; char* from + ptr @.TypeMapEntry.23649_from; char* to + }, ; 14916 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23652_to, ; char* from + ptr @.TypeMapEntry.23651_from; char* to + }, ; 14917 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23654_to, ; char* from + ptr @.TypeMapEntry.23653_from; char* to + }, ; 14918 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23656_to, ; char* from + ptr @.TypeMapEntry.23655_from; char* to + }, ; 14919 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23658_to, ; char* from + ptr null; char* to + }, ; 14920 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23658_to, ; char* from + ptr null; char* to + }, ; 14921 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23661_to, ; char* from + ptr null; char* to + }, ; 14922 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23661_to, ; char* from + ptr null; char* to + }, ; 14923 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23664_to, ; char* from + ptr @.TypeMapEntry.23663_from; char* to + }, ; 14924 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23666_to, ; char* from + ptr @.TypeMapEntry.23665_from; char* to + }, ; 14925 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23668_to, ; char* from + ptr @.TypeMapEntry.23667_from; char* to + }, ; 14926 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23670_to, ; char* from + ptr @.TypeMapEntry.23669_from; char* to + }, ; 14927 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23672_to, ; char* from + ptr @.TypeMapEntry.23671_from; char* to + }, ; 14928 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23676_to, ; char* from + ptr @.TypeMapEntry.23675_from; char* to + }, ; 14929 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23676_to, ; char* from + ptr @.TypeMapEntry.23675_from; char* to + }, ; 14930 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23679_to, ; char* from + ptr @.TypeMapEntry.23678_from; char* to + }, ; 14931 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23679_to, ; char* from + ptr @.TypeMapEntry.23678_from; char* to + }, ; 14932 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23682_to, ; char* from + ptr @.TypeMapEntry.23681_from; char* to + }, ; 14933 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23684_to, ; char* from + ptr @.TypeMapEntry.23683_from; char* to + }, ; 14934 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23686_to, ; char* from + ptr @.TypeMapEntry.23685_from; char* to + }, ; 14935 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23688_to, ; char* from + ptr @.TypeMapEntry.23687_from; char* to + }, ; 14936 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23690_to, ; char* from + ptr @.TypeMapEntry.23689_from; char* to + }, ; 14937 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23692_to, ; char* from + ptr @.TypeMapEntry.23691_from; char* to + }, ; 14938 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23694_to, ; char* from + ptr @.TypeMapEntry.23693_from; char* to + }, ; 14939 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23696_to, ; char* from + ptr @.TypeMapEntry.23695_from; char* to + }, ; 14940 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23698_to, ; char* from + ptr @.TypeMapEntry.23697_from; char* to + }, ; 14941 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23700_to, ; char* from + ptr @.TypeMapEntry.23699_from; char* to + }, ; 14942 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23702_to, ; char* from + ptr @.TypeMapEntry.23701_from; char* to + }, ; 14943 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23704_to, ; char* from + ptr @.TypeMapEntry.23703_from; char* to + }, ; 14944 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23706_to, ; char* from + ptr @.TypeMapEntry.23705_from; char* to + }, ; 14945 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23706_to, ; char* from + ptr @.TypeMapEntry.23705_from; char* to + }, ; 14946 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23709_to, ; char* from + ptr @.TypeMapEntry.23708_from; char* to + }, ; 14947 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23711_to, ; char* from + ptr @.TypeMapEntry.23710_from; char* to + }, ; 14948 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23713_to, ; char* from + ptr @.TypeMapEntry.23712_from; char* to + }, ; 14949 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23715_to, ; char* from + ptr @.TypeMapEntry.23714_from; char* to + }, ; 14950 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23717_to, ; char* from + ptr @.TypeMapEntry.23716_from; char* to + }, ; 14951 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23719_to, ; char* from + ptr @.TypeMapEntry.23718_from; char* to + }, ; 14952 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23721_to, ; char* from + ptr @.TypeMapEntry.23720_from; char* to + }, ; 14953 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23723_to, ; char* from + ptr @.TypeMapEntry.23722_from; char* to + }, ; 14954 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23725_to, ; char* from + ptr @.TypeMapEntry.23724_from; char* to + }, ; 14955 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23727_to, ; char* from + ptr @.TypeMapEntry.23726_from; char* to + }, ; 14956 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23729_to, ; char* from + ptr @.TypeMapEntry.23728_from; char* to + }, ; 14957 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23731_to, ; char* from + ptr @.TypeMapEntry.23730_from; char* to + }, ; 14958 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23733_to, ; char* from + ptr @.TypeMapEntry.23732_from; char* to + }, ; 14959 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23735_to, ; char* from + ptr @.TypeMapEntry.23734_from; char* to + }, ; 14960 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23737_to, ; char* from + ptr @.TypeMapEntry.23736_from; char* to + }, ; 14961 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23739_to, ; char* from + ptr @.TypeMapEntry.23738_from; char* to + }, ; 14962 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23741_to, ; char* from + ptr @.TypeMapEntry.23740_from; char* to + }, ; 14963 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23755_to, ; char* from + ptr @.TypeMapEntry.23754_from; char* to + }, ; 14964 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23757_to, ; char* from + ptr @.TypeMapEntry.23756_from; char* to + }, ; 14965 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23759_to, ; char* from + ptr @.TypeMapEntry.23758_from; char* to + }, ; 14966 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23761_to, ; char* from + ptr @.TypeMapEntry.23760_from; char* to + }, ; 14967 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23765_to, ; char* from + ptr @.TypeMapEntry.23764_from; char* to + }, ; 14968 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23765_to, ; char* from + ptr @.TypeMapEntry.23764_from; char* to + }, ; 14969 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23768_to, ; char* from + ptr @.TypeMapEntry.23767_from; char* to + }, ; 14970 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23768_to, ; char* from + ptr @.TypeMapEntry.23767_from; char* to + }, ; 14971 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23771_to, ; char* from + ptr @.TypeMapEntry.23770_from; char* to + }, ; 14972 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23771_to, ; char* from + ptr @.TypeMapEntry.23770_from; char* to + }, ; 14973 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23774_to, ; char* from + ptr @.TypeMapEntry.23773_from; char* to + }, ; 14974 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23774_to, ; char* from + ptr @.TypeMapEntry.23773_from; char* to + }, ; 14975 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23777_to, ; char* from + ptr @.TypeMapEntry.23776_from; char* to + }, ; 14976 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23779_to, ; char* from + ptr @.TypeMapEntry.23778_from; char* to + }, ; 14977 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23781_to, ; char* from + ptr @.TypeMapEntry.23780_from; char* to + }, ; 14978 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23783_to, ; char* from + ptr @.TypeMapEntry.23782_from; char* to + }, ; 14979 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23785_to, ; char* from + ptr @.TypeMapEntry.23784_from; char* to + }, ; 14980 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23787_to, ; char* from + ptr @.TypeMapEntry.23786_from; char* to + }, ; 14981 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23789_to, ; char* from + ptr @.TypeMapEntry.23788_from; char* to + }, ; 14982 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23791_to, ; char* from + ptr @.TypeMapEntry.23790_from; char* to + }, ; 14983 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23793_to, ; char* from + ptr @.TypeMapEntry.23792_from; char* to + }, ; 14984 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23795_to, ; char* from + ptr @.TypeMapEntry.23794_from; char* to + }, ; 14985 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23797_to, ; char* from + ptr @.TypeMapEntry.23796_from; char* to + }, ; 14986 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23799_to, ; char* from + ptr @.TypeMapEntry.23798_from; char* to + }, ; 14987 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23801_to, ; char* from + ptr @.TypeMapEntry.23800_from; char* to + }, ; 14988 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23520_to, ; char* from + ptr null; char* to + }, ; 14989 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23520_to, ; char* from + ptr null; char* to + }, ; 14990 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23523_to, ; char* from + ptr null; char* to + }, ; 14991 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23523_to, ; char* from + ptr null; char* to + }, ; 14992 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23526_to, ; char* from + ptr null; char* to + }, ; 14993 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23526_to, ; char* from + ptr null; char* to + }, ; 14994 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23529_to, ; char* from + ptr null; char* to + }, ; 14995 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23529_to, ; char* from + ptr null; char* to + }, ; 14996 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23532_to, ; char* from + ptr null; char* to + }, ; 14997 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23532_to, ; char* from + ptr null; char* to + }, ; 14998 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23811_to, ; char* from + ptr @.TypeMapEntry.23810_from; char* to + }, ; 14999 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23811_to, ; char* from + ptr @.TypeMapEntry.23810_from; char* to + }, ; 15000 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23814_to, ; char* from + ptr @.TypeMapEntry.23813_from; char* to + }, ; 15001 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23816_to, ; char* from + ptr @.TypeMapEntry.23815_from; char* to + }, ; 15002 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23818_to, ; char* from + ptr @.TypeMapEntry.23817_from; char* to + }, ; 15003 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23820_to, ; char* from + ptr @.TypeMapEntry.23819_from; char* to + }, ; 15004 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23822_to, ; char* from + ptr @.TypeMapEntry.23821_from; char* to + }, ; 15005 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23824_to, ; char* from + ptr @.TypeMapEntry.23823_from; char* to + }, ; 15006 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23826_to, ; char* from + ptr @.TypeMapEntry.23825_from; char* to + }, ; 15007 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23828_to, ; char* from + ptr @.TypeMapEntry.23827_from; char* to + }, ; 15008 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23830_to, ; char* from + ptr @.TypeMapEntry.23829_from; char* to + }, ; 15009 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23832_to, ; char* from + ptr @.TypeMapEntry.23831_from; char* to + }, ; 15010 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23834_to, ; char* from + ptr @.TypeMapEntry.23833_from; char* to + }, ; 15011 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23836_to, ; char* from + ptr @.TypeMapEntry.23835_from; char* to + }, ; 15012 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23838_to, ; char* from + ptr @.TypeMapEntry.23837_from; char* to + }, ; 15013 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23840_to, ; char* from + ptr @.TypeMapEntry.23839_from; char* to + }, ; 15014 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23842_to, ; char* from + ptr @.TypeMapEntry.23841_from; char* to + }, ; 15015 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23844_to, ; char* from + ptr @.TypeMapEntry.23843_from; char* to + }, ; 15016 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23846_to, ; char* from + ptr @.TypeMapEntry.23845_from; char* to + }, ; 15017 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23848_to, ; char* from + ptr @.TypeMapEntry.23847_from; char* to + }, ; 15018 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23850_to, ; char* from + ptr null; char* to + }, ; 15019 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23850_to, ; char* from + ptr null; char* to + }, ; 15020 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23853_to, ; char* from + ptr null; char* to + }, ; 15021 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23853_to, ; char* from + ptr null; char* to + }, ; 15022 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23856_to, ; char* from + ptr null; char* to + }, ; 15023 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23856_to, ; char* from + ptr null; char* to + }, ; 15024 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23859_to, ; char* from + ptr null; char* to + }, ; 15025 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23859_to, ; char* from + ptr null; char* to + }, ; 15026 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23862_to, ; char* from + ptr @.TypeMapEntry.23861_from; char* to + }, ; 15027 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23868_to, ; char* from + ptr @.TypeMapEntry.23867_from; char* to + }, ; 15028 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23868_to, ; char* from + ptr @.TypeMapEntry.23867_from; char* to + }, ; 15029 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23871_to, ; char* from + ptr @.TypeMapEntry.23870_from; char* to + }, ; 15030 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23877_to, ; char* from + ptr @.TypeMapEntry.23876_from; char* to + }, ; 15031 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23879_to, ; char* from + ptr @.TypeMapEntry.23878_from; char* to + }, ; 15032 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23879_to, ; char* from + ptr @.TypeMapEntry.23878_from; char* to + }, ; 15033 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23882_to, ; char* from + ptr @.TypeMapEntry.23881_from; char* to + }, ; 15034 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23884_to, ; char* from + ptr @.TypeMapEntry.23883_from; char* to + }, ; 15035 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23890_to, ; char* from + ptr null; char* to + }, ; 15036 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23890_to, ; char* from + ptr null; char* to + }, ; 15037 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23886_to, ; char* from + ptr @.TypeMapEntry.23885_from; char* to + }, ; 15038 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23888_to, ; char* from + ptr @.TypeMapEntry.23887_from; char* to + }, ; 15039 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23895_to, ; char* from + ptr @.TypeMapEntry.23894_from; char* to + }, ; 15040 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23897_to, ; char* from + ptr @.TypeMapEntry.23896_from; char* to + }, ; 15041 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23899_to, ; char* from + ptr @.TypeMapEntry.23898_from; char* to + }, ; 15042 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23903_to, ; char* from + ptr @.TypeMapEntry.23902_from; char* to + }, ; 15043 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23915_to, ; char* from + ptr null; char* to + }, ; 15044 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23915_to, ; char* from + ptr null; char* to + }, ; 15045 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23907_to, ; char* from + ptr @.TypeMapEntry.23906_from; char* to + }, ; 15046 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23918_to, ; char* from + ptr null; char* to + }, ; 15047 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23918_to, ; char* from + ptr null; char* to + }, ; 15048 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23921_to, ; char* from + ptr null; char* to + }, ; 15049 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23921_to, ; char* from + ptr null; char* to + }, ; 15050 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23909_to, ; char* from + ptr @.TypeMapEntry.23908_from; char* to + }, ; 15051 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23924_to, ; char* from + ptr null; char* to + }, ; 15052 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23924_to, ; char* from + ptr null; char* to + }, ; 15053 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23911_to, ; char* from + ptr @.TypeMapEntry.23910_from; char* to + }, ; 15054 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23927_to, ; char* from + ptr null; char* to + }, ; 15055 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23927_to, ; char* from + ptr null; char* to + }, ; 15056 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23930_to, ; char* from + ptr null; char* to + }, ; 15057 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23930_to, ; char* from + ptr null; char* to + }, ; 15058 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23933_to, ; char* from + ptr null; char* to + }, ; 15059 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23933_to, ; char* from + ptr null; char* to + }, ; 15060 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23913_to, ; char* from + ptr @.TypeMapEntry.23912_from; char* to + }, ; 15061 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23936_to, ; char* from + ptr @.TypeMapEntry.23935_from; char* to + }, ; 15062 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23938_to, ; char* from + ptr @.TypeMapEntry.23937_from; char* to + }, ; 15063 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23940_to, ; char* from + ptr @.TypeMapEntry.23939_from; char* to + }, ; 15064 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23942_to, ; char* from + ptr @.TypeMapEntry.23941_from; char* to + }, ; 15065 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23944_to, ; char* from + ptr @.TypeMapEntry.23943_from; char* to + }, ; 15066 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23946_to, ; char* from + ptr @.TypeMapEntry.23945_from; char* to + }, ; 15067 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23948_to, ; char* from + ptr @.TypeMapEntry.23947_from; char* to + }, ; 15068 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23950_to, ; char* from + ptr @.TypeMapEntry.23949_from; char* to + }, ; 15069 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23952_to, ; char* from + ptr @.TypeMapEntry.23951_from; char* to + }, ; 15070 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23954_to, ; char* from + ptr @.TypeMapEntry.23953_from; char* to + }, ; 15071 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23956_to, ; char* from + ptr @.TypeMapEntry.23955_from; char* to + }, ; 15072 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23958_to, ; char* from + ptr @.TypeMapEntry.23957_from; char* to + }, ; 15073 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23966_to, ; char* from + ptr @.TypeMapEntry.23965_from; char* to + }, ; 15074 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23968_to, ; char* from + ptr @.TypeMapEntry.23967_from; char* to + }, ; 15075 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23970_to, ; char* from + ptr @.TypeMapEntry.23969_from; char* to + }, ; 15076 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23972_to, ; char* from + ptr @.TypeMapEntry.23971_from; char* to + }, ; 15077 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23974_to, ; char* from + ptr @.TypeMapEntry.23973_from; char* to + }, ; 15078 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23976_to, ; char* from + ptr @.TypeMapEntry.23975_from; char* to + }, ; 15079 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23978_to, ; char* from + ptr @.TypeMapEntry.23977_from; char* to + }, ; 15080 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17584_to, ; char* from + ptr @.TypeMapEntry.17583_from; char* to + }, ; 15081 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17584_to, ; char* from + ptr @.TypeMapEntry.17583_from; char* to + }, ; 15082 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17584_to, ; char* from + ptr @.TypeMapEntry.17583_from; char* to + }, ; 15083 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17584_to, ; char* from + ptr @.TypeMapEntry.17583_from; char* to + }, ; 15084 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17589_to, ; char* from + ptr null; char* to + }, ; 15085 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17589_to, ; char* from + ptr null; char* to + }, ; 15086 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17661_to, ; char* from + ptr @.TypeMapEntry.17660_from; char* to + }, ; 15087 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17610_to, ; char* from + ptr null; char* to + }, ; 15088 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17610_to, ; char* from + ptr null; char* to + }, ; 15089 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17613_to, ; char* from + ptr null; char* to + }, ; 15090 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17613_to, ; char* from + ptr null; char* to + }, ; 15091 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17616_to, ; char* from + ptr null; char* to + }, ; 15092 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17616_to, ; char* from + ptr null; char* to + }, ; 15093 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17619_to, ; char* from + ptr null; char* to + }, ; 15094 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17619_to, ; char* from + ptr null; char* to + }, ; 15095 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17622_to, ; char* from + ptr null; char* to + }, ; 15096 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17622_to, ; char* from + ptr null; char* to + }, ; 15097 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17625_to, ; char* from + ptr null; char* to + }, ; 15098 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17625_to, ; char* from + ptr null; char* to + }, ; 15099 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17628_to, ; char* from + ptr null; char* to + }, ; 15100 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17628_to, ; char* from + ptr null; char* to + }, ; 15101 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17631_to, ; char* from + ptr null; char* to + }, ; 15102 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17631_to, ; char* from + ptr null; char* to + }, ; 15103 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17634_to, ; char* from + ptr null; char* to + }, ; 15104 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17634_to, ; char* from + ptr null; char* to + }, ; 15105 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17637_to, ; char* from + ptr null; char* to + }, ; 15106 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17637_to, ; char* from + ptr null; char* to + }, ; 15107 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17640_to, ; char* from + ptr null; char* to + }, ; 15108 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17640_to, ; char* from + ptr null; char* to + }, ; 15109 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17643_to, ; char* from + ptr null; char* to + }, ; 15110 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17643_to, ; char* from + ptr null; char* to + }, ; 15111 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17646_to, ; char* from + ptr null; char* to + }, ; 15112 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17646_to, ; char* from + ptr null; char* to + }, ; 15113 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17649_to, ; char* from + ptr null; char* to + }, ; 15114 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17649_to, ; char* from + ptr null; char* to + }, ; 15115 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17652_to, ; char* from + ptr null; char* to + }, ; 15116 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17652_to, ; char* from + ptr null; char* to + }, ; 15117 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17655_to, ; char* from + ptr null; char* to + }, ; 15118 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17655_to, ; char* from + ptr null; char* to + }, ; 15119 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17658_to, ; char* from + ptr null; char* to + }, ; 15120 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17658_to, ; char* from + ptr null; char* to + }, ; 15121 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17592_to, ; char* from + ptr null; char* to + }, ; 15122 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17592_to, ; char* from + ptr null; char* to + }, ; 15123 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17595_to, ; char* from + ptr null; char* to + }, ; 15124 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17595_to, ; char* from + ptr null; char* to + }, ; 15125 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17598_to, ; char* from + ptr null; char* to + }, ; 15126 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17598_to, ; char* from + ptr null; char* to + }, ; 15127 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17601_to, ; char* from + ptr null; char* to + }, ; 15128 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17601_to, ; char* from + ptr null; char* to + }, ; 15129 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17604_to, ; char* from + ptr null; char* to + }, ; 15130 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17604_to, ; char* from + ptr null; char* to + }, ; 15131 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17607_to, ; char* from + ptr null; char* to + }, ; 15132 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.17607_to, ; char* from + ptr null; char* to + }, ; 15133 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21216_to, ; char* from + ptr @.TypeMapEntry.21215_from; char* to + }, ; 15134 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21195_to, ; char* from + ptr null; char* to + }, ; 15135 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21195_to, ; char* from + ptr null; char* to + }, ; 15136 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21198_to, ; char* from + ptr null; char* to + }, ; 15137 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21198_to, ; char* from + ptr null; char* to + }, ; 15138 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21201_to, ; char* from + ptr null; char* to + }, ; 15139 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21201_to, ; char* from + ptr null; char* to + }, ; 15140 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21204_to, ; char* from + ptr null; char* to + }, ; 15141 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21204_to, ; char* from + ptr null; char* to + }, ; 15142 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21207_to, ; char* from + ptr null; char* to + }, ; 15143 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21207_to, ; char* from + ptr null; char* to + }, ; 15144 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21210_to, ; char* from + ptr null; char* to + }, ; 15145 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21210_to, ; char* from + ptr null; char* to + }, ; 15146 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21213_to, ; char* from + ptr null; char* to + }, ; 15147 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21213_to, ; char* from + ptr null; char* to + }, ; 15148 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21224_to, ; char* from + ptr @.TypeMapEntry.21223_from; char* to + }, ; 15149 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21218_to, ; char* from + ptr null; char* to + }, ; 15150 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21218_to, ; char* from + ptr null; char* to + }, ; 15151 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21221_to, ; char* from + ptr null; char* to + }, ; 15152 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21221_to, ; char* from + ptr null; char* to + }, ; 15153 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21231_to, ; char* from + ptr null; char* to + }, ; 15154 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21231_to, ; char* from + ptr null; char* to + }, ; 15155 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21233_to, ; char* from + ptr null; char* to + }, ; 15156 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21233_to, ; char* from + ptr null; char* to + }, ; 15157 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21237_to, ; char* from + ptr null; char* to + }, ; 15158 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21237_to, ; char* from + ptr null; char* to + }, ; 15159 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21240_to, ; char* from + ptr null; char* to + }, ; 15160 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21240_to, ; char* from + ptr null; char* to + }, ; 15161 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21229_to, ; char* from + ptr @.TypeMapEntry.21228_from; char* to + }, ; 15162 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21226_to, ; char* from + ptr null; char* to + }, ; 15163 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21226_to, ; char* from + ptr null; char* to + }, ; 15164 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21243_to, ; char* from + ptr null; char* to + }, ; 15165 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21243_to, ; char* from + ptr null; char* to + }, ; 15166 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21246_to, ; char* from + ptr null; char* to + }, ; 15167 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21246_to, ; char* from + ptr null; char* to + }, ; 15168 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21288_to, ; char* from + ptr @.TypeMapEntry.21287_from; char* to + }, ; 15169 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21249_to, ; char* from + ptr null; char* to + }, ; 15170 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21249_to, ; char* from + ptr null; char* to + }, ; 15171 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21251_to, ; char* from + ptr null; char* to + }, ; 15172 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21251_to, ; char* from + ptr null; char* to + }, ; 15173 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21255_to, ; char* from + ptr null; char* to + }, ; 15174 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21255_to, ; char* from + ptr null; char* to + }, ; 15175 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21258_to, ; char* from + ptr null; char* to + }, ; 15176 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21258_to, ; char* from + ptr null; char* to + }, ; 15177 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21260_to, ; char* from + ptr null; char* to + }, ; 15178 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21260_to, ; char* from + ptr null; char* to + }, ; 15179 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21264_to, ; char* from + ptr null; char* to + }, ; 15180 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21264_to, ; char* from + ptr null; char* to + }, ; 15181 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21267_to, ; char* from + ptr null; char* to + }, ; 15182 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21267_to, ; char* from + ptr null; char* to + }, ; 15183 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21270_to, ; char* from + ptr null; char* to + }, ; 15184 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21270_to, ; char* from + ptr null; char* to + }, ; 15185 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21273_to, ; char* from + ptr null; char* to + }, ; 15186 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21273_to, ; char* from + ptr null; char* to + }, ; 15187 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21276_to, ; char* from + ptr null; char* to + }, ; 15188 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21276_to, ; char* from + ptr null; char* to + }, ; 15189 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21279_to, ; char* from + ptr null; char* to + }, ; 15190 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21279_to, ; char* from + ptr null; char* to + }, ; 15191 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21282_to, ; char* from + ptr null; char* to + }, ; 15192 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21282_to, ; char* from + ptr null; char* to + }, ; 15193 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21285_to, ; char* from + ptr null; char* to + }, ; 15194 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.21285_to, ; char* from + ptr null; char* to + }, ; 15195 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23980_to, ; char* from + ptr @.TypeMapEntry.23979_from; char* to + }, ; 15196 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23982_to, ; char* from + ptr @.TypeMapEntry.23981_from; char* to + }, ; 15197 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23984_to, ; char* from + ptr @.TypeMapEntry.23983_from; char* to + }, ; 15198 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23986_to, ; char* from + ptr @.TypeMapEntry.23985_from; char* to + }, ; 15199 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23988_to, ; char* from + ptr @.TypeMapEntry.23987_from; char* to + }, ; 15200 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26883_to, ; char* from + ptr null; char* to + }, ; 15201 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26883_to, ; char* from + ptr null; char* to + }, ; 15202 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26886_to, ; char* from + ptr null; char* to + }, ; 15203 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26886_to, ; char* from + ptr null; char* to + }, ; 15204 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26889_to, ; char* from + ptr null; char* to + }, ; 15205 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26889_to, ; char* from + ptr null; char* to + }, ; 15206 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26892_to, ; char* from + ptr null; char* to + }, ; 15207 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.26892_to, ; char* from + ptr null; char* to + }, ; 15208 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23994_to, ; char* from + ptr null; char* to + }, ; 15209 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23994_to, ; char* from + ptr null; char* to + }, ; 15210 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23997_to, ; char* from + ptr null; char* to + }, ; 15211 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23997_to, ; char* from + ptr null; char* to + }, ; 15212 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24000_to, ; char* from + ptr null; char* to + }, ; 15213 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24000_to, ; char* from + ptr null; char* to + }, ; 15214 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24003_to, ; char* from + ptr null; char* to + }, ; 15215 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24003_to, ; char* from + ptr null; char* to + }, ; 15216 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24006_to, ; char* from + ptr null; char* to + }, ; 15217 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24006_to, ; char* from + ptr null; char* to + }, ; 15218 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24009_to, ; char* from + ptr null; char* to + }, ; 15219 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24009_to, ; char* from + ptr null; char* to + }, ; 15220 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24011_to, ; char* from + ptr null; char* to + }, ; 15221 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24011_to, ; char* from + ptr null; char* to + }, ; 15222 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.23992_to, ; char* from + ptr @.TypeMapEntry.23991_from; char* to + }, ; 15223 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24015_to, ; char* from + ptr null; char* to + }, ; 15224 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24015_to, ; char* from + ptr null; char* to + }, ; 15225 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24018_to, ; char* from + ptr null; char* to + }, ; 15226 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24018_to, ; char* from + ptr null; char* to + }, ; 15227 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24021_to, ; char* from + ptr null; char* to + }, ; 15228 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24021_to, ; char* from + ptr null; char* to + }, ; 15229 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24024_to, ; char* from + ptr null; char* to + }, ; 15230 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24024_to, ; char* from + ptr null; char* to + }, ; 15231 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24027_to, ; char* from + ptr null; char* to + }, ; 15232 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24027_to, ; char* from + ptr null; char* to + }, ; 15233 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24030_to, ; char* from + ptr null; char* to + }, ; 15234 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24030_to, ; char* from + ptr null; char* to + }, ; 15235 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24032_to, ; char* from + ptr null; char* to + }, ; 15236 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24032_to, ; char* from + ptr null; char* to + }, ; 15237 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24036_to, ; char* from + ptr null; char* to + }, ; 15238 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24036_to, ; char* from + ptr null; char* to + }, ; 15239 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24039_to, ; char* from + ptr null; char* to + }, ; 15240 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24039_to, ; char* from + ptr null; char* to + }, ; 15241 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24042_to, ; char* from + ptr null; char* to + }, ; 15242 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24042_to, ; char* from + ptr null; char* to + }, ; 15243 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24045_to, ; char* from + ptr null; char* to + }, ; 15244 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24045_to, ; char* from + ptr null; char* to + }, ; 15245 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24048_to, ; char* from + ptr null; char* to + }, ; 15246 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24048_to, ; char* from + ptr null; char* to + }, ; 15247 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24051_to, ; char* from + ptr null; char* to + }, ; 15248 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24051_to, ; char* from + ptr null; char* to + }, ; 15249 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24054_to, ; char* from + ptr null; char* to + }, ; 15250 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24054_to, ; char* from + ptr null; char* to + }, ; 15251 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24057_to, ; char* from + ptr null; char* to + }, ; 15252 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24057_to, ; char* from + ptr null; char* to + }, ; 15253 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24060_to, ; char* from + ptr null; char* to + }, ; 15254 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24060_to, ; char* from + ptr null; char* to + }, ; 15255 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24063_to, ; char* from + ptr null; char* to + }, ; 15256 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24063_to, ; char* from + ptr null; char* to + }, ; 15257 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24066_to, ; char* from + ptr null; char* to + }, ; 15258 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24066_to, ; char* from + ptr null; char* to + }, ; 15259 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24069_to, ; char* from + ptr null; char* to + }, ; 15260 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24069_to, ; char* from + ptr null; char* to + }, ; 15261 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24072_to, ; char* from + ptr null; char* to + }, ; 15262 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24072_to, ; char* from + ptr null; char* to + }, ; 15263 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24077_to, ; char* from + ptr null; char* to + }, ; 15264 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24077_to, ; char* from + ptr null; char* to + }, ; 15265 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24098_to, ; char* from + ptr @.TypeMapEntry.24097_from; char* to + }, ; 15266 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24080_to, ; char* from + ptr null; char* to + }, ; 15267 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24080_to, ; char* from + ptr null; char* to + }, ; 15268 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24083_to, ; char* from + ptr null; char* to + }, ; 15269 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24083_to, ; char* from + ptr null; char* to + }, ; 15270 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24086_to, ; char* from + ptr null; char* to + }, ; 15271 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24086_to, ; char* from + ptr null; char* to + }, ; 15272 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24088_to, ; char* from + ptr null; char* to + }, ; 15273 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24088_to, ; char* from + ptr null; char* to + }, ; 15274 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24092_to, ; char* from + ptr null; char* to + }, ; 15275 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24092_to, ; char* from + ptr null; char* to + }, ; 15276 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24095_to, ; char* from + ptr null; char* to + }, ; 15277 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24095_to, ; char* from + ptr null; char* to + }, ; 15278 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24153_to, ; char* from + ptr null; char* to + }, ; 15279 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24153_to, ; char* from + ptr null; char* to + }, ; 15280 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24156_to, ; char* from + ptr null; char* to + }, ; 15281 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24156_to, ; char* from + ptr null; char* to + }, ; 15282 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24159_to, ; char* from + ptr null; char* to + }, ; 15283 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24159_to, ; char* from + ptr null; char* to + }, ; 15284 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24162_to, ; char* from + ptr null; char* to + }, ; 15285 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24162_to, ; char* from + ptr null; char* to + }, ; 15286 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24165_to, ; char* from + ptr null; char* to + }, ; 15287 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24165_to, ; char* from + ptr null; char* to + }, ; 15288 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24168_to, ; char* from + ptr null; char* to + }, ; 15289 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24168_to, ; char* from + ptr null; char* to + }, ; 15290 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24171_to, ; char* from + ptr null; char* to + }, ; 15291 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24171_to, ; char* from + ptr null; char* to + }, ; 15292 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24131_to, ; char* from + ptr @.TypeMapEntry.24130_from; char* to + }, ; 15293 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24186_to, ; char* from + ptr @.TypeMapEntry.24185_from; char* to + }, ; 15294 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24174_to, ; char* from + ptr null; char* to + }, ; 15295 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24174_to, ; char* from + ptr null; char* to + }, ; 15296 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24177_to, ; char* from + ptr null; char* to + }, ; 15297 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24177_to, ; char* from + ptr null; char* to + }, ; 15298 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24188_to, ; char* from + ptr @.TypeMapEntry.24187_from; char* to + }, ; 15299 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24190_to, ; char* from + ptr @.TypeMapEntry.24189_from; char* to + }, ; 15300 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24192_to, ; char* from + ptr @.TypeMapEntry.24191_from; char* to + }, ; 15301 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24194_to, ; char* from + ptr @.TypeMapEntry.24193_from; char* to + }, ; 15302 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24180_to, ; char* from + ptr null; char* to + }, ; 15303 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24180_to, ; char* from + ptr null; char* to + }, ; 15304 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24183_to, ; char* from + ptr null; char* to + }, ; 15305 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24183_to, ; char* from + ptr null; char* to + }, ; 15306 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24114_to, ; char* from + ptr null; char* to + }, ; 15307 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24114_to, ; char* from + ptr null; char* to + }, ; 15308 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24110_to, ; char* from + ptr @.TypeMapEntry.24109_from; char* to + }, ; 15309 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24117_to, ; char* from + ptr null; char* to + }, ; 15310 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24117_to, ; char* from + ptr null; char* to + }, ; 15311 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24112_to, ; char* from + ptr @.TypeMapEntry.24111_from; char* to + }, ; 15312 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24120_to, ; char* from + ptr null; char* to + }, ; 15313 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24120_to, ; char* from + ptr null; char* to + }, ; 15314 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24123_to, ; char* from + ptr null; char* to + }, ; 15315 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24123_to, ; char* from + ptr null; char* to + }, ; 15316 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24126_to, ; char* from + ptr null; char* to + }, ; 15317 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24126_to, ; char* from + ptr null; char* to + }, ; 15318 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24129_to, ; char* from + ptr @.TypeMapEntry.24128_from; char* to + }, ; 15319 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24133_to, ; char* from + ptr @.TypeMapEntry.24132_from; char* to + }, ; 15320 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24135_to, ; char* from + ptr @.TypeMapEntry.24134_from; char* to + }, ; 15321 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24137_to, ; char* from + ptr @.TypeMapEntry.24136_from; char* to + }, ; 15322 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24139_to, ; char* from + ptr @.TypeMapEntry.24138_from; char* to + }, ; 15323 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24141_to, ; char* from + ptr @.TypeMapEntry.24140_from; char* to + }, ; 15324 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24143_to, ; char* from + ptr @.TypeMapEntry.24142_from; char* to + }, ; 15325 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24145_to, ; char* from + ptr @.TypeMapEntry.24144_from; char* to + }, ; 15326 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24147_to, ; char* from + ptr @.TypeMapEntry.24146_from; char* to + }, ; 15327 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24149_to, ; char* from + ptr @.TypeMapEntry.24148_from; char* to + }, ; 15328 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24151_to, ; char* from + ptr @.TypeMapEntry.24150_from; char* to + }, ; 15329 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24196_to, ; char* from + ptr null; char* to + }, ; 15330 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24196_to, ; char* from + ptr null; char* to + }, ; 15331 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24204_to, ; char* from + ptr @.TypeMapEntry.24203_from; char* to + }, ; 15332 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24206_to, ; char* from + ptr @.TypeMapEntry.24205_from; char* to + }, ; 15333 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24199_to, ; char* from + ptr null; char* to + }, ; 15334 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24199_to, ; char* from + ptr null; char* to + }, ; 15335 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24208_to, ; char* from + ptr @.TypeMapEntry.24207_from; char* to + }, ; 15336 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24210_to, ; char* from + ptr @.TypeMapEntry.24209_from; char* to + }, ; 15337 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24214_to, ; char* from + ptr @.TypeMapEntry.24213_from; char* to + }, ; 15338 + %struct.TypeMapEntry { + ptr @.TypeMapEntry.24212_to, ; char* from + ptr @.TypeMapEntry.24211_from; char* to + } ; 15339 +], align 8 + +; Strings + +;TypeMapEntry +@.TypeMapEntry.0_from = private unnamed_addr constant [102 x i8] c"Android.AccessibilityServices.AccessibilityButtonController+AccessibilityButtonCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1_to = private unnamed_addr constant [87 x i8] c"android/accessibilityservice/AccessibilityButtonController$AccessibilityButtonCallback\00", align 1 +@.TypeMapEntry.2_from = private unnamed_addr constant [109 x i8] c"Android.AccessibilityServices.AccessibilityButtonController+AccessibilityButtonCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3_from = private unnamed_addr constant [74 x i8] c"Android.AccessibilityServices.AccessibilityButtonController, Mono.Android\00", align 1 +@.TypeMapEntry.4_to = private unnamed_addr constant [59 x i8] c"android/accessibilityservice/AccessibilityButtonController\00", align 1 +@.TypeMapEntry.5_from = private unnamed_addr constant [70 x i8] c"Android.AccessibilityServices.AccessibilityGestureEvent, Mono.Android\00", align 1 +@.TypeMapEntry.6_to = private unnamed_addr constant [55 x i8] c"android/accessibilityservice/AccessibilityGestureEvent\00", align 1 +@.TypeMapEntry.7_from = private unnamed_addr constant [87 x i8] c"Android.AccessibilityServices.AccessibilityService+GestureResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8_to = private unnamed_addr constant [72 x i8] c"android/accessibilityservice/AccessibilityService$GestureResultCallback\00", align 1 +@.TypeMapEntry.9_from = private unnamed_addr constant [94 x i8] c"Android.AccessibilityServices.AccessibilityService+GestureResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10_from = private unnamed_addr constant [89 x i8] c"Android.AccessibilityServices.AccessibilityService+ITakeScreenshotCallback, Mono.Android\00", align 1 +@.TypeMapEntry.11_to = private unnamed_addr constant [73 x i8] c"android/accessibilityservice/AccessibilityService$TakeScreenshotCallback\00", align 1 +@.TypeMapEntry.12_from = private unnamed_addr constant [96 x i8] c"Android.AccessibilityServices.AccessibilityService+ITakeScreenshotCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.13_from = private unnamed_addr constant [121 x i8] c"Android.AccessibilityServices.AccessibilityService+MagnificationController+IOnMagnificationChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.14_to = private unnamed_addr constant [105 x i8] c"android/accessibilityservice/AccessibilityService$MagnificationController$OnMagnificationChangedListener\00", align 1 +@.TypeMapEntry.15_from = private unnamed_addr constant [132 x i8] c"Android.AccessibilityServices.AccessibilityService+MagnificationController+IOnMagnificationChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.16_to = private unnamed_addr constant [121 x i8] c"mono/android/accessibilityservice/AccessibilityService_MagnificationController_OnMagnificationChangedListenerImplementor\00", align 1 +@.TypeMapEntry.17_from = private unnamed_addr constant [128 x i8] c"Android.AccessibilityServices.AccessibilityService+MagnificationController+IOnMagnificationChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18_from = private unnamed_addr constant [89 x i8] c"Android.AccessibilityServices.AccessibilityService+MagnificationController, Mono.Android\00", align 1 +@.TypeMapEntry.19_to = private unnamed_addr constant [74 x i8] c"android/accessibilityservice/AccessibilityService$MagnificationController\00", align 1 +@.TypeMapEntry.20_from = private unnamed_addr constant [82 x i8] c"Android.AccessibilityServices.AccessibilityService+ScreenshotResult, Mono.Android\00", align 1 +@.TypeMapEntry.21_to = private unnamed_addr constant [67 x i8] c"android/accessibilityservice/AccessibilityService$ScreenshotResult\00", align 1 +@.TypeMapEntry.22_from = private unnamed_addr constant [115 x i8] c"Android.AccessibilityServices.AccessibilityService+SoftKeyboardController+IOnShowModeChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.23_to = private unnamed_addr constant [99 x i8] c"android/accessibilityservice/AccessibilityService$SoftKeyboardController$OnShowModeChangedListener\00", align 1 +@.TypeMapEntry.24_from = private unnamed_addr constant [126 x i8] c"Android.AccessibilityServices.AccessibilityService+SoftKeyboardController+IOnShowModeChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.25_to = private unnamed_addr constant [115 x i8] c"mono/android/accessibilityservice/AccessibilityService_SoftKeyboardController_OnShowModeChangedListenerImplementor\00", align 1 +@.TypeMapEntry.26_from = private unnamed_addr constant [122 x i8] c"Android.AccessibilityServices.AccessibilityService+SoftKeyboardController+IOnShowModeChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.27_from = private unnamed_addr constant [88 x i8] c"Android.AccessibilityServices.AccessibilityService+SoftKeyboardController, Mono.Android\00", align 1 +@.TypeMapEntry.28_to = private unnamed_addr constant [73 x i8] c"android/accessibilityservice/AccessibilityService$SoftKeyboardController\00", align 1 +@.TypeMapEntry.29_from = private unnamed_addr constant [65 x i8] c"Android.AccessibilityServices.AccessibilityService, Mono.Android\00", align 1 +@.TypeMapEntry.30_to = private unnamed_addr constant [50 x i8] c"android/accessibilityservice/AccessibilityService\00", align 1 +@.TypeMapEntry.31_from = private unnamed_addr constant [69 x i8] c"Android.AccessibilityServices.AccessibilityServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.32_to = private unnamed_addr constant [54 x i8] c"android/accessibilityservice/AccessibilityServiceInfo\00", align 1 +@.TypeMapEntry.33_from = private unnamed_addr constant [72 x i8] c"Android.AccessibilityServices.AccessibilityServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.34_from = private unnamed_addr constant [100 x i8] c"Android.AccessibilityServices.FingerprintGestureController+FingerprintGestureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.35_to = private unnamed_addr constant [85 x i8] c"android/accessibilityservice/FingerprintGestureController$FingerprintGestureCallback\00", align 1 +@.TypeMapEntry.36_from = private unnamed_addr constant [107 x i8] c"Android.AccessibilityServices.FingerprintGestureController+FingerprintGestureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.37_from = private unnamed_addr constant [73 x i8] c"Android.AccessibilityServices.FingerprintGestureController, Mono.Android\00", align 1 +@.TypeMapEntry.38_to = private unnamed_addr constant [58 x i8] c"android/accessibilityservice/FingerprintGestureController\00", align 1 +@.TypeMapEntry.39_from = private unnamed_addr constant [71 x i8] c"Android.AccessibilityServices.GestureDescription+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.40_to = private unnamed_addr constant [56 x i8] c"android/accessibilityservice/GestureDescription$Builder\00", align 1 +@.TypeMapEntry.41_from = private unnamed_addr constant [81 x i8] c"Android.AccessibilityServices.GestureDescription+StrokeDescription, Mono.Android\00", align 1 +@.TypeMapEntry.42_to = private unnamed_addr constant [66 x i8] c"android/accessibilityservice/GestureDescription$StrokeDescription\00", align 1 +@.TypeMapEntry.43_from = private unnamed_addr constant [63 x i8] c"Android.AccessibilityServices.GestureDescription, Mono.Android\00", align 1 +@.TypeMapEntry.44_to = private unnamed_addr constant [48 x i8] c"android/accessibilityservice/GestureDescription\00", align 1 +@.TypeMapEntry.45_from = private unnamed_addr constant [94 x i8] c"Android.AccessibilityServices.IBrailleDisplayController+IBrailleDisplayCallback, Mono.Android\00", align 1 +@.TypeMapEntry.46_to = private unnamed_addr constant [77 x i8] c"android/accessibilityservice/BrailleDisplayController$BrailleDisplayCallback\00", align 1 +@.TypeMapEntry.47_from = private unnamed_addr constant [101 x i8] c"Android.AccessibilityServices.IBrailleDisplayController+IBrailleDisplayCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.48_from = private unnamed_addr constant [70 x i8] c"Android.AccessibilityServices.IBrailleDisplayController, Mono.Android\00", align 1 +@.TypeMapEntry.49_to = private unnamed_addr constant [54 x i8] c"android/accessibilityservice/BrailleDisplayController\00", align 1 +@.TypeMapEntry.50_from = private unnamed_addr constant [77 x i8] c"Android.AccessibilityServices.IBrailleDisplayControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.51_from = private unnamed_addr constant [85 x i8] c"Android.AccessibilityServices.InputMethod+AccessibilityInputConnection, Mono.Android\00", align 1 +@.TypeMapEntry.52_to = private unnamed_addr constant [70 x i8] c"android/accessibilityservice/InputMethod$AccessibilityInputConnection\00", align 1 +@.TypeMapEntry.53_from = private unnamed_addr constant [56 x i8] c"Android.AccessibilityServices.InputMethod, Mono.Android\00", align 1 +@.TypeMapEntry.54_to = private unnamed_addr constant [41 x i8] c"android/accessibilityservice/InputMethod\00", align 1 +@.TypeMapEntry.55_from = private unnamed_addr constant [72 x i8] c"Android.AccessibilityServices.MagnificationConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.56_to = private unnamed_addr constant [57 x i8] c"android/accessibilityservice/MagnificationConfig$Builder\00", align 1 +@.TypeMapEntry.57_from = private unnamed_addr constant [64 x i8] c"Android.AccessibilityServices.MagnificationConfig, Mono.Android\00", align 1 +@.TypeMapEntry.58_to = private unnamed_addr constant [49 x i8] c"android/accessibilityservice/MagnificationConfig\00", align 1 +@.TypeMapEntry.59_from = private unnamed_addr constant [81 x i8] c"Android.AccessibilityServices.TouchInteractionController+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.60_to = private unnamed_addr constant [65 x i8] c"android/accessibilityservice/TouchInteractionController$Callback\00", align 1 +@.TypeMapEntry.61_from = private unnamed_addr constant [88 x i8] c"Android.AccessibilityServices.TouchInteractionController+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.62_from = private unnamed_addr constant [71 x i8] c"Android.AccessibilityServices.TouchInteractionController, Mono.Android\00", align 1 +@.TypeMapEntry.63_to = private unnamed_addr constant [56 x i8] c"android/accessibilityservice/TouchInteractionController\00", align 1 +@.TypeMapEntry.64_from = private unnamed_addr constant [60 x i8] c"Android.Accounts.AbstractAccountAuthenticator, Mono.Android\00", align 1 +@.TypeMapEntry.65_to = private unnamed_addr constant [46 x i8] c"android/accounts/AbstractAccountAuthenticator\00", align 1 +@.TypeMapEntry.66_from = private unnamed_addr constant [67 x i8] c"Android.Accounts.AbstractAccountAuthenticatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.67_from = private unnamed_addr constant [39 x i8] c"Android.Accounts.Account, Mono.Android\00", align 1 +@.TypeMapEntry.68_to = private unnamed_addr constant [25 x i8] c"android/accounts/Account\00", align 1 +@.TypeMapEntry.69_from = private unnamed_addr constant [60 x i8] c"Android.Accounts.AccountAuthenticatorActivity, Mono.Android\00", align 1 +@.TypeMapEntry.70_to = private unnamed_addr constant [46 x i8] c"android/accounts/AccountAuthenticatorActivity\00", align 1 +@.TypeMapEntry.71_from = private unnamed_addr constant [60 x i8] c"Android.Accounts.AccountAuthenticatorResponse, Mono.Android\00", align 1 +@.TypeMapEntry.72_to = private unnamed_addr constant [46 x i8] c"android/accounts/AccountAuthenticatorResponse\00", align 1 +@.TypeMapEntry.73_from = private unnamed_addr constant [46 x i8] c"Android.Accounts.AccountManager, Mono.Android\00", align 1 +@.TypeMapEntry.74_to = private unnamed_addr constant [32 x i8] c"android/accounts/AccountManager\00", align 1 +@.TypeMapEntry.75_from = private unnamed_addr constant [49 x i8] c"Android.Accounts.AccountsException, Mono.Android\00", align 1 +@.TypeMapEntry.76_to = private unnamed_addr constant [35 x i8] c"android/accounts/AccountsException\00", align 1 +@.TypeMapEntry.77_from = private unnamed_addr constant [56 x i8] c"Android.Accounts.AuthenticatorDescription, Mono.Android\00", align 1 +@.TypeMapEntry.78_to = private unnamed_addr constant [42 x i8] c"android/accounts/AuthenticatorDescription\00", align 1 +@.TypeMapEntry.79_from = private unnamed_addr constant [54 x i8] c"Android.Accounts.AuthenticatorException, Mono.Android\00", align 1 +@.TypeMapEntry.80_to = private unnamed_addr constant [40 x i8] c"android/accounts/AuthenticatorException\00", align 1 +@.TypeMapEntry.81_from = private unnamed_addr constant [55 x i8] c"Android.Accounts.IAccountManagerCallback, Mono.Android\00", align 1 +@.TypeMapEntry.82_to = private unnamed_addr constant [40 x i8] c"android/accounts/AccountManagerCallback\00", align 1 +@.TypeMapEntry.83_from = private unnamed_addr constant [62 x i8] c"Android.Accounts.IAccountManagerCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.84_from = private unnamed_addr constant [53 x i8] c"Android.Accounts.IAccountManagerFuture, Mono.Android\00", align 1 +@.TypeMapEntry.85_to = private unnamed_addr constant [38 x i8] c"android/accounts/AccountManagerFuture\00", align 1 +@.TypeMapEntry.86_from = private unnamed_addr constant [60 x i8] c"Android.Accounts.IAccountManagerFutureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.87_from = private unnamed_addr constant [57 x i8] c"Android.Accounts.IOnAccountsUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.88_to = private unnamed_addr constant [42 x i8] c"android/accounts/OnAccountsUpdateListener\00", align 1 +@.TypeMapEntry.89_from = private unnamed_addr constant [68 x i8] c"Android.Accounts.IOnAccountsUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.90_to = private unnamed_addr constant [58 x i8] c"mono/android/accounts/OnAccountsUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.91_from = private unnamed_addr constant [64 x i8] c"Android.Accounts.IOnAccountsUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.92_from = private unnamed_addr constant [53 x i8] c"Android.Accounts.NetworkErrorException, Mono.Android\00", align 1 +@.TypeMapEntry.93_to = private unnamed_addr constant [39 x i8] c"android/accounts/NetworkErrorException\00", align 1 +@.TypeMapEntry.94_from = private unnamed_addr constant [58 x i8] c"Android.Accounts.OperationCanceledException, Mono.Android\00", align 1 +@.TypeMapEntry.95_to = private unnamed_addr constant [44 x i8] c"android/accounts/OperationCanceledException\00", align 1 +@.TypeMapEntry.96_from = private unnamed_addr constant [44 x i8] c"Android.AdServices.AdIds.AdId, Mono.Android\00", align 1 +@.TypeMapEntry.97_to = private unnamed_addr constant [29 x i8] c"android/adservices/adid/AdId\00", align 1 +@.TypeMapEntry.98_from = private unnamed_addr constant [51 x i8] c"Android.AdServices.AdIds.AdIdManager, Mono.Android\00", align 1 +@.TypeMapEntry.99_to = private unnamed_addr constant [36 x i8] c"android/adservices/adid/AdIdManager\00", align 1 +@.TypeMapEntry.100_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.AdSelection.AdSelectionConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.101_to = private unnamed_addr constant [57 x i8] c"android/adservices/adselection/AdSelectionConfig$Builder\00", align 1 +@.TypeMapEntry.102_from = private unnamed_addr constant [63 x i8] c"Android.AdServices.AdSelection.AdSelectionConfig, Mono.Android\00", align 1 +@.TypeMapEntry.103_to = private unnamed_addr constant [49 x i8] c"android/adservices/adselection/AdSelectionConfig\00", align 1 +@.TypeMapEntry.104_from = private unnamed_addr constant [83 x i8] c"Android.AdServices.AdSelection.AdSelectionFromOutcomesConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.105_to = private unnamed_addr constant [69 x i8] c"android/adservices/adselection/AdSelectionFromOutcomesConfig$Builder\00", align 1 +@.TypeMapEntry.106_from = private unnamed_addr constant [75 x i8] c"Android.AdServices.AdSelection.AdSelectionFromOutcomesConfig, Mono.Android\00", align 1 +@.TypeMapEntry.107_to = private unnamed_addr constant [61 x i8] c"android/adservices/adselection/AdSelectionFromOutcomesConfig\00", align 1 +@.TypeMapEntry.108_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.AdSelection.AdSelectionManager, Mono.Android\00", align 1 +@.TypeMapEntry.109_to = private unnamed_addr constant [50 x i8] c"android/adservices/adselection/AdSelectionManager\00", align 1 +@.TypeMapEntry.110_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.AdSelection.AdSelectionOutcome+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.111_to = private unnamed_addr constant [58 x i8] c"android/adservices/adselection/AdSelectionOutcome$Builder\00", align 1 +@.TypeMapEntry.112_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.AdSelection.AdSelectionOutcome, Mono.Android\00", align 1 +@.TypeMapEntry.113_to = private unnamed_addr constant [50 x i8] c"android/adservices/adselection/AdSelectionOutcome\00", align 1 +@.TypeMapEntry.114_from = private unnamed_addr constant [55 x i8] c"Android.AdServices.AdSelection.AdWithBid, Mono.Android\00", align 1 +@.TypeMapEntry.115_to = private unnamed_addr constant [41 x i8] c"android/adservices/adselection/AdWithBid\00", align 1 +@.TypeMapEntry.116_from = private unnamed_addr constant [87 x i8] c"Android.AdServices.AdSelection.AddAdSelectionFromOutcomesOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.117_to = private unnamed_addr constant [73 x i8] c"android/adservices/adselection/AddAdSelectionFromOutcomesOverrideRequest\00", align 1 +@.TypeMapEntry.118_from = private unnamed_addr constant [75 x i8] c"Android.AdServices.AdSelection.AddAdSelectionOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.119_to = private unnamed_addr constant [61 x i8] c"android/adservices/adselection/AddAdSelectionOverrideRequest\00", align 1 +@.TypeMapEntry.120_from = private unnamed_addr constant [59 x i8] c"Android.AdServices.AdSelection.DecisionLogic, Mono.Android\00", align 1 +@.TypeMapEntry.121_to = private unnamed_addr constant [45 x i8] c"android/adservices/adselection/DecisionLogic\00", align 1 +@.TypeMapEntry.122_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.AdSelection.GetAdSelectionDataOutcome, Mono.Android\00", align 1 +@.TypeMapEntry.123_to = private unnamed_addr constant [57 x i8] c"android/adservices/adselection/GetAdSelectionDataOutcome\00", align 1 +@.TypeMapEntry.124_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.AdSelection.GetAdSelectionDataRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.125_to = private unnamed_addr constant [65 x i8] c"android/adservices/adselection/GetAdSelectionDataRequest$Builder\00", align 1 +@.TypeMapEntry.126_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.AdSelection.GetAdSelectionDataRequest, Mono.Android\00", align 1 +@.TypeMapEntry.127_to = private unnamed_addr constant [57 x i8] c"android/adservices/adselection/GetAdSelectionDataRequest\00", align 1 +@.TypeMapEntry.128_from = private unnamed_addr constant [67 x i8] c"Android.AdServices.AdSelection.PerBuyerDecisionLogic, Mono.Android\00", align 1 +@.TypeMapEntry.129_to = private unnamed_addr constant [53 x i8] c"android/adservices/adselection/PerBuyerDecisionLogic\00", align 1 +@.TypeMapEntry.130_from = private unnamed_addr constant [85 x i8] c"Android.AdServices.AdSelection.PersistAdSelectionResultRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.131_to = private unnamed_addr constant [71 x i8] c"android/adservices/adselection/PersistAdSelectionResultRequest$Builder\00", align 1 +@.TypeMapEntry.132_from = private unnamed_addr constant [77 x i8] c"Android.AdServices.AdSelection.PersistAdSelectionResultRequest, Mono.Android\00", align 1 +@.TypeMapEntry.133_to = private unnamed_addr constant [63 x i8] c"android/adservices/adselection/PersistAdSelectionResultRequest\00", align 1 +@.TypeMapEntry.134_from = private unnamed_addr constant [90 x i8] c"Android.AdServices.AdSelection.RemoveAdSelectionFromOutcomesOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.135_to = private unnamed_addr constant [76 x i8] c"android/adservices/adselection/RemoveAdSelectionFromOutcomesOverrideRequest\00", align 1 +@.TypeMapEntry.136_from = private unnamed_addr constant [78 x i8] c"Android.AdServices.AdSelection.RemoveAdSelectionOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.137_to = private unnamed_addr constant [64 x i8] c"android/adservices/adselection/RemoveAdSelectionOverrideRequest\00", align 1 +@.TypeMapEntry.138_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.AdSelection.ReportEventRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.139_to = private unnamed_addr constant [58 x i8] c"android/adservices/adselection/ReportEventRequest$Builder\00", align 1 +@.TypeMapEntry.140_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.AdSelection.ReportEventRequest, Mono.Android\00", align 1 +@.TypeMapEntry.141_to = private unnamed_addr constant [50 x i8] c"android/adservices/adselection/ReportEventRequest\00", align 1 +@.TypeMapEntry.142_from = private unnamed_addr constant [69 x i8] c"Android.AdServices.AdSelection.ReportImpressionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.143_to = private unnamed_addr constant [55 x i8] c"android/adservices/adselection/ReportImpressionRequest\00", align 1 +@.TypeMapEntry.144_from = private unnamed_addr constant [85 x i8] c"Android.AdServices.AdSelection.SetAppInstallAdvertisersRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.145_to = private unnamed_addr constant [71 x i8] c"android/adservices/adselection/SetAppInstallAdvertisersRequest$Builder\00", align 1 +@.TypeMapEntry.146_from = private unnamed_addr constant [77 x i8] c"Android.AdServices.AdSelection.SetAppInstallAdvertisersRequest, Mono.Android\00", align 1 +@.TypeMapEntry.147_to = private unnamed_addr constant [63 x i8] c"android/adservices/adselection/SetAppInstallAdvertisersRequest\00", align 1 +@.TypeMapEntry.148_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.AdSelection.SignedContextualAds+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.149_to = private unnamed_addr constant [59 x i8] c"android/adservices/adselection/SignedContextualAds$Builder\00", align 1 +@.TypeMapEntry.150_from = private unnamed_addr constant [65 x i8] c"Android.AdServices.AdSelection.SignedContextualAds, Mono.Android\00", align 1 +@.TypeMapEntry.151_to = private unnamed_addr constant [51 x i8] c"android/adservices/adselection/SignedContextualAds\00", align 1 +@.TypeMapEntry.152_from = private unnamed_addr constant [68 x i8] c"Android.AdServices.AdSelection.TestAdSelectionManager, Mono.Android\00", align 1 +@.TypeMapEntry.153_to = private unnamed_addr constant [54 x i8] c"android/adservices/adselection/TestAdSelectionManager\00", align 1 +@.TypeMapEntry.154_from = private unnamed_addr constant [85 x i8] c"Android.AdServices.AdSelection.UpdateAdCounterHistogramRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.155_to = private unnamed_addr constant [71 x i8] c"android/adservices/adselection/UpdateAdCounterHistogramRequest$Builder\00", align 1 +@.TypeMapEntry.156_from = private unnamed_addr constant [77 x i8] c"Android.AdServices.AdSelection.UpdateAdCounterHistogramRequest, Mono.Android\00", align 1 +@.TypeMapEntry.157_to = private unnamed_addr constant [63 x i8] c"android/adservices/adselection/UpdateAdCounterHistogramRequest\00", align 1 +@.TypeMapEntry.158_from = private unnamed_addr constant [49 x i8] c"Android.AdServices.AdServicesState, Mono.Android\00", align 1 +@.TypeMapEntry.159_to = private unnamed_addr constant [35 x i8] c"android/adservices/AdServicesState\00", align 1 +@.TypeMapEntry.160_from = private unnamed_addr constant [51 x i8] c"Android.AdServices.AdServicesVersion, Mono.Android\00", align 1 +@.TypeMapEntry.161_to = private unnamed_addr constant [37 x i8] c"android/adservices/AdServicesVersion\00", align 1 +@.TypeMapEntry.162_from = private unnamed_addr constant [52 x i8] c"Android.AdServices.AppSetIds.AppSetId, Mono.Android\00", align 1 +@.TypeMapEntry.163_to = private unnamed_addr constant [37 x i8] c"android/adservices/appsetid/AppSetId\00", align 1 +@.TypeMapEntry.164_from = private unnamed_addr constant [59 x i8] c"Android.AdServices.AppSetIds.AppSetIdManager, Mono.Android\00", align 1 +@.TypeMapEntry.165_to = private unnamed_addr constant [44 x i8] c"android/adservices/appsetid/AppSetIdManager\00", align 1 +@.TypeMapEntry.166_from = private unnamed_addr constant [55 x i8] c"Android.AdServices.Common.AdData+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.167_to = private unnamed_addr constant [41 x i8] c"android/adservices/common/AdData$Builder\00", align 1 +@.TypeMapEntry.168_from = private unnamed_addr constant [47 x i8] c"Android.AdServices.Common.AdData, Mono.Android\00", align 1 +@.TypeMapEntry.169_to = private unnamed_addr constant [33 x i8] c"android/adservices/common/AdData\00", align 1 +@.TypeMapEntry.170_from = private unnamed_addr constant [58 x i8] c"Android.AdServices.Common.AdFilters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.171_to = private unnamed_addr constant [44 x i8] c"android/adservices/common/AdFilters$Builder\00", align 1 +@.TypeMapEntry.172_from = private unnamed_addr constant [50 x i8] c"Android.AdServices.Common.AdFilters, Mono.Android\00", align 1 +@.TypeMapEntry.173_to = private unnamed_addr constant [36 x i8] c"android/adservices/common/AdFilters\00", align 1 +@.TypeMapEntry.174_from = private unnamed_addr constant [59 x i8] c"Android.AdServices.Common.AdSelectionSignals, Mono.Android\00", align 1 +@.TypeMapEntry.175_to = private unnamed_addr constant [45 x i8] c"android/adservices/common/AdSelectionSignals\00", align 1 +@.TypeMapEntry.176_from = private unnamed_addr constant [62 x i8] c"Android.AdServices.Common.AdServicesPermissions, Mono.Android\00", align 1 +@.TypeMapEntry.177_to = private unnamed_addr constant [48 x i8] c"android/adservices/common/AdServicesPermissions\00", align 1 +@.TypeMapEntry.178_from = private unnamed_addr constant [57 x i8] c"Android.AdServices.Common.AdTechIdentifier, Mono.Android\00", align 1 +@.TypeMapEntry.179_to = private unnamed_addr constant [43 x i8] c"android/adservices/common/AdTechIdentifier\00", align 1 +@.TypeMapEntry.180_from = private unnamed_addr constant [66 x i8] c"Android.AdServices.Common.AppInstallFilters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.181_to = private unnamed_addr constant [52 x i8] c"android/adservices/common/AppInstallFilters$Builder\00", align 1 +@.TypeMapEntry.182_from = private unnamed_addr constant [58 x i8] c"Android.AdServices.Common.AppInstallFilters, Mono.Android\00", align 1 +@.TypeMapEntry.183_to = private unnamed_addr constant [44 x i8] c"android/adservices/common/AppInstallFilters\00", align 1 +@.TypeMapEntry.184_from = private unnamed_addr constant [68 x i8] c"Android.AdServices.Common.FrequencyCapFilters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.185_to = private unnamed_addr constant [54 x i8] c"android/adservices/common/FrequencyCapFilters$Builder\00", align 1 +@.TypeMapEntry.186_from = private unnamed_addr constant [60 x i8] c"Android.AdServices.Common.FrequencyCapFilters, Mono.Android\00", align 1 +@.TypeMapEntry.187_to = private unnamed_addr constant [46 x i8] c"android/adservices/common/FrequencyCapFilters\00", align 1 +@.TypeMapEntry.188_from = private unnamed_addr constant [67 x i8] c"Android.AdServices.Common.IAdServicesOutcomeReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.189_to = private unnamed_addr constant [52 x i8] c"android/adservices/common/AdServicesOutcomeReceiver\00", align 1 +@.TypeMapEntry.190_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.Common.IAdServicesOutcomeReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.191_from = private unnamed_addr constant [66 x i8] c"Android.AdServices.Common.KeyedFrequencyCap+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.192_to = private unnamed_addr constant [52 x i8] c"android/adservices/common/KeyedFrequencyCap$Builder\00", align 1 +@.TypeMapEntry.193_from = private unnamed_addr constant [58 x i8] c"Android.AdServices.Common.KeyedFrequencyCap, Mono.Android\00", align 1 +@.TypeMapEntry.194_to = private unnamed_addr constant [44 x i8] c"android/adservices/common/KeyedFrequencyCap\00", align 1 +@.TypeMapEntry.195_from = private unnamed_addr constant [90 x i8] c"Android.AdServices.CustomAudiences.AddCustomAudienceOverrideRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.196_to = private unnamed_addr constant [75 x i8] c"android/adservices/customaudience/AddCustomAudienceOverrideRequest$Builder\00", align 1 +@.TypeMapEntry.197_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.CustomAudiences.AddCustomAudienceOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.198_to = private unnamed_addr constant [67 x i8] c"android/adservices/customaudience/AddCustomAudienceOverrideRequest\00", align 1 +@.TypeMapEntry.199_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.CustomAudiences.CustomAudience+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.200_to = private unnamed_addr constant [57 x i8] c"android/adservices/customaudience/CustomAudience$Builder\00", align 1 +@.TypeMapEntry.201_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.CustomAudiences.CustomAudience, Mono.Android\00", align 1 +@.TypeMapEntry.202_to = private unnamed_addr constant [49 x i8] c"android/adservices/customaudience/CustomAudience\00", align 1 +@.TypeMapEntry.203_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.CustomAudiences.CustomAudienceManager, Mono.Android\00", align 1 +@.TypeMapEntry.204_to = private unnamed_addr constant [56 x i8] c"android/adservices/customaudience/CustomAudienceManager\00", align 1 +@.TypeMapEntry.205_from = private unnamed_addr constant [91 x i8] c"Android.AdServices.CustomAudiences.FetchAndJoinCustomAudienceRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.206_to = private unnamed_addr constant [76 x i8] c"android/adservices/customaudience/FetchAndJoinCustomAudienceRequest$Builder\00", align 1 +@.TypeMapEntry.207_from = private unnamed_addr constant [83 x i8] c"Android.AdServices.CustomAudiences.FetchAndJoinCustomAudienceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.208_to = private unnamed_addr constant [68 x i8] c"android/adservices/customaudience/FetchAndJoinCustomAudienceRequest\00", align 1 +@.TypeMapEntry.209_from = private unnamed_addr constant [83 x i8] c"Android.AdServices.CustomAudiences.JoinCustomAudienceRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.210_to = private unnamed_addr constant [68 x i8] c"android/adservices/customaudience/JoinCustomAudienceRequest$Builder\00", align 1 +@.TypeMapEntry.211_from = private unnamed_addr constant [75 x i8] c"Android.AdServices.CustomAudiences.JoinCustomAudienceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.212_to = private unnamed_addr constant [60 x i8] c"android/adservices/customaudience/JoinCustomAudienceRequest\00", align 1 +@.TypeMapEntry.213_from = private unnamed_addr constant [84 x i8] c"Android.AdServices.CustomAudiences.LeaveCustomAudienceRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.214_to = private unnamed_addr constant [69 x i8] c"android/adservices/customaudience/LeaveCustomAudienceRequest$Builder\00", align 1 +@.TypeMapEntry.215_from = private unnamed_addr constant [76 x i8] c"Android.AdServices.CustomAudiences.LeaveCustomAudienceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.216_to = private unnamed_addr constant [61 x i8] c"android/adservices/customaudience/LeaveCustomAudienceRequest\00", align 1 +@.TypeMapEntry.217_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.CustomAudiences.PartialCustomAudience+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.218_to = private unnamed_addr constant [64 x i8] c"android/adservices/customaudience/PartialCustomAudience$Builder\00", align 1 +@.TypeMapEntry.219_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.CustomAudiences.PartialCustomAudience, Mono.Android\00", align 1 +@.TypeMapEntry.220_to = private unnamed_addr constant [56 x i8] c"android/adservices/customaudience/PartialCustomAudience\00", align 1 +@.TypeMapEntry.221_from = private unnamed_addr constant [93 x i8] c"Android.AdServices.CustomAudiences.RemoveCustomAudienceOverrideRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.222_to = private unnamed_addr constant [78 x i8] c"android/adservices/customaudience/RemoveCustomAudienceOverrideRequest$Builder\00", align 1 +@.TypeMapEntry.223_from = private unnamed_addr constant [85 x i8] c"Android.AdServices.CustomAudiences.RemoveCustomAudienceOverrideRequest, Mono.Android\00", align 1 +@.TypeMapEntry.224_to = private unnamed_addr constant [70 x i8] c"android/adservices/customaudience/RemoveCustomAudienceOverrideRequest\00", align 1 +@.TypeMapEntry.225_from = private unnamed_addr constant [93 x i8] c"Android.AdServices.CustomAudiences.ScheduleCustomAudienceUpdateRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.226_to = private unnamed_addr constant [78 x i8] c"android/adservices/customaudience/ScheduleCustomAudienceUpdateRequest$Builder\00", align 1 +@.TypeMapEntry.227_from = private unnamed_addr constant [85 x i8] c"Android.AdServices.CustomAudiences.ScheduleCustomAudienceUpdateRequest, Mono.Android\00", align 1 +@.TypeMapEntry.228_to = private unnamed_addr constant [70 x i8] c"android/adservices/customaudience/ScheduleCustomAudienceUpdateRequest\00", align 1 +@.TypeMapEntry.229_from = private unnamed_addr constant [75 x i8] c"Android.AdServices.CustomAudiences.TestCustomAudienceManager, Mono.Android\00", align 1 +@.TypeMapEntry.230_to = private unnamed_addr constant [60 x i8] c"android/adservices/customaudience/TestCustomAudienceManager\00", align 1 +@.TypeMapEntry.231_from = private unnamed_addr constant [76 x i8] c"Android.AdServices.CustomAudiences.TrustedBiddingData+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.232_to = private unnamed_addr constant [61 x i8] c"android/adservices/customaudience/TrustedBiddingData$Builder\00", align 1 +@.TypeMapEntry.233_from = private unnamed_addr constant [68 x i8] c"Android.AdServices.CustomAudiences.TrustedBiddingData, Mono.Android\00", align 1 +@.TypeMapEntry.234_to = private unnamed_addr constant [53 x i8] c"android/adservices/customaudience/TrustedBiddingData\00", align 1 +@.TypeMapEntry.235_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.Exceptions.AdServicesException, Mono.Android\00", align 1 +@.TypeMapEntry.236_to = private unnamed_addr constant [50 x i8] c"android/adservices/exceptions/AdServicesException\00", align 1 +@.TypeMapEntry.237_from = private unnamed_addr constant [69 x i8] c"Android.AdServices.Measurement.DeletionRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.238_to = private unnamed_addr constant [55 x i8] c"android/adservices/measurement/DeletionRequest$Builder\00", align 1 +@.TypeMapEntry.239_from = private unnamed_addr constant [61 x i8] c"Android.AdServices.Measurement.DeletionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.240_to = private unnamed_addr constant [47 x i8] c"android/adservices/measurement/DeletionRequest\00", align 1 +@.TypeMapEntry.241_from = private unnamed_addr constant [64 x i8] c"Android.AdServices.Measurement.MeasurementManager, Mono.Android\00", align 1 +@.TypeMapEntry.242_to = private unnamed_addr constant [50 x i8] c"android/adservices/measurement/MeasurementManager\00", align 1 +@.TypeMapEntry.243_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.Measurement.SourceRegistrationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.244_to = private unnamed_addr constant [65 x i8] c"android/adservices/measurement/SourceRegistrationRequest$Builder\00", align 1 +@.TypeMapEntry.245_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.Measurement.SourceRegistrationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.246_to = private unnamed_addr constant [57 x i8] c"android/adservices/measurement/SourceRegistrationRequest\00", align 1 +@.TypeMapEntry.247_from = private unnamed_addr constant [69 x i8] c"Android.AdServices.Measurement.WebSourceParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.248_to = private unnamed_addr constant [55 x i8] c"android/adservices/measurement/WebSourceParams$Builder\00", align 1 +@.TypeMapEntry.249_from = private unnamed_addr constant [61 x i8] c"Android.AdServices.Measurement.WebSourceParams, Mono.Android\00", align 1 +@.TypeMapEntry.250_to = private unnamed_addr constant [47 x i8] c"android/adservices/measurement/WebSourceParams\00", align 1 +@.TypeMapEntry.251_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.Measurement.WebSourceRegistrationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.252_to = private unnamed_addr constant [68 x i8] c"android/adservices/measurement/WebSourceRegistrationRequest$Builder\00", align 1 +@.TypeMapEntry.253_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.Measurement.WebSourceRegistrationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.254_to = private unnamed_addr constant [60 x i8] c"android/adservices/measurement/WebSourceRegistrationRequest\00", align 1 +@.TypeMapEntry.255_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.Measurement.WebTriggerParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.256_to = private unnamed_addr constant [56 x i8] c"android/adservices/measurement/WebTriggerParams$Builder\00", align 1 +@.TypeMapEntry.257_from = private unnamed_addr constant [62 x i8] c"Android.AdServices.Measurement.WebTriggerParams, Mono.Android\00", align 1 +@.TypeMapEntry.258_to = private unnamed_addr constant [48 x i8] c"android/adservices/measurement/WebTriggerParams\00", align 1 +@.TypeMapEntry.259_from = private unnamed_addr constant [83 x i8] c"Android.AdServices.Measurement.WebTriggerRegistrationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.260_to = private unnamed_addr constant [69 x i8] c"android/adservices/measurement/WebTriggerRegistrationRequest$Builder\00", align 1 +@.TypeMapEntry.261_from = private unnamed_addr constant [75 x i8] c"Android.AdServices.Measurement.WebTriggerRegistrationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.262_to = private unnamed_addr constant [61 x i8] c"android/adservices/measurement/WebTriggerRegistrationRequest\00", align 1 +@.TypeMapEntry.263_from = private unnamed_addr constant [65 x i8] c"Android.AdServices.OnDevicePersonalization.AppInfo, Mono.Android\00", align 1 +@.TypeMapEntry.264_to = private unnamed_addr constant [51 x i8] c"android/adservices/ondevicepersonalization/AppInfo\00", align 1 +@.TypeMapEntry.265_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.DownloadCompletedInput, Mono.Android\00", align 1 +@.TypeMapEntry.266_to = private unnamed_addr constant [66 x i8] c"android/adservices/ondevicepersonalization/DownloadCompletedInput\00", align 1 +@.TypeMapEntry.267_from = private unnamed_addr constant [89 x i8] c"Android.AdServices.OnDevicePersonalization.DownloadCompletedOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.268_to = private unnamed_addr constant [75 x i8] c"android/adservices/ondevicepersonalization/DownloadCompletedOutput$Builder\00", align 1 +@.TypeMapEntry.269_from = private unnamed_addr constant [81 x i8] c"Android.AdServices.OnDevicePersonalization.DownloadCompletedOutput, Mono.Android\00", align 1 +@.TypeMapEntry.270_to = private unnamed_addr constant [67 x i8] c"android/adservices/ondevicepersonalization/DownloadCompletedOutput\00", align 1 +@.TypeMapEntry.271_from = private unnamed_addr constant [68 x i8] c"Android.AdServices.OnDevicePersonalization.EventInput, Mono.Android\00", align 1 +@.TypeMapEntry.272_to = private unnamed_addr constant [54 x i8] c"android/adservices/ondevicepersonalization/EventInput\00", align 1 +@.TypeMapEntry.273_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.EventLogRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.274_to = private unnamed_addr constant [66 x i8] c"android/adservices/ondevicepersonalization/EventLogRecord$Builder\00", align 1 +@.TypeMapEntry.275_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.OnDevicePersonalization.EventLogRecord, Mono.Android\00", align 1 +@.TypeMapEntry.276_to = private unnamed_addr constant [58 x i8] c"android/adservices/ondevicepersonalization/EventLogRecord\00", align 1 +@.TypeMapEntry.277_from = private unnamed_addr constant [77 x i8] c"Android.AdServices.OnDevicePersonalization.EventOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.278_to = private unnamed_addr constant [63 x i8] c"android/adservices/ondevicepersonalization/EventOutput$Builder\00", align 1 +@.TypeMapEntry.279_from = private unnamed_addr constant [69 x i8] c"Android.AdServices.OnDevicePersonalization.EventOutput, Mono.Android\00", align 1 +@.TypeMapEntry.280_to = private unnamed_addr constant [55 x i8] c"android/adservices/ondevicepersonalization/EventOutput\00", align 1 +@.TypeMapEntry.281_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.OnDevicePersonalization.EventUrlProvider, Mono.Android\00", align 1 +@.TypeMapEntry.282_to = private unnamed_addr constant [60 x i8] c"android/adservices/ondevicepersonalization/EventUrlProvider\00", align 1 +@.TypeMapEntry.283_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.OnDevicePersonalization.ExecuteInput, Mono.Android\00", align 1 +@.TypeMapEntry.284_to = private unnamed_addr constant [56 x i8] c"android/adservices/ondevicepersonalization/ExecuteInput\00", align 1 +@.TypeMapEntry.285_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.ExecuteOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.286_to = private unnamed_addr constant [65 x i8] c"android/adservices/ondevicepersonalization/ExecuteOutput$Builder\00", align 1 +@.TypeMapEntry.287_from = private unnamed_addr constant [71 x i8] c"Android.AdServices.OnDevicePersonalization.ExecuteOutput, Mono.Android\00", align 1 +@.TypeMapEntry.288_to = private unnamed_addr constant [57 x i8] c"android/adservices/ondevicepersonalization/ExecuteOutput\00", align 1 +@.TypeMapEntry.289_from = private unnamed_addr constant [87 x i8] c"Android.AdServices.OnDevicePersonalization.FederatedComputeInput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.290_to = private unnamed_addr constant [73 x i8] c"android/adservices/ondevicepersonalization/FederatedComputeInput$Builder\00", align 1 +@.TypeMapEntry.291_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.FederatedComputeInput, Mono.Android\00", align 1 +@.TypeMapEntry.292_to = private unnamed_addr constant [65 x i8] c"android/adservices/ondevicepersonalization/FederatedComputeInput\00", align 1 +@.TypeMapEntry.293_from = private unnamed_addr constant [90 x i8] c"Android.AdServices.OnDevicePersonalization.FederatedComputeScheduler+Params, Mono.Android\00", align 1 +@.TypeMapEntry.294_to = private unnamed_addr constant [76 x i8] c"android/adservices/ondevicepersonalization/FederatedComputeScheduler$Params\00", align 1 +@.TypeMapEntry.295_from = private unnamed_addr constant [83 x i8] c"Android.AdServices.OnDevicePersonalization.FederatedComputeScheduler, Mono.Android\00", align 1 +@.TypeMapEntry.296_to = private unnamed_addr constant [69 x i8] c"android/adservices/ondevicepersonalization/FederatedComputeScheduler\00", align 1 +@.TypeMapEntry.297_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.OnDevicePersonalization.IIsolatedWorker, Mono.Android\00", align 1 +@.TypeMapEntry.298_to = private unnamed_addr constant [58 x i8] c"android/adservices/ondevicepersonalization/IsolatedWorker\00", align 1 +@.TypeMapEntry.299_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.IIsolatedWorkerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.300_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.OnDevicePersonalization.IKeyValueStore, Mono.Android\00", align 1 +@.TypeMapEntry.301_to = private unnamed_addr constant [57 x i8] c"android/adservices/ondevicepersonalization/KeyValueStore\00", align 1 +@.TypeMapEntry.302_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.IKeyValueStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.303_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.IMutableKeyValueStore, Mono.Android\00", align 1 +@.TypeMapEntry.304_to = private unnamed_addr constant [64 x i8] c"android/adservices/ondevicepersonalization/MutableKeyValueStore\00", align 1 +@.TypeMapEntry.305_from = private unnamed_addr constant [86 x i8] c"Android.AdServices.OnDevicePersonalization.IMutableKeyValueStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.306_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceInput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.307_to = private unnamed_addr constant [66 x i8] c"android/adservices/ondevicepersonalization/InferenceInput$Builder\00", align 1 +@.TypeMapEntry.308_from = private unnamed_addr constant [87 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceInput+Params+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.309_to = private unnamed_addr constant [73 x i8] c"android/adservices/ondevicepersonalization/InferenceInput$Params$Builder\00", align 1 +@.TypeMapEntry.310_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceInput+Params, Mono.Android\00", align 1 +@.TypeMapEntry.311_to = private unnamed_addr constant [65 x i8] c"android/adservices/ondevicepersonalization/InferenceInput$Params\00", align 1 +@.TypeMapEntry.312_from = private unnamed_addr constant [72 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceInput, Mono.Android\00", align 1 +@.TypeMapEntry.313_to = private unnamed_addr constant [58 x i8] c"android/adservices/ondevicepersonalization/InferenceInput\00", align 1 +@.TypeMapEntry.314_from = private unnamed_addr constant [81 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.315_to = private unnamed_addr constant [67 x i8] c"android/adservices/ondevicepersonalization/InferenceOutput$Builder\00", align 1 +@.TypeMapEntry.316_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.OnDevicePersonalization.InferenceOutput, Mono.Android\00", align 1 +@.TypeMapEntry.317_to = private unnamed_addr constant [59 x i8] c"android/adservices/ondevicepersonalization/InferenceOutput\00", align 1 +@.TypeMapEntry.318_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.OnDevicePersonalization.IsolatedService, Mono.Android\00", align 1 +@.TypeMapEntry.319_to = private unnamed_addr constant [59 x i8] c"android/adservices/ondevicepersonalization/IsolatedService\00", align 1 +@.TypeMapEntry.320_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.OnDevicePersonalization.IsolatedServiceException, Mono.Android\00", align 1 +@.TypeMapEntry.321_to = private unnamed_addr constant [68 x i8] c"android/adservices/ondevicepersonalization/IsolatedServiceException\00", align 1 +@.TypeMapEntry.322_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.IsolatedServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.323_from = private unnamed_addr constant [67 x i8] c"Android.AdServices.OnDevicePersonalization.LogReader, Mono.Android\00", align 1 +@.TypeMapEntry.324_to = private unnamed_addr constant [53 x i8] c"android/adservices/ondevicepersonalization/LogReader\00", align 1 +@.TypeMapEntry.325_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.OnDevicePersonalization.ModelManager, Mono.Android\00", align 1 +@.TypeMapEntry.326_to = private unnamed_addr constant [56 x i8] c"android/adservices/ondevicepersonalization/ModelManager\00", align 1 +@.TypeMapEntry.327_from = private unnamed_addr constant [90 x i8] c"Android.AdServices.OnDevicePersonalization.OnDevicePersonalizationException, Mono.Android\00", align 1 +@.TypeMapEntry.328_to = private unnamed_addr constant [76 x i8] c"android/adservices/ondevicepersonalization/OnDevicePersonalizationException\00", align 1 +@.TypeMapEntry.329_from = private unnamed_addr constant [102 x i8] c"Android.AdServices.OnDevicePersonalization.OnDevicePersonalizationManager+ExecuteResult, Mono.Android\00", align 1 +@.TypeMapEntry.330_to = private unnamed_addr constant [88 x i8] c"android/adservices/ondevicepersonalization/OnDevicePersonalizationManager$ExecuteResult\00", align 1 +@.TypeMapEntry.331_from = private unnamed_addr constant [88 x i8] c"Android.AdServices.OnDevicePersonalization.OnDevicePersonalizationManager, Mono.Android\00", align 1 +@.TypeMapEntry.332_to = private unnamed_addr constant [74 x i8] c"android/adservices/ondevicepersonalization/OnDevicePersonalizationManager\00", align 1 +@.TypeMapEntry.333_from = private unnamed_addr constant [69 x i8] c"Android.AdServices.OnDevicePersonalization.RenderInput, Mono.Android\00", align 1 +@.TypeMapEntry.334_to = private unnamed_addr constant [55 x i8] c"android/adservices/ondevicepersonalization/RenderInput\00", align 1 +@.TypeMapEntry.335_from = private unnamed_addr constant [78 x i8] c"Android.AdServices.OnDevicePersonalization.RenderOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.336_to = private unnamed_addr constant [64 x i8] c"android/adservices/ondevicepersonalization/RenderOutput$Builder\00", align 1 +@.TypeMapEntry.337_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.OnDevicePersonalization.RenderOutput, Mono.Android\00", align 1 +@.TypeMapEntry.338_to = private unnamed_addr constant [56 x i8] c"android/adservices/ondevicepersonalization/RenderOutput\00", align 1 +@.TypeMapEntry.339_from = private unnamed_addr constant [81 x i8] c"Android.AdServices.OnDevicePersonalization.RenderingConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.340_to = private unnamed_addr constant [67 x i8] c"android/adservices/ondevicepersonalization/RenderingConfig$Builder\00", align 1 +@.TypeMapEntry.341_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.OnDevicePersonalization.RenderingConfig, Mono.Android\00", align 1 +@.TypeMapEntry.342_to = private unnamed_addr constant [59 x i8] c"android/adservices/ondevicepersonalization/RenderingConfig\00", align 1 +@.TypeMapEntry.343_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.OnDevicePersonalization.RequestLogRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.344_to = private unnamed_addr constant [68 x i8] c"android/adservices/ondevicepersonalization/RequestLogRecord$Builder\00", align 1 +@.TypeMapEntry.345_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.OnDevicePersonalization.RequestLogRecord, Mono.Android\00", align 1 +@.TypeMapEntry.346_to = private unnamed_addr constant [60 x i8] c"android/adservices/ondevicepersonalization/RequestLogRecord\00", align 1 +@.TypeMapEntry.347_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.OnDevicePersonalization.RequestToken, Mono.Android\00", align 1 +@.TypeMapEntry.348_to = private unnamed_addr constant [56 x i8] c"android/adservices/ondevicepersonalization/RequestToken\00", align 1 +@.TypeMapEntry.349_from = private unnamed_addr constant [77 x i8] c"Android.AdServices.OnDevicePersonalization.SurfacePackageToken, Mono.Android\00", align 1 +@.TypeMapEntry.350_to = private unnamed_addr constant [63 x i8] c"android/adservices/ondevicepersonalization/SurfacePackageToken\00", align 1 +@.TypeMapEntry.351_from = private unnamed_addr constant [87 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingExampleRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.352_to = private unnamed_addr constant [73 x i8] c"android/adservices/ondevicepersonalization/TrainingExampleRecord$Builder\00", align 1 +@.TypeMapEntry.353_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingExampleRecord, Mono.Android\00", align 1 +@.TypeMapEntry.354_to = private unnamed_addr constant [65 x i8] c"android/adservices/ondevicepersonalization/TrainingExampleRecord\00", align 1 +@.TypeMapEntry.355_from = private unnamed_addr constant [79 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingExamplesInput, Mono.Android\00", align 1 +@.TypeMapEntry.356_to = private unnamed_addr constant [65 x i8] c"android/adservices/ondevicepersonalization/TrainingExamplesInput\00", align 1 +@.TypeMapEntry.357_from = private unnamed_addr constant [88 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingExamplesOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.358_to = private unnamed_addr constant [74 x i8] c"android/adservices/ondevicepersonalization/TrainingExamplesOutput$Builder\00", align 1 +@.TypeMapEntry.359_from = private unnamed_addr constant [80 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingExamplesOutput, Mono.Android\00", align 1 +@.TypeMapEntry.360_to = private unnamed_addr constant [66 x i8] c"android/adservices/ondevicepersonalization/TrainingExamplesOutput\00", align 1 +@.TypeMapEntry.361_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingInterval+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.362_to = private unnamed_addr constant [68 x i8] c"android/adservices/ondevicepersonalization/TrainingInterval$Builder\00", align 1 +@.TypeMapEntry.363_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.OnDevicePersonalization.TrainingInterval, Mono.Android\00", align 1 +@.TypeMapEntry.364_to = private unnamed_addr constant [60 x i8] c"android/adservices/ondevicepersonalization/TrainingInterval\00", align 1 +@.TypeMapEntry.365_from = private unnamed_addr constant [66 x i8] c"Android.AdServices.OnDevicePersonalization.UserData, Mono.Android\00", align 1 +@.TypeMapEntry.366_to = private unnamed_addr constant [52 x i8] c"android/adservices/ondevicepersonalization/UserData\00", align 1 +@.TypeMapEntry.367_from = private unnamed_addr constant [73 x i8] c"Android.AdServices.OnDevicePersonalization.WebTriggerInput, Mono.Android\00", align 1 +@.TypeMapEntry.368_to = private unnamed_addr constant [59 x i8] c"android/adservices/ondevicepersonalization/WebTriggerInput\00", align 1 +@.TypeMapEntry.369_from = private unnamed_addr constant [82 x i8] c"Android.AdServices.OnDevicePersonalization.WebTriggerOutput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.370_to = private unnamed_addr constant [68 x i8] c"android/adservices/ondevicepersonalization/WebTriggerOutput$Builder\00", align 1 +@.TypeMapEntry.371_from = private unnamed_addr constant [74 x i8] c"Android.AdServices.OnDevicePersonalization.WebTriggerOutput, Mono.Android\00", align 1 +@.TypeMapEntry.372_to = private unnamed_addr constant [60 x i8] c"android/adservices/ondevicepersonalization/WebTriggerOutput\00", align 1 +@.TypeMapEntry.373_from = private unnamed_addr constant [65 x i8] c"Android.AdServices.Signals.ProtectedSignalsManager, Mono.Android\00", align 1 +@.TypeMapEntry.374_to = private unnamed_addr constant [51 x i8] c"android/adservices/signals/ProtectedSignalsManager\00", align 1 +@.TypeMapEntry.375_from = private unnamed_addr constant [70 x i8] c"Android.AdServices.Signals.UpdateSignalsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.376_to = private unnamed_addr constant [56 x i8] c"android/adservices/signals/UpdateSignalsRequest$Builder\00", align 1 +@.TypeMapEntry.377_from = private unnamed_addr constant [62 x i8] c"Android.AdServices.Signals.UpdateSignalsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.378_to = private unnamed_addr constant [48 x i8] c"android/adservices/signals/UpdateSignalsRequest\00", align 1 +@.TypeMapEntry.379_from = private unnamed_addr constant [55 x i8] c"Android.AdServices.Topics.EncryptedTopic, Mono.Android\00", align 1 +@.TypeMapEntry.380_to = private unnamed_addr constant [41 x i8] c"android/adservices/topics/EncryptedTopic\00", align 1 +@.TypeMapEntry.381_from = private unnamed_addr constant [65 x i8] c"Android.AdServices.Topics.GetTopicsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.382_to = private unnamed_addr constant [51 x i8] c"android/adservices/topics/GetTopicsRequest$Builder\00", align 1 +@.TypeMapEntry.383_from = private unnamed_addr constant [57 x i8] c"Android.AdServices.Topics.GetTopicsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.384_to = private unnamed_addr constant [43 x i8] c"android/adservices/topics/GetTopicsRequest\00", align 1 +@.TypeMapEntry.385_from = private unnamed_addr constant [66 x i8] c"Android.AdServices.Topics.GetTopicsResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.386_to = private unnamed_addr constant [52 x i8] c"android/adservices/topics/GetTopicsResponse$Builder\00", align 1 +@.TypeMapEntry.387_from = private unnamed_addr constant [58 x i8] c"Android.AdServices.Topics.GetTopicsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.388_to = private unnamed_addr constant [44 x i8] c"android/adservices/topics/GetTopicsResponse\00", align 1 +@.TypeMapEntry.389_from = private unnamed_addr constant [46 x i8] c"Android.AdServices.Topics.Topic, Mono.Android\00", align 1 +@.TypeMapEntry.390_to = private unnamed_addr constant [32 x i8] c"android/adservices/topics/Topic\00", align 1 +@.TypeMapEntry.391_from = private unnamed_addr constant [54 x i8] c"Android.AdServices.Topics.TopicsManager, Mono.Android\00", align 1 +@.TypeMapEntry.392_to = private unnamed_addr constant [40 x i8] c"android/adservices/topics/TopicsManager\00", align 1 +@.TypeMapEntry.393_from = private unnamed_addr constant [59 x i8] c"Android.Animation.Animator+IAnimatorListener, Mono.Android\00", align 1 +@.TypeMapEntry.394_to = private unnamed_addr constant [44 x i8] c"android/animation/Animator$AnimatorListener\00", align 1 +@.TypeMapEntry.395_from = private unnamed_addr constant [70 x i8] c"Android.Animation.Animator+IAnimatorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.396_to = private unnamed_addr constant [60 x i8] c"mono/android/animation/Animator_AnimatorListenerImplementor\00", align 1 +@.TypeMapEntry.397_from = private unnamed_addr constant [66 x i8] c"Android.Animation.Animator+IAnimatorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.398_from = private unnamed_addr constant [64 x i8] c"Android.Animation.Animator+IAnimatorPauseListener, Mono.Android\00", align 1 +@.TypeMapEntry.399_to = private unnamed_addr constant [49 x i8] c"android/animation/Animator$AnimatorPauseListener\00", align 1 +@.TypeMapEntry.400_from = private unnamed_addr constant [75 x i8] c"Android.Animation.Animator+IAnimatorPauseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.401_to = private unnamed_addr constant [65 x i8] c"mono/android/animation/Animator_AnimatorPauseListenerImplementor\00", align 1 +@.TypeMapEntry.402_from = private unnamed_addr constant [71 x i8] c"Android.Animation.Animator+IAnimatorPauseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.403_from = private unnamed_addr constant [41 x i8] c"Android.Animation.Animator, Mono.Android\00", align 1 +@.TypeMapEntry.404_to = private unnamed_addr constant [27 x i8] c"android/animation/Animator\00", align 1 +@.TypeMapEntry.405_from = private unnamed_addr constant [56 x i8] c"Android.Animation.AnimatorEventDispatcher, Mono.Android\00", align 1 +@.TypeMapEntry.406_to = private unnamed_addr constant [47 x i8] c"mono/android/animation/AnimatorEventDispatcher\00", align 1 +@.TypeMapEntry.407_from = private unnamed_addr constant [49 x i8] c"Android.Animation.AnimatorInflater, Mono.Android\00", align 1 +@.TypeMapEntry.408_to = private unnamed_addr constant [35 x i8] c"android/animation/AnimatorInflater\00", align 1 +@.TypeMapEntry.409_from = private unnamed_addr constant [48 x i8] c"Android.Animation.AnimatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.410_from = private unnamed_addr constant [56 x i8] c"Android.Animation.AnimatorListenerAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.411_to = private unnamed_addr constant [42 x i8] c"android/animation/AnimatorListenerAdapter\00", align 1 +@.TypeMapEntry.412_from = private unnamed_addr constant [63 x i8] c"Android.Animation.AnimatorListenerAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.413_from = private unnamed_addr constant [52 x i8] c"Android.Animation.AnimatorSet+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.414_to = private unnamed_addr constant [38 x i8] c"android/animation/AnimatorSet$Builder\00", align 1 +@.TypeMapEntry.415_from = private unnamed_addr constant [44 x i8] c"Android.Animation.AnimatorSet, Mono.Android\00", align 1 +@.TypeMapEntry.416_to = private unnamed_addr constant [30 x i8] c"android/animation/AnimatorSet\00", align 1 +@.TypeMapEntry.417_from = private unnamed_addr constant [46 x i8] c"Android.Animation.ArgbEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.418_to = private unnamed_addr constant [32 x i8] c"android/animation/ArgbEvaluator\00", align 1 +@.TypeMapEntry.419_from = private unnamed_addr constant [59 x i8] c"Android.Animation.BidirectionalTypeConverter, Mono.Android\00", align 1 +@.TypeMapEntry.420_to = private unnamed_addr constant [45 x i8] c"android/animation/BidirectionalTypeConverter\00", align 1 +@.TypeMapEntry.421_from = private unnamed_addr constant [66 x i8] c"Android.Animation.BidirectionalTypeConverterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.422_from = private unnamed_addr constant [52 x i8] c"Android.Animation.FloatArrayEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.423_to = private unnamed_addr constant [38 x i8] c"android/animation/FloatArrayEvaluator\00", align 1 +@.TypeMapEntry.424_from = private unnamed_addr constant [47 x i8] c"Android.Animation.FloatEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.425_to = private unnamed_addr constant [33 x i8] c"android/animation/FloatEvaluator\00", align 1 +@.TypeMapEntry.426_from = private unnamed_addr constant [50 x i8] c"Android.Animation.ITimeInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.427_to = private unnamed_addr constant [35 x i8] c"android/animation/TimeInterpolator\00", align 1 +@.TypeMapEntry.428_from = private unnamed_addr constant [57 x i8] c"Android.Animation.ITimeInterpolatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.429_from = private unnamed_addr constant [47 x i8] c"Android.Animation.ITypeEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.430_to = private unnamed_addr constant [32 x i8] c"android/animation/TypeEvaluator\00", align 1 +@.TypeMapEntry.431_from = private unnamed_addr constant [54 x i8] c"Android.Animation.ITypeEvaluatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.432_from = private unnamed_addr constant [50 x i8] c"Android.Animation.IntArrayEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.433_to = private unnamed_addr constant [36 x i8] c"android/animation/IntArrayEvaluator\00", align 1 +@.TypeMapEntry.434_from = private unnamed_addr constant [45 x i8] c"Android.Animation.IntEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.435_to = private unnamed_addr constant [31 x i8] c"android/animation/IntEvaluator\00", align 1 +@.TypeMapEntry.436_from = private unnamed_addr constant [41 x i8] c"Android.Animation.Keyframe, Mono.Android\00", align 1 +@.TypeMapEntry.437_to = private unnamed_addr constant [27 x i8] c"android/animation/Keyframe\00", align 1 +@.TypeMapEntry.438_from = private unnamed_addr constant [48 x i8] c"Android.Animation.KeyframeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.439_from = private unnamed_addr constant [69 x i8] c"Android.Animation.LayoutTransition+ITransitionListener, Mono.Android\00", align 1 +@.TypeMapEntry.440_to = private unnamed_addr constant [54 x i8] c"android/animation/LayoutTransition$TransitionListener\00", align 1 +@.TypeMapEntry.441_from = private unnamed_addr constant [80 x i8] c"Android.Animation.LayoutTransition+ITransitionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.442_to = private unnamed_addr constant [70 x i8] c"mono/android/animation/LayoutTransition_TransitionListenerImplementor\00", align 1 +@.TypeMapEntry.443_from = private unnamed_addr constant [76 x i8] c"Android.Animation.LayoutTransition+ITransitionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.444_from = private unnamed_addr constant [49 x i8] c"Android.Animation.LayoutTransition, Mono.Android\00", align 1 +@.TypeMapEntry.445_to = private unnamed_addr constant [35 x i8] c"android/animation/LayoutTransition\00", align 1 +@.TypeMapEntry.446_from = private unnamed_addr constant [47 x i8] c"Android.Animation.ObjectAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.447_to = private unnamed_addr constant [33 x i8] c"android/animation/ObjectAnimator\00", align 1 +@.TypeMapEntry.448_from = private unnamed_addr constant [48 x i8] c"Android.Animation.PointFEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.449_to = private unnamed_addr constant [34 x i8] c"android/animation/PointFEvaluator\00", align 1 +@.TypeMapEntry.450_from = private unnamed_addr constant [53 x i8] c"Android.Animation.PropertyValuesHolder, Mono.Android\00", align 1 +@.TypeMapEntry.451_to = private unnamed_addr constant [39 x i8] c"android/animation/PropertyValuesHolder\00", align 1 +@.TypeMapEntry.452_from = private unnamed_addr constant [46 x i8] c"Android.Animation.RectEvaluator, Mono.Android\00", align 1 +@.TypeMapEntry.453_to = private unnamed_addr constant [32 x i8] c"android/animation/RectEvaluator\00", align 1 +@.TypeMapEntry.454_from = private unnamed_addr constant [50 x i8] c"Android.Animation.StateListAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.455_to = private unnamed_addr constant [36 x i8] c"android/animation/StateListAnimator\00", align 1 +@.TypeMapEntry.456_from = private unnamed_addr constant [59 x i8] c"Android.Animation.TimeAnimator+ITimeListener, Mono.Android\00", align 1 +@.TypeMapEntry.457_to = private unnamed_addr constant [44 x i8] c"android/animation/TimeAnimator$TimeListener\00", align 1 +@.TypeMapEntry.458_from = private unnamed_addr constant [70 x i8] c"Android.Animation.TimeAnimator+ITimeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.459_to = private unnamed_addr constant [60 x i8] c"mono/android/animation/TimeAnimator_TimeListenerImplementor\00", align 1 +@.TypeMapEntry.460_from = private unnamed_addr constant [66 x i8] c"Android.Animation.TimeAnimator+ITimeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.461_from = private unnamed_addr constant [45 x i8] c"Android.Animation.TimeAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.462_to = private unnamed_addr constant [31 x i8] c"android/animation/TimeAnimator\00", align 1 +@.TypeMapEntry.463_from = private unnamed_addr constant [46 x i8] c"Android.Animation.TypeConverter, Mono.Android\00", align 1 +@.TypeMapEntry.464_to = private unnamed_addr constant [32 x i8] c"android/animation/TypeConverter\00", align 1 +@.TypeMapEntry.465_from = private unnamed_addr constant [53 x i8] c"Android.Animation.TypeConverterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.466_from = private unnamed_addr constant [70 x i8] c"Android.Animation.ValueAnimator+IAnimatorUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.467_to = private unnamed_addr constant [55 x i8] c"android/animation/ValueAnimator$AnimatorUpdateListener\00", align 1 +@.TypeMapEntry.468_from = private unnamed_addr constant [81 x i8] c"Android.Animation.ValueAnimator+IAnimatorUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.469_to = private unnamed_addr constant [71 x i8] c"mono/android/animation/ValueAnimator_AnimatorUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.470_from = private unnamed_addr constant [77 x i8] c"Android.Animation.ValueAnimator+IAnimatorUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.471_from = private unnamed_addr constant [75 x i8] c"Android.Animation.ValueAnimator+IDurationScaleChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.472_to = private unnamed_addr constant [60 x i8] c"android/animation/ValueAnimator$DurationScaleChangeListener\00", align 1 +@.TypeMapEntry.473_from = private unnamed_addr constant [86 x i8] c"Android.Animation.ValueAnimator+IDurationScaleChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.474_to = private unnamed_addr constant [76 x i8] c"mono/android/animation/ValueAnimator_DurationScaleChangeListenerImplementor\00", align 1 +@.TypeMapEntry.475_from = private unnamed_addr constant [82 x i8] c"Android.Animation.ValueAnimator+IDurationScaleChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.476_from = private unnamed_addr constant [46 x i8] c"Android.Animation.ValueAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.477_to = private unnamed_addr constant [32 x i8] c"android/animation/ValueAnimator\00", align 1 +@.TypeMapEntry.478_from = private unnamed_addr constant [47 x i8] c"Android.Annotation.ISuppressLint, Mono.Android\00", align 1 +@.TypeMapEntry.479_to = private unnamed_addr constant [32 x i8] c"android/annotation/SuppressLint\00", align 1 +@.TypeMapEntry.480_from = private unnamed_addr constant [54 x i8] c"Android.Annotation.ISuppressLintInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.481_from = private unnamed_addr constant [44 x i8] c"Android.Annotation.ITargetApi, Mono.Android\00", align 1 +@.TypeMapEntry.482_to = private unnamed_addr constant [29 x i8] c"android/annotation/TargetApi\00", align 1 +@.TypeMapEntry.483_from = private unnamed_addr constant [51 x i8] c"Android.Annotation.ITargetApiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.484_from = private unnamed_addr constant [46 x i8] c"Android.Annotation.SuppressLint, Mono.Android\00", align 1 +@.TypeMapEntry.485_from = private unnamed_addr constant [53 x i8] c"Android.Annotation.SuppressLintInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.486_from = private unnamed_addr constant [43 x i8] c"Android.Annotation.TargetApi, Mono.Android\00", align 1 +@.TypeMapEntry.487_from = private unnamed_addr constant [50 x i8] c"Android.Annotation.TargetApiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.488_from = private unnamed_addr constant [62 x i8] c"Android.App.ActionBar+IOnMenuVisibilityListener, Mono.Android\00", align 1 +@.TypeMapEntry.489_to = private unnamed_addr constant [47 x i8] c"android/app/ActionBar$OnMenuVisibilityListener\00", align 1 +@.TypeMapEntry.490_from = private unnamed_addr constant [73 x i8] c"Android.App.ActionBar+IOnMenuVisibilityListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.491_to = private unnamed_addr constant [63 x i8] c"mono/android/app/ActionBar_OnMenuVisibilityListenerImplementor\00", align 1 +@.TypeMapEntry.492_from = private unnamed_addr constant [69 x i8] c"Android.App.ActionBar+IOnMenuVisibilityListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.493_from = private unnamed_addr constant [58 x i8] c"Android.App.ActionBar+IOnNavigationListener, Mono.Android\00", align 1 +@.TypeMapEntry.494_to = private unnamed_addr constant [43 x i8] c"android/app/ActionBar$OnNavigationListener\00", align 1 +@.TypeMapEntry.495_from = private unnamed_addr constant [69 x i8] c"Android.App.ActionBar+IOnNavigationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.496_to = private unnamed_addr constant [59 x i8] c"mono/android/app/ActionBar_OnNavigationListenerImplementor\00", align 1 +@.TypeMapEntry.497_from = private unnamed_addr constant [65 x i8] c"Android.App.ActionBar+IOnNavigationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.498_from = private unnamed_addr constant [49 x i8] c"Android.App.ActionBar+ITabListener, Mono.Android\00", align 1 +@.TypeMapEntry.499_to = private unnamed_addr constant [34 x i8] c"android/app/ActionBar$TabListener\00", align 1 +@.TypeMapEntry.500_from = private unnamed_addr constant [60 x i8] c"Android.App.ActionBar+ITabListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.501_to = private unnamed_addr constant [50 x i8] c"mono/android/app/ActionBar_TabListenerImplementor\00", align 1 +@.TypeMapEntry.502_from = private unnamed_addr constant [56 x i8] c"Android.App.ActionBar+ITabListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.503_from = private unnamed_addr constant [49 x i8] c"Android.App.ActionBar+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.504_to = private unnamed_addr constant [35 x i8] c"android/app/ActionBar$LayoutParams\00", align 1 +@.TypeMapEntry.505_from = private unnamed_addr constant [40 x i8] c"Android.App.ActionBar+Tab, Mono.Android\00", align 1 +@.TypeMapEntry.506_to = private unnamed_addr constant [26 x i8] c"android/app/ActionBar$Tab\00", align 1 +@.TypeMapEntry.507_from = private unnamed_addr constant [47 x i8] c"Android.App.ActionBar+TabInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.508_from = private unnamed_addr constant [36 x i8] c"Android.App.ActionBar, Mono.Android\00", align 1 +@.TypeMapEntry.509_to = private unnamed_addr constant [22 x i8] c"android/app/ActionBar\00", align 1 +@.TypeMapEntry.510_from = private unnamed_addr constant [43 x i8] c"Android.App.ActionBarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.511_from = private unnamed_addr constant [58 x i8] c"Android.App.Activity+IScreenCaptureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.512_to = private unnamed_addr constant [43 x i8] c"android/app/Activity$ScreenCaptureCallback\00", align 1 +@.TypeMapEntry.513_from = private unnamed_addr constant [65 x i8] c"Android.App.Activity+IScreenCaptureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.514_from = private unnamed_addr constant [35 x i8] c"Android.App.Activity, Mono.Android\00", align 1 +@.TypeMapEntry.515_to = private unnamed_addr constant [21 x i8] c"android/app/Activity\00", align 1 +@.TypeMapEntry.516_from = private unnamed_addr constant [40 x i8] c"Android.App.ActivityGroup, Mono.Android\00", align 1 +@.TypeMapEntry.517_to = private unnamed_addr constant [26 x i8] c"android/app/ActivityGroup\00", align 1 +@.TypeMapEntry.518_from = private unnamed_addr constant [50 x i8] c"Android.App.ActivityManager+AppTask, Mono.Android\00", align 1 +@.TypeMapEntry.519_to = private unnamed_addr constant [36 x i8] c"android/app/ActivityManager$AppTask\00", align 1 +@.TypeMapEntry.520_from = private unnamed_addr constant [53 x i8] c"Android.App.ActivityManager+MemoryInfo, Mono.Android\00", align 1 +@.TypeMapEntry.521_to = private unnamed_addr constant [39 x i8] c"android/app/ActivityManager$MemoryInfo\00", align 1 +@.TypeMapEntry.522_from = private unnamed_addr constant [64 x i8] c"Android.App.ActivityManager+ProcessErrorStateInfo, Mono.Android\00", align 1 +@.TypeMapEntry.523_to = private unnamed_addr constant [50 x i8] c"android/app/ActivityManager$ProcessErrorStateInfo\00", align 1 +@.TypeMapEntry.524_from = private unnamed_addr constant [57 x i8] c"Android.App.ActivityManager+RecentTaskInfo, Mono.Android\00", align 1 +@.TypeMapEntry.525_to = private unnamed_addr constant [43 x i8] c"android/app/ActivityManager$RecentTaskInfo\00", align 1 +@.TypeMapEntry.526_from = private unnamed_addr constant [64 x i8] c"Android.App.ActivityManager+RunningAppProcessInfo, Mono.Android\00", align 1 +@.TypeMapEntry.527_to = private unnamed_addr constant [50 x i8] c"android/app/ActivityManager$RunningAppProcessInfo\00", align 1 +@.TypeMapEntry.528_from = private unnamed_addr constant [61 x i8] c"Android.App.ActivityManager+RunningServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.529_to = private unnamed_addr constant [47 x i8] c"android/app/ActivityManager$RunningServiceInfo\00", align 1 +@.TypeMapEntry.530_from = private unnamed_addr constant [58 x i8] c"Android.App.ActivityManager+RunningTaskInfo, Mono.Android\00", align 1 +@.TypeMapEntry.531_to = private unnamed_addr constant [44 x i8] c"android/app/ActivityManager$RunningTaskInfo\00", align 1 +@.TypeMapEntry.532_from = private unnamed_addr constant [66 x i8] c"Android.App.ActivityManager+TaskDescription+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.533_to = private unnamed_addr constant [52 x i8] c"android/app/ActivityManager$TaskDescription$Builder\00", align 1 +@.TypeMapEntry.534_from = private unnamed_addr constant [58 x i8] c"Android.App.ActivityManager+TaskDescription, Mono.Android\00", align 1 +@.TypeMapEntry.535_to = private unnamed_addr constant [44 x i8] c"android/app/ActivityManager$TaskDescription\00", align 1 +@.TypeMapEntry.536_from = private unnamed_addr constant [42 x i8] c"Android.App.ActivityManager, Mono.Android\00", align 1 +@.TypeMapEntry.537_to = private unnamed_addr constant [28 x i8] c"android/app/ActivityManager\00", align 1 +@.TypeMapEntry.538_from = private unnamed_addr constant [42 x i8] c"Android.App.ActivityOptions, Mono.Android\00", align 1 +@.TypeMapEntry.539_to = private unnamed_addr constant [28 x i8] c"android/app/ActivityOptions\00", align 1 +@.TypeMapEntry.540_from = private unnamed_addr constant [42 x i8] c"Android.App.ActivityTracker, Mono.Android\00", align 1 +@.TypeMapEntry.541_to = private unnamed_addr constant [28 x i8] c"android/app/ActivityTracker\00", align 1 +@.TypeMapEntry.542_from = private unnamed_addr constant [45 x i8] c"Android.App.Admin.ConnectEvent, Mono.Android\00", align 1 +@.TypeMapEntry.543_to = private unnamed_addr constant [31 x i8] c"android/app/admin/ConnectEvent\00", align 1 +@.TypeMapEntry.544_from = private unnamed_addr constant [55 x i8] c"Android.App.Admin.DelegatedAdminReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.545_to = private unnamed_addr constant [41 x i8] c"android/app/admin/DelegatedAdminReceiver\00", align 1 +@.TypeMapEntry.546_from = private unnamed_addr constant [48 x i8] c"Android.App.Admin.DeviceAdminInfo, Mono.Android\00", align 1 +@.TypeMapEntry.547_to = private unnamed_addr constant [34 x i8] c"android/app/admin/DeviceAdminInfo\00", align 1 +@.TypeMapEntry.548_from = private unnamed_addr constant [52 x i8] c"Android.App.Admin.DeviceAdminReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.549_to = private unnamed_addr constant [38 x i8] c"android/app/admin/DeviceAdminReceiver\00", align 1 +@.TypeMapEntry.550_from = private unnamed_addr constant [51 x i8] c"Android.App.Admin.DeviceAdminService, Mono.Android\00", align 1 +@.TypeMapEntry.551_to = private unnamed_addr constant [37 x i8] c"android/app/admin/DeviceAdminService\00", align 1 +@.TypeMapEntry.552_from = private unnamed_addr constant [56 x i8] c"Android.App.Admin.DevicePolicyIdentifiers, Mono.Android\00", align 1 +@.TypeMapEntry.553_to = private unnamed_addr constant [42 x i8] c"android/app/admin/DevicePolicyIdentifiers\00", align 1 +@.TypeMapEntry.554_from = private unnamed_addr constant [88 x i8] c"Android.App.Admin.DevicePolicyManager+IOnClearApplicationUserDataListener, Mono.Android\00", align 1 +@.TypeMapEntry.555_to = private unnamed_addr constant [73 x i8] c"android/app/admin/DevicePolicyManager$OnClearApplicationUserDataListener\00", align 1 +@.TypeMapEntry.556_from = private unnamed_addr constant [99 x i8] c"Android.App.Admin.DevicePolicyManager+IOnClearApplicationUserDataListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.557_to = private unnamed_addr constant [89 x i8] c"mono/android/app/admin/DevicePolicyManager_OnClearApplicationUserDataListenerImplementor\00", align 1 +@.TypeMapEntry.558_from = private unnamed_addr constant [95 x i8] c"Android.App.Admin.DevicePolicyManager+IOnClearApplicationUserDataListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.559_from = private unnamed_addr constant [80 x i8] c"Android.App.Admin.DevicePolicyManager+InstallSystemUpdateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.560_to = private unnamed_addr constant [66 x i8] c"android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback\00", align 1 +@.TypeMapEntry.561_from = private unnamed_addr constant [87 x i8] c"Android.App.Admin.DevicePolicyManager+InstallSystemUpdateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.562_from = private unnamed_addr constant [52 x i8] c"Android.App.Admin.DevicePolicyManager, Mono.Android\00", align 1 +@.TypeMapEntry.563_to = private unnamed_addr constant [38 x i8] c"android/app/admin/DevicePolicyManager\00", align 1 +@.TypeMapEntry.564_from = private unnamed_addr constant [54 x i8] c"Android.App.Admin.DevicePolicyResources, Mono.Android\00", align 1 +@.TypeMapEntry.565_to = private unnamed_addr constant [40 x i8] c"android/app/admin/DevicePolicyResources\00", align 1 +@.TypeMapEntry.566_from = private unnamed_addr constant [61 x i8] c"Android.App.Admin.DevicePolicyResourcesManager, Mono.Android\00", align 1 +@.TypeMapEntry.567_to = private unnamed_addr constant [47 x i8] c"android/app/admin/DevicePolicyResourcesManager\00", align 1 +@.TypeMapEntry.568_from = private unnamed_addr constant [41 x i8] c"Android.App.Admin.DnsEvent, Mono.Android\00", align 1 +@.TypeMapEntry.569_to = private unnamed_addr constant [27 x i8] c"android/app/admin/DnsEvent\00", align 1 +@.TypeMapEntry.570_from = private unnamed_addr constant [69 x i8] c"Android.App.Admin.FactoryResetProtectionPolicy+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.571_to = private unnamed_addr constant [55 x i8] c"android/app/admin/FactoryResetProtectionPolicy$Builder\00", align 1 +@.TypeMapEntry.572_from = private unnamed_addr constant [61 x i8] c"Android.App.Admin.FactoryResetProtectionPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.573_to = private unnamed_addr constant [47 x i8] c"android/app/admin/FactoryResetProtectionPolicy\00", align 1 +@.TypeMapEntry.574_from = private unnamed_addr constant [45 x i8] c"Android.App.Admin.FreezePeriod, Mono.Android\00", align 1 +@.TypeMapEntry.575_to = private unnamed_addr constant [31 x i8] c"android/app/admin/FreezePeriod\00", align 1 +@.TypeMapEntry.576_from = private unnamed_addr constant [59 x i8] c"Android.App.Admin.ManagedSubscriptionsPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.577_to = private unnamed_addr constant [45 x i8] c"android/app/admin/ManagedSubscriptionsPolicy\00", align 1 +@.TypeMapEntry.578_from = private unnamed_addr constant [45 x i8] c"Android.App.Admin.NetworkEvent, Mono.Android\00", align 1 +@.TypeMapEntry.579_to = private unnamed_addr constant [31 x i8] c"android/app/admin/NetworkEvent\00", align 1 +@.TypeMapEntry.580_from = private unnamed_addr constant [52 x i8] c"Android.App.Admin.NetworkEventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.581_from = private unnamed_addr constant [46 x i8] c"Android.App.Admin.PackagePolicy, Mono.Android\00", align 1 +@.TypeMapEntry.582_to = private unnamed_addr constant [32 x i8] c"android/app/admin/PackagePolicy\00", align 1 +@.TypeMapEntry.583_from = private unnamed_addr constant [53 x i8] c"Android.App.Admin.PolicyUpdateReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.584_to = private unnamed_addr constant [39 x i8] c"android/app/admin/PolicyUpdateReceiver\00", align 1 +@.TypeMapEntry.585_from = private unnamed_addr constant [60 x i8] c"Android.App.Admin.PolicyUpdateReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.586_from = private unnamed_addr constant [51 x i8] c"Android.App.Admin.PolicyUpdateResult, Mono.Android\00", align 1 +@.TypeMapEntry.587_to = private unnamed_addr constant [37 x i8] c"android/app/admin/PolicyUpdateResult\00", align 1 +@.TypeMapEntry.588_from = private unnamed_addr constant [73 x i8] c"Android.App.Admin.PreferentialNetworkServiceConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.589_to = private unnamed_addr constant [59 x i8] c"android/app/admin/PreferentialNetworkServiceConfig$Builder\00", align 1 +@.TypeMapEntry.590_from = private unnamed_addr constant [65 x i8] c"Android.App.Admin.PreferentialNetworkServiceConfig, Mono.Android\00", align 1 +@.TypeMapEntry.591_to = private unnamed_addr constant [51 x i8] c"android/app/admin/PreferentialNetworkServiceConfig\00", align 1 +@.TypeMapEntry.592_from = private unnamed_addr constant [58 x i8] c"Android.App.Admin.SecurityLog+SecurityEvent, Mono.Android\00", align 1 +@.TypeMapEntry.593_to = private unnamed_addr constant [44 x i8] c"android/app/admin/SecurityLog$SecurityEvent\00", align 1 +@.TypeMapEntry.594_from = private unnamed_addr constant [44 x i8] c"Android.App.Admin.SecurityLog, Mono.Android\00", align 1 +@.TypeMapEntry.595_to = private unnamed_addr constant [30 x i8] c"android/app/admin/SecurityLog\00", align 1 +@.TypeMapEntry.596_from = private unnamed_addr constant [49 x i8] c"Android.App.Admin.SystemUpdateInfo, Mono.Android\00", align 1 +@.TypeMapEntry.597_to = private unnamed_addr constant [35 x i8] c"android/app/admin/SystemUpdateInfo\00", align 1 +@.TypeMapEntry.598_from = private unnamed_addr constant [77 x i8] c"Android.App.Admin.SystemUpdatePolicy+ValidationFailedException, Mono.Android\00", align 1 +@.TypeMapEntry.599_to = private unnamed_addr constant [63 x i8] c"android/app/admin/SystemUpdatePolicy$ValidationFailedException\00", align 1 +@.TypeMapEntry.600_from = private unnamed_addr constant [51 x i8] c"Android.App.Admin.SystemUpdatePolicy, Mono.Android\00", align 1 +@.TypeMapEntry.601_to = private unnamed_addr constant [37 x i8] c"android/app/admin/SystemUpdatePolicy\00", align 1 +@.TypeMapEntry.602_from = private unnamed_addr constant [43 x i8] c"Android.App.Admin.TargetUser, Mono.Android\00", align 1 +@.TypeMapEntry.603_to = private unnamed_addr constant [29 x i8] c"android/app/admin/TargetUser\00", align 1 +@.TypeMapEntry.604_from = private unnamed_addr constant [53 x i8] c"Android.App.Admin.UnsafeStateException, Mono.Android\00", align 1 +@.TypeMapEntry.605_to = private unnamed_addr constant [39 x i8] c"android/app/admin/UnsafeStateException\00", align 1 +@.TypeMapEntry.606_from = private unnamed_addr constant [47 x i8] c"Android.App.Admin.WifiSsidPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.607_to = private unnamed_addr constant [33 x i8] c"android/app/admin/WifiSsidPolicy\00", align 1 +@.TypeMapEntry.608_from = private unnamed_addr constant [54 x i8] c"Android.App.AlarmManager+AlarmClockInfo, Mono.Android\00", align 1 +@.TypeMapEntry.609_to = private unnamed_addr constant [40 x i8] c"android/app/AlarmManager$AlarmClockInfo\00", align 1 +@.TypeMapEntry.610_from = private unnamed_addr constant [56 x i8] c"Android.App.AlarmManager+IOnAlarmListener, Mono.Android\00", align 1 +@.TypeMapEntry.611_to = private unnamed_addr constant [41 x i8] c"android/app/AlarmManager$OnAlarmListener\00", align 1 +@.TypeMapEntry.612_from = private unnamed_addr constant [67 x i8] c"Android.App.AlarmManager+IOnAlarmListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.613_to = private unnamed_addr constant [57 x i8] c"mono/android/app/AlarmManager_OnAlarmListenerImplementor\00", align 1 +@.TypeMapEntry.614_from = private unnamed_addr constant [63 x i8] c"Android.App.AlarmManager+IOnAlarmListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.615_from = private unnamed_addr constant [39 x i8] c"Android.App.AlarmManager, Mono.Android\00", align 1 +@.TypeMapEntry.616_to = private unnamed_addr constant [25 x i8] c"android/app/AlarmManager\00", align 1 +@.TypeMapEntry.617_from = private unnamed_addr constant [46 x i8] c"Android.App.AlertDialog+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.618_to = private unnamed_addr constant [32 x i8] c"android/app/AlertDialog$Builder\00", align 1 +@.TypeMapEntry.619_from = private unnamed_addr constant [38 x i8] c"Android.App.AlertDialog, Mono.Android\00", align 1 +@.TypeMapEntry.620_to = private unnamed_addr constant [24 x i8] c"android/app/AlertDialog\00", align 1 +@.TypeMapEntry.621_from = private unnamed_addr constant [40 x i8] c"Android.App.AliasActivity, Mono.Android\00", align 1 +@.TypeMapEntry.622_to = private unnamed_addr constant [26 x i8] c"android/app/AliasActivity\00", align 1 +@.TypeMapEntry.623_from = private unnamed_addr constant [46 x i8] c"Android.App.AppComponentFactory, Mono.Android\00", align 1 +@.TypeMapEntry.624_to = private unnamed_addr constant [32 x i8] c"android/app/AppComponentFactory\00", align 1 +@.TypeMapEntry.625_from = private unnamed_addr constant [67 x i8] c"Android.App.AppOpsManager+IOnOpActiveChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.626_to = private unnamed_addr constant [52 x i8] c"android/app/AppOpsManager$OnOpActiveChangedListener\00", align 1 +@.TypeMapEntry.627_from = private unnamed_addr constant [78 x i8] c"Android.App.AppOpsManager+IOnOpActiveChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.628_to = private unnamed_addr constant [68 x i8] c"mono/android/app/AppOpsManager_OnOpActiveChangedListenerImplementor\00", align 1 +@.TypeMapEntry.629_from = private unnamed_addr constant [74 x i8] c"Android.App.AppOpsManager+IOnOpActiveChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.630_from = private unnamed_addr constant [61 x i8] c"Android.App.AppOpsManager+IOnOpChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.631_to = private unnamed_addr constant [46 x i8] c"android/app/AppOpsManager$OnOpChangedListener\00", align 1 +@.TypeMapEntry.632_from = private unnamed_addr constant [72 x i8] c"Android.App.AppOpsManager+IOnOpChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.633_to = private unnamed_addr constant [62 x i8] c"mono/android/app/AppOpsManager_OnOpChangedListenerImplementor\00", align 1 +@.TypeMapEntry.634_from = private unnamed_addr constant [68 x i8] c"Android.App.AppOpsManager+IOnOpChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.635_from = private unnamed_addr constant [58 x i8] c"Android.App.AppOpsManager+OnOpNotedCallback, Mono.Android\00", align 1 +@.TypeMapEntry.636_to = private unnamed_addr constant [44 x i8] c"android/app/AppOpsManager$OnOpNotedCallback\00", align 1 +@.TypeMapEntry.637_from = private unnamed_addr constant [65 x i8] c"Android.App.AppOpsManager+OnOpNotedCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.638_from = private unnamed_addr constant [40 x i8] c"Android.App.AppOpsManager, Mono.Android\00", align 1 +@.TypeMapEntry.639_to = private unnamed_addr constant [26 x i8] c"android/app/AppOpsManager\00", align 1 +@.TypeMapEntry.640_from = private unnamed_addr constant [65 x i8] c"Android.App.AppSearch.AppSearchBatchResult+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.641_to = private unnamed_addr constant [51 x i8] c"android/app/appsearch/AppSearchBatchResult$Builder\00", align 1 +@.TypeMapEntry.642_from = private unnamed_addr constant [57 x i8] c"Android.App.AppSearch.AppSearchBatchResult, Mono.Android\00", align 1 +@.TypeMapEntry.643_to = private unnamed_addr constant [43 x i8] c"android/app/appsearch/AppSearchBatchResult\00", align 1 +@.TypeMapEntry.644_from = private unnamed_addr constant [75 x i8] c"Android.App.AppSearch.AppSearchManager+SearchContext+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.645_to = private unnamed_addr constant [61 x i8] c"android/app/appsearch/AppSearchManager$SearchContext$Builder\00", align 1 +@.TypeMapEntry.646_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.AppSearchManager+SearchContext, Mono.Android\00", align 1 +@.TypeMapEntry.647_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/AppSearchManager$SearchContext\00", align 1 +@.TypeMapEntry.648_from = private unnamed_addr constant [53 x i8] c"Android.App.AppSearch.AppSearchManager, Mono.Android\00", align 1 +@.TypeMapEntry.649_to = private unnamed_addr constant [39 x i8] c"android/app/appsearch/AppSearchManager\00", align 1 +@.TypeMapEntry.650_from = private unnamed_addr constant [52 x i8] c"Android.App.AppSearch.AppSearchResult, Mono.Android\00", align 1 +@.TypeMapEntry.651_to = private unnamed_addr constant [38 x i8] c"android/app/appsearch/AppSearchResult\00", align 1 +@.TypeMapEntry.652_from = private unnamed_addr constant [82 x i8] c"Android.App.AppSearch.AppSearchSchema+BooleanPropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.653_to = private unnamed_addr constant [68 x i8] c"android/app/appsearch/AppSearchSchema$BooleanPropertyConfig$Builder\00", align 1 +@.TypeMapEntry.654_from = private unnamed_addr constant [74 x i8] c"Android.App.AppSearch.AppSearchSchema+BooleanPropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.655_to = private unnamed_addr constant [60 x i8] c"android/app/appsearch/AppSearchSchema$BooleanPropertyConfig\00", align 1 +@.TypeMapEntry.656_from = private unnamed_addr constant [60 x i8] c"Android.App.AppSearch.AppSearchSchema+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.657_to = private unnamed_addr constant [46 x i8] c"android/app/appsearch/AppSearchSchema$Builder\00", align 1 +@.TypeMapEntry.658_from = private unnamed_addr constant [80 x i8] c"Android.App.AppSearch.AppSearchSchema+BytesPropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.659_to = private unnamed_addr constant [66 x i8] c"android/app/appsearch/AppSearchSchema$BytesPropertyConfig$Builder\00", align 1 +@.TypeMapEntry.660_from = private unnamed_addr constant [72 x i8] c"Android.App.AppSearch.AppSearchSchema+BytesPropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.661_to = private unnamed_addr constant [58 x i8] c"android/app/appsearch/AppSearchSchema$BytesPropertyConfig\00", align 1 +@.TypeMapEntry.662_from = private unnamed_addr constant [83 x i8] c"Android.App.AppSearch.AppSearchSchema+DocumentPropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.663_to = private unnamed_addr constant [69 x i8] c"android/app/appsearch/AppSearchSchema$DocumentPropertyConfig$Builder\00", align 1 +@.TypeMapEntry.664_from = private unnamed_addr constant [75 x i8] c"Android.App.AppSearch.AppSearchSchema+DocumentPropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.665_to = private unnamed_addr constant [61 x i8] c"android/app/appsearch/AppSearchSchema$DocumentPropertyConfig\00", align 1 +@.TypeMapEntry.666_from = private unnamed_addr constant [81 x i8] c"Android.App.AppSearch.AppSearchSchema+DoublePropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.667_to = private unnamed_addr constant [67 x i8] c"android/app/appsearch/AppSearchSchema$DoublePropertyConfig$Builder\00", align 1 +@.TypeMapEntry.668_from = private unnamed_addr constant [73 x i8] c"Android.App.AppSearch.AppSearchSchema+DoublePropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.669_to = private unnamed_addr constant [59 x i8] c"android/app/appsearch/AppSearchSchema$DoublePropertyConfig\00", align 1 +@.TypeMapEntry.670_from = private unnamed_addr constant [79 x i8] c"Android.App.AppSearch.AppSearchSchema+LongPropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.671_to = private unnamed_addr constant [65 x i8] c"android/app/appsearch/AppSearchSchema$LongPropertyConfig$Builder\00", align 1 +@.TypeMapEntry.672_from = private unnamed_addr constant [71 x i8] c"Android.App.AppSearch.AppSearchSchema+LongPropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.673_to = private unnamed_addr constant [57 x i8] c"android/app/appsearch/AppSearchSchema$LongPropertyConfig\00", align 1 +@.TypeMapEntry.674_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.AppSearchSchema+PropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.675_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/AppSearchSchema$PropertyConfig\00", align 1 +@.TypeMapEntry.676_from = private unnamed_addr constant [74 x i8] c"Android.App.AppSearch.AppSearchSchema+PropertyConfigInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.677_from = private unnamed_addr constant [81 x i8] c"Android.App.AppSearch.AppSearchSchema+StringPropertyConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.678_to = private unnamed_addr constant [67 x i8] c"android/app/appsearch/AppSearchSchema$StringPropertyConfig$Builder\00", align 1 +@.TypeMapEntry.679_from = private unnamed_addr constant [73 x i8] c"Android.App.AppSearch.AppSearchSchema+StringPropertyConfig, Mono.Android\00", align 1 +@.TypeMapEntry.680_to = private unnamed_addr constant [59 x i8] c"android/app/appsearch/AppSearchSchema$StringPropertyConfig\00", align 1 +@.TypeMapEntry.681_from = private unnamed_addr constant [52 x i8] c"Android.App.AppSearch.AppSearchSchema, Mono.Android\00", align 1 +@.TypeMapEntry.682_to = private unnamed_addr constant [38 x i8] c"android/app/appsearch/AppSearchSchema\00", align 1 +@.TypeMapEntry.683_from = private unnamed_addr constant [53 x i8] c"Android.App.AppSearch.AppSearchSession, Mono.Android\00", align 1 +@.TypeMapEntry.684_to = private unnamed_addr constant [39 x i8] c"android/app/appsearch/AppSearchSession\00", align 1 +@.TypeMapEntry.685_from = private unnamed_addr constant [66 x i8] c"Android.App.AppSearch.EnterpriseGlobalSearchSession, Mono.Android\00", align 1 +@.TypeMapEntry.686_to = private unnamed_addr constant [52 x i8] c"android/app/appsearch/EnterpriseGlobalSearchSession\00", align 1 +@.TypeMapEntry.687_from = private unnamed_addr constant [66 x i8] c"Android.App.AppSearch.Exceptions.AppSearchException, Mono.Android\00", align 1 +@.TypeMapEntry.688_to = private unnamed_addr constant [52 x i8] c"android/app/appsearch/exceptions/AppSearchException\00", align 1 +@.TypeMapEntry.689_from = private unnamed_addr constant [60 x i8] c"Android.App.AppSearch.GenericDocument+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.690_to = private unnamed_addr constant [46 x i8] c"android/app/appsearch/GenericDocument$Builder\00", align 1 +@.TypeMapEntry.691_from = private unnamed_addr constant [52 x i8] c"Android.App.AppSearch.GenericDocument, Mono.Android\00", align 1 +@.TypeMapEntry.692_to = private unnamed_addr constant [38 x i8] c"android/app/appsearch/GenericDocument\00", align 1 +@.TypeMapEntry.693_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.GetByDocumentIdRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.694_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/GetByDocumentIdRequest$Builder\00", align 1 +@.TypeMapEntry.695_from = private unnamed_addr constant [59 x i8] c"Android.App.AppSearch.GetByDocumentIdRequest, Mono.Android\00", align 1 +@.TypeMapEntry.696_to = private unnamed_addr constant [45 x i8] c"android/app/appsearch/GetByDocumentIdRequest\00", align 1 +@.TypeMapEntry.697_from = private unnamed_addr constant [62 x i8] c"Android.App.AppSearch.GetSchemaResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.698_to = private unnamed_addr constant [48 x i8] c"android/app/appsearch/GetSchemaResponse$Builder\00", align 1 +@.TypeMapEntry.699_from = private unnamed_addr constant [54 x i8] c"Android.App.AppSearch.GetSchemaResponse, Mono.Android\00", align 1 +@.TypeMapEntry.700_to = private unnamed_addr constant [40 x i8] c"android/app/appsearch/GetSchemaResponse\00", align 1 +@.TypeMapEntry.701_from = private unnamed_addr constant [56 x i8] c"Android.App.AppSearch.GlobalSearchSession, Mono.Android\00", align 1 +@.TypeMapEntry.702_to = private unnamed_addr constant [42 x i8] c"android/app/appsearch/GlobalSearchSession\00", align 1 +@.TypeMapEntry.703_from = private unnamed_addr constant [57 x i8] c"Android.App.AppSearch.IBatchResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.704_to = private unnamed_addr constant [42 x i8] c"android/app/appsearch/BatchResultCallback\00", align 1 +@.TypeMapEntry.705_from = private unnamed_addr constant [64 x i8] c"Android.App.AppSearch.IBatchResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.706_from = private unnamed_addr constant [53 x i8] c"Android.App.AppSearch.JoinSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.707_to = private unnamed_addr constant [39 x i8] c"android/app/appsearch/JoinSpec$Builder\00", align 1 +@.TypeMapEntry.708_from = private unnamed_addr constant [45 x i8] c"Android.App.AppSearch.JoinSpec, Mono.Android\00", align 1 +@.TypeMapEntry.709_to = private unnamed_addr constant [31 x i8] c"android/app/appsearch/JoinSpec\00", align 1 +@.TypeMapEntry.710_from = private unnamed_addr constant [45 x i8] c"Android.App.AppSearch.Migrator, Mono.Android\00", align 1 +@.TypeMapEntry.711_to = private unnamed_addr constant [31 x i8] c"android/app/appsearch/Migrator\00", align 1 +@.TypeMapEntry.712_from = private unnamed_addr constant [52 x i8] c"Android.App.AppSearch.MigratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.713_from = private unnamed_addr constant [65 x i8] c"Android.App.AppSearch.Observers.DocumentChangeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.714_to = private unnamed_addr constant [50 x i8] c"android/app/appsearch/observer/DocumentChangeInfo\00", align 1 +@.TypeMapEntry.715_from = private unnamed_addr constant [64 x i8] c"Android.App.AppSearch.Observers.IObserverCallback, Mono.Android\00", align 1 +@.TypeMapEntry.716_to = private unnamed_addr constant [48 x i8] c"android/app/appsearch/observer/ObserverCallback\00", align 1 +@.TypeMapEntry.717_from = private unnamed_addr constant [71 x i8] c"Android.App.AppSearch.Observers.IObserverCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.718_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.Observers.ObserverSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.719_to = private unnamed_addr constant [52 x i8] c"android/app/appsearch/observer/ObserverSpec$Builder\00", align 1 +@.TypeMapEntry.720_from = private unnamed_addr constant [59 x i8] c"Android.App.AppSearch.Observers.ObserverSpec, Mono.Android\00", align 1 +@.TypeMapEntry.721_to = private unnamed_addr constant [44 x i8] c"android/app/appsearch/observer/ObserverSpec\00", align 1 +@.TypeMapEntry.722_from = private unnamed_addr constant [63 x i8] c"Android.App.AppSearch.Observers.SchemaChangeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.723_to = private unnamed_addr constant [48 x i8] c"android/app/appsearch/observer/SchemaChangeInfo\00", align 1 +@.TypeMapEntry.724_from = private unnamed_addr constant [54 x i8] c"Android.App.AppSearch.PackageIdentifier, Mono.Android\00", align 1 +@.TypeMapEntry.725_to = private unnamed_addr constant [40 x i8] c"android/app/appsearch/PackageIdentifier\00", align 1 +@.TypeMapEntry.726_from = private unnamed_addr constant [61 x i8] c"Android.App.AppSearch.PropertyPath+PathSegment, Mono.Android\00", align 1 +@.TypeMapEntry.727_to = private unnamed_addr constant [47 x i8] c"android/app/appsearch/PropertyPath$PathSegment\00", align 1 +@.TypeMapEntry.728_from = private unnamed_addr constant [49 x i8] c"Android.App.AppSearch.PropertyPath, Mono.Android\00", align 1 +@.TypeMapEntry.729_to = private unnamed_addr constant [35 x i8] c"android/app/appsearch/PropertyPath\00", align 1 +@.TypeMapEntry.730_from = private unnamed_addr constant [64 x i8] c"Android.App.AppSearch.PutDocumentsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.731_to = private unnamed_addr constant [50 x i8] c"android/app/appsearch/PutDocumentsRequest$Builder\00", align 1 +@.TypeMapEntry.732_from = private unnamed_addr constant [56 x i8] c"Android.App.AppSearch.PutDocumentsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.733_to = private unnamed_addr constant [42 x i8] c"android/app/appsearch/PutDocumentsRequest\00", align 1 +@.TypeMapEntry.734_from = private unnamed_addr constant [70 x i8] c"Android.App.AppSearch.RemoveByDocumentIdRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.735_to = private unnamed_addr constant [56 x i8] c"android/app/appsearch/RemoveByDocumentIdRequest$Builder\00", align 1 +@.TypeMapEntry.736_from = private unnamed_addr constant [62 x i8] c"Android.App.AppSearch.RemoveByDocumentIdRequest, Mono.Android\00", align 1 +@.TypeMapEntry.737_to = private unnamed_addr constant [48 x i8] c"android/app/appsearch/RemoveByDocumentIdRequest\00", align 1 +@.TypeMapEntry.738_from = private unnamed_addr constant [69 x i8] c"Android.App.AppSearch.ReportSystemUsageRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.739_to = private unnamed_addr constant [55 x i8] c"android/app/appsearch/ReportSystemUsageRequest$Builder\00", align 1 +@.TypeMapEntry.740_from = private unnamed_addr constant [61 x i8] c"Android.App.AppSearch.ReportSystemUsageRequest, Mono.Android\00", align 1 +@.TypeMapEntry.741_to = private unnamed_addr constant [47 x i8] c"android/app/appsearch/ReportSystemUsageRequest\00", align 1 +@.TypeMapEntry.742_from = private unnamed_addr constant [63 x i8] c"Android.App.AppSearch.ReportUsageRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.743_to = private unnamed_addr constant [49 x i8] c"android/app/appsearch/ReportUsageRequest$Builder\00", align 1 +@.TypeMapEntry.744_from = private unnamed_addr constant [55 x i8] c"Android.App.AppSearch.ReportUsageRequest, Mono.Android\00", align 1 +@.TypeMapEntry.745_to = private unnamed_addr constant [41 x i8] c"android/app/appsearch/ReportUsageRequest\00", align 1 +@.TypeMapEntry.746_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.SchemaVisibilityConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.747_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/SchemaVisibilityConfig$Builder\00", align 1 +@.TypeMapEntry.748_from = private unnamed_addr constant [59 x i8] c"Android.App.AppSearch.SchemaVisibilityConfig, Mono.Android\00", align 1 +@.TypeMapEntry.749_to = private unnamed_addr constant [45 x i8] c"android/app/appsearch/SchemaVisibilityConfig\00", align 1 +@.TypeMapEntry.750_from = private unnamed_addr constant [57 x i8] c"Android.App.AppSearch.SearchResult+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.751_to = private unnamed_addr constant [43 x i8] c"android/app/appsearch/SearchResult$Builder\00", align 1 +@.TypeMapEntry.752_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.SearchResult+MatchInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.753_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/SearchResult$MatchInfo$Builder\00", align 1 +@.TypeMapEntry.754_from = private unnamed_addr constant [59 x i8] c"Android.App.AppSearch.SearchResult+MatchInfo, Mono.Android\00", align 1 +@.TypeMapEntry.755_to = private unnamed_addr constant [45 x i8] c"android/app/appsearch/SearchResult$MatchInfo\00", align 1 +@.TypeMapEntry.756_from = private unnamed_addr constant [60 x i8] c"Android.App.AppSearch.SearchResult+MatchRange, Mono.Android\00", align 1 +@.TypeMapEntry.757_to = private unnamed_addr constant [46 x i8] c"android/app/appsearch/SearchResult$MatchRange\00", align 1 +@.TypeMapEntry.758_from = private unnamed_addr constant [49 x i8] c"Android.App.AppSearch.SearchResult, Mono.Android\00", align 1 +@.TypeMapEntry.759_to = private unnamed_addr constant [35 x i8] c"android/app/appsearch/SearchResult\00", align 1 +@.TypeMapEntry.760_from = private unnamed_addr constant [50 x i8] c"Android.App.AppSearch.SearchResults, Mono.Android\00", align 1 +@.TypeMapEntry.761_to = private unnamed_addr constant [36 x i8] c"android/app/appsearch/SearchResults\00", align 1 +@.TypeMapEntry.762_from = private unnamed_addr constant [55 x i8] c"Android.App.AppSearch.SearchSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.763_to = private unnamed_addr constant [41 x i8] c"android/app/appsearch/SearchSpec$Builder\00", align 1 +@.TypeMapEntry.764_from = private unnamed_addr constant [47 x i8] c"Android.App.AppSearch.SearchSpec, Mono.Android\00", align 1 +@.TypeMapEntry.765_to = private unnamed_addr constant [33 x i8] c"android/app/appsearch/SearchSpec\00", align 1 +@.TypeMapEntry.766_from = private unnamed_addr constant [67 x i8] c"Android.App.AppSearch.SearchSuggestionResult+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.767_to = private unnamed_addr constant [53 x i8] c"android/app/appsearch/SearchSuggestionResult$Builder\00", align 1 +@.TypeMapEntry.768_from = private unnamed_addr constant [59 x i8] c"Android.App.AppSearch.SearchSuggestionResult, Mono.Android\00", align 1 +@.TypeMapEntry.769_to = private unnamed_addr constant [45 x i8] c"android/app/appsearch/SearchSuggestionResult\00", align 1 +@.TypeMapEntry.770_from = private unnamed_addr constant [65 x i8] c"Android.App.AppSearch.SearchSuggestionSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.771_to = private unnamed_addr constant [51 x i8] c"android/app/appsearch/SearchSuggestionSpec$Builder\00", align 1 +@.TypeMapEntry.772_from = private unnamed_addr constant [57 x i8] c"Android.App.AppSearch.SearchSuggestionSpec, Mono.Android\00", align 1 +@.TypeMapEntry.773_to = private unnamed_addr constant [43 x i8] c"android/app/appsearch/SearchSuggestionSpec\00", align 1 +@.TypeMapEntry.774_from = private unnamed_addr constant [61 x i8] c"Android.App.AppSearch.SetSchemaRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.775_to = private unnamed_addr constant [47 x i8] c"android/app/appsearch/SetSchemaRequest$Builder\00", align 1 +@.TypeMapEntry.776_from = private unnamed_addr constant [53 x i8] c"Android.App.AppSearch.SetSchemaRequest, Mono.Android\00", align 1 +@.TypeMapEntry.777_to = private unnamed_addr constant [39 x i8] c"android/app/appsearch/SetSchemaRequest\00", align 1 +@.TypeMapEntry.778_from = private unnamed_addr constant [62 x i8] c"Android.App.AppSearch.SetSchemaResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.779_to = private unnamed_addr constant [48 x i8] c"android/app/appsearch/SetSchemaResponse$Builder\00", align 1 +@.TypeMapEntry.780_from = private unnamed_addr constant [71 x i8] c"Android.App.AppSearch.SetSchemaResponse+MigrationFailure, Mono.Android\00", align 1 +@.TypeMapEntry.781_to = private unnamed_addr constant [57 x i8] c"android/app/appsearch/SetSchemaResponse$MigrationFailure\00", align 1 +@.TypeMapEntry.782_from = private unnamed_addr constant [54 x i8] c"Android.App.AppSearch.SetSchemaResponse, Mono.Android\00", align 1 +@.TypeMapEntry.783_to = private unnamed_addr constant [40 x i8] c"android/app/appsearch/SetSchemaResponse\00", align 1 +@.TypeMapEntry.784_from = private unnamed_addr constant [56 x i8] c"Android.App.AppSearch.StorageInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.785_to = private unnamed_addr constant [42 x i8] c"android/app/appsearch/StorageInfo$Builder\00", align 1 +@.TypeMapEntry.786_from = private unnamed_addr constant [48 x i8] c"Android.App.AppSearch.StorageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.787_to = private unnamed_addr constant [34 x i8] c"android/app/appsearch/StorageInfo\00", align 1 +@.TypeMapEntry.788_from = private unnamed_addr constant [56 x i8] c"Android.App.AppSearch.Util.DocumentIdUtil, Mono.Android\00", align 1 +@.TypeMapEntry.789_to = private unnamed_addr constant [42 x i8] c"android/app/appsearch/util/DocumentIdUtil\00", align 1 +@.TypeMapEntry.790_from = private unnamed_addr constant [66 x i8] c"Android.App.Application+IActivityLifecycleCallbacks, Mono.Android\00", align 1 +@.TypeMapEntry.791_to = private unnamed_addr constant [51 x i8] c"android/app/Application$ActivityLifecycleCallbacks\00", align 1 +@.TypeMapEntry.792_from = private unnamed_addr constant [73 x i8] c"Android.App.Application+IActivityLifecycleCallbacksInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.793_from = private unnamed_addr constant [67 x i8] c"Android.App.Application+IOnProvideAssistDataListener, Mono.Android\00", align 1 +@.TypeMapEntry.794_to = private unnamed_addr constant [52 x i8] c"android/app/Application$OnProvideAssistDataListener\00", align 1 +@.TypeMapEntry.795_from = private unnamed_addr constant [78 x i8] c"Android.App.Application+IOnProvideAssistDataListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.796_to = private unnamed_addr constant [68 x i8] c"mono/android/app/Application_OnProvideAssistDataListenerImplementor\00", align 1 +@.TypeMapEntry.797_from = private unnamed_addr constant [74 x i8] c"Android.App.Application+IOnProvideAssistDataListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.798_from = private unnamed_addr constant [38 x i8] c"Android.App.Application, Mono.Android\00", align 1 +@.TypeMapEntry.799_to = private unnamed_addr constant [24 x i8] c"android/app/Application\00", align 1 +@.TypeMapEntry.800_from = private unnamed_addr constant [57 x i8] c"Android.App.ApplicationErrorReport+AnrInfo, Mono.Android\00", align 1 +@.TypeMapEntry.801_to = private unnamed_addr constant [43 x i8] c"android/app/ApplicationErrorReport$AnrInfo\00", align 1 +@.TypeMapEntry.802_from = private unnamed_addr constant [61 x i8] c"Android.App.ApplicationErrorReport+BatteryInfo, Mono.Android\00", align 1 +@.TypeMapEntry.803_to = private unnamed_addr constant [47 x i8] c"android/app/ApplicationErrorReport$BatteryInfo\00", align 1 +@.TypeMapEntry.804_from = private unnamed_addr constant [59 x i8] c"Android.App.ApplicationErrorReport+CrashInfo, Mono.Android\00", align 1 +@.TypeMapEntry.805_to = private unnamed_addr constant [45 x i8] c"android/app/ApplicationErrorReport$CrashInfo\00", align 1 +@.TypeMapEntry.806_from = private unnamed_addr constant [68 x i8] c"Android.App.ApplicationErrorReport+RunningServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.807_to = private unnamed_addr constant [54 x i8] c"android/app/ApplicationErrorReport$RunningServiceInfo\00", align 1 +@.TypeMapEntry.808_from = private unnamed_addr constant [49 x i8] c"Android.App.ApplicationErrorReport, Mono.Android\00", align 1 +@.TypeMapEntry.809_to = private unnamed_addr constant [35 x i8] c"android/app/ApplicationErrorReport\00", align 1 +@.TypeMapEntry.810_from = private unnamed_addr constant [46 x i8] c"Android.App.ApplicationExitInfo, Mono.Android\00", align 1 +@.TypeMapEntry.811_to = private unnamed_addr constant [32 x i8] c"android/app/ApplicationExitInfo\00", align 1 +@.TypeMapEntry.812_from = private unnamed_addr constant [47 x i8] c"Android.App.ApplicationStartInfo, Mono.Android\00", align 1 +@.TypeMapEntry.813_to = private unnamed_addr constant [33 x i8] c"android/app/ApplicationStartInfo\00", align 1 +@.TypeMapEntry.814_from = private unnamed_addr constant [47 x i8] c"Android.App.Assist.AssistContent, Mono.Android\00", align 1 +@.TypeMapEntry.815_to = private unnamed_addr constant [33 x i8] c"android/app/assist/AssistContent\00", align 1 +@.TypeMapEntry.816_from = private unnamed_addr constant [58 x i8] c"Android.App.Assist.AssistStructure+ViewNode, Mono.Android\00", align 1 +@.TypeMapEntry.817_to = private unnamed_addr constant [44 x i8] c"android/app/assist/AssistStructure$ViewNode\00", align 1 +@.TypeMapEntry.818_from = private unnamed_addr constant [60 x i8] c"Android.App.Assist.AssistStructure+WindowNode, Mono.Android\00", align 1 +@.TypeMapEntry.819_to = private unnamed_addr constant [46 x i8] c"android/app/assist/AssistStructure$WindowNode\00", align 1 +@.TypeMapEntry.820_from = private unnamed_addr constant [49 x i8] c"Android.App.Assist.AssistStructure, Mono.Android\00", align 1 +@.TypeMapEntry.821_to = private unnamed_addr constant [35 x i8] c"android/app/assist/AssistStructure\00", align 1 +@.TypeMapEntry.822_from = private unnamed_addr constant [42 x i8] c"Android.App.AsyncNotedAppOp, Mono.Android\00", align 1 +@.TypeMapEntry.823_to = private unnamed_addr constant [28 x i8] c"android/app/AsyncNotedAppOp\00", align 1 +@.TypeMapEntry.824_from = private unnamed_addr constant [58 x i8] c"Android.App.AuthenticationRequiredException, Mono.Android\00", align 1 +@.TypeMapEntry.825_to = private unnamed_addr constant [44 x i8] c"android/app/AuthenticationRequiredException\00", align 1 +@.TypeMapEntry.826_from = private unnamed_addr constant [51 x i8] c"Android.App.AutomaticZenRule+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.827_to = private unnamed_addr constant [37 x i8] c"android/app/AutomaticZenRule$Builder\00", align 1 +@.TypeMapEntry.828_from = private unnamed_addr constant [43 x i8] c"Android.App.AutomaticZenRule, Mono.Android\00", align 1 +@.TypeMapEntry.829_to = private unnamed_addr constant [29 x i8] c"android/app/AutomaticZenRule\00", align 1 +@.TypeMapEntry.830_from = private unnamed_addr constant [68 x i8] c"Android.App.BackgroundServiceStartNotAllowedException, Mono.Android\00", align 1 +@.TypeMapEntry.831_to = private unnamed_addr constant [54 x i8] c"android/app/BackgroundServiceStartNotAllowedException\00", align 1 +@.TypeMapEntry.832_from = private unnamed_addr constant [45 x i8] c"Android.App.Backup.BackupAgent, Mono.Android\00", align 1 +@.TypeMapEntry.833_to = private unnamed_addr constant [31 x i8] c"android/app/backup/BackupAgent\00", align 1 +@.TypeMapEntry.834_from = private unnamed_addr constant [51 x i8] c"Android.App.Backup.BackupAgentHelper, Mono.Android\00", align 1 +@.TypeMapEntry.835_to = private unnamed_addr constant [37 x i8] c"android/app/backup/BackupAgentHelper\00", align 1 +@.TypeMapEntry.836_from = private unnamed_addr constant [52 x i8] c"Android.App.Backup.BackupAgentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.837_from = private unnamed_addr constant [49 x i8] c"Android.App.Backup.BackupDataInput, Mono.Android\00", align 1 +@.TypeMapEntry.838_to = private unnamed_addr constant [35 x i8] c"android/app/backup/BackupDataInput\00", align 1 +@.TypeMapEntry.839_from = private unnamed_addr constant [55 x i8] c"Android.App.Backup.BackupDataInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.840_to = private unnamed_addr constant [41 x i8] c"android/app/backup/BackupDataInputStream\00", align 1 +@.TypeMapEntry.841_from = private unnamed_addr constant [50 x i8] c"Android.App.Backup.BackupDataOutput, Mono.Android\00", align 1 +@.TypeMapEntry.842_to = private unnamed_addr constant [36 x i8] c"android/app/backup/BackupDataOutput\00", align 1 +@.TypeMapEntry.843_from = private unnamed_addr constant [47 x i8] c"Android.App.Backup.BackupManager, Mono.Android\00", align 1 +@.TypeMapEntry.844_to = private unnamed_addr constant [33 x i8] c"android/app/backup/BackupManager\00", align 1 +@.TypeMapEntry.845_from = private unnamed_addr constant [50 x i8] c"Android.App.Backup.FileBackupHelper, Mono.Android\00", align 1 +@.TypeMapEntry.846_to = private unnamed_addr constant [36 x i8] c"android/app/backup/FileBackupHelper\00", align 1 +@.TypeMapEntry.847_from = private unnamed_addr constant [54 x i8] c"Android.App.Backup.FileBackupHelperBase, Mono.Android\00", align 1 +@.TypeMapEntry.848_to = private unnamed_addr constant [40 x i8] c"android/app/backup/FileBackupHelperBase\00", align 1 +@.TypeMapEntry.849_from = private unnamed_addr constant [54 x i8] c"Android.App.Backup.FullBackupDataOutput, Mono.Android\00", align 1 +@.TypeMapEntry.850_to = private unnamed_addr constant [40 x i8] c"android/app/backup/FullBackupDataOutput\00", align 1 +@.TypeMapEntry.851_from = private unnamed_addr constant [47 x i8] c"Android.App.Backup.IBackupHelper, Mono.Android\00", align 1 +@.TypeMapEntry.852_to = private unnamed_addr constant [32 x i8] c"android/app/backup/BackupHelper\00", align 1 +@.TypeMapEntry.853_from = private unnamed_addr constant [54 x i8] c"Android.App.Backup.IBackupHelperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.854_from = private unnamed_addr constant [49 x i8] c"Android.App.Backup.RestoreObserver, Mono.Android\00", align 1 +@.TypeMapEntry.855_to = private unnamed_addr constant [35 x i8] c"android/app/backup/RestoreObserver\00", align 1 +@.TypeMapEntry.856_from = private unnamed_addr constant [56 x i8] c"Android.App.Backup.RestoreObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.857_from = private unnamed_addr constant [63 x i8] c"Android.App.Backup.SharedPreferencesBackupHelper, Mono.Android\00", align 1 +@.TypeMapEntry.858_to = private unnamed_addr constant [49 x i8] c"android/app/backup/SharedPreferencesBackupHelper\00", align 1 +@.TypeMapEntry.859_from = private unnamed_addr constant [42 x i8] c"Android.App.Blob.BlobHandle, Mono.Android\00", align 1 +@.TypeMapEntry.860_to = private unnamed_addr constant [28 x i8] c"android/app/blob/BlobHandle\00", align 1 +@.TypeMapEntry.861_from = private unnamed_addr constant [56 x i8] c"Android.App.Blob.BlobStoreManager+Session, Mono.Android\00", align 1 +@.TypeMapEntry.862_to = private unnamed_addr constant [42 x i8] c"android/app/blob/BlobStoreManager$Session\00", align 1 +@.TypeMapEntry.863_from = private unnamed_addr constant [48 x i8] c"Android.App.Blob.BlobStoreManager, Mono.Android\00", align 1 +@.TypeMapEntry.864_to = private unnamed_addr constant [34 x i8] c"android/app/blob/BlobStoreManager\00", align 1 +@.TypeMapEntry.865_from = private unnamed_addr constant [43 x i8] c"Android.App.BroadcastOptions, Mono.Android\00", align 1 +@.TypeMapEntry.866_to = private unnamed_addr constant [29 x i8] c"android/app/BroadcastOptions\00", align 1 +@.TypeMapEntry.867_from = private unnamed_addr constant [42 x i8] c"Android.App.ComponentCaller, Mono.Android\00", align 1 +@.TypeMapEntry.868_to = private unnamed_addr constant [28 x i8] c"android/app/ComponentCaller\00", align 1 +@.TypeMapEntry.869_from = private unnamed_addr constant [62 x i8] c"Android.App.DatePickerDialog+IOnDateSetListener, Mono.Android\00", align 1 +@.TypeMapEntry.870_to = private unnamed_addr constant [47 x i8] c"android/app/DatePickerDialog$OnDateSetListener\00", align 1 +@.TypeMapEntry.871_from = private unnamed_addr constant [73 x i8] c"Android.App.DatePickerDialog+IOnDateSetListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.872_to = private unnamed_addr constant [63 x i8] c"mono/android/app/DatePickerDialog_OnDateSetListenerImplementor\00", align 1 +@.TypeMapEntry.873_from = private unnamed_addr constant [69 x i8] c"Android.App.DatePickerDialog+IOnDateSetListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.874_from = private unnamed_addr constant [43 x i8] c"Android.App.DatePickerDialog, Mono.Android\00", align 1 +@.TypeMapEntry.875_to = private unnamed_addr constant [29 x i8] c"android/app/DatePickerDialog\00", align 1 +@.TypeMapEntry.876_from = private unnamed_addr constant [33 x i8] c"Android.App.Dialog, Mono.Android\00", align 1 +@.TypeMapEntry.877_to = private unnamed_addr constant [19 x i8] c"android/app/Dialog\00", align 1 +@.TypeMapEntry.878_from = private unnamed_addr constant [41 x i8] c"Android.App.DialogFragment, Mono.Android\00", align 1 +@.TypeMapEntry.879_to = private unnamed_addr constant [27 x i8] c"android/app/DialogFragment\00", align 1 +@.TypeMapEntry.880_from = private unnamed_addr constant [47 x i8] c"Android.App.DirectAction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.881_to = private unnamed_addr constant [33 x i8] c"android/app/DirectAction$Builder\00", align 1 +@.TypeMapEntry.882_from = private unnamed_addr constant [39 x i8] c"Android.App.DirectAction, Mono.Android\00", align 1 +@.TypeMapEntry.883_to = private unnamed_addr constant [25 x i8] c"android/app/DirectAction\00", align 1 +@.TypeMapEntry.884_from = private unnamed_addr constant [48 x i8] c"Android.App.DownloadManager+Query, Mono.Android\00", align 1 +@.TypeMapEntry.885_to = private unnamed_addr constant [34 x i8] c"android/app/DownloadManager$Query\00", align 1 +@.TypeMapEntry.886_from = private unnamed_addr constant [50 x i8] c"Android.App.DownloadManager+Request, Mono.Android\00", align 1 +@.TypeMapEntry.887_to = private unnamed_addr constant [36 x i8] c"android/app/DownloadManager$Request\00", align 1 +@.TypeMapEntry.888_from = private unnamed_addr constant [42 x i8] c"Android.App.DownloadManager, Mono.Android\00", align 1 +@.TypeMapEntry.889_to = private unnamed_addr constant [28 x i8] c"android/app/DownloadManager\00", align 1 +@.TypeMapEntry.890_from = private unnamed_addr constant [49 x i8] c"Android.App.ExpandableListActivity, Mono.Android\00", align 1 +@.TypeMapEntry.891_to = private unnamed_addr constant [35 x i8] c"android/app/ExpandableListActivity\00", align 1 +@.TypeMapEntry.892_from = private unnamed_addr constant [68 x i8] c"Android.App.ForegroundServiceStartNotAllowedException, Mono.Android\00", align 1 +@.TypeMapEntry.893_to = private unnamed_addr constant [54 x i8] c"android/app/ForegroundServiceStartNotAllowedException\00", align 1 +@.TypeMapEntry.894_from = private unnamed_addr constant [57 x i8] c"Android.App.ForegroundServiceTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.895_to = private unnamed_addr constant [43 x i8] c"android/app/ForegroundServiceTypeException\00", align 1 +@.TypeMapEntry.896_from = private unnamed_addr constant [64 x i8] c"Android.App.ForegroundServiceTypeExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.897_from = private unnamed_addr constant [58 x i8] c"Android.App.Fragment+InstantiationException, Mono.Android\00", align 1 +@.TypeMapEntry.898_to = private unnamed_addr constant [44 x i8] c"android/app/Fragment$InstantiationException\00", align 1 +@.TypeMapEntry.899_from = private unnamed_addr constant [46 x i8] c"Android.App.Fragment+SavedState, Mono.Android\00", align 1 +@.TypeMapEntry.900_to = private unnamed_addr constant [32 x i8] c"android/app/Fragment$SavedState\00", align 1 +@.TypeMapEntry.901_from = private unnamed_addr constant [35 x i8] c"Android.App.Fragment, Mono.Android\00", align 1 +@.TypeMapEntry.902_to = private unnamed_addr constant [21 x i8] c"android/app/Fragment\00", align 1 +@.TypeMapEntry.903_from = private unnamed_addr constant [73 x i8] c"Android.App.FragmentBreadCrumbs+IOnBreadCrumbClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.904_to = private unnamed_addr constant [58 x i8] c"android/app/FragmentBreadCrumbs$OnBreadCrumbClickListener\00", align 1 +@.TypeMapEntry.905_from = private unnamed_addr constant [84 x i8] c"Android.App.FragmentBreadCrumbs+IOnBreadCrumbClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.906_to = private unnamed_addr constant [74 x i8] c"mono/android/app/FragmentBreadCrumbs_OnBreadCrumbClickListenerImplementor\00", align 1 +@.TypeMapEntry.907_from = private unnamed_addr constant [80 x i8] c"Android.App.FragmentBreadCrumbs+IOnBreadCrumbClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.908_from = private unnamed_addr constant [46 x i8] c"Android.App.FragmentBreadCrumbs, Mono.Android\00", align 1 +@.TypeMapEntry.909_to = private unnamed_addr constant [32 x i8] c"android/app/FragmentBreadCrumbs\00", align 1 +@.TypeMapEntry.910_from = private unnamed_addr constant [44 x i8] c"Android.App.FragmentContainer, Mono.Android\00", align 1 +@.TypeMapEntry.911_to = private unnamed_addr constant [30 x i8] c"android/app/FragmentContainer\00", align 1 +@.TypeMapEntry.912_from = private unnamed_addr constant [51 x i8] c"Android.App.FragmentContainerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.913_from = private unnamed_addr constant [45 x i8] c"Android.App.FragmentController, Mono.Android\00", align 1 +@.TypeMapEntry.914_to = private unnamed_addr constant [31 x i8] c"android/app/FragmentController\00", align 1 +@.TypeMapEntry.915_from = private unnamed_addr constant [47 x i8] c"Android.App.FragmentHostCallback, Mono.Android\00", align 1 +@.TypeMapEntry.916_to = private unnamed_addr constant [33 x i8] c"android/app/FragmentHostCallback\00", align 1 +@.TypeMapEntry.917_from = private unnamed_addr constant [54 x i8] c"Android.App.FragmentHostCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.918_from = private unnamed_addr constant [69 x i8] c"Android.App.FragmentManager+FragmentLifecycleCallbacks, Mono.Android\00", align 1 +@.TypeMapEntry.919_to = private unnamed_addr constant [55 x i8] c"android/app/FragmentManager$FragmentLifecycleCallbacks\00", align 1 +@.TypeMapEntry.920_from = private unnamed_addr constant [76 x i8] c"Android.App.FragmentManager+FragmentLifecycleCallbacksInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.921_from = private unnamed_addr constant [58 x i8] c"Android.App.FragmentManager+IBackStackEntry, Mono.Android\00", align 1 +@.TypeMapEntry.922_to = private unnamed_addr constant [43 x i8] c"android/app/FragmentManager$BackStackEntry\00", align 1 +@.TypeMapEntry.923_from = private unnamed_addr constant [65 x i8] c"Android.App.FragmentManager+IBackStackEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.924_from = private unnamed_addr constant [70 x i8] c"Android.App.FragmentManager+IOnBackStackChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.925_to = private unnamed_addr constant [55 x i8] c"android/app/FragmentManager$OnBackStackChangedListener\00", align 1 +@.TypeMapEntry.926_from = private unnamed_addr constant [81 x i8] c"Android.App.FragmentManager+IOnBackStackChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.927_to = private unnamed_addr constant [71 x i8] c"mono/android/app/FragmentManager_OnBackStackChangedListenerImplementor\00", align 1 +@.TypeMapEntry.928_from = private unnamed_addr constant [77 x i8] c"Android.App.FragmentManager+IOnBackStackChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.929_from = private unnamed_addr constant [42 x i8] c"Android.App.FragmentManager, Mono.Android\00", align 1 +@.TypeMapEntry.930_to = private unnamed_addr constant [28 x i8] c"android/app/FragmentManager\00", align 1 +@.TypeMapEntry.931_from = private unnamed_addr constant [49 x i8] c"Android.App.FragmentManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.932_from = private unnamed_addr constant [51 x i8] c"Android.App.FragmentManagerNonConfig, Mono.Android\00", align 1 +@.TypeMapEntry.933_to = private unnamed_addr constant [37 x i8] c"android/app/FragmentManagerNonConfig\00", align 1 +@.TypeMapEntry.934_from = private unnamed_addr constant [46 x i8] c"Android.App.FragmentTransaction, Mono.Android\00", align 1 +@.TypeMapEntry.935_to = private unnamed_addr constant [32 x i8] c"android/app/FragmentTransaction\00", align 1 +@.TypeMapEntry.936_from = private unnamed_addr constant [53 x i8] c"Android.App.FragmentTransactionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.937_from = private unnamed_addr constant [38 x i8] c"Android.App.GameManager, Mono.Android\00", align 1 +@.TypeMapEntry.938_to = private unnamed_addr constant [24 x i8] c"android/app/GameManager\00", align 1 +@.TypeMapEntry.939_from = private unnamed_addr constant [36 x i8] c"Android.App.GameState, Mono.Android\00", align 1 +@.TypeMapEntry.940_to = private unnamed_addr constant [22 x i8] c"android/app/GameState\00", align 1 +@.TypeMapEntry.941_from = private unnamed_addr constant [55 x i8] c"Android.App.GrammaticalInflectionManager, Mono.Android\00", align 1 +@.TypeMapEntry.942_to = private unnamed_addr constant [41 x i8] c"android/app/GrammaticalInflectionManager\00", align 1 +@.TypeMapEntry.943_from = private unnamed_addr constant [41 x i8] c"Android.App.IZygotePreload, Mono.Android\00", align 1 +@.TypeMapEntry.944_to = private unnamed_addr constant [26 x i8] c"android/app/ZygotePreload\00", align 1 +@.TypeMapEntry.945_from = private unnamed_addr constant [48 x i8] c"Android.App.IZygotePreloadInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.946_from = private unnamed_addr constant [58 x i8] c"Android.App.Instrumentation+ActivityMonitor, Mono.Android\00", align 1 +@.TypeMapEntry.947_to = private unnamed_addr constant [44 x i8] c"android/app/Instrumentation$ActivityMonitor\00", align 1 +@.TypeMapEntry.948_from = private unnamed_addr constant [57 x i8] c"Android.App.Instrumentation+ActivityResult, Mono.Android\00", align 1 +@.TypeMapEntry.949_to = private unnamed_addr constant [43 x i8] c"android/app/Instrumentation$ActivityResult\00", align 1 +@.TypeMapEntry.950_from = private unnamed_addr constant [42 x i8] c"Android.App.Instrumentation, Mono.Android\00", align 1 +@.TypeMapEntry.951_to = private unnamed_addr constant [28 x i8] c"android/app/Instrumentation\00", align 1 +@.TypeMapEntry.952_from = private unnamed_addr constant [40 x i8] c"Android.App.IntentService, Mono.Android\00", align 1 +@.TypeMapEntry.953_to = private unnamed_addr constant [31 x i8] c"mono/android/app/IntentService\00", align 1 +@.TypeMapEntry.954_from = private unnamed_addr constant [47 x i8] c"Android.App.IntentServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.955_from = private unnamed_addr constant [64 x i8] c"Android.App.InvalidForegroundServiceTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.956_to = private unnamed_addr constant [50 x i8] c"android/app/InvalidForegroundServiceTypeException\00", align 1 +@.TypeMapEntry.957_from = private unnamed_addr constant [46 x i8] c"Android.App.Job.JobInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.958_to = private unnamed_addr constant [32 x i8] c"android/app/job/JobInfo$Builder\00", align 1 +@.TypeMapEntry.959_from = private unnamed_addr constant [56 x i8] c"Android.App.Job.JobInfo+TriggerContentUri, Mono.Android\00", align 1 +@.TypeMapEntry.960_to = private unnamed_addr constant [42 x i8] c"android/app/job/JobInfo$TriggerContentUri\00", align 1 +@.TypeMapEntry.961_from = private unnamed_addr constant [38 x i8] c"Android.App.Job.JobInfo, Mono.Android\00", align 1 +@.TypeMapEntry.962_to = private unnamed_addr constant [24 x i8] c"android/app/job/JobInfo\00", align 1 +@.TypeMapEntry.963_from = private unnamed_addr constant [44 x i8] c"Android.App.Job.JobParameters, Mono.Android\00", align 1 +@.TypeMapEntry.964_to = private unnamed_addr constant [30 x i8] c"android/app/job/JobParameters\00", align 1 +@.TypeMapEntry.965_from = private unnamed_addr constant [43 x i8] c"Android.App.Job.JobScheduler, Mono.Android\00", align 1 +@.TypeMapEntry.966_to = private unnamed_addr constant [29 x i8] c"android/app/job/JobScheduler\00", align 1 +@.TypeMapEntry.967_from = private unnamed_addr constant [50 x i8] c"Android.App.Job.JobSchedulerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.968_from = private unnamed_addr constant [41 x i8] c"Android.App.Job.JobService, Mono.Android\00", align 1 +@.TypeMapEntry.969_to = private unnamed_addr constant [27 x i8] c"android/app/job/JobService\00", align 1 +@.TypeMapEntry.970_from = private unnamed_addr constant [47 x i8] c"Android.App.Job.JobServiceEngine, Mono.Android\00", align 1 +@.TypeMapEntry.971_to = private unnamed_addr constant [33 x i8] c"android/app/job/JobServiceEngine\00", align 1 +@.TypeMapEntry.972_from = private unnamed_addr constant [54 x i8] c"Android.App.Job.JobServiceEngineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.973_from = private unnamed_addr constant [48 x i8] c"Android.App.Job.JobServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.974_from = private unnamed_addr constant [50 x i8] c"Android.App.Job.JobWorkItem+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.975_to = private unnamed_addr constant [36 x i8] c"android/app/job/JobWorkItem$Builder\00", align 1 +@.TypeMapEntry.976_from = private unnamed_addr constant [42 x i8] c"Android.App.Job.JobWorkItem, Mono.Android\00", align 1 +@.TypeMapEntry.977_to = private unnamed_addr constant [28 x i8] c"android/app/job/JobWorkItem\00", align 1 +@.TypeMapEntry.978_from = private unnamed_addr constant [71 x i8] c"Android.App.KeyguardManager+IKeyguardLockedStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.979_to = private unnamed_addr constant [56 x i8] c"android/app/KeyguardManager$KeyguardLockedStateListener\00", align 1 +@.TypeMapEntry.980_from = private unnamed_addr constant [82 x i8] c"Android.App.KeyguardManager+IKeyguardLockedStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.981_to = private unnamed_addr constant [72 x i8] c"mono/android/app/KeyguardManager_KeyguardLockedStateListenerImplementor\00", align 1 +@.TypeMapEntry.982_from = private unnamed_addr constant [78 x i8] c"Android.App.KeyguardManager+IKeyguardLockedStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.983_from = private unnamed_addr constant [64 x i8] c"Android.App.KeyguardManager+IOnKeyguardExitResult, Mono.Android\00", align 1 +@.TypeMapEntry.984_to = private unnamed_addr constant [49 x i8] c"android/app/KeyguardManager$OnKeyguardExitResult\00", align 1 +@.TypeMapEntry.985_from = private unnamed_addr constant [71 x i8] c"Android.App.KeyguardManager+IOnKeyguardExitResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.986_from = private unnamed_addr constant [66 x i8] c"Android.App.KeyguardManager+KeyguardDismissCallback, Mono.Android\00", align 1 +@.TypeMapEntry.987_to = private unnamed_addr constant [52 x i8] c"android/app/KeyguardManager$KeyguardDismissCallback\00", align 1 +@.TypeMapEntry.988_from = private unnamed_addr constant [73 x i8] c"Android.App.KeyguardManager+KeyguardDismissCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.989_from = private unnamed_addr constant [55 x i8] c"Android.App.KeyguardManager+KeyguardLock, Mono.Android\00", align 1 +@.TypeMapEntry.990_to = private unnamed_addr constant [41 x i8] c"android/app/KeyguardManager$KeyguardLock\00", align 1 +@.TypeMapEntry.991_from = private unnamed_addr constant [42 x i8] c"Android.App.KeyguardManager, Mono.Android\00", align 1 +@.TypeMapEntry.992_to = private unnamed_addr constant [28 x i8] c"android/app/KeyguardManager\00", align 1 +@.TypeMapEntry.993_from = private unnamed_addr constant [55 x i8] c"Android.App.LauncherActivity+IconResizer, Mono.Android\00", align 1 +@.TypeMapEntry.994_to = private unnamed_addr constant [41 x i8] c"android/app/LauncherActivity$IconResizer\00", align 1 +@.TypeMapEntry.995_from = private unnamed_addr constant [52 x i8] c"Android.App.LauncherActivity+ListItem, Mono.Android\00", align 1 +@.TypeMapEntry.996_to = private unnamed_addr constant [38 x i8] c"android/app/LauncherActivity$ListItem\00", align 1 +@.TypeMapEntry.997_from = private unnamed_addr constant [43 x i8] c"Android.App.LauncherActivity, Mono.Android\00", align 1 +@.TypeMapEntry.998_to = private unnamed_addr constant [29 x i8] c"android/app/LauncherActivity\00", align 1 +@.TypeMapEntry.999_from = private unnamed_addr constant [50 x i8] c"Android.App.LauncherActivityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1000_from = private unnamed_addr constant [39 x i8] c"Android.App.ListActivity, Mono.Android\00", align 1 +@.TypeMapEntry.1001_to = private unnamed_addr constant [25 x i8] c"android/app/ListActivity\00", align 1 +@.TypeMapEntry.1002_from = private unnamed_addr constant [39 x i8] c"Android.App.ListFragment, Mono.Android\00", align 1 +@.TypeMapEntry.1003_to = private unnamed_addr constant [25 x i8] c"android/app/ListFragment\00", align 1 +@.TypeMapEntry.1004_from = private unnamed_addr constant [57 x i8] c"Android.App.LoaderManager+ILoaderCallbacks, Mono.Android\00", align 1 +@.TypeMapEntry.1005_to = private unnamed_addr constant [42 x i8] c"android/app/LoaderManager$LoaderCallbacks\00", align 1 +@.TypeMapEntry.1006_from = private unnamed_addr constant [64 x i8] c"Android.App.LoaderManager+ILoaderCallbacksInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1007_from = private unnamed_addr constant [40 x i8] c"Android.App.LoaderManager, Mono.Android\00", align 1 +@.TypeMapEntry.1008_to = private unnamed_addr constant [26 x i8] c"android/app/LoaderManager\00", align 1 +@.TypeMapEntry.1009_from = private unnamed_addr constant [47 x i8] c"Android.App.LoaderManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1010_from = private unnamed_addr constant [47 x i8] c"Android.App.LocalActivityManager, Mono.Android\00", align 1 +@.TypeMapEntry.1011_to = private unnamed_addr constant [33 x i8] c"android/app/LocalActivityManager\00", align 1 +@.TypeMapEntry.1012_from = private unnamed_addr constant [39 x i8] c"Android.App.LocaleConfig, Mono.Android\00", align 1 +@.TypeMapEntry.1013_to = private unnamed_addr constant [25 x i8] c"android/app/LocaleConfig\00", align 1 +@.TypeMapEntry.1014_from = private unnamed_addr constant [40 x i8] c"Android.App.LocaleManager, Mono.Android\00", align 1 +@.TypeMapEntry.1015_to = private unnamed_addr constant [26 x i8] c"android/app/LocaleManager\00", align 1 +@.TypeMapEntry.1016_from = private unnamed_addr constant [51 x i8] c"Android.App.MediaRouteActionProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1017_to = private unnamed_addr constant [37 x i8] c"android/app/MediaRouteActionProvider\00", align 1 +@.TypeMapEntry.1018_from = private unnamed_addr constant [43 x i8] c"Android.App.MediaRouteButton, Mono.Android\00", align 1 +@.TypeMapEntry.1019_to = private unnamed_addr constant [29 x i8] c"android/app/MediaRouteButton\00", align 1 +@.TypeMapEntry.1020_from = private unnamed_addr constant [64 x i8] c"Android.App.MissingForegroundServiceTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.1021_to = private unnamed_addr constant [50 x i8] c"android/app/MissingForegroundServiceTypeException\00", align 1 +@.TypeMapEntry.1022_from = private unnamed_addr constant [41 x i8] c"Android.App.NativeActivity, Mono.Android\00", align 1 +@.TypeMapEntry.1023_to = private unnamed_addr constant [27 x i8] c"android/app/NativeActivity\00", align 1 +@.TypeMapEntry.1024_from = private unnamed_addr constant [54 x i8] c"Android.App.Notification+Action+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1025_to = private unnamed_addr constant [40 x i8] c"android/app/Notification$Action$Builder\00", align 1 +@.TypeMapEntry.1026_from = private unnamed_addr constant [56 x i8] c"Android.App.Notification+Action+IExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1027_to = private unnamed_addr constant [41 x i8] c"android/app/Notification$Action$Extender\00", align 1 +@.TypeMapEntry.1028_from = private unnamed_addr constant [63 x i8] c"Android.App.Notification+Action+IExtenderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1029_from = private unnamed_addr constant [63 x i8] c"Android.App.Notification+Action+WearableExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1030_to = private unnamed_addr constant [49 x i8] c"android/app/Notification$Action$WearableExtender\00", align 1 +@.TypeMapEntry.1031_from = private unnamed_addr constant [46 x i8] c"Android.App.Notification+Action, Mono.Android\00", align 1 +@.TypeMapEntry.1032_to = private unnamed_addr constant [32 x i8] c"android/app/Notification$Action\00", align 1 +@.TypeMapEntry.1033_from = private unnamed_addr constant [55 x i8] c"Android.App.Notification+BigPictureStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1034_to = private unnamed_addr constant [41 x i8] c"android/app/Notification$BigPictureStyle\00", align 1 +@.TypeMapEntry.1035_from = private unnamed_addr constant [52 x i8] c"Android.App.Notification+BigTextStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1036_to = private unnamed_addr constant [38 x i8] c"android/app/Notification$BigTextStyle\00", align 1 +@.TypeMapEntry.1037_from = private unnamed_addr constant [62 x i8] c"Android.App.Notification+BubbleMetadata+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1038_to = private unnamed_addr constant [48 x i8] c"android/app/Notification$BubbleMetadata$Builder\00", align 1 +@.TypeMapEntry.1039_from = private unnamed_addr constant [54 x i8] c"Android.App.Notification+BubbleMetadata, Mono.Android\00", align 1 +@.TypeMapEntry.1040_to = private unnamed_addr constant [40 x i8] c"android/app/Notification$BubbleMetadata\00", align 1 +@.TypeMapEntry.1041_from = private unnamed_addr constant [47 x i8] c"Android.App.Notification+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1042_to = private unnamed_addr constant [33 x i8] c"android/app/Notification$Builder\00", align 1 +@.TypeMapEntry.1043_from = private unnamed_addr constant [49 x i8] c"Android.App.Notification+CallStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1044_to = private unnamed_addr constant [35 x i8] c"android/app/Notification$CallStyle\00", align 1 +@.TypeMapEntry.1045_from = private unnamed_addr constant [59 x i8] c"Android.App.Notification+CarExtender+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1046_to = private unnamed_addr constant [45 x i8] c"android/app/Notification$CarExtender$Builder\00", align 1 +@.TypeMapEntry.1047_from = private unnamed_addr constant [70 x i8] c"Android.App.Notification+CarExtender+UnreadConversation, Mono.Android\00", align 1 +@.TypeMapEntry.1048_to = private unnamed_addr constant [56 x i8] c"android/app/Notification$CarExtender$UnreadConversation\00", align 1 +@.TypeMapEntry.1049_from = private unnamed_addr constant [51 x i8] c"Android.App.Notification+CarExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1050_to = private unnamed_addr constant [37 x i8] c"android/app/Notification$CarExtender\00", align 1 +@.TypeMapEntry.1051_from = private unnamed_addr constant [64 x i8] c"Android.App.Notification+DecoratedCustomViewStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1052_to = private unnamed_addr constant [50 x i8] c"android/app/Notification$DecoratedCustomViewStyle\00", align 1 +@.TypeMapEntry.1053_from = private unnamed_addr constant [69 x i8] c"Android.App.Notification+DecoratedMediaCustomViewStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1054_to = private unnamed_addr constant [55 x i8] c"android/app/Notification$DecoratedMediaCustomViewStyle\00", align 1 +@.TypeMapEntry.1055_from = private unnamed_addr constant [49 x i8] c"Android.App.Notification+IExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1056_to = private unnamed_addr constant [34 x i8] c"android/app/Notification$Extender\00", align 1 +@.TypeMapEntry.1057_from = private unnamed_addr constant [56 x i8] c"Android.App.Notification+IExtenderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1058_from = private unnamed_addr constant [50 x i8] c"Android.App.Notification+InboxStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1059_to = private unnamed_addr constant [36 x i8] c"android/app/Notification$InboxStyle\00", align 1 +@.TypeMapEntry.1060_from = private unnamed_addr constant [50 x i8] c"Android.App.Notification+MediaStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1061_to = private unnamed_addr constant [36 x i8] c"android/app/Notification$MediaStyle\00", align 1 +@.TypeMapEntry.1062_from = private unnamed_addr constant [62 x i8] c"Android.App.Notification+MessagingStyle+Message, Mono.Android\00", align 1 +@.TypeMapEntry.1063_to = private unnamed_addr constant [48 x i8] c"android/app/Notification$MessagingStyle$Message\00", align 1 +@.TypeMapEntry.1064_from = private unnamed_addr constant [54 x i8] c"Android.App.Notification+MessagingStyle, Mono.Android\00", align 1 +@.TypeMapEntry.1065_to = private unnamed_addr constant [40 x i8] c"android/app/Notification$MessagingStyle\00", align 1 +@.TypeMapEntry.1066_from = private unnamed_addr constant [45 x i8] c"Android.App.Notification+Style, Mono.Android\00", align 1 +@.TypeMapEntry.1067_to = private unnamed_addr constant [31 x i8] c"android/app/Notification$Style\00", align 1 +@.TypeMapEntry.1068_from = private unnamed_addr constant [52 x i8] c"Android.App.Notification+StyleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1069_from = private unnamed_addr constant [50 x i8] c"Android.App.Notification+TvExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1070_to = private unnamed_addr constant [36 x i8] c"android/app/Notification$TvExtender\00", align 1 +@.TypeMapEntry.1071_from = private unnamed_addr constant [56 x i8] c"Android.App.Notification+WearableExtender, Mono.Android\00", align 1 +@.TypeMapEntry.1072_to = private unnamed_addr constant [42 x i8] c"android/app/Notification$WearableExtender\00", align 1 +@.TypeMapEntry.1073_from = private unnamed_addr constant [39 x i8] c"Android.App.Notification, Mono.Android\00", align 1 +@.TypeMapEntry.1074_to = private unnamed_addr constant [25 x i8] c"android/app/Notification\00", align 1 +@.TypeMapEntry.1075_from = private unnamed_addr constant [46 x i8] c"Android.App.NotificationChannel, Mono.Android\00", align 1 +@.TypeMapEntry.1076_to = private unnamed_addr constant [32 x i8] c"android/app/NotificationChannel\00", align 1 +@.TypeMapEntry.1077_from = private unnamed_addr constant [51 x i8] c"Android.App.NotificationChannelGroup, Mono.Android\00", align 1 +@.TypeMapEntry.1078_to = private unnamed_addr constant [37 x i8] c"android/app/NotificationChannelGroup\00", align 1 +@.TypeMapEntry.1079_from = private unnamed_addr constant [53 x i8] c"Android.App.NotificationManager+Policy, Mono.Android\00", align 1 +@.TypeMapEntry.1080_to = private unnamed_addr constant [39 x i8] c"android/app/NotificationManager$Policy\00", align 1 +@.TypeMapEntry.1081_from = private unnamed_addr constant [46 x i8] c"Android.App.NotificationManager, Mono.Android\00", align 1 +@.TypeMapEntry.1082_to = private unnamed_addr constant [32 x i8] c"android/app/NotificationManager\00", align 1 +@.TypeMapEntry.1083_from = private unnamed_addr constant [58 x i8] c"Android.App.PendingIntent+CanceledException, Mono.Android\00", align 1 +@.TypeMapEntry.1084_to = private unnamed_addr constant [44 x i8] c"android/app/PendingIntent$CanceledException\00", align 1 +@.TypeMapEntry.1085_from = private unnamed_addr constant [52 x i8] c"Android.App.PendingIntent+IOnFinished, Mono.Android\00", align 1 +@.TypeMapEntry.1086_to = private unnamed_addr constant [37 x i8] c"android/app/PendingIntent$OnFinished\00", align 1 +@.TypeMapEntry.1087_from = private unnamed_addr constant [59 x i8] c"Android.App.PendingIntent+IOnFinishedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1088_from = private unnamed_addr constant [40 x i8] c"Android.App.PendingIntent, Mono.Android\00", align 1 +@.TypeMapEntry.1089_to = private unnamed_addr constant [26 x i8] c"android/app/PendingIntent\00", align 1 +@.TypeMapEntry.1090_from = private unnamed_addr constant [60 x i8] c"Android.App.People.ConversationStatus+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1091_to = private unnamed_addr constant [46 x i8] c"android/app/people/ConversationStatus$Builder\00", align 1 +@.TypeMapEntry.1092_from = private unnamed_addr constant [52 x i8] c"Android.App.People.ConversationStatus, Mono.Android\00", align 1 +@.TypeMapEntry.1093_to = private unnamed_addr constant [38 x i8] c"android/app/people/ConversationStatus\00", align 1 +@.TypeMapEntry.1094_from = private unnamed_addr constant [47 x i8] c"Android.App.People.PeopleManager, Mono.Android\00", align 1 +@.TypeMapEntry.1095_to = private unnamed_addr constant [33 x i8] c"android/app/people/PeopleManager\00", align 1 +@.TypeMapEntry.1096_from = private unnamed_addr constant [41 x i8] c"Android.App.Person+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1097_to = private unnamed_addr constant [27 x i8] c"android/app/Person$Builder\00", align 1 +@.TypeMapEntry.1098_from = private unnamed_addr constant [33 x i8] c"Android.App.Person, Mono.Android\00", align 1 +@.TypeMapEntry.1099_to = private unnamed_addr constant [19 x i8] c"android/app/Person\00", align 1 +@.TypeMapEntry.1100_from = private unnamed_addr constant [57 x i8] c"Android.App.PictureInPictureParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1101_to = private unnamed_addr constant [43 x i8] c"android/app/PictureInPictureParams$Builder\00", align 1 +@.TypeMapEntry.1102_from = private unnamed_addr constant [49 x i8] c"Android.App.PictureInPictureParams, Mono.Android\00", align 1 +@.TypeMapEntry.1103_to = private unnamed_addr constant [35 x i8] c"android/app/PictureInPictureParams\00", align 1 +@.TypeMapEntry.1104_from = private unnamed_addr constant [50 x i8] c"Android.App.PictureInPictureUiState, Mono.Android\00", align 1 +@.TypeMapEntry.1105_to = private unnamed_addr constant [36 x i8] c"android/app/PictureInPictureUiState\00", align 1 +@.TypeMapEntry.1106_from = private unnamed_addr constant [39 x i8] c"Android.App.Presentation, Mono.Android\00", align 1 +@.TypeMapEntry.1107_to = private unnamed_addr constant [25 x i8] c"android/app/Presentation\00", align 1 +@.TypeMapEntry.1108_from = private unnamed_addr constant [41 x i8] c"Android.App.ProgressDialog, Mono.Android\00", align 1 +@.TypeMapEntry.1109_to = private unnamed_addr constant [27 x i8] c"android/app/ProgressDialog\00", align 1 +@.TypeMapEntry.1110_from = private unnamed_addr constant [55 x i8] c"Android.App.RecoverableSecurityException, Mono.Android\00", align 1 +@.TypeMapEntry.1111_to = private unnamed_addr constant [41 x i8] c"android/app/RecoverableSecurityException\00", align 1 +@.TypeMapEntry.1112_from = private unnamed_addr constant [39 x i8] c"Android.App.RemoteAction, Mono.Android\00", align 1 +@.TypeMapEntry.1113_to = private unnamed_addr constant [25 x i8] c"android/app/RemoteAction\00", align 1 +@.TypeMapEntry.1114_from = private unnamed_addr constant [46 x i8] c"Android.App.RemoteInput+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1115_to = private unnamed_addr constant [32 x i8] c"android/app/RemoteInput$Builder\00", align 1 +@.TypeMapEntry.1116_from = private unnamed_addr constant [38 x i8] c"Android.App.RemoteInput, Mono.Android\00", align 1 +@.TypeMapEntry.1117_to = private unnamed_addr constant [24 x i8] c"android/app/RemoteInput\00", align 1 +@.TypeMapEntry.1118_from = private unnamed_addr constant [44 x i8] c"Android.App.Roles.RoleManager, Mono.Android\00", align 1 +@.TypeMapEntry.1119_to = private unnamed_addr constant [29 x i8] c"android/app/role/RoleManager\00", align 1 +@.TypeMapEntry.1120_from = private unnamed_addr constant [65 x i8] c"Android.App.SdkSandbox.AppOwnedSdkSandboxInterface, Mono.Android\00", align 1 +@.TypeMapEntry.1121_to = private unnamed_addr constant [51 x i8] c"android/app/sdksandbox/AppOwnedSdkSandboxInterface\00", align 1 +@.TypeMapEntry.1122_from = private unnamed_addr constant [54 x i8] c"Android.App.SdkSandbox.LoadSdkException, Mono.Android\00", align 1 +@.TypeMapEntry.1123_to = private unnamed_addr constant [40 x i8] c"android/app/sdksandbox/LoadSdkException\00", align 1 +@.TypeMapEntry.1124_from = private unnamed_addr constant [68 x i8] c"Android.App.SdkSandbox.RequestSurfacePackageException, Mono.Android\00", align 1 +@.TypeMapEntry.1125_to = private unnamed_addr constant [54 x i8] c"android/app/sdksandbox/RequestSurfacePackageException\00", align 1 +@.TypeMapEntry.1126_from = private unnamed_addr constant [50 x i8] c"Android.App.SdkSandbox.SandboxedSdk, Mono.Android\00", align 1 +@.TypeMapEntry.1127_to = private unnamed_addr constant [36 x i8] c"android/app/sdksandbox/SandboxedSdk\00", align 1 +@.TypeMapEntry.1128_from = private unnamed_addr constant [58 x i8] c"Android.App.SdkSandbox.SandboxedSdkProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1129_to = private unnamed_addr constant [44 x i8] c"android/app/sdksandbox/SandboxedSdkProvider\00", align 1 +@.TypeMapEntry.1130_from = private unnamed_addr constant [65 x i8] c"Android.App.SdkSandbox.SandboxedSdkProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1131_from = private unnamed_addr constant [76 x i8] c"Android.App.SdkSandbox.SdkProvider.ISdkSandboxActivityHandler, Mono.Android\00", align 1 +@.TypeMapEntry.1132_to = private unnamed_addr constant [61 x i8] c"android/app/sdksandbox/sdkprovider/SdkSandboxActivityHandler\00", align 1 +@.TypeMapEntry.1133_from = private unnamed_addr constant [83 x i8] c"Android.App.SdkSandbox.SdkProvider.ISdkSandboxActivityHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1134_from = private unnamed_addr constant [70 x i8] c"Android.App.SdkSandbox.SdkProvider.SdkSandboxController, Mono.Android\00", align 1 +@.TypeMapEntry.1135_to = private unnamed_addr constant [56 x i8] c"android/app/sdksandbox/sdkprovider/SdkSandboxController\00", align 1 +@.TypeMapEntry.1136_from = private unnamed_addr constant [87 x i8] c"Android.App.SdkSandbox.SdkSandboxManager+ISdkSandboxProcessDeathCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1137_to = private unnamed_addr constant [72 x i8] c"android/app/sdksandbox/SdkSandboxManager$SdkSandboxProcessDeathCallback\00", align 1 +@.TypeMapEntry.1138_from = private unnamed_addr constant [94 x i8] c"Android.App.SdkSandbox.SdkSandboxManager+ISdkSandboxProcessDeathCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1139_from = private unnamed_addr constant [55 x i8] c"Android.App.SdkSandbox.SdkSandboxManager, Mono.Android\00", align 1 +@.TypeMapEntry.1140_to = private unnamed_addr constant [41 x i8] c"android/app/sdksandbox/SdkSandboxManager\00", align 1 +@.TypeMapEntry.1141_from = private unnamed_addr constant [58 x i8] c"Android.App.SearchManager+IOnCancelListener, Mono.Android\00", align 1 +@.TypeMapEntry.1142_to = private unnamed_addr constant [43 x i8] c"android/app/SearchManager$OnCancelListener\00", align 1 +@.TypeMapEntry.1143_from = private unnamed_addr constant [69 x i8] c"Android.App.SearchManager+IOnCancelListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1144_to = private unnamed_addr constant [59 x i8] c"mono/android/app/SearchManager_OnCancelListenerImplementor\00", align 1 +@.TypeMapEntry.1145_from = private unnamed_addr constant [65 x i8] c"Android.App.SearchManager+IOnCancelListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1146_from = private unnamed_addr constant [59 x i8] c"Android.App.SearchManager+IOnDismissListener, Mono.Android\00", align 1 +@.TypeMapEntry.1147_to = private unnamed_addr constant [44 x i8] c"android/app/SearchManager$OnDismissListener\00", align 1 +@.TypeMapEntry.1148_from = private unnamed_addr constant [70 x i8] c"Android.App.SearchManager+IOnDismissListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1149_to = private unnamed_addr constant [60 x i8] c"mono/android/app/SearchManager_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.1150_from = private unnamed_addr constant [66 x i8] c"Android.App.SearchManager+IOnDismissListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1151_from = private unnamed_addr constant [40 x i8] c"Android.App.SearchManager, Mono.Android\00", align 1 +@.TypeMapEntry.1152_to = private unnamed_addr constant [26 x i8] c"android/app/SearchManager\00", align 1 +@.TypeMapEntry.1153_from = private unnamed_addr constant [41 x i8] c"Android.App.SearchableInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1154_to = private unnamed_addr constant [27 x i8] c"android/app/SearchableInfo\00", align 1 +@.TypeMapEntry.1155_from = private unnamed_addr constant [34 x i8] c"Android.App.Service, Mono.Android\00", align 1 +@.TypeMapEntry.1156_to = private unnamed_addr constant [20 x i8] c"android/app/Service\00", align 1 +@.TypeMapEntry.1157_from = private unnamed_addr constant [41 x i8] c"Android.App.ServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1158_from = private unnamed_addr constant [58 x i8] c"Android.App.ServiceStartNotAllowedException, Mono.Android\00", align 1 +@.TypeMapEntry.1159_to = private unnamed_addr constant [44 x i8] c"android/app/ServiceStartNotAllowedException\00", align 1 +@.TypeMapEntry.1160_from = private unnamed_addr constant [65 x i8] c"Android.App.ServiceStartNotAllowedExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1161_from = private unnamed_addr constant [79 x i8] c"Android.App.SharedElementCallback+IOnSharedElementsReadyListener, Mono.Android\00", align 1 +@.TypeMapEntry.1162_to = private unnamed_addr constant [64 x i8] c"android/app/SharedElementCallback$OnSharedElementsReadyListener\00", align 1 +@.TypeMapEntry.1163_from = private unnamed_addr constant [90 x i8] c"Android.App.SharedElementCallback+IOnSharedElementsReadyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1164_to = private unnamed_addr constant [80 x i8] c"mono/android/app/SharedElementCallback_OnSharedElementsReadyListenerImplementor\00", align 1 +@.TypeMapEntry.1165_from = private unnamed_addr constant [86 x i8] c"Android.App.SharedElementCallback+IOnSharedElementsReadyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1166_from = private unnamed_addr constant [48 x i8] c"Android.App.SharedElementCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1167_to = private unnamed_addr constant [34 x i8] c"android/app/SharedElementCallback\00", align 1 +@.TypeMapEntry.1168_from = private unnamed_addr constant [55 x i8] c"Android.App.SharedElementCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1169_from = private unnamed_addr constant [47 x i8] c"Android.App.Slices.Slice+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1170_to = private unnamed_addr constant [32 x i8] c"android/app/slice/Slice$Builder\00", align 1 +@.TypeMapEntry.1171_from = private unnamed_addr constant [39 x i8] c"Android.App.Slices.Slice, Mono.Android\00", align 1 +@.TypeMapEntry.1172_to = private unnamed_addr constant [24 x i8] c"android/app/slice/Slice\00", align 1 +@.TypeMapEntry.1173_from = private unnamed_addr constant [43 x i8] c"Android.App.Slices.SliceItem, Mono.Android\00", align 1 +@.TypeMapEntry.1174_to = private unnamed_addr constant [28 x i8] c"android/app/slice/SliceItem\00", align 1 +@.TypeMapEntry.1175_from = private unnamed_addr constant [46 x i8] c"Android.App.Slices.SliceManager, Mono.Android\00", align 1 +@.TypeMapEntry.1176_to = private unnamed_addr constant [31 x i8] c"android/app/slice/SliceManager\00", align 1 +@.TypeMapEntry.1177_from = private unnamed_addr constant [46 x i8] c"Android.App.Slices.SliceMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.1178_to = private unnamed_addr constant [31 x i8] c"android/app/slice/SliceMetrics\00", align 1 +@.TypeMapEntry.1179_from = private unnamed_addr constant [47 x i8] c"Android.App.Slices.SliceProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1180_to = private unnamed_addr constant [32 x i8] c"android/app/slice/SliceProvider\00", align 1 +@.TypeMapEntry.1181_from = private unnamed_addr constant [54 x i8] c"Android.App.Slices.SliceProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1182_from = private unnamed_addr constant [43 x i8] c"Android.App.Slices.SliceSpec, Mono.Android\00", align 1 +@.TypeMapEntry.1183_to = private unnamed_addr constant [28 x i8] c"android/app/slice/SliceSpec\00", align 1 +@.TypeMapEntry.1184_from = private unnamed_addr constant [73 x i8] c"Android.App.StartForegroundCalledOnStoppedServiceException, Mono.Android\00", align 1 +@.TypeMapEntry.1185_to = private unnamed_addr constant [59 x i8] c"android/app/StartForegroundCalledOnStoppedServiceException\00", align 1 +@.TypeMapEntry.1186_from = private unnamed_addr constant [43 x i8] c"Android.App.StatusBarManager, Mono.Android\00", align 1 +@.TypeMapEntry.1187_to = private unnamed_addr constant [29 x i8] c"android/app/StatusBarManager\00", align 1 +@.TypeMapEntry.1188_from = private unnamed_addr constant [41 x i8] c"Android.App.SyncNotedAppOp, Mono.Android\00", align 1 +@.TypeMapEntry.1189_to = private unnamed_addr constant [27 x i8] c"android/app/SyncNotedAppOp\00", align 1 +@.TypeMapEntry.1190_from = private unnamed_addr constant [38 x i8] c"Android.App.TabActivity, Mono.Android\00", align 1 +@.TypeMapEntry.1191_to = private unnamed_addr constant [24 x i8] c"android/app/TabActivity\00", align 1 +@.TypeMapEntry.1192_from = private unnamed_addr constant [45 x i8] c"Android.App.TabEventDispatcher, Mono.Android\00", align 1 +@.TypeMapEntry.1193_to = private unnamed_addr constant [36 x i8] c"mono/android/app/TabEventDispatcher\00", align 1 +@.TypeMapEntry.1194_from = private unnamed_addr constant [35 x i8] c"Android.App.TaskInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1195_to = private unnamed_addr constant [21 x i8] c"android/app/TaskInfo\00", align 1 +@.TypeMapEntry.1196_from = private unnamed_addr constant [43 x i8] c"Android.App.TaskStackBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.1197_to = private unnamed_addr constant [29 x i8] c"android/app/TaskStackBuilder\00", align 1 +@.TypeMapEntry.1198_from = private unnamed_addr constant [62 x i8] c"Android.App.TimePickerDialog+IOnTimeSetListener, Mono.Android\00", align 1 +@.TypeMapEntry.1199_to = private unnamed_addr constant [47 x i8] c"android/app/TimePickerDialog$OnTimeSetListener\00", align 1 +@.TypeMapEntry.1200_from = private unnamed_addr constant [73 x i8] c"Android.App.TimePickerDialog+IOnTimeSetListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1201_to = private unnamed_addr constant [63 x i8] c"mono/android/app/TimePickerDialog_OnTimeSetListenerImplementor\00", align 1 +@.TypeMapEntry.1202_from = private unnamed_addr constant [69 x i8] c"Android.App.TimePickerDialog+IOnTimeSetListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1203_from = private unnamed_addr constant [43 x i8] c"Android.App.TimePickerDialog, Mono.Android\00", align 1 +@.TypeMapEntry.1204_to = private unnamed_addr constant [29 x i8] c"android/app/TimePickerDialog\00", align 1 +@.TypeMapEntry.1205_from = private unnamed_addr constant [65 x i8] c"Android.App.UiAutomation+IAccessibilityEventFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1206_to = private unnamed_addr constant [50 x i8] c"android/app/UiAutomation$AccessibilityEventFilter\00", align 1 +@.TypeMapEntry.1207_from = private unnamed_addr constant [72 x i8] c"Android.App.UiAutomation+IAccessibilityEventFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1208_from = private unnamed_addr constant [69 x i8] c"Android.App.UiAutomation+IOnAccessibilityEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.1209_to = private unnamed_addr constant [54 x i8] c"android/app/UiAutomation$OnAccessibilityEventListener\00", align 1 +@.TypeMapEntry.1210_from = private unnamed_addr constant [80 x i8] c"Android.App.UiAutomation+IOnAccessibilityEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1211_to = private unnamed_addr constant [70 x i8] c"mono/android/app/UiAutomation_OnAccessibilityEventListenerImplementor\00", align 1 +@.TypeMapEntry.1212_from = private unnamed_addr constant [76 x i8] c"Android.App.UiAutomation+IOnAccessibilityEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1213_from = private unnamed_addr constant [39 x i8] c"Android.App.UiAutomation, Mono.Android\00", align 1 +@.TypeMapEntry.1214_to = private unnamed_addr constant [25 x i8] c"android/app/UiAutomation\00", align 1 +@.TypeMapEntry.1215_from = private unnamed_addr constant [64 x i8] c"Android.App.UiModeManager+IContrastChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.1216_to = private unnamed_addr constant [49 x i8] c"android/app/UiModeManager$ContrastChangeListener\00", align 1 +@.TypeMapEntry.1217_from = private unnamed_addr constant [75 x i8] c"Android.App.UiModeManager+IContrastChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1218_to = private unnamed_addr constant [65 x i8] c"mono/android/app/UiModeManager_ContrastChangeListenerImplementor\00", align 1 +@.TypeMapEntry.1219_from = private unnamed_addr constant [71 x i8] c"Android.App.UiModeManager+IContrastChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1220_from = private unnamed_addr constant [40 x i8] c"Android.App.UiModeManager, Mono.Android\00", align 1 +@.TypeMapEntry.1221_to = private unnamed_addr constant [26 x i8] c"android/app/UiModeManager\00", align 1 +@.TypeMapEntry.1222_from = private unnamed_addr constant [51 x i8] c"Android.App.Usage.ConfigurationStats, Mono.Android\00", align 1 +@.TypeMapEntry.1223_to = private unnamed_addr constant [37 x i8] c"android/app/usage/ConfigurationStats\00", align 1 +@.TypeMapEntry.1224_from = private unnamed_addr constant [43 x i8] c"Android.App.Usage.EventStats, Mono.Android\00", align 1 +@.TypeMapEntry.1225_to = private unnamed_addr constant [29 x i8] c"android/app/usage/EventStats\00", align 1 +@.TypeMapEntry.1226_from = private unnamed_addr constant [53 x i8] c"Android.App.Usage.ExternalStorageStats, Mono.Android\00", align 1 +@.TypeMapEntry.1227_to = private unnamed_addr constant [39 x i8] c"android/app/usage/ExternalStorageStats\00", align 1 +@.TypeMapEntry.1228_from = private unnamed_addr constant [52 x i8] c"Android.App.Usage.NetworkStats+Bucket, Mono.Android\00", align 1 +@.TypeMapEntry.1229_to = private unnamed_addr constant [38 x i8] c"android/app/usage/NetworkStats$Bucket\00", align 1 +@.TypeMapEntry.1230_from = private unnamed_addr constant [45 x i8] c"Android.App.Usage.NetworkStats, Mono.Android\00", align 1 +@.TypeMapEntry.1231_to = private unnamed_addr constant [31 x i8] c"android/app/usage/NetworkStats\00", align 1 +@.TypeMapEntry.1232_from = private unnamed_addr constant [66 x i8] c"Android.App.Usage.NetworkStatsManager+UsageCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1233_to = private unnamed_addr constant [52 x i8] c"android/app/usage/NetworkStatsManager$UsageCallback\00", align 1 +@.TypeMapEntry.1234_from = private unnamed_addr constant [73 x i8] c"Android.App.Usage.NetworkStatsManager+UsageCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1235_from = private unnamed_addr constant [52 x i8] c"Android.App.Usage.NetworkStatsManager, Mono.Android\00", align 1 +@.TypeMapEntry.1236_to = private unnamed_addr constant [38 x i8] c"android/app/usage/NetworkStatsManager\00", align 1 +@.TypeMapEntry.1237_from = private unnamed_addr constant [45 x i8] c"Android.App.Usage.StorageStats, Mono.Android\00", align 1 +@.TypeMapEntry.1238_to = private unnamed_addr constant [31 x i8] c"android/app/usage/StorageStats\00", align 1 +@.TypeMapEntry.1239_from = private unnamed_addr constant [52 x i8] c"Android.App.Usage.StorageStatsManager, Mono.Android\00", align 1 +@.TypeMapEntry.1240_to = private unnamed_addr constant [38 x i8] c"android/app/usage/StorageStatsManager\00", align 1 +@.TypeMapEntry.1241_from = private unnamed_addr constant [50 x i8] c"Android.App.Usage.UsageEvents+Event, Mono.Android\00", align 1 +@.TypeMapEntry.1242_to = private unnamed_addr constant [36 x i8] c"android/app/usage/UsageEvents$Event\00", align 1 +@.TypeMapEntry.1243_from = private unnamed_addr constant [44 x i8] c"Android.App.Usage.UsageEvents, Mono.Android\00", align 1 +@.TypeMapEntry.1244_to = private unnamed_addr constant [30 x i8] c"android/app/usage/UsageEvents\00", align 1 +@.TypeMapEntry.1245_from = private unnamed_addr constant [57 x i8] c"Android.App.Usage.UsageEventsQuery+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1246_to = private unnamed_addr constant [43 x i8] c"android/app/usage/UsageEventsQuery$Builder\00", align 1 +@.TypeMapEntry.1247_from = private unnamed_addr constant [49 x i8] c"Android.App.Usage.UsageEventsQuery, Mono.Android\00", align 1 +@.TypeMapEntry.1248_to = private unnamed_addr constant [35 x i8] c"android/app/usage/UsageEventsQuery\00", align 1 +@.TypeMapEntry.1249_from = private unnamed_addr constant [43 x i8] c"Android.App.Usage.UsageStats, Mono.Android\00", align 1 +@.TypeMapEntry.1250_to = private unnamed_addr constant [29 x i8] c"android/app/usage/UsageStats\00", align 1 +@.TypeMapEntry.1251_from = private unnamed_addr constant [50 x i8] c"Android.App.Usage.UsageStatsManager, Mono.Android\00", align 1 +@.TypeMapEntry.1252_to = private unnamed_addr constant [36 x i8] c"android/app/usage/UsageStatsManager\00", align 1 +@.TypeMapEntry.1253_from = private unnamed_addr constant [60 x i8] c"Android.App.VoiceInteractor+AbortVoiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1254_to = private unnamed_addr constant [46 x i8] c"android/app/VoiceInteractor$AbortVoiceRequest\00", align 1 +@.TypeMapEntry.1255_from = private unnamed_addr constant [57 x i8] c"Android.App.VoiceInteractor+CommandRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1256_to = private unnamed_addr constant [43 x i8] c"android/app/VoiceInteractor$CommandRequest\00", align 1 +@.TypeMapEntry.1257_from = private unnamed_addr constant [63 x i8] c"Android.App.VoiceInteractor+CompleteVoiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1258_to = private unnamed_addr constant [49 x i8] c"android/app/VoiceInteractor$CompleteVoiceRequest\00", align 1 +@.TypeMapEntry.1259_from = private unnamed_addr constant [62 x i8] c"Android.App.VoiceInteractor+ConfirmationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1260_to = private unnamed_addr constant [48 x i8] c"android/app/VoiceInteractor$ConfirmationRequest\00", align 1 +@.TypeMapEntry.1261_from = private unnamed_addr constant [67 x i8] c"Android.App.VoiceInteractor+PickOptionRequest+Option, Mono.Android\00", align 1 +@.TypeMapEntry.1262_to = private unnamed_addr constant [53 x i8] c"android/app/VoiceInteractor$PickOptionRequest$Option\00", align 1 +@.TypeMapEntry.1263_from = private unnamed_addr constant [60 x i8] c"Android.App.VoiceInteractor+PickOptionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1264_to = private unnamed_addr constant [46 x i8] c"android/app/VoiceInteractor$PickOptionRequest\00", align 1 +@.TypeMapEntry.1265_from = private unnamed_addr constant [49 x i8] c"Android.App.VoiceInteractor+Prompt, Mono.Android\00", align 1 +@.TypeMapEntry.1266_to = private unnamed_addr constant [35 x i8] c"android/app/VoiceInteractor$Prompt\00", align 1 +@.TypeMapEntry.1267_from = private unnamed_addr constant [50 x i8] c"Android.App.VoiceInteractor+Request, Mono.Android\00", align 1 +@.TypeMapEntry.1268_to = private unnamed_addr constant [36 x i8] c"android/app/VoiceInteractor$Request\00", align 1 +@.TypeMapEntry.1269_from = private unnamed_addr constant [57 x i8] c"Android.App.VoiceInteractor+RequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1270_from = private unnamed_addr constant [42 x i8] c"Android.App.VoiceInteractor, Mono.Android\00", align 1 +@.TypeMapEntry.1271_to = private unnamed_addr constant [28 x i8] c"android/app/VoiceInteractor\00", align 1 +@.TypeMapEntry.1272_from = private unnamed_addr constant [42 x i8] c"Android.App.WallpaperColors, Mono.Android\00", align 1 +@.TypeMapEntry.1273_to = private unnamed_addr constant [28 x i8] c"android/app/WallpaperColors\00", align 1 +@.TypeMapEntry.1274_from = private unnamed_addr constant [40 x i8] c"Android.App.WallpaperInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1275_to = private unnamed_addr constant [26 x i8] c"android/app/WallpaperInfo\00", align 1 +@.TypeMapEntry.1276_from = private unnamed_addr constant [68 x i8] c"Android.App.WallpaperManager+IOnColorsChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.1277_to = private unnamed_addr constant [53 x i8] c"android/app/WallpaperManager$OnColorsChangedListener\00", align 1 +@.TypeMapEntry.1278_from = private unnamed_addr constant [79 x i8] c"Android.App.WallpaperManager+IOnColorsChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1279_to = private unnamed_addr constant [69 x i8] c"mono/android/app/WallpaperManager_OnColorsChangedListenerImplementor\00", align 1 +@.TypeMapEntry.1280_from = private unnamed_addr constant [75 x i8] c"Android.App.WallpaperManager+IOnColorsChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1281_from = private unnamed_addr constant [43 x i8] c"Android.App.WallpaperManager, Mono.Android\00", align 1 +@.TypeMapEntry.1282_to = private unnamed_addr constant [29 x i8] c"android/app/WallpaperManager\00", align 1 +@.TypeMapEntry.1283_from = private unnamed_addr constant [46 x i8] c"Android.Appwidget.AppWidgetHost, Mono.Android\00", align 1 +@.TypeMapEntry.1284_to = private unnamed_addr constant [32 x i8] c"android/appwidget/AppWidgetHost\00", align 1 +@.TypeMapEntry.1285_from = private unnamed_addr constant [50 x i8] c"Android.Appwidget.AppWidgetHostView, Mono.Android\00", align 1 +@.TypeMapEntry.1286_to = private unnamed_addr constant [36 x i8] c"android/appwidget/AppWidgetHostView\00", align 1 +@.TypeMapEntry.1287_from = private unnamed_addr constant [49 x i8] c"Android.Appwidget.AppWidgetManager, Mono.Android\00", align 1 +@.TypeMapEntry.1288_to = private unnamed_addr constant [35 x i8] c"android/appwidget/AppWidgetManager\00", align 1 +@.TypeMapEntry.1289_from = private unnamed_addr constant [50 x i8] c"Android.Appwidget.AppWidgetProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1290_to = private unnamed_addr constant [36 x i8] c"android/appwidget/AppWidgetProvider\00", align 1 +@.TypeMapEntry.1291_from = private unnamed_addr constant [54 x i8] c"Android.Appwidget.AppWidgetProviderInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1292_to = private unnamed_addr constant [40 x i8] c"android/appwidget/AppWidgetProviderInfo\00", align 1 +@.TypeMapEntry.1293_from = private unnamed_addr constant [46 x i8] c"Android.Bluetooth.BluetoothA2dp, Mono.Android\00", align 1 +@.TypeMapEntry.1294_to = private unnamed_addr constant [32 x i8] c"android/bluetooth/BluetoothA2dp\00", align 1 +@.TypeMapEntry.1295_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.BluetoothAdapter+ILeScanCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1296_to = private unnamed_addr constant [50 x i8] c"android/bluetooth/BluetoothAdapter$LeScanCallback\00", align 1 +@.TypeMapEntry.1297_from = private unnamed_addr constant [72 x i8] c"Android.Bluetooth.BluetoothAdapter+ILeScanCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1298_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.BluetoothAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.1299_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/BluetoothAdapter\00", align 1 +@.TypeMapEntry.1300_from = private unnamed_addr constant [57 x i8] c"Android.Bluetooth.BluetoothAssignedNumbers, Mono.Android\00", align 1 +@.TypeMapEntry.1301_to = private unnamed_addr constant [43 x i8] c"android/bluetooth/BluetoothAssignedNumbers\00", align 1 +@.TypeMapEntry.1302_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothClass+Device+Major, Mono.Android\00", align 1 +@.TypeMapEntry.1303_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothClass$Device$Major\00", align 1 +@.TypeMapEntry.1304_from = private unnamed_addr constant [54 x i8] c"Android.Bluetooth.BluetoothClass+Device, Mono.Android\00", align 1 +@.TypeMapEntry.1305_to = private unnamed_addr constant [40 x i8] c"android/bluetooth/BluetoothClass$Device\00", align 1 +@.TypeMapEntry.1306_from = private unnamed_addr constant [55 x i8] c"Android.Bluetooth.BluetoothClass+Service, Mono.Android\00", align 1 +@.TypeMapEntry.1307_to = private unnamed_addr constant [41 x i8] c"android/bluetooth/BluetoothClass$Service\00", align 1 +@.TypeMapEntry.1308_from = private unnamed_addr constant [47 x i8] c"Android.Bluetooth.BluetoothClass, Mono.Android\00", align 1 +@.TypeMapEntry.1309_to = private unnamed_addr constant [33 x i8] c"android/bluetooth/BluetoothClass\00", align 1 +@.TypeMapEntry.1310_from = private unnamed_addr constant [61 x i8] c"Android.Bluetooth.BluetoothCodecConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1311_to = private unnamed_addr constant [47 x i8] c"android/bluetooth/BluetoothCodecConfig$Builder\00", align 1 +@.TypeMapEntry.1312_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.BluetoothCodecConfig, Mono.Android\00", align 1 +@.TypeMapEntry.1313_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/BluetoothCodecConfig\00", align 1 +@.TypeMapEntry.1314_from = private unnamed_addr constant [61 x i8] c"Android.Bluetooth.BluetoothCodecStatus+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1315_to = private unnamed_addr constant [47 x i8] c"android/bluetooth/BluetoothCodecStatus$Builder\00", align 1 +@.TypeMapEntry.1316_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.BluetoothCodecStatus, Mono.Android\00", align 1 +@.TypeMapEntry.1317_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/BluetoothCodecStatus\00", align 1 +@.TypeMapEntry.1318_from = private unnamed_addr constant [51 x i8] c"Android.Bluetooth.BluetoothCodecType, Mono.Android\00", align 1 +@.TypeMapEntry.1319_to = private unnamed_addr constant [37 x i8] c"android/bluetooth/BluetoothCodecType\00", align 1 +@.TypeMapEntry.1320_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothCsipSetCoordinator, Mono.Android\00", align 1 +@.TypeMapEntry.1321_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothCsipSetCoordinator\00", align 1 +@.TypeMapEntry.1322_from = private unnamed_addr constant [48 x i8] c"Android.Bluetooth.BluetoothDevice, Mono.Android\00", align 1 +@.TypeMapEntry.1323_to = private unnamed_addr constant [34 x i8] c"android/bluetooth/BluetoothDevice\00", align 1 +@.TypeMapEntry.1324_from = private unnamed_addr constant [46 x i8] c"Android.Bluetooth.BluetoothGatt, Mono.Android\00", align 1 +@.TypeMapEntry.1325_to = private unnamed_addr constant [32 x i8] c"android/bluetooth/BluetoothGatt\00", align 1 +@.TypeMapEntry.1326_from = private unnamed_addr constant [54 x i8] c"Android.Bluetooth.BluetoothGattCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1327_to = private unnamed_addr constant [40 x i8] c"android/bluetooth/BluetoothGattCallback\00", align 1 +@.TypeMapEntry.1328_from = private unnamed_addr constant [61 x i8] c"Android.Bluetooth.BluetoothGattCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1329_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothGattCharacteristic, Mono.Android\00", align 1 +@.TypeMapEntry.1330_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothGattCharacteristic\00", align 1 +@.TypeMapEntry.1331_from = private unnamed_addr constant [56 x i8] c"Android.Bluetooth.BluetoothGattDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.1332_to = private unnamed_addr constant [42 x i8] c"android/bluetooth/BluetoothGattDescriptor\00", align 1 +@.TypeMapEntry.1333_from = private unnamed_addr constant [52 x i8] c"Android.Bluetooth.BluetoothGattServer, Mono.Android\00", align 1 +@.TypeMapEntry.1334_to = private unnamed_addr constant [38 x i8] c"android/bluetooth/BluetoothGattServer\00", align 1 +@.TypeMapEntry.1335_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothGattServerCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1336_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothGattServerCallback\00", align 1 +@.TypeMapEntry.1337_from = private unnamed_addr constant [67 x i8] c"Android.Bluetooth.BluetoothGattServerCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1338_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.BluetoothGattService, Mono.Android\00", align 1 +@.TypeMapEntry.1339_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/BluetoothGattService\00", align 1 +@.TypeMapEntry.1340_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.BluetoothHeadset, Mono.Android\00", align 1 +@.TypeMapEntry.1341_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/BluetoothHeadset\00", align 1 +@.TypeMapEntry.1342_from = private unnamed_addr constant [48 x i8] c"Android.Bluetooth.BluetoothHealth, Mono.Android\00", align 1 +@.TypeMapEntry.1343_to = private unnamed_addr constant [34 x i8] c"android/bluetooth/BluetoothHealth\00", align 1 +@.TypeMapEntry.1344_from = private unnamed_addr constant [64 x i8] c"Android.Bluetooth.BluetoothHealthAppConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.1345_to = private unnamed_addr constant [50 x i8] c"android/bluetooth/BluetoothHealthAppConfiguration\00", align 1 +@.TypeMapEntry.1346_from = private unnamed_addr constant [56 x i8] c"Android.Bluetooth.BluetoothHealthCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1347_to = private unnamed_addr constant [42 x i8] c"android/bluetooth/BluetoothHealthCallback\00", align 1 +@.TypeMapEntry.1348_from = private unnamed_addr constant [63 x i8] c"Android.Bluetooth.BluetoothHealthCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1349_from = private unnamed_addr constant [52 x i8] c"Android.Bluetooth.BluetoothHearingAid, Mono.Android\00", align 1 +@.TypeMapEntry.1350_to = private unnamed_addr constant [38 x i8] c"android/bluetooth/BluetoothHearingAid\00", align 1 +@.TypeMapEntry.1351_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothHidDevice+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.1352_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothHidDevice$Callback\00", align 1 +@.TypeMapEntry.1353_from = private unnamed_addr constant [67 x i8] c"Android.Bluetooth.BluetoothHidDevice+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1354_from = private unnamed_addr constant [51 x i8] c"Android.Bluetooth.BluetoothHidDevice, Mono.Android\00", align 1 +@.TypeMapEntry.1355_to = private unnamed_addr constant [37 x i8] c"android/bluetooth/BluetoothHidDevice\00", align 1 +@.TypeMapEntry.1356_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.BluetoothHidDeviceAppQosSettings, Mono.Android\00", align 1 +@.TypeMapEntry.1357_to = private unnamed_addr constant [51 x i8] c"android/bluetooth/BluetoothHidDeviceAppQosSettings\00", align 1 +@.TypeMapEntry.1358_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.BluetoothHidDeviceAppSdpSettings, Mono.Android\00", align 1 +@.TypeMapEntry.1359_to = private unnamed_addr constant [51 x i8] c"android/bluetooth/BluetoothHidDeviceAppSdpSettings\00", align 1 +@.TypeMapEntry.1360_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.BluetoothLeAudio, Mono.Android\00", align 1 +@.TypeMapEntry.1361_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/BluetoothLeAudio\00", align 1 +@.TypeMapEntry.1362_from = private unnamed_addr constant [68 x i8] c"Android.Bluetooth.BluetoothLeAudioCodecConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1363_to = private unnamed_addr constant [54 x i8] c"android/bluetooth/BluetoothLeAudioCodecConfig$Builder\00", align 1 +@.TypeMapEntry.1364_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothLeAudioCodecConfig, Mono.Android\00", align 1 +@.TypeMapEntry.1365_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothLeAudioCodecConfig\00", align 1 +@.TypeMapEntry.1366_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.BluetoothLeAudioCodecStatus, Mono.Android\00", align 1 +@.TypeMapEntry.1367_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/BluetoothLeAudioCodecStatus\00", align 1 +@.TypeMapEntry.1368_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.BluetoothManager, Mono.Android\00", align 1 +@.TypeMapEntry.1369_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/BluetoothManager\00", align 1 +@.TypeMapEntry.1370_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.BluetoothProfile, Mono.Android\00", align 1 +@.TypeMapEntry.1371_to = private unnamed_addr constant [49 x i8] c"mono/internal/android/bluetooth/BluetoothProfile\00", align 1 +@.TypeMapEntry.1372_from = private unnamed_addr constant [54 x i8] c"Android.Bluetooth.BluetoothServerSocket, Mono.Android\00", align 1 +@.TypeMapEntry.1373_to = private unnamed_addr constant [40 x i8] c"android/bluetooth/BluetoothServerSocket\00", align 1 +@.TypeMapEntry.1374_from = private unnamed_addr constant [48 x i8] c"Android.Bluetooth.BluetoothSocket, Mono.Android\00", align 1 +@.TypeMapEntry.1375_to = private unnamed_addr constant [34 x i8] c"android/bluetooth/BluetoothSocket\00", align 1 +@.TypeMapEntry.1376_from = private unnamed_addr constant [57 x i8] c"Android.Bluetooth.BluetoothSocketException, Mono.Android\00", align 1 +@.TypeMapEntry.1377_to = private unnamed_addr constant [43 x i8] c"android/bluetooth/BluetoothSocketException\00", align 1 +@.TypeMapEntry.1378_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.BluetoothStatusCodes, Mono.Android\00", align 1 +@.TypeMapEntry.1379_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/BluetoothStatusCodes\00", align 1 +@.TypeMapEntry.1380_from = private unnamed_addr constant [50 x i8] c"Android.Bluetooth.IBluetoothProfile, Mono.Android\00", align 1 +@.TypeMapEntry.1381_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/BluetoothProfile\00", align 1 +@.TypeMapEntry.1382_from = private unnamed_addr constant [57 x i8] c"Android.Bluetooth.IBluetoothProfileInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1383_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.IBluetoothProfileServiceListener, Mono.Android\00", align 1 +@.TypeMapEntry.1384_to = private unnamed_addr constant [51 x i8] c"android/bluetooth/BluetoothProfile$ServiceListener\00", align 1 +@.TypeMapEntry.1385_from = private unnamed_addr constant [76 x i8] c"Android.Bluetooth.IBluetoothProfileServiceListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1386_to = private unnamed_addr constant [67 x i8] c"mono/android/bluetooth/BluetoothProfile_ServiceListenerImplementor\00", align 1 +@.TypeMapEntry.1387_from = private unnamed_addr constant [72 x i8] c"Android.Bluetooth.IBluetoothProfileServiceListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1388_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.LE.AdvertiseCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1389_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/le/AdvertiseCallback\00", align 1 +@.TypeMapEntry.1390_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.LE.AdvertiseCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1391_from = private unnamed_addr constant [57 x i8] c"Android.Bluetooth.LE.AdvertiseData+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1392_to = private unnamed_addr constant [43 x i8] c"android/bluetooth/le/AdvertiseData$Builder\00", align 1 +@.TypeMapEntry.1393_from = private unnamed_addr constant [49 x i8] c"Android.Bluetooth.LE.AdvertiseData, Mono.Android\00", align 1 +@.TypeMapEntry.1394_to = private unnamed_addr constant [35 x i8] c"android/bluetooth/le/AdvertiseData\00", align 1 +@.TypeMapEntry.1395_from = private unnamed_addr constant [61 x i8] c"Android.Bluetooth.LE.AdvertiseSettings+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1396_to = private unnamed_addr constant [47 x i8] c"android/bluetooth/le/AdvertiseSettings$Builder\00", align 1 +@.TypeMapEntry.1397_from = private unnamed_addr constant [53 x i8] c"Android.Bluetooth.LE.AdvertiseSettings, Mono.Android\00", align 1 +@.TypeMapEntry.1398_to = private unnamed_addr constant [39 x i8] c"android/bluetooth/le/AdvertiseSettings\00", align 1 +@.TypeMapEntry.1399_from = private unnamed_addr constant [50 x i8] c"Android.Bluetooth.LE.AdvertisingSet, Mono.Android\00", align 1 +@.TypeMapEntry.1400_to = private unnamed_addr constant [36 x i8] c"android/bluetooth/le/AdvertisingSet\00", align 1 +@.TypeMapEntry.1401_from = private unnamed_addr constant [58 x i8] c"Android.Bluetooth.LE.AdvertisingSetCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1402_to = private unnamed_addr constant [44 x i8] c"android/bluetooth/le/AdvertisingSetCallback\00", align 1 +@.TypeMapEntry.1403_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.LE.AdvertisingSetCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1404_from = private unnamed_addr constant [68 x i8] c"Android.Bluetooth.LE.AdvertisingSetParameters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1405_to = private unnamed_addr constant [54 x i8] c"android/bluetooth/le/AdvertisingSetParameters$Builder\00", align 1 +@.TypeMapEntry.1406_from = private unnamed_addr constant [60 x i8] c"Android.Bluetooth.LE.AdvertisingSetParameters, Mono.Android\00", align 1 +@.TypeMapEntry.1407_to = private unnamed_addr constant [46 x i8] c"android/bluetooth/le/AdvertisingSetParameters\00", align 1 +@.TypeMapEntry.1408_from = private unnamed_addr constant [57 x i8] c"Android.Bluetooth.LE.BluetoothLeAdvertiser, Mono.Android\00", align 1 +@.TypeMapEntry.1409_to = private unnamed_addr constant [43 x i8] c"android/bluetooth/le/BluetoothLeAdvertiser\00", align 1 +@.TypeMapEntry.1410_from = private unnamed_addr constant [54 x i8] c"Android.Bluetooth.LE.BluetoothLeScanner, Mono.Android\00", align 1 +@.TypeMapEntry.1411_to = private unnamed_addr constant [40 x i8] c"android/bluetooth/le/BluetoothLeScanner\00", align 1 +@.TypeMapEntry.1412_from = private unnamed_addr constant [73 x i8] c"Android.Bluetooth.LE.PeriodicAdvertisingParameters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1413_to = private unnamed_addr constant [59 x i8] c"android/bluetooth/le/PeriodicAdvertisingParameters$Builder\00", align 1 +@.TypeMapEntry.1414_from = private unnamed_addr constant [65 x i8] c"Android.Bluetooth.LE.PeriodicAdvertisingParameters, Mono.Android\00", align 1 +@.TypeMapEntry.1415_to = private unnamed_addr constant [51 x i8] c"android/bluetooth/le/PeriodicAdvertisingParameters\00", align 1 +@.TypeMapEntry.1416_from = private unnamed_addr constant [48 x i8] c"Android.Bluetooth.LE.ScanCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1417_to = private unnamed_addr constant [34 x i8] c"android/bluetooth/le/ScanCallback\00", align 1 +@.TypeMapEntry.1418_from = private unnamed_addr constant [55 x i8] c"Android.Bluetooth.LE.ScanCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1419_from = private unnamed_addr constant [54 x i8] c"Android.Bluetooth.LE.ScanFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1420_to = private unnamed_addr constant [40 x i8] c"android/bluetooth/le/ScanFilter$Builder\00", align 1 +@.TypeMapEntry.1421_from = private unnamed_addr constant [46 x i8] c"Android.Bluetooth.LE.ScanFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1422_to = private unnamed_addr constant [32 x i8] c"android/bluetooth/le/ScanFilter\00", align 1 +@.TypeMapEntry.1423_from = private unnamed_addr constant [46 x i8] c"Android.Bluetooth.LE.ScanRecord, Mono.Android\00", align 1 +@.TypeMapEntry.1424_to = private unnamed_addr constant [32 x i8] c"android/bluetooth/le/ScanRecord\00", align 1 +@.TypeMapEntry.1425_from = private unnamed_addr constant [46 x i8] c"Android.Bluetooth.LE.ScanResult, Mono.Android\00", align 1 +@.TypeMapEntry.1426_to = private unnamed_addr constant [32 x i8] c"android/bluetooth/le/ScanResult\00", align 1 +@.TypeMapEntry.1427_from = private unnamed_addr constant [56 x i8] c"Android.Bluetooth.LE.ScanSettings+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1428_to = private unnamed_addr constant [42 x i8] c"android/bluetooth/le/ScanSettings$Builder\00", align 1 +@.TypeMapEntry.1429_from = private unnamed_addr constant [48 x i8] c"Android.Bluetooth.LE.ScanSettings, Mono.Android\00", align 1 +@.TypeMapEntry.1430_to = private unnamed_addr constant [34 x i8] c"android/bluetooth/le/ScanSettings\00", align 1 +@.TypeMapEntry.1431_from = private unnamed_addr constant [50 x i8] c"Android.Bluetooth.LE.TransportBlock, Mono.Android\00", align 1 +@.TypeMapEntry.1432_to = private unnamed_addr constant [36 x i8] c"android/bluetooth/le/TransportBlock\00", align 1 +@.TypeMapEntry.1433_from = private unnamed_addr constant [58 x i8] c"Android.Bluetooth.LE.TransportDiscoveryData, Mono.Android\00", align 1 +@.TypeMapEntry.1434_to = private unnamed_addr constant [44 x i8] c"android/bluetooth/le/TransportDiscoveryData\00", align 1 +@.TypeMapEntry.1435_from = private unnamed_addr constant [49 x i8] c"Android.Companion.AssociatedDevice, Mono.Android\00", align 1 +@.TypeMapEntry.1436_to = private unnamed_addr constant [35 x i8] c"android/companion/AssociatedDevice\00", align 1 +@.TypeMapEntry.1437_from = private unnamed_addr constant [48 x i8] c"Android.Companion.AssociationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1438_to = private unnamed_addr constant [34 x i8] c"android/companion/AssociationInfo\00", align 1 +@.TypeMapEntry.1439_from = private unnamed_addr constant [59 x i8] c"Android.Companion.AssociationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1440_to = private unnamed_addr constant [45 x i8] c"android/companion/AssociationRequest$Builder\00", align 1 +@.TypeMapEntry.1441_from = private unnamed_addr constant [51 x i8] c"Android.Companion.AssociationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1442_to = private unnamed_addr constant [37 x i8] c"android/companion/AssociationRequest\00", align 1 +@.TypeMapEntry.1443_from = private unnamed_addr constant [62 x i8] c"Android.Companion.BluetoothDeviceFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1444_to = private unnamed_addr constant [48 x i8] c"android/companion/BluetoothDeviceFilter$Builder\00", align 1 +@.TypeMapEntry.1445_from = private unnamed_addr constant [54 x i8] c"Android.Companion.BluetoothDeviceFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1446_to = private unnamed_addr constant [40 x i8] c"android/companion/BluetoothDeviceFilter\00", align 1 +@.TypeMapEntry.1447_from = private unnamed_addr constant [64 x i8] c"Android.Companion.BluetoothLeDeviceFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1448_to = private unnamed_addr constant [50 x i8] c"android/companion/BluetoothLeDeviceFilter$Builder\00", align 1 +@.TypeMapEntry.1449_from = private unnamed_addr constant [56 x i8] c"Android.Companion.BluetoothLeDeviceFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1450_to = private unnamed_addr constant [42 x i8] c"android/companion/BluetoothLeDeviceFilter\00", align 1 +@.TypeMapEntry.1451_from = private unnamed_addr constant [64 x i8] c"Android.Companion.CompanionDeviceManager+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.1452_to = private unnamed_addr constant [50 x i8] c"android/companion/CompanionDeviceManager$Callback\00", align 1 +@.TypeMapEntry.1453_from = private unnamed_addr constant [71 x i8] c"Android.Companion.CompanionDeviceManager+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1454_from = private unnamed_addr constant [55 x i8] c"Android.Companion.CompanionDeviceManager, Mono.Android\00", align 1 +@.TypeMapEntry.1455_to = private unnamed_addr constant [41 x i8] c"android/companion/CompanionDeviceManager\00", align 1 +@.TypeMapEntry.1456_from = private unnamed_addr constant [55 x i8] c"Android.Companion.CompanionDeviceService, Mono.Android\00", align 1 +@.TypeMapEntry.1457_to = private unnamed_addr constant [41 x i8] c"android/companion/CompanionDeviceService\00", align 1 +@.TypeMapEntry.1458_from = private unnamed_addr constant [62 x i8] c"Android.Companion.CompanionDeviceServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1459_from = private unnamed_addr constant [51 x i8] c"Android.Companion.CompanionException, Mono.Android\00", align 1 +@.TypeMapEntry.1460_to = private unnamed_addr constant [37 x i8] c"android/companion/CompanionException\00", align 1 +@.TypeMapEntry.1461_from = private unnamed_addr constant [61 x i8] c"Android.Companion.DeviceNotAssociatedException, Mono.Android\00", align 1 +@.TypeMapEntry.1462_to = private unnamed_addr constant [47 x i8] c"android/companion/DeviceNotAssociatedException\00", align 1 +@.TypeMapEntry.1463_from = private unnamed_addr constant [46 x i8] c"Android.Companion.IDeviceFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1464_to = private unnamed_addr constant [31 x i8] c"android/companion/DeviceFilter\00", align 1 +@.TypeMapEntry.1465_from = private unnamed_addr constant [53 x i8] c"Android.Companion.IDeviceFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1466_from = private unnamed_addr constant [54 x i8] c"Android.Companion.Virtual.VirtualDevice, Mono.Android\00", align 1 +@.TypeMapEntry.1467_to = private unnamed_addr constant [40 x i8] c"android/companion/virtual/VirtualDevice\00", align 1 +@.TypeMapEntry.1468_from = private unnamed_addr constant [84 x i8] c"Android.Companion.Virtual.VirtualDeviceManager+IVirtualDeviceListener, Mono.Android\00", align 1 +@.TypeMapEntry.1469_to = private unnamed_addr constant [69 x i8] c"android/companion/virtual/VirtualDeviceManager$VirtualDeviceListener\00", align 1 +@.TypeMapEntry.1470_from = private unnamed_addr constant [95 x i8] c"Android.Companion.Virtual.VirtualDeviceManager+IVirtualDeviceListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1471_to = private unnamed_addr constant [85 x i8] c"mono/android/companion/virtual/VirtualDeviceManager_VirtualDeviceListenerImplementor\00", align 1 +@.TypeMapEntry.1472_from = private unnamed_addr constant [91 x i8] c"Android.Companion.Virtual.VirtualDeviceManager+IVirtualDeviceListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1473_from = private unnamed_addr constant [61 x i8] c"Android.Companion.Virtual.VirtualDeviceManager, Mono.Android\00", align 1 +@.TypeMapEntry.1474_to = private unnamed_addr constant [47 x i8] c"android/companion/virtual/VirtualDeviceManager\00", align 1 +@.TypeMapEntry.1475_from = private unnamed_addr constant [57 x i8] c"Android.Companion.WifiDeviceFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1476_to = private unnamed_addr constant [43 x i8] c"android/companion/WifiDeviceFilter$Builder\00", align 1 +@.TypeMapEntry.1477_from = private unnamed_addr constant [49 x i8] c"Android.Companion.WifiDeviceFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1478_to = private unnamed_addr constant [35 x i8] c"android/companion/WifiDeviceFilter\00", align 1 +@.TypeMapEntry.1479_from = private unnamed_addr constant [58 x i8] c"Android.Content.AbstractThreadedSyncAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.1480_to = private unnamed_addr constant [44 x i8] c"android/content/AbstractThreadedSyncAdapter\00", align 1 +@.TypeMapEntry.1481_from = private unnamed_addr constant [65 x i8] c"Android.Content.AbstractThreadedSyncAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1482_from = private unnamed_addr constant [56 x i8] c"Android.Content.ActivityNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.1483_to = private unnamed_addr constant [42 x i8] c"android/content/ActivityNotFoundException\00", align 1 +@.TypeMapEntry.1484_from = private unnamed_addr constant [59 x i8] c"Android.Content.AsyncQueryHandler+WorkerArgs, Mono.Android\00", align 1 +@.TypeMapEntry.1485_to = private unnamed_addr constant [45 x i8] c"android/content/AsyncQueryHandler$WorkerArgs\00", align 1 +@.TypeMapEntry.1486_from = private unnamed_addr constant [62 x i8] c"Android.Content.AsyncQueryHandler+WorkerHandler, Mono.Android\00", align 1 +@.TypeMapEntry.1487_to = private unnamed_addr constant [48 x i8] c"android/content/AsyncQueryHandler$WorkerHandler\00", align 1 +@.TypeMapEntry.1488_from = private unnamed_addr constant [48 x i8] c"Android.Content.AsyncQueryHandler, Mono.Android\00", align 1 +@.TypeMapEntry.1489_to = private unnamed_addr constant [34 x i8] c"android/content/AsyncQueryHandler\00", align 1 +@.TypeMapEntry.1490_from = private unnamed_addr constant [55 x i8] c"Android.Content.AsyncQueryHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1491_from = private unnamed_addr constant [46 x i8] c"Android.Content.AsyncTaskLoader, Mono.Android\00", align 1 +@.TypeMapEntry.1492_to = private unnamed_addr constant [32 x i8] c"android/content/AsyncTaskLoader\00", align 1 +@.TypeMapEntry.1493_from = private unnamed_addr constant [53 x i8] c"Android.Content.AsyncTaskLoaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1494_from = private unnamed_addr constant [56 x i8] c"Android.Content.AttributionSource+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1495_to = private unnamed_addr constant [42 x i8] c"android/content/AttributionSource$Builder\00", align 1 +@.TypeMapEntry.1496_from = private unnamed_addr constant [48 x i8] c"Android.Content.AttributionSource, Mono.Android\00", align 1 +@.TypeMapEntry.1497_to = private unnamed_addr constant [34 x i8] c"android/content/AttributionSource\00", align 1 +@.TypeMapEntry.1498_from = private unnamed_addr constant [62 x i8] c"Android.Content.BroadcastReceiver+PendingResult, Mono.Android\00", align 1 +@.TypeMapEntry.1499_to = private unnamed_addr constant [48 x i8] c"android/content/BroadcastReceiver$PendingResult\00", align 1 +@.TypeMapEntry.1500_from = private unnamed_addr constant [48 x i8] c"Android.Content.BroadcastReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.1501_to = private unnamed_addr constant [34 x i8] c"android/content/BroadcastReceiver\00", align 1 +@.TypeMapEntry.1502_from = private unnamed_addr constant [55 x i8] c"Android.Content.BroadcastReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1503_from = private unnamed_addr constant [52 x i8] c"Android.Content.ClipData+Item+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1504_to = private unnamed_addr constant [38 x i8] c"android/content/ClipData$Item$Builder\00", align 1 +@.TypeMapEntry.1505_from = private unnamed_addr constant [44 x i8] c"Android.Content.ClipData+Item, Mono.Android\00", align 1 +@.TypeMapEntry.1506_to = private unnamed_addr constant [30 x i8] c"android/content/ClipData$Item\00", align 1 +@.TypeMapEntry.1507_from = private unnamed_addr constant [39 x i8] c"Android.Content.ClipData, Mono.Android\00", align 1 +@.TypeMapEntry.1508_to = private unnamed_addr constant [25 x i8] c"android/content/ClipData\00", align 1 +@.TypeMapEntry.1509_from = private unnamed_addr constant [46 x i8] c"Android.Content.ClipDescription, Mono.Android\00", align 1 +@.TypeMapEntry.1510_to = private unnamed_addr constant [32 x i8] c"android/content/ClipDescription\00", align 1 +@.TypeMapEntry.1511_from = private unnamed_addr constant [77 x i8] c"Android.Content.ClipboardManager+IOnPrimaryClipChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.1512_to = private unnamed_addr constant [62 x i8] c"android/content/ClipboardManager$OnPrimaryClipChangedListener\00", align 1 +@.TypeMapEntry.1513_from = private unnamed_addr constant [88 x i8] c"Android.Content.ClipboardManager+IOnPrimaryClipChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1514_to = private unnamed_addr constant [78 x i8] c"mono/android/content/ClipboardManager_OnPrimaryClipChangedListenerImplementor\00", align 1 +@.TypeMapEntry.1515_from = private unnamed_addr constant [84 x i8] c"Android.Content.ClipboardManager+IOnPrimaryClipChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1516_from = private unnamed_addr constant [47 x i8] c"Android.Content.ClipboardManager, Mono.Android\00", align 1 +@.TypeMapEntry.1517_to = private unnamed_addr constant [33 x i8] c"android/content/ClipboardManager\00", align 1 +@.TypeMapEntry.1518_from = private unnamed_addr constant [50 x i8] c"Android.Content.ComponentCallbacks2, Mono.Android\00", align 1 +@.TypeMapEntry.1519_to = private unnamed_addr constant [50 x i8] c"mono/internal/android/content/ComponentCallbacks2\00", align 1 +@.TypeMapEntry.1520_from = private unnamed_addr constant [44 x i8] c"Android.Content.ComponentName, Mono.Android\00", align 1 +@.TypeMapEntry.1521_to = private unnamed_addr constant [30 x i8] c"android/content/ComponentName\00", align 1 +@.TypeMapEntry.1522_from = private unnamed_addr constant [62 x i8] c"Android.Content.ContentProvider+CallingIdentity, Mono.Android\00", align 1 +@.TypeMapEntry.1523_to = private unnamed_addr constant [48 x i8] c"android/content/ContentProvider$CallingIdentity\00", align 1 +@.TypeMapEntry.1524_from = private unnamed_addr constant [62 x i8] c"Android.Content.ContentProvider+IPipeDataWriter, Mono.Android\00", align 1 +@.TypeMapEntry.1525_to = private unnamed_addr constant [47 x i8] c"android/content/ContentProvider$PipeDataWriter\00", align 1 +@.TypeMapEntry.1526_from = private unnamed_addr constant [69 x i8] c"Android.Content.ContentProvider+IPipeDataWriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1527_from = private unnamed_addr constant [46 x i8] c"Android.Content.ContentProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1528_to = private unnamed_addr constant [32 x i8] c"android/content/ContentProvider\00", align 1 +@.TypeMapEntry.1529_from = private unnamed_addr constant [52 x i8] c"Android.Content.ContentProviderClient, Mono.Android\00", align 1 +@.TypeMapEntry.1530_to = private unnamed_addr constant [38 x i8] c"android/content/ContentProviderClient\00", align 1 +@.TypeMapEntry.1531_from = private unnamed_addr constant [53 x i8] c"Android.Content.ContentProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1532_from = private unnamed_addr constant [63 x i8] c"Android.Content.ContentProviderOperation+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1533_to = private unnamed_addr constant [49 x i8] c"android/content/ContentProviderOperation$Builder\00", align 1 +@.TypeMapEntry.1534_from = private unnamed_addr constant [55 x i8] c"Android.Content.ContentProviderOperation, Mono.Android\00", align 1 +@.TypeMapEntry.1535_to = private unnamed_addr constant [41 x i8] c"android/content/ContentProviderOperation\00", align 1 +@.TypeMapEntry.1536_from = private unnamed_addr constant [52 x i8] c"Android.Content.ContentProviderResult, Mono.Android\00", align 1 +@.TypeMapEntry.1537_to = private unnamed_addr constant [38 x i8] c"android/content/ContentProviderResult\00", align 1 +@.TypeMapEntry.1538_from = private unnamed_addr constant [46 x i8] c"Android.Content.ContentQueryMap, Mono.Android\00", align 1 +@.TypeMapEntry.1539_to = private unnamed_addr constant [32 x i8] c"android/content/ContentQueryMap\00", align 1 +@.TypeMapEntry.1540_from = private unnamed_addr constant [59 x i8] c"Android.Content.ContentResolver+MimeTypeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1541_to = private unnamed_addr constant [45 x i8] c"android/content/ContentResolver$MimeTypeInfo\00", align 1 +@.TypeMapEntry.1542_from = private unnamed_addr constant [46 x i8] c"Android.Content.ContentResolver, Mono.Android\00", align 1 +@.TypeMapEntry.1543_to = private unnamed_addr constant [32 x i8] c"android/content/ContentResolver\00", align 1 +@.TypeMapEntry.1544_from = private unnamed_addr constant [53 x i8] c"Android.Content.ContentResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1545_from = private unnamed_addr constant [42 x i8] c"Android.Content.ContentUris, Mono.Android\00", align 1 +@.TypeMapEntry.1546_to = private unnamed_addr constant [28 x i8] c"android/content/ContentUris\00", align 1 +@.TypeMapEntry.1547_from = private unnamed_addr constant [44 x i8] c"Android.Content.ContentValues, Mono.Android\00", align 1 +@.TypeMapEntry.1548_to = private unnamed_addr constant [30 x i8] c"android/content/ContentValues\00", align 1 +@.TypeMapEntry.1549_from = private unnamed_addr constant [55 x i8] c"Android.Content.Context+BindServiceFlags, Mono.Android\00", align 1 +@.TypeMapEntry.1550_to = private unnamed_addr constant [41 x i8] c"android/content/Context$BindServiceFlags\00", align 1 +@.TypeMapEntry.1551_from = private unnamed_addr constant [38 x i8] c"Android.Content.Context, Mono.Android\00", align 1 +@.TypeMapEntry.1552_to = private unnamed_addr constant [24 x i8] c"android/content/Context\00", align 1 +@.TypeMapEntry.1553_from = private unnamed_addr constant [45 x i8] c"Android.Content.ContextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1554_from = private unnamed_addr constant [52 x i8] c"Android.Content.ContextParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1555_to = private unnamed_addr constant [38 x i8] c"android/content/ContextParams$Builder\00", align 1 +@.TypeMapEntry.1556_from = private unnamed_addr constant [44 x i8] c"Android.Content.ContextParams, Mono.Android\00", align 1 +@.TypeMapEntry.1557_to = private unnamed_addr constant [30 x i8] c"android/content/ContextParams\00", align 1 +@.TypeMapEntry.1558_from = private unnamed_addr constant [45 x i8] c"Android.Content.ContextWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.1559_to = private unnamed_addr constant [31 x i8] c"android/content/ContextWrapper\00", align 1 +@.TypeMapEntry.1560_from = private unnamed_addr constant [43 x i8] c"Android.Content.CursorLoader, Mono.Android\00", align 1 +@.TypeMapEntry.1561_to = private unnamed_addr constant [29 x i8] c"android/content/CursorLoader\00", align 1 +@.TypeMapEntry.1562_from = private unnamed_addr constant [46 x i8] c"Android.Content.DialogInterface, Mono.Android\00", align 1 +@.TypeMapEntry.1563_to = private unnamed_addr constant [46 x i8] c"mono/internal/android/content/DialogInterface\00", align 1 +@.TypeMapEntry.1564_from = private unnamed_addr constant [56 x i8] c"Android.Content.Entity+NamedContentValues, Mono.Android\00", align 1 +@.TypeMapEntry.1565_to = private unnamed_addr constant [42 x i8] c"android/content/Entity$NamedContentValues\00", align 1 +@.TypeMapEntry.1566_from = private unnamed_addr constant [37 x i8] c"Android.Content.Entity, Mono.Android\00", align 1 +@.TypeMapEntry.1567_to = private unnamed_addr constant [23 x i8] c"android/content/Entity\00", align 1 +@.TypeMapEntry.1568_from = private unnamed_addr constant [50 x i8] c"Android.Content.IComponentCallbacks, Mono.Android\00", align 1 +@.TypeMapEntry.1569_to = private unnamed_addr constant [35 x i8] c"android/content/ComponentCallbacks\00", align 1 +@.TypeMapEntry.1570_from = private unnamed_addr constant [51 x i8] c"Android.Content.IComponentCallbacks2, Mono.Android\00", align 1 +@.TypeMapEntry.1571_to = private unnamed_addr constant [36 x i8] c"android/content/ComponentCallbacks2\00", align 1 +@.TypeMapEntry.1572_from = private unnamed_addr constant [58 x i8] c"Android.Content.IComponentCallbacks2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.1573_from = private unnamed_addr constant [57 x i8] c"Android.Content.IComponentCallbacksInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1574_from = private unnamed_addr constant [47 x i8] c"Android.Content.IDialogInterface, Mono.Android\00", align 1 +@.TypeMapEntry.1575_to = private unnamed_addr constant [32 x i8] c"android/content/DialogInterface\00", align 1 +@.TypeMapEntry.1576_from = private unnamed_addr constant [54 x i8] c"Android.Content.IDialogInterfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1577_from = private unnamed_addr constant [63 x i8] c"Android.Content.IDialogInterfaceOnCancelListener, Mono.Android\00", align 1 +@.TypeMapEntry.1578_to = private unnamed_addr constant [49 x i8] c"android/content/DialogInterface$OnCancelListener\00", align 1 +@.TypeMapEntry.1579_from = private unnamed_addr constant [74 x i8] c"Android.Content.IDialogInterfaceOnCancelListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1580_to = private unnamed_addr constant [65 x i8] c"mono/android/content/DialogInterface_OnCancelListenerImplementor\00", align 1 +@.TypeMapEntry.1581_from = private unnamed_addr constant [70 x i8] c"Android.Content.IDialogInterfaceOnCancelListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1582_from = private unnamed_addr constant [62 x i8] c"Android.Content.IDialogInterfaceOnClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.1583_to = private unnamed_addr constant [48 x i8] c"android/content/DialogInterface$OnClickListener\00", align 1 +@.TypeMapEntry.1584_from = private unnamed_addr constant [73 x i8] c"Android.Content.IDialogInterfaceOnClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1585_to = private unnamed_addr constant [64 x i8] c"mono/android/content/DialogInterface_OnClickListenerImplementor\00", align 1 +@.TypeMapEntry.1586_from = private unnamed_addr constant [69 x i8] c"Android.Content.IDialogInterfaceOnClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1587_from = private unnamed_addr constant [64 x i8] c"Android.Content.IDialogInterfaceOnDismissListener, Mono.Android\00", align 1 +@.TypeMapEntry.1588_to = private unnamed_addr constant [50 x i8] c"android/content/DialogInterface$OnDismissListener\00", align 1 +@.TypeMapEntry.1589_from = private unnamed_addr constant [75 x i8] c"Android.Content.IDialogInterfaceOnDismissListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1590_to = private unnamed_addr constant [66 x i8] c"mono/android/content/DialogInterface_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.1591_from = private unnamed_addr constant [71 x i8] c"Android.Content.IDialogInterfaceOnDismissListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1592_from = private unnamed_addr constant [60 x i8] c"Android.Content.IDialogInterfaceOnKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.1593_to = private unnamed_addr constant [46 x i8] c"android/content/DialogInterface$OnKeyListener\00", align 1 +@.TypeMapEntry.1594_from = private unnamed_addr constant [71 x i8] c"Android.Content.IDialogInterfaceOnKeyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1595_to = private unnamed_addr constant [62 x i8] c"mono/android/content/DialogInterface_OnKeyListenerImplementor\00", align 1 +@.TypeMapEntry.1596_from = private unnamed_addr constant [67 x i8] c"Android.Content.IDialogInterfaceOnKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1597_from = private unnamed_addr constant [73 x i8] c"Android.Content.IDialogInterfaceOnMultiChoiceClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.1598_to = private unnamed_addr constant [59 x i8] c"android/content/DialogInterface$OnMultiChoiceClickListener\00", align 1 +@.TypeMapEntry.1599_from = private unnamed_addr constant [84 x i8] c"Android.Content.IDialogInterfaceOnMultiChoiceClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1600_to = private unnamed_addr constant [75 x i8] c"mono/android/content/DialogInterface_OnMultiChoiceClickListenerImplementor\00", align 1 +@.TypeMapEntry.1601_from = private unnamed_addr constant [80 x i8] c"Android.Content.IDialogInterfaceOnMultiChoiceClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1602_from = private unnamed_addr constant [61 x i8] c"Android.Content.IDialogInterfaceOnShowListener, Mono.Android\00", align 1 +@.TypeMapEntry.1603_to = private unnamed_addr constant [47 x i8] c"android/content/DialogInterface$OnShowListener\00", align 1 +@.TypeMapEntry.1604_from = private unnamed_addr constant [72 x i8] c"Android.Content.IDialogInterfaceOnShowListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1605_to = private unnamed_addr constant [63 x i8] c"mono/android/content/DialogInterface_OnShowListenerImplementor\00", align 1 +@.TypeMapEntry.1606_from = private unnamed_addr constant [68 x i8] c"Android.Content.IDialogInterfaceOnShowListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1607_from = private unnamed_addr constant [49 x i8] c"Android.Content.IServiceConnection, Mono.Android\00", align 1 +@.TypeMapEntry.1608_to = private unnamed_addr constant [34 x i8] c"android/content/ServiceConnection\00", align 1 +@.TypeMapEntry.1609_from = private unnamed_addr constant [56 x i8] c"Android.Content.IServiceConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1610_from = private unnamed_addr constant [49 x i8] c"Android.Content.ISharedPreferences, Mono.Android\00", align 1 +@.TypeMapEntry.1611_to = private unnamed_addr constant [34 x i8] c"android/content/SharedPreferences\00", align 1 +@.TypeMapEntry.1612_from = private unnamed_addr constant [55 x i8] c"Android.Content.ISharedPreferencesEditor, Mono.Android\00", align 1 +@.TypeMapEntry.1613_to = private unnamed_addr constant [41 x i8] c"android/content/SharedPreferences$Editor\00", align 1 +@.TypeMapEntry.1614_from = private unnamed_addr constant [62 x i8] c"Android.Content.ISharedPreferencesEditorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1615_from = private unnamed_addr constant [56 x i8] c"Android.Content.ISharedPreferencesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1616_from = private unnamed_addr constant [81 x i8] c"Android.Content.ISharedPreferencesOnSharedPreferenceChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.1617_to = private unnamed_addr constant [67 x i8] c"android/content/SharedPreferences$OnSharedPreferenceChangeListener\00", align 1 +@.TypeMapEntry.1618_from = private unnamed_addr constant [92 x i8] c"Android.Content.ISharedPreferencesOnSharedPreferenceChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1619_to = private unnamed_addr constant [83 x i8] c"mono/android/content/SharedPreferences_OnSharedPreferenceChangeListenerImplementor\00", align 1 +@.TypeMapEntry.1620_from = private unnamed_addr constant [88 x i8] c"Android.Content.ISharedPreferencesOnSharedPreferenceChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1621_from = private unnamed_addr constant [50 x i8] c"Android.Content.ISyncStatusObserver, Mono.Android\00", align 1 +@.TypeMapEntry.1622_to = private unnamed_addr constant [35 x i8] c"android/content/SyncStatusObserver\00", align 1 +@.TypeMapEntry.1623_from = private unnamed_addr constant [57 x i8] c"Android.Content.ISyncStatusObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1624_from = private unnamed_addr constant [54 x i8] c"Android.Content.Intent+FilterComparison, Mono.Android\00", align 1 +@.TypeMapEntry.1625_to = private unnamed_addr constant [40 x i8] c"android/content/Intent$FilterComparison\00", align 1 +@.TypeMapEntry.1626_from = private unnamed_addr constant [58 x i8] c"Android.Content.Intent+ShortcutIconResource, Mono.Android\00", align 1 +@.TypeMapEntry.1627_to = private unnamed_addr constant [44 x i8] c"android/content/Intent$ShortcutIconResource\00", align 1 +@.TypeMapEntry.1628_from = private unnamed_addr constant [37 x i8] c"Android.Content.Intent, Mono.Android\00", align 1 +@.TypeMapEntry.1629_to = private unnamed_addr constant [23 x i8] c"android/content/Intent\00", align 1 +@.TypeMapEntry.1630_from = private unnamed_addr constant [58 x i8] c"Android.Content.IntentFilter+AuthorityEntry, Mono.Android\00", align 1 +@.TypeMapEntry.1631_to = private unnamed_addr constant [44 x i8] c"android/content/IntentFilter$AuthorityEntry\00", align 1 +@.TypeMapEntry.1632_from = private unnamed_addr constant [70 x i8] c"Android.Content.IntentFilter+MalformedMimeTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.1633_to = private unnamed_addr constant [56 x i8] c"android/content/IntentFilter$MalformedMimeTypeException\00", align 1 +@.TypeMapEntry.1634_from = private unnamed_addr constant [43 x i8] c"Android.Content.IntentFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1635_to = private unnamed_addr constant [29 x i8] c"android/content/IntentFilter\00", align 1 +@.TypeMapEntry.1636_from = private unnamed_addr constant [55 x i8] c"Android.Content.IntentSender+IOnFinished, Mono.Android\00", align 1 +@.TypeMapEntry.1637_to = private unnamed_addr constant [40 x i8] c"android/content/IntentSender$OnFinished\00", align 1 +@.TypeMapEntry.1638_from = private unnamed_addr constant [62 x i8] c"Android.Content.IntentSender+IOnFinishedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1639_from = private unnamed_addr constant [63 x i8] c"Android.Content.IntentSender+SendIntentException, Mono.Android\00", align 1 +@.TypeMapEntry.1640_to = private unnamed_addr constant [49 x i8] c"android/content/IntentSender$SendIntentException\00", align 1 +@.TypeMapEntry.1641_from = private unnamed_addr constant [43 x i8] c"Android.Content.IntentSender, Mono.Android\00", align 1 +@.TypeMapEntry.1642_to = private unnamed_addr constant [29 x i8] c"android/content/IntentSender\00", align 1 +@.TypeMapEntry.1643_from = private unnamed_addr constant [62 x i8] c"Android.Content.Loader+ForceLoadContentObserver, Mono.Android\00", align 1 +@.TypeMapEntry.1644_to = private unnamed_addr constant [48 x i8] c"android/content/Loader$ForceLoadContentObserver\00", align 1 +@.TypeMapEntry.1645_from = private unnamed_addr constant [61 x i8] c"Android.Content.Loader+IOnLoadCanceledListener, Mono.Android\00", align 1 +@.TypeMapEntry.1646_to = private unnamed_addr constant [46 x i8] c"android/content/Loader$OnLoadCanceledListener\00", align 1 +@.TypeMapEntry.1647_from = private unnamed_addr constant [72 x i8] c"Android.Content.Loader+IOnLoadCanceledListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1648_to = private unnamed_addr constant [62 x i8] c"mono/android/content/Loader_OnLoadCanceledListenerImplementor\00", align 1 +@.TypeMapEntry.1649_from = private unnamed_addr constant [68 x i8] c"Android.Content.Loader+IOnLoadCanceledListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1650_from = private unnamed_addr constant [61 x i8] c"Android.Content.Loader+IOnLoadCompleteListener, Mono.Android\00", align 1 +@.TypeMapEntry.1651_to = private unnamed_addr constant [46 x i8] c"android/content/Loader$OnLoadCompleteListener\00", align 1 +@.TypeMapEntry.1652_from = private unnamed_addr constant [72 x i8] c"Android.Content.Loader+IOnLoadCompleteListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1653_to = private unnamed_addr constant [62 x i8] c"mono/android/content/Loader_OnLoadCompleteListenerImplementor\00", align 1 +@.TypeMapEntry.1654_from = private unnamed_addr constant [68 x i8] c"Android.Content.Loader+IOnLoadCompleteListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1655_from = private unnamed_addr constant [37 x i8] c"Android.Content.Loader, Mono.Android\00", align 1 +@.TypeMapEntry.1656_to = private unnamed_addr constant [23 x i8] c"android/content/Loader\00", align 1 +@.TypeMapEntry.1657_from = private unnamed_addr constant [38 x i8] c"Android.Content.LocusId, Mono.Android\00", align 1 +@.TypeMapEntry.1658_to = private unnamed_addr constant [24 x i8] c"android/content/LocusId\00", align 1 +@.TypeMapEntry.1659_from = private unnamed_addr constant [52 x i8] c"Android.Content.MutableContextWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.1660_to = private unnamed_addr constant [38 x i8] c"android/content/MutableContextWrapper\00", align 1 +@.TypeMapEntry.1661_from = private unnamed_addr constant [51 x i8] c"Android.Content.OM.FabricatedOverlay, Mono.Android\00", align 1 +@.TypeMapEntry.1662_to = private unnamed_addr constant [37 x i8] c"android/content/om/FabricatedOverlay\00", align 1 +@.TypeMapEntry.1663_from = private unnamed_addr constant [51 x i8] c"Android.Content.OM.OverlayIdentifier, Mono.Android\00", align 1 +@.TypeMapEntry.1664_to = private unnamed_addr constant [37 x i8] c"android/content/om/OverlayIdentifier\00", align 1 +@.TypeMapEntry.1665_from = private unnamed_addr constant [45 x i8] c"Android.Content.OM.OverlayInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1666_to = private unnamed_addr constant [31 x i8] c"android/content/om/OverlayInfo\00", align 1 +@.TypeMapEntry.1667_from = private unnamed_addr constant [48 x i8] c"Android.Content.OM.OverlayManager, Mono.Android\00", align 1 +@.TypeMapEntry.1668_to = private unnamed_addr constant [34 x i8] c"android/content/om/OverlayManager\00", align 1 +@.TypeMapEntry.1669_from = private unnamed_addr constant [59 x i8] c"Android.Content.OM.OverlayManagerTransaction, Mono.Android\00", align 1 +@.TypeMapEntry.1670_to = private unnamed_addr constant [45 x i8] c"android/content/om/OverlayManagerTransaction\00", align 1 +@.TypeMapEntry.1671_from = private unnamed_addr constant [60 x i8] c"Android.Content.OperationApplicationException, Mono.Android\00", align 1 +@.TypeMapEntry.1672_to = private unnamed_addr constant [46 x i8] c"android/content/OperationApplicationException\00", align 1 +@.TypeMapEntry.1673_from = private unnamed_addr constant [59 x i8] c"Android.Content.PM.ActivityInfo+WindowLayout, Mono.Android\00", align 1 +@.TypeMapEntry.1674_to = private unnamed_addr constant [45 x i8] c"android/content/pm/ActivityInfo$WindowLayout\00", align 1 +@.TypeMapEntry.1675_from = private unnamed_addr constant [46 x i8] c"Android.Content.PM.ActivityInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1676_to = private unnamed_addr constant [32 x i8] c"android/content/pm/ActivityInfo\00", align 1 +@.TypeMapEntry.1677_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.ApkChecksum, Mono.Android\00", align 1 +@.TypeMapEntry.1678_to = private unnamed_addr constant [31 x i8] c"android/content/pm/ApkChecksum\00", align 1 +@.TypeMapEntry.1679_from = private unnamed_addr constant [71 x i8] c"Android.Content.PM.ApplicationInfo+DisplayNameComparator, Mono.Android\00", align 1 +@.TypeMapEntry.1680_to = private unnamed_addr constant [57 x i8] c"android/content/pm/ApplicationInfo$DisplayNameComparator\00", align 1 +@.TypeMapEntry.1681_from = private unnamed_addr constant [49 x i8] c"Android.Content.PM.ApplicationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1682_to = private unnamed_addr constant [35 x i8] c"android/content/pm/ApplicationInfo\00", align 1 +@.TypeMapEntry.1683_from = private unnamed_addr constant [54 x i8] c"Android.Content.PM.ArchivedActivityInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1684_to = private unnamed_addr constant [40 x i8] c"android/content/pm/ArchivedActivityInfo\00", align 1 +@.TypeMapEntry.1685_from = private unnamed_addr constant [53 x i8] c"Android.Content.PM.ArchivedPackageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1686_to = private unnamed_addr constant [39 x i8] c"android/content/pm/ArchivedPackageInfo\00", align 1 +@.TypeMapEntry.1687_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.Attribution, Mono.Android\00", align 1 +@.TypeMapEntry.1688_to = private unnamed_addr constant [31 x i8] c"android/content/pm/Attribution\00", align 1 +@.TypeMapEntry.1689_from = private unnamed_addr constant [52 x i8] c"Android.Content.PM.Capability+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1690_to = private unnamed_addr constant [38 x i8] c"android/content/pm/Capability$Builder\00", align 1 +@.TypeMapEntry.1691_from = private unnamed_addr constant [44 x i8] c"Android.Content.PM.Capability, Mono.Android\00", align 1 +@.TypeMapEntry.1692_to = private unnamed_addr constant [30 x i8] c"android/content/pm/Capability\00", align 1 +@.TypeMapEntry.1693_from = private unnamed_addr constant [58 x i8] c"Android.Content.PM.CapabilityParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1694_to = private unnamed_addr constant [44 x i8] c"android/content/pm/CapabilityParams$Builder\00", align 1 +@.TypeMapEntry.1695_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.CapabilityParams, Mono.Android\00", align 1 +@.TypeMapEntry.1696_to = private unnamed_addr constant [36 x i8] c"android/content/pm/CapabilityParams\00", align 1 +@.TypeMapEntry.1697_from = private unnamed_addr constant [49 x i8] c"Android.Content.PM.ChangedPackages, Mono.Android\00", align 1 +@.TypeMapEntry.1698_to = private unnamed_addr constant [35 x i8] c"android/content/pm/ChangedPackages\00", align 1 +@.TypeMapEntry.1699_from = private unnamed_addr constant [42 x i8] c"Android.Content.PM.Checksum, Mono.Android\00", align 1 +@.TypeMapEntry.1700_to = private unnamed_addr constant [28 x i8] c"android/content/pm/Checksum\00", align 1 +@.TypeMapEntry.1701_from = private unnamed_addr constant [47 x i8] c"Android.Content.PM.ComponentInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1702_to = private unnamed_addr constant [33 x i8] c"android/content/pm/ComponentInfo\00", align 1 +@.TypeMapEntry.1703_from = private unnamed_addr constant [51 x i8] c"Android.Content.PM.ConfigurationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1704_to = private unnamed_addr constant [37 x i8] c"android/content/pm/ConfigurationInfo\00", align 1 +@.TypeMapEntry.1705_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.CrossProfileApps, Mono.Android\00", align 1 +@.TypeMapEntry.1706_to = private unnamed_addr constant [36 x i8] c"android/content/pm/CrossProfileApps\00", align 1 +@.TypeMapEntry.1707_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.FeatureGroupInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1708_to = private unnamed_addr constant [36 x i8] c"android/content/pm/FeatureGroupInfo\00", align 1 +@.TypeMapEntry.1709_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.FeatureInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1710_to = private unnamed_addr constant [31 x i8] c"android/content/pm/FeatureInfo\00", align 1 +@.TypeMapEntry.1711_from = private unnamed_addr constant [51 x i8] c"Android.Content.PM.InstallSourceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1712_to = private unnamed_addr constant [37 x i8] c"android/content/pm/InstallSourceInfo\00", align 1 +@.TypeMapEntry.1713_from = private unnamed_addr constant [53 x i8] c"Android.Content.PM.InstrumentationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1714_to = private unnamed_addr constant [39 x i8] c"android/content/pm/InstrumentationInfo\00", align 1 +@.TypeMapEntry.1715_from = private unnamed_addr constant [47 x i8] c"Android.Content.PM.LabeledIntent, Mono.Android\00", align 1 +@.TypeMapEntry.1716_to = private unnamed_addr constant [33 x i8] c"android/content/pm/LabeledIntent\00", align 1 +@.TypeMapEntry.1717_from = private unnamed_addr constant [54 x i8] c"Android.Content.PM.LauncherActivityInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1718_to = private unnamed_addr constant [40 x i8] c"android/content/pm/LauncherActivityInfo\00", align 1 +@.TypeMapEntry.1719_from = private unnamed_addr constant [73 x i8] c"Android.Content.PM.LauncherApps+ArchiveCompatibilityParams, Mono.Android\00", align 1 +@.TypeMapEntry.1720_to = private unnamed_addr constant [59 x i8] c"android/content/pm/LauncherApps$ArchiveCompatibilityParams\00", align 1 +@.TypeMapEntry.1721_from = private unnamed_addr constant [55 x i8] c"Android.Content.PM.LauncherApps+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.1722_to = private unnamed_addr constant [41 x i8] c"android/content/pm/LauncherApps$Callback\00", align 1 +@.TypeMapEntry.1723_from = private unnamed_addr constant [62 x i8] c"Android.Content.PM.LauncherApps+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1724_from = private unnamed_addr constant [61 x i8] c"Android.Content.PM.LauncherApps+PinItemRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1725_to = private unnamed_addr constant [47 x i8] c"android/content/pm/LauncherApps$PinItemRequest\00", align 1 +@.TypeMapEntry.1726_from = private unnamed_addr constant [60 x i8] c"Android.Content.PM.LauncherApps+ShortcutQuery, Mono.Android\00", align 1 +@.TypeMapEntry.1727_to = private unnamed_addr constant [46 x i8] c"android/content/pm/LauncherApps$ShortcutQuery\00", align 1 +@.TypeMapEntry.1728_from = private unnamed_addr constant [46 x i8] c"Android.Content.PM.LauncherApps, Mono.Android\00", align 1 +@.TypeMapEntry.1729_to = private unnamed_addr constant [32 x i8] c"android/content/pm/LauncherApps\00", align 1 +@.TypeMapEntry.1730_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.LauncherUserInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1731_to = private unnamed_addr constant [36 x i8] c"android/content/pm/LauncherUserInfo\00", align 1 +@.TypeMapEntry.1732_from = private unnamed_addr constant [44 x i8] c"Android.Content.PM.ModuleInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1733_to = private unnamed_addr constant [30 x i8] c"android/content/pm/ModuleInfo\00", align 1 +@.TypeMapEntry.1734_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.PackageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1735_to = private unnamed_addr constant [31 x i8] c"android/content/pm/PackageInfo\00", align 1 +@.TypeMapEntry.1736_from = private unnamed_addr constant [77 x i8] c"Android.Content.PM.PackageInstaller+InstallConstraints+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1737_to = private unnamed_addr constant [63 x i8] c"android/content/pm/PackageInstaller$InstallConstraints$Builder\00", align 1 +@.TypeMapEntry.1738_from = private unnamed_addr constant [69 x i8] c"Android.Content.PM.PackageInstaller+InstallConstraints, Mono.Android\00", align 1 +@.TypeMapEntry.1739_to = private unnamed_addr constant [55 x i8] c"android/content/pm/PackageInstaller$InstallConstraints\00", align 1 +@.TypeMapEntry.1740_from = private unnamed_addr constant [75 x i8] c"Android.Content.PM.PackageInstaller+InstallConstraintsResult, Mono.Android\00", align 1 +@.TypeMapEntry.1741_to = private unnamed_addr constant [61 x i8] c"android/content/pm/PackageInstaller$InstallConstraintsResult\00", align 1 +@.TypeMapEntry.1742_from = private unnamed_addr constant [77 x i8] c"Android.Content.PM.PackageInstaller+PreapprovalDetails+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1743_to = private unnamed_addr constant [63 x i8] c"android/content/pm/PackageInstaller$PreapprovalDetails$Builder\00", align 1 +@.TypeMapEntry.1744_from = private unnamed_addr constant [69 x i8] c"Android.Content.PM.PackageInstaller+PreapprovalDetails, Mono.Android\00", align 1 +@.TypeMapEntry.1745_to = private unnamed_addr constant [55 x i8] c"android/content/pm/PackageInstaller$PreapprovalDetails\00", align 1 +@.TypeMapEntry.1746_from = private unnamed_addr constant [58 x i8] c"Android.Content.PM.PackageInstaller+Session, Mono.Android\00", align 1 +@.TypeMapEntry.1747_to = private unnamed_addr constant [44 x i8] c"android/content/pm/PackageInstaller$Session\00", align 1 +@.TypeMapEntry.1748_from = private unnamed_addr constant [66 x i8] c"Android.Content.PM.PackageInstaller+SessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.1749_to = private unnamed_addr constant [52 x i8] c"android/content/pm/PackageInstaller$SessionCallback\00", align 1 +@.TypeMapEntry.1750_from = private unnamed_addr constant [73 x i8] c"Android.Content.PM.PackageInstaller+SessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1751_from = private unnamed_addr constant [62 x i8] c"Android.Content.PM.PackageInstaller+SessionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1752_to = private unnamed_addr constant [48 x i8] c"android/content/pm/PackageInstaller$SessionInfo\00", align 1 +@.TypeMapEntry.1753_from = private unnamed_addr constant [64 x i8] c"Android.Content.PM.PackageInstaller+SessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.1754_to = private unnamed_addr constant [50 x i8] c"android/content/pm/PackageInstaller$SessionParams\00", align 1 +@.TypeMapEntry.1755_from = private unnamed_addr constant [66 x i8] c"Android.Content.PM.PackageInstaller+UnarchivalState, Mono.Android\00", align 1 +@.TypeMapEntry.1756_to = private unnamed_addr constant [52 x i8] c"android/content/pm/PackageInstaller$UnarchivalState\00", align 1 +@.TypeMapEntry.1757_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.PackageInstaller, Mono.Android\00", align 1 +@.TypeMapEntry.1758_to = private unnamed_addr constant [36 x i8] c"android/content/pm/PackageInstaller\00", align 1 +@.TypeMapEntry.1759_from = private unnamed_addr constant [71 x i8] c"Android.Content.PM.PackageItemInfo+DisplayNameComparator, Mono.Android\00", align 1 +@.TypeMapEntry.1760_to = private unnamed_addr constant [57 x i8] c"android/content/pm/PackageItemInfo$DisplayNameComparator\00", align 1 +@.TypeMapEntry.1761_from = private unnamed_addr constant [49 x i8] c"Android.Content.PM.PackageItemInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1762_to = private unnamed_addr constant [35 x i8] c"android/content/pm/PackageItemInfo\00", align 1 +@.TypeMapEntry.1763_from = private unnamed_addr constant [69 x i8] c"Android.Content.PM.PackageManager+ApplicationInfoFlags, Mono.Android\00", align 1 +@.TypeMapEntry.1764_to = private unnamed_addr constant [55 x i8] c"android/content/pm/PackageManager$ApplicationInfoFlags\00", align 1 +@.TypeMapEntry.1765_from = private unnamed_addr constant [72 x i8] c"Android.Content.PM.PackageManager+ComponentEnabledSetting, Mono.Android\00", align 1 +@.TypeMapEntry.1766_to = private unnamed_addr constant [58 x i8] c"android/content/pm/PackageManager$ComponentEnabledSetting\00", align 1 +@.TypeMapEntry.1767_from = private unnamed_addr constant [67 x i8] c"Android.Content.PM.PackageManager+ComponentInfoFlags, Mono.Android\00", align 1 +@.TypeMapEntry.1768_to = private unnamed_addr constant [53 x i8] c"android/content/pm/PackageManager$ComponentInfoFlags\00", align 1 +@.TypeMapEntry.1769_from = private unnamed_addr constant [74 x i8] c"Android.Content.PM.PackageManager+IOnChecksumsReadyListener, Mono.Android\00", align 1 +@.TypeMapEntry.1770_to = private unnamed_addr constant [59 x i8] c"android/content/pm/PackageManager$OnChecksumsReadyListener\00", align 1 +@.TypeMapEntry.1771_from = private unnamed_addr constant [85 x i8] c"Android.Content.PM.PackageManager+IOnChecksumsReadyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.1772_to = private unnamed_addr constant [75 x i8] c"mono/android/content/pm/PackageManager_OnChecksumsReadyListenerImplementor\00", align 1 +@.TypeMapEntry.1773_from = private unnamed_addr constant [81 x i8] c"Android.Content.PM.PackageManager+IOnChecksumsReadyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1774_from = private unnamed_addr constant [70 x i8] c"Android.Content.PM.PackageManager+NameNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.1775_to = private unnamed_addr constant [56 x i8] c"android/content/pm/PackageManager$NameNotFoundException\00", align 1 +@.TypeMapEntry.1776_from = private unnamed_addr constant [65 x i8] c"Android.Content.PM.PackageManager+PackageInfoFlags, Mono.Android\00", align 1 +@.TypeMapEntry.1777_to = private unnamed_addr constant [51 x i8] c"android/content/pm/PackageManager$PackageInfoFlags\00", align 1 +@.TypeMapEntry.1778_from = private unnamed_addr constant [57 x i8] c"Android.Content.PM.PackageManager+Property, Mono.Android\00", align 1 +@.TypeMapEntry.1779_to = private unnamed_addr constant [43 x i8] c"android/content/pm/PackageManager$Property\00", align 1 +@.TypeMapEntry.1780_from = private unnamed_addr constant [65 x i8] c"Android.Content.PM.PackageManager+ResolveInfoFlags, Mono.Android\00", align 1 +@.TypeMapEntry.1781_to = private unnamed_addr constant [51 x i8] c"android/content/pm/PackageManager$ResolveInfoFlags\00", align 1 +@.TypeMapEntry.1782_from = private unnamed_addr constant [48 x i8] c"Android.Content.PM.PackageManager, Mono.Android\00", align 1 +@.TypeMapEntry.1783_to = private unnamed_addr constant [34 x i8] c"android/content/pm/PackageManager\00", align 1 +@.TypeMapEntry.1784_from = private unnamed_addr constant [55 x i8] c"Android.Content.PM.PackageManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1785_from = private unnamed_addr constant [46 x i8] c"Android.Content.PM.PackageStats, Mono.Android\00", align 1 +@.TypeMapEntry.1786_to = private unnamed_addr constant [32 x i8] c"android/content/pm/PackageStats\00", align 1 +@.TypeMapEntry.1787_from = private unnamed_addr constant [48 x i8] c"Android.Content.PM.PathPermission, Mono.Android\00", align 1 +@.TypeMapEntry.1788_to = private unnamed_addr constant [34 x i8] c"android/content/pm/PathPermission\00", align 1 +@.TypeMapEntry.1789_from = private unnamed_addr constant [53 x i8] c"Android.Content.PM.PermissionGroupInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1790_to = private unnamed_addr constant [39 x i8] c"android/content/pm/PermissionGroupInfo\00", align 1 +@.TypeMapEntry.1791_from = private unnamed_addr constant [48 x i8] c"Android.Content.PM.PermissionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1792_to = private unnamed_addr constant [34 x i8] c"android/content/pm/PermissionInfo\00", align 1 +@.TypeMapEntry.1793_from = private unnamed_addr constant [46 x i8] c"Android.Content.PM.ProviderInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1794_to = private unnamed_addr constant [32 x i8] c"android/content/pm/ProviderInfo\00", align 1 +@.TypeMapEntry.1795_from = private unnamed_addr constant [67 x i8] c"Android.Content.PM.ResolveInfo+DisplayNameComparator, Mono.Android\00", align 1 +@.TypeMapEntry.1796_to = private unnamed_addr constant [53 x i8] c"android/content/pm/ResolveInfo$DisplayNameComparator\00", align 1 +@.TypeMapEntry.1797_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.ResolveInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1798_to = private unnamed_addr constant [31 x i8] c"android/content/pm/ResolveInfo\00", align 1 +@.TypeMapEntry.1799_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.ServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1800_to = private unnamed_addr constant [31 x i8] c"android/content/pm/ServiceInfo\00", align 1 +@.TypeMapEntry.1801_from = private unnamed_addr constant [51 x i8] c"Android.Content.PM.SharedLibraryInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1802_to = private unnamed_addr constant [37 x i8] c"android/content/pm/SharedLibraryInfo\00", align 1 +@.TypeMapEntry.1803_from = private unnamed_addr constant [54 x i8] c"Android.Content.PM.ShortcutInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1804_to = private unnamed_addr constant [40 x i8] c"android/content/pm/ShortcutInfo$Builder\00", align 1 +@.TypeMapEntry.1805_from = private unnamed_addr constant [46 x i8] c"Android.Content.PM.ShortcutInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1806_to = private unnamed_addr constant [32 x i8] c"android/content/pm/ShortcutInfo\00", align 1 +@.TypeMapEntry.1807_from = private unnamed_addr constant [49 x i8] c"Android.Content.PM.ShortcutManager, Mono.Android\00", align 1 +@.TypeMapEntry.1808_to = private unnamed_addr constant [35 x i8] c"android/content/pm/ShortcutManager\00", align 1 +@.TypeMapEntry.1809_from = private unnamed_addr constant [43 x i8] c"Android.Content.PM.Signature, Mono.Android\00", align 1 +@.TypeMapEntry.1810_to = private unnamed_addr constant [29 x i8] c"android/content/pm/Signature\00", align 1 +@.TypeMapEntry.1811_from = private unnamed_addr constant [45 x i8] c"Android.Content.PM.SigningInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1812_to = private unnamed_addr constant [31 x i8] c"android/content/pm/SigningInfo\00", align 1 +@.TypeMapEntry.1813_from = private unnamed_addr constant [73 x i8] c"Android.Content.PM.Verify.Domain.DomainVerificationManager, Mono.Android\00", align 1 +@.TypeMapEntry.1814_to = private unnamed_addr constant [59 x i8] c"android/content/pm/verify/domain/DomainVerificationManager\00", align 1 +@.TypeMapEntry.1815_from = private unnamed_addr constant [75 x i8] c"Android.Content.PM.Verify.Domain.DomainVerificationUserState, Mono.Android\00", align 1 +@.TypeMapEntry.1816_to = private unnamed_addr constant [61 x i8] c"android/content/pm/verify/domain/DomainVerificationUserState\00", align 1 +@.TypeMapEntry.1817_from = private unnamed_addr constant [50 x i8] c"Android.Content.PM.VersionedPackage, Mono.Android\00", align 1 +@.TypeMapEntry.1818_to = private unnamed_addr constant [36 x i8] c"android/content/pm/VersionedPackage\00", align 1 +@.TypeMapEntry.1819_from = private unnamed_addr constant [43 x i8] c"Android.Content.PeriodicSync, Mono.Android\00", align 1 +@.TypeMapEntry.1820_to = private unnamed_addr constant [29 x i8] c"android/content/PeriodicSync\00", align 1 +@.TypeMapEntry.1821_from = private unnamed_addr constant [49 x i8] c"Android.Content.QuickViewConstants, Mono.Android\00", align 1 +@.TypeMapEntry.1822_to = private unnamed_addr constant [35 x i8] c"android/content/QuickViewConstants\00", align 1 +@.TypeMapEntry.1823_from = private unnamed_addr constant [62 x i8] c"Android.Content.ReceiverCallNotAllowedException, Mono.Android\00", align 1 +@.TypeMapEntry.1824_to = private unnamed_addr constant [48 x i8] c"android/content/ReceiverCallNotAllowedException\00", align 1 +@.TypeMapEntry.1825_from = private unnamed_addr constant [75 x i8] c"Android.Content.Res.AssetFileDescriptor+AutoCloseInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.1826_to = private unnamed_addr constant [61 x i8] c"android/content/res/AssetFileDescriptor$AutoCloseInputStream\00", align 1 +@.TypeMapEntry.1827_from = private unnamed_addr constant [76 x i8] c"Android.Content.Res.AssetFileDescriptor+AutoCloseOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.1828_to = private unnamed_addr constant [62 x i8] c"android/content/res/AssetFileDescriptor$AutoCloseOutputStream\00", align 1 +@.TypeMapEntry.1829_from = private unnamed_addr constant [54 x i8] c"Android.Content.Res.AssetFileDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.1830_to = private unnamed_addr constant [40 x i8] c"android/content/res/AssetFileDescriptor\00", align 1 +@.TypeMapEntry.1831_from = private unnamed_addr constant [64 x i8] c"Android.Content.Res.AssetManager+AssetInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.1832_to = private unnamed_addr constant [50 x i8] c"android/content/res/AssetManager$AssetInputStream\00", align 1 +@.TypeMapEntry.1833_from = private unnamed_addr constant [47 x i8] c"Android.Content.Res.AssetManager, Mono.Android\00", align 1 +@.TypeMapEntry.1834_to = private unnamed_addr constant [33 x i8] c"android/content/res/AssetManager\00", align 1 +@.TypeMapEntry.1835_from = private unnamed_addr constant [49 x i8] c"Android.Content.Res.ColorStateList, Mono.Android\00", align 1 +@.TypeMapEntry.1836_to = private unnamed_addr constant [35 x i8] c"android/content/res/ColorStateList\00", align 1 +@.TypeMapEntry.1837_from = private unnamed_addr constant [48 x i8] c"Android.Content.Res.Configuration, Mono.Android\00", align 1 +@.TypeMapEntry.1838_to = private unnamed_addr constant [34 x i8] c"android/content/res/Configuration\00", align 1 +@.TypeMapEntry.1839_from = private unnamed_addr constant [54 x i8] c"Android.Content.Res.IFontScaleConverter, Mono.Android\00", align 1 +@.TypeMapEntry.1840_to = private unnamed_addr constant [39 x i8] c"android/content/res/FontScaleConverter\00", align 1 +@.TypeMapEntry.1841_from = private unnamed_addr constant [61 x i8] c"Android.Content.Res.IFontScaleConverterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1842_from = private unnamed_addr constant [53 x i8] c"Android.Content.Res.IXmlResourceParser, Mono.Android\00", align 1 +@.TypeMapEntry.1843_to = private unnamed_addr constant [38 x i8] c"android/content/res/XmlResourceParser\00", align 1 +@.TypeMapEntry.1844_from = private unnamed_addr constant [60 x i8] c"Android.Content.Res.IXmlResourceParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1845_from = private unnamed_addr constant [57 x i8] c"Android.Content.Res.Loader.IAssetsProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1846_to = private unnamed_addr constant [42 x i8] c"android/content/res/loader/AssetsProvider\00", align 1 +@.TypeMapEntry.1847_from = private unnamed_addr constant [64 x i8] c"Android.Content.Res.Loader.IAssetsProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1848_from = private unnamed_addr constant [57 x i8] c"Android.Content.Res.Loader.ResourcesLoader, Mono.Android\00", align 1 +@.TypeMapEntry.1849_to = private unnamed_addr constant [43 x i8] c"android/content/res/loader/ResourcesLoader\00", align 1 +@.TypeMapEntry.1850_from = private unnamed_addr constant [59 x i8] c"Android.Content.Res.Loader.ResourcesProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1851_to = private unnamed_addr constant [45 x i8] c"android/content/res/loader/ResourcesProvider\00", align 1 +@.TypeMapEntry.1852_from = private unnamed_addr constant [42 x i8] c"Android.Content.Res.ObbInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1853_to = private unnamed_addr constant [28 x i8] c"android/content/res/ObbInfo\00", align 1 +@.TypeMapEntry.1854_from = private unnamed_addr constant [45 x i8] c"Android.Content.Res.ObbScanner, Mono.Android\00", align 1 +@.TypeMapEntry.1855_to = private unnamed_addr constant [31 x i8] c"android/content/res/ObbScanner\00", align 1 +@.TypeMapEntry.1856_from = private unnamed_addr constant [62 x i8] c"Android.Content.Res.Resources+NotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.1857_to = private unnamed_addr constant [48 x i8] c"android/content/res/Resources$NotFoundException\00", align 1 +@.TypeMapEntry.1858_from = private unnamed_addr constant [50 x i8] c"Android.Content.Res.Resources+Theme, Mono.Android\00", align 1 +@.TypeMapEntry.1859_to = private unnamed_addr constant [36 x i8] c"android/content/res/Resources$Theme\00", align 1 +@.TypeMapEntry.1860_from = private unnamed_addr constant [44 x i8] c"Android.Content.Res.Resources, Mono.Android\00", align 1 +@.TypeMapEntry.1861_to = private unnamed_addr constant [30 x i8] c"android/content/res/Resources\00", align 1 +@.TypeMapEntry.1862_from = private unnamed_addr constant [45 x i8] c"Android.Content.Res.TypedArray, Mono.Android\00", align 1 +@.TypeMapEntry.1863_to = private unnamed_addr constant [31 x i8] c"android/content/res/TypedArray\00", align 1 +@.TypeMapEntry.1864_from = private unnamed_addr constant [47 x i8] c"Android.Content.RestrictionEntry, Mono.Android\00", align 1 +@.TypeMapEntry.1865_to = private unnamed_addr constant [33 x i8] c"android/content/RestrictionEntry\00", align 1 +@.TypeMapEntry.1866_from = private unnamed_addr constant [50 x i8] c"Android.Content.RestrictionsManager, Mono.Android\00", align 1 +@.TypeMapEntry.1867_to = private unnamed_addr constant [36 x i8] c"android/content/RestrictionsManager\00", align 1 +@.TypeMapEntry.1868_from = private unnamed_addr constant [62 x i8] c"Android.Content.SearchRecentSuggestionsProvider, Mono.Android\00", align 1 +@.TypeMapEntry.1869_to = private unnamed_addr constant [48 x i8] c"android/content/SearchRecentSuggestionsProvider\00", align 1 +@.TypeMapEntry.1870_from = private unnamed_addr constant [46 x i8] c"Android.Content.SyncAdapterType, Mono.Android\00", align 1 +@.TypeMapEntry.1871_to = private unnamed_addr constant [32 x i8] c"android/content/SyncAdapterType\00", align 1 +@.TypeMapEntry.1872_from = private unnamed_addr constant [42 x i8] c"Android.Content.SyncContext, Mono.Android\00", align 1 +@.TypeMapEntry.1873_to = private unnamed_addr constant [28 x i8] c"android/content/SyncContext\00", align 1 +@.TypeMapEntry.1874_from = private unnamed_addr constant [39 x i8] c"Android.Content.SyncInfo, Mono.Android\00", align 1 +@.TypeMapEntry.1875_to = private unnamed_addr constant [25 x i8] c"android/content/SyncInfo\00", align 1 +@.TypeMapEntry.1876_from = private unnamed_addr constant [50 x i8] c"Android.Content.SyncRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1877_to = private unnamed_addr constant [36 x i8] c"android/content/SyncRequest$Builder\00", align 1 +@.TypeMapEntry.1878_from = private unnamed_addr constant [42 x i8] c"Android.Content.SyncRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1879_to = private unnamed_addr constant [28 x i8] c"android/content/SyncRequest\00", align 1 +@.TypeMapEntry.1880_from = private unnamed_addr constant [41 x i8] c"Android.Content.SyncResult, Mono.Android\00", align 1 +@.TypeMapEntry.1881_to = private unnamed_addr constant [27 x i8] c"android/content/SyncResult\00", align 1 +@.TypeMapEntry.1882_from = private unnamed_addr constant [40 x i8] c"Android.Content.SyncStats, Mono.Android\00", align 1 +@.TypeMapEntry.1883_to = private unnamed_addr constant [26 x i8] c"android/content/SyncStats\00", align 1 +@.TypeMapEntry.1884_from = private unnamed_addr constant [41 x i8] c"Android.Content.UriMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.1885_to = private unnamed_addr constant [27 x i8] c"android/content/UriMatcher\00", align 1 +@.TypeMapEntry.1886_from = private unnamed_addr constant [44 x i8] c"Android.Content.UriPermission, Mono.Android\00", align 1 +@.TypeMapEntry.1887_to = private unnamed_addr constant [30 x i8] c"android/content/UriPermission\00", align 1 +@.TypeMapEntry.1888_from = private unnamed_addr constant [48 x i8] c"Android.Content.UriRelativeFilter, Mono.Android\00", align 1 +@.TypeMapEntry.1889_to = private unnamed_addr constant [34 x i8] c"android/content/UriRelativeFilter\00", align 1 +@.TypeMapEntry.1890_from = private unnamed_addr constant [53 x i8] c"Android.Content.UriRelativeFilterGroup, Mono.Android\00", align 1 +@.TypeMapEntry.1891_to = private unnamed_addr constant [39 x i8] c"android/content/UriRelativeFilterGroup\00", align 1 +@.TypeMapEntry.1892_from = private unnamed_addr constant [64 x i8] c"Android.Credentials.ClearCredentialStateException, Mono.Android\00", align 1 +@.TypeMapEntry.1893_to = private unnamed_addr constant [50 x i8] c"android/credentials/ClearCredentialStateException\00", align 1 +@.TypeMapEntry.1894_from = private unnamed_addr constant [62 x i8] c"Android.Credentials.ClearCredentialStateRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1895_to = private unnamed_addr constant [48 x i8] c"android/credentials/ClearCredentialStateRequest\00", align 1 +@.TypeMapEntry.1896_from = private unnamed_addr constant [60 x i8] c"Android.Credentials.CreateCredentialException, Mono.Android\00", align 1 +@.TypeMapEntry.1897_to = private unnamed_addr constant [46 x i8] c"android/credentials/CreateCredentialException\00", align 1 +@.TypeMapEntry.1898_from = private unnamed_addr constant [66 x i8] c"Android.Credentials.CreateCredentialRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1899_to = private unnamed_addr constant [52 x i8] c"android/credentials/CreateCredentialRequest$Builder\00", align 1 +@.TypeMapEntry.1900_from = private unnamed_addr constant [58 x i8] c"Android.Credentials.CreateCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1901_to = private unnamed_addr constant [44 x i8] c"android/credentials/CreateCredentialRequest\00", align 1 +@.TypeMapEntry.1902_from = private unnamed_addr constant [59 x i8] c"Android.Credentials.CreateCredentialResponse, Mono.Android\00", align 1 +@.TypeMapEntry.1903_to = private unnamed_addr constant [45 x i8] c"android/credentials/CreateCredentialResponse\00", align 1 +@.TypeMapEntry.1904_from = private unnamed_addr constant [45 x i8] c"Android.Credentials.Credential, Mono.Android\00", align 1 +@.TypeMapEntry.1905_to = private unnamed_addr constant [31 x i8] c"android/credentials/Credential\00", align 1 +@.TypeMapEntry.1906_from = private unnamed_addr constant [56 x i8] c"Android.Credentials.CredentialDescription, Mono.Android\00", align 1 +@.TypeMapEntry.1907_to = private unnamed_addr constant [42 x i8] c"android/credentials/CredentialDescription\00", align 1 +@.TypeMapEntry.1908_from = private unnamed_addr constant [52 x i8] c"Android.Credentials.CredentialManager, Mono.Android\00", align 1 +@.TypeMapEntry.1909_to = private unnamed_addr constant [38 x i8] c"android/credentials/CredentialManager\00", align 1 +@.TypeMapEntry.1910_from = private unnamed_addr constant [59 x i8] c"Android.Credentials.CredentialOption+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1911_to = private unnamed_addr constant [45 x i8] c"android/credentials/CredentialOption$Builder\00", align 1 +@.TypeMapEntry.1912_from = private unnamed_addr constant [51 x i8] c"Android.Credentials.CredentialOption, Mono.Android\00", align 1 +@.TypeMapEntry.1913_to = private unnamed_addr constant [37 x i8] c"android/credentials/CredentialOption\00", align 1 +@.TypeMapEntry.1914_from = private unnamed_addr constant [57 x i8] c"Android.Credentials.GetCredentialException, Mono.Android\00", align 1 +@.TypeMapEntry.1915_to = private unnamed_addr constant [43 x i8] c"android/credentials/GetCredentialException\00", align 1 +@.TypeMapEntry.1916_from = private unnamed_addr constant [63 x i8] c"Android.Credentials.GetCredentialRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.1917_to = private unnamed_addr constant [49 x i8] c"android/credentials/GetCredentialRequest$Builder\00", align 1 +@.TypeMapEntry.1918_from = private unnamed_addr constant [55 x i8] c"Android.Credentials.GetCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1919_to = private unnamed_addr constant [41 x i8] c"android/credentials/GetCredentialRequest\00", align 1 +@.TypeMapEntry.1920_from = private unnamed_addr constant [56 x i8] c"Android.Credentials.GetCredentialResponse, Mono.Android\00", align 1 +@.TypeMapEntry.1921_to = private unnamed_addr constant [42 x i8] c"android/credentials/GetCredentialResponse\00", align 1 +@.TypeMapEntry.1922_from = private unnamed_addr constant [90 x i8] c"Android.Credentials.PrepareGetCredentialResponse+PendingGetCredentialHandle, Mono.Android\00", align 1 +@.TypeMapEntry.1923_to = private unnamed_addr constant [76 x i8] c"android/credentials/PrepareGetCredentialResponse$PendingGetCredentialHandle\00", align 1 +@.TypeMapEntry.1924_from = private unnamed_addr constant [63 x i8] c"Android.Credentials.PrepareGetCredentialResponse, Mono.Android\00", align 1 +@.TypeMapEntry.1925_to = private unnamed_addr constant [49 x i8] c"android/credentials/PrepareGetCredentialResponse\00", align 1 +@.TypeMapEntry.1926_from = private unnamed_addr constant [71 x i8] c"Android.Credentials.RegisterCredentialDescriptionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1927_to = private unnamed_addr constant [57 x i8] c"android/credentials/RegisterCredentialDescriptionRequest\00", align 1 +@.TypeMapEntry.1928_from = private unnamed_addr constant [73 x i8] c"Android.Credentials.UnregisterCredentialDescriptionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.1929_to = private unnamed_addr constant [59 x i8] c"android/credentials/UnregisterCredentialDescriptionRequest\00", align 1 +@.TypeMapEntry.1930_from = private unnamed_addr constant [43 x i8] c"Android.Crypto.Hpke.IHpkeSpi, Mono.Android\00", align 1 +@.TypeMapEntry.1931_to = private unnamed_addr constant [28 x i8] c"android/crypto/hpke/HpkeSpi\00", align 1 +@.TypeMapEntry.1932_from = private unnamed_addr constant [50 x i8] c"Android.Crypto.Hpke.IHpkeSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1933_from = private unnamed_addr constant [45 x i8] c"Android.Crypto.Hpke.XdhKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.1934_to = private unnamed_addr constant [31 x i8] c"android/crypto/hpke/XdhKeySpec\00", align 1 +@.TypeMapEntry.1935_from = private unnamed_addr constant [66 x i8] c"Android.Database.AbstractCursor+SelfContentObserver, Mono.Android\00", align 1 +@.TypeMapEntry.1936_to = private unnamed_addr constant [52 x i8] c"android/database/AbstractCursor$SelfContentObserver\00", align 1 +@.TypeMapEntry.1937_from = private unnamed_addr constant [46 x i8] c"Android.Database.AbstractCursor, Mono.Android\00", align 1 +@.TypeMapEntry.1938_to = private unnamed_addr constant [32 x i8] c"android/database/AbstractCursor\00", align 1 +@.TypeMapEntry.1939_from = private unnamed_addr constant [53 x i8] c"Android.Database.AbstractCursorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1940_from = private unnamed_addr constant [54 x i8] c"Android.Database.AbstractWindowedCursor, Mono.Android\00", align 1 +@.TypeMapEntry.1941_to = private unnamed_addr constant [40 x i8] c"android/database/AbstractWindowedCursor\00", align 1 +@.TypeMapEntry.1942_from = private unnamed_addr constant [61 x i8] c"Android.Database.AbstractWindowedCursorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1943_from = private unnamed_addr constant [47 x i8] c"Android.Database.CharArrayBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.1944_to = private unnamed_addr constant [33 x i8] c"android/database/CharArrayBuffer\00", align 1 +@.TypeMapEntry.1945_from = private unnamed_addr constant [49 x i8] c"Android.Database.ContentObservable, Mono.Android\00", align 1 +@.TypeMapEntry.1946_to = private unnamed_addr constant [35 x i8] c"android/database/ContentObservable\00", align 1 +@.TypeMapEntry.1947_from = private unnamed_addr constant [47 x i8] c"Android.Database.ContentObserver, Mono.Android\00", align 1 +@.TypeMapEntry.1948_to = private unnamed_addr constant [33 x i8] c"android/database/ContentObserver\00", align 1 +@.TypeMapEntry.1949_from = private unnamed_addr constant [54 x i8] c"Android.Database.ContentObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1950_from = private unnamed_addr constant [57 x i8] c"Android.Database.CrossProcessCursorWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.1951_to = private unnamed_addr constant [43 x i8] c"android/database/CrossProcessCursorWrapper\00", align 1 +@.TypeMapEntry.1952_from = private unnamed_addr constant [63 x i8] c"Android.Database.CursorIndexOutOfBoundsException, Mono.Android\00", align 1 +@.TypeMapEntry.1953_to = private unnamed_addr constant [49 x i8] c"android/database/CursorIndexOutOfBoundsException\00", align 1 +@.TypeMapEntry.1954_from = private unnamed_addr constant [51 x i8] c"Android.Database.CursorJoiner+Result, Mono.Android\00", align 1 +@.TypeMapEntry.1955_to = private unnamed_addr constant [37 x i8] c"android/database/CursorJoiner$Result\00", align 1 +@.TypeMapEntry.1956_from = private unnamed_addr constant [44 x i8] c"Android.Database.CursorJoiner, Mono.Android\00", align 1 +@.TypeMapEntry.1957_to = private unnamed_addr constant [30 x i8] c"android/database/CursorJoiner\00", align 1 +@.TypeMapEntry.1958_from = private unnamed_addr constant [44 x i8] c"Android.Database.CursorWindow, Mono.Android\00", align 1 +@.TypeMapEntry.1959_to = private unnamed_addr constant [30 x i8] c"android/database/CursorWindow\00", align 1 +@.TypeMapEntry.1960_from = private unnamed_addr constant [63 x i8] c"Android.Database.CursorWindowAllocationException, Mono.Android\00", align 1 +@.TypeMapEntry.1961_to = private unnamed_addr constant [49 x i8] c"android/database/CursorWindowAllocationException\00", align 1 +@.TypeMapEntry.1962_from = private unnamed_addr constant [45 x i8] c"Android.Database.CursorWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.1963_to = private unnamed_addr constant [31 x i8] c"android/database/CursorWrapper\00", align 1 +@.TypeMapEntry.1964_from = private unnamed_addr constant [49 x i8] c"Android.Database.DataSetObservable, Mono.Android\00", align 1 +@.TypeMapEntry.1965_to = private unnamed_addr constant [35 x i8] c"android/database/DataSetObservable\00", align 1 +@.TypeMapEntry.1966_from = private unnamed_addr constant [47 x i8] c"Android.Database.DataSetObserver, Mono.Android\00", align 1 +@.TypeMapEntry.1967_to = private unnamed_addr constant [33 x i8] c"android/database/DataSetObserver\00", align 1 +@.TypeMapEntry.1968_from = private unnamed_addr constant [54 x i8] c"Android.Database.DataSetObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1969_from = private unnamed_addr constant [58 x i8] c"Android.Database.DatabaseUtils+InsertHelper, Mono.Android\00", align 1 +@.TypeMapEntry.1970_to = private unnamed_addr constant [44 x i8] c"android/database/DatabaseUtils$InsertHelper\00", align 1 +@.TypeMapEntry.1971_from = private unnamed_addr constant [45 x i8] c"Android.Database.DatabaseUtils, Mono.Android\00", align 1 +@.TypeMapEntry.1972_to = private unnamed_addr constant [31 x i8] c"android/database/DatabaseUtils\00", align 1 +@.TypeMapEntry.1973_from = private unnamed_addr constant [59 x i8] c"Android.Database.DefaultDatabaseErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.1974_to = private unnamed_addr constant [45 x i8] c"android/database/DefaultDatabaseErrorHandler\00", align 1 +@.TypeMapEntry.1975_from = private unnamed_addr constant [51 x i8] c"Android.Database.ICrossProcessCursor, Mono.Android\00", align 1 +@.TypeMapEntry.1976_to = private unnamed_addr constant [36 x i8] c"android/database/CrossProcessCursor\00", align 1 +@.TypeMapEntry.1977_from = private unnamed_addr constant [58 x i8] c"Android.Database.ICrossProcessCursorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1978_from = private unnamed_addr constant [39 x i8] c"Android.Database.ICursor, Mono.Android\00", align 1 +@.TypeMapEntry.1979_to = private unnamed_addr constant [24 x i8] c"android/database/Cursor\00", align 1 +@.TypeMapEntry.1980_from = private unnamed_addr constant [46 x i8] c"Android.Database.ICursorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1981_from = private unnamed_addr constant [53 x i8] c"Android.Database.IDatabaseErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.1982_to = private unnamed_addr constant [38 x i8] c"android/database/DatabaseErrorHandler\00", align 1 +@.TypeMapEntry.1983_from = private unnamed_addr constant [60 x i8] c"Android.Database.IDatabaseErrorHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1984_from = private unnamed_addr constant [55 x i8] c"Android.Database.MatrixCursor+RowBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.1985_to = private unnamed_addr constant [41 x i8] c"android/database/MatrixCursor$RowBuilder\00", align 1 +@.TypeMapEntry.1986_from = private unnamed_addr constant [44 x i8] c"Android.Database.MatrixCursor, Mono.Android\00", align 1 +@.TypeMapEntry.1987_to = private unnamed_addr constant [30 x i8] c"android/database/MatrixCursor\00", align 1 +@.TypeMapEntry.1988_from = private unnamed_addr constant [43 x i8] c"Android.Database.MergeCursor, Mono.Android\00", align 1 +@.TypeMapEntry.1989_to = private unnamed_addr constant [29 x i8] c"android/database/MergeCursor\00", align 1 +@.TypeMapEntry.1990_from = private unnamed_addr constant [42 x i8] c"Android.Database.Observable, Mono.Android\00", align 1 +@.TypeMapEntry.1991_to = private unnamed_addr constant [28 x i8] c"android/database/Observable\00", align 1 +@.TypeMapEntry.1992_from = private unnamed_addr constant [49 x i8] c"Android.Database.ObservableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1993_from = private unnamed_addr constant [44 x i8] c"Android.Database.SQLException, Mono.Android\00", align 1 +@.TypeMapEntry.1994_to = private unnamed_addr constant [30 x i8] c"android/database/SQLException\00", align 1 +@.TypeMapEntry.1995_from = private unnamed_addr constant [58 x i8] c"Android.Database.Sqlite.ISQLiteCursorDriver, Mono.Android\00", align 1 +@.TypeMapEntry.1996_to = private unnamed_addr constant [43 x i8] c"android/database/sqlite/SQLiteCursorDriver\00", align 1 +@.TypeMapEntry.1997_from = private unnamed_addr constant [65 x i8] c"Android.Database.Sqlite.ISQLiteCursorDriverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.1998_from = private unnamed_addr constant [65 x i8] c"Android.Database.Sqlite.ISQLiteTransactionListener, Mono.Android\00", align 1 +@.TypeMapEntry.1999_to = private unnamed_addr constant [50 x i8] c"android/database/sqlite/SQLiteTransactionListener\00", align 1 +@.TypeMapEntry.2000_from = private unnamed_addr constant [76 x i8] c"Android.Database.Sqlite.ISQLiteTransactionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2001_to = private unnamed_addr constant [66 x i8] c"mono/android/database/sqlite/SQLiteTransactionListenerImplementor\00", align 1 +@.TypeMapEntry.2002_from = private unnamed_addr constant [72 x i8] c"Android.Database.Sqlite.ISQLiteTransactionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2003_from = private unnamed_addr constant [59 x i8] c"Android.Database.Sqlite.SQLiteAbortException, Mono.Android\00", align 1 +@.TypeMapEntry.2004_to = private unnamed_addr constant [45 x i8] c"android/database/sqlite/SQLiteAbortException\00", align 1 +@.TypeMapEntry.2005_from = private unnamed_addr constant [64 x i8] c"Android.Database.Sqlite.SQLiteAccessPermException, Mono.Android\00", align 1 +@.TypeMapEntry.2006_to = private unnamed_addr constant [50 x i8] c"android/database/sqlite/SQLiteAccessPermException\00", align 1 +@.TypeMapEntry.2007_from = private unnamed_addr constant [81 x i8] c"Android.Database.Sqlite.SQLiteBindOrColumnIndexOutOfRangeException, Mono.Android\00", align 1 +@.TypeMapEntry.2008_to = private unnamed_addr constant [67 x i8] c"android/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException\00", align 1 +@.TypeMapEntry.2009_from = private unnamed_addr constant [64 x i8] c"Android.Database.Sqlite.SQLiteBlobTooBigException, Mono.Android\00", align 1 +@.TypeMapEntry.2010_to = private unnamed_addr constant [50 x i8] c"android/database/sqlite/SQLiteBlobTooBigException\00", align 1 +@.TypeMapEntry.2011_from = private unnamed_addr constant [70 x i8] c"Android.Database.Sqlite.SQLiteCantOpenDatabaseException, Mono.Android\00", align 1 +@.TypeMapEntry.2012_to = private unnamed_addr constant [56 x i8] c"android/database/sqlite/SQLiteCantOpenDatabaseException\00", align 1 +@.TypeMapEntry.2013_from = private unnamed_addr constant [53 x i8] c"Android.Database.Sqlite.SQLiteClosable, Mono.Android\00", align 1 +@.TypeMapEntry.2014_to = private unnamed_addr constant [39 x i8] c"android/database/sqlite/SQLiteClosable\00", align 1 +@.TypeMapEntry.2015_from = private unnamed_addr constant [60 x i8] c"Android.Database.Sqlite.SQLiteClosableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2016_from = private unnamed_addr constant [64 x i8] c"Android.Database.Sqlite.SQLiteConstraintException, Mono.Android\00", align 1 +@.TypeMapEntry.2017_to = private unnamed_addr constant [50 x i8] c"android/database/sqlite/SQLiteConstraintException\00", align 1 +@.TypeMapEntry.2018_from = private unnamed_addr constant [51 x i8] c"Android.Database.Sqlite.SQLiteCursor, Mono.Android\00", align 1 +@.TypeMapEntry.2019_to = private unnamed_addr constant [37 x i8] c"android/database/sqlite/SQLiteCursor\00", align 1 +@.TypeMapEntry.2020_from = private unnamed_addr constant [68 x i8] c"Android.Database.Sqlite.SQLiteDatabase+ICursorFactory, Mono.Android\00", align 1 +@.TypeMapEntry.2021_to = private unnamed_addr constant [53 x i8] c"android/database/sqlite/SQLiteDatabase$CursorFactory\00", align 1 +@.TypeMapEntry.2022_from = private unnamed_addr constant [75 x i8] c"Android.Database.Sqlite.SQLiteDatabase+ICursorFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2023_from = private unnamed_addr constant [72 x i8] c"Android.Database.Sqlite.SQLiteDatabase+OpenParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2024_to = private unnamed_addr constant [58 x i8] c"android/database/sqlite/SQLiteDatabase$OpenParams$Builder\00", align 1 +@.TypeMapEntry.2025_from = private unnamed_addr constant [64 x i8] c"Android.Database.Sqlite.SQLiteDatabase+OpenParams, Mono.Android\00", align 1 +@.TypeMapEntry.2026_to = private unnamed_addr constant [50 x i8] c"android/database/sqlite/SQLiteDatabase$OpenParams\00", align 1 +@.TypeMapEntry.2027_from = private unnamed_addr constant [53 x i8] c"Android.Database.Sqlite.SQLiteDatabase, Mono.Android\00", align 1 +@.TypeMapEntry.2028_to = private unnamed_addr constant [39 x i8] c"android/database/sqlite/SQLiteDatabase\00", align 1 +@.TypeMapEntry.2029_from = private unnamed_addr constant [69 x i8] c"Android.Database.Sqlite.SQLiteDatabaseCorruptException, Mono.Android\00", align 1 +@.TypeMapEntry.2030_to = private unnamed_addr constant [55 x i8] c"android/database/sqlite/SQLiteDatabaseCorruptException\00", align 1 +@.TypeMapEntry.2031_from = private unnamed_addr constant [68 x i8] c"Android.Database.Sqlite.SQLiteDatabaseLockedException, Mono.Android\00", align 1 +@.TypeMapEntry.2032_to = private unnamed_addr constant [54 x i8] c"android/database/sqlite/SQLiteDatabaseLockedException\00", align 1 +@.TypeMapEntry.2033_from = private unnamed_addr constant [70 x i8] c"Android.Database.Sqlite.SQLiteDatatypeMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.2034_to = private unnamed_addr constant [56 x i8] c"android/database/sqlite/SQLiteDatatypeMismatchException\00", align 1 +@.TypeMapEntry.2035_from = private unnamed_addr constant [60 x i8] c"Android.Database.Sqlite.SQLiteDiskIOException, Mono.Android\00", align 1 +@.TypeMapEntry.2036_to = private unnamed_addr constant [46 x i8] c"android/database/sqlite/SQLiteDiskIOException\00", align 1 +@.TypeMapEntry.2037_from = private unnamed_addr constant [58 x i8] c"Android.Database.Sqlite.SQLiteDoneException, Mono.Android\00", align 1 +@.TypeMapEntry.2038_to = private unnamed_addr constant [44 x i8] c"android/database/sqlite/SQLiteDoneException\00", align 1 +@.TypeMapEntry.2039_from = private unnamed_addr constant [54 x i8] c"Android.Database.Sqlite.SQLiteException, Mono.Android\00", align 1 +@.TypeMapEntry.2040_to = private unnamed_addr constant [40 x i8] c"android/database/sqlite/SQLiteException\00", align 1 +@.TypeMapEntry.2041_from = private unnamed_addr constant [58 x i8] c"Android.Database.Sqlite.SQLiteFullException, Mono.Android\00", align 1 +@.TypeMapEntry.2042_to = private unnamed_addr constant [44 x i8] c"android/database/sqlite/SQLiteFullException\00", align 1 +@.TypeMapEntry.2043_from = private unnamed_addr constant [60 x i8] c"Android.Database.Sqlite.SQLiteMisuseException, Mono.Android\00", align 1 +@.TypeMapEntry.2044_to = private unnamed_addr constant [46 x i8] c"android/database/sqlite/SQLiteMisuseException\00", align 1 +@.TypeMapEntry.2045_from = private unnamed_addr constant [55 x i8] c"Android.Database.Sqlite.SQLiteOpenHelper, Mono.Android\00", align 1 +@.TypeMapEntry.2046_to = private unnamed_addr constant [41 x i8] c"android/database/sqlite/SQLiteOpenHelper\00", align 1 +@.TypeMapEntry.2047_from = private unnamed_addr constant [62 x i8] c"Android.Database.Sqlite.SQLiteOpenHelperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2048_from = private unnamed_addr constant [65 x i8] c"Android.Database.Sqlite.SQLiteOutOfMemoryException, Mono.Android\00", align 1 +@.TypeMapEntry.2049_to = private unnamed_addr constant [51 x i8] c"android/database/sqlite/SQLiteOutOfMemoryException\00", align 1 +@.TypeMapEntry.2050_from = private unnamed_addr constant [52 x i8] c"Android.Database.Sqlite.SQLiteProgram, Mono.Android\00", align 1 +@.TypeMapEntry.2051_to = private unnamed_addr constant [38 x i8] c"android/database/sqlite/SQLiteProgram\00", align 1 +@.TypeMapEntry.2052_from = private unnamed_addr constant [59 x i8] c"Android.Database.Sqlite.SQLiteProgramInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2053_from = private unnamed_addr constant [50 x i8] c"Android.Database.Sqlite.SQLiteQuery, Mono.Android\00", align 1 +@.TypeMapEntry.2054_to = private unnamed_addr constant [36 x i8] c"android/database/sqlite/SQLiteQuery\00", align 1 +@.TypeMapEntry.2055_from = private unnamed_addr constant [57 x i8] c"Android.Database.Sqlite.SQLiteQueryBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.2056_to = private unnamed_addr constant [43 x i8] c"android/database/sqlite/SQLiteQueryBuilder\00", align 1 +@.TypeMapEntry.2057_from = private unnamed_addr constant [57 x i8] c"Android.Database.Sqlite.SQLiteRawStatement, Mono.Android\00", align 1 +@.TypeMapEntry.2058_to = private unnamed_addr constant [43 x i8] c"android/database/sqlite/SQLiteRawStatement\00", align 1 +@.TypeMapEntry.2059_from = private unnamed_addr constant [70 x i8] c"Android.Database.Sqlite.SQLiteReadOnlyDatabaseException, Mono.Android\00", align 1 +@.TypeMapEntry.2060_to = private unnamed_addr constant [56 x i8] c"android/database/sqlite/SQLiteReadOnlyDatabaseException\00", align 1 +@.TypeMapEntry.2061_from = private unnamed_addr constant [54 x i8] c"Android.Database.Sqlite.SQLiteStatement, Mono.Android\00", align 1 +@.TypeMapEntry.2062_to = private unnamed_addr constant [40 x i8] c"android/database/sqlite/SQLiteStatement\00", align 1 +@.TypeMapEntry.2063_from = private unnamed_addr constant [65 x i8] c"Android.Database.Sqlite.SQLiteTableLockedException, Mono.Android\00", align 1 +@.TypeMapEntry.2064_to = private unnamed_addr constant [51 x i8] c"android/database/sqlite/SQLiteTableLockedException\00", align 1 +@.TypeMapEntry.2065_from = private unnamed_addr constant [50 x i8] c"Android.Database.StaleDataException, Mono.Android\00", align 1 +@.TypeMapEntry.2066_to = private unnamed_addr constant [36 x i8] c"android/database/StaleDataException\00", align 1 +@.TypeMapEntry.2067_from = private unnamed_addr constant [42 x i8] c"Android.DeviceLock.DeviceId, Mono.Android\00", align 1 +@.TypeMapEntry.2068_to = private unnamed_addr constant [28 x i8] c"android/devicelock/DeviceId\00", align 1 +@.TypeMapEntry.2069_from = private unnamed_addr constant [51 x i8] c"Android.DeviceLock.DeviceLockManager, Mono.Android\00", align 1 +@.TypeMapEntry.2070_to = private unnamed_addr constant [37 x i8] c"android/devicelock/DeviceLockManager\00", align 1 +@.TypeMapEntry.2071_from = private unnamed_addr constant [45 x i8] c"Android.Drm.DrmConvertedStatus, Mono.Android\00", align 1 +@.TypeMapEntry.2072_to = private unnamed_addr constant [31 x i8] c"android/drm/DrmConvertedStatus\00", align 1 +@.TypeMapEntry.2073_from = private unnamed_addr constant [40 x i8] c"Android.Drm.DrmErrorEvent, Mono.Android\00", align 1 +@.TypeMapEntry.2074_to = private unnamed_addr constant [26 x i8] c"android/drm/DrmErrorEvent\00", align 1 +@.TypeMapEntry.2075_from = private unnamed_addr constant [35 x i8] c"Android.Drm.DrmEvent, Mono.Android\00", align 1 +@.TypeMapEntry.2076_to = private unnamed_addr constant [21 x i8] c"android/drm/DrmEvent\00", align 1 +@.TypeMapEntry.2077_from = private unnamed_addr constant [34 x i8] c"Android.Drm.DrmInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2078_to = private unnamed_addr constant [20 x i8] c"android/drm/DrmInfo\00", align 1 +@.TypeMapEntry.2079_from = private unnamed_addr constant [39 x i8] c"Android.Drm.DrmInfoEvent, Mono.Android\00", align 1 +@.TypeMapEntry.2080_to = private unnamed_addr constant [25 x i8] c"android/drm/DrmInfoEvent\00", align 1 +@.TypeMapEntry.2081_from = private unnamed_addr constant [41 x i8] c"Android.Drm.DrmInfoRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2082_to = private unnamed_addr constant [27 x i8] c"android/drm/DrmInfoRequest\00", align 1 +@.TypeMapEntry.2083_from = private unnamed_addr constant [40 x i8] c"Android.Drm.DrmInfoStatus, Mono.Android\00", align 1 +@.TypeMapEntry.2084_to = private unnamed_addr constant [26 x i8] c"android/drm/DrmInfoStatus\00", align 1 +@.TypeMapEntry.2085_from = private unnamed_addr constant [60 x i8] c"Android.Drm.DrmManagerClient+IOnErrorListener, Mono.Android\00", align 1 +@.TypeMapEntry.2086_to = private unnamed_addr constant [45 x i8] c"android/drm/DrmManagerClient$OnErrorListener\00", align 1 +@.TypeMapEntry.2087_from = private unnamed_addr constant [71 x i8] c"Android.Drm.DrmManagerClient+IOnErrorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2088_to = private unnamed_addr constant [61 x i8] c"mono/android/drm/DrmManagerClient_OnErrorListenerImplementor\00", align 1 +@.TypeMapEntry.2089_from = private unnamed_addr constant [67 x i8] c"Android.Drm.DrmManagerClient+IOnErrorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2090_from = private unnamed_addr constant [60 x i8] c"Android.Drm.DrmManagerClient+IOnEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.2091_to = private unnamed_addr constant [45 x i8] c"android/drm/DrmManagerClient$OnEventListener\00", align 1 +@.TypeMapEntry.2092_from = private unnamed_addr constant [71 x i8] c"Android.Drm.DrmManagerClient+IOnEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2093_to = private unnamed_addr constant [61 x i8] c"mono/android/drm/DrmManagerClient_OnEventListenerImplementor\00", align 1 +@.TypeMapEntry.2094_from = private unnamed_addr constant [67 x i8] c"Android.Drm.DrmManagerClient+IOnEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2095_from = private unnamed_addr constant [59 x i8] c"Android.Drm.DrmManagerClient+IOnInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.2096_to = private unnamed_addr constant [44 x i8] c"android/drm/DrmManagerClient$OnInfoListener\00", align 1 +@.TypeMapEntry.2097_from = private unnamed_addr constant [70 x i8] c"Android.Drm.DrmManagerClient+IOnInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2098_to = private unnamed_addr constant [60 x i8] c"mono/android/drm/DrmManagerClient_OnInfoListenerImplementor\00", align 1 +@.TypeMapEntry.2099_from = private unnamed_addr constant [66 x i8] c"Android.Drm.DrmManagerClient+IOnInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2100_from = private unnamed_addr constant [43 x i8] c"Android.Drm.DrmManagerClient, Mono.Android\00", align 1 +@.TypeMapEntry.2101_to = private unnamed_addr constant [29 x i8] c"android/drm/DrmManagerClient\00", align 1 +@.TypeMapEntry.2102_from = private unnamed_addr constant [36 x i8] c"Android.Drm.DrmRights, Mono.Android\00", align 1 +@.TypeMapEntry.2103_to = private unnamed_addr constant [22 x i8] c"android/drm/DrmRights\00", align 1 +@.TypeMapEntry.2104_from = private unnamed_addr constant [42 x i8] c"Android.Drm.DrmStore+Action, Mono.Android\00", align 1 +@.TypeMapEntry.2105_to = private unnamed_addr constant [28 x i8] c"android/drm/DrmStore$Action\00", align 1 +@.TypeMapEntry.2106_from = private unnamed_addr constant [54 x i8] c"Android.Drm.DrmStore+ConstraintsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.2107_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/drm/DrmStore$ConstraintsColumns\00", align 1 +@.TypeMapEntry.2108_from = private unnamed_addr constant [49 x i8] c"Android.Drm.DrmStore+DrmObjectType, Mono.Android\00", align 1 +@.TypeMapEntry.2109_to = private unnamed_addr constant [35 x i8] c"android/drm/DrmStore$DrmObjectType\00", align 1 +@.TypeMapEntry.2110_from = private unnamed_addr constant [44 x i8] c"Android.Drm.DrmStore+Playback, Mono.Android\00", align 1 +@.TypeMapEntry.2111_to = private unnamed_addr constant [30 x i8] c"android/drm/DrmStore$Playback\00", align 1 +@.TypeMapEntry.2112_from = private unnamed_addr constant [48 x i8] c"Android.Drm.DrmStore+RightsStatus, Mono.Android\00", align 1 +@.TypeMapEntry.2113_to = private unnamed_addr constant [34 x i8] c"android/drm/DrmStore$RightsStatus\00", align 1 +@.TypeMapEntry.2114_from = private unnamed_addr constant [35 x i8] c"Android.Drm.DrmStore, Mono.Android\00", align 1 +@.TypeMapEntry.2115_to = private unnamed_addr constant [21 x i8] c"android/drm/DrmStore\00", align 1 +@.TypeMapEntry.2116_from = private unnamed_addr constant [41 x i8] c"Android.Drm.DrmSupportInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2117_to = private unnamed_addr constant [27 x i8] c"android/drm/DrmSupportInfo\00", align 1 +@.TypeMapEntry.2118_from = private unnamed_addr constant [58 x i8] c"Android.Drm.DrmUtils+ExtendedMetadataParser, Mono.Android\00", align 1 +@.TypeMapEntry.2119_to = private unnamed_addr constant [44 x i8] c"android/drm/DrmUtils$ExtendedMetadataParser\00", align 1 +@.TypeMapEntry.2120_from = private unnamed_addr constant [35 x i8] c"Android.Drm.DrmUtils, Mono.Android\00", align 1 +@.TypeMapEntry.2121_to = private unnamed_addr constant [21 x i8] c"android/drm/DrmUtils\00", align 1 +@.TypeMapEntry.2122_from = private unnamed_addr constant [40 x i8] c"Android.Drm.ProcessedData, Mono.Android\00", align 1 +@.TypeMapEntry.2123_to = private unnamed_addr constant [26 x i8] c"android/drm/ProcessedData\00", align 1 +@.TypeMapEntry.2124_from = private unnamed_addr constant [39 x i8] c"Android.Gestures.Gesture, Mono.Android\00", align 1 +@.TypeMapEntry.2125_to = private unnamed_addr constant [24 x i8] c"android/gesture/Gesture\00", align 1 +@.TypeMapEntry.2126_from = private unnamed_addr constant [48 x i8] c"Android.Gestures.GestureLibraries, Mono.Android\00", align 1 +@.TypeMapEntry.2127_to = private unnamed_addr constant [33 x i8] c"android/gesture/GestureLibraries\00", align 1 +@.TypeMapEntry.2128_from = private unnamed_addr constant [46 x i8] c"Android.Gestures.GestureLibrary, Mono.Android\00", align 1 +@.TypeMapEntry.2129_to = private unnamed_addr constant [31 x i8] c"android/gesture/GestureLibrary\00", align 1 +@.TypeMapEntry.2130_from = private unnamed_addr constant [53 x i8] c"Android.Gestures.GestureLibraryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2131_from = private unnamed_addr constant [69 x i8] c"Android.Gestures.GestureOverlayView+IOnGestureListener, Mono.Android\00", align 1 +@.TypeMapEntry.2132_to = private unnamed_addr constant [53 x i8] c"android/gesture/GestureOverlayView$OnGestureListener\00", align 1 +@.TypeMapEntry.2133_from = private unnamed_addr constant [80 x i8] c"Android.Gestures.GestureOverlayView+IOnGestureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2134_to = private unnamed_addr constant [69 x i8] c"mono/android/gesture/GestureOverlayView_OnGestureListenerImplementor\00", align 1 +@.TypeMapEntry.2135_from = private unnamed_addr constant [76 x i8] c"Android.Gestures.GestureOverlayView+IOnGestureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2136_from = private unnamed_addr constant [78 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturePerformedListener, Mono.Android\00", align 1 +@.TypeMapEntry.2137_to = private unnamed_addr constant [62 x i8] c"android/gesture/GestureOverlayView$OnGesturePerformedListener\00", align 1 +@.TypeMapEntry.2138_from = private unnamed_addr constant [89 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturePerformedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2139_to = private unnamed_addr constant [78 x i8] c"mono/android/gesture/GestureOverlayView_OnGesturePerformedListenerImplementor\00", align 1 +@.TypeMapEntry.2140_from = private unnamed_addr constant [85 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturePerformedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2141_from = private unnamed_addr constant [71 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturingListener, Mono.Android\00", align 1 +@.TypeMapEntry.2142_to = private unnamed_addr constant [55 x i8] c"android/gesture/GestureOverlayView$OnGesturingListener\00", align 1 +@.TypeMapEntry.2143_from = private unnamed_addr constant [82 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturingListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2144_to = private unnamed_addr constant [71 x i8] c"mono/android/gesture/GestureOverlayView_OnGesturingListenerImplementor\00", align 1 +@.TypeMapEntry.2145_from = private unnamed_addr constant [78 x i8] c"Android.Gestures.GestureOverlayView+IOnGesturingListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2146_from = private unnamed_addr constant [50 x i8] c"Android.Gestures.GestureOverlayView, Mono.Android\00", align 1 +@.TypeMapEntry.2147_to = private unnamed_addr constant [35 x i8] c"android/gesture/GestureOverlayView\00", align 1 +@.TypeMapEntry.2148_from = private unnamed_addr constant [44 x i8] c"Android.Gestures.GesturePoint, Mono.Android\00", align 1 +@.TypeMapEntry.2149_to = private unnamed_addr constant [29 x i8] c"android/gesture/GesturePoint\00", align 1 +@.TypeMapEntry.2150_from = private unnamed_addr constant [44 x i8] c"Android.Gestures.GestureStore, Mono.Android\00", align 1 +@.TypeMapEntry.2151_to = private unnamed_addr constant [29 x i8] c"android/gesture/GestureStore\00", align 1 +@.TypeMapEntry.2152_from = private unnamed_addr constant [45 x i8] c"Android.Gestures.GestureStroke, Mono.Android\00", align 1 +@.TypeMapEntry.2153_to = private unnamed_addr constant [30 x i8] c"android/gesture/GestureStroke\00", align 1 +@.TypeMapEntry.2154_from = private unnamed_addr constant [44 x i8] c"Android.Gestures.GestureUtils, Mono.Android\00", align 1 +@.TypeMapEntry.2155_to = private unnamed_addr constant [29 x i8] c"android/gesture/GestureUtils\00", align 1 +@.TypeMapEntry.2156_from = private unnamed_addr constant [51 x i8] c"Android.Gestures.OrientedBoundingBox, Mono.Android\00", align 1 +@.TypeMapEntry.2157_to = private unnamed_addr constant [36 x i8] c"android/gesture/OrientedBoundingBox\00", align 1 +@.TypeMapEntry.2158_from = private unnamed_addr constant [42 x i8] c"Android.Gestures.Prediction, Mono.Android\00", align 1 +@.TypeMapEntry.2159_to = private unnamed_addr constant [27 x i8] c"android/gesture/Prediction\00", align 1 +@.TypeMapEntry.2160_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.AvoidXfermode+Mode, Mono.Android\00", align 1 +@.TypeMapEntry.2161_to = private unnamed_addr constant [36 x i8] c"android/graphics/AvoidXfermode$Mode\00", align 1 +@.TypeMapEntry.2162_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.AvoidXfermode, Mono.Android\00", align 1 +@.TypeMapEntry.2163_to = private unnamed_addr constant [31 x i8] c"android/graphics/AvoidXfermode\00", align 1 +@.TypeMapEntry.2164_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.Bitmap+CompressFormat, Mono.Android\00", align 1 +@.TypeMapEntry.2165_to = private unnamed_addr constant [39 x i8] c"android/graphics/Bitmap$CompressFormat\00", align 1 +@.TypeMapEntry.2166_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.Bitmap+Config, Mono.Android\00", align 1 +@.TypeMapEntry.2167_to = private unnamed_addr constant [31 x i8] c"android/graphics/Bitmap$Config\00", align 1 +@.TypeMapEntry.2168_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Bitmap, Mono.Android\00", align 1 +@.TypeMapEntry.2169_to = private unnamed_addr constant [24 x i8] c"android/graphics/Bitmap\00", align 1 +@.TypeMapEntry.2170_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.BitmapFactory+Options, Mono.Android\00", align 1 +@.TypeMapEntry.2171_to = private unnamed_addr constant [39 x i8] c"android/graphics/BitmapFactory$Options\00", align 1 +@.TypeMapEntry.2172_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.BitmapFactory, Mono.Android\00", align 1 +@.TypeMapEntry.2173_to = private unnamed_addr constant [31 x i8] c"android/graphics/BitmapFactory\00", align 1 +@.TypeMapEntry.2174_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.BitmapRegionDecoder, Mono.Android\00", align 1 +@.TypeMapEntry.2175_to = private unnamed_addr constant [37 x i8] c"android/graphics/BitmapRegionDecoder\00", align 1 +@.TypeMapEntry.2176_from = private unnamed_addr constant [44 x i8] c"Android.Graphics.BitmapShader, Mono.Android\00", align 1 +@.TypeMapEntry.2177_to = private unnamed_addr constant [30 x i8] c"android/graphics/BitmapShader\00", align 1 +@.TypeMapEntry.2178_from = private unnamed_addr constant [41 x i8] c"Android.Graphics.BlendMode, Mono.Android\00", align 1 +@.TypeMapEntry.2179_to = private unnamed_addr constant [27 x i8] c"android/graphics/BlendMode\00", align 1 +@.TypeMapEntry.2180_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.BlendModeColorFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2181_to = private unnamed_addr constant [38 x i8] c"android/graphics/BlendModeColorFilter\00", align 1 +@.TypeMapEntry.2182_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.BlurMaskFilter+Blur, Mono.Android\00", align 1 +@.TypeMapEntry.2183_to = private unnamed_addr constant [37 x i8] c"android/graphics/BlurMaskFilter$Blur\00", align 1 +@.TypeMapEntry.2184_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.BlurMaskFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2185_to = private unnamed_addr constant [32 x i8] c"android/graphics/BlurMaskFilter\00", align 1 +@.TypeMapEntry.2186_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Camera, Mono.Android\00", align 1 +@.TypeMapEntry.2187_to = private unnamed_addr constant [24 x i8] c"android/graphics/Camera\00", align 1 +@.TypeMapEntry.2188_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.Canvas+EdgeType, Mono.Android\00", align 1 +@.TypeMapEntry.2189_to = private unnamed_addr constant [33 x i8] c"android/graphics/Canvas$EdgeType\00", align 1 +@.TypeMapEntry.2190_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.Canvas+VertexMode, Mono.Android\00", align 1 +@.TypeMapEntry.2191_to = private unnamed_addr constant [35 x i8] c"android/graphics/Canvas$VertexMode\00", align 1 +@.TypeMapEntry.2192_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Canvas, Mono.Android\00", align 1 +@.TypeMapEntry.2193_to = private unnamed_addr constant [24 x i8] c"android/graphics/Canvas\00", align 1 +@.TypeMapEntry.2194_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.ColorFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2195_to = private unnamed_addr constant [29 x i8] c"android/graphics/ColorFilter\00", align 1 +@.TypeMapEntry.2196_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.ColorMatrix, Mono.Android\00", align 1 +@.TypeMapEntry.2197_to = private unnamed_addr constant [29 x i8] c"android/graphics/ColorMatrix\00", align 1 +@.TypeMapEntry.2198_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.ColorMatrixColorFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2199_to = private unnamed_addr constant [40 x i8] c"android/graphics/ColorMatrixColorFilter\00", align 1 +@.TypeMapEntry.2200_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.ColorObject, Mono.Android\00", align 1 +@.TypeMapEntry.2201_to = private unnamed_addr constant [23 x i8] c"android/graphics/Color\00", align 1 +@.TypeMapEntry.2202_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.ColorSpace+Adaptation, Mono.Android\00", align 1 +@.TypeMapEntry.2203_to = private unnamed_addr constant [39 x i8] c"android/graphics/ColorSpace$Adaptation\00", align 1 +@.TypeMapEntry.2204_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.ColorSpace+Connector, Mono.Android\00", align 1 +@.TypeMapEntry.2205_to = private unnamed_addr constant [38 x i8] c"android/graphics/ColorSpace$Connector\00", align 1 +@.TypeMapEntry.2206_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.ColorSpace+Model, Mono.Android\00", align 1 +@.TypeMapEntry.2207_to = private unnamed_addr constant [34 x i8] c"android/graphics/ColorSpace$Model\00", align 1 +@.TypeMapEntry.2208_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.ColorSpace+Named, Mono.Android\00", align 1 +@.TypeMapEntry.2209_to = private unnamed_addr constant [34 x i8] c"android/graphics/ColorSpace$Named\00", align 1 +@.TypeMapEntry.2210_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.ColorSpace+RenderIntent, Mono.Android\00", align 1 +@.TypeMapEntry.2211_to = private unnamed_addr constant [41 x i8] c"android/graphics/ColorSpace$RenderIntent\00", align 1 +@.TypeMapEntry.2212_from = private unnamed_addr constant [65 x i8] c"Android.Graphics.ColorSpace+Rgb+TransferParameters, Mono.Android\00", align 1 +@.TypeMapEntry.2213_to = private unnamed_addr constant [51 x i8] c"android/graphics/ColorSpace$Rgb$TransferParameters\00", align 1 +@.TypeMapEntry.2214_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.ColorSpace+Rgb, Mono.Android\00", align 1 +@.TypeMapEntry.2215_to = private unnamed_addr constant [32 x i8] c"android/graphics/ColorSpace$Rgb\00", align 1 +@.TypeMapEntry.2216_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.ColorSpace, Mono.Android\00", align 1 +@.TypeMapEntry.2217_to = private unnamed_addr constant [28 x i8] c"android/graphics/ColorSpace\00", align 1 +@.TypeMapEntry.2218_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.ColorSpaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2219_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.ComposePathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2220_to = private unnamed_addr constant [35 x i8] c"android/graphics/ComposePathEffect\00", align 1 +@.TypeMapEntry.2221_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.ComposeShader, Mono.Android\00", align 1 +@.TypeMapEntry.2222_to = private unnamed_addr constant [31 x i8] c"android/graphics/ComposeShader\00", align 1 +@.TypeMapEntry.2223_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.CornerPathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2224_to = private unnamed_addr constant [34 x i8] c"android/graphics/CornerPathEffect\00", align 1 +@.TypeMapEntry.2225_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.DashPathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2226_to = private unnamed_addr constant [32 x i8] c"android/graphics/DashPathEffect\00", align 1 +@.TypeMapEntry.2227_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.DiscretePathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2228_to = private unnamed_addr constant [36 x i8] c"android/graphics/DiscretePathEffect\00", align 1 +@.TypeMapEntry.2229_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.DrawFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2230_to = private unnamed_addr constant [28 x i8] c"android/graphics/DrawFilter\00", align 1 +@.TypeMapEntry.2231_from = private unnamed_addr constant [62 x i8] c"Android.Graphics.Drawables.AdaptiveIconDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2232_to = private unnamed_addr constant [47 x i8] c"android/graphics/drawable/AdaptiveIconDrawable\00", align 1 +@.TypeMapEntry.2233_from = private unnamed_addr constant [70 x i8] c"Android.Graphics.Drawables.Animatable2AnimationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2234_to = private unnamed_addr constant [56 x i8] c"android/graphics/drawable/Animatable2$AnimationCallback\00", align 1 +@.TypeMapEntry.2235_from = private unnamed_addr constant [77 x i8] c"Android.Graphics.Drawables.Animatable2AnimationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2236_from = private unnamed_addr constant [63 x i8] c"Android.Graphics.Drawables.AnimatedImageDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2237_to = private unnamed_addr constant [48 x i8] c"android/graphics/drawable/AnimatedImageDrawable\00", align 1 +@.TypeMapEntry.2238_from = private unnamed_addr constant [67 x i8] c"Android.Graphics.Drawables.AnimatedStateListDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2239_to = private unnamed_addr constant [52 x i8] c"android/graphics/drawable/AnimatedStateListDrawable\00", align 1 +@.TypeMapEntry.2240_from = private unnamed_addr constant [64 x i8] c"Android.Graphics.Drawables.AnimatedVectorDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2241_to = private unnamed_addr constant [49 x i8] c"android/graphics/drawable/AnimatedVectorDrawable\00", align 1 +@.TypeMapEntry.2242_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.Drawables.AnimationDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2243_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/AnimationDrawable\00", align 1 +@.TypeMapEntry.2244_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Drawables.BitmapDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2245_to = private unnamed_addr constant [41 x i8] c"android/graphics/drawable/BitmapDrawable\00", align 1 +@.TypeMapEntry.2246_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.Drawables.ClipDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2247_to = private unnamed_addr constant [39 x i8] c"android/graphics/drawable/ClipDrawable\00", align 1 +@.TypeMapEntry.2248_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.ColorDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2249_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/ColorDrawable\00", align 1 +@.TypeMapEntry.2250_from = private unnamed_addr constant [64 x i8] c"Android.Graphics.Drawables.ColorStateListDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2251_to = private unnamed_addr constant [49 x i8] c"android/graphics/drawable/ColorStateListDrawable\00", align 1 +@.TypeMapEntry.2252_from = private unnamed_addr constant [64 x i8] c"Android.Graphics.Drawables.Drawable+ConstantState, Mono.Android\00", align 1 +@.TypeMapEntry.2253_to = private unnamed_addr constant [49 x i8] c"android/graphics/drawable/Drawable$ConstantState\00", align 1 +@.TypeMapEntry.2254_from = private unnamed_addr constant [71 x i8] c"Android.Graphics.Drawables.Drawable+ConstantStateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2255_from = private unnamed_addr constant [60 x i8] c"Android.Graphics.Drawables.Drawable+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.2256_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/Drawable$Callback\00", align 1 +@.TypeMapEntry.2257_from = private unnamed_addr constant [67 x i8] c"Android.Graphics.Drawables.Drawable+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2258_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.Drawables.Drawable, Mono.Android\00", align 1 +@.TypeMapEntry.2259_to = private unnamed_addr constant [35 x i8] c"android/graphics/drawable/Drawable\00", align 1 +@.TypeMapEntry.2260_from = private unnamed_addr constant [82 x i8] c"Android.Graphics.Drawables.DrawableContainer+DrawableContainerState, Mono.Android\00", align 1 +@.TypeMapEntry.2261_to = private unnamed_addr constant [67 x i8] c"android/graphics/drawable/DrawableContainer$DrawableContainerState\00", align 1 +@.TypeMapEntry.2262_from = private unnamed_addr constant [89 x i8] c"Android.Graphics.Drawables.DrawableContainer+DrawableContainerStateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2263_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.Drawables.DrawableContainer, Mono.Android\00", align 1 +@.TypeMapEntry.2264_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/DrawableContainer\00", align 1 +@.TypeMapEntry.2265_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Drawables.DrawableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2266_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Drawables.DrawableWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.2267_to = private unnamed_addr constant [42 x i8] c"android/graphics/drawable/DrawableWrapper\00", align 1 +@.TypeMapEntry.2268_from = private unnamed_addr constant [64 x i8] c"Android.Graphics.Drawables.DrawableWrapperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2269_from = private unnamed_addr constant [70 x i8] c"Android.Graphics.Drawables.GradientDrawable+Orientation, Mono.Android\00", align 1 +@.TypeMapEntry.2270_to = private unnamed_addr constant [55 x i8] c"android/graphics/drawable/GradientDrawable$Orientation\00", align 1 +@.TypeMapEntry.2271_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.Drawables.GradientDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2272_to = private unnamed_addr constant [43 x i8] c"android/graphics/drawable/GradientDrawable\00", align 1 +@.TypeMapEntry.2273_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.Drawables.IAnimatable, Mono.Android\00", align 1 +@.TypeMapEntry.2274_to = private unnamed_addr constant [37 x i8] c"android/graphics/drawable/Animatable\00", align 1 +@.TypeMapEntry.2275_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.Drawables.IAnimatable2, Mono.Android\00", align 1 +@.TypeMapEntry.2276_to = private unnamed_addr constant [38 x i8] c"android/graphics/drawable/Animatable2\00", align 1 +@.TypeMapEntry.2277_from = private unnamed_addr constant [61 x i8] c"Android.Graphics.Drawables.IAnimatable2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.2278_from = private unnamed_addr constant [60 x i8] c"Android.Graphics.Drawables.IAnimatableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2279_from = private unnamed_addr constant [72 x i8] c"Android.Graphics.Drawables.Icon+IOnDrawableLoadedListener, Mono.Android\00", align 1 +@.TypeMapEntry.2280_to = private unnamed_addr constant [56 x i8] c"android/graphics/drawable/Icon$OnDrawableLoadedListener\00", align 1 +@.TypeMapEntry.2281_from = private unnamed_addr constant [83 x i8] c"Android.Graphics.Drawables.Icon+IOnDrawableLoadedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2282_to = private unnamed_addr constant [72 x i8] c"mono/android/graphics/drawable/Icon_OnDrawableLoadedListenerImplementor\00", align 1 +@.TypeMapEntry.2283_from = private unnamed_addr constant [79 x i8] c"Android.Graphics.Drawables.Icon+IOnDrawableLoadedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2284_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.Drawables.Icon, Mono.Android\00", align 1 +@.TypeMapEntry.2285_to = private unnamed_addr constant [31 x i8] c"android/graphics/drawable/Icon\00", align 1 +@.TypeMapEntry.2286_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.InsetDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2287_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/InsetDrawable\00", align 1 +@.TypeMapEntry.2288_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.LayerDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2289_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/LayerDrawable\00", align 1 +@.TypeMapEntry.2290_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.Drawables.LevelListDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2291_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/LevelListDrawable\00", align 1 +@.TypeMapEntry.2292_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.Drawables.NinePatchDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2293_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/NinePatchDrawable\00", align 1 +@.TypeMapEntry.2294_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.PaintDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2295_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/PaintDrawable\00", align 1 +@.TypeMapEntry.2296_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Drawables.PictureDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2297_to = private unnamed_addr constant [42 x i8] c"android/graphics/drawable/PictureDrawable\00", align 1 +@.TypeMapEntry.2298_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Drawables.RippleDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2299_to = private unnamed_addr constant [41 x i8] c"android/graphics/drawable/RippleDrawable\00", align 1 +@.TypeMapEntry.2300_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Drawables.RotateDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2301_to = private unnamed_addr constant [41 x i8] c"android/graphics/drawable/RotateDrawable\00", align 1 +@.TypeMapEntry.2302_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.ScaleDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2303_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/ScaleDrawable\00", align 1 +@.TypeMapEntry.2304_from = private unnamed_addr constant [69 x i8] c"Android.Graphics.Drawables.ShapeDrawable+ShaderFactory, Mono.Android\00", align 1 +@.TypeMapEntry.2305_to = private unnamed_addr constant [54 x i8] c"android/graphics/drawable/ShapeDrawable$ShaderFactory\00", align 1 +@.TypeMapEntry.2306_from = private unnamed_addr constant [76 x i8] c"Android.Graphics.Drawables.ShapeDrawable+ShaderFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2307_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Drawables.ShapeDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2308_to = private unnamed_addr constant [40 x i8] c"android/graphics/drawable/ShapeDrawable\00", align 1 +@.TypeMapEntry.2309_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Drawables.Shapes.ArcShape, Mono.Android\00", align 1 +@.TypeMapEntry.2310_to = private unnamed_addr constant [42 x i8] c"android/graphics/drawable/shapes/ArcShape\00", align 1 +@.TypeMapEntry.2311_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.Drawables.Shapes.OvalShape, Mono.Android\00", align 1 +@.TypeMapEntry.2312_to = private unnamed_addr constant [43 x i8] c"android/graphics/drawable/shapes/OvalShape\00", align 1 +@.TypeMapEntry.2313_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.Drawables.Shapes.PathShape, Mono.Android\00", align 1 +@.TypeMapEntry.2314_to = private unnamed_addr constant [43 x i8] c"android/graphics/drawable/shapes/PathShape\00", align 1 +@.TypeMapEntry.2315_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.Drawables.Shapes.RectShape, Mono.Android\00", align 1 +@.TypeMapEntry.2316_to = private unnamed_addr constant [43 x i8] c"android/graphics/drawable/shapes/RectShape\00", align 1 +@.TypeMapEntry.2317_from = private unnamed_addr constant [63 x i8] c"Android.Graphics.Drawables.Shapes.RoundRectShape, Mono.Android\00", align 1 +@.TypeMapEntry.2318_to = private unnamed_addr constant [48 x i8] c"android/graphics/drawable/shapes/RoundRectShape\00", align 1 +@.TypeMapEntry.2319_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.Drawables.Shapes.Shape, Mono.Android\00", align 1 +@.TypeMapEntry.2320_to = private unnamed_addr constant [39 x i8] c"android/graphics/drawable/shapes/Shape\00", align 1 +@.TypeMapEntry.2321_from = private unnamed_addr constant [61 x i8] c"Android.Graphics.Drawables.Shapes.ShapeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2322_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.Drawables.StateListDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2323_to = private unnamed_addr constant [44 x i8] c"android/graphics/drawable/StateListDrawable\00", align 1 +@.TypeMapEntry.2324_from = private unnamed_addr constant [60 x i8] c"Android.Graphics.Drawables.TransitionDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2325_to = private unnamed_addr constant [45 x i8] c"android/graphics/drawable/TransitionDrawable\00", align 1 +@.TypeMapEntry.2326_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Drawables.VectorDrawable, Mono.Android\00", align 1 +@.TypeMapEntry.2327_to = private unnamed_addr constant [41 x i8] c"android/graphics/drawable/VectorDrawable\00", align 1 +@.TypeMapEntry.2328_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.EmbossMaskFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2329_to = private unnamed_addr constant [34 x i8] c"android/graphics/EmbossMaskFilter\00", align 1 +@.TypeMapEntry.2330_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.Fonts.Font+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2331_to = private unnamed_addr constant [36 x i8] c"android/graphics/fonts/Font$Builder\00", align 1 +@.TypeMapEntry.2332_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.Fonts.Font, Mono.Android\00", align 1 +@.TypeMapEntry.2333_to = private unnamed_addr constant [28 x i8] c"android/graphics/fonts/Font\00", align 1 +@.TypeMapEntry.2334_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Fonts.FontFamily+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2335_to = private unnamed_addr constant [42 x i8] c"android/graphics/fonts/FontFamily$Builder\00", align 1 +@.TypeMapEntry.2336_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.Fonts.FontFamily, Mono.Android\00", align 1 +@.TypeMapEntry.2337_to = private unnamed_addr constant [34 x i8] c"android/graphics/fonts/FontFamily\00", align 1 +@.TypeMapEntry.2338_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.Fonts.FontStyle, Mono.Android\00", align 1 +@.TypeMapEntry.2339_to = private unnamed_addr constant [33 x i8] c"android/graphics/fonts/FontStyle\00", align 1 +@.TypeMapEntry.2340_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Fonts.FontVariationAxis, Mono.Android\00", align 1 +@.TypeMapEntry.2341_to = private unnamed_addr constant [41 x i8] c"android/graphics/fonts/FontVariationAxis\00", align 1 +@.TypeMapEntry.2342_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.Fonts.SystemFonts, Mono.Android\00", align 1 +@.TypeMapEntry.2343_to = private unnamed_addr constant [35 x i8] c"android/graphics/fonts/SystemFonts\00", align 1 +@.TypeMapEntry.2344_from = private unnamed_addr constant [39 x i8] c"Android.Graphics.Gainmap, Mono.Android\00", align 1 +@.TypeMapEntry.2345_to = private unnamed_addr constant [25 x i8] c"android/graphics/Gainmap\00", align 1 +@.TypeMapEntry.2346_from = private unnamed_addr constant [68 x i8] c"Android.Graphics.HardwareBufferRenderer+RenderRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2347_to = private unnamed_addr constant [54 x i8] c"android/graphics/HardwareBufferRenderer$RenderRequest\00", align 1 +@.TypeMapEntry.2348_from = private unnamed_addr constant [67 x i8] c"Android.Graphics.HardwareBufferRenderer+RenderResult, Mono.Android\00", align 1 +@.TypeMapEntry.2349_to = private unnamed_addr constant [53 x i8] c"android/graphics/HardwareBufferRenderer$RenderResult\00", align 1 +@.TypeMapEntry.2350_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.HardwareBufferRenderer, Mono.Android\00", align 1 +@.TypeMapEntry.2351_to = private unnamed_addr constant [40 x i8] c"android/graphics/HardwareBufferRenderer\00", align 1 +@.TypeMapEntry.2352_from = private unnamed_addr constant [67 x i8] c"Android.Graphics.HardwareRenderer+FrameRenderRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2353_to = private unnamed_addr constant [53 x i8] c"android/graphics/HardwareRenderer$FrameRenderRequest\00", align 1 +@.TypeMapEntry.2354_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.HardwareRenderer, Mono.Android\00", align 1 +@.TypeMapEntry.2355_to = private unnamed_addr constant [34 x i8] c"android/graphics/HardwareRenderer\00", align 1 +@.TypeMapEntry.2356_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.IPostProcessor, Mono.Android\00", align 1 +@.TypeMapEntry.2357_to = private unnamed_addr constant [31 x i8] c"android/graphics/PostProcessor\00", align 1 +@.TypeMapEntry.2358_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.IPostProcessorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2359_from = private unnamed_addr constant [60 x i8] c"Android.Graphics.ImageDecoder+DecodeException, Mono.Android\00", align 1 +@.TypeMapEntry.2360_to = private unnamed_addr constant [46 x i8] c"android/graphics/ImageDecoder$DecodeException\00", align 1 +@.TypeMapEntry.2361_from = private unnamed_addr constant [69 x i8] c"Android.Graphics.ImageDecoder+IOnHeaderDecodedListener, Mono.Android\00", align 1 +@.TypeMapEntry.2362_to = private unnamed_addr constant [54 x i8] c"android/graphics/ImageDecoder$OnHeaderDecodedListener\00", align 1 +@.TypeMapEntry.2363_from = private unnamed_addr constant [80 x i8] c"Android.Graphics.ImageDecoder+IOnHeaderDecodedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2364_to = private unnamed_addr constant [70 x i8] c"mono/android/graphics/ImageDecoder_OnHeaderDecodedListenerImplementor\00", align 1 +@.TypeMapEntry.2365_from = private unnamed_addr constant [76 x i8] c"Android.Graphics.ImageDecoder+IOnHeaderDecodedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2366_from = private unnamed_addr constant [68 x i8] c"Android.Graphics.ImageDecoder+IOnPartialImageListener, Mono.Android\00", align 1 +@.TypeMapEntry.2367_to = private unnamed_addr constant [53 x i8] c"android/graphics/ImageDecoder$OnPartialImageListener\00", align 1 +@.TypeMapEntry.2368_from = private unnamed_addr constant [79 x i8] c"Android.Graphics.ImageDecoder+IOnPartialImageListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2369_to = private unnamed_addr constant [69 x i8] c"mono/android/graphics/ImageDecoder_OnPartialImageListenerImplementor\00", align 1 +@.TypeMapEntry.2370_from = private unnamed_addr constant [75 x i8] c"Android.Graphics.ImageDecoder+IOnPartialImageListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2371_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.ImageDecoder+ImageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2372_to = private unnamed_addr constant [40 x i8] c"android/graphics/ImageDecoder$ImageInfo\00", align 1 +@.TypeMapEntry.2373_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.ImageDecoder+Source, Mono.Android\00", align 1 +@.TypeMapEntry.2374_to = private unnamed_addr constant [37 x i8] c"android/graphics/ImageDecoder$Source\00", align 1 +@.TypeMapEntry.2375_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.ImageDecoder+SourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2376_from = private unnamed_addr constant [44 x i8] c"Android.Graphics.ImageDecoder, Mono.Android\00", align 1 +@.TypeMapEntry.2377_to = private unnamed_addr constant [30 x i8] c"android/graphics/ImageDecoder\00", align 1 +@.TypeMapEntry.2378_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.ImageFormat, Mono.Android\00", align 1 +@.TypeMapEntry.2379_to = private unnamed_addr constant [29 x i8] c"android/graphics/ImageFormat\00", align 1 +@.TypeMapEntry.2380_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Insets, Mono.Android\00", align 1 +@.TypeMapEntry.2381_to = private unnamed_addr constant [24 x i8] c"android/graphics/Insets\00", align 1 +@.TypeMapEntry.2382_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.Interpolator+Result, Mono.Android\00", align 1 +@.TypeMapEntry.2383_to = private unnamed_addr constant [37 x i8] c"android/graphics/Interpolator$Result\00", align 1 +@.TypeMapEntry.2384_from = private unnamed_addr constant [44 x i8] c"Android.Graphics.Interpolator, Mono.Android\00", align 1 +@.TypeMapEntry.2385_to = private unnamed_addr constant [30 x i8] c"android/graphics/Interpolator\00", align 1 +@.TypeMapEntry.2386_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.LayerRasterizer, Mono.Android\00", align 1 +@.TypeMapEntry.2387_to = private unnamed_addr constant [33 x i8] c"android/graphics/LayerRasterizer\00", align 1 +@.TypeMapEntry.2388_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.LightingColorFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2389_to = private unnamed_addr constant [37 x i8] c"android/graphics/LightingColorFilter\00", align 1 +@.TypeMapEntry.2390_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.LinearGradient, Mono.Android\00", align 1 +@.TypeMapEntry.2391_to = private unnamed_addr constant [32 x i8] c"android/graphics/LinearGradient\00", align 1 +@.TypeMapEntry.2392_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.MaskFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2393_to = private unnamed_addr constant [28 x i8] c"android/graphics/MaskFilter\00", align 1 +@.TypeMapEntry.2394_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.Matrix+ScaleToFit, Mono.Android\00", align 1 +@.TypeMapEntry.2395_to = private unnamed_addr constant [35 x i8] c"android/graphics/Matrix$ScaleToFit\00", align 1 +@.TypeMapEntry.2396_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Matrix, Mono.Android\00", align 1 +@.TypeMapEntry.2397_to = private unnamed_addr constant [24 x i8] c"android/graphics/Matrix\00", align 1 +@.TypeMapEntry.2398_from = private unnamed_addr constant [40 x i8] c"Android.Graphics.Matrix44, Mono.Android\00", align 1 +@.TypeMapEntry.2399_to = private unnamed_addr constant [26 x i8] c"android/graphics/Matrix44\00", align 1 +@.TypeMapEntry.2400_from = private unnamed_addr constant [36 x i8] c"Android.Graphics.Mesh, Mono.Android\00", align 1 +@.TypeMapEntry.2401_to = private unnamed_addr constant [22 x i8] c"android/graphics/Mesh\00", align 1 +@.TypeMapEntry.2402_from = private unnamed_addr constant [59 x i8] c"Android.Graphics.MeshSpecification+Attribute, Mono.Android\00", align 1 +@.TypeMapEntry.2403_to = private unnamed_addr constant [45 x i8] c"android/graphics/MeshSpecification$Attribute\00", align 1 +@.TypeMapEntry.2404_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.MeshSpecification+Varying, Mono.Android\00", align 1 +@.TypeMapEntry.2405_to = private unnamed_addr constant [43 x i8] c"android/graphics/MeshSpecification$Varying\00", align 1 +@.TypeMapEntry.2406_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.MeshSpecification, Mono.Android\00", align 1 +@.TypeMapEntry.2407_to = private unnamed_addr constant [35 x i8] c"android/graphics/MeshSpecification\00", align 1 +@.TypeMapEntry.2408_from = private unnamed_addr constant [37 x i8] c"Android.Graphics.Movie, Mono.Android\00", align 1 +@.TypeMapEntry.2409_to = private unnamed_addr constant [23 x i8] c"android/graphics/Movie\00", align 1 +@.TypeMapEntry.2410_from = private unnamed_addr constant [41 x i8] c"Android.Graphics.NinePatch, Mono.Android\00", align 1 +@.TypeMapEntry.2411_to = private unnamed_addr constant [27 x i8] c"android/graphics/NinePatch\00", align 1 +@.TypeMapEntry.2412_from = private unnamed_addr constant [39 x i8] c"Android.Graphics.Outline, Mono.Android\00", align 1 +@.TypeMapEntry.2413_to = private unnamed_addr constant [25 x i8] c"android/graphics/Outline\00", align 1 +@.TypeMapEntry.2414_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.Paint+Align, Mono.Android\00", align 1 +@.TypeMapEntry.2415_to = private unnamed_addr constant [29 x i8] c"android/graphics/Paint$Align\00", align 1 +@.TypeMapEntry.2416_from = private unnamed_addr constant [41 x i8] c"Android.Graphics.Paint+Cap, Mono.Android\00", align 1 +@.TypeMapEntry.2417_to = private unnamed_addr constant [27 x i8] c"android/graphics/Paint$Cap\00", align 1 +@.TypeMapEntry.2418_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.Paint+FontMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.2419_to = private unnamed_addr constant [35 x i8] c"android/graphics/Paint$FontMetrics\00", align 1 +@.TypeMapEntry.2420_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.Paint+FontMetricsInt, Mono.Android\00", align 1 +@.TypeMapEntry.2421_to = private unnamed_addr constant [38 x i8] c"android/graphics/Paint$FontMetricsInt\00", align 1 +@.TypeMapEntry.2422_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.Paint+Join, Mono.Android\00", align 1 +@.TypeMapEntry.2423_to = private unnamed_addr constant [28 x i8] c"android/graphics/Paint$Join\00", align 1 +@.TypeMapEntry.2424_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.Paint+Style, Mono.Android\00", align 1 +@.TypeMapEntry.2425_to = private unnamed_addr constant [29 x i8] c"android/graphics/Paint$Style\00", align 1 +@.TypeMapEntry.2426_from = private unnamed_addr constant [37 x i8] c"Android.Graphics.Paint, Mono.Android\00", align 1 +@.TypeMapEntry.2427_to = private unnamed_addr constant [23 x i8] c"android/graphics/Paint\00", align 1 +@.TypeMapEntry.2428_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.PaintFlagsDrawFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2429_to = private unnamed_addr constant [38 x i8] c"android/graphics/PaintFlagsDrawFilter\00", align 1 +@.TypeMapEntry.2430_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.ParcelableColorSpace, Mono.Android\00", align 1 +@.TypeMapEntry.2431_to = private unnamed_addr constant [38 x i8] c"android/graphics/ParcelableColorSpace\00", align 1 +@.TypeMapEntry.2432_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.Path+Direction, Mono.Android\00", align 1 +@.TypeMapEntry.2433_to = private unnamed_addr constant [32 x i8] c"android/graphics/Path$Direction\00", align 1 +@.TypeMapEntry.2434_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.Path+FillType, Mono.Android\00", align 1 +@.TypeMapEntry.2435_to = private unnamed_addr constant [31 x i8] c"android/graphics/Path$FillType\00", align 1 +@.TypeMapEntry.2436_from = private unnamed_addr constant [39 x i8] c"Android.Graphics.Path+Op, Mono.Android\00", align 1 +@.TypeMapEntry.2437_to = private unnamed_addr constant [25 x i8] c"android/graphics/Path$Op\00", align 1 +@.TypeMapEntry.2438_from = private unnamed_addr constant [36 x i8] c"Android.Graphics.Path, Mono.Android\00", align 1 +@.TypeMapEntry.2439_to = private unnamed_addr constant [22 x i8] c"android/graphics/Path\00", align 1 +@.TypeMapEntry.2440_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.PathDashPathEffect+Style, Mono.Android\00", align 1 +@.TypeMapEntry.2441_to = private unnamed_addr constant [42 x i8] c"android/graphics/PathDashPathEffect$Style\00", align 1 +@.TypeMapEntry.2442_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.PathDashPathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2443_to = private unnamed_addr constant [36 x i8] c"android/graphics/PathDashPathEffect\00", align 1 +@.TypeMapEntry.2444_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.PathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2445_to = private unnamed_addr constant [28 x i8] c"android/graphics/PathEffect\00", align 1 +@.TypeMapEntry.2446_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.PathIterator+Segment, Mono.Android\00", align 1 +@.TypeMapEntry.2447_to = private unnamed_addr constant [38 x i8] c"android/graphics/PathIterator$Segment\00", align 1 +@.TypeMapEntry.2448_from = private unnamed_addr constant [44 x i8] c"Android.Graphics.PathIterator, Mono.Android\00", align 1 +@.TypeMapEntry.2449_to = private unnamed_addr constant [30 x i8] c"android/graphics/PathIterator\00", align 1 +@.TypeMapEntry.2450_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.PathMeasure, Mono.Android\00", align 1 +@.TypeMapEntry.2451_to = private unnamed_addr constant [29 x i8] c"android/graphics/PathMeasure\00", align 1 +@.TypeMapEntry.2452_from = private unnamed_addr constant [78 x i8] c"Android.Graphics.Pdf.Content.PdfPageGotoLinkContent+Destination, Mono.Android\00", align 1 +@.TypeMapEntry.2453_to = private unnamed_addr constant [64 x i8] c"android/graphics/pdf/content/PdfPageGotoLinkContent$Destination\00", align 1 +@.TypeMapEntry.2454_from = private unnamed_addr constant [66 x i8] c"Android.Graphics.Pdf.Content.PdfPageGotoLinkContent, Mono.Android\00", align 1 +@.TypeMapEntry.2455_to = private unnamed_addr constant [52 x i8] c"android/graphics/pdf/content/PdfPageGotoLinkContent\00", align 1 +@.TypeMapEntry.2456_from = private unnamed_addr constant [63 x i8] c"Android.Graphics.Pdf.Content.PdfPageImageContent, Mono.Android\00", align 1 +@.TypeMapEntry.2457_to = private unnamed_addr constant [49 x i8] c"android/graphics/pdf/content/PdfPageImageContent\00", align 1 +@.TypeMapEntry.2458_from = private unnamed_addr constant [62 x i8] c"Android.Graphics.Pdf.Content.PdfPageLinkContent, Mono.Android\00", align 1 +@.TypeMapEntry.2459_to = private unnamed_addr constant [48 x i8] c"android/graphics/pdf/content/PdfPageLinkContent\00", align 1 +@.TypeMapEntry.2460_from = private unnamed_addr constant [62 x i8] c"Android.Graphics.Pdf.Content.PdfPageTextContent, Mono.Android\00", align 1 +@.TypeMapEntry.2461_to = private unnamed_addr constant [48 x i8] c"android/graphics/pdf/content/PdfPageTextContent\00", align 1 +@.TypeMapEntry.2462_from = private unnamed_addr constant [54 x i8] c"Android.Graphics.Pdf.LoadParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2463_to = private unnamed_addr constant [40 x i8] c"android/graphics/pdf/LoadParams$Builder\00", align 1 +@.TypeMapEntry.2464_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.Pdf.LoadParams, Mono.Android\00", align 1 +@.TypeMapEntry.2465_to = private unnamed_addr constant [32 x i8] c"android/graphics/pdf/LoadParams\00", align 1 +@.TypeMapEntry.2466_from = private unnamed_addr constant [65 x i8] c"Android.Graphics.Pdf.Models.FormEditRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2467_to = private unnamed_addr constant [51 x i8] c"android/graphics/pdf/models/FormEditRecord$Builder\00", align 1 +@.TypeMapEntry.2468_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Pdf.Models.FormEditRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2469_to = private unnamed_addr constant [43 x i8] c"android/graphics/pdf/models/FormEditRecord\00", align 1 +@.TypeMapEntry.2470_from = private unnamed_addr constant [65 x i8] c"Android.Graphics.Pdf.Models.FormWidgetInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2471_to = private unnamed_addr constant [51 x i8] c"android/graphics/pdf/models/FormWidgetInfo$Builder\00", align 1 +@.TypeMapEntry.2472_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Pdf.Models.FormWidgetInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2473_to = private unnamed_addr constant [43 x i8] c"android/graphics/pdf/models/FormWidgetInfo\00", align 1 +@.TypeMapEntry.2474_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.Pdf.Models.ListItem, Mono.Android\00", align 1 +@.TypeMapEntry.2475_to = private unnamed_addr constant [37 x i8] c"android/graphics/pdf/models/ListItem\00", align 1 +@.TypeMapEntry.2476_from = private unnamed_addr constant [58 x i8] c"Android.Graphics.Pdf.Models.PageMatchBounds, Mono.Android\00", align 1 +@.TypeMapEntry.2477_to = private unnamed_addr constant [44 x i8] c"android/graphics/pdf/models/PageMatchBounds\00", align 1 +@.TypeMapEntry.2478_from = private unnamed_addr constant [66 x i8] c"Android.Graphics.Pdf.Models.Selection.PageSelection, Mono.Android\00", align 1 +@.TypeMapEntry.2479_to = private unnamed_addr constant [52 x i8] c"android/graphics/pdf/models/selection/PageSelection\00", align 1 +@.TypeMapEntry.2480_from = private unnamed_addr constant [70 x i8] c"Android.Graphics.Pdf.Models.Selection.SelectionBoundary, Mono.Android\00", align 1 +@.TypeMapEntry.2481_to = private unnamed_addr constant [56 x i8] c"android/graphics/pdf/models/selection/SelectionBoundary\00", align 1 +@.TypeMapEntry.2482_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.Pdf.PdfDocument+Page, Mono.Android\00", align 1 +@.TypeMapEntry.2483_to = private unnamed_addr constant [38 x i8] c"android/graphics/pdf/PdfDocument$Page\00", align 1 +@.TypeMapEntry.2484_from = private unnamed_addr constant [64 x i8] c"Android.Graphics.Pdf.PdfDocument+PageInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2485_to = private unnamed_addr constant [50 x i8] c"android/graphics/pdf/PdfDocument$PageInfo$Builder\00", align 1 +@.TypeMapEntry.2486_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Pdf.PdfDocument+PageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2487_to = private unnamed_addr constant [42 x i8] c"android/graphics/pdf/PdfDocument$PageInfo\00", align 1 +@.TypeMapEntry.2488_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.Pdf.PdfDocument, Mono.Android\00", align 1 +@.TypeMapEntry.2489_to = private unnamed_addr constant [33 x i8] c"android/graphics/pdf/PdfDocument\00", align 1 +@.TypeMapEntry.2490_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.Pdf.PdfRenderer+Page, Mono.Android\00", align 1 +@.TypeMapEntry.2491_to = private unnamed_addr constant [38 x i8] c"android/graphics/pdf/PdfRenderer$Page\00", align 1 +@.TypeMapEntry.2492_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.Pdf.PdfRenderer, Mono.Android\00", align 1 +@.TypeMapEntry.2493_to = private unnamed_addr constant [33 x i8] c"android/graphics/pdf/PdfRenderer\00", align 1 +@.TypeMapEntry.2494_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Pdf.PdfRendererPreV+Page, Mono.Android\00", align 1 +@.TypeMapEntry.2495_to = private unnamed_addr constant [42 x i8] c"android/graphics/pdf/PdfRendererPreV$Page\00", align 1 +@.TypeMapEntry.2496_from = private unnamed_addr constant [51 x i8] c"Android.Graphics.Pdf.PdfRendererPreV, Mono.Android\00", align 1 +@.TypeMapEntry.2497_to = private unnamed_addr constant [37 x i8] c"android/graphics/pdf/PdfRendererPreV\00", align 1 +@.TypeMapEntry.2498_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Pdf.RenderParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2499_to = private unnamed_addr constant [42 x i8] c"android/graphics/pdf/RenderParams$Builder\00", align 1 +@.TypeMapEntry.2500_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.Pdf.RenderParams, Mono.Android\00", align 1 +@.TypeMapEntry.2501_to = private unnamed_addr constant [34 x i8] c"android/graphics/pdf/RenderParams\00", align 1 +@.TypeMapEntry.2502_from = private unnamed_addr constant [39 x i8] c"Android.Graphics.Picture, Mono.Android\00", align 1 +@.TypeMapEntry.2503_to = private unnamed_addr constant [25 x i8] c"android/graphics/Picture\00", align 1 +@.TypeMapEntry.2504_from = private unnamed_addr constant [43 x i8] c"Android.Graphics.PixelFormat, Mono.Android\00", align 1 +@.TypeMapEntry.2505_to = private unnamed_addr constant [29 x i8] c"android/graphics/PixelFormat\00", align 1 +@.TypeMapEntry.2506_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.PixelXorXfermode, Mono.Android\00", align 1 +@.TypeMapEntry.2507_to = private unnamed_addr constant [34 x i8] c"android/graphics/PixelXorXfermode\00", align 1 +@.TypeMapEntry.2508_from = private unnamed_addr constant [37 x i8] c"Android.Graphics.Point, Mono.Android\00", align 1 +@.TypeMapEntry.2509_to = private unnamed_addr constant [23 x i8] c"android/graphics/Point\00", align 1 +@.TypeMapEntry.2510_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.PointF, Mono.Android\00", align 1 +@.TypeMapEntry.2511_to = private unnamed_addr constant [24 x i8] c"android/graphics/PointF\00", align 1 +@.TypeMapEntry.2512_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.PorterDuff+Mode, Mono.Android\00", align 1 +@.TypeMapEntry.2513_to = private unnamed_addr constant [33 x i8] c"android/graphics/PorterDuff$Mode\00", align 1 +@.TypeMapEntry.2514_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.PorterDuff, Mono.Android\00", align 1 +@.TypeMapEntry.2515_to = private unnamed_addr constant [28 x i8] c"android/graphics/PorterDuff\00", align 1 +@.TypeMapEntry.2516_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.PorterDuffColorFilter, Mono.Android\00", align 1 +@.TypeMapEntry.2517_to = private unnamed_addr constant [39 x i8] c"android/graphics/PorterDuffColorFilter\00", align 1 +@.TypeMapEntry.2518_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.PorterDuffXfermode, Mono.Android\00", align 1 +@.TypeMapEntry.2519_to = private unnamed_addr constant [36 x i8] c"android/graphics/PorterDuffXfermode\00", align 1 +@.TypeMapEntry.2520_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.RadialGradient, Mono.Android\00", align 1 +@.TypeMapEntry.2521_to = private unnamed_addr constant [32 x i8] c"android/graphics/RadialGradient\00", align 1 +@.TypeMapEntry.2522_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.Rasterizer, Mono.Android\00", align 1 +@.TypeMapEntry.2523_to = private unnamed_addr constant [28 x i8] c"android/graphics/Rasterizer\00", align 1 +@.TypeMapEntry.2524_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.RecordingCanvas, Mono.Android\00", align 1 +@.TypeMapEntry.2525_to = private unnamed_addr constant [33 x i8] c"android/graphics/RecordingCanvas\00", align 1 +@.TypeMapEntry.2526_from = private unnamed_addr constant [36 x i8] c"Android.Graphics.Rect, Mono.Android\00", align 1 +@.TypeMapEntry.2527_to = private unnamed_addr constant [22 x i8] c"android/graphics/Rect\00", align 1 +@.TypeMapEntry.2528_from = private unnamed_addr constant [37 x i8] c"Android.Graphics.RectF, Mono.Android\00", align 1 +@.TypeMapEntry.2529_to = private unnamed_addr constant [23 x i8] c"android/graphics/RectF\00", align 1 +@.TypeMapEntry.2530_from = private unnamed_addr constant [41 x i8] c"Android.Graphics.Region+Op, Mono.Android\00", align 1 +@.TypeMapEntry.2531_to = private unnamed_addr constant [27 x i8] c"android/graphics/Region$Op\00", align 1 +@.TypeMapEntry.2532_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Region, Mono.Android\00", align 1 +@.TypeMapEntry.2533_to = private unnamed_addr constant [24 x i8] c"android/graphics/Region\00", align 1 +@.TypeMapEntry.2534_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.RegionIterator, Mono.Android\00", align 1 +@.TypeMapEntry.2535_to = private unnamed_addr constant [32 x i8] c"android/graphics/RegionIterator\00", align 1 +@.TypeMapEntry.2536_from = private unnamed_addr constant [44 x i8] c"Android.Graphics.RenderEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2537_to = private unnamed_addr constant [30 x i8] c"android/graphics/RenderEffect\00", align 1 +@.TypeMapEntry.2538_from = private unnamed_addr constant [42 x i8] c"Android.Graphics.RenderNode, Mono.Android\00", align 1 +@.TypeMapEntry.2539_to = private unnamed_addr constant [28 x i8] c"android/graphics/RenderNode\00", align 1 +@.TypeMapEntry.2540_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.RuntimeShader, Mono.Android\00", align 1 +@.TypeMapEntry.2541_to = private unnamed_addr constant [31 x i8] c"android/graphics/RuntimeShader\00", align 1 +@.TypeMapEntry.2542_from = private unnamed_addr constant [47 x i8] c"Android.Graphics.Shader+TileMode, Mono.Android\00", align 1 +@.TypeMapEntry.2543_to = private unnamed_addr constant [33 x i8] c"android/graphics/Shader$TileMode\00", align 1 +@.TypeMapEntry.2544_from = private unnamed_addr constant [38 x i8] c"Android.Graphics.Shader, Mono.Android\00", align 1 +@.TypeMapEntry.2545_to = private unnamed_addr constant [24 x i8] c"android/graphics/Shader\00", align 1 +@.TypeMapEntry.2546_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.SumPathEffect, Mono.Android\00", align 1 +@.TypeMapEntry.2547_to = private unnamed_addr constant [31 x i8] c"android/graphics/SumPathEffect\00", align 1 +@.TypeMapEntry.2548_from = private unnamed_addr constant [72 x i8] c"Android.Graphics.SurfaceTexture+IOnFrameAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.2549_to = private unnamed_addr constant [57 x i8] c"android/graphics/SurfaceTexture$OnFrameAvailableListener\00", align 1 +@.TypeMapEntry.2550_from = private unnamed_addr constant [83 x i8] c"Android.Graphics.SurfaceTexture+IOnFrameAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2551_to = private unnamed_addr constant [73 x i8] c"mono/android/graphics/SurfaceTexture_OnFrameAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.2552_from = private unnamed_addr constant [79 x i8] c"Android.Graphics.SurfaceTexture+IOnFrameAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2553_from = private unnamed_addr constant [70 x i8] c"Android.Graphics.SurfaceTexture+OutOfResourcesException, Mono.Android\00", align 1 +@.TypeMapEntry.2554_to = private unnamed_addr constant [56 x i8] c"android/graphics/SurfaceTexture$OutOfResourcesException\00", align 1 +@.TypeMapEntry.2555_from = private unnamed_addr constant [46 x i8] c"Android.Graphics.SurfaceTexture, Mono.Android\00", align 1 +@.TypeMapEntry.2556_to = private unnamed_addr constant [32 x i8] c"android/graphics/SurfaceTexture\00", align 1 +@.TypeMapEntry.2557_from = private unnamed_addr constant [45 x i8] c"Android.Graphics.SweepGradient, Mono.Android\00", align 1 +@.TypeMapEntry.2558_to = private unnamed_addr constant [31 x i8] c"android/graphics/SweepGradient\00", align 1 +@.TypeMapEntry.2559_from = private unnamed_addr constant [60 x i8] c"Android.Graphics.Text.LineBreakConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2560_to = private unnamed_addr constant [46 x i8] c"android/graphics/text/LineBreakConfig$Builder\00", align 1 +@.TypeMapEntry.2561_from = private unnamed_addr constant [52 x i8] c"Android.Graphics.Text.LineBreakConfig, Mono.Android\00", align 1 +@.TypeMapEntry.2562_to = private unnamed_addr constant [38 x i8] c"android/graphics/text/LineBreakConfig\00", align 1 +@.TypeMapEntry.2563_from = private unnamed_addr constant [56 x i8] c"Android.Graphics.Text.LineBreaker+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2564_to = private unnamed_addr constant [42 x i8] c"android/graphics/text/LineBreaker$Builder\00", align 1 +@.TypeMapEntry.2565_from = private unnamed_addr constant [69 x i8] c"Android.Graphics.Text.LineBreaker+ParagraphConstraints, Mono.Android\00", align 1 +@.TypeMapEntry.2566_to = private unnamed_addr constant [55 x i8] c"android/graphics/text/LineBreaker$ParagraphConstraints\00", align 1 +@.TypeMapEntry.2567_from = private unnamed_addr constant [55 x i8] c"Android.Graphics.Text.LineBreaker+Result, Mono.Android\00", align 1 +@.TypeMapEntry.2568_to = private unnamed_addr constant [41 x i8] c"android/graphics/text/LineBreaker$Result\00", align 1 +@.TypeMapEntry.2569_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.Text.LineBreaker, Mono.Android\00", align 1 +@.TypeMapEntry.2570_to = private unnamed_addr constant [34 x i8] c"android/graphics/text/LineBreaker\00", align 1 +@.TypeMapEntry.2571_from = private unnamed_addr constant [57 x i8] c"Android.Graphics.Text.MeasuredText+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2572_to = private unnamed_addr constant [43 x i8] c"android/graphics/text/MeasuredText$Builder\00", align 1 +@.TypeMapEntry.2573_from = private unnamed_addr constant [49 x i8] c"Android.Graphics.Text.MeasuredText, Mono.Android\00", align 1 +@.TypeMapEntry.2574_to = private unnamed_addr constant [35 x i8] c"android/graphics/text/MeasuredText\00", align 1 +@.TypeMapEntry.2575_from = private unnamed_addr constant [53 x i8] c"Android.Graphics.Text.PositionedGlyphs, Mono.Android\00", align 1 +@.TypeMapEntry.2576_to = private unnamed_addr constant [39 x i8] c"android/graphics/text/PositionedGlyphs\00", align 1 +@.TypeMapEntry.2577_from = private unnamed_addr constant [50 x i8] c"Android.Graphics.Text.TextRunShaper, Mono.Android\00", align 1 +@.TypeMapEntry.2578_to = private unnamed_addr constant [36 x i8] c"android/graphics/text/TextRunShaper\00", align 1 +@.TypeMapEntry.2579_from = private unnamed_addr constant [48 x i8] c"Android.Graphics.Typeface+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2580_to = private unnamed_addr constant [34 x i8] c"android/graphics/Typeface$Builder\00", align 1 +@.TypeMapEntry.2581_from = private unnamed_addr constant [62 x i8] c"Android.Graphics.Typeface+CustomFallbackBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.2582_to = private unnamed_addr constant [48 x i8] c"android/graphics/Typeface$CustomFallbackBuilder\00", align 1 +@.TypeMapEntry.2583_from = private unnamed_addr constant [40 x i8] c"Android.Graphics.Typeface, Mono.Android\00", align 1 +@.TypeMapEntry.2584_to = private unnamed_addr constant [26 x i8] c"android/graphics/Typeface\00", align 1 +@.TypeMapEntry.2585_from = private unnamed_addr constant [40 x i8] c"Android.Graphics.Xfermode, Mono.Android\00", align 1 +@.TypeMapEntry.2586_to = private unnamed_addr constant [26 x i8] c"android/graphics/Xfermode\00", align 1 +@.TypeMapEntry.2587_from = private unnamed_addr constant [40 x i8] c"Android.Graphics.YuvImage, Mono.Android\00", align 1 +@.TypeMapEntry.2588_to = private unnamed_addr constant [26 x i8] c"android/graphics/YuvImage\00", align 1 +@.TypeMapEntry.2589_from = private unnamed_addr constant [44 x i8] c"Android.Hardware.BatteryState, Mono.Android\00", align 1 +@.TypeMapEntry.2590_to = private unnamed_addr constant [30 x i8] c"android/hardware/BatteryState\00", align 1 +@.TypeMapEntry.2591_from = private unnamed_addr constant [51 x i8] c"Android.Hardware.BatteryStateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2592_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Biometrics.BiometricManager+Strings, Mono.Android\00", align 1 +@.TypeMapEntry.2593_to = private unnamed_addr constant [53 x i8] c"android/hardware/biometrics/BiometricManager$Strings\00", align 1 +@.TypeMapEntry.2594_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.Biometrics.BiometricManager, Mono.Android\00", align 1 +@.TypeMapEntry.2595_to = private unnamed_addr constant [45 x i8] c"android/hardware/biometrics/BiometricManager\00", align 1 +@.TypeMapEntry.2596_from = private unnamed_addr constant [81 x i8] c"Android.Hardware.Biometrics.BiometricPrompt+AuthenticationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2597_to = private unnamed_addr constant [67 x i8] c"android/hardware/biometrics/BiometricPrompt$AuthenticationCallback\00", align 1 +@.TypeMapEntry.2598_from = private unnamed_addr constant [88 x i8] c"Android.Hardware.Biometrics.BiometricPrompt+AuthenticationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2599_from = private unnamed_addr constant [79 x i8] c"Android.Hardware.Biometrics.BiometricPrompt+AuthenticationResult, Mono.Android\00", align 1 +@.TypeMapEntry.2600_to = private unnamed_addr constant [65 x i8] c"android/hardware/biometrics/BiometricPrompt$AuthenticationResult\00", align 1 +@.TypeMapEntry.2601_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Biometrics.BiometricPrompt+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2602_to = private unnamed_addr constant [52 x i8] c"android/hardware/biometrics/BiometricPrompt$Builder\00", align 1 +@.TypeMapEntry.2603_from = private unnamed_addr constant [71 x i8] c"Android.Hardware.Biometrics.BiometricPrompt+CryptoObject, Mono.Android\00", align 1 +@.TypeMapEntry.2604_to = private unnamed_addr constant [57 x i8] c"android/hardware/biometrics/BiometricPrompt$CryptoObject\00", align 1 +@.TypeMapEntry.2605_from = private unnamed_addr constant [58 x i8] c"Android.Hardware.Biometrics.BiometricPrompt, Mono.Android\00", align 1 +@.TypeMapEntry.2606_to = private unnamed_addr constant [44 x i8] c"android/hardware/biometrics/BiometricPrompt\00", align 1 +@.TypeMapEntry.2607_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Biometrics.IPromptContentItem, Mono.Android\00", align 1 +@.TypeMapEntry.2608_to = private unnamed_addr constant [46 x i8] c"android/hardware/biometrics/PromptContentItem\00", align 1 +@.TypeMapEntry.2609_from = private unnamed_addr constant [68 x i8] c"Android.Hardware.Biometrics.IPromptContentItemInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2610_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Biometrics.IPromptContentView, Mono.Android\00", align 1 +@.TypeMapEntry.2611_to = private unnamed_addr constant [46 x i8] c"android/hardware/biometrics/PromptContentView\00", align 1 +@.TypeMapEntry.2612_from = private unnamed_addr constant [68 x i8] c"Android.Hardware.Biometrics.IPromptContentViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2613_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Biometrics.PromptContentItemBulletedText, Mono.Android\00", align 1 +@.TypeMapEntry.2614_to = private unnamed_addr constant [58 x i8] c"android/hardware/biometrics/PromptContentItemBulletedText\00", align 1 +@.TypeMapEntry.2615_from = private unnamed_addr constant [69 x i8] c"Android.Hardware.Biometrics.PromptContentItemPlainText, Mono.Android\00", align 1 +@.TypeMapEntry.2616_to = private unnamed_addr constant [55 x i8] c"android/hardware/biometrics/PromptContentItemPlainText\00", align 1 +@.TypeMapEntry.2617_from = private unnamed_addr constant [89 x i8] c"Android.Hardware.Biometrics.PromptContentViewWithMoreOptionsButton+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2618_to = private unnamed_addr constant [75 x i8] c"android/hardware/biometrics/PromptContentViewWithMoreOptionsButton$Builder\00", align 1 +@.TypeMapEntry.2619_from = private unnamed_addr constant [81 x i8] c"Android.Hardware.Biometrics.PromptContentViewWithMoreOptionsButton, Mono.Android\00", align 1 +@.TypeMapEntry.2620_to = private unnamed_addr constant [67 x i8] c"android/hardware/biometrics/PromptContentViewWithMoreOptionsButton\00", align 1 +@.TypeMapEntry.2621_from = private unnamed_addr constant [80 x i8] c"Android.Hardware.Biometrics.PromptVerticalListContentView+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2622_to = private unnamed_addr constant [66 x i8] c"android/hardware/biometrics/PromptVerticalListContentView$Builder\00", align 1 +@.TypeMapEntry.2623_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Biometrics.PromptVerticalListContentView, Mono.Android\00", align 1 +@.TypeMapEntry.2624_to = private unnamed_addr constant [58 x i8] c"android/hardware/biometrics/PromptVerticalListContentView\00", align 1 +@.TypeMapEntry.2625_from = private unnamed_addr constant [43 x i8] c"Android.Hardware.Camera+Area, Mono.Android\00", align 1 +@.TypeMapEntry.2626_to = private unnamed_addr constant [29 x i8] c"android/hardware/Camera$Area\00", align 1 +@.TypeMapEntry.2627_from = private unnamed_addr constant [49 x i8] c"Android.Hardware.Camera+CameraInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2628_to = private unnamed_addr constant [35 x i8] c"android/hardware/Camera$CameraInfo\00", align 1 +@.TypeMapEntry.2629_from = private unnamed_addr constant [43 x i8] c"Android.Hardware.Camera+Face, Mono.Android\00", align 1 +@.TypeMapEntry.2630_to = private unnamed_addr constant [29 x i8] c"android/hardware/Camera$Face\00", align 1 +@.TypeMapEntry.2631_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Camera+IAutoFocusCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2632_to = private unnamed_addr constant [42 x i8] c"android/hardware/Camera$AutoFocusCallback\00", align 1 +@.TypeMapEntry.2633_from = private unnamed_addr constant [64 x i8] c"Android.Hardware.Camera+IAutoFocusCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2634_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera+IAutoFocusMoveCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2635_to = private unnamed_addr constant [46 x i8] c"android/hardware/Camera$AutoFocusMoveCallback\00", align 1 +@.TypeMapEntry.2636_from = private unnamed_addr constant [68 x i8] c"Android.Hardware.Camera+IAutoFocusMoveCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2637_from = private unnamed_addr constant [53 x i8] c"Android.Hardware.Camera+IErrorCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2638_to = private unnamed_addr constant [38 x i8] c"android/hardware/Camera$ErrorCallback\00", align 1 +@.TypeMapEntry.2639_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Camera+IErrorCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2640_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera+IFaceDetectionListener, Mono.Android\00", align 1 +@.TypeMapEntry.2641_to = private unnamed_addr constant [46 x i8] c"android/hardware/Camera$FaceDetectionListener\00", align 1 +@.TypeMapEntry.2642_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Camera+IFaceDetectionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2643_to = private unnamed_addr constant [62 x i8] c"mono/android/hardware/Camera_FaceDetectionListenerImplementor\00", align 1 +@.TypeMapEntry.2644_from = private unnamed_addr constant [68 x i8] c"Android.Hardware.Camera+IFaceDetectionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2645_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Camera+IOnZoomChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.2646_to = private unnamed_addr constant [45 x i8] c"android/hardware/Camera$OnZoomChangeListener\00", align 1 +@.TypeMapEntry.2647_from = private unnamed_addr constant [71 x i8] c"Android.Hardware.Camera+IOnZoomChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2648_to = private unnamed_addr constant [61 x i8] c"mono/android/hardware/Camera_OnZoomChangeListenerImplementor\00", align 1 +@.TypeMapEntry.2649_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera+IOnZoomChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2650_from = private unnamed_addr constant [55 x i8] c"Android.Hardware.Camera+IPictureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2651_to = private unnamed_addr constant [40 x i8] c"android/hardware/Camera$PictureCallback\00", align 1 +@.TypeMapEntry.2652_from = private unnamed_addr constant [62 x i8] c"Android.Hardware.Camera+IPictureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2653_from = private unnamed_addr constant [55 x i8] c"Android.Hardware.Camera+IPreviewCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2654_to = private unnamed_addr constant [40 x i8] c"android/hardware/Camera$PreviewCallback\00", align 1 +@.TypeMapEntry.2655_from = private unnamed_addr constant [62 x i8] c"Android.Hardware.Camera+IPreviewCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2656_from = private unnamed_addr constant [55 x i8] c"Android.Hardware.Camera+IShutterCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2657_to = private unnamed_addr constant [40 x i8] c"android/hardware/Camera$ShutterCallback\00", align 1 +@.TypeMapEntry.2658_from = private unnamed_addr constant [62 x i8] c"Android.Hardware.Camera+IShutterCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2659_from = private unnamed_addr constant [49 x i8] c"Android.Hardware.Camera+Parameters, Mono.Android\00", align 1 +@.TypeMapEntry.2660_to = private unnamed_addr constant [35 x i8] c"android/hardware/Camera$Parameters\00", align 1 +@.TypeMapEntry.2661_from = private unnamed_addr constant [43 x i8] c"Android.Hardware.Camera+Size, Mono.Android\00", align 1 +@.TypeMapEntry.2662_to = private unnamed_addr constant [29 x i8] c"android/hardware/Camera$Size\00", align 1 +@.TypeMapEntry.2663_from = private unnamed_addr constant [38 x i8] c"Android.Hardware.Camera, Mono.Android\00", align 1 +@.TypeMapEntry.2664_to = private unnamed_addr constant [24 x i8] c"android/hardware/Camera\00", align 1 +@.TypeMapEntry.2665_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera2.CameraAccessException, Mono.Android\00", align 1 +@.TypeMapEntry.2666_to = private unnamed_addr constant [47 x i8] c"android/hardware/camera2/CameraAccessException\00", align 1 +@.TypeMapEntry.2667_from = private unnamed_addr constant [76 x i8] c"Android.Hardware.Camera2.CameraCaptureSession+CaptureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2668_to = private unnamed_addr constant [62 x i8] c"android/hardware/camera2/CameraCaptureSession$CaptureCallback\00", align 1 +@.TypeMapEntry.2669_from = private unnamed_addr constant [83 x i8] c"Android.Hardware.Camera2.CameraCaptureSession+CaptureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2670_from = private unnamed_addr constant [74 x i8] c"Android.Hardware.Camera2.CameraCaptureSession+StateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2671_to = private unnamed_addr constant [60 x i8] c"android/hardware/camera2/CameraCaptureSession$StateCallback\00", align 1 +@.TypeMapEntry.2672_from = private unnamed_addr constant [81 x i8] c"Android.Hardware.Camera2.CameraCaptureSession+StateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2673_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Camera2.CameraCaptureSession, Mono.Android\00", align 1 +@.TypeMapEntry.2674_to = private unnamed_addr constant [46 x i8] c"android/hardware/camera2/CameraCaptureSession\00", align 1 +@.TypeMapEntry.2675_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.CameraCaptureSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2676_from = private unnamed_addr constant [65 x i8] c"Android.Hardware.Camera2.CameraCharacteristics+Key, Mono.Android\00", align 1 +@.TypeMapEntry.2677_to = private unnamed_addr constant [51 x i8] c"android/hardware/camera2/CameraCharacteristics$Key\00", align 1 +@.TypeMapEntry.2678_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera2.CameraCharacteristics, Mono.Android\00", align 1 +@.TypeMapEntry.2679_to = private unnamed_addr constant [47 x i8] c"android/hardware/camera2/CameraCharacteristics\00", align 1 +@.TypeMapEntry.2680_from = private unnamed_addr constant [80 x i8] c"Android.Hardware.Camera2.CameraConstrainedHighSpeedCaptureSession, Mono.Android\00", align 1 +@.TypeMapEntry.2681_to = private unnamed_addr constant [66 x i8] c"android/hardware/camera2/CameraConstrainedHighSpeedCaptureSession\00", align 1 +@.TypeMapEntry.2682_from = private unnamed_addr constant [87 x i8] c"Android.Hardware.Camera2.CameraConstrainedHighSpeedCaptureSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2683_from = private unnamed_addr constant [70 x i8] c"Android.Hardware.Camera2.CameraDevice+CameraDeviceSetup, Mono.Android\00", align 1 +@.TypeMapEntry.2684_to = private unnamed_addr constant [56 x i8] c"android/hardware/camera2/CameraDevice$CameraDeviceSetup\00", align 1 +@.TypeMapEntry.2685_from = private unnamed_addr constant [77 x i8] c"Android.Hardware.Camera2.CameraDevice+CameraDeviceSetupInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2686_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Camera2.CameraDevice+StateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2687_to = private unnamed_addr constant [52 x i8] c"android/hardware/camera2/CameraDevice$StateCallback\00", align 1 +@.TypeMapEntry.2688_from = private unnamed_addr constant [73 x i8] c"Android.Hardware.Camera2.CameraDevice+StateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2689_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.Camera2.CameraDevice, Mono.Android\00", align 1 +@.TypeMapEntry.2690_to = private unnamed_addr constant [38 x i8] c"android/hardware/camera2/CameraDevice\00", align 1 +@.TypeMapEntry.2691_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.Camera2.CameraDeviceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2692_from = private unnamed_addr constant [70 x i8] c"Android.Hardware.Camera2.CameraExtensionCharacteristics, Mono.Android\00", align 1 +@.TypeMapEntry.2693_to = private unnamed_addr constant [56 x i8] c"android/hardware/camera2/CameraExtensionCharacteristics\00", align 1 +@.TypeMapEntry.2694_from = private unnamed_addr constant [87 x i8] c"Android.Hardware.Camera2.CameraExtensionSession+ExtensionCaptureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2695_to = private unnamed_addr constant [73 x i8] c"android/hardware/camera2/CameraExtensionSession$ExtensionCaptureCallback\00", align 1 +@.TypeMapEntry.2696_from = private unnamed_addr constant [94 x i8] c"Android.Hardware.Camera2.CameraExtensionSession+ExtensionCaptureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2697_from = private unnamed_addr constant [76 x i8] c"Android.Hardware.Camera2.CameraExtensionSession+StateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2698_to = private unnamed_addr constant [62 x i8] c"android/hardware/camera2/CameraExtensionSession$StateCallback\00", align 1 +@.TypeMapEntry.2699_from = private unnamed_addr constant [83 x i8] c"Android.Hardware.Camera2.CameraExtensionSession+StateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2700_from = private unnamed_addr constant [82 x i8] c"Android.Hardware.Camera2.CameraExtensionSession+StillCaptureLatency, Mono.Android\00", align 1 +@.TypeMapEntry.2701_to = private unnamed_addr constant [68 x i8] c"android/hardware/camera2/CameraExtensionSession$StillCaptureLatency\00", align 1 +@.TypeMapEntry.2702_from = private unnamed_addr constant [62 x i8] c"Android.Hardware.Camera2.CameraExtensionSession, Mono.Android\00", align 1 +@.TypeMapEntry.2703_to = private unnamed_addr constant [48 x i8] c"android/hardware/camera2/CameraExtensionSession\00", align 1 +@.TypeMapEntry.2704_from = private unnamed_addr constant [69 x i8] c"Android.Hardware.Camera2.CameraExtensionSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2705_from = private unnamed_addr constant [74 x i8] c"Android.Hardware.Camera2.CameraManager+AvailabilityCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2706_to = private unnamed_addr constant [60 x i8] c"android/hardware/camera2/CameraManager$AvailabilityCallback\00", align 1 +@.TypeMapEntry.2707_from = private unnamed_addr constant [81 x i8] c"Android.Hardware.Camera2.CameraManager+AvailabilityCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2708_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.CameraManager+TorchCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2709_to = private unnamed_addr constant [53 x i8] c"android/hardware/camera2/CameraManager$TorchCallback\00", align 1 +@.TypeMapEntry.2710_from = private unnamed_addr constant [74 x i8] c"Android.Hardware.Camera2.CameraManager+TorchCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2711_from = private unnamed_addr constant [53 x i8] c"Android.Hardware.Camera2.CameraManager, Mono.Android\00", align 1 +@.TypeMapEntry.2712_to = private unnamed_addr constant [39 x i8] c"android/hardware/camera2/CameraManager\00", align 1 +@.TypeMapEntry.2713_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.Camera2.CameraMetadata, Mono.Android\00", align 1 +@.TypeMapEntry.2714_to = private unnamed_addr constant [40 x i8] c"android/hardware/camera2/CameraMetadata\00", align 1 +@.TypeMapEntry.2715_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera2.CameraMetadataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2716_from = private unnamed_addr constant [89 x i8] c"Android.Hardware.Camera2.CameraOfflineSession+CameraOfflineSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2717_to = private unnamed_addr constant [75 x i8] c"android/hardware/camera2/CameraOfflineSession$CameraOfflineSessionCallback\00", align 1 +@.TypeMapEntry.2718_from = private unnamed_addr constant [96 x i8] c"Android.Hardware.Camera2.CameraOfflineSession+CameraOfflineSessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2719_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Camera2.CameraOfflineSession, Mono.Android\00", align 1 +@.TypeMapEntry.2720_to = private unnamed_addr constant [46 x i8] c"android/hardware/camera2/CameraOfflineSession\00", align 1 +@.TypeMapEntry.2721_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.CameraOfflineSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2722_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.Camera2.CaptureFailure, Mono.Android\00", align 1 +@.TypeMapEntry.2723_to = private unnamed_addr constant [40 x i8] c"android/hardware/camera2/CaptureFailure\00", align 1 +@.TypeMapEntry.2724_from = private unnamed_addr constant [62 x i8] c"Android.Hardware.Camera2.CaptureRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2725_to = private unnamed_addr constant [48 x i8] c"android/hardware/camera2/CaptureRequest$Builder\00", align 1 +@.TypeMapEntry.2726_from = private unnamed_addr constant [58 x i8] c"Android.Hardware.Camera2.CaptureRequest+Key, Mono.Android\00", align 1 +@.TypeMapEntry.2727_to = private unnamed_addr constant [44 x i8] c"android/hardware/camera2/CaptureRequest$Key\00", align 1 +@.TypeMapEntry.2728_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.Camera2.CaptureRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2729_to = private unnamed_addr constant [40 x i8] c"android/hardware/camera2/CaptureRequest\00", align 1 +@.TypeMapEntry.2730_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Camera2.CaptureResult+Key, Mono.Android\00", align 1 +@.TypeMapEntry.2731_to = private unnamed_addr constant [43 x i8] c"android/hardware/camera2/CaptureResult$Key\00", align 1 +@.TypeMapEntry.2732_from = private unnamed_addr constant [53 x i8] c"Android.Hardware.Camera2.CaptureResult, Mono.Android\00", align 1 +@.TypeMapEntry.2733_to = private unnamed_addr constant [39 x i8] c"android/hardware/camera2/CaptureResult\00", align 1 +@.TypeMapEntry.2734_from = private unnamed_addr constant [50 x i8] c"Android.Hardware.Camera2.DngCreator, Mono.Android\00", align 1 +@.TypeMapEntry.2735_to = private unnamed_addr constant [36 x i8] c"android/hardware/camera2/DngCreator\00", align 1 +@.TypeMapEntry.2736_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Camera2.MultiResolutionImageReader, Mono.Android\00", align 1 +@.TypeMapEntry.2737_to = private unnamed_addr constant [52 x i8] c"android/hardware/camera2/MultiResolutionImageReader\00", align 1 +@.TypeMapEntry.2738_from = private unnamed_addr constant [64 x i8] c"Android.Hardware.Camera2.Params.BlackLevelPattern, Mono.Android\00", align 1 +@.TypeMapEntry.2739_to = private unnamed_addr constant [50 x i8] c"android/hardware/camera2/params/BlackLevelPattern\00", align 1 +@.TypeMapEntry.2740_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Camera2.Params.Capability, Mono.Android\00", align 1 +@.TypeMapEntry.2741_to = private unnamed_addr constant [43 x i8] c"android/hardware/camera2/params/Capability\00", align 1 +@.TypeMapEntry.2742_from = private unnamed_addr constant [65 x i8] c"Android.Hardware.Camera2.Params.ColorSpaceProfiles, Mono.Android\00", align 1 +@.TypeMapEntry.2743_to = private unnamed_addr constant [51 x i8] c"android/hardware/camera2/params/ColorSpaceProfiles\00", align 1 +@.TypeMapEntry.2744_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Camera2.Params.ColorSpaceTransform, Mono.Android\00", align 1 +@.TypeMapEntry.2745_to = private unnamed_addr constant [52 x i8] c"android/hardware/camera2/params/ColorSpaceTransform\00", align 1 +@.TypeMapEntry.2746_from = private unnamed_addr constant [86 x i8] c"Android.Hardware.Camera2.Params.DeviceStateSensorOrientationMap+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2747_to = private unnamed_addr constant [72 x i8] c"android/hardware/camera2/params/DeviceStateSensorOrientationMap$Builder\00", align 1 +@.TypeMapEntry.2748_from = private unnamed_addr constant [78 x i8] c"Android.Hardware.Camera2.Params.DeviceStateSensorOrientationMap, Mono.Android\00", align 1 +@.TypeMapEntry.2749_to = private unnamed_addr constant [64 x i8] c"android/hardware/camera2/params/DeviceStateSensorOrientationMap\00", align 1 +@.TypeMapEntry.2750_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.Params.DynamicRangeProfiles, Mono.Android\00", align 1 +@.TypeMapEntry.2751_to = private unnamed_addr constant [53 x i8] c"android/hardware/camera2/params/DynamicRangeProfiles\00", align 1 +@.TypeMapEntry.2752_from = private unnamed_addr constant [76 x i8] c"Android.Hardware.Camera2.Params.ExtensionSessionConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.2753_to = private unnamed_addr constant [62 x i8] c"android/hardware/camera2/params/ExtensionSessionConfiguration\00", align 1 +@.TypeMapEntry.2754_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.Camera2.Params.Face+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2755_to = private unnamed_addr constant [45 x i8] c"android/hardware/camera2/params/Face$Builder\00", align 1 +@.TypeMapEntry.2756_from = private unnamed_addr constant [51 x i8] c"Android.Hardware.Camera2.Params.Face, Mono.Android\00", align 1 +@.TypeMapEntry.2757_to = private unnamed_addr constant [37 x i8] c"android/hardware/camera2/params/Face\00", align 1 +@.TypeMapEntry.2758_from = private unnamed_addr constant [65 x i8] c"Android.Hardware.Camera2.Params.InputConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.2759_to = private unnamed_addr constant [51 x i8] c"android/hardware/camera2/params/InputConfiguration\00", align 1 +@.TypeMapEntry.2760_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.Params.LensIntrinsicsSample, Mono.Android\00", align 1 +@.TypeMapEntry.2761_to = private unnamed_addr constant [53 x i8] c"android/hardware/camera2/params/LensIntrinsicsSample\00", align 1 +@.TypeMapEntry.2762_from = private unnamed_addr constant [61 x i8] c"Android.Hardware.Camera2.Params.LensShadingMap, Mono.Android\00", align 1 +@.TypeMapEntry.2763_to = private unnamed_addr constant [47 x i8] c"android/hardware/camera2/params/LensShadingMap\00", align 1 +@.TypeMapEntry.2764_from = private unnamed_addr constant [100 x i8] c"Android.Hardware.Camera2.Params.MandatoryStreamCombination+MandatoryStreamInformation, Mono.Android\00", align 1 +@.TypeMapEntry.2765_to = private unnamed_addr constant [86 x i8] c"android/hardware/camera2/params/MandatoryStreamCombination$MandatoryStreamInformation\00", align 1 +@.TypeMapEntry.2766_from = private unnamed_addr constant [73 x i8] c"Android.Hardware.Camera2.Params.MandatoryStreamCombination, Mono.Android\00", align 1 +@.TypeMapEntry.2767_to = private unnamed_addr constant [59 x i8] c"android/hardware/camera2/params/MandatoryStreamCombination\00", align 1 +@.TypeMapEntry.2768_from = private unnamed_addr constant [64 x i8] c"Android.Hardware.Camera2.Params.MeteringRectangle, Mono.Android\00", align 1 +@.TypeMapEntry.2769_to = private unnamed_addr constant [50 x i8] c"android/hardware/camera2/params/MeteringRectangle\00", align 1 +@.TypeMapEntry.2770_from = private unnamed_addr constant [84 x i8] c"Android.Hardware.Camera2.Params.MultiResolutionStreamConfigurationMap, Mono.Android\00", align 1 +@.TypeMapEntry.2771_to = private unnamed_addr constant [70 x i8] c"android/hardware/camera2/params/MultiResolutionStreamConfigurationMap\00", align 1 +@.TypeMapEntry.2772_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Camera2.Params.MultiResolutionStreamInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2773_to = private unnamed_addr constant [58 x i8] c"android/hardware/camera2/params/MultiResolutionStreamInfo\00", align 1 +@.TypeMapEntry.2774_from = private unnamed_addr constant [56 x i8] c"Android.Hardware.Camera2.Params.OisSample, Mono.Android\00", align 1 +@.TypeMapEntry.2775_to = private unnamed_addr constant [42 x i8] c"android/hardware/camera2/params/OisSample\00", align 1 +@.TypeMapEntry.2776_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Camera2.Params.OutputConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.2777_to = private unnamed_addr constant [52 x i8] c"android/hardware/camera2/params/OutputConfiguration\00", align 1 +@.TypeMapEntry.2778_from = private unnamed_addr constant [80 x i8] c"Android.Hardware.Camera2.Params.RecommendedStreamConfigurationMap, Mono.Android\00", align 1 +@.TypeMapEntry.2779_to = private unnamed_addr constant [66 x i8] c"android/hardware/camera2/params/RecommendedStreamConfigurationMap\00", align 1 +@.TypeMapEntry.2780_from = private unnamed_addr constant [64 x i8] c"Android.Hardware.Camera2.Params.RggbChannelVector, Mono.Android\00", align 1 +@.TypeMapEntry.2781_to = private unnamed_addr constant [50 x i8] c"android/hardware/camera2/params/RggbChannelVector\00", align 1 +@.TypeMapEntry.2782_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.Camera2.Params.SessionConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.2783_to = private unnamed_addr constant [53 x i8] c"android/hardware/camera2/params/SessionConfiguration\00", align 1 +@.TypeMapEntry.2784_from = private unnamed_addr constant [69 x i8] c"Android.Hardware.Camera2.Params.StreamConfigurationMap, Mono.Android\00", align 1 +@.TypeMapEntry.2785_to = private unnamed_addr constant [55 x i8] c"android/hardware/camera2/params/StreamConfigurationMap\00", align 1 +@.TypeMapEntry.2786_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.Camera2.Params.TonemapCurve, Mono.Android\00", align 1 +@.TypeMapEntry.2787_to = private unnamed_addr constant [45 x i8] c"android/hardware/camera2/params/TonemapCurve\00", align 1 +@.TypeMapEntry.2788_from = private unnamed_addr constant [58 x i8] c"Android.Hardware.Camera2.TotalCaptureResult, Mono.Android\00", align 1 +@.TypeMapEntry.2789_to = private unnamed_addr constant [44 x i8] c"android/hardware/camera2/TotalCaptureResult\00", align 1 +@.TypeMapEntry.2790_from = private unnamed_addr constant [71 x i8] c"Android.Hardware.ConsumerIrManager+CarrierFrequencyRange, Mono.Android\00", align 1 +@.TypeMapEntry.2791_to = private unnamed_addr constant [57 x i8] c"android/hardware/ConsumerIrManager$CarrierFrequencyRange\00", align 1 +@.TypeMapEntry.2792_from = private unnamed_addr constant [49 x i8] c"Android.Hardware.ConsumerIrManager, Mono.Android\00", align 1 +@.TypeMapEntry.2793_to = private unnamed_addr constant [35 x i8] c"android/hardware/ConsumerIrManager\00", align 1 +@.TypeMapEntry.2794_from = private unnamed_addr constant [41 x i8] c"Android.Hardware.DataSpace, Mono.Android\00", align 1 +@.TypeMapEntry.2795_to = private unnamed_addr constant [27 x i8] c"android/hardware/DataSpace\00", align 1 +@.TypeMapEntry.2796_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Display.DeviceProductInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2797_to = private unnamed_addr constant [43 x i8] c"android/hardware/display/DeviceProductInfo\00", align 1 +@.TypeMapEntry.2798_from = private unnamed_addr constant [71 x i8] c"Android.Hardware.Display.DisplayManager+IDisplayListener, Mono.Android\00", align 1 +@.TypeMapEntry.2799_to = private unnamed_addr constant [56 x i8] c"android/hardware/display/DisplayManager$DisplayListener\00", align 1 +@.TypeMapEntry.2800_from = private unnamed_addr constant [82 x i8] c"Android.Hardware.Display.DisplayManager+IDisplayListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2801_to = private unnamed_addr constant [72 x i8] c"mono/android/hardware/display/DisplayManager_DisplayListenerImplementor\00", align 1 +@.TypeMapEntry.2802_from = private unnamed_addr constant [78 x i8] c"Android.Hardware.Display.DisplayManager+IDisplayListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2803_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.Display.DisplayManager, Mono.Android\00", align 1 +@.TypeMapEntry.2804_to = private unnamed_addr constant [40 x i8] c"android/hardware/display/DisplayManager\00", align 1 +@.TypeMapEntry.2805_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Display.HdrConversionMode, Mono.Android\00", align 1 +@.TypeMapEntry.2806_to = private unnamed_addr constant [43 x i8] c"android/hardware/display/HdrConversionMode\00", align 1 +@.TypeMapEntry.2807_from = private unnamed_addr constant [63 x i8] c"Android.Hardware.Display.VirtualDisplay+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.2808_to = private unnamed_addr constant [49 x i8] c"android/hardware/display/VirtualDisplay$Callback\00", align 1 +@.TypeMapEntry.2809_from = private unnamed_addr constant [70 x i8] c"Android.Hardware.Display.VirtualDisplay+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2810_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.Display.VirtualDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.2811_to = private unnamed_addr constant [40 x i8] c"android/hardware/display/VirtualDisplay\00", align 1 +@.TypeMapEntry.2812_from = private unnamed_addr constant [68 x i8] c"Android.Hardware.Display.VirtualDisplayConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2813_to = private unnamed_addr constant [54 x i8] c"android/hardware/display/VirtualDisplayConfig$Builder\00", align 1 +@.TypeMapEntry.2814_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Display.VirtualDisplayConfig, Mono.Android\00", align 1 +@.TypeMapEntry.2815_to = private unnamed_addr constant [46 x i8] c"android/hardware/display/VirtualDisplayConfig\00", align 1 +@.TypeMapEntry.2816_from = private unnamed_addr constant [86 x i8] c"Android.Hardware.Fingerprints.FingerprintManager+AuthenticationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2817_to = private unnamed_addr constant [71 x i8] c"android/hardware/fingerprint/FingerprintManager$AuthenticationCallback\00", align 1 +@.TypeMapEntry.2818_from = private unnamed_addr constant [93 x i8] c"Android.Hardware.Fingerprints.FingerprintManager+AuthenticationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2819_from = private unnamed_addr constant [84 x i8] c"Android.Hardware.Fingerprints.FingerprintManager+AuthenticationResult, Mono.Android\00", align 1 +@.TypeMapEntry.2820_to = private unnamed_addr constant [69 x i8] c"android/hardware/fingerprint/FingerprintManager$AuthenticationResult\00", align 1 +@.TypeMapEntry.2821_from = private unnamed_addr constant [76 x i8] c"Android.Hardware.Fingerprints.FingerprintManager+CryptoObject, Mono.Android\00", align 1 +@.TypeMapEntry.2822_to = private unnamed_addr constant [61 x i8] c"android/hardware/fingerprint/FingerprintManager$CryptoObject\00", align 1 +@.TypeMapEntry.2823_from = private unnamed_addr constant [63 x i8] c"Android.Hardware.Fingerprints.FingerprintManager, Mono.Android\00", align 1 +@.TypeMapEntry.2824_to = private unnamed_addr constant [48 x i8] c"android/hardware/fingerprint/FingerprintManager\00", align 1 +@.TypeMapEntry.2825_from = private unnamed_addr constant [48 x i8] c"Android.Hardware.GeomagneticField, Mono.Android\00", align 1 +@.TypeMapEntry.2826_to = private unnamed_addr constant [34 x i8] c"android/hardware/GeomagneticField\00", align 1 +@.TypeMapEntry.2827_from = private unnamed_addr constant [46 x i8] c"Android.Hardware.HardwareBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.2828_to = private unnamed_addr constant [32 x i8] c"android/hardware/HardwareBuffer\00", align 1 +@.TypeMapEntry.2829_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.ISensorEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.2830_to = private unnamed_addr constant [37 x i8] c"android/hardware/SensorEventListener\00", align 1 +@.TypeMapEntry.2831_from = private unnamed_addr constant [53 x i8] c"Android.Hardware.ISensorEventListener2, Mono.Android\00", align 1 +@.TypeMapEntry.2832_to = private unnamed_addr constant [38 x i8] c"android/hardware/SensorEventListener2\00", align 1 +@.TypeMapEntry.2833_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.ISensorEventListener2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.2834_from = private unnamed_addr constant [63 x i8] c"Android.Hardware.ISensorEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2835_to = private unnamed_addr constant [53 x i8] c"mono/android/hardware/SensorEventListenerImplementor\00", align 1 +@.TypeMapEntry.2836_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.ISensorEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2837_from = private unnamed_addr constant [47 x i8] c"Android.Hardware.ISensorListener, Mono.Android\00", align 1 +@.TypeMapEntry.2838_to = private unnamed_addr constant [32 x i8] c"android/hardware/SensorListener\00", align 1 +@.TypeMapEntry.2839_from = private unnamed_addr constant [58 x i8] c"Android.Hardware.ISensorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2840_to = private unnamed_addr constant [48 x i8] c"mono/android/hardware/SensorListenerImplementor\00", align 1 +@.TypeMapEntry.2841_from = private unnamed_addr constant [54 x i8] c"Android.Hardware.ISensorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2842_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.Input.HostUsiVersion, Mono.Android\00", align 1 +@.TypeMapEntry.2843_to = private unnamed_addr constant [38 x i8] c"android/hardware/input/HostUsiVersion\00", align 1 +@.TypeMapEntry.2844_from = private unnamed_addr constant [71 x i8] c"Android.Hardware.Input.InputManager+IInputDeviceListener, Mono.Android\00", align 1 +@.TypeMapEntry.2845_to = private unnamed_addr constant [56 x i8] c"android/hardware/input/InputManager$InputDeviceListener\00", align 1 +@.TypeMapEntry.2846_from = private unnamed_addr constant [82 x i8] c"Android.Hardware.Input.InputManager+IInputDeviceListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.2847_to = private unnamed_addr constant [72 x i8] c"mono/android/hardware/input/InputManager_InputDeviceListenerImplementor\00", align 1 +@.TypeMapEntry.2848_from = private unnamed_addr constant [78 x i8] c"Android.Hardware.Input.InputManager+IInputDeviceListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2849_from = private unnamed_addr constant [50 x i8] c"Android.Hardware.Input.InputManager, Mono.Android\00", align 1 +@.TypeMapEntry.2850_to = private unnamed_addr constant [36 x i8] c"android/hardware/input/InputManager\00", align 1 +@.TypeMapEntry.2851_from = private unnamed_addr constant [44 x i8] c"Android.Hardware.Lights.Light, Mono.Android\00", align 1 +@.TypeMapEntry.2852_to = private unnamed_addr constant [30 x i8] c"android/hardware/lights/Light\00", align 1 +@.TypeMapEntry.2853_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Lights.LightState+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2854_to = private unnamed_addr constant [43 x i8] c"android/hardware/lights/LightState$Builder\00", align 1 +@.TypeMapEntry.2855_from = private unnamed_addr constant [49 x i8] c"Android.Hardware.Lights.LightState, Mono.Android\00", align 1 +@.TypeMapEntry.2856_to = private unnamed_addr constant [35 x i8] c"android/hardware/lights/LightState\00", align 1 +@.TypeMapEntry.2857_from = private unnamed_addr constant [66 x i8] c"Android.Hardware.Lights.LightsManager+LightsSession, Mono.Android\00", align 1 +@.TypeMapEntry.2858_to = private unnamed_addr constant [52 x i8] c"android/hardware/lights/LightsManager$LightsSession\00", align 1 +@.TypeMapEntry.2859_from = private unnamed_addr constant [73 x i8] c"Android.Hardware.Lights.LightsManager+LightsSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2860_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.Lights.LightsManager, Mono.Android\00", align 1 +@.TypeMapEntry.2861_to = private unnamed_addr constant [38 x i8] c"android/hardware/lights/LightsManager\00", align 1 +@.TypeMapEntry.2862_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.Lights.LightsManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2863_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.Lights.LightsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2864_to = private unnamed_addr constant [46 x i8] c"android/hardware/lights/LightsRequest$Builder\00", align 1 +@.TypeMapEntry.2865_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.Lights.LightsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2866_to = private unnamed_addr constant [38 x i8] c"android/hardware/lights/LightsRequest\00", align 1 +@.TypeMapEntry.2867_from = private unnamed_addr constant [57 x i8] c"Android.Hardware.Location.GeofenceHardware, Mono.Android\00", align 1 +@.TypeMapEntry.2868_to = private unnamed_addr constant [43 x i8] c"android/hardware/location/GeofenceHardware\00", align 1 +@.TypeMapEntry.2869_from = private unnamed_addr constant [65 x i8] c"Android.Hardware.Location.GeofenceHardwareCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2870_to = private unnamed_addr constant [51 x i8] c"android/hardware/location/GeofenceHardwareCallback\00", align 1 +@.TypeMapEntry.2871_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Location.GeofenceHardwareCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2872_from = private unnamed_addr constant [72 x i8] c"Android.Hardware.Location.GeofenceHardwareMonitorCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2873_to = private unnamed_addr constant [58 x i8] c"android/hardware/location/GeofenceHardwareMonitorCallback\00", align 1 +@.TypeMapEntry.2874_from = private unnamed_addr constant [79 x i8] c"Android.Hardware.Location.GeofenceHardwareMonitorCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2875_from = private unnamed_addr constant [64 x i8] c"Android.Hardware.Location.GeofenceHardwareRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2876_to = private unnamed_addr constant [50 x i8] c"android/hardware/location/GeofenceHardwareRequest\00", align 1 +@.TypeMapEntry.2877_from = private unnamed_addr constant [49 x i8] c"Android.Hardware.OverlayProperties, Mono.Android\00", align 1 +@.TypeMapEntry.2878_to = private unnamed_addr constant [35 x i8] c"android/hardware/OverlayProperties\00", align 1 +@.TypeMapEntry.2879_from = private unnamed_addr constant [38 x i8] c"Android.Hardware.Sensor, Mono.Android\00", align 1 +@.TypeMapEntry.2880_to = private unnamed_addr constant [24 x i8] c"android/hardware/Sensor\00", align 1 +@.TypeMapEntry.2881_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.SensorAdditionalInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2882_to = private unnamed_addr constant [38 x i8] c"android/hardware/SensorAdditionalInfo\00", align 1 +@.TypeMapEntry.2883_from = private unnamed_addr constant [51 x i8] c"Android.Hardware.SensorDirectChannel, Mono.Android\00", align 1 +@.TypeMapEntry.2884_to = private unnamed_addr constant [37 x i8] c"android/hardware/SensorDirectChannel\00", align 1 +@.TypeMapEntry.2885_from = private unnamed_addr constant [43 x i8] c"Android.Hardware.SensorEvent, Mono.Android\00", align 1 +@.TypeMapEntry.2886_to = private unnamed_addr constant [29 x i8] c"android/hardware/SensorEvent\00", align 1 +@.TypeMapEntry.2887_from = private unnamed_addr constant [51 x i8] c"Android.Hardware.SensorEventCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2888_to = private unnamed_addr constant [37 x i8] c"android/hardware/SensorEventCallback\00", align 1 +@.TypeMapEntry.2889_from = private unnamed_addr constant [58 x i8] c"Android.Hardware.SensorEventCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2890_from = private unnamed_addr constant [67 x i8] c"Android.Hardware.SensorManager+DynamicSensorCallback, Mono.Android\00", align 1 +@.TypeMapEntry.2891_to = private unnamed_addr constant [53 x i8] c"android/hardware/SensorManager$DynamicSensorCallback\00", align 1 +@.TypeMapEntry.2892_from = private unnamed_addr constant [74 x i8] c"Android.Hardware.SensorManager+DynamicSensorCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2893_from = private unnamed_addr constant [45 x i8] c"Android.Hardware.SensorManager, Mono.Android\00", align 1 +@.TypeMapEntry.2894_to = private unnamed_addr constant [31 x i8] c"android/hardware/SensorManager\00", align 1 +@.TypeMapEntry.2895_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.SensorManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2896_from = private unnamed_addr constant [60 x i8] c"Android.Hardware.SensorPrivacyManager+Sensors, Mono.Android\00", align 1 +@.TypeMapEntry.2897_to = private unnamed_addr constant [46 x i8] c"android/hardware/SensorPrivacyManager$Sensors\00", align 1 +@.TypeMapEntry.2898_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.SensorPrivacyManager, Mono.Android\00", align 1 +@.TypeMapEntry.2899_to = private unnamed_addr constant [38 x i8] c"android/hardware/SensorPrivacyManager\00", align 1 +@.TypeMapEntry.2900_from = private unnamed_addr constant [41 x i8] c"Android.Hardware.SyncFence, Mono.Android\00", align 1 +@.TypeMapEntry.2901_to = private unnamed_addr constant [27 x i8] c"android/hardware/SyncFence\00", align 1 +@.TypeMapEntry.2902_from = private unnamed_addr constant [44 x i8] c"Android.Hardware.TriggerEvent, Mono.Android\00", align 1 +@.TypeMapEntry.2903_to = private unnamed_addr constant [30 x i8] c"android/hardware/TriggerEvent\00", align 1 +@.TypeMapEntry.2904_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.TriggerEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.2905_to = private unnamed_addr constant [38 x i8] c"android/hardware/TriggerEventListener\00", align 1 +@.TypeMapEntry.2906_from = private unnamed_addr constant [59 x i8] c"Android.Hardware.TriggerEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.2907_from = private unnamed_addr constant [48 x i8] c"Android.Hardware.Usb.UsbAccessory, Mono.Android\00", align 1 +@.TypeMapEntry.2908_to = private unnamed_addr constant [34 x i8] c"android/hardware/usb/UsbAccessory\00", align 1 +@.TypeMapEntry.2909_from = private unnamed_addr constant [52 x i8] c"Android.Hardware.Usb.UsbConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.2910_to = private unnamed_addr constant [38 x i8] c"android/hardware/usb/UsbConfiguration\00", align 1 +@.TypeMapEntry.2911_from = private unnamed_addr constant [48 x i8] c"Android.Hardware.Usb.UsbConstants, Mono.Android\00", align 1 +@.TypeMapEntry.2912_to = private unnamed_addr constant [34 x i8] c"android/hardware/usb/UsbConstants\00", align 1 +@.TypeMapEntry.2913_from = private unnamed_addr constant [45 x i8] c"Android.Hardware.Usb.UsbDevice, Mono.Android\00", align 1 +@.TypeMapEntry.2914_to = private unnamed_addr constant [31 x i8] c"android/hardware/usb/UsbDevice\00", align 1 +@.TypeMapEntry.2915_from = private unnamed_addr constant [55 x i8] c"Android.Hardware.Usb.UsbDeviceConnection, Mono.Android\00", align 1 +@.TypeMapEntry.2916_to = private unnamed_addr constant [41 x i8] c"android/hardware/usb/UsbDeviceConnection\00", align 1 +@.TypeMapEntry.2917_from = private unnamed_addr constant [47 x i8] c"Android.Hardware.Usb.UsbEndpoint, Mono.Android\00", align 1 +@.TypeMapEntry.2918_to = private unnamed_addr constant [33 x i8] c"android/hardware/usb/UsbEndpoint\00", align 1 +@.TypeMapEntry.2919_from = private unnamed_addr constant [48 x i8] c"Android.Hardware.Usb.UsbInterface, Mono.Android\00", align 1 +@.TypeMapEntry.2920_to = private unnamed_addr constant [34 x i8] c"android/hardware/usb/UsbInterface\00", align 1 +@.TypeMapEntry.2921_from = private unnamed_addr constant [46 x i8] c"Android.Hardware.Usb.UsbManager, Mono.Android\00", align 1 +@.TypeMapEntry.2922_to = private unnamed_addr constant [32 x i8] c"android/hardware/usb/UsbManager\00", align 1 +@.TypeMapEntry.2923_from = private unnamed_addr constant [46 x i8] c"Android.Hardware.Usb.UsbRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2924_to = private unnamed_addr constant [32 x i8] c"android/hardware/usb/UsbRequest\00", align 1 +@.TypeMapEntry.2925_from = private unnamed_addr constant [79 x i8] c"Android.Health.Connect.AggregateRecordsGroupedByDurationResponse, Mono.Android\00", align 1 +@.TypeMapEntry.2926_to = private unnamed_addr constant [65 x i8] c"android/health/connect/AggregateRecordsGroupedByDurationResponse\00", align 1 +@.TypeMapEntry.2927_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.AggregateRecordsGroupedByPeriodResponse, Mono.Android\00", align 1 +@.TypeMapEntry.2928_to = private unnamed_addr constant [63 x i8] c"android/health/connect/AggregateRecordsGroupedByPeriodResponse\00", align 1 +@.TypeMapEntry.2929_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.AggregateRecordsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2930_to = private unnamed_addr constant [55 x i8] c"android/health/connect/AggregateRecordsRequest$Builder\00", align 1 +@.TypeMapEntry.2931_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.AggregateRecordsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2932_to = private unnamed_addr constant [47 x i8] c"android/health/connect/AggregateRecordsRequest\00", align 1 +@.TypeMapEntry.2933_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.AggregateRecordsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.2934_to = private unnamed_addr constant [48 x i8] c"android/health/connect/AggregateRecordsResponse\00", align 1 +@.TypeMapEntry.2935_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogTokenRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2936_to = private unnamed_addr constant [63 x i8] c"android/health/connect/changelog/ChangeLogTokenRequest$Builder\00", align 1 +@.TypeMapEntry.2937_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogTokenRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2938_to = private unnamed_addr constant [55 x i8] c"android/health/connect/changelog/ChangeLogTokenRequest\00", align 1 +@.TypeMapEntry.2939_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogTokenResponse, Mono.Android\00", align 1 +@.TypeMapEntry.2940_to = private unnamed_addr constant [56 x i8] c"android/health/connect/changelog/ChangeLogTokenResponse\00", align 1 +@.TypeMapEntry.2941_from = private unnamed_addr constant [73 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2942_to = private unnamed_addr constant [59 x i8] c"android/health/connect/changelog/ChangeLogsRequest$Builder\00", align 1 +@.TypeMapEntry.2943_from = private unnamed_addr constant [65 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.2944_to = private unnamed_addr constant [51 x i8] c"android/health/connect/changelog/ChangeLogsRequest\00", align 1 +@.TypeMapEntry.2945_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogsResponse+DeletedLog, Mono.Android\00", align 1 +@.TypeMapEntry.2946_to = private unnamed_addr constant [63 x i8] c"android/health/connect/changelog/ChangeLogsResponse$DeletedLog\00", align 1 +@.TypeMapEntry.2947_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.ChangeLog.ChangeLogsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.2948_to = private unnamed_addr constant [52 x i8] c"android/health/connect/changelog/ChangeLogsResponse\00", align 1 +@.TypeMapEntry.2949_from = private unnamed_addr constant [82 x i8] c"Android.Health.Connect.DataTypes.ActiveCaloriesBurnedRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2950_to = private unnamed_addr constant [68 x i8] c"android/health/connect/datatypes/ActiveCaloriesBurnedRecord$Builder\00", align 1 +@.TypeMapEntry.2951_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.ActiveCaloriesBurnedRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2952_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/ActiveCaloriesBurnedRecord\00", align 1 +@.TypeMapEntry.2953_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.DataTypes.AggregationType, Mono.Android\00", align 1 +@.TypeMapEntry.2954_to = private unnamed_addr constant [49 x i8] c"android/health/connect/datatypes/AggregationType\00", align 1 +@.TypeMapEntry.2955_from = private unnamed_addr constant [55 x i8] c"Android.Health.Connect.DataTypes.AppInfo, Mono.Android\00", align 1 +@.TypeMapEntry.2956_to = private unnamed_addr constant [41 x i8] c"android/health/connect/datatypes/AppInfo\00", align 1 +@.TypeMapEntry.2957_from = private unnamed_addr constant [82 x i8] c"Android.Health.Connect.DataTypes.BasalBodyTemperatureRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2958_to = private unnamed_addr constant [68 x i8] c"android/health/connect/datatypes/BasalBodyTemperatureRecord$Builder\00", align 1 +@.TypeMapEntry.2959_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.BasalBodyTemperatureRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2960_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/BasalBodyTemperatureRecord\00", align 1 +@.TypeMapEntry.2961_from = private unnamed_addr constant [80 x i8] c"Android.Health.Connect.DataTypes.BasalMetabolicRateRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2962_to = private unnamed_addr constant [66 x i8] c"android/health/connect/datatypes/BasalMetabolicRateRecord$Builder\00", align 1 +@.TypeMapEntry.2963_from = private unnamed_addr constant [72 x i8] c"Android.Health.Connect.DataTypes.BasalMetabolicRateRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2964_to = private unnamed_addr constant [58 x i8] c"android/health/connect/datatypes/BasalMetabolicRateRecord\00", align 1 +@.TypeMapEntry.2965_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.BloodGlucoseRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2966_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/BloodGlucoseRecord$Builder\00", align 1 +@.TypeMapEntry.2967_from = private unnamed_addr constant [85 x i8] c"Android.Health.Connect.DataTypes.BloodGlucoseRecord+RelationToMealType, Mono.Android\00", align 1 +@.TypeMapEntry.2968_to = private unnamed_addr constant [71 x i8] c"android/health/connect/datatypes/BloodGlucoseRecord$RelationToMealType\00", align 1 +@.TypeMapEntry.2969_from = private unnamed_addr constant [81 x i8] c"Android.Health.Connect.DataTypes.BloodGlucoseRecord+SpecimenSource, Mono.Android\00", align 1 +@.TypeMapEntry.2970_to = private unnamed_addr constant [67 x i8] c"android/health/connect/datatypes/BloodGlucoseRecord$SpecimenSource\00", align 1 +@.TypeMapEntry.2971_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.BloodGlucoseRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2972_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/BloodGlucoseRecord\00", align 1 +@.TypeMapEntry.2973_from = private unnamed_addr constant [100 x i8] c"Android.Health.Connect.DataTypes.BloodPressureRecord+BloodPressureMeasurementLocation, Mono.Android\00", align 1 +@.TypeMapEntry.2974_to = private unnamed_addr constant [86 x i8] c"android/health/connect/datatypes/BloodPressureRecord$BloodPressureMeasurementLocation\00", align 1 +@.TypeMapEntry.2975_from = private unnamed_addr constant [80 x i8] c"Android.Health.Connect.DataTypes.BloodPressureRecord+BodyPosition, Mono.Android\00", align 1 +@.TypeMapEntry.2976_to = private unnamed_addr constant [66 x i8] c"android/health/connect/datatypes/BloodPressureRecord$BodyPosition\00", align 1 +@.TypeMapEntry.2977_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.BloodPressureRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2978_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/BloodPressureRecord$Builder\00", align 1 +@.TypeMapEntry.2979_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.BloodPressureRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2980_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/BloodPressureRecord\00", align 1 +@.TypeMapEntry.2981_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.BodyFatRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2982_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/BodyFatRecord$Builder\00", align 1 +@.TypeMapEntry.2983_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.DataTypes.BodyFatRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2984_to = private unnamed_addr constant [47 x i8] c"android/health/connect/datatypes/BodyFatRecord\00", align 1 +@.TypeMapEntry.2985_from = private unnamed_addr constant [82 x i8] c"Android.Health.Connect.DataTypes.BodyTemperatureMeasurementLocation, Mono.Android\00", align 1 +@.TypeMapEntry.2986_to = private unnamed_addr constant [68 x i8] c"android/health/connect/datatypes/BodyTemperatureMeasurementLocation\00", align 1 +@.TypeMapEntry.2987_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.BodyTemperatureRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2988_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/BodyTemperatureRecord$Builder\00", align 1 +@.TypeMapEntry.2989_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.BodyTemperatureRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2990_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/BodyTemperatureRecord\00", align 1 +@.TypeMapEntry.2991_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.BodyWaterMassRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2992_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/BodyWaterMassRecord$Builder\00", align 1 +@.TypeMapEntry.2993_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.BodyWaterMassRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2994_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/BodyWaterMassRecord\00", align 1 +@.TypeMapEntry.2995_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.BoneMassRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.2996_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/BoneMassRecord$Builder\00", align 1 +@.TypeMapEntry.2997_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.BoneMassRecord, Mono.Android\00", align 1 +@.TypeMapEntry.2998_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/BoneMassRecord\00", align 1 +@.TypeMapEntry.2999_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.CervicalMucusRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3000_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/CervicalMucusRecord$Builder\00", align 1 +@.TypeMapEntry.3001_from = private unnamed_addr constant [91 x i8] c"Android.Health.Connect.DataTypes.CervicalMucusRecord+CervicalMucusAppearance, Mono.Android\00", align 1 +@.TypeMapEntry.3002_to = private unnamed_addr constant [77 x i8] c"android/health/connect/datatypes/CervicalMucusRecord$CervicalMucusAppearance\00", align 1 +@.TypeMapEntry.3003_from = private unnamed_addr constant [90 x i8] c"Android.Health.Connect.DataTypes.CervicalMucusRecord+CervicalMucusSensation, Mono.Android\00", align 1 +@.TypeMapEntry.3004_to = private unnamed_addr constant [76 x i8] c"android/health/connect/datatypes/CervicalMucusRecord$CervicalMucusSensation\00", align 1 +@.TypeMapEntry.3005_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.CervicalMucusRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3006_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/CervicalMucusRecord\00", align 1 +@.TypeMapEntry.3007_from = private unnamed_addr constant [84 x i8] c"Android.Health.Connect.DataTypes.CyclingPedalingCadenceRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3008_to = private unnamed_addr constant [70 x i8] c"android/health/connect/datatypes/CyclingPedalingCadenceRecord$Builder\00", align 1 +@.TypeMapEntry.3009_from = private unnamed_addr constant [111 x i8] c"Android.Health.Connect.DataTypes.CyclingPedalingCadenceRecord+CyclingPedalingCadenceRecordSample, Mono.Android\00", align 1 +@.TypeMapEntry.3010_to = private unnamed_addr constant [97 x i8] c"android/health/connect/datatypes/CyclingPedalingCadenceRecord$CyclingPedalingCadenceRecordSample\00", align 1 +@.TypeMapEntry.3011_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.CyclingPedalingCadenceRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3012_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/CyclingPedalingCadenceRecord\00", align 1 +@.TypeMapEntry.3013_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.DataOrigin+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3014_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/DataOrigin$Builder\00", align 1 +@.TypeMapEntry.3015_from = private unnamed_addr constant [58 x i8] c"Android.Health.Connect.DataTypes.DataOrigin, Mono.Android\00", align 1 +@.TypeMapEntry.3016_to = private unnamed_addr constant [44 x i8] c"android/health/connect/datatypes/DataOrigin\00", align 1 +@.TypeMapEntry.3017_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.Device+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3018_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/Device$Builder\00", align 1 +@.TypeMapEntry.3019_from = private unnamed_addr constant [54 x i8] c"Android.Health.Connect.DataTypes.Device, Mono.Android\00", align 1 +@.TypeMapEntry.3020_to = private unnamed_addr constant [40 x i8] c"android/health/connect/datatypes/Device\00", align 1 +@.TypeMapEntry.3021_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.DistanceRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3022_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/DistanceRecord$Builder\00", align 1 +@.TypeMapEntry.3023_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.DistanceRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3024_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/DistanceRecord\00", align 1 +@.TypeMapEntry.3025_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.ElevationGainedRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3026_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/ElevationGainedRecord$Builder\00", align 1 +@.TypeMapEntry.3027_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.ElevationGainedRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3028_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/ElevationGainedRecord\00", align 1 +@.TypeMapEntry.3029_from = private unnamed_addr constant [95 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+ActiveCaloriesBurnedGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3030_to = private unnamed_addr constant [81 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$ActiveCaloriesBurnedGoal\00", align 1 +@.TypeMapEntry.3031_from = private unnamed_addr constant [83 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+DistanceGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3032_to = private unnamed_addr constant [69 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$DistanceGoal\00", align 1 +@.TypeMapEntry.3033_from = private unnamed_addr constant [99 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+DistanceWithVariableRestGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3034_to = private unnamed_addr constant [85 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$DistanceWithVariableRestGoal\00", align 1 +@.TypeMapEntry.3035_from = private unnamed_addr constant [83 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+DurationGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3036_to = private unnamed_addr constant [69 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$DurationGoal\00", align 1 +@.TypeMapEntry.3037_from = private unnamed_addr constant [86 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+RepetitionsGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3038_to = private unnamed_addr constant [72 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$RepetitionsGoal\00", align 1 +@.TypeMapEntry.3039_from = private unnamed_addr constant [80 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+StepsGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3040_to = private unnamed_addr constant [66 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$StepsGoal\00", align 1 +@.TypeMapEntry.3041_from = private unnamed_addr constant [94 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+TotalCaloriesBurnedGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3042_to = private unnamed_addr constant [80 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$TotalCaloriesBurnedGoal\00", align 1 +@.TypeMapEntry.3043_from = private unnamed_addr constant [82 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+UnknownGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3044_to = private unnamed_addr constant [68 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$UnknownGoal\00", align 1 +@.TypeMapEntry.3045_from = private unnamed_addr constant [86 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal+UnspecifiedGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3046_to = private unnamed_addr constant [72 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal$UnspecifiedGoal\00", align 1 +@.TypeMapEntry.3047_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3048_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/ExerciseCompletionGoal\00", align 1 +@.TypeMapEntry.3049_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.ExerciseCompletionGoalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3050_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.ExerciseLap+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3051_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/ExerciseLap$Builder\00", align 1 +@.TypeMapEntry.3052_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.DataTypes.ExerciseLap, Mono.Android\00", align 1 +@.TypeMapEntry.3053_to = private unnamed_addr constant [45 x i8] c"android/health/connect/datatypes/ExerciseLap\00", align 1 +@.TypeMapEntry.3054_from = private unnamed_addr constant [81 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+AmrapGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3055_to = private unnamed_addr constant [67 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$AmrapGoal\00", align 1 +@.TypeMapEntry.3056_from = private unnamed_addr constant [83 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+CadenceGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3057_to = private unnamed_addr constant [69 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$CadenceGoal\00", align 1 +@.TypeMapEntry.3058_from = private unnamed_addr constant [85 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+HeartRateGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3059_to = private unnamed_addr constant [71 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$HeartRateGoal\00", align 1 +@.TypeMapEntry.3060_from = private unnamed_addr constant [81 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+PowerGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3061_to = private unnamed_addr constant [67 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$PowerGoal\00", align 1 +@.TypeMapEntry.3062_from = private unnamed_addr constant [99 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+RateOfPerceivedExertionGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3063_to = private unnamed_addr constant [85 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$RateOfPerceivedExertionGoal\00", align 1 +@.TypeMapEntry.3064_from = private unnamed_addr constant [81 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+SpeedGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3065_to = private unnamed_addr constant [67 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$SpeedGoal\00", align 1 +@.TypeMapEntry.3066_from = private unnamed_addr constant [83 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+UnknownGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3067_to = private unnamed_addr constant [69 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$UnknownGoal\00", align 1 +@.TypeMapEntry.3068_from = private unnamed_addr constant [82 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal+WeightGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3069_to = private unnamed_addr constant [68 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal$WeightGoal\00", align 1 +@.TypeMapEntry.3070_from = private unnamed_addr constant [71 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoal, Mono.Android\00", align 1 +@.TypeMapEntry.3071_to = private unnamed_addr constant [57 x i8] c"android/health/connect/datatypes/ExercisePerformanceGoal\00", align 1 +@.TypeMapEntry.3072_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.ExercisePerformanceGoalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3073_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.ExerciseRoute+Location+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3074_to = private unnamed_addr constant [64 x i8] c"android/health/connect/datatypes/ExerciseRoute$Location$Builder\00", align 1 +@.TypeMapEntry.3075_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.ExerciseRoute+Location, Mono.Android\00", align 1 +@.TypeMapEntry.3076_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/ExerciseRoute$Location\00", align 1 +@.TypeMapEntry.3077_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.DataTypes.ExerciseRoute, Mono.Android\00", align 1 +@.TypeMapEntry.3078_to = private unnamed_addr constant [47 x i8] c"android/health/connect/datatypes/ExerciseRoute\00", align 1 +@.TypeMapEntry.3079_from = private unnamed_addr constant [71 x i8] c"Android.Health.Connect.DataTypes.ExerciseSegment+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3080_to = private unnamed_addr constant [57 x i8] c"android/health/connect/datatypes/ExerciseSegment$Builder\00", align 1 +@.TypeMapEntry.3081_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.DataTypes.ExerciseSegment, Mono.Android\00", align 1 +@.TypeMapEntry.3082_to = private unnamed_addr constant [49 x i8] c"android/health/connect/datatypes/ExerciseSegment\00", align 1 +@.TypeMapEntry.3083_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.ExerciseSegmentType, Mono.Android\00", align 1 +@.TypeMapEntry.3084_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/ExerciseSegmentType\00", align 1 +@.TypeMapEntry.3085_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.ExerciseSessionRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3086_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/ExerciseSessionRecord$Builder\00", align 1 +@.TypeMapEntry.3087_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.ExerciseSessionRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3088_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/ExerciseSessionRecord\00", align 1 +@.TypeMapEntry.3089_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.ExerciseSessionType, Mono.Android\00", align 1 +@.TypeMapEntry.3090_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/ExerciseSessionType\00", align 1 +@.TypeMapEntry.3091_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.FloorsClimbedRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3092_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/FloorsClimbedRecord$Builder\00", align 1 +@.TypeMapEntry.3093_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.FloorsClimbedRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3094_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/FloorsClimbedRecord\00", align 1 +@.TypeMapEntry.3095_from = private unnamed_addr constant [71 x i8] c"Android.Health.Connect.DataTypes.HeartRateRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3096_to = private unnamed_addr constant [57 x i8] c"android/health/connect/datatypes/HeartRateRecord$Builder\00", align 1 +@.TypeMapEntry.3097_from = private unnamed_addr constant [79 x i8] c"Android.Health.Connect.DataTypes.HeartRateRecord+HeartRateSample, Mono.Android\00", align 1 +@.TypeMapEntry.3098_to = private unnamed_addr constant [65 x i8] c"android/health/connect/datatypes/HeartRateRecord$HeartRateSample\00", align 1 +@.TypeMapEntry.3099_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.DataTypes.HeartRateRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3100_to = private unnamed_addr constant [49 x i8] c"android/health/connect/datatypes/HeartRateRecord\00", align 1 +@.TypeMapEntry.3101_from = private unnamed_addr constant [87 x i8] c"Android.Health.Connect.DataTypes.HeartRateVariabilityRmssdRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3102_to = private unnamed_addr constant [73 x i8] c"android/health/connect/datatypes/HeartRateVariabilityRmssdRecord$Builder\00", align 1 +@.TypeMapEntry.3103_from = private unnamed_addr constant [79 x i8] c"Android.Health.Connect.DataTypes.HeartRateVariabilityRmssdRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3104_to = private unnamed_addr constant [65 x i8] c"android/health/connect/datatypes/HeartRateVariabilityRmssdRecord\00", align 1 +@.TypeMapEntry.3105_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.HeightRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3106_to = private unnamed_addr constant [54 x i8] c"android/health/connect/datatypes/HeightRecord$Builder\00", align 1 +@.TypeMapEntry.3107_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.HeightRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3108_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/HeightRecord\00", align 1 +@.TypeMapEntry.3109_from = private unnamed_addr constant [71 x i8] c"Android.Health.Connect.DataTypes.HydrationRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3110_to = private unnamed_addr constant [57 x i8] c"android/health/connect/datatypes/HydrationRecord$Builder\00", align 1 +@.TypeMapEntry.3111_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.DataTypes.HydrationRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3112_to = private unnamed_addr constant [49 x i8] c"android/health/connect/datatypes/HydrationRecord\00", align 1 +@.TypeMapEntry.3113_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.DataTypes.InstantRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3114_to = private unnamed_addr constant [47 x i8] c"android/health/connect/datatypes/InstantRecord\00", align 1 +@.TypeMapEntry.3115_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.InstantRecordInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3116_from = private unnamed_addr constant [84 x i8] c"Android.Health.Connect.DataTypes.IntermenstrualBleedingRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3117_to = private unnamed_addr constant [70 x i8] c"android/health/connect/datatypes/IntermenstrualBleedingRecord$Builder\00", align 1 +@.TypeMapEntry.3118_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.IntermenstrualBleedingRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3119_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/IntermenstrualBleedingRecord\00", align 1 +@.TypeMapEntry.3120_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.IntervalRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3121_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/IntervalRecord\00", align 1 +@.TypeMapEntry.3122_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.IntervalRecordInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3123_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.LeanBodyMassRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3124_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/LeanBodyMassRecord$Builder\00", align 1 +@.TypeMapEntry.3125_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.LeanBodyMassRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3126_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/LeanBodyMassRecord\00", align 1 +@.TypeMapEntry.3127_from = private unnamed_addr constant [56 x i8] c"Android.Health.Connect.DataTypes.MealType, Mono.Android\00", align 1 +@.TypeMapEntry.3128_to = private unnamed_addr constant [42 x i8] c"android/health/connect/datatypes/MealType\00", align 1 +@.TypeMapEntry.3129_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.MenstruationFlowRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3130_to = private unnamed_addr constant [64 x i8] c"android/health/connect/datatypes/MenstruationFlowRecord$Builder\00", align 1 +@.TypeMapEntry.3131_from = private unnamed_addr constant [91 x i8] c"Android.Health.Connect.DataTypes.MenstruationFlowRecord+MenstruationFlowType, Mono.Android\00", align 1 +@.TypeMapEntry.3132_to = private unnamed_addr constant [77 x i8] c"android/health/connect/datatypes/MenstruationFlowRecord$MenstruationFlowType\00", align 1 +@.TypeMapEntry.3133_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.MenstruationFlowRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3134_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/MenstruationFlowRecord\00", align 1 +@.TypeMapEntry.3135_from = private unnamed_addr constant [80 x i8] c"Android.Health.Connect.DataTypes.MenstruationPeriodRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3136_to = private unnamed_addr constant [66 x i8] c"android/health/connect/datatypes/MenstruationPeriodRecord$Builder\00", align 1 +@.TypeMapEntry.3137_from = private unnamed_addr constant [72 x i8] c"Android.Health.Connect.DataTypes.MenstruationPeriodRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3138_to = private unnamed_addr constant [58 x i8] c"android/health/connect/datatypes/MenstruationPeriodRecord\00", align 1 +@.TypeMapEntry.3139_from = private unnamed_addr constant [64 x i8] c"Android.Health.Connect.DataTypes.Metadata+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3140_to = private unnamed_addr constant [50 x i8] c"android/health/connect/datatypes/Metadata$Builder\00", align 1 +@.TypeMapEntry.3141_from = private unnamed_addr constant [56 x i8] c"Android.Health.Connect.DataTypes.Metadata, Mono.Android\00", align 1 +@.TypeMapEntry.3142_to = private unnamed_addr constant [42 x i8] c"android/health/connect/datatypes/Metadata\00", align 1 +@.TypeMapEntry.3143_from = private unnamed_addr constant [71 x i8] c"Android.Health.Connect.DataTypes.NutritionRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3144_to = private unnamed_addr constant [57 x i8] c"android/health/connect/datatypes/NutritionRecord$Builder\00", align 1 +@.TypeMapEntry.3145_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.DataTypes.NutritionRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3146_to = private unnamed_addr constant [49 x i8] c"android/health/connect/datatypes/NutritionRecord\00", align 1 +@.TypeMapEntry.3147_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.OvulationTestRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3148_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/OvulationTestRecord$Builder\00", align 1 +@.TypeMapEntry.3149_from = private unnamed_addr constant [87 x i8] c"Android.Health.Connect.DataTypes.OvulationTestRecord+OvulationTestResult, Mono.Android\00", align 1 +@.TypeMapEntry.3150_to = private unnamed_addr constant [73 x i8] c"android/health/connect/datatypes/OvulationTestRecord$OvulationTestResult\00", align 1 +@.TypeMapEntry.3151_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.OvulationTestRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3152_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/OvulationTestRecord\00", align 1 +@.TypeMapEntry.3153_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.OxygenSaturationRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3154_to = private unnamed_addr constant [64 x i8] c"android/health/connect/datatypes/OxygenSaturationRecord$Builder\00", align 1 +@.TypeMapEntry.3155_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.OxygenSaturationRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3156_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/OxygenSaturationRecord\00", align 1 +@.TypeMapEntry.3157_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseBlock+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3158_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/PlannedExerciseBlock$Builder\00", align 1 +@.TypeMapEntry.3159_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseBlock, Mono.Android\00", align 1 +@.TypeMapEntry.3160_to = private unnamed_addr constant [54 x i8] c"android/health/connect/datatypes/PlannedExerciseBlock\00", align 1 +@.TypeMapEntry.3161_from = private unnamed_addr constant [84 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseSessionRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3162_to = private unnamed_addr constant [70 x i8] c"android/health/connect/datatypes/PlannedExerciseSessionRecord$Builder\00", align 1 +@.TypeMapEntry.3163_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseSessionRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3164_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/PlannedExerciseSessionRecord\00", align 1 +@.TypeMapEntry.3165_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseStep+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3166_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/PlannedExerciseStep$Builder\00", align 1 +@.TypeMapEntry.3167_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.PlannedExerciseStep, Mono.Android\00", align 1 +@.TypeMapEntry.3168_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/PlannedExerciseStep\00", align 1 +@.TypeMapEntry.3169_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.PowerRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3170_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/PowerRecord$Builder\00", align 1 +@.TypeMapEntry.3171_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.PowerRecord+PowerRecordSample, Mono.Android\00", align 1 +@.TypeMapEntry.3172_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/PowerRecord$PowerRecordSample\00", align 1 +@.TypeMapEntry.3173_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.DataTypes.PowerRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3174_to = private unnamed_addr constant [45 x i8] c"android/health/connect/datatypes/PowerRecord\00", align 1 +@.TypeMapEntry.3175_from = private unnamed_addr constant [54 x i8] c"Android.Health.Connect.DataTypes.Record, Mono.Android\00", align 1 +@.TypeMapEntry.3176_to = private unnamed_addr constant [40 x i8] c"android/health/connect/datatypes/Record\00", align 1 +@.TypeMapEntry.3177_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.DataTypes.RecordInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3178_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.RespiratoryRateRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3179_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/RespiratoryRateRecord$Builder\00", align 1 +@.TypeMapEntry.3180_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.RespiratoryRateRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3181_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/RespiratoryRateRecord\00", align 1 +@.TypeMapEntry.3182_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.RestingHeartRateRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3183_to = private unnamed_addr constant [64 x i8] c"android/health/connect/datatypes/RestingHeartRateRecord$Builder\00", align 1 +@.TypeMapEntry.3184_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.RestingHeartRateRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3185_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/RestingHeartRateRecord\00", align 1 +@.TypeMapEntry.3186_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.SexualActivityRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3187_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/SexualActivityRecord$Builder\00", align 1 +@.TypeMapEntry.3188_from = private unnamed_addr constant [97 x i8] c"Android.Health.Connect.DataTypes.SexualActivityRecord+SexualActivityProtectionUsed, Mono.Android\00", align 1 +@.TypeMapEntry.3189_to = private unnamed_addr constant [83 x i8] c"android/health/connect/datatypes/SexualActivityRecord$SexualActivityProtectionUsed\00", align 1 +@.TypeMapEntry.3190_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.SexualActivityRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3191_to = private unnamed_addr constant [54 x i8] c"android/health/connect/datatypes/SexualActivityRecord\00", align 1 +@.TypeMapEntry.3192_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.SkinTemperatureRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3193_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/SkinTemperatureRecord$Builder\00", align 1 +@.TypeMapEntry.3194_from = private unnamed_addr constant [75 x i8] c"Android.Health.Connect.DataTypes.SkinTemperatureRecord+Delta, Mono.Android\00", align 1 +@.TypeMapEntry.3195_to = private unnamed_addr constant [61 x i8] c"android/health/connect/datatypes/SkinTemperatureRecord$Delta\00", align 1 +@.TypeMapEntry.3196_from = private unnamed_addr constant [69 x i8] c"Android.Health.Connect.DataTypes.SkinTemperatureRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3197_to = private unnamed_addr constant [55 x i8] c"android/health/connect/datatypes/SkinTemperatureRecord\00", align 1 +@.TypeMapEntry.3198_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.SleepSessionRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3199_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/SleepSessionRecord$Builder\00", align 1 +@.TypeMapEntry.3200_from = private unnamed_addr constant [72 x i8] c"Android.Health.Connect.DataTypes.SleepSessionRecord+Stage, Mono.Android\00", align 1 +@.TypeMapEntry.3201_to = private unnamed_addr constant [58 x i8] c"android/health/connect/datatypes/SleepSessionRecord$Stage\00", align 1 +@.TypeMapEntry.3202_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.DataTypes.SleepSessionRecord+StageType, Mono.Android\00", align 1 +@.TypeMapEntry.3203_to = private unnamed_addr constant [62 x i8] c"android/health/connect/datatypes/SleepSessionRecord$StageType\00", align 1 +@.TypeMapEntry.3204_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.SleepSessionRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3205_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/SleepSessionRecord\00", align 1 +@.TypeMapEntry.3206_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.SpeedRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3207_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/SpeedRecord$Builder\00", align 1 +@.TypeMapEntry.3208_from = private unnamed_addr constant [77 x i8] c"Android.Health.Connect.DataTypes.SpeedRecord+SpeedRecordSample, Mono.Android\00", align 1 +@.TypeMapEntry.3209_to = private unnamed_addr constant [63 x i8] c"android/health/connect/datatypes/SpeedRecord$SpeedRecordSample\00", align 1 +@.TypeMapEntry.3210_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.DataTypes.SpeedRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3211_to = private unnamed_addr constant [45 x i8] c"android/health/connect/datatypes/SpeedRecord\00", align 1 +@.TypeMapEntry.3212_from = private unnamed_addr constant [74 x i8] c"Android.Health.Connect.DataTypes.StepsCadenceRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3213_to = private unnamed_addr constant [60 x i8] c"android/health/connect/datatypes/StepsCadenceRecord$Builder\00", align 1 +@.TypeMapEntry.3214_from = private unnamed_addr constant [91 x i8] c"Android.Health.Connect.DataTypes.StepsCadenceRecord+StepsCadenceRecordSample, Mono.Android\00", align 1 +@.TypeMapEntry.3215_to = private unnamed_addr constant [77 x i8] c"android/health/connect/datatypes/StepsCadenceRecord$StepsCadenceRecordSample\00", align 1 +@.TypeMapEntry.3216_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.StepsCadenceRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3217_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/StepsCadenceRecord\00", align 1 +@.TypeMapEntry.3218_from = private unnamed_addr constant [67 x i8] c"Android.Health.Connect.DataTypes.StepsRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3219_to = private unnamed_addr constant [53 x i8] c"android/health/connect/datatypes/StepsRecord$Builder\00", align 1 +@.TypeMapEntry.3220_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.DataTypes.StepsRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3221_to = private unnamed_addr constant [45 x i8] c"android/health/connect/datatypes/StepsRecord\00", align 1 +@.TypeMapEntry.3222_from = private unnamed_addr constant [81 x i8] c"Android.Health.Connect.DataTypes.TotalCaloriesBurnedRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3223_to = private unnamed_addr constant [67 x i8] c"android/health/connect/datatypes/TotalCaloriesBurnedRecord$Builder\00", align 1 +@.TypeMapEntry.3224_from = private unnamed_addr constant [73 x i8] c"Android.Health.Connect.DataTypes.TotalCaloriesBurnedRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3225_to = private unnamed_addr constant [59 x i8] c"android/health/connect/datatypes/TotalCaloriesBurnedRecord\00", align 1 +@.TypeMapEntry.3226_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.DataTypes.Units.BloodGlucose, Mono.Android\00", align 1 +@.TypeMapEntry.3227_to = private unnamed_addr constant [52 x i8] c"android/health/connect/datatypes/units/BloodGlucose\00", align 1 +@.TypeMapEntry.3228_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.Units.Energy, Mono.Android\00", align 1 +@.TypeMapEntry.3229_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/units/Energy\00", align 1 +@.TypeMapEntry.3230_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.Units.Length, Mono.Android\00", align 1 +@.TypeMapEntry.3231_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/units/Length\00", align 1 +@.TypeMapEntry.3232_from = private unnamed_addr constant [58 x i8] c"Android.Health.Connect.DataTypes.Units.Mass, Mono.Android\00", align 1 +@.TypeMapEntry.3233_to = private unnamed_addr constant [44 x i8] c"android/health/connect/datatypes/units/Mass\00", align 1 +@.TypeMapEntry.3234_from = private unnamed_addr constant [64 x i8] c"Android.Health.Connect.DataTypes.Units.Percentage, Mono.Android\00", align 1 +@.TypeMapEntry.3235_to = private unnamed_addr constant [50 x i8] c"android/health/connect/datatypes/units/Percentage\00", align 1 +@.TypeMapEntry.3236_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.DataTypes.Units.Power, Mono.Android\00", align 1 +@.TypeMapEntry.3237_to = private unnamed_addr constant [45 x i8] c"android/health/connect/datatypes/units/Power\00", align 1 +@.TypeMapEntry.3238_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.Units.Pressure, Mono.Android\00", align 1 +@.TypeMapEntry.3239_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/units/Pressure\00", align 1 +@.TypeMapEntry.3240_from = private unnamed_addr constant [65 x i8] c"Android.Health.Connect.DataTypes.Units.Temperature, Mono.Android\00", align 1 +@.TypeMapEntry.3241_to = private unnamed_addr constant [51 x i8] c"android/health/connect/datatypes/units/Temperature\00", align 1 +@.TypeMapEntry.3242_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.Units.TemperatureDelta, Mono.Android\00", align 1 +@.TypeMapEntry.3243_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/units/TemperatureDelta\00", align 1 +@.TypeMapEntry.3244_from = private unnamed_addr constant [62 x i8] c"Android.Health.Connect.DataTypes.Units.Velocity, Mono.Android\00", align 1 +@.TypeMapEntry.3245_to = private unnamed_addr constant [48 x i8] c"android/health/connect/datatypes/units/Velocity\00", align 1 +@.TypeMapEntry.3246_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.Units.Volume, Mono.Android\00", align 1 +@.TypeMapEntry.3247_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/units/Volume\00", align 1 +@.TypeMapEntry.3248_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.Vo2MaxRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3249_to = private unnamed_addr constant [54 x i8] c"android/health/connect/datatypes/Vo2MaxRecord$Builder\00", align 1 +@.TypeMapEntry.3250_from = private unnamed_addr constant [84 x i8] c"Android.Health.Connect.DataTypes.Vo2MaxRecord+Vo2MaxMeasurementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.3251_to = private unnamed_addr constant [70 x i8] c"android/health/connect/datatypes/Vo2MaxRecord$Vo2MaxMeasurementMethod\00", align 1 +@.TypeMapEntry.3252_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.Vo2MaxRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3253_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/Vo2MaxRecord\00", align 1 +@.TypeMapEntry.3254_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.DataTypes.WeightRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3255_to = private unnamed_addr constant [54 x i8] c"android/health/connect/datatypes/WeightRecord$Builder\00", align 1 +@.TypeMapEntry.3256_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.DataTypes.WeightRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3257_to = private unnamed_addr constant [46 x i8] c"android/health/connect/datatypes/WeightRecord\00", align 1 +@.TypeMapEntry.3258_from = private unnamed_addr constant [78 x i8] c"Android.Health.Connect.DataTypes.WheelchairPushesRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3259_to = private unnamed_addr constant [64 x i8] c"android/health/connect/datatypes/WheelchairPushesRecord$Builder\00", align 1 +@.TypeMapEntry.3260_from = private unnamed_addr constant [70 x i8] c"Android.Health.Connect.DataTypes.WheelchairPushesRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3261_to = private unnamed_addr constant [56 x i8] c"android/health/connect/datatypes/WheelchairPushesRecord\00", align 1 +@.TypeMapEntry.3262_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.HealthConnectException, Mono.Android\00", align 1 +@.TypeMapEntry.3263_to = private unnamed_addr constant [46 x i8] c"android/health/connect/HealthConnectException\00", align 1 +@.TypeMapEntry.3264_from = private unnamed_addr constant [58 x i8] c"Android.Health.Connect.HealthConnectManager, Mono.Android\00", align 1 +@.TypeMapEntry.3265_to = private unnamed_addr constant [44 x i8] c"android/health/connect/HealthConnectManager\00", align 1 +@.TypeMapEntry.3266_from = private unnamed_addr constant [55 x i8] c"Android.Health.Connect.HealthPermissions, Mono.Android\00", align 1 +@.TypeMapEntry.3267_to = private unnamed_addr constant [41 x i8] c"android/health/connect/HealthPermissions\00", align 1 +@.TypeMapEntry.3268_from = private unnamed_addr constant [54 x i8] c"Android.Health.Connect.ITimeRangeFilter, Mono.Android\00", align 1 +@.TypeMapEntry.3269_to = private unnamed_addr constant [39 x i8] c"android/health/connect/TimeRangeFilter\00", align 1 +@.TypeMapEntry.3270_from = private unnamed_addr constant [61 x i8] c"Android.Health.Connect.ITimeRangeFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3271_from = private unnamed_addr constant [59 x i8] c"Android.Health.Connect.InsertRecordsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.3272_to = private unnamed_addr constant [45 x i8] c"android/health/connect/InsertRecordsResponse\00", align 1 +@.TypeMapEntry.3273_from = private unnamed_addr constant [66 x i8] c"Android.Health.Connect.LocalTimeRangeFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3274_to = private unnamed_addr constant [52 x i8] c"android/health/connect/LocalTimeRangeFilter$Builder\00", align 1 +@.TypeMapEntry.3275_from = private unnamed_addr constant [58 x i8] c"Android.Health.Connect.LocalTimeRangeFilter, Mono.Android\00", align 1 +@.TypeMapEntry.3276_to = private unnamed_addr constant [44 x i8] c"android/health/connect/LocalTimeRangeFilter\00", align 1 +@.TypeMapEntry.3277_from = private unnamed_addr constant [56 x i8] c"Android.Health.Connect.ReadRecordsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.3278_to = private unnamed_addr constant [42 x i8] c"android/health/connect/ReadRecordsRequest\00", align 1 +@.TypeMapEntry.3279_from = private unnamed_addr constant [63 x i8] c"Android.Health.Connect.ReadRecordsRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3280_from = private unnamed_addr constant [76 x i8] c"Android.Health.Connect.ReadRecordsRequestUsingFilters+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3281_to = private unnamed_addr constant [62 x i8] c"android/health/connect/ReadRecordsRequestUsingFilters$Builder\00", align 1 +@.TypeMapEntry.3282_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.ReadRecordsRequestUsingFilters, Mono.Android\00", align 1 +@.TypeMapEntry.3283_to = private unnamed_addr constant [54 x i8] c"android/health/connect/ReadRecordsRequestUsingFilters\00", align 1 +@.TypeMapEntry.3284_from = private unnamed_addr constant [72 x i8] c"Android.Health.Connect.ReadRecordsRequestUsingIds+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3285_to = private unnamed_addr constant [58 x i8] c"android/health/connect/ReadRecordsRequestUsingIds$Builder\00", align 1 +@.TypeMapEntry.3286_from = private unnamed_addr constant [64 x i8] c"Android.Health.Connect.ReadRecordsRequestUsingIds, Mono.Android\00", align 1 +@.TypeMapEntry.3287_to = private unnamed_addr constant [50 x i8] c"android/health/connect/ReadRecordsRequestUsingIds\00", align 1 +@.TypeMapEntry.3288_from = private unnamed_addr constant [57 x i8] c"Android.Health.Connect.ReadRecordsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.3289_to = private unnamed_addr constant [43 x i8] c"android/health/connect/ReadRecordsResponse\00", align 1 +@.TypeMapEntry.3290_from = private unnamed_addr constant [52 x i8] c"Android.Health.Connect.RecordIdFilter, Mono.Android\00", align 1 +@.TypeMapEntry.3291_to = private unnamed_addr constant [38 x i8] c"android/health/connect/RecordIdFilter\00", align 1 +@.TypeMapEntry.3292_from = private unnamed_addr constant [68 x i8] c"Android.Health.Connect.TimeInstantRangeFilter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3293_to = private unnamed_addr constant [54 x i8] c"android/health/connect/TimeInstantRangeFilter$Builder\00", align 1 +@.TypeMapEntry.3294_from = private unnamed_addr constant [60 x i8] c"Android.Health.Connect.TimeInstantRangeFilter, Mono.Android\00", align 1 +@.TypeMapEntry.3295_to = private unnamed_addr constant [46 x i8] c"android/health/connect/TimeInstantRangeFilter\00", align 1 +@.TypeMapEntry.3296_from = private unnamed_addr constant [64 x i8] c"Android.Icu.Lang.UCharacter+BidiPairedBracketType, Mono.Android\00", align 1 +@.TypeMapEntry.3297_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/icu/lang/UCharacter$BidiPairedBracketType\00", align 1 +@.TypeMapEntry.3298_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Lang.UCharacter+DecompositionType, Mono.Android\00", align 1 +@.TypeMapEntry.3299_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/icu/lang/UCharacter$DecompositionType\00", align 1 +@.TypeMapEntry.3300_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Lang.UCharacter+EastAsianWidth, Mono.Android\00", align 1 +@.TypeMapEntry.3301_to = private unnamed_addr constant [57 x i8] c"mono/internal/android/icu/lang/UCharacter$EastAsianWidth\00", align 1 +@.TypeMapEntry.3302_from = private unnamed_addr constant [63 x i8] c"Android.Icu.Lang.UCharacter+GraphemeClusterBreak, Mono.Android\00", align 1 +@.TypeMapEntry.3303_to = private unnamed_addr constant [63 x i8] c"mono/internal/android/icu/lang/UCharacter$GraphemeClusterBreak\00", align 1 +@.TypeMapEntry.3304_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Lang.UCharacter+HangulSyllableType, Mono.Android\00", align 1 +@.TypeMapEntry.3305_to = private unnamed_addr constant [61 x i8] c"mono/internal/android/icu/lang/UCharacter$HangulSyllableType\00", align 1 +@.TypeMapEntry.3306_from = private unnamed_addr constant [66 x i8] c"Android.Icu.Lang.UCharacter+IndicPositionalCategory, Mono.Android\00", align 1 +@.TypeMapEntry.3307_to = private unnamed_addr constant [66 x i8] c"mono/internal/android/icu/lang/UCharacter$IndicPositionalCategory\00", align 1 +@.TypeMapEntry.3308_from = private unnamed_addr constant [64 x i8] c"Android.Icu.Lang.UCharacter+IndicSyllabicCategory, Mono.Android\00", align 1 +@.TypeMapEntry.3309_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/icu/lang/UCharacter$IndicSyllabicCategory\00", align 1 +@.TypeMapEntry.3310_from = private unnamed_addr constant [55 x i8] c"Android.Icu.Lang.UCharacter+JoiningGroup, Mono.Android\00", align 1 +@.TypeMapEntry.3311_to = private unnamed_addr constant [55 x i8] c"mono/internal/android/icu/lang/UCharacter$JoiningGroup\00", align 1 +@.TypeMapEntry.3312_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Lang.UCharacter+JoiningType, Mono.Android\00", align 1 +@.TypeMapEntry.3313_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/icu/lang/UCharacter$JoiningType\00", align 1 +@.TypeMapEntry.3314_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Lang.UCharacter+LineBreak, Mono.Android\00", align 1 +@.TypeMapEntry.3315_to = private unnamed_addr constant [52 x i8] c"mono/internal/android/icu/lang/UCharacter$LineBreak\00", align 1 +@.TypeMapEntry.3316_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Lang.UCharacter+NumericType, Mono.Android\00", align 1 +@.TypeMapEntry.3317_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/icu/lang/UCharacter$NumericType\00", align 1 +@.TypeMapEntry.3318_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Lang.UCharacter+SentenceBreak, Mono.Android\00", align 1 +@.TypeMapEntry.3319_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/icu/lang/UCharacter$SentenceBreak\00", align 1 +@.TypeMapEntry.3320_from = private unnamed_addr constant [55 x i8] c"Android.Icu.Lang.UCharacter+UnicodeBlock, Mono.Android\00", align 1 +@.TypeMapEntry.3321_to = private unnamed_addr constant [41 x i8] c"android/icu/lang/UCharacter$UnicodeBlock\00", align 1 +@.TypeMapEntry.3322_from = private unnamed_addr constant [62 x i8] c"Android.Icu.Lang.UCharacter+VerticalOrientation, Mono.Android\00", align 1 +@.TypeMapEntry.3323_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/icu/lang/UCharacter$VerticalOrientation\00", align 1 +@.TypeMapEntry.3324_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Lang.UCharacter+WordBreak, Mono.Android\00", align 1 +@.TypeMapEntry.3325_to = private unnamed_addr constant [52 x i8] c"mono/internal/android/icu/lang/UCharacter$WordBreak\00", align 1 +@.TypeMapEntry.3326_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Lang.UCharacter, Mono.Android\00", align 1 +@.TypeMapEntry.3327_to = private unnamed_addr constant [28 x i8] c"android/icu/lang/UCharacter\00", align 1 +@.TypeMapEntry.3328_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Lang.UCharacterCategory, Mono.Android\00", align 1 +@.TypeMapEntry.3329_to = private unnamed_addr constant [36 x i8] c"android/icu/lang/UCharacterCategory\00", align 1 +@.TypeMapEntry.3330_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Lang.UCharacterDirection, Mono.Android\00", align 1 +@.TypeMapEntry.3331_to = private unnamed_addr constant [37 x i8] c"android/icu/lang/UCharacterDirection\00", align 1 +@.TypeMapEntry.3332_from = private unnamed_addr constant [66 x i8] c"Android.Icu.Lang.UCharacterEnums+ECharacterCategory, Mono.Android\00", align 1 +@.TypeMapEntry.3333_to = private unnamed_addr constant [66 x i8] c"mono/internal/android/icu/lang/UCharacterEnums$ECharacterCategory\00", align 1 +@.TypeMapEntry.3334_from = private unnamed_addr constant [67 x i8] c"Android.Icu.Lang.UCharacterEnums+ECharacterDirection, Mono.Android\00", align 1 +@.TypeMapEntry.3335_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/icu/lang/UCharacterEnums$ECharacterDirection\00", align 1 +@.TypeMapEntry.3336_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Lang.UCharacterEnums, Mono.Android\00", align 1 +@.TypeMapEntry.3337_to = private unnamed_addr constant [33 x i8] c"android/icu/lang/UCharacterEnums\00", align 1 +@.TypeMapEntry.3338_from = private unnamed_addr constant [41 x i8] c"Android.Icu.Lang.UProperty, Mono.Android\00", align 1 +@.TypeMapEntry.3339_to = private unnamed_addr constant [41 x i8] c"mono/internal/android/icu/lang/UProperty\00", align 1 +@.TypeMapEntry.3340_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Lang.UPropertyNameChoice, Mono.Android\00", align 1 +@.TypeMapEntry.3341_to = private unnamed_addr constant [52 x i8] c"mono/internal/android/icu/lang/UProperty$NameChoice\00", align 1 +@.TypeMapEntry.3342_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Lang.UScript+ScriptUsage, Mono.Android\00", align 1 +@.TypeMapEntry.3343_to = private unnamed_addr constant [37 x i8] c"android/icu/lang/UScript$ScriptUsage\00", align 1 +@.TypeMapEntry.3344_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Lang.UScript, Mono.Android\00", align 1 +@.TypeMapEntry.3345_to = private unnamed_addr constant [25 x i8] c"android/icu/lang/UScript\00", align 1 +@.TypeMapEntry.3346_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Math.BigDecimal, Mono.Android\00", align 1 +@.TypeMapEntry.3347_to = private unnamed_addr constant [28 x i8] c"android/icu/math/BigDecimal\00", align 1 +@.TypeMapEntry.3348_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Math.MathContext, Mono.Android\00", align 1 +@.TypeMapEntry.3349_to = private unnamed_addr constant [29 x i8] c"android/icu/math/MathContext\00", align 1 +@.TypeMapEntry.3350_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Number.CompactNotation, Mono.Android\00", align 1 +@.TypeMapEntry.3351_to = private unnamed_addr constant [35 x i8] c"android/icu/number/CompactNotation\00", align 1 +@.TypeMapEntry.3352_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Number.CurrencyPrecision, Mono.Android\00", align 1 +@.TypeMapEntry.3353_to = private unnamed_addr constant [37 x i8] c"android/icu/number/CurrencyPrecision\00", align 1 +@.TypeMapEntry.3354_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Number.CurrencyPrecisionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3355_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Number.FormattedNumber, Mono.Android\00", align 1 +@.TypeMapEntry.3356_to = private unnamed_addr constant [35 x i8] c"android/icu/number/FormattedNumber\00", align 1 +@.TypeMapEntry.3357_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Number.FormattedNumberRange, Mono.Android\00", align 1 +@.TypeMapEntry.3358_to = private unnamed_addr constant [40 x i8] c"android/icu/number/FormattedNumberRange\00", align 1 +@.TypeMapEntry.3359_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Number.FractionPrecision, Mono.Android\00", align 1 +@.TypeMapEntry.3360_to = private unnamed_addr constant [37 x i8] c"android/icu/number/FractionPrecision\00", align 1 +@.TypeMapEntry.3361_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Number.FractionPrecisionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3362_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Number.IntegerWidth, Mono.Android\00", align 1 +@.TypeMapEntry.3363_to = private unnamed_addr constant [32 x i8] c"android/icu/number/IntegerWidth\00", align 1 +@.TypeMapEntry.3364_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Number.LocalizedNumberFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3365_to = private unnamed_addr constant [44 x i8] c"android/icu/number/LocalizedNumberFormatter\00", align 1 +@.TypeMapEntry.3366_from = private unnamed_addr constant [63 x i8] c"Android.Icu.Number.LocalizedNumberRangeFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3367_to = private unnamed_addr constant [49 x i8] c"android/icu/number/LocalizedNumberRangeFormatter\00", align 1 +@.TypeMapEntry.3368_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Number.Notation, Mono.Android\00", align 1 +@.TypeMapEntry.3369_to = private unnamed_addr constant [28 x i8] c"android/icu/number/Notation\00", align 1 +@.TypeMapEntry.3370_from = private unnamed_addr constant [73 x i8] c"Android.Icu.Number.NumberFormatter+DecimalSeparatorDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.3371_to = private unnamed_addr constant [59 x i8] c"android/icu/number/NumberFormatter$DecimalSeparatorDisplay\00", align 1 +@.TypeMapEntry.3372_from = private unnamed_addr constant [66 x i8] c"Android.Icu.Number.NumberFormatter+GroupingStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.3373_to = private unnamed_addr constant [52 x i8] c"android/icu/number/NumberFormatter$GroupingStrategy\00", align 1 +@.TypeMapEntry.3374_from = private unnamed_addr constant [66 x i8] c"Android.Icu.Number.NumberFormatter+RoundingPriority, Mono.Android\00", align 1 +@.TypeMapEntry.3375_to = private unnamed_addr constant [52 x i8] c"android/icu/number/NumberFormatter$RoundingPriority\00", align 1 +@.TypeMapEntry.3376_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Number.NumberFormatter+SignDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.3377_to = private unnamed_addr constant [47 x i8] c"android/icu/number/NumberFormatter$SignDisplay\00", align 1 +@.TypeMapEntry.3378_from = private unnamed_addr constant [69 x i8] c"Android.Icu.Number.NumberFormatter+TrailingZeroDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.3379_to = private unnamed_addr constant [55 x i8] c"android/icu/number/NumberFormatter$TrailingZeroDisplay\00", align 1 +@.TypeMapEntry.3380_from = private unnamed_addr constant [59 x i8] c"Android.Icu.Number.NumberFormatter+UnitWidth, Mono.Android\00", align 1 +@.TypeMapEntry.3381_to = private unnamed_addr constant [45 x i8] c"android/icu/number/NumberFormatter$UnitWidth\00", align 1 +@.TypeMapEntry.3382_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Number.NumberFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3383_to = private unnamed_addr constant [35 x i8] c"android/icu/number/NumberFormatter\00", align 1 +@.TypeMapEntry.3384_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Number.NumberFormatterSettings, Mono.Android\00", align 1 +@.TypeMapEntry.3385_to = private unnamed_addr constant [43 x i8] c"android/icu/number/NumberFormatterSettings\00", align 1 +@.TypeMapEntry.3386_from = private unnamed_addr constant [64 x i8] c"Android.Icu.Number.NumberFormatterSettingsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3387_from = private unnamed_addr constant [68 x i8] c"Android.Icu.Number.NumberRangeFormatter+RangeCollapse, Mono.Android\00", align 1 +@.TypeMapEntry.3388_to = private unnamed_addr constant [54 x i8] c"android/icu/number/NumberRangeFormatter$RangeCollapse\00", align 1 +@.TypeMapEntry.3389_from = private unnamed_addr constant [76 x i8] c"Android.Icu.Number.NumberRangeFormatter+RangeIdentityFallback, Mono.Android\00", align 1 +@.TypeMapEntry.3390_to = private unnamed_addr constant [62 x i8] c"android/icu/number/NumberRangeFormatter$RangeIdentityFallback\00", align 1 +@.TypeMapEntry.3391_from = private unnamed_addr constant [74 x i8] c"Android.Icu.Number.NumberRangeFormatter+RangeIdentityResult, Mono.Android\00", align 1 +@.TypeMapEntry.3392_to = private unnamed_addr constant [60 x i8] c"android/icu/number/NumberRangeFormatter$RangeIdentityResult\00", align 1 +@.TypeMapEntry.3393_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Number.NumberRangeFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3394_to = private unnamed_addr constant [40 x i8] c"android/icu/number/NumberRangeFormatter\00", align 1 +@.TypeMapEntry.3395_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Number.NumberRangeFormatterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3396_from = private unnamed_addr constant [62 x i8] c"Android.Icu.Number.NumberRangeFormatterSettings, Mono.Android\00", align 1 +@.TypeMapEntry.3397_to = private unnamed_addr constant [48 x i8] c"android/icu/number/NumberRangeFormatterSettings\00", align 1 +@.TypeMapEntry.3398_from = private unnamed_addr constant [69 x i8] c"Android.Icu.Number.NumberRangeFormatterSettingsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3399_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Number.Precision, Mono.Android\00", align 1 +@.TypeMapEntry.3400_to = private unnamed_addr constant [29 x i8] c"android/icu/number/Precision\00", align 1 +@.TypeMapEntry.3401_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Number.PrecisionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3402_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Number.Scale, Mono.Android\00", align 1 +@.TypeMapEntry.3403_to = private unnamed_addr constant [25 x i8] c"android/icu/number/Scale\00", align 1 +@.TypeMapEntry.3404_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Number.ScientificNotation, Mono.Android\00", align 1 +@.TypeMapEntry.3405_to = private unnamed_addr constant [38 x i8] c"android/icu/number/ScientificNotation\00", align 1 +@.TypeMapEntry.3406_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Number.SimpleNotation, Mono.Android\00", align 1 +@.TypeMapEntry.3407_to = private unnamed_addr constant [34 x i8] c"android/icu/number/SimpleNotation\00", align 1 +@.TypeMapEntry.3408_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Number.UnlocalizedNumberFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3409_to = private unnamed_addr constant [46 x i8] c"android/icu/number/UnlocalizedNumberFormatter\00", align 1 +@.TypeMapEntry.3410_from = private unnamed_addr constant [65 x i8] c"Android.Icu.Number.UnlocalizedNumberRangeFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3411_to = private unnamed_addr constant [51 x i8] c"android/icu/number/UnlocalizedNumberRangeFormatter\00", align 1 +@.TypeMapEntry.3412_from = private unnamed_addr constant [64 x i8] c"Android.Icu.Text.AlphabeticIndex+Bucket+LabelType, Mono.Android\00", align 1 +@.TypeMapEntry.3413_to = private unnamed_addr constant [50 x i8] c"android/icu/text/AlphabeticIndex$Bucket$LabelType\00", align 1 +@.TypeMapEntry.3414_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.AlphabeticIndex+Bucket, Mono.Android\00", align 1 +@.TypeMapEntry.3415_to = private unnamed_addr constant [40 x i8] c"android/icu/text/AlphabeticIndex$Bucket\00", align 1 +@.TypeMapEntry.3416_from = private unnamed_addr constant [62 x i8] c"Android.Icu.Text.AlphabeticIndex+ImmutableIndex, Mono.Android\00", align 1 +@.TypeMapEntry.3417_to = private unnamed_addr constant [48 x i8] c"android/icu/text/AlphabeticIndex$ImmutableIndex\00", align 1 +@.TypeMapEntry.3418_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.AlphabeticIndex+Record, Mono.Android\00", align 1 +@.TypeMapEntry.3419_to = private unnamed_addr constant [40 x i8] c"android/icu/text/AlphabeticIndex$Record\00", align 1 +@.TypeMapEntry.3420_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Text.AlphabeticIndex, Mono.Android\00", align 1 +@.TypeMapEntry.3421_to = private unnamed_addr constant [33 x i8] c"android/icu/text/AlphabeticIndex\00", align 1 +@.TypeMapEntry.3422_from = private unnamed_addr constant [36 x i8] c"Android.Icu.Text.Bidi, Mono.Android\00", align 1 +@.TypeMapEntry.3423_to = private unnamed_addr constant [22 x i8] c"android/icu/text/Bidi\00", align 1 +@.TypeMapEntry.3424_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.BidiClassifier, Mono.Android\00", align 1 +@.TypeMapEntry.3425_to = private unnamed_addr constant [32 x i8] c"android/icu/text/BidiClassifier\00", align 1 +@.TypeMapEntry.3426_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Text.BidiRun, Mono.Android\00", align 1 +@.TypeMapEntry.3427_to = private unnamed_addr constant [25 x i8] c"android/icu/text/BidiRun\00", align 1 +@.TypeMapEntry.3428_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.BreakIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3429_to = private unnamed_addr constant [31 x i8] c"android/icu/text/BreakIterator\00", align 1 +@.TypeMapEntry.3430_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.BreakIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3431_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.CaseMap+Fold, Mono.Android\00", align 1 +@.TypeMapEntry.3432_to = private unnamed_addr constant [30 x i8] c"android/icu/text/CaseMap$Fold\00", align 1 +@.TypeMapEntry.3433_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.CaseMap+Lower, Mono.Android\00", align 1 +@.TypeMapEntry.3434_to = private unnamed_addr constant [31 x i8] c"android/icu/text/CaseMap$Lower\00", align 1 +@.TypeMapEntry.3435_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.CaseMap+Title, Mono.Android\00", align 1 +@.TypeMapEntry.3436_to = private unnamed_addr constant [31 x i8] c"android/icu/text/CaseMap$Title\00", align 1 +@.TypeMapEntry.3437_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.CaseMap+Upper, Mono.Android\00", align 1 +@.TypeMapEntry.3438_to = private unnamed_addr constant [31 x i8] c"android/icu/text/CaseMap$Upper\00", align 1 +@.TypeMapEntry.3439_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Text.CaseMap, Mono.Android\00", align 1 +@.TypeMapEntry.3440_to = private unnamed_addr constant [25 x i8] c"android/icu/text/CaseMap\00", align 1 +@.TypeMapEntry.3441_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.CaseMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3442_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.CollationElementIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3443_to = private unnamed_addr constant [42 x i8] c"android/icu/text/CollationElementIterator\00", align 1 +@.TypeMapEntry.3444_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.CollationKey+BoundMode, Mono.Android\00", align 1 +@.TypeMapEntry.3445_to = private unnamed_addr constant [40 x i8] c"android/icu/text/CollationKey$BoundMode\00", align 1 +@.TypeMapEntry.3446_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.CollationKey, Mono.Android\00", align 1 +@.TypeMapEntry.3447_to = private unnamed_addr constant [30 x i8] c"android/icu/text/CollationKey\00", align 1 +@.TypeMapEntry.3448_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Text.Collator+ReorderCodes, Mono.Android\00", align 1 +@.TypeMapEntry.3449_to = private unnamed_addr constant [53 x i8] c"mono/internal/android/icu/text/Collator$ReorderCodes\00", align 1 +@.TypeMapEntry.3450_from = private unnamed_addr constant [40 x i8] c"Android.Icu.Text.Collator, Mono.Android\00", align 1 +@.TypeMapEntry.3451_to = private unnamed_addr constant [26 x i8] c"android/icu/text/Collator\00", align 1 +@.TypeMapEntry.3452_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Text.CollatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3453_from = private unnamed_addr constant [65 x i8] c"Android.Icu.Text.CompactDecimalFormat+CompactStyle, Mono.Android\00", align 1 +@.TypeMapEntry.3454_to = private unnamed_addr constant [51 x i8] c"android/icu/text/CompactDecimalFormat$CompactStyle\00", align 1 +@.TypeMapEntry.3455_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.CompactDecimalFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3456_to = private unnamed_addr constant [38 x i8] c"android/icu/text/CompactDecimalFormat\00", align 1 +@.TypeMapEntry.3457_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.ConstrainedFieldPosition, Mono.Android\00", align 1 +@.TypeMapEntry.3458_to = private unnamed_addr constant [42 x i8] c"android/icu/text/ConstrainedFieldPosition\00", align 1 +@.TypeMapEntry.3459_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.CurrencyPluralInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3460_to = private unnamed_addr constant [36 x i8] c"android/icu/text/CurrencyPluralInfo\00", align 1 +@.TypeMapEntry.3461_from = private unnamed_addr constant [59 x i8] c"Android.Icu.Text.DateFormat+BooleanAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.3462_to = private unnamed_addr constant [45 x i8] c"android/icu/text/DateFormat$BooleanAttribute\00", align 1 +@.TypeMapEntry.3463_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Text.DateFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.3464_to = private unnamed_addr constant [34 x i8] c"android/icu/text/DateFormat$Field\00", align 1 +@.TypeMapEntry.3465_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.DateFormat+HourCycle, Mono.Android\00", align 1 +@.TypeMapEntry.3466_to = private unnamed_addr constant [38 x i8] c"android/icu/text/DateFormat$HourCycle\00", align 1 +@.TypeMapEntry.3467_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Text.DateFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3468_to = private unnamed_addr constant [28 x i8] c"android/icu/text/DateFormat\00", align 1 +@.TypeMapEntry.3469_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Text.DateFormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3470_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Text.DateFormatSymbols, Mono.Android\00", align 1 +@.TypeMapEntry.3471_to = private unnamed_addr constant [35 x i8] c"android/icu/text/DateFormatSymbols\00", align 1 +@.TypeMapEntry.3472_from = private unnamed_addr constant [72 x i8] c"Android.Icu.Text.DateIntervalFormat+FormattedDateInterval, Mono.Android\00", align 1 +@.TypeMapEntry.3473_to = private unnamed_addr constant [58 x i8] c"android/icu/text/DateIntervalFormat$FormattedDateInterval\00", align 1 +@.TypeMapEntry.3474_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.DateIntervalFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3475_to = private unnamed_addr constant [36 x i8] c"android/icu/text/DateIntervalFormat\00", align 1 +@.TypeMapEntry.3476_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Text.DateIntervalInfo+PatternInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3477_to = private unnamed_addr constant [46 x i8] c"android/icu/text/DateIntervalInfo$PatternInfo\00", align 1 +@.TypeMapEntry.3478_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Text.DateIntervalInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3479_to = private unnamed_addr constant [34 x i8] c"android/icu/text/DateIntervalInfo\00", align 1 +@.TypeMapEntry.3480_from = private unnamed_addr constant [69 x i8] c"Android.Icu.Text.DateTimePatternGenerator+DisplayWidth, Mono.Android\00", align 1 +@.TypeMapEntry.3481_to = private unnamed_addr constant [55 x i8] c"android/icu/text/DateTimePatternGenerator$DisplayWidth\00", align 1 +@.TypeMapEntry.3482_from = private unnamed_addr constant [68 x i8] c"Android.Icu.Text.DateTimePatternGenerator+PatternInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3483_to = private unnamed_addr constant [54 x i8] c"android/icu/text/DateTimePatternGenerator$PatternInfo\00", align 1 +@.TypeMapEntry.3484_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.DateTimePatternGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.3485_to = private unnamed_addr constant [42 x i8] c"android/icu/text/DateTimePatternGenerator\00", align 1 +@.TypeMapEntry.3486_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.DecimalFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3487_to = private unnamed_addr constant [31 x i8] c"android/icu/text/DecimalFormat\00", align 1 +@.TypeMapEntry.3488_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.DecimalFormatSymbols, Mono.Android\00", align 1 +@.TypeMapEntry.3489_to = private unnamed_addr constant [38 x i8] c"android/icu/text/DecimalFormatSymbols\00", align 1 +@.TypeMapEntry.3490_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.DisplayContext+Type, Mono.Android\00", align 1 +@.TypeMapEntry.3491_to = private unnamed_addr constant [37 x i8] c"android/icu/text/DisplayContext$Type\00", align 1 +@.TypeMapEntry.3492_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.DisplayContext, Mono.Android\00", align 1 +@.TypeMapEntry.3493_to = private unnamed_addr constant [32 x i8] c"android/icu/text/DisplayContext\00", align 1 +@.TypeMapEntry.3494_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.DisplayOptions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3495_to = private unnamed_addr constant [40 x i8] c"android/icu/text/DisplayOptions$Builder\00", align 1 +@.TypeMapEntry.3496_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Text.DisplayOptions+Capitalization, Mono.Android\00", align 1 +@.TypeMapEntry.3497_to = private unnamed_addr constant [47 x i8] c"android/icu/text/DisplayOptions$Capitalization\00", align 1 +@.TypeMapEntry.3498_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Text.DisplayOptions+DisplayLength, Mono.Android\00", align 1 +@.TypeMapEntry.3499_to = private unnamed_addr constant [46 x i8] c"android/icu/text/DisplayOptions$DisplayLength\00", align 1 +@.TypeMapEntry.3500_from = private unnamed_addr constant [62 x i8] c"Android.Icu.Text.DisplayOptions+GrammaticalCase, Mono.Android\00", align 1 +@.TypeMapEntry.3501_to = private unnamed_addr constant [48 x i8] c"android/icu/text/DisplayOptions$GrammaticalCase\00", align 1 +@.TypeMapEntry.3502_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.DisplayOptions+NameStyle, Mono.Android\00", align 1 +@.TypeMapEntry.3503_to = private unnamed_addr constant [42 x i8] c"android/icu/text/DisplayOptions$NameStyle\00", align 1 +@.TypeMapEntry.3504_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.DisplayOptions+NounClass, Mono.Android\00", align 1 +@.TypeMapEntry.3505_to = private unnamed_addr constant [42 x i8] c"android/icu/text/DisplayOptions$NounClass\00", align 1 +@.TypeMapEntry.3506_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Text.DisplayOptions+PluralCategory, Mono.Android\00", align 1 +@.TypeMapEntry.3507_to = private unnamed_addr constant [47 x i8] c"android/icu/text/DisplayOptions$PluralCategory\00", align 1 +@.TypeMapEntry.3508_from = private unnamed_addr constant [65 x i8] c"Android.Icu.Text.DisplayOptions+SubstituteHandling, Mono.Android\00", align 1 +@.TypeMapEntry.3509_to = private unnamed_addr constant [51 x i8] c"android/icu/text/DisplayOptions$SubstituteHandling\00", align 1 +@.TypeMapEntry.3510_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.DisplayOptions, Mono.Android\00", align 1 +@.TypeMapEntry.3511_to = private unnamed_addr constant [32 x i8] c"android/icu/text/DisplayOptions\00", align 1 +@.TypeMapEntry.3512_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.Edits+Iterator, Mono.Android\00", align 1 +@.TypeMapEntry.3513_to = private unnamed_addr constant [32 x i8] c"android/icu/text/Edits$Iterator\00", align 1 +@.TypeMapEntry.3514_from = private unnamed_addr constant [37 x i8] c"Android.Icu.Text.Edits, Mono.Android\00", align 1 +@.TypeMapEntry.3515_to = private unnamed_addr constant [23 x i8] c"android/icu/text/Edits\00", align 1 +@.TypeMapEntry.3516_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Text.IDNA+Error, Mono.Android\00", align 1 +@.TypeMapEntry.3517_to = private unnamed_addr constant [28 x i8] c"android/icu/text/IDNA$Error\00", align 1 +@.TypeMapEntry.3518_from = private unnamed_addr constant [41 x i8] c"Android.Icu.Text.IDNA+Info, Mono.Android\00", align 1 +@.TypeMapEntry.3519_to = private unnamed_addr constant [27 x i8] c"android/icu/text/IDNA$Info\00", align 1 +@.TypeMapEntry.3520_from = private unnamed_addr constant [36 x i8] c"Android.Icu.Text.IDNA, Mono.Android\00", align 1 +@.TypeMapEntry.3521_to = private unnamed_addr constant [22 x i8] c"android/icu/text/IDNA\00", align 1 +@.TypeMapEntry.3522_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Text.IDNAInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3523_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Text.IFormattedValue, Mono.Android\00", align 1 +@.TypeMapEntry.3524_to = private unnamed_addr constant [32 x i8] c"android/icu/text/FormattedValue\00", align 1 +@.TypeMapEntry.3525_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.IFormattedValueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3526_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.IReplaceable, Mono.Android\00", align 1 +@.TypeMapEntry.3527_to = private unnamed_addr constant [29 x i8] c"android/icu/text/Replaceable\00", align 1 +@.TypeMapEntry.3528_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.IReplaceableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3529_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.ISymbolTable, Mono.Android\00", align 1 +@.TypeMapEntry.3530_to = private unnamed_addr constant [29 x i8] c"android/icu/text/SymbolTable\00", align 1 +@.TypeMapEntry.3531_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.ISymbolTableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3532_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Text.IUnicodeMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.3533_to = private unnamed_addr constant [32 x i8] c"android/icu/text/UnicodeMatcher\00", align 1 +@.TypeMapEntry.3534_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.IUnicodeMatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3535_from = private unnamed_addr constant [59 x i8] c"Android.Icu.Text.ListFormatter+FormattedList, Mono.Android\00", align 1 +@.TypeMapEntry.3536_to = private unnamed_addr constant [45 x i8] c"android/icu/text/ListFormatter$FormattedList\00", align 1 +@.TypeMapEntry.3537_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.ListFormatter+Type, Mono.Android\00", align 1 +@.TypeMapEntry.3538_to = private unnamed_addr constant [36 x i8] c"android/icu/text/ListFormatter$Type\00", align 1 +@.TypeMapEntry.3539_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.ListFormatter+Width, Mono.Android\00", align 1 +@.TypeMapEntry.3540_to = private unnamed_addr constant [37 x i8] c"android/icu/text/ListFormatter$Width\00", align 1 +@.TypeMapEntry.3541_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.ListFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3542_to = private unnamed_addr constant [31 x i8] c"android/icu/text/ListFormatter\00", align 1 +@.TypeMapEntry.3543_from = private unnamed_addr constant [66 x i8] c"Android.Icu.Text.LocaleDisplayNames+DialectHandling, Mono.Android\00", align 1 +@.TypeMapEntry.3544_to = private unnamed_addr constant [52 x i8] c"android/icu/text/LocaleDisplayNames$DialectHandling\00", align 1 +@.TypeMapEntry.3545_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Text.LocaleDisplayNames+UiListItem, Mono.Android\00", align 1 +@.TypeMapEntry.3546_to = private unnamed_addr constant [47 x i8] c"android/icu/text/LocaleDisplayNames$UiListItem\00", align 1 +@.TypeMapEntry.3547_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.LocaleDisplayNames, Mono.Android\00", align 1 +@.TypeMapEntry.3548_to = private unnamed_addr constant [36 x i8] c"android/icu/text/LocaleDisplayNames\00", align 1 +@.TypeMapEntry.3549_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Text.LocaleDisplayNamesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3550_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Text.MeasureFormat+FormatWidth, Mono.Android\00", align 1 +@.TypeMapEntry.3551_to = private unnamed_addr constant [43 x i8] c"android/icu/text/MeasureFormat$FormatWidth\00", align 1 +@.TypeMapEntry.3552_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.MeasureFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3553_to = private unnamed_addr constant [31 x i8] c"android/icu/text/MeasureFormat\00", align 1 +@.TypeMapEntry.3554_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.MessageFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.3555_to = private unnamed_addr constant [37 x i8] c"android/icu/text/MessageFormat$Field\00", align 1 +@.TypeMapEntry.3556_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.MessageFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3557_to = private unnamed_addr constant [31 x i8] c"android/icu/text/MessageFormat\00", align 1 +@.TypeMapEntry.3558_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Text.MessagePattern+ApostropheMode, Mono.Android\00", align 1 +@.TypeMapEntry.3559_to = private unnamed_addr constant [47 x i8] c"android/icu/text/MessagePattern$ApostropheMode\00", align 1 +@.TypeMapEntry.3560_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.MessagePattern+ArgType, Mono.Android\00", align 1 +@.TypeMapEntry.3561_to = private unnamed_addr constant [40 x i8] c"android/icu/text/MessagePattern$ArgType\00", align 1 +@.TypeMapEntry.3562_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.MessagePattern+Part+Type, Mono.Android\00", align 1 +@.TypeMapEntry.3563_to = private unnamed_addr constant [42 x i8] c"android/icu/text/MessagePattern$Part$Type\00", align 1 +@.TypeMapEntry.3564_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.MessagePattern+Part, Mono.Android\00", align 1 +@.TypeMapEntry.3565_to = private unnamed_addr constant [37 x i8] c"android/icu/text/MessagePattern$Part\00", align 1 +@.TypeMapEntry.3566_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.MessagePattern, Mono.Android\00", align 1 +@.TypeMapEntry.3567_to = private unnamed_addr constant [32 x i8] c"android/icu/text/MessagePattern\00", align 1 +@.TypeMapEntry.3568_from = private unnamed_addr constant [59 x i8] c"Android.Icu.Text.Normalizer+QuickCheckResult, Mono.Android\00", align 1 +@.TypeMapEntry.3569_to = private unnamed_addr constant [45 x i8] c"android/icu/text/Normalizer$QuickCheckResult\00", align 1 +@.TypeMapEntry.3570_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Text.Normalizer, Mono.Android\00", align 1 +@.TypeMapEntry.3571_to = private unnamed_addr constant [28 x i8] c"android/icu/text/Normalizer\00", align 1 +@.TypeMapEntry.3572_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Text.Normalizer2+Mode, Mono.Android\00", align 1 +@.TypeMapEntry.3573_to = private unnamed_addr constant [34 x i8] c"android/icu/text/Normalizer2$Mode\00", align 1 +@.TypeMapEntry.3574_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Text.Normalizer2, Mono.Android\00", align 1 +@.TypeMapEntry.3575_to = private unnamed_addr constant [29 x i8] c"android/icu/text/Normalizer2\00", align 1 +@.TypeMapEntry.3576_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.Normalizer2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.3577_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.NumberFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.3578_to = private unnamed_addr constant [36 x i8] c"android/icu/text/NumberFormat$Field\00", align 1 +@.TypeMapEntry.3579_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.NumberFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3580_to = private unnamed_addr constant [30 x i8] c"android/icu/text/NumberFormat\00", align 1 +@.TypeMapEntry.3581_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Text.NumberFormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3582_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Text.NumberingSystem, Mono.Android\00", align 1 +@.TypeMapEntry.3583_to = private unnamed_addr constant [33 x i8] c"android/icu/text/NumberingSystem\00", align 1 +@.TypeMapEntry.3584_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.PluralFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3585_to = private unnamed_addr constant [30 x i8] c"android/icu/text/PluralFormat\00", align 1 +@.TypeMapEntry.3586_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.PluralRules+PluralType, Mono.Android\00", align 1 +@.TypeMapEntry.3587_to = private unnamed_addr constant [40 x i8] c"android/icu/text/PluralRules$PluralType\00", align 1 +@.TypeMapEntry.3588_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Text.PluralRules, Mono.Android\00", align 1 +@.TypeMapEntry.3589_to = private unnamed_addr constant [29 x i8] c"android/icu/text/PluralRules\00", align 1 +@.TypeMapEntry.3590_from = private unnamed_addr constant [70 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+AbsoluteUnit, Mono.Android\00", align 1 +@.TypeMapEntry.3591_to = private unnamed_addr constant [56 x i8] c"android/icu/text/RelativeDateTimeFormatter$AbsoluteUnit\00", align 1 +@.TypeMapEntry.3592_from = private unnamed_addr constant [67 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+Direction, Mono.Android\00", align 1 +@.TypeMapEntry.3593_to = private unnamed_addr constant [53 x i8] c"android/icu/text/RelativeDateTimeFormatter$Direction\00", align 1 +@.TypeMapEntry.3594_from = private unnamed_addr constant [83 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+FormattedRelativeDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.3595_to = private unnamed_addr constant [69 x i8] c"android/icu/text/RelativeDateTimeFormatter$FormattedRelativeDateTime\00", align 1 +@.TypeMapEntry.3596_from = private unnamed_addr constant [78 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+RelativeDateTimeUnit, Mono.Android\00", align 1 +@.TypeMapEntry.3597_to = private unnamed_addr constant [64 x i8] c"android/icu/text/RelativeDateTimeFormatter$RelativeDateTimeUnit\00", align 1 +@.TypeMapEntry.3598_from = private unnamed_addr constant [70 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+RelativeUnit, Mono.Android\00", align 1 +@.TypeMapEntry.3599_to = private unnamed_addr constant [56 x i8] c"android/icu/text/RelativeDateTimeFormatter$RelativeUnit\00", align 1 +@.TypeMapEntry.3600_from = private unnamed_addr constant [63 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter+Style, Mono.Android\00", align 1 +@.TypeMapEntry.3601_to = private unnamed_addr constant [49 x i8] c"android/icu/text/RelativeDateTimeFormatter$Style\00", align 1 +@.TypeMapEntry.3602_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Text.RelativeDateTimeFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3603_to = private unnamed_addr constant [43 x i8] c"android/icu/text/RelativeDateTimeFormatter\00", align 1 +@.TypeMapEntry.3604_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Text.RuleBasedCollator, Mono.Android\00", align 1 +@.TypeMapEntry.3605_to = private unnamed_addr constant [35 x i8] c"android/icu/text/RuleBasedCollator\00", align 1 +@.TypeMapEntry.3606_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Text.ScientificNumberFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.3607_to = private unnamed_addr constant [43 x i8] c"android/icu/text/ScientificNumberFormatter\00", align 1 +@.TypeMapEntry.3608_from = private unnamed_addr constant [68 x i8] c"Android.Icu.Text.SearchIterator+ElementComparisonType, Mono.Android\00", align 1 +@.TypeMapEntry.3609_to = private unnamed_addr constant [54 x i8] c"android/icu/text/SearchIterator$ElementComparisonType\00", align 1 +@.TypeMapEntry.3610_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.SearchIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3611_to = private unnamed_addr constant [32 x i8] c"android/icu/text/SearchIterator\00", align 1 +@.TypeMapEntry.3612_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Text.SearchIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3613_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.SelectFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3614_to = private unnamed_addr constant [30 x i8] c"android/icu/text/SelectFormat\00", align 1 +@.TypeMapEntry.3615_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Text.SimpleDateFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3616_to = private unnamed_addr constant [34 x i8] c"android/icu/text/SimpleDateFormat\00", align 1 +@.TypeMapEntry.3617_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.StringPrepParseException, Mono.Android\00", align 1 +@.TypeMapEntry.3618_to = private unnamed_addr constant [42 x i8] c"android/icu/text/StringPrepParseException\00", align 1 +@.TypeMapEntry.3619_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Text.StringSearch, Mono.Android\00", align 1 +@.TypeMapEntry.3620_to = private unnamed_addr constant [30 x i8] c"android/icu/text/StringSearch\00", align 1 +@.TypeMapEntry.3621_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Text.SymbolTable, Mono.Android\00", align 1 +@.TypeMapEntry.3622_to = private unnamed_addr constant [43 x i8] c"mono/internal/android/icu/text/SymbolTable\00", align 1 +@.TypeMapEntry.3623_from = private unnamed_addr constant [67 x i8] c"Android.Icu.Text.TimeZoneFormat+GMTOffsetPatternType, Mono.Android\00", align 1 +@.TypeMapEntry.3624_to = private unnamed_addr constant [53 x i8] c"android/icu/text/TimeZoneFormat$GMTOffsetPatternType\00", align 1 +@.TypeMapEntry.3625_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Text.TimeZoneFormat+ParseOption, Mono.Android\00", align 1 +@.TypeMapEntry.3626_to = private unnamed_addr constant [44 x i8] c"android/icu/text/TimeZoneFormat$ParseOption\00", align 1 +@.TypeMapEntry.3627_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.TimeZoneFormat+Style, Mono.Android\00", align 1 +@.TypeMapEntry.3628_to = private unnamed_addr constant [38 x i8] c"android/icu/text/TimeZoneFormat$Style\00", align 1 +@.TypeMapEntry.3629_from = private unnamed_addr constant [55 x i8] c"Android.Icu.Text.TimeZoneFormat+TimeType, Mono.Android\00", align 1 +@.TypeMapEntry.3630_to = private unnamed_addr constant [41 x i8] c"android/icu/text/TimeZoneFormat$TimeType\00", align 1 +@.TypeMapEntry.3631_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.TimeZoneFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3632_to = private unnamed_addr constant [32 x i8] c"android/icu/text/TimeZoneFormat\00", align 1 +@.TypeMapEntry.3633_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Text.TimeZoneNames+NameType, Mono.Android\00", align 1 +@.TypeMapEntry.3634_to = private unnamed_addr constant [40 x i8] c"android/icu/text/TimeZoneNames$NameType\00", align 1 +@.TypeMapEntry.3635_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.TimeZoneNames, Mono.Android\00", align 1 +@.TypeMapEntry.3636_to = private unnamed_addr constant [31 x i8] c"android/icu/text/TimeZoneNames\00", align 1 +@.TypeMapEntry.3637_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.TimeZoneNamesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3638_from = private unnamed_addr constant [55 x i8] c"Android.Icu.Text.Transliterator+Position, Mono.Android\00", align 1 +@.TypeMapEntry.3639_to = private unnamed_addr constant [41 x i8] c"android/icu/text/Transliterator$Position\00", align 1 +@.TypeMapEntry.3640_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.Transliterator, Mono.Android\00", align 1 +@.TypeMapEntry.3641_to = private unnamed_addr constant [32 x i8] c"android/icu/text/Transliterator\00", align 1 +@.TypeMapEntry.3642_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Text.TransliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3643_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.UCharacterIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3644_to = private unnamed_addr constant [36 x i8] c"android/icu/text/UCharacterIterator\00", align 1 +@.TypeMapEntry.3645_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Text.UCharacterIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3646_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Text.UFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3647_to = private unnamed_addr constant [25 x i8] c"android/icu/text/UFormat\00", align 1 +@.TypeMapEntry.3648_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.UFormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3649_from = private unnamed_addr constant [45 x i8] c"Android.Icu.Text.UnicodeFilter, Mono.Android\00", align 1 +@.TypeMapEntry.3650_to = private unnamed_addr constant [31 x i8] c"android/icu/text/UnicodeFilter\00", align 1 +@.TypeMapEntry.3651_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Text.UnicodeFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3652_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Text.UnicodeMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.3653_to = private unnamed_addr constant [46 x i8] c"mono/internal/android/icu/text/UnicodeMatcher\00", align 1 +@.TypeMapEntry.3654_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Text.UnicodeSet+ComparisonStyle, Mono.Android\00", align 1 +@.TypeMapEntry.3655_to = private unnamed_addr constant [44 x i8] c"android/icu/text/UnicodeSet$ComparisonStyle\00", align 1 +@.TypeMapEntry.3656_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Text.UnicodeSet+EntryRange, Mono.Android\00", align 1 +@.TypeMapEntry.3657_to = private unnamed_addr constant [39 x i8] c"android/icu/text/UnicodeSet$EntryRange\00", align 1 +@.TypeMapEntry.3658_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Text.UnicodeSet+SpanCondition, Mono.Android\00", align 1 +@.TypeMapEntry.3659_to = private unnamed_addr constant [42 x i8] c"android/icu/text/UnicodeSet$SpanCondition\00", align 1 +@.TypeMapEntry.3660_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Text.UnicodeSet, Mono.Android\00", align 1 +@.TypeMapEntry.3661_to = private unnamed_addr constant [28 x i8] c"android/icu/text/UnicodeSet\00", align 1 +@.TypeMapEntry.3662_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Text.UnicodeSetIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3663_to = private unnamed_addr constant [36 x i8] c"android/icu/text/UnicodeSetIterator\00", align 1 +@.TypeMapEntry.3664_from = private unnamed_addr constant [61 x i8] c"Android.Icu.Text.UnicodeSetSpanner+CountMethod, Mono.Android\00", align 1 +@.TypeMapEntry.3665_to = private unnamed_addr constant [47 x i8] c"android/icu/text/UnicodeSetSpanner$CountMethod\00", align 1 +@.TypeMapEntry.3666_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Text.UnicodeSetSpanner+TrimOption, Mono.Android\00", align 1 +@.TypeMapEntry.3667_to = private unnamed_addr constant [46 x i8] c"android/icu/text/UnicodeSetSpanner$TrimOption\00", align 1 +@.TypeMapEntry.3668_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Text.UnicodeSetSpanner, Mono.Android\00", align 1 +@.TypeMapEntry.3669_to = private unnamed_addr constant [35 x i8] c"android/icu/text/UnicodeSetSpanner\00", align 1 +@.TypeMapEntry.3670_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Util.BuddhistCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3671_to = private unnamed_addr constant [34 x i8] c"android/icu/util/BuddhistCalendar\00", align 1 +@.TypeMapEntry.3672_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Util.CECalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3673_to = private unnamed_addr constant [28 x i8] c"android/icu/util/CECalendar\00", align 1 +@.TypeMapEntry.3674_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Util.CECalendarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3675_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Util.Calendar+WeekData, Mono.Android\00", align 1 +@.TypeMapEntry.3676_to = private unnamed_addr constant [35 x i8] c"android/icu/util/Calendar$WeekData\00", align 1 +@.TypeMapEntry.3677_from = private unnamed_addr constant [40 x i8] c"Android.Icu.Util.Calendar, Mono.Android\00", align 1 +@.TypeMapEntry.3678_to = private unnamed_addr constant [26 x i8] c"android/icu/util/Calendar\00", align 1 +@.TypeMapEntry.3679_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Util.CalendarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3680_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Util.ChineseCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3681_to = private unnamed_addr constant [33 x i8] c"android/icu/util/ChineseCalendar\00", align 1 +@.TypeMapEntry.3682_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.CopticCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3683_to = private unnamed_addr constant [32 x i8] c"android/icu/util/CopticCalendar\00", align 1 +@.TypeMapEntry.3684_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Util.Currency+CurrencyUsage, Mono.Android\00", align 1 +@.TypeMapEntry.3685_to = private unnamed_addr constant [40 x i8] c"android/icu/util/Currency$CurrencyUsage\00", align 1 +@.TypeMapEntry.3686_from = private unnamed_addr constant [40 x i8] c"Android.Icu.Util.Currency, Mono.Android\00", align 1 +@.TypeMapEntry.3687_to = private unnamed_addr constant [26 x i8] c"android/icu/util/Currency\00", align 1 +@.TypeMapEntry.3688_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.CurrencyAmount, Mono.Android\00", align 1 +@.TypeMapEntry.3689_to = private unnamed_addr constant [32 x i8] c"android/icu/util/CurrencyAmount\00", align 1 +@.TypeMapEntry.3690_from = private unnamed_addr constant [44 x i8] c"Android.Icu.Util.DateInterval, Mono.Android\00", align 1 +@.TypeMapEntry.3691_to = private unnamed_addr constant [30 x i8] c"android/icu/util/DateInterval\00", align 1 +@.TypeMapEntry.3692_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Util.EthiopicCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3693_to = private unnamed_addr constant [34 x i8] c"android/icu/util/EthiopicCalendar\00", align 1 +@.TypeMapEntry.3694_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Util.GregorianCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3695_to = private unnamed_addr constant [35 x i8] c"android/icu/util/GregorianCalendar\00", align 1 +@.TypeMapEntry.3696_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.HebrewCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3697_to = private unnamed_addr constant [32 x i8] c"android/icu/util/HebrewCalendar\00", align 1 +@.TypeMapEntry.3698_from = private unnamed_addr constant [55 x i8] c"Android.Icu.Util.ICUUncheckedIOException, Mono.Android\00", align 1 +@.TypeMapEntry.3699_to = private unnamed_addr constant [41 x i8] c"android/icu/util/ICUUncheckedIOException\00", align 1 +@.TypeMapEntry.3700_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Util.IFreezable, Mono.Android\00", align 1 +@.TypeMapEntry.3701_to = private unnamed_addr constant [27 x i8] c"android/icu/util/Freezable\00", align 1 +@.TypeMapEntry.3702_from = private unnamed_addr constant [49 x i8] c"Android.Icu.Util.IFreezableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3703_from = private unnamed_addr constant [51 x i8] c"Android.Icu.Util.IRangeValueIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3704_to = private unnamed_addr constant [36 x i8] c"android/icu/util/RangeValueIterator\00", align 1 +@.TypeMapEntry.3705_from = private unnamed_addr constant [58 x i8] c"Android.Icu.Util.IRangeValueIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3706_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.IValueIterator, Mono.Android\00", align 1 +@.TypeMapEntry.3707_to = private unnamed_addr constant [31 x i8] c"android/icu/util/ValueIterator\00", align 1 +@.TypeMapEntry.3708_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Util.IValueIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3709_from = private unnamed_addr constant [56 x i8] c"Android.Icu.Util.IllformedLocaleException, Mono.Android\00", align 1 +@.TypeMapEntry.3710_to = private unnamed_addr constant [42 x i8] c"android/icu/util/IllformedLocaleException\00", align 1 +@.TypeMapEntry.3711_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.IndianCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3712_to = private unnamed_addr constant [32 x i8] c"android/icu/util/IndianCalendar\00", align 1 +@.TypeMapEntry.3713_from = private unnamed_addr constant [63 x i8] c"Android.Icu.Util.IslamicCalendar+CalculationType, Mono.Android\00", align 1 +@.TypeMapEntry.3714_to = private unnamed_addr constant [49 x i8] c"android/icu/util/IslamicCalendar$CalculationType\00", align 1 +@.TypeMapEntry.3715_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Util.IslamicCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3716_to = private unnamed_addr constant [33 x i8] c"android/icu/util/IslamicCalendar\00", align 1 +@.TypeMapEntry.3717_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Util.JapaneseCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3718_to = private unnamed_addr constant [34 x i8] c"android/icu/util/JapaneseCalendar\00", align 1 +@.TypeMapEntry.3719_from = private unnamed_addr constant [60 x i8] c"Android.Icu.Util.LocaleData+MeasurementSystem, Mono.Android\00", align 1 +@.TypeMapEntry.3720_to = private unnamed_addr constant [46 x i8] c"android/icu/util/LocaleData$MeasurementSystem\00", align 1 +@.TypeMapEntry.3721_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Util.LocaleData+PaperSize, Mono.Android\00", align 1 +@.TypeMapEntry.3722_to = private unnamed_addr constant [38 x i8] c"android/icu/util/LocaleData$PaperSize\00", align 1 +@.TypeMapEntry.3723_from = private unnamed_addr constant [42 x i8] c"Android.Icu.Util.LocaleData, Mono.Android\00", align 1 +@.TypeMapEntry.3724_to = private unnamed_addr constant [28 x i8] c"android/icu/util/LocaleData\00", align 1 +@.TypeMapEntry.3725_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Util.Measure, Mono.Android\00", align 1 +@.TypeMapEntry.3726_to = private unnamed_addr constant [25 x i8] c"android/icu/util/Measure\00", align 1 +@.TypeMapEntry.3727_from = private unnamed_addr constant [54 x i8] c"Android.Icu.Util.MeasureUnit+Complexity, Mono.Android\00", align 1 +@.TypeMapEntry.3728_to = private unnamed_addr constant [40 x i8] c"android/icu/util/MeasureUnit$Complexity\00", align 1 +@.TypeMapEntry.3729_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Util.MeasureUnit+MeasurePrefix, Mono.Android\00", align 1 +@.TypeMapEntry.3730_to = private unnamed_addr constant [43 x i8] c"android/icu/util/MeasureUnit$MeasurePrefix\00", align 1 +@.TypeMapEntry.3731_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Util.MeasureUnit, Mono.Android\00", align 1 +@.TypeMapEntry.3732_to = private unnamed_addr constant [29 x i8] c"android/icu/util/MeasureUnit\00", align 1 +@.TypeMapEntry.3733_from = private unnamed_addr constant [38 x i8] c"Android.Icu.Util.Output, Mono.Android\00", align 1 +@.TypeMapEntry.3734_to = private unnamed_addr constant [24 x i8] c"android/icu/util/Output\00", align 1 +@.TypeMapEntry.3735_from = private unnamed_addr constant [57 x i8] c"Android.Icu.Util.RangeValueIteratorElement, Mono.Android\00", align 1 +@.TypeMapEntry.3736_to = private unnamed_addr constant [44 x i8] c"android/icu/util/RangeValueIterator$Element\00", align 1 +@.TypeMapEntry.3737_from = private unnamed_addr constant [46 x i8] c"Android.Icu.Util.TaiwanCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.3738_to = private unnamed_addr constant [32 x i8] c"android/icu/util/TaiwanCalendar\00", align 1 +@.TypeMapEntry.3739_from = private unnamed_addr constant [40 x i8] c"Android.Icu.Util.TimeUnit, Mono.Android\00", align 1 +@.TypeMapEntry.3740_to = private unnamed_addr constant [26 x i8] c"android/icu/util/TimeUnit\00", align 1 +@.TypeMapEntry.3741_from = private unnamed_addr constant [59 x i8] c"Android.Icu.Util.TimeZone+SystemTimeZoneType, Mono.Android\00", align 1 +@.TypeMapEntry.3742_to = private unnamed_addr constant [45 x i8] c"android/icu/util/TimeZone$SystemTimeZoneType\00", align 1 +@.TypeMapEntry.3743_from = private unnamed_addr constant [40 x i8] c"Android.Icu.Util.TimeZone, Mono.Android\00", align 1 +@.TypeMapEntry.3744_to = private unnamed_addr constant [26 x i8] c"android/icu/util/TimeZone\00", align 1 +@.TypeMapEntry.3745_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Util.TimeZoneInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3746_from = private unnamed_addr constant [53 x i8] c"Android.Icu.Util.ULocale+AvailableType, Mono.Android\00", align 1 +@.TypeMapEntry.3747_to = private unnamed_addr constant [39 x i8] c"android/icu/util/ULocale$AvailableType\00", align 1 +@.TypeMapEntry.3748_from = private unnamed_addr constant [47 x i8] c"Android.Icu.Util.ULocale+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3749_to = private unnamed_addr constant [33 x i8] c"android/icu/util/ULocale$Builder\00", align 1 +@.TypeMapEntry.3750_from = private unnamed_addr constant [48 x i8] c"Android.Icu.Util.ULocale+Category, Mono.Android\00", align 1 +@.TypeMapEntry.3751_to = private unnamed_addr constant [34 x i8] c"android/icu/util/ULocale$Category\00", align 1 +@.TypeMapEntry.3752_from = private unnamed_addr constant [39 x i8] c"Android.Icu.Util.ULocale, Mono.Android\00", align 1 +@.TypeMapEntry.3753_to = private unnamed_addr constant [25 x i8] c"android/icu/util/ULocale\00", align 1 +@.TypeMapEntry.3754_from = private unnamed_addr constant [50 x i8] c"Android.Icu.Util.UniversalTimeScale, Mono.Android\00", align 1 +@.TypeMapEntry.3755_to = private unnamed_addr constant [36 x i8] c"android/icu/util/UniversalTimeScale\00", align 1 +@.TypeMapEntry.3756_from = private unnamed_addr constant [52 x i8] c"Android.Icu.Util.ValueIteratorElement, Mono.Android\00", align 1 +@.TypeMapEntry.3757_to = private unnamed_addr constant [39 x i8] c"android/icu/util/ValueIterator$Element\00", align 1 +@.TypeMapEntry.3758_from = private unnamed_addr constant [43 x i8] c"Android.Icu.Util.VersionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3759_to = private unnamed_addr constant [29 x i8] c"android/icu/util/VersionInfo\00", align 1 +@.TypeMapEntry.3760_from = private unnamed_addr constant [93 x i8] c"Android.InputMethodServices.AbstractInputMethodService+AbstractInputMethodImpl, Mono.Android\00", align 1 +@.TypeMapEntry.3761_to = private unnamed_addr constant [78 x i8] c"android/inputmethodservice/AbstractInputMethodService$AbstractInputMethodImpl\00", align 1 +@.TypeMapEntry.3762_from = private unnamed_addr constant [100 x i8] c"Android.InputMethodServices.AbstractInputMethodService+AbstractInputMethodImplInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3763_from = private unnamed_addr constant [100 x i8] c"Android.InputMethodServices.AbstractInputMethodService+AbstractInputMethodSessionImpl, Mono.Android\00", align 1 +@.TypeMapEntry.3764_to = private unnamed_addr constant [85 x i8] c"android/inputmethodservice/AbstractInputMethodService$AbstractInputMethodSessionImpl\00", align 1 +@.TypeMapEntry.3765_from = private unnamed_addr constant [107 x i8] c"Android.InputMethodServices.AbstractInputMethodService+AbstractInputMethodSessionImplInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3766_from = private unnamed_addr constant [69 x i8] c"Android.InputMethodServices.AbstractInputMethodService, Mono.Android\00", align 1 +@.TypeMapEntry.3767_to = private unnamed_addr constant [54 x i8] c"android/inputmethodservice/AbstractInputMethodService\00", align 1 +@.TypeMapEntry.3768_from = private unnamed_addr constant [76 x i8] c"Android.InputMethodServices.AbstractInputMethodServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3769_from = private unnamed_addr constant [58 x i8] c"Android.InputMethodServices.ExtractEditText, Mono.Android\00", align 1 +@.TypeMapEntry.3770_to = private unnamed_addr constant [43 x i8] c"android/inputmethodservice/ExtractEditText\00", align 1 +@.TypeMapEntry.3771_from = private unnamed_addr constant [77 x i8] c"Android.InputMethodServices.InputMethodService+InputMethodImpl, Mono.Android\00", align 1 +@.TypeMapEntry.3772_to = private unnamed_addr constant [62 x i8] c"android/inputmethodservice/InputMethodService$InputMethodImpl\00", align 1 +@.TypeMapEntry.3773_from = private unnamed_addr constant [84 x i8] c"Android.InputMethodServices.InputMethodService+InputMethodSessionImpl, Mono.Android\00", align 1 +@.TypeMapEntry.3774_to = private unnamed_addr constant [69 x i8] c"android/inputmethodservice/InputMethodService$InputMethodSessionImpl\00", align 1 +@.TypeMapEntry.3775_from = private unnamed_addr constant [68 x i8] c"Android.InputMethodServices.InputMethodService+Insets, Mono.Android\00", align 1 +@.TypeMapEntry.3776_to = private unnamed_addr constant [53 x i8] c"android/inputmethodservice/InputMethodService$Insets\00", align 1 +@.TypeMapEntry.3777_from = private unnamed_addr constant [61 x i8] c"Android.InputMethodServices.InputMethodService, Mono.Android\00", align 1 +@.TypeMapEntry.3778_to = private unnamed_addr constant [46 x i8] c"android/inputmethodservice/InputMethodService\00", align 1 +@.TypeMapEntry.3779_from = private unnamed_addr constant [55 x i8] c"Android.InputMethodServices.Keyboard+Key, Mono.Android\00", align 1 +@.TypeMapEntry.3780_to = private unnamed_addr constant [40 x i8] c"android/inputmethodservice/Keyboard$Key\00", align 1 +@.TypeMapEntry.3781_from = private unnamed_addr constant [55 x i8] c"Android.InputMethodServices.Keyboard+Row, Mono.Android\00", align 1 +@.TypeMapEntry.3782_to = private unnamed_addr constant [40 x i8] c"android/inputmethodservice/Keyboard$Row\00", align 1 +@.TypeMapEntry.3783_from = private unnamed_addr constant [51 x i8] c"Android.InputMethodServices.Keyboard, Mono.Android\00", align 1 +@.TypeMapEntry.3784_to = private unnamed_addr constant [36 x i8] c"android/inputmethodservice/Keyboard\00", align 1 +@.TypeMapEntry.3785_from = private unnamed_addr constant [81 x i8] c"Android.InputMethodServices.KeyboardView+IOnKeyboardActionListener, Mono.Android\00", align 1 +@.TypeMapEntry.3786_to = private unnamed_addr constant [65 x i8] c"android/inputmethodservice/KeyboardView$OnKeyboardActionListener\00", align 1 +@.TypeMapEntry.3787_from = private unnamed_addr constant [92 x i8] c"Android.InputMethodServices.KeyboardView+IOnKeyboardActionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3788_to = private unnamed_addr constant [81 x i8] c"mono/android/inputmethodservice/KeyboardView_OnKeyboardActionListenerImplementor\00", align 1 +@.TypeMapEntry.3789_from = private unnamed_addr constant [88 x i8] c"Android.InputMethodServices.KeyboardView+IOnKeyboardActionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3790_from = private unnamed_addr constant [55 x i8] c"Android.InputMethodServices.KeyboardView, Mono.Android\00", align 1 +@.TypeMapEntry.3791_to = private unnamed_addr constant [40 x i8] c"android/inputmethodservice/KeyboardView\00", align 1 +@.TypeMapEntry.3792_from = private unnamed_addr constant [40 x i8] c"Android.Locations.Address, Mono.Android\00", align 1 +@.TypeMapEntry.3793_to = private unnamed_addr constant [25 x i8] c"android/location/Address\00", align 1 +@.TypeMapEntry.3794_from = private unnamed_addr constant [59 x i8] c"Android.Locations.Altitude.AltitudeConverter, Mono.Android\00", align 1 +@.TypeMapEntry.3795_to = private unnamed_addr constant [44 x i8] c"android/location/altitude/AltitudeConverter\00", align 1 +@.TypeMapEntry.3796_from = private unnamed_addr constant [41 x i8] c"Android.Locations.Criteria, Mono.Android\00", align 1 +@.TypeMapEntry.3797_to = private unnamed_addr constant [26 x i8] c"android/location/Criteria\00", align 1 +@.TypeMapEntry.3798_from = private unnamed_addr constant [58 x i8] c"Android.Locations.Geocoder+IGeocodeListener, Mono.Android\00", align 1 +@.TypeMapEntry.3799_to = private unnamed_addr constant [42 x i8] c"android/location/Geocoder$GeocodeListener\00", align 1 +@.TypeMapEntry.3800_from = private unnamed_addr constant [69 x i8] c"Android.Locations.Geocoder+IGeocodeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3801_to = private unnamed_addr constant [58 x i8] c"mono/android/location/Geocoder_GeocodeListenerImplementor\00", align 1 +@.TypeMapEntry.3802_from = private unnamed_addr constant [65 x i8] c"Android.Locations.Geocoder+IGeocodeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3803_from = private unnamed_addr constant [41 x i8] c"Android.Locations.Geocoder, Mono.Android\00", align 1 +@.TypeMapEntry.3804_to = private unnamed_addr constant [26 x i8] c"android/location/Geocoder\00", align 1 +@.TypeMapEntry.3805_from = private unnamed_addr constant [56 x i8] c"Android.Locations.GnssAntennaInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3806_to = private unnamed_addr constant [41 x i8] c"android/location/GnssAntennaInfo$Builder\00", align 1 +@.TypeMapEntry.3807_from = private unnamed_addr constant [58 x i8] c"Android.Locations.GnssAntennaInfo+IListener, Mono.Android\00", align 1 +@.TypeMapEntry.3808_to = private unnamed_addr constant [42 x i8] c"android/location/GnssAntennaInfo$Listener\00", align 1 +@.TypeMapEntry.3809_from = private unnamed_addr constant [69 x i8] c"Android.Locations.GnssAntennaInfo+IListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3810_to = private unnamed_addr constant [58 x i8] c"mono/android/location/GnssAntennaInfo_ListenerImplementor\00", align 1 +@.TypeMapEntry.3811_from = private unnamed_addr constant [65 x i8] c"Android.Locations.GnssAntennaInfo+IListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3812_from = private unnamed_addr constant [66 x i8] c"Android.Locations.GnssAntennaInfo+PhaseCenterOffset, Mono.Android\00", align 1 +@.TypeMapEntry.3813_to = private unnamed_addr constant [51 x i8] c"android/location/GnssAntennaInfo$PhaseCenterOffset\00", align 1 +@.TypeMapEntry.3814_from = private unnamed_addr constant [69 x i8] c"Android.Locations.GnssAntennaInfo+SphericalCorrections, Mono.Android\00", align 1 +@.TypeMapEntry.3815_to = private unnamed_addr constant [54 x i8] c"android/location/GnssAntennaInfo$SphericalCorrections\00", align 1 +@.TypeMapEntry.3816_from = private unnamed_addr constant [48 x i8] c"Android.Locations.GnssAntennaInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3817_to = private unnamed_addr constant [33 x i8] c"android/location/GnssAntennaInfo\00", align 1 +@.TypeMapEntry.3818_from = private unnamed_addr constant [65 x i8] c"Android.Locations.GnssAutomaticGainControl+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3819_to = private unnamed_addr constant [50 x i8] c"android/location/GnssAutomaticGainControl$Builder\00", align 1 +@.TypeMapEntry.3820_from = private unnamed_addr constant [57 x i8] c"Android.Locations.GnssAutomaticGainControl, Mono.Android\00", align 1 +@.TypeMapEntry.3821_to = private unnamed_addr constant [42 x i8] c"android/location/GnssAutomaticGainControl\00", align 1 +@.TypeMapEntry.3822_from = private unnamed_addr constant [57 x i8] c"Android.Locations.GnssCapabilities+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3823_to = private unnamed_addr constant [42 x i8] c"android/location/GnssCapabilities$Builder\00", align 1 +@.TypeMapEntry.3824_from = private unnamed_addr constant [49 x i8] c"Android.Locations.GnssCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.3825_to = private unnamed_addr constant [34 x i8] c"android/location/GnssCapabilities\00", align 1 +@.TypeMapEntry.3826_from = private unnamed_addr constant [42 x i8] c"Android.Locations.GnssClock, Mono.Android\00", align 1 +@.TypeMapEntry.3827_to = private unnamed_addr constant [27 x i8] c"android/location/GnssClock\00", align 1 +@.TypeMapEntry.3828_from = private unnamed_addr constant [48 x i8] c"Android.Locations.GnssMeasurement, Mono.Android\00", align 1 +@.TypeMapEntry.3829_to = private unnamed_addr constant [33 x i8] c"android/location/GnssMeasurement\00", align 1 +@.TypeMapEntry.3830_from = private unnamed_addr constant [63 x i8] c"Android.Locations.GnssMeasurementRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3831_to = private unnamed_addr constant [48 x i8] c"android/location/GnssMeasurementRequest$Builder\00", align 1 +@.TypeMapEntry.3832_from = private unnamed_addr constant [55 x i8] c"Android.Locations.GnssMeasurementRequest, Mono.Android\00", align 1 +@.TypeMapEntry.3833_to = private unnamed_addr constant [40 x i8] c"android/location/GnssMeasurementRequest\00", align 1 +@.TypeMapEntry.3834_from = private unnamed_addr constant [62 x i8] c"Android.Locations.GnssMeasurementsEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3835_to = private unnamed_addr constant [47 x i8] c"android/location/GnssMeasurementsEvent$Builder\00", align 1 +@.TypeMapEntry.3836_from = private unnamed_addr constant [63 x i8] c"Android.Locations.GnssMeasurementsEvent+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.3837_to = private unnamed_addr constant [48 x i8] c"android/location/GnssMeasurementsEvent$Callback\00", align 1 +@.TypeMapEntry.3838_from = private unnamed_addr constant [70 x i8] c"Android.Locations.GnssMeasurementsEvent+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3839_from = private unnamed_addr constant [54 x i8] c"Android.Locations.GnssMeasurementsEvent, Mono.Android\00", align 1 +@.TypeMapEntry.3840_to = private unnamed_addr constant [39 x i8] c"android/location/GnssMeasurementsEvent\00", align 1 +@.TypeMapEntry.3841_from = private unnamed_addr constant [63 x i8] c"Android.Locations.GnssNavigationMessage+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.3842_to = private unnamed_addr constant [48 x i8] c"android/location/GnssNavigationMessage$Callback\00", align 1 +@.TypeMapEntry.3843_from = private unnamed_addr constant [70 x i8] c"Android.Locations.GnssNavigationMessage+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3844_from = private unnamed_addr constant [54 x i8] c"Android.Locations.GnssNavigationMessage, Mono.Android\00", align 1 +@.TypeMapEntry.3845_to = private unnamed_addr constant [39 x i8] c"android/location/GnssNavigationMessage\00", align 1 +@.TypeMapEntry.3846_from = private unnamed_addr constant [47 x i8] c"Android.Locations.GnssSignalType, Mono.Android\00", align 1 +@.TypeMapEntry.3847_to = private unnamed_addr constant [32 x i8] c"android/location/GnssSignalType\00", align 1 +@.TypeMapEntry.3848_from = private unnamed_addr constant [51 x i8] c"Android.Locations.GnssStatus+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3849_to = private unnamed_addr constant [36 x i8] c"android/location/GnssStatus$Builder\00", align 1 +@.TypeMapEntry.3850_from = private unnamed_addr constant [52 x i8] c"Android.Locations.GnssStatus+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.3851_to = private unnamed_addr constant [37 x i8] c"android/location/GnssStatus$Callback\00", align 1 +@.TypeMapEntry.3852_from = private unnamed_addr constant [59 x i8] c"Android.Locations.GnssStatus+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3853_from = private unnamed_addr constant [43 x i8] c"Android.Locations.GnssStatus, Mono.Android\00", align 1 +@.TypeMapEntry.3854_to = private unnamed_addr constant [28 x i8] c"android/location/GnssStatus\00", align 1 +@.TypeMapEntry.3855_from = private unnamed_addr constant [45 x i8] c"Android.Locations.GpsSatellite, Mono.Android\00", align 1 +@.TypeMapEntry.3856_to = private unnamed_addr constant [30 x i8] c"android/location/GpsSatellite\00", align 1 +@.TypeMapEntry.3857_from = private unnamed_addr constant [52 x i8] c"Android.Locations.GpsStatus+IListener, Mono.Android\00", align 1 +@.TypeMapEntry.3858_to = private unnamed_addr constant [36 x i8] c"android/location/GpsStatus$Listener\00", align 1 +@.TypeMapEntry.3859_from = private unnamed_addr constant [63 x i8] c"Android.Locations.GpsStatus+IListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3860_to = private unnamed_addr constant [52 x i8] c"mono/android/location/GpsStatus_ListenerImplementor\00", align 1 +@.TypeMapEntry.3861_from = private unnamed_addr constant [59 x i8] c"Android.Locations.GpsStatus+IListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3862_from = private unnamed_addr constant [56 x i8] c"Android.Locations.GpsStatus+INmeaListener, Mono.Android\00", align 1 +@.TypeMapEntry.3863_to = private unnamed_addr constant [40 x i8] c"android/location/GpsStatus$NmeaListener\00", align 1 +@.TypeMapEntry.3864_from = private unnamed_addr constant [67 x i8] c"Android.Locations.GpsStatus+INmeaListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3865_to = private unnamed_addr constant [56 x i8] c"mono/android/location/GpsStatus_NmeaListenerImplementor\00", align 1 +@.TypeMapEntry.3866_from = private unnamed_addr constant [63 x i8] c"Android.Locations.GpsStatus+INmeaListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3867_from = private unnamed_addr constant [42 x i8] c"Android.Locations.GpsStatus, Mono.Android\00", align 1 +@.TypeMapEntry.3868_to = private unnamed_addr constant [27 x i8] c"android/location/GpsStatus\00", align 1 +@.TypeMapEntry.3869_from = private unnamed_addr constant [50 x i8] c"Android.Locations.ILocationListener, Mono.Android\00", align 1 +@.TypeMapEntry.3870_to = private unnamed_addr constant [34 x i8] c"android/location/LocationListener\00", align 1 +@.TypeMapEntry.3871_from = private unnamed_addr constant [61 x i8] c"Android.Locations.ILocationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3872_to = private unnamed_addr constant [50 x i8] c"mono/android/location/LocationListenerImplementor\00", align 1 +@.TypeMapEntry.3873_from = private unnamed_addr constant [57 x i8] c"Android.Locations.ILocationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3874_from = private unnamed_addr constant [55 x i8] c"Android.Locations.IOnNmeaMessageListener, Mono.Android\00", align 1 +@.TypeMapEntry.3875_to = private unnamed_addr constant [39 x i8] c"android/location/OnNmeaMessageListener\00", align 1 +@.TypeMapEntry.3876_from = private unnamed_addr constant [66 x i8] c"Android.Locations.IOnNmeaMessageListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3877_to = private unnamed_addr constant [55 x i8] c"mono/android/location/OnNmeaMessageListenerImplementor\00", align 1 +@.TypeMapEntry.3878_from = private unnamed_addr constant [62 x i8] c"Android.Locations.IOnNmeaMessageListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3879_from = private unnamed_addr constant [41 x i8] c"Android.Locations.Location, Mono.Android\00", align 1 +@.TypeMapEntry.3880_to = private unnamed_addr constant [26 x i8] c"android/location/Location\00", align 1 +@.TypeMapEntry.3881_from = private unnamed_addr constant [48 x i8] c"Android.Locations.LocationManager, Mono.Android\00", align 1 +@.TypeMapEntry.3882_to = private unnamed_addr constant [33 x i8] c"android/location/LocationManager\00", align 1 +@.TypeMapEntry.3883_from = private unnamed_addr constant [49 x i8] c"Android.Locations.LocationProvider, Mono.Android\00", align 1 +@.TypeMapEntry.3884_to = private unnamed_addr constant [34 x i8] c"android/location/LocationProvider\00", align 1 +@.TypeMapEntry.3885_from = private unnamed_addr constant [56 x i8] c"Android.Locations.LocationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3886_to = private unnamed_addr constant [41 x i8] c"android/location/LocationRequest$Builder\00", align 1 +@.TypeMapEntry.3887_from = private unnamed_addr constant [48 x i8] c"Android.Locations.LocationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.3888_to = private unnamed_addr constant [33 x i8] c"android/location/LocationRequest\00", align 1 +@.TypeMapEntry.3889_from = private unnamed_addr constant [68 x i8] c"Android.Locations.Provider.ProviderProperties+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3890_to = private unnamed_addr constant [53 x i8] c"android/location/provider/ProviderProperties$Builder\00", align 1 +@.TypeMapEntry.3891_from = private unnamed_addr constant [60 x i8] c"Android.Locations.Provider.ProviderProperties, Mono.Android\00", align 1 +@.TypeMapEntry.3892_to = private unnamed_addr constant [45 x i8] c"android/location/provider/ProviderProperties\00", align 1 +@.TypeMapEntry.3893_from = private unnamed_addr constant [55 x i8] c"Android.Locations.SettingInjectorService, Mono.Android\00", align 1 +@.TypeMapEntry.3894_to = private unnamed_addr constant [40 x i8] c"android/location/SettingInjectorService\00", align 1 +@.TypeMapEntry.3895_from = private unnamed_addr constant [62 x i8] c"Android.Locations.SettingInjectorServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3896_from = private unnamed_addr constant [42 x i8] c"Android.Manifest+Permission, Mono.Android\00", align 1 +@.TypeMapEntry.3897_to = private unnamed_addr constant [28 x i8] c"android/Manifest$permission\00", align 1 +@.TypeMapEntry.3898_from = private unnamed_addr constant [48 x i8] c"Android.Manifest+Permission_group, Mono.Android\00", align 1 +@.TypeMapEntry.3899_to = private unnamed_addr constant [34 x i8] c"android/Manifest$permission_group\00", align 1 +@.TypeMapEntry.3900_from = private unnamed_addr constant [31 x i8] c"Android.Manifest, Mono.Android\00", align 1 +@.TypeMapEntry.3901_to = private unnamed_addr constant [17 x i8] c"android/Manifest\00", align 1 +@.TypeMapEntry.3902_from = private unnamed_addr constant [65 x i8] c"Android.Media.ApplicationMediaCapabilities+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3903_to = private unnamed_addr constant [51 x i8] c"android/media/ApplicationMediaCapabilities$Builder\00", align 1 +@.TypeMapEntry.3904_from = private unnamed_addr constant [57 x i8] c"Android.Media.ApplicationMediaCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.3905_to = private unnamed_addr constant [43 x i8] c"android/media/ApplicationMediaCapabilities\00", align 1 +@.TypeMapEntry.3906_from = private unnamed_addr constant [40 x i8] c"Android.Media.AsyncPlayer, Mono.Android\00", align 1 +@.TypeMapEntry.3907_to = private unnamed_addr constant [26 x i8] c"android/media/AsyncPlayer\00", align 1 +@.TypeMapEntry.3908_from = private unnamed_addr constant [52 x i8] c"Android.Media.AudioAttributes+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3909_to = private unnamed_addr constant [38 x i8] c"android/media/AudioAttributes$Builder\00", align 1 +@.TypeMapEntry.3910_from = private unnamed_addr constant [44 x i8] c"Android.Media.AudioAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.3911_to = private unnamed_addr constant [30 x i8] c"android/media/AudioAttributes\00", align 1 +@.TypeMapEntry.3912_from = private unnamed_addr constant [44 x i8] c"Android.Media.AudioDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.3913_to = private unnamed_addr constant [30 x i8] c"android/media/AudioDescriptor\00", align 1 +@.TypeMapEntry.3914_from = private unnamed_addr constant [48 x i8] c"Android.Media.AudioDeviceCallback, Mono.Android\00", align 1 +@.TypeMapEntry.3915_to = private unnamed_addr constant [34 x i8] c"android/media/AudioDeviceCallback\00", align 1 +@.TypeMapEntry.3916_from = private unnamed_addr constant [55 x i8] c"Android.Media.AudioDeviceCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3917_from = private unnamed_addr constant [44 x i8] c"Android.Media.AudioDeviceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.3918_to = private unnamed_addr constant [30 x i8] c"android/media/AudioDeviceInfo\00", align 1 +@.TypeMapEntry.3919_from = private unnamed_addr constant [59 x i8] c"Android.Media.AudioFocusRequestClass+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3920_to = private unnamed_addr constant [40 x i8] c"android/media/AudioFocusRequest$Builder\00", align 1 +@.TypeMapEntry.3921_from = private unnamed_addr constant [51 x i8] c"Android.Media.AudioFocusRequestClass, Mono.Android\00", align 1 +@.TypeMapEntry.3922_to = private unnamed_addr constant [32 x i8] c"android/media/AudioFocusRequest\00", align 1 +@.TypeMapEntry.3923_from = private unnamed_addr constant [48 x i8] c"Android.Media.AudioFormat+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3924_to = private unnamed_addr constant [34 x i8] c"android/media/AudioFormat$Builder\00", align 1 +@.TypeMapEntry.3925_from = private unnamed_addr constant [40 x i8] c"Android.Media.AudioFormat, Mono.Android\00", align 1 +@.TypeMapEntry.3926_to = private unnamed_addr constant [26 x i8] c"android/media/AudioFormat\00", align 1 +@.TypeMapEntry.3927_from = private unnamed_addr constant [63 x i8] c"Android.Media.AudioManager+AudioPlaybackCallback, Mono.Android\00", align 1 +@.TypeMapEntry.3928_to = private unnamed_addr constant [49 x i8] c"android/media/AudioManager$AudioPlaybackCallback\00", align 1 +@.TypeMapEntry.3929_from = private unnamed_addr constant [70 x i8] c"Android.Media.AudioManager+AudioPlaybackCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3930_from = private unnamed_addr constant [64 x i8] c"Android.Media.AudioManager+AudioRecordingCallback, Mono.Android\00", align 1 +@.TypeMapEntry.3931_to = private unnamed_addr constant [50 x i8] c"android/media/AudioManager$AudioRecordingCallback\00", align 1 +@.TypeMapEntry.3932_from = private unnamed_addr constant [71 x i8] c"Android.Media.AudioManager+AudioRecordingCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3933_from = private unnamed_addr constant [69 x i8] c"Android.Media.AudioManager+IOnAudioFocusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.3934_to = private unnamed_addr constant [54 x i8] c"android/media/AudioManager$OnAudioFocusChangeListener\00", align 1 +@.TypeMapEntry.3935_from = private unnamed_addr constant [80 x i8] c"Android.Media.AudioManager+IOnAudioFocusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3936_to = private unnamed_addr constant [70 x i8] c"mono/android/media/AudioManager_OnAudioFocusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.3937_from = private unnamed_addr constant [76 x i8] c"Android.Media.AudioManager+IOnAudioFocusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3938_from = private unnamed_addr constant [79 x i8] c"Android.Media.AudioManager+IOnCommunicationDeviceChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.3939_to = private unnamed_addr constant [64 x i8] c"android/media/AudioManager$OnCommunicationDeviceChangedListener\00", align 1 +@.TypeMapEntry.3940_from = private unnamed_addr constant [90 x i8] c"Android.Media.AudioManager+IOnCommunicationDeviceChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3941_to = private unnamed_addr constant [80 x i8] c"mono/android/media/AudioManager_OnCommunicationDeviceChangedListenerImplementor\00", align 1 +@.TypeMapEntry.3942_from = private unnamed_addr constant [86 x i8] c"Android.Media.AudioManager+IOnCommunicationDeviceChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3943_from = private unnamed_addr constant [64 x i8] c"Android.Media.AudioManager+IOnModeChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.3944_to = private unnamed_addr constant [49 x i8] c"android/media/AudioManager$OnModeChangedListener\00", align 1 +@.TypeMapEntry.3945_from = private unnamed_addr constant [75 x i8] c"Android.Media.AudioManager+IOnModeChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3946_to = private unnamed_addr constant [65 x i8] c"mono/android/media/AudioManager_OnModeChangedListenerImplementor\00", align 1 +@.TypeMapEntry.3947_from = private unnamed_addr constant [71 x i8] c"Android.Media.AudioManager+IOnModeChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3948_from = private unnamed_addr constant [84 x i8] c"Android.Media.AudioManager+IOnPreferredMixerAttributesChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.3949_to = private unnamed_addr constant [69 x i8] c"android/media/AudioManager$OnPreferredMixerAttributesChangedListener\00", align 1 +@.TypeMapEntry.3950_from = private unnamed_addr constant [95 x i8] c"Android.Media.AudioManager+IOnPreferredMixerAttributesChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3951_to = private unnamed_addr constant [85 x i8] c"mono/android/media/AudioManager_OnPreferredMixerAttributesChangedListenerImplementor\00", align 1 +@.TypeMapEntry.3952_from = private unnamed_addr constant [91 x i8] c"Android.Media.AudioManager+IOnPreferredMixerAttributesChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3953_from = private unnamed_addr constant [41 x i8] c"Android.Media.AudioManager, Mono.Android\00", align 1 +@.TypeMapEntry.3954_to = private unnamed_addr constant [27 x i8] c"android/media/AudioManager\00", align 1 +@.TypeMapEntry.3955_from = private unnamed_addr constant [49 x i8] c"Android.Media.AudioMetadata+Format, Mono.Android\00", align 1 +@.TypeMapEntry.3956_to = private unnamed_addr constant [35 x i8] c"android/media/AudioMetadata$Format\00", align 1 +@.TypeMapEntry.3957_from = private unnamed_addr constant [47 x i8] c"Android.Media.AudioMetadata+IKey, Mono.Android\00", align 1 +@.TypeMapEntry.3958_to = private unnamed_addr constant [32 x i8] c"android/media/AudioMetadata$Key\00", align 1 +@.TypeMapEntry.3959_from = private unnamed_addr constant [54 x i8] c"Android.Media.AudioMetadata+IKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3960_from = private unnamed_addr constant [42 x i8] c"Android.Media.AudioMetadata, Mono.Android\00", align 1 +@.TypeMapEntry.3961_to = private unnamed_addr constant [28 x i8] c"android/media/AudioMetadata\00", align 1 +@.TypeMapEntry.3962_from = private unnamed_addr constant [57 x i8] c"Android.Media.AudioMixerAttributes+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3963_to = private unnamed_addr constant [43 x i8] c"android/media/AudioMixerAttributes$Builder\00", align 1 +@.TypeMapEntry.3964_from = private unnamed_addr constant [49 x i8] c"Android.Media.AudioMixerAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.3965_to = private unnamed_addr constant [35 x i8] c"android/media/AudioMixerAttributes\00", align 1 +@.TypeMapEntry.3966_from = private unnamed_addr constant [70 x i8] c"Android.Media.AudioPlaybackCaptureConfiguration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3967_to = private unnamed_addr constant [56 x i8] c"android/media/AudioPlaybackCaptureConfiguration$Builder\00", align 1 +@.TypeMapEntry.3968_from = private unnamed_addr constant [62 x i8] c"Android.Media.AudioPlaybackCaptureConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.3969_to = private unnamed_addr constant [48 x i8] c"android/media/AudioPlaybackCaptureConfiguration\00", align 1 +@.TypeMapEntry.3970_from = private unnamed_addr constant [55 x i8] c"Android.Media.AudioPlaybackConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.3971_to = private unnamed_addr constant [41 x i8] c"android/media/AudioPlaybackConfiguration\00", align 1 +@.TypeMapEntry.3972_from = private unnamed_addr constant [54 x i8] c"Android.Media.AudioPresentation+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3973_to = private unnamed_addr constant [40 x i8] c"android/media/AudioPresentation$Builder\00", align 1 +@.TypeMapEntry.3974_from = private unnamed_addr constant [46 x i8] c"Android.Media.AudioPresentation, Mono.Android\00", align 1 +@.TypeMapEntry.3975_to = private unnamed_addr constant [32 x i8] c"android/media/AudioPresentation\00", align 1 +@.TypeMapEntry.3976_from = private unnamed_addr constant [41 x i8] c"Android.Media.AudioProfile, Mono.Android\00", align 1 +@.TypeMapEntry.3977_to = private unnamed_addr constant [27 x i8] c"android/media/AudioProfile\00", align 1 +@.TypeMapEntry.3978_from = private unnamed_addr constant [48 x i8] c"Android.Media.AudioRecord+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3979_to = private unnamed_addr constant [34 x i8] c"android/media/AudioRecord$Builder\00", align 1 +@.TypeMapEntry.3980_from = private unnamed_addr constant [72 x i8] c"Android.Media.AudioRecord+IOnRecordPositionUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.3981_to = private unnamed_addr constant [57 x i8] c"android/media/AudioRecord$OnRecordPositionUpdateListener\00", align 1 +@.TypeMapEntry.3982_from = private unnamed_addr constant [83 x i8] c"Android.Media.AudioRecord+IOnRecordPositionUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.3983_to = private unnamed_addr constant [73 x i8] c"mono/android/media/AudioRecord_OnRecordPositionUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.3984_from = private unnamed_addr constant [79 x i8] c"Android.Media.AudioRecord+IOnRecordPositionUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3985_from = private unnamed_addr constant [66 x i8] c"Android.Media.AudioRecord+IOnRoutingChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.3986_to = private unnamed_addr constant [51 x i8] c"android/media/AudioRecord$OnRoutingChangedListener\00", align 1 +@.TypeMapEntry.3987_from = private unnamed_addr constant [73 x i8] c"Android.Media.AudioRecord+IOnRoutingChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.3988_from = private unnamed_addr constant [57 x i8] c"Android.Media.AudioRecord+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.3989_to = private unnamed_addr constant [43 x i8] c"android/media/AudioRecord$MetricsConstants\00", align 1 +@.TypeMapEntry.3990_from = private unnamed_addr constant [40 x i8] c"Android.Media.AudioRecord, Mono.Android\00", align 1 +@.TypeMapEntry.3991_to = private unnamed_addr constant [26 x i8] c"android/media/AudioRecord\00", align 1 +@.TypeMapEntry.3992_from = private unnamed_addr constant [56 x i8] c"Android.Media.AudioRecordingConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.3993_to = private unnamed_addr constant [42 x i8] c"android/media/AudioRecordingConfiguration\00", align 1 +@.TypeMapEntry.3994_from = private unnamed_addr constant [43 x i8] c"Android.Media.AudioTimestamp, Mono.Android\00", align 1 +@.TypeMapEntry.3995_to = private unnamed_addr constant [29 x i8] c"android/media/AudioTimestamp\00", align 1 +@.TypeMapEntry.3996_from = private unnamed_addr constant [47 x i8] c"Android.Media.AudioTrack+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.3997_to = private unnamed_addr constant [33 x i8] c"android/media/AudioTrack$Builder\00", align 1 +@.TypeMapEntry.3998_from = private unnamed_addr constant [69 x i8] c"Android.Media.AudioTrack+IOnCodecFormatChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.3999_to = private unnamed_addr constant [54 x i8] c"android/media/AudioTrack$OnCodecFormatChangedListener\00", align 1 +@.TypeMapEntry.4000_from = private unnamed_addr constant [80 x i8] c"Android.Media.AudioTrack+IOnCodecFormatChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4001_to = private unnamed_addr constant [70 x i8] c"mono/android/media/AudioTrack_OnCodecFormatChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4002_from = private unnamed_addr constant [76 x i8] c"Android.Media.AudioTrack+IOnCodecFormatChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4003_from = private unnamed_addr constant [73 x i8] c"Android.Media.AudioTrack+IOnPlaybackPositionUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4004_to = private unnamed_addr constant [58 x i8] c"android/media/AudioTrack$OnPlaybackPositionUpdateListener\00", align 1 +@.TypeMapEntry.4005_from = private unnamed_addr constant [84 x i8] c"Android.Media.AudioTrack+IOnPlaybackPositionUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4006_to = private unnamed_addr constant [74 x i8] c"mono/android/media/AudioTrack_OnPlaybackPositionUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4007_from = private unnamed_addr constant [80 x i8] c"Android.Media.AudioTrack+IOnPlaybackPositionUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4008_from = private unnamed_addr constant [65 x i8] c"Android.Media.AudioTrack+IOnRoutingChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4009_to = private unnamed_addr constant [50 x i8] c"android/media/AudioTrack$OnRoutingChangedListener\00", align 1 +@.TypeMapEntry.4010_from = private unnamed_addr constant [72 x i8] c"Android.Media.AudioTrack+IOnRoutingChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4011_from = private unnamed_addr constant [56 x i8] c"Android.Media.AudioTrack+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4012_to = private unnamed_addr constant [42 x i8] c"android/media/AudioTrack$MetricsConstants\00", align 1 +@.TypeMapEntry.4013_from = private unnamed_addr constant [59 x i8] c"Android.Media.AudioTrack+StreamEventCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4014_to = private unnamed_addr constant [45 x i8] c"android/media/AudioTrack$StreamEventCallback\00", align 1 +@.TypeMapEntry.4015_from = private unnamed_addr constant [66 x i8] c"Android.Media.AudioTrack+StreamEventCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4016_from = private unnamed_addr constant [39 x i8] c"Android.Media.AudioTrack, Mono.Android\00", align 1 +@.TypeMapEntry.4017_to = private unnamed_addr constant [25 x i8] c"android/media/AudioTrack\00", align 1 +@.TypeMapEntry.4018_from = private unnamed_addr constant [57 x i8] c"Android.Media.Audiofx.AcousticEchoCanceler, Mono.Android\00", align 1 +@.TypeMapEntry.4019_to = private unnamed_addr constant [43 x i8] c"android/media/audiofx/AcousticEchoCanceler\00", align 1 +@.TypeMapEntry.4020_from = private unnamed_addr constant [59 x i8] c"Android.Media.Audiofx.AudioEffect+Descriptor, Mono.Android\00", align 1 +@.TypeMapEntry.4021_to = private unnamed_addr constant [45 x i8] c"android/media/audiofx/AudioEffect$Descriptor\00", align 1 +@.TypeMapEntry.4022_from = private unnamed_addr constant [79 x i8] c"Android.Media.Audiofx.AudioEffect+IOnControlStatusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4023_to = private unnamed_addr constant [64 x i8] c"android/media/audiofx/AudioEffect$OnControlStatusChangeListener\00", align 1 +@.TypeMapEntry.4024_from = private unnamed_addr constant [90 x i8] c"Android.Media.Audiofx.AudioEffect+IOnControlStatusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4025_to = private unnamed_addr constant [80 x i8] c"mono/android/media/audiofx/AudioEffect_OnControlStatusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4026_from = private unnamed_addr constant [86 x i8] c"Android.Media.Audiofx.AudioEffect+IOnControlStatusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4027_from = private unnamed_addr constant [78 x i8] c"Android.Media.Audiofx.AudioEffect+IOnEnableStatusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4028_to = private unnamed_addr constant [63 x i8] c"android/media/audiofx/AudioEffect$OnEnableStatusChangeListener\00", align 1 +@.TypeMapEntry.4029_from = private unnamed_addr constant [89 x i8] c"Android.Media.Audiofx.AudioEffect+IOnEnableStatusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4030_to = private unnamed_addr constant [79 x i8] c"mono/android/media/audiofx/AudioEffect_OnEnableStatusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4031_from = private unnamed_addr constant [85 x i8] c"Android.Media.Audiofx.AudioEffect+IOnEnableStatusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4032_from = private unnamed_addr constant [48 x i8] c"Android.Media.Audiofx.AudioEffect, Mono.Android\00", align 1 +@.TypeMapEntry.4033_to = private unnamed_addr constant [34 x i8] c"android/media/audiofx/AudioEffect\00", align 1 +@.TypeMapEntry.4034_from = private unnamed_addr constant [57 x i8] c"Android.Media.Audiofx.AutomaticGainControl, Mono.Android\00", align 1 +@.TypeMapEntry.4035_to = private unnamed_addr constant [43 x i8] c"android/media/audiofx/AutomaticGainControl\00", align 1 +@.TypeMapEntry.4036_from = private unnamed_addr constant [73 x i8] c"Android.Media.Audiofx.BassBoost+IOnParameterChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4037_to = private unnamed_addr constant [58 x i8] c"android/media/audiofx/BassBoost$OnParameterChangeListener\00", align 1 +@.TypeMapEntry.4038_from = private unnamed_addr constant [84 x i8] c"Android.Media.Audiofx.BassBoost+IOnParameterChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4039_to = private unnamed_addr constant [74 x i8] c"mono/android/media/audiofx/BassBoost_OnParameterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4040_from = private unnamed_addr constant [80 x i8] c"Android.Media.Audiofx.BassBoost+IOnParameterChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4041_from = private unnamed_addr constant [55 x i8] c"Android.Media.Audiofx.BassBoost+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.4042_to = private unnamed_addr constant [41 x i8] c"android/media/audiofx/BassBoost$Settings\00", align 1 +@.TypeMapEntry.4043_from = private unnamed_addr constant [46 x i8] c"Android.Media.Audiofx.BassBoost, Mono.Android\00", align 1 +@.TypeMapEntry.4044_to = private unnamed_addr constant [32 x i8] c"android/media/audiofx/BassBoost\00", align 1 +@.TypeMapEntry.4045_from = private unnamed_addr constant [64 x i8] c"Android.Media.Audiofx.DynamicsProcessing+BandBase, Mono.Android\00", align 1 +@.TypeMapEntry.4046_to = private unnamed_addr constant [50 x i8] c"android/media/audiofx/DynamicsProcessing$BandBase\00", align 1 +@.TypeMapEntry.4047_from = private unnamed_addr constant [65 x i8] c"Android.Media.Audiofx.DynamicsProcessing+BandStage, Mono.Android\00", align 1 +@.TypeMapEntry.4048_to = private unnamed_addr constant [51 x i8] c"android/media/audiofx/DynamicsProcessing$BandStage\00", align 1 +@.TypeMapEntry.4049_from = private unnamed_addr constant [63 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Channel, Mono.Android\00", align 1 +@.TypeMapEntry.4050_to = private unnamed_addr constant [49 x i8] c"android/media/audiofx/DynamicsProcessing$Channel\00", align 1 +@.TypeMapEntry.4051_from = private unnamed_addr constant [70 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Config+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4052_to = private unnamed_addr constant [56 x i8] c"android/media/audiofx/DynamicsProcessing$Config$Builder\00", align 1 +@.TypeMapEntry.4053_from = private unnamed_addr constant [62 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Config, Mono.Android\00", align 1 +@.TypeMapEntry.4054_to = private unnamed_addr constant [48 x i8] c"android/media/audiofx/DynamicsProcessing$Config\00", align 1 +@.TypeMapEntry.4055_from = private unnamed_addr constant [58 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Eq, Mono.Android\00", align 1 +@.TypeMapEntry.4056_to = private unnamed_addr constant [44 x i8] c"android/media/audiofx/DynamicsProcessing$Eq\00", align 1 +@.TypeMapEntry.4057_from = private unnamed_addr constant [62 x i8] c"Android.Media.Audiofx.DynamicsProcessing+EqBand, Mono.Android\00", align 1 +@.TypeMapEntry.4058_to = private unnamed_addr constant [48 x i8] c"android/media/audiofx/DynamicsProcessing$EqBand\00", align 1 +@.TypeMapEntry.4059_from = private unnamed_addr constant [63 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Limiter, Mono.Android\00", align 1 +@.TypeMapEntry.4060_to = private unnamed_addr constant [49 x i8] c"android/media/audiofx/DynamicsProcessing$Limiter\00", align 1 +@.TypeMapEntry.4061_from = private unnamed_addr constant [59 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Mbc, Mono.Android\00", align 1 +@.TypeMapEntry.4062_to = private unnamed_addr constant [45 x i8] c"android/media/audiofx/DynamicsProcessing$Mbc\00", align 1 +@.TypeMapEntry.4063_from = private unnamed_addr constant [63 x i8] c"Android.Media.Audiofx.DynamicsProcessing+MbcBand, Mono.Android\00", align 1 +@.TypeMapEntry.4064_to = private unnamed_addr constant [49 x i8] c"android/media/audiofx/DynamicsProcessing$MbcBand\00", align 1 +@.TypeMapEntry.4065_from = private unnamed_addr constant [61 x i8] c"Android.Media.Audiofx.DynamicsProcessing+Stage, Mono.Android\00", align 1 +@.TypeMapEntry.4066_to = private unnamed_addr constant [47 x i8] c"android/media/audiofx/DynamicsProcessing$Stage\00", align 1 +@.TypeMapEntry.4067_from = private unnamed_addr constant [55 x i8] c"Android.Media.Audiofx.DynamicsProcessing, Mono.Android\00", align 1 +@.TypeMapEntry.4068_to = private unnamed_addr constant [41 x i8] c"android/media/audiofx/DynamicsProcessing\00", align 1 +@.TypeMapEntry.4069_from = private unnamed_addr constant [83 x i8] c"Android.Media.Audiofx.EnvironmentalReverb+IOnParameterChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4070_to = private unnamed_addr constant [68 x i8] c"android/media/audiofx/EnvironmentalReverb$OnParameterChangeListener\00", align 1 +@.TypeMapEntry.4071_from = private unnamed_addr constant [94 x i8] c"Android.Media.Audiofx.EnvironmentalReverb+IOnParameterChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4072_to = private unnamed_addr constant [84 x i8] c"mono/android/media/audiofx/EnvironmentalReverb_OnParameterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4073_from = private unnamed_addr constant [90 x i8] c"Android.Media.Audiofx.EnvironmentalReverb+IOnParameterChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4074_from = private unnamed_addr constant [65 x i8] c"Android.Media.Audiofx.EnvironmentalReverb+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.4075_to = private unnamed_addr constant [51 x i8] c"android/media/audiofx/EnvironmentalReverb$Settings\00", align 1 +@.TypeMapEntry.4076_from = private unnamed_addr constant [56 x i8] c"Android.Media.Audiofx.EnvironmentalReverb, Mono.Android\00", align 1 +@.TypeMapEntry.4077_to = private unnamed_addr constant [42 x i8] c"android/media/audiofx/EnvironmentalReverb\00", align 1 +@.TypeMapEntry.4078_from = private unnamed_addr constant [73 x i8] c"Android.Media.Audiofx.Equalizer+IOnParameterChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4079_to = private unnamed_addr constant [58 x i8] c"android/media/audiofx/Equalizer$OnParameterChangeListener\00", align 1 +@.TypeMapEntry.4080_from = private unnamed_addr constant [84 x i8] c"Android.Media.Audiofx.Equalizer+IOnParameterChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4081_to = private unnamed_addr constant [74 x i8] c"mono/android/media/audiofx/Equalizer_OnParameterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4082_from = private unnamed_addr constant [80 x i8] c"Android.Media.Audiofx.Equalizer+IOnParameterChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4083_from = private unnamed_addr constant [55 x i8] c"Android.Media.Audiofx.Equalizer+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.4084_to = private unnamed_addr constant [41 x i8] c"android/media/audiofx/Equalizer$Settings\00", align 1 +@.TypeMapEntry.4085_from = private unnamed_addr constant [46 x i8] c"Android.Media.Audiofx.Equalizer, Mono.Android\00", align 1 +@.TypeMapEntry.4086_to = private unnamed_addr constant [32 x i8] c"android/media/audiofx/Equalizer\00", align 1 +@.TypeMapEntry.4087_from = private unnamed_addr constant [52 x i8] c"Android.Media.Audiofx.HapticGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.4088_to = private unnamed_addr constant [38 x i8] c"android/media/audiofx/HapticGenerator\00", align 1 +@.TypeMapEntry.4089_from = private unnamed_addr constant [53 x i8] c"Android.Media.Audiofx.LoudnessEnhancer, Mono.Android\00", align 1 +@.TypeMapEntry.4090_to = private unnamed_addr constant [39 x i8] c"android/media/audiofx/LoudnessEnhancer\00", align 1 +@.TypeMapEntry.4091_from = private unnamed_addr constant [52 x i8] c"Android.Media.Audiofx.NoiseSuppressor, Mono.Android\00", align 1 +@.TypeMapEntry.4092_to = private unnamed_addr constant [38 x i8] c"android/media/audiofx/NoiseSuppressor\00", align 1 +@.TypeMapEntry.4093_from = private unnamed_addr constant [76 x i8] c"Android.Media.Audiofx.PresetReverb+IOnParameterChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4094_to = private unnamed_addr constant [61 x i8] c"android/media/audiofx/PresetReverb$OnParameterChangeListener\00", align 1 +@.TypeMapEntry.4095_from = private unnamed_addr constant [87 x i8] c"Android.Media.Audiofx.PresetReverb+IOnParameterChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4096_to = private unnamed_addr constant [77 x i8] c"mono/android/media/audiofx/PresetReverb_OnParameterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4097_from = private unnamed_addr constant [83 x i8] c"Android.Media.Audiofx.PresetReverb+IOnParameterChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4098_from = private unnamed_addr constant [58 x i8] c"Android.Media.Audiofx.PresetReverb+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.4099_to = private unnamed_addr constant [44 x i8] c"android/media/audiofx/PresetReverb$Settings\00", align 1 +@.TypeMapEntry.4100_from = private unnamed_addr constant [49 x i8] c"Android.Media.Audiofx.PresetReverb, Mono.Android\00", align 1 +@.TypeMapEntry.4101_to = private unnamed_addr constant [35 x i8] c"android/media/audiofx/PresetReverb\00", align 1 +@.TypeMapEntry.4102_from = private unnamed_addr constant [75 x i8] c"Android.Media.Audiofx.Virtualizer+IOnParameterChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4103_to = private unnamed_addr constant [60 x i8] c"android/media/audiofx/Virtualizer$OnParameterChangeListener\00", align 1 +@.TypeMapEntry.4104_from = private unnamed_addr constant [86 x i8] c"Android.Media.Audiofx.Virtualizer+IOnParameterChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4105_to = private unnamed_addr constant [76 x i8] c"mono/android/media/audiofx/Virtualizer_OnParameterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4106_from = private unnamed_addr constant [82 x i8] c"Android.Media.Audiofx.Virtualizer+IOnParameterChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4107_from = private unnamed_addr constant [57 x i8] c"Android.Media.Audiofx.Virtualizer+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.4108_to = private unnamed_addr constant [43 x i8] c"android/media/audiofx/Virtualizer$Settings\00", align 1 +@.TypeMapEntry.4109_from = private unnamed_addr constant [48 x i8] c"Android.Media.Audiofx.Virtualizer, Mono.Android\00", align 1 +@.TypeMapEntry.4110_to = private unnamed_addr constant [34 x i8] c"android/media/audiofx/Virtualizer\00", align 1 +@.TypeMapEntry.4111_from = private unnamed_addr constant [70 x i8] c"Android.Media.Audiofx.Visualizer+IOnDataCaptureListener, Mono.Android\00", align 1 +@.TypeMapEntry.4112_to = private unnamed_addr constant [55 x i8] c"android/media/audiofx/Visualizer$OnDataCaptureListener\00", align 1 +@.TypeMapEntry.4113_from = private unnamed_addr constant [81 x i8] c"Android.Media.Audiofx.Visualizer+IOnDataCaptureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4114_to = private unnamed_addr constant [71 x i8] c"mono/android/media/audiofx/Visualizer_OnDataCaptureListenerImplementor\00", align 1 +@.TypeMapEntry.4115_from = private unnamed_addr constant [77 x i8] c"Android.Media.Audiofx.Visualizer+IOnDataCaptureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4116_from = private unnamed_addr constant [66 x i8] c"Android.Media.Audiofx.Visualizer+MeasurementPeakRms, Mono.Android\00", align 1 +@.TypeMapEntry.4117_to = private unnamed_addr constant [52 x i8] c"android/media/audiofx/Visualizer$MeasurementPeakRms\00", align 1 +@.TypeMapEntry.4118_from = private unnamed_addr constant [47 x i8] c"Android.Media.Audiofx.Visualizer, Mono.Android\00", align 1 +@.TypeMapEntry.4119_to = private unnamed_addr constant [33 x i8] c"android/media/audiofx/Visualizer\00", align 1 +@.TypeMapEntry.4120_from = private unnamed_addr constant [67 x i8] c"Android.Media.Browse.MediaBrowser+ConnectionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4121_to = private unnamed_addr constant [53 x i8] c"android/media/browse/MediaBrowser$ConnectionCallback\00", align 1 +@.TypeMapEntry.4122_from = private unnamed_addr constant [61 x i8] c"Android.Media.Browse.MediaBrowser+ItemCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4123_to = private unnamed_addr constant [47 x i8] c"android/media/browse/MediaBrowser$ItemCallback\00", align 1 +@.TypeMapEntry.4124_from = private unnamed_addr constant [68 x i8] c"Android.Media.Browse.MediaBrowser+ItemCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4125_from = private unnamed_addr constant [58 x i8] c"Android.Media.Browse.MediaBrowser+MediaItem, Mono.Android\00", align 1 +@.TypeMapEntry.4126_to = private unnamed_addr constant [44 x i8] c"android/media/browse/MediaBrowser$MediaItem\00", align 1 +@.TypeMapEntry.4127_from = private unnamed_addr constant [69 x i8] c"Android.Media.Browse.MediaBrowser+SubscriptionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4128_to = private unnamed_addr constant [55 x i8] c"android/media/browse/MediaBrowser$SubscriptionCallback\00", align 1 +@.TypeMapEntry.4129_from = private unnamed_addr constant [76 x i8] c"Android.Media.Browse.MediaBrowser+SubscriptionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4130_from = private unnamed_addr constant [48 x i8] c"Android.Media.Browse.MediaBrowser, Mono.Android\00", align 1 +@.TypeMapEntry.4131_to = private unnamed_addr constant [34 x i8] c"android/media/browse/MediaBrowser\00", align 1 +@.TypeMapEntry.4132_from = private unnamed_addr constant [45 x i8] c"Android.Media.CamcorderProfile, Mono.Android\00", align 1 +@.TypeMapEntry.4133_to = private unnamed_addr constant [31 x i8] c"android/media/CamcorderProfile\00", align 1 +@.TypeMapEntry.4134_from = private unnamed_addr constant [42 x i8] c"Android.Media.CameraProfile, Mono.Android\00", align 1 +@.TypeMapEntry.4135_to = private unnamed_addr constant [28 x i8] c"android/media/CameraProfile\00", align 1 +@.TypeMapEntry.4136_from = private unnamed_addr constant [52 x i8] c"Android.Media.DeniedByServerException, Mono.Android\00", align 1 +@.TypeMapEntry.4137_to = private unnamed_addr constant [38 x i8] c"android/media/DeniedByServerException\00", align 1 +@.TypeMapEntry.4138_from = private unnamed_addr constant [55 x i8] c"Android.Media.DrmInitData+SchemeInitData, Mono.Android\00", align 1 +@.TypeMapEntry.4139_to = private unnamed_addr constant [41 x i8] c"android/media/DrmInitData$SchemeInitData\00", align 1 +@.TypeMapEntry.4140_from = private unnamed_addr constant [40 x i8] c"Android.Media.DrmInitData, Mono.Android\00", align 1 +@.TypeMapEntry.4141_to = private unnamed_addr constant [26 x i8] c"android/media/DrmInitData\00", align 1 +@.TypeMapEntry.4142_from = private unnamed_addr constant [47 x i8] c"Android.Media.DrmInitDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4143_from = private unnamed_addr constant [42 x i8] c"Android.Media.Effect.Effect, Mono.Android\00", align 1 +@.TypeMapEntry.4144_to = private unnamed_addr constant [28 x i8] c"android/media/effect/Effect\00", align 1 +@.TypeMapEntry.4145_from = private unnamed_addr constant [49 x i8] c"Android.Media.Effect.EffectContext, Mono.Android\00", align 1 +@.TypeMapEntry.4146_to = private unnamed_addr constant [35 x i8] c"android/media/effect/EffectContext\00", align 1 +@.TypeMapEntry.4147_from = private unnamed_addr constant [49 x i8] c"Android.Media.Effect.EffectFactory, Mono.Android\00", align 1 +@.TypeMapEntry.4148_to = private unnamed_addr constant [35 x i8] c"android/media/effect/EffectFactory\00", align 1 +@.TypeMapEntry.4149_from = private unnamed_addr constant [49 x i8] c"Android.Media.Effect.EffectInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4150_from = private unnamed_addr constant [57 x i8] c"Android.Media.Effect.IEffectUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4151_to = private unnamed_addr constant [42 x i8] c"android/media/effect/EffectUpdateListener\00", align 1 +@.TypeMapEntry.4152_from = private unnamed_addr constant [68 x i8] c"Android.Media.Effect.IEffectUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4153_to = private unnamed_addr constant [58 x i8] c"mono/android/media/effect/EffectUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4154_from = private unnamed_addr constant [64 x i8] c"Android.Media.Effect.IEffectUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4155_from = private unnamed_addr constant [57 x i8] c"Android.Media.EncoderProfiles+AudioProfile, Mono.Android\00", align 1 +@.TypeMapEntry.4156_to = private unnamed_addr constant [43 x i8] c"android/media/EncoderProfiles$AudioProfile\00", align 1 +@.TypeMapEntry.4157_from = private unnamed_addr constant [57 x i8] c"Android.Media.EncoderProfiles+VideoProfile, Mono.Android\00", align 1 +@.TypeMapEntry.4158_to = private unnamed_addr constant [43 x i8] c"android/media/EncoderProfiles$VideoProfile\00", align 1 +@.TypeMapEntry.4159_from = private unnamed_addr constant [44 x i8] c"Android.Media.EncoderProfiles, Mono.Android\00", align 1 +@.TypeMapEntry.4160_to = private unnamed_addr constant [30 x i8] c"android/media/EncoderProfiles\00", align 1 +@.TypeMapEntry.4161_from = private unnamed_addr constant [42 x i8] c"Android.Media.ExifInterface, Mono.Android\00", align 1 +@.TypeMapEntry.4162_to = private unnamed_addr constant [28 x i8] c"android/media/ExifInterface\00", align 1 +@.TypeMapEntry.4163_from = private unnamed_addr constant [46 x i8] c"Android.Media.FaceDetector+Face, Mono.Android\00", align 1 +@.TypeMapEntry.4164_to = private unnamed_addr constant [32 x i8] c"android/media/FaceDetector$Face\00", align 1 +@.TypeMapEntry.4165_from = private unnamed_addr constant [41 x i8] c"Android.Media.FaceDetector, Mono.Android\00", align 1 +@.TypeMapEntry.4166_to = private unnamed_addr constant [27 x i8] c"android/media/FaceDetector\00", align 1 +@.TypeMapEntry.4167_from = private unnamed_addr constant [46 x i8] c"Android.Media.IAudioMetadataMap, Mono.Android\00", align 1 +@.TypeMapEntry.4168_to = private unnamed_addr constant [31 x i8] c"android/media/AudioMetadataMap\00", align 1 +@.TypeMapEntry.4169_from = private unnamed_addr constant [53 x i8] c"Android.Media.IAudioMetadataMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4170_from = private unnamed_addr constant [50 x i8] c"Android.Media.IAudioMetadataReadMap, Mono.Android\00", align 1 +@.TypeMapEntry.4171_to = private unnamed_addr constant [35 x i8] c"android/media/AudioMetadataReadMap\00", align 1 +@.TypeMapEntry.4172_from = private unnamed_addr constant [57 x i8] c"Android.Media.IAudioMetadataReadMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4173_from = private unnamed_addr constant [51 x i8] c"Android.Media.IAudioRecordingMonitor, Mono.Android\00", align 1 +@.TypeMapEntry.4174_to = private unnamed_addr constant [36 x i8] c"android/media/AudioRecordingMonitor\00", align 1 +@.TypeMapEntry.4175_from = private unnamed_addr constant [58 x i8] c"Android.Media.IAudioRecordingMonitorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4176_from = private unnamed_addr constant [42 x i8] c"Android.Media.IAudioRouting, Mono.Android\00", align 1 +@.TypeMapEntry.4177_to = private unnamed_addr constant [27 x i8] c"android/media/AudioRouting\00", align 1 +@.TypeMapEntry.4178_from = private unnamed_addr constant [49 x i8] c"Android.Media.IAudioRoutingInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4179_from = private unnamed_addr constant [66 x i8] c"Android.Media.IAudioRoutingOnRoutingChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4180_to = private unnamed_addr constant [52 x i8] c"android/media/AudioRouting$OnRoutingChangedListener\00", align 1 +@.TypeMapEntry.4181_from = private unnamed_addr constant [77 x i8] c"Android.Media.IAudioRoutingOnRoutingChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4182_to = private unnamed_addr constant [68 x i8] c"mono/android/media/AudioRouting_OnRoutingChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4183_from = private unnamed_addr constant [73 x i8] c"Android.Media.IAudioRoutingOnRoutingChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4184_from = private unnamed_addr constant [47 x i8] c"Android.Media.IMediaDrmThrowable, Mono.Android\00", align 1 +@.TypeMapEntry.4185_to = private unnamed_addr constant [32 x i8] c"android/media/MediaDrmThrowable\00", align 1 +@.TypeMapEntry.4186_from = private unnamed_addr constant [54 x i8] c"Android.Media.IMediaDrmThrowableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4187_from = private unnamed_addr constant [49 x i8] c"Android.Media.IMicrophoneDirection, Mono.Android\00", align 1 +@.TypeMapEntry.4188_to = private unnamed_addr constant [34 x i8] c"android/media/MicrophoneDirection\00", align 1 +@.TypeMapEntry.4189_from = private unnamed_addr constant [56 x i8] c"Android.Media.IMicrophoneDirectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4190_from = private unnamed_addr constant [46 x i8] c"Android.Media.IVolumeAutomation, Mono.Android\00", align 1 +@.TypeMapEntry.4191_to = private unnamed_addr constant [31 x i8] c"android/media/VolumeAutomation\00", align 1 +@.TypeMapEntry.4192_from = private unnamed_addr constant [53 x i8] c"Android.Media.IVolumeAutomationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4193_from = private unnamed_addr constant [40 x i8] c"Android.Media.Image+Plane, Mono.Android\00", align 1 +@.TypeMapEntry.4194_to = private unnamed_addr constant [26 x i8] c"android/media/Image$Plane\00", align 1 +@.TypeMapEntry.4195_from = private unnamed_addr constant [47 x i8] c"Android.Media.Image+PlaneInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4196_from = private unnamed_addr constant [34 x i8] c"Android.Media.Image, Mono.Android\00", align 1 +@.TypeMapEntry.4197_to = private unnamed_addr constant [20 x i8] c"android/media/Image\00", align 1 +@.TypeMapEntry.4198_from = private unnamed_addr constant [41 x i8] c"Android.Media.ImageInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4199_from = private unnamed_addr constant [48 x i8] c"Android.Media.ImageReader+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4200_to = private unnamed_addr constant [34 x i8] c"android/media/ImageReader$Builder\00", align 1 +@.TypeMapEntry.4201_from = private unnamed_addr constant [66 x i8] c"Android.Media.ImageReader+IOnImageAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.4202_to = private unnamed_addr constant [51 x i8] c"android/media/ImageReader$OnImageAvailableListener\00", align 1 +@.TypeMapEntry.4203_from = private unnamed_addr constant [77 x i8] c"Android.Media.ImageReader+IOnImageAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4204_to = private unnamed_addr constant [67 x i8] c"mono/android/media/ImageReader_OnImageAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.4205_from = private unnamed_addr constant [73 x i8] c"Android.Media.ImageReader+IOnImageAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4206_from = private unnamed_addr constant [40 x i8] c"Android.Media.ImageReader, Mono.Android\00", align 1 +@.TypeMapEntry.4207_to = private unnamed_addr constant [26 x i8] c"android/media/ImageReader\00", align 1 +@.TypeMapEntry.4208_from = private unnamed_addr constant [48 x i8] c"Android.Media.ImageWriter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4209_to = private unnamed_addr constant [34 x i8] c"android/media/ImageWriter$Builder\00", align 1 +@.TypeMapEntry.4210_from = private unnamed_addr constant [65 x i8] c"Android.Media.ImageWriter+IOnImageReleasedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4211_to = private unnamed_addr constant [50 x i8] c"android/media/ImageWriter$OnImageReleasedListener\00", align 1 +@.TypeMapEntry.4212_from = private unnamed_addr constant [76 x i8] c"Android.Media.ImageWriter+IOnImageReleasedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4213_to = private unnamed_addr constant [66 x i8] c"mono/android/media/ImageWriter_OnImageReleasedListenerImplementor\00", align 1 +@.TypeMapEntry.4214_from = private unnamed_addr constant [72 x i8] c"Android.Media.ImageWriter+IOnImageReleasedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4215_from = private unnamed_addr constant [40 x i8] c"Android.Media.ImageWriter, Mono.Android\00", align 1 +@.TypeMapEntry.4216_to = private unnamed_addr constant [26 x i8] c"android/media/ImageWriter\00", align 1 +@.TypeMapEntry.4217_from = private unnamed_addr constant [58 x i8] c"Android.Media.JetPlayer+IOnJetEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.4218_to = private unnamed_addr constant [43 x i8] c"android/media/JetPlayer$OnJetEventListener\00", align 1 +@.TypeMapEntry.4219_from = private unnamed_addr constant [69 x i8] c"Android.Media.JetPlayer+IOnJetEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4220_to = private unnamed_addr constant [59 x i8] c"mono/android/media/JetPlayer_OnJetEventListenerImplementor\00", align 1 +@.TypeMapEntry.4221_from = private unnamed_addr constant [65 x i8] c"Android.Media.JetPlayer+IOnJetEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4222_from = private unnamed_addr constant [38 x i8] c"Android.Media.JetPlayer, Mono.Android\00", align 1 +@.TypeMapEntry.4223_to = private unnamed_addr constant [24 x i8] c"android/media/JetPlayer\00", align 1 +@.TypeMapEntry.4224_from = private unnamed_addr constant [83 x i8] c"Android.Media.LoudnessCodecController+IOnLoudnessCodecUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4225_to = private unnamed_addr constant [68 x i8] c"android/media/LoudnessCodecController$OnLoudnessCodecUpdateListener\00", align 1 +@.TypeMapEntry.4226_from = private unnamed_addr constant [94 x i8] c"Android.Media.LoudnessCodecController+IOnLoudnessCodecUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4227_to = private unnamed_addr constant [84 x i8] c"mono/android/media/LoudnessCodecController_OnLoudnessCodecUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4228_from = private unnamed_addr constant [90 x i8] c"Android.Media.LoudnessCodecController+IOnLoudnessCodecUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4229_from = private unnamed_addr constant [52 x i8] c"Android.Media.LoudnessCodecController, Mono.Android\00", align 1 +@.TypeMapEntry.4230_to = private unnamed_addr constant [38 x i8] c"android/media/LoudnessCodecController\00", align 1 +@.TypeMapEntry.4231_from = private unnamed_addr constant [45 x i8] c"Android.Media.MediaActionSound, Mono.Android\00", align 1 +@.TypeMapEntry.4232_to = private unnamed_addr constant [31 x i8] c"android/media/MediaActionSound\00", align 1 +@.TypeMapEntry.4233_from = private unnamed_addr constant [52 x i8] c"Android.Media.MediaCas+IEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.4234_to = private unnamed_addr constant [37 x i8] c"android/media/MediaCas$EventListener\00", align 1 +@.TypeMapEntry.4235_from = private unnamed_addr constant [63 x i8] c"Android.Media.MediaCas+IEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4236_to = private unnamed_addr constant [53 x i8] c"mono/android/media/MediaCas_EventListenerImplementor\00", align 1 +@.TypeMapEntry.4237_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaCas+IEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4238_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaCas+PluginDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.4239_to = private unnamed_addr constant [40 x i8] c"android/media/MediaCas$PluginDescriptor\00", align 1 +@.TypeMapEntry.4240_from = private unnamed_addr constant [45 x i8] c"Android.Media.MediaCas+Session, Mono.Android\00", align 1 +@.TypeMapEntry.4241_to = private unnamed_addr constant [31 x i8] c"android/media/MediaCas$Session\00", align 1 +@.TypeMapEntry.4242_from = private unnamed_addr constant [37 x i8] c"Android.Media.MediaCas, Mono.Android\00", align 1 +@.TypeMapEntry.4243_to = private unnamed_addr constant [23 x i8] c"android/media/MediaCas\00", align 1 +@.TypeMapEntry.4244_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaCasException+DeniedByServerException, Mono.Android\00", align 1 +@.TypeMapEntry.4245_to = private unnamed_addr constant [56 x i8] c"android/media/MediaCasException$DeniedByServerException\00", align 1 +@.TypeMapEntry.4246_from = private unnamed_addr constant [76 x i8] c"Android.Media.MediaCasException+InsufficientResourceException, Mono.Android\00", align 1 +@.TypeMapEntry.4247_to = private unnamed_addr constant [62 x i8] c"android/media/MediaCasException$InsufficientResourceException\00", align 1 +@.TypeMapEntry.4248_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaCasException+NotProvisionedException, Mono.Android\00", align 1 +@.TypeMapEntry.4249_to = private unnamed_addr constant [56 x i8] c"android/media/MediaCasException$NotProvisionedException\00", align 1 +@.TypeMapEntry.4250_from = private unnamed_addr constant [68 x i8] c"Android.Media.MediaCasException+ResourceBusyException, Mono.Android\00", align 1 +@.TypeMapEntry.4251_to = private unnamed_addr constant [54 x i8] c"android/media/MediaCasException$ResourceBusyException\00", align 1 +@.TypeMapEntry.4252_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaCasException+UnsupportedCasException, Mono.Android\00", align 1 +@.TypeMapEntry.4253_to = private unnamed_addr constant [56 x i8] c"android/media/MediaCasException$UnsupportedCasException\00", align 1 +@.TypeMapEntry.4254_from = private unnamed_addr constant [46 x i8] c"Android.Media.MediaCasException, Mono.Android\00", align 1 +@.TypeMapEntry.4255_to = private unnamed_addr constant [32 x i8] c"android/media/MediaCasException\00", align 1 +@.TypeMapEntry.4256_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaCasStateException, Mono.Android\00", align 1 +@.TypeMapEntry.4257_to = private unnamed_addr constant [37 x i8] c"android/media/MediaCasStateException\00", align 1 +@.TypeMapEntry.4258_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaCodec+BufferInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4259_to = private unnamed_addr constant [36 x i8] c"android/media/MediaCodec$BufferInfo\00", align 1 +@.TypeMapEntry.4260_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaCodec+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4261_to = private unnamed_addr constant [34 x i8] c"android/media/MediaCodec$Callback\00", align 1 +@.TypeMapEntry.4262_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaCodec+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4263_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaCodec+CodecException, Mono.Android\00", align 1 +@.TypeMapEntry.4264_to = private unnamed_addr constant [40 x i8] c"android/media/MediaCodec$CodecException\00", align 1 +@.TypeMapEntry.4265_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaCodec+CryptoException, Mono.Android\00", align 1 +@.TypeMapEntry.4266_to = private unnamed_addr constant [41 x i8] c"android/media/MediaCodec$CryptoException\00", align 1 +@.TypeMapEntry.4267_from = private unnamed_addr constant [58 x i8] c"Android.Media.MediaCodec+CryptoInfo+Pattern, Mono.Android\00", align 1 +@.TypeMapEntry.4268_to = private unnamed_addr constant [44 x i8] c"android/media/MediaCodec$CryptoInfo$Pattern\00", align 1 +@.TypeMapEntry.4269_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaCodec+CryptoInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4270_to = private unnamed_addr constant [36 x i8] c"android/media/MediaCodec$CryptoInfo\00", align 1 +@.TypeMapEntry.4271_from = private unnamed_addr constant [72 x i8] c"Android.Media.MediaCodec+IOnFirstTunnelFrameReadyListener, Mono.Android\00", align 1 +@.TypeMapEntry.4272_to = private unnamed_addr constant [57 x i8] c"android/media/MediaCodec$OnFirstTunnelFrameReadyListener\00", align 1 +@.TypeMapEntry.4273_from = private unnamed_addr constant [83 x i8] c"Android.Media.MediaCodec+IOnFirstTunnelFrameReadyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4274_to = private unnamed_addr constant [73 x i8] c"mono/android/media/MediaCodec_OnFirstTunnelFrameReadyListenerImplementor\00", align 1 +@.TypeMapEntry.4275_from = private unnamed_addr constant [79 x i8] c"Android.Media.MediaCodec+IOnFirstTunnelFrameReadyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4276_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaCodec+IOnFrameRenderedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4277_to = private unnamed_addr constant [49 x i8] c"android/media/MediaCodec$OnFrameRenderedListener\00", align 1 +@.TypeMapEntry.4278_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaCodec+IOnFrameRenderedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4279_to = private unnamed_addr constant [65 x i8] c"mono/android/media/MediaCodec_OnFrameRenderedListenerImplementor\00", align 1 +@.TypeMapEntry.4280_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaCodec+IOnFrameRenderedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4281_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaCodec+IncompatibleWithBlockModelException, Mono.Android\00", align 1 +@.TypeMapEntry.4282_to = private unnamed_addr constant [61 x i8] c"android/media/MediaCodec$IncompatibleWithBlockModelException\00", align 1 +@.TypeMapEntry.4283_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaCodec+InvalidBufferFlagsException, Mono.Android\00", align 1 +@.TypeMapEntry.4284_to = private unnamed_addr constant [53 x i8] c"android/media/MediaCodec$InvalidBufferFlagsException\00", align 1 +@.TypeMapEntry.4285_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaCodec+LinearBlock, Mono.Android\00", align 1 +@.TypeMapEntry.4286_to = private unnamed_addr constant [37 x i8] c"android/media/MediaCodec$LinearBlock\00", align 1 +@.TypeMapEntry.4287_from = private unnamed_addr constant [56 x i8] c"Android.Media.MediaCodec+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4288_to = private unnamed_addr constant [42 x i8] c"android/media/MediaCodec$MetricsConstants\00", align 1 +@.TypeMapEntry.4289_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaCodec+OutputFrame, Mono.Android\00", align 1 +@.TypeMapEntry.4290_to = private unnamed_addr constant [37 x i8] c"android/media/MediaCodec$OutputFrame\00", align 1 +@.TypeMapEntry.4291_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaCodec+ParameterDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.4292_to = private unnamed_addr constant [45 x i8] c"android/media/MediaCodec$ParameterDescriptor\00", align 1 +@.TypeMapEntry.4293_from = private unnamed_addr constant [52 x i8] c"Android.Media.MediaCodec+QueueRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4294_to = private unnamed_addr constant [38 x i8] c"android/media/MediaCodec$QueueRequest\00", align 1 +@.TypeMapEntry.4295_from = private unnamed_addr constant [39 x i8] c"Android.Media.MediaCodec, Mono.Android\00", align 1 +@.TypeMapEntry.4296_to = private unnamed_addr constant [25 x i8] c"android/media/MediaCodec\00", align 1 +@.TypeMapEntry.4297_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaCodecInfo+AudioCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.4298_to = private unnamed_addr constant [47 x i8] c"android/media/MediaCodecInfo$AudioCapabilities\00", align 1 +@.TypeMapEntry.4299_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaCodecInfo+CodecCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.4300_to = private unnamed_addr constant [47 x i8] c"android/media/MediaCodecInfo$CodecCapabilities\00", align 1 +@.TypeMapEntry.4301_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaCodecInfo+CodecProfileLevel, Mono.Android\00", align 1 +@.TypeMapEntry.4302_to = private unnamed_addr constant [47 x i8] c"android/media/MediaCodecInfo$CodecProfileLevel\00", align 1 +@.TypeMapEntry.4303_from = private unnamed_addr constant [63 x i8] c"Android.Media.MediaCodecInfo+EncoderCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.4304_to = private unnamed_addr constant [49 x i8] c"android/media/MediaCodecInfo$EncoderCapabilities\00", align 1 +@.TypeMapEntry.4305_from = private unnamed_addr constant [78 x i8] c"Android.Media.MediaCodecInfo+VideoCapabilities+PerformancePoint, Mono.Android\00", align 1 +@.TypeMapEntry.4306_to = private unnamed_addr constant [64 x i8] c"android/media/MediaCodecInfo$VideoCapabilities$PerformancePoint\00", align 1 +@.TypeMapEntry.4307_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaCodecInfo+VideoCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.4308_to = private unnamed_addr constant [47 x i8] c"android/media/MediaCodecInfo$VideoCapabilities\00", align 1 +@.TypeMapEntry.4309_from = private unnamed_addr constant [43 x i8] c"Android.Media.MediaCodecInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4310_to = private unnamed_addr constant [29 x i8] c"android/media/MediaCodecInfo\00", align 1 +@.TypeMapEntry.4311_from = private unnamed_addr constant [43 x i8] c"Android.Media.MediaCodecList, Mono.Android\00", align 1 +@.TypeMapEntry.4312_to = private unnamed_addr constant [29 x i8] c"android/media/MediaCodecList\00", align 1 +@.TypeMapEntry.4313_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaCommunicationManager, Mono.Android\00", align 1 +@.TypeMapEntry.4314_to = private unnamed_addr constant [40 x i8] c"android/media/MediaCommunicationManager\00", align 1 +@.TypeMapEntry.4315_from = private unnamed_addr constant [53 x i8] c"Android.Media.MediaController2+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4316_to = private unnamed_addr constant [39 x i8] c"android/media/MediaController2$Builder\00", align 1 +@.TypeMapEntry.4317_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaController2+ControllerCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4318_to = private unnamed_addr constant [50 x i8] c"android/media/MediaController2$ControllerCallback\00", align 1 +@.TypeMapEntry.4319_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaController2+ControllerCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4320_from = private unnamed_addr constant [45 x i8] c"Android.Media.MediaController2, Mono.Android\00", align 1 +@.TypeMapEntry.4321_to = private unnamed_addr constant [31 x i8] c"android/media/MediaController2\00", align 1 +@.TypeMapEntry.4322_from = private unnamed_addr constant [40 x i8] c"Android.Media.MediaCrypto, Mono.Android\00", align 1 +@.TypeMapEntry.4323_to = private unnamed_addr constant [26 x i8] c"android/media/MediaCrypto\00", align 1 +@.TypeMapEntry.4324_from = private unnamed_addr constant [49 x i8] c"Android.Media.MediaCryptoException, Mono.Android\00", align 1 +@.TypeMapEntry.4325_to = private unnamed_addr constant [35 x i8] c"android/media/MediaCryptoException\00", align 1 +@.TypeMapEntry.4326_from = private unnamed_addr constant [44 x i8] c"Android.Media.MediaDataSource, Mono.Android\00", align 1 +@.TypeMapEntry.4327_to = private unnamed_addr constant [30 x i8] c"android/media/MediaDataSource\00", align 1 +@.TypeMapEntry.4328_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaDataSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4329_from = private unnamed_addr constant [45 x i8] c"Android.Media.MediaDescrambler, Mono.Android\00", align 1 +@.TypeMapEntry.4330_to = private unnamed_addr constant [31 x i8] c"android/media/MediaDescrambler\00", align 1 +@.TypeMapEntry.4331_from = private unnamed_addr constant [53 x i8] c"Android.Media.MediaDescription+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4332_to = private unnamed_addr constant [39 x i8] c"android/media/MediaDescription$Builder\00", align 1 +@.TypeMapEntry.4333_from = private unnamed_addr constant [45 x i8] c"Android.Media.MediaDescription, Mono.Android\00", align 1 +@.TypeMapEntry.4334_to = private unnamed_addr constant [31 x i8] c"android/media/MediaDescription\00", align 1 +@.TypeMapEntry.4335_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaDrm+CryptoSession, Mono.Android\00", align 1 +@.TypeMapEntry.4336_to = private unnamed_addr constant [37 x i8] c"android/media/MediaDrm$CryptoSession\00", align 1 +@.TypeMapEntry.4337_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaDrm+ErrorCodes, Mono.Android\00", align 1 +@.TypeMapEntry.4338_to = private unnamed_addr constant [34 x i8] c"android/media/MediaDrm$ErrorCodes\00", align 1 +@.TypeMapEntry.4339_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaDrm+IHdcpLevel, Mono.Android\00", align 1 +@.TypeMapEntry.4340_to = private unnamed_addr constant [33 x i8] c"android/media/MediaDrm$HdcpLevel\00", align 1 +@.TypeMapEntry.4341_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaDrm+IHdcpLevelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4342_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaDrm+IOnEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.4343_to = private unnamed_addr constant [39 x i8] c"android/media/MediaDrm$OnEventListener\00", align 1 +@.TypeMapEntry.4344_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaDrm+IOnEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4345_to = private unnamed_addr constant [55 x i8] c"mono/android/media/MediaDrm_OnEventListenerImplementor\00", align 1 +@.TypeMapEntry.4346_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaDrm+IOnEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4347_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaDrm+IOnExpirationUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4348_to = private unnamed_addr constant [50 x i8] c"android/media/MediaDrm$OnExpirationUpdateListener\00", align 1 +@.TypeMapEntry.4349_from = private unnamed_addr constant [76 x i8] c"Android.Media.MediaDrm+IOnExpirationUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4350_to = private unnamed_addr constant [66 x i8] c"mono/android/media/MediaDrm_OnExpirationUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4351_from = private unnamed_addr constant [72 x i8] c"Android.Media.MediaDrm+IOnExpirationUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4352_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaDrm+IOnKeyStatusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.4353_to = private unnamed_addr constant [49 x i8] c"android/media/MediaDrm$OnKeyStatusChangeListener\00", align 1 +@.TypeMapEntry.4354_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaDrm+IOnKeyStatusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4355_to = private unnamed_addr constant [65 x i8] c"mono/android/media/MediaDrm_OnKeyStatusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.4356_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaDrm+IOnKeyStatusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4357_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaDrm+IOnSessionLostStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4358_to = private unnamed_addr constant [50 x i8] c"android/media/MediaDrm$OnSessionLostStateListener\00", align 1 +@.TypeMapEntry.4359_from = private unnamed_addr constant [76 x i8] c"Android.Media.MediaDrm+IOnSessionLostStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4360_to = private unnamed_addr constant [66 x i8] c"mono/android/media/MediaDrm_OnSessionLostStateListenerImplementor\00", align 1 +@.TypeMapEntry.4361_from = private unnamed_addr constant [72 x i8] c"Android.Media.MediaDrm+IOnSessionLostStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4362_from = private unnamed_addr constant [52 x i8] c"Android.Media.MediaDrm+ISecurityLevel, Mono.Android\00", align 1 +@.TypeMapEntry.4363_to = private unnamed_addr constant [37 x i8] c"android/media/MediaDrm$SecurityLevel\00", align 1 +@.TypeMapEntry.4364_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaDrm+ISecurityLevelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4365_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaDrm+KeyRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4366_to = private unnamed_addr constant [34 x i8] c"android/media/MediaDrm$KeyRequest\00", align 1 +@.TypeMapEntry.4367_from = private unnamed_addr constant [47 x i8] c"Android.Media.MediaDrm+KeyStatus, Mono.Android\00", align 1 +@.TypeMapEntry.4368_to = private unnamed_addr constant [33 x i8] c"android/media/MediaDrm$KeyStatus\00", align 1 +@.TypeMapEntry.4369_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaDrm+LogMessage, Mono.Android\00", align 1 +@.TypeMapEntry.4370_to = private unnamed_addr constant [34 x i8] c"android/media/MediaDrm$LogMessage\00", align 1 +@.TypeMapEntry.4371_from = private unnamed_addr constant [60 x i8] c"Android.Media.MediaDrm+MediaDrmStateException, Mono.Android\00", align 1 +@.TypeMapEntry.4372_to = private unnamed_addr constant [46 x i8] c"android/media/MediaDrm$MediaDrmStateException\00", align 1 +@.TypeMapEntry.4373_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaDrm+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4374_to = private unnamed_addr constant [40 x i8] c"android/media/MediaDrm$MetricsConstants\00", align 1 +@.TypeMapEntry.4375_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaDrm+PlaybackComponent, Mono.Android\00", align 1 +@.TypeMapEntry.4376_to = private unnamed_addr constant [41 x i8] c"android/media/MediaDrm$PlaybackComponent\00", align 1 +@.TypeMapEntry.4377_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaDrm+ProvisionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4378_to = private unnamed_addr constant [40 x i8] c"android/media/MediaDrm$ProvisionRequest\00", align 1 +@.TypeMapEntry.4379_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaDrm+SessionException, Mono.Android\00", align 1 +@.TypeMapEntry.4380_to = private unnamed_addr constant [40 x i8] c"android/media/MediaDrm$SessionException\00", align 1 +@.TypeMapEntry.4381_from = private unnamed_addr constant [37 x i8] c"Android.Media.MediaDrm, Mono.Android\00", align 1 +@.TypeMapEntry.4382_to = private unnamed_addr constant [23 x i8] c"android/media/MediaDrm\00", align 1 +@.TypeMapEntry.4383_from = private unnamed_addr constant [46 x i8] c"Android.Media.MediaDrmException, Mono.Android\00", align 1 +@.TypeMapEntry.4384_to = private unnamed_addr constant [32 x i8] c"android/media/MediaDrmException\00", align 1 +@.TypeMapEntry.4385_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaDrmResetException, Mono.Android\00", align 1 +@.TypeMapEntry.4386_to = private unnamed_addr constant [37 x i8] c"android/media/MediaDrmResetException\00", align 1 +@.TypeMapEntry.4387_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaExtractor+CasInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4388_to = private unnamed_addr constant [37 x i8] c"android/media/MediaExtractor$CasInfo\00", align 1 +@.TypeMapEntry.4389_from = private unnamed_addr constant [60 x i8] c"Android.Media.MediaExtractor+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4390_to = private unnamed_addr constant [46 x i8] c"android/media/MediaExtractor$MetricsConstants\00", align 1 +@.TypeMapEntry.4391_from = private unnamed_addr constant [43 x i8] c"Android.Media.MediaExtractor, Mono.Android\00", align 1 +@.TypeMapEntry.4392_to = private unnamed_addr constant [29 x i8] c"android/media/MediaExtractor\00", align 1 +@.TypeMapEntry.4393_from = private unnamed_addr constant [49 x i8] c"Android.Media.MediaFeature+HdrType, Mono.Android\00", align 1 +@.TypeMapEntry.4394_to = private unnamed_addr constant [35 x i8] c"android/media/MediaFeature$HdrType\00", align 1 +@.TypeMapEntry.4395_from = private unnamed_addr constant [41 x i8] c"Android.Media.MediaFeature, Mono.Android\00", align 1 +@.TypeMapEntry.4396_to = private unnamed_addr constant [27 x i8] c"android/media/MediaFeature\00", align 1 +@.TypeMapEntry.4397_from = private unnamed_addr constant [53 x i8] c"Android.Media.MediaFormat+QpOffsetRect, Mono.Android\00", align 1 +@.TypeMapEntry.4398_to = private unnamed_addr constant [39 x i8] c"android/media/MediaFormat$QpOffsetRect\00", align 1 +@.TypeMapEntry.4399_from = private unnamed_addr constant [40 x i8] c"Android.Media.MediaFormat, Mono.Android\00", align 1 +@.TypeMapEntry.4400_to = private unnamed_addr constant [26 x i8] c"android/media/MediaFormat\00", align 1 +@.TypeMapEntry.4401_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaMetadata+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4402_to = private unnamed_addr constant [36 x i8] c"android/media/MediaMetadata$Builder\00", align 1 +@.TypeMapEntry.4403_from = private unnamed_addr constant [42 x i8] c"Android.Media.MediaMetadata, Mono.Android\00", align 1 +@.TypeMapEntry.4404_to = private unnamed_addr constant [28 x i8] c"android/media/MediaMetadata\00", align 1 +@.TypeMapEntry.4405_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaMetadataEditor, Mono.Android\00", align 1 +@.TypeMapEntry.4406_to = private unnamed_addr constant [34 x i8] c"android/media/MediaMetadataEditor\00", align 1 +@.TypeMapEntry.4407_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaMetadataEditorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4408_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaMetadataRetriever+BitmapParams, Mono.Android\00", align 1 +@.TypeMapEntry.4409_to = private unnamed_addr constant [50 x i8] c"android/media/MediaMetadataRetriever$BitmapParams\00", align 1 +@.TypeMapEntry.4410_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaMetadataRetriever, Mono.Android\00", align 1 +@.TypeMapEntry.4411_to = private unnamed_addr constant [37 x i8] c"android/media/MediaMetadataRetriever\00", align 1 +@.TypeMapEntry.4412_from = private unnamed_addr constant [52 x i8] c"Android.Media.MediaMuxer+OutputFormat, Mono.Android\00", align 1 +@.TypeMapEntry.4413_to = private unnamed_addr constant [38 x i8] c"android/media/MediaMuxer$OutputFormat\00", align 1 +@.TypeMapEntry.4414_from = private unnamed_addr constant [39 x i8] c"Android.Media.MediaMuxer, Mono.Android\00", align 1 +@.TypeMapEntry.4415_to = private unnamed_addr constant [25 x i8] c"android/media/MediaMuxer\00", align 1 +@.TypeMapEntry.4416_from = private unnamed_addr constant [53 x i8] c"Android.Media.MediaParser+IInputReader, Mono.Android\00", align 1 +@.TypeMapEntry.4417_to = private unnamed_addr constant [38 x i8] c"android/media/MediaParser$InputReader\00", align 1 +@.TypeMapEntry.4418_from = private unnamed_addr constant [60 x i8] c"Android.Media.MediaParser+IInputReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4419_from = private unnamed_addr constant [56 x i8] c"Android.Media.MediaParser+IOutputConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.4420_to = private unnamed_addr constant [41 x i8] c"android/media/MediaParser$OutputConsumer\00", align 1 +@.TypeMapEntry.4421_from = private unnamed_addr constant [63 x i8] c"Android.Media.MediaParser+IOutputConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4422_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaParser+ISeekableInputReader, Mono.Android\00", align 1 +@.TypeMapEntry.4423_to = private unnamed_addr constant [46 x i8] c"android/media/MediaParser$SeekableInputReader\00", align 1 +@.TypeMapEntry.4424_from = private unnamed_addr constant [68 x i8] c"Android.Media.MediaParser+ISeekableInputReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4425_from = private unnamed_addr constant [57 x i8] c"Android.Media.MediaParser+ParsingException, Mono.Android\00", align 1 +@.TypeMapEntry.4426_to = private unnamed_addr constant [43 x i8] c"android/media/MediaParser$ParsingException\00", align 1 +@.TypeMapEntry.4427_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaParser+SeekMap, Mono.Android\00", align 1 +@.TypeMapEntry.4428_to = private unnamed_addr constant [34 x i8] c"android/media/MediaParser$SeekMap\00", align 1 +@.TypeMapEntry.4429_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaParser+SeekPoint, Mono.Android\00", align 1 +@.TypeMapEntry.4430_to = private unnamed_addr constant [36 x i8] c"android/media/MediaParser$SeekPoint\00", align 1 +@.TypeMapEntry.4431_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaParser+TrackData, Mono.Android\00", align 1 +@.TypeMapEntry.4432_to = private unnamed_addr constant [36 x i8] c"android/media/MediaParser$TrackData\00", align 1 +@.TypeMapEntry.4433_from = private unnamed_addr constant [73 x i8] c"Android.Media.MediaParser+UnrecognizedInputFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.4434_to = private unnamed_addr constant [59 x i8] c"android/media/MediaParser$UnrecognizedInputFormatException\00", align 1 +@.TypeMapEntry.4435_from = private unnamed_addr constant [40 x i8] c"Android.Media.MediaParser, Mono.Android\00", align 1 +@.TypeMapEntry.4436_to = private unnamed_addr constant [26 x i8] c"android/media/MediaParser\00", align 1 +@.TypeMapEntry.4437_from = private unnamed_addr constant [48 x i8] c"Android.Media.MediaPlayer+DrmInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4438_to = private unnamed_addr constant [34 x i8] c"android/media/MediaPlayer$DrmInfo\00", align 1 +@.TypeMapEntry.4439_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaPlayer+IOnBufferingUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4440_to = private unnamed_addr constant [52 x i8] c"android/media/MediaPlayer$OnBufferingUpdateListener\00", align 1 +@.TypeMapEntry.4441_from = private unnamed_addr constant [78 x i8] c"Android.Media.MediaPlayer+IOnBufferingUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4442_to = private unnamed_addr constant [68 x i8] c"mono/android/media/MediaPlayer_OnBufferingUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4443_from = private unnamed_addr constant [74 x i8] c"Android.Media.MediaPlayer+IOnBufferingUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4444_from = private unnamed_addr constant [62 x i8] c"Android.Media.MediaPlayer+IOnCompletionListener, Mono.Android\00", align 1 +@.TypeMapEntry.4445_to = private unnamed_addr constant [47 x i8] c"android/media/MediaPlayer$OnCompletionListener\00", align 1 +@.TypeMapEntry.4446_from = private unnamed_addr constant [73 x i8] c"Android.Media.MediaPlayer+IOnCompletionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4447_to = private unnamed_addr constant [63 x i8] c"mono/android/media/MediaPlayer_OnCompletionListenerImplementor\00", align 1 +@.TypeMapEntry.4448_from = private unnamed_addr constant [69 x i8] c"Android.Media.MediaPlayer+IOnCompletionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4449_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaPlayer+IOnDrmConfigHelper, Mono.Android\00", align 1 +@.TypeMapEntry.4450_to = private unnamed_addr constant [44 x i8] c"android/media/MediaPlayer$OnDrmConfigHelper\00", align 1 +@.TypeMapEntry.4451_from = private unnamed_addr constant [66 x i8] c"Android.Media.MediaPlayer+IOnDrmConfigHelperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4452_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaPlayer+IOnDrmInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.4453_to = private unnamed_addr constant [44 x i8] c"android/media/MediaPlayer$OnDrmInfoListener\00", align 1 +@.TypeMapEntry.4454_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaPlayer+IOnDrmInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4455_to = private unnamed_addr constant [60 x i8] c"mono/android/media/MediaPlayer_OnDrmInfoListenerImplementor\00", align 1 +@.TypeMapEntry.4456_from = private unnamed_addr constant [66 x i8] c"Android.Media.MediaPlayer+IOnDrmInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4457_from = private unnamed_addr constant [63 x i8] c"Android.Media.MediaPlayer+IOnDrmPreparedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4458_to = private unnamed_addr constant [48 x i8] c"android/media/MediaPlayer$OnDrmPreparedListener\00", align 1 +@.TypeMapEntry.4459_from = private unnamed_addr constant [74 x i8] c"Android.Media.MediaPlayer+IOnDrmPreparedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4460_to = private unnamed_addr constant [64 x i8] c"mono/android/media/MediaPlayer_OnDrmPreparedListenerImplementor\00", align 1 +@.TypeMapEntry.4461_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaPlayer+IOnDrmPreparedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4462_from = private unnamed_addr constant [57 x i8] c"Android.Media.MediaPlayer+IOnErrorListener, Mono.Android\00", align 1 +@.TypeMapEntry.4463_to = private unnamed_addr constant [42 x i8] c"android/media/MediaPlayer$OnErrorListener\00", align 1 +@.TypeMapEntry.4464_from = private unnamed_addr constant [68 x i8] c"Android.Media.MediaPlayer+IOnErrorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4465_to = private unnamed_addr constant [58 x i8] c"mono/android/media/MediaPlayer_OnErrorListenerImplementor\00", align 1 +@.TypeMapEntry.4466_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaPlayer+IOnErrorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4467_from = private unnamed_addr constant [56 x i8] c"Android.Media.MediaPlayer+IOnInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.4468_to = private unnamed_addr constant [41 x i8] c"android/media/MediaPlayer$OnInfoListener\00", align 1 +@.TypeMapEntry.4469_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaPlayer+IOnInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4470_to = private unnamed_addr constant [57 x i8] c"mono/android/media/MediaPlayer_OnInfoListenerImplementor\00", align 1 +@.TypeMapEntry.4471_from = private unnamed_addr constant [63 x i8] c"Android.Media.MediaPlayer+IOnInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4472_from = private unnamed_addr constant [74 x i8] c"Android.Media.MediaPlayer+IOnMediaTimeDiscontinuityListener, Mono.Android\00", align 1 +@.TypeMapEntry.4473_to = private unnamed_addr constant [59 x i8] c"android/media/MediaPlayer$OnMediaTimeDiscontinuityListener\00", align 1 +@.TypeMapEntry.4474_from = private unnamed_addr constant [85 x i8] c"Android.Media.MediaPlayer+IOnMediaTimeDiscontinuityListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4475_to = private unnamed_addr constant [75 x i8] c"mono/android/media/MediaPlayer_OnMediaTimeDiscontinuityListenerImplementor\00", align 1 +@.TypeMapEntry.4476_from = private unnamed_addr constant [81 x i8] c"Android.Media.MediaPlayer+IOnMediaTimeDiscontinuityListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4477_from = private unnamed_addr constant [60 x i8] c"Android.Media.MediaPlayer+IOnPreparedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4478_to = private unnamed_addr constant [45 x i8] c"android/media/MediaPlayer$OnPreparedListener\00", align 1 +@.TypeMapEntry.4479_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaPlayer+IOnPreparedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4480_to = private unnamed_addr constant [61 x i8] c"mono/android/media/MediaPlayer_OnPreparedListenerImplementor\00", align 1 +@.TypeMapEntry.4481_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaPlayer+IOnPreparedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4482_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaPlayer+IOnSeekCompleteListener, Mono.Android\00", align 1 +@.TypeMapEntry.4483_to = private unnamed_addr constant [49 x i8] c"android/media/MediaPlayer$OnSeekCompleteListener\00", align 1 +@.TypeMapEntry.4484_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaPlayer+IOnSeekCompleteListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4485_to = private unnamed_addr constant [65 x i8] c"mono/android/media/MediaPlayer_OnSeekCompleteListenerImplementor\00", align 1 +@.TypeMapEntry.4486_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaPlayer+IOnSeekCompleteListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4487_from = private unnamed_addr constant [64 x i8] c"Android.Media.MediaPlayer+IOnSubtitleDataListener, Mono.Android\00", align 1 +@.TypeMapEntry.4488_to = private unnamed_addr constant [49 x i8] c"android/media/MediaPlayer$OnSubtitleDataListener\00", align 1 +@.TypeMapEntry.4489_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaPlayer+IOnSubtitleDataListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4490_to = private unnamed_addr constant [65 x i8] c"mono/android/media/MediaPlayer_OnSubtitleDataListenerImplementor\00", align 1 +@.TypeMapEntry.4491_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaPlayer+IOnSubtitleDataListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4492_from = private unnamed_addr constant [74 x i8] c"Android.Media.MediaPlayer+IOnTimedMetaDataAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.4493_to = private unnamed_addr constant [59 x i8] c"android/media/MediaPlayer$OnTimedMetaDataAvailableListener\00", align 1 +@.TypeMapEntry.4494_from = private unnamed_addr constant [85 x i8] c"Android.Media.MediaPlayer+IOnTimedMetaDataAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4495_to = private unnamed_addr constant [75 x i8] c"mono/android/media/MediaPlayer_OnTimedMetaDataAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.4496_from = private unnamed_addr constant [81 x i8] c"Android.Media.MediaPlayer+IOnTimedMetaDataAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4497_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaPlayer+IOnTimedTextListener, Mono.Android\00", align 1 +@.TypeMapEntry.4498_to = private unnamed_addr constant [46 x i8] c"android/media/MediaPlayer$OnTimedTextListener\00", align 1 +@.TypeMapEntry.4499_from = private unnamed_addr constant [72 x i8] c"Android.Media.MediaPlayer+IOnTimedTextListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4500_to = private unnamed_addr constant [62 x i8] c"mono/android/media/MediaPlayer_OnTimedTextListenerImplementor\00", align 1 +@.TypeMapEntry.4501_from = private unnamed_addr constant [68 x i8] c"Android.Media.MediaPlayer+IOnTimedTextListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4502_from = private unnamed_addr constant [68 x i8] c"Android.Media.MediaPlayer+IOnVideoSizeChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4503_to = private unnamed_addr constant [53 x i8] c"android/media/MediaPlayer$OnVideoSizeChangedListener\00", align 1 +@.TypeMapEntry.4504_from = private unnamed_addr constant [79 x i8] c"Android.Media.MediaPlayer+IOnVideoSizeChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4505_to = private unnamed_addr constant [69 x i8] c"mono/android/media/MediaPlayer_OnVideoSizeChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4506_from = private unnamed_addr constant [75 x i8] c"Android.Media.MediaPlayer+IOnVideoSizeChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4507_from = private unnamed_addr constant [57 x i8] c"Android.Media.MediaPlayer+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4508_to = private unnamed_addr constant [43 x i8] c"android/media/MediaPlayer$MetricsConstants\00", align 1 +@.TypeMapEntry.4509_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaPlayer+NoDrmSchemeException, Mono.Android\00", align 1 +@.TypeMapEntry.4510_to = private unnamed_addr constant [47 x i8] c"android/media/MediaPlayer$NoDrmSchemeException\00", align 1 +@.TypeMapEntry.4511_from = private unnamed_addr constant [74 x i8] c"Android.Media.MediaPlayer+ProvisioningNetworkErrorException, Mono.Android\00", align 1 +@.TypeMapEntry.4512_to = private unnamed_addr constant [60 x i8] c"android/media/MediaPlayer$ProvisioningNetworkErrorException\00", align 1 +@.TypeMapEntry.4513_from = private unnamed_addr constant [73 x i8] c"Android.Media.MediaPlayer+ProvisioningServerErrorException, Mono.Android\00", align 1 +@.TypeMapEntry.4514_to = private unnamed_addr constant [59 x i8] c"android/media/MediaPlayer$ProvisioningServerErrorException\00", align 1 +@.TypeMapEntry.4515_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaPlayer+TrackInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4516_to = private unnamed_addr constant [36 x i8] c"android/media/MediaPlayer$TrackInfo\00", align 1 +@.TypeMapEntry.4517_from = private unnamed_addr constant [40 x i8] c"Android.Media.MediaPlayer, Mono.Android\00", align 1 +@.TypeMapEntry.4518_to = private unnamed_addr constant [26 x i8] c"android/media/MediaPlayer\00", align 1 +@.TypeMapEntry.4519_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRecorder+AudioEncoder, Mono.Android\00", align 1 +@.TypeMapEntry.4520_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRecorder$AudioEncoder\00", align 1 +@.TypeMapEntry.4521_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaRecorder+AudioSource, Mono.Android\00", align 1 +@.TypeMapEntry.4522_to = private unnamed_addr constant [40 x i8] c"android/media/MediaRecorder$AudioSource\00", align 1 +@.TypeMapEntry.4523_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaRecorder+IOnErrorListener, Mono.Android\00", align 1 +@.TypeMapEntry.4524_to = private unnamed_addr constant [44 x i8] c"android/media/MediaRecorder$OnErrorListener\00", align 1 +@.TypeMapEntry.4525_from = private unnamed_addr constant [70 x i8] c"Android.Media.MediaRecorder+IOnErrorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4526_to = private unnamed_addr constant [60 x i8] c"mono/android/media/MediaRecorder_OnErrorListenerImplementor\00", align 1 +@.TypeMapEntry.4527_from = private unnamed_addr constant [66 x i8] c"Android.Media.MediaRecorder+IOnErrorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4528_from = private unnamed_addr constant [58 x i8] c"Android.Media.MediaRecorder+IOnInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.4529_to = private unnamed_addr constant [43 x i8] c"android/media/MediaRecorder$OnInfoListener\00", align 1 +@.TypeMapEntry.4530_from = private unnamed_addr constant [69 x i8] c"Android.Media.MediaRecorder+IOnInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4531_to = private unnamed_addr constant [59 x i8] c"mono/android/media/MediaRecorder_OnInfoListenerImplementor\00", align 1 +@.TypeMapEntry.4532_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaRecorder+IOnInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4533_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaRecorder+MetricsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.4534_to = private unnamed_addr constant [45 x i8] c"android/media/MediaRecorder$MetricsConstants\00", align 1 +@.TypeMapEntry.4535_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRecorder+OutputFormat, Mono.Android\00", align 1 +@.TypeMapEntry.4536_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRecorder$OutputFormat\00", align 1 +@.TypeMapEntry.4537_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRecorder+VideoEncoder, Mono.Android\00", align 1 +@.TypeMapEntry.4538_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRecorder$VideoEncoder\00", align 1 +@.TypeMapEntry.4539_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaRecorder+VideoSource, Mono.Android\00", align 1 +@.TypeMapEntry.4540_to = private unnamed_addr constant [40 x i8] c"android/media/MediaRecorder$VideoSource\00", align 1 +@.TypeMapEntry.4541_from = private unnamed_addr constant [42 x i8] c"Android.Media.MediaRecorder, Mono.Android\00", align 1 +@.TypeMapEntry.4542_to = private unnamed_addr constant [28 x i8] c"android/media/MediaRecorder\00", align 1 +@.TypeMapEntry.4543_from = private unnamed_addr constant [52 x i8] c"Android.Media.MediaRoute2Info+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4544_to = private unnamed_addr constant [38 x i8] c"android/media/MediaRoute2Info$Builder\00", align 1 +@.TypeMapEntry.4545_from = private unnamed_addr constant [44 x i8] c"Android.Media.MediaRoute2Info, Mono.Android\00", align 1 +@.TypeMapEntry.4546_to = private unnamed_addr constant [30 x i8] c"android/media/MediaRoute2Info\00", align 1 +@.TypeMapEntry.4547_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRoute2ProviderService, Mono.Android\00", align 1 +@.TypeMapEntry.4548_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRoute2ProviderService\00", align 1 +@.TypeMapEntry.4549_from = private unnamed_addr constant [62 x i8] c"Android.Media.MediaRoute2ProviderServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4550_from = private unnamed_addr constant [49 x i8] c"Android.Media.MediaRouter+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4551_to = private unnamed_addr constant [35 x i8] c"android/media/MediaRouter$Callback\00", align 1 +@.TypeMapEntry.4552_from = private unnamed_addr constant [56 x i8] c"Android.Media.MediaRouter+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4553_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaRouter+RouteCategory, Mono.Android\00", align 1 +@.TypeMapEntry.4554_to = private unnamed_addr constant [40 x i8] c"android/media/MediaRouter$RouteCategory\00", align 1 +@.TypeMapEntry.4555_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaRouter+RouteGroup, Mono.Android\00", align 1 +@.TypeMapEntry.4556_to = private unnamed_addr constant [37 x i8] c"android/media/MediaRouter$RouteGroup\00", align 1 +@.TypeMapEntry.4557_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaRouter+RouteInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4558_to = private unnamed_addr constant [36 x i8] c"android/media/MediaRouter$RouteInfo\00", align 1 +@.TypeMapEntry.4559_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRouter+SimpleCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4560_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRouter$SimpleCallback\00", align 1 +@.TypeMapEntry.4561_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaRouter+UserRouteInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4562_to = private unnamed_addr constant [40 x i8] c"android/media/MediaRouter$UserRouteInfo\00", align 1 +@.TypeMapEntry.4563_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRouter+VolumeCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4564_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRouter$VolumeCallback\00", align 1 +@.TypeMapEntry.4565_from = private unnamed_addr constant [62 x i8] c"Android.Media.MediaRouter+VolumeCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4566_from = private unnamed_addr constant [40 x i8] c"Android.Media.MediaRouter, Mono.Android\00", align 1 +@.TypeMapEntry.4567_to = private unnamed_addr constant [26 x i8] c"android/media/MediaRouter\00", align 1 +@.TypeMapEntry.4568_from = private unnamed_addr constant [60 x i8] c"Android.Media.MediaRouter2+ControllerCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4569_to = private unnamed_addr constant [46 x i8] c"android/media/MediaRouter2$ControllerCallback\00", align 1 +@.TypeMapEntry.4570_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaRouter2+ControllerCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4571_from = private unnamed_addr constant [71 x i8] c"Android.Media.MediaRouter2+IOnGetControllerHintsListener, Mono.Android\00", align 1 +@.TypeMapEntry.4572_to = private unnamed_addr constant [56 x i8] c"android/media/MediaRouter2$OnGetControllerHintsListener\00", align 1 +@.TypeMapEntry.4573_from = private unnamed_addr constant [82 x i8] c"Android.Media.MediaRouter2+IOnGetControllerHintsListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4574_to = private unnamed_addr constant [72 x i8] c"mono/android/media/MediaRouter2_OnGetControllerHintsListenerImplementor\00", align 1 +@.TypeMapEntry.4575_from = private unnamed_addr constant [78 x i8] c"Android.Media.MediaRouter2+IOnGetControllerHintsListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4576_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaRouter2+RouteCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4577_to = private unnamed_addr constant [41 x i8] c"android/media/MediaRouter2$RouteCallback\00", align 1 +@.TypeMapEntry.4578_from = private unnamed_addr constant [62 x i8] c"Android.Media.MediaRouter2+RouteCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4579_from = private unnamed_addr constant [59 x i8] c"Android.Media.MediaRouter2+RoutingController, Mono.Android\00", align 1 +@.TypeMapEntry.4580_to = private unnamed_addr constant [45 x i8] c"android/media/MediaRouter2$RoutingController\00", align 1 +@.TypeMapEntry.4581_from = private unnamed_addr constant [61 x i8] c"Android.Media.MediaRouter2+ScanRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4582_to = private unnamed_addr constant [47 x i8] c"android/media/MediaRouter2$ScanRequest$Builder\00", align 1 +@.TypeMapEntry.4583_from = private unnamed_addr constant [53 x i8] c"Android.Media.MediaRouter2+ScanRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4584_to = private unnamed_addr constant [39 x i8] c"android/media/MediaRouter2$ScanRequest\00", align 1 +@.TypeMapEntry.4585_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaRouter2+ScanToken, Mono.Android\00", align 1 +@.TypeMapEntry.4586_to = private unnamed_addr constant [37 x i8] c"android/media/MediaRouter2$ScanToken\00", align 1 +@.TypeMapEntry.4587_from = private unnamed_addr constant [58 x i8] c"Android.Media.MediaRouter2+TransferCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4588_to = private unnamed_addr constant [44 x i8] c"android/media/MediaRouter2$TransferCallback\00", align 1 +@.TypeMapEntry.4589_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaRouter2+TransferCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4590_from = private unnamed_addr constant [41 x i8] c"Android.Media.MediaRouter2, Mono.Android\00", align 1 +@.TypeMapEntry.4591_to = private unnamed_addr constant [27 x i8] c"android/media/MediaRouter2\00", align 1 +@.TypeMapEntry.4592_from = private unnamed_addr constant [81 x i8] c"Android.Media.MediaScannerConnection+IMediaScannerConnectionClient, Mono.Android\00", align 1 +@.TypeMapEntry.4593_to = private unnamed_addr constant [66 x i8] c"android/media/MediaScannerConnection$MediaScannerConnectionClient\00", align 1 +@.TypeMapEntry.4594_from = private unnamed_addr constant [88 x i8] c"Android.Media.MediaScannerConnection+IMediaScannerConnectionClientInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4595_from = private unnamed_addr constant [76 x i8] c"Android.Media.MediaScannerConnection+IOnScanCompletedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4596_to = private unnamed_addr constant [61 x i8] c"android/media/MediaScannerConnection$OnScanCompletedListener\00", align 1 +@.TypeMapEntry.4597_from = private unnamed_addr constant [87 x i8] c"Android.Media.MediaScannerConnection+IOnScanCompletedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4598_to = private unnamed_addr constant [77 x i8] c"mono/android/media/MediaScannerConnection_OnScanCompletedListenerImplementor\00", align 1 +@.TypeMapEntry.4599_from = private unnamed_addr constant [83 x i8] c"Android.Media.MediaScannerConnection+IOnScanCompletedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4600_from = private unnamed_addr constant [51 x i8] c"Android.Media.MediaScannerConnection, Mono.Android\00", align 1 +@.TypeMapEntry.4601_to = private unnamed_addr constant [37 x i8] c"android/media/MediaScannerConnection\00", align 1 +@.TypeMapEntry.4602_from = private unnamed_addr constant [50 x i8] c"Android.Media.MediaSession2+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4603_to = private unnamed_addr constant [36 x i8] c"android/media/MediaSession2$Builder\00", align 1 +@.TypeMapEntry.4604_from = private unnamed_addr constant [57 x i8] c"Android.Media.MediaSession2+ControllerInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4605_to = private unnamed_addr constant [43 x i8] c"android/media/MediaSession2$ControllerInfo\00", align 1 +@.TypeMapEntry.4606_from = private unnamed_addr constant [58 x i8] c"Android.Media.MediaSession2+SessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4607_to = private unnamed_addr constant [44 x i8] c"android/media/MediaSession2$SessionCallback\00", align 1 +@.TypeMapEntry.4608_from = private unnamed_addr constant [65 x i8] c"Android.Media.MediaSession2+SessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4609_from = private unnamed_addr constant [42 x i8] c"Android.Media.MediaSession2, Mono.Android\00", align 1 +@.TypeMapEntry.4610_to = private unnamed_addr constant [28 x i8] c"android/media/MediaSession2\00", align 1 +@.TypeMapEntry.4611_from = private unnamed_addr constant [67 x i8] c"Android.Media.MediaSession2Service+MediaNotification, Mono.Android\00", align 1 +@.TypeMapEntry.4612_to = private unnamed_addr constant [53 x i8] c"android/media/MediaSession2Service$MediaNotification\00", align 1 +@.TypeMapEntry.4613_from = private unnamed_addr constant [49 x i8] c"Android.Media.MediaSession2Service, Mono.Android\00", align 1 +@.TypeMapEntry.4614_to = private unnamed_addr constant [35 x i8] c"android/media/MediaSession2Service\00", align 1 +@.TypeMapEntry.4615_from = private unnamed_addr constant [56 x i8] c"Android.Media.MediaSession2ServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4616_from = private unnamed_addr constant [47 x i8] c"Android.Media.MediaSync+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4617_to = private unnamed_addr constant [33 x i8] c"android/media/MediaSync$Callback\00", align 1 +@.TypeMapEntry.4618_from = private unnamed_addr constant [54 x i8] c"Android.Media.MediaSync+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4619_from = private unnamed_addr constant [55 x i8] c"Android.Media.MediaSync+IOnErrorListener, Mono.Android\00", align 1 +@.TypeMapEntry.4620_to = private unnamed_addr constant [40 x i8] c"android/media/MediaSync$OnErrorListener\00", align 1 +@.TypeMapEntry.4621_from = private unnamed_addr constant [66 x i8] c"Android.Media.MediaSync+IOnErrorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4622_to = private unnamed_addr constant [56 x i8] c"mono/android/media/MediaSync_OnErrorListenerImplementor\00", align 1 +@.TypeMapEntry.4623_from = private unnamed_addr constant [62 x i8] c"Android.Media.MediaSync+IOnErrorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4624_from = private unnamed_addr constant [38 x i8] c"Android.Media.MediaSync, Mono.Android\00", align 1 +@.TypeMapEntry.4625_to = private unnamed_addr constant [24 x i8] c"android/media/MediaSync\00", align 1 +@.TypeMapEntry.4626_from = private unnamed_addr constant [43 x i8] c"Android.Media.MediaSyncEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4627_to = private unnamed_addr constant [29 x i8] c"android/media/MediaSyncEvent\00", align 1 +@.TypeMapEntry.4628_from = private unnamed_addr constant [43 x i8] c"Android.Media.MediaTimestamp, Mono.Android\00", align 1 +@.TypeMapEntry.4629_to = private unnamed_addr constant [29 x i8] c"android/media/MediaTimestamp\00", align 1 +@.TypeMapEntry.4630_from = private unnamed_addr constant [50 x i8] c"Android.Media.Metrics.BundleSession, Mono.Android\00", align 1 +@.TypeMapEntry.4631_to = private unnamed_addr constant [36 x i8] c"android/media/metrics/BundleSession\00", align 1 +@.TypeMapEntry.4632_from = private unnamed_addr constant [62 x i8] c"Android.Media.Metrics.EditingEndedEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4633_to = private unnamed_addr constant [48 x i8] c"android/media/metrics/EditingEndedEvent$Builder\00", align 1 +@.TypeMapEntry.4634_from = private unnamed_addr constant [54 x i8] c"Android.Media.Metrics.EditingEndedEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4635_to = private unnamed_addr constant [40 x i8] c"android/media/metrics/EditingEndedEvent\00", align 1 +@.TypeMapEntry.4636_from = private unnamed_addr constant [51 x i8] c"Android.Media.Metrics.EditingSession, Mono.Android\00", align 1 +@.TypeMapEntry.4637_to = private unnamed_addr constant [37 x i8] c"android/media/metrics/EditingSession\00", align 1 +@.TypeMapEntry.4638_from = private unnamed_addr constant [42 x i8] c"Android.Media.Metrics.Event, Mono.Android\00", align 1 +@.TypeMapEntry.4639_to = private unnamed_addr constant [28 x i8] c"android/media/metrics/Event\00", align 1 +@.TypeMapEntry.4640_from = private unnamed_addr constant [49 x i8] c"Android.Media.Metrics.EventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4641_from = private unnamed_addr constant [49 x i8] c"Android.Media.Metrics.LogSessionId, Mono.Android\00", align 1 +@.TypeMapEntry.4642_to = private unnamed_addr constant [35 x i8] c"android/media/metrics/LogSessionId\00", align 1 +@.TypeMapEntry.4643_from = private unnamed_addr constant [58 x i8] c"Android.Media.Metrics.MediaItemInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4644_to = private unnamed_addr constant [44 x i8] c"android/media/metrics/MediaItemInfo$Builder\00", align 1 +@.TypeMapEntry.4645_from = private unnamed_addr constant [50 x i8] c"Android.Media.Metrics.MediaItemInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4646_to = private unnamed_addr constant [36 x i8] c"android/media/metrics/MediaItemInfo\00", align 1 +@.TypeMapEntry.4647_from = private unnamed_addr constant [56 x i8] c"Android.Media.Metrics.MediaMetricsManager, Mono.Android\00", align 1 +@.TypeMapEntry.4648_to = private unnamed_addr constant [42 x i8] c"android/media/metrics/MediaMetricsManager\00", align 1 +@.TypeMapEntry.4649_from = private unnamed_addr constant [57 x i8] c"Android.Media.Metrics.NetworkEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4650_to = private unnamed_addr constant [43 x i8] c"android/media/metrics/NetworkEvent$Builder\00", align 1 +@.TypeMapEntry.4651_from = private unnamed_addr constant [49 x i8] c"Android.Media.Metrics.NetworkEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4652_to = private unnamed_addr constant [35 x i8] c"android/media/metrics/NetworkEvent\00", align 1 +@.TypeMapEntry.4653_from = private unnamed_addr constant [63 x i8] c"Android.Media.Metrics.PlaybackErrorEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4654_to = private unnamed_addr constant [49 x i8] c"android/media/metrics/PlaybackErrorEvent$Builder\00", align 1 +@.TypeMapEntry.4655_from = private unnamed_addr constant [55 x i8] c"Android.Media.Metrics.PlaybackErrorEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4656_to = private unnamed_addr constant [41 x i8] c"android/media/metrics/PlaybackErrorEvent\00", align 1 +@.TypeMapEntry.4657_from = private unnamed_addr constant [60 x i8] c"Android.Media.Metrics.PlaybackMetrics+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4658_to = private unnamed_addr constant [46 x i8] c"android/media/metrics/PlaybackMetrics$Builder\00", align 1 +@.TypeMapEntry.4659_from = private unnamed_addr constant [52 x i8] c"Android.Media.Metrics.PlaybackMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.4660_to = private unnamed_addr constant [38 x i8] c"android/media/metrics/PlaybackMetrics\00", align 1 +@.TypeMapEntry.4661_from = private unnamed_addr constant [52 x i8] c"Android.Media.Metrics.PlaybackSession, Mono.Android\00", align 1 +@.TypeMapEntry.4662_to = private unnamed_addr constant [38 x i8] c"android/media/metrics/PlaybackSession\00", align 1 +@.TypeMapEntry.4663_from = private unnamed_addr constant [63 x i8] c"Android.Media.Metrics.PlaybackStateEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4664_to = private unnamed_addr constant [49 x i8] c"android/media/metrics/PlaybackStateEvent$Builder\00", align 1 +@.TypeMapEntry.4665_from = private unnamed_addr constant [55 x i8] c"Android.Media.Metrics.PlaybackStateEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4666_to = private unnamed_addr constant [41 x i8] c"android/media/metrics/PlaybackStateEvent\00", align 1 +@.TypeMapEntry.4667_from = private unnamed_addr constant [53 x i8] c"Android.Media.Metrics.RecordingSession, Mono.Android\00", align 1 +@.TypeMapEntry.4668_to = private unnamed_addr constant [39 x i8] c"android/media/metrics/RecordingSession\00", align 1 +@.TypeMapEntry.4669_from = private unnamed_addr constant [61 x i8] c"Android.Media.Metrics.TrackChangeEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4670_to = private unnamed_addr constant [47 x i8] c"android/media/metrics/TrackChangeEvent$Builder\00", align 1 +@.TypeMapEntry.4671_from = private unnamed_addr constant [53 x i8] c"Android.Media.Metrics.TrackChangeEvent, Mono.Android\00", align 1 +@.TypeMapEntry.4672_to = private unnamed_addr constant [39 x i8] c"android/media/metrics/TrackChangeEvent\00", align 1 +@.TypeMapEntry.4673_from = private unnamed_addr constant [55 x i8] c"Android.Media.Metrics.TranscodingSession, Mono.Android\00", align 1 +@.TypeMapEntry.4674_to = private unnamed_addr constant [41 x i8] c"android/media/metrics/TranscodingSession\00", align 1 +@.TypeMapEntry.4675_from = private unnamed_addr constant [48 x i8] c"Android.Media.MicrophoneDirection, Mono.Android\00", align 1 +@.TypeMapEntry.4676_to = private unnamed_addr constant [48 x i8] c"mono/internal/android/media/MicrophoneDirection\00", align 1 +@.TypeMapEntry.4677_from = private unnamed_addr constant [56 x i8] c"Android.Media.MicrophoneInfo+Coordinate3F, Mono.Android\00", align 1 +@.TypeMapEntry.4678_to = private unnamed_addr constant [42 x i8] c"android/media/MicrophoneInfo$Coordinate3F\00", align 1 +@.TypeMapEntry.4679_from = private unnamed_addr constant [43 x i8] c"Android.Media.MicrophoneInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4680_to = private unnamed_addr constant [29 x i8] c"android/media/MicrophoneInfo\00", align 1 +@.TypeMapEntry.4681_from = private unnamed_addr constant [59 x i8] c"Android.Media.Midi.MidiDevice+MidiConnection, Mono.Android\00", align 1 +@.TypeMapEntry.4682_to = private unnamed_addr constant [45 x i8] c"android/media/midi/MidiDevice$MidiConnection\00", align 1 +@.TypeMapEntry.4683_from = private unnamed_addr constant [44 x i8] c"Android.Media.Midi.MidiDevice, Mono.Android\00", align 1 +@.TypeMapEntry.4684_to = private unnamed_addr constant [30 x i8] c"android/media/midi/MidiDevice\00", align 1 +@.TypeMapEntry.4685_from = private unnamed_addr constant [57 x i8] c"Android.Media.Midi.MidiDeviceInfo+PortInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4686_to = private unnamed_addr constant [43 x i8] c"android/media/midi/MidiDeviceInfo$PortInfo\00", align 1 +@.TypeMapEntry.4687_from = private unnamed_addr constant [48 x i8] c"Android.Media.Midi.MidiDeviceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4688_to = private unnamed_addr constant [34 x i8] c"android/media/midi/MidiDeviceInfo\00", align 1 +@.TypeMapEntry.4689_from = private unnamed_addr constant [51 x i8] c"Android.Media.Midi.MidiDeviceService, Mono.Android\00", align 1 +@.TypeMapEntry.4690_to = private unnamed_addr constant [37 x i8] c"android/media/midi/MidiDeviceService\00", align 1 +@.TypeMapEntry.4691_from = private unnamed_addr constant [58 x i8] c"Android.Media.Midi.MidiDeviceServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4692_from = private unnamed_addr constant [50 x i8] c"Android.Media.Midi.MidiDeviceStatus, Mono.Android\00", align 1 +@.TypeMapEntry.4693_to = private unnamed_addr constant [36 x i8] c"android/media/midi/MidiDeviceStatus\00", align 1 +@.TypeMapEntry.4694_from = private unnamed_addr constant [47 x i8] c"Android.Media.Midi.MidiInputPort, Mono.Android\00", align 1 +@.TypeMapEntry.4695_to = private unnamed_addr constant [33 x i8] c"android/media/midi/MidiInputPort\00", align 1 +@.TypeMapEntry.4696_from = private unnamed_addr constant [60 x i8] c"Android.Media.Midi.MidiManager+DeviceCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4697_to = private unnamed_addr constant [46 x i8] c"android/media/midi/MidiManager$DeviceCallback\00", align 1 +@.TypeMapEntry.4698_from = private unnamed_addr constant [69 x i8] c"Android.Media.Midi.MidiManager+IOnDeviceOpenedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4699_to = private unnamed_addr constant [54 x i8] c"android/media/midi/MidiManager$OnDeviceOpenedListener\00", align 1 +@.TypeMapEntry.4700_from = private unnamed_addr constant [80 x i8] c"Android.Media.Midi.MidiManager+IOnDeviceOpenedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4701_to = private unnamed_addr constant [70 x i8] c"mono/android/media/midi/MidiManager_OnDeviceOpenedListenerImplementor\00", align 1 +@.TypeMapEntry.4702_from = private unnamed_addr constant [76 x i8] c"Android.Media.Midi.MidiManager+IOnDeviceOpenedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4703_from = private unnamed_addr constant [45 x i8] c"Android.Media.Midi.MidiManager, Mono.Android\00", align 1 +@.TypeMapEntry.4704_to = private unnamed_addr constant [31 x i8] c"android/media/midi/MidiManager\00", align 1 +@.TypeMapEntry.4705_from = private unnamed_addr constant [48 x i8] c"Android.Media.Midi.MidiOutputPort, Mono.Android\00", align 1 +@.TypeMapEntry.4706_to = private unnamed_addr constant [34 x i8] c"android/media/midi/MidiOutputPort\00", align 1 +@.TypeMapEntry.4707_from = private unnamed_addr constant [46 x i8] c"Android.Media.Midi.MidiReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.4708_to = private unnamed_addr constant [32 x i8] c"android/media/midi/MidiReceiver\00", align 1 +@.TypeMapEntry.4709_from = private unnamed_addr constant [53 x i8] c"Android.Media.Midi.MidiReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4710_from = private unnamed_addr constant [44 x i8] c"Android.Media.Midi.MidiSender, Mono.Android\00", align 1 +@.TypeMapEntry.4711_to = private unnamed_addr constant [30 x i8] c"android/media/midi/MidiSender\00", align 1 +@.TypeMapEntry.4712_from = private unnamed_addr constant [51 x i8] c"Android.Media.Midi.MidiSenderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4713_from = private unnamed_addr constant [54 x i8] c"Android.Media.Midi.MidiUmpDeviceService, Mono.Android\00", align 1 +@.TypeMapEntry.4714_to = private unnamed_addr constant [40 x i8] c"android/media/midi/MidiUmpDeviceService\00", align 1 +@.TypeMapEntry.4715_from = private unnamed_addr constant [61 x i8] c"Android.Media.Midi.MidiUmpDeviceServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4716_from = private unnamed_addr constant [52 x i8] c"Android.Media.NotProvisionedException, Mono.Android\00", align 1 +@.TypeMapEntry.4717_to = private unnamed_addr constant [38 x i8] c"android/media/NotProvisionedException\00", align 1 +@.TypeMapEntry.4718_from = private unnamed_addr constant [43 x i8] c"Android.Media.PlaybackParams, Mono.Android\00", align 1 +@.TypeMapEntry.4719_to = private unnamed_addr constant [29 x i8] c"android/media/PlaybackParams\00", align 1 +@.TypeMapEntry.4720_from = private unnamed_addr constant [64 x i8] c"Android.Media.Projection.MediaProjection+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4721_to = private unnamed_addr constant [50 x i8] c"android/media/projection/MediaProjection$Callback\00", align 1 +@.TypeMapEntry.4722_from = private unnamed_addr constant [71 x i8] c"Android.Media.Projection.MediaProjection+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4723_from = private unnamed_addr constant [55 x i8] c"Android.Media.Projection.MediaProjection, Mono.Android\00", align 1 +@.TypeMapEntry.4724_to = private unnamed_addr constant [41 x i8] c"android/media/projection/MediaProjection\00", align 1 +@.TypeMapEntry.4725_from = private unnamed_addr constant [61 x i8] c"Android.Media.Projection.MediaProjectionConfig, Mono.Android\00", align 1 +@.TypeMapEntry.4726_to = private unnamed_addr constant [47 x i8] c"android/media/projection/MediaProjectionConfig\00", align 1 +@.TypeMapEntry.4727_from = private unnamed_addr constant [62 x i8] c"Android.Media.Projection.MediaProjectionManager, Mono.Android\00", align 1 +@.TypeMapEntry.4728_to = private unnamed_addr constant [48 x i8] c"android/media/projection/MediaProjectionManager\00", align 1 +@.TypeMapEntry.4729_from = private unnamed_addr constant [35 x i8] c"Android.Media.Rating, Mono.Android\00", align 1 +@.TypeMapEntry.4730_to = private unnamed_addr constant [21 x i8] c"android/media/Rating\00", align 1 +@.TypeMapEntry.4731_from = private unnamed_addr constant [79 x i8] c"Android.Media.RemoteControlClient+IOnGetPlaybackPositionListener, Mono.Android\00", align 1 +@.TypeMapEntry.4732_to = private unnamed_addr constant [64 x i8] c"android/media/RemoteControlClient$OnGetPlaybackPositionListener\00", align 1 +@.TypeMapEntry.4733_from = private unnamed_addr constant [90 x i8] c"Android.Media.RemoteControlClient+IOnGetPlaybackPositionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4734_to = private unnamed_addr constant [80 x i8] c"mono/android/media/RemoteControlClient_OnGetPlaybackPositionListenerImplementor\00", align 1 +@.TypeMapEntry.4735_from = private unnamed_addr constant [86 x i8] c"Android.Media.RemoteControlClient+IOnGetPlaybackPositionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4736_from = private unnamed_addr constant [74 x i8] c"Android.Media.RemoteControlClient+IOnMetadataUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4737_to = private unnamed_addr constant [59 x i8] c"android/media/RemoteControlClient$OnMetadataUpdateListener\00", align 1 +@.TypeMapEntry.4738_from = private unnamed_addr constant [85 x i8] c"Android.Media.RemoteControlClient+IOnMetadataUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4739_to = private unnamed_addr constant [75 x i8] c"mono/android/media/RemoteControlClient_OnMetadataUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4740_from = private unnamed_addr constant [81 x i8] c"Android.Media.RemoteControlClient+IOnMetadataUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4741_from = private unnamed_addr constant [82 x i8] c"Android.Media.RemoteControlClient+IOnPlaybackPositionUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4742_to = private unnamed_addr constant [67 x i8] c"android/media/RemoteControlClient$OnPlaybackPositionUpdateListener\00", align 1 +@.TypeMapEntry.4743_from = private unnamed_addr constant [93 x i8] c"Android.Media.RemoteControlClient+IOnPlaybackPositionUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4744_to = private unnamed_addr constant [83 x i8] c"mono/android/media/RemoteControlClient_OnPlaybackPositionUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4745_from = private unnamed_addr constant [89 x i8] c"Android.Media.RemoteControlClient+IOnPlaybackPositionUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4746_from = private unnamed_addr constant [63 x i8] c"Android.Media.RemoteControlClient+MetadataEditor, Mono.Android\00", align 1 +@.TypeMapEntry.4747_to = private unnamed_addr constant [49 x i8] c"android/media/RemoteControlClient$MetadataEditor\00", align 1 +@.TypeMapEntry.4748_from = private unnamed_addr constant [48 x i8] c"Android.Media.RemoteControlClient, Mono.Android\00", align 1 +@.TypeMapEntry.4749_to = private unnamed_addr constant [34 x i8] c"android/media/RemoteControlClient\00", align 1 +@.TypeMapEntry.4750_from = private unnamed_addr constant [69 x i8] c"Android.Media.RemoteController+IOnClientUpdateListener, Mono.Android\00", align 1 +@.TypeMapEntry.4751_to = private unnamed_addr constant [54 x i8] c"android/media/RemoteController$OnClientUpdateListener\00", align 1 +@.TypeMapEntry.4752_from = private unnamed_addr constant [80 x i8] c"Android.Media.RemoteController+IOnClientUpdateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4753_to = private unnamed_addr constant [70 x i8] c"mono/android/media/RemoteController_OnClientUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.4754_from = private unnamed_addr constant [76 x i8] c"Android.Media.RemoteController+IOnClientUpdateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4755_from = private unnamed_addr constant [60 x i8] c"Android.Media.RemoteController+MetadataEditor, Mono.Android\00", align 1 +@.TypeMapEntry.4756_to = private unnamed_addr constant [46 x i8] c"android/media/RemoteController$MetadataEditor\00", align 1 +@.TypeMapEntry.4757_from = private unnamed_addr constant [45 x i8] c"Android.Media.RemoteController, Mono.Android\00", align 1 +@.TypeMapEntry.4758_to = private unnamed_addr constant [31 x i8] c"android/media/RemoteController\00", align 1 +@.TypeMapEntry.4759_from = private unnamed_addr constant [50 x i8] c"Android.Media.ResourceBusyException, Mono.Android\00", align 1 +@.TypeMapEntry.4760_to = private unnamed_addr constant [36 x i8] c"android/media/ResourceBusyException\00", align 1 +@.TypeMapEntry.4761_from = private unnamed_addr constant [37 x i8] c"Android.Media.Ringtone, Mono.Android\00", align 1 +@.TypeMapEntry.4762_to = private unnamed_addr constant [23 x i8] c"android/media/Ringtone\00", align 1 +@.TypeMapEntry.4763_from = private unnamed_addr constant [44 x i8] c"Android.Media.RingtoneManager, Mono.Android\00", align 1 +@.TypeMapEntry.4764_to = private unnamed_addr constant [30 x i8] c"android/media/RingtoneManager\00", align 1 +@.TypeMapEntry.4765_from = private unnamed_addr constant [61 x i8] c"Android.Media.RouteDiscoveryPreference+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4766_to = private unnamed_addr constant [47 x i8] c"android/media/RouteDiscoveryPreference$Builder\00", align 1 +@.TypeMapEntry.4767_from = private unnamed_addr constant [53 x i8] c"Android.Media.RouteDiscoveryPreference, Mono.Android\00", align 1 +@.TypeMapEntry.4768_to = private unnamed_addr constant [39 x i8] c"android/media/RouteDiscoveryPreference\00", align 1 +@.TypeMapEntry.4769_from = private unnamed_addr constant [59 x i8] c"Android.Media.RouteListingPreference+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4770_to = private unnamed_addr constant [45 x i8] c"android/media/RouteListingPreference$Builder\00", align 1 +@.TypeMapEntry.4771_from = private unnamed_addr constant [64 x i8] c"Android.Media.RouteListingPreference+Item+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4772_to = private unnamed_addr constant [50 x i8] c"android/media/RouteListingPreference$Item$Builder\00", align 1 +@.TypeMapEntry.4773_from = private unnamed_addr constant [56 x i8] c"Android.Media.RouteListingPreference+Item, Mono.Android\00", align 1 +@.TypeMapEntry.4774_to = private unnamed_addr constant [42 x i8] c"android/media/RouteListingPreference$Item\00", align 1 +@.TypeMapEntry.4775_from = private unnamed_addr constant [51 x i8] c"Android.Media.RouteListingPreference, Mono.Android\00", align 1 +@.TypeMapEntry.4776_to = private unnamed_addr constant [37 x i8] c"android/media/RouteListingPreference\00", align 1 +@.TypeMapEntry.4777_from = private unnamed_addr constant [55 x i8] c"Android.Media.RoutingSessionInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4778_to = private unnamed_addr constant [41 x i8] c"android/media/RoutingSessionInfo$Builder\00", align 1 +@.TypeMapEntry.4779_from = private unnamed_addr constant [47 x i8] c"Android.Media.RoutingSessionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4780_to = private unnamed_addr constant [33 x i8] c"android/media/RoutingSessionInfo\00", align 1 +@.TypeMapEntry.4781_from = private unnamed_addr constant [61 x i8] c"Android.Media.Session.MediaController+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4782_to = private unnamed_addr constant [47 x i8] c"android/media/session/MediaController$Callback\00", align 1 +@.TypeMapEntry.4783_from = private unnamed_addr constant [68 x i8] c"Android.Media.Session.MediaController+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4784_from = private unnamed_addr constant [65 x i8] c"Android.Media.Session.MediaController+PlaybackInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4785_to = private unnamed_addr constant [51 x i8] c"android/media/session/MediaController$PlaybackInfo\00", align 1 +@.TypeMapEntry.4786_from = private unnamed_addr constant [70 x i8] c"Android.Media.Session.MediaController+TransportControls, Mono.Android\00", align 1 +@.TypeMapEntry.4787_to = private unnamed_addr constant [56 x i8] c"android/media/session/MediaController$TransportControls\00", align 1 +@.TypeMapEntry.4788_from = private unnamed_addr constant [52 x i8] c"Android.Media.Session.MediaController, Mono.Android\00", align 1 +@.TypeMapEntry.4789_to = private unnamed_addr constant [38 x i8] c"android/media/session/MediaController\00", align 1 +@.TypeMapEntry.4790_from = private unnamed_addr constant [58 x i8] c"Android.Media.Session.MediaSession+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.4791_to = private unnamed_addr constant [44 x i8] c"android/media/session/MediaSession$Callback\00", align 1 +@.TypeMapEntry.4792_from = private unnamed_addr constant [65 x i8] c"Android.Media.Session.MediaSession+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4793_from = private unnamed_addr constant [59 x i8] c"Android.Media.Session.MediaSession+QueueItem, Mono.Android\00", align 1 +@.TypeMapEntry.4794_to = private unnamed_addr constant [45 x i8] c"android/media/session/MediaSession$QueueItem\00", align 1 +@.TypeMapEntry.4795_from = private unnamed_addr constant [55 x i8] c"Android.Media.Session.MediaSession+Token, Mono.Android\00", align 1 +@.TypeMapEntry.4796_to = private unnamed_addr constant [41 x i8] c"android/media/session/MediaSession$Token\00", align 1 +@.TypeMapEntry.4797_from = private unnamed_addr constant [49 x i8] c"Android.Media.Session.MediaSession, Mono.Android\00", align 1 +@.TypeMapEntry.4798_to = private unnamed_addr constant [35 x i8] c"android/media/session/MediaSession\00", align 1 +@.TypeMapEntry.4799_from = private unnamed_addr constant [89 x i8] c"Android.Media.Session.MediaSessionManager+IOnActiveSessionsChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4800_to = private unnamed_addr constant [74 x i8] c"android/media/session/MediaSessionManager$OnActiveSessionsChangedListener\00", align 1 +@.TypeMapEntry.4801_from = private unnamed_addr constant [100 x i8] c"Android.Media.Session.MediaSessionManager+IOnActiveSessionsChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4802_to = private unnamed_addr constant [90 x i8] c"mono/android/media/session/MediaSessionManager_OnActiveSessionsChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4803_from = private unnamed_addr constant [96 x i8] c"Android.Media.Session.MediaSessionManager+IOnActiveSessionsChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4804_from = private unnamed_addr constant [95 x i8] c"Android.Media.Session.MediaSessionManager+IOnMediaKeyEventSessionChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4805_to = private unnamed_addr constant [80 x i8] c"android/media/session/MediaSessionManager$OnMediaKeyEventSessionChangedListener\00", align 1 +@.TypeMapEntry.4806_from = private unnamed_addr constant [106 x i8] c"Android.Media.Session.MediaSessionManager+IOnMediaKeyEventSessionChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4807_to = private unnamed_addr constant [96 x i8] c"mono/android/media/session/MediaSessionManager_OnMediaKeyEventSessionChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4808_from = private unnamed_addr constant [102 x i8] c"Android.Media.Session.MediaSessionManager+IOnMediaKeyEventSessionChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4809_from = private unnamed_addr constant [89 x i8] c"Android.Media.Session.MediaSessionManager+IOnSession2TokensChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4810_to = private unnamed_addr constant [74 x i8] c"android/media/session/MediaSessionManager$OnSession2TokensChangedListener\00", align 1 +@.TypeMapEntry.4811_from = private unnamed_addr constant [100 x i8] c"Android.Media.Session.MediaSessionManager+IOnSession2TokensChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4812_to = private unnamed_addr constant [90 x i8] c"mono/android/media/session/MediaSessionManager_OnSession2TokensChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4813_from = private unnamed_addr constant [96 x i8] c"Android.Media.Session.MediaSessionManager+IOnSession2TokensChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4814_from = private unnamed_addr constant [71 x i8] c"Android.Media.Session.MediaSessionManager+RemoteUserInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4815_to = private unnamed_addr constant [57 x i8] c"android/media/session/MediaSessionManager$RemoteUserInfo\00", align 1 +@.TypeMapEntry.4816_from = private unnamed_addr constant [56 x i8] c"Android.Media.Session.MediaSessionManager, Mono.Android\00", align 1 +@.TypeMapEntry.4817_to = private unnamed_addr constant [42 x i8] c"android/media/session/MediaSessionManager\00", align 1 +@.TypeMapEntry.4818_from = private unnamed_addr constant [58 x i8] c"Android.Media.Session.PlaybackState+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4819_to = private unnamed_addr constant [44 x i8] c"android/media/session/PlaybackState$Builder\00", align 1 +@.TypeMapEntry.4820_from = private unnamed_addr constant [71 x i8] c"Android.Media.Session.PlaybackState+CustomAction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4821_to = private unnamed_addr constant [57 x i8] c"android/media/session/PlaybackState$CustomAction$Builder\00", align 1 +@.TypeMapEntry.4822_from = private unnamed_addr constant [63 x i8] c"Android.Media.Session.PlaybackState+CustomAction, Mono.Android\00", align 1 +@.TypeMapEntry.4823_to = private unnamed_addr constant [49 x i8] c"android/media/session/PlaybackState$CustomAction\00", align 1 +@.TypeMapEntry.4824_from = private unnamed_addr constant [50 x i8] c"Android.Media.Session.PlaybackState, Mono.Android\00", align 1 +@.TypeMapEntry.4825_to = private unnamed_addr constant [36 x i8] c"android/media/session/PlaybackState\00", align 1 +@.TypeMapEntry.4826_from = private unnamed_addr constant [51 x i8] c"Android.Media.Session2Command+Result, Mono.Android\00", align 1 +@.TypeMapEntry.4827_to = private unnamed_addr constant [37 x i8] c"android/media/Session2Command$Result\00", align 1 +@.TypeMapEntry.4828_from = private unnamed_addr constant [44 x i8] c"Android.Media.Session2Command, Mono.Android\00", align 1 +@.TypeMapEntry.4829_to = private unnamed_addr constant [30 x i8] c"android/media/Session2Command\00", align 1 +@.TypeMapEntry.4830_from = private unnamed_addr constant [57 x i8] c"Android.Media.Session2CommandGroup+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4831_to = private unnamed_addr constant [43 x i8] c"android/media/Session2CommandGroup$Builder\00", align 1 +@.TypeMapEntry.4832_from = private unnamed_addr constant [49 x i8] c"Android.Media.Session2CommandGroup, Mono.Android\00", align 1 +@.TypeMapEntry.4833_to = private unnamed_addr constant [35 x i8] c"android/media/Session2CommandGroup\00", align 1 +@.TypeMapEntry.4834_from = private unnamed_addr constant [42 x i8] c"Android.Media.Session2Token, Mono.Android\00", align 1 +@.TypeMapEntry.4835_to = private unnamed_addr constant [28 x i8] c"android/media/Session2Token\00", align 1 +@.TypeMapEntry.4836_from = private unnamed_addr constant [46 x i8] c"Android.Media.SoundPool+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4837_to = private unnamed_addr constant [32 x i8] c"android/media/SoundPool$Builder\00", align 1 +@.TypeMapEntry.4838_from = private unnamed_addr constant [62 x i8] c"Android.Media.SoundPool+IOnLoadCompleteListener, Mono.Android\00", align 1 +@.TypeMapEntry.4839_to = private unnamed_addr constant [47 x i8] c"android/media/SoundPool$OnLoadCompleteListener\00", align 1 +@.TypeMapEntry.4840_from = private unnamed_addr constant [73 x i8] c"Android.Media.SoundPool+IOnLoadCompleteListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4841_to = private unnamed_addr constant [63 x i8] c"mono/android/media/SoundPool_OnLoadCompleteListenerImplementor\00", align 1 +@.TypeMapEntry.4842_from = private unnamed_addr constant [69 x i8] c"Android.Media.SoundPool+IOnLoadCompleteListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4843_from = private unnamed_addr constant [38 x i8] c"Android.Media.SoundPool, Mono.Android\00", align 1 +@.TypeMapEntry.4844_to = private unnamed_addr constant [24 x i8] c"android/media/SoundPool\00", align 1 +@.TypeMapEntry.4845_from = private unnamed_addr constant [72 x i8] c"Android.Media.Spatializer+IOnHeadTrackerAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.4846_to = private unnamed_addr constant [57 x i8] c"android/media/Spatializer$OnHeadTrackerAvailableListener\00", align 1 +@.TypeMapEntry.4847_from = private unnamed_addr constant [83 x i8] c"Android.Media.Spatializer+IOnHeadTrackerAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4848_to = private unnamed_addr constant [73 x i8] c"mono/android/media/Spatializer_OnHeadTrackerAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.4849_from = private unnamed_addr constant [79 x i8] c"Android.Media.Spatializer+IOnHeadTrackerAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4850_from = private unnamed_addr constant [75 x i8] c"Android.Media.Spatializer+IOnSpatializerStateChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.4851_to = private unnamed_addr constant [60 x i8] c"android/media/Spatializer$OnSpatializerStateChangedListener\00", align 1 +@.TypeMapEntry.4852_from = private unnamed_addr constant [86 x i8] c"Android.Media.Spatializer+IOnSpatializerStateChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4853_to = private unnamed_addr constant [76 x i8] c"mono/android/media/Spatializer_OnSpatializerStateChangedListenerImplementor\00", align 1 +@.TypeMapEntry.4854_from = private unnamed_addr constant [82 x i8] c"Android.Media.Spatializer+IOnSpatializerStateChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4855_from = private unnamed_addr constant [40 x i8] c"Android.Media.Spatializer, Mono.Android\00", align 1 +@.TypeMapEntry.4856_to = private unnamed_addr constant [26 x i8] c"android/media/Spatializer\00", align 1 +@.TypeMapEntry.4857_from = private unnamed_addr constant [41 x i8] c"Android.Media.SubtitleData, Mono.Android\00", align 1 +@.TypeMapEntry.4858_to = private unnamed_addr constant [27 x i8] c"android/media/SubtitleData\00", align 1 +@.TypeMapEntry.4859_from = private unnamed_addr constant [39 x i8] c"Android.Media.SyncParams, Mono.Android\00", align 1 +@.TypeMapEntry.4860_to = private unnamed_addr constant [25 x i8] c"android/media/SyncParams\00", align 1 +@.TypeMapEntry.4861_from = private unnamed_addr constant [40 x i8] c"Android.Media.TV.AdBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.4862_to = private unnamed_addr constant [26 x i8] c"android/media/tv/AdBuffer\00", align 1 +@.TypeMapEntry.4863_from = private unnamed_addr constant [41 x i8] c"Android.Media.TV.AdRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4864_to = private unnamed_addr constant [27 x i8] c"android/media/tv/AdRequest\00", align 1 +@.TypeMapEntry.4865_from = private unnamed_addr constant [42 x i8] c"Android.Media.TV.AdResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4866_to = private unnamed_addr constant [28 x i8] c"android/media/tv/AdResponse\00", align 1 +@.TypeMapEntry.4867_from = private unnamed_addr constant [39 x i8] c"Android.Media.TV.AitInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4868_to = private unnamed_addr constant [25 x i8] c"android/media/tv/AitInfo\00", align 1 +@.TypeMapEntry.4869_from = private unnamed_addr constant [52 x i8] c"Android.Media.TV.BroadcastInfoRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4870_to = private unnamed_addr constant [38 x i8] c"android/media/tv/BroadcastInfoRequest\00", align 1 +@.TypeMapEntry.4871_from = private unnamed_addr constant [59 x i8] c"Android.Media.TV.BroadcastInfoRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4872_from = private unnamed_addr constant [53 x i8] c"Android.Media.TV.BroadcastInfoResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4873_to = private unnamed_addr constant [39 x i8] c"android/media/tv/BroadcastInfoResponse\00", align 1 +@.TypeMapEntry.4874_from = private unnamed_addr constant [60 x i8] c"Android.Media.TV.BroadcastInfoResponseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4875_from = private unnamed_addr constant [46 x i8] c"Android.Media.TV.CommandRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4876_to = private unnamed_addr constant [32 x i8] c"android/media/tv/CommandRequest\00", align 1 +@.TypeMapEntry.4877_from = private unnamed_addr constant [47 x i8] c"Android.Media.TV.CommandResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4878_to = private unnamed_addr constant [33 x i8] c"android/media/tv/CommandResponse\00", align 1 +@.TypeMapEntry.4879_from = private unnamed_addr constant [44 x i8] c"Android.Media.TV.DsmccRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4880_to = private unnamed_addr constant [30 x i8] c"android/media/tv/DsmccRequest\00", align 1 +@.TypeMapEntry.4881_from = private unnamed_addr constant [45 x i8] c"Android.Media.TV.DsmccResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4882_to = private unnamed_addr constant [31 x i8] c"android/media/tv/DsmccResponse\00", align 1 +@.TypeMapEntry.4883_from = private unnamed_addr constant [55 x i8] c"Android.Media.TV.Interactive.AppLinkInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4884_to = private unnamed_addr constant [41 x i8] c"android/media/tv/interactive/AppLinkInfo\00", align 1 +@.TypeMapEntry.4885_from = private unnamed_addr constant [92 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppManager+TvInteractiveAppCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4886_to = private unnamed_addr constant [78 x i8] c"android/media/tv/interactive/TvInteractiveAppManager$TvInteractiveAppCallback\00", align 1 +@.TypeMapEntry.4887_from = private unnamed_addr constant [99 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppManager+TvInteractiveAppCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4888_from = private unnamed_addr constant [67 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppManager, Mono.Android\00", align 1 +@.TypeMapEntry.4889_to = private unnamed_addr constant [53 x i8] c"android/media/tv/interactive/TvInteractiveAppManager\00", align 1 +@.TypeMapEntry.4890_from = private unnamed_addr constant [75 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppService+Session, Mono.Android\00", align 1 +@.TypeMapEntry.4891_to = private unnamed_addr constant [61 x i8] c"android/media/tv/interactive/TvInteractiveAppService$Session\00", align 1 +@.TypeMapEntry.4892_from = private unnamed_addr constant [82 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppService+SessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4893_from = private unnamed_addr constant [67 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppService, Mono.Android\00", align 1 +@.TypeMapEntry.4894_to = private unnamed_addr constant [53 x i8] c"android/media/tv/interactive/TvInteractiveAppService\00", align 1 +@.TypeMapEntry.4895_from = private unnamed_addr constant [71 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4896_to = private unnamed_addr constant [57 x i8] c"android/media/tv/interactive/TvInteractiveAppServiceInfo\00", align 1 +@.TypeMapEntry.4897_from = private unnamed_addr constant [74 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4898_from = private unnamed_addr constant [95 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView+IOnUnhandledInputEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.4899_to = private unnamed_addr constant [80 x i8] c"android/media/tv/interactive/TvInteractiveAppView$OnUnhandledInputEventListener\00", align 1 +@.TypeMapEntry.4900_from = private unnamed_addr constant [106 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView+IOnUnhandledInputEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4901_to = private unnamed_addr constant [96 x i8] c"mono/android/media/tv/interactive/TvInteractiveAppView_OnUnhandledInputEventListenerImplementor\00", align 1 +@.TypeMapEntry.4902_from = private unnamed_addr constant [102 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView+IOnUnhandledInputEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4903_from = private unnamed_addr constant [89 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView+TvInteractiveAppCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4904_to = private unnamed_addr constant [75 x i8] c"android/media/tv/interactive/TvInteractiveAppView$TvInteractiveAppCallback\00", align 1 +@.TypeMapEntry.4905_from = private unnamed_addr constant [96 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView+TvInteractiveAppCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4906_from = private unnamed_addr constant [64 x i8] c"Android.Media.TV.Interactive.TvInteractiveAppView, Mono.Android\00", align 1 +@.TypeMapEntry.4907_to = private unnamed_addr constant [50 x i8] c"android/media/tv/interactive/TvInteractiveAppView\00", align 1 +@.TypeMapEntry.4908_from = private unnamed_addr constant [42 x i8] c"Android.Media.TV.PesRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4909_to = private unnamed_addr constant [28 x i8] c"android/media/tv/PesRequest\00", align 1 +@.TypeMapEntry.4910_from = private unnamed_addr constant [43 x i8] c"Android.Media.TV.PesResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4911_to = private unnamed_addr constant [29 x i8] c"android/media/tv/PesResponse\00", align 1 +@.TypeMapEntry.4912_from = private unnamed_addr constant [46 x i8] c"Android.Media.TV.SectionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4913_to = private unnamed_addr constant [32 x i8] c"android/media/tv/SectionRequest\00", align 1 +@.TypeMapEntry.4914_from = private unnamed_addr constant [47 x i8] c"Android.Media.TV.SectionResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4915_to = private unnamed_addr constant [33 x i8] c"android/media/tv/SectionResponse\00", align 1 +@.TypeMapEntry.4916_from = private unnamed_addr constant [50 x i8] c"Android.Media.TV.StreamEventRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4917_to = private unnamed_addr constant [36 x i8] c"android/media/tv/StreamEventRequest\00", align 1 +@.TypeMapEntry.4918_from = private unnamed_addr constant [51 x i8] c"Android.Media.TV.StreamEventResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4919_to = private unnamed_addr constant [37 x i8] c"android/media/tv/StreamEventResponse\00", align 1 +@.TypeMapEntry.4920_from = private unnamed_addr constant [44 x i8] c"Android.Media.TV.TableRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4921_to = private unnamed_addr constant [30 x i8] c"android/media/tv/TableRequest\00", align 1 +@.TypeMapEntry.4922_from = private unnamed_addr constant [53 x i8] c"Android.Media.TV.TableResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4923_to = private unnamed_addr constant [39 x i8] c"android/media/tv/TableResponse$Builder\00", align 1 +@.TypeMapEntry.4924_from = private unnamed_addr constant [45 x i8] c"Android.Media.TV.TableResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4925_to = private unnamed_addr constant [31 x i8] c"android/media/tv/TableResponse\00", align 1 +@.TypeMapEntry.4926_from = private unnamed_addr constant [47 x i8] c"Android.Media.TV.TimelineRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4927_to = private unnamed_addr constant [33 x i8] c"android/media/tv/TimelineRequest\00", align 1 +@.TypeMapEntry.4928_from = private unnamed_addr constant [48 x i8] c"Android.Media.TV.TimelineResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4929_to = private unnamed_addr constant [34 x i8] c"android/media/tv/TimelineResponse\00", align 1 +@.TypeMapEntry.4930_from = private unnamed_addr constant [41 x i8] c"Android.Media.TV.TsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.4931_to = private unnamed_addr constant [27 x i8] c"android/media/tv/TsRequest\00", align 1 +@.TypeMapEntry.4932_from = private unnamed_addr constant [42 x i8] c"Android.Media.TV.TsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.4933_to = private unnamed_addr constant [28 x i8] c"android/media/tv/TsResponse\00", align 1 +@.TypeMapEntry.4934_from = private unnamed_addr constant [47 x i8] c"Android.Media.TV.TvContentRating, Mono.Android\00", align 1 +@.TypeMapEntry.4935_to = private unnamed_addr constant [33 x i8] c"android/media/tv/TvContentRating\00", align 1 +@.TypeMapEntry.4936_from = private unnamed_addr constant [56 x i8] c"Android.Media.TV.TvContract+BaseTvColumns, Mono.Android\00", align 1 +@.TypeMapEntry.4937_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/media/tv/TvContract$BaseTvColumns\00", align 1 +@.TypeMapEntry.4938_from = private unnamed_addr constant [56 x i8] c"Android.Media.TV.TvContract+Channels+Logo, Mono.Android\00", align 1 +@.TypeMapEntry.4939_to = private unnamed_addr constant [42 x i8] c"android/media/tv/TvContract$Channels$Logo\00", align 1 +@.TypeMapEntry.4940_from = private unnamed_addr constant [51 x i8] c"Android.Media.TV.TvContract+Channels, Mono.Android\00", align 1 +@.TypeMapEntry.4941_to = private unnamed_addr constant [37 x i8] c"android/media/tv/TvContract$Channels\00", align 1 +@.TypeMapEntry.4942_from = private unnamed_addr constant [58 x i8] c"Android.Media.TV.TvContract+PreviewPrograms, Mono.Android\00", align 1 +@.TypeMapEntry.4943_to = private unnamed_addr constant [44 x i8] c"android/media/tv/TvContract$PreviewPrograms\00", align 1 +@.TypeMapEntry.4944_from = private unnamed_addr constant [58 x i8] c"Android.Media.TV.TvContract+Programs+Genres, Mono.Android\00", align 1 +@.TypeMapEntry.4945_to = private unnamed_addr constant [44 x i8] c"android/media/tv/TvContract$Programs$Genres\00", align 1 +@.TypeMapEntry.4946_from = private unnamed_addr constant [51 x i8] c"Android.Media.TV.TvContract+Programs, Mono.Android\00", align 1 +@.TypeMapEntry.4947_to = private unnamed_addr constant [37 x i8] c"android/media/tv/TvContract$Programs\00", align 1 +@.TypeMapEntry.4948_from = private unnamed_addr constant [59 x i8] c"Android.Media.TV.TvContract+RecordedPrograms, Mono.Android\00", align 1 +@.TypeMapEntry.4949_to = private unnamed_addr constant [45 x i8] c"android/media/tv/TvContract$RecordedPrograms\00", align 1 +@.TypeMapEntry.4950_from = private unnamed_addr constant [60 x i8] c"Android.Media.TV.TvContract+WatchNextPrograms, Mono.Android\00", align 1 +@.TypeMapEntry.4951_to = private unnamed_addr constant [46 x i8] c"android/media/tv/TvContract$WatchNextPrograms\00", align 1 +@.TypeMapEntry.4952_from = private unnamed_addr constant [42 x i8] c"Android.Media.TV.TvContract, Mono.Android\00", align 1 +@.TypeMapEntry.4953_to = private unnamed_addr constant [28 x i8] c"android/media/tv/TvContract\00", align 1 +@.TypeMapEntry.4954_from = private unnamed_addr constant [51 x i8] c"Android.Media.TV.TvInputInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4955_to = private unnamed_addr constant [37 x i8] c"android/media/tv/TvInputInfo$Builder\00", align 1 +@.TypeMapEntry.4956_from = private unnamed_addr constant [43 x i8] c"Android.Media.TV.TvInputInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4957_to = private unnamed_addr constant [29 x i8] c"android/media/tv/TvInputInfo\00", align 1 +@.TypeMapEntry.4958_from = private unnamed_addr constant [62 x i8] c"Android.Media.TV.TvInputManager+TvInputCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4959_to = private unnamed_addr constant [48 x i8] c"android/media/tv/TvInputManager$TvInputCallback\00", align 1 +@.TypeMapEntry.4960_from = private unnamed_addr constant [69 x i8] c"Android.Media.TV.TvInputManager+TvInputCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4961_from = private unnamed_addr constant [46 x i8] c"Android.Media.TV.TvInputManager, Mono.Android\00", align 1 +@.TypeMapEntry.4962_to = private unnamed_addr constant [32 x i8] c"android/media/tv/TvInputManager\00", align 1 +@.TypeMapEntry.4963_from = private unnamed_addr constant [62 x i8] c"Android.Media.TV.TvInputService+HardwareSession, Mono.Android\00", align 1 +@.TypeMapEntry.4964_to = private unnamed_addr constant [48 x i8] c"android/media/tv/TvInputService$HardwareSession\00", align 1 +@.TypeMapEntry.4965_from = private unnamed_addr constant [69 x i8] c"Android.Media.TV.TvInputService+HardwareSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4966_from = private unnamed_addr constant [63 x i8] c"Android.Media.TV.TvInputService+RecordingSession, Mono.Android\00", align 1 +@.TypeMapEntry.4967_to = private unnamed_addr constant [49 x i8] c"android/media/tv/TvInputService$RecordingSession\00", align 1 +@.TypeMapEntry.4968_from = private unnamed_addr constant [70 x i8] c"Android.Media.TV.TvInputService+RecordingSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4969_from = private unnamed_addr constant [54 x i8] c"Android.Media.TV.TvInputService+Session, Mono.Android\00", align 1 +@.TypeMapEntry.4970_to = private unnamed_addr constant [40 x i8] c"android/media/tv/TvInputService$Session\00", align 1 +@.TypeMapEntry.4971_from = private unnamed_addr constant [61 x i8] c"Android.Media.TV.TvInputService+SessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4972_from = private unnamed_addr constant [46 x i8] c"Android.Media.TV.TvInputService, Mono.Android\00", align 1 +@.TypeMapEntry.4973_to = private unnamed_addr constant [32 x i8] c"android/media/tv/TvInputService\00", align 1 +@.TypeMapEntry.4974_from = private unnamed_addr constant [53 x i8] c"Android.Media.TV.TvInputServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4975_from = private unnamed_addr constant [67 x i8] c"Android.Media.TV.TvRecordingClient+RecordingCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4976_to = private unnamed_addr constant [53 x i8] c"android/media/tv/TvRecordingClient$RecordingCallback\00", align 1 +@.TypeMapEntry.4977_from = private unnamed_addr constant [74 x i8] c"Android.Media.TV.TvRecordingClient+RecordingCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4978_from = private unnamed_addr constant [49 x i8] c"Android.Media.TV.TvRecordingClient, Mono.Android\00", align 1 +@.TypeMapEntry.4979_to = private unnamed_addr constant [35 x i8] c"android/media/tv/TvRecordingClient\00", align 1 +@.TypeMapEntry.4980_from = private unnamed_addr constant [47 x i8] c"Android.Media.TV.TvRecordingInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4981_to = private unnamed_addr constant [33 x i8] c"android/media/tv/TvRecordingInfo\00", align 1 +@.TypeMapEntry.4982_from = private unnamed_addr constant [51 x i8] c"Android.Media.TV.TvTrackInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.4983_to = private unnamed_addr constant [37 x i8] c"android/media/tv/TvTrackInfo$Builder\00", align 1 +@.TypeMapEntry.4984_from = private unnamed_addr constant [43 x i8] c"Android.Media.TV.TvTrackInfo, Mono.Android\00", align 1 +@.TypeMapEntry.4985_to = private unnamed_addr constant [29 x i8] c"android/media/tv/TvTrackInfo\00", align 1 +@.TypeMapEntry.4986_from = private unnamed_addr constant [69 x i8] c"Android.Media.TV.TvView+IOnUnhandledInputEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.4987_to = private unnamed_addr constant [54 x i8] c"android/media/tv/TvView$OnUnhandledInputEventListener\00", align 1 +@.TypeMapEntry.4988_from = private unnamed_addr constant [80 x i8] c"Android.Media.TV.TvView+IOnUnhandledInputEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.4989_to = private unnamed_addr constant [70 x i8] c"mono/android/media/tv/TvView_OnUnhandledInputEventListenerImplementor\00", align 1 +@.TypeMapEntry.4990_from = private unnamed_addr constant [76 x i8] c"Android.Media.TV.TvView+IOnUnhandledInputEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4991_from = private unnamed_addr constant [64 x i8] c"Android.Media.TV.TvView+TimeShiftPositionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4992_to = private unnamed_addr constant [50 x i8] c"android/media/tv/TvView$TimeShiftPositionCallback\00", align 1 +@.TypeMapEntry.4993_from = private unnamed_addr constant [71 x i8] c"Android.Media.TV.TvView+TimeShiftPositionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4994_from = private unnamed_addr constant [54 x i8] c"Android.Media.TV.TvView+TvInputCallback, Mono.Android\00", align 1 +@.TypeMapEntry.4995_to = private unnamed_addr constant [40 x i8] c"android/media/tv/TvView$TvInputCallback\00", align 1 +@.TypeMapEntry.4996_from = private unnamed_addr constant [61 x i8] c"Android.Media.TV.TvView+TvInputCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.4997_from = private unnamed_addr constant [38 x i8] c"Android.Media.TV.TvView, Mono.Android\00", align 1 +@.TypeMapEntry.4998_to = private unnamed_addr constant [24 x i8] c"android/media/tv/TvView\00", align 1 +@.TypeMapEntry.4999_from = private unnamed_addr constant [43 x i8] c"Android.Media.ThumbnailUtils, Mono.Android\00", align 1 +@.TypeMapEntry.5000_to = private unnamed_addr constant [29 x i8] c"android/media/ThumbnailUtils\00", align 1 +@.TypeMapEntry.5001_from = private unnamed_addr constant [42 x i8] c"Android.Media.TimedMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.5002_to = private unnamed_addr constant [28 x i8] c"android/media/TimedMetaData\00", align 1 +@.TypeMapEntry.5003_from = private unnamed_addr constant [38 x i8] c"Android.Media.TimedText, Mono.Android\00", align 1 +@.TypeMapEntry.5004_to = private unnamed_addr constant [24 x i8] c"android/media/TimedText\00", align 1 +@.TypeMapEntry.5005_from = private unnamed_addr constant [42 x i8] c"Android.Media.ToneGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.5006_to = private unnamed_addr constant [28 x i8] c"android/media/ToneGenerator\00", align 1 +@.TypeMapEntry.5007_from = private unnamed_addr constant [55 x i8] c"Android.Media.UnsupportedSchemeException, Mono.Android\00", align 1 +@.TypeMapEntry.5008_to = private unnamed_addr constant [41 x i8] c"android/media/UnsupportedSchemeException\00", align 1 +@.TypeMapEntry.5009_from = private unnamed_addr constant [43 x i8] c"Android.Media.VolumeProvider, Mono.Android\00", align 1 +@.TypeMapEntry.5010_to = private unnamed_addr constant [29 x i8] c"android/media/VolumeProvider\00", align 1 +@.TypeMapEntry.5011_from = private unnamed_addr constant [50 x i8] c"Android.Media.VolumeProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5012_from = private unnamed_addr constant [63 x i8] c"Android.Media.VolumeShaper+Configuration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5013_to = private unnamed_addr constant [49 x i8] c"android/media/VolumeShaper$Configuration$Builder\00", align 1 +@.TypeMapEntry.5014_from = private unnamed_addr constant [55 x i8] c"Android.Media.VolumeShaper+Configuration, Mono.Android\00", align 1 +@.TypeMapEntry.5015_to = private unnamed_addr constant [41 x i8] c"android/media/VolumeShaper$Configuration\00", align 1 +@.TypeMapEntry.5016_from = private unnamed_addr constant [51 x i8] c"Android.Media.VolumeShaper+Operation, Mono.Android\00", align 1 +@.TypeMapEntry.5017_to = private unnamed_addr constant [37 x i8] c"android/media/VolumeShaper$Operation\00", align 1 +@.TypeMapEntry.5018_from = private unnamed_addr constant [41 x i8] c"Android.Media.VolumeShaper, Mono.Android\00", align 1 +@.TypeMapEntry.5019_to = private unnamed_addr constant [27 x i8] c"android/media/VolumeShaper\00", align 1 +@.TypeMapEntry.5020_from = private unnamed_addr constant [39 x i8] c"Android.Mtp.MtpConstants, Mono.Android\00", align 1 +@.TypeMapEntry.5021_to = private unnamed_addr constant [25 x i8] c"android/mtp/MtpConstants\00", align 1 +@.TypeMapEntry.5022_from = private unnamed_addr constant [36 x i8] c"Android.Mtp.MtpDevice, Mono.Android\00", align 1 +@.TypeMapEntry.5023_to = private unnamed_addr constant [22 x i8] c"android/mtp/MtpDevice\00", align 1 +@.TypeMapEntry.5024_from = private unnamed_addr constant [40 x i8] c"Android.Mtp.MtpDeviceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5025_to = private unnamed_addr constant [26 x i8] c"android/mtp/MtpDeviceInfo\00", align 1 +@.TypeMapEntry.5026_from = private unnamed_addr constant [35 x i8] c"Android.Mtp.MtpEvent, Mono.Android\00", align 1 +@.TypeMapEntry.5027_to = private unnamed_addr constant [21 x i8] c"android/mtp/MtpEvent\00", align 1 +@.TypeMapEntry.5028_from = private unnamed_addr constant [48 x i8] c"Android.Mtp.MtpObjectInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5029_to = private unnamed_addr constant [34 x i8] c"android/mtp/MtpObjectInfo$Builder\00", align 1 +@.TypeMapEntry.5030_from = private unnamed_addr constant [40 x i8] c"Android.Mtp.MtpObjectInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5031_to = private unnamed_addr constant [26 x i8] c"android/mtp/MtpObjectInfo\00", align 1 +@.TypeMapEntry.5032_from = private unnamed_addr constant [41 x i8] c"Android.Mtp.MtpStorageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5033_to = private unnamed_addr constant [27 x i8] c"android/mtp/MtpStorageInfo\00", align 1 +@.TypeMapEntry.5034_from = private unnamed_addr constant [40 x i8] c"Android.Net.CaptivePortal, Mono.Android\00", align 1 +@.TypeMapEntry.5035_to = private unnamed_addr constant [26 x i8] c"android/net/CaptivePortal\00", align 1 +@.TypeMapEntry.5036_from = private unnamed_addr constant [89 x i8] c"Android.Net.ConnectivityDiagnosticsManager+ConnectivityDiagnosticsCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5037_to = private unnamed_addr constant [75 x i8] c"android/net/ConnectivityDiagnosticsManager$ConnectivityDiagnosticsCallback\00", align 1 +@.TypeMapEntry.5038_from = private unnamed_addr constant [96 x i8] c"Android.Net.ConnectivityDiagnosticsManager+ConnectivityDiagnosticsCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5039_from = private unnamed_addr constant [76 x i8] c"Android.Net.ConnectivityDiagnosticsManager+ConnectivityReport, Mono.Android\00", align 1 +@.TypeMapEntry.5040_to = private unnamed_addr constant [62 x i8] c"android/net/ConnectivityDiagnosticsManager$ConnectivityReport\00", align 1 +@.TypeMapEntry.5041_from = private unnamed_addr constant [73 x i8] c"Android.Net.ConnectivityDiagnosticsManager+DataStallReport, Mono.Android\00", align 1 +@.TypeMapEntry.5042_to = private unnamed_addr constant [59 x i8] c"android/net/ConnectivityDiagnosticsManager$DataStallReport\00", align 1 +@.TypeMapEntry.5043_from = private unnamed_addr constant [57 x i8] c"Android.Net.ConnectivityDiagnosticsManager, Mono.Android\00", align 1 +@.TypeMapEntry.5044_to = private unnamed_addr constant [43 x i8] c"android/net/ConnectivityDiagnosticsManager\00", align 1 +@.TypeMapEntry.5045_from = private unnamed_addr constant [71 x i8] c"Android.Net.ConnectivityManager+IOnNetworkActiveListener, Mono.Android\00", align 1 +@.TypeMapEntry.5046_to = private unnamed_addr constant [56 x i8] c"android/net/ConnectivityManager$OnNetworkActiveListener\00", align 1 +@.TypeMapEntry.5047_from = private unnamed_addr constant [82 x i8] c"Android.Net.ConnectivityManager+IOnNetworkActiveListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5048_to = private unnamed_addr constant [72 x i8] c"mono/android/net/ConnectivityManager_OnNetworkActiveListenerImplementor\00", align 1 +@.TypeMapEntry.5049_from = private unnamed_addr constant [78 x i8] c"Android.Net.ConnectivityManager+IOnNetworkActiveListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5050_from = private unnamed_addr constant [62 x i8] c"Android.Net.ConnectivityManager+NetworkCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5051_to = private unnamed_addr constant [48 x i8] c"android/net/ConnectivityManager$NetworkCallback\00", align 1 +@.TypeMapEntry.5052_from = private unnamed_addr constant [46 x i8] c"Android.Net.ConnectivityManager, Mono.Android\00", align 1 +@.TypeMapEntry.5053_to = private unnamed_addr constant [32 x i8] c"android/net/ConnectivityManager\00", align 1 +@.TypeMapEntry.5054_from = private unnamed_addr constant [38 x i8] c"Android.Net.Credentials, Mono.Android\00", align 1 +@.TypeMapEntry.5055_to = private unnamed_addr constant [24 x i8] c"android/net/Credentials\00", align 1 +@.TypeMapEntry.5056_from = private unnamed_addr constant [35 x i8] c"Android.Net.DhcpInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5057_to = private unnamed_addr constant [21 x i8] c"android/net/DhcpInfo\00", align 1 +@.TypeMapEntry.5058_from = private unnamed_addr constant [51 x i8] c"Android.Net.DnsResolver+DnsException, Mono.Android\00", align 1 +@.TypeMapEntry.5059_to = private unnamed_addr constant [37 x i8] c"android/net/DnsResolver$DnsException\00", align 1 +@.TypeMapEntry.5060_from = private unnamed_addr constant [48 x i8] c"Android.Net.DnsResolver+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.5061_to = private unnamed_addr constant [33 x i8] c"android/net/DnsResolver$Callback\00", align 1 +@.TypeMapEntry.5062_from = private unnamed_addr constant [55 x i8] c"Android.Net.DnsResolver+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5063_from = private unnamed_addr constant [38 x i8] c"Android.Net.DnsResolver, Mono.Android\00", align 1 +@.TypeMapEntry.5064_to = private unnamed_addr constant [24 x i8] c"android/net/DnsResolver\00", align 1 +@.TypeMapEntry.5065_from = private unnamed_addr constant [49 x i8] c"Android.Net.Eap.EapAkaInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5066_to = private unnamed_addr constant [35 x i8] c"android/net/eap/EapAkaInfo$Builder\00", align 1 +@.TypeMapEntry.5067_from = private unnamed_addr constant [41 x i8] c"Android.Net.Eap.EapAkaInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5068_to = private unnamed_addr constant [27 x i8] c"android/net/eap/EapAkaInfo\00", align 1 +@.TypeMapEntry.5069_from = private unnamed_addr constant [38 x i8] c"Android.Net.Eap.EapInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5070_to = private unnamed_addr constant [24 x i8] c"android/net/eap/EapInfo\00", align 1 +@.TypeMapEntry.5071_from = private unnamed_addr constant [45 x i8] c"Android.Net.Eap.EapInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5072_from = private unnamed_addr constant [55 x i8] c"Android.Net.Eap.EapSessionConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5073_to = private unnamed_addr constant [41 x i8] c"android/net/eap/EapSessionConfig$Builder\00", align 1 +@.TypeMapEntry.5074_from = private unnamed_addr constant [60 x i8] c"Android.Net.Eap.EapSessionConfig+EapAkaConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5075_to = private unnamed_addr constant [46 x i8] c"android/net/eap/EapSessionConfig$EapAkaConfig\00", align 1 +@.TypeMapEntry.5076_from = private unnamed_addr constant [68 x i8] c"Android.Net.Eap.EapSessionConfig+EapAkaOption+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5077_to = private unnamed_addr constant [54 x i8] c"android/net/eap/EapSessionConfig$EapAkaOption$Builder\00", align 1 +@.TypeMapEntry.5078_from = private unnamed_addr constant [60 x i8] c"Android.Net.Eap.EapSessionConfig+EapAkaOption, Mono.Android\00", align 1 +@.TypeMapEntry.5079_to = private unnamed_addr constant [46 x i8] c"android/net/eap/EapSessionConfig$EapAkaOption\00", align 1 +@.TypeMapEntry.5080_from = private unnamed_addr constant [65 x i8] c"Android.Net.Eap.EapSessionConfig+EapAkaPrimeConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5081_to = private unnamed_addr constant [51 x i8] c"android/net/eap/EapSessionConfig$EapAkaPrimeConfig\00", align 1 +@.TypeMapEntry.5082_from = private unnamed_addr constant [63 x i8] c"Android.Net.Eap.EapSessionConfig+EapMethodConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5083_to = private unnamed_addr constant [49 x i8] c"android/net/eap/EapSessionConfig$EapMethodConfig\00", align 1 +@.TypeMapEntry.5084_from = private unnamed_addr constant [70 x i8] c"Android.Net.Eap.EapSessionConfig+EapMethodConfigInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5085_from = private unnamed_addr constant [65 x i8] c"Android.Net.Eap.EapSessionConfig+EapMsChapV2Config, Mono.Android\00", align 1 +@.TypeMapEntry.5086_to = private unnamed_addr constant [51 x i8] c"android/net/eap/EapSessionConfig$EapMsChapV2Config\00", align 1 +@.TypeMapEntry.5087_from = private unnamed_addr constant [60 x i8] c"Android.Net.Eap.EapSessionConfig+EapSimConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5088_to = private unnamed_addr constant [46 x i8] c"android/net/eap/EapSessionConfig$EapSimConfig\00", align 1 +@.TypeMapEntry.5089_from = private unnamed_addr constant [61 x i8] c"Android.Net.Eap.EapSessionConfig+EapTtlsConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5090_to = private unnamed_addr constant [47 x i8] c"android/net/eap/EapSessionConfig$EapTtlsConfig\00", align 1 +@.TypeMapEntry.5091_from = private unnamed_addr constant [47 x i8] c"Android.Net.Eap.EapSessionConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5092_to = private unnamed_addr constant [33 x i8] c"android/net/eap/EapSessionConfig\00", align 1 +@.TypeMapEntry.5093_from = private unnamed_addr constant [51 x i8] c"Android.Net.EthernetNetworkSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.5094_to = private unnamed_addr constant [37 x i8] c"android/net/EthernetNetworkSpecifier\00", align 1 +@.TypeMapEntry.5095_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.AndroidHttpClient, Mono.Android\00", align 1 +@.TypeMapEntry.5096_to = private unnamed_addr constant [35 x i8] c"android/net/http/AndroidHttpClient\00", align 1 +@.TypeMapEntry.5097_from = private unnamed_addr constant [59 x i8] c"Android.Net.Http.BidirectionalStream+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5098_to = private unnamed_addr constant [45 x i8] c"android/net/http/BidirectionalStream$Builder\00", align 1 +@.TypeMapEntry.5099_from = private unnamed_addr constant [66 x i8] c"Android.Net.Http.BidirectionalStream+BuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5100_from = private unnamed_addr constant [61 x i8] c"Android.Net.Http.BidirectionalStream+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.5101_to = private unnamed_addr constant [46 x i8] c"android/net/http/BidirectionalStream$Callback\00", align 1 +@.TypeMapEntry.5102_from = private unnamed_addr constant [68 x i8] c"Android.Net.Http.BidirectionalStream+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5103_from = private unnamed_addr constant [51 x i8] c"Android.Net.Http.BidirectionalStream, Mono.Android\00", align 1 +@.TypeMapEntry.5104_to = private unnamed_addr constant [37 x i8] c"android/net/http/BidirectionalStream\00", align 1 +@.TypeMapEntry.5105_from = private unnamed_addr constant [58 x i8] c"Android.Net.Http.BidirectionalStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5106_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.CallbackException, Mono.Android\00", align 1 +@.TypeMapEntry.5107_to = private unnamed_addr constant [35 x i8] c"android/net/http/CallbackException\00", align 1 +@.TypeMapEntry.5108_from = private unnamed_addr constant [56 x i8] c"Android.Net.Http.CallbackExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5109_from = private unnamed_addr constant [66 x i8] c"Android.Net.Http.ConnectionMigrationOptions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5110_to = private unnamed_addr constant [52 x i8] c"android/net/http/ConnectionMigrationOptions$Builder\00", align 1 +@.TypeMapEntry.5111_from = private unnamed_addr constant [58 x i8] c"Android.Net.Http.ConnectionMigrationOptions, Mono.Android\00", align 1 +@.TypeMapEntry.5112_to = private unnamed_addr constant [44 x i8] c"android/net/http/ConnectionMigrationOptions\00", align 1 +@.TypeMapEntry.5113_from = private unnamed_addr constant [50 x i8] c"Android.Net.Http.DnsOptions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5114_to = private unnamed_addr constant [36 x i8] c"android/net/http/DnsOptions$Builder\00", align 1 +@.TypeMapEntry.5115_from = private unnamed_addr constant [66 x i8] c"Android.Net.Http.DnsOptions+StaleDnsOptions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5116_to = private unnamed_addr constant [52 x i8] c"android/net/http/DnsOptions$StaleDnsOptions$Builder\00", align 1 +@.TypeMapEntry.5117_from = private unnamed_addr constant [58 x i8] c"Android.Net.Http.DnsOptions+StaleDnsOptions, Mono.Android\00", align 1 +@.TypeMapEntry.5118_to = private unnamed_addr constant [44 x i8] c"android/net/http/DnsOptions$StaleDnsOptions\00", align 1 +@.TypeMapEntry.5119_from = private unnamed_addr constant [42 x i8] c"Android.Net.Http.DnsOptions, Mono.Android\00", align 1 +@.TypeMapEntry.5120_to = private unnamed_addr constant [28 x i8] c"android/net/http/DnsOptions\00", align 1 +@.TypeMapEntry.5121_from = private unnamed_addr constant [43 x i8] c"Android.Net.Http.HeaderBlock, Mono.Android\00", align 1 +@.TypeMapEntry.5122_to = private unnamed_addr constant [29 x i8] c"android/net/http/HeaderBlock\00", align 1 +@.TypeMapEntry.5123_from = private unnamed_addr constant [50 x i8] c"Android.Net.Http.HeaderBlockInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5124_from = private unnamed_addr constant [50 x i8] c"Android.Net.Http.HttpEngine+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5125_to = private unnamed_addr constant [36 x i8] c"android/net/http/HttpEngine$Builder\00", align 1 +@.TypeMapEntry.5126_from = private unnamed_addr constant [42 x i8] c"Android.Net.Http.HttpEngine, Mono.Android\00", align 1 +@.TypeMapEntry.5127_to = private unnamed_addr constant [28 x i8] c"android/net/http/HttpEngine\00", align 1 +@.TypeMapEntry.5128_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.HttpEngineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5129_from = private unnamed_addr constant [45 x i8] c"Android.Net.Http.HttpException, Mono.Android\00", align 1 +@.TypeMapEntry.5130_to = private unnamed_addr constant [31 x i8] c"android/net/http/HttpException\00", align 1 +@.TypeMapEntry.5131_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.HttpResponseCache, Mono.Android\00", align 1 +@.TypeMapEntry.5132_to = private unnamed_addr constant [35 x i8] c"android/net/http/HttpResponseCache\00", align 1 +@.TypeMapEntry.5133_from = private unnamed_addr constant [66 x i8] c"Android.Net.Http.InlineExecutionProhibitedException, Mono.Android\00", align 1 +@.TypeMapEntry.5134_to = private unnamed_addr constant [52 x i8] c"android/net/http/InlineExecutionProhibitedException\00", align 1 +@.TypeMapEntry.5135_from = private unnamed_addr constant [48 x i8] c"Android.Net.Http.NetworkException, Mono.Android\00", align 1 +@.TypeMapEntry.5136_to = private unnamed_addr constant [34 x i8] c"android/net/http/NetworkException\00", align 1 +@.TypeMapEntry.5137_from = private unnamed_addr constant [55 x i8] c"Android.Net.Http.NetworkExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5138_from = private unnamed_addr constant [45 x i8] c"Android.Net.Http.QuicException, Mono.Android\00", align 1 +@.TypeMapEntry.5139_to = private unnamed_addr constant [31 x i8] c"android/net/http/QuicException\00", align 1 +@.TypeMapEntry.5140_from = private unnamed_addr constant [52 x i8] c"Android.Net.Http.QuicExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5141_from = private unnamed_addr constant [51 x i8] c"Android.Net.Http.QuicOptions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5142_to = private unnamed_addr constant [37 x i8] c"android/net/http/QuicOptions$Builder\00", align 1 +@.TypeMapEntry.5143_from = private unnamed_addr constant [43 x i8] c"Android.Net.Http.QuicOptions, Mono.Android\00", align 1 +@.TypeMapEntry.5144_to = private unnamed_addr constant [29 x i8] c"android/net/http/QuicOptions\00", align 1 +@.TypeMapEntry.5145_from = private unnamed_addr constant [52 x i8] c"Android.Net.Http.SslCertificate+DName, Mono.Android\00", align 1 +@.TypeMapEntry.5146_to = private unnamed_addr constant [38 x i8] c"android/net/http/SslCertificate$DName\00", align 1 +@.TypeMapEntry.5147_from = private unnamed_addr constant [46 x i8] c"Android.Net.Http.SslCertificate, Mono.Android\00", align 1 +@.TypeMapEntry.5148_to = private unnamed_addr constant [32 x i8] c"android/net/http/SslCertificate\00", align 1 +@.TypeMapEntry.5149_from = private unnamed_addr constant [40 x i8] c"Android.Net.Http.SslError, Mono.Android\00", align 1 +@.TypeMapEntry.5150_to = private unnamed_addr constant [26 x i8] c"android/net/http/SslError\00", align 1 +@.TypeMapEntry.5151_from = private unnamed_addr constant [50 x i8] c"Android.Net.Http.UploadDataProvider, Mono.Android\00", align 1 +@.TypeMapEntry.5152_to = private unnamed_addr constant [36 x i8] c"android/net/http/UploadDataProvider\00", align 1 +@.TypeMapEntry.5153_from = private unnamed_addr constant [57 x i8] c"Android.Net.Http.UploadDataProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5154_from = private unnamed_addr constant [46 x i8] c"Android.Net.Http.UploadDataSink, Mono.Android\00", align 1 +@.TypeMapEntry.5155_to = private unnamed_addr constant [32 x i8] c"android/net/http/UploadDataSink\00", align 1 +@.TypeMapEntry.5156_from = private unnamed_addr constant [53 x i8] c"Android.Net.Http.UploadDataSinkInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5157_from = private unnamed_addr constant [50 x i8] c"Android.Net.Http.UrlRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5158_to = private unnamed_addr constant [36 x i8] c"android/net/http/UrlRequest$Builder\00", align 1 +@.TypeMapEntry.5159_from = private unnamed_addr constant [57 x i8] c"Android.Net.Http.UrlRequest+BuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5160_from = private unnamed_addr constant [52 x i8] c"Android.Net.Http.UrlRequest+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.5161_to = private unnamed_addr constant [37 x i8] c"android/net/http/UrlRequest$Callback\00", align 1 +@.TypeMapEntry.5162_from = private unnamed_addr constant [59 x i8] c"Android.Net.Http.UrlRequest+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5163_from = private unnamed_addr constant [58 x i8] c"Android.Net.Http.UrlRequest+IStatusListener, Mono.Android\00", align 1 +@.TypeMapEntry.5164_to = private unnamed_addr constant [43 x i8] c"android/net/http/UrlRequest$StatusListener\00", align 1 +@.TypeMapEntry.5165_from = private unnamed_addr constant [69 x i8] c"Android.Net.Http.UrlRequest+IStatusListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5166_to = private unnamed_addr constant [59 x i8] c"mono/android/net/http/UrlRequest_StatusListenerImplementor\00", align 1 +@.TypeMapEntry.5167_from = private unnamed_addr constant [65 x i8] c"Android.Net.Http.UrlRequest+IStatusListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5168_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.UrlRequest+Status, Mono.Android\00", align 1 +@.TypeMapEntry.5169_to = private unnamed_addr constant [35 x i8] c"android/net/http/UrlRequest$Status\00", align 1 +@.TypeMapEntry.5170_from = private unnamed_addr constant [42 x i8] c"Android.Net.Http.UrlRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5171_to = private unnamed_addr constant [28 x i8] c"android/net/http/UrlRequest\00", align 1 +@.TypeMapEntry.5172_from = private unnamed_addr constant [49 x i8] c"Android.Net.Http.UrlRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5173_from = private unnamed_addr constant [47 x i8] c"Android.Net.Http.UrlResponseInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5174_to = private unnamed_addr constant [33 x i8] c"android/net/http/UrlResponseInfo\00", align 1 +@.TypeMapEntry.5175_from = private unnamed_addr constant [54 x i8] c"Android.Net.Http.UrlResponseInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5176_from = private unnamed_addr constant [58 x i8] c"Android.Net.Http.X509TrustManagerExtensions, Mono.Android\00", align 1 +@.TypeMapEntry.5177_to = private unnamed_addr constant [44 x i8] c"android/net/http/X509TrustManagerExtensions\00", align 1 +@.TypeMapEntry.5178_from = private unnamed_addr constant [41 x i8] c"Android.Net.ITransportInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5179_to = private unnamed_addr constant [26 x i8] c"android/net/TransportInfo\00", align 1 +@.TypeMapEntry.5180_from = private unnamed_addr constant [48 x i8] c"Android.Net.ITransportInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5181_from = private unnamed_addr constant [50 x i8] c"Android.Net.Ikev2VpnProfile+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5182_to = private unnamed_addr constant [36 x i8] c"android/net/Ikev2VpnProfile$Builder\00", align 1 +@.TypeMapEntry.5183_from = private unnamed_addr constant [42 x i8] c"Android.Net.Ikev2VpnProfile, Mono.Android\00", align 1 +@.TypeMapEntry.5184_to = private unnamed_addr constant [28 x i8] c"android/net/Ikev2VpnProfile\00", align 1 +@.TypeMapEntry.5185_from = private unnamed_addr constant [40 x i8] c"Android.Net.InetAddresses, Mono.Android\00", align 1 +@.TypeMapEntry.5186_to = private unnamed_addr constant [26 x i8] c"android/net/InetAddresses\00", align 1 +@.TypeMapEntry.5187_from = private unnamed_addr constant [50 x i8] c"Android.Net.IpConfiguration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5188_to = private unnamed_addr constant [36 x i8] c"android/net/IpConfiguration$Builder\00", align 1 +@.TypeMapEntry.5189_from = private unnamed_addr constant [42 x i8] c"Android.Net.IpConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5190_to = private unnamed_addr constant [28 x i8] c"android/net/IpConfiguration\00", align 1 +@.TypeMapEntry.5191_from = private unnamed_addr constant [35 x i8] c"Android.Net.IpPrefix, Mono.Android\00", align 1 +@.TypeMapEntry.5192_to = private unnamed_addr constant [21 x i8] c"android/net/IpPrefix\00", align 1 +@.TypeMapEntry.5193_from = private unnamed_addr constant [60 x i8] c"Android.Net.IpSec.Ike.ChildSaProposal+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5194_to = private unnamed_addr constant [46 x i8] c"android/net/ipsec/ike/ChildSaProposal$Builder\00", align 1 +@.TypeMapEntry.5195_from = private unnamed_addr constant [52 x i8] c"Android.Net.IpSec.Ike.ChildSaProposal, Mono.Android\00", align 1 +@.TypeMapEntry.5196_to = private unnamed_addr constant [38 x i8] c"android/net/ipsec/ike/ChildSaProposal\00", align 1 +@.TypeMapEntry.5197_from = private unnamed_addr constant [70 x i8] c"Android.Net.IpSec.Ike.ChildSessionConfiguration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5198_to = private unnamed_addr constant [56 x i8] c"android/net/ipsec/ike/ChildSessionConfiguration$Builder\00", align 1 +@.TypeMapEntry.5199_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.ChildSessionConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5200_to = private unnamed_addr constant [48 x i8] c"android/net/ipsec/ike/ChildSessionConfiguration\00", align 1 +@.TypeMapEntry.5201_from = private unnamed_addr constant [55 x i8] c"Android.Net.IpSec.Ike.ChildSessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.5202_to = private unnamed_addr constant [41 x i8] c"android/net/ipsec/ike/ChildSessionParams\00", align 1 +@.TypeMapEntry.5203_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.ChildSessionParamsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5204_from = private unnamed_addr constant [60 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeException, Mono.Android\00", align 1 +@.TypeMapEntry.5205_to = private unnamed_addr constant [46 x i8] c"android/net/ipsec/ike/exceptions/IkeException\00", align 1 +@.TypeMapEntry.5206_from = private unnamed_addr constant [67 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5207_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeIOException, Mono.Android\00", align 1 +@.TypeMapEntry.5208_to = private unnamed_addr constant [48 x i8] c"android/net/ipsec/ike/exceptions/IkeIOException\00", align 1 +@.TypeMapEntry.5209_from = private unnamed_addr constant [68 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeInternalException, Mono.Android\00", align 1 +@.TypeMapEntry.5210_to = private unnamed_addr constant [54 x i8] c"android/net/ipsec/ike/exceptions/IkeInternalException\00", align 1 +@.TypeMapEntry.5211_from = private unnamed_addr constant [71 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeNetworkLostException, Mono.Android\00", align 1 +@.TypeMapEntry.5212_to = private unnamed_addr constant [57 x i8] c"android/net/ipsec/ike/exceptions/IkeNetworkLostException\00", align 1 +@.TypeMapEntry.5213_from = private unnamed_addr constant [71 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeNonProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.5214_to = private unnamed_addr constant [57 x i8] c"android/net/ipsec/ike/exceptions/IkeNonProtocolException\00", align 1 +@.TypeMapEntry.5215_from = private unnamed_addr constant [78 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeNonProtocolExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5216_from = private unnamed_addr constant [68 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.5217_to = private unnamed_addr constant [54 x i8] c"android/net/ipsec/ike/exceptions/IkeProtocolException\00", align 1 +@.TypeMapEntry.5218_from = private unnamed_addr constant [75 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeProtocolExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5219_from = private unnamed_addr constant [67 x i8] c"Android.Net.IpSec.Ike.Exceptions.IkeTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.5220_to = private unnamed_addr constant [53 x i8] c"android/net/ipsec/ike/exceptions/IkeTimeoutException\00", align 1 +@.TypeMapEntry.5221_from = private unnamed_addr constant [66 x i8] c"Android.Net.IpSec.Ike.Exceptions.InvalidKeException, Mono.Android\00", align 1 +@.TypeMapEntry.5222_to = private unnamed_addr constant [52 x i8] c"android/net/ipsec/ike/exceptions/InvalidKeException\00", align 1 +@.TypeMapEntry.5223_from = private unnamed_addr constant [76 x i8] c"Android.Net.IpSec.Ike.Exceptions.InvalidMajorVersionException, Mono.Android\00", align 1 +@.TypeMapEntry.5224_to = private unnamed_addr constant [62 x i8] c"android/net/ipsec/ike/exceptions/InvalidMajorVersionException\00", align 1 +@.TypeMapEntry.5225_from = private unnamed_addr constant [73 x i8] c"Android.Net.IpSec.Ike.Exceptions.InvalidSelectorsException, Mono.Android\00", align 1 +@.TypeMapEntry.5226_to = private unnamed_addr constant [59 x i8] c"android/net/ipsec/ike/exceptions/InvalidSelectorsException\00", align 1 +@.TypeMapEntry.5227_from = private unnamed_addr constant [58 x i8] c"Android.Net.IpSec.Ike.IChildSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5228_to = private unnamed_addr constant [43 x i8] c"android/net/ipsec/ike/ChildSessionCallback\00", align 1 +@.TypeMapEntry.5229_from = private unnamed_addr constant [65 x i8] c"Android.Net.IpSec.Ike.IChildSessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5230_from = private unnamed_addr constant [56 x i8] c"Android.Net.IpSec.Ike.IIkeSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5231_to = private unnamed_addr constant [41 x i8] c"android/net/ipsec/ike/IkeSessionCallback\00", align 1 +@.TypeMapEntry.5232_from = private unnamed_addr constant [63 x i8] c"Android.Net.IpSec.Ike.IIkeSessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5233_from = private unnamed_addr constant [63 x i8] c"Android.Net.IpSec.Ike.IkeDerAsn1DnIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5234_to = private unnamed_addr constant [49 x i8] c"android/net/ipsec/ike/IkeDerAsn1DnIdentification\00", align 1 +@.TypeMapEntry.5235_from = private unnamed_addr constant [58 x i8] c"Android.Net.IpSec.Ike.IkeFqdnIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5236_to = private unnamed_addr constant [44 x i8] c"android/net/ipsec/ike/IkeFqdnIdentification\00", align 1 +@.TypeMapEntry.5237_from = private unnamed_addr constant [54 x i8] c"Android.Net.IpSec.Ike.IkeIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5238_to = private unnamed_addr constant [40 x i8] c"android/net/ipsec/ike/IkeIdentification\00", align 1 +@.TypeMapEntry.5239_from = private unnamed_addr constant [61 x i8] c"Android.Net.IpSec.Ike.IkeIdentificationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5240_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.IkeIpv4AddrIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5241_to = private unnamed_addr constant [48 x i8] c"android/net/ipsec/ike/IkeIpv4AddrIdentification\00", align 1 +@.TypeMapEntry.5242_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.IkeIpv6AddrIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5243_to = private unnamed_addr constant [48 x i8] c"android/net/ipsec/ike/IkeIpv6AddrIdentification\00", align 1 +@.TypeMapEntry.5244_from = private unnamed_addr constant [59 x i8] c"Android.Net.IpSec.Ike.IkeKeyIdIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5245_to = private unnamed_addr constant [45 x i8] c"android/net/ipsec/ike/IkeKeyIdIdentification\00", align 1 +@.TypeMapEntry.5246_from = private unnamed_addr constant [64 x i8] c"Android.Net.IpSec.Ike.IkeRfc822AddrIdentification, Mono.Android\00", align 1 +@.TypeMapEntry.5247_to = private unnamed_addr constant [50 x i8] c"android/net/ipsec/ike/IkeRfc822AddrIdentification\00", align 1 +@.TypeMapEntry.5248_from = private unnamed_addr constant [58 x i8] c"Android.Net.IpSec.Ike.IkeSaProposal+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5249_to = private unnamed_addr constant [44 x i8] c"android/net/ipsec/ike/IkeSaProposal$Builder\00", align 1 +@.TypeMapEntry.5250_from = private unnamed_addr constant [50 x i8] c"Android.Net.IpSec.Ike.IkeSaProposal, Mono.Android\00", align 1 +@.TypeMapEntry.5251_to = private unnamed_addr constant [36 x i8] c"android/net/ipsec/ike/IkeSaProposal\00", align 1 +@.TypeMapEntry.5252_from = private unnamed_addr constant [47 x i8] c"Android.Net.IpSec.Ike.IkeSession, Mono.Android\00", align 1 +@.TypeMapEntry.5253_to = private unnamed_addr constant [33 x i8] c"android/net/ipsec/ike/IkeSession\00", align 1 +@.TypeMapEntry.5254_from = private unnamed_addr constant [68 x i8] c"Android.Net.IpSec.Ike.IkeSessionConfiguration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5255_to = private unnamed_addr constant [54 x i8] c"android/net/ipsec/ike/IkeSessionConfiguration$Builder\00", align 1 +@.TypeMapEntry.5256_from = private unnamed_addr constant [60 x i8] c"Android.Net.IpSec.Ike.IkeSessionConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5257_to = private unnamed_addr constant [46 x i8] c"android/net/ipsec/ike/IkeSessionConfiguration\00", align 1 +@.TypeMapEntry.5258_from = private unnamed_addr constant [61 x i8] c"Android.Net.IpSec.Ike.IkeSessionConnectionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5259_to = private unnamed_addr constant [47 x i8] c"android/net/ipsec/ike/IkeSessionConnectionInfo\00", align 1 +@.TypeMapEntry.5260_from = private unnamed_addr constant [61 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5261_to = private unnamed_addr constant [47 x i8] c"android/net/ipsec/ike/IkeSessionParams$Builder\00", align 1 +@.TypeMapEntry.5262_from = private unnamed_addr constant [67 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5263_to = private unnamed_addr constant [53 x i8] c"android/net/ipsec/ike/IkeSessionParams$IkeAuthConfig\00", align 1 +@.TypeMapEntry.5264_from = private unnamed_addr constant [74 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthConfigInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5265_from = private unnamed_addr constant [83 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthDigitalSignLocalConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5266_to = private unnamed_addr constant [69 x i8] c"android/net/ipsec/ike/IkeSessionParams$IkeAuthDigitalSignLocalConfig\00", align 1 +@.TypeMapEntry.5267_from = private unnamed_addr constant [84 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthDigitalSignRemoteConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5268_to = private unnamed_addr constant [70 x i8] c"android/net/ipsec/ike/IkeSessionParams$IkeAuthDigitalSignRemoteConfig\00", align 1 +@.TypeMapEntry.5269_from = private unnamed_addr constant [70 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthEapConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5270_to = private unnamed_addr constant [56 x i8] c"android/net/ipsec/ike/IkeSessionParams$IkeAuthEapConfig\00", align 1 +@.TypeMapEntry.5271_from = private unnamed_addr constant [70 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams+IkeAuthPskConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5272_to = private unnamed_addr constant [56 x i8] c"android/net/ipsec/ike/IkeSessionParams$IkeAuthPskConfig\00", align 1 +@.TypeMapEntry.5273_from = private unnamed_addr constant [53 x i8] c"Android.Net.IpSec.Ike.IkeSessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.5274_to = private unnamed_addr constant [39 x i8] c"android/net/ipsec/ike/IkeSessionParams\00", align 1 +@.TypeMapEntry.5275_from = private unnamed_addr constant [55 x i8] c"Android.Net.IpSec.Ike.IkeTrafficSelector, Mono.Android\00", align 1 +@.TypeMapEntry.5276_to = private unnamed_addr constant [41 x i8] c"android/net/ipsec/ike/IkeTrafficSelector\00", align 1 +@.TypeMapEntry.5277_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSec.Ike.IkeTunnelConnectionParams, Mono.Android\00", align 1 +@.TypeMapEntry.5278_to = private unnamed_addr constant [48 x i8] c"android/net/ipsec/ike/IkeTunnelConnectionParams\00", align 1 +@.TypeMapEntry.5279_from = private unnamed_addr constant [47 x i8] c"Android.Net.IpSec.Ike.SaProposal, Mono.Android\00", align 1 +@.TypeMapEntry.5280_to = private unnamed_addr constant [33 x i8] c"android/net/ipsec/ike/SaProposal\00", align 1 +@.TypeMapEntry.5281_from = private unnamed_addr constant [54 x i8] c"Android.Net.IpSec.Ike.SaProposalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5282_from = private unnamed_addr constant [76 x i8] c"Android.Net.IpSec.Ike.TransportModeChildSessionParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5283_to = private unnamed_addr constant [62 x i8] c"android/net/ipsec/ike/TransportModeChildSessionParams$Builder\00", align 1 +@.TypeMapEntry.5284_from = private unnamed_addr constant [68 x i8] c"Android.Net.IpSec.Ike.TransportModeChildSessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.5285_to = private unnamed_addr constant [54 x i8] c"android/net/ipsec/ike/TransportModeChildSessionParams\00", align 1 +@.TypeMapEntry.5286_from = private unnamed_addr constant [73 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5287_to = private unnamed_addr constant [59 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$Builder\00", align 1 +@.TypeMapEntry.5288_from = private unnamed_addr constant [91 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4Address, Mono.Android\00", align 1 +@.TypeMapEntry.5289_to = private unnamed_addr constant [76 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv4Address\00", align 1 +@.TypeMapEntry.5290_from = private unnamed_addr constant [98 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4AddressInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5291_from = private unnamed_addr constant [94 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4DhcpServer, Mono.Android\00", align 1 +@.TypeMapEntry.5292_to = private unnamed_addr constant [79 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv4DhcpServer\00", align 1 +@.TypeMapEntry.5293_from = private unnamed_addr constant [101 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4DhcpServerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5294_from = private unnamed_addr constant [93 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4DnsServer, Mono.Android\00", align 1 +@.TypeMapEntry.5295_to = private unnamed_addr constant [78 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv4DnsServer\00", align 1 +@.TypeMapEntry.5296_from = private unnamed_addr constant [100 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4DnsServerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5297_from = private unnamed_addr constant [91 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4Netmask, Mono.Android\00", align 1 +@.TypeMapEntry.5298_to = private unnamed_addr constant [76 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv4Netmask\00", align 1 +@.TypeMapEntry.5299_from = private unnamed_addr constant [98 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv4NetmaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5300_from = private unnamed_addr constant [91 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv6Address, Mono.Android\00", align 1 +@.TypeMapEntry.5301_to = private unnamed_addr constant [76 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv6Address\00", align 1 +@.TypeMapEntry.5302_from = private unnamed_addr constant [98 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv6AddressInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5303_from = private unnamed_addr constant [93 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv6DnsServer, Mono.Android\00", align 1 +@.TypeMapEntry.5304_to = private unnamed_addr constant [78 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$ConfigRequestIpv6DnsServer\00", align 1 +@.TypeMapEntry.5305_from = private unnamed_addr constant [100 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+IConfigRequestIpv6DnsServerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5306_from = private unnamed_addr constant [95 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+ITunnelModeChildConfigRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5307_to = private unnamed_addr constant [80 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams$TunnelModeChildConfigRequest\00", align 1 +@.TypeMapEntry.5308_from = private unnamed_addr constant [102 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams+ITunnelModeChildConfigRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5309_from = private unnamed_addr constant [65 x i8] c"Android.Net.IpSec.Ike.TunnelModeChildSessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.5310_to = private unnamed_addr constant [51 x i8] c"android/net/ipsec/ike/TunnelModeChildSessionParams\00", align 1 +@.TypeMapEntry.5311_from = private unnamed_addr constant [41 x i8] c"Android.Net.IpSecAlgorithm, Mono.Android\00", align 1 +@.TypeMapEntry.5312_to = private unnamed_addr constant [27 x i8] c"android/net/IpSecAlgorithm\00", align 1 +@.TypeMapEntry.5313_from = private unnamed_addr constant [68 x i8] c"Android.Net.IpSecManager+ResourceUnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.5314_to = private unnamed_addr constant [54 x i8] c"android/net/IpSecManager$ResourceUnavailableException\00", align 1 +@.TypeMapEntry.5315_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSecManager+SecurityParameterIndex, Mono.Android\00", align 1 +@.TypeMapEntry.5316_to = private unnamed_addr constant [48 x i8] c"android/net/IpSecManager$SecurityParameterIndex\00", align 1 +@.TypeMapEntry.5317_from = private unnamed_addr constant [63 x i8] c"Android.Net.IpSecManager+SpiUnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.5318_to = private unnamed_addr constant [49 x i8] c"android/net/IpSecManager$SpiUnavailableException\00", align 1 +@.TypeMapEntry.5319_from = private unnamed_addr constant [62 x i8] c"Android.Net.IpSecManager+UdpEncapsulationSocket, Mono.Android\00", align 1 +@.TypeMapEntry.5320_to = private unnamed_addr constant [48 x i8] c"android/net/IpSecManager$UdpEncapsulationSocket\00", align 1 +@.TypeMapEntry.5321_from = private unnamed_addr constant [39 x i8] c"Android.Net.IpSecManager, Mono.Android\00", align 1 +@.TypeMapEntry.5322_to = private unnamed_addr constant [25 x i8] c"android/net/IpSecManager\00", align 1 +@.TypeMapEntry.5323_from = private unnamed_addr constant [49 x i8] c"Android.Net.IpSecTransform+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5324_to = private unnamed_addr constant [35 x i8] c"android/net/IpSecTransform$Builder\00", align 1 +@.TypeMapEntry.5325_from = private unnamed_addr constant [41 x i8] c"Android.Net.IpSecTransform, Mono.Android\00", align 1 +@.TypeMapEntry.5326_to = private unnamed_addr constant [27 x i8] c"android/net/IpSecTransform\00", align 1 +@.TypeMapEntry.5327_from = private unnamed_addr constant [54 x i8] c"Android.Net.IpSecTransformState+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5328_to = private unnamed_addr constant [40 x i8] c"android/net/IpSecTransformState$Builder\00", align 1 +@.TypeMapEntry.5329_from = private unnamed_addr constant [46 x i8] c"Android.Net.IpSecTransformState, Mono.Android\00", align 1 +@.TypeMapEntry.5330_to = private unnamed_addr constant [32 x i8] c"android/net/IpSecTransformState\00", align 1 +@.TypeMapEntry.5331_from = private unnamed_addr constant [38 x i8] c"Android.Net.LinkAddress, Mono.Android\00", align 1 +@.TypeMapEntry.5332_to = private unnamed_addr constant [24 x i8] c"android/net/LinkAddress\00", align 1 +@.TypeMapEntry.5333_from = private unnamed_addr constant [41 x i8] c"Android.Net.LinkProperties, Mono.Android\00", align 1 +@.TypeMapEntry.5334_to = private unnamed_addr constant [27 x i8] c"android/net/LinkProperties\00", align 1 +@.TypeMapEntry.5335_from = private unnamed_addr constant [44 x i8] c"Android.Net.LocalServerSocket, Mono.Android\00", align 1 +@.TypeMapEntry.5336_to = private unnamed_addr constant [30 x i8] c"android/net/LocalServerSocket\00", align 1 +@.TypeMapEntry.5337_from = private unnamed_addr constant [38 x i8] c"Android.Net.LocalSocket, Mono.Android\00", align 1 +@.TypeMapEntry.5338_to = private unnamed_addr constant [24 x i8] c"android/net/LocalSocket\00", align 1 +@.TypeMapEntry.5339_from = private unnamed_addr constant [55 x i8] c"Android.Net.LocalSocketAddress+Namespace, Mono.Android\00", align 1 +@.TypeMapEntry.5340_to = private unnamed_addr constant [41 x i8] c"android/net/LocalSocketAddress$Namespace\00", align 1 +@.TypeMapEntry.5341_from = private unnamed_addr constant [45 x i8] c"Android.Net.LocalSocketAddress, Mono.Android\00", align 1 +@.TypeMapEntry.5342_to = private unnamed_addr constant [31 x i8] c"android/net/LocalSocketAddress\00", align 1 +@.TypeMapEntry.5343_from = private unnamed_addr constant [37 x i8] c"Android.Net.MacAddress, Mono.Android\00", align 1 +@.TypeMapEntry.5344_to = private unnamed_addr constant [23 x i8] c"android/net/MacAddress\00", align 1 +@.TypeMapEntry.5345_from = private unnamed_addr constant [33 x i8] c"Android.Net.MailTo, Mono.Android\00", align 1 +@.TypeMapEntry.5346_to = private unnamed_addr constant [19 x i8] c"android/net/MailTo\00", align 1 +@.TypeMapEntry.5347_from = private unnamed_addr constant [34 x i8] c"Android.Net.Network, Mono.Android\00", align 1 +@.TypeMapEntry.5348_to = private unnamed_addr constant [20 x i8] c"android/net/Network\00", align 1 +@.TypeMapEntry.5349_from = private unnamed_addr constant [46 x i8] c"Android.Net.NetworkCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.5350_to = private unnamed_addr constant [32 x i8] c"android/net/NetworkCapabilities\00", align 1 +@.TypeMapEntry.5351_from = private unnamed_addr constant [52 x i8] c"Android.Net.NetworkInfo+DetailedState, Mono.Android\00", align 1 +@.TypeMapEntry.5352_to = private unnamed_addr constant [38 x i8] c"android/net/NetworkInfo$DetailedState\00", align 1 +@.TypeMapEntry.5353_from = private unnamed_addr constant [44 x i8] c"Android.Net.NetworkInfo+State, Mono.Android\00", align 1 +@.TypeMapEntry.5354_to = private unnamed_addr constant [30 x i8] c"android/net/NetworkInfo$State\00", align 1 +@.TypeMapEntry.5355_from = private unnamed_addr constant [38 x i8] c"Android.Net.NetworkInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5356_to = private unnamed_addr constant [24 x i8] c"android/net/NetworkInfo\00", align 1 +@.TypeMapEntry.5357_from = private unnamed_addr constant [49 x i8] c"Android.Net.NetworkRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5358_to = private unnamed_addr constant [35 x i8] c"android/net/NetworkRequest$Builder\00", align 1 +@.TypeMapEntry.5359_from = private unnamed_addr constant [41 x i8] c"Android.Net.NetworkRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5360_to = private unnamed_addr constant [27 x i8] c"android/net/NetworkRequest\00", align 1 +@.TypeMapEntry.5361_from = private unnamed_addr constant [43 x i8] c"Android.Net.NetworkSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.5362_to = private unnamed_addr constant [29 x i8] c"android/net/NetworkSpecifier\00", align 1 +@.TypeMapEntry.5363_from = private unnamed_addr constant [50 x i8] c"Android.Net.NetworkSpecifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5364_from = private unnamed_addr constant [55 x i8] c"Android.Net.Nsd.DiscoveryRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5365_to = private unnamed_addr constant [41 x i8] c"android/net/nsd/DiscoveryRequest$Builder\00", align 1 +@.TypeMapEntry.5366_from = private unnamed_addr constant [47 x i8] c"Android.Net.Nsd.DiscoveryRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5367_to = private unnamed_addr constant [33 x i8] c"android/net/nsd/DiscoveryRequest\00", align 1 +@.TypeMapEntry.5368_from = private unnamed_addr constant [60 x i8] c"Android.Net.Nsd.NsdManager+IDiscoveryListener, Mono.Android\00", align 1 +@.TypeMapEntry.5369_to = private unnamed_addr constant [45 x i8] c"android/net/nsd/NsdManager$DiscoveryListener\00", align 1 +@.TypeMapEntry.5370_from = private unnamed_addr constant [71 x i8] c"Android.Net.Nsd.NsdManager+IDiscoveryListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5371_to = private unnamed_addr constant [61 x i8] c"mono/android/net/nsd/NsdManager_DiscoveryListenerImplementor\00", align 1 +@.TypeMapEntry.5372_from = private unnamed_addr constant [67 x i8] c"Android.Net.Nsd.NsdManager+IDiscoveryListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5373_from = private unnamed_addr constant [63 x i8] c"Android.Net.Nsd.NsdManager+IRegistrationListener, Mono.Android\00", align 1 +@.TypeMapEntry.5374_to = private unnamed_addr constant [48 x i8] c"android/net/nsd/NsdManager$RegistrationListener\00", align 1 +@.TypeMapEntry.5375_from = private unnamed_addr constant [74 x i8] c"Android.Net.Nsd.NsdManager+IRegistrationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5376_to = private unnamed_addr constant [64 x i8] c"mono/android/net/nsd/NsdManager_RegistrationListenerImplementor\00", align 1 +@.TypeMapEntry.5377_from = private unnamed_addr constant [70 x i8] c"Android.Net.Nsd.NsdManager+IRegistrationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5378_from = private unnamed_addr constant [58 x i8] c"Android.Net.Nsd.NsdManager+IResolveListener, Mono.Android\00", align 1 +@.TypeMapEntry.5379_to = private unnamed_addr constant [43 x i8] c"android/net/nsd/NsdManager$ResolveListener\00", align 1 +@.TypeMapEntry.5380_from = private unnamed_addr constant [69 x i8] c"Android.Net.Nsd.NsdManager+IResolveListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5381_to = private unnamed_addr constant [59 x i8] c"mono/android/net/nsd/NsdManager_ResolveListenerImplementor\00", align 1 +@.TypeMapEntry.5382_from = private unnamed_addr constant [65 x i8] c"Android.Net.Nsd.NsdManager+IResolveListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5383_from = private unnamed_addr constant [62 x i8] c"Android.Net.Nsd.NsdManager+IServiceInfoCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5384_to = private unnamed_addr constant [47 x i8] c"android/net/nsd/NsdManager$ServiceInfoCallback\00", align 1 +@.TypeMapEntry.5385_from = private unnamed_addr constant [69 x i8] c"Android.Net.Nsd.NsdManager+IServiceInfoCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5386_from = private unnamed_addr constant [41 x i8] c"Android.Net.Nsd.NsdManager, Mono.Android\00", align 1 +@.TypeMapEntry.5387_to = private unnamed_addr constant [27 x i8] c"android/net/nsd/NsdManager\00", align 1 +@.TypeMapEntry.5388_from = private unnamed_addr constant [45 x i8] c"Android.Net.Nsd.NsdServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5389_to = private unnamed_addr constant [31 x i8] c"android/net/nsd/NsdServiceInfo\00", align 1 +@.TypeMapEntry.5390_from = private unnamed_addr constant [41 x i8] c"Android.Net.ParseException, Mono.Android\00", align 1 +@.TypeMapEntry.5391_to = private unnamed_addr constant [27 x i8] c"android/net/ParseException\00", align 1 +@.TypeMapEntry.5392_from = private unnamed_addr constant [45 x i8] c"Android.Net.PlatformVpnProfile, Mono.Android\00", align 1 +@.TypeMapEntry.5393_to = private unnamed_addr constant [31 x i8] c"android/net/PlatformVpnProfile\00", align 1 +@.TypeMapEntry.5394_from = private unnamed_addr constant [52 x i8] c"Android.Net.PlatformVpnProfileInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5395_from = private unnamed_addr constant [32 x i8] c"Android.Net.Proxy, Mono.Android\00", align 1 +@.TypeMapEntry.5396_to = private unnamed_addr constant [18 x i8] c"android/net/Proxy\00", align 1 +@.TypeMapEntry.5397_from = private unnamed_addr constant [36 x i8] c"Android.Net.ProxyInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5398_to = private unnamed_addr constant [22 x i8] c"android/net/ProxyInfo\00", align 1 +@.TypeMapEntry.5399_from = private unnamed_addr constant [40 x i8] c"Android.Net.PskKeyManager, Mono.Android\00", align 1 +@.TypeMapEntry.5400_to = private unnamed_addr constant [26 x i8] c"android/net/PskKeyManager\00", align 1 +@.TypeMapEntry.5401_from = private unnamed_addr constant [47 x i8] c"Android.Net.PskKeyManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5402_from = private unnamed_addr constant [36 x i8] c"Android.Net.RouteInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5403_to = private unnamed_addr constant [22 x i8] c"android/net/RouteInfo\00", align 1 +@.TypeMapEntry.5404_from = private unnamed_addr constant [41 x i8] c"Android.Net.Rtp.AudioCodec, Mono.Android\00", align 1 +@.TypeMapEntry.5405_to = private unnamed_addr constant [27 x i8] c"android/net/rtp/AudioCodec\00", align 1 +@.TypeMapEntry.5406_from = private unnamed_addr constant [41 x i8] c"Android.Net.Rtp.AudioGroup, Mono.Android\00", align 1 +@.TypeMapEntry.5407_to = private unnamed_addr constant [27 x i8] c"android/net/rtp/AudioGroup\00", align 1 +@.TypeMapEntry.5408_from = private unnamed_addr constant [42 x i8] c"Android.Net.Rtp.AudioStream, Mono.Android\00", align 1 +@.TypeMapEntry.5409_to = private unnamed_addr constant [28 x i8] c"android/net/rtp/AudioStream\00", align 1 +@.TypeMapEntry.5410_from = private unnamed_addr constant [40 x i8] c"Android.Net.Rtp.RtpStream, Mono.Android\00", align 1 +@.TypeMapEntry.5411_to = private unnamed_addr constant [26 x i8] c"android/net/rtp/RtpStream\00", align 1 +@.TypeMapEntry.5412_from = private unnamed_addr constant [54 x i8] c"Android.Net.SSLCertificateSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.5413_to = private unnamed_addr constant [40 x i8] c"android/net/SSLCertificateSocketFactory\00", align 1 +@.TypeMapEntry.5414_from = private unnamed_addr constant [42 x i8] c"Android.Net.SSLSessionCache, Mono.Android\00", align 1 +@.TypeMapEntry.5415_to = private unnamed_addr constant [28 x i8] c"android/net/SSLSessionCache\00", align 1 +@.TypeMapEntry.5416_from = private unnamed_addr constant [55 x i8] c"Android.Net.Sip.ISipRegistrationListener, Mono.Android\00", align 1 +@.TypeMapEntry.5417_to = private unnamed_addr constant [40 x i8] c"android/net/sip/SipRegistrationListener\00", align 1 +@.TypeMapEntry.5418_from = private unnamed_addr constant [66 x i8] c"Android.Net.Sip.ISipRegistrationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5419_to = private unnamed_addr constant [56 x i8] c"mono/android/net/sip/SipRegistrationListenerImplementor\00", align 1 +@.TypeMapEntry.5420_from = private unnamed_addr constant [62 x i8] c"Android.Net.Sip.ISipRegistrationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5421_from = private unnamed_addr constant [52 x i8] c"Android.Net.Sip.SipAudioCall+Listener, Mono.Android\00", align 1 +@.TypeMapEntry.5422_to = private unnamed_addr constant [38 x i8] c"android/net/sip/SipAudioCall$Listener\00", align 1 +@.TypeMapEntry.5423_from = private unnamed_addr constant [43 x i8] c"Android.Net.Sip.SipAudioCall, Mono.Android\00", align 1 +@.TypeMapEntry.5424_to = private unnamed_addr constant [29 x i8] c"android/net/sip/SipAudioCall\00", align 1 +@.TypeMapEntry.5425_from = private unnamed_addr constant [43 x i8] c"Android.Net.Sip.SipErrorCode, Mono.Android\00", align 1 +@.TypeMapEntry.5426_to = private unnamed_addr constant [29 x i8] c"android/net/sip/SipErrorCode\00", align 1 +@.TypeMapEntry.5427_from = private unnamed_addr constant [43 x i8] c"Android.Net.Sip.SipException, Mono.Android\00", align 1 +@.TypeMapEntry.5428_to = private unnamed_addr constant [29 x i8] c"android/net/sip/SipException\00", align 1 +@.TypeMapEntry.5429_from = private unnamed_addr constant [41 x i8] c"Android.Net.Sip.SipManager, Mono.Android\00", align 1 +@.TypeMapEntry.5430_to = private unnamed_addr constant [27 x i8] c"android/net/sip/SipManager\00", align 1 +@.TypeMapEntry.5431_from = private unnamed_addr constant [49 x i8] c"Android.Net.Sip.SipProfile+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5432_to = private unnamed_addr constant [35 x i8] c"android/net/sip/SipProfile$Builder\00", align 1 +@.TypeMapEntry.5433_from = private unnamed_addr constant [41 x i8] c"Android.Net.Sip.SipProfile, Mono.Android\00", align 1 +@.TypeMapEntry.5434_to = private unnamed_addr constant [27 x i8] c"android/net/sip/SipProfile\00", align 1 +@.TypeMapEntry.5435_from = private unnamed_addr constant [50 x i8] c"Android.Net.Sip.SipSession+Listener, Mono.Android\00", align 1 +@.TypeMapEntry.5436_to = private unnamed_addr constant [36 x i8] c"android/net/sip/SipSession$Listener\00", align 1 +@.TypeMapEntry.5437_from = private unnamed_addr constant [47 x i8] c"Android.Net.Sip.SipSession+State, Mono.Android\00", align 1 +@.TypeMapEntry.5438_to = private unnamed_addr constant [33 x i8] c"android/net/sip/SipSession$State\00", align 1 +@.TypeMapEntry.5439_from = private unnamed_addr constant [41 x i8] c"Android.Net.Sip.SipSession, Mono.Android\00", align 1 +@.TypeMapEntry.5440_to = private unnamed_addr constant [27 x i8] c"android/net/sip/SipSession\00", align 1 +@.TypeMapEntry.5441_from = private unnamed_addr constant [51 x i8] c"Android.Net.SocketKeepalive+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.5442_to = private unnamed_addr constant [37 x i8] c"android/net/SocketKeepalive$Callback\00", align 1 +@.TypeMapEntry.5443_from = private unnamed_addr constant [42 x i8] c"Android.Net.SocketKeepalive, Mono.Android\00", align 1 +@.TypeMapEntry.5444_to = private unnamed_addr constant [28 x i8] c"android/net/SocketKeepalive\00", align 1 +@.TypeMapEntry.5445_from = private unnamed_addr constant [49 x i8] c"Android.Net.SocketKeepaliveInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5446_from = private unnamed_addr constant [41 x i8] c"Android.Net.Ssl.SSLEngines, Mono.Android\00", align 1 +@.TypeMapEntry.5447_to = private unnamed_addr constant [27 x i8] c"android/net/ssl/SSLEngines\00", align 1 +@.TypeMapEntry.5448_from = private unnamed_addr constant [41 x i8] c"Android.Net.Ssl.SSLSockets, Mono.Android\00", align 1 +@.TypeMapEntry.5449_to = private unnamed_addr constant [27 x i8] c"android/net/ssl/SSLSockets\00", align 1 +@.TypeMapEntry.5450_from = private unnamed_addr constant [56 x i8] c"Android.Net.StaticIpConfiguration+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5451_to = private unnamed_addr constant [42 x i8] c"android/net/StaticIpConfiguration$Builder\00", align 1 +@.TypeMapEntry.5452_from = private unnamed_addr constant [48 x i8] c"Android.Net.StaticIpConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5453_to = private unnamed_addr constant [34 x i8] c"android/net/StaticIpConfiguration\00", align 1 +@.TypeMapEntry.5454_from = private unnamed_addr constant [60 x i8] c"Android.Net.TelephonyNetworkSpecifier+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5455_to = private unnamed_addr constant [46 x i8] c"android/net/TelephonyNetworkSpecifier$Builder\00", align 1 +@.TypeMapEntry.5456_from = private unnamed_addr constant [52 x i8] c"Android.Net.TelephonyNetworkSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.5457_to = private unnamed_addr constant [38 x i8] c"android/net/TelephonyNetworkSpecifier\00", align 1 +@.TypeMapEntry.5458_from = private unnamed_addr constant [39 x i8] c"Android.Net.TrafficStats, Mono.Android\00", align 1 +@.TypeMapEntry.5459_to = private unnamed_addr constant [25 x i8] c"android/net/TrafficStats\00", align 1 +@.TypeMapEntry.5460_from = private unnamed_addr constant [38 x i8] c"Android.Net.Uri+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5461_to = private unnamed_addr constant [24 x i8] c"android/net/Uri$Builder\00", align 1 +@.TypeMapEntry.5462_from = private unnamed_addr constant [30 x i8] c"Android.Net.Uri, Mono.Android\00", align 1 +@.TypeMapEntry.5463_to = private unnamed_addr constant [16 x i8] c"android/net/Uri\00", align 1 +@.TypeMapEntry.5464_from = private unnamed_addr constant [37 x i8] c"Android.Net.UriInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5465_from = private unnamed_addr constant [60 x i8] c"Android.Net.UrlQuerySanitizer+IValueSanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.5466_to = private unnamed_addr constant [45 x i8] c"android/net/UrlQuerySanitizer$ValueSanitizer\00", align 1 +@.TypeMapEntry.5467_from = private unnamed_addr constant [67 x i8] c"Android.Net.UrlQuerySanitizer+IValueSanitizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5468_from = private unnamed_addr constant [75 x i8] c"Android.Net.UrlQuerySanitizer+IllegalCharacterValueSanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.5469_to = private unnamed_addr constant [61 x i8] c"android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer\00", align 1 +@.TypeMapEntry.5470_from = private unnamed_addr constant [63 x i8] c"Android.Net.UrlQuerySanitizer+ParameterValuePair, Mono.Android\00", align 1 +@.TypeMapEntry.5471_to = private unnamed_addr constant [49 x i8] c"android/net/UrlQuerySanitizer$ParameterValuePair\00", align 1 +@.TypeMapEntry.5472_from = private unnamed_addr constant [44 x i8] c"Android.Net.UrlQuerySanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.5473_to = private unnamed_addr constant [30 x i8] c"android/net/UrlQuerySanitizer\00", align 1 +@.TypeMapEntry.5474_from = private unnamed_addr constant [71 x i8] c"Android.Net.Vcn.VcnCellUnderlyingNetworkTemplate+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5475_to = private unnamed_addr constant [57 x i8] c"android/net/vcn/VcnCellUnderlyingNetworkTemplate$Builder\00", align 1 +@.TypeMapEntry.5476_from = private unnamed_addr constant [63 x i8] c"Android.Net.Vcn.VcnCellUnderlyingNetworkTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.5477_to = private unnamed_addr constant [49 x i8] c"android/net/vcn/VcnCellUnderlyingNetworkTemplate\00", align 1 +@.TypeMapEntry.5478_from = private unnamed_addr constant [48 x i8] c"Android.Net.Vcn.VcnConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5479_to = private unnamed_addr constant [34 x i8] c"android/net/vcn/VcnConfig$Builder\00", align 1 +@.TypeMapEntry.5480_from = private unnamed_addr constant [40 x i8] c"Android.Net.Vcn.VcnConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5481_to = private unnamed_addr constant [26 x i8] c"android/net/vcn/VcnConfig\00", align 1 +@.TypeMapEntry.5482_from = private unnamed_addr constant [65 x i8] c"Android.Net.Vcn.VcnGatewayConnectionConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5483_to = private unnamed_addr constant [51 x i8] c"android/net/vcn/VcnGatewayConnectionConfig$Builder\00", align 1 +@.TypeMapEntry.5484_from = private unnamed_addr constant [57 x i8] c"Android.Net.Vcn.VcnGatewayConnectionConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5485_to = private unnamed_addr constant [43 x i8] c"android/net/vcn/VcnGatewayConnectionConfig\00", align 1 +@.TypeMapEntry.5486_from = private unnamed_addr constant [59 x i8] c"Android.Net.Vcn.VcnManager+VcnStatusCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5487_to = private unnamed_addr constant [45 x i8] c"android/net/vcn/VcnManager$VcnStatusCallback\00", align 1 +@.TypeMapEntry.5488_from = private unnamed_addr constant [66 x i8] c"Android.Net.Vcn.VcnManager+VcnStatusCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5489_from = private unnamed_addr constant [41 x i8] c"Android.Net.Vcn.VcnManager, Mono.Android\00", align 1 +@.TypeMapEntry.5490_to = private unnamed_addr constant [27 x i8] c"android/net/vcn/VcnManager\00", align 1 +@.TypeMapEntry.5491_from = private unnamed_addr constant [59 x i8] c"Android.Net.Vcn.VcnUnderlyingNetworkTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.5492_to = private unnamed_addr constant [45 x i8] c"android/net/vcn/VcnUnderlyingNetworkTemplate\00", align 1 +@.TypeMapEntry.5493_from = private unnamed_addr constant [66 x i8] c"Android.Net.Vcn.VcnUnderlyingNetworkTemplateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5494_from = private unnamed_addr constant [71 x i8] c"Android.Net.Vcn.VcnWifiUnderlyingNetworkTemplate+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5495_to = private unnamed_addr constant [57 x i8] c"android/net/vcn/VcnWifiUnderlyingNetworkTemplate$Builder\00", align 1 +@.TypeMapEntry.5496_from = private unnamed_addr constant [63 x i8] c"Android.Net.Vcn.VcnWifiUnderlyingNetworkTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.5497_to = private unnamed_addr constant [49 x i8] c"android/net/vcn/VcnWifiUnderlyingNetworkTemplate\00", align 1 +@.TypeMapEntry.5498_from = private unnamed_addr constant [37 x i8] c"Android.Net.VpnManager, Mono.Android\00", align 1 +@.TypeMapEntry.5499_to = private unnamed_addr constant [23 x i8] c"android/net/VpnManager\00", align 1 +@.TypeMapEntry.5500_from = private unnamed_addr constant [42 x i8] c"Android.Net.VpnProfileState, Mono.Android\00", align 1 +@.TypeMapEntry.5501_to = private unnamed_addr constant [28 x i8] c"android/net/VpnProfileState\00", align 1 +@.TypeMapEntry.5502_from = private unnamed_addr constant [45 x i8] c"Android.Net.VpnService+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5503_to = private unnamed_addr constant [31 x i8] c"android/net/VpnService$Builder\00", align 1 +@.TypeMapEntry.5504_from = private unnamed_addr constant [37 x i8] c"Android.Net.VpnService, Mono.Android\00", align 1 +@.TypeMapEntry.5505_to = private unnamed_addr constant [23 x i8] c"android/net/VpnService\00", align 1 +@.TypeMapEntry.5506_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.Aware.AttachCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5507_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/aware/AttachCallback\00", align 1 +@.TypeMapEntry.5508_from = private unnamed_addr constant [64 x i8] c"Android.Net.Wifi.Aware.AwarePairingConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5509_to = private unnamed_addr constant [50 x i8] c"android/net/wifi/aware/AwarePairingConfig$Builder\00", align 1 +@.TypeMapEntry.5510_from = private unnamed_addr constant [56 x i8] c"Android.Net.Wifi.Aware.AwarePairingConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5511_to = private unnamed_addr constant [42 x i8] c"android/net/wifi/aware/AwarePairingConfig\00", align 1 +@.TypeMapEntry.5512_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.Aware.AwareResources, Mono.Android\00", align 1 +@.TypeMapEntry.5513_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/aware/AwareResources\00", align 1 +@.TypeMapEntry.5514_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.Aware.Characteristics, Mono.Android\00", align 1 +@.TypeMapEntry.5515_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/aware/Characteristics\00", align 1 +@.TypeMapEntry.5516_from = private unnamed_addr constant [54 x i8] c"Android.Net.Wifi.Aware.DiscoverySession, Mono.Android\00", align 1 +@.TypeMapEntry.5517_to = private unnamed_addr constant [40 x i8] c"android/net/wifi/aware/DiscoverySession\00", align 1 +@.TypeMapEntry.5518_from = private unnamed_addr constant [62 x i8] c"Android.Net.Wifi.Aware.DiscoverySessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5519_to = private unnamed_addr constant [48 x i8] c"android/net/wifi/aware/DiscoverySessionCallback\00", align 1 +@.TypeMapEntry.5520_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.Aware.IdentityChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.5521_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/aware/IdentityChangedListener\00", align 1 +@.TypeMapEntry.5522_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Aware.ParcelablePeerHandle, Mono.Android\00", align 1 +@.TypeMapEntry.5523_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/aware/ParcelablePeerHandle\00", align 1 +@.TypeMapEntry.5524_from = private unnamed_addr constant [48 x i8] c"Android.Net.Wifi.Aware.PeerHandle, Mono.Android\00", align 1 +@.TypeMapEntry.5525_to = private unnamed_addr constant [34 x i8] c"android/net/wifi/aware/PeerHandle\00", align 1 +@.TypeMapEntry.5526_from = private unnamed_addr constant [59 x i8] c"Android.Net.Wifi.Aware.PublishConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5527_to = private unnamed_addr constant [45 x i8] c"android/net/wifi/aware/PublishConfig$Builder\00", align 1 +@.TypeMapEntry.5528_from = private unnamed_addr constant [51 x i8] c"Android.Net.Wifi.Aware.PublishConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5529_to = private unnamed_addr constant [37 x i8] c"android/net/wifi/aware/PublishConfig\00", align 1 +@.TypeMapEntry.5530_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.Aware.PublishDiscoverySession, Mono.Android\00", align 1 +@.TypeMapEntry.5531_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/aware/PublishDiscoverySession\00", align 1 +@.TypeMapEntry.5532_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Aware.ServiceDiscoveryInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5533_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/aware/ServiceDiscoveryInfo\00", align 1 +@.TypeMapEntry.5534_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.Aware.SubscribeConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5535_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/aware/SubscribeConfig$Builder\00", align 1 +@.TypeMapEntry.5536_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.Aware.SubscribeConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5537_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/aware/SubscribeConfig\00", align 1 +@.TypeMapEntry.5538_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.Aware.SubscribeDiscoverySession, Mono.Android\00", align 1 +@.TypeMapEntry.5539_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/aware/SubscribeDiscoverySession\00", align 1 +@.TypeMapEntry.5540_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Aware.WifiAwareChannelInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5541_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/aware/WifiAwareChannelInfo\00", align 1 +@.TypeMapEntry.5542_from = private unnamed_addr constant [77 x i8] c"Android.Net.Wifi.Aware.WifiAwareDataPathSecurityConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5543_to = private unnamed_addr constant [63 x i8] c"android/net/wifi/aware/WifiAwareDataPathSecurityConfig$Builder\00", align 1 +@.TypeMapEntry.5544_from = private unnamed_addr constant [69 x i8] c"Android.Net.Wifi.Aware.WifiAwareDataPathSecurityConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5545_to = private unnamed_addr constant [55 x i8] c"android/net/wifi/aware/WifiAwareDataPathSecurityConfig\00", align 1 +@.TypeMapEntry.5546_from = private unnamed_addr constant [54 x i8] c"Android.Net.Wifi.Aware.WifiAwareManager, Mono.Android\00", align 1 +@.TypeMapEntry.5547_to = private unnamed_addr constant [40 x i8] c"android/net/wifi/aware/WifiAwareManager\00", align 1 +@.TypeMapEntry.5548_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Aware.WifiAwareNetworkInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5549_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/aware/WifiAwareNetworkInfo\00", align 1 +@.TypeMapEntry.5550_from = private unnamed_addr constant [71 x i8] c"Android.Net.Wifi.Aware.WifiAwareNetworkSpecifier+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5551_to = private unnamed_addr constant [57 x i8] c"android/net/wifi/aware/WifiAwareNetworkSpecifier$Builder\00", align 1 +@.TypeMapEntry.5552_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.Aware.WifiAwareNetworkSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.5553_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/aware/WifiAwareNetworkSpecifier\00", align 1 +@.TypeMapEntry.5554_from = private unnamed_addr constant [54 x i8] c"Android.Net.Wifi.Aware.WifiAwareSession, Mono.Android\00", align 1 +@.TypeMapEntry.5555_to = private unnamed_addr constant [40 x i8] c"android/net/wifi/aware/WifiAwareSession\00", align 1 +@.TypeMapEntry.5556_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.EasyConnectStatusCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5557_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/EasyConnectStatusCallback\00", align 1 +@.TypeMapEntry.5558_from = private unnamed_addr constant [64 x i8] c"Android.Net.Wifi.EasyConnectStatusCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5559_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.Hotspot2.ConfigParser, Mono.Android\00", align 1 +@.TypeMapEntry.5560_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/hotspot2/ConfigParser\00", align 1 +@.TypeMapEntry.5561_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Hotspot2.Omadm.PpsMoParser, Mono.Android\00", align 1 +@.TypeMapEntry.5562_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/hotspot2/omadm/PpsMoParser\00", align 1 +@.TypeMapEntry.5563_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.Hotspot2.PasspointConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5564_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/hotspot2/PasspointConfiguration\00", align 1 +@.TypeMapEntry.5565_from = private unnamed_addr constant [77 x i8] c"Android.Net.Wifi.Hotspot2.Pps.Credential+CertificateCredential, Mono.Android\00", align 1 +@.TypeMapEntry.5566_to = private unnamed_addr constant [63 x i8] c"android/net/wifi/hotspot2/pps/Credential$CertificateCredential\00", align 1 +@.TypeMapEntry.5567_from = private unnamed_addr constant [69 x i8] c"Android.Net.Wifi.Hotspot2.Pps.Credential+SimCredential, Mono.Android\00", align 1 +@.TypeMapEntry.5568_to = private unnamed_addr constant [55 x i8] c"android/net/wifi/hotspot2/pps/Credential$SimCredential\00", align 1 +@.TypeMapEntry.5569_from = private unnamed_addr constant [70 x i8] c"Android.Net.Wifi.Hotspot2.Pps.Credential+UserCredential, Mono.Android\00", align 1 +@.TypeMapEntry.5570_to = private unnamed_addr constant [56 x i8] c"android/net/wifi/hotspot2/pps/Credential$UserCredential\00", align 1 +@.TypeMapEntry.5571_from = private unnamed_addr constant [55 x i8] c"Android.Net.Wifi.Hotspot2.Pps.Credential, Mono.Android\00", align 1 +@.TypeMapEntry.5572_to = private unnamed_addr constant [41 x i8] c"android/net/wifi/hotspot2/pps/Credential\00", align 1 +@.TypeMapEntry.5573_from = private unnamed_addr constant [51 x i8] c"Android.Net.Wifi.Hotspot2.Pps.HomeSp, Mono.Android\00", align 1 +@.TypeMapEntry.5574_to = private unnamed_addr constant [37 x i8] c"android/net/wifi/hotspot2/pps/HomeSp\00", align 1 +@.TypeMapEntry.5575_from = private unnamed_addr constant [39 x i8] c"Android.Net.Wifi.MloLink, Mono.Android\00", align 1 +@.TypeMapEntry.5576_to = private unnamed_addr constant [25 x i8] c"android/net/wifi/MloLink\00", align 1 +@.TypeMapEntry.5577_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pDnsSdServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5578_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/p2p/nsd/WifiP2pDnsSdServiceInfo\00", align 1 +@.TypeMapEntry.5579_from = private unnamed_addr constant [66 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pDnsSdServiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5580_to = private unnamed_addr constant [52 x i8] c"android/net/wifi/p2p/nsd/WifiP2pDnsSdServiceRequest\00", align 1 +@.TypeMapEntry.5581_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5582_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/p2p/nsd/WifiP2pServiceInfo\00", align 1 +@.TypeMapEntry.5583_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pServiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5584_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/p2p/nsd/WifiP2pServiceRequest\00", align 1 +@.TypeMapEntry.5585_from = private unnamed_addr constant [62 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pUpnpServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5586_to = private unnamed_addr constant [48 x i8] c"android/net/wifi/p2p/nsd/WifiP2pUpnpServiceInfo\00", align 1 +@.TypeMapEntry.5587_from = private unnamed_addr constant [65 x i8] c"Android.Net.Wifi.P2p.Nsd.WifiP2pUpnpServiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5588_to = private unnamed_addr constant [51 x i8] c"android/net/wifi/p2p/nsd/WifiP2pUpnpServiceRequest\00", align 1 +@.TypeMapEntry.5589_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.P2p.WifiP2pConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5590_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/p2p/WifiP2pConfig$Builder\00", align 1 +@.TypeMapEntry.5591_from = private unnamed_addr constant [49 x i8] c"Android.Net.Wifi.P2p.WifiP2pConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5592_to = private unnamed_addr constant [35 x i8] c"android/net/wifi/p2p/WifiP2pConfig\00", align 1 +@.TypeMapEntry.5593_from = private unnamed_addr constant [49 x i8] c"Android.Net.Wifi.P2p.WifiP2pDevice, Mono.Android\00", align 1 +@.TypeMapEntry.5594_to = private unnamed_addr constant [35 x i8] c"android/net/wifi/p2p/WifiP2pDevice\00", align 1 +@.TypeMapEntry.5595_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.P2p.WifiP2pDeviceList, Mono.Android\00", align 1 +@.TypeMapEntry.5596_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/p2p/WifiP2pDeviceList\00", align 1 +@.TypeMapEntry.5597_from = private unnamed_addr constant [66 x i8] c"Android.Net.Wifi.P2p.WifiP2pDiscoveryConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5598_to = private unnamed_addr constant [52 x i8] c"android/net/wifi/p2p/WifiP2pDiscoveryConfig$Builder\00", align 1 +@.TypeMapEntry.5599_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.P2p.WifiP2pDiscoveryConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5600_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/p2p/WifiP2pDiscoveryConfig\00", align 1 +@.TypeMapEntry.5601_from = private unnamed_addr constant [48 x i8] c"Android.Net.Wifi.P2p.WifiP2pGroup, Mono.Android\00", align 1 +@.TypeMapEntry.5602_to = private unnamed_addr constant [34 x i8] c"android/net/wifi/p2p/WifiP2pGroup\00", align 1 +@.TypeMapEntry.5603_from = private unnamed_addr constant [47 x i8] c"Android.Net.Wifi.P2p.WifiP2pInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5604_to = private unnamed_addr constant [33 x i8] c"android/net/wifi/p2p/WifiP2pInfo\00", align 1 +@.TypeMapEntry.5605_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+Channel, Mono.Android\00", align 1 +@.TypeMapEntry.5606_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/p2p/WifiP2pManager$Channel\00", align 1 +@.TypeMapEntry.5607_from = private unnamed_addr constant [66 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IActionListener, Mono.Android\00", align 1 +@.TypeMapEntry.5608_to = private unnamed_addr constant [51 x i8] c"android/net/wifi/p2p/WifiP2pManager$ActionListener\00", align 1 +@.TypeMapEntry.5609_from = private unnamed_addr constant [77 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IActionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5610_to = private unnamed_addr constant [67 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_ActionListenerImplementor\00", align 1 +@.TypeMapEntry.5611_from = private unnamed_addr constant [73 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IActionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5612_from = private unnamed_addr constant [67 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IChannelListener, Mono.Android\00", align 1 +@.TypeMapEntry.5613_to = private unnamed_addr constant [52 x i8] c"android/net/wifi/p2p/WifiP2pManager$ChannelListener\00", align 1 +@.TypeMapEntry.5614_from = private unnamed_addr constant [78 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IChannelListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5615_to = private unnamed_addr constant [68 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_ChannelListenerImplementor\00", align 1 +@.TypeMapEntry.5616_from = private unnamed_addr constant [74 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IChannelListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5617_from = private unnamed_addr constant [74 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IConnectionInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.5618_to = private unnamed_addr constant [59 x i8] c"android/net/wifi/p2p/WifiP2pManager$ConnectionInfoListener\00", align 1 +@.TypeMapEntry.5619_from = private unnamed_addr constant [85 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IConnectionInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5620_to = private unnamed_addr constant [75 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_ConnectionInfoListenerImplementor\00", align 1 +@.TypeMapEntry.5621_from = private unnamed_addr constant [81 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IConnectionInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5622_from = private unnamed_addr constant [70 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDeviceInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.5623_to = private unnamed_addr constant [55 x i8] c"android/net/wifi/p2p/WifiP2pManager$DeviceInfoListener\00", align 1 +@.TypeMapEntry.5624_from = private unnamed_addr constant [81 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDeviceInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5625_to = private unnamed_addr constant [71 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_DeviceInfoListenerImplementor\00", align 1 +@.TypeMapEntry.5626_from = private unnamed_addr constant [77 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDeviceInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5627_from = private unnamed_addr constant [74 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDiscoveryStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.5628_to = private unnamed_addr constant [59 x i8] c"android/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener\00", align 1 +@.TypeMapEntry.5629_from = private unnamed_addr constant [85 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDiscoveryStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5630_to = private unnamed_addr constant [75 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_DiscoveryStateListenerImplementor\00", align 1 +@.TypeMapEntry.5631_from = private unnamed_addr constant [81 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDiscoveryStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5632_from = private unnamed_addr constant [80 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdServiceResponseListener, Mono.Android\00", align 1 +@.TypeMapEntry.5633_to = private unnamed_addr constant [65 x i8] c"android/net/wifi/p2p/WifiP2pManager$DnsSdServiceResponseListener\00", align 1 +@.TypeMapEntry.5634_from = private unnamed_addr constant [91 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdServiceResponseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5635_to = private unnamed_addr constant [81 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_DnsSdServiceResponseListenerImplementor\00", align 1 +@.TypeMapEntry.5636_from = private unnamed_addr constant [87 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdServiceResponseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5637_from = private unnamed_addr constant [74 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdTxtRecordListener, Mono.Android\00", align 1 +@.TypeMapEntry.5638_to = private unnamed_addr constant [59 x i8] c"android/net/wifi/p2p/WifiP2pManager$DnsSdTxtRecordListener\00", align 1 +@.TypeMapEntry.5639_from = private unnamed_addr constant [85 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdTxtRecordListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5640_to = private unnamed_addr constant [75 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_DnsSdTxtRecordListenerImplementor\00", align 1 +@.TypeMapEntry.5641_from = private unnamed_addr constant [81 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IDnsSdTxtRecordListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5642_from = private unnamed_addr constant [83 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IExternalApproverRequestListener, Mono.Android\00", align 1 +@.TypeMapEntry.5643_to = private unnamed_addr constant [68 x i8] c"android/net/wifi/p2p/WifiP2pManager$ExternalApproverRequestListener\00", align 1 +@.TypeMapEntry.5644_from = private unnamed_addr constant [94 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IExternalApproverRequestListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5645_to = private unnamed_addr constant [84 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_ExternalApproverRequestListenerImplementor\00", align 1 +@.TypeMapEntry.5646_from = private unnamed_addr constant [90 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IExternalApproverRequestListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5647_from = private unnamed_addr constant [69 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IGroupInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.5648_to = private unnamed_addr constant [54 x i8] c"android/net/wifi/p2p/WifiP2pManager$GroupInfoListener\00", align 1 +@.TypeMapEntry.5649_from = private unnamed_addr constant [80 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IGroupInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5650_to = private unnamed_addr constant [70 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_GroupInfoListenerImplementor\00", align 1 +@.TypeMapEntry.5651_from = private unnamed_addr constant [76 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IGroupInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5652_from = private unnamed_addr constant [71 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+INetworkInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.5653_to = private unnamed_addr constant [56 x i8] c"android/net/wifi/p2p/WifiP2pManager$NetworkInfoListener\00", align 1 +@.TypeMapEntry.5654_from = private unnamed_addr constant [82 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+INetworkInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5655_to = private unnamed_addr constant [72 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_NetworkInfoListenerImplementor\00", align 1 +@.TypeMapEntry.5656_from = private unnamed_addr constant [78 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+INetworkInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5657_from = private unnamed_addr constant [68 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IP2pStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.5658_to = private unnamed_addr constant [53 x i8] c"android/net/wifi/p2p/WifiP2pManager$P2pStateListener\00", align 1 +@.TypeMapEntry.5659_from = private unnamed_addr constant [79 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IP2pStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5660_to = private unnamed_addr constant [69 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_P2pStateListenerImplementor\00", align 1 +@.TypeMapEntry.5661_from = private unnamed_addr constant [75 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IP2pStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5662_from = private unnamed_addr constant [68 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IPeerListListener, Mono.Android\00", align 1 +@.TypeMapEntry.5663_to = private unnamed_addr constant [53 x i8] c"android/net/wifi/p2p/WifiP2pManager$PeerListListener\00", align 1 +@.TypeMapEntry.5664_from = private unnamed_addr constant [79 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IPeerListListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5665_to = private unnamed_addr constant [69 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_PeerListListenerImplementor\00", align 1 +@.TypeMapEntry.5666_from = private unnamed_addr constant [75 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IPeerListListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5667_from = private unnamed_addr constant [75 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IServiceResponseListener, Mono.Android\00", align 1 +@.TypeMapEntry.5668_to = private unnamed_addr constant [60 x i8] c"android/net/wifi/p2p/WifiP2pManager$ServiceResponseListener\00", align 1 +@.TypeMapEntry.5669_from = private unnamed_addr constant [86 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IServiceResponseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5670_to = private unnamed_addr constant [76 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_ServiceResponseListenerImplementor\00", align 1 +@.TypeMapEntry.5671_from = private unnamed_addr constant [82 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IServiceResponseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5672_from = private unnamed_addr constant [79 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IUpnpServiceResponseListener, Mono.Android\00", align 1 +@.TypeMapEntry.5673_to = private unnamed_addr constant [64 x i8] c"android/net/wifi/p2p/WifiP2pManager$UpnpServiceResponseListener\00", align 1 +@.TypeMapEntry.5674_from = private unnamed_addr constant [90 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IUpnpServiceResponseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5675_to = private unnamed_addr constant [80 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_UpnpServiceResponseListenerImplementor\00", align 1 +@.TypeMapEntry.5676_from = private unnamed_addr constant [86 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IUpnpServiceResponseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5677_from = private unnamed_addr constant [67 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IWifiP2pListener, Mono.Android\00", align 1 +@.TypeMapEntry.5678_to = private unnamed_addr constant [52 x i8] c"android/net/wifi/p2p/WifiP2pManager$WifiP2pListener\00", align 1 +@.TypeMapEntry.5679_from = private unnamed_addr constant [78 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IWifiP2pListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5680_to = private unnamed_addr constant [68 x i8] c"mono/android/net/wifi/p2p/WifiP2pManager_WifiP2pListenerImplementor\00", align 1 +@.TypeMapEntry.5681_from = private unnamed_addr constant [74 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager+IWifiP2pListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5682_from = private unnamed_addr constant [50 x i8] c"Android.Net.Wifi.P2p.WifiP2pManager, Mono.Android\00", align 1 +@.TypeMapEntry.5683_to = private unnamed_addr constant [36 x i8] c"android/net/wifi/p2p/WifiP2pManager\00", align 1 +@.TypeMapEntry.5684_from = private unnamed_addr constant [50 x i8] c"Android.Net.Wifi.P2p.WifiP2pWfdInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5685_to = private unnamed_addr constant [36 x i8] c"android/net/wifi/p2p/WifiP2pWfdInfo\00", align 1 +@.TypeMapEntry.5686_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.Rtt.CivicLocationKeys, Mono.Android\00", align 1 +@.TypeMapEntry.5687_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/rtt/CivicLocationKeys\00", align 1 +@.TypeMapEntry.5688_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.Rtt.RangingRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5689_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/rtt/RangingRequest$Builder\00", align 1 +@.TypeMapEntry.5690_from = private unnamed_addr constant [50 x i8] c"Android.Net.Wifi.Rtt.RangingRequest, Mono.Android\00", align 1 +@.TypeMapEntry.5691_to = private unnamed_addr constant [36 x i8] c"android/net/wifi/rtt/RangingRequest\00", align 1 +@.TypeMapEntry.5692_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.Rtt.RangingResult+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5693_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/rtt/RangingResult$Builder\00", align 1 +@.TypeMapEntry.5694_from = private unnamed_addr constant [49 x i8] c"Android.Net.Wifi.Rtt.RangingResult, Mono.Android\00", align 1 +@.TypeMapEntry.5695_to = private unnamed_addr constant [35 x i8] c"android/net/wifi/rtt/RangingResult\00", align 1 +@.TypeMapEntry.5696_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.Rtt.RangingResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5697_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/rtt/RangingResultCallback\00", align 1 +@.TypeMapEntry.5698_from = private unnamed_addr constant [64 x i8] c"Android.Net.Wifi.Rtt.RangingResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5699_from = private unnamed_addr constant [59 x i8] c"Android.Net.Wifi.Rtt.ResponderConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5700_to = private unnamed_addr constant [45 x i8] c"android/net/wifi/rtt/ResponderConfig$Builder\00", align 1 +@.TypeMapEntry.5701_from = private unnamed_addr constant [51 x i8] c"Android.Net.Wifi.Rtt.ResponderConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5702_to = private unnamed_addr constant [37 x i8] c"android/net/wifi/rtt/ResponderConfig\00", align 1 +@.TypeMapEntry.5703_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.Rtt.ResponderLocation, Mono.Android\00", align 1 +@.TypeMapEntry.5704_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/rtt/ResponderLocation\00", align 1 +@.TypeMapEntry.5705_from = private unnamed_addr constant [50 x i8] c"Android.Net.Wifi.Rtt.WifiRttManager, Mono.Android\00", align 1 +@.TypeMapEntry.5706_to = private unnamed_addr constant [36 x i8] c"android/net/wifi/rtt/WifiRttManager\00", align 1 +@.TypeMapEntry.5707_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.ScanResult+InformationElement, Mono.Android\00", align 1 +@.TypeMapEntry.5708_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/ScanResult$InformationElement\00", align 1 +@.TypeMapEntry.5709_from = private unnamed_addr constant [42 x i8] c"Android.Net.Wifi.ScanResult, Mono.Android\00", align 1 +@.TypeMapEntry.5710_to = private unnamed_addr constant [28 x i8] c"android/net/wifi/ScanResult\00", align 1 +@.TypeMapEntry.5711_from = private unnamed_addr constant [51 x i8] c"Android.Net.Wifi.SoftApConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5712_to = private unnamed_addr constant [37 x i8] c"android/net/wifi/SoftApConfiguration\00", align 1 +@.TypeMapEntry.5713_from = private unnamed_addr constant [47 x i8] c"Android.Net.Wifi.SupplicantState, Mono.Android\00", align 1 +@.TypeMapEntry.5714_to = private unnamed_addr constant [33 x i8] c"android/net/wifi/SupplicantState\00", align 1 +@.TypeMapEntry.5715_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.WifiAvailableChannel, Mono.Android\00", align 1 +@.TypeMapEntry.5716_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/WifiAvailableChannel\00", align 1 +@.TypeMapEntry.5717_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.WifiConfiguration+AuthAlgorithm, Mono.Android\00", align 1 +@.TypeMapEntry.5718_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/WifiConfiguration$AuthAlgorithm\00", align 1 +@.TypeMapEntry.5719_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.WifiConfiguration+GroupCipher, Mono.Android\00", align 1 +@.TypeMapEntry.5720_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/WifiConfiguration$GroupCipher\00", align 1 +@.TypeMapEntry.5721_from = private unnamed_addr constant [65 x i8] c"Android.Net.Wifi.WifiConfiguration+GroupMgmtCipher, Mono.Android\00", align 1 +@.TypeMapEntry.5722_to = private unnamed_addr constant [51 x i8] c"android/net/wifi/WifiConfiguration$GroupMgmtCipher\00", align 1 +@.TypeMapEntry.5723_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.WifiConfiguration+KeyMgmt, Mono.Android\00", align 1 +@.TypeMapEntry.5724_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/WifiConfiguration$KeyMgmt\00", align 1 +@.TypeMapEntry.5725_from = private unnamed_addr constant [64 x i8] c"Android.Net.Wifi.WifiConfiguration+PairwiseCipher, Mono.Android\00", align 1 +@.TypeMapEntry.5726_to = private unnamed_addr constant [50 x i8] c"android/net/wifi/WifiConfiguration$PairwiseCipher\00", align 1 +@.TypeMapEntry.5727_from = private unnamed_addr constant [58 x i8] c"Android.Net.Wifi.WifiConfiguration+Protocol, Mono.Android\00", align 1 +@.TypeMapEntry.5728_to = private unnamed_addr constant [44 x i8] c"android/net/wifi/WifiConfiguration$Protocol\00", align 1 +@.TypeMapEntry.5729_from = private unnamed_addr constant [56 x i8] c"Android.Net.Wifi.WifiConfiguration+Status, Mono.Android\00", align 1 +@.TypeMapEntry.5730_to = private unnamed_addr constant [42 x i8] c"android/net/wifi/WifiConfiguration$Status\00", align 1 +@.TypeMapEntry.5731_from = private unnamed_addr constant [49 x i8] c"Android.Net.Wifi.WifiConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.5732_to = private unnamed_addr constant [35 x i8] c"android/net/wifi/WifiConfiguration\00", align 1 +@.TypeMapEntry.5733_from = private unnamed_addr constant [56 x i8] c"Android.Net.Wifi.WifiEnterpriseConfig+Eap, Mono.Android\00", align 1 +@.TypeMapEntry.5734_to = private unnamed_addr constant [42 x i8] c"android/net/wifi/WifiEnterpriseConfig$Eap\00", align 1 +@.TypeMapEntry.5735_from = private unnamed_addr constant [59 x i8] c"Android.Net.Wifi.WifiEnterpriseConfig+Phase2, Mono.Android\00", align 1 +@.TypeMapEntry.5736_to = private unnamed_addr constant [45 x i8] c"android/net/wifi/WifiEnterpriseConfig$Phase2\00", align 1 +@.TypeMapEntry.5737_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.WifiEnterpriseConfig, Mono.Android\00", align 1 +@.TypeMapEntry.5738_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/WifiEnterpriseConfig\00", align 1 +@.TypeMapEntry.5739_from = private unnamed_addr constant [48 x i8] c"Android.Net.Wifi.WifiInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5740_to = private unnamed_addr constant [34 x i8] c"android/net/wifi/WifiInfo$Builder\00", align 1 +@.TypeMapEntry.5741_from = private unnamed_addr constant [40 x i8] c"Android.Net.Wifi.WifiInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5742_to = private unnamed_addr constant [26 x i8] c"android/net/wifi/WifiInfo\00", align 1 +@.TypeMapEntry.5743_from = private unnamed_addr constant [60 x i8] c"Android.Net.Wifi.WifiManager+AddNetworkResult, Mono.Android\00", align 1 +@.TypeMapEntry.5744_to = private unnamed_addr constant [46 x i8] c"android/net/wifi/WifiManager$AddNetworkResult\00", align 1 +@.TypeMapEntry.5745_from = private unnamed_addr constant [79 x i8] c"Android.Net.Wifi.WifiManager+ILocalOnlyConnectionFailureListener, Mono.Android\00", align 1 +@.TypeMapEntry.5746_to = private unnamed_addr constant [64 x i8] c"android/net/wifi/WifiManager$LocalOnlyConnectionFailureListener\00", align 1 +@.TypeMapEntry.5747_from = private unnamed_addr constant [90 x i8] c"Android.Net.Wifi.WifiManager+ILocalOnlyConnectionFailureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5748_to = private unnamed_addr constant [80 x i8] c"mono/android/net/wifi/WifiManager_LocalOnlyConnectionFailureListenerImplementor\00", align 1 +@.TypeMapEntry.5749_from = private unnamed_addr constant [86 x i8] c"Android.Net.Wifi.WifiManager+ILocalOnlyConnectionFailureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5750_from = private unnamed_addr constant [79 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionConnectionStatusListener, Mono.Android\00", align 1 +@.TypeMapEntry.5751_to = private unnamed_addr constant [64 x i8] c"android/net/wifi/WifiManager$SuggestionConnectionStatusListener\00", align 1 +@.TypeMapEntry.5752_from = private unnamed_addr constant [90 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionConnectionStatusListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5753_to = private unnamed_addr constant [80 x i8] c"mono/android/net/wifi/WifiManager_SuggestionConnectionStatusListenerImplementor\00", align 1 +@.TypeMapEntry.5754_from = private unnamed_addr constant [86 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionConnectionStatusListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5755_from = private unnamed_addr constant [81 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionUserApprovalStatusListener, Mono.Android\00", align 1 +@.TypeMapEntry.5756_to = private unnamed_addr constant [66 x i8] c"android/net/wifi/WifiManager$SuggestionUserApprovalStatusListener\00", align 1 +@.TypeMapEntry.5757_from = private unnamed_addr constant [92 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionUserApprovalStatusListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5758_to = private unnamed_addr constant [82 x i8] c"mono/android/net/wifi/WifiManager_SuggestionUserApprovalStatusListenerImplementor\00", align 1 +@.TypeMapEntry.5759_from = private unnamed_addr constant [88 x i8] c"Android.Net.Wifi.WifiManager+ISuggestionUserApprovalStatusListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5760_from = private unnamed_addr constant [67 x i8] c"Android.Net.Wifi.WifiManager+InterfaceCreationImpact, Mono.Android\00", align 1 +@.TypeMapEntry.5761_to = private unnamed_addr constant [53 x i8] c"android/net/wifi/WifiManager$InterfaceCreationImpact\00", align 1 +@.TypeMapEntry.5762_from = private unnamed_addr constant [68 x i8] c"Android.Net.Wifi.WifiManager+LocalOnlyHotspotCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5763_to = private unnamed_addr constant [54 x i8] c"android/net/wifi/WifiManager$LocalOnlyHotspotCallback\00", align 1 +@.TypeMapEntry.5764_from = private unnamed_addr constant [71 x i8] c"Android.Net.Wifi.WifiManager+LocalOnlyHotspotReservation, Mono.Android\00", align 1 +@.TypeMapEntry.5765_to = private unnamed_addr constant [57 x i8] c"android/net/wifi/WifiManager$LocalOnlyHotspotReservation\00", align 1 +@.TypeMapEntry.5766_from = private unnamed_addr constant [57 x i8] c"Android.Net.Wifi.WifiManager+MulticastLock, Mono.Android\00", align 1 +@.TypeMapEntry.5767_to = private unnamed_addr constant [43 x i8] c"android/net/wifi/WifiManager$MulticastLock\00", align 1 +@.TypeMapEntry.5768_from = private unnamed_addr constant [63 x i8] c"Android.Net.Wifi.WifiManager+ScanResultsCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5769_to = private unnamed_addr constant [49 x i8] c"android/net/wifi/WifiManager$ScanResultsCallback\00", align 1 +@.TypeMapEntry.5770_from = private unnamed_addr constant [70 x i8] c"Android.Net.Wifi.WifiManager+ScanResultsCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5771_from = private unnamed_addr constant [76 x i8] c"Android.Net.Wifi.WifiManager+SubsystemRestartTrackingCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5772_to = private unnamed_addr constant [62 x i8] c"android/net/wifi/WifiManager$SubsystemRestartTrackingCallback\00", align 1 +@.TypeMapEntry.5773_from = private unnamed_addr constant [83 x i8] c"Android.Net.Wifi.WifiManager+SubsystemRestartTrackingCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5774_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.WifiManager+WifiLock, Mono.Android\00", align 1 +@.TypeMapEntry.5775_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/WifiManager$WifiLock\00", align 1 +@.TypeMapEntry.5776_from = private unnamed_addr constant [55 x i8] c"Android.Net.Wifi.WifiManager+WpsCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5777_to = private unnamed_addr constant [41 x i8] c"android/net/wifi/WifiManager$WpsCallback\00", align 1 +@.TypeMapEntry.5778_from = private unnamed_addr constant [62 x i8] c"Android.Net.Wifi.WifiManager+WpsCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5779_from = private unnamed_addr constant [43 x i8] c"Android.Net.Wifi.WifiManager, Mono.Android\00", align 1 +@.TypeMapEntry.5780_to = private unnamed_addr constant [29 x i8] c"android/net/wifi/WifiManager\00", align 1 +@.TypeMapEntry.5781_from = private unnamed_addr constant [60 x i8] c"Android.Net.Wifi.WifiNetworkSpecifier+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5782_to = private unnamed_addr constant [46 x i8] c"android/net/wifi/WifiNetworkSpecifier$Builder\00", align 1 +@.TypeMapEntry.5783_from = private unnamed_addr constant [52 x i8] c"Android.Net.Wifi.WifiNetworkSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.5784_to = private unnamed_addr constant [38 x i8] c"android/net/wifi/WifiNetworkSpecifier\00", align 1 +@.TypeMapEntry.5785_from = private unnamed_addr constant [61 x i8] c"Android.Net.Wifi.WifiNetworkSuggestion+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.5786_to = private unnamed_addr constant [47 x i8] c"android/net/wifi/WifiNetworkSuggestion$Builder\00", align 1 +@.TypeMapEntry.5787_from = private unnamed_addr constant [53 x i8] c"Android.Net.Wifi.WifiNetworkSuggestion, Mono.Android\00", align 1 +@.TypeMapEntry.5788_to = private unnamed_addr constant [39 x i8] c"android/net/wifi/WifiNetworkSuggestion\00", align 1 +@.TypeMapEntry.5789_from = private unnamed_addr constant [40 x i8] c"Android.Net.Wifi.WifiSsid, Mono.Android\00", align 1 +@.TypeMapEntry.5790_to = private unnamed_addr constant [26 x i8] c"android/net/wifi/WifiSsid\00", align 1 +@.TypeMapEntry.5791_from = private unnamed_addr constant [39 x i8] c"Android.Net.Wifi.WpsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5792_to = private unnamed_addr constant [25 x i8] c"android/net/wifi/WpsInfo\00", align 1 +@.TypeMapEntry.5793_from = private unnamed_addr constant [46 x i8] c"Android.Nfc.AvailableNfcAntenna, Mono.Android\00", align 1 +@.TypeMapEntry.5794_to = private unnamed_addr constant [32 x i8] c"android/nfc/AvailableNfcAntenna\00", align 1 +@.TypeMapEntry.5795_from = private unnamed_addr constant [54 x i8] c"Android.Nfc.CardEmulators.CardEmulation, Mono.Android\00", align 1 +@.TypeMapEntry.5796_to = private unnamed_addr constant [40 x i8] c"android/nfc/cardemulation/CardEmulation\00", align 1 +@.TypeMapEntry.5797_from = private unnamed_addr constant [56 x i8] c"Android.Nfc.CardEmulators.HostApduService, Mono.Android\00", align 1 +@.TypeMapEntry.5798_to = private unnamed_addr constant [42 x i8] c"android/nfc/cardemulation/HostApduService\00", align 1 +@.TypeMapEntry.5799_from = private unnamed_addr constant [63 x i8] c"Android.Nfc.CardEmulators.HostApduServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5800_from = private unnamed_addr constant [56 x i8] c"Android.Nfc.CardEmulators.HostNfcFService, Mono.Android\00", align 1 +@.TypeMapEntry.5801_to = private unnamed_addr constant [42 x i8] c"android/nfc/cardemulation/HostNfcFService\00", align 1 +@.TypeMapEntry.5802_from = private unnamed_addr constant [63 x i8] c"Android.Nfc.CardEmulators.HostNfcFServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5803_from = private unnamed_addr constant [58 x i8] c"Android.Nfc.CardEmulators.NfcFCardEmulation, Mono.Android\00", align 1 +@.TypeMapEntry.5804_to = private unnamed_addr constant [44 x i8] c"android/nfc/cardemulation/NfcFCardEmulation\00", align 1 +@.TypeMapEntry.5805_from = private unnamed_addr constant [59 x i8] c"Android.Nfc.CardEmulators.OffHostApduService, Mono.Android\00", align 1 +@.TypeMapEntry.5806_to = private unnamed_addr constant [45 x i8] c"android/nfc/cardemulation/OffHostApduService\00", align 1 +@.TypeMapEntry.5807_from = private unnamed_addr constant [66 x i8] c"Android.Nfc.CardEmulators.OffHostApduServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5808_from = private unnamed_addr constant [53 x i8] c"Android.Nfc.CardEmulators.PollingFrame, Mono.Android\00", align 1 +@.TypeMapEntry.5809_to = private unnamed_addr constant [39 x i8] c"android/nfc/cardemulation/PollingFrame\00", align 1 +@.TypeMapEntry.5810_from = private unnamed_addr constant [42 x i8] c"Android.Nfc.FormatException, Mono.Android\00", align 1 +@.TypeMapEntry.5811_to = private unnamed_addr constant [28 x i8] c"android/nfc/FormatException\00", align 1 +@.TypeMapEntry.5812_from = private unnamed_addr constant [38 x i8] c"Android.Nfc.NdefMessage, Mono.Android\00", align 1 +@.TypeMapEntry.5813_to = private unnamed_addr constant [24 x i8] c"android/nfc/NdefMessage\00", align 1 +@.TypeMapEntry.5814_from = private unnamed_addr constant [37 x i8] c"Android.Nfc.NdefRecord, Mono.Android\00", align 1 +@.TypeMapEntry.5815_to = private unnamed_addr constant [23 x i8] c"android/nfc/NdefRecord\00", align 1 +@.TypeMapEntry.5816_from = private unnamed_addr constant [61 x i8] c"Android.Nfc.NfcAdapter+ICreateBeamUrisCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5817_to = private unnamed_addr constant [46 x i8] c"android/nfc/NfcAdapter$CreateBeamUrisCallback\00", align 1 +@.TypeMapEntry.5818_from = private unnamed_addr constant [68 x i8] c"Android.Nfc.NfcAdapter+ICreateBeamUrisCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5819_from = private unnamed_addr constant [64 x i8] c"Android.Nfc.NfcAdapter+ICreateNdefMessageCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5820_to = private unnamed_addr constant [49 x i8] c"android/nfc/NfcAdapter$CreateNdefMessageCallback\00", align 1 +@.TypeMapEntry.5821_from = private unnamed_addr constant [71 x i8] c"Android.Nfc.NfcAdapter+ICreateNdefMessageCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5822_from = private unnamed_addr constant [65 x i8] c"Android.Nfc.NfcAdapter+IOnNdefPushCompleteCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5823_to = private unnamed_addr constant [50 x i8] c"android/nfc/NfcAdapter$OnNdefPushCompleteCallback\00", align 1 +@.TypeMapEntry.5824_from = private unnamed_addr constant [72 x i8] c"Android.Nfc.NfcAdapter+IOnNdefPushCompleteCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5825_from = private unnamed_addr constant [59 x i8] c"Android.Nfc.NfcAdapter+IOnTagRemovedListener, Mono.Android\00", align 1 +@.TypeMapEntry.5826_to = private unnamed_addr constant [44 x i8] c"android/nfc/NfcAdapter$OnTagRemovedListener\00", align 1 +@.TypeMapEntry.5827_from = private unnamed_addr constant [70 x i8] c"Android.Nfc.NfcAdapter+IOnTagRemovedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5828_to = private unnamed_addr constant [60 x i8] c"mono/android/nfc/NfcAdapter_OnTagRemovedListenerImplementor\00", align 1 +@.TypeMapEntry.5829_from = private unnamed_addr constant [66 x i8] c"Android.Nfc.NfcAdapter+IOnTagRemovedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5830_from = private unnamed_addr constant [53 x i8] c"Android.Nfc.NfcAdapter+IReaderCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5831_to = private unnamed_addr constant [38 x i8] c"android/nfc/NfcAdapter$ReaderCallback\00", align 1 +@.TypeMapEntry.5832_from = private unnamed_addr constant [60 x i8] c"Android.Nfc.NfcAdapter+IReaderCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5833_from = private unnamed_addr constant [37 x i8] c"Android.Nfc.NfcAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.5834_to = private unnamed_addr constant [23 x i8] c"android/nfc/NfcAdapter\00", align 1 +@.TypeMapEntry.5835_from = private unnamed_addr constant [41 x i8] c"Android.Nfc.NfcAntennaInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5836_to = private unnamed_addr constant [27 x i8] c"android/nfc/NfcAntennaInfo\00", align 1 +@.TypeMapEntry.5837_from = private unnamed_addr constant [35 x i8] c"Android.Nfc.NfcEvent, Mono.Android\00", align 1 +@.TypeMapEntry.5838_to = private unnamed_addr constant [21 x i8] c"android/nfc/NfcEvent\00", align 1 +@.TypeMapEntry.5839_from = private unnamed_addr constant [37 x i8] c"Android.Nfc.NfcManager, Mono.Android\00", align 1 +@.TypeMapEntry.5840_to = private unnamed_addr constant [23 x i8] c"android/nfc/NfcManager\00", align 1 +@.TypeMapEntry.5841_from = private unnamed_addr constant [30 x i8] c"Android.Nfc.Tag, Mono.Android\00", align 1 +@.TypeMapEntry.5842_to = private unnamed_addr constant [16 x i8] c"android/nfc/Tag\00", align 1 +@.TypeMapEntry.5843_from = private unnamed_addr constant [43 x i8] c"Android.Nfc.TagLostException, Mono.Android\00", align 1 +@.TypeMapEntry.5844_to = private unnamed_addr constant [29 x i8] c"android/nfc/TagLostException\00", align 1 +@.TypeMapEntry.5845_from = private unnamed_addr constant [50 x i8] c"Android.Nfc.Tech.BasicTagTechnology, Mono.Android\00", align 1 +@.TypeMapEntry.5846_to = private unnamed_addr constant [36 x i8] c"android/nfc/tech/BasicTagTechnology\00", align 1 +@.TypeMapEntry.5847_from = private unnamed_addr constant [57 x i8] c"Android.Nfc.Tech.BasicTagTechnologyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5848_from = private unnamed_addr constant [46 x i8] c"Android.Nfc.Tech.ITagTechnology, Mono.Android\00", align 1 +@.TypeMapEntry.5849_to = private unnamed_addr constant [31 x i8] c"android/nfc/tech/TagTechnology\00", align 1 +@.TypeMapEntry.5850_from = private unnamed_addr constant [53 x i8] c"Android.Nfc.Tech.ITagTechnologyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5851_from = private unnamed_addr constant [38 x i8] c"Android.Nfc.Tech.IsoDep, Mono.Android\00", align 1 +@.TypeMapEntry.5852_to = private unnamed_addr constant [24 x i8] c"android/nfc/tech/IsoDep\00", align 1 +@.TypeMapEntry.5853_from = private unnamed_addr constant [45 x i8] c"Android.Nfc.Tech.MifareClassic, Mono.Android\00", align 1 +@.TypeMapEntry.5854_to = private unnamed_addr constant [31 x i8] c"android/nfc/tech/MifareClassic\00", align 1 +@.TypeMapEntry.5855_from = private unnamed_addr constant [48 x i8] c"Android.Nfc.Tech.MifareUltralight, Mono.Android\00", align 1 +@.TypeMapEntry.5856_to = private unnamed_addr constant [34 x i8] c"android/nfc/tech/MifareUltralight\00", align 1 +@.TypeMapEntry.5857_from = private unnamed_addr constant [36 x i8] c"Android.Nfc.Tech.Ndef, Mono.Android\00", align 1 +@.TypeMapEntry.5858_to = private unnamed_addr constant [22 x i8] c"android/nfc/tech/Ndef\00", align 1 +@.TypeMapEntry.5859_from = private unnamed_addr constant [46 x i8] c"Android.Nfc.Tech.NdefFormatable, Mono.Android\00", align 1 +@.TypeMapEntry.5860_to = private unnamed_addr constant [32 x i8] c"android/nfc/tech/NdefFormatable\00", align 1 +@.TypeMapEntry.5861_from = private unnamed_addr constant [36 x i8] c"Android.Nfc.Tech.NfcA, Mono.Android\00", align 1 +@.TypeMapEntry.5862_to = private unnamed_addr constant [22 x i8] c"android/nfc/tech/NfcA\00", align 1 +@.TypeMapEntry.5863_from = private unnamed_addr constant [36 x i8] c"Android.Nfc.Tech.NfcB, Mono.Android\00", align 1 +@.TypeMapEntry.5864_to = private unnamed_addr constant [22 x i8] c"android/nfc/tech/NfcB\00", align 1 +@.TypeMapEntry.5865_from = private unnamed_addr constant [42 x i8] c"Android.Nfc.Tech.NfcBarcode, Mono.Android\00", align 1 +@.TypeMapEntry.5866_to = private unnamed_addr constant [28 x i8] c"android/nfc/tech/NfcBarcode\00", align 1 +@.TypeMapEntry.5867_from = private unnamed_addr constant [36 x i8] c"Android.Nfc.Tech.NfcF, Mono.Android\00", align 1 +@.TypeMapEntry.5868_to = private unnamed_addr constant [22 x i8] c"android/nfc/tech/NfcF\00", align 1 +@.TypeMapEntry.5869_from = private unnamed_addr constant [36 x i8] c"Android.Nfc.Tech.NfcV, Mono.Android\00", align 1 +@.TypeMapEntry.5870_to = private unnamed_addr constant [22 x i8] c"android/nfc/tech/NfcV\00", align 1 +@.TypeMapEntry.5871_from = private unnamed_addr constant [47 x i8] c"Android.OS.ActionHandlerCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5872_to = private unnamed_addr constant [38 x i8] c"mono/android/os/ActionHandlerCallback\00", align 1 +@.TypeMapEntry.5873_from = private unnamed_addr constant [42 x i8] c"Android.OS.AsyncTask+Status, Mono.Android\00", align 1 +@.TypeMapEntry.5874_to = private unnamed_addr constant [28 x i8] c"android/os/AsyncTask$Status\00", align 1 +@.TypeMapEntry.5875_from = private unnamed_addr constant [35 x i8] c"Android.OS.AsyncTask, Mono.Android\00", align 1 +@.TypeMapEntry.5876_to = private unnamed_addr constant [21 x i8] c"android/os/AsyncTask\00", align 1 +@.TypeMapEntry.5877_from = private unnamed_addr constant [42 x i8] c"Android.OS.AsyncTaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5878_from = private unnamed_addr constant [37 x i8] c"Android.OS.AsyncTask`3, Mono.Android\00", align 1 +@.TypeMapEntry.5879_from = private unnamed_addr constant [48 x i8] c"Android.OS.BadParcelableException, Mono.Android\00", align 1 +@.TypeMapEntry.5880_to = private unnamed_addr constant [34 x i8] c"android/os/BadParcelableException\00", align 1 +@.TypeMapEntry.5881_from = private unnamed_addr constant [36 x i8] c"Android.OS.BaseBundle, Mono.Android\00", align 1 +@.TypeMapEntry.5882_to = private unnamed_addr constant [22 x i8] c"android/os/BaseBundle\00", align 1 +@.TypeMapEntry.5883_from = private unnamed_addr constant [40 x i8] c"Android.OS.BatteryManager, Mono.Android\00", align 1 +@.TypeMapEntry.5884_to = private unnamed_addr constant [26 x i8] c"android/os/BatteryManager\00", align 1 +@.TypeMapEntry.5885_from = private unnamed_addr constant [32 x i8] c"Android.OS.Binder, Mono.Android\00", align 1 +@.TypeMapEntry.5886_to = private unnamed_addr constant [18 x i8] c"android/os/Binder\00", align 1 +@.TypeMapEntry.5887_from = private unnamed_addr constant [38 x i8] c"Android.OS.BinderConsts, Mono.Android\00", align 1 +@.TypeMapEntry.5888_to = private unnamed_addr constant [33 x i8] c"mono/internal/android/os/IBinder\00", align 1 +@.TypeMapEntry.5889_from = private unnamed_addr constant [60 x i8] c"Android.OS.BugreportManager+BugreportCallback, Mono.Android\00", align 1 +@.TypeMapEntry.5890_to = private unnamed_addr constant [46 x i8] c"android/os/BugreportManager$BugreportCallback\00", align 1 +@.TypeMapEntry.5891_from = private unnamed_addr constant [67 x i8] c"Android.OS.BugreportManager+BugreportCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5892_from = private unnamed_addr constant [42 x i8] c"Android.OS.BugreportManager, Mono.Android\00", align 1 +@.TypeMapEntry.5893_to = private unnamed_addr constant [28 x i8] c"android/os/BugreportManager\00", align 1 +@.TypeMapEntry.5894_from = private unnamed_addr constant [41 x i8] c"Android.OS.Build+Partition, Mono.Android\00", align 1 +@.TypeMapEntry.5895_to = private unnamed_addr constant [27 x i8] c"android/os/Build$Partition\00", align 1 +@.TypeMapEntry.5896_from = private unnamed_addr constant [39 x i8] c"Android.OS.Build+VERSION, Mono.Android\00", align 1 +@.TypeMapEntry.5897_to = private unnamed_addr constant [25 x i8] c"android/os/Build$VERSION\00", align 1 +@.TypeMapEntry.5898_from = private unnamed_addr constant [45 x i8] c"Android.OS.Build+VERSION_CODES, Mono.Android\00", align 1 +@.TypeMapEntry.5899_to = private unnamed_addr constant [31 x i8] c"android/os/Build$VERSION_CODES\00", align 1 +@.TypeMapEntry.5900_from = private unnamed_addr constant [31 x i8] c"Android.OS.Build, Mono.Android\00", align 1 +@.TypeMapEntry.5901_to = private unnamed_addr constant [17 x i8] c"android/os/Build\00", align 1 +@.TypeMapEntry.5902_from = private unnamed_addr constant [32 x i8] c"Android.OS.Bundle, Mono.Android\00", align 1 +@.TypeMapEntry.5903_to = private unnamed_addr constant [18 x i8] c"android/os/Bundle\00", align 1 +@.TypeMapEntry.5904_from = private unnamed_addr constant [62 x i8] c"Android.OS.CancellationSignal+IOnCancelListener, Mono.Android\00", align 1 +@.TypeMapEntry.5905_to = private unnamed_addr constant [47 x i8] c"android/os/CancellationSignal$OnCancelListener\00", align 1 +@.TypeMapEntry.5906_from = private unnamed_addr constant [73 x i8] c"Android.OS.CancellationSignal+IOnCancelListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5907_to = private unnamed_addr constant [63 x i8] c"mono/android/os/CancellationSignal_OnCancelListenerImplementor\00", align 1 +@.TypeMapEntry.5908_from = private unnamed_addr constant [69 x i8] c"Android.OS.CancellationSignal+IOnCancelListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5909_from = private unnamed_addr constant [44 x i8] c"Android.OS.CancellationSignal, Mono.Android\00", align 1 +@.TypeMapEntry.5910_to = private unnamed_addr constant [30 x i8] c"android/os/CancellationSignal\00", align 1 +@.TypeMapEntry.5911_from = private unnamed_addr constant [63 x i8] c"Android.OS.CombinedVibration+ParallelCombination, Mono.Android\00", align 1 +@.TypeMapEntry.5912_to = private unnamed_addr constant [49 x i8] c"android/os/CombinedVibration$ParallelCombination\00", align 1 +@.TypeMapEntry.5913_from = private unnamed_addr constant [43 x i8] c"Android.OS.CombinedVibration, Mono.Android\00", align 1 +@.TypeMapEntry.5914_to = private unnamed_addr constant [29 x i8] c"android/os/CombinedVibration\00", align 1 +@.TypeMapEntry.5915_from = private unnamed_addr constant [50 x i8] c"Android.OS.CombinedVibrationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5916_from = private unnamed_addr constant [43 x i8] c"Android.OS.ConditionVariable, Mono.Android\00", align 1 +@.TypeMapEntry.5917_to = private unnamed_addr constant [29 x i8] c"android/os/ConditionVariable\00", align 1 +@.TypeMapEntry.5918_from = private unnamed_addr constant [40 x i8] c"Android.OS.CountDownTimer, Mono.Android\00", align 1 +@.TypeMapEntry.5919_to = private unnamed_addr constant [26 x i8] c"android/os/CountDownTimer\00", align 1 +@.TypeMapEntry.5920_from = private unnamed_addr constant [47 x i8] c"Android.OS.CountDownTimerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5921_from = private unnamed_addr constant [38 x i8] c"Android.OS.CpuUsageInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5922_to = private unnamed_addr constant [24 x i8] c"android/os/CpuUsageInfo\00", align 1 +@.TypeMapEntry.5923_from = private unnamed_addr constant [45 x i8] c"Android.OS.DeadObjectException, Mono.Android\00", align 1 +@.TypeMapEntry.5924_to = private unnamed_addr constant [31 x i8] c"android/os/DeadObjectException\00", align 1 +@.TypeMapEntry.5925_from = private unnamed_addr constant [45 x i8] c"Android.OS.DeadSystemException, Mono.Android\00", align 1 +@.TypeMapEntry.5926_to = private unnamed_addr constant [31 x i8] c"android/os/DeadSystemException\00", align 1 +@.TypeMapEntry.5927_from = private unnamed_addr constant [48 x i8] c"Android.OS.Debug+InstructionCount, Mono.Android\00", align 1 +@.TypeMapEntry.5928_to = private unnamed_addr constant [34 x i8] c"android/os/Debug$InstructionCount\00", align 1 +@.TypeMapEntry.5929_from = private unnamed_addr constant [42 x i8] c"Android.OS.Debug+MemoryInfo, Mono.Android\00", align 1 +@.TypeMapEntry.5930_to = private unnamed_addr constant [28 x i8] c"android/os/Debug$MemoryInfo\00", align 1 +@.TypeMapEntry.5931_from = private unnamed_addr constant [31 x i8] c"Android.OS.Debug, Mono.Android\00", align 1 +@.TypeMapEntry.5932_to = private unnamed_addr constant [17 x i8] c"android/os/Debug\00", align 1 +@.TypeMapEntry.5933_from = private unnamed_addr constant [46 x i8] c"Android.OS.DropBoxManager+Entry, Mono.Android\00", align 1 +@.TypeMapEntry.5934_to = private unnamed_addr constant [32 x i8] c"android/os/DropBoxManager$Entry\00", align 1 +@.TypeMapEntry.5935_from = private unnamed_addr constant [40 x i8] c"Android.OS.DropBoxManager, Mono.Android\00", align 1 +@.TypeMapEntry.5936_to = private unnamed_addr constant [26 x i8] c"android/os/DropBoxManager\00", align 1 +@.TypeMapEntry.5937_from = private unnamed_addr constant [37 x i8] c"Android.OS.Environment, Mono.Android\00", align 1 +@.TypeMapEntry.5938_to = private unnamed_addr constant [23 x i8] c"android/os/Environment\00", align 1 +@.TypeMapEntry.5939_from = private unnamed_addr constant [43 x i8] c"Android.OS.Ext.SdkExtensions, Mono.Android\00", align 1 +@.TypeMapEntry.5940_to = private unnamed_addr constant [29 x i8] c"android/os/ext/SdkExtensions\00", align 1 +@.TypeMapEntry.5941_from = private unnamed_addr constant [38 x i8] c"Android.OS.FileObserver, Mono.Android\00", align 1 +@.TypeMapEntry.5942_to = private unnamed_addr constant [24 x i8] c"android/os/FileObserver\00", align 1 +@.TypeMapEntry.5943_from = private unnamed_addr constant [45 x i8] c"Android.OS.FileObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5944_from = private unnamed_addr constant [49 x i8] c"Android.OS.FileUriExposedException, Mono.Android\00", align 1 +@.TypeMapEntry.5945_to = private unnamed_addr constant [35 x i8] c"android/os/FileUriExposedException\00", align 1 +@.TypeMapEntry.5946_from = private unnamed_addr constant [53 x i8] c"Android.OS.FileUtils+IProgressListener, Mono.Android\00", align 1 +@.TypeMapEntry.5947_to = private unnamed_addr constant [38 x i8] c"android/os/FileUtils$ProgressListener\00", align 1 +@.TypeMapEntry.5948_from = private unnamed_addr constant [64 x i8] c"Android.OS.FileUtils+IProgressListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.5949_to = private unnamed_addr constant [54 x i8] c"mono/android/os/FileUtils_ProgressListenerImplementor\00", align 1 +@.TypeMapEntry.5950_from = private unnamed_addr constant [60 x i8] c"Android.OS.FileUtils+IProgressListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5951_from = private unnamed_addr constant [35 x i8] c"Android.OS.FileUtils, Mono.Android\00", align 1 +@.TypeMapEntry.5952_to = private unnamed_addr constant [21 x i8] c"android/os/FileUtils\00", align 1 +@.TypeMapEntry.5953_from = private unnamed_addr constant [43 x i8] c"Android.OS.Handler+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.5954_to = private unnamed_addr constant [28 x i8] c"android/os/Handler$Callback\00", align 1 +@.TypeMapEntry.5955_from = private unnamed_addr constant [50 x i8] c"Android.OS.Handler+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5956_from = private unnamed_addr constant [33 x i8] c"Android.OS.Handler, Mono.Android\00", align 1 +@.TypeMapEntry.5957_to = private unnamed_addr constant [19 x i8] c"android/os/Handler\00", align 1 +@.TypeMapEntry.5958_from = private unnamed_addr constant [39 x i8] c"Android.OS.HandlerThread, Mono.Android\00", align 1 +@.TypeMapEntry.5959_to = private unnamed_addr constant [25 x i8] c"android/os/HandlerThread\00", align 1 +@.TypeMapEntry.5960_from = private unnamed_addr constant [51 x i8] c"Android.OS.HardwarePropertiesManager, Mono.Android\00", align 1 +@.TypeMapEntry.5961_to = private unnamed_addr constant [37 x i8] c"android/os/HardwarePropertiesManager\00", align 1 +@.TypeMapEntry.5962_from = private unnamed_addr constant [44 x i8] c"Android.OS.Health.HealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5963_to = private unnamed_addr constant [30 x i8] c"android/os/health/HealthStats\00", align 1 +@.TypeMapEntry.5964_from = private unnamed_addr constant [51 x i8] c"Android.OS.Health.PackageHealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5965_to = private unnamed_addr constant [37 x i8] c"android/os/health/PackageHealthStats\00", align 1 +@.TypeMapEntry.5966_from = private unnamed_addr constant [47 x i8] c"Android.OS.Health.PidHealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5967_to = private unnamed_addr constant [33 x i8] c"android/os/health/PidHealthStats\00", align 1 +@.TypeMapEntry.5968_from = private unnamed_addr constant [51 x i8] c"Android.OS.Health.ProcessHealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5969_to = private unnamed_addr constant [37 x i8] c"android/os/health/ProcessHealthStats\00", align 1 +@.TypeMapEntry.5970_from = private unnamed_addr constant [51 x i8] c"Android.OS.Health.ServiceHealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5971_to = private unnamed_addr constant [37 x i8] c"android/os/health/ServiceHealthStats\00", align 1 +@.TypeMapEntry.5972_from = private unnamed_addr constant [52 x i8] c"Android.OS.Health.SystemHealthManager, Mono.Android\00", align 1 +@.TypeMapEntry.5973_to = private unnamed_addr constant [38 x i8] c"android/os/health/SystemHealthManager\00", align 1 +@.TypeMapEntry.5974_from = private unnamed_addr constant [42 x i8] c"Android.OS.Health.TimerStat, Mono.Android\00", align 1 +@.TypeMapEntry.5975_to = private unnamed_addr constant [28 x i8] c"android/os/health/TimerStat\00", align 1 +@.TypeMapEntry.5976_from = private unnamed_addr constant [47 x i8] c"Android.OS.Health.UidHealthStats, Mono.Android\00", align 1 +@.TypeMapEntry.5977_to = private unnamed_addr constant [33 x i8] c"android/os/health/UidHealthStats\00", align 1 +@.TypeMapEntry.5978_from = private unnamed_addr constant [33 x i8] c"Android.OS.IBinder, Mono.Android\00", align 1 +@.TypeMapEntry.5979_to = private unnamed_addr constant [19 x i8] c"android/os/IBinder\00", align 1 +@.TypeMapEntry.5980_from = private unnamed_addr constant [47 x i8] c"Android.OS.IBinderDeathRecipient, Mono.Android\00", align 1 +@.TypeMapEntry.5981_to = private unnamed_addr constant [34 x i8] c"android/os/IBinder$DeathRecipient\00", align 1 +@.TypeMapEntry.5982_from = private unnamed_addr constant [54 x i8] c"Android.OS.IBinderDeathRecipientInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5983_from = private unnamed_addr constant [40 x i8] c"Android.OS.IBinderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5984_from = private unnamed_addr constant [36 x i8] c"Android.OS.IInterface, Mono.Android\00", align 1 +@.TypeMapEntry.5985_to = private unnamed_addr constant [22 x i8] c"android/os/IInterface\00", align 1 +@.TypeMapEntry.5986_from = private unnamed_addr constant [43 x i8] c"Android.OS.IInterfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5987_from = private unnamed_addr constant [42 x i8] c"Android.OS.IOutcomeReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.5988_to = private unnamed_addr constant [27 x i8] c"android/os/OutcomeReceiver\00", align 1 +@.TypeMapEntry.5989_from = private unnamed_addr constant [49 x i8] c"Android.OS.IOutcomeReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5990_from = private unnamed_addr constant [37 x i8] c"Android.OS.IParcelable, Mono.Android\00", align 1 +@.TypeMapEntry.5991_to = private unnamed_addr constant [22 x i8] c"android/os/Parcelable\00", align 1 +@.TypeMapEntry.5992_from = private unnamed_addr constant [55 x i8] c"Android.OS.IParcelableClassLoaderCreator, Mono.Android\00", align 1 +@.TypeMapEntry.5993_to = private unnamed_addr constant [41 x i8] c"android/os/Parcelable$ClassLoaderCreator\00", align 1 +@.TypeMapEntry.5994_from = private unnamed_addr constant [62 x i8] c"Android.OS.IParcelableClassLoaderCreatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5995_from = private unnamed_addr constant [44 x i8] c"Android.OS.IParcelableCreator, Mono.Android\00", align 1 +@.TypeMapEntry.5996_to = private unnamed_addr constant [30 x i8] c"android/os/Parcelable$Creator\00", align 1 +@.TypeMapEntry.5997_from = private unnamed_addr constant [51 x i8] c"Android.OS.IParcelableCreatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5998_from = private unnamed_addr constant [44 x i8] c"Android.OS.IParcelableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.5999_from = private unnamed_addr constant [48 x i8] c"Android.OS.LimitExceededException, Mono.Android\00", align 1 +@.TypeMapEntry.6000_to = private unnamed_addr constant [34 x i8] c"android/os/LimitExceededException\00", align 1 +@.TypeMapEntry.6001_from = private unnamed_addr constant [36 x i8] c"Android.OS.LocaleList, Mono.Android\00", align 1 +@.TypeMapEntry.6002_to = private unnamed_addr constant [22 x i8] c"android/os/LocaleList\00", align 1 +@.TypeMapEntry.6003_from = private unnamed_addr constant [32 x i8] c"Android.OS.Looper, Mono.Android\00", align 1 +@.TypeMapEntry.6004_to = private unnamed_addr constant [18 x i8] c"android/os/Looper\00", align 1 +@.TypeMapEntry.6005_from = private unnamed_addr constant [36 x i8] c"Android.OS.MemoryFile, Mono.Android\00", align 1 +@.TypeMapEntry.6006_to = private unnamed_addr constant [22 x i8] c"android/os/MemoryFile\00", align 1 +@.TypeMapEntry.6007_from = private unnamed_addr constant [33 x i8] c"Android.OS.Message, Mono.Android\00", align 1 +@.TypeMapEntry.6008_to = private unnamed_addr constant [19 x i8] c"android/os/Message\00", align 1 +@.TypeMapEntry.6009_from = private unnamed_addr constant [51 x i8] c"Android.OS.MessageQueue+IIdleHandler, Mono.Android\00", align 1 +@.TypeMapEntry.6010_to = private unnamed_addr constant [36 x i8] c"android/os/MessageQueue$IdleHandler\00", align 1 +@.TypeMapEntry.6011_from = private unnamed_addr constant [58 x i8] c"Android.OS.MessageQueue+IIdleHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6012_from = private unnamed_addr constant [69 x i8] c"Android.OS.MessageQueue+IOnFileDescriptorEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.6013_to = private unnamed_addr constant [54 x i8] c"android/os/MessageQueue$OnFileDescriptorEventListener\00", align 1 +@.TypeMapEntry.6014_from = private unnamed_addr constant [80 x i8] c"Android.OS.MessageQueue+IOnFileDescriptorEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6015_to = private unnamed_addr constant [70 x i8] c"mono/android/os/MessageQueue_OnFileDescriptorEventListenerImplementor\00", align 1 +@.TypeMapEntry.6016_from = private unnamed_addr constant [76 x i8] c"Android.OS.MessageQueue+IOnFileDescriptorEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6017_from = private unnamed_addr constant [38 x i8] c"Android.OS.MessageQueue, Mono.Android\00", align 1 +@.TypeMapEntry.6018_to = private unnamed_addr constant [24 x i8] c"android/os/MessageQueue\00", align 1 +@.TypeMapEntry.6019_from = private unnamed_addr constant [35 x i8] c"Android.OS.Messenger, Mono.Android\00", align 1 +@.TypeMapEntry.6020_to = private unnamed_addr constant [21 x i8] c"android/os/Messenger\00", align 1 +@.TypeMapEntry.6021_from = private unnamed_addr constant [54 x i8] c"Android.OS.NetworkOnMainThreadException, Mono.Android\00", align 1 +@.TypeMapEntry.6022_to = private unnamed_addr constant [40 x i8] c"android/os/NetworkOnMainThreadException\00", align 1 +@.TypeMapEntry.6023_from = private unnamed_addr constant [52 x i8] c"Android.OS.OperationCanceledException, Mono.Android\00", align 1 +@.TypeMapEntry.6024_to = private unnamed_addr constant [38 x i8] c"android/os/OperationCanceledException\00", align 1 +@.TypeMapEntry.6025_from = private unnamed_addr constant [32 x i8] c"Android.OS.Parcel, Mono.Android\00", align 1 +@.TypeMapEntry.6026_to = private unnamed_addr constant [18 x i8] c"android/os/Parcel\00", align 1 +@.TypeMapEntry.6027_from = private unnamed_addr constant [67 x i8] c"Android.OS.ParcelFileDescriptor+AutoCloseInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.6028_to = private unnamed_addr constant [53 x i8] c"android/os/ParcelFileDescriptor$AutoCloseInputStream\00", align 1 +@.TypeMapEntry.6029_from = private unnamed_addr constant [68 x i8] c"Android.OS.ParcelFileDescriptor+AutoCloseOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.6030_to = private unnamed_addr constant [54 x i8] c"android/os/ParcelFileDescriptor$AutoCloseOutputStream\00", align 1 +@.TypeMapEntry.6031_from = private unnamed_addr constant [78 x i8] c"Android.OS.ParcelFileDescriptor+FileDescriptorDetachedException, Mono.Android\00", align 1 +@.TypeMapEntry.6032_to = private unnamed_addr constant [64 x i8] c"android/os/ParcelFileDescriptor$FileDescriptorDetachedException\00", align 1 +@.TypeMapEntry.6033_from = private unnamed_addr constant [63 x i8] c"Android.OS.ParcelFileDescriptor+IOnCloseListener, Mono.Android\00", align 1 +@.TypeMapEntry.6034_to = private unnamed_addr constant [48 x i8] c"android/os/ParcelFileDescriptor$OnCloseListener\00", align 1 +@.TypeMapEntry.6035_from = private unnamed_addr constant [74 x i8] c"Android.OS.ParcelFileDescriptor+IOnCloseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6036_to = private unnamed_addr constant [64 x i8] c"mono/android/os/ParcelFileDescriptor_OnCloseListenerImplementor\00", align 1 +@.TypeMapEntry.6037_from = private unnamed_addr constant [70 x i8] c"Android.OS.ParcelFileDescriptor+IOnCloseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6038_from = private unnamed_addr constant [46 x i8] c"Android.OS.ParcelFileDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.6039_to = private unnamed_addr constant [32 x i8] c"android/os/ParcelFileDescriptor\00", align 1 +@.TypeMapEntry.6040_from = private unnamed_addr constant [47 x i8] c"Android.OS.ParcelFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.6041_to = private unnamed_addr constant [33 x i8] c"android/os/ParcelFormatException\00", align 1 +@.TypeMapEntry.6042_from = private unnamed_addr constant [36 x i8] c"Android.OS.ParcelUuid, Mono.Android\00", align 1 +@.TypeMapEntry.6043_to = private unnamed_addr constant [22 x i8] c"android/os/ParcelUuid\00", align 1 +@.TypeMapEntry.6044_from = private unnamed_addr constant [36 x i8] c"Android.OS.Parcelable, Mono.Android\00", align 1 +@.TypeMapEntry.6045_to = private unnamed_addr constant [36 x i8] c"mono/internal/android/os/Parcelable\00", align 1 +@.TypeMapEntry.6046_from = private unnamed_addr constant [40 x i8] c"Android.OS.PatternMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.6047_to = private unnamed_addr constant [26 x i8] c"android/os/PatternMatcher\00", align 1 +@.TypeMapEntry.6048_from = private unnamed_addr constant [56 x i8] c"Android.OS.PerformanceHintManager+Session, Mono.Android\00", align 1 +@.TypeMapEntry.6049_to = private unnamed_addr constant [42 x i8] c"android/os/PerformanceHintManager$Session\00", align 1 +@.TypeMapEntry.6050_from = private unnamed_addr constant [48 x i8] c"Android.OS.PerformanceHintManager, Mono.Android\00", align 1 +@.TypeMapEntry.6051_to = private unnamed_addr constant [34 x i8] c"android/os/PerformanceHintManager\00", align 1 +@.TypeMapEntry.6052_from = private unnamed_addr constant [43 x i8] c"Android.OS.PersistableBundle, Mono.Android\00", align 1 +@.TypeMapEntry.6053_to = private unnamed_addr constant [29 x i8] c"android/os/PersistableBundle\00", align 1 +@.TypeMapEntry.6054_from = private unnamed_addr constant [70 x i8] c"Android.OS.PowerManager+IOnThermalStatusChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.6055_to = private unnamed_addr constant [55 x i8] c"android/os/PowerManager$OnThermalStatusChangedListener\00", align 1 +@.TypeMapEntry.6056_from = private unnamed_addr constant [81 x i8] c"Android.OS.PowerManager+IOnThermalStatusChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6057_to = private unnamed_addr constant [71 x i8] c"mono/android/os/PowerManager_OnThermalStatusChangedListenerImplementor\00", align 1 +@.TypeMapEntry.6058_from = private unnamed_addr constant [77 x i8] c"Android.OS.PowerManager+IOnThermalStatusChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6059_from = private unnamed_addr constant [61 x i8] c"Android.OS.PowerManager+IWakeLockStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.6060_to = private unnamed_addr constant [46 x i8] c"android/os/PowerManager$WakeLockStateListener\00", align 1 +@.TypeMapEntry.6061_from = private unnamed_addr constant [72 x i8] c"Android.OS.PowerManager+IWakeLockStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6062_to = private unnamed_addr constant [62 x i8] c"mono/android/os/PowerManager_WakeLockStateListenerImplementor\00", align 1 +@.TypeMapEntry.6063_from = private unnamed_addr constant [68 x i8] c"Android.OS.PowerManager+IWakeLockStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6064_from = private unnamed_addr constant [47 x i8] c"Android.OS.PowerManager+WakeLock, Mono.Android\00", align 1 +@.TypeMapEntry.6065_to = private unnamed_addr constant [33 x i8] c"android/os/PowerManager$WakeLock\00", align 1 +@.TypeMapEntry.6066_from = private unnamed_addr constant [38 x i8] c"Android.OS.PowerManager, Mono.Android\00", align 1 +@.TypeMapEntry.6067_to = private unnamed_addr constant [24 x i8] c"android/os/PowerManager\00", align 1 +@.TypeMapEntry.6068_from = private unnamed_addr constant [38 x i8] c"Android.OS.PowerMonitor, Mono.Android\00", align 1 +@.TypeMapEntry.6069_to = private unnamed_addr constant [24 x i8] c"android/os/PowerMonitor\00", align 1 +@.TypeMapEntry.6070_from = private unnamed_addr constant [46 x i8] c"Android.OS.PowerMonitorReadings, Mono.Android\00", align 1 +@.TypeMapEntry.6071_to = private unnamed_addr constant [32 x i8] c"android/os/PowerMonitorReadings\00", align 1 +@.TypeMapEntry.6072_from = private unnamed_addr constant [33 x i8] c"Android.OS.Process, Mono.Android\00", align 1 +@.TypeMapEntry.6073_to = private unnamed_addr constant [19 x i8] c"android/os/Process\00", align 1 +@.TypeMapEntry.6074_from = private unnamed_addr constant [42 x i8] c"Android.OS.ProfilingManager, Mono.Android\00", align 1 +@.TypeMapEntry.6075_to = private unnamed_addr constant [28 x i8] c"android/os/ProfilingManager\00", align 1 +@.TypeMapEntry.6076_from = private unnamed_addr constant [41 x i8] c"Android.OS.ProfilingResult, Mono.Android\00", align 1 +@.TypeMapEntry.6077_to = private unnamed_addr constant [27 x i8] c"android/os/ProfilingResult\00", align 1 +@.TypeMapEntry.6078_from = private unnamed_addr constant [53 x i8] c"Android.OS.ProxyFileDescriptorCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6079_to = private unnamed_addr constant [39 x i8] c"android/os/ProxyFileDescriptorCallback\00", align 1 +@.TypeMapEntry.6080_from = private unnamed_addr constant [60 x i8] c"Android.OS.ProxyFileDescriptorCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6081_from = private unnamed_addr constant [58 x i8] c"Android.OS.RecoverySystem+IProgressListener, Mono.Android\00", align 1 +@.TypeMapEntry.6082_to = private unnamed_addr constant [43 x i8] c"android/os/RecoverySystem$ProgressListener\00", align 1 +@.TypeMapEntry.6083_from = private unnamed_addr constant [69 x i8] c"Android.OS.RecoverySystem+IProgressListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6084_to = private unnamed_addr constant [59 x i8] c"mono/android/os/RecoverySystem_ProgressListenerImplementor\00", align 1 +@.TypeMapEntry.6085_from = private unnamed_addr constant [65 x i8] c"Android.OS.RecoverySystem+IProgressListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6086_from = private unnamed_addr constant [40 x i8] c"Android.OS.RecoverySystem, Mono.Android\00", align 1 +@.TypeMapEntry.6087_to = private unnamed_addr constant [26 x i8] c"android/os/RecoverySystem\00", align 1 +@.TypeMapEntry.6088_from = private unnamed_addr constant [44 x i8] c"Android.OS.RemoteCallbackList, Mono.Android\00", align 1 +@.TypeMapEntry.6089_to = private unnamed_addr constant [30 x i8] c"android/os/RemoteCallbackList\00", align 1 +@.TypeMapEntry.6090_from = private unnamed_addr constant [41 x i8] c"Android.OS.RemoteException, Mono.Android\00", align 1 +@.TypeMapEntry.6091_to = private unnamed_addr constant [27 x i8] c"android/os/RemoteException\00", align 1 +@.TypeMapEntry.6092_from = private unnamed_addr constant [40 x i8] c"Android.OS.ResultReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.6093_to = private unnamed_addr constant [26 x i8] c"android/os/ResultReceiver\00", align 1 +@.TypeMapEntry.6094_from = private unnamed_addr constant [46 x i8] c"Android.OS.SecurityStateManager, Mono.Android\00", align 1 +@.TypeMapEntry.6095_to = private unnamed_addr constant [32 x i8] c"android/os/SecurityStateManager\00", align 1 +@.TypeMapEntry.6096_from = private unnamed_addr constant [38 x i8] c"Android.OS.SharedMemory, Mono.Android\00", align 1 +@.TypeMapEntry.6097_to = private unnamed_addr constant [24 x i8] c"android/os/SharedMemory\00", align 1 +@.TypeMapEntry.6098_from = private unnamed_addr constant [32 x i8] c"Android.OS.StatFs, Mono.Android\00", align 1 +@.TypeMapEntry.6099_to = private unnamed_addr constant [18 x i8] c"android/os/StatFs\00", align 1 +@.TypeMapEntry.6100_from = private unnamed_addr constant [58 x i8] c"Android.OS.Storage.OnObbStateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.6101_to = private unnamed_addr constant [44 x i8] c"android/os/storage/OnObbStateChangeListener\00", align 1 +@.TypeMapEntry.6102_from = private unnamed_addr constant [65 x i8] c"Android.OS.Storage.OnObbStateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6103_from = private unnamed_addr constant [70 x i8] c"Android.OS.Storage.StorageManager+StorageVolumeCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6104_to = private unnamed_addr constant [56 x i8] c"android/os/storage/StorageManager$StorageVolumeCallback\00", align 1 +@.TypeMapEntry.6105_from = private unnamed_addr constant [48 x i8] c"Android.OS.Storage.StorageManager, Mono.Android\00", align 1 +@.TypeMapEntry.6106_to = private unnamed_addr constant [34 x i8] c"android/os/storage/StorageManager\00", align 1 +@.TypeMapEntry.6107_from = private unnamed_addr constant [47 x i8] c"Android.OS.Storage.StorageVolume, Mono.Android\00", align 1 +@.TypeMapEntry.6108_to = private unnamed_addr constant [33 x i8] c"android/os/storage/StorageVolume\00", align 1 +@.TypeMapEntry.6109_from = private unnamed_addr constant [63 x i8] c"Android.OS.StrictMode+IOnThreadViolationListener, Mono.Android\00", align 1 +@.TypeMapEntry.6110_to = private unnamed_addr constant [48 x i8] c"android/os/StrictMode$OnThreadViolationListener\00", align 1 +@.TypeMapEntry.6111_from = private unnamed_addr constant [74 x i8] c"Android.OS.StrictMode+IOnThreadViolationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6112_to = private unnamed_addr constant [64 x i8] c"mono/android/os/StrictMode_OnThreadViolationListenerImplementor\00", align 1 +@.TypeMapEntry.6113_from = private unnamed_addr constant [70 x i8] c"Android.OS.StrictMode+IOnThreadViolationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6114_from = private unnamed_addr constant [59 x i8] c"Android.OS.StrictMode+IOnVmViolationListener, Mono.Android\00", align 1 +@.TypeMapEntry.6115_to = private unnamed_addr constant [44 x i8] c"android/os/StrictMode$OnVmViolationListener\00", align 1 +@.TypeMapEntry.6116_from = private unnamed_addr constant [70 x i8] c"Android.OS.StrictMode+IOnVmViolationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6117_to = private unnamed_addr constant [60 x i8] c"mono/android/os/StrictMode_OnVmViolationListenerImplementor\00", align 1 +@.TypeMapEntry.6118_from = private unnamed_addr constant [66 x i8] c"Android.OS.StrictMode+IOnVmViolationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6119_from = private unnamed_addr constant [57 x i8] c"Android.OS.StrictMode+ThreadPolicy+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6120_to = private unnamed_addr constant [43 x i8] c"android/os/StrictMode$ThreadPolicy$Builder\00", align 1 +@.TypeMapEntry.6121_from = private unnamed_addr constant [49 x i8] c"Android.OS.StrictMode+ThreadPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.6122_to = private unnamed_addr constant [35 x i8] c"android/os/StrictMode$ThreadPolicy\00", align 1 +@.TypeMapEntry.6123_from = private unnamed_addr constant [53 x i8] c"Android.OS.StrictMode+VmPolicy+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6124_to = private unnamed_addr constant [39 x i8] c"android/os/StrictMode$VmPolicy$Builder\00", align 1 +@.TypeMapEntry.6125_from = private unnamed_addr constant [45 x i8] c"Android.OS.StrictMode+VmPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.6126_to = private unnamed_addr constant [31 x i8] c"android/os/StrictMode$VmPolicy\00", align 1 +@.TypeMapEntry.6127_from = private unnamed_addr constant [36 x i8] c"Android.OS.StrictMode, Mono.Android\00", align 1 +@.TypeMapEntry.6128_to = private unnamed_addr constant [22 x i8] c"android/os/StrictMode\00", align 1 +@.TypeMapEntry.6129_from = private unnamed_addr constant [62 x i8] c"Android.OS.Strictmode.CleartextNetworkViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6130_to = private unnamed_addr constant [48 x i8] c"android/os/strictmode/CleartextNetworkViolation\00", align 1 +@.TypeMapEntry.6131_from = private unnamed_addr constant [73 x i8] c"Android.OS.Strictmode.ContentUriWithoutPermissionViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6132_to = private unnamed_addr constant [59 x i8] c"android/os/strictmode/ContentUriWithoutPermissionViolation\00", align 1 +@.TypeMapEntry.6133_from = private unnamed_addr constant [76 x i8] c"Android.OS.Strictmode.CredentialProtectedWhileLockedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6134_to = private unnamed_addr constant [62 x i8] c"android/os/strictmode/CredentialProtectedWhileLockedViolation\00", align 1 +@.TypeMapEntry.6135_from = private unnamed_addr constant [52 x i8] c"Android.OS.Strictmode.CustomViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6136_to = private unnamed_addr constant [38 x i8] c"android/os/strictmode/CustomViolation\00", align 1 +@.TypeMapEntry.6137_from = private unnamed_addr constant [54 x i8] c"Android.OS.Strictmode.DiskReadViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6138_to = private unnamed_addr constant [40 x i8] c"android/os/strictmode/DiskReadViolation\00", align 1 +@.TypeMapEntry.6139_from = private unnamed_addr constant [55 x i8] c"Android.OS.Strictmode.DiskWriteViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6140_to = private unnamed_addr constant [41 x i8] c"android/os/strictmode/DiskWriteViolation\00", align 1 +@.TypeMapEntry.6141_from = private unnamed_addr constant [56 x i8] c"Android.OS.Strictmode.ExplicitGcViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6142_to = private unnamed_addr constant [42 x i8] c"android/os/strictmode/ExplicitGcViolation\00", align 1 +@.TypeMapEntry.6143_from = private unnamed_addr constant [60 x i8] c"Android.OS.Strictmode.FileUriExposedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6144_to = private unnamed_addr constant [46 x i8] c"android/os/strictmode/FileUriExposedViolation\00", align 1 +@.TypeMapEntry.6145_from = private unnamed_addr constant [64 x i8] c"Android.OS.Strictmode.ImplicitDirectBootViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6146_to = private unnamed_addr constant [50 x i8] c"android/os/strictmode/ImplicitDirectBootViolation\00", align 1 +@.TypeMapEntry.6147_from = private unnamed_addr constant [65 x i8] c"Android.OS.Strictmode.IncorrectContextUseViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6148_to = private unnamed_addr constant [51 x i8] c"android/os/strictmode/IncorrectContextUseViolation\00", align 1 +@.TypeMapEntry.6149_from = private unnamed_addr constant [59 x i8] c"Android.OS.Strictmode.InstanceCountViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6150_to = private unnamed_addr constant [45 x i8] c"android/os/strictmode/InstanceCountViolation\00", align 1 +@.TypeMapEntry.6151_from = private unnamed_addr constant [66 x i8] c"Android.OS.Strictmode.IntentReceiverLeakedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6152_to = private unnamed_addr constant [52 x i8] c"android/os/strictmode/IntentReceiverLeakedViolation\00", align 1 +@.TypeMapEntry.6153_from = private unnamed_addr constant [60 x i8] c"Android.OS.Strictmode.LeakedClosableViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6154_to = private unnamed_addr constant [46 x i8] c"android/os/strictmode/LeakedClosableViolation\00", align 1 +@.TypeMapEntry.6155_from = private unnamed_addr constant [53 x i8] c"Android.OS.Strictmode.NetworkViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6156_to = private unnamed_addr constant [39 x i8] c"android/os/strictmode/NetworkViolation\00", align 1 +@.TypeMapEntry.6157_from = private unnamed_addr constant [59 x i8] c"Android.OS.Strictmode.NonSdkApiUsedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6158_to = private unnamed_addr constant [45 x i8] c"android/os/strictmode/NonSdkApiUsedViolation\00", align 1 +@.TypeMapEntry.6159_from = private unnamed_addr constant [62 x i8] c"Android.OS.Strictmode.ResourceMismatchViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6160_to = private unnamed_addr constant [48 x i8] c"android/os/strictmode/ResourceMismatchViolation\00", align 1 +@.TypeMapEntry.6161_from = private unnamed_addr constant [69 x i8] c"Android.OS.Strictmode.ServiceConnectionLeakedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6162_to = private unnamed_addr constant [55 x i8] c"android/os/strictmode/ServiceConnectionLeakedViolation\00", align 1 +@.TypeMapEntry.6163_from = private unnamed_addr constant [64 x i8] c"Android.OS.Strictmode.SqliteObjectLeakedViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6164_to = private unnamed_addr constant [50 x i8] c"android/os/strictmode/SqliteObjectLeakedViolation\00", align 1 +@.TypeMapEntry.6165_from = private unnamed_addr constant [58 x i8] c"Android.OS.Strictmode.UnbufferedIoViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6166_to = private unnamed_addr constant [44 x i8] c"android/os/strictmode/UnbufferedIoViolation\00", align 1 +@.TypeMapEntry.6167_from = private unnamed_addr constant [64 x i8] c"Android.OS.Strictmode.UnsafeIntentLaunchViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6168_to = private unnamed_addr constant [50 x i8] c"android/os/strictmode/UnsafeIntentLaunchViolation\00", align 1 +@.TypeMapEntry.6169_from = private unnamed_addr constant [60 x i8] c"Android.OS.Strictmode.UntaggedSocketViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6170_to = private unnamed_addr constant [46 x i8] c"android/os/strictmode/UntaggedSocketViolation\00", align 1 +@.TypeMapEntry.6171_from = private unnamed_addr constant [46 x i8] c"Android.OS.Strictmode.Violation, Mono.Android\00", align 1 +@.TypeMapEntry.6172_to = private unnamed_addr constant [32 x i8] c"android/os/strictmode/Violation\00", align 1 +@.TypeMapEntry.6173_from = private unnamed_addr constant [53 x i8] c"Android.OS.Strictmode.ViolationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6174_from = private unnamed_addr constant [78 x i8] c"Android.OS.Strictmode.WebViewMethodCalledOnWrongThreadViolation, Mono.Android\00", align 1 +@.TypeMapEntry.6175_to = private unnamed_addr constant [64 x i8] c"android/os/strictmode/WebViewMethodCalledOnWrongThreadViolation\00", align 1 +@.TypeMapEntry.6176_from = private unnamed_addr constant [37 x i8] c"Android.OS.SystemClock, Mono.Android\00", align 1 +@.TypeMapEntry.6177_to = private unnamed_addr constant [23 x i8] c"android/os/SystemClock\00", align 1 +@.TypeMapEntry.6178_from = private unnamed_addr constant [43 x i8] c"Android.OS.TestLooperManager, Mono.Android\00", align 1 +@.TypeMapEntry.6179_to = private unnamed_addr constant [29 x i8] c"android/os/TestLooperManager\00", align 1 +@.TypeMapEntry.6180_from = private unnamed_addr constant [38 x i8] c"Android.OS.TokenWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.6181_to = private unnamed_addr constant [24 x i8] c"android/os/TokenWatcher\00", align 1 +@.TypeMapEntry.6182_from = private unnamed_addr constant [45 x i8] c"Android.OS.TokenWatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6183_from = private unnamed_addr constant [31 x i8] c"Android.OS.Trace, Mono.Android\00", align 1 +@.TypeMapEntry.6184_to = private unnamed_addr constant [17 x i8] c"android/os/Trace\00", align 1 +@.TypeMapEntry.6185_from = private unnamed_addr constant [54 x i8] c"Android.OS.TransactionTooLargeException, Mono.Android\00", align 1 +@.TypeMapEntry.6186_to = private unnamed_addr constant [40 x i8] c"android/os/TransactionTooLargeException\00", align 1 +@.TypeMapEntry.6187_from = private unnamed_addr constant [36 x i8] c"Android.OS.UserHandle, Mono.Android\00", align 1 +@.TypeMapEntry.6188_to = private unnamed_addr constant [22 x i8] c"android/os/UserHandle\00", align 1 +@.TypeMapEntry.6189_from = private unnamed_addr constant [60 x i8] c"Android.OS.UserManager+UserOperationException, Mono.Android\00", align 1 +@.TypeMapEntry.6190_to = private unnamed_addr constant [46 x i8] c"android/os/UserManager$UserOperationException\00", align 1 +@.TypeMapEntry.6191_from = private unnamed_addr constant [37 x i8] c"Android.OS.UserManager, Mono.Android\00", align 1 +@.TypeMapEntry.6192_to = private unnamed_addr constant [23 x i8] c"android/os/UserManager\00", align 1 +@.TypeMapEntry.6193_from = private unnamed_addr constant [53 x i8] c"Android.OS.VibrationAttributes+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6194_to = private unnamed_addr constant [39 x i8] c"android/os/VibrationAttributes$Builder\00", align 1 +@.TypeMapEntry.6195_from = private unnamed_addr constant [45 x i8] c"Android.OS.VibrationAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.6196_to = private unnamed_addr constant [31 x i8] c"android/os/VibrationAttributes\00", align 1 +@.TypeMapEntry.6197_from = private unnamed_addr constant [53 x i8] c"Android.OS.VibrationEffect+Composition, Mono.Android\00", align 1 +@.TypeMapEntry.6198_to = private unnamed_addr constant [39 x i8] c"android/os/VibrationEffect$Composition\00", align 1 +@.TypeMapEntry.6199_from = private unnamed_addr constant [41 x i8] c"Android.OS.VibrationEffect, Mono.Android\00", align 1 +@.TypeMapEntry.6200_to = private unnamed_addr constant [27 x i8] c"android/os/VibrationEffect\00", align 1 +@.TypeMapEntry.6201_from = private unnamed_addr constant [48 x i8] c"Android.OS.VibrationEffectInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6202_from = private unnamed_addr constant [34 x i8] c"Android.OS.Vibrator, Mono.Android\00", align 1 +@.TypeMapEntry.6203_to = private unnamed_addr constant [20 x i8] c"android/os/Vibrator\00", align 1 +@.TypeMapEntry.6204_from = private unnamed_addr constant [41 x i8] c"Android.OS.VibratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6205_from = private unnamed_addr constant [41 x i8] c"Android.OS.VibratorManager, Mono.Android\00", align 1 +@.TypeMapEntry.6206_to = private unnamed_addr constant [27 x i8] c"android/os/VibratorManager\00", align 1 +@.TypeMapEntry.6207_from = private unnamed_addr constant [48 x i8] c"Android.OS.VibratorManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6208_from = private unnamed_addr constant [38 x i8] c"Android.OS.WorkDuration, Mono.Android\00", align 1 +@.TypeMapEntry.6209_to = private unnamed_addr constant [24 x i8] c"android/os/WorkDuration\00", align 1 +@.TypeMapEntry.6210_from = private unnamed_addr constant [36 x i8] c"Android.OS.WorkSource, Mono.Android\00", align 1 +@.TypeMapEntry.6211_to = private unnamed_addr constant [22 x i8] c"android/os/WorkSource\00", align 1 +@.TypeMapEntry.6212_from = private unnamed_addr constant [35 x i8] c"Android.Opengl.EGL14, Mono.Android\00", align 1 +@.TypeMapEntry.6213_to = private unnamed_addr constant [21 x i8] c"android/opengl/EGL14\00", align 1 +@.TypeMapEntry.6214_from = private unnamed_addr constant [35 x i8] c"Android.Opengl.EGL15, Mono.Android\00", align 1 +@.TypeMapEntry.6215_to = private unnamed_addr constant [21 x i8] c"android/opengl/EGL15\00", align 1 +@.TypeMapEntry.6216_from = private unnamed_addr constant [39 x i8] c"Android.Opengl.EGLConfig, Mono.Android\00", align 1 +@.TypeMapEntry.6217_to = private unnamed_addr constant [25 x i8] c"android/opengl/EGLConfig\00", align 1 +@.TypeMapEntry.6218_from = private unnamed_addr constant [40 x i8] c"Android.Opengl.EGLContext, Mono.Android\00", align 1 +@.TypeMapEntry.6219_to = private unnamed_addr constant [26 x i8] c"android/opengl/EGLContext\00", align 1 +@.TypeMapEntry.6220_from = private unnamed_addr constant [40 x i8] c"Android.Opengl.EGLDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.6221_to = private unnamed_addr constant [26 x i8] c"android/opengl/EGLDisplay\00", align 1 +@.TypeMapEntry.6222_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.EGLExt, Mono.Android\00", align 1 +@.TypeMapEntry.6223_to = private unnamed_addr constant [22 x i8] c"android/opengl/EGLExt\00", align 1 +@.TypeMapEntry.6224_from = private unnamed_addr constant [38 x i8] c"Android.Opengl.EGLImage, Mono.Android\00", align 1 +@.TypeMapEntry.6225_to = private unnamed_addr constant [24 x i8] c"android/opengl/EGLImage\00", align 1 +@.TypeMapEntry.6226_from = private unnamed_addr constant [45 x i8] c"Android.Opengl.EGLObjectHandle, Mono.Android\00", align 1 +@.TypeMapEntry.6227_to = private unnamed_addr constant [31 x i8] c"android/opengl/EGLObjectHandle\00", align 1 +@.TypeMapEntry.6228_from = private unnamed_addr constant [52 x i8] c"Android.Opengl.EGLObjectHandleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6229_from = private unnamed_addr constant [40 x i8] c"Android.Opengl.EGLSurface, Mono.Android\00", align 1 +@.TypeMapEntry.6230_to = private unnamed_addr constant [26 x i8] c"android/opengl/EGLSurface\00", align 1 +@.TypeMapEntry.6231_from = private unnamed_addr constant [37 x i8] c"Android.Opengl.EGLSync, Mono.Android\00", align 1 +@.TypeMapEntry.6232_to = private unnamed_addr constant [23 x i8] c"android/opengl/EGLSync\00", align 1 +@.TypeMapEntry.6233_from = private unnamed_addr constant [34 x i8] c"Android.Opengl.ETC1, Mono.Android\00", align 1 +@.TypeMapEntry.6234_to = private unnamed_addr constant [20 x i8] c"android/opengl/ETC1\00", align 1 +@.TypeMapEntry.6235_from = private unnamed_addr constant [50 x i8] c"Android.Opengl.ETC1Util+ETC1Texture, Mono.Android\00", align 1 +@.TypeMapEntry.6236_to = private unnamed_addr constant [36 x i8] c"android/opengl/ETC1Util$ETC1Texture\00", align 1 +@.TypeMapEntry.6237_from = private unnamed_addr constant [38 x i8] c"Android.Opengl.ETC1Util, Mono.Android\00", align 1 +@.TypeMapEntry.6238_to = private unnamed_addr constant [24 x i8] c"android/opengl/ETC1Util\00", align 1 +@.TypeMapEntry.6239_from = private unnamed_addr constant [43 x i8] c"Android.Opengl.GLDebugHelper, Mono.Android\00", align 1 +@.TypeMapEntry.6240_to = private unnamed_addr constant [29 x i8] c"android/opengl/GLDebugHelper\00", align 1 +@.TypeMapEntry.6241_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES10, Mono.Android\00", align 1 +@.TypeMapEntry.6242_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES10\00", align 1 +@.TypeMapEntry.6243_from = private unnamed_addr constant [39 x i8] c"Android.Opengl.GLES10Ext, Mono.Android\00", align 1 +@.TypeMapEntry.6244_to = private unnamed_addr constant [25 x i8] c"android/opengl/GLES10Ext\00", align 1 +@.TypeMapEntry.6245_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES11, Mono.Android\00", align 1 +@.TypeMapEntry.6246_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES11\00", align 1 +@.TypeMapEntry.6247_from = private unnamed_addr constant [39 x i8] c"Android.Opengl.GLES11Ext, Mono.Android\00", align 1 +@.TypeMapEntry.6248_to = private unnamed_addr constant [25 x i8] c"android/opengl/GLES11Ext\00", align 1 +@.TypeMapEntry.6249_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES20, Mono.Android\00", align 1 +@.TypeMapEntry.6250_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES20\00", align 1 +@.TypeMapEntry.6251_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES30, Mono.Android\00", align 1 +@.TypeMapEntry.6252_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES30\00", align 1 +@.TypeMapEntry.6253_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES31, Mono.Android\00", align 1 +@.TypeMapEntry.6254_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES31\00", align 1 +@.TypeMapEntry.6255_from = private unnamed_addr constant [53 x i8] c"Android.Opengl.GLES31Ext+IDebugProcKHR, Mono.Android\00", align 1 +@.TypeMapEntry.6256_to = private unnamed_addr constant [38 x i8] c"android/opengl/GLES31Ext$DebugProcKHR\00", align 1 +@.TypeMapEntry.6257_from = private unnamed_addr constant [60 x i8] c"Android.Opengl.GLES31Ext+IDebugProcKHRInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6258_from = private unnamed_addr constant [39 x i8] c"Android.Opengl.GLES31Ext, Mono.Android\00", align 1 +@.TypeMapEntry.6259_to = private unnamed_addr constant [25 x i8] c"android/opengl/GLES31Ext\00", align 1 +@.TypeMapEntry.6260_from = private unnamed_addr constant [47 x i8] c"Android.Opengl.GLES32+IDebugProc, Mono.Android\00", align 1 +@.TypeMapEntry.6261_to = private unnamed_addr constant [32 x i8] c"android/opengl/GLES32$DebugProc\00", align 1 +@.TypeMapEntry.6262_from = private unnamed_addr constant [54 x i8] c"Android.Opengl.GLES32+IDebugProcInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6263_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.GLES32, Mono.Android\00", align 1 +@.TypeMapEntry.6264_to = private unnamed_addr constant [22 x i8] c"android/opengl/GLES32\00", align 1 +@.TypeMapEntry.6265_from = private unnamed_addr constant [41 x i8] c"Android.Opengl.GLException, Mono.Android\00", align 1 +@.TypeMapEntry.6266_to = private unnamed_addr constant [27 x i8] c"android/opengl/GLException\00", align 1 +@.TypeMapEntry.6267_from = private unnamed_addr constant [61 x i8] c"Android.Opengl.GLSurfaceView+IEGLConfigChooser, Mono.Android\00", align 1 +@.TypeMapEntry.6268_to = private unnamed_addr constant [46 x i8] c"android/opengl/GLSurfaceView$EGLConfigChooser\00", align 1 +@.TypeMapEntry.6269_from = private unnamed_addr constant [68 x i8] c"Android.Opengl.GLSurfaceView+IEGLConfigChooserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6270_from = private unnamed_addr constant [62 x i8] c"Android.Opengl.GLSurfaceView+IEGLContextFactory, Mono.Android\00", align 1 +@.TypeMapEntry.6271_to = private unnamed_addr constant [47 x i8] c"android/opengl/GLSurfaceView$EGLContextFactory\00", align 1 +@.TypeMapEntry.6272_from = private unnamed_addr constant [69 x i8] c"Android.Opengl.GLSurfaceView+IEGLContextFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6273_from = private unnamed_addr constant [68 x i8] c"Android.Opengl.GLSurfaceView+IEGLWindowSurfaceFactory, Mono.Android\00", align 1 +@.TypeMapEntry.6274_to = private unnamed_addr constant [53 x i8] c"android/opengl/GLSurfaceView$EGLWindowSurfaceFactory\00", align 1 +@.TypeMapEntry.6275_from = private unnamed_addr constant [75 x i8] c"Android.Opengl.GLSurfaceView+IEGLWindowSurfaceFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6276_from = private unnamed_addr constant [54 x i8] c"Android.Opengl.GLSurfaceView+IGLWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.6277_to = private unnamed_addr constant [39 x i8] c"android/opengl/GLSurfaceView$GLWrapper\00", align 1 +@.TypeMapEntry.6278_from = private unnamed_addr constant [61 x i8] c"Android.Opengl.GLSurfaceView+IGLWrapperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6279_from = private unnamed_addr constant [53 x i8] c"Android.Opengl.GLSurfaceView+IRenderer, Mono.Android\00", align 1 +@.TypeMapEntry.6280_to = private unnamed_addr constant [38 x i8] c"android/opengl/GLSurfaceView$Renderer\00", align 1 +@.TypeMapEntry.6281_from = private unnamed_addr constant [60 x i8] c"Android.Opengl.GLSurfaceView+IRendererInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6282_from = private unnamed_addr constant [43 x i8] c"Android.Opengl.GLSurfaceView, Mono.Android\00", align 1 +@.TypeMapEntry.6283_to = private unnamed_addr constant [29 x i8] c"android/opengl/GLSurfaceView\00", align 1 +@.TypeMapEntry.6284_from = private unnamed_addr constant [33 x i8] c"Android.Opengl.GLU, Mono.Android\00", align 1 +@.TypeMapEntry.6285_to = private unnamed_addr constant [19 x i8] c"android/opengl/GLU\00", align 1 +@.TypeMapEntry.6286_from = private unnamed_addr constant [37 x i8] c"Android.Opengl.GLUtils, Mono.Android\00", align 1 +@.TypeMapEntry.6287_to = private unnamed_addr constant [23 x i8] c"android/opengl/GLUtils\00", align 1 +@.TypeMapEntry.6288_from = private unnamed_addr constant [36 x i8] c"Android.Opengl.Matrix, Mono.Android\00", align 1 +@.TypeMapEntry.6289_to = private unnamed_addr constant [22 x i8] c"android/opengl/Matrix\00", align 1 +@.TypeMapEntry.6290_from = private unnamed_addr constant [40 x i8] c"Android.Opengl.Visibility, Mono.Android\00", align 1 +@.TypeMapEntry.6291_to = private unnamed_addr constant [26 x i8] c"android/opengl/Visibility\00", align 1 +@.TypeMapEntry.6292_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.CheckBoxPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6293_to = private unnamed_addr constant [38 x i8] c"android/preference/CheckBoxPreference\00", align 1 +@.TypeMapEntry.6294_from = private unnamed_addr constant [51 x i8] c"Android.Preferences.DialogPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6295_to = private unnamed_addr constant [36 x i8] c"android/preference/DialogPreference\00", align 1 +@.TypeMapEntry.6296_from = private unnamed_addr constant [58 x i8] c"Android.Preferences.DialogPreferenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6297_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.EditTextPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6298_to = private unnamed_addr constant [38 x i8] c"android/preference/EditTextPreference\00", align 1 +@.TypeMapEntry.6299_from = private unnamed_addr constant [55 x i8] c"Android.Preferences.IPreferenceDataStore, Mono.Android\00", align 1 +@.TypeMapEntry.6300_to = private unnamed_addr constant [39 x i8] c"android/preference/PreferenceDataStore\00", align 1 +@.TypeMapEntry.6301_from = private unnamed_addr constant [62 x i8] c"Android.Preferences.IPreferenceDataStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6302_from = private unnamed_addr constant [49 x i8] c"Android.Preferences.ListPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6303_to = private unnamed_addr constant [34 x i8] c"android/preference/ListPreference\00", align 1 +@.TypeMapEntry.6304_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.MultiSelectListPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6305_to = private unnamed_addr constant [45 x i8] c"android/preference/MultiSelectListPreference\00", align 1 +@.TypeMapEntry.6306_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.Preference+BaseSavedState, Mono.Android\00", align 1 +@.TypeMapEntry.6307_to = private unnamed_addr constant [45 x i8] c"android/preference/Preference$BaseSavedState\00", align 1 +@.TypeMapEntry.6308_from = private unnamed_addr constant [73 x i8] c"Android.Preferences.Preference+IOnPreferenceChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.6309_to = private unnamed_addr constant [57 x i8] c"android/preference/Preference$OnPreferenceChangeListener\00", align 1 +@.TypeMapEntry.6310_from = private unnamed_addr constant [84 x i8] c"Android.Preferences.Preference+IOnPreferenceChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6311_to = private unnamed_addr constant [73 x i8] c"mono/android/preference/Preference_OnPreferenceChangeListenerImplementor\00", align 1 +@.TypeMapEntry.6312_from = private unnamed_addr constant [80 x i8] c"Android.Preferences.Preference+IOnPreferenceChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6313_from = private unnamed_addr constant [72 x i8] c"Android.Preferences.Preference+IOnPreferenceClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.6314_to = private unnamed_addr constant [56 x i8] c"android/preference/Preference$OnPreferenceClickListener\00", align 1 +@.TypeMapEntry.6315_from = private unnamed_addr constant [83 x i8] c"Android.Preferences.Preference+IOnPreferenceClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6316_to = private unnamed_addr constant [72 x i8] c"mono/android/preference/Preference_OnPreferenceClickListenerImplementor\00", align 1 +@.TypeMapEntry.6317_from = private unnamed_addr constant [79 x i8] c"Android.Preferences.Preference+IOnPreferenceClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6318_from = private unnamed_addr constant [45 x i8] c"Android.Preferences.Preference, Mono.Android\00", align 1 +@.TypeMapEntry.6319_to = private unnamed_addr constant [30 x i8] c"android/preference/Preference\00", align 1 +@.TypeMapEntry.6320_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.PreferenceActivity+Header, Mono.Android\00", align 1 +@.TypeMapEntry.6321_to = private unnamed_addr constant [45 x i8] c"android/preference/PreferenceActivity$Header\00", align 1 +@.TypeMapEntry.6322_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.PreferenceActivity, Mono.Android\00", align 1 +@.TypeMapEntry.6323_to = private unnamed_addr constant [38 x i8] c"android/preference/PreferenceActivity\00", align 1 +@.TypeMapEntry.6324_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.PreferenceActivityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6325_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.PreferenceCategory, Mono.Android\00", align 1 +@.TypeMapEntry.6326_to = private unnamed_addr constant [38 x i8] c"android/preference/PreferenceCategory\00", align 1 +@.TypeMapEntry.6327_from = private unnamed_addr constant [88 x i8] c"Android.Preferences.PreferenceFragment+IOnPreferenceStartFragmentCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6328_to = private unnamed_addr constant [72 x i8] c"android/preference/PreferenceFragment$OnPreferenceStartFragmentCallback\00", align 1 +@.TypeMapEntry.6329_from = private unnamed_addr constant [95 x i8] c"Android.Preferences.PreferenceFragment+IOnPreferenceStartFragmentCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6330_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.PreferenceFragment, Mono.Android\00", align 1 +@.TypeMapEntry.6331_to = private unnamed_addr constant [38 x i8] c"android/preference/PreferenceFragment\00", align 1 +@.TypeMapEntry.6332_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.PreferenceFragmentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6333_from = private unnamed_addr constant [50 x i8] c"Android.Preferences.PreferenceGroup, Mono.Android\00", align 1 +@.TypeMapEntry.6334_to = private unnamed_addr constant [35 x i8] c"android/preference/PreferenceGroup\00", align 1 +@.TypeMapEntry.6335_from = private unnamed_addr constant [57 x i8] c"Android.Preferences.PreferenceGroupInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6336_from = private unnamed_addr constant [79 x i8] c"Android.Preferences.PreferenceManager+IOnActivityDestroyListener, Mono.Android\00", align 1 +@.TypeMapEntry.6337_to = private unnamed_addr constant [63 x i8] c"android/preference/PreferenceManager$OnActivityDestroyListener\00", align 1 +@.TypeMapEntry.6338_from = private unnamed_addr constant [90 x i8] c"Android.Preferences.PreferenceManager+IOnActivityDestroyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6339_to = private unnamed_addr constant [79 x i8] c"mono/android/preference/PreferenceManager_OnActivityDestroyListenerImplementor\00", align 1 +@.TypeMapEntry.6340_from = private unnamed_addr constant [86 x i8] c"Android.Preferences.PreferenceManager+IOnActivityDestroyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6341_from = private unnamed_addr constant [78 x i8] c"Android.Preferences.PreferenceManager+IOnActivityResultListener, Mono.Android\00", align 1 +@.TypeMapEntry.6342_to = private unnamed_addr constant [62 x i8] c"android/preference/PreferenceManager$OnActivityResultListener\00", align 1 +@.TypeMapEntry.6343_from = private unnamed_addr constant [89 x i8] c"Android.Preferences.PreferenceManager+IOnActivityResultListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6344_to = private unnamed_addr constant [78 x i8] c"mono/android/preference/PreferenceManager_OnActivityResultListenerImplementor\00", align 1 +@.TypeMapEntry.6345_from = private unnamed_addr constant [85 x i8] c"Android.Preferences.PreferenceManager+IOnActivityResultListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6346_from = private unnamed_addr constant [76 x i8] c"Android.Preferences.PreferenceManager+IOnActivityStopListener, Mono.Android\00", align 1 +@.TypeMapEntry.6347_to = private unnamed_addr constant [60 x i8] c"android/preference/PreferenceManager$OnActivityStopListener\00", align 1 +@.TypeMapEntry.6348_from = private unnamed_addr constant [87 x i8] c"Android.Preferences.PreferenceManager+IOnActivityStopListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6349_to = private unnamed_addr constant [76 x i8] c"mono/android/preference/PreferenceManager_OnActivityStopListenerImplementor\00", align 1 +@.TypeMapEntry.6350_from = private unnamed_addr constant [83 x i8] c"Android.Preferences.PreferenceManager+IOnActivityStopListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6351_from = private unnamed_addr constant [52 x i8] c"Android.Preferences.PreferenceManager, Mono.Android\00", align 1 +@.TypeMapEntry.6352_to = private unnamed_addr constant [37 x i8] c"android/preference/PreferenceManager\00", align 1 +@.TypeMapEntry.6353_from = private unnamed_addr constant [51 x i8] c"Android.Preferences.PreferenceScreen, Mono.Android\00", align 1 +@.TypeMapEntry.6354_to = private unnamed_addr constant [36 x i8] c"android/preference/PreferenceScreen\00", align 1 +@.TypeMapEntry.6355_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.RingtonePreference, Mono.Android\00", align 1 +@.TypeMapEntry.6356_to = private unnamed_addr constant [38 x i8] c"android/preference/RingtonePreference\00", align 1 +@.TypeMapEntry.6357_from = private unnamed_addr constant [51 x i8] c"Android.Preferences.SwitchPreference, Mono.Android\00", align 1 +@.TypeMapEntry.6358_to = private unnamed_addr constant [36 x i8] c"android/preference/SwitchPreference\00", align 1 +@.TypeMapEntry.6359_from = private unnamed_addr constant [53 x i8] c"Android.Preferences.TwoStatePreference, Mono.Android\00", align 1 +@.TypeMapEntry.6360_to = private unnamed_addr constant [38 x i8] c"android/preference/TwoStatePreference\00", align 1 +@.TypeMapEntry.6361_from = private unnamed_addr constant [60 x i8] c"Android.Preferences.TwoStatePreferenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6362_from = private unnamed_addr constant [38 x i8] c"Android.Print.PageRange, Mono.Android\00", align 1 +@.TypeMapEntry.6363_to = private unnamed_addr constant [24 x i8] c"android/print/PageRange\00", align 1 +@.TypeMapEntry.6364_from = private unnamed_addr constant [51 x i8] c"Android.Print.Pdf.PrintedPdfDocument, Mono.Android\00", align 1 +@.TypeMapEntry.6365_to = private unnamed_addr constant [37 x i8] c"android/print/pdf/PrintedPdfDocument\00", align 1 +@.TypeMapEntry.6366_from = private unnamed_addr constant [52 x i8] c"Android.Print.PrintAttributes+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6367_to = private unnamed_addr constant [38 x i8] c"android/print/PrintAttributes$Builder\00", align 1 +@.TypeMapEntry.6368_from = private unnamed_addr constant [52 x i8] c"Android.Print.PrintAttributes+Margins, Mono.Android\00", align 1 +@.TypeMapEntry.6369_to = private unnamed_addr constant [38 x i8] c"android/print/PrintAttributes$Margins\00", align 1 +@.TypeMapEntry.6370_from = private unnamed_addr constant [54 x i8] c"Android.Print.PrintAttributes+MediaSize, Mono.Android\00", align 1 +@.TypeMapEntry.6371_to = private unnamed_addr constant [40 x i8] c"android/print/PrintAttributes$MediaSize\00", align 1 +@.TypeMapEntry.6372_from = private unnamed_addr constant [55 x i8] c"Android.Print.PrintAttributes+Resolution, Mono.Android\00", align 1 +@.TypeMapEntry.6373_to = private unnamed_addr constant [41 x i8] c"android/print/PrintAttributes$Resolution\00", align 1 +@.TypeMapEntry.6374_from = private unnamed_addr constant [44 x i8] c"Android.Print.PrintAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.6375_to = private unnamed_addr constant [30 x i8] c"android/print/PrintAttributes\00", align 1 +@.TypeMapEntry.6376_from = private unnamed_addr constant [70 x i8] c"Android.Print.PrintDocumentAdapter+LayoutResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6377_to = private unnamed_addr constant [56 x i8] c"android/print/PrintDocumentAdapter$LayoutResultCallback\00", align 1 +@.TypeMapEntry.6378_from = private unnamed_addr constant [77 x i8] c"Android.Print.PrintDocumentAdapter+LayoutResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6379_from = private unnamed_addr constant [69 x i8] c"Android.Print.PrintDocumentAdapter+WriteResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6380_to = private unnamed_addr constant [55 x i8] c"android/print/PrintDocumentAdapter$WriteResultCallback\00", align 1 +@.TypeMapEntry.6381_from = private unnamed_addr constant [76 x i8] c"Android.Print.PrintDocumentAdapter+WriteResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6382_from = private unnamed_addr constant [49 x i8] c"Android.Print.PrintDocumentAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.6383_to = private unnamed_addr constant [35 x i8] c"android/print/PrintDocumentAdapter\00", align 1 +@.TypeMapEntry.6384_from = private unnamed_addr constant [56 x i8] c"Android.Print.PrintDocumentAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6385_from = private unnamed_addr constant [54 x i8] c"Android.Print.PrintDocumentInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6386_to = private unnamed_addr constant [40 x i8] c"android/print/PrintDocumentInfo$Builder\00", align 1 +@.TypeMapEntry.6387_from = private unnamed_addr constant [46 x i8] c"Android.Print.PrintDocumentInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6388_to = private unnamed_addr constant [32 x i8] c"android/print/PrintDocumentInfo\00", align 1 +@.TypeMapEntry.6389_from = private unnamed_addr constant [37 x i8] c"Android.Print.PrintJob, Mono.Android\00", align 1 +@.TypeMapEntry.6390_to = private unnamed_addr constant [23 x i8] c"android/print/PrintJob\00", align 1 +@.TypeMapEntry.6391_from = private unnamed_addr constant [39 x i8] c"Android.Print.PrintJobId, Mono.Android\00", align 1 +@.TypeMapEntry.6392_to = private unnamed_addr constant [25 x i8] c"android/print/PrintJobId\00", align 1 +@.TypeMapEntry.6393_from = private unnamed_addr constant [49 x i8] c"Android.Print.PrintJobInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6394_to = private unnamed_addr constant [35 x i8] c"android/print/PrintJobInfo$Builder\00", align 1 +@.TypeMapEntry.6395_from = private unnamed_addr constant [41 x i8] c"Android.Print.PrintJobInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6396_to = private unnamed_addr constant [27 x i8] c"android/print/PrintJobInfo\00", align 1 +@.TypeMapEntry.6397_from = private unnamed_addr constant [41 x i8] c"Android.Print.PrintManager, Mono.Android\00", align 1 +@.TypeMapEntry.6398_to = private unnamed_addr constant [27 x i8] c"android/print/PrintManager\00", align 1 +@.TypeMapEntry.6399_from = private unnamed_addr constant [60 x i8] c"Android.Print.PrinterCapabilitiesInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6400_to = private unnamed_addr constant [46 x i8] c"android/print/PrinterCapabilitiesInfo$Builder\00", align 1 +@.TypeMapEntry.6401_from = private unnamed_addr constant [52 x i8] c"Android.Print.PrinterCapabilitiesInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6402_to = private unnamed_addr constant [38 x i8] c"android/print/PrinterCapabilitiesInfo\00", align 1 +@.TypeMapEntry.6403_from = private unnamed_addr constant [38 x i8] c"Android.Print.PrinterId, Mono.Android\00", align 1 +@.TypeMapEntry.6404_to = private unnamed_addr constant [24 x i8] c"android/print/PrinterId\00", align 1 +@.TypeMapEntry.6405_from = private unnamed_addr constant [48 x i8] c"Android.Print.PrinterInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6406_to = private unnamed_addr constant [34 x i8] c"android/print/PrinterInfo$Builder\00", align 1 +@.TypeMapEntry.6407_from = private unnamed_addr constant [40 x i8] c"Android.Print.PrinterInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6408_to = private unnamed_addr constant [26 x i8] c"android/print/PrinterInfo\00", align 1 +@.TypeMapEntry.6409_from = private unnamed_addr constant [62 x i8] c"Android.PrintServices.CustomPrinterIconCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6410_to = private unnamed_addr constant [47 x i8] c"android/printservice/CustomPrinterIconCallback\00", align 1 +@.TypeMapEntry.6411_from = private unnamed_addr constant [50 x i8] c"Android.PrintServices.PrintDocument, Mono.Android\00", align 1 +@.TypeMapEntry.6412_to = private unnamed_addr constant [35 x i8] c"android/printservice/PrintDocument\00", align 1 +@.TypeMapEntry.6413_from = private unnamed_addr constant [45 x i8] c"Android.PrintServices.PrintJob, Mono.Android\00", align 1 +@.TypeMapEntry.6414_to = private unnamed_addr constant [30 x i8] c"android/printservice/PrintJob\00", align 1 +@.TypeMapEntry.6415_from = private unnamed_addr constant [49 x i8] c"Android.PrintServices.PrintService, Mono.Android\00", align 1 +@.TypeMapEntry.6416_to = private unnamed_addr constant [34 x i8] c"android/printservice/PrintService\00", align 1 +@.TypeMapEntry.6417_from = private unnamed_addr constant [56 x i8] c"Android.PrintServices.PrintServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6418_from = private unnamed_addr constant [60 x i8] c"Android.PrintServices.PrinterDiscoverySession, Mono.Android\00", align 1 +@.TypeMapEntry.6419_to = private unnamed_addr constant [45 x i8] c"android/printservice/PrinterDiscoverySession\00", align 1 +@.TypeMapEntry.6420_from = private unnamed_addr constant [67 x i8] c"Android.PrintServices.PrinterDiscoverySessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6421_from = private unnamed_addr constant [42 x i8] c"Android.Provider.AlarmClock, Mono.Android\00", align 1 +@.TypeMapEntry.6422_to = private unnamed_addr constant [28 x i8] c"android/provider/AlarmClock\00", align 1 +@.TypeMapEntry.6423_from = private unnamed_addr constant [43 x i8] c"Android.Provider.BaseColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6424_to = private unnamed_addr constant [43 x i8] c"mono/internal/android/provider/BaseColumns\00", align 1 +@.TypeMapEntry.6425_from = private unnamed_addr constant [68 x i8] c"Android.Provider.BlockedNumberContract+BlockedNumbers, Mono.Android\00", align 1 +@.TypeMapEntry.6426_to = private unnamed_addr constant [54 x i8] c"android/provider/BlockedNumberContract$BlockedNumbers\00", align 1 +@.TypeMapEntry.6427_from = private unnamed_addr constant [53 x i8] c"Android.Provider.BlockedNumberContract, Mono.Android\00", align 1 +@.TypeMapEntry.6428_to = private unnamed_addr constant [39 x i8] c"android/provider/BlockedNumberContract\00", align 1 +@.TypeMapEntry.6429_from = private unnamed_addr constant [55 x i8] c"Android.Provider.Browser+BookmarkColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6430_to = private unnamed_addr constant [41 x i8] c"android/provider/Browser$BookmarkColumns\00", align 1 +@.TypeMapEntry.6431_from = private unnamed_addr constant [53 x i8] c"Android.Provider.Browser+SearchColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6432_to = private unnamed_addr constant [39 x i8] c"android/provider/Browser$SearchColumns\00", align 1 +@.TypeMapEntry.6433_from = private unnamed_addr constant [39 x i8] c"Android.Provider.Browser, Mono.Android\00", align 1 +@.TypeMapEntry.6434_to = private unnamed_addr constant [25 x i8] c"android/provider/Browser\00", align 1 +@.TypeMapEntry.6435_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+Attendees, Mono.Android\00", align 1 +@.TypeMapEntry.6436_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$Attendees\00", align 1 +@.TypeMapEntry.6437_from = private unnamed_addr constant [65 x i8] c"Android.Provider.CalendarContract+AttendeesColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6438_to = private unnamed_addr constant [65 x i8] c"mono/internal/android/provider/CalendarContract$AttendeesColumns\00", align 1 +@.TypeMapEntry.6439_from = private unnamed_addr constant [63 x i8] c"Android.Provider.CalendarContract+CalendarAlerts, Mono.Android\00", align 1 +@.TypeMapEntry.6440_to = private unnamed_addr constant [49 x i8] c"android/provider/CalendarContract$CalendarAlerts\00", align 1 +@.TypeMapEntry.6441_from = private unnamed_addr constant [70 x i8] c"Android.Provider.CalendarContract+CalendarAlertsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6442_to = private unnamed_addr constant [70 x i8] c"mono/internal/android/provider/CalendarContract$CalendarAlertsColumns\00", align 1 +@.TypeMapEntry.6443_from = private unnamed_addr constant [62 x i8] c"Android.Provider.CalendarContract+CalendarCache, Mono.Android\00", align 1 +@.TypeMapEntry.6444_to = private unnamed_addr constant [48 x i8] c"android/provider/CalendarContract$CalendarCache\00", align 1 +@.TypeMapEntry.6445_from = private unnamed_addr constant [69 x i8] c"Android.Provider.CalendarContract+CalendarCacheColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6446_to = private unnamed_addr constant [69 x i8] c"mono/internal/android/provider/CalendarContract$CalendarCacheColumns\00", align 1 +@.TypeMapEntry.6447_from = private unnamed_addr constant [64 x i8] c"Android.Provider.CalendarContract+CalendarColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6448_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/provider/CalendarContract$CalendarColumns\00", align 1 +@.TypeMapEntry.6449_from = private unnamed_addr constant [63 x i8] c"Android.Provider.CalendarContract+CalendarEntity, Mono.Android\00", align 1 +@.TypeMapEntry.6450_to = private unnamed_addr constant [49 x i8] c"android/provider/CalendarContract$CalendarEntity\00", align 1 +@.TypeMapEntry.6451_from = private unnamed_addr constant [68 x i8] c"Android.Provider.CalendarContract+CalendarSyncColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6452_to = private unnamed_addr constant [68 x i8] c"mono/internal/android/provider/CalendarContract$CalendarSyncColumns\00", align 1 +@.TypeMapEntry.6453_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+Calendars, Mono.Android\00", align 1 +@.TypeMapEntry.6454_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$Calendars\00", align 1 +@.TypeMapEntry.6455_from = private unnamed_addr constant [55 x i8] c"Android.Provider.CalendarContract+Colors, Mono.Android\00", align 1 +@.TypeMapEntry.6456_to = private unnamed_addr constant [41 x i8] c"android/provider/CalendarContract$Colors\00", align 1 +@.TypeMapEntry.6457_from = private unnamed_addr constant [62 x i8] c"Android.Provider.CalendarContract+ColorsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6458_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/CalendarContract$ColorsColumns\00", align 1 +@.TypeMapEntry.6459_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+EventDays, Mono.Android\00", align 1 +@.TypeMapEntry.6460_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$EventDays\00", align 1 +@.TypeMapEntry.6461_from = private unnamed_addr constant [65 x i8] c"Android.Provider.CalendarContract+EventDaysColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6462_to = private unnamed_addr constant [65 x i8] c"mono/internal/android/provider/CalendarContract$EventDaysColumns\00", align 1 +@.TypeMapEntry.6463_from = private unnamed_addr constant [55 x i8] c"Android.Provider.CalendarContract+Events, Mono.Android\00", align 1 +@.TypeMapEntry.6464_to = private unnamed_addr constant [41 x i8] c"android/provider/CalendarContract$Events\00", align 1 +@.TypeMapEntry.6465_from = private unnamed_addr constant [62 x i8] c"Android.Provider.CalendarContract+EventsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6466_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/CalendarContract$EventsColumns\00", align 1 +@.TypeMapEntry.6467_from = private unnamed_addr constant [61 x i8] c"Android.Provider.CalendarContract+EventsEntity, Mono.Android\00", align 1 +@.TypeMapEntry.6468_to = private unnamed_addr constant [47 x i8] c"android/provider/CalendarContract$EventsEntity\00", align 1 +@.TypeMapEntry.6469_from = private unnamed_addr constant [67 x i8] c"Android.Provider.CalendarContract+ExtendedProperties, Mono.Android\00", align 1 +@.TypeMapEntry.6470_to = private unnamed_addr constant [53 x i8] c"android/provider/CalendarContract$ExtendedProperties\00", align 1 +@.TypeMapEntry.6471_from = private unnamed_addr constant [74 x i8] c"Android.Provider.CalendarContract+ExtendedPropertiesColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6472_to = private unnamed_addr constant [74 x i8] c"mono/internal/android/provider/CalendarContract$ExtendedPropertiesColumns\00", align 1 +@.TypeMapEntry.6473_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+Instances, Mono.Android\00", align 1 +@.TypeMapEntry.6474_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$Instances\00", align 1 +@.TypeMapEntry.6475_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+Reminders, Mono.Android\00", align 1 +@.TypeMapEntry.6476_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$Reminders\00", align 1 +@.TypeMapEntry.6477_from = private unnamed_addr constant [65 x i8] c"Android.Provider.CalendarContract+RemindersColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6478_to = private unnamed_addr constant [65 x i8] c"mono/internal/android/provider/CalendarContract$RemindersColumns\00", align 1 +@.TypeMapEntry.6479_from = private unnamed_addr constant [60 x i8] c"Android.Provider.CalendarContract+SyncColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6480_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/provider/CalendarContract$SyncColumns\00", align 1 +@.TypeMapEntry.6481_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CalendarContract+SyncState, Mono.Android\00", align 1 +@.TypeMapEntry.6482_to = private unnamed_addr constant [44 x i8] c"android/provider/CalendarContract$SyncState\00", align 1 +@.TypeMapEntry.6483_from = private unnamed_addr constant [48 x i8] c"Android.Provider.CalendarContract, Mono.Android\00", align 1 +@.TypeMapEntry.6484_to = private unnamed_addr constant [34 x i8] c"android/provider/CalendarContract\00", align 1 +@.TypeMapEntry.6485_from = private unnamed_addr constant [45 x i8] c"Android.Provider.CallLog+Calls, Mono.Android\00", align 1 +@.TypeMapEntry.6486_to = private unnamed_addr constant [31 x i8] c"android/provider/CallLog$Calls\00", align 1 +@.TypeMapEntry.6487_from = private unnamed_addr constant [49 x i8] c"Android.Provider.CallLog+Locations, Mono.Android\00", align 1 +@.TypeMapEntry.6488_to = private unnamed_addr constant [35 x i8] c"android/provider/CallLog$Locations\00", align 1 +@.TypeMapEntry.6489_from = private unnamed_addr constant [39 x i8] c"Android.Provider.CallLog, Mono.Android\00", align 1 +@.TypeMapEntry.6490_to = private unnamed_addr constant [25 x i8] c"android/provider/CallLog\00", align 1 +@.TypeMapEntry.6491_from = private unnamed_addr constant [78 x i8] c"Android.Provider.CloudMediaProvider+CloudMediaSurfaceController, Mono.Android\00", align 1 +@.TypeMapEntry.6492_to = private unnamed_addr constant [64 x i8] c"android/provider/CloudMediaProvider$CloudMediaSurfaceController\00", align 1 +@.TypeMapEntry.6493_from = private unnamed_addr constant [85 x i8] c"Android.Provider.CloudMediaProvider+CloudMediaSurfaceControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6494_from = private unnamed_addr constant [88 x i8] c"Android.Provider.CloudMediaProvider+CloudMediaSurfaceStateChangedCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6495_to = private unnamed_addr constant [74 x i8] c"android/provider/CloudMediaProvider$CloudMediaSurfaceStateChangedCallback\00", align 1 +@.TypeMapEntry.6496_from = private unnamed_addr constant [50 x i8] c"Android.Provider.CloudMediaProvider, Mono.Android\00", align 1 +@.TypeMapEntry.6497_to = private unnamed_addr constant [36 x i8] c"android/provider/CloudMediaProvider\00", align 1 +@.TypeMapEntry.6498_from = private unnamed_addr constant [71 x i8] c"Android.Provider.CloudMediaProviderContract+AlbumColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6499_to = private unnamed_addr constant [57 x i8] c"android/provider/CloudMediaProviderContract$AlbumColumns\00", align 1 +@.TypeMapEntry.6500_from = private unnamed_addr constant [78 x i8] c"Android.Provider.CloudMediaProviderContract+MediaCollectionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6501_to = private unnamed_addr constant [64 x i8] c"android/provider/CloudMediaProviderContract$MediaCollectionInfo\00", align 1 +@.TypeMapEntry.6502_from = private unnamed_addr constant [71 x i8] c"Android.Provider.CloudMediaProviderContract+MediaColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6503_to = private unnamed_addr constant [57 x i8] c"android/provider/CloudMediaProviderContract$MediaColumns\00", align 1 +@.TypeMapEntry.6504_from = private unnamed_addr constant [58 x i8] c"Android.Provider.CloudMediaProviderContract, Mono.Android\00", align 1 +@.TypeMapEntry.6505_to = private unnamed_addr constant [44 x i8] c"android/provider/CloudMediaProviderContract\00", align 1 +@.TypeMapEntry.6506_from = private unnamed_addr constant [57 x i8] c"Android.Provider.CloudMediaProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6507_from = private unnamed_addr constant [55 x i8] c"Android.Provider.Contacts+ContactMethods, Mono.Android\00", align 1 +@.TypeMapEntry.6508_to = private unnamed_addr constant [41 x i8] c"android/provider/Contacts$ContactMethods\00", align 1 +@.TypeMapEntry.6509_from = private unnamed_addr constant [62 x i8] c"Android.Provider.Contacts+ContactMethodsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6510_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/Contacts$ContactMethodsColumns\00", align 1 +@.TypeMapEntry.6511_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Contacts+Extensions, Mono.Android\00", align 1 +@.TypeMapEntry.6512_to = private unnamed_addr constant [37 x i8] c"android/provider/Contacts$Extensions\00", align 1 +@.TypeMapEntry.6513_from = private unnamed_addr constant [58 x i8] c"Android.Provider.Contacts+ExtensionsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6514_to = private unnamed_addr constant [58 x i8] c"mono/internal/android/provider/Contacts$ExtensionsColumns\00", align 1 +@.TypeMapEntry.6515_from = private unnamed_addr constant [56 x i8] c"Android.Provider.Contacts+GroupMembership, Mono.Android\00", align 1 +@.TypeMapEntry.6516_to = private unnamed_addr constant [42 x i8] c"android/provider/Contacts$GroupMembership\00", align 1 +@.TypeMapEntry.6517_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Contacts+Groups, Mono.Android\00", align 1 +@.TypeMapEntry.6518_to = private unnamed_addr constant [33 x i8] c"android/provider/Contacts$Groups\00", align 1 +@.TypeMapEntry.6519_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+GroupsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6520_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/provider/Contacts$GroupsColumns\00", align 1 +@.TypeMapEntry.6521_from = private unnamed_addr constant [55 x i8] c"Android.Provider.Contacts+Intents+Insert, Mono.Android\00", align 1 +@.TypeMapEntry.6522_to = private unnamed_addr constant [41 x i8] c"android/provider/Contacts$Intents$Insert\00", align 1 +@.TypeMapEntry.6523_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Contacts+Intents+UI, Mono.Android\00", align 1 +@.TypeMapEntry.6524_to = private unnamed_addr constant [37 x i8] c"android/provider/Contacts$Intents$UI\00", align 1 +@.TypeMapEntry.6525_from = private unnamed_addr constant [48 x i8] c"Android.Provider.Contacts+Intents, Mono.Android\00", align 1 +@.TypeMapEntry.6526_to = private unnamed_addr constant [34 x i8] c"android/provider/Contacts$Intents\00", align 1 +@.TypeMapEntry.6527_from = private unnamed_addr constant [60 x i8] c"Android.Provider.Contacts+OrganizationColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6528_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/provider/Contacts$OrganizationColumns\00", align 1 +@.TypeMapEntry.6529_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+Organizations, Mono.Android\00", align 1 +@.TypeMapEntry.6530_to = private unnamed_addr constant [40 x i8] c"android/provider/Contacts$Organizations\00", align 1 +@.TypeMapEntry.6531_from = private unnamed_addr constant [62 x i8] c"Android.Provider.Contacts+People+ContactMethods, Mono.Android\00", align 1 +@.TypeMapEntry.6532_to = private unnamed_addr constant [48 x i8] c"android/provider/Contacts$People$ContactMethods\00", align 1 +@.TypeMapEntry.6533_from = private unnamed_addr constant [58 x i8] c"Android.Provider.Contacts+People+Extensions, Mono.Android\00", align 1 +@.TypeMapEntry.6534_to = private unnamed_addr constant [44 x i8] c"android/provider/Contacts$People$Extensions\00", align 1 +@.TypeMapEntry.6535_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+People+Phones, Mono.Android\00", align 1 +@.TypeMapEntry.6536_to = private unnamed_addr constant [40 x i8] c"android/provider/Contacts$People$Phones\00", align 1 +@.TypeMapEntry.6537_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Contacts+People, Mono.Android\00", align 1 +@.TypeMapEntry.6538_to = private unnamed_addr constant [33 x i8] c"android/provider/Contacts$People\00", align 1 +@.TypeMapEntry.6539_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+PeopleColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6540_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/provider/Contacts$PeopleColumns\00", align 1 +@.TypeMapEntry.6541_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Contacts+Phones, Mono.Android\00", align 1 +@.TypeMapEntry.6542_to = private unnamed_addr constant [33 x i8] c"android/provider/Contacts$Phones\00", align 1 +@.TypeMapEntry.6543_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+PhonesColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6544_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/provider/Contacts$PhonesColumns\00", align 1 +@.TypeMapEntry.6545_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Contacts+Photos, Mono.Android\00", align 1 +@.TypeMapEntry.6546_to = private unnamed_addr constant [33 x i8] c"android/provider/Contacts$Photos\00", align 1 +@.TypeMapEntry.6547_from = private unnamed_addr constant [54 x i8] c"Android.Provider.Contacts+PhotosColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6548_to = private unnamed_addr constant [54 x i8] c"mono/internal/android/provider/Contacts$PhotosColumns\00", align 1 +@.TypeMapEntry.6549_from = private unnamed_addr constant [56 x i8] c"Android.Provider.Contacts+PresenceColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6550_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/provider/Contacts$PresenceColumns\00", align 1 +@.TypeMapEntry.6551_from = private unnamed_addr constant [49 x i8] c"Android.Provider.Contacts+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.6552_to = private unnamed_addr constant [35 x i8] c"android/provider/Contacts$Settings\00", align 1 +@.TypeMapEntry.6553_from = private unnamed_addr constant [56 x i8] c"Android.Provider.Contacts+SettingsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6554_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/provider/Contacts$SettingsColumns\00", align 1 +@.TypeMapEntry.6555_from = private unnamed_addr constant [40 x i8] c"Android.Provider.Contacts, Mono.Android\00", align 1 +@.TypeMapEntry.6556_to = private unnamed_addr constant [26 x i8] c"android/provider/Contacts\00", align 1 +@.TypeMapEntry.6557_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+AggregationExceptions, Mono.Android\00", align 1 +@.TypeMapEntry.6558_to = private unnamed_addr constant [56 x i8] c"android/provider/ContactsContract$AggregationExceptions\00", align 1 +@.TypeMapEntry.6559_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+BaseSyncColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6560_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/provider/ContactsContract$BaseSyncColumns\00", align 1 +@.TypeMapEntry.6561_from = private unnamed_addr constant [74 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+BaseTypes, Mono.Android\00", align 1 +@.TypeMapEntry.6562_to = private unnamed_addr constant [74 x i8] c"mono/internal/android/provider/ContactsContract$CommonDataKinds$BaseTypes\00", align 1 +@.TypeMapEntry.6563_from = private unnamed_addr constant [73 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Callable, Mono.Android\00", align 1 +@.TypeMapEntry.6564_to = private unnamed_addr constant [59 x i8] c"android/provider/ContactsContract$CommonDataKinds$Callable\00", align 1 +@.TypeMapEntry.6565_from = private unnamed_addr constant [78 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+CommonColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6566_to = private unnamed_addr constant [78 x i8] c"mono/internal/android/provider/ContactsContract$CommonDataKinds$CommonColumns\00", align 1 +@.TypeMapEntry.6567_from = private unnamed_addr constant [77 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Contactables, Mono.Android\00", align 1 +@.TypeMapEntry.6568_to = private unnamed_addr constant [63 x i8] c"android/provider/ContactsContract$CommonDataKinds$Contactables\00", align 1 +@.TypeMapEntry.6569_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Email, Mono.Android\00", align 1 +@.TypeMapEntry.6570_to = private unnamed_addr constant [56 x i8] c"android/provider/ContactsContract$CommonDataKinds$Email\00", align 1 +@.TypeMapEntry.6571_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Event, Mono.Android\00", align 1 +@.TypeMapEntry.6572_to = private unnamed_addr constant [56 x i8] c"android/provider/ContactsContract$CommonDataKinds$Event\00", align 1 +@.TypeMapEntry.6573_from = private unnamed_addr constant [80 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+GroupMembership, Mono.Android\00", align 1 +@.TypeMapEntry.6574_to = private unnamed_addr constant [66 x i8] c"android/provider/ContactsContract$CommonDataKinds$GroupMembership\00", align 1 +@.TypeMapEntry.6575_from = private unnamed_addr constant [73 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Identity, Mono.Android\00", align 1 +@.TypeMapEntry.6576_to = private unnamed_addr constant [59 x i8] c"android/provider/ContactsContract$CommonDataKinds$Identity\00", align 1 +@.TypeMapEntry.6577_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Im, Mono.Android\00", align 1 +@.TypeMapEntry.6578_to = private unnamed_addr constant [53 x i8] c"android/provider/ContactsContract$CommonDataKinds$Im\00", align 1 +@.TypeMapEntry.6579_from = private unnamed_addr constant [73 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Nickname, Mono.Android\00", align 1 +@.TypeMapEntry.6580_to = private unnamed_addr constant [59 x i8] c"android/provider/ContactsContract$CommonDataKinds$Nickname\00", align 1 +@.TypeMapEntry.6581_from = private unnamed_addr constant [69 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Note, Mono.Android\00", align 1 +@.TypeMapEntry.6582_to = private unnamed_addr constant [55 x i8] c"android/provider/ContactsContract$CommonDataKinds$Note\00", align 1 +@.TypeMapEntry.6583_from = private unnamed_addr constant [77 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Organization, Mono.Android\00", align 1 +@.TypeMapEntry.6584_to = private unnamed_addr constant [63 x i8] c"android/provider/ContactsContract$CommonDataKinds$Organization\00", align 1 +@.TypeMapEntry.6585_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Phone, Mono.Android\00", align 1 +@.TypeMapEntry.6586_to = private unnamed_addr constant [56 x i8] c"android/provider/ContactsContract$CommonDataKinds$Phone\00", align 1 +@.TypeMapEntry.6587_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Photo, Mono.Android\00", align 1 +@.TypeMapEntry.6588_to = private unnamed_addr constant [56 x i8] c"android/provider/ContactsContract$CommonDataKinds$Photo\00", align 1 +@.TypeMapEntry.6589_from = private unnamed_addr constant [73 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Relation, Mono.Android\00", align 1 +@.TypeMapEntry.6590_to = private unnamed_addr constant [59 x i8] c"android/provider/ContactsContract$CommonDataKinds$Relation\00", align 1 +@.TypeMapEntry.6591_from = private unnamed_addr constant [75 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+SipAddress, Mono.Android\00", align 1 +@.TypeMapEntry.6592_to = private unnamed_addr constant [61 x i8] c"android/provider/ContactsContract$CommonDataKinds$SipAddress\00", align 1 +@.TypeMapEntry.6593_from = private unnamed_addr constant [79 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+StructuredName, Mono.Android\00", align 1 +@.TypeMapEntry.6594_to = private unnamed_addr constant [65 x i8] c"android/provider/ContactsContract$CommonDataKinds$StructuredName\00", align 1 +@.TypeMapEntry.6595_from = private unnamed_addr constant [81 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+StructuredPostal, Mono.Android\00", align 1 +@.TypeMapEntry.6596_to = private unnamed_addr constant [67 x i8] c"android/provider/ContactsContract$CommonDataKinds$StructuredPostal\00", align 1 +@.TypeMapEntry.6597_from = private unnamed_addr constant [72 x i8] c"Android.Provider.ContactsContract+CommonDataKinds+Website, Mono.Android\00", align 1 +@.TypeMapEntry.6598_to = private unnamed_addr constant [58 x i8] c"android/provider/ContactsContract$CommonDataKinds$Website\00", align 1 +@.TypeMapEntry.6599_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+CommonDataKinds, Mono.Android\00", align 1 +@.TypeMapEntry.6600_to = private unnamed_addr constant [50 x i8] c"android/provider/ContactsContract$CommonDataKinds\00", align 1 +@.TypeMapEntry.6601_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+ContactNameColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6602_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/ContactsContract$ContactNameColumns\00", align 1 +@.TypeMapEntry.6603_from = private unnamed_addr constant [70 x i8] c"Android.Provider.ContactsContract+ContactOptionsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6604_to = private unnamed_addr constant [70 x i8] c"mono/internal/android/provider/ContactsContract$ContactOptionsColumns\00", align 1 +@.TypeMapEntry.6605_from = private unnamed_addr constant [69 x i8] c"Android.Provider.ContactsContract+ContactStatusColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6606_to = private unnamed_addr constant [69 x i8] c"mono/internal/android/provider/ContactsContract$ContactStatusColumns\00", align 1 +@.TypeMapEntry.6607_from = private unnamed_addr constant [88 x i8] c"Android.Provider.ContactsContract+Contacts+AggregationSuggestions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6608_to = private unnamed_addr constant [74 x i8] c"android/provider/ContactsContract$Contacts$AggregationSuggestions$Builder\00", align 1 +@.TypeMapEntry.6609_from = private unnamed_addr constant [80 x i8] c"Android.Provider.ContactsContract+Contacts+AggregationSuggestions, Mono.Android\00", align 1 +@.TypeMapEntry.6610_to = private unnamed_addr constant [66 x i8] c"android/provider/ContactsContract$Contacts$AggregationSuggestions\00", align 1 +@.TypeMapEntry.6611_from = private unnamed_addr constant [62 x i8] c"Android.Provider.ContactsContract+Contacts+Data, Mono.Android\00", align 1 +@.TypeMapEntry.6612_to = private unnamed_addr constant [48 x i8] c"android/provider/ContactsContract$Contacts$Data\00", align 1 +@.TypeMapEntry.6613_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+Contacts+Entity, Mono.Android\00", align 1 +@.TypeMapEntry.6614_to = private unnamed_addr constant [50 x i8] c"android/provider/ContactsContract$Contacts$Entity\00", align 1 +@.TypeMapEntry.6615_from = private unnamed_addr constant [63 x i8] c"Android.Provider.ContactsContract+Contacts+Photo, Mono.Android\00", align 1 +@.TypeMapEntry.6616_to = private unnamed_addr constant [49 x i8] c"android/provider/ContactsContract$Contacts$Photo\00", align 1 +@.TypeMapEntry.6617_from = private unnamed_addr constant [69 x i8] c"Android.Provider.ContactsContract+Contacts+StreamItems, Mono.Android\00", align 1 +@.TypeMapEntry.6618_to = private unnamed_addr constant [55 x i8] c"android/provider/ContactsContract$Contacts$StreamItems\00", align 1 +@.TypeMapEntry.6619_from = private unnamed_addr constant [57 x i8] c"Android.Provider.ContactsContract+Contacts, Mono.Android\00", align 1 +@.TypeMapEntry.6620_to = private unnamed_addr constant [43 x i8] c"android/provider/ContactsContract$Contacts\00", align 1 +@.TypeMapEntry.6621_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+ContactsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6622_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/provider/ContactsContract$ContactsColumns\00", align 1 +@.TypeMapEntry.6623_from = private unnamed_addr constant [53 x i8] c"Android.Provider.ContactsContract+Data, Mono.Android\00", align 1 +@.TypeMapEntry.6624_to = private unnamed_addr constant [39 x i8] c"android/provider/ContactsContract$Data\00", align 1 +@.TypeMapEntry.6625_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+DataColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6626_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/provider/ContactsContract$DataColumns\00", align 1 +@.TypeMapEntry.6627_from = private unnamed_addr constant [66 x i8] c"Android.Provider.ContactsContract+DataUsageFeedback, Mono.Android\00", align 1 +@.TypeMapEntry.6628_to = private unnamed_addr constant [52 x i8] c"android/provider/ContactsContract$DataUsageFeedback\00", align 1 +@.TypeMapEntry.6629_from = private unnamed_addr constant [69 x i8] c"Android.Provider.ContactsContract+DataUsageStatColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6630_to = private unnamed_addr constant [69 x i8] c"mono/internal/android/provider/ContactsContract$DataUsageStatColumns\00", align 1 +@.TypeMapEntry.6631_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+DeletedContacts, Mono.Android\00", align 1 +@.TypeMapEntry.6632_to = private unnamed_addr constant [50 x i8] c"android/provider/ContactsContract$DeletedContacts\00", align 1 +@.TypeMapEntry.6633_from = private unnamed_addr constant [71 x i8] c"Android.Provider.ContactsContract+DeletedContactsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6634_to = private unnamed_addr constant [71 x i8] c"mono/internal/android/provider/ContactsContract$DeletedContactsColumns\00", align 1 +@.TypeMapEntry.6635_from = private unnamed_addr constant [58 x i8] c"Android.Provider.ContactsContract+Directory, Mono.Android\00", align 1 +@.TypeMapEntry.6636_to = private unnamed_addr constant [44 x i8] c"android/provider/ContactsContract$Directory\00", align 1 +@.TypeMapEntry.6637_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+DisplayNameSources, Mono.Android\00", align 1 +@.TypeMapEntry.6638_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/ContactsContract$DisplayNameSources\00", align 1 +@.TypeMapEntry.6639_from = private unnamed_addr constant [61 x i8] c"Android.Provider.ContactsContract+DisplayPhoto, Mono.Android\00", align 1 +@.TypeMapEntry.6640_to = private unnamed_addr constant [47 x i8] c"android/provider/ContactsContract$DisplayPhoto\00", align 1 +@.TypeMapEntry.6641_from = private unnamed_addr constant [62 x i8] c"Android.Provider.ContactsContract+FullNameStyle, Mono.Android\00", align 1 +@.TypeMapEntry.6642_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/ContactsContract$FullNameStyle\00", align 1 +@.TypeMapEntry.6643_from = private unnamed_addr constant [55 x i8] c"Android.Provider.ContactsContract+Groups, Mono.Android\00", align 1 +@.TypeMapEntry.6644_to = private unnamed_addr constant [41 x i8] c"android/provider/ContactsContract$Groups\00", align 1 +@.TypeMapEntry.6645_from = private unnamed_addr constant [62 x i8] c"Android.Provider.ContactsContract+GroupsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6646_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/ContactsContract$GroupsColumns\00", align 1 +@.TypeMapEntry.6647_from = private unnamed_addr constant [63 x i8] c"Android.Provider.ContactsContract+Intents+Insert, Mono.Android\00", align 1 +@.TypeMapEntry.6648_to = private unnamed_addr constant [49 x i8] c"android/provider/ContactsContract$Intents$Insert\00", align 1 +@.TypeMapEntry.6649_from = private unnamed_addr constant [56 x i8] c"Android.Provider.ContactsContract+Intents, Mono.Android\00", align 1 +@.TypeMapEntry.6650_to = private unnamed_addr constant [42 x i8] c"android/provider/ContactsContract$Intents\00", align 1 +@.TypeMapEntry.6651_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+PhoneLookup, Mono.Android\00", align 1 +@.TypeMapEntry.6652_to = private unnamed_addr constant [46 x i8] c"android/provider/ContactsContract$PhoneLookup\00", align 1 +@.TypeMapEntry.6653_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+PhoneLookupColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6654_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/ContactsContract$PhoneLookupColumns\00", align 1 +@.TypeMapEntry.6655_from = private unnamed_addr constant [66 x i8] c"Android.Provider.ContactsContract+PhoneticNameStyle, Mono.Android\00", align 1 +@.TypeMapEntry.6656_to = private unnamed_addr constant [66 x i8] c"mono/internal/android/provider/ContactsContract$PhoneticNameStyle\00", align 1 +@.TypeMapEntry.6657_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+PinnedPositions, Mono.Android\00", align 1 +@.TypeMapEntry.6658_to = private unnamed_addr constant [50 x i8] c"android/provider/ContactsContract$PinnedPositions\00", align 1 +@.TypeMapEntry.6659_from = private unnamed_addr constant [57 x i8] c"Android.Provider.ContactsContract+Presence, Mono.Android\00", align 1 +@.TypeMapEntry.6660_to = private unnamed_addr constant [43 x i8] c"android/provider/ContactsContract$Presence\00", align 1 +@.TypeMapEntry.6661_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+PresenceColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6662_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/provider/ContactsContract$PresenceColumns\00", align 1 +@.TypeMapEntry.6663_from = private unnamed_addr constant [56 x i8] c"Android.Provider.ContactsContract+Profile, Mono.Android\00", align 1 +@.TypeMapEntry.6664_to = private unnamed_addr constant [42 x i8] c"android/provider/ContactsContract$Profile\00", align 1 +@.TypeMapEntry.6665_from = private unnamed_addr constant [65 x i8] c"Android.Provider.ContactsContract+ProfileSyncState, Mono.Android\00", align 1 +@.TypeMapEntry.6666_to = private unnamed_addr constant [51 x i8] c"android/provider/ContactsContract$ProfileSyncState\00", align 1 +@.TypeMapEntry.6667_from = private unnamed_addr constant [63 x i8] c"Android.Provider.ContactsContract+ProviderStatus, Mono.Android\00", align 1 +@.TypeMapEntry.6668_to = private unnamed_addr constant [49 x i8] c"android/provider/ContactsContract$ProviderStatus\00", align 1 +@.TypeMapEntry.6669_from = private unnamed_addr constant [61 x i8] c"Android.Provider.ContactsContract+QuickContact, Mono.Android\00", align 1 +@.TypeMapEntry.6670_to = private unnamed_addr constant [47 x i8] c"android/provider/ContactsContract$QuickContact\00", align 1 +@.TypeMapEntry.6671_from = private unnamed_addr constant [65 x i8] c"Android.Provider.ContactsContract+RawContacts+Data, Mono.Android\00", align 1 +@.TypeMapEntry.6672_to = private unnamed_addr constant [51 x i8] c"android/provider/ContactsContract$RawContacts$Data\00", align 1 +@.TypeMapEntry.6673_from = private unnamed_addr constant [73 x i8] c"Android.Provider.ContactsContract+RawContacts+DisplayPhoto, Mono.Android\00", align 1 +@.TypeMapEntry.6674_to = private unnamed_addr constant [59 x i8] c"android/provider/ContactsContract$RawContacts$DisplayPhoto\00", align 1 +@.TypeMapEntry.6675_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+RawContacts+Entity, Mono.Android\00", align 1 +@.TypeMapEntry.6676_to = private unnamed_addr constant [53 x i8] c"android/provider/ContactsContract$RawContacts$Entity\00", align 1 +@.TypeMapEntry.6677_from = private unnamed_addr constant [72 x i8] c"Android.Provider.ContactsContract+RawContacts+StreamItems, Mono.Android\00", align 1 +@.TypeMapEntry.6678_to = private unnamed_addr constant [58 x i8] c"android/provider/ContactsContract$RawContacts$StreamItems\00", align 1 +@.TypeMapEntry.6679_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+RawContacts, Mono.Android\00", align 1 +@.TypeMapEntry.6680_to = private unnamed_addr constant [46 x i8] c"android/provider/ContactsContract$RawContacts\00", align 1 +@.TypeMapEntry.6681_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+RawContactsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6682_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/ContactsContract$RawContactsColumns\00", align 1 +@.TypeMapEntry.6683_from = private unnamed_addr constant [66 x i8] c"Android.Provider.ContactsContract+RawContactsEntity, Mono.Android\00", align 1 +@.TypeMapEntry.6684_to = private unnamed_addr constant [52 x i8] c"android/provider/ContactsContract$RawContactsEntity\00", align 1 +@.TypeMapEntry.6685_from = private unnamed_addr constant [63 x i8] c"Android.Provider.ContactsContract+SearchSnippets, Mono.Android\00", align 1 +@.TypeMapEntry.6686_to = private unnamed_addr constant [49 x i8] c"android/provider/ContactsContract$SearchSnippets\00", align 1 +@.TypeMapEntry.6687_from = private unnamed_addr constant [57 x i8] c"Android.Provider.ContactsContract+Settings, Mono.Android\00", align 1 +@.TypeMapEntry.6688_to = private unnamed_addr constant [43 x i8] c"android/provider/ContactsContract$Settings\00", align 1 +@.TypeMapEntry.6689_from = private unnamed_addr constant [64 x i8] c"Android.Provider.ContactsContract+SettingsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6690_to = private unnamed_addr constant [64 x i8] c"mono/internal/android/provider/ContactsContract$SettingsColumns\00", align 1 +@.TypeMapEntry.6691_from = private unnamed_addr constant [59 x i8] c"Android.Provider.ContactsContract+SimAccount, Mono.Android\00", align 1 +@.TypeMapEntry.6692_to = private unnamed_addr constant [45 x i8] c"android/provider/ContactsContract$SimAccount\00", align 1 +@.TypeMapEntry.6693_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+SimContacts, Mono.Android\00", align 1 +@.TypeMapEntry.6694_to = private unnamed_addr constant [46 x i8] c"android/provider/ContactsContract$SimContacts\00", align 1 +@.TypeMapEntry.6695_from = private unnamed_addr constant [62 x i8] c"Android.Provider.ContactsContract+StatusColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6696_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/ContactsContract$StatusColumns\00", align 1 +@.TypeMapEntry.6697_from = private unnamed_addr constant [62 x i8] c"Android.Provider.ContactsContract+StatusUpdates, Mono.Android\00", align 1 +@.TypeMapEntry.6698_to = private unnamed_addr constant [48 x i8] c"android/provider/ContactsContract$StatusUpdates\00", align 1 +@.TypeMapEntry.6699_from = private unnamed_addr constant [65 x i8] c"Android.Provider.ContactsContract+StreamItemPhotos, Mono.Android\00", align 1 +@.TypeMapEntry.6700_to = private unnamed_addr constant [51 x i8] c"android/provider/ContactsContract$StreamItemPhotos\00", align 1 +@.TypeMapEntry.6701_from = private unnamed_addr constant [72 x i8] c"Android.Provider.ContactsContract+StreamItemPhotosColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6702_to = private unnamed_addr constant [72 x i8] c"mono/internal/android/provider/ContactsContract$StreamItemPhotosColumns\00", align 1 +@.TypeMapEntry.6703_from = private unnamed_addr constant [77 x i8] c"Android.Provider.ContactsContract+StreamItems+StreamItemPhotos, Mono.Android\00", align 1 +@.TypeMapEntry.6704_to = private unnamed_addr constant [63 x i8] c"android/provider/ContactsContract$StreamItems$StreamItemPhotos\00", align 1 +@.TypeMapEntry.6705_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+StreamItems, Mono.Android\00", align 1 +@.TypeMapEntry.6706_to = private unnamed_addr constant [46 x i8] c"android/provider/ContactsContract$StreamItems\00", align 1 +@.TypeMapEntry.6707_from = private unnamed_addr constant [67 x i8] c"Android.Provider.ContactsContract+StreamItemsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6708_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/ContactsContract$StreamItemsColumns\00", align 1 +@.TypeMapEntry.6709_from = private unnamed_addr constant [60 x i8] c"Android.Provider.ContactsContract+SyncColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6710_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/provider/ContactsContract$SyncColumns\00", align 1 +@.TypeMapEntry.6711_from = private unnamed_addr constant [58 x i8] c"Android.Provider.ContactsContract+SyncState, Mono.Android\00", align 1 +@.TypeMapEntry.6712_to = private unnamed_addr constant [44 x i8] c"android/provider/ContactsContract$SyncState\00", align 1 +@.TypeMapEntry.6713_from = private unnamed_addr constant [48 x i8] c"Android.Provider.ContactsContract, Mono.Android\00", align 1 +@.TypeMapEntry.6714_to = private unnamed_addr constant [34 x i8] c"android/provider/ContactsContract\00", align 1 +@.TypeMapEntry.6715_from = private unnamed_addr constant [58 x i8] c"Android.Provider.DocumentsContract+Document, Mono.Android\00", align 1 +@.TypeMapEntry.6716_to = private unnamed_addr constant [44 x i8] c"android/provider/DocumentsContract$Document\00", align 1 +@.TypeMapEntry.6717_from = private unnamed_addr constant [54 x i8] c"Android.Provider.DocumentsContract+Path, Mono.Android\00", align 1 +@.TypeMapEntry.6718_to = private unnamed_addr constant [40 x i8] c"android/provider/DocumentsContract$Path\00", align 1 +@.TypeMapEntry.6719_from = private unnamed_addr constant [54 x i8] c"Android.Provider.DocumentsContract+Root, Mono.Android\00", align 1 +@.TypeMapEntry.6720_to = private unnamed_addr constant [40 x i8] c"android/provider/DocumentsContract$Root\00", align 1 +@.TypeMapEntry.6721_from = private unnamed_addr constant [49 x i8] c"Android.Provider.DocumentsContract, Mono.Android\00", align 1 +@.TypeMapEntry.6722_to = private unnamed_addr constant [35 x i8] c"android/provider/DocumentsContract\00", align 1 +@.TypeMapEntry.6723_from = private unnamed_addr constant [49 x i8] c"Android.Provider.DocumentsProvider, Mono.Android\00", align 1 +@.TypeMapEntry.6724_to = private unnamed_addr constant [35 x i8] c"android/provider/DocumentsProvider\00", align 1 +@.TypeMapEntry.6725_from = private unnamed_addr constant [56 x i8] c"Android.Provider.DocumentsProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6726_from = private unnamed_addr constant [69 x i8] c"Android.Provider.E2eeContactKeysManager+E2eeContactKey, Mono.Android\00", align 1 +@.TypeMapEntry.6727_to = private unnamed_addr constant [55 x i8] c"android/provider/E2eeContactKeysManager$E2eeContactKey\00", align 1 +@.TypeMapEntry.6728_from = private unnamed_addr constant [66 x i8] c"Android.Provider.E2eeContactKeysManager+E2eeSelfKey, Mono.Android\00", align 1 +@.TypeMapEntry.6729_to = private unnamed_addr constant [52 x i8] c"android/provider/E2eeContactKeysManager$E2eeSelfKey\00", align 1 +@.TypeMapEntry.6730_from = private unnamed_addr constant [54 x i8] c"Android.Provider.E2eeContactKeysManager, Mono.Android\00", align 1 +@.TypeMapEntry.6731_to = private unnamed_addr constant [40 x i8] c"android/provider/E2eeContactKeysManager\00", align 1 +@.TypeMapEntry.6732_from = private unnamed_addr constant [43 x i8] c"Android.Provider.FontRequest, Mono.Android\00", align 1 +@.TypeMapEntry.6733_to = private unnamed_addr constant [29 x i8] c"android/provider/FontRequest\00", align 1 +@.TypeMapEntry.6734_from = private unnamed_addr constant [53 x i8] c"Android.Provider.FontsContract+Columns, Mono.Android\00", align 1 +@.TypeMapEntry.6735_to = private unnamed_addr constant [39 x i8] c"android/provider/FontsContract$Columns\00", align 1 +@.TypeMapEntry.6736_from = private unnamed_addr constant [62 x i8] c"Android.Provider.FontsContract+FontFamilyResult, Mono.Android\00", align 1 +@.TypeMapEntry.6737_to = private unnamed_addr constant [48 x i8] c"android/provider/FontsContract$FontFamilyResult\00", align 1 +@.TypeMapEntry.6738_from = private unnamed_addr constant [54 x i8] c"Android.Provider.FontsContract+FontInfo, Mono.Android\00", align 1 +@.TypeMapEntry.6739_to = private unnamed_addr constant [40 x i8] c"android/provider/FontsContract$FontInfo\00", align 1 +@.TypeMapEntry.6740_from = private unnamed_addr constant [65 x i8] c"Android.Provider.FontsContract+FontRequestCallback, Mono.Android\00", align 1 +@.TypeMapEntry.6741_to = private unnamed_addr constant [51 x i8] c"android/provider/FontsContract$FontRequestCallback\00", align 1 +@.TypeMapEntry.6742_from = private unnamed_addr constant [45 x i8] c"Android.Provider.FontsContract, Mono.Android\00", align 1 +@.TypeMapEntry.6743_to = private unnamed_addr constant [31 x i8] c"android/provider/FontsContract\00", align 1 +@.TypeMapEntry.6744_from = private unnamed_addr constant [43 x i8] c"Android.Provider.LiveFolders, Mono.Android\00", align 1 +@.TypeMapEntry.6745_to = private unnamed_addr constant [29 x i8] c"android/provider/LiveFolders\00", align 1 +@.TypeMapEntry.6746_from = private unnamed_addr constant [61 x i8] c"Android.Provider.MediaStore+Audio+AlbumColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6747_to = private unnamed_addr constant [61 x i8] c"mono/internal/android/provider/MediaStore$Audio$AlbumColumns\00", align 1 +@.TypeMapEntry.6748_from = private unnamed_addr constant [55 x i8] c"Android.Provider.MediaStore+Audio+Albums, Mono.Android\00", align 1 +@.TypeMapEntry.6749_to = private unnamed_addr constant [41 x i8] c"android/provider/MediaStore$Audio$Albums\00", align 1 +@.TypeMapEntry.6750_from = private unnamed_addr constant [62 x i8] c"Android.Provider.MediaStore+Audio+ArtistColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6751_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/MediaStore$Audio$ArtistColumns\00", align 1 +@.TypeMapEntry.6752_from = private unnamed_addr constant [63 x i8] c"Android.Provider.MediaStore+Audio+Artists+Albums, Mono.Android\00", align 1 +@.TypeMapEntry.6753_to = private unnamed_addr constant [49 x i8] c"android/provider/MediaStore$Audio$Artists$Albums\00", align 1 +@.TypeMapEntry.6754_from = private unnamed_addr constant [56 x i8] c"Android.Provider.MediaStore+Audio+Artists, Mono.Android\00", align 1 +@.TypeMapEntry.6755_to = private unnamed_addr constant [42 x i8] c"android/provider/MediaStore$Audio$Artists\00", align 1 +@.TypeMapEntry.6756_from = private unnamed_addr constant [61 x i8] c"Android.Provider.MediaStore+Audio+AudioColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6757_to = private unnamed_addr constant [61 x i8] c"mono/internal/android/provider/MediaStore$Audio$AudioColumns\00", align 1 +@.TypeMapEntry.6758_from = private unnamed_addr constant [63 x i8] c"Android.Provider.MediaStore+Audio+Genres+Members, Mono.Android\00", align 1 +@.TypeMapEntry.6759_to = private unnamed_addr constant [49 x i8] c"android/provider/MediaStore$Audio$Genres$Members\00", align 1 +@.TypeMapEntry.6760_from = private unnamed_addr constant [55 x i8] c"Android.Provider.MediaStore+Audio+Genres, Mono.Android\00", align 1 +@.TypeMapEntry.6761_to = private unnamed_addr constant [41 x i8] c"android/provider/MediaStore$Audio$Genres\00", align 1 +@.TypeMapEntry.6762_from = private unnamed_addr constant [62 x i8] c"Android.Provider.MediaStore+Audio+GenresColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6763_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/MediaStore$Audio$GenresColumns\00", align 1 +@.TypeMapEntry.6764_from = private unnamed_addr constant [54 x i8] c"Android.Provider.MediaStore+Audio+Media, Mono.Android\00", align 1 +@.TypeMapEntry.6765_to = private unnamed_addr constant [40 x i8] c"android/provider/MediaStore$Audio$Media\00", align 1 +@.TypeMapEntry.6766_from = private unnamed_addr constant [66 x i8] c"Android.Provider.MediaStore+Audio+Playlists+Members, Mono.Android\00", align 1 +@.TypeMapEntry.6767_to = private unnamed_addr constant [52 x i8] c"android/provider/MediaStore$Audio$Playlists$Members\00", align 1 +@.TypeMapEntry.6768_from = private unnamed_addr constant [58 x i8] c"Android.Provider.MediaStore+Audio+Playlists, Mono.Android\00", align 1 +@.TypeMapEntry.6769_to = private unnamed_addr constant [44 x i8] c"android/provider/MediaStore$Audio$Playlists\00", align 1 +@.TypeMapEntry.6770_from = private unnamed_addr constant [65 x i8] c"Android.Provider.MediaStore+Audio+PlaylistsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6771_to = private unnamed_addr constant [65 x i8] c"mono/internal/android/provider/MediaStore$Audio$PlaylistsColumns\00", align 1 +@.TypeMapEntry.6772_from = private unnamed_addr constant [54 x i8] c"Android.Provider.MediaStore+Audio+Radio, Mono.Android\00", align 1 +@.TypeMapEntry.6773_to = private unnamed_addr constant [40 x i8] c"android/provider/MediaStore$Audio$Radio\00", align 1 +@.TypeMapEntry.6774_from = private unnamed_addr constant [48 x i8] c"Android.Provider.MediaStore+Audio, Mono.Android\00", align 1 +@.TypeMapEntry.6775_to = private unnamed_addr constant [34 x i8] c"android/provider/MediaStore$Audio\00", align 1 +@.TypeMapEntry.6776_from = private unnamed_addr constant [58 x i8] c"Android.Provider.MediaStore+DownloadColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6777_to = private unnamed_addr constant [58 x i8] c"mono/internal/android/provider/MediaStore$DownloadColumns\00", align 1 +@.TypeMapEntry.6778_from = private unnamed_addr constant [52 x i8] c"Android.Provider.MediaStore+Downloads, Mono.Android\00", align 1 +@.TypeMapEntry.6779_to = private unnamed_addr constant [38 x i8] c"android/provider/MediaStore$Downloads\00", align 1 +@.TypeMapEntry.6780_from = private unnamed_addr constant [60 x i8] c"Android.Provider.MediaStore+Files+FileColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6781_to = private unnamed_addr constant [60 x i8] c"mono/internal/android/provider/MediaStore$Files$FileColumns\00", align 1 +@.TypeMapEntry.6782_from = private unnamed_addr constant [48 x i8] c"Android.Provider.MediaStore+Files, Mono.Android\00", align 1 +@.TypeMapEntry.6783_to = private unnamed_addr constant [34 x i8] c"android/provider/MediaStore$Files\00", align 1 +@.TypeMapEntry.6784_from = private unnamed_addr constant [62 x i8] c"Android.Provider.MediaStore+Images+ImageColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6785_to = private unnamed_addr constant [62 x i8] c"mono/internal/android/provider/MediaStore$Images$ImageColumns\00", align 1 +@.TypeMapEntry.6786_from = private unnamed_addr constant [55 x i8] c"Android.Provider.MediaStore+Images+Media, Mono.Android\00", align 1 +@.TypeMapEntry.6787_to = private unnamed_addr constant [41 x i8] c"android/provider/MediaStore$Images$Media\00", align 1 +@.TypeMapEntry.6788_from = private unnamed_addr constant [60 x i8] c"Android.Provider.MediaStore+Images+Thumbnails, Mono.Android\00", align 1 +@.TypeMapEntry.6789_to = private unnamed_addr constant [46 x i8] c"android/provider/MediaStore$Images$Thumbnails\00", align 1 +@.TypeMapEntry.6790_from = private unnamed_addr constant [49 x i8] c"Android.Provider.MediaStore+Images, Mono.Android\00", align 1 +@.TypeMapEntry.6791_to = private unnamed_addr constant [35 x i8] c"android/provider/MediaStore$Images\00", align 1 +@.TypeMapEntry.6792_from = private unnamed_addr constant [55 x i8] c"Android.Provider.MediaStore+MediaColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6793_to = private unnamed_addr constant [55 x i8] c"mono/internal/android/provider/MediaStore$MediaColumns\00", align 1 +@.TypeMapEntry.6794_from = private unnamed_addr constant [61 x i8] c"Android.Provider.MediaStore+PickerMediaColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6795_to = private unnamed_addr constant [47 x i8] c"android/provider/MediaStore$PickerMediaColumns\00", align 1 +@.TypeMapEntry.6796_from = private unnamed_addr constant [54 x i8] c"Android.Provider.MediaStore+Video+Media, Mono.Android\00", align 1 +@.TypeMapEntry.6797_to = private unnamed_addr constant [40 x i8] c"android/provider/MediaStore$Video$Media\00", align 1 +@.TypeMapEntry.6798_from = private unnamed_addr constant [59 x i8] c"Android.Provider.MediaStore+Video+Thumbnails, Mono.Android\00", align 1 +@.TypeMapEntry.6799_to = private unnamed_addr constant [45 x i8] c"android/provider/MediaStore$Video$Thumbnails\00", align 1 +@.TypeMapEntry.6800_from = private unnamed_addr constant [61 x i8] c"Android.Provider.MediaStore+Video+VideoColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6801_to = private unnamed_addr constant [61 x i8] c"mono/internal/android/provider/MediaStore$Video$VideoColumns\00", align 1 +@.TypeMapEntry.6802_from = private unnamed_addr constant [48 x i8] c"Android.Provider.MediaStore+Video, Mono.Android\00", align 1 +@.TypeMapEntry.6803_to = private unnamed_addr constant [34 x i8] c"android/provider/MediaStore$Video\00", align 1 +@.TypeMapEntry.6804_from = private unnamed_addr constant [42 x i8] c"Android.Provider.MediaStore, Mono.Android\00", align 1 +@.TypeMapEntry.6805_to = private unnamed_addr constant [28 x i8] c"android/provider/MediaStore\00", align 1 +@.TypeMapEntry.6806_from = private unnamed_addr constant [47 x i8] c"Android.Provider.OpenableColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6807_to = private unnamed_addr constant [47 x i8] c"mono/internal/android/provider/OpenableColumns\00", align 1 +@.TypeMapEntry.6808_from = private unnamed_addr constant [55 x i8] c"Android.Provider.SearchRecentSuggestions, Mono.Android\00", align 1 +@.TypeMapEntry.6809_to = private unnamed_addr constant [41 x i8] c"android/provider/SearchRecentSuggestions\00", align 1 +@.TypeMapEntry.6810_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Settings+Global, Mono.Android\00", align 1 +@.TypeMapEntry.6811_to = private unnamed_addr constant [33 x i8] c"android/provider/Settings$Global\00", align 1 +@.TypeMapEntry.6812_from = private unnamed_addr constant [55 x i8] c"Android.Provider.Settings+NameValueTable, Mono.Android\00", align 1 +@.TypeMapEntry.6813_to = private unnamed_addr constant [41 x i8] c"android/provider/Settings$NameValueTable\00", align 1 +@.TypeMapEntry.6814_from = private unnamed_addr constant [46 x i8] c"Android.Provider.Settings+Panel, Mono.Android\00", align 1 +@.TypeMapEntry.6815_to = private unnamed_addr constant [32 x i8] c"android/provider/Settings$Panel\00", align 1 +@.TypeMapEntry.6816_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Settings+Secure, Mono.Android\00", align 1 +@.TypeMapEntry.6817_to = private unnamed_addr constant [33 x i8] c"android/provider/Settings$Secure\00", align 1 +@.TypeMapEntry.6818_from = private unnamed_addr constant [65 x i8] c"Android.Provider.Settings+SettingNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.6819_to = private unnamed_addr constant [51 x i8] c"android/provider/Settings$SettingNotFoundException\00", align 1 +@.TypeMapEntry.6820_from = private unnamed_addr constant [47 x i8] c"Android.Provider.Settings+System, Mono.Android\00", align 1 +@.TypeMapEntry.6821_to = private unnamed_addr constant [33 x i8] c"android/provider/Settings$System\00", align 1 +@.TypeMapEntry.6822_from = private unnamed_addr constant [40 x i8] c"Android.Provider.Settings, Mono.Android\00", align 1 +@.TypeMapEntry.6823_to = private unnamed_addr constant [26 x i8] c"android/provider/Settings\00", align 1 +@.TypeMapEntry.6824_from = private unnamed_addr constant [54 x i8] c"Android.Provider.SettingsSlicesContract, Mono.Android\00", align 1 +@.TypeMapEntry.6825_to = private unnamed_addr constant [40 x i8] c"android/provider/SettingsSlicesContract\00", align 1 +@.TypeMapEntry.6826_from = private unnamed_addr constant [68 x i8] c"Android.Provider.SimPhonebookContract+ElementaryFiles, Mono.Android\00", align 1 +@.TypeMapEntry.6827_to = private unnamed_addr constant [54 x i8] c"android/provider/SimPhonebookContract$ElementaryFiles\00", align 1 +@.TypeMapEntry.6828_from = private unnamed_addr constant [63 x i8] c"Android.Provider.SimPhonebookContract+SimRecords, Mono.Android\00", align 1 +@.TypeMapEntry.6829_to = private unnamed_addr constant [49 x i8] c"android/provider/SimPhonebookContract$SimRecords\00", align 1 +@.TypeMapEntry.6830_from = private unnamed_addr constant [52 x i8] c"Android.Provider.SimPhonebookContract, Mono.Android\00", align 1 +@.TypeMapEntry.6831_to = private unnamed_addr constant [38 x i8] c"android/provider/SimPhonebookContract\00", align 1 +@.TypeMapEntry.6832_from = private unnamed_addr constant [57 x i8] c"Android.Provider.SyncStateContract+Columns, Mono.Android\00", align 1 +@.TypeMapEntry.6833_to = private unnamed_addr constant [57 x i8] c"mono/internal/android/provider/SyncStateContract$Columns\00", align 1 +@.TypeMapEntry.6834_from = private unnamed_addr constant [59 x i8] c"Android.Provider.SyncStateContract+Constants, Mono.Android\00", align 1 +@.TypeMapEntry.6835_to = private unnamed_addr constant [45 x i8] c"android/provider/SyncStateContract$Constants\00", align 1 +@.TypeMapEntry.6836_from = private unnamed_addr constant [57 x i8] c"Android.Provider.SyncStateContract+Helpers, Mono.Android\00", align 1 +@.TypeMapEntry.6837_to = private unnamed_addr constant [43 x i8] c"android/provider/SyncStateContract$Helpers\00", align 1 +@.TypeMapEntry.6838_from = private unnamed_addr constant [49 x i8] c"Android.Provider.SyncStateContract, Mono.Android\00", align 1 +@.TypeMapEntry.6839_to = private unnamed_addr constant [35 x i8] c"android/provider/SyncStateContract\00", align 1 +@.TypeMapEntry.6840_from = private unnamed_addr constant [56 x i8] c"Android.Provider.Telephony+BaseMmsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6841_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/provider/Telephony$BaseMmsColumns\00", align 1 +@.TypeMapEntry.6842_from = private unnamed_addr constant [67 x i8] c"Android.Provider.Telephony+CanonicalAddressesColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6843_to = private unnamed_addr constant [67 x i8] c"mono/internal/android/provider/Telephony$CanonicalAddressesColumns\00", align 1 +@.TypeMapEntry.6844_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Telephony+CarrierId, Mono.Android\00", align 1 +@.TypeMapEntry.6845_to = private unnamed_addr constant [37 x i8] c"android/provider/Telephony$CarrierId\00", align 1 +@.TypeMapEntry.6846_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Carriers, Mono.Android\00", align 1 +@.TypeMapEntry.6847_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Carriers\00", align 1 +@.TypeMapEntry.6848_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Mms+Addr, Mono.Android\00", align 1 +@.TypeMapEntry.6849_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Mms$Addr\00", align 1 +@.TypeMapEntry.6850_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Telephony+Mms+Draft, Mono.Android\00", align 1 +@.TypeMapEntry.6851_to = private unnamed_addr constant [37 x i8] c"android/provider/Telephony$Mms$Draft\00", align 1 +@.TypeMapEntry.6852_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Telephony+Mms+Inbox, Mono.Android\00", align 1 +@.TypeMapEntry.6853_to = private unnamed_addr constant [37 x i8] c"android/provider/Telephony$Mms$Inbox\00", align 1 +@.TypeMapEntry.6854_from = private unnamed_addr constant [53 x i8] c"Android.Provider.Telephony+Mms+Intents, Mono.Android\00", align 1 +@.TypeMapEntry.6855_to = private unnamed_addr constant [39 x i8] c"android/provider/Telephony$Mms$Intents\00", align 1 +@.TypeMapEntry.6856_from = private unnamed_addr constant [52 x i8] c"Android.Provider.Telephony+Mms+Outbox, Mono.Android\00", align 1 +@.TypeMapEntry.6857_to = private unnamed_addr constant [38 x i8] c"android/provider/Telephony$Mms$Outbox\00", align 1 +@.TypeMapEntry.6858_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Mms+Part, Mono.Android\00", align 1 +@.TypeMapEntry.6859_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Mms$Part\00", align 1 +@.TypeMapEntry.6860_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Mms+Rate, Mono.Android\00", align 1 +@.TypeMapEntry.6861_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Mms$Rate\00", align 1 +@.TypeMapEntry.6862_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Mms+Sent, Mono.Android\00", align 1 +@.TypeMapEntry.6863_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Mms$Sent\00", align 1 +@.TypeMapEntry.6864_from = private unnamed_addr constant [45 x i8] c"Android.Provider.Telephony+Mms, Mono.Android\00", align 1 +@.TypeMapEntry.6865_to = private unnamed_addr constant [31 x i8] c"android/provider/Telephony$Mms\00", align 1 +@.TypeMapEntry.6866_from = private unnamed_addr constant [64 x i8] c"Android.Provider.Telephony+MmsSms+PendingMessages, Mono.Android\00", align 1 +@.TypeMapEntry.6867_to = private unnamed_addr constant [50 x i8] c"android/provider/Telephony$MmsSms$PendingMessages\00", align 1 +@.TypeMapEntry.6868_from = private unnamed_addr constant [48 x i8] c"Android.Provider.Telephony+MmsSms, Mono.Android\00", align 1 +@.TypeMapEntry.6869_to = private unnamed_addr constant [34 x i8] c"android/provider/Telephony$MmsSms\00", align 1 +@.TypeMapEntry.6870_from = private unnamed_addr constant [59 x i8] c"Android.Provider.Telephony+ServiceStateTable, Mono.Android\00", align 1 +@.TypeMapEntry.6871_to = private unnamed_addr constant [45 x i8] c"android/provider/Telephony$ServiceStateTable\00", align 1 +@.TypeMapEntry.6872_from = private unnamed_addr constant [59 x i8] c"Android.Provider.Telephony+Sms+Conversations, Mono.Android\00", align 1 +@.TypeMapEntry.6873_to = private unnamed_addr constant [45 x i8] c"android/provider/Telephony$Sms$Conversations\00", align 1 +@.TypeMapEntry.6874_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Telephony+Sms+Draft, Mono.Android\00", align 1 +@.TypeMapEntry.6875_to = private unnamed_addr constant [37 x i8] c"android/provider/Telephony$Sms$Draft\00", align 1 +@.TypeMapEntry.6876_from = private unnamed_addr constant [51 x i8] c"Android.Provider.Telephony+Sms+Inbox, Mono.Android\00", align 1 +@.TypeMapEntry.6877_to = private unnamed_addr constant [37 x i8] c"android/provider/Telephony$Sms$Inbox\00", align 1 +@.TypeMapEntry.6878_from = private unnamed_addr constant [53 x i8] c"Android.Provider.Telephony+Sms+Intents, Mono.Android\00", align 1 +@.TypeMapEntry.6879_to = private unnamed_addr constant [39 x i8] c"android/provider/Telephony$Sms$Intents\00", align 1 +@.TypeMapEntry.6880_from = private unnamed_addr constant [52 x i8] c"Android.Provider.Telephony+Sms+Outbox, Mono.Android\00", align 1 +@.TypeMapEntry.6881_to = private unnamed_addr constant [38 x i8] c"android/provider/Telephony$Sms$Outbox\00", align 1 +@.TypeMapEntry.6882_from = private unnamed_addr constant [50 x i8] c"Android.Provider.Telephony+Sms+Sent, Mono.Android\00", align 1 +@.TypeMapEntry.6883_to = private unnamed_addr constant [36 x i8] c"android/provider/Telephony$Sms$Sent\00", align 1 +@.TypeMapEntry.6884_from = private unnamed_addr constant [45 x i8] c"Android.Provider.Telephony+Sms, Mono.Android\00", align 1 +@.TypeMapEntry.6885_to = private unnamed_addr constant [31 x i8] c"android/provider/Telephony$Sms\00", align 1 +@.TypeMapEntry.6886_from = private unnamed_addr constant [61 x i8] c"Android.Provider.Telephony+TextBasedSmsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6887_to = private unnamed_addr constant [61 x i8] c"mono/internal/android/provider/Telephony$TextBasedSmsColumns\00", align 1 +@.TypeMapEntry.6888_from = private unnamed_addr constant [49 x i8] c"Android.Provider.Telephony+Threads, Mono.Android\00", align 1 +@.TypeMapEntry.6889_to = private unnamed_addr constant [35 x i8] c"android/provider/Telephony$Threads\00", align 1 +@.TypeMapEntry.6890_from = private unnamed_addr constant [56 x i8] c"Android.Provider.Telephony+ThreadsColumns, Mono.Android\00", align 1 +@.TypeMapEntry.6891_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/provider/Telephony$ThreadsColumns\00", align 1 +@.TypeMapEntry.6892_from = private unnamed_addr constant [41 x i8] c"Android.Provider.Telephony, Mono.Android\00", align 1 +@.TypeMapEntry.6893_to = private unnamed_addr constant [27 x i8] c"android/provider/Telephony\00", align 1 +@.TypeMapEntry.6894_from = private unnamed_addr constant [52 x i8] c"Android.Provider.UserDictionary+Words, Mono.Android\00", align 1 +@.TypeMapEntry.6895_to = private unnamed_addr constant [38 x i8] c"android/provider/UserDictionary$Words\00", align 1 +@.TypeMapEntry.6896_from = private unnamed_addr constant [46 x i8] c"Android.Provider.UserDictionary, Mono.Android\00", align 1 +@.TypeMapEntry.6897_to = private unnamed_addr constant [32 x i8] c"android/provider/UserDictionary\00", align 1 +@.TypeMapEntry.6898_from = private unnamed_addr constant [56 x i8] c"Android.Provider.VoicemailContract+Status, Mono.Android\00", align 1 +@.TypeMapEntry.6899_to = private unnamed_addr constant [42 x i8] c"android/provider/VoicemailContract$Status\00", align 1 +@.TypeMapEntry.6900_from = private unnamed_addr constant [60 x i8] c"Android.Provider.VoicemailContract+Voicemails, Mono.Android\00", align 1 +@.TypeMapEntry.6901_to = private unnamed_addr constant [46 x i8] c"android/provider/VoicemailContract$Voicemails\00", align 1 +@.TypeMapEntry.6902_from = private unnamed_addr constant [49 x i8] c"Android.Provider.VoicemailContract, Mono.Android\00", align 1 +@.TypeMapEntry.6903_to = private unnamed_addr constant [35 x i8] c"android/provider/VoicemailContract\00", align 1 +@.TypeMapEntry.6904_from = private unnamed_addr constant [74 x i8] c"Android.Renderscripts.Allocation+IOnBufferAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.6905_to = private unnamed_addr constant [58 x i8] c"android/renderscript/Allocation$OnBufferAvailableListener\00", align 1 +@.TypeMapEntry.6906_from = private unnamed_addr constant [85 x i8] c"Android.Renderscripts.Allocation+IOnBufferAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.6907_to = private unnamed_addr constant [74 x i8] c"mono/android/renderscript/Allocation_OnBufferAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.6908_from = private unnamed_addr constant [81 x i8] c"Android.Renderscripts.Allocation+IOnBufferAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.6909_from = private unnamed_addr constant [61 x i8] c"Android.Renderscripts.Allocation+MipmapControl, Mono.Android\00", align 1 +@.TypeMapEntry.6910_to = private unnamed_addr constant [46 x i8] c"android/renderscript/Allocation$MipmapControl\00", align 1 +@.TypeMapEntry.6911_from = private unnamed_addr constant [47 x i8] c"Android.Renderscripts.Allocation, Mono.Android\00", align 1 +@.TypeMapEntry.6912_to = private unnamed_addr constant [32 x i8] c"android/renderscript/Allocation\00", align 1 +@.TypeMapEntry.6913_from = private unnamed_addr constant [54 x i8] c"Android.Renderscripts.AllocationAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.6914_to = private unnamed_addr constant [39 x i8] c"android/renderscript/AllocationAdapter\00", align 1 +@.TypeMapEntry.6915_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.BaseObj, Mono.Android\00", align 1 +@.TypeMapEntry.6916_to = private unnamed_addr constant [29 x i8] c"android/renderscript/BaseObj\00", align 1 +@.TypeMapEntry.6917_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Byte2, Mono.Android\00", align 1 +@.TypeMapEntry.6918_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Byte2\00", align 1 +@.TypeMapEntry.6919_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Byte3, Mono.Android\00", align 1 +@.TypeMapEntry.6920_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Byte3\00", align 1 +@.TypeMapEntry.6921_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Byte4, Mono.Android\00", align 1 +@.TypeMapEntry.6922_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Byte4\00", align 1 +@.TypeMapEntry.6923_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Double2, Mono.Android\00", align 1 +@.TypeMapEntry.6924_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Double2\00", align 1 +@.TypeMapEntry.6925_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Double3, Mono.Android\00", align 1 +@.TypeMapEntry.6926_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Double3\00", align 1 +@.TypeMapEntry.6927_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Double4, Mono.Android\00", align 1 +@.TypeMapEntry.6928_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Double4\00", align 1 +@.TypeMapEntry.6929_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.Element+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6930_to = private unnamed_addr constant [37 x i8] c"android/renderscript/Element$Builder\00", align 1 +@.TypeMapEntry.6931_from = private unnamed_addr constant [53 x i8] c"Android.Renderscripts.Element+DataKind, Mono.Android\00", align 1 +@.TypeMapEntry.6932_to = private unnamed_addr constant [38 x i8] c"android/renderscript/Element$DataKind\00", align 1 +@.TypeMapEntry.6933_from = private unnamed_addr constant [53 x i8] c"Android.Renderscripts.Element+DataType, Mono.Android\00", align 1 +@.TypeMapEntry.6934_to = private unnamed_addr constant [38 x i8] c"android/renderscript/Element$DataType\00", align 1 +@.TypeMapEntry.6935_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Element, Mono.Android\00", align 1 +@.TypeMapEntry.6936_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Element\00", align 1 +@.TypeMapEntry.6937_from = private unnamed_addr constant [48 x i8] c"Android.Renderscripts.FieldPacker, Mono.Android\00", align 1 +@.TypeMapEntry.6938_to = private unnamed_addr constant [33 x i8] c"android/renderscript/FieldPacker\00", align 1 +@.TypeMapEntry.6939_from = private unnamed_addr constant [54 x i8] c"Android.Renderscripts.FileA3D+EntryType, Mono.Android\00", align 1 +@.TypeMapEntry.6940_to = private unnamed_addr constant [39 x i8] c"android/renderscript/FileA3D$EntryType\00", align 1 +@.TypeMapEntry.6941_from = private unnamed_addr constant [55 x i8] c"Android.Renderscripts.FileA3D+IndexEntry, Mono.Android\00", align 1 +@.TypeMapEntry.6942_to = private unnamed_addr constant [40 x i8] c"android/renderscript/FileA3D$IndexEntry\00", align 1 +@.TypeMapEntry.6943_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.FileA3D, Mono.Android\00", align 1 +@.TypeMapEntry.6944_to = private unnamed_addr constant [29 x i8] c"android/renderscript/FileA3D\00", align 1 +@.TypeMapEntry.6945_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Float2, Mono.Android\00", align 1 +@.TypeMapEntry.6946_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Float2\00", align 1 +@.TypeMapEntry.6947_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Float3, Mono.Android\00", align 1 +@.TypeMapEntry.6948_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Float3\00", align 1 +@.TypeMapEntry.6949_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Float4, Mono.Android\00", align 1 +@.TypeMapEntry.6950_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Float4\00", align 1 +@.TypeMapEntry.6951_from = private unnamed_addr constant [47 x i8] c"Android.Renderscripts.Font+Style, Mono.Android\00", align 1 +@.TypeMapEntry.6952_to = private unnamed_addr constant [32 x i8] c"android/renderscript/Font$Style\00", align 1 +@.TypeMapEntry.6953_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Font, Mono.Android\00", align 1 +@.TypeMapEntry.6954_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Font\00", align 1 +@.TypeMapEntry.6955_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Int2, Mono.Android\00", align 1 +@.TypeMapEntry.6956_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Int2\00", align 1 +@.TypeMapEntry.6957_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Int3, Mono.Android\00", align 1 +@.TypeMapEntry.6958_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Int3\00", align 1 +@.TypeMapEntry.6959_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Int4, Mono.Android\00", align 1 +@.TypeMapEntry.6960_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Int4\00", align 1 +@.TypeMapEntry.6961_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Long2, Mono.Android\00", align 1 +@.TypeMapEntry.6962_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Long2\00", align 1 +@.TypeMapEntry.6963_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Long3, Mono.Android\00", align 1 +@.TypeMapEntry.6964_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Long3\00", align 1 +@.TypeMapEntry.6965_from = private unnamed_addr constant [42 x i8] c"Android.Renderscripts.Long4, Mono.Android\00", align 1 +@.TypeMapEntry.6966_to = private unnamed_addr constant [27 x i8] c"android/renderscript/Long4\00", align 1 +@.TypeMapEntry.6967_from = private unnamed_addr constant [45 x i8] c"Android.Renderscripts.Matrix2f, Mono.Android\00", align 1 +@.TypeMapEntry.6968_to = private unnamed_addr constant [30 x i8] c"android/renderscript/Matrix2f\00", align 1 +@.TypeMapEntry.6969_from = private unnamed_addr constant [45 x i8] c"Android.Renderscripts.Matrix3f, Mono.Android\00", align 1 +@.TypeMapEntry.6970_to = private unnamed_addr constant [30 x i8] c"android/renderscript/Matrix3f\00", align 1 +@.TypeMapEntry.6971_from = private unnamed_addr constant [45 x i8] c"Android.Renderscripts.Matrix4f, Mono.Android\00", align 1 +@.TypeMapEntry.6972_to = private unnamed_addr constant [30 x i8] c"android/renderscript/Matrix4f\00", align 1 +@.TypeMapEntry.6973_from = private unnamed_addr constant [59 x i8] c"Android.Renderscripts.Mesh+AllocationBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.6974_to = private unnamed_addr constant [44 x i8] c"android/renderscript/Mesh$AllocationBuilder\00", align 1 +@.TypeMapEntry.6975_from = private unnamed_addr constant [49 x i8] c"Android.Renderscripts.Mesh+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6976_to = private unnamed_addr constant [34 x i8] c"android/renderscript/Mesh$Builder\00", align 1 +@.TypeMapEntry.6977_from = private unnamed_addr constant [51 x i8] c"Android.Renderscripts.Mesh+Primitive, Mono.Android\00", align 1 +@.TypeMapEntry.6978_to = private unnamed_addr constant [36 x i8] c"android/renderscript/Mesh$Primitive\00", align 1 +@.TypeMapEntry.6979_from = private unnamed_addr constant [61 x i8] c"Android.Renderscripts.Mesh+TriangleMeshBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.6980_to = private unnamed_addr constant [46 x i8] c"android/renderscript/Mesh$TriangleMeshBuilder\00", align 1 +@.TypeMapEntry.6981_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Mesh, Mono.Android\00", align 1 +@.TypeMapEntry.6982_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Mesh\00", align 1 +@.TypeMapEntry.6983_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.Program+BaseProgramBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.6984_to = private unnamed_addr constant [48 x i8] c"android/renderscript/Program$BaseProgramBuilder\00", align 1 +@.TypeMapEntry.6985_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.Program+TextureType, Mono.Android\00", align 1 +@.TypeMapEntry.6986_to = private unnamed_addr constant [41 x i8] c"android/renderscript/Program$TextureType\00", align 1 +@.TypeMapEntry.6987_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Program, Mono.Android\00", align 1 +@.TypeMapEntry.6988_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Program\00", align 1 +@.TypeMapEntry.6989_from = private unnamed_addr constant [60 x i8] c"Android.Renderscripts.ProgramFragment+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6990_to = private unnamed_addr constant [45 x i8] c"android/renderscript/ProgramFragment$Builder\00", align 1 +@.TypeMapEntry.6991_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.ProgramFragment, Mono.Android\00", align 1 +@.TypeMapEntry.6992_to = private unnamed_addr constant [37 x i8] c"android/renderscript/ProgramFragment\00", align 1 +@.TypeMapEntry.6993_from = private unnamed_addr constant [81 x i8] c"Android.Renderscripts.ProgramFragmentFixedFunction+Builder+EnvMode, Mono.Android\00", align 1 +@.TypeMapEntry.6994_to = private unnamed_addr constant [66 x i8] c"android/renderscript/ProgramFragmentFixedFunction$Builder$EnvMode\00", align 1 +@.TypeMapEntry.6995_from = private unnamed_addr constant [80 x i8] c"Android.Renderscripts.ProgramFragmentFixedFunction+Builder+Format, Mono.Android\00", align 1 +@.TypeMapEntry.6996_to = private unnamed_addr constant [65 x i8] c"android/renderscript/ProgramFragmentFixedFunction$Builder$Format\00", align 1 +@.TypeMapEntry.6997_from = private unnamed_addr constant [73 x i8] c"Android.Renderscripts.ProgramFragmentFixedFunction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.6998_to = private unnamed_addr constant [58 x i8] c"android/renderscript/ProgramFragmentFixedFunction$Builder\00", align 1 +@.TypeMapEntry.6999_from = private unnamed_addr constant [65 x i8] c"Android.Renderscripts.ProgramFragmentFixedFunction, Mono.Android\00", align 1 +@.TypeMapEntry.7000_to = private unnamed_addr constant [50 x i8] c"android/renderscript/ProgramFragmentFixedFunction\00", align 1 +@.TypeMapEntry.7001_from = private unnamed_addr constant [58 x i8] c"Android.Renderscripts.ProgramRaster+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7002_to = private unnamed_addr constant [43 x i8] c"android/renderscript/ProgramRaster$Builder\00", align 1 +@.TypeMapEntry.7003_from = private unnamed_addr constant [59 x i8] c"Android.Renderscripts.ProgramRaster+CullMode, Mono.Android\00", align 1 +@.TypeMapEntry.7004_to = private unnamed_addr constant [44 x i8] c"android/renderscript/ProgramRaster$CullMode\00", align 1 +@.TypeMapEntry.7005_from = private unnamed_addr constant [50 x i8] c"Android.Renderscripts.ProgramRaster, Mono.Android\00", align 1 +@.TypeMapEntry.7006_to = private unnamed_addr constant [35 x i8] c"android/renderscript/ProgramRaster\00", align 1 +@.TypeMapEntry.7007_from = private unnamed_addr constant [62 x i8] c"Android.Renderscripts.ProgramStore+BlendDstFunc, Mono.Android\00", align 1 +@.TypeMapEntry.7008_to = private unnamed_addr constant [47 x i8] c"android/renderscript/ProgramStore$BlendDstFunc\00", align 1 +@.TypeMapEntry.7009_from = private unnamed_addr constant [62 x i8] c"Android.Renderscripts.ProgramStore+BlendSrcFunc, Mono.Android\00", align 1 +@.TypeMapEntry.7010_to = private unnamed_addr constant [47 x i8] c"android/renderscript/ProgramStore$BlendSrcFunc\00", align 1 +@.TypeMapEntry.7011_from = private unnamed_addr constant [57 x i8] c"Android.Renderscripts.ProgramStore+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7012_to = private unnamed_addr constant [42 x i8] c"android/renderscript/ProgramStore$Builder\00", align 1 +@.TypeMapEntry.7013_from = private unnamed_addr constant [59 x i8] c"Android.Renderscripts.ProgramStore+DepthFunc, Mono.Android\00", align 1 +@.TypeMapEntry.7014_to = private unnamed_addr constant [44 x i8] c"android/renderscript/ProgramStore$DepthFunc\00", align 1 +@.TypeMapEntry.7015_from = private unnamed_addr constant [49 x i8] c"Android.Renderscripts.ProgramStore, Mono.Android\00", align 1 +@.TypeMapEntry.7016_to = private unnamed_addr constant [34 x i8] c"android/renderscript/ProgramStore\00", align 1 +@.TypeMapEntry.7017_from = private unnamed_addr constant [58 x i8] c"Android.Renderscripts.ProgramVertex+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7018_to = private unnamed_addr constant [43 x i8] c"android/renderscript/ProgramVertex$Builder\00", align 1 +@.TypeMapEntry.7019_from = private unnamed_addr constant [50 x i8] c"Android.Renderscripts.ProgramVertex, Mono.Android\00", align 1 +@.TypeMapEntry.7020_to = private unnamed_addr constant [35 x i8] c"android/renderscript/ProgramVertex\00", align 1 +@.TypeMapEntry.7021_from = private unnamed_addr constant [71 x i8] c"Android.Renderscripts.ProgramVertexFixedFunction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7022_to = private unnamed_addr constant [56 x i8] c"android/renderscript/ProgramVertexFixedFunction$Builder\00", align 1 +@.TypeMapEntry.7023_from = private unnamed_addr constant [73 x i8] c"Android.Renderscripts.ProgramVertexFixedFunction+Constants, Mono.Android\00", align 1 +@.TypeMapEntry.7024_to = private unnamed_addr constant [58 x i8] c"android/renderscript/ProgramVertexFixedFunction$Constants\00", align 1 +@.TypeMapEntry.7025_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.ProgramVertexFixedFunction, Mono.Android\00", align 1 +@.TypeMapEntry.7026_to = private unnamed_addr constant [48 x i8] c"android/renderscript/ProgramVertexFixedFunction\00", align 1 +@.TypeMapEntry.7027_from = private unnamed_addr constant [54 x i8] c"Android.Renderscripts.RSDriverException, Mono.Android\00", align 1 +@.TypeMapEntry.7028_to = private unnamed_addr constant [39 x i8] c"android/renderscript/RSDriverException\00", align 1 +@.TypeMapEntry.7029_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.RSIllegalArgumentException, Mono.Android\00", align 1 +@.TypeMapEntry.7030_to = private unnamed_addr constant [48 x i8] c"android/renderscript/RSIllegalArgumentException\00", align 1 +@.TypeMapEntry.7031_from = private unnamed_addr constant [60 x i8] c"Android.Renderscripts.RSInvalidStateException, Mono.Android\00", align 1 +@.TypeMapEntry.7032_to = private unnamed_addr constant [45 x i8] c"android/renderscript/RSInvalidStateException\00", align 1 +@.TypeMapEntry.7033_from = private unnamed_addr constant [55 x i8] c"Android.Renderscripts.RSRuntimeException, Mono.Android\00", align 1 +@.TypeMapEntry.7034_to = private unnamed_addr constant [40 x i8] c"android/renderscript/RSRuntimeException\00", align 1 +@.TypeMapEntry.7035_from = private unnamed_addr constant [50 x i8] c"Android.Renderscripts.RSSurfaceView, Mono.Android\00", align 1 +@.TypeMapEntry.7036_to = private unnamed_addr constant [35 x i8] c"android/renderscript/RSSurfaceView\00", align 1 +@.TypeMapEntry.7037_from = private unnamed_addr constant [50 x i8] c"Android.Renderscripts.RSTextureView, Mono.Android\00", align 1 +@.TypeMapEntry.7038_to = private unnamed_addr constant [35 x i8] c"android/renderscript/RSTextureView\00", align 1 +@.TypeMapEntry.7039_from = private unnamed_addr constant [61 x i8] c"Android.Renderscripts.RenderScript+ContextType, Mono.Android\00", align 1 +@.TypeMapEntry.7040_to = private unnamed_addr constant [46 x i8] c"android/renderscript/RenderScript$ContextType\00", align 1 +@.TypeMapEntry.7041_from = private unnamed_addr constant [58 x i8] c"Android.Renderscripts.RenderScript+Priority, Mono.Android\00", align 1 +@.TypeMapEntry.7042_to = private unnamed_addr constant [43 x i8] c"android/renderscript/RenderScript$Priority\00", align 1 +@.TypeMapEntry.7043_from = private unnamed_addr constant [64 x i8] c"Android.Renderscripts.RenderScript+RSErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.7044_to = private unnamed_addr constant [49 x i8] c"android/renderscript/RenderScript$RSErrorHandler\00", align 1 +@.TypeMapEntry.7045_from = private unnamed_addr constant [66 x i8] c"Android.Renderscripts.RenderScript+RSMessageHandler, Mono.Android\00", align 1 +@.TypeMapEntry.7046_to = private unnamed_addr constant [51 x i8] c"android/renderscript/RenderScript$RSMessageHandler\00", align 1 +@.TypeMapEntry.7047_from = private unnamed_addr constant [49 x i8] c"Android.Renderscripts.RenderScript, Mono.Android\00", align 1 +@.TypeMapEntry.7048_to = private unnamed_addr constant [34 x i8] c"android/renderscript/RenderScript\00", align 1 +@.TypeMapEntry.7049_from = private unnamed_addr constant [65 x i8] c"Android.Renderscripts.RenderScriptGL+SurfaceConfig, Mono.Android\00", align 1 +@.TypeMapEntry.7050_to = private unnamed_addr constant [50 x i8] c"android/renderscript/RenderScriptGL$SurfaceConfig\00", align 1 +@.TypeMapEntry.7051_from = private unnamed_addr constant [51 x i8] c"Android.Renderscripts.RenderScriptGL, Mono.Android\00", align 1 +@.TypeMapEntry.7052_to = private unnamed_addr constant [36 x i8] c"android/renderscript/RenderScriptGL\00", align 1 +@.TypeMapEntry.7053_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.Sampler+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7054_to = private unnamed_addr constant [37 x i8] c"android/renderscript/Sampler$Builder\00", align 1 +@.TypeMapEntry.7055_from = private unnamed_addr constant [50 x i8] c"Android.Renderscripts.Sampler+Value, Mono.Android\00", align 1 +@.TypeMapEntry.7056_to = private unnamed_addr constant [35 x i8] c"android/renderscript/Sampler$Value\00", align 1 +@.TypeMapEntry.7057_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.Sampler, Mono.Android\00", align 1 +@.TypeMapEntry.7058_to = private unnamed_addr constant [29 x i8] c"android/renderscript/Sampler\00", align 1 +@.TypeMapEntry.7059_from = private unnamed_addr constant [51 x i8] c"Android.Renderscripts.Script+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7060_to = private unnamed_addr constant [36 x i8] c"android/renderscript/Script$Builder\00", align 1 +@.TypeMapEntry.7061_from = private unnamed_addr constant [53 x i8] c"Android.Renderscripts.Script+FieldBase, Mono.Android\00", align 1 +@.TypeMapEntry.7062_to = private unnamed_addr constant [38 x i8] c"android/renderscript/Script$FieldBase\00", align 1 +@.TypeMapEntry.7063_from = private unnamed_addr constant [51 x i8] c"Android.Renderscripts.Script+FieldID, Mono.Android\00", align 1 +@.TypeMapEntry.7064_to = private unnamed_addr constant [36 x i8] c"android/renderscript/Script$FieldID\00", align 1 +@.TypeMapEntry.7065_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.Script+InvokeID, Mono.Android\00", align 1 +@.TypeMapEntry.7066_to = private unnamed_addr constant [37 x i8] c"android/renderscript/Script$InvokeID\00", align 1 +@.TypeMapEntry.7067_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.Script+KernelID, Mono.Android\00", align 1 +@.TypeMapEntry.7068_to = private unnamed_addr constant [37 x i8] c"android/renderscript/Script$KernelID\00", align 1 +@.TypeMapEntry.7069_from = private unnamed_addr constant [57 x i8] c"Android.Renderscripts.Script+LaunchOptions, Mono.Android\00", align 1 +@.TypeMapEntry.7070_to = private unnamed_addr constant [42 x i8] c"android/renderscript/Script$LaunchOptions\00", align 1 +@.TypeMapEntry.7071_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Script, Mono.Android\00", align 1 +@.TypeMapEntry.7072_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Script\00", align 1 +@.TypeMapEntry.7073_from = private unnamed_addr constant [44 x i8] c"Android.Renderscripts.ScriptC, Mono.Android\00", align 1 +@.TypeMapEntry.7074_to = private unnamed_addr constant [29 x i8] c"android/renderscript/ScriptC\00", align 1 +@.TypeMapEntry.7075_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.ScriptGroup+Binding, Mono.Android\00", align 1 +@.TypeMapEntry.7076_to = private unnamed_addr constant [41 x i8] c"android/renderscript/ScriptGroup$Binding\00", align 1 +@.TypeMapEntry.7077_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.ScriptGroup+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7078_to = private unnamed_addr constant [41 x i8] c"android/renderscript/ScriptGroup$Builder\00", align 1 +@.TypeMapEntry.7079_from = private unnamed_addr constant [57 x i8] c"Android.Renderscripts.ScriptGroup+Builder2, Mono.Android\00", align 1 +@.TypeMapEntry.7080_to = private unnamed_addr constant [42 x i8] c"android/renderscript/ScriptGroup$Builder2\00", align 1 +@.TypeMapEntry.7081_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.ScriptGroup+Closure, Mono.Android\00", align 1 +@.TypeMapEntry.7082_to = private unnamed_addr constant [41 x i8] c"android/renderscript/ScriptGroup$Closure\00", align 1 +@.TypeMapEntry.7083_from = private unnamed_addr constant [55 x i8] c"Android.Renderscripts.ScriptGroup+Future, Mono.Android\00", align 1 +@.TypeMapEntry.7084_to = private unnamed_addr constant [40 x i8] c"android/renderscript/ScriptGroup$Future\00", align 1 +@.TypeMapEntry.7085_from = private unnamed_addr constant [54 x i8] c"Android.Renderscripts.ScriptGroup+Input, Mono.Android\00", align 1 +@.TypeMapEntry.7086_to = private unnamed_addr constant [39 x i8] c"android/renderscript/ScriptGroup$Input\00", align 1 +@.TypeMapEntry.7087_from = private unnamed_addr constant [48 x i8] c"Android.Renderscripts.ScriptGroup, Mono.Android\00", align 1 +@.TypeMapEntry.7088_to = private unnamed_addr constant [33 x i8] c"android/renderscript/ScriptGroup\00", align 1 +@.TypeMapEntry.7089_from = private unnamed_addr constant [52 x i8] c"Android.Renderscripts.ScriptIntrinsic, Mono.Android\00", align 1 +@.TypeMapEntry.7090_to = private unnamed_addr constant [37 x i8] c"android/renderscript/ScriptIntrinsic\00", align 1 +@.TypeMapEntry.7091_from = private unnamed_addr constant [57 x i8] c"Android.Renderscripts.ScriptIntrinsic3DLUT, Mono.Android\00", align 1 +@.TypeMapEntry.7092_to = private unnamed_addr constant [42 x i8] c"android/renderscript/ScriptIntrinsic3DLUT\00", align 1 +@.TypeMapEntry.7093_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.ScriptIntrinsicBLAS, Mono.Android\00", align 1 +@.TypeMapEntry.7094_to = private unnamed_addr constant [41 x i8] c"android/renderscript/ScriptIntrinsicBLAS\00", align 1 +@.TypeMapEntry.7095_from = private unnamed_addr constant [57 x i8] c"Android.Renderscripts.ScriptIntrinsicBlend, Mono.Android\00", align 1 +@.TypeMapEntry.7096_to = private unnamed_addr constant [42 x i8] c"android/renderscript/ScriptIntrinsicBlend\00", align 1 +@.TypeMapEntry.7097_from = private unnamed_addr constant [56 x i8] c"Android.Renderscripts.ScriptIntrinsicBlur, Mono.Android\00", align 1 +@.TypeMapEntry.7098_to = private unnamed_addr constant [41 x i8] c"android/renderscript/ScriptIntrinsicBlur\00", align 1 +@.TypeMapEntry.7099_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.ScriptIntrinsicColorMatrix, Mono.Android\00", align 1 +@.TypeMapEntry.7100_to = private unnamed_addr constant [48 x i8] c"android/renderscript/ScriptIntrinsicColorMatrix\00", align 1 +@.TypeMapEntry.7101_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.ScriptIntrinsicConvolve3x3, Mono.Android\00", align 1 +@.TypeMapEntry.7102_to = private unnamed_addr constant [48 x i8] c"android/renderscript/ScriptIntrinsicConvolve3x3\00", align 1 +@.TypeMapEntry.7103_from = private unnamed_addr constant [63 x i8] c"Android.Renderscripts.ScriptIntrinsicConvolve5x5, Mono.Android\00", align 1 +@.TypeMapEntry.7104_to = private unnamed_addr constant [48 x i8] c"android/renderscript/ScriptIntrinsicConvolve5x5\00", align 1 +@.TypeMapEntry.7105_from = private unnamed_addr constant [61 x i8] c"Android.Renderscripts.ScriptIntrinsicHistogram, Mono.Android\00", align 1 +@.TypeMapEntry.7106_to = private unnamed_addr constant [46 x i8] c"android/renderscript/ScriptIntrinsicHistogram\00", align 1 +@.TypeMapEntry.7107_from = private unnamed_addr constant [59 x i8] c"Android.Renderscripts.ScriptIntrinsicInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7108_from = private unnamed_addr constant [55 x i8] c"Android.Renderscripts.ScriptIntrinsicLUT, Mono.Android\00", align 1 +@.TypeMapEntry.7109_to = private unnamed_addr constant [40 x i8] c"android/renderscript/ScriptIntrinsicLUT\00", align 1 +@.TypeMapEntry.7110_from = private unnamed_addr constant [58 x i8] c"Android.Renderscripts.ScriptIntrinsicResize, Mono.Android\00", align 1 +@.TypeMapEntry.7111_to = private unnamed_addr constant [43 x i8] c"android/renderscript/ScriptIntrinsicResize\00", align 1 +@.TypeMapEntry.7112_from = private unnamed_addr constant [60 x i8] c"Android.Renderscripts.ScriptIntrinsicYuvToRGB, Mono.Android\00", align 1 +@.TypeMapEntry.7113_to = private unnamed_addr constant [45 x i8] c"android/renderscript/ScriptIntrinsicYuvToRGB\00", align 1 +@.TypeMapEntry.7114_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Short2, Mono.Android\00", align 1 +@.TypeMapEntry.7115_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Short2\00", align 1 +@.TypeMapEntry.7116_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Short3, Mono.Android\00", align 1 +@.TypeMapEntry.7117_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Short3\00", align 1 +@.TypeMapEntry.7118_from = private unnamed_addr constant [43 x i8] c"Android.Renderscripts.Short4, Mono.Android\00", align 1 +@.TypeMapEntry.7119_to = private unnamed_addr constant [28 x i8] c"android/renderscript/Short4\00", align 1 +@.TypeMapEntry.7120_from = private unnamed_addr constant [49 x i8] c"Android.Renderscripts.Type+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7121_to = private unnamed_addr constant [34 x i8] c"android/renderscript/Type$Builder\00", align 1 +@.TypeMapEntry.7122_from = private unnamed_addr constant [53 x i8] c"Android.Renderscripts.Type+CubemapFace, Mono.Android\00", align 1 +@.TypeMapEntry.7123_to = private unnamed_addr constant [38 x i8] c"android/renderscript/Type$CubemapFace\00", align 1 +@.TypeMapEntry.7124_from = private unnamed_addr constant [41 x i8] c"Android.Renderscripts.Type, Mono.Android\00", align 1 +@.TypeMapEntry.7125_to = private unnamed_addr constant [26 x i8] c"android/renderscript/Type\00", align 1 +@.TypeMapEntry.7126_from = private unnamed_addr constant [41 x i8] c"Android.Resource+Animation, Mono.Android\00", align 1 +@.TypeMapEntry.7127_to = private unnamed_addr constant [15 x i8] c"android/R$anim\00", align 1 +@.TypeMapEntry.7128_from = private unnamed_addr constant [40 x i8] c"Android.Resource+Animator, Mono.Android\00", align 1 +@.TypeMapEntry.7129_to = private unnamed_addr constant [19 x i8] c"android/R$animator\00", align 1 +@.TypeMapEntry.7130_from = private unnamed_addr constant [37 x i8] c"Android.Resource+Array, Mono.Android\00", align 1 +@.TypeMapEntry.7131_to = private unnamed_addr constant [16 x i8] c"android/R$array\00", align 1 +@.TypeMapEntry.7132_from = private unnamed_addr constant [41 x i8] c"Android.Resource+Attribute, Mono.Android\00", align 1 +@.TypeMapEntry.7133_to = private unnamed_addr constant [15 x i8] c"android/R$attr\00", align 1 +@.TypeMapEntry.7134_from = private unnamed_addr constant [39 x i8] c"Android.Resource+Boolean, Mono.Android\00", align 1 +@.TypeMapEntry.7135_to = private unnamed_addr constant [15 x i8] c"android/R$bool\00", align 1 +@.TypeMapEntry.7136_from = private unnamed_addr constant [37 x i8] c"Android.Resource+Color, Mono.Android\00", align 1 +@.TypeMapEntry.7137_to = private unnamed_addr constant [16 x i8] c"android/R$color\00", align 1 +@.TypeMapEntry.7138_from = private unnamed_addr constant [41 x i8] c"Android.Resource+Dimension, Mono.Android\00", align 1 +@.TypeMapEntry.7139_to = private unnamed_addr constant [16 x i8] c"android/R$dimen\00", align 1 +@.TypeMapEntry.7140_from = private unnamed_addr constant [40 x i8] c"Android.Resource+Drawable, Mono.Android\00", align 1 +@.TypeMapEntry.7141_to = private unnamed_addr constant [19 x i8] c"android/R$drawable\00", align 1 +@.TypeMapEntry.7142_from = private unnamed_addr constant [40 x i8] c"Android.Resource+Fraction, Mono.Android\00", align 1 +@.TypeMapEntry.7143_to = private unnamed_addr constant [19 x i8] c"android/R$fraction\00", align 1 +@.TypeMapEntry.7144_from = private unnamed_addr constant [34 x i8] c"Android.Resource+Id, Mono.Android\00", align 1 +@.TypeMapEntry.7145_to = private unnamed_addr constant [13 x i8] c"android/R$id\00", align 1 +@.TypeMapEntry.7146_from = private unnamed_addr constant [39 x i8] c"Android.Resource+Integer, Mono.Android\00", align 1 +@.TypeMapEntry.7147_to = private unnamed_addr constant [18 x i8] c"android/R$integer\00", align 1 +@.TypeMapEntry.7148_from = private unnamed_addr constant [44 x i8] c"Android.Resource+Interpolator, Mono.Android\00", align 1 +@.TypeMapEntry.7149_to = private unnamed_addr constant [23 x i8] c"android/R$interpolator\00", align 1 +@.TypeMapEntry.7150_from = private unnamed_addr constant [38 x i8] c"Android.Resource+Layout, Mono.Android\00", align 1 +@.TypeMapEntry.7151_to = private unnamed_addr constant [17 x i8] c"android/R$layout\00", align 1 +@.TypeMapEntry.7152_from = private unnamed_addr constant [36 x i8] c"Android.Resource+Menu, Mono.Android\00", align 1 +@.TypeMapEntry.7153_to = private unnamed_addr constant [15 x i8] c"android/R$menu\00", align 1 +@.TypeMapEntry.7154_from = private unnamed_addr constant [38 x i8] c"Android.Resource+Mipmap, Mono.Android\00", align 1 +@.TypeMapEntry.7155_to = private unnamed_addr constant [17 x i8] c"android/R$mipmap\00", align 1 +@.TypeMapEntry.7156_from = private unnamed_addr constant [39 x i8] c"Android.Resource+Plurals, Mono.Android\00", align 1 +@.TypeMapEntry.7157_to = private unnamed_addr constant [18 x i8] c"android/R$plurals\00", align 1 +@.TypeMapEntry.7158_from = private unnamed_addr constant [35 x i8] c"Android.Resource+Raw, Mono.Android\00", align 1 +@.TypeMapEntry.7159_to = private unnamed_addr constant [14 x i8] c"android/R$raw\00", align 1 +@.TypeMapEntry.7160_from = private unnamed_addr constant [38 x i8] c"Android.Resource+String, Mono.Android\00", align 1 +@.TypeMapEntry.7161_to = private unnamed_addr constant [17 x i8] c"android/R$string\00", align 1 +@.TypeMapEntry.7162_from = private unnamed_addr constant [37 x i8] c"Android.Resource+Style, Mono.Android\00", align 1 +@.TypeMapEntry.7163_to = private unnamed_addr constant [16 x i8] c"android/R$style\00", align 1 +@.TypeMapEntry.7164_from = private unnamed_addr constant [42 x i8] c"Android.Resource+Transition, Mono.Android\00", align 1 +@.TypeMapEntry.7165_to = private unnamed_addr constant [21 x i8] c"android/R$transition\00", align 1 +@.TypeMapEntry.7166_from = private unnamed_addr constant [35 x i8] c"Android.Resource+Xml, Mono.Android\00", align 1 +@.TypeMapEntry.7167_to = private unnamed_addr constant [14 x i8] c"android/R$xml\00", align 1 +@.TypeMapEntry.7168_from = private unnamed_addr constant [31 x i8] c"Android.Resource, Mono.Android\00", align 1 +@.TypeMapEntry.7169_to = private unnamed_addr constant [10 x i8] c"android/R\00", align 1 +@.TypeMapEntry.7170_from = private unnamed_addr constant [49 x i8] c"Android.Runtime.InputStreamAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.7171_to = private unnamed_addr constant [40 x i8] c"mono/android/runtime/InputStreamAdapter\00", align 1 +@.TypeMapEntry.7172_from = private unnamed_addr constant [42 x i8] c"Android.Runtime.JavaArray`1, Mono.Android\00", align 1 +@.TypeMapEntry.7173_to = private unnamed_addr constant [31 x i8] c"mono/android/runtime/JavaArray\00", align 1 +@.TypeMapEntry.7174_from = private unnamed_addr constant [45 x i8] c"Android.Runtime.JavaCollection, Mono.Android\00", align 1 +@.TypeMapEntry.7175_to = private unnamed_addr constant [21 x i8] c"java/util/Collection\00", align 1 +@.TypeMapEntry.7176_from = private unnamed_addr constant [47 x i8] c"Android.Runtime.JavaCollection`1, Mono.Android\00", align 1 +@.TypeMapEntry.7177_from = private unnamed_addr constant [45 x i8] c"Android.Runtime.JavaDictionary, Mono.Android\00", align 1 +@.TypeMapEntry.7178_to = private unnamed_addr constant [18 x i8] c"java/util/HashMap\00", align 1 +@.TypeMapEntry.7179_from = private unnamed_addr constant [47 x i8] c"Android.Runtime.JavaDictionary`2, Mono.Android\00", align 1 +@.TypeMapEntry.7180_from = private unnamed_addr constant [39 x i8] c"Android.Runtime.JavaList, Mono.Android\00", align 1 +@.TypeMapEntry.7181_to = private unnamed_addr constant [20 x i8] c"java/util/ArrayList\00", align 1 +@.TypeMapEntry.7182_from = private unnamed_addr constant [41 x i8] c"Android.Runtime.JavaList`1, Mono.Android\00", align 1 +@.TypeMapEntry.7183_from = private unnamed_addr constant [41 x i8] c"Android.Runtime.JavaObject, Mono.Android\00", align 1 +@.TypeMapEntry.7184_to = private unnamed_addr constant [32 x i8] c"mono/android/runtime/JavaObject\00", align 1 +@.TypeMapEntry.7185_from = private unnamed_addr constant [49 x i8] c"Android.Runtime.JavaProxyThrowable, Mono.Android\00", align 1 +@.TypeMapEntry.7186_to = private unnamed_addr constant [35 x i8] c"android/runtime/JavaProxyThrowable\00", align 1 +@.TypeMapEntry.7187_from = private unnamed_addr constant [38 x i8] c"Android.Runtime.JavaSet, Mono.Android\00", align 1 +@.TypeMapEntry.7188_to = private unnamed_addr constant [18 x i8] c"java/util/HashSet\00", align 1 +@.TypeMapEntry.7189_from = private unnamed_addr constant [40 x i8] c"Android.Runtime.JavaSet`1, Mono.Android\00", align 1 +@.TypeMapEntry.7190_from = private unnamed_addr constant [50 x i8] c"Android.Runtime.OutputStreamAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.7191_to = private unnamed_addr constant [41 x i8] c"mono/android/runtime/OutputStreamAdapter\00", align 1 +@.TypeMapEntry.7192_from = private unnamed_addr constant [50 x i8] c"Android.Runtime.XmlReaderPullParser, Mono.Android\00", align 1 +@.TypeMapEntry.7193_to = private unnamed_addr constant [36 x i8] c"android/runtime/XmlReaderPullParser\00", align 1 +@.TypeMapEntry.7194_from = private unnamed_addr constant [54 x i8] c"Android.Runtime.XmlReaderResourceParser, Mono.Android\00", align 1 +@.TypeMapEntry.7195_to = private unnamed_addr constant [40 x i8] c"android/runtime/XmlReaderResourceParser\00", align 1 +@.TypeMapEntry.7196_from = private unnamed_addr constant [39 x i8] c"Android.SE.Omapi.Channel, Mono.Android\00", align 1 +@.TypeMapEntry.7197_to = private unnamed_addr constant [25 x i8] c"android/se/omapi/Channel\00", align 1 +@.TypeMapEntry.7198_from = private unnamed_addr constant [38 x i8] c"Android.SE.Omapi.Reader, Mono.Android\00", align 1 +@.TypeMapEntry.7199_to = private unnamed_addr constant [24 x i8] c"android/se/omapi/Reader\00", align 1 +@.TypeMapEntry.7200_from = private unnamed_addr constant [62 x i8] c"Android.SE.Omapi.SEService+IOnConnectedListener, Mono.Android\00", align 1 +@.TypeMapEntry.7201_to = private unnamed_addr constant [47 x i8] c"android/se/omapi/SEService$OnConnectedListener\00", align 1 +@.TypeMapEntry.7202_from = private unnamed_addr constant [73 x i8] c"Android.SE.Omapi.SEService+IOnConnectedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7203_to = private unnamed_addr constant [63 x i8] c"mono/android/se/omapi/SEService_OnConnectedListenerImplementor\00", align 1 +@.TypeMapEntry.7204_from = private unnamed_addr constant [69 x i8] c"Android.SE.Omapi.SEService+IOnConnectedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7205_from = private unnamed_addr constant [41 x i8] c"Android.SE.Omapi.SEService, Mono.Android\00", align 1 +@.TypeMapEntry.7206_to = private unnamed_addr constant [27 x i8] c"android/se/omapi/SEService\00", align 1 +@.TypeMapEntry.7207_from = private unnamed_addr constant [39 x i8] c"Android.SE.Omapi.Session, Mono.Android\00", align 1 +@.TypeMapEntry.7208_to = private unnamed_addr constant [25 x i8] c"android/se/omapi/Session\00", align 1 +@.TypeMapEntry.7209_from = private unnamed_addr constant [34 x i8] c"Android.Sax.Element, Mono.Android\00", align 1 +@.TypeMapEntry.7210_to = private unnamed_addr constant [20 x i8] c"android/sax/Element\00", align 1 +@.TypeMapEntry.7211_from = private unnamed_addr constant [43 x i8] c"Android.Sax.IElementListener, Mono.Android\00", align 1 +@.TypeMapEntry.7212_to = private unnamed_addr constant [28 x i8] c"android/sax/ElementListener\00", align 1 +@.TypeMapEntry.7213_from = private unnamed_addr constant [50 x i8] c"Android.Sax.IElementListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7214_from = private unnamed_addr constant [46 x i8] c"Android.Sax.IEndElementListener, Mono.Android\00", align 1 +@.TypeMapEntry.7215_to = private unnamed_addr constant [31 x i8] c"android/sax/EndElementListener\00", align 1 +@.TypeMapEntry.7216_from = private unnamed_addr constant [57 x i8] c"Android.Sax.IEndElementListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7217_to = private unnamed_addr constant [47 x i8] c"mono/android/sax/EndElementListenerImplementor\00", align 1 +@.TypeMapEntry.7218_from = private unnamed_addr constant [53 x i8] c"Android.Sax.IEndElementListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7219_from = private unnamed_addr constant [50 x i8] c"Android.Sax.IEndTextElementListener, Mono.Android\00", align 1 +@.TypeMapEntry.7220_to = private unnamed_addr constant [35 x i8] c"android/sax/EndTextElementListener\00", align 1 +@.TypeMapEntry.7221_from = private unnamed_addr constant [61 x i8] c"Android.Sax.IEndTextElementListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7222_to = private unnamed_addr constant [51 x i8] c"mono/android/sax/EndTextElementListenerImplementor\00", align 1 +@.TypeMapEntry.7223_from = private unnamed_addr constant [57 x i8] c"Android.Sax.IEndTextElementListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7224_from = private unnamed_addr constant [48 x i8] c"Android.Sax.IStartElementListener, Mono.Android\00", align 1 +@.TypeMapEntry.7225_to = private unnamed_addr constant [33 x i8] c"android/sax/StartElementListener\00", align 1 +@.TypeMapEntry.7226_from = private unnamed_addr constant [59 x i8] c"Android.Sax.IStartElementListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7227_to = private unnamed_addr constant [49 x i8] c"mono/android/sax/StartElementListenerImplementor\00", align 1 +@.TypeMapEntry.7228_from = private unnamed_addr constant [55 x i8] c"Android.Sax.IStartElementListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7229_from = private unnamed_addr constant [47 x i8] c"Android.Sax.ITextElementListener, Mono.Android\00", align 1 +@.TypeMapEntry.7230_to = private unnamed_addr constant [32 x i8] c"android/sax/TextElementListener\00", align 1 +@.TypeMapEntry.7231_from = private unnamed_addr constant [54 x i8] c"Android.Sax.ITextElementListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7232_from = private unnamed_addr constant [38 x i8] c"Android.Sax.RootElement, Mono.Android\00", align 1 +@.TypeMapEntry.7233_to = private unnamed_addr constant [24 x i8] c"android/sax/RootElement\00", align 1 +@.TypeMapEntry.7234_from = private unnamed_addr constant [66 x i8] c"Android.Security.AppUriAuthenticationPolicy+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7235_to = private unnamed_addr constant [52 x i8] c"android/security/AppUriAuthenticationPolicy$Builder\00", align 1 +@.TypeMapEntry.7236_from = private unnamed_addr constant [58 x i8] c"Android.Security.AppUriAuthenticationPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.7237_to = private unnamed_addr constant [44 x i8] c"android/security/AppUriAuthenticationPolicy\00", align 1 +@.TypeMapEntry.7238_from = private unnamed_addr constant [47 x i8] c"Android.Security.AttestedKeyPair, Mono.Android\00", align 1 +@.TypeMapEntry.7239_to = private unnamed_addr constant [33 x i8] c"android/security/AttestedKeyPair\00", align 1 +@.TypeMapEntry.7240_from = private unnamed_addr constant [70 x i8] c"Android.Security.ConfirmationAlreadyPresentingException, Mono.Android\00", align 1 +@.TypeMapEntry.7241_to = private unnamed_addr constant [56 x i8] c"android/security/ConfirmationAlreadyPresentingException\00", align 1 +@.TypeMapEntry.7242_from = private unnamed_addr constant [52 x i8] c"Android.Security.ConfirmationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7243_to = private unnamed_addr constant [38 x i8] c"android/security/ConfirmationCallback\00", align 1 +@.TypeMapEntry.7244_from = private unnamed_addr constant [59 x i8] c"Android.Security.ConfirmationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7245_from = private unnamed_addr constant [65 x i8] c"Android.Security.ConfirmationNotAvailableException, Mono.Android\00", align 1 +@.TypeMapEntry.7246_to = private unnamed_addr constant [51 x i8] c"android/security/ConfirmationNotAvailableException\00", align 1 +@.TypeMapEntry.7247_from = private unnamed_addr constant [58 x i8] c"Android.Security.ConfirmationPrompt+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7248_to = private unnamed_addr constant [44 x i8] c"android/security/ConfirmationPrompt$Builder\00", align 1 +@.TypeMapEntry.7249_from = private unnamed_addr constant [50 x i8] c"Android.Security.ConfirmationPrompt, Mono.Android\00", align 1 +@.TypeMapEntry.7250_to = private unnamed_addr constant [36 x i8] c"android/security/ConfirmationPrompt\00", align 1 +@.TypeMapEntry.7251_from = private unnamed_addr constant [52 x i8] c"Android.Security.FileIntegrityManager, Mono.Android\00", align 1 +@.TypeMapEntry.7252_to = private unnamed_addr constant [38 x i8] c"android/security/FileIntegrityManager\00", align 1 +@.TypeMapEntry.7253_from = private unnamed_addr constant [54 x i8] c"Android.Security.IKeyChainAliasCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7254_to = private unnamed_addr constant [39 x i8] c"android/security/KeyChainAliasCallback\00", align 1 +@.TypeMapEntry.7255_from = private unnamed_addr constant [61 x i8] c"Android.Security.IKeyChainAliasCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7256_from = private unnamed_addr constant [69 x i8] c"Android.Security.Identity.AccessControlProfile+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7257_to = private unnamed_addr constant [55 x i8] c"android/security/identity/AccessControlProfile$Builder\00", align 1 +@.TypeMapEntry.7258_from = private unnamed_addr constant [61 x i8] c"Android.Security.Identity.AccessControlProfile, Mono.Android\00", align 1 +@.TypeMapEntry.7259_to = private unnamed_addr constant [47 x i8] c"android/security/identity/AccessControlProfile\00", align 1 +@.TypeMapEntry.7260_from = private unnamed_addr constant [63 x i8] c"Android.Security.Identity.AccessControlProfileId, Mono.Android\00", align 1 +@.TypeMapEntry.7261_to = private unnamed_addr constant [49 x i8] c"android/security/identity/AccessControlProfileId\00", align 1 +@.TypeMapEntry.7262_from = private unnamed_addr constant [69 x i8] c"Android.Security.Identity.AlreadyPersonalizedException, Mono.Android\00", align 1 +@.TypeMapEntry.7263_to = private unnamed_addr constant [55 x i8] c"android/security/identity/AlreadyPersonalizedException\00", align 1 +@.TypeMapEntry.7264_from = private unnamed_addr constant [66 x i8] c"Android.Security.Identity.AuthenticationKeyMetadata, Mono.Android\00", align 1 +@.TypeMapEntry.7265_to = private unnamed_addr constant [52 x i8] c"android/security/identity/AuthenticationKeyMetadata\00", align 1 +@.TypeMapEntry.7266_from = private unnamed_addr constant [73 x i8] c"Android.Security.Identity.CipherSuiteNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.7267_to = private unnamed_addr constant [59 x i8] c"android/security/identity/CipherSuiteNotSupportedException\00", align 1 +@.TypeMapEntry.7268_from = private unnamed_addr constant [70 x i8] c"Android.Security.Identity.CredentialDataRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7269_to = private unnamed_addr constant [56 x i8] c"android/security/identity/CredentialDataRequest$Builder\00", align 1 +@.TypeMapEntry.7270_from = private unnamed_addr constant [62 x i8] c"Android.Security.Identity.CredentialDataRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7271_to = private unnamed_addr constant [48 x i8] c"android/security/identity/CredentialDataRequest\00", align 1 +@.TypeMapEntry.7272_from = private unnamed_addr constant [70 x i8] c"Android.Security.Identity.CredentialDataResult+IEntries, Mono.Android\00", align 1 +@.TypeMapEntry.7273_to = private unnamed_addr constant [55 x i8] c"android/security/identity/CredentialDataResult$Entries\00", align 1 +@.TypeMapEntry.7274_from = private unnamed_addr constant [77 x i8] c"Android.Security.Identity.CredentialDataResult+IEntriesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7275_from = private unnamed_addr constant [61 x i8] c"Android.Security.Identity.CredentialDataResult, Mono.Android\00", align 1 +@.TypeMapEntry.7276_to = private unnamed_addr constant [47 x i8] c"android/security/identity/CredentialDataResult\00", align 1 +@.TypeMapEntry.7277_from = private unnamed_addr constant [68 x i8] c"Android.Security.Identity.CredentialDataResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7278_from = private unnamed_addr constant [69 x i8] c"Android.Security.Identity.DocTypeNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.7279_to = private unnamed_addr constant [55 x i8] c"android/security/identity/DocTypeNotSupportedException\00", align 1 +@.TypeMapEntry.7280_from = private unnamed_addr constant [76 x i8] c"Android.Security.Identity.EphemeralPublicKeyNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.7281_to = private unnamed_addr constant [62 x i8] c"android/security/identity/EphemeralPublicKeyNotFoundException\00", align 1 +@.TypeMapEntry.7282_from = private unnamed_addr constant [59 x i8] c"Android.Security.Identity.IdentityCredential, Mono.Android\00", align 1 +@.TypeMapEntry.7283_to = private unnamed_addr constant [45 x i8] c"android/security/identity/IdentityCredential\00", align 1 +@.TypeMapEntry.7284_from = private unnamed_addr constant [68 x i8] c"Android.Security.Identity.IdentityCredentialException, Mono.Android\00", align 1 +@.TypeMapEntry.7285_to = private unnamed_addr constant [54 x i8] c"android/security/identity/IdentityCredentialException\00", align 1 +@.TypeMapEntry.7286_from = private unnamed_addr constant [66 x i8] c"Android.Security.Identity.IdentityCredentialInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7287_from = private unnamed_addr constant [64 x i8] c"Android.Security.Identity.IdentityCredentialStore, Mono.Android\00", align 1 +@.TypeMapEntry.7288_to = private unnamed_addr constant [50 x i8] c"android/security/identity/IdentityCredentialStore\00", align 1 +@.TypeMapEntry.7289_from = private unnamed_addr constant [71 x i8] c"Android.Security.Identity.IdentityCredentialStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7290_from = private unnamed_addr constant [72 x i8] c"Android.Security.Identity.InvalidReaderSignatureException, Mono.Android\00", align 1 +@.TypeMapEntry.7291_to = private unnamed_addr constant [58 x i8] c"android/security/identity/InvalidReaderSignatureException\00", align 1 +@.TypeMapEntry.7292_from = private unnamed_addr constant [71 x i8] c"Android.Security.Identity.InvalidRequestMessageException, Mono.Android\00", align 1 +@.TypeMapEntry.7293_to = private unnamed_addr constant [57 x i8] c"android/security/identity/InvalidRequestMessageException\00", align 1 +@.TypeMapEntry.7294_from = private unnamed_addr constant [67 x i8] c"Android.Security.Identity.MessageDecryptionException, Mono.Android\00", align 1 +@.TypeMapEntry.7295_to = private unnamed_addr constant [53 x i8] c"android/security/identity/MessageDecryptionException\00", align 1 +@.TypeMapEntry.7296_from = private unnamed_addr constant [78 x i8] c"Android.Security.Identity.NoAuthenticationKeyAvailableException, Mono.Android\00", align 1 +@.TypeMapEntry.7297_to = private unnamed_addr constant [64 x i8] c"android/security/identity/NoAuthenticationKeyAvailableException\00", align 1 +@.TypeMapEntry.7298_from = private unnamed_addr constant [68 x i8] c"Android.Security.Identity.PersonalizationData+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7299_to = private unnamed_addr constant [54 x i8] c"android/security/identity/PersonalizationData$Builder\00", align 1 +@.TypeMapEntry.7300_from = private unnamed_addr constant [60 x i8] c"Android.Security.Identity.PersonalizationData, Mono.Android\00", align 1 +@.TypeMapEntry.7301_to = private unnamed_addr constant [46 x i8] c"android/security/identity/PersonalizationData\00", align 1 +@.TypeMapEntry.7302_from = private unnamed_addr constant [60 x i8] c"Android.Security.Identity.PresentationSession, Mono.Android\00", align 1 +@.TypeMapEntry.7303_to = private unnamed_addr constant [46 x i8] c"android/security/identity/PresentationSession\00", align 1 +@.TypeMapEntry.7304_from = private unnamed_addr constant [67 x i8] c"Android.Security.Identity.PresentationSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7305_from = private unnamed_addr constant [51 x i8] c"Android.Security.Identity.ResultData, Mono.Android\00", align 1 +@.TypeMapEntry.7306_to = private unnamed_addr constant [37 x i8] c"android/security/identity/ResultData\00", align 1 +@.TypeMapEntry.7307_from = private unnamed_addr constant [58 x i8] c"Android.Security.Identity.ResultDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7308_from = private unnamed_addr constant [75 x i8] c"Android.Security.Identity.SessionTranscriptMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.7309_to = private unnamed_addr constant [61 x i8] c"android/security/identity/SessionTranscriptMismatchException\00", align 1 +@.TypeMapEntry.7310_from = private unnamed_addr constant [74 x i8] c"Android.Security.Identity.UnknownAuthenticationKeyException, Mono.Android\00", align 1 +@.TypeMapEntry.7311_to = private unnamed_addr constant [60 x i8] c"android/security/identity/UnknownAuthenticationKeyException\00", align 1 +@.TypeMapEntry.7312_from = private unnamed_addr constant [67 x i8] c"Android.Security.Identity.WritableIdentityCredential, Mono.Android\00", align 1 +@.TypeMapEntry.7313_to = private unnamed_addr constant [53 x i8] c"android/security/identity/WritableIdentityCredential\00", align 1 +@.TypeMapEntry.7314_from = private unnamed_addr constant [74 x i8] c"Android.Security.Identity.WritableIdentityCredentialInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7315_from = private unnamed_addr constant [62 x i8] c"Android.Security.KeyChain+KeyChainAliasCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7316_to = private unnamed_addr constant [48 x i8] c"android/security/KeyChain_KeyChainAliasCallback\00", align 1 +@.TypeMapEntry.7317_from = private unnamed_addr constant [40 x i8] c"Android.Security.KeyChain, Mono.Android\00", align 1 +@.TypeMapEntry.7318_to = private unnamed_addr constant [26 x i8] c"android/security/KeyChain\00", align 1 +@.TypeMapEntry.7319_from = private unnamed_addr constant [49 x i8] c"Android.Security.KeyChainException, Mono.Android\00", align 1 +@.TypeMapEntry.7320_to = private unnamed_addr constant [35 x i8] c"android/security/KeyChainException\00", align 1 +@.TypeMapEntry.7321_from = private unnamed_addr constant [60 x i8] c"Android.Security.KeyPairGeneratorSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7322_to = private unnamed_addr constant [46 x i8] c"android/security/KeyPairGeneratorSpec$Builder\00", align 1 +@.TypeMapEntry.7323_from = private unnamed_addr constant [52 x i8] c"Android.Security.KeyPairGeneratorSpec, Mono.Android\00", align 1 +@.TypeMapEntry.7324_to = private unnamed_addr constant [38 x i8] c"android/security/KeyPairGeneratorSpec\00", align 1 +@.TypeMapEntry.7325_from = private unnamed_addr constant [49 x i8] c"Android.Security.KeyStoreException, Mono.Android\00", align 1 +@.TypeMapEntry.7326_to = private unnamed_addr constant [35 x i8] c"android/security/KeyStoreException\00", align 1 +@.TypeMapEntry.7327_from = private unnamed_addr constant [57 x i8] c"Android.Security.KeyStoreParameter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7328_to = private unnamed_addr constant [43 x i8] c"android/security/KeyStoreParameter$Builder\00", align 1 +@.TypeMapEntry.7329_from = private unnamed_addr constant [49 x i8] c"Android.Security.KeyStoreParameter, Mono.Android\00", align 1 +@.TypeMapEntry.7330_to = private unnamed_addr constant [35 x i8] c"android/security/KeyStoreParameter\00", align 1 +@.TypeMapEntry.7331_from = private unnamed_addr constant [61 x i8] c"Android.Security.Keystore.BackendBusyException, Mono.Android\00", align 1 +@.TypeMapEntry.7332_to = private unnamed_addr constant [47 x i8] c"android/security/keystore/BackendBusyException\00", align 1 +@.TypeMapEntry.7333_from = private unnamed_addr constant [60 x i8] c"Android.Security.Keystore.KeyExpiredException, Mono.Android\00", align 1 +@.TypeMapEntry.7334_to = private unnamed_addr constant [46 x i8] c"android/security/keystore/KeyExpiredException\00", align 1 +@.TypeMapEntry.7335_from = private unnamed_addr constant [68 x i8] c"Android.Security.Keystore.KeyGenParameterSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7336_to = private unnamed_addr constant [54 x i8] c"android/security/keystore/KeyGenParameterSpec$Builder\00", align 1 +@.TypeMapEntry.7337_from = private unnamed_addr constant [60 x i8] c"Android.Security.Keystore.KeyGenParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.7338_to = private unnamed_addr constant [46 x i8] c"android/security/keystore/KeyGenParameterSpec\00", align 1 +@.TypeMapEntry.7339_from = private unnamed_addr constant [48 x i8] c"Android.Security.Keystore.KeyInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7340_to = private unnamed_addr constant [34 x i8] c"android/security/keystore/KeyInfo\00", align 1 +@.TypeMapEntry.7341_from = private unnamed_addr constant [64 x i8] c"Android.Security.Keystore.KeyNotYetValidException, Mono.Android\00", align 1 +@.TypeMapEntry.7342_to = private unnamed_addr constant [50 x i8] c"android/security/keystore/KeyNotYetValidException\00", align 1 +@.TypeMapEntry.7343_from = private unnamed_addr constant [75 x i8] c"Android.Security.Keystore.KeyPermanentlyInvalidatedException, Mono.Android\00", align 1 +@.TypeMapEntry.7344_to = private unnamed_addr constant [61 x i8] c"android/security/keystore/KeyPermanentlyInvalidatedException\00", align 1 +@.TypeMapEntry.7345_from = private unnamed_addr constant [54 x i8] c"Android.Security.Keystore.KeyProperties, Mono.Android\00", align 1 +@.TypeMapEntry.7346_to = private unnamed_addr constant [40 x i8] c"android/security/keystore/KeyProperties\00", align 1 +@.TypeMapEntry.7347_from = private unnamed_addr constant [61 x i8] c"Android.Security.Keystore.KeyPropertiesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7348_from = private unnamed_addr constant [62 x i8] c"Android.Security.Keystore.KeyProtection+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7349_to = private unnamed_addr constant [48 x i8] c"android/security/keystore/KeyProtection$Builder\00", align 1 +@.TypeMapEntry.7350_from = private unnamed_addr constant [54 x i8] c"Android.Security.Keystore.KeyProtection, Mono.Android\00", align 1 +@.TypeMapEntry.7351_to = private unnamed_addr constant [40 x i8] c"android/security/keystore/KeyProtection\00", align 1 +@.TypeMapEntry.7352_from = private unnamed_addr constant [76 x i8] c"Android.Security.Keystore.SecureKeyImportUnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.7353_to = private unnamed_addr constant [62 x i8] c"android/security/keystore/SecureKeyImportUnavailableException\00", align 1 +@.TypeMapEntry.7354_from = private unnamed_addr constant [70 x i8] c"Android.Security.Keystore.StrongBoxUnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.7355_to = private unnamed_addr constant [56 x i8] c"android/security/keystore/StrongBoxUnavailableException\00", align 1 +@.TypeMapEntry.7356_from = private unnamed_addr constant [70 x i8] c"Android.Security.Keystore.UserNotAuthenticatedException, Mono.Android\00", align 1 +@.TypeMapEntry.7357_to = private unnamed_addr constant [56 x i8] c"android/security/keystore/UserNotAuthenticatedException\00", align 1 +@.TypeMapEntry.7358_from = private unnamed_addr constant [73 x i8] c"Android.Security.Keystore.UserPresenceUnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.7359_to = private unnamed_addr constant [59 x i8] c"android/security/keystore/UserPresenceUnavailableException\00", align 1 +@.TypeMapEntry.7360_from = private unnamed_addr constant [56 x i8] c"Android.Security.Keystore.WrappedKeyEntry, Mono.Android\00", align 1 +@.TypeMapEntry.7361_to = private unnamed_addr constant [42 x i8] c"android/security/keystore/WrappedKeyEntry\00", align 1 +@.TypeMapEntry.7362_from = private unnamed_addr constant [53 x i8] c"Android.Security.NetworkSecurityPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.7363_to = private unnamed_addr constant [39 x i8] c"android/security/NetworkSecurityPolicy\00", align 1 +@.TypeMapEntry.7364_from = private unnamed_addr constant [72 x i8] c"Android.Service.Assist.Classification.FieldClassification, Mono.Android\00", align 1 +@.TypeMapEntry.7365_to = private unnamed_addr constant [58 x i8] c"android/service/assist/classification/FieldClassification\00", align 1 +@.TypeMapEntry.7366_from = private unnamed_addr constant [55 x i8] c"Android.Service.Autofill.AutofillService, Mono.Android\00", align 1 +@.TypeMapEntry.7367_to = private unnamed_addr constant [41 x i8] c"android/service/autofill/AutofillService\00", align 1 +@.TypeMapEntry.7368_from = private unnamed_addr constant [62 x i8] c"Android.Service.Autofill.AutofillServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7369_from = private unnamed_addr constant [60 x i8] c"Android.Service.Autofill.BatchUpdates+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7370_to = private unnamed_addr constant [46 x i8] c"android/service/autofill/BatchUpdates$Builder\00", align 1 +@.TypeMapEntry.7371_from = private unnamed_addr constant [52 x i8] c"Android.Service.Autofill.BatchUpdates, Mono.Android\00", align 1 +@.TypeMapEntry.7372_to = private unnamed_addr constant [38 x i8] c"android/service/autofill/BatchUpdates\00", align 1 +@.TypeMapEntry.7373_from = private unnamed_addr constant [74 x i8] c"Android.Service.Autofill.CharSequenceTransformation+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7374_to = private unnamed_addr constant [60 x i8] c"android/service/autofill/CharSequenceTransformation$Builder\00", align 1 +@.TypeMapEntry.7375_from = private unnamed_addr constant [66 x i8] c"Android.Service.Autofill.CharSequenceTransformation, Mono.Android\00", align 1 +@.TypeMapEntry.7376_to = private unnamed_addr constant [52 x i8] c"android/service/autofill/CharSequenceTransformation\00", align 1 +@.TypeMapEntry.7377_from = private unnamed_addr constant [65 x i8] c"Android.Service.Autofill.CustomDescription+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7378_to = private unnamed_addr constant [51 x i8] c"android/service/autofill/CustomDescription$Builder\00", align 1 +@.TypeMapEntry.7379_from = private unnamed_addr constant [57 x i8] c"Android.Service.Autofill.CustomDescription, Mono.Android\00", align 1 +@.TypeMapEntry.7380_to = private unnamed_addr constant [43 x i8] c"android/service/autofill/CustomDescription\00", align 1 +@.TypeMapEntry.7381_from = private unnamed_addr constant [55 x i8] c"Android.Service.Autofill.Dataset+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7382_to = private unnamed_addr constant [41 x i8] c"android/service/autofill/Dataset$Builder\00", align 1 +@.TypeMapEntry.7383_from = private unnamed_addr constant [47 x i8] c"Android.Service.Autofill.Dataset, Mono.Android\00", align 1 +@.TypeMapEntry.7384_to = private unnamed_addr constant [33 x i8] c"android/service/autofill/Dataset\00", align 1 +@.TypeMapEntry.7385_from = private unnamed_addr constant [58 x i8] c"Android.Service.Autofill.DateTransformation, Mono.Android\00", align 1 +@.TypeMapEntry.7386_to = private unnamed_addr constant [44 x i8] c"android/service/autofill/DateTransformation\00", align 1 +@.TypeMapEntry.7387_from = private unnamed_addr constant [58 x i8] c"Android.Service.Autofill.DateValueSanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.7388_to = private unnamed_addr constant [44 x i8] c"android/service/autofill/DateValueSanitizer\00", align 1 +@.TypeMapEntry.7389_from = private unnamed_addr constant [53 x i8] c"Android.Service.Autofill.Field+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7390_to = private unnamed_addr constant [39 x i8] c"android/service/autofill/Field$Builder\00", align 1 +@.TypeMapEntry.7391_from = private unnamed_addr constant [45 x i8] c"Android.Service.Autofill.Field, Mono.Android\00", align 1 +@.TypeMapEntry.7392_to = private unnamed_addr constant [31 x i8] c"android/service/autofill/Field\00", align 1 +@.TypeMapEntry.7393_from = private unnamed_addr constant [65 x i8] c"Android.Service.Autofill.FieldClassification+Match, Mono.Android\00", align 1 +@.TypeMapEntry.7394_to = private unnamed_addr constant [51 x i8] c"android/service/autofill/FieldClassification$Match\00", align 1 +@.TypeMapEntry.7395_from = private unnamed_addr constant [59 x i8] c"Android.Service.Autofill.FieldClassification, Mono.Android\00", align 1 +@.TypeMapEntry.7396_to = private unnamed_addr constant [45 x i8] c"android/service/autofill/FieldClassification\00", align 1 +@.TypeMapEntry.7397_from = private unnamed_addr constant [52 x i8] c"Android.Service.Autofill.FillCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7398_to = private unnamed_addr constant [38 x i8] c"android/service/autofill/FillCallback\00", align 1 +@.TypeMapEntry.7399_from = private unnamed_addr constant [51 x i8] c"Android.Service.Autofill.FillContext, Mono.Android\00", align 1 +@.TypeMapEntry.7400_to = private unnamed_addr constant [37 x i8] c"android/service/autofill/FillContext\00", align 1 +@.TypeMapEntry.7401_from = private unnamed_addr constant [62 x i8] c"Android.Service.Autofill.FillEventHistory+Event, Mono.Android\00", align 1 +@.TypeMapEntry.7402_to = private unnamed_addr constant [48 x i8] c"android/service/autofill/FillEventHistory$Event\00", align 1 +@.TypeMapEntry.7403_from = private unnamed_addr constant [56 x i8] c"Android.Service.Autofill.FillEventHistory, Mono.Android\00", align 1 +@.TypeMapEntry.7404_to = private unnamed_addr constant [42 x i8] c"android/service/autofill/FillEventHistory\00", align 1 +@.TypeMapEntry.7405_from = private unnamed_addr constant [51 x i8] c"Android.Service.Autofill.FillRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7406_to = private unnamed_addr constant [37 x i8] c"android/service/autofill/FillRequest\00", align 1 +@.TypeMapEntry.7407_from = private unnamed_addr constant [60 x i8] c"Android.Service.Autofill.FillResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7408_to = private unnamed_addr constant [46 x i8] c"android/service/autofill/FillResponse$Builder\00", align 1 +@.TypeMapEntry.7409_from = private unnamed_addr constant [52 x i8] c"Android.Service.Autofill.FillResponse, Mono.Android\00", align 1 +@.TypeMapEntry.7410_to = private unnamed_addr constant [38 x i8] c"android/service/autofill/FillResponse\00", align 1 +@.TypeMapEntry.7411_from = private unnamed_addr constant [54 x i8] c"Android.Service.Autofill.IOnClickAction, Mono.Android\00", align 1 +@.TypeMapEntry.7412_to = private unnamed_addr constant [39 x i8] c"android/service/autofill/OnClickAction\00", align 1 +@.TypeMapEntry.7413_from = private unnamed_addr constant [61 x i8] c"Android.Service.Autofill.IOnClickActionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7414_from = private unnamed_addr constant [50 x i8] c"Android.Service.Autofill.ISanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.7415_to = private unnamed_addr constant [35 x i8] c"android/service/autofill/Sanitizer\00", align 1 +@.TypeMapEntry.7416_from = private unnamed_addr constant [57 x i8] c"Android.Service.Autofill.ISanitizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7417_from = private unnamed_addr constant [66 x i8] c"Android.Service.Autofill.ISavedDatasetsInfoCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7418_to = private unnamed_addr constant [51 x i8] c"android/service/autofill/SavedDatasetsInfoCallback\00", align 1 +@.TypeMapEntry.7419_from = private unnamed_addr constant [73 x i8] c"Android.Service.Autofill.ISavedDatasetsInfoCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7420_from = private unnamed_addr constant [55 x i8] c"Android.Service.Autofill.ITransformation, Mono.Android\00", align 1 +@.TypeMapEntry.7421_to = private unnamed_addr constant [40 x i8] c"android/service/autofill/Transformation\00", align 1 +@.TypeMapEntry.7422_from = private unnamed_addr constant [62 x i8] c"Android.Service.Autofill.ITransformationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7423_from = private unnamed_addr constant [50 x i8] c"Android.Service.Autofill.IValidator, Mono.Android\00", align 1 +@.TypeMapEntry.7424_to = private unnamed_addr constant [35 x i8] c"android/service/autofill/Validator\00", align 1 +@.TypeMapEntry.7425_from = private unnamed_addr constant [57 x i8] c"Android.Service.Autofill.IValidatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7426_from = private unnamed_addr constant [67 x i8] c"Android.Service.Autofill.ImageTransformation+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7427_to = private unnamed_addr constant [53 x i8] c"android/service/autofill/ImageTransformation$Builder\00", align 1 +@.TypeMapEntry.7428_from = private unnamed_addr constant [59 x i8] c"Android.Service.Autofill.ImageTransformation, Mono.Android\00", align 1 +@.TypeMapEntry.7429_to = private unnamed_addr constant [45 x i8] c"android/service/autofill/ImageTransformation\00", align 1 +@.TypeMapEntry.7430_from = private unnamed_addr constant [58 x i8] c"Android.Service.Autofill.InlinePresentation, Mono.Android\00", align 1 +@.TypeMapEntry.7431_to = private unnamed_addr constant [44 x i8] c"android/service/autofill/InlinePresentation\00", align 1 +@.TypeMapEntry.7432_from = private unnamed_addr constant [61 x i8] c"Android.Service.Autofill.LuhnChecksumValidator, Mono.Android\00", align 1 +@.TypeMapEntry.7433_to = private unnamed_addr constant [47 x i8] c"android/service/autofill/LuhnChecksumValidator\00", align 1 +@.TypeMapEntry.7434_from = private unnamed_addr constant [61 x i8] c"Android.Service.Autofill.Presentations+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7435_to = private unnamed_addr constant [47 x i8] c"android/service/autofill/Presentations$Builder\00", align 1 +@.TypeMapEntry.7436_from = private unnamed_addr constant [53 x i8] c"Android.Service.Autofill.Presentations, Mono.Android\00", align 1 +@.TypeMapEntry.7437_to = private unnamed_addr constant [39 x i8] c"android/service/autofill/Presentations\00", align 1 +@.TypeMapEntry.7438_from = private unnamed_addr constant [54 x i8] c"Android.Service.Autofill.RegexValidator, Mono.Android\00", align 1 +@.TypeMapEntry.7439_to = private unnamed_addr constant [40 x i8] c"android/service/autofill/RegexValidator\00", align 1 +@.TypeMapEntry.7440_from = private unnamed_addr constant [52 x i8] c"Android.Service.Autofill.SaveCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7441_to = private unnamed_addr constant [38 x i8] c"android/service/autofill/SaveCallback\00", align 1 +@.TypeMapEntry.7442_from = private unnamed_addr constant [56 x i8] c"Android.Service.Autofill.SaveInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7443_to = private unnamed_addr constant [42 x i8] c"android/service/autofill/SaveInfo$Builder\00", align 1 +@.TypeMapEntry.7444_from = private unnamed_addr constant [48 x i8] c"Android.Service.Autofill.SaveInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7445_to = private unnamed_addr constant [34 x i8] c"android/service/autofill/SaveInfo\00", align 1 +@.TypeMapEntry.7446_from = private unnamed_addr constant [51 x i8] c"Android.Service.Autofill.SaveRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7447_to = private unnamed_addr constant [37 x i8] c"android/service/autofill/SaveRequest\00", align 1 +@.TypeMapEntry.7448_from = private unnamed_addr constant [57 x i8] c"Android.Service.Autofill.SavedDatasetsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7449_to = private unnamed_addr constant [43 x i8] c"android/service/autofill/SavedDatasetsInfo\00", align 1 +@.TypeMapEntry.7450_from = private unnamed_addr constant [58 x i8] c"Android.Service.Autofill.TextValueSanitizer, Mono.Android\00", align 1 +@.TypeMapEntry.7451_to = private unnamed_addr constant [44 x i8] c"android/service/autofill/TextValueSanitizer\00", align 1 +@.TypeMapEntry.7452_from = private unnamed_addr constant [56 x i8] c"Android.Service.Autofill.UserData+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7453_to = private unnamed_addr constant [42 x i8] c"android/service/autofill/UserData$Builder\00", align 1 +@.TypeMapEntry.7454_from = private unnamed_addr constant [48 x i8] c"Android.Service.Autofill.UserData, Mono.Android\00", align 1 +@.TypeMapEntry.7455_to = private unnamed_addr constant [34 x i8] c"android/service/autofill/UserData\00", align 1 +@.TypeMapEntry.7456_from = private unnamed_addr constant [50 x i8] c"Android.Service.Autofill.Validators, Mono.Android\00", align 1 +@.TypeMapEntry.7457_to = private unnamed_addr constant [36 x i8] c"android/service/autofill/Validators\00", align 1 +@.TypeMapEntry.7458_from = private unnamed_addr constant [70 x i8] c"Android.Service.Autofill.VisibilitySetterAction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7459_to = private unnamed_addr constant [56 x i8] c"android/service/autofill/VisibilitySetterAction$Builder\00", align 1 +@.TypeMapEntry.7460_from = private unnamed_addr constant [62 x i8] c"Android.Service.Autofill.VisibilitySetterAction, Mono.Android\00", align 1 +@.TypeMapEntry.7461_to = private unnamed_addr constant [48 x i8] c"android/service/autofill/VisibilitySetterAction\00", align 1 +@.TypeMapEntry.7462_from = private unnamed_addr constant [56 x i8] c"Android.Service.Carrier.CarrierIdentifier, Mono.Android\00", align 1 +@.TypeMapEntry.7463_to = private unnamed_addr constant [42 x i8] c"android/service/carrier/CarrierIdentifier\00", align 1 +@.TypeMapEntry.7464_from = private unnamed_addr constant [68 x i8] c"Android.Service.Carrier.CarrierMessagingClientService, Mono.Android\00", align 1 +@.TypeMapEntry.7465_to = private unnamed_addr constant [54 x i8] c"android/service/carrier/CarrierMessagingClientService\00", align 1 +@.TypeMapEntry.7466_from = private unnamed_addr constant [78 x i8] c"Android.Service.Carrier.CarrierMessagingService+IResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7467_to = private unnamed_addr constant [63 x i8] c"android/service/carrier/CarrierMessagingService$ResultCallback\00", align 1 +@.TypeMapEntry.7468_from = private unnamed_addr constant [85 x i8] c"Android.Service.Carrier.CarrierMessagingService+IResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7469_from = private unnamed_addr constant [76 x i8] c"Android.Service.Carrier.CarrierMessagingService+SendMmsResult, Mono.Android\00", align 1 +@.TypeMapEntry.7470_to = private unnamed_addr constant [62 x i8] c"android/service/carrier/CarrierMessagingService$SendMmsResult\00", align 1 +@.TypeMapEntry.7471_from = private unnamed_addr constant [85 x i8] c"Android.Service.Carrier.CarrierMessagingService+SendMultipartSmsResult, Mono.Android\00", align 1 +@.TypeMapEntry.7472_to = private unnamed_addr constant [71 x i8] c"android/service/carrier/CarrierMessagingService$SendMultipartSmsResult\00", align 1 +@.TypeMapEntry.7473_from = private unnamed_addr constant [76 x i8] c"Android.Service.Carrier.CarrierMessagingService+SendSmsResult, Mono.Android\00", align 1 +@.TypeMapEntry.7474_to = private unnamed_addr constant [62 x i8] c"android/service/carrier/CarrierMessagingService$SendSmsResult\00", align 1 +@.TypeMapEntry.7475_from = private unnamed_addr constant [62 x i8] c"Android.Service.Carrier.CarrierMessagingService, Mono.Android\00", align 1 +@.TypeMapEntry.7476_to = private unnamed_addr constant [48 x i8] c"android/service/carrier/CarrierMessagingService\00", align 1 +@.TypeMapEntry.7477_from = private unnamed_addr constant [69 x i8] c"Android.Service.Carrier.CarrierMessagingServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7478_from = private unnamed_addr constant [53 x i8] c"Android.Service.Carrier.CarrierService, Mono.Android\00", align 1 +@.TypeMapEntry.7479_to = private unnamed_addr constant [39 x i8] c"android/service/carrier/CarrierService\00", align 1 +@.TypeMapEntry.7480_from = private unnamed_addr constant [60 x i8] c"Android.Service.Carrier.CarrierServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7481_from = private unnamed_addr constant [49 x i8] c"Android.Service.Carrier.MessagePdu, Mono.Android\00", align 1 +@.TypeMapEntry.7482_to = private unnamed_addr constant [35 x i8] c"android/service/carrier/MessagePdu\00", align 1 +@.TypeMapEntry.7483_from = private unnamed_addr constant [60 x i8] c"Android.Service.Chooser.ChooserAction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7484_to = private unnamed_addr constant [46 x i8] c"android/service/chooser/ChooserAction$Builder\00", align 1 +@.TypeMapEntry.7485_from = private unnamed_addr constant [52 x i8] c"Android.Service.Chooser.ChooserAction, Mono.Android\00", align 1 +@.TypeMapEntry.7486_to = private unnamed_addr constant [38 x i8] c"android/service/chooser/ChooserAction\00", align 1 +@.TypeMapEntry.7487_from = private unnamed_addr constant [52 x i8] c"Android.Service.Chooser.ChooserResult, Mono.Android\00", align 1 +@.TypeMapEntry.7488_to = private unnamed_addr constant [38 x i8] c"android/service/chooser/ChooserResult\00", align 1 +@.TypeMapEntry.7489_from = private unnamed_addr constant [52 x i8] c"Android.Service.Chooser.ChooserTarget, Mono.Android\00", align 1 +@.TypeMapEntry.7490_to = private unnamed_addr constant [38 x i8] c"android/service/chooser/ChooserTarget\00", align 1 +@.TypeMapEntry.7491_from = private unnamed_addr constant [59 x i8] c"Android.Service.Chooser.ChooserTargetService, Mono.Android\00", align 1 +@.TypeMapEntry.7492_to = private unnamed_addr constant [45 x i8] c"android/service/chooser/ChooserTargetService\00", align 1 +@.TypeMapEntry.7493_from = private unnamed_addr constant [66 x i8] c"Android.Service.Chooser.ChooserTargetServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7494_from = private unnamed_addr constant [65 x i8] c"Android.Service.Chooser.IAdditionalContentContract, Mono.Android\00", align 1 +@.TypeMapEntry.7495_to = private unnamed_addr constant [50 x i8] c"android/service/chooser/AdditionalContentContract\00", align 1 +@.TypeMapEntry.7496_from = private unnamed_addr constant [72 x i8] c"Android.Service.Chooser.IAdditionalContentContractInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7497_from = private unnamed_addr constant [61 x i8] c"Android.Service.Controls.Actions.BooleanAction, Mono.Android\00", align 1 +@.TypeMapEntry.7498_to = private unnamed_addr constant [47 x i8] c"android/service/controls/actions/BooleanAction\00", align 1 +@.TypeMapEntry.7499_from = private unnamed_addr constant [61 x i8] c"Android.Service.Controls.Actions.CommandAction, Mono.Android\00", align 1 +@.TypeMapEntry.7500_to = private unnamed_addr constant [47 x i8] c"android/service/controls/actions/CommandAction\00", align 1 +@.TypeMapEntry.7501_from = private unnamed_addr constant [61 x i8] c"Android.Service.Controls.Actions.ControlAction, Mono.Android\00", align 1 +@.TypeMapEntry.7502_to = private unnamed_addr constant [47 x i8] c"android/service/controls/actions/ControlAction\00", align 1 +@.TypeMapEntry.7503_from = private unnamed_addr constant [68 x i8] c"Android.Service.Controls.Actions.ControlActionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7504_from = private unnamed_addr constant [59 x i8] c"Android.Service.Controls.Actions.FloatAction, Mono.Android\00", align 1 +@.TypeMapEntry.7505_to = private unnamed_addr constant [45 x i8] c"android/service/controls/actions/FloatAction\00", align 1 +@.TypeMapEntry.7506_from = private unnamed_addr constant [58 x i8] c"Android.Service.Controls.Actions.ModeAction, Mono.Android\00", align 1 +@.TypeMapEntry.7507_to = private unnamed_addr constant [44 x i8] c"android/service/controls/actions/ModeAction\00", align 1 +@.TypeMapEntry.7508_from = private unnamed_addr constant [63 x i8] c"Android.Service.Controls.Control+StatefulBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.7509_to = private unnamed_addr constant [49 x i8] c"android/service/controls/Control$StatefulBuilder\00", align 1 +@.TypeMapEntry.7510_from = private unnamed_addr constant [64 x i8] c"Android.Service.Controls.Control+StatelessBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.7511_to = private unnamed_addr constant [50 x i8] c"android/service/controls/Control$StatelessBuilder\00", align 1 +@.TypeMapEntry.7512_from = private unnamed_addr constant [47 x i8] c"Android.Service.Controls.Control, Mono.Android\00", align 1 +@.TypeMapEntry.7513_to = private unnamed_addr constant [33 x i8] c"android/service/controls/Control\00", align 1 +@.TypeMapEntry.7514_from = private unnamed_addr constant [63 x i8] c"Android.Service.Controls.ControlsProviderService, Mono.Android\00", align 1 +@.TypeMapEntry.7515_to = private unnamed_addr constant [49 x i8] c"android/service/controls/ControlsProviderService\00", align 1 +@.TypeMapEntry.7516_from = private unnamed_addr constant [70 x i8] c"Android.Service.Controls.ControlsProviderServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7517_from = private unnamed_addr constant [51 x i8] c"Android.Service.Controls.DeviceTypes, Mono.Android\00", align 1 +@.TypeMapEntry.7518_to = private unnamed_addr constant [37 x i8] c"android/service/controls/DeviceTypes\00", align 1 +@.TypeMapEntry.7519_from = private unnamed_addr constant [63 x i8] c"Android.Service.Controls.Templates.ControlButton, Mono.Android\00", align 1 +@.TypeMapEntry.7520_to = private unnamed_addr constant [49 x i8] c"android/service/controls/templates/ControlButton\00", align 1 +@.TypeMapEntry.7521_from = private unnamed_addr constant [65 x i8] c"Android.Service.Controls.Templates.ControlTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7522_to = private unnamed_addr constant [51 x i8] c"android/service/controls/templates/ControlTemplate\00", align 1 +@.TypeMapEntry.7523_from = private unnamed_addr constant [72 x i8] c"Android.Service.Controls.Templates.ControlTemplateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7524_from = private unnamed_addr constant [63 x i8] c"Android.Service.Controls.Templates.RangeTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7525_to = private unnamed_addr constant [49 x i8] c"android/service/controls/templates/RangeTemplate\00", align 1 +@.TypeMapEntry.7526_from = private unnamed_addr constant [67 x i8] c"Android.Service.Controls.Templates.StatelessTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7527_to = private unnamed_addr constant [53 x i8] c"android/service/controls/templates/StatelessTemplate\00", align 1 +@.TypeMapEntry.7528_from = private unnamed_addr constant [76 x i8] c"Android.Service.Controls.Templates.TemperatureControlTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7529_to = private unnamed_addr constant [62 x i8] c"android/service/controls/templates/TemperatureControlTemplate\00", align 1 +@.TypeMapEntry.7530_from = private unnamed_addr constant [67 x i8] c"Android.Service.Controls.Templates.ThumbnailTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7531_to = private unnamed_addr constant [53 x i8] c"android/service/controls/templates/ThumbnailTemplate\00", align 1 +@.TypeMapEntry.7532_from = private unnamed_addr constant [69 x i8] c"Android.Service.Controls.Templates.ToggleRangeTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7533_to = private unnamed_addr constant [55 x i8] c"android/service/controls/templates/ToggleRangeTemplate\00", align 1 +@.TypeMapEntry.7534_from = private unnamed_addr constant [64 x i8] c"Android.Service.Controls.Templates.ToggleTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.7535_to = private unnamed_addr constant [50 x i8] c"android/service/controls/templates/ToggleTemplate\00", align 1 +@.TypeMapEntry.7536_from = private unnamed_addr constant [49 x i8] c"Android.Service.Credentials.Action, Mono.Android\00", align 1 +@.TypeMapEntry.7537_to = private unnamed_addr constant [35 x i8] c"android/service/credentials/Action\00", align 1 +@.TypeMapEntry.7538_from = private unnamed_addr constant [71 x i8] c"Android.Service.Credentials.BeginCreateCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7539_to = private unnamed_addr constant [57 x i8] c"android/service/credentials/BeginCreateCredentialRequest\00", align 1 +@.TypeMapEntry.7540_from = private unnamed_addr constant [80 x i8] c"Android.Service.Credentials.BeginCreateCredentialResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7541_to = private unnamed_addr constant [66 x i8] c"android/service/credentials/BeginCreateCredentialResponse$Builder\00", align 1 +@.TypeMapEntry.7542_from = private unnamed_addr constant [72 x i8] c"Android.Service.Credentials.BeginCreateCredentialResponse, Mono.Android\00", align 1 +@.TypeMapEntry.7543_to = private unnamed_addr constant [58 x i8] c"android/service/credentials/BeginCreateCredentialResponse\00", align 1 +@.TypeMapEntry.7544_from = private unnamed_addr constant [67 x i8] c"Android.Service.Credentials.BeginGetCredentialOption, Mono.Android\00", align 1 +@.TypeMapEntry.7545_to = private unnamed_addr constant [53 x i8] c"android/service/credentials/BeginGetCredentialOption\00", align 1 +@.TypeMapEntry.7546_from = private unnamed_addr constant [76 x i8] c"Android.Service.Credentials.BeginGetCredentialRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7547_to = private unnamed_addr constant [62 x i8] c"android/service/credentials/BeginGetCredentialRequest$Builder\00", align 1 +@.TypeMapEntry.7548_from = private unnamed_addr constant [68 x i8] c"Android.Service.Credentials.BeginGetCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7549_to = private unnamed_addr constant [54 x i8] c"android/service/credentials/BeginGetCredentialRequest\00", align 1 +@.TypeMapEntry.7550_from = private unnamed_addr constant [77 x i8] c"Android.Service.Credentials.BeginGetCredentialResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7551_to = private unnamed_addr constant [63 x i8] c"android/service/credentials/BeginGetCredentialResponse$Builder\00", align 1 +@.TypeMapEntry.7552_from = private unnamed_addr constant [69 x i8] c"Android.Service.Credentials.BeginGetCredentialResponse, Mono.Android\00", align 1 +@.TypeMapEntry.7553_to = private unnamed_addr constant [55 x i8] c"android/service/credentials/BeginGetCredentialResponse\00", align 1 +@.TypeMapEntry.7554_from = private unnamed_addr constant [57 x i8] c"Android.Service.Credentials.CallingAppInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7555_to = private unnamed_addr constant [43 x i8] c"android/service/credentials/CallingAppInfo\00", align 1 +@.TypeMapEntry.7556_from = private unnamed_addr constant [70 x i8] c"Android.Service.Credentials.ClearCredentialStateRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7557_to = private unnamed_addr constant [56 x i8] c"android/service/credentials/ClearCredentialStateRequest\00", align 1 +@.TypeMapEntry.7558_from = private unnamed_addr constant [66 x i8] c"Android.Service.Credentials.CreateCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7559_to = private unnamed_addr constant [52 x i8] c"android/service/credentials/CreateCredentialRequest\00", align 1 +@.TypeMapEntry.7560_from = private unnamed_addr constant [54 x i8] c"Android.Service.Credentials.CreateEntry, Mono.Android\00", align 1 +@.TypeMapEntry.7561_to = private unnamed_addr constant [40 x i8] c"android/service/credentials/CreateEntry\00", align 1 +@.TypeMapEntry.7562_from = private unnamed_addr constant [58 x i8] c"Android.Service.Credentials.CredentialEntry, Mono.Android\00", align 1 +@.TypeMapEntry.7563_to = private unnamed_addr constant [44 x i8] c"android/service/credentials/CredentialEntry\00", align 1 +@.TypeMapEntry.7564_from = private unnamed_addr constant [68 x i8] c"Android.Service.Credentials.CredentialProviderService, Mono.Android\00", align 1 +@.TypeMapEntry.7565_to = private unnamed_addr constant [54 x i8] c"android/service/credentials/CredentialProviderService\00", align 1 +@.TypeMapEntry.7566_from = private unnamed_addr constant [75 x i8] c"Android.Service.Credentials.CredentialProviderServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7567_from = private unnamed_addr constant [63 x i8] c"Android.Service.Credentials.GetCredentialRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7568_to = private unnamed_addr constant [49 x i8] c"android/service/credentials/GetCredentialRequest\00", align 1 +@.TypeMapEntry.7569_from = private unnamed_addr constant [54 x i8] c"Android.Service.Credentials.RemoteEntry, Mono.Android\00", align 1 +@.TypeMapEntry.7570_to = private unnamed_addr constant [40 x i8] c"android/service/credentials/RemoteEntry\00", align 1 +@.TypeMapEntry.7571_from = private unnamed_addr constant [50 x i8] c"Android.Service.Dreams.DreamService, Mono.Android\00", align 1 +@.TypeMapEntry.7572_to = private unnamed_addr constant [36 x i8] c"android/service/dreams/DreamService\00", align 1 +@.TypeMapEntry.7573_from = private unnamed_addr constant [57 x i8] c"Android.Service.Media.CameraPrewarmService, Mono.Android\00", align 1 +@.TypeMapEntry.7574_to = private unnamed_addr constant [43 x i8] c"android/service/media/CameraPrewarmService\00", align 1 +@.TypeMapEntry.7575_from = private unnamed_addr constant [64 x i8] c"Android.Service.Media.CameraPrewarmServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7576_from = private unnamed_addr constant [68 x i8] c"Android.Service.Media.MediaBrowserService+BrowserRoot, Mono.Android\00", align 1 +@.TypeMapEntry.7577_to = private unnamed_addr constant [54 x i8] c"android/service/media/MediaBrowserService$BrowserRoot\00", align 1 +@.TypeMapEntry.7578_from = private unnamed_addr constant [63 x i8] c"Android.Service.Media.MediaBrowserService+Result, Mono.Android\00", align 1 +@.TypeMapEntry.7579_to = private unnamed_addr constant [49 x i8] c"android/service/media/MediaBrowserService$Result\00", align 1 +@.TypeMapEntry.7580_from = private unnamed_addr constant [56 x i8] c"Android.Service.Media.MediaBrowserService, Mono.Android\00", align 1 +@.TypeMapEntry.7581_to = private unnamed_addr constant [42 x i8] c"android/service/media/MediaBrowserService\00", align 1 +@.TypeMapEntry.7582_from = private unnamed_addr constant [63 x i8] c"Android.Service.Media.MediaBrowserServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7583_from = private unnamed_addr constant [53 x i8] c"Android.Service.Notification.Condition, Mono.Android\00", align 1 +@.TypeMapEntry.7584_to = private unnamed_addr constant [39 x i8] c"android/service/notification/Condition\00", align 1 +@.TypeMapEntry.7585_from = private unnamed_addr constant [68 x i8] c"Android.Service.Notification.ConditionProviderService, Mono.Android\00", align 1 +@.TypeMapEntry.7586_to = private unnamed_addr constant [54 x i8] c"android/service/notification/ConditionProviderService\00", align 1 +@.TypeMapEntry.7587_from = private unnamed_addr constant [75 x i8] c"Android.Service.Notification.ConditionProviderServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7588_from = private unnamed_addr constant [79 x i8] c"Android.Service.Notification.NotificationListenerService+Ranking, Mono.Android\00", align 1 +@.TypeMapEntry.7589_to = private unnamed_addr constant [65 x i8] c"android/service/notification/NotificationListenerService$Ranking\00", align 1 +@.TypeMapEntry.7590_from = private unnamed_addr constant [82 x i8] c"Android.Service.Notification.NotificationListenerService+RankingMap, Mono.Android\00", align 1 +@.TypeMapEntry.7591_to = private unnamed_addr constant [68 x i8] c"android/service/notification/NotificationListenerService$RankingMap\00", align 1 +@.TypeMapEntry.7592_from = private unnamed_addr constant [71 x i8] c"Android.Service.Notification.NotificationListenerService, Mono.Android\00", align 1 +@.TypeMapEntry.7593_to = private unnamed_addr constant [57 x i8] c"android/service/notification/NotificationListenerService\00", align 1 +@.TypeMapEntry.7594_from = private unnamed_addr constant [78 x i8] c"Android.Service.Notification.NotificationListenerServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7595_from = private unnamed_addr constant [65 x i8] c"Android.Service.Notification.StatusBarNotification, Mono.Android\00", align 1 +@.TypeMapEntry.7596_to = private unnamed_addr constant [51 x i8] c"android/service/notification/StatusBarNotification\00", align 1 +@.TypeMapEntry.7597_from = private unnamed_addr constant [68 x i8] c"Android.Service.Notification.ZenDeviceEffects+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7598_to = private unnamed_addr constant [54 x i8] c"android/service/notification/ZenDeviceEffects$Builder\00", align 1 +@.TypeMapEntry.7599_from = private unnamed_addr constant [60 x i8] c"Android.Service.Notification.ZenDeviceEffects, Mono.Android\00", align 1 +@.TypeMapEntry.7600_to = private unnamed_addr constant [46 x i8] c"android/service/notification/ZenDeviceEffects\00", align 1 +@.TypeMapEntry.7601_from = private unnamed_addr constant [61 x i8] c"Android.Service.Notification.ZenPolicy+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7602_to = private unnamed_addr constant [47 x i8] c"android/service/notification/ZenPolicy$Builder\00", align 1 +@.TypeMapEntry.7603_from = private unnamed_addr constant [53 x i8] c"Android.Service.Notification.ZenPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.7604_to = private unnamed_addr constant [39 x i8] c"android/service/notification/ZenPolicy\00", align 1 +@.TypeMapEntry.7605_from = private unnamed_addr constant [72 x i8] c"Android.Service.PersistentData.PersistentDataBlockManager, Mono.Android\00", align 1 +@.TypeMapEntry.7606_to = private unnamed_addr constant [58 x i8] c"android/service/persistentdata/PersistentDataBlockManager\00", align 1 +@.TypeMapEntry.7607_from = private unnamed_addr constant [68 x i8] c"Android.Service.QuickAccessWallet.GetWalletCardsError, Mono.Android\00", align 1 +@.TypeMapEntry.7608_to = private unnamed_addr constant [54 x i8] c"android/service/quickaccesswallet/GetWalletCardsError\00", align 1 +@.TypeMapEntry.7609_from = private unnamed_addr constant [70 x i8] c"Android.Service.QuickAccessWallet.GetWalletCardsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7610_to = private unnamed_addr constant [56 x i8] c"android/service/quickaccesswallet/GetWalletCardsRequest\00", align 1 +@.TypeMapEntry.7611_from = private unnamed_addr constant [71 x i8] c"Android.Service.QuickAccessWallet.GetWalletCardsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.7612_to = private unnamed_addr constant [57 x i8] c"android/service/quickaccesswallet/GetWalletCardsResponse\00", align 1 +@.TypeMapEntry.7613_from = private unnamed_addr constant [72 x i8] c"Android.Service.QuickAccessWallet.IGetWalletCardsCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7614_to = private unnamed_addr constant [57 x i8] c"android/service/quickaccesswallet/GetWalletCardsCallback\00", align 1 +@.TypeMapEntry.7615_from = private unnamed_addr constant [79 x i8] c"Android.Service.QuickAccessWallet.IGetWalletCardsCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7616_from = private unnamed_addr constant [73 x i8] c"Android.Service.QuickAccessWallet.QuickAccessWalletService, Mono.Android\00", align 1 +@.TypeMapEntry.7617_to = private unnamed_addr constant [59 x i8] c"android/service/quickaccesswallet/QuickAccessWalletService\00", align 1 +@.TypeMapEntry.7618_from = private unnamed_addr constant [80 x i8] c"Android.Service.QuickAccessWallet.QuickAccessWalletServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7619_from = private unnamed_addr constant [72 x i8] c"Android.Service.QuickAccessWallet.SelectWalletCardRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7620_to = private unnamed_addr constant [58 x i8] c"android/service/quickaccesswallet/SelectWalletCardRequest\00", align 1 +@.TypeMapEntry.7621_from = private unnamed_addr constant [67 x i8] c"Android.Service.QuickAccessWallet.WalletCard+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7622_to = private unnamed_addr constant [53 x i8] c"android/service/quickaccesswallet/WalletCard$Builder\00", align 1 +@.TypeMapEntry.7623_from = private unnamed_addr constant [59 x i8] c"Android.Service.QuickAccessWallet.WalletCard, Mono.Android\00", align 1 +@.TypeMapEntry.7624_to = private unnamed_addr constant [45 x i8] c"android/service/quickaccesswallet/WalletCard\00", align 1 +@.TypeMapEntry.7625_from = private unnamed_addr constant [67 x i8] c"Android.Service.QuickAccessWallet.WalletServiceEvent, Mono.Android\00", align 1 +@.TypeMapEntry.7626_to = private unnamed_addr constant [53 x i8] c"android/service/quickaccesswallet/WalletServiceEvent\00", align 1 +@.TypeMapEntry.7627_from = private unnamed_addr constant [49 x i8] c"Android.Service.QuickSettings.Tile, Mono.Android\00", align 1 +@.TypeMapEntry.7628_to = private unnamed_addr constant [35 x i8] c"android/service/quicksettings/Tile\00", align 1 +@.TypeMapEntry.7629_from = private unnamed_addr constant [56 x i8] c"Android.Service.QuickSettings.TileService, Mono.Android\00", align 1 +@.TypeMapEntry.7630_to = private unnamed_addr constant [42 x i8] c"android/service/quicksettings/TileService\00", align 1 +@.TypeMapEntry.7631_from = private unnamed_addr constant [64 x i8] c"Android.Service.Restrictions.RestrictionsReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.7632_to = private unnamed_addr constant [50 x i8] c"android/service/restrictions/RestrictionsReceiver\00", align 1 +@.TypeMapEntry.7633_from = private unnamed_addr constant [71 x i8] c"Android.Service.Restrictions.RestrictionsReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7634_from = private unnamed_addr constant [70 x i8] c"Android.Service.Textservice.SpellCheckerService+Session, Mono.Android\00", align 1 +@.TypeMapEntry.7635_to = private unnamed_addr constant [56 x i8] c"android/service/textservice/SpellCheckerService$Session\00", align 1 +@.TypeMapEntry.7636_from = private unnamed_addr constant [77 x i8] c"Android.Service.Textservice.SpellCheckerService+SessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7637_from = private unnamed_addr constant [62 x i8] c"Android.Service.Textservice.SpellCheckerService, Mono.Android\00", align 1 +@.TypeMapEntry.7638_to = private unnamed_addr constant [48 x i8] c"android/service/textservice/SpellCheckerService\00", align 1 +@.TypeMapEntry.7639_from = private unnamed_addr constant [69 x i8] c"Android.Service.Textservice.SpellCheckerServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7640_from = private unnamed_addr constant [51 x i8] c"Android.Service.VR.VrListenerService, Mono.Android\00", align 1 +@.TypeMapEntry.7641_to = private unnamed_addr constant [37 x i8] c"android/service/vr/VrListenerService\00", align 1 +@.TypeMapEntry.7642_from = private unnamed_addr constant [58 x i8] c"Android.Service.VR.VrListenerServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7643_from = private unnamed_addr constant [69 x i8] c"Android.Service.Voice.AlwaysOnHotwordDetector+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7644_to = private unnamed_addr constant [55 x i8] c"android/service/voice/AlwaysOnHotwordDetector$Callback\00", align 1 +@.TypeMapEntry.7645_from = private unnamed_addr constant [76 x i8] c"Android.Service.Voice.AlwaysOnHotwordDetector+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7646_from = private unnamed_addr constant [73 x i8] c"Android.Service.Voice.AlwaysOnHotwordDetector+EventPayload, Mono.Android\00", align 1 +@.TypeMapEntry.7647_to = private unnamed_addr constant [59 x i8] c"android/service/voice/AlwaysOnHotwordDetector$EventPayload\00", align 1 +@.TypeMapEntry.7648_from = private unnamed_addr constant [76 x i8] c"Android.Service.Voice.AlwaysOnHotwordDetector+ModelParamRange, Mono.Android\00", align 1 +@.TypeMapEntry.7649_to = private unnamed_addr constant [62 x i8] c"android/service/voice/AlwaysOnHotwordDetector$ModelParamRange\00", align 1 +@.TypeMapEntry.7650_from = private unnamed_addr constant [60 x i8] c"Android.Service.Voice.AlwaysOnHotwordDetector, Mono.Android\00", align 1 +@.TypeMapEntry.7651_to = private unnamed_addr constant [46 x i8] c"android/service/voice/AlwaysOnHotwordDetector\00", align 1 +@.TypeMapEntry.7652_from = private unnamed_addr constant [56 x i8] c"Android.Service.Voice.VisibleActivityInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7653_to = private unnamed_addr constant [42 x i8] c"android/service/voice/VisibleActivityInfo\00", align 1 +@.TypeMapEntry.7654_from = private unnamed_addr constant [60 x i8] c"Android.Service.Voice.VoiceInteractionService, Mono.Android\00", align 1 +@.TypeMapEntry.7655_to = private unnamed_addr constant [46 x i8] c"android/service/voice/VoiceInteractionService\00", align 1 +@.TypeMapEntry.7656_from = private unnamed_addr constant [78 x i8] c"Android.Service.Voice.VoiceInteractionSession+AbortVoiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7657_to = private unnamed_addr constant [64 x i8] c"android/service/voice/VoiceInteractionSession$AbortVoiceRequest\00", align 1 +@.TypeMapEntry.7658_from = private unnamed_addr constant [71 x i8] c"Android.Service.Voice.VoiceInteractionSession+ActivityId, Mono.Android\00", align 1 +@.TypeMapEntry.7659_to = private unnamed_addr constant [57 x i8] c"android/service/voice/VoiceInteractionSession$ActivityId\00", align 1 +@.TypeMapEntry.7660_from = private unnamed_addr constant [72 x i8] c"Android.Service.Voice.VoiceInteractionSession+AssistState, Mono.Android\00", align 1 +@.TypeMapEntry.7661_to = private unnamed_addr constant [58 x i8] c"android/service/voice/VoiceInteractionSession$AssistState\00", align 1 +@.TypeMapEntry.7662_from = private unnamed_addr constant [75 x i8] c"Android.Service.Voice.VoiceInteractionSession+CommandRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7663_to = private unnamed_addr constant [61 x i8] c"android/service/voice/VoiceInteractionSession$CommandRequest\00", align 1 +@.TypeMapEntry.7664_from = private unnamed_addr constant [81 x i8] c"Android.Service.Voice.VoiceInteractionSession+CompleteVoiceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7665_to = private unnamed_addr constant [67 x i8] c"android/service/voice/VoiceInteractionSession$CompleteVoiceRequest\00", align 1 +@.TypeMapEntry.7666_from = private unnamed_addr constant [80 x i8] c"Android.Service.Voice.VoiceInteractionSession+ConfirmationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7667_to = private unnamed_addr constant [66 x i8] c"android/service/voice/VoiceInteractionSession$ConfirmationRequest\00", align 1 +@.TypeMapEntry.7668_from = private unnamed_addr constant [85 x i8] c"Android.Service.Voice.VoiceInteractionSession+IVisibleActivityCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7669_to = private unnamed_addr constant [70 x i8] c"android/service/voice/VoiceInteractionSession$VisibleActivityCallback\00", align 1 +@.TypeMapEntry.7670_from = private unnamed_addr constant [92 x i8] c"Android.Service.Voice.VoiceInteractionSession+IVisibleActivityCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7671_from = private unnamed_addr constant [67 x i8] c"Android.Service.Voice.VoiceInteractionSession+Insets, Mono.Android\00", align 1 +@.TypeMapEntry.7672_to = private unnamed_addr constant [53 x i8] c"android/service/voice/VoiceInteractionSession$Insets\00", align 1 +@.TypeMapEntry.7673_from = private unnamed_addr constant [78 x i8] c"Android.Service.Voice.VoiceInteractionSession+PickOptionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7674_to = private unnamed_addr constant [64 x i8] c"android/service/voice/VoiceInteractionSession$PickOptionRequest\00", align 1 +@.TypeMapEntry.7675_from = private unnamed_addr constant [68 x i8] c"Android.Service.Voice.VoiceInteractionSession+Request, Mono.Android\00", align 1 +@.TypeMapEntry.7676_to = private unnamed_addr constant [54 x i8] c"android/service/voice/VoiceInteractionSession$Request\00", align 1 +@.TypeMapEntry.7677_from = private unnamed_addr constant [60 x i8] c"Android.Service.Voice.VoiceInteractionSession, Mono.Android\00", align 1 +@.TypeMapEntry.7678_to = private unnamed_addr constant [46 x i8] c"android/service/voice/VoiceInteractionSession\00", align 1 +@.TypeMapEntry.7679_from = private unnamed_addr constant [67 x i8] c"Android.Service.Voice.VoiceInteractionSessionService, Mono.Android\00", align 1 +@.TypeMapEntry.7680_to = private unnamed_addr constant [53 x i8] c"android/service/voice/VoiceInteractionSessionService\00", align 1 +@.TypeMapEntry.7681_from = private unnamed_addr constant [74 x i8] c"Android.Service.Voice.VoiceInteractionSessionServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7682_from = private unnamed_addr constant [64 x i8] c"Android.Service.Wallpaper.WallpaperService+Engine, Mono.Android\00", align 1 +@.TypeMapEntry.7683_to = private unnamed_addr constant [50 x i8] c"android/service/wallpaper/WallpaperService$Engine\00", align 1 +@.TypeMapEntry.7684_from = private unnamed_addr constant [57 x i8] c"Android.Service.Wallpaper.WallpaperService, Mono.Android\00", align 1 +@.TypeMapEntry.7685_to = private unnamed_addr constant [43 x i8] c"android/service/wallpaper/WallpaperService\00", align 1 +@.TypeMapEntry.7686_from = private unnamed_addr constant [64 x i8] c"Android.Service.Wallpaper.WallpaperServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7687_from = private unnamed_addr constant [45 x i8] c"Android.Speech.AlternativeSpan, Mono.Android\00", align 1 +@.TypeMapEntry.7688_to = private unnamed_addr constant [31 x i8] c"android/speech/AlternativeSpan\00", align 1 +@.TypeMapEntry.7689_from = private unnamed_addr constant [46 x i8] c"Android.Speech.AlternativeSpans, Mono.Android\00", align 1 +@.TypeMapEntry.7690_to = private unnamed_addr constant [32 x i8] c"android/speech/AlternativeSpans\00", align 1 +@.TypeMapEntry.7691_from = private unnamed_addr constant [52 x i8] c"Android.Speech.IModelDownloadListener, Mono.Android\00", align 1 +@.TypeMapEntry.7692_to = private unnamed_addr constant [37 x i8] c"android/speech/ModelDownloadListener\00", align 1 +@.TypeMapEntry.7693_from = private unnamed_addr constant [63 x i8] c"Android.Speech.IModelDownloadListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7694_to = private unnamed_addr constant [53 x i8] c"mono/android/speech/ModelDownloadListenerImplementor\00", align 1 +@.TypeMapEntry.7695_from = private unnamed_addr constant [59 x i8] c"Android.Speech.IModelDownloadListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7696_from = private unnamed_addr constant [50 x i8] c"Android.Speech.IRecognitionListener, Mono.Android\00", align 1 +@.TypeMapEntry.7697_to = private unnamed_addr constant [35 x i8] c"android/speech/RecognitionListener\00", align 1 +@.TypeMapEntry.7698_from = private unnamed_addr constant [61 x i8] c"Android.Speech.IRecognitionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7699_to = private unnamed_addr constant [51 x i8] c"mono/android/speech/RecognitionListenerImplementor\00", align 1 +@.TypeMapEntry.7700_from = private unnamed_addr constant [57 x i8] c"Android.Speech.IRecognitionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7701_from = private unnamed_addr constant [57 x i8] c"Android.Speech.IRecognitionSupportCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7702_to = private unnamed_addr constant [42 x i8] c"android/speech/RecognitionSupportCallback\00", align 1 +@.TypeMapEntry.7703_from = private unnamed_addr constant [64 x i8] c"Android.Speech.IRecognitionSupportCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7704_from = private unnamed_addr constant [53 x i8] c"Android.Speech.RecognitionPart+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7705_to = private unnamed_addr constant [39 x i8] c"android/speech/RecognitionPart$Builder\00", align 1 +@.TypeMapEntry.7706_from = private unnamed_addr constant [45 x i8] c"Android.Speech.RecognitionPart, Mono.Android\00", align 1 +@.TypeMapEntry.7707_to = private unnamed_addr constant [31 x i8] c"android/speech/RecognitionPart\00", align 1 +@.TypeMapEntry.7708_from = private unnamed_addr constant [57 x i8] c"Android.Speech.RecognitionService+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7709_to = private unnamed_addr constant [43 x i8] c"android/speech/RecognitionService$Callback\00", align 1 +@.TypeMapEntry.7710_from = private unnamed_addr constant [64 x i8] c"Android.Speech.RecognitionService+SupportCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7711_to = private unnamed_addr constant [50 x i8] c"android/speech/RecognitionService$SupportCallback\00", align 1 +@.TypeMapEntry.7712_from = private unnamed_addr constant [48 x i8] c"Android.Speech.RecognitionService, Mono.Android\00", align 1 +@.TypeMapEntry.7713_to = private unnamed_addr constant [34 x i8] c"android/speech/RecognitionService\00", align 1 +@.TypeMapEntry.7714_from = private unnamed_addr constant [55 x i8] c"Android.Speech.RecognitionServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7715_from = private unnamed_addr constant [56 x i8] c"Android.Speech.RecognitionSupport+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7716_to = private unnamed_addr constant [42 x i8] c"android/speech/RecognitionSupport$Builder\00", align 1 +@.TypeMapEntry.7717_from = private unnamed_addr constant [48 x i8] c"Android.Speech.RecognitionSupport, Mono.Android\00", align 1 +@.TypeMapEntry.7718_to = private unnamed_addr constant [34 x i8] c"android/speech/RecognitionSupport\00", align 1 +@.TypeMapEntry.7719_from = private unnamed_addr constant [46 x i8] c"Android.Speech.RecognizerIntent, Mono.Android\00", align 1 +@.TypeMapEntry.7720_to = private unnamed_addr constant [32 x i8] c"android/speech/RecognizerIntent\00", align 1 +@.TypeMapEntry.7721_from = private unnamed_addr constant [53 x i8] c"Android.Speech.RecognizerResultsIntent, Mono.Android\00", align 1 +@.TypeMapEntry.7722_to = private unnamed_addr constant [39 x i8] c"android/speech/RecognizerResultsIntent\00", align 1 +@.TypeMapEntry.7723_from = private unnamed_addr constant [46 x i8] c"Android.Speech.SpeechRecognizer, Mono.Android\00", align 1 +@.TypeMapEntry.7724_to = private unnamed_addr constant [32 x i8] c"android/speech/SpeechRecognizer\00", align 1 +@.TypeMapEntry.7725_from = private unnamed_addr constant [52 x i8] c"Android.Speech.Tts.ISynthesisCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7726_to = private unnamed_addr constant [37 x i8] c"android/speech/tts/SynthesisCallback\00", align 1 +@.TypeMapEntry.7727_from = private unnamed_addr constant [59 x i8] c"Android.Speech.Tts.ISynthesisCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7728_from = private unnamed_addr constant [50 x i8] c"Android.Speech.Tts.SynthesisRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7729_to = private unnamed_addr constant [36 x i8] c"android/speech/tts/SynthesisRequest\00", align 1 +@.TypeMapEntry.7730_from = private unnamed_addr constant [53 x i8] c"Android.Speech.Tts.TextToSpeech+Engine, Mono.Android\00", align 1 +@.TypeMapEntry.7731_to = private unnamed_addr constant [39 x i8] c"android/speech/tts/TextToSpeech$Engine\00", align 1 +@.TypeMapEntry.7732_from = private unnamed_addr constant [57 x i8] c"Android.Speech.Tts.TextToSpeech+EngineInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7733_to = private unnamed_addr constant [43 x i8] c"android/speech/tts/TextToSpeech$EngineInfo\00", align 1 +@.TypeMapEntry.7734_from = private unnamed_addr constant [62 x i8] c"Android.Speech.Tts.TextToSpeech+IOnInitListener, Mono.Android\00", align 1 +@.TypeMapEntry.7735_to = private unnamed_addr constant [47 x i8] c"android/speech/tts/TextToSpeech$OnInitListener\00", align 1 +@.TypeMapEntry.7736_from = private unnamed_addr constant [73 x i8] c"Android.Speech.Tts.TextToSpeech+IOnInitListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7737_to = private unnamed_addr constant [63 x i8] c"mono/android/speech/tts/TextToSpeech_OnInitListenerImplementor\00", align 1 +@.TypeMapEntry.7738_from = private unnamed_addr constant [69 x i8] c"Android.Speech.Tts.TextToSpeech+IOnInitListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7739_from = private unnamed_addr constant [76 x i8] c"Android.Speech.Tts.TextToSpeech+IOnUtteranceCompletedListener, Mono.Android\00", align 1 +@.TypeMapEntry.7740_to = private unnamed_addr constant [61 x i8] c"android/speech/tts/TextToSpeech$OnUtteranceCompletedListener\00", align 1 +@.TypeMapEntry.7741_from = private unnamed_addr constant [87 x i8] c"Android.Speech.Tts.TextToSpeech+IOnUtteranceCompletedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.7742_to = private unnamed_addr constant [77 x i8] c"mono/android/speech/tts/TextToSpeech_OnUtteranceCompletedListenerImplementor\00", align 1 +@.TypeMapEntry.7743_from = private unnamed_addr constant [83 x i8] c"Android.Speech.Tts.TextToSpeech+IOnUtteranceCompletedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7744_from = private unnamed_addr constant [46 x i8] c"Android.Speech.Tts.TextToSpeech, Mono.Android\00", align 1 +@.TypeMapEntry.7745_to = private unnamed_addr constant [32 x i8] c"android/speech/tts/TextToSpeech\00", align 1 +@.TypeMapEntry.7746_from = private unnamed_addr constant [53 x i8] c"Android.Speech.Tts.TextToSpeechService, Mono.Android\00", align 1 +@.TypeMapEntry.7747_to = private unnamed_addr constant [39 x i8] c"android/speech/tts/TextToSpeechService\00", align 1 +@.TypeMapEntry.7748_from = private unnamed_addr constant [60 x i8] c"Android.Speech.Tts.TextToSpeechServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7749_from = private unnamed_addr constant [59 x i8] c"Android.Speech.Tts.UtteranceProgressListener, Mono.Android\00", align 1 +@.TypeMapEntry.7750_to = private unnamed_addr constant [45 x i8] c"android/speech/tts/UtteranceProgressListener\00", align 1 +@.TypeMapEntry.7751_from = private unnamed_addr constant [66 x i8] c"Android.Speech.Tts.UtteranceProgressListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7752_from = private unnamed_addr constant [39 x i8] c"Android.Speech.Tts.Voice, Mono.Android\00", align 1 +@.TypeMapEntry.7753_to = private unnamed_addr constant [25 x i8] c"android/speech/tts/Voice\00", align 1 +@.TypeMapEntry.7754_from = private unnamed_addr constant [72 x i8] c"Android.Support.CustomTabs.CustomTabsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7755_to = private unnamed_addr constant [47 x i8] c"android/support/customtabs/ICustomTabsCallback\00", align 1 +@.TypeMapEntry.7756_from = private unnamed_addr constant [78 x i8] c"Android.Support.CustomTabs.CustomTabsCallbackConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7757_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.CustomTabsCallbackDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7758_to = private unnamed_addr constant [55 x i8] c"android/support/customtabs/ICustomTabsCallback$Default\00", align 1 +@.TypeMapEntry.7759_from = private unnamed_addr constant [76 x i8] c"Android.Support.CustomTabs.CustomTabsCallbackStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7760_to = private unnamed_addr constant [52 x i8] c"android/support/customtabs/ICustomTabsCallback$Stub\00", align 1 +@.TypeMapEntry.7761_from = private unnamed_addr constant [83 x i8] c"Android.Support.CustomTabs.CustomTabsCallbackStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7762_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.CustomTabsCallback_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7763_to = private unnamed_addr constant [55 x i8] c"android/support/customtabs/ICustomTabsCallback$_Parcel\00", align 1 +@.TypeMapEntry.7764_from = private unnamed_addr constant [71 x i8] c"Android.Support.CustomTabs.CustomTabsService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7765_to = private unnamed_addr constant [46 x i8] c"android/support/customtabs/ICustomTabsService\00", align 1 +@.TypeMapEntry.7766_from = private unnamed_addr constant [77 x i8] c"Android.Support.CustomTabs.CustomTabsServiceConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7767_from = private unnamed_addr constant [78 x i8] c"Android.Support.CustomTabs.CustomTabsServiceDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7768_to = private unnamed_addr constant [54 x i8] c"android/support/customtabs/ICustomTabsService$Default\00", align 1 +@.TypeMapEntry.7769_from = private unnamed_addr constant [75 x i8] c"Android.Support.CustomTabs.CustomTabsServiceStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7770_to = private unnamed_addr constant [51 x i8] c"android/support/customtabs/ICustomTabsService$Stub\00", align 1 +@.TypeMapEntry.7771_from = private unnamed_addr constant [82 x i8] c"Android.Support.CustomTabs.CustomTabsServiceStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7772_from = private unnamed_addr constant [78 x i8] c"Android.Support.CustomTabs.CustomTabsService_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7773_to = private unnamed_addr constant [54 x i8] c"android/support/customtabs/ICustomTabsService$_Parcel\00", align 1 +@.TypeMapEntry.7774_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7775_to = private unnamed_addr constant [54 x i8] c"android/support/customtabs/IEngagementSignalsCallback\00", align 1 +@.TypeMapEntry.7776_from = private unnamed_addr constant [85 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallbackConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7777_from = private unnamed_addr constant [86 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallbackDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7778_to = private unnamed_addr constant [62 x i8] c"android/support/customtabs/IEngagementSignalsCallback$Default\00", align 1 +@.TypeMapEntry.7779_from = private unnamed_addr constant [83 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallbackStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7780_to = private unnamed_addr constant [59 x i8] c"android/support/customtabs/IEngagementSignalsCallback$Stub\00", align 1 +@.TypeMapEntry.7781_from = private unnamed_addr constant [90 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallbackStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7782_from = private unnamed_addr constant [86 x i8] c"Android.Support.CustomTabs.EngagementSignalsCallback_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7783_to = private unnamed_addr constant [62 x i8] c"android/support/customtabs/IEngagementSignalsCallback$_Parcel\00", align 1 +@.TypeMapEntry.7784_from = private unnamed_addr constant [73 x i8] c"Android.Support.CustomTabs.ICustomTabsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7785_from = private unnamed_addr constant [80 x i8] c"Android.Support.CustomTabs.ICustomTabsCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7786_from = private unnamed_addr constant [72 x i8] c"Android.Support.CustomTabs.ICustomTabsService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7787_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.ICustomTabsServiceInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7788_from = private unnamed_addr constant [80 x i8] c"Android.Support.CustomTabs.IEngagementSignalsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7789_from = private unnamed_addr constant [87 x i8] c"Android.Support.CustomTabs.IEngagementSignalsCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7790_from = private unnamed_addr constant [73 x i8] c"Android.Support.CustomTabs.IPostMessageService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7791_to = private unnamed_addr constant [47 x i8] c"android/support/customtabs/IPostMessageService\00", align 1 +@.TypeMapEntry.7792_from = private unnamed_addr constant [80 x i8] c"Android.Support.CustomTabs.IPostMessageServiceInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7793_from = private unnamed_addr constant [72 x i8] c"Android.Support.CustomTabs.PostMessageService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7794_from = private unnamed_addr constant [78 x i8] c"Android.Support.CustomTabs.PostMessageServiceConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7795_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.PostMessageServiceDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7796_to = private unnamed_addr constant [55 x i8] c"android/support/customtabs/IPostMessageService$Default\00", align 1 +@.TypeMapEntry.7797_from = private unnamed_addr constant [76 x i8] c"Android.Support.CustomTabs.PostMessageServiceStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7798_to = private unnamed_addr constant [52 x i8] c"android/support/customtabs/IPostMessageService$Stub\00", align 1 +@.TypeMapEntry.7799_from = private unnamed_addr constant [83 x i8] c"Android.Support.CustomTabs.PostMessageServiceStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7800_from = private unnamed_addr constant [79 x i8] c"Android.Support.CustomTabs.PostMessageService_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7801_to = private unnamed_addr constant [55 x i8] c"android/support/customtabs/IPostMessageService$_Parcel\00", align 1 +@.TypeMapEntry.7802_from = private unnamed_addr constant [89 x i8] c"Android.Support.Customtabs.Trusted.ITrustedWebActivityCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7803_to = private unnamed_addr constant [63 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityCallback\00", align 1 +@.TypeMapEntry.7804_from = private unnamed_addr constant [96 x i8] c"Android.Support.Customtabs.Trusted.ITrustedWebActivityCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7805_from = private unnamed_addr constant [88 x i8] c"Android.Support.Customtabs.Trusted.ITrustedWebActivityService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7806_to = private unnamed_addr constant [62 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityService\00", align 1 +@.TypeMapEntry.7807_from = private unnamed_addr constant [95 x i8] c"Android.Support.Customtabs.Trusted.ITrustedWebActivityServiceInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7808_from = private unnamed_addr constant [88 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7809_from = private unnamed_addr constant [94 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallbackConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7810_from = private unnamed_addr constant [95 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallbackDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7811_to = private unnamed_addr constant [71 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityCallback$Default\00", align 1 +@.TypeMapEntry.7812_from = private unnamed_addr constant [92 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallbackStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7813_to = private unnamed_addr constant [68 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityCallback$Stub\00", align 1 +@.TypeMapEntry.7814_from = private unnamed_addr constant [99 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallbackStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7815_from = private unnamed_addr constant [95 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityCallback_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7816_to = private unnamed_addr constant [71 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityCallback$_Parcel\00", align 1 +@.TypeMapEntry.7817_from = private unnamed_addr constant [87 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7818_from = private unnamed_addr constant [93 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityServiceConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7819_from = private unnamed_addr constant [94 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityServiceDefault, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7820_to = private unnamed_addr constant [70 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityService$Default\00", align 1 +@.TypeMapEntry.7821_from = private unnamed_addr constant [91 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityServiceStub, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7822_to = private unnamed_addr constant [67 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityService$Stub\00", align 1 +@.TypeMapEntry.7823_from = private unnamed_addr constant [98 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityServiceStubInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7824_from = private unnamed_addr constant [94 x i8] c"Android.Support.Customtabs.Trusted.TrustedWebActivityService_Parcel, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.7825_to = private unnamed_addr constant [70 x i8] c"android/support/customtabs/trusted/ITrustedWebActivityService$_Parcel\00", align 1 +@.TypeMapEntry.7826_from = private unnamed_addr constant [71 x i8] c"Android.Support.V4.App.INotificationSideChannel, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7827_to = private unnamed_addr constant [48 x i8] c"android/support/v4/app/INotificationSideChannel\00", align 1 +@.TypeMapEntry.7828_from = private unnamed_addr constant [78 x i8] c"Android.Support.V4.App.INotificationSideChannelInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7829_from = private unnamed_addr constant [70 x i8] c"Android.Support.V4.App.NotificationSideChannel, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7830_from = private unnamed_addr constant [76 x i8] c"Android.Support.V4.App.NotificationSideChannelConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7831_from = private unnamed_addr constant [77 x i8] c"Android.Support.V4.App.NotificationSideChannelDefault, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7832_to = private unnamed_addr constant [56 x i8] c"android/support/v4/app/INotificationSideChannel$Default\00", align 1 +@.TypeMapEntry.7833_from = private unnamed_addr constant [74 x i8] c"Android.Support.V4.App.NotificationSideChannelStub, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7834_to = private unnamed_addr constant [53 x i8] c"android/support/v4/app/INotificationSideChannel$Stub\00", align 1 +@.TypeMapEntry.7835_from = private unnamed_addr constant [81 x i8] c"Android.Support.V4.App.NotificationSideChannelStubInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7836_from = private unnamed_addr constant [77 x i8] c"Android.Support.V4.App.NotificationSideChannel_Parcel, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7837_to = private unnamed_addr constant [56 x i8] c"android/support/v4/app/INotificationSideChannel$_Parcel\00", align 1 +@.TypeMapEntry.7838_from = private unnamed_addr constant [75 x i8] c"Android.Support.V4.App.RemoteActionCompatParcelizer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7839_to = private unnamed_addr constant [52 x i8] c"android/support/v4/app/RemoteActionCompatParcelizer\00", align 1 +@.TypeMapEntry.7840_from = private unnamed_addr constant [81 x i8] c"Android.Support.V4.Graphics.Drawable.IconCompatParcelizer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7841_to = private unnamed_addr constant [58 x i8] c"android/support/v4/graphics/drawable/IconCompatParcelizer\00", align 1 +@.TypeMapEntry.7842_from = private unnamed_addr constant [61 x i8] c"Android.Support.V4.OS.IResultReceiver, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7843_to = private unnamed_addr constant [38 x i8] c"android/support/v4/os/IResultReceiver\00", align 1 +@.TypeMapEntry.7844_from = private unnamed_addr constant [62 x i8] c"Android.Support.V4.OS.IResultReceiver2, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7845_to = private unnamed_addr constant [39 x i8] c"android/support/v4/os/IResultReceiver2\00", align 1 +@.TypeMapEntry.7846_from = private unnamed_addr constant [69 x i8] c"Android.Support.V4.OS.IResultReceiver2Invoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7847_from = private unnamed_addr constant [68 x i8] c"Android.Support.V4.OS.IResultReceiverInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7848_from = private unnamed_addr constant [60 x i8] c"Android.Support.V4.OS.ResultReceiver, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7849_to = private unnamed_addr constant [37 x i8] c"android/support/v4/os/ResultReceiver\00", align 1 +@.TypeMapEntry.7850_from = private unnamed_addr constant [61 x i8] c"Android.Support.V4.OS.ResultReceiver2, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7851_from = private unnamed_addr constant [67 x i8] c"Android.Support.V4.OS.ResultReceiver2Consts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7852_from = private unnamed_addr constant [68 x i8] c"Android.Support.V4.OS.ResultReceiver2Default, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7853_to = private unnamed_addr constant [47 x i8] c"android/support/v4/os/IResultReceiver2$Default\00", align 1 +@.TypeMapEntry.7854_from = private unnamed_addr constant [65 x i8] c"Android.Support.V4.OS.ResultReceiver2Stub, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7855_to = private unnamed_addr constant [44 x i8] c"android/support/v4/os/IResultReceiver2$Stub\00", align 1 +@.TypeMapEntry.7856_from = private unnamed_addr constant [72 x i8] c"Android.Support.V4.OS.ResultReceiver2StubInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7857_from = private unnamed_addr constant [68 x i8] c"Android.Support.V4.OS.ResultReceiver2_Parcel, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7858_to = private unnamed_addr constant [47 x i8] c"android/support/v4/os/IResultReceiver2$_Parcel\00", align 1 +@.TypeMapEntry.7859_from = private unnamed_addr constant [67 x i8] c"Android.Support.V4.OS.ResultReceiverDefault, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7860_to = private unnamed_addr constant [46 x i8] c"android/support/v4/os/IResultReceiver$Default\00", align 1 +@.TypeMapEntry.7861_from = private unnamed_addr constant [64 x i8] c"Android.Support.V4.OS.ResultReceiverStub, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7862_to = private unnamed_addr constant [43 x i8] c"android/support/v4/os/IResultReceiver$Stub\00", align 1 +@.TypeMapEntry.7863_from = private unnamed_addr constant [71 x i8] c"Android.Support.V4.OS.ResultReceiverStubInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7864_from = private unnamed_addr constant [67 x i8] c"Android.Support.V4.OS.ResultReceiver_Parcel, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.7865_to = private unnamed_addr constant [46 x i8] c"android/support/v4/os/IResultReceiver$_Parcel\00", align 1 +@.TypeMapEntry.7866_from = private unnamed_addr constant [45 x i8] c"Android.Systems.ErrnoException, Mono.Android\00", align 1 +@.TypeMapEntry.7867_to = private unnamed_addr constant [30 x i8] c"android/system/ErrnoException\00", align 1 +@.TypeMapEntry.7868_from = private unnamed_addr constant [39 x i8] c"Android.Systems.Int64Ref, Mono.Android\00", align 1 +@.TypeMapEntry.7869_to = private unnamed_addr constant [24 x i8] c"android/system/Int64Ref\00", align 1 +@.TypeMapEntry.7870_from = private unnamed_addr constant [33 x i8] c"Android.Systems.Os, Mono.Android\00", align 1 +@.TypeMapEntry.7871_to = private unnamed_addr constant [18 x i8] c"android/system/Os\00", align 1 +@.TypeMapEntry.7872_from = private unnamed_addr constant [42 x i8] c"Android.Systems.OsConstants, Mono.Android\00", align 1 +@.TypeMapEntry.7873_to = private unnamed_addr constant [27 x i8] c"android/system/OsConstants\00", align 1 +@.TypeMapEntry.7874_from = private unnamed_addr constant [44 x i8] c"Android.Systems.StructCmsghdr, Mono.Android\00", align 1 +@.TypeMapEntry.7875_to = private unnamed_addr constant [29 x i8] c"android/system/StructCmsghdr\00", align 1 +@.TypeMapEntry.7876_from = private unnamed_addr constant [43 x i8] c"Android.Systems.StructMsghdr, Mono.Android\00", align 1 +@.TypeMapEntry.7877_to = private unnamed_addr constant [28 x i8] c"android/system/StructMsghdr\00", align 1 +@.TypeMapEntry.7878_from = private unnamed_addr constant [43 x i8] c"Android.Systems.StructPollfd, Mono.Android\00", align 1 +@.TypeMapEntry.7879_to = private unnamed_addr constant [28 x i8] c"android/system/StructPollfd\00", align 1 +@.TypeMapEntry.7880_from = private unnamed_addr constant [41 x i8] c"Android.Systems.StructStat, Mono.Android\00", align 1 +@.TypeMapEntry.7881_to = private unnamed_addr constant [26 x i8] c"android/system/StructStat\00", align 1 +@.TypeMapEntry.7882_from = private unnamed_addr constant [44 x i8] c"Android.Systems.StructStatVfs, Mono.Android\00", align 1 +@.TypeMapEntry.7883_to = private unnamed_addr constant [29 x i8] c"android/system/StructStatVfs\00", align 1 +@.TypeMapEntry.7884_from = private unnamed_addr constant [45 x i8] c"Android.Systems.StructTimespec, Mono.Android\00", align 1 +@.TypeMapEntry.7885_to = private unnamed_addr constant [30 x i8] c"android/system/StructTimespec\00", align 1 +@.TypeMapEntry.7886_from = private unnamed_addr constant [44 x i8] c"Android.Systems.StructTimeval, Mono.Android\00", align 1 +@.TypeMapEntry.7887_to = private unnamed_addr constant [29 x i8] c"android/system/StructTimeval\00", align 1 +@.TypeMapEntry.7888_from = private unnamed_addr constant [44 x i8] c"Android.Systems.StructUtsname, Mono.Android\00", align 1 +@.TypeMapEntry.7889_to = private unnamed_addr constant [29 x i8] c"android/system/StructUtsname\00", align 1 +@.TypeMapEntry.7890_from = private unnamed_addr constant [44 x i8] c"Android.Systems.SystemCleaner, Mono.Android\00", align 1 +@.TypeMapEntry.7891_to = private unnamed_addr constant [29 x i8] c"android/system/SystemCleaner\00", align 1 +@.TypeMapEntry.7892_from = private unnamed_addr constant [46 x i8] c"Android.Systems.VmSocketAddress, Mono.Android\00", align 1 +@.TypeMapEntry.7893_to = private unnamed_addr constant [31 x i8] c"android/system/VmSocketAddress\00", align 1 +@.TypeMapEntry.7894_from = private unnamed_addr constant [44 x i8] c"Android.Telecom.Call+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7895_to = private unnamed_addr constant [30 x i8] c"android/telecom/Call$Callback\00", align 1 +@.TypeMapEntry.7896_from = private unnamed_addr constant [51 x i8] c"Android.Telecom.Call+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7897_from = private unnamed_addr constant [43 x i8] c"Android.Telecom.Call+Details, Mono.Android\00", align 1 +@.TypeMapEntry.7898_to = private unnamed_addr constant [29 x i8] c"android/telecom/Call$Details\00", align 1 +@.TypeMapEntry.7899_from = private unnamed_addr constant [43 x i8] c"Android.Telecom.Call+RttCall, Mono.Android\00", align 1 +@.TypeMapEntry.7900_to = private unnamed_addr constant [29 x i8] c"android/telecom/Call$RttCall\00", align 1 +@.TypeMapEntry.7901_from = private unnamed_addr constant [35 x i8] c"Android.Telecom.Call, Mono.Android\00", align 1 +@.TypeMapEntry.7902_to = private unnamed_addr constant [21 x i8] c"android/telecom/Call\00", align 1 +@.TypeMapEntry.7903_from = private unnamed_addr constant [53 x i8] c"Android.Telecom.CallAttributes+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7904_to = private unnamed_addr constant [39 x i8] c"android/telecom/CallAttributes$Builder\00", align 1 +@.TypeMapEntry.7905_from = private unnamed_addr constant [45 x i8] c"Android.Telecom.CallAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.7906_to = private unnamed_addr constant [31 x i8] c"android/telecom/CallAttributes\00", align 1 +@.TypeMapEntry.7907_from = private unnamed_addr constant [45 x i8] c"Android.Telecom.CallAudioState, Mono.Android\00", align 1 +@.TypeMapEntry.7908_to = private unnamed_addr constant [31 x i8] c"android/telecom/CallAudioState\00", align 1 +@.TypeMapEntry.7909_from = private unnamed_addr constant [42 x i8] c"Android.Telecom.CallControl, Mono.Android\00", align 1 +@.TypeMapEntry.7910_to = private unnamed_addr constant [28 x i8] c"android/telecom/CallControl\00", align 1 +@.TypeMapEntry.7911_from = private unnamed_addr constant [43 x i8] c"Android.Telecom.CallEndpoint, Mono.Android\00", align 1 +@.TypeMapEntry.7912_to = private unnamed_addr constant [29 x i8] c"android/telecom/CallEndpoint\00", align 1 +@.TypeMapEntry.7913_from = private unnamed_addr constant [52 x i8] c"Android.Telecom.CallEndpointException, Mono.Android\00", align 1 +@.TypeMapEntry.7914_to = private unnamed_addr constant [38 x i8] c"android/telecom/CallEndpointException\00", align 1 +@.TypeMapEntry.7915_from = private unnamed_addr constant [44 x i8] c"Android.Telecom.CallException, Mono.Android\00", align 1 +@.TypeMapEntry.7916_to = private unnamed_addr constant [30 x i8] c"android/telecom/CallException\00", align 1 +@.TypeMapEntry.7917_from = private unnamed_addr constant [53 x i8] c"Android.Telecom.CallRedirectionService, Mono.Android\00", align 1 +@.TypeMapEntry.7918_to = private unnamed_addr constant [39 x i8] c"android/telecom/CallRedirectionService\00", align 1 +@.TypeMapEntry.7919_from = private unnamed_addr constant [60 x i8] c"Android.Telecom.CallRedirectionServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7920_from = private unnamed_addr constant [72 x i8] c"Android.Telecom.CallScreeningService+CallResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7921_to = private unnamed_addr constant [58 x i8] c"android/telecom/CallScreeningService$CallResponse$Builder\00", align 1 +@.TypeMapEntry.7922_from = private unnamed_addr constant [64 x i8] c"Android.Telecom.CallScreeningService+CallResponse, Mono.Android\00", align 1 +@.TypeMapEntry.7923_to = private unnamed_addr constant [50 x i8] c"android/telecom/CallScreeningService$CallResponse\00", align 1 +@.TypeMapEntry.7924_from = private unnamed_addr constant [51 x i8] c"Android.Telecom.CallScreeningService, Mono.Android\00", align 1 +@.TypeMapEntry.7925_to = private unnamed_addr constant [37 x i8] c"android/telecom/CallScreeningService\00", align 1 +@.TypeMapEntry.7926_from = private unnamed_addr constant [58 x i8] c"Android.Telecom.CallScreeningServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7927_from = private unnamed_addr constant [41 x i8] c"Android.Telecom.Conference, Mono.Android\00", align 1 +@.TypeMapEntry.7928_to = private unnamed_addr constant [27 x i8] c"android/telecom/Conference\00", align 1 +@.TypeMapEntry.7929_from = private unnamed_addr constant [48 x i8] c"Android.Telecom.ConferenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7930_from = private unnamed_addr constant [45 x i8] c"Android.Telecom.Conferenceable, Mono.Android\00", align 1 +@.TypeMapEntry.7931_to = private unnamed_addr constant [31 x i8] c"android/telecom/Conferenceable\00", align 1 +@.TypeMapEntry.7932_from = private unnamed_addr constant [52 x i8] c"Android.Telecom.ConferenceableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7933_from = private unnamed_addr constant [57 x i8] c"Android.Telecom.Connection+RttModifyStatus, Mono.Android\00", align 1 +@.TypeMapEntry.7934_to = private unnamed_addr constant [43 x i8] c"android/telecom/Connection$RttModifyStatus\00", align 1 +@.TypeMapEntry.7935_from = private unnamed_addr constant [55 x i8] c"Android.Telecom.Connection+RttTextStream, Mono.Android\00", align 1 +@.TypeMapEntry.7936_to = private unnamed_addr constant [41 x i8] c"android/telecom/Connection$RttTextStream\00", align 1 +@.TypeMapEntry.7937_from = private unnamed_addr constant [55 x i8] c"Android.Telecom.Connection+VideoProvider, Mono.Android\00", align 1 +@.TypeMapEntry.7938_to = private unnamed_addr constant [41 x i8] c"android/telecom/Connection$VideoProvider\00", align 1 +@.TypeMapEntry.7939_from = private unnamed_addr constant [62 x i8] c"Android.Telecom.Connection+VideoProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7940_from = private unnamed_addr constant [41 x i8] c"Android.Telecom.Connection, Mono.Android\00", align 1 +@.TypeMapEntry.7941_to = private unnamed_addr constant [27 x i8] c"android/telecom/Connection\00", align 1 +@.TypeMapEntry.7942_from = private unnamed_addr constant [48 x i8] c"Android.Telecom.ConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7943_from = private unnamed_addr constant [48 x i8] c"Android.Telecom.ConnectionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.7944_to = private unnamed_addr constant [34 x i8] c"android/telecom/ConnectionRequest\00", align 1 +@.TypeMapEntry.7945_from = private unnamed_addr constant [48 x i8] c"Android.Telecom.ConnectionService, Mono.Android\00", align 1 +@.TypeMapEntry.7946_to = private unnamed_addr constant [34 x i8] c"android/telecom/ConnectionService\00", align 1 +@.TypeMapEntry.7947_from = private unnamed_addr constant [55 x i8] c"Android.Telecom.ConnectionServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7948_from = private unnamed_addr constant [46 x i8] c"Android.Telecom.DisconnectCause, Mono.Android\00", align 1 +@.TypeMapEntry.7949_to = private unnamed_addr constant [32 x i8] c"android/telecom/DisconnectCause\00", align 1 +@.TypeMapEntry.7950_from = private unnamed_addr constant [42 x i8] c"Android.Telecom.GatewayInfo, Mono.Android\00", align 1 +@.TypeMapEntry.7951_to = private unnamed_addr constant [28 x i8] c"android/telecom/GatewayInfo\00", align 1 +@.TypeMapEntry.7952_from = private unnamed_addr constant [51 x i8] c"Android.Telecom.ICallControlCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7953_to = private unnamed_addr constant [36 x i8] c"android/telecom/CallControlCallback\00", align 1 +@.TypeMapEntry.7954_from = private unnamed_addr constant [58 x i8] c"Android.Telecom.ICallControlCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7955_from = private unnamed_addr constant [49 x i8] c"Android.Telecom.ICallEventCallback, Mono.Android\00", align 1 +@.TypeMapEntry.7956_to = private unnamed_addr constant [34 x i8] c"android/telecom/CallEventCallback\00", align 1 +@.TypeMapEntry.7957_from = private unnamed_addr constant [56 x i8] c"Android.Telecom.ICallEventCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7958_from = private unnamed_addr constant [63 x i8] c"Android.Telecom.InCallService+VideoCall+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7959_to = private unnamed_addr constant [49 x i8] c"android/telecom/InCallService$VideoCall$Callback\00", align 1 +@.TypeMapEntry.7960_from = private unnamed_addr constant [70 x i8] c"Android.Telecom.InCallService+VideoCall+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7961_from = private unnamed_addr constant [54 x i8] c"Android.Telecom.InCallService+VideoCall, Mono.Android\00", align 1 +@.TypeMapEntry.7962_to = private unnamed_addr constant [40 x i8] c"android/telecom/InCallService$VideoCall\00", align 1 +@.TypeMapEntry.7963_from = private unnamed_addr constant [61 x i8] c"Android.Telecom.InCallService+VideoCallInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7964_from = private unnamed_addr constant [44 x i8] c"Android.Telecom.InCallService, Mono.Android\00", align 1 +@.TypeMapEntry.7965_to = private unnamed_addr constant [30 x i8] c"android/telecom/InCallService\00", align 1 +@.TypeMapEntry.7966_from = private unnamed_addr constant [51 x i8] c"Android.Telecom.InCallServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7967_from = private unnamed_addr constant [51 x i8] c"Android.Telecom.PhoneAccount+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.7968_to = private unnamed_addr constant [37 x i8] c"android/telecom/PhoneAccount$Builder\00", align 1 +@.TypeMapEntry.7969_from = private unnamed_addr constant [43 x i8] c"Android.Telecom.PhoneAccount, Mono.Android\00", align 1 +@.TypeMapEntry.7970_to = private unnamed_addr constant [29 x i8] c"android/telecom/PhoneAccount\00", align 1 +@.TypeMapEntry.7971_from = private unnamed_addr constant [49 x i8] c"Android.Telecom.PhoneAccountHandle, Mono.Android\00", align 1 +@.TypeMapEntry.7972_to = private unnamed_addr constant [35 x i8] c"android/telecom/PhoneAccountHandle\00", align 1 +@.TypeMapEntry.7973_from = private unnamed_addr constant [53 x i8] c"Android.Telecom.PhoneAccountSuggestion, Mono.Android\00", align 1 +@.TypeMapEntry.7974_to = private unnamed_addr constant [39 x i8] c"android/telecom/PhoneAccountSuggestion\00", align 1 +@.TypeMapEntry.7975_from = private unnamed_addr constant [53 x i8] c"Android.Telecom.QueryLocationException, Mono.Android\00", align 1 +@.TypeMapEntry.7976_to = private unnamed_addr constant [39 x i8] c"android/telecom/QueryLocationException\00", align 1 +@.TypeMapEntry.7977_from = private unnamed_addr constant [56 x i8] c"Android.Telecom.RemoteConference+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7978_to = private unnamed_addr constant [42 x i8] c"android/telecom/RemoteConference$Callback\00", align 1 +@.TypeMapEntry.7979_from = private unnamed_addr constant [63 x i8] c"Android.Telecom.RemoteConference+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7980_from = private unnamed_addr constant [47 x i8] c"Android.Telecom.RemoteConference, Mono.Android\00", align 1 +@.TypeMapEntry.7981_to = private unnamed_addr constant [33 x i8] c"android/telecom/RemoteConference\00", align 1 +@.TypeMapEntry.7982_from = private unnamed_addr constant [56 x i8] c"Android.Telecom.RemoteConnection+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7983_to = private unnamed_addr constant [42 x i8] c"android/telecom/RemoteConnection$Callback\00", align 1 +@.TypeMapEntry.7984_from = private unnamed_addr constant [63 x i8] c"Android.Telecom.RemoteConnection+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7985_from = private unnamed_addr constant [70 x i8] c"Android.Telecom.RemoteConnection+VideoProvider+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.7986_to = private unnamed_addr constant [56 x i8] c"android/telecom/RemoteConnection$VideoProvider$Callback\00", align 1 +@.TypeMapEntry.7987_from = private unnamed_addr constant [77 x i8] c"Android.Telecom.RemoteConnection+VideoProvider+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.7988_from = private unnamed_addr constant [61 x i8] c"Android.Telecom.RemoteConnection+VideoProvider, Mono.Android\00", align 1 +@.TypeMapEntry.7989_to = private unnamed_addr constant [47 x i8] c"android/telecom/RemoteConnection$VideoProvider\00", align 1 +@.TypeMapEntry.7990_from = private unnamed_addr constant [47 x i8] c"Android.Telecom.RemoteConnection, Mono.Android\00", align 1 +@.TypeMapEntry.7991_to = private unnamed_addr constant [33 x i8] c"android/telecom/RemoteConnection\00", align 1 +@.TypeMapEntry.7992_from = private unnamed_addr constant [42 x i8] c"Android.Telecom.StatusHints, Mono.Android\00", align 1 +@.TypeMapEntry.7993_to = private unnamed_addr constant [28 x i8] c"android/telecom/StatusHints\00", align 1 +@.TypeMapEntry.7994_from = private unnamed_addr constant [45 x i8] c"Android.Telecom.TelecomManager, Mono.Android\00", align 1 +@.TypeMapEntry.7995_to = private unnamed_addr constant [31 x i8] c"android/telecom/TelecomManager\00", align 1 +@.TypeMapEntry.7996_from = private unnamed_addr constant [62 x i8] c"Android.Telecom.VideoProfile+CameraCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.7997_to = private unnamed_addr constant [48 x i8] c"android/telecom/VideoProfile$CameraCapabilities\00", align 1 +@.TypeMapEntry.7998_from = private unnamed_addr constant [43 x i8] c"Android.Telecom.VideoProfile, Mono.Android\00", align 1 +@.TypeMapEntry.7999_to = private unnamed_addr constant [29 x i8] c"android/telecom/VideoProfile\00", align 1 +@.TypeMapEntry.8000_from = private unnamed_addr constant [73 x i8] c"Android.Telephony.AccessNetworkConstants+AccessNetworkType, Mono.Android\00", align 1 +@.TypeMapEntry.8001_to = private unnamed_addr constant [59 x i8] c"android/telephony/AccessNetworkConstants$AccessNetworkType\00", align 1 +@.TypeMapEntry.8002_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.AccessNetworkConstants+EutranBand, Mono.Android\00", align 1 +@.TypeMapEntry.8003_to = private unnamed_addr constant [52 x i8] c"android/telephony/AccessNetworkConstants$EutranBand\00", align 1 +@.TypeMapEntry.8004_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.AccessNetworkConstants+GeranBand, Mono.Android\00", align 1 +@.TypeMapEntry.8005_to = private unnamed_addr constant [51 x i8] c"android/telephony/AccessNetworkConstants$GeranBand\00", align 1 +@.TypeMapEntry.8006_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.AccessNetworkConstants+NgranBands, Mono.Android\00", align 1 +@.TypeMapEntry.8007_to = private unnamed_addr constant [52 x i8] c"android/telephony/AccessNetworkConstants$NgranBands\00", align 1 +@.TypeMapEntry.8008_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.AccessNetworkConstants+UtranBand, Mono.Android\00", align 1 +@.TypeMapEntry.8009_to = private unnamed_addr constant [51 x i8] c"android/telephony/AccessNetworkConstants$UtranBand\00", align 1 +@.TypeMapEntry.8010_from = private unnamed_addr constant [55 x i8] c"Android.Telephony.AccessNetworkConstants, Mono.Android\00", align 1 +@.TypeMapEntry.8011_to = private unnamed_addr constant [41 x i8] c"android/telephony/AccessNetworkConstants\00", align 1 +@.TypeMapEntry.8012_from = private unnamed_addr constant [61 x i8] c"Android.Telephony.AvailableNetworkInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8013_to = private unnamed_addr constant [47 x i8] c"android/telephony/AvailableNetworkInfo$Builder\00", align 1 +@.TypeMapEntry.8014_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.AvailableNetworkInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8015_to = private unnamed_addr constant [39 x i8] c"android/telephony/AvailableNetworkInfo\00", align 1 +@.TypeMapEntry.8016_from = private unnamed_addr constant [63 x i8] c"Android.Telephony.BarringInfo+BarringServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8017_to = private unnamed_addr constant [49 x i8] c"android/telephony/BarringInfo$BarringServiceInfo\00", align 1 +@.TypeMapEntry.8018_from = private unnamed_addr constant [44 x i8] c"Android.Telephony.BarringInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8019_to = private unnamed_addr constant [30 x i8] c"android/telephony/BarringInfo\00", align 1 +@.TypeMapEntry.8020_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.CarrierConfigManager+Apn, Mono.Android\00", align 1 +@.TypeMapEntry.8021_to = private unnamed_addr constant [43 x i8] c"android/telephony/CarrierConfigManager$Apn\00", align 1 +@.TypeMapEntry.8022_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.CarrierConfigManager+Bsf, Mono.Android\00", align 1 +@.TypeMapEntry.8023_to = private unnamed_addr constant [43 x i8] c"android/telephony/CarrierConfigManager$Bsf\00", align 1 +@.TypeMapEntry.8024_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.CarrierConfigManager+Gps, Mono.Android\00", align 1 +@.TypeMapEntry.8025_to = private unnamed_addr constant [43 x i8] c"android/telephony/CarrierConfigManager$Gps\00", align 1 +@.TypeMapEntry.8026_from = private unnamed_addr constant [82 x i8] c"Android.Telephony.CarrierConfigManager+ICarrierConfigChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.8027_to = private unnamed_addr constant [67 x i8] c"android/telephony/CarrierConfigManager$CarrierConfigChangeListener\00", align 1 +@.TypeMapEntry.8028_from = private unnamed_addr constant [93 x i8] c"Android.Telephony.CarrierConfigManager+ICarrierConfigChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8029_to = private unnamed_addr constant [83 x i8] c"mono/android/telephony/CarrierConfigManager_CarrierConfigChangeListenerImplementor\00", align 1 +@.TypeMapEntry.8030_from = private unnamed_addr constant [89 x i8] c"Android.Telephony.CarrierConfigManager+ICarrierConfigChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8031_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.CarrierConfigManager+Ims, Mono.Android\00", align 1 +@.TypeMapEntry.8032_to = private unnamed_addr constant [43 x i8] c"android/telephony/CarrierConfigManager$Ims\00", align 1 +@.TypeMapEntry.8033_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.CarrierConfigManager+ImsEmergency, Mono.Android\00", align 1 +@.TypeMapEntry.8034_to = private unnamed_addr constant [52 x i8] c"android/telephony/CarrierConfigManager$ImsEmergency\00", align 1 +@.TypeMapEntry.8035_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.CarrierConfigManager+ImsRtt, Mono.Android\00", align 1 +@.TypeMapEntry.8036_to = private unnamed_addr constant [46 x i8] c"android/telephony/CarrierConfigManager$ImsRtt\00", align 1 +@.TypeMapEntry.8037_from = private unnamed_addr constant [75 x i8] c"Android.Telephony.CarrierConfigManager+ImsServiceEntitlement, Mono.Android\00", align 1 +@.TypeMapEntry.8038_to = private unnamed_addr constant [61 x i8] c"android/telephony/CarrierConfigManager$ImsServiceEntitlement\00", align 1 +@.TypeMapEntry.8039_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.CarrierConfigManager+ImsSms, Mono.Android\00", align 1 +@.TypeMapEntry.8040_to = private unnamed_addr constant [46 x i8] c"android/telephony/CarrierConfigManager$ImsSms\00", align 1 +@.TypeMapEntry.8041_from = private unnamed_addr constant [59 x i8] c"Android.Telephony.CarrierConfigManager+ImsSs, Mono.Android\00", align 1 +@.TypeMapEntry.8042_to = private unnamed_addr constant [45 x i8] c"android/telephony/CarrierConfigManager$ImsSs\00", align 1 +@.TypeMapEntry.8043_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.CarrierConfigManager+ImsVoice, Mono.Android\00", align 1 +@.TypeMapEntry.8044_to = private unnamed_addr constant [48 x i8] c"android/telephony/CarrierConfigManager$ImsVoice\00", align 1 +@.TypeMapEntry.8045_from = private unnamed_addr constant [59 x i8] c"Android.Telephony.CarrierConfigManager+ImsVt, Mono.Android\00", align 1 +@.TypeMapEntry.8046_to = private unnamed_addr constant [45 x i8] c"android/telephony/CarrierConfigManager$ImsVt\00", align 1 +@.TypeMapEntry.8047_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.CarrierConfigManager+ImsWfc, Mono.Android\00", align 1 +@.TypeMapEntry.8048_to = private unnamed_addr constant [46 x i8] c"android/telephony/CarrierConfigManager$ImsWfc\00", align 1 +@.TypeMapEntry.8049_from = private unnamed_addr constant [59 x i8] c"Android.Telephony.CarrierConfigManager+Iwlan, Mono.Android\00", align 1 +@.TypeMapEntry.8050_to = private unnamed_addr constant [45 x i8] c"android/telephony/CarrierConfigManager$Iwlan\00", align 1 +@.TypeMapEntry.8051_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.CarrierConfigManager, Mono.Android\00", align 1 +@.TypeMapEntry.8052_to = private unnamed_addr constant [39 x i8] c"android/telephony/CarrierConfigManager\00", align 1 +@.TypeMapEntry.8053_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.Cdma.CdmaCellLocation, Mono.Android\00", align 1 +@.TypeMapEntry.8054_to = private unnamed_addr constant [40 x i8] c"android/telephony/cdma/CdmaCellLocation\00", align 1 +@.TypeMapEntry.8055_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.CellIdentity, Mono.Android\00", align 1 +@.TypeMapEntry.8056_to = private unnamed_addr constant [31 x i8] c"android/telephony/CellIdentity\00", align 1 +@.TypeMapEntry.8057_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.CellIdentityCdma, Mono.Android\00", align 1 +@.TypeMapEntry.8058_to = private unnamed_addr constant [35 x i8] c"android/telephony/CellIdentityCdma\00", align 1 +@.TypeMapEntry.8059_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.CellIdentityGsm, Mono.Android\00", align 1 +@.TypeMapEntry.8060_to = private unnamed_addr constant [34 x i8] c"android/telephony/CellIdentityGsm\00", align 1 +@.TypeMapEntry.8061_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.CellIdentityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8062_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.CellIdentityLte, Mono.Android\00", align 1 +@.TypeMapEntry.8063_to = private unnamed_addr constant [34 x i8] c"android/telephony/CellIdentityLte\00", align 1 +@.TypeMapEntry.8064_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.CellIdentityNr, Mono.Android\00", align 1 +@.TypeMapEntry.8065_to = private unnamed_addr constant [33 x i8] c"android/telephony/CellIdentityNr\00", align 1 +@.TypeMapEntry.8066_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.CellIdentityTdscdma, Mono.Android\00", align 1 +@.TypeMapEntry.8067_to = private unnamed_addr constant [38 x i8] c"android/telephony/CellIdentityTdscdma\00", align 1 +@.TypeMapEntry.8068_from = private unnamed_addr constant [50 x i8] c"Android.Telephony.CellIdentityWcdma, Mono.Android\00", align 1 +@.TypeMapEntry.8069_to = private unnamed_addr constant [36 x i8] c"android/telephony/CellIdentityWcdma\00", align 1 +@.TypeMapEntry.8070_from = private unnamed_addr constant [41 x i8] c"Android.Telephony.CellInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8071_to = private unnamed_addr constant [27 x i8] c"android/telephony/CellInfo\00", align 1 +@.TypeMapEntry.8072_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.CellInfoCdma, Mono.Android\00", align 1 +@.TypeMapEntry.8073_to = private unnamed_addr constant [31 x i8] c"android/telephony/CellInfoCdma\00", align 1 +@.TypeMapEntry.8074_from = private unnamed_addr constant [44 x i8] c"Android.Telephony.CellInfoGsm, Mono.Android\00", align 1 +@.TypeMapEntry.8075_to = private unnamed_addr constant [30 x i8] c"android/telephony/CellInfoGsm\00", align 1 +@.TypeMapEntry.8076_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.CellInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8077_from = private unnamed_addr constant [44 x i8] c"Android.Telephony.CellInfoLte, Mono.Android\00", align 1 +@.TypeMapEntry.8078_to = private unnamed_addr constant [30 x i8] c"android/telephony/CellInfoLte\00", align 1 +@.TypeMapEntry.8079_from = private unnamed_addr constant [43 x i8] c"Android.Telephony.CellInfoNr, Mono.Android\00", align 1 +@.TypeMapEntry.8080_to = private unnamed_addr constant [29 x i8] c"android/telephony/CellInfoNr\00", align 1 +@.TypeMapEntry.8081_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.CellInfoTdscdma, Mono.Android\00", align 1 +@.TypeMapEntry.8082_to = private unnamed_addr constant [34 x i8] c"android/telephony/CellInfoTdscdma\00", align 1 +@.TypeMapEntry.8083_from = private unnamed_addr constant [46 x i8] c"Android.Telephony.CellInfoWcdma, Mono.Android\00", align 1 +@.TypeMapEntry.8084_to = private unnamed_addr constant [32 x i8] c"android/telephony/CellInfoWcdma\00", align 1 +@.TypeMapEntry.8085_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.CellLocation, Mono.Android\00", align 1 +@.TypeMapEntry.8086_to = private unnamed_addr constant [31 x i8] c"android/telephony/CellLocation\00", align 1 +@.TypeMapEntry.8087_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.CellLocationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8088_from = private unnamed_addr constant [51 x i8] c"Android.Telephony.CellSignalStrength, Mono.Android\00", align 1 +@.TypeMapEntry.8089_to = private unnamed_addr constant [37 x i8] c"android/telephony/CellSignalStrength\00", align 1 +@.TypeMapEntry.8090_from = private unnamed_addr constant [55 x i8] c"Android.Telephony.CellSignalStrengthCdma, Mono.Android\00", align 1 +@.TypeMapEntry.8091_to = private unnamed_addr constant [41 x i8] c"android/telephony/CellSignalStrengthCdma\00", align 1 +@.TypeMapEntry.8092_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.CellSignalStrengthGsm, Mono.Android\00", align 1 +@.TypeMapEntry.8093_to = private unnamed_addr constant [40 x i8] c"android/telephony/CellSignalStrengthGsm\00", align 1 +@.TypeMapEntry.8094_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.CellSignalStrengthInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8095_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.CellSignalStrengthLte, Mono.Android\00", align 1 +@.TypeMapEntry.8096_to = private unnamed_addr constant [40 x i8] c"android/telephony/CellSignalStrengthLte\00", align 1 +@.TypeMapEntry.8097_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.CellSignalStrengthNr, Mono.Android\00", align 1 +@.TypeMapEntry.8098_to = private unnamed_addr constant [39 x i8] c"android/telephony/CellSignalStrengthNr\00", align 1 +@.TypeMapEntry.8099_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.CellSignalStrengthTdscdma, Mono.Android\00", align 1 +@.TypeMapEntry.8100_to = private unnamed_addr constant [44 x i8] c"android/telephony/CellSignalStrengthTdscdma\00", align 1 +@.TypeMapEntry.8101_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.CellSignalStrengthWcdma, Mono.Android\00", align 1 +@.TypeMapEntry.8102_to = private unnamed_addr constant [42 x i8] c"android/telephony/CellSignalStrengthWcdma\00", align 1 +@.TypeMapEntry.8103_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.ClosedSubscriberGroupInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8104_to = private unnamed_addr constant [44 x i8] c"android/telephony/ClosedSubscriberGroupInfo\00", align 1 +@.TypeMapEntry.8105_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.Data.ApnSetting+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8106_to = private unnamed_addr constant [42 x i8] c"android/telephony/data/ApnSetting$Builder\00", align 1 +@.TypeMapEntry.8107_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.Data.ApnSetting, Mono.Android\00", align 1 +@.TypeMapEntry.8108_to = private unnamed_addr constant [34 x i8] c"android/telephony/data/ApnSetting\00", align 1 +@.TypeMapEntry.8109_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Data.NetworkSliceInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8110_to = private unnamed_addr constant [48 x i8] c"android/telephony/data/NetworkSliceInfo$Builder\00", align 1 +@.TypeMapEntry.8111_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.Data.NetworkSliceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8112_to = private unnamed_addr constant [40 x i8] c"android/telephony/data/NetworkSliceInfo\00", align 1 +@.TypeMapEntry.8113_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.Data.NetworkSlicingConfig, Mono.Android\00", align 1 +@.TypeMapEntry.8114_to = private unnamed_addr constant [44 x i8] c"android/telephony/data/NetworkSlicingConfig\00", align 1 +@.TypeMapEntry.8115_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Data.RouteSelectionDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.8116_to = private unnamed_addr constant [48 x i8] c"android/telephony/data/RouteSelectionDescriptor\00", align 1 +@.TypeMapEntry.8117_from = private unnamed_addr constant [63 x i8] c"Android.Telephony.Data.TrafficDescriptor+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8118_to = private unnamed_addr constant [49 x i8] c"android/telephony/data/TrafficDescriptor$Builder\00", align 1 +@.TypeMapEntry.8119_from = private unnamed_addr constant [55 x i8] c"Android.Telephony.Data.TrafficDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.8120_to = private unnamed_addr constant [41 x i8] c"android/telephony/data/TrafficDescriptor\00", align 1 +@.TypeMapEntry.8121_from = private unnamed_addr constant [46 x i8] c"Android.Telephony.Data.UrspRule, Mono.Android\00", align 1 +@.TypeMapEntry.8122_to = private unnamed_addr constant [32 x i8] c"android/telephony/data/UrspRule\00", align 1 +@.TypeMapEntry.8123_from = private unnamed_addr constant [46 x i8] c"Android.Telephony.DataFailCause, Mono.Android\00", align 1 +@.TypeMapEntry.8124_to = private unnamed_addr constant [32 x i8] c"android/telephony/DataFailCause\00", align 1 +@.TypeMapEntry.8125_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.DisconnectCause, Mono.Android\00", align 1 +@.TypeMapEntry.8126_to = private unnamed_addr constant [34 x i8] c"android/telephony/DisconnectCause\00", align 1 +@.TypeMapEntry.8127_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.Emergency.EmergencyNumber, Mono.Android\00", align 1 +@.TypeMapEntry.8128_to = private unnamed_addr constant [44 x i8] c"android/telephony/emergency/EmergencyNumber\00", align 1 +@.TypeMapEntry.8129_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.Euicc.DownloadableSubscription+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8130_to = private unnamed_addr constant [57 x i8] c"android/telephony/euicc/DownloadableSubscription$Builder\00", align 1 +@.TypeMapEntry.8131_from = private unnamed_addr constant [63 x i8] c"Android.Telephony.Euicc.DownloadableSubscription, Mono.Android\00", align 1 +@.TypeMapEntry.8132_to = private unnamed_addr constant [49 x i8] c"android/telephony/euicc/DownloadableSubscription\00", align 1 +@.TypeMapEntry.8133_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.Euicc.EuiccInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8134_to = private unnamed_addr constant [34 x i8] c"android/telephony/euicc/EuiccInfo\00", align 1 +@.TypeMapEntry.8135_from = private unnamed_addr constant [51 x i8] c"Android.Telephony.Euicc.EuiccManager, Mono.Android\00", align 1 +@.TypeMapEntry.8136_to = private unnamed_addr constant [37 x i8] c"android/telephony/euicc/EuiccManager\00", align 1 +@.TypeMapEntry.8137_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.Gsm.GsmCellLocation, Mono.Android\00", align 1 +@.TypeMapEntry.8138_to = private unnamed_addr constant [38 x i8] c"android/telephony/gsm/GsmCellLocation\00", align 1 +@.TypeMapEntry.8139_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.Gsm.SmsManager, Mono.Android\00", align 1 +@.TypeMapEntry.8140_to = private unnamed_addr constant [33 x i8] c"android/telephony/gsm/SmsManager\00", align 1 +@.TypeMapEntry.8141_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.Gsm.SmsMessage+MessageClass, Mono.Android\00", align 1 +@.TypeMapEntry.8142_to = private unnamed_addr constant [46 x i8] c"android/telephony/gsm/SmsMessage$MessageClass\00", align 1 +@.TypeMapEntry.8143_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.Gsm.SmsMessage+SubmitPdu, Mono.Android\00", align 1 +@.TypeMapEntry.8144_to = private unnamed_addr constant [43 x i8] c"android/telephony/gsm/SmsMessage$SubmitPdu\00", align 1 +@.TypeMapEntry.8145_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.Gsm.SmsMessage, Mono.Android\00", align 1 +@.TypeMapEntry.8146_to = private unnamed_addr constant [33 x i8] c"android/telephony/gsm/SmsMessage\00", align 1 +@.TypeMapEntry.8147_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.IccOpenLogicalChannelResponse, Mono.Android\00", align 1 +@.TypeMapEntry.8148_to = private unnamed_addr constant [48 x i8] c"android/telephony/IccOpenLogicalChannelResponse\00", align 1 +@.TypeMapEntry.8149_from = private unnamed_addr constant [75 x i8] c"Android.Telephony.Ims.Feature.MmTelFeature+MmTelCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.8150_to = private unnamed_addr constant [61 x i8] c"android/telephony/ims/feature/MmTelFeature$MmTelCapabilities\00", align 1 +@.TypeMapEntry.8151_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.Ims.Feature.MmTelFeature, Mono.Android\00", align 1 +@.TypeMapEntry.8152_to = private unnamed_addr constant [43 x i8] c"android/telephony/ims/feature/MmTelFeature\00", align 1 +@.TypeMapEntry.8153_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.Ims.IRegistrationManager, Mono.Android\00", align 1 +@.TypeMapEntry.8154_to = private unnamed_addr constant [42 x i8] c"android/telephony/ims/RegistrationManager\00", align 1 +@.TypeMapEntry.8155_from = private unnamed_addr constant [64 x i8] c"Android.Telephony.Ims.IRegistrationManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8156_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.Ims.ImsException, Mono.Android\00", align 1 +@.TypeMapEntry.8157_to = private unnamed_addr constant [35 x i8] c"android/telephony/ims/ImsException\00", align 1 +@.TypeMapEntry.8158_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.Ims.ImsManager, Mono.Android\00", align 1 +@.TypeMapEntry.8159_to = private unnamed_addr constant [33 x i8] c"android/telephony/ims/ImsManager\00", align 1 +@.TypeMapEntry.8160_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.Ims.ImsMmTelManager+CapabilityCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8161_to = private unnamed_addr constant [57 x i8] c"android/telephony/ims/ImsMmTelManager$CapabilityCallback\00", align 1 +@.TypeMapEntry.8162_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.Ims.ImsMmTelManager, Mono.Android\00", align 1 +@.TypeMapEntry.8163_to = private unnamed_addr constant [38 x i8] c"android/telephony/ims/ImsMmTelManager\00", align 1 +@.TypeMapEntry.8164_from = private unnamed_addr constant [50 x i8] c"Android.Telephony.Ims.ImsRcsManager, Mono.Android\00", align 1 +@.TypeMapEntry.8165_to = private unnamed_addr constant [36 x i8] c"android/telephony/ims/ImsRcsManager\00", align 1 +@.TypeMapEntry.8166_from = private unnamed_addr constant [50 x i8] c"Android.Telephony.Ims.ImsReasonInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8167_to = private unnamed_addr constant [36 x i8] c"android/telephony/ims/ImsReasonInfo\00", align 1 +@.TypeMapEntry.8168_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Ims.ImsRegistrationAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.8169_to = private unnamed_addr constant [48 x i8] c"android/telephony/ims/ImsRegistrationAttributes\00", align 1 +@.TypeMapEntry.8170_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.Ims.ImsStateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8171_to = private unnamed_addr constant [39 x i8] c"android/telephony/ims/ImsStateCallback\00", align 1 +@.TypeMapEntry.8172_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.Ims.ImsStateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8173_from = private unnamed_addr constant [84 x i8] c"Android.Telephony.Ims.ProvisioningManager+FeatureProvisioningCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8174_to = private unnamed_addr constant [70 x i8] c"android/telephony/ims/ProvisioningManager$FeatureProvisioningCallback\00", align 1 +@.TypeMapEntry.8175_from = private unnamed_addr constant [91 x i8] c"Android.Telephony.Ims.ProvisioningManager+FeatureProvisioningCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8176_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.Ims.ProvisioningManager, Mono.Android\00", align 1 +@.TypeMapEntry.8177_to = private unnamed_addr constant [42 x i8] c"android/telephony/ims/ProvisioningManager\00", align 1 +@.TypeMapEntry.8178_from = private unnamed_addr constant [50 x i8] c"Android.Telephony.Ims.RcsUceAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.8179_to = private unnamed_addr constant [36 x i8] c"android/telephony/ims/RcsUceAdapter\00", align 1 +@.TypeMapEntry.8180_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.Ims.RegistrationManager, Mono.Android\00", align 1 +@.TypeMapEntry.8181_to = private unnamed_addr constant [56 x i8] c"mono/internal/android/telephony/ims/RegistrationManager\00", align 1 +@.TypeMapEntry.8182_from = private unnamed_addr constant [76 x i8] c"Android.Telephony.Ims.RegistrationManagerRegistrationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8183_to = private unnamed_addr constant [63 x i8] c"android/telephony/ims/RegistrationManager$RegistrationCallback\00", align 1 +@.TypeMapEntry.8184_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.Ims.SipDetails, Mono.Android\00", align 1 +@.TypeMapEntry.8185_to = private unnamed_addr constant [33 x i8] c"android/telephony/ims/SipDetails\00", align 1 +@.TypeMapEntry.8186_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.Ims.Stub.ImsRegistrationImplBase, Mono.Android\00", align 1 +@.TypeMapEntry.8187_to = private unnamed_addr constant [51 x i8] c"android/telephony/ims/stub/ImsRegistrationImplBase\00", align 1 +@.TypeMapEntry.8188_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Mbms.DownloadProgressListener, Mono.Android\00", align 1 +@.TypeMapEntry.8189_to = private unnamed_addr constant [48 x i8] c"android/telephony/mbms/DownloadProgressListener\00", align 1 +@.TypeMapEntry.8190_from = private unnamed_addr constant [61 x i8] c"Android.Telephony.Mbms.DownloadRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8191_to = private unnamed_addr constant [47 x i8] c"android/telephony/mbms/DownloadRequest$Builder\00", align 1 +@.TypeMapEntry.8192_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.Mbms.DownloadRequest, Mono.Android\00", align 1 +@.TypeMapEntry.8193_to = private unnamed_addr constant [39 x i8] c"android/telephony/mbms/DownloadRequest\00", align 1 +@.TypeMapEntry.8194_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.Mbms.DownloadStatusListener, Mono.Android\00", align 1 +@.TypeMapEntry.8195_to = private unnamed_addr constant [46 x i8] c"android/telephony/mbms/DownloadStatusListener\00", align 1 +@.TypeMapEntry.8196_from = private unnamed_addr constant [46 x i8] c"Android.Telephony.Mbms.FileInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8197_to = private unnamed_addr constant [32 x i8] c"android/telephony/mbms/FileInfo\00", align 1 +@.TypeMapEntry.8198_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.Mbms.FileServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8199_to = private unnamed_addr constant [39 x i8] c"android/telephony/mbms/FileServiceInfo\00", align 1 +@.TypeMapEntry.8200_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.Mbms.GroupCall, Mono.Android\00", align 1 +@.TypeMapEntry.8201_to = private unnamed_addr constant [33 x i8] c"android/telephony/mbms/GroupCall\00", align 1 +@.TypeMapEntry.8202_from = private unnamed_addr constant [55 x i8] c"Android.Telephony.Mbms.GroupCallCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8203_to = private unnamed_addr constant [55 x i8] c"mono/internal/android/telephony/mbms/GroupCallCallback\00", align 1 +@.TypeMapEntry.8204_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.Mbms.IGroupCallCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8205_to = private unnamed_addr constant [41 x i8] c"android/telephony/mbms/GroupCallCallback\00", align 1 +@.TypeMapEntry.8206_from = private unnamed_addr constant [63 x i8] c"Android.Telephony.Mbms.IGroupCallCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8207_from = private unnamed_addr constant [67 x i8] c"Android.Telephony.Mbms.IMbmsGroupCallSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8208_to = private unnamed_addr constant [52 x i8] c"android/telephony/mbms/MbmsGroupCallSessionCallback\00", align 1 +@.TypeMapEntry.8209_from = private unnamed_addr constant [74 x i8] c"Android.Telephony.Mbms.IMbmsGroupCallSessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8210_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.Mbms.MbmsDownloadReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.8211_to = private unnamed_addr constant [44 x i8] c"android/telephony/mbms/MbmsDownloadReceiver\00", align 1 +@.TypeMapEntry.8212_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.Mbms.MbmsDownloadSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8213_to = private unnamed_addr constant [51 x i8] c"android/telephony/mbms/MbmsDownloadSessionCallback\00", align 1 +@.TypeMapEntry.8214_from = private unnamed_addr constant [63 x i8] c"Android.Telephony.Mbms.MbmsErrors+DownloadErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8215_to = private unnamed_addr constant [49 x i8] c"android/telephony/mbms/MbmsErrors$DownloadErrors\00", align 1 +@.TypeMapEntry.8216_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Mbms.MbmsErrors+GeneralErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8217_to = private unnamed_addr constant [48 x i8] c"android/telephony/mbms/MbmsErrors$GeneralErrors\00", align 1 +@.TypeMapEntry.8218_from = private unnamed_addr constant [64 x i8] c"Android.Telephony.Mbms.MbmsErrors+GroupCallErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8219_to = private unnamed_addr constant [50 x i8] c"android/telephony/mbms/MbmsErrors$GroupCallErrors\00", align 1 +@.TypeMapEntry.8220_from = private unnamed_addr constant [69 x i8] c"Android.Telephony.Mbms.MbmsErrors+InitializationErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8221_to = private unnamed_addr constant [55 x i8] c"android/telephony/mbms/MbmsErrors$InitializationErrors\00", align 1 +@.TypeMapEntry.8222_from = private unnamed_addr constant [64 x i8] c"Android.Telephony.Mbms.MbmsErrors+StreamingErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8223_to = private unnamed_addr constant [50 x i8] c"android/telephony/mbms/MbmsErrors$StreamingErrors\00", align 1 +@.TypeMapEntry.8224_from = private unnamed_addr constant [48 x i8] c"Android.Telephony.Mbms.MbmsErrors, Mono.Android\00", align 1 +@.TypeMapEntry.8225_to = private unnamed_addr constant [34 x i8] c"android/telephony/mbms/MbmsErrors\00", align 1 +@.TypeMapEntry.8226_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.Mbms.MbmsStreamingSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8227_to = private unnamed_addr constant [52 x i8] c"android/telephony/mbms/MbmsStreamingSessionCallback\00", align 1 +@.TypeMapEntry.8228_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.Mbms.ServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8229_to = private unnamed_addr constant [35 x i8] c"android/telephony/mbms/ServiceInfo\00", align 1 +@.TypeMapEntry.8230_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.Mbms.StreamingService, Mono.Android\00", align 1 +@.TypeMapEntry.8231_to = private unnamed_addr constant [40 x i8] c"android/telephony/mbms/StreamingService\00", align 1 +@.TypeMapEntry.8232_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.Mbms.StreamingServiceCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8233_to = private unnamed_addr constant [48 x i8] c"android/telephony/mbms/StreamingServiceCallback\00", align 1 +@.TypeMapEntry.8234_from = private unnamed_addr constant [58 x i8] c"Android.Telephony.Mbms.StreamingServiceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8235_to = private unnamed_addr constant [44 x i8] c"android/telephony/mbms/StreamingServiceInfo\00", align 1 +@.TypeMapEntry.8236_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.MbmsDownloadSession, Mono.Android\00", align 1 +@.TypeMapEntry.8237_to = private unnamed_addr constant [38 x i8] c"android/telephony/MbmsDownloadSession\00", align 1 +@.TypeMapEntry.8238_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.MbmsGroupCallSession, Mono.Android\00", align 1 +@.TypeMapEntry.8239_to = private unnamed_addr constant [39 x i8] c"android/telephony/MbmsGroupCallSession\00", align 1 +@.TypeMapEntry.8240_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.MbmsStreamingSession, Mono.Android\00", align 1 +@.TypeMapEntry.8241_to = private unnamed_addr constant [39 x i8] c"android/telephony/MbmsStreamingSession\00", align 1 +@.TypeMapEntry.8242_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.NeighboringCellInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8243_to = private unnamed_addr constant [38 x i8] c"android/telephony/NeighboringCellInfo\00", align 1 +@.TypeMapEntry.8244_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.NetworkRegistrationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8245_to = private unnamed_addr constant [42 x i8] c"android/telephony/NetworkRegistrationInfo\00", align 1 +@.TypeMapEntry.8246_from = private unnamed_addr constant [44 x i8] c"Android.Telephony.NetworkScan, Mono.Android\00", align 1 +@.TypeMapEntry.8247_to = private unnamed_addr constant [30 x i8] c"android/telephony/NetworkScan\00", align 1 +@.TypeMapEntry.8248_from = private unnamed_addr constant [51 x i8] c"Android.Telephony.NetworkScanRequest, Mono.Android\00", align 1 +@.TypeMapEntry.8249_to = private unnamed_addr constant [37 x i8] c"android/telephony/NetworkScanRequest\00", align 1 +@.TypeMapEntry.8250_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.PhoneNumberFormattingTextWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.8251_to = private unnamed_addr constant [51 x i8] c"android/telephony/PhoneNumberFormattingTextWatcher\00", align 1 +@.TypeMapEntry.8252_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.PhoneNumberUtils, Mono.Android\00", align 1 +@.TypeMapEntry.8253_to = private unnamed_addr constant [35 x i8] c"android/telephony/PhoneNumberUtils\00", align 1 +@.TypeMapEntry.8254_from = private unnamed_addr constant [51 x i8] c"Android.Telephony.PhoneStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8255_to = private unnamed_addr constant [37 x i8] c"android/telephony/PhoneStateListener\00", align 1 +@.TypeMapEntry.8256_from = private unnamed_addr constant [54 x i8] c"Android.Telephony.PhysicalChannelConfig, Mono.Android\00", align 1 +@.TypeMapEntry.8257_to = private unnamed_addr constant [40 x i8] c"android/telephony/PhysicalChannelConfig\00", align 1 +@.TypeMapEntry.8258_from = private unnamed_addr constant [59 x i8] c"Android.Telephony.PreciseDataConnectionState, Mono.Android\00", align 1 +@.TypeMapEntry.8259_to = private unnamed_addr constant [45 x i8] c"android/telephony/PreciseDataConnectionState\00", align 1 +@.TypeMapEntry.8260_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.RadioAccessSpecifier, Mono.Android\00", align 1 +@.TypeMapEntry.8261_to = private unnamed_addr constant [39 x i8] c"android/telephony/RadioAccessSpecifier\00", align 1 +@.TypeMapEntry.8262_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.ServiceState, Mono.Android\00", align 1 +@.TypeMapEntry.8263_to = private unnamed_addr constant [31 x i8] c"android/telephony/ServiceState\00", align 1 +@.TypeMapEntry.8264_from = private unnamed_addr constant [47 x i8] c"Android.Telephony.SignalStrength, Mono.Android\00", align 1 +@.TypeMapEntry.8265_to = private unnamed_addr constant [33 x i8] c"android/telephony/SignalStrength\00", align 1 +@.TypeMapEntry.8266_from = private unnamed_addr constant [68 x i8] c"Android.Telephony.SignalStrengthUpdateRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8267_to = private unnamed_addr constant [54 x i8] c"android/telephony/SignalStrengthUpdateRequest$Builder\00", align 1 +@.TypeMapEntry.8268_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.SignalStrengthUpdateRequest, Mono.Android\00", align 1 +@.TypeMapEntry.8269_to = private unnamed_addr constant [46 x i8] c"android/telephony/SignalStrengthUpdateRequest\00", align 1 +@.TypeMapEntry.8270_from = private unnamed_addr constant [60 x i8] c"Android.Telephony.SignalThresholdInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8271_to = private unnamed_addr constant [46 x i8] c"android/telephony/SignalThresholdInfo$Builder\00", align 1 +@.TypeMapEntry.8272_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.SignalThresholdInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8273_to = private unnamed_addr constant [38 x i8] c"android/telephony/SignalThresholdInfo\00", align 1 +@.TypeMapEntry.8274_from = private unnamed_addr constant [64 x i8] c"Android.Telephony.SmsManager+FinancialSmsCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8275_to = private unnamed_addr constant [50 x i8] c"android/telephony/SmsManager$FinancialSmsCallback\00", align 1 +@.TypeMapEntry.8276_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.SmsManager+FinancialSmsCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8277_from = private unnamed_addr constant [43 x i8] c"Android.Telephony.SmsManager, Mono.Android\00", align 1 +@.TypeMapEntry.8278_to = private unnamed_addr constant [29 x i8] c"android/telephony/SmsManager\00", align 1 +@.TypeMapEntry.8279_from = private unnamed_addr constant [56 x i8] c"Android.Telephony.SmsMessage+MessageClass, Mono.Android\00", align 1 +@.TypeMapEntry.8280_to = private unnamed_addr constant [42 x i8] c"android/telephony/SmsMessage$MessageClass\00", align 1 +@.TypeMapEntry.8281_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.SmsMessage+SubmitPdu, Mono.Android\00", align 1 +@.TypeMapEntry.8282_to = private unnamed_addr constant [39 x i8] c"android/telephony/SmsMessage$SubmitPdu\00", align 1 +@.TypeMapEntry.8283_from = private unnamed_addr constant [43 x i8] c"Android.Telephony.SmsMessage, Mono.Android\00", align 1 +@.TypeMapEntry.8284_to = private unnamed_addr constant [29 x i8] c"android/telephony/SmsMessage\00", align 1 +@.TypeMapEntry.8285_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.SubscriptionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8286_to = private unnamed_addr constant [35 x i8] c"android/telephony/SubscriptionInfo\00", align 1 +@.TypeMapEntry.8287_from = private unnamed_addr constant [96 x i8] c"Android.Telephony.SubscriptionManager+OnOpportunisticSubscriptionsChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.8288_to = private unnamed_addr constant [82 x i8] c"android/telephony/SubscriptionManager$OnOpportunisticSubscriptionsChangedListener\00", align 1 +@.TypeMapEntry.8289_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.SubscriptionManager+OnSubscriptionsChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.8290_to = private unnamed_addr constant [69 x i8] c"android/telephony/SubscriptionManager$OnSubscriptionsChangedListener\00", align 1 +@.TypeMapEntry.8291_from = private unnamed_addr constant [52 x i8] c"Android.Telephony.SubscriptionManager, Mono.Android\00", align 1 +@.TypeMapEntry.8292_to = private unnamed_addr constant [38 x i8] c"android/telephony/SubscriptionManager\00", align 1 +@.TypeMapEntry.8293_from = private unnamed_addr constant [57 x i8] c"Android.Telephony.SubscriptionPlan+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8294_to = private unnamed_addr constant [43 x i8] c"android/telephony/SubscriptionPlan$Builder\00", align 1 +@.TypeMapEntry.8295_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.SubscriptionPlan, Mono.Android\00", align 1 +@.TypeMapEntry.8296_to = private unnamed_addr constant [35 x i8] c"android/telephony/SubscriptionPlan\00", align 1 +@.TypeMapEntry.8297_from = private unnamed_addr constant [84 x i8] c"Android.Telephony.TelephonyCallback+IActiveDataSubscriptionIdListener, Mono.Android\00", align 1 +@.TypeMapEntry.8298_to = private unnamed_addr constant [69 x i8] c"android/telephony/TelephonyCallback$ActiveDataSubscriptionIdListener\00", align 1 +@.TypeMapEntry.8299_from = private unnamed_addr constant [95 x i8] c"Android.Telephony.TelephonyCallback+IActiveDataSubscriptionIdListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8300_to = private unnamed_addr constant [85 x i8] c"mono/android/telephony/TelephonyCallback_ActiveDataSubscriptionIdListenerImplementor\00", align 1 +@.TypeMapEntry.8301_from = private unnamed_addr constant [91 x i8] c"Android.Telephony.TelephonyCallback+IActiveDataSubscriptionIdListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8302_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.TelephonyCallback+IBarringInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.8303_to = private unnamed_addr constant [56 x i8] c"android/telephony/TelephonyCallback$BarringInfoListener\00", align 1 +@.TypeMapEntry.8304_from = private unnamed_addr constant [82 x i8] c"Android.Telephony.TelephonyCallback+IBarringInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8305_to = private unnamed_addr constant [72 x i8] c"mono/android/telephony/TelephonyCallback_BarringInfoListenerImplementor\00", align 1 +@.TypeMapEntry.8306_from = private unnamed_addr constant [78 x i8] c"Android.Telephony.TelephonyCallback+IBarringInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8307_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+ICallDisconnectCauseListener, Mono.Android\00", align 1 +@.TypeMapEntry.8308_to = private unnamed_addr constant [64 x i8] c"android/telephony/TelephonyCallback$CallDisconnectCauseListener\00", align 1 +@.TypeMapEntry.8309_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+ICallDisconnectCauseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8310_to = private unnamed_addr constant [80 x i8] c"mono/android/telephony/TelephonyCallback_CallDisconnectCauseListenerImplementor\00", align 1 +@.TypeMapEntry.8311_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+ICallDisconnectCauseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8312_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.TelephonyCallback+ICallForwardingIndicatorListener, Mono.Android\00", align 1 +@.TypeMapEntry.8313_to = private unnamed_addr constant [68 x i8] c"android/telephony/TelephonyCallback$CallForwardingIndicatorListener\00", align 1 +@.TypeMapEntry.8314_from = private unnamed_addr constant [94 x i8] c"Android.Telephony.TelephonyCallback+ICallForwardingIndicatorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8315_to = private unnamed_addr constant [84 x i8] c"mono/android/telephony/TelephonyCallback_CallForwardingIndicatorListenerImplementor\00", align 1 +@.TypeMapEntry.8316_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+ICallForwardingIndicatorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8317_from = private unnamed_addr constant [69 x i8] c"Android.Telephony.TelephonyCallback+ICallStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8318_to = private unnamed_addr constant [54 x i8] c"android/telephony/TelephonyCallback$CallStateListener\00", align 1 +@.TypeMapEntry.8319_from = private unnamed_addr constant [80 x i8] c"Android.Telephony.TelephonyCallback+ICallStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8320_to = private unnamed_addr constant [70 x i8] c"mono/android/telephony/TelephonyCallback_CallStateListenerImplementor\00", align 1 +@.TypeMapEntry.8321_from = private unnamed_addr constant [76 x i8] c"Android.Telephony.TelephonyCallback+ICallStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8322_from = private unnamed_addr constant [74 x i8] c"Android.Telephony.TelephonyCallback+ICarrierNetworkListener, Mono.Android\00", align 1 +@.TypeMapEntry.8323_to = private unnamed_addr constant [59 x i8] c"android/telephony/TelephonyCallback$CarrierNetworkListener\00", align 1 +@.TypeMapEntry.8324_from = private unnamed_addr constant [85 x i8] c"Android.Telephony.TelephonyCallback+ICarrierNetworkListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8325_to = private unnamed_addr constant [75 x i8] c"mono/android/telephony/TelephonyCallback_CarrierNetworkListenerImplementor\00", align 1 +@.TypeMapEntry.8326_from = private unnamed_addr constant [81 x i8] c"Android.Telephony.TelephonyCallback+ICarrierNetworkListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8327_from = private unnamed_addr constant [68 x i8] c"Android.Telephony.TelephonyCallback+ICellInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.8328_to = private unnamed_addr constant [53 x i8] c"android/telephony/TelephonyCallback$CellInfoListener\00", align 1 +@.TypeMapEntry.8329_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+ICellInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8330_to = private unnamed_addr constant [69 x i8] c"mono/android/telephony/TelephonyCallback_CellInfoListenerImplementor\00", align 1 +@.TypeMapEntry.8331_from = private unnamed_addr constant [75 x i8] c"Android.Telephony.TelephonyCallback+ICellInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8332_from = private unnamed_addr constant [72 x i8] c"Android.Telephony.TelephonyCallback+ICellLocationListener, Mono.Android\00", align 1 +@.TypeMapEntry.8333_to = private unnamed_addr constant [57 x i8] c"android/telephony/TelephonyCallback$CellLocationListener\00", align 1 +@.TypeMapEntry.8334_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.TelephonyCallback+ICellLocationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8335_to = private unnamed_addr constant [73 x i8] c"mono/android/telephony/TelephonyCallback_CellLocationListenerImplementor\00", align 1 +@.TypeMapEntry.8336_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+ICellLocationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8337_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IDataActivationStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8338_to = private unnamed_addr constant [64 x i8] c"android/telephony/TelephonyCallback$DataActivationStateListener\00", align 1 +@.TypeMapEntry.8339_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+IDataActivationStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8340_to = private unnamed_addr constant [80 x i8] c"mono/android/telephony/TelephonyCallback_DataActivationStateListenerImplementor\00", align 1 +@.TypeMapEntry.8341_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+IDataActivationStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8342_from = private unnamed_addr constant [72 x i8] c"Android.Telephony.TelephonyCallback+IDataActivityListener, Mono.Android\00", align 1 +@.TypeMapEntry.8343_to = private unnamed_addr constant [57 x i8] c"android/telephony/TelephonyCallback$DataActivityListener\00", align 1 +@.TypeMapEntry.8344_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.TelephonyCallback+IDataActivityListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8345_to = private unnamed_addr constant [73 x i8] c"mono/android/telephony/TelephonyCallback_DataActivityListenerImplementor\00", align 1 +@.TypeMapEntry.8346_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IDataActivityListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8347_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IDataConnectionStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8348_to = private unnamed_addr constant [64 x i8] c"android/telephony/TelephonyCallback$DataConnectionStateListener\00", align 1 +@.TypeMapEntry.8349_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+IDataConnectionStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8350_to = private unnamed_addr constant [80 x i8] c"mono/android/telephony/TelephonyCallback_DataConnectionStateListenerImplementor\00", align 1 +@.TypeMapEntry.8351_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+IDataConnectionStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8352_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.TelephonyCallback+IDisplayInfoListener, Mono.Android\00", align 1 +@.TypeMapEntry.8353_to = private unnamed_addr constant [56 x i8] c"android/telephony/TelephonyCallback$DisplayInfoListener\00", align 1 +@.TypeMapEntry.8354_from = private unnamed_addr constant [82 x i8] c"Android.Telephony.TelephonyCallback+IDisplayInfoListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8355_to = private unnamed_addr constant [72 x i8] c"mono/android/telephony/TelephonyCallback_DisplayInfoListenerImplementor\00", align 1 +@.TypeMapEntry.8356_from = private unnamed_addr constant [78 x i8] c"Android.Telephony.TelephonyCallback+IDisplayInfoListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8357_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IEmergencyNumberListListener, Mono.Android\00", align 1 +@.TypeMapEntry.8358_to = private unnamed_addr constant [64 x i8] c"android/telephony/TelephonyCallback$EmergencyNumberListListener\00", align 1 +@.TypeMapEntry.8359_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+IEmergencyNumberListListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8360_to = private unnamed_addr constant [80 x i8] c"mono/android/telephony/TelephonyCallback_EmergencyNumberListListenerImplementor\00", align 1 +@.TypeMapEntry.8361_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+IEmergencyNumberListListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8362_from = private unnamed_addr constant [82 x i8] c"Android.Telephony.TelephonyCallback+IImsCallDisconnectCauseListener, Mono.Android\00", align 1 +@.TypeMapEntry.8363_to = private unnamed_addr constant [67 x i8] c"android/telephony/TelephonyCallback$ImsCallDisconnectCauseListener\00", align 1 +@.TypeMapEntry.8364_from = private unnamed_addr constant [93 x i8] c"Android.Telephony.TelephonyCallback+IImsCallDisconnectCauseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8365_to = private unnamed_addr constant [83 x i8] c"mono/android/telephony/TelephonyCallback_ImsCallDisconnectCauseListenerImplementor\00", align 1 +@.TypeMapEntry.8366_from = private unnamed_addr constant [89 x i8] c"Android.Telephony.TelephonyCallback+IImsCallDisconnectCauseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8367_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.TelephonyCallback+IMessageWaitingIndicatorListener, Mono.Android\00", align 1 +@.TypeMapEntry.8368_to = private unnamed_addr constant [68 x i8] c"android/telephony/TelephonyCallback$MessageWaitingIndicatorListener\00", align 1 +@.TypeMapEntry.8369_from = private unnamed_addr constant [94 x i8] c"Android.Telephony.TelephonyCallback+IMessageWaitingIndicatorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8370_to = private unnamed_addr constant [84 x i8] c"mono/android/telephony/TelephonyCallback_MessageWaitingIndicatorListenerImplementor\00", align 1 +@.TypeMapEntry.8371_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+IMessageWaitingIndicatorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8372_from = private unnamed_addr constant [81 x i8] c"Android.Telephony.TelephonyCallback+IPhysicalChannelConfigListener, Mono.Android\00", align 1 +@.TypeMapEntry.8373_to = private unnamed_addr constant [66 x i8] c"android/telephony/TelephonyCallback$PhysicalChannelConfigListener\00", align 1 +@.TypeMapEntry.8374_from = private unnamed_addr constant [92 x i8] c"Android.Telephony.TelephonyCallback+IPhysicalChannelConfigListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8375_to = private unnamed_addr constant [82 x i8] c"mono/android/telephony/TelephonyCallback_PhysicalChannelConfigListenerImplementor\00", align 1 +@.TypeMapEntry.8376_from = private unnamed_addr constant [88 x i8] c"Android.Telephony.TelephonyCallback+IPhysicalChannelConfigListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8377_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+IPreciseDataConnectionStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8378_to = private unnamed_addr constant [71 x i8] c"android/telephony/TelephonyCallback$PreciseDataConnectionStateListener\00", align 1 +@.TypeMapEntry.8379_from = private unnamed_addr constant [97 x i8] c"Android.Telephony.TelephonyCallback+IPreciseDataConnectionStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8380_to = private unnamed_addr constant [87 x i8] c"mono/android/telephony/TelephonyCallback_PreciseDataConnectionStateListenerImplementor\00", align 1 +@.TypeMapEntry.8381_from = private unnamed_addr constant [93 x i8] c"Android.Telephony.TelephonyCallback+IPreciseDataConnectionStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8382_from = private unnamed_addr constant [78 x i8] c"Android.Telephony.TelephonyCallback+IRegistrationFailedListener, Mono.Android\00", align 1 +@.TypeMapEntry.8383_to = private unnamed_addr constant [63 x i8] c"android/telephony/TelephonyCallback$RegistrationFailedListener\00", align 1 +@.TypeMapEntry.8384_from = private unnamed_addr constant [89 x i8] c"Android.Telephony.TelephonyCallback+IRegistrationFailedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8385_to = private unnamed_addr constant [79 x i8] c"mono/android/telephony/TelephonyCallback_RegistrationFailedListenerImplementor\00", align 1 +@.TypeMapEntry.8386_from = private unnamed_addr constant [85 x i8] c"Android.Telephony.TelephonyCallback+IRegistrationFailedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8387_from = private unnamed_addr constant [72 x i8] c"Android.Telephony.TelephonyCallback+IServiceStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8388_to = private unnamed_addr constant [57 x i8] c"android/telephony/TelephonyCallback$ServiceStateListener\00", align 1 +@.TypeMapEntry.8389_from = private unnamed_addr constant [83 x i8] c"Android.Telephony.TelephonyCallback+IServiceStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8390_to = private unnamed_addr constant [73 x i8] c"mono/android/telephony/TelephonyCallback_ServiceStateListenerImplementor\00", align 1 +@.TypeMapEntry.8391_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IServiceStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8392_from = private unnamed_addr constant [75 x i8] c"Android.Telephony.TelephonyCallback+ISignalStrengthsListener, Mono.Android\00", align 1 +@.TypeMapEntry.8393_to = private unnamed_addr constant [60 x i8] c"android/telephony/TelephonyCallback$SignalStrengthsListener\00", align 1 +@.TypeMapEntry.8394_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+ISignalStrengthsListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8395_to = private unnamed_addr constant [76 x i8] c"mono/android/telephony/TelephonyCallback_SignalStrengthsListenerImplementor\00", align 1 +@.TypeMapEntry.8396_from = private unnamed_addr constant [82 x i8] c"Android.Telephony.TelephonyCallback+ISignalStrengthsListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8397_from = private unnamed_addr constant [79 x i8] c"Android.Telephony.TelephonyCallback+IUserMobileDataStateListener, Mono.Android\00", align 1 +@.TypeMapEntry.8398_to = private unnamed_addr constant [64 x i8] c"android/telephony/TelephonyCallback$UserMobileDataStateListener\00", align 1 +@.TypeMapEntry.8399_from = private unnamed_addr constant [90 x i8] c"Android.Telephony.TelephonyCallback+IUserMobileDataStateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8400_to = private unnamed_addr constant [80 x i8] c"mono/android/telephony/TelephonyCallback_UserMobileDataStateListenerImplementor\00", align 1 +@.TypeMapEntry.8401_from = private unnamed_addr constant [86 x i8] c"Android.Telephony.TelephonyCallback+IUserMobileDataStateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8402_from = private unnamed_addr constant [50 x i8] c"Android.Telephony.TelephonyCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8403_to = private unnamed_addr constant [36 x i8] c"android/telephony/TelephonyCallback\00", align 1 +@.TypeMapEntry.8404_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.TelephonyDisplayInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8405_to = private unnamed_addr constant [39 x i8] c"android/telephony/TelephonyDisplayInfo\00", align 1 +@.TypeMapEntry.8406_from = private unnamed_addr constant [71 x i8] c"Android.Telephony.TelephonyManager+CallComposerException, Mono.Android\00", align 1 +@.TypeMapEntry.8407_to = private unnamed_addr constant [57 x i8] c"android/telephony/TelephonyManager$CallComposerException\00", align 1 +@.TypeMapEntry.8408_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.TelephonyManager+CellInfoCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8409_to = private unnamed_addr constant [52 x i8] c"android/telephony/TelephonyManager$CellInfoCallback\00", align 1 +@.TypeMapEntry.8410_from = private unnamed_addr constant [73 x i8] c"Android.Telephony.TelephonyManager+CellInfoCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8411_from = private unnamed_addr constant [69 x i8] c"Android.Telephony.TelephonyManager+ModemErrorException, Mono.Android\00", align 1 +@.TypeMapEntry.8412_to = private unnamed_addr constant [55 x i8] c"android/telephony/TelephonyManager$ModemErrorException\00", align 1 +@.TypeMapEntry.8413_from = private unnamed_addr constant [73 x i8] c"Android.Telephony.TelephonyManager+NetworkSlicingException, Mono.Android\00", align 1 +@.TypeMapEntry.8414_to = private unnamed_addr constant [59 x i8] c"android/telephony/TelephonyManager$NetworkSlicingException\00", align 1 +@.TypeMapEntry.8415_from = private unnamed_addr constant [66 x i8] c"Android.Telephony.TelephonyManager+TimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.8416_to = private unnamed_addr constant [52 x i8] c"android/telephony/TelephonyManager$TimeoutException\00", align 1 +@.TypeMapEntry.8417_from = private unnamed_addr constant [70 x i8] c"Android.Telephony.TelephonyManager+UssdResponseCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8418_to = private unnamed_addr constant [56 x i8] c"android/telephony/TelephonyManager$UssdResponseCallback\00", align 1 +@.TypeMapEntry.8419_from = private unnamed_addr constant [77 x i8] c"Android.Telephony.TelephonyManager+UssdResponseCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8420_from = private unnamed_addr constant [49 x i8] c"Android.Telephony.TelephonyManager, Mono.Android\00", align 1 +@.TypeMapEntry.8421_to = private unnamed_addr constant [35 x i8] c"android/telephony/TelephonyManager\00", align 1 +@.TypeMapEntry.8422_from = private unnamed_addr constant [73 x i8] c"Android.Telephony.TelephonyScanManager+NetworkScanCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8423_to = private unnamed_addr constant [59 x i8] c"android/telephony/TelephonyScanManager$NetworkScanCallback\00", align 1 +@.TypeMapEntry.8424_from = private unnamed_addr constant [80 x i8] c"Android.Telephony.TelephonyScanManager+NetworkScanCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8425_from = private unnamed_addr constant [53 x i8] c"Android.Telephony.TelephonyScanManager, Mono.Android\00", align 1 +@.TypeMapEntry.8426_to = private unnamed_addr constant [39 x i8] c"android/telephony/TelephonyScanManager\00", align 1 +@.TypeMapEntry.8427_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.UiccCardInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8428_to = private unnamed_addr constant [31 x i8] c"android/telephony/UiccCardInfo\00", align 1 +@.TypeMapEntry.8429_from = private unnamed_addr constant [45 x i8] c"Android.Telephony.UiccPortInfo, Mono.Android\00", align 1 +@.TypeMapEntry.8430_to = private unnamed_addr constant [31 x i8] c"android/telephony/UiccPortInfo\00", align 1 +@.TypeMapEntry.8431_from = private unnamed_addr constant [75 x i8] c"Android.Telephony.VisualVoicemailService+VisualVoicemailTask, Mono.Android\00", align 1 +@.TypeMapEntry.8432_to = private unnamed_addr constant [61 x i8] c"android/telephony/VisualVoicemailService$VisualVoicemailTask\00", align 1 +@.TypeMapEntry.8433_from = private unnamed_addr constant [55 x i8] c"Android.Telephony.VisualVoicemailService, Mono.Android\00", align 1 +@.TypeMapEntry.8434_to = private unnamed_addr constant [41 x i8] c"android/telephony/VisualVoicemailService\00", align 1 +@.TypeMapEntry.8435_from = private unnamed_addr constant [62 x i8] c"Android.Telephony.VisualVoicemailServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8436_from = private unnamed_addr constant [51 x i8] c"Android.Telephony.VisualVoicemailSms, Mono.Android\00", align 1 +@.TypeMapEntry.8437_to = private unnamed_addr constant [37 x i8] c"android/telephony/VisualVoicemailSms\00", align 1 +@.TypeMapEntry.8438_from = private unnamed_addr constant [73 x i8] c"Android.Telephony.VisualVoicemailSmsFilterSettings+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8439_to = private unnamed_addr constant [59 x i8] c"android/telephony/VisualVoicemailSmsFilterSettings$Builder\00", align 1 +@.TypeMapEntry.8440_from = private unnamed_addr constant [65 x i8] c"Android.Telephony.VisualVoicemailSmsFilterSettings, Mono.Android\00", align 1 +@.TypeMapEntry.8441_to = private unnamed_addr constant [51 x i8] c"android/telephony/VisualVoicemailSmsFilterSettings\00", align 1 +@.TypeMapEntry.8442_from = private unnamed_addr constant [48 x i8] c"Android.Test.AssertionFailedError, Mono.Android\00", align 1 +@.TypeMapEntry.8443_to = private unnamed_addr constant [34 x i8] c"android/test/AssertionFailedError\00", align 1 +@.TypeMapEntry.8444_from = private unnamed_addr constant [45 x i8] c"Android.Test.ComparisonFailure, Mono.Android\00", align 1 +@.TypeMapEntry.8445_to = private unnamed_addr constant [31 x i8] c"android/test/ComparisonFailure\00", align 1 +@.TypeMapEntry.8446_from = private unnamed_addr constant [37 x i8] c"Android.Test.FlakyTest, Mono.Android\00", align 1 +@.TypeMapEntry.8447_to = private unnamed_addr constant [23 x i8] c"android/test/FlakyTest\00", align 1 +@.TypeMapEntry.8448_from = private unnamed_addr constant [44 x i8] c"Android.Test.FlakyTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8449_from = private unnamed_addr constant [38 x i8] c"Android.Test.IFlakyTest, Mono.Android\00", align 1 +@.TypeMapEntry.8450_from = private unnamed_addr constant [45 x i8] c"Android.Test.IFlakyTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8451_from = private unnamed_addr constant [48 x i8] c"Android.Test.IPerformanceTestCase, Mono.Android\00", align 1 +@.TypeMapEntry.8452_to = private unnamed_addr constant [33 x i8] c"android/test/PerformanceTestCase\00", align 1 +@.TypeMapEntry.8453_from = private unnamed_addr constant [61 x i8] c"Android.Test.IPerformanceTestCaseIntermediates, Mono.Android\00", align 1 +@.TypeMapEntry.8454_to = private unnamed_addr constant [47 x i8] c"android/test/PerformanceTestCase$Intermediates\00", align 1 +@.TypeMapEntry.8455_from = private unnamed_addr constant [68 x i8] c"Android.Test.IPerformanceTestCaseIntermediatesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8456_from = private unnamed_addr constant [55 x i8] c"Android.Test.IPerformanceTestCaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8457_from = private unnamed_addr constant [41 x i8] c"Android.Test.IUiThreadTest, Mono.Android\00", align 1 +@.TypeMapEntry.8458_to = private unnamed_addr constant [26 x i8] c"android/test/UiThreadTest\00", align 1 +@.TypeMapEntry.8459_from = private unnamed_addr constant [48 x i8] c"Android.Test.IUiThreadTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8460_from = private unnamed_addr constant [53 x i8] c"Android.Test.InstrumentationTestRunner, Mono.Android\00", align 1 +@.TypeMapEntry.8461_to = private unnamed_addr constant [39 x i8] c"android/test/InstrumentationTestRunner\00", align 1 +@.TypeMapEntry.8462_from = private unnamed_addr constant [43 x i8] c"Android.Test.IsolatedContext, Mono.Android\00", align 1 +@.TypeMapEntry.8463_to = private unnamed_addr constant [29 x i8] c"android/test/IsolatedContext\00", align 1 +@.TypeMapEntry.8464_from = private unnamed_addr constant [48 x i8] c"Android.Test.Mock.MockApplication, Mono.Android\00", align 1 +@.TypeMapEntry.8465_to = private unnamed_addr constant [34 x i8] c"android/test/mock/MockApplication\00", align 1 +@.TypeMapEntry.8466_from = private unnamed_addr constant [52 x i8] c"Android.Test.Mock.MockContentProvider, Mono.Android\00", align 1 +@.TypeMapEntry.8467_to = private unnamed_addr constant [38 x i8] c"android/test/mock/MockContentProvider\00", align 1 +@.TypeMapEntry.8468_from = private unnamed_addr constant [52 x i8] c"Android.Test.Mock.MockContentResolver, Mono.Android\00", align 1 +@.TypeMapEntry.8469_to = private unnamed_addr constant [38 x i8] c"android/test/mock/MockContentResolver\00", align 1 +@.TypeMapEntry.8470_from = private unnamed_addr constant [44 x i8] c"Android.Test.Mock.MockContext, Mono.Android\00", align 1 +@.TypeMapEntry.8471_to = private unnamed_addr constant [30 x i8] c"android/test/mock/MockContext\00", align 1 +@.TypeMapEntry.8472_from = private unnamed_addr constant [43 x i8] c"Android.Test.Mock.MockCursor, Mono.Android\00", align 1 +@.TypeMapEntry.8473_to = private unnamed_addr constant [29 x i8] c"android/test/mock/MockCursor\00", align 1 +@.TypeMapEntry.8474_from = private unnamed_addr constant [52 x i8] c"Android.Test.Mock.MockDialogInterface, Mono.Android\00", align 1 +@.TypeMapEntry.8475_to = private unnamed_addr constant [38 x i8] c"android/test/mock/MockDialogInterface\00", align 1 +@.TypeMapEntry.8476_from = private unnamed_addr constant [51 x i8] c"Android.Test.Mock.MockPackageManager, Mono.Android\00", align 1 +@.TypeMapEntry.8477_to = private unnamed_addr constant [37 x i8] c"android/test/mock/MockPackageManager\00", align 1 +@.TypeMapEntry.8478_from = private unnamed_addr constant [46 x i8] c"Android.Test.Mock.MockResources, Mono.Android\00", align 1 +@.TypeMapEntry.8479_to = private unnamed_addr constant [32 x i8] c"android/test/mock/MockResources\00", align 1 +@.TypeMapEntry.8480_from = private unnamed_addr constant [39 x i8] c"Android.Test.MoreAsserts, Mono.Android\00", align 1 +@.TypeMapEntry.8481_to = private unnamed_addr constant [25 x i8] c"android/test/MoreAsserts\00", align 1 +@.TypeMapEntry.8482_from = private unnamed_addr constant [53 x i8] c"Android.Test.RenamingDelegatingContext, Mono.Android\00", align 1 +@.TypeMapEntry.8483_to = private unnamed_addr constant [39 x i8] c"android/test/RenamingDelegatingContext\00", align 1 +@.TypeMapEntry.8484_from = private unnamed_addr constant [62 x i8] c"Android.Test.Suitebuilder.Annotation.ILargeTest, Mono.Android\00", align 1 +@.TypeMapEntry.8485_to = private unnamed_addr constant [47 x i8] c"android/test/suitebuilder/annotation/LargeTest\00", align 1 +@.TypeMapEntry.8486_from = private unnamed_addr constant [69 x i8] c"Android.Test.Suitebuilder.Annotation.ILargeTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8487_from = private unnamed_addr constant [63 x i8] c"Android.Test.Suitebuilder.Annotation.IMediumTest, Mono.Android\00", align 1 +@.TypeMapEntry.8488_to = private unnamed_addr constant [48 x i8] c"android/test/suitebuilder/annotation/MediumTest\00", align 1 +@.TypeMapEntry.8489_from = private unnamed_addr constant [70 x i8] c"Android.Test.Suitebuilder.Annotation.IMediumTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8490_from = private unnamed_addr constant [62 x i8] c"Android.Test.Suitebuilder.Annotation.ISmallTest, Mono.Android\00", align 1 +@.TypeMapEntry.8491_to = private unnamed_addr constant [47 x i8] c"android/test/suitebuilder/annotation/SmallTest\00", align 1 +@.TypeMapEntry.8492_from = private unnamed_addr constant [69 x i8] c"Android.Test.Suitebuilder.Annotation.ISmallTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8493_from = private unnamed_addr constant [58 x i8] c"Android.Test.Suitebuilder.Annotation.ISmoke, Mono.Android\00", align 1 +@.TypeMapEntry.8494_to = private unnamed_addr constant [43 x i8] c"android/test/suitebuilder/annotation/Smoke\00", align 1 +@.TypeMapEntry.8495_from = private unnamed_addr constant [65 x i8] c"Android.Test.Suitebuilder.Annotation.ISmokeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8496_from = private unnamed_addr constant [61 x i8] c"Android.Test.Suitebuilder.Annotation.ISuppress, Mono.Android\00", align 1 +@.TypeMapEntry.8497_to = private unnamed_addr constant [46 x i8] c"android/test/suitebuilder/annotation/Suppress\00", align 1 +@.TypeMapEntry.8498_from = private unnamed_addr constant [68 x i8] c"Android.Test.Suitebuilder.Annotation.ISuppressInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8499_from = private unnamed_addr constant [61 x i8] c"Android.Test.Suitebuilder.Annotation.LargeTest, Mono.Android\00", align 1 +@.TypeMapEntry.8500_from = private unnamed_addr constant [68 x i8] c"Android.Test.Suitebuilder.Annotation.LargeTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8501_from = private unnamed_addr constant [62 x i8] c"Android.Test.Suitebuilder.Annotation.MediumTest, Mono.Android\00", align 1 +@.TypeMapEntry.8502_from = private unnamed_addr constant [69 x i8] c"Android.Test.Suitebuilder.Annotation.MediumTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8503_from = private unnamed_addr constant [61 x i8] c"Android.Test.Suitebuilder.Annotation.SmallTest, Mono.Android\00", align 1 +@.TypeMapEntry.8504_from = private unnamed_addr constant [68 x i8] c"Android.Test.Suitebuilder.Annotation.SmallTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8505_from = private unnamed_addr constant [57 x i8] c"Android.Test.Suitebuilder.Annotation.Smoke, Mono.Android\00", align 1 +@.TypeMapEntry.8506_from = private unnamed_addr constant [64 x i8] c"Android.Test.Suitebuilder.Annotation.SmokeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8507_from = private unnamed_addr constant [60 x i8] c"Android.Test.Suitebuilder.Annotation.Suppress, Mono.Android\00", align 1 +@.TypeMapEntry.8508_from = private unnamed_addr constant [67 x i8] c"Android.Test.Suitebuilder.Annotation.SuppressInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8509_from = private unnamed_addr constant [51 x i8] c"Android.Test.Suitebuilder.TestMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8510_to = private unnamed_addr constant [37 x i8] c"android/test/suitebuilder/TestMethod\00", align 1 +@.TypeMapEntry.8511_from = private unnamed_addr constant [57 x i8] c"Android.Test.Suitebuilder.TestSuiteBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8512_to = private unnamed_addr constant [43 x i8] c"android/test/suitebuilder/TestSuiteBuilder\00", align 1 +@.TypeMapEntry.8513_from = private unnamed_addr constant [38 x i8] c"Android.Test.TouchUtils, Mono.Android\00", align 1 +@.TypeMapEntry.8514_to = private unnamed_addr constant [24 x i8] c"android/test/TouchUtils\00", align 1 +@.TypeMapEntry.8515_from = private unnamed_addr constant [40 x i8] c"Android.Test.UiThreadTest, Mono.Android\00", align 1 +@.TypeMapEntry.8516_from = private unnamed_addr constant [47 x i8] c"Android.Test.UiThreadTestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8517_from = private unnamed_addr constant [39 x i8] c"Android.Test.ViewAsserts, Mono.Android\00", align 1 +@.TypeMapEntry.8518_to = private unnamed_addr constant [25 x i8] c"android/test/ViewAsserts\00", align 1 +@.TypeMapEntry.8519_from = private unnamed_addr constant [47 x i8] c"Android.Text.AlteredCharSequence, Mono.Android\00", align 1 +@.TypeMapEntry.8520_to = private unnamed_addr constant [33 x i8] c"android/text/AlteredCharSequence\00", align 1 +@.TypeMapEntry.8521_from = private unnamed_addr constant [44 x i8] c"Android.Text.AndroidCharacter, Mono.Android\00", align 1 +@.TypeMapEntry.8522_to = private unnamed_addr constant [30 x i8] c"android/text/AndroidCharacter\00", align 1 +@.TypeMapEntry.8523_from = private unnamed_addr constant [38 x i8] c"Android.Text.Annotation, Mono.Android\00", align 1 +@.TypeMapEntry.8524_to = private unnamed_addr constant [24 x i8] c"android/text/Annotation\00", align 1 +@.TypeMapEntry.8525_from = private unnamed_addr constant [36 x i8] c"Android.Text.AutoText, Mono.Android\00", align 1 +@.TypeMapEntry.8526_to = private unnamed_addr constant [22 x i8] c"android/text/AutoText\00", align 1 +@.TypeMapEntry.8527_from = private unnamed_addr constant [49 x i8] c"Android.Text.BidiFormatter+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8528_to = private unnamed_addr constant [35 x i8] c"android/text/BidiFormatter$Builder\00", align 1 +@.TypeMapEntry.8529_from = private unnamed_addr constant [41 x i8] c"Android.Text.BidiFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.8530_to = private unnamed_addr constant [27 x i8] c"android/text/BidiFormatter\00", align 1 +@.TypeMapEntry.8531_from = private unnamed_addr constant [48 x i8] c"Android.Text.BoringLayout+Metrics, Mono.Android\00", align 1 +@.TypeMapEntry.8532_to = private unnamed_addr constant [34 x i8] c"android/text/BoringLayout$Metrics\00", align 1 +@.TypeMapEntry.8533_from = private unnamed_addr constant [40 x i8] c"Android.Text.BoringLayout, Mono.Android\00", align 1 +@.TypeMapEntry.8534_to = private unnamed_addr constant [26 x i8] c"android/text/BoringLayout\00", align 1 +@.TypeMapEntry.8535_from = private unnamed_addr constant [44 x i8] c"Android.Text.ClipboardManager, Mono.Android\00", align 1 +@.TypeMapEntry.8536_to = private unnamed_addr constant [30 x i8] c"android/text/ClipboardManager\00", align 1 +@.TypeMapEntry.8537_from = private unnamed_addr constant [51 x i8] c"Android.Text.ClipboardManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8538_from = private unnamed_addr constant [49 x i8] c"Android.Text.DynamicLayout+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8539_to = private unnamed_addr constant [35 x i8] c"android/text/DynamicLayout$Builder\00", align 1 +@.TypeMapEntry.8540_from = private unnamed_addr constant [41 x i8] c"Android.Text.DynamicLayout, Mono.Android\00", align 1 +@.TypeMapEntry.8541_to = private unnamed_addr constant [27 x i8] c"android/text/DynamicLayout\00", align 1 +@.TypeMapEntry.8542_from = private unnamed_addr constant [43 x i8] c"Android.Text.EditableFactory, Mono.Android\00", align 1 +@.TypeMapEntry.8543_to = private unnamed_addr constant [30 x i8] c"android/text/Editable$Factory\00", align 1 +@.TypeMapEntry.8544_from = private unnamed_addr constant [44 x i8] c"Android.Text.EmojiConsistency, Mono.Android\00", align 1 +@.TypeMapEntry.8545_to = private unnamed_addr constant [30 x i8] c"android/text/EmojiConsistency\00", align 1 +@.TypeMapEntry.8546_from = private unnamed_addr constant [45 x i8] c"Android.Text.Format.DateFormat, Mono.Android\00", align 1 +@.TypeMapEntry.8547_to = private unnamed_addr constant [31 x i8] c"android/text/format/DateFormat\00", align 1 +@.TypeMapEntry.8548_from = private unnamed_addr constant [44 x i8] c"Android.Text.Format.DateUtils, Mono.Android\00", align 1 +@.TypeMapEntry.8549_to = private unnamed_addr constant [30 x i8] c"android/text/format/DateUtils\00", align 1 +@.TypeMapEntry.8550_from = private unnamed_addr constant [44 x i8] c"Android.Text.Format.Formatter, Mono.Android\00", align 1 +@.TypeMapEntry.8551_to = private unnamed_addr constant [30 x i8] c"android/text/format/Formatter\00", align 1 +@.TypeMapEntry.8552_from = private unnamed_addr constant [39 x i8] c"Android.Text.Format.Time, Mono.Android\00", align 1 +@.TypeMapEntry.8553_to = private unnamed_addr constant [25 x i8] c"android/text/format/Time\00", align 1 +@.TypeMapEntry.8554_from = private unnamed_addr constant [56 x i8] c"Android.Text.GraphemeClusterSegmentFinder, Mono.Android\00", align 1 +@.TypeMapEntry.8555_to = private unnamed_addr constant [42 x i8] c"android/text/GraphemeClusterSegmentFinder\00", align 1 +@.TypeMapEntry.8556_from = private unnamed_addr constant [46 x i8] c"Android.Text.Highlights+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8557_to = private unnamed_addr constant [32 x i8] c"android/text/Highlights$Builder\00", align 1 +@.TypeMapEntry.8558_from = private unnamed_addr constant [38 x i8] c"Android.Text.Highlights, Mono.Android\00", align 1 +@.TypeMapEntry.8559_to = private unnamed_addr constant [24 x i8] c"android/text/Highlights\00", align 1 +@.TypeMapEntry.8560_from = private unnamed_addr constant [45 x i8] c"Android.Text.Html+IImageGetter, Mono.Android\00", align 1 +@.TypeMapEntry.8561_to = private unnamed_addr constant [30 x i8] c"android/text/Html$ImageGetter\00", align 1 +@.TypeMapEntry.8562_from = private unnamed_addr constant [52 x i8] c"Android.Text.Html+IImageGetterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8563_from = private unnamed_addr constant [44 x i8] c"Android.Text.Html+ITagHandler, Mono.Android\00", align 1 +@.TypeMapEntry.8564_to = private unnamed_addr constant [29 x i8] c"android/text/Html$TagHandler\00", align 1 +@.TypeMapEntry.8565_from = private unnamed_addr constant [51 x i8] c"Android.Text.Html+ITagHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8566_from = private unnamed_addr constant [32 x i8] c"Android.Text.Html, Mono.Android\00", align 1 +@.TypeMapEntry.8567_to = private unnamed_addr constant [18 x i8] c"android/text/Html\00", align 1 +@.TypeMapEntry.8568_from = private unnamed_addr constant [37 x i8] c"Android.Text.IEditable, Mono.Android\00", align 1 +@.TypeMapEntry.8569_to = private unnamed_addr constant [22 x i8] c"android/text/Editable\00", align 1 +@.TypeMapEntry.8570_from = private unnamed_addr constant [44 x i8] c"Android.Text.IEditableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8571_from = private unnamed_addr constant [37 x i8] c"Android.Text.IGetChars, Mono.Android\00", align 1 +@.TypeMapEntry.8572_to = private unnamed_addr constant [22 x i8] c"android/text/GetChars\00", align 1 +@.TypeMapEntry.8573_from = private unnamed_addr constant [44 x i8] c"Android.Text.IGetCharsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8574_from = private unnamed_addr constant [40 x i8] c"Android.Text.IInputFilter, Mono.Android\00", align 1 +@.TypeMapEntry.8575_to = private unnamed_addr constant [25 x i8] c"android/text/InputFilter\00", align 1 +@.TypeMapEntry.8576_from = private unnamed_addr constant [47 x i8] c"Android.Text.IInputFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8577_from = private unnamed_addr constant [38 x i8] c"Android.Text.IInputType, Mono.Android\00", align 1 +@.TypeMapEntry.8578_to = private unnamed_addr constant [23 x i8] c"android/text/InputType\00", align 1 +@.TypeMapEntry.8579_from = private unnamed_addr constant [45 x i8] c"Android.Text.IInputTypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8580_from = private unnamed_addr constant [39 x i8] c"Android.Text.INoCopySpan, Mono.Android\00", align 1 +@.TypeMapEntry.8581_to = private unnamed_addr constant [24 x i8] c"android/text/NoCopySpan\00", align 1 +@.TypeMapEntry.8582_from = private unnamed_addr constant [46 x i8] c"Android.Text.INoCopySpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8583_from = private unnamed_addr constant [43 x i8] c"Android.Text.IParcelableSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8584_to = private unnamed_addr constant [28 x i8] c"android/text/ParcelableSpan\00", align 1 +@.TypeMapEntry.8585_from = private unnamed_addr constant [50 x i8] c"Android.Text.IParcelableSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8586_from = private unnamed_addr constant [40 x i8] c"Android.Text.ISpanWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.8587_to = private unnamed_addr constant [25 x i8] c"android/text/SpanWatcher\00", align 1 +@.TypeMapEntry.8588_from = private unnamed_addr constant [47 x i8] c"Android.Text.ISpanWatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8589_from = private unnamed_addr constant [38 x i8] c"Android.Text.ISpannable, Mono.Android\00", align 1 +@.TypeMapEntry.8590_to = private unnamed_addr constant [23 x i8] c"android/text/Spannable\00", align 1 +@.TypeMapEntry.8591_from = private unnamed_addr constant [45 x i8] c"Android.Text.ISpannableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8592_from = private unnamed_addr constant [36 x i8] c"Android.Text.ISpanned, Mono.Android\00", align 1 +@.TypeMapEntry.8593_to = private unnamed_addr constant [21 x i8] c"android/text/Spanned\00", align 1 +@.TypeMapEntry.8594_from = private unnamed_addr constant [43 x i8] c"Android.Text.ISpannedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8595_from = private unnamed_addr constant [51 x i8] c"Android.Text.ITextDirectionHeuristic, Mono.Android\00", align 1 +@.TypeMapEntry.8596_to = private unnamed_addr constant [36 x i8] c"android/text/TextDirectionHeuristic\00", align 1 +@.TypeMapEntry.8597_from = private unnamed_addr constant [58 x i8] c"Android.Text.ITextDirectionHeuristicInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8598_from = private unnamed_addr constant [40 x i8] c"Android.Text.ITextWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.8599_to = private unnamed_addr constant [25 x i8] c"android/text/TextWatcher\00", align 1 +@.TypeMapEntry.8600_from = private unnamed_addr constant [47 x i8] c"Android.Text.ITextWatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8601_from = private unnamed_addr constant [46 x i8] c"Android.Text.InputFilterAllCaps, Mono.Android\00", align 1 +@.TypeMapEntry.8602_to = private unnamed_addr constant [33 x i8] c"android/text/InputFilter$AllCaps\00", align 1 +@.TypeMapEntry.8603_from = private unnamed_addr constant [51 x i8] c"Android.Text.InputFilterLengthFilter, Mono.Android\00", align 1 +@.TypeMapEntry.8604_to = private unnamed_addr constant [38 x i8] c"android/text/InputFilter$LengthFilter\00", align 1 +@.TypeMapEntry.8605_from = private unnamed_addr constant [44 x i8] c"Android.Text.Layout+Alignment, Mono.Android\00", align 1 +@.TypeMapEntry.8606_to = private unnamed_addr constant [30 x i8] c"android/text/Layout$Alignment\00", align 1 +@.TypeMapEntry.8607_from = private unnamed_addr constant [42 x i8] c"Android.Text.Layout+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8608_to = private unnamed_addr constant [28 x i8] c"android/text/Layout$Builder\00", align 1 +@.TypeMapEntry.8609_from = private unnamed_addr constant [45 x i8] c"Android.Text.Layout+Directions, Mono.Android\00", align 1 +@.TypeMapEntry.8610_to = private unnamed_addr constant [31 x i8] c"android/text/Layout$Directions\00", align 1 +@.TypeMapEntry.8611_from = private unnamed_addr constant [57 x i8] c"Android.Text.Layout+ITextInclusionStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.8612_to = private unnamed_addr constant [42 x i8] c"android/text/Layout$TextInclusionStrategy\00", align 1 +@.TypeMapEntry.8613_from = private unnamed_addr constant [64 x i8] c"Android.Text.Layout+ITextInclusionStrategyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8614_from = private unnamed_addr constant [34 x i8] c"Android.Text.Layout, Mono.Android\00", align 1 +@.TypeMapEntry.8615_to = private unnamed_addr constant [20 x i8] c"android/text/Layout\00", align 1 +@.TypeMapEntry.8616_from = private unnamed_addr constant [41 x i8] c"Android.Text.LayoutInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8617_from = private unnamed_addr constant [59 x i8] c"Android.Text.LoginFilter+PasswordFilterGMail, Mono.Android\00", align 1 +@.TypeMapEntry.8618_to = private unnamed_addr constant [45 x i8] c"android/text/LoginFilter$PasswordFilterGMail\00", align 1 +@.TypeMapEntry.8619_from = private unnamed_addr constant [59 x i8] c"Android.Text.LoginFilter+UsernameFilterGMail, Mono.Android\00", align 1 +@.TypeMapEntry.8620_to = private unnamed_addr constant [45 x i8] c"android/text/LoginFilter$UsernameFilterGMail\00", align 1 +@.TypeMapEntry.8621_from = private unnamed_addr constant [61 x i8] c"Android.Text.LoginFilter+UsernameFilterGeneric, Mono.Android\00", align 1 +@.TypeMapEntry.8622_to = private unnamed_addr constant [47 x i8] c"android/text/LoginFilter$UsernameFilterGeneric\00", align 1 +@.TypeMapEntry.8623_from = private unnamed_addr constant [39 x i8] c"Android.Text.LoginFilter, Mono.Android\00", align 1 +@.TypeMapEntry.8624_to = private unnamed_addr constant [25 x i8] c"android/text/LoginFilter\00", align 1 +@.TypeMapEntry.8625_from = private unnamed_addr constant [46 x i8] c"Android.Text.LoginFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8626_from = private unnamed_addr constant [57 x i8] c"Android.Text.Method.ArrowKeyMovementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8627_to = private unnamed_addr constant [43 x i8] c"android/text/method/ArrowKeyMovementMethod\00", align 1 +@.TypeMapEntry.8628_from = private unnamed_addr constant [50 x i8] c"Android.Text.Method.BaseKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8629_to = private unnamed_addr constant [36 x i8] c"android/text/method/BaseKeyListener\00", align 1 +@.TypeMapEntry.8630_from = private unnamed_addr constant [57 x i8] c"Android.Text.Method.BaseKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8631_from = private unnamed_addr constant [53 x i8] c"Android.Text.Method.BaseMovementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8632_to = private unnamed_addr constant [39 x i8] c"android/text/method/BaseMovementMethod\00", align 1 +@.TypeMapEntry.8633_from = private unnamed_addr constant [56 x i8] c"Android.Text.Method.CharacterPickerDialog, Mono.Android\00", align 1 +@.TypeMapEntry.8634_to = private unnamed_addr constant [42 x i8] c"android/text/method/CharacterPickerDialog\00", align 1 +@.TypeMapEntry.8635_from = private unnamed_addr constant [50 x i8] c"Android.Text.Method.DateKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8636_to = private unnamed_addr constant [36 x i8] c"android/text/method/DateKeyListener\00", align 1 +@.TypeMapEntry.8637_from = private unnamed_addr constant [54 x i8] c"Android.Text.Method.DateTimeKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8638_to = private unnamed_addr constant [40 x i8] c"android/text/method/DateTimeKeyListener\00", align 1 +@.TypeMapEntry.8639_from = private unnamed_addr constant [52 x i8] c"Android.Text.Method.DialerKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8640_to = private unnamed_addr constant [38 x i8] c"android/text/method/DialerKeyListener\00", align 1 +@.TypeMapEntry.8641_from = private unnamed_addr constant [52 x i8] c"Android.Text.Method.DigitsKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8642_to = private unnamed_addr constant [38 x i8] c"android/text/method/DigitsKeyListener\00", align 1 +@.TypeMapEntry.8643_from = private unnamed_addr constant [66 x i8] c"Android.Text.Method.HideReturnsTransformationMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8644_to = private unnamed_addr constant [52 x i8] c"android/text/method/HideReturnsTransformationMethod\00", align 1 +@.TypeMapEntry.8645_from = private unnamed_addr constant [47 x i8] c"Android.Text.Method.IKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8646_to = private unnamed_addr constant [32 x i8] c"android/text/method/KeyListener\00", align 1 +@.TypeMapEntry.8647_from = private unnamed_addr constant [54 x i8] c"Android.Text.Method.IKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8648_from = private unnamed_addr constant [50 x i8] c"Android.Text.Method.IMovementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8649_to = private unnamed_addr constant [35 x i8] c"android/text/method/MovementMethod\00", align 1 +@.TypeMapEntry.8650_from = private unnamed_addr constant [57 x i8] c"Android.Text.Method.IMovementMethodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8651_from = private unnamed_addr constant [56 x i8] c"Android.Text.Method.ITransformationMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8652_to = private unnamed_addr constant [41 x i8] c"android/text/method/TransformationMethod\00", align 1 +@.TypeMapEntry.8653_from = private unnamed_addr constant [63 x i8] c"Android.Text.Method.ITransformationMethodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8654_from = private unnamed_addr constant [53 x i8] c"Android.Text.Method.LinkMovementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8655_to = private unnamed_addr constant [39 x i8] c"android/text/method/LinkMovementMethod\00", align 1 +@.TypeMapEntry.8656_from = private unnamed_addr constant [53 x i8] c"Android.Text.Method.MetaKeyKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8657_to = private unnamed_addr constant [39 x i8] c"android/text/method/MetaKeyKeyListener\00", align 1 +@.TypeMapEntry.8658_from = private unnamed_addr constant [60 x i8] c"Android.Text.Method.MetaKeyKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8659_from = private unnamed_addr constant [54 x i8] c"Android.Text.Method.MultiTapKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8660_to = private unnamed_addr constant [40 x i8] c"android/text/method/MultiTapKeyListener\00", align 1 +@.TypeMapEntry.8661_from = private unnamed_addr constant [52 x i8] c"Android.Text.Method.NumberKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8662_to = private unnamed_addr constant [38 x i8] c"android/text/method/NumberKeyListener\00", align 1 +@.TypeMapEntry.8663_from = private unnamed_addr constant [59 x i8] c"Android.Text.Method.NumberKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8664_from = private unnamed_addr constant [63 x i8] c"Android.Text.Method.PasswordTransformationMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8665_to = private unnamed_addr constant [49 x i8] c"android/text/method/PasswordTransformationMethod\00", align 1 +@.TypeMapEntry.8666_from = private unnamed_addr constant [52 x i8] c"Android.Text.Method.QwertyKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8667_to = private unnamed_addr constant [38 x i8] c"android/text/method/QwertyKeyListener\00", align 1 +@.TypeMapEntry.8668_from = private unnamed_addr constant [66 x i8] c"Android.Text.Method.ReplacementTransformationMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8669_to = private unnamed_addr constant [52 x i8] c"android/text/method/ReplacementTransformationMethod\00", align 1 +@.TypeMapEntry.8670_from = private unnamed_addr constant [73 x i8] c"Android.Text.Method.ReplacementTransformationMethodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8671_from = private unnamed_addr constant [58 x i8] c"Android.Text.Method.ScrollingMovementMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8672_to = private unnamed_addr constant [44 x i8] c"android/text/method/ScrollingMovementMethod\00", align 1 +@.TypeMapEntry.8673_from = private unnamed_addr constant [65 x i8] c"Android.Text.Method.SingleLineTransformationMethod, Mono.Android\00", align 1 +@.TypeMapEntry.8674_to = private unnamed_addr constant [51 x i8] c"android/text/method/SingleLineTransformationMethod\00", align 1 +@.TypeMapEntry.8675_from = private unnamed_addr constant [61 x i8] c"Android.Text.Method.TextKeyListener+Capitalize, Mono.Android\00", align 1 +@.TypeMapEntry.8676_to = private unnamed_addr constant [47 x i8] c"android/text/method/TextKeyListener$Capitalize\00", align 1 +@.TypeMapEntry.8677_from = private unnamed_addr constant [50 x i8] c"Android.Text.Method.TextKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8678_to = private unnamed_addr constant [36 x i8] c"android/text/method/TextKeyListener\00", align 1 +@.TypeMapEntry.8679_from = private unnamed_addr constant [50 x i8] c"Android.Text.Method.TimeKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.8680_to = private unnamed_addr constant [36 x i8] c"android/text/method/TimeKeyListener\00", align 1 +@.TypeMapEntry.8681_from = private unnamed_addr constant [40 x i8] c"Android.Text.Method.Touch, Mono.Android\00", align 1 +@.TypeMapEntry.8682_to = private unnamed_addr constant [26 x i8] c"android/text/method/Touch\00", align 1 +@.TypeMapEntry.8683_from = private unnamed_addr constant [46 x i8] c"Android.Text.NoCopySpanConcrete, Mono.Android\00", align 1 +@.TypeMapEntry.8684_to = private unnamed_addr constant [33 x i8] c"android/text/NoCopySpan$Concrete\00", align 1 +@.TypeMapEntry.8685_from = private unnamed_addr constant [65 x i8] c"Android.Text.SegmentFinder+PrescribedSegmentFinder, Mono.Android\00", align 1 +@.TypeMapEntry.8686_to = private unnamed_addr constant [51 x i8] c"android/text/SegmentFinder$PrescribedSegmentFinder\00", align 1 +@.TypeMapEntry.8687_from = private unnamed_addr constant [41 x i8] c"Android.Text.SegmentFinder, Mono.Android\00", align 1 +@.TypeMapEntry.8688_to = private unnamed_addr constant [27 x i8] c"android/text/SegmentFinder\00", align 1 +@.TypeMapEntry.8689_from = private unnamed_addr constant [48 x i8] c"Android.Text.SegmentFinderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8690_from = private unnamed_addr constant [37 x i8] c"Android.Text.Selection, Mono.Android\00", align 1 +@.TypeMapEntry.8691_to = private unnamed_addr constant [23 x i8] c"android/text/Selection\00", align 1 +@.TypeMapEntry.8692_from = private unnamed_addr constant [44 x i8] c"Android.Text.SpannableFactory, Mono.Android\00", align 1 +@.TypeMapEntry.8693_to = private unnamed_addr constant [31 x i8] c"android/text/Spannable$Factory\00", align 1 +@.TypeMapEntry.8694_from = private unnamed_addr constant [43 x i8] c"Android.Text.SpannableString, Mono.Android\00", align 1 +@.TypeMapEntry.8695_to = private unnamed_addr constant [29 x i8] c"android/text/SpannableString\00", align 1 +@.TypeMapEntry.8696_from = private unnamed_addr constant [50 x i8] c"Android.Text.SpannableStringBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8697_to = private unnamed_addr constant [36 x i8] c"android/text/SpannableStringBuilder\00", align 1 +@.TypeMapEntry.8698_from = private unnamed_addr constant [51 x i8] c"Android.Text.SpannableStringInternal, Mono.Android\00", align 1 +@.TypeMapEntry.8699_to = private unnamed_addr constant [37 x i8] c"android/text/SpannableStringInternal\00", align 1 +@.TypeMapEntry.8700_from = private unnamed_addr constant [58 x i8] c"Android.Text.SpannableStringInternalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8701_from = private unnamed_addr constant [41 x i8] c"Android.Text.SpannedString, Mono.Android\00", align 1 +@.TypeMapEntry.8702_to = private unnamed_addr constant [27 x i8] c"android/text/SpannedString\00", align 1 +@.TypeMapEntry.8703_from = private unnamed_addr constant [48 x i8] c"Android.Text.StaticLayout+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8704_to = private unnamed_addr constant [34 x i8] c"android/text/StaticLayout$Builder\00", align 1 +@.TypeMapEntry.8705_from = private unnamed_addr constant [40 x i8] c"Android.Text.StaticLayout, Mono.Android\00", align 1 +@.TypeMapEntry.8706_to = private unnamed_addr constant [26 x i8] c"android/text/StaticLayout\00", align 1 +@.TypeMapEntry.8707_from = private unnamed_addr constant [50 x i8] c"Android.Text.Style.AbsoluteSizeSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8708_to = private unnamed_addr constant [36 x i8] c"android/text/style/AbsoluteSizeSpan\00", align 1 +@.TypeMapEntry.8709_from = private unnamed_addr constant [55 x i8] c"Android.Text.Style.AlignmentSpanStandard, Mono.Android\00", align 1 +@.TypeMapEntry.8710_to = private unnamed_addr constant [42 x i8] c"android/text/style/AlignmentSpan$Standard\00", align 1 +@.TypeMapEntry.8711_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.BackgroundColorSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8712_to = private unnamed_addr constant [39 x i8] c"android/text/style/BackgroundColorSpan\00", align 1 +@.TypeMapEntry.8713_from = private unnamed_addr constant [44 x i8] c"Android.Text.Style.BulletSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8714_to = private unnamed_addr constant [30 x i8] c"android/text/style/BulletSpan\00", align 1 +@.TypeMapEntry.8715_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.CharacterStyle, Mono.Android\00", align 1 +@.TypeMapEntry.8716_to = private unnamed_addr constant [34 x i8] c"android/text/style/CharacterStyle\00", align 1 +@.TypeMapEntry.8717_from = private unnamed_addr constant [55 x i8] c"Android.Text.Style.CharacterStyleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8718_from = private unnamed_addr constant [47 x i8] c"Android.Text.Style.ClickableSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8719_to = private unnamed_addr constant [33 x i8] c"android/text/style/ClickableSpan\00", align 1 +@.TypeMapEntry.8720_from = private unnamed_addr constant [54 x i8] c"Android.Text.Style.ClickableSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8721_from = private unnamed_addr constant [52 x i8] c"Android.Text.Style.DrawableMarginSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8722_to = private unnamed_addr constant [38 x i8] c"android/text/style/DrawableMarginSpan\00", align 1 +@.TypeMapEntry.8723_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.DynamicDrawableSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8724_to = private unnamed_addr constant [39 x i8] c"android/text/style/DynamicDrawableSpan\00", align 1 +@.TypeMapEntry.8725_from = private unnamed_addr constant [60 x i8] c"Android.Text.Style.DynamicDrawableSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8726_from = private unnamed_addr constant [46 x i8] c"Android.Text.Style.EasyEditSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8727_to = private unnamed_addr constant [32 x i8] c"android/text/style/EasyEditSpan\00", align 1 +@.TypeMapEntry.8728_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.ForegroundColorSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8729_to = private unnamed_addr constant [39 x i8] c"android/text/style/ForegroundColorSpan\00", align 1 +@.TypeMapEntry.8730_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.IAlignmentSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8731_to = private unnamed_addr constant [33 x i8] c"android/text/style/AlignmentSpan\00", align 1 +@.TypeMapEntry.8732_from = private unnamed_addr constant [55 x i8] c"Android.Text.Style.IAlignmentSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8733_from = private unnamed_addr constant [52 x i8] c"Android.Text.Style.ILeadingMarginSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8734_to = private unnamed_addr constant [37 x i8] c"android/text/style/LeadingMarginSpan\00", align 1 +@.TypeMapEntry.8735_from = private unnamed_addr constant [59 x i8] c"Android.Text.Style.ILeadingMarginSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8736_from = private unnamed_addr constant [70 x i8] c"Android.Text.Style.ILeadingMarginSpanLeadingMarginSpan2, Mono.Android\00", align 1 +@.TypeMapEntry.8737_to = private unnamed_addr constant [56 x i8] c"android/text/style/LeadingMarginSpan$LeadingMarginSpan2\00", align 1 +@.TypeMapEntry.8738_from = private unnamed_addr constant [77 x i8] c"Android.Text.Style.ILeadingMarginSpanLeadingMarginSpan2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.8739_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.ILineBackgroundSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8740_to = private unnamed_addr constant [38 x i8] c"android/text/style/LineBackgroundSpan\00", align 1 +@.TypeMapEntry.8741_from = private unnamed_addr constant [60 x i8] c"Android.Text.Style.ILineBackgroundSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8742_from = private unnamed_addr constant [49 x i8] c"Android.Text.Style.ILineHeightSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8743_to = private unnamed_addr constant [34 x i8] c"android/text/style/LineHeightSpan\00", align 1 +@.TypeMapEntry.8744_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.ILineHeightSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8745_from = private unnamed_addr constant [60 x i8] c"Android.Text.Style.ILineHeightSpanWithDensity, Mono.Android\00", align 1 +@.TypeMapEntry.8746_to = private unnamed_addr constant [46 x i8] c"android/text/style/LineHeightSpan$WithDensity\00", align 1 +@.TypeMapEntry.8747_from = private unnamed_addr constant [67 x i8] c"Android.Text.Style.ILineHeightSpanWithDensityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8748_from = private unnamed_addr constant [49 x i8] c"Android.Text.Style.IParagraphStyle, Mono.Android\00", align 1 +@.TypeMapEntry.8749_to = private unnamed_addr constant [34 x i8] c"android/text/style/ParagraphStyle\00", align 1 +@.TypeMapEntry.8750_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.IParagraphStyleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8751_from = private unnamed_addr constant [46 x i8] c"Android.Text.Style.ITabStopSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8752_to = private unnamed_addr constant [31 x i8] c"android/text/style/TabStopSpan\00", align 1 +@.TypeMapEntry.8753_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.ITabStopSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8754_from = private unnamed_addr constant [51 x i8] c"Android.Text.Style.IUpdateAppearance, Mono.Android\00", align 1 +@.TypeMapEntry.8755_to = private unnamed_addr constant [36 x i8] c"android/text/style/UpdateAppearance\00", align 1 +@.TypeMapEntry.8756_from = private unnamed_addr constant [58 x i8] c"Android.Text.Style.IUpdateAppearanceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8757_from = private unnamed_addr constant [47 x i8] c"Android.Text.Style.IUpdateLayout, Mono.Android\00", align 1 +@.TypeMapEntry.8758_to = private unnamed_addr constant [32 x i8] c"android/text/style/UpdateLayout\00", align 1 +@.TypeMapEntry.8759_from = private unnamed_addr constant [54 x i8] c"Android.Text.Style.IUpdateLayoutInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8760_from = private unnamed_addr constant [51 x i8] c"Android.Text.Style.IWrapTogetherSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8761_to = private unnamed_addr constant [36 x i8] c"android/text/style/WrapTogetherSpan\00", align 1 +@.TypeMapEntry.8762_from = private unnamed_addr constant [58 x i8] c"Android.Text.Style.IWrapTogetherSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8763_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.IconMarginSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8764_to = private unnamed_addr constant [34 x i8] c"android/text/style/IconMarginSpan\00", align 1 +@.TypeMapEntry.8765_from = private unnamed_addr constant [43 x i8] c"Android.Text.Style.ImageSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8766_to = private unnamed_addr constant [29 x i8] c"android/text/style/ImageSpan\00", align 1 +@.TypeMapEntry.8767_from = private unnamed_addr constant [59 x i8] c"Android.Text.Style.LeadingMarginSpanStandard, Mono.Android\00", align 1 +@.TypeMapEntry.8768_to = private unnamed_addr constant [46 x i8] c"android/text/style/LeadingMarginSpan$Standard\00", align 1 +@.TypeMapEntry.8769_from = private unnamed_addr constant [60 x i8] c"Android.Text.Style.LineBackgroundSpanStandard, Mono.Android\00", align 1 +@.TypeMapEntry.8770_to = private unnamed_addr constant [47 x i8] c"android/text/style/LineBackgroundSpan$Standard\00", align 1 +@.TypeMapEntry.8771_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.LineBreakConfigSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8772_to = private unnamed_addr constant [39 x i8] c"android/text/style/LineBreakConfigSpan\00", align 1 +@.TypeMapEntry.8773_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.LineHeightSpanStandard, Mono.Android\00", align 1 +@.TypeMapEntry.8774_to = private unnamed_addr constant [43 x i8] c"android/text/style/LineHeightSpan$Standard\00", align 1 +@.TypeMapEntry.8775_from = private unnamed_addr constant [44 x i8] c"Android.Text.Style.LocaleSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8776_to = private unnamed_addr constant [30 x i8] c"android/text/style/LocaleSpan\00", align 1 +@.TypeMapEntry.8777_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.MaskFilterSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8778_to = private unnamed_addr constant [34 x i8] c"android/text/style/MaskFilterSpan\00", align 1 +@.TypeMapEntry.8779_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.MetricAffectingSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8780_to = private unnamed_addr constant [39 x i8] c"android/text/style/MetricAffectingSpan\00", align 1 +@.TypeMapEntry.8781_from = private unnamed_addr constant [60 x i8] c"Android.Text.Style.MetricAffectingSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8782_from = private unnamed_addr constant [43 x i8] c"Android.Text.Style.QuoteSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8783_to = private unnamed_addr constant [29 x i8] c"android/text/style/QuoteSpan\00", align 1 +@.TypeMapEntry.8784_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.RasterizerSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8785_to = private unnamed_addr constant [34 x i8] c"android/text/style/RasterizerSpan\00", align 1 +@.TypeMapEntry.8786_from = private unnamed_addr constant [50 x i8] c"Android.Text.Style.RelativeSizeSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8787_to = private unnamed_addr constant [36 x i8] c"android/text/style/RelativeSizeSpan\00", align 1 +@.TypeMapEntry.8788_from = private unnamed_addr constant [49 x i8] c"Android.Text.Style.ReplacementSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8789_to = private unnamed_addr constant [35 x i8] c"android/text/style/ReplacementSpan\00", align 1 +@.TypeMapEntry.8790_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.ReplacementSpanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8791_from = private unnamed_addr constant [44 x i8] c"Android.Text.Style.ScaleXSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8792_to = private unnamed_addr constant [30 x i8] c"android/text/style/ScaleXSpan\00", align 1 +@.TypeMapEntry.8793_from = private unnamed_addr constant [51 x i8] c"Android.Text.Style.StrikethroughSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8794_to = private unnamed_addr constant [37 x i8] c"android/text/style/StrikethroughSpan\00", align 1 +@.TypeMapEntry.8795_from = private unnamed_addr constant [43 x i8] c"Android.Text.Style.StyleSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8796_to = private unnamed_addr constant [29 x i8] c"android/text/style/StyleSpan\00", align 1 +@.TypeMapEntry.8797_from = private unnamed_addr constant [47 x i8] c"Android.Text.Style.SubscriptSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8798_to = private unnamed_addr constant [33 x i8] c"android/text/style/SubscriptSpan\00", align 1 +@.TypeMapEntry.8799_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.SuggestionRangeSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8800_to = private unnamed_addr constant [39 x i8] c"android/text/style/SuggestionRangeSpan\00", align 1 +@.TypeMapEntry.8801_from = private unnamed_addr constant [48 x i8] c"Android.Text.Style.SuggestionSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8802_to = private unnamed_addr constant [34 x i8] c"android/text/style/SuggestionSpan\00", align 1 +@.TypeMapEntry.8803_from = private unnamed_addr constant [49 x i8] c"Android.Text.Style.SuperscriptSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8804_to = private unnamed_addr constant [35 x i8] c"android/text/style/SuperscriptSpan\00", align 1 +@.TypeMapEntry.8805_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.TabStopSpanStandard, Mono.Android\00", align 1 +@.TypeMapEntry.8806_to = private unnamed_addr constant [40 x i8] c"android/text/style/TabStopSpan$Standard\00", align 1 +@.TypeMapEntry.8807_from = private unnamed_addr constant [52 x i8] c"Android.Text.Style.TextAppearanceSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8808_to = private unnamed_addr constant [38 x i8] c"android/text/style/TextAppearanceSpan\00", align 1 +@.TypeMapEntry.8809_from = private unnamed_addr constant [49 x i8] c"Android.Text.Style.TtsSpan+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.8810_to = private unnamed_addr constant [35 x i8] c"android/text/style/TtsSpan$Builder\00", align 1 +@.TypeMapEntry.8811_from = private unnamed_addr constant [57 x i8] c"Android.Text.Style.TtsSpan+CardinalBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8812_to = private unnamed_addr constant [43 x i8] c"android/text/style/TtsSpan$CardinalBuilder\00", align 1 +@.TypeMapEntry.8813_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.TtsSpan+DateBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8814_to = private unnamed_addr constant [39 x i8] c"android/text/style/TtsSpan$DateBuilder\00", align 1 +@.TypeMapEntry.8815_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.TtsSpan+DecimalBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8816_to = private unnamed_addr constant [42 x i8] c"android/text/style/TtsSpan$DecimalBuilder\00", align 1 +@.TypeMapEntry.8817_from = private unnamed_addr constant [55 x i8] c"Android.Text.Style.TtsSpan+DigitsBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8818_to = private unnamed_addr constant [41 x i8] c"android/text/style/TtsSpan$DigitsBuilder\00", align 1 +@.TypeMapEntry.8819_from = private unnamed_addr constant [59 x i8] c"Android.Text.Style.TtsSpan+ElectronicBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8820_to = private unnamed_addr constant [45 x i8] c"android/text/style/TtsSpan$ElectronicBuilder\00", align 1 +@.TypeMapEntry.8821_from = private unnamed_addr constant [57 x i8] c"Android.Text.Style.TtsSpan+FractionBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8822_to = private unnamed_addr constant [43 x i8] c"android/text/style/TtsSpan$FractionBuilder\00", align 1 +@.TypeMapEntry.8823_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.TtsSpan+MeasureBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8824_to = private unnamed_addr constant [42 x i8] c"android/text/style/TtsSpan$MeasureBuilder\00", align 1 +@.TypeMapEntry.8825_from = private unnamed_addr constant [54 x i8] c"Android.Text.Style.TtsSpan+MoneyBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8826_to = private unnamed_addr constant [40 x i8] c"android/text/style/TtsSpan$MoneyBuilder\00", align 1 +@.TypeMapEntry.8827_from = private unnamed_addr constant [56 x i8] c"Android.Text.Style.TtsSpan+OrdinalBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8828_to = private unnamed_addr constant [42 x i8] c"android/text/style/TtsSpan$OrdinalBuilder\00", align 1 +@.TypeMapEntry.8829_from = private unnamed_addr constant [62 x i8] c"Android.Text.Style.TtsSpan+SemioticClassBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8830_to = private unnamed_addr constant [48 x i8] c"android/text/style/TtsSpan$SemioticClassBuilder\00", align 1 +@.TypeMapEntry.8831_from = private unnamed_addr constant [58 x i8] c"Android.Text.Style.TtsSpan+TelephoneBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8832_to = private unnamed_addr constant [44 x i8] c"android/text/style/TtsSpan$TelephoneBuilder\00", align 1 +@.TypeMapEntry.8833_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.TtsSpan+TextBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8834_to = private unnamed_addr constant [39 x i8] c"android/text/style/TtsSpan$TextBuilder\00", align 1 +@.TypeMapEntry.8835_from = private unnamed_addr constant [53 x i8] c"Android.Text.Style.TtsSpan+TimeBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8836_to = private unnamed_addr constant [39 x i8] c"android/text/style/TtsSpan$TimeBuilder\00", align 1 +@.TypeMapEntry.8837_from = private unnamed_addr constant [57 x i8] c"Android.Text.Style.TtsSpan+VerbatimBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.8838_to = private unnamed_addr constant [43 x i8] c"android/text/style/TtsSpan$VerbatimBuilder\00", align 1 +@.TypeMapEntry.8839_from = private unnamed_addr constant [41 x i8] c"Android.Text.Style.TtsSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8840_to = private unnamed_addr constant [27 x i8] c"android/text/style/TtsSpan\00", align 1 +@.TypeMapEntry.8841_from = private unnamed_addr constant [46 x i8] c"Android.Text.Style.TypefaceSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8842_to = private unnamed_addr constant [32 x i8] c"android/text/style/TypefaceSpan\00", align 1 +@.TypeMapEntry.8843_from = private unnamed_addr constant [41 x i8] c"Android.Text.Style.URLSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8844_to = private unnamed_addr constant [27 x i8] c"android/text/style/URLSpan\00", align 1 +@.TypeMapEntry.8845_from = private unnamed_addr constant [47 x i8] c"Android.Text.Style.UnderlineSpan, Mono.Android\00", align 1 +@.TypeMapEntry.8846_to = private unnamed_addr constant [33 x i8] c"android/text/style/UnderlineSpan\00", align 1 +@.TypeMapEntry.8847_from = private unnamed_addr constant [51 x i8] c"Android.Text.TextDirectionHeuristics, Mono.Android\00", align 1 +@.TypeMapEntry.8848_to = private unnamed_addr constant [37 x i8] c"android/text/TextDirectionHeuristics\00", align 1 +@.TypeMapEntry.8849_from = private unnamed_addr constant [37 x i8] c"Android.Text.TextPaint, Mono.Android\00", align 1 +@.TypeMapEntry.8850_to = private unnamed_addr constant [23 x i8] c"android/text/TextPaint\00", align 1 +@.TypeMapEntry.8851_from = private unnamed_addr constant [54 x i8] c"Android.Text.TextShaper+IGlyphsConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.8852_to = private unnamed_addr constant [39 x i8] c"android/text/TextShaper$GlyphsConsumer\00", align 1 +@.TypeMapEntry.8853_from = private unnamed_addr constant [61 x i8] c"Android.Text.TextShaper+IGlyphsConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8854_from = private unnamed_addr constant [38 x i8] c"Android.Text.TextShaper, Mono.Android\00", align 1 +@.TypeMapEntry.8855_to = private unnamed_addr constant [24 x i8] c"android/text/TextShaper\00", align 1 +@.TypeMapEntry.8856_from = private unnamed_addr constant [56 x i8] c"Android.Text.TextUtils+IEllipsizeCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8857_to = private unnamed_addr constant [41 x i8] c"android/text/TextUtils$EllipsizeCallback\00", align 1 +@.TypeMapEntry.8858_from = private unnamed_addr constant [63 x i8] c"Android.Text.TextUtils+IEllipsizeCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8859_from = private unnamed_addr constant [53 x i8] c"Android.Text.TextUtils+IStringSplitter, Mono.Android\00", align 1 +@.TypeMapEntry.8860_to = private unnamed_addr constant [38 x i8] c"android/text/TextUtils$StringSplitter\00", align 1 +@.TypeMapEntry.8861_from = private unnamed_addr constant [60 x i8] c"Android.Text.TextUtils+IStringSplitterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8862_from = private unnamed_addr constant [58 x i8] c"Android.Text.TextUtils+SimpleStringSplitter, Mono.Android\00", align 1 +@.TypeMapEntry.8863_to = private unnamed_addr constant [44 x i8] c"android/text/TextUtils$SimpleStringSplitter\00", align 1 +@.TypeMapEntry.8864_from = private unnamed_addr constant [48 x i8] c"Android.Text.TextUtils+TruncateAt, Mono.Android\00", align 1 +@.TypeMapEntry.8865_to = private unnamed_addr constant [34 x i8] c"android/text/TextUtils$TruncateAt\00", align 1 +@.TypeMapEntry.8866_from = private unnamed_addr constant [37 x i8] c"Android.Text.TextUtils, Mono.Android\00", align 1 +@.TypeMapEntry.8867_to = private unnamed_addr constant [23 x i8] c"android/text/TextUtils\00", align 1 +@.TypeMapEntry.8868_from = private unnamed_addr constant [50 x i8] c"Android.Text.TextWatcherImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8869_to = private unnamed_addr constant [41 x i8] c"mono/android/text/TextWatcherImplementor\00", align 1 +@.TypeMapEntry.8870_from = private unnamed_addr constant [53 x i8] c"Android.Text.Util.Linkify+IMatchFilter, Mono.Android\00", align 1 +@.TypeMapEntry.8871_to = private unnamed_addr constant [38 x i8] c"android/text/util/Linkify$MatchFilter\00", align 1 +@.TypeMapEntry.8872_from = private unnamed_addr constant [60 x i8] c"Android.Text.Util.Linkify+IMatchFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8873_from = private unnamed_addr constant [57 x i8] c"Android.Text.Util.Linkify+ITransformFilter, Mono.Android\00", align 1 +@.TypeMapEntry.8874_to = private unnamed_addr constant [42 x i8] c"android/text/util/Linkify$TransformFilter\00", align 1 +@.TypeMapEntry.8875_from = private unnamed_addr constant [64 x i8] c"Android.Text.Util.Linkify+ITransformFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8876_from = private unnamed_addr constant [40 x i8] c"Android.Text.Util.Linkify, Mono.Android\00", align 1 +@.TypeMapEntry.8877_to = private unnamed_addr constant [26 x i8] c"android/text/util/Linkify\00", align 1 +@.TypeMapEntry.8878_from = private unnamed_addr constant [44 x i8] c"Android.Text.Util.Rfc822Token, Mono.Android\00", align 1 +@.TypeMapEntry.8879_to = private unnamed_addr constant [30 x i8] c"android/text/util/Rfc822Token\00", align 1 +@.TypeMapEntry.8880_from = private unnamed_addr constant [48 x i8] c"Android.Text.Util.Rfc822Tokenizer, Mono.Android\00", align 1 +@.TypeMapEntry.8881_to = private unnamed_addr constant [34 x i8] c"android/text/util/Rfc822Tokenizer\00", align 1 +@.TypeMapEntry.8882_from = private unnamed_addr constant [45 x i8] c"Android.Text.WordSegmentFinder, Mono.Android\00", align 1 +@.TypeMapEntry.8883_to = private unnamed_addr constant [31 x i8] c"android/text/WordSegmentFinder\00", align 1 +@.TypeMapEntry.8884_from = private unnamed_addr constant [44 x i8] c"Android.Transitions.ArcMotion, Mono.Android\00", align 1 +@.TypeMapEntry.8885_to = private unnamed_addr constant [29 x i8] c"android/transition/ArcMotion\00", align 1 +@.TypeMapEntry.8886_from = private unnamed_addr constant [49 x i8] c"Android.Transitions.AutoTransition, Mono.Android\00", align 1 +@.TypeMapEntry.8887_to = private unnamed_addr constant [34 x i8] c"android/transition/AutoTransition\00", align 1 +@.TypeMapEntry.8888_from = private unnamed_addr constant [47 x i8] c"Android.Transitions.ChangeBounds, Mono.Android\00", align 1 +@.TypeMapEntry.8889_to = private unnamed_addr constant [32 x i8] c"android/transition/ChangeBounds\00", align 1 +@.TypeMapEntry.8890_from = private unnamed_addr constant [51 x i8] c"Android.Transitions.ChangeClipBounds, Mono.Android\00", align 1 +@.TypeMapEntry.8891_to = private unnamed_addr constant [36 x i8] c"android/transition/ChangeClipBounds\00", align 1 +@.TypeMapEntry.8892_from = private unnamed_addr constant [55 x i8] c"Android.Transitions.ChangeImageTransform, Mono.Android\00", align 1 +@.TypeMapEntry.8893_to = private unnamed_addr constant [40 x i8] c"android/transition/ChangeImageTransform\00", align 1 +@.TypeMapEntry.8894_from = private unnamed_addr constant [47 x i8] c"Android.Transitions.ChangeScroll, Mono.Android\00", align 1 +@.TypeMapEntry.8895_to = private unnamed_addr constant [32 x i8] c"android/transition/ChangeScroll\00", align 1 +@.TypeMapEntry.8896_from = private unnamed_addr constant [50 x i8] c"Android.Transitions.ChangeTransform, Mono.Android\00", align 1 +@.TypeMapEntry.8897_to = private unnamed_addr constant [35 x i8] c"android/transition/ChangeTransform\00", align 1 +@.TypeMapEntry.8898_from = private unnamed_addr constant [54 x i8] c"Android.Transitions.CircularPropagation, Mono.Android\00", align 1 +@.TypeMapEntry.8899_to = private unnamed_addr constant [39 x i8] c"android/transition/CircularPropagation\00", align 1 +@.TypeMapEntry.8900_from = private unnamed_addr constant [42 x i8] c"Android.Transitions.Explode, Mono.Android\00", align 1 +@.TypeMapEntry.8901_to = private unnamed_addr constant [27 x i8] c"android/transition/Explode\00", align 1 +@.TypeMapEntry.8902_from = private unnamed_addr constant [39 x i8] c"Android.Transitions.Fade, Mono.Android\00", align 1 +@.TypeMapEntry.8903_to = private unnamed_addr constant [24 x i8] c"android/transition/Fade\00", align 1 +@.TypeMapEntry.8904_from = private unnamed_addr constant [45 x i8] c"Android.Transitions.PathMotion, Mono.Android\00", align 1 +@.TypeMapEntry.8905_to = private unnamed_addr constant [30 x i8] c"android/transition/PathMotion\00", align 1 +@.TypeMapEntry.8906_from = private unnamed_addr constant [52 x i8] c"Android.Transitions.PathMotionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8907_from = private unnamed_addr constant [52 x i8] c"Android.Transitions.PatternPathMotion, Mono.Android\00", align 1 +@.TypeMapEntry.8908_to = private unnamed_addr constant [37 x i8] c"android/transition/PatternPathMotion\00", align 1 +@.TypeMapEntry.8909_from = private unnamed_addr constant [40 x i8] c"Android.Transitions.Scene, Mono.Android\00", align 1 +@.TypeMapEntry.8910_to = private unnamed_addr constant [25 x i8] c"android/transition/Scene\00", align 1 +@.TypeMapEntry.8911_from = private unnamed_addr constant [50 x i8] c"Android.Transitions.SidePropagation, Mono.Android\00", align 1 +@.TypeMapEntry.8912_to = private unnamed_addr constant [35 x i8] c"android/transition/SidePropagation\00", align 1 +@.TypeMapEntry.8913_from = private unnamed_addr constant [40 x i8] c"Android.Transitions.Slide, Mono.Android\00", align 1 +@.TypeMapEntry.8914_to = private unnamed_addr constant [25 x i8] c"android/transition/Slide\00", align 1 +@.TypeMapEntry.8915_from = private unnamed_addr constant [63 x i8] c"Android.Transitions.Transition+EpicenterCallback, Mono.Android\00", align 1 +@.TypeMapEntry.8916_to = private unnamed_addr constant [48 x i8] c"android/transition/Transition$EpicenterCallback\00", align 1 +@.TypeMapEntry.8917_from = private unnamed_addr constant [70 x i8] c"Android.Transitions.Transition+EpicenterCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8918_from = private unnamed_addr constant [65 x i8] c"Android.Transitions.Transition+ITransitionListener, Mono.Android\00", align 1 +@.TypeMapEntry.8919_to = private unnamed_addr constant [49 x i8] c"android/transition/Transition$TransitionListener\00", align 1 +@.TypeMapEntry.8920_from = private unnamed_addr constant [76 x i8] c"Android.Transitions.Transition+ITransitionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.8921_to = private unnamed_addr constant [65 x i8] c"mono/android/transition/Transition_TransitionListenerImplementor\00", align 1 +@.TypeMapEntry.8922_from = private unnamed_addr constant [72 x i8] c"Android.Transitions.Transition+ITransitionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8923_from = private unnamed_addr constant [45 x i8] c"Android.Transitions.Transition, Mono.Android\00", align 1 +@.TypeMapEntry.8924_to = private unnamed_addr constant [30 x i8] c"android/transition/Transition\00", align 1 +@.TypeMapEntry.8925_from = private unnamed_addr constant [53 x i8] c"Android.Transitions.TransitionInflater, Mono.Android\00", align 1 +@.TypeMapEntry.8926_to = private unnamed_addr constant [38 x i8] c"android/transition/TransitionInflater\00", align 1 +@.TypeMapEntry.8927_from = private unnamed_addr constant [52 x i8] c"Android.Transitions.TransitionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8928_from = private unnamed_addr constant [60 x i8] c"Android.Transitions.TransitionListenerAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.8929_to = private unnamed_addr constant [45 x i8] c"android/transition/TransitionListenerAdapter\00", align 1 +@.TypeMapEntry.8930_from = private unnamed_addr constant [67 x i8] c"Android.Transitions.TransitionListenerAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8931_from = private unnamed_addr constant [52 x i8] c"Android.Transitions.TransitionManager, Mono.Android\00", align 1 +@.TypeMapEntry.8932_to = private unnamed_addr constant [37 x i8] c"android/transition/TransitionManager\00", align 1 +@.TypeMapEntry.8933_from = private unnamed_addr constant [56 x i8] c"Android.Transitions.TransitionPropagation, Mono.Android\00", align 1 +@.TypeMapEntry.8934_to = private unnamed_addr constant [41 x i8] c"android/transition/TransitionPropagation\00", align 1 +@.TypeMapEntry.8935_from = private unnamed_addr constant [63 x i8] c"Android.Transitions.TransitionPropagationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8936_from = private unnamed_addr constant [48 x i8] c"Android.Transitions.TransitionSet, Mono.Android\00", align 1 +@.TypeMapEntry.8937_to = private unnamed_addr constant [33 x i8] c"android/transition/TransitionSet\00", align 1 +@.TypeMapEntry.8938_from = private unnamed_addr constant [51 x i8] c"Android.Transitions.TransitionValues, Mono.Android\00", align 1 +@.TypeMapEntry.8939_to = private unnamed_addr constant [36 x i8] c"android/transition/TransitionValues\00", align 1 +@.TypeMapEntry.8940_from = private unnamed_addr constant [45 x i8] c"Android.Transitions.Visibility, Mono.Android\00", align 1 +@.TypeMapEntry.8941_to = private unnamed_addr constant [30 x i8] c"android/transition/Visibility\00", align 1 +@.TypeMapEntry.8942_from = private unnamed_addr constant [52 x i8] c"Android.Transitions.VisibilityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8943_from = private unnamed_addr constant [56 x i8] c"Android.Transitions.VisibilityPropagation, Mono.Android\00", align 1 +@.TypeMapEntry.8944_to = private unnamed_addr constant [41 x i8] c"android/transition/VisibilityPropagation\00", align 1 +@.TypeMapEntry.8945_from = private unnamed_addr constant [63 x i8] c"Android.Transitions.VisibilityPropagationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8946_from = private unnamed_addr constant [44 x i8] c"Android.Util.AndroidException, Mono.Android\00", align 1 +@.TypeMapEntry.8947_to = private unnamed_addr constant [30 x i8] c"android/util/AndroidException\00", align 1 +@.TypeMapEntry.8948_from = private unnamed_addr constant [51 x i8] c"Android.Util.AndroidRuntimeException, Mono.Android\00", align 1 +@.TypeMapEntry.8949_to = private unnamed_addr constant [37 x i8] c"android/util/AndroidRuntimeException\00", align 1 +@.TypeMapEntry.8950_from = private unnamed_addr constant [36 x i8] c"Android.Util.ArrayMap, Mono.Android\00", align 1 +@.TypeMapEntry.8951_to = private unnamed_addr constant [22 x i8] c"android/util/ArrayMap\00", align 1 +@.TypeMapEntry.8952_from = private unnamed_addr constant [36 x i8] c"Android.Util.ArraySet, Mono.Android\00", align 1 +@.TypeMapEntry.8953_to = private unnamed_addr constant [22 x i8] c"android/util/ArraySet\00", align 1 +@.TypeMapEntry.8954_from = private unnamed_addr constant [38 x i8] c"Android.Util.AtomicFile, Mono.Android\00", align 1 +@.TypeMapEntry.8955_to = private unnamed_addr constant [24 x i8] c"android/util/AtomicFile\00", align 1 +@.TypeMapEntry.8956_from = private unnamed_addr constant [34 x i8] c"Android.Util.Base64, Mono.Android\00", align 1 +@.TypeMapEntry.8957_to = private unnamed_addr constant [20 x i8] c"android/util/Base64\00", align 1 +@.TypeMapEntry.8958_from = private unnamed_addr constant [47 x i8] c"Android.Util.Base64DataException, Mono.Android\00", align 1 +@.TypeMapEntry.8959_to = private unnamed_addr constant [33 x i8] c"android/util/Base64DataException\00", align 1 +@.TypeMapEntry.8960_from = private unnamed_addr constant [45 x i8] c"Android.Util.Base64InputStream, Mono.Android\00", align 1 +@.TypeMapEntry.8961_to = private unnamed_addr constant [31 x i8] c"android/util/Base64InputStream\00", align 1 +@.TypeMapEntry.8962_from = private unnamed_addr constant [46 x i8] c"Android.Util.Base64OutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.8963_to = private unnamed_addr constant [32 x i8] c"android/util/Base64OutputStream\00", align 1 +@.TypeMapEntry.8964_from = private unnamed_addr constant [38 x i8] c"Android.Util.CloseGuard, Mono.Android\00", align 1 +@.TypeMapEntry.8965_to = private unnamed_addr constant [24 x i8] c"android/util/CloseGuard\00", align 1 +@.TypeMapEntry.8966_from = private unnamed_addr constant [34 x i8] c"Android.Util.Config, Mono.Android\00", align 1 +@.TypeMapEntry.8967_to = private unnamed_addr constant [20 x i8] c"android/util/Config\00", align 1 +@.TypeMapEntry.8968_from = private unnamed_addr constant [38 x i8] c"Android.Util.DebugUtils, Mono.Android\00", align 1 +@.TypeMapEntry.8969_to = private unnamed_addr constant [24 x i8] c"android/util/DebugUtils\00", align 1 +@.TypeMapEntry.8970_from = private unnamed_addr constant [42 x i8] c"Android.Util.DisplayMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.8971_to = private unnamed_addr constant [28 x i8] c"android/util/DisplayMetrics\00", align 1 +@.TypeMapEntry.8972_from = private unnamed_addr constant [42 x i8] c"Android.Util.EventLog+Event, Mono.Android\00", align 1 +@.TypeMapEntry.8973_to = private unnamed_addr constant [28 x i8] c"android/util/EventLog$Event\00", align 1 +@.TypeMapEntry.8974_from = private unnamed_addr constant [36 x i8] c"Android.Util.EventLog, Mono.Android\00", align 1 +@.TypeMapEntry.8975_to = private unnamed_addr constant [22 x i8] c"android/util/EventLog\00", align 1 +@.TypeMapEntry.8976_from = private unnamed_addr constant [52 x i8] c"Android.Util.EventLogTags+Description, Mono.Android\00", align 1 +@.TypeMapEntry.8977_to = private unnamed_addr constant [38 x i8] c"android/util/EventLogTags$Description\00", align 1 +@.TypeMapEntry.8978_from = private unnamed_addr constant [40 x i8] c"Android.Util.EventLogTags, Mono.Android\00", align 1 +@.TypeMapEntry.8979_to = private unnamed_addr constant [26 x i8] c"android/util/EventLogTags\00", align 1 +@.TypeMapEntry.8980_from = private unnamed_addr constant [37 x i8] c"Android.Util.FloatMath, Mono.Android\00", align 1 +@.TypeMapEntry.8981_to = private unnamed_addr constant [23 x i8] c"android/util/FloatMath\00", align 1 +@.TypeMapEntry.8982_from = private unnamed_addr constant [41 x i8] c"Android.Util.FloatProperty, Mono.Android\00", align 1 +@.TypeMapEntry.8983_to = private unnamed_addr constant [27 x i8] c"android/util/FloatProperty\00", align 1 +@.TypeMapEntry.8984_from = private unnamed_addr constant [48 x i8] c"Android.Util.FloatPropertyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8985_from = private unnamed_addr constant [32 x i8] c"Android.Util.Half, Mono.Android\00", align 1 +@.TypeMapEntry.8986_to = private unnamed_addr constant [18 x i8] c"android/util/Half\00", align 1 +@.TypeMapEntry.8987_from = private unnamed_addr constant [41 x i8] c"Android.Util.IAttributeSet, Mono.Android\00", align 1 +@.TypeMapEntry.8988_to = private unnamed_addr constant [26 x i8] c"android/util/AttributeSet\00", align 1 +@.TypeMapEntry.8989_from = private unnamed_addr constant [48 x i8] c"Android.Util.IAttributeSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8990_from = private unnamed_addr constant [37 x i8] c"Android.Util.IDumpable, Mono.Android\00", align 1 +@.TypeMapEntry.8991_to = private unnamed_addr constant [22 x i8] c"android/util/Dumpable\00", align 1 +@.TypeMapEntry.8992_from = private unnamed_addr constant [46 x i8] c"Android.Util.IDumpableContainer, Mono.Android\00", align 1 +@.TypeMapEntry.8993_to = private unnamed_addr constant [31 x i8] c"android/util/DumpableContainer\00", align 1 +@.TypeMapEntry.8994_from = private unnamed_addr constant [53 x i8] c"Android.Util.IDumpableContainerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8995_from = private unnamed_addr constant [44 x i8] c"Android.Util.IDumpableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8996_from = private unnamed_addr constant [36 x i8] c"Android.Util.IPrinter, Mono.Android\00", align 1 +@.TypeMapEntry.8997_to = private unnamed_addr constant [21 x i8] c"android/util/Printer\00", align 1 +@.TypeMapEntry.8998_from = private unnamed_addr constant [43 x i8] c"Android.Util.IPrinterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.8999_from = private unnamed_addr constant [39 x i8] c"Android.Util.IntProperty, Mono.Android\00", align 1 +@.TypeMapEntry.9000_to = private unnamed_addr constant [25 x i8] c"android/util/IntProperty\00", align 1 +@.TypeMapEntry.9001_from = private unnamed_addr constant [46 x i8] c"Android.Util.IntPropertyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9002_from = private unnamed_addr constant [38 x i8] c"Android.Util.JsonReader, Mono.Android\00", align 1 +@.TypeMapEntry.9003_to = private unnamed_addr constant [24 x i8] c"android/util/JsonReader\00", align 1 +@.TypeMapEntry.9004_from = private unnamed_addr constant [37 x i8] c"Android.Util.JsonToken, Mono.Android\00", align 1 +@.TypeMapEntry.9005_to = private unnamed_addr constant [23 x i8] c"android/util/JsonToken\00", align 1 +@.TypeMapEntry.9006_from = private unnamed_addr constant [38 x i8] c"Android.Util.JsonWriter, Mono.Android\00", align 1 +@.TypeMapEntry.9007_to = private unnamed_addr constant [24 x i8] c"android/util/JsonWriter\00", align 1 +@.TypeMapEntry.9008_from = private unnamed_addr constant [43 x i8] c"Android.Util.LayoutDirection, Mono.Android\00", align 1 +@.TypeMapEntry.9009_to = private unnamed_addr constant [29 x i8] c"android/util/LayoutDirection\00", align 1 +@.TypeMapEntry.9010_from = private unnamed_addr constant [31 x i8] c"Android.Util.Log, Mono.Android\00", align 1 +@.TypeMapEntry.9011_to = private unnamed_addr constant [17 x i8] c"android/util/Log\00", align 1 +@.TypeMapEntry.9012_from = private unnamed_addr constant [38 x i8] c"Android.Util.LogPrinter, Mono.Android\00", align 1 +@.TypeMapEntry.9013_to = private unnamed_addr constant [24 x i8] c"android/util/LogPrinter\00", align 1 +@.TypeMapEntry.9014_from = private unnamed_addr constant [43 x i8] c"Android.Util.LongSparseArray, Mono.Android\00", align 1 +@.TypeMapEntry.9015_to = private unnamed_addr constant [29 x i8] c"android/util/LongSparseArray\00", align 1 +@.TypeMapEntry.9016_from = private unnamed_addr constant [36 x i8] c"Android.Util.LruCache, Mono.Android\00", align 1 +@.TypeMapEntry.9017_to = private unnamed_addr constant [22 x i8] c"android/util/LruCache\00", align 1 +@.TypeMapEntry.9018_from = private unnamed_addr constant [50 x i8] c"Android.Util.MalformedJsonException, Mono.Android\00", align 1 +@.TypeMapEntry.9019_to = private unnamed_addr constant [36 x i8] c"android/util/MalformedJsonException\00", align 1 +@.TypeMapEntry.9020_from = private unnamed_addr constant [46 x i8] c"Android.Util.MonthDisplayHelper, Mono.Android\00", align 1 +@.TypeMapEntry.9021_to = private unnamed_addr constant [32 x i8] c"android/util/MonthDisplayHelper\00", align 1 +@.TypeMapEntry.9022_from = private unnamed_addr constant [42 x i8] c"Android.Util.MutableBoolean, Mono.Android\00", align 1 +@.TypeMapEntry.9023_to = private unnamed_addr constant [28 x i8] c"android/util/MutableBoolean\00", align 1 +@.TypeMapEntry.9024_from = private unnamed_addr constant [39 x i8] c"Android.Util.MutableByte, Mono.Android\00", align 1 +@.TypeMapEntry.9025_to = private unnamed_addr constant [25 x i8] c"android/util/MutableByte\00", align 1 +@.TypeMapEntry.9026_from = private unnamed_addr constant [39 x i8] c"Android.Util.MutableChar, Mono.Android\00", align 1 +@.TypeMapEntry.9027_to = private unnamed_addr constant [25 x i8] c"android/util/MutableChar\00", align 1 +@.TypeMapEntry.9028_from = private unnamed_addr constant [41 x i8] c"Android.Util.MutableDouble, Mono.Android\00", align 1 +@.TypeMapEntry.9029_to = private unnamed_addr constant [27 x i8] c"android/util/MutableDouble\00", align 1 +@.TypeMapEntry.9030_from = private unnamed_addr constant [40 x i8] c"Android.Util.MutableFloat, Mono.Android\00", align 1 +@.TypeMapEntry.9031_to = private unnamed_addr constant [26 x i8] c"android/util/MutableFloat\00", align 1 +@.TypeMapEntry.9032_from = private unnamed_addr constant [38 x i8] c"Android.Util.MutableInt, Mono.Android\00", align 1 +@.TypeMapEntry.9033_to = private unnamed_addr constant [24 x i8] c"android/util/MutableInt\00", align 1 +@.TypeMapEntry.9034_from = private unnamed_addr constant [39 x i8] c"Android.Util.MutableLong, Mono.Android\00", align 1 +@.TypeMapEntry.9035_to = private unnamed_addr constant [25 x i8] c"android/util/MutableLong\00", align 1 +@.TypeMapEntry.9036_from = private unnamed_addr constant [40 x i8] c"Android.Util.MutableShort, Mono.Android\00", align 1 +@.TypeMapEntry.9037_to = private unnamed_addr constant [26 x i8] c"android/util/MutableShort\00", align 1 +@.TypeMapEntry.9038_from = private unnamed_addr constant [51 x i8] c"Android.Util.NoSuchPropertyException, Mono.Android\00", align 1 +@.TypeMapEntry.9039_to = private unnamed_addr constant [37 x i8] c"android/util/NoSuchPropertyException\00", align 1 +@.TypeMapEntry.9040_from = private unnamed_addr constant [32 x i8] c"Android.Util.Pair, Mono.Android\00", align 1 +@.TypeMapEntry.9041_to = private unnamed_addr constant [18 x i8] c"android/util/Pair\00", align 1 +@.TypeMapEntry.9042_from = private unnamed_addr constant [36 x i8] c"Android.Util.Patterns, Mono.Android\00", align 1 +@.TypeMapEntry.9043_to = private unnamed_addr constant [22 x i8] c"android/util/Patterns\00", align 1 +@.TypeMapEntry.9044_from = private unnamed_addr constant [46 x i8] c"Android.Util.PrintStreamPrinter, Mono.Android\00", align 1 +@.TypeMapEntry.9045_to = private unnamed_addr constant [32 x i8] c"android/util/PrintStreamPrinter\00", align 1 +@.TypeMapEntry.9046_from = private unnamed_addr constant [46 x i8] c"Android.Util.PrintWriterPrinter, Mono.Android\00", align 1 +@.TypeMapEntry.9047_to = private unnamed_addr constant [32 x i8] c"android/util/PrintWriterPrinter\00", align 1 +@.TypeMapEntry.9048_from = private unnamed_addr constant [36 x i8] c"Android.Util.Property, Mono.Android\00", align 1 +@.TypeMapEntry.9049_to = private unnamed_addr constant [22 x i8] c"android/util/Property\00", align 1 +@.TypeMapEntry.9050_from = private unnamed_addr constant [43 x i8] c"Android.Util.PropertyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9051_from = private unnamed_addr constant [51 x i8] c"Android.Util.Proto.ProtoOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.9052_to = private unnamed_addr constant [37 x i8] c"android/util/proto/ProtoOutputStream\00", align 1 +@.TypeMapEntry.9053_from = private unnamed_addr constant [33 x i8] c"Android.Util.Range, Mono.Android\00", align 1 +@.TypeMapEntry.9054_to = private unnamed_addr constant [19 x i8] c"android/util/Range\00", align 1 +@.TypeMapEntry.9055_from = private unnamed_addr constant [36 x i8] c"Android.Util.Rational, Mono.Android\00", align 1 +@.TypeMapEntry.9056_to = private unnamed_addr constant [22 x i8] c"android/util/Rational\00", align 1 +@.TypeMapEntry.9057_from = private unnamed_addr constant [32 x i8] c"Android.Util.Size, Mono.Android\00", align 1 +@.TypeMapEntry.9058_to = private unnamed_addr constant [18 x i8] c"android/util/Size\00", align 1 +@.TypeMapEntry.9059_from = private unnamed_addr constant [33 x i8] c"Android.Util.SizeF, Mono.Android\00", align 1 +@.TypeMapEntry.9060_to = private unnamed_addr constant [19 x i8] c"android/util/SizeF\00", align 1 +@.TypeMapEntry.9061_from = private unnamed_addr constant [39 x i8] c"Android.Util.SparseArray, Mono.Android\00", align 1 +@.TypeMapEntry.9062_to = private unnamed_addr constant [25 x i8] c"android/util/SparseArray\00", align 1 +@.TypeMapEntry.9063_from = private unnamed_addr constant [41 x i8] c"Android.Util.SparseArray`1, Mono.Android\00", align 1 +@.TypeMapEntry.9064_from = private unnamed_addr constant [46 x i8] c"Android.Util.SparseBooleanArray, Mono.Android\00", align 1 +@.TypeMapEntry.9065_to = private unnamed_addr constant [32 x i8] c"android/util/SparseBooleanArray\00", align 1 +@.TypeMapEntry.9066_from = private unnamed_addr constant [42 x i8] c"Android.Util.SparseIntArray, Mono.Android\00", align 1 +@.TypeMapEntry.9067_to = private unnamed_addr constant [28 x i8] c"android/util/SparseIntArray\00", align 1 +@.TypeMapEntry.9068_from = private unnamed_addr constant [43 x i8] c"Android.Util.SparseLongArray, Mono.Android\00", align 1 +@.TypeMapEntry.9069_to = private unnamed_addr constant [29 x i8] c"android/util/SparseLongArray\00", align 1 +@.TypeMapEntry.9070_from = private unnamed_addr constant [36 x i8] c"Android.Util.StateSet, Mono.Android\00", align 1 +@.TypeMapEntry.9071_to = private unnamed_addr constant [22 x i8] c"android/util/StateSet\00", align 1 +@.TypeMapEntry.9072_from = private unnamed_addr constant [36 x i8] c"Android.Util.StatsLog, Mono.Android\00", align 1 +@.TypeMapEntry.9073_to = private unnamed_addr constant [22 x i8] c"android/util/StatsLog\00", align 1 +@.TypeMapEntry.9074_from = private unnamed_addr constant [48 x i8] c"Android.Util.StringBuilderPrinter, Mono.Android\00", align 1 +@.TypeMapEntry.9075_to = private unnamed_addr constant [34 x i8] c"android/util/StringBuilderPrinter\00", align 1 +@.TypeMapEntry.9076_from = private unnamed_addr constant [47 x i8] c"Android.Util.TimeFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.9077_to = private unnamed_addr constant [33 x i8] c"android/util/TimeFormatException\00", align 1 +@.TypeMapEntry.9078_from = private unnamed_addr constant [37 x i8] c"Android.Util.TimeUtils, Mono.Android\00", align 1 +@.TypeMapEntry.9079_to = private unnamed_addr constant [23 x i8] c"android/util/TimeUtils\00", align 1 +@.TypeMapEntry.9080_from = private unnamed_addr constant [40 x i8] c"Android.Util.TimingLogger, Mono.Android\00", align 1 +@.TypeMapEntry.9081_to = private unnamed_addr constant [26 x i8] c"android/util/TimingLogger\00", align 1 +@.TypeMapEntry.9082_from = private unnamed_addr constant [38 x i8] c"Android.Util.TypedValue, Mono.Android\00", align 1 +@.TypeMapEntry.9083_to = private unnamed_addr constant [24 x i8] c"android/util/TypedValue\00", align 1 +@.TypeMapEntry.9084_from = private unnamed_addr constant [40 x i8] c"Android.Util.Xml+Encoding, Mono.Android\00", align 1 +@.TypeMapEntry.9085_to = private unnamed_addr constant [26 x i8] c"android/util/Xml$Encoding\00", align 1 +@.TypeMapEntry.9086_from = private unnamed_addr constant [31 x i8] c"Android.Util.Xml, Mono.Android\00", align 1 +@.TypeMapEntry.9087_to = private unnamed_addr constant [17 x i8] c"android/util/Xml\00", align 1 +@.TypeMapEntry.9088_from = private unnamed_addr constant [42 x i8] c"Android.Views.AbsSavedState, Mono.Android\00", align 1 +@.TypeMapEntry.9089_to = private unnamed_addr constant [27 x i8] c"android/view/AbsSavedState\00", align 1 +@.TypeMapEntry.9090_from = private unnamed_addr constant [49 x i8] c"Android.Views.AbsSavedStateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9091_from = private unnamed_addr constant [61 x i8] c"Android.Views.Accessibility.AccessibilityEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9092_to = private unnamed_addr constant [46 x i8] c"android/view/accessibility/AccessibilityEvent\00", align 1 +@.TypeMapEntry.9093_from = private unnamed_addr constant [105 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityServicesStateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9094_to = private unnamed_addr constant [89 x i8] c"android/view/accessibility/AccessibilityManager$AccessibilityServicesStateChangeListener\00", align 1 +@.TypeMapEntry.9095_from = private unnamed_addr constant [116 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityServicesStateChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9096_to = private unnamed_addr constant [105 x i8] c"mono/android/view/accessibility/AccessibilityManager_AccessibilityServicesStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9097_from = private unnamed_addr constant [112 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityServicesStateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9098_from = private unnamed_addr constant [97 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityStateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9099_to = private unnamed_addr constant [81 x i8] c"android/view/accessibility/AccessibilityManager$AccessibilityStateChangeListener\00", align 1 +@.TypeMapEntry.9100_from = private unnamed_addr constant [108 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityStateChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9101_to = private unnamed_addr constant [97 x i8] c"mono/android/view/accessibility/AccessibilityManager_AccessibilityStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9102_from = private unnamed_addr constant [104 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAccessibilityStateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9103_from = private unnamed_addr constant [104 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAudioDescriptionRequestedChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9104_to = private unnamed_addr constant [88 x i8] c"android/view/accessibility/AccessibilityManager$AudioDescriptionRequestedChangeListener\00", align 1 +@.TypeMapEntry.9105_from = private unnamed_addr constant [115 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAudioDescriptionRequestedChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9106_to = private unnamed_addr constant [104 x i8] c"mono/android/view/accessibility/AccessibilityManager_AudioDescriptionRequestedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9107_from = private unnamed_addr constant [111 x i8] c"Android.Views.Accessibility.AccessibilityManager+IAudioDescriptionRequestedChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9108_from = private unnamed_addr constant [100 x i8] c"Android.Views.Accessibility.AccessibilityManager+ITouchExplorationStateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9109_to = private unnamed_addr constant [84 x i8] c"android/view/accessibility/AccessibilityManager$TouchExplorationStateChangeListener\00", align 1 +@.TypeMapEntry.9110_from = private unnamed_addr constant [111 x i8] c"Android.Views.Accessibility.AccessibilityManager+ITouchExplorationStateChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9111_to = private unnamed_addr constant [100 x i8] c"mono/android/view/accessibility/AccessibilityManager_TouchExplorationStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9112_from = private unnamed_addr constant [107 x i8] c"Android.Views.Accessibility.AccessibilityManager+ITouchExplorationStateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9113_from = private unnamed_addr constant [63 x i8] c"Android.Views.Accessibility.AccessibilityManager, Mono.Android\00", align 1 +@.TypeMapEntry.9114_to = private unnamed_addr constant [48 x i8] c"android/view/accessibility/AccessibilityManager\00", align 1 +@.TypeMapEntry.9115_from = private unnamed_addr constant [84 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+AccessibilityAction, Mono.Android\00", align 1 +@.TypeMapEntry.9116_to = private unnamed_addr constant [69 x i8] c"android/view/accessibility/AccessibilityNodeInfo$AccessibilityAction\00", align 1 +@.TypeMapEntry.9117_from = private unnamed_addr constant [87 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+CollectionInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9118_to = private unnamed_addr constant [72 x i8] c"android/view/accessibility/AccessibilityNodeInfo$CollectionInfo$Builder\00", align 1 +@.TypeMapEntry.9119_from = private unnamed_addr constant [79 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+CollectionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9120_to = private unnamed_addr constant [64 x i8] c"android/view/accessibility/AccessibilityNodeInfo$CollectionInfo\00", align 1 +@.TypeMapEntry.9121_from = private unnamed_addr constant [91 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+CollectionItemInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9122_to = private unnamed_addr constant [76 x i8] c"android/view/accessibility/AccessibilityNodeInfo$CollectionItemInfo$Builder\00", align 1 +@.TypeMapEntry.9123_from = private unnamed_addr constant [83 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+CollectionItemInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9124_to = private unnamed_addr constant [68 x i8] c"android/view/accessibility/AccessibilityNodeInfo$CollectionItemInfo\00", align 1 +@.TypeMapEntry.9125_from = private unnamed_addr constant [83 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+ExtraRenderingInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9126_to = private unnamed_addr constant [68 x i8] c"android/view/accessibility/AccessibilityNodeInfo$ExtraRenderingInfo\00", align 1 +@.TypeMapEntry.9127_from = private unnamed_addr constant [74 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+RangeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9128_to = private unnamed_addr constant [59 x i8] c"android/view/accessibility/AccessibilityNodeInfo$RangeInfo\00", align 1 +@.TypeMapEntry.9129_from = private unnamed_addr constant [82 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo+TouchDelegateInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9130_to = private unnamed_addr constant [67 x i8] c"android/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo\00", align 1 +@.TypeMapEntry.9131_from = private unnamed_addr constant [64 x i8] c"Android.Views.Accessibility.AccessibilityNodeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9132_to = private unnamed_addr constant [49 x i8] c"android/view/accessibility/AccessibilityNodeInfo\00", align 1 +@.TypeMapEntry.9133_from = private unnamed_addr constant [68 x i8] c"Android.Views.Accessibility.AccessibilityNodeProvider, Mono.Android\00", align 1 +@.TypeMapEntry.9134_to = private unnamed_addr constant [53 x i8] c"android/view/accessibility/AccessibilityNodeProvider\00", align 1 +@.TypeMapEntry.9135_from = private unnamed_addr constant [75 x i8] c"Android.Views.Accessibility.AccessibilityNodeProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9136_from = private unnamed_addr constant [62 x i8] c"Android.Views.Accessibility.AccessibilityRecord, Mono.Android\00", align 1 +@.TypeMapEntry.9137_to = private unnamed_addr constant [47 x i8] c"android/view/accessibility/AccessibilityRecord\00", align 1 +@.TypeMapEntry.9138_from = private unnamed_addr constant [71 x i8] c"Android.Views.Accessibility.AccessibilityRequestPreparer, Mono.Android\00", align 1 +@.TypeMapEntry.9139_to = private unnamed_addr constant [56 x i8] c"android/view/accessibility/AccessibilityRequestPreparer\00", align 1 +@.TypeMapEntry.9140_from = private unnamed_addr constant [78 x i8] c"Android.Views.Accessibility.AccessibilityRequestPreparerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9141_from = private unnamed_addr constant [66 x i8] c"Android.Views.Accessibility.AccessibilityWindowInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9142_to = private unnamed_addr constant [51 x i8] c"android/view/accessibility/AccessibilityWindowInfo\00", align 1 +@.TypeMapEntry.9143_from = private unnamed_addr constant [73 x i8] c"Android.Views.Accessibility.CaptioningManager+CaptionStyle, Mono.Android\00", align 1 +@.TypeMapEntry.9144_to = private unnamed_addr constant [58 x i8] c"android/view/accessibility/CaptioningManager$CaptionStyle\00", align 1 +@.TypeMapEntry.9145_from = private unnamed_addr constant [85 x i8] c"Android.Views.Accessibility.CaptioningManager+CaptioningChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9146_to = private unnamed_addr constant [70 x i8] c"android/view/accessibility/CaptioningManager$CaptioningChangeListener\00", align 1 +@.TypeMapEntry.9147_from = private unnamed_addr constant [92 x i8] c"Android.Views.Accessibility.CaptioningManager+CaptioningChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9148_from = private unnamed_addr constant [60 x i8] c"Android.Views.Accessibility.CaptioningManager, Mono.Android\00", align 1 +@.TypeMapEntry.9149_to = private unnamed_addr constant [45 x i8] c"android/view/accessibility/CaptioningManager\00", align 1 +@.TypeMapEntry.9150_from = private unnamed_addr constant [68 x i8] c"Android.Views.Accessibility.IAccessibilityEventSource, Mono.Android\00", align 1 +@.TypeMapEntry.9151_to = private unnamed_addr constant [52 x i8] c"android/view/accessibility/AccessibilityEventSource\00", align 1 +@.TypeMapEntry.9152_from = private unnamed_addr constant [75 x i8] c"Android.Views.Accessibility.IAccessibilityEventSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9153_from = private unnamed_addr constant [49 x i8] c"Android.Views.ActionMode+Callback2, Mono.Android\00", align 1 +@.TypeMapEntry.9154_to = private unnamed_addr constant [34 x i8] c"android/view/ActionMode$Callback2\00", align 1 +@.TypeMapEntry.9155_from = private unnamed_addr constant [56 x i8] c"Android.Views.ActionMode+Callback2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.9156_from = private unnamed_addr constant [49 x i8] c"Android.Views.ActionMode+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.9157_to = private unnamed_addr constant [33 x i8] c"android/view/ActionMode$Callback\00", align 1 +@.TypeMapEntry.9158_from = private unnamed_addr constant [56 x i8] c"Android.Views.ActionMode+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9159_from = private unnamed_addr constant [39 x i8] c"Android.Views.ActionMode, Mono.Android\00", align 1 +@.TypeMapEntry.9160_to = private unnamed_addr constant [24 x i8] c"android/view/ActionMode\00", align 1 +@.TypeMapEntry.9161_from = private unnamed_addr constant [46 x i8] c"Android.Views.ActionModeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9162_from = private unnamed_addr constant [63 x i8] c"Android.Views.ActionProvider+IVisibilityListener, Mono.Android\00", align 1 +@.TypeMapEntry.9163_to = private unnamed_addr constant [47 x i8] c"android/view/ActionProvider$VisibilityListener\00", align 1 +@.TypeMapEntry.9164_from = private unnamed_addr constant [74 x i8] c"Android.Views.ActionProvider+IVisibilityListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9165_to = private unnamed_addr constant [63 x i8] c"mono/android/view/ActionProvider_VisibilityListenerImplementor\00", align 1 +@.TypeMapEntry.9166_from = private unnamed_addr constant [70 x i8] c"Android.Views.ActionProvider+IVisibilityListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9167_from = private unnamed_addr constant [43 x i8] c"Android.Views.ActionProvider, Mono.Android\00", align 1 +@.TypeMapEntry.9168_to = private unnamed_addr constant [28 x i8] c"android/view/ActionProvider\00", align 1 +@.TypeMapEntry.9169_from = private unnamed_addr constant [50 x i8] c"Android.Views.ActionProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9170_from = private unnamed_addr constant [72 x i8] c"Android.Views.Animations.AccelerateDecelerateInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9171_to = private unnamed_addr constant [56 x i8] c"android/view/animation/AccelerateDecelerateInterpolator\00", align 1 +@.TypeMapEntry.9172_from = private unnamed_addr constant [62 x i8] c"Android.Views.Animations.AccelerateInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9173_to = private unnamed_addr constant [46 x i8] c"android/view/animation/AccelerateInterpolator\00", align 1 +@.TypeMapEntry.9174_from = private unnamed_addr constant [54 x i8] c"Android.Views.Animations.AlphaAnimation, Mono.Android\00", align 1 +@.TypeMapEntry.9175_to = private unnamed_addr constant [38 x i8] c"android/view/animation/AlphaAnimation\00", align 1 +@.TypeMapEntry.9176_from = private unnamed_addr constant [61 x i8] c"Android.Views.Animations.Animation+Description, Mono.Android\00", align 1 +@.TypeMapEntry.9177_to = private unnamed_addr constant [45 x i8] c"android/view/animation/Animation$Description\00", align 1 +@.TypeMapEntry.9178_from = private unnamed_addr constant [68 x i8] c"Android.Views.Animations.Animation+IAnimationListener, Mono.Android\00", align 1 +@.TypeMapEntry.9179_to = private unnamed_addr constant [51 x i8] c"android/view/animation/Animation$AnimationListener\00", align 1 +@.TypeMapEntry.9180_from = private unnamed_addr constant [79 x i8] c"Android.Views.Animations.Animation+IAnimationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9181_to = private unnamed_addr constant [67 x i8] c"mono/android/view/animation/Animation_AnimationListenerImplementor\00", align 1 +@.TypeMapEntry.9182_from = private unnamed_addr constant [75 x i8] c"Android.Views.Animations.Animation+IAnimationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9183_from = private unnamed_addr constant [49 x i8] c"Android.Views.Animations.Animation, Mono.Android\00", align 1 +@.TypeMapEntry.9184_to = private unnamed_addr constant [33 x i8] c"android/view/animation/Animation\00", align 1 +@.TypeMapEntry.9185_from = private unnamed_addr constant [56 x i8] c"Android.Views.Animations.AnimationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9186_from = private unnamed_addr constant [52 x i8] c"Android.Views.Animations.AnimationSet, Mono.Android\00", align 1 +@.TypeMapEntry.9187_to = private unnamed_addr constant [36 x i8] c"android/view/animation/AnimationSet\00", align 1 +@.TypeMapEntry.9188_from = private unnamed_addr constant [54 x i8] c"Android.Views.Animations.AnimationUtils, Mono.Android\00", align 1 +@.TypeMapEntry.9189_to = private unnamed_addr constant [38 x i8] c"android/view/animation/AnimationUtils\00", align 1 +@.TypeMapEntry.9190_from = private unnamed_addr constant [62 x i8] c"Android.Views.Animations.AnticipateInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9191_to = private unnamed_addr constant [46 x i8] c"android/view/animation/AnticipateInterpolator\00", align 1 +@.TypeMapEntry.9192_from = private unnamed_addr constant [71 x i8] c"Android.Views.Animations.AnticipateOvershootInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9193_to = private unnamed_addr constant [55 x i8] c"android/view/animation/AnticipateOvershootInterpolator\00", align 1 +@.TypeMapEntry.9194_from = private unnamed_addr constant [56 x i8] c"Android.Views.Animations.BaseInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9195_to = private unnamed_addr constant [40 x i8] c"android/view/animation/BaseInterpolator\00", align 1 +@.TypeMapEntry.9196_from = private unnamed_addr constant [63 x i8] c"Android.Views.Animations.BaseInterpolatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9197_from = private unnamed_addr constant [58 x i8] c"Android.Views.Animations.BounceInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9198_to = private unnamed_addr constant [42 x i8] c"android/view/animation/BounceInterpolator\00", align 1 +@.TypeMapEntry.9199_from = private unnamed_addr constant [57 x i8] c"Android.Views.Animations.CycleInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9200_to = private unnamed_addr constant [41 x i8] c"android/view/animation/CycleInterpolator\00", align 1 +@.TypeMapEntry.9201_from = private unnamed_addr constant [62 x i8] c"Android.Views.Animations.DecelerateInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9202_to = private unnamed_addr constant [46 x i8] c"android/view/animation/DecelerateInterpolator\00", align 1 +@.TypeMapEntry.9203_from = private unnamed_addr constant [89 x i8] c"Android.Views.Animations.GridLayoutAnimationController+AnimationParameters, Mono.Android\00", align 1 +@.TypeMapEntry.9204_to = private unnamed_addr constant [73 x i8] c"android/view/animation/GridLayoutAnimationController$AnimationParameters\00", align 1 +@.TypeMapEntry.9205_from = private unnamed_addr constant [69 x i8] c"Android.Views.Animations.GridLayoutAnimationController, Mono.Android\00", align 1 +@.TypeMapEntry.9206_to = private unnamed_addr constant [53 x i8] c"android/view/animation/GridLayoutAnimationController\00", align 1 +@.TypeMapEntry.9207_from = private unnamed_addr constant [53 x i8] c"Android.Views.Animations.IInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9208_to = private unnamed_addr constant [36 x i8] c"android/view/animation/Interpolator\00", align 1 +@.TypeMapEntry.9209_from = private unnamed_addr constant [60 x i8] c"Android.Views.Animations.IInterpolatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9210_from = private unnamed_addr constant [85 x i8] c"Android.Views.Animations.LayoutAnimationController+AnimationParameters, Mono.Android\00", align 1 +@.TypeMapEntry.9211_to = private unnamed_addr constant [69 x i8] c"android/view/animation/LayoutAnimationController$AnimationParameters\00", align 1 +@.TypeMapEntry.9212_from = private unnamed_addr constant [65 x i8] c"Android.Views.Animations.LayoutAnimationController, Mono.Android\00", align 1 +@.TypeMapEntry.9213_to = private unnamed_addr constant [49 x i8] c"android/view/animation/LayoutAnimationController\00", align 1 +@.TypeMapEntry.9214_from = private unnamed_addr constant [58 x i8] c"Android.Views.Animations.LinearInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9215_to = private unnamed_addr constant [42 x i8] c"android/view/animation/LinearInterpolator\00", align 1 +@.TypeMapEntry.9216_from = private unnamed_addr constant [61 x i8] c"Android.Views.Animations.OvershootInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9217_to = private unnamed_addr constant [45 x i8] c"android/view/animation/OvershootInterpolator\00", align 1 +@.TypeMapEntry.9218_from = private unnamed_addr constant [56 x i8] c"Android.Views.Animations.PathInterpolator, Mono.Android\00", align 1 +@.TypeMapEntry.9219_to = private unnamed_addr constant [40 x i8] c"android/view/animation/PathInterpolator\00", align 1 +@.TypeMapEntry.9220_from = private unnamed_addr constant [55 x i8] c"Android.Views.Animations.RotateAnimation, Mono.Android\00", align 1 +@.TypeMapEntry.9221_to = private unnamed_addr constant [39 x i8] c"android/view/animation/RotateAnimation\00", align 1 +@.TypeMapEntry.9222_from = private unnamed_addr constant [54 x i8] c"Android.Views.Animations.ScaleAnimation, Mono.Android\00", align 1 +@.TypeMapEntry.9223_to = private unnamed_addr constant [38 x i8] c"android/view/animation/ScaleAnimation\00", align 1 +@.TypeMapEntry.9224_from = private unnamed_addr constant [54 x i8] c"Android.Views.Animations.Transformation, Mono.Android\00", align 1 +@.TypeMapEntry.9225_to = private unnamed_addr constant [38 x i8] c"android/view/animation/Transformation\00", align 1 +@.TypeMapEntry.9226_from = private unnamed_addr constant [58 x i8] c"Android.Views.Animations.TranslateAnimation, Mono.Android\00", align 1 +@.TypeMapEntry.9227_to = private unnamed_addr constant [42 x i8] c"android/view/animation/TranslateAnimation\00", align 1 +@.TypeMapEntry.9228_from = private unnamed_addr constant [48 x i8] c"Android.Views.Autofill.AutofillId, Mono.Android\00", align 1 +@.TypeMapEntry.9229_to = private unnamed_addr constant [33 x i8] c"android/view/autofill/AutofillId\00", align 1 +@.TypeMapEntry.9230_from = private unnamed_addr constant [70 x i8] c"Android.Views.Autofill.AutofillManager+AutofillCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9231_to = private unnamed_addr constant [55 x i8] c"android/view/autofill/AutofillManager$AutofillCallback\00", align 1 +@.TypeMapEntry.9232_from = private unnamed_addr constant [77 x i8] c"Android.Views.Autofill.AutofillManager+AutofillCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9233_from = private unnamed_addr constant [53 x i8] c"Android.Views.Autofill.AutofillManager, Mono.Android\00", align 1 +@.TypeMapEntry.9234_to = private unnamed_addr constant [38 x i8] c"android/view/autofill/AutofillManager\00", align 1 +@.TypeMapEntry.9235_from = private unnamed_addr constant [51 x i8] c"Android.Views.Autofill.AutofillValue, Mono.Android\00", align 1 +@.TypeMapEntry.9236_to = private unnamed_addr constant [36 x i8] c"android/view/autofill/AutofillValue\00", align 1 +@.TypeMapEntry.9237_from = private unnamed_addr constant [65 x i8] c"Android.Views.Autofill.VirtualViewFillInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9238_to = private unnamed_addr constant [50 x i8] c"android/view/autofill/VirtualViewFillInfo$Builder\00", align 1 +@.TypeMapEntry.9239_from = private unnamed_addr constant [57 x i8] c"Android.Views.Autofill.VirtualViewFillInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9240_to = private unnamed_addr constant [42 x i8] c"android/view/autofill/VirtualViewFillInfo\00", align 1 +@.TypeMapEntry.9241_from = private unnamed_addr constant [52 x i8] c"Android.Views.Choreographer+FrameData, Mono.Android\00", align 1 +@.TypeMapEntry.9242_to = private unnamed_addr constant [37 x i8] c"android/view/Choreographer$FrameData\00", align 1 +@.TypeMapEntry.9243_from = private unnamed_addr constant [56 x i8] c"Android.Views.Choreographer+FrameTimeline, Mono.Android\00", align 1 +@.TypeMapEntry.9244_to = private unnamed_addr constant [41 x i8] c"android/view/Choreographer$FrameTimeline\00", align 1 +@.TypeMapEntry.9245_from = private unnamed_addr constant [57 x i8] c"Android.Views.Choreographer+IFrameCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9246_to = private unnamed_addr constant [41 x i8] c"android/view/Choreographer$FrameCallback\00", align 1 +@.TypeMapEntry.9247_from = private unnamed_addr constant [64 x i8] c"Android.Views.Choreographer+IFrameCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9248_from = private unnamed_addr constant [57 x i8] c"Android.Views.Choreographer+IVsyncCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9249_to = private unnamed_addr constant [41 x i8] c"android/view/Choreographer$VsyncCallback\00", align 1 +@.TypeMapEntry.9250_from = private unnamed_addr constant [64 x i8] c"Android.Views.Choreographer+IVsyncCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9251_from = private unnamed_addr constant [42 x i8] c"Android.Views.Choreographer, Mono.Android\00", align 1 +@.TypeMapEntry.9252_to = private unnamed_addr constant [27 x i8] c"android/view/Choreographer\00", align 1 +@.TypeMapEntry.9253_from = private unnamed_addr constant [68 x i8] c"Android.Views.ContentCaptures.ContentCaptureCondition, Mono.Android\00", align 1 +@.TypeMapEntry.9254_to = private unnamed_addr constant [52 x i8] c"android/view/contentcapture/ContentCaptureCondition\00", align 1 +@.TypeMapEntry.9255_from = private unnamed_addr constant [74 x i8] c"Android.Views.ContentCaptures.ContentCaptureContext+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9256_to = private unnamed_addr constant [58 x i8] c"android/view/contentcapture/ContentCaptureContext$Builder\00", align 1 +@.TypeMapEntry.9257_from = private unnamed_addr constant [66 x i8] c"Android.Views.ContentCaptures.ContentCaptureContext, Mono.Android\00", align 1 +@.TypeMapEntry.9258_to = private unnamed_addr constant [50 x i8] c"android/view/contentcapture/ContentCaptureContext\00", align 1 +@.TypeMapEntry.9259_from = private unnamed_addr constant [66 x i8] c"Android.Views.ContentCaptures.ContentCaptureManager, Mono.Android\00", align 1 +@.TypeMapEntry.9260_to = private unnamed_addr constant [50 x i8] c"android/view/contentcapture/ContentCaptureManager\00", align 1 +@.TypeMapEntry.9261_from = private unnamed_addr constant [66 x i8] c"Android.Views.ContentCaptures.ContentCaptureSession, Mono.Android\00", align 1 +@.TypeMapEntry.9262_to = private unnamed_addr constant [50 x i8] c"android/view/contentcapture/ContentCaptureSession\00", align 1 +@.TypeMapEntry.9263_from = private unnamed_addr constant [68 x i8] c"Android.Views.ContentCaptures.ContentCaptureSessionId, Mono.Android\00", align 1 +@.TypeMapEntry.9264_to = private unnamed_addr constant [52 x i8] c"android/view/contentcapture/ContentCaptureSessionId\00", align 1 +@.TypeMapEntry.9265_from = private unnamed_addr constant [73 x i8] c"Android.Views.ContentCaptures.ContentCaptureSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9266_from = private unnamed_addr constant [71 x i8] c"Android.Views.ContentCaptures.DataRemovalRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9267_to = private unnamed_addr constant [55 x i8] c"android/view/contentcapture/DataRemovalRequest$Builder\00", align 1 +@.TypeMapEntry.9268_from = private unnamed_addr constant [78 x i8] c"Android.Views.ContentCaptures.DataRemovalRequest+LocusIdRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9269_to = private unnamed_addr constant [62 x i8] c"android/view/contentcapture/DataRemovalRequest$LocusIdRequest\00", align 1 +@.TypeMapEntry.9270_from = private unnamed_addr constant [63 x i8] c"Android.Views.ContentCaptures.DataRemovalRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9271_to = private unnamed_addr constant [47 x i8] c"android/view/contentcapture/DataRemovalRequest\00", align 1 +@.TypeMapEntry.9272_from = private unnamed_addr constant [61 x i8] c"Android.Views.ContentCaptures.DataShareRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9273_to = private unnamed_addr constant [45 x i8] c"android/view/contentcapture/DataShareRequest\00", align 1 +@.TypeMapEntry.9274_from = private unnamed_addr constant [67 x i8] c"Android.Views.ContentCaptures.IDataShareWriteAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.9275_to = private unnamed_addr constant [50 x i8] c"android/view/contentcapture/DataShareWriteAdapter\00", align 1 +@.TypeMapEntry.9276_from = private unnamed_addr constant [74 x i8] c"Android.Views.ContentCaptures.IDataShareWriteAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9277_from = private unnamed_addr constant [48 x i8] c"Android.Views.ContentInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9278_to = private unnamed_addr constant [33 x i8] c"android/view/ContentInfo$Builder\00", align 1 +@.TypeMapEntry.9279_from = private unnamed_addr constant [40 x i8] c"Android.Views.ContentInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9280_to = private unnamed_addr constant [25 x i8] c"android/view/ContentInfo\00", align 1 +@.TypeMapEntry.9281_from = private unnamed_addr constant [48 x i8] c"Android.Views.ContextThemeWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.9282_to = private unnamed_addr constant [33 x i8] c"android/view/ContextThemeWrapper\00", align 1 +@.TypeMapEntry.9283_from = private unnamed_addr constant [52 x i8] c"Android.Views.Display+HdrCapabilities, Mono.Android\00", align 1 +@.TypeMapEntry.9284_to = private unnamed_addr constant [37 x i8] c"android/view/Display$HdrCapabilities\00", align 1 +@.TypeMapEntry.9285_from = private unnamed_addr constant [41 x i8] c"Android.Views.Display+Mode, Mono.Android\00", align 1 +@.TypeMapEntry.9286_to = private unnamed_addr constant [26 x i8] c"android/view/Display$Mode\00", align 1 +@.TypeMapEntry.9287_from = private unnamed_addr constant [36 x i8] c"Android.Views.Display, Mono.Android\00", align 1 +@.TypeMapEntry.9288_to = private unnamed_addr constant [21 x i8] c"android/view/Display\00", align 1 +@.TypeMapEntry.9289_from = private unnamed_addr constant [50 x i8] c"Android.Views.DisplayCutout+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9290_to = private unnamed_addr constant [35 x i8] c"android/view/DisplayCutout$Builder\00", align 1 +@.TypeMapEntry.9291_from = private unnamed_addr constant [42 x i8] c"Android.Views.DisplayCutout, Mono.Android\00", align 1 +@.TypeMapEntry.9292_to = private unnamed_addr constant [27 x i8] c"android/view/DisplayCutout\00", align 1 +@.TypeMapEntry.9293_from = private unnamed_addr constant [52 x i8] c"Android.Views.DisplayHash.DisplayHash, Mono.Android\00", align 1 +@.TypeMapEntry.9294_to = private unnamed_addr constant [37 x i8] c"android/view/displayhash/DisplayHash\00", align 1 +@.TypeMapEntry.9295_from = private unnamed_addr constant [59 x i8] c"Android.Views.DisplayHash.DisplayHashManager, Mono.Android\00", align 1 +@.TypeMapEntry.9296_to = private unnamed_addr constant [44 x i8] c"android/view/displayhash/DisplayHashManager\00", align 1 +@.TypeMapEntry.9297_from = private unnamed_addr constant [66 x i8] c"Android.Views.DisplayHash.DisplayHashResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9298_to = private unnamed_addr constant [65 x i8] c"mono/internal/android/view/displayhash/DisplayHashResultCallback\00", align 1 +@.TypeMapEntry.9299_from = private unnamed_addr constant [67 x i8] c"Android.Views.DisplayHash.IDisplayHashResultCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9300_to = private unnamed_addr constant [51 x i8] c"android/view/displayhash/DisplayHashResultCallback\00", align 1 +@.TypeMapEntry.9301_from = private unnamed_addr constant [74 x i8] c"Android.Views.DisplayHash.IDisplayHashResultCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9302_from = private unnamed_addr constant [60 x i8] c"Android.Views.DisplayHash.VerifiedDisplayHash, Mono.Android\00", align 1 +@.TypeMapEntry.9303_to = private unnamed_addr constant [45 x i8] c"android/view/displayhash/VerifiedDisplayHash\00", align 1 +@.TypeMapEntry.9304_from = private unnamed_addr constant [41 x i8] c"Android.Views.DisplayShape, Mono.Android\00", align 1 +@.TypeMapEntry.9305_to = private unnamed_addr constant [26 x i8] c"android/view/DisplayShape\00", align 1 +@.TypeMapEntry.9306_from = private unnamed_addr constant [51 x i8] c"Android.Views.DragAndDropPermissions, Mono.Android\00", align 1 +@.TypeMapEntry.9307_to = private unnamed_addr constant [36 x i8] c"android/view/DragAndDropPermissions\00", align 1 +@.TypeMapEntry.9308_from = private unnamed_addr constant [38 x i8] c"Android.Views.DragEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9309_to = private unnamed_addr constant [23 x i8] c"android/view/DragEvent\00", align 1 +@.TypeMapEntry.9310_from = private unnamed_addr constant [40 x i8] c"Android.Views.FocusFinder, Mono.Android\00", align 1 +@.TypeMapEntry.9311_to = private unnamed_addr constant [25 x i8] c"android/view/FocusFinder\00", align 1 +@.TypeMapEntry.9312_from = private unnamed_addr constant [41 x i8] c"Android.Views.FrameMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.9313_to = private unnamed_addr constant [26 x i8] c"android/view/FrameMetrics\00", align 1 +@.TypeMapEntry.9314_from = private unnamed_addr constant [39 x i8] c"Android.Views.FrameStats, Mono.Android\00", align 1 +@.TypeMapEntry.9315_to = private unnamed_addr constant [24 x i8] c"android/view/FrameStats\00", align 1 +@.TypeMapEntry.9316_from = private unnamed_addr constant [46 x i8] c"Android.Views.FrameStatsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9317_from = private unnamed_addr constant [68 x i8] c"Android.Views.GestureDetector+IOnContextClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.9318_to = private unnamed_addr constant [52 x i8] c"android/view/GestureDetector$OnContextClickListener\00", align 1 +@.TypeMapEntry.9319_from = private unnamed_addr constant [79 x i8] c"Android.Views.GestureDetector+IOnContextClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9320_to = private unnamed_addr constant [68 x i8] c"mono/android/view/GestureDetector_OnContextClickListenerImplementor\00", align 1 +@.TypeMapEntry.9321_from = private unnamed_addr constant [75 x i8] c"Android.Views.GestureDetector+IOnContextClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9322_from = private unnamed_addr constant [65 x i8] c"Android.Views.GestureDetector+IOnDoubleTapListener, Mono.Android\00", align 1 +@.TypeMapEntry.9323_to = private unnamed_addr constant [49 x i8] c"android/view/GestureDetector$OnDoubleTapListener\00", align 1 +@.TypeMapEntry.9324_from = private unnamed_addr constant [76 x i8] c"Android.Views.GestureDetector+IOnDoubleTapListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9325_to = private unnamed_addr constant [65 x i8] c"mono/android/view/GestureDetector_OnDoubleTapListenerImplementor\00", align 1 +@.TypeMapEntry.9326_from = private unnamed_addr constant [72 x i8] c"Android.Views.GestureDetector+IOnDoubleTapListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9327_from = private unnamed_addr constant [63 x i8] c"Android.Views.GestureDetector+IOnGestureListener, Mono.Android\00", align 1 +@.TypeMapEntry.9328_to = private unnamed_addr constant [47 x i8] c"android/view/GestureDetector$OnGestureListener\00", align 1 +@.TypeMapEntry.9329_from = private unnamed_addr constant [74 x i8] c"Android.Views.GestureDetector+IOnGestureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9330_to = private unnamed_addr constant [63 x i8] c"mono/android/view/GestureDetector_OnGestureListenerImplementor\00", align 1 +@.TypeMapEntry.9331_from = private unnamed_addr constant [70 x i8] c"Android.Views.GestureDetector+IOnGestureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9332_from = private unnamed_addr constant [68 x i8] c"Android.Views.GestureDetector+SimpleOnGestureListener, Mono.Android\00", align 1 +@.TypeMapEntry.9333_to = private unnamed_addr constant [53 x i8] c"android/view/GestureDetector$SimpleOnGestureListener\00", align 1 +@.TypeMapEntry.9334_from = private unnamed_addr constant [44 x i8] c"Android.Views.GestureDetector, Mono.Android\00", align 1 +@.TypeMapEntry.9335_to = private unnamed_addr constant [29 x i8] c"android/view/GestureDetector\00", align 1 +@.TypeMapEntry.9336_from = private unnamed_addr constant [36 x i8] c"Android.Views.Gravity, Mono.Android\00", align 1 +@.TypeMapEntry.9337_to = private unnamed_addr constant [21 x i8] c"android/view/Gravity\00", align 1 +@.TypeMapEntry.9338_from = private unnamed_addr constant [52 x i8] c"Android.Views.HapticFeedbackConstants, Mono.Android\00", align 1 +@.TypeMapEntry.9339_to = private unnamed_addr constant [37 x i8] c"android/view/HapticFeedbackConstants\00", align 1 +@.TypeMapEntry.9340_from = private unnamed_addr constant [90 x i8] c"Android.Views.IAttachedSurfaceControl+IOnBufferTransformHintChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.9341_to = private unnamed_addr constant [73 x i8] c"android/view/AttachedSurfaceControl$OnBufferTransformHintChangedListener\00", align 1 +@.TypeMapEntry.9342_from = private unnamed_addr constant [101 x i8] c"Android.Views.IAttachedSurfaceControl+IOnBufferTransformHintChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9343_to = private unnamed_addr constant [89 x i8] c"mono/android/view/AttachedSurfaceControl_OnBufferTransformHintChangedListenerImplementor\00", align 1 +@.TypeMapEntry.9344_from = private unnamed_addr constant [97 x i8] c"Android.Views.IAttachedSurfaceControl+IOnBufferTransformHintChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9345_from = private unnamed_addr constant [52 x i8] c"Android.Views.IAttachedSurfaceControl, Mono.Android\00", align 1 +@.TypeMapEntry.9346_to = private unnamed_addr constant [36 x i8] c"android/view/AttachedSurfaceControl\00", align 1 +@.TypeMapEntry.9347_from = private unnamed_addr constant [59 x i8] c"Android.Views.IAttachedSurfaceControlInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9348_from = private unnamed_addr constant [51 x i8] c"Android.Views.ICollapsibleActionView, Mono.Android\00", align 1 +@.TypeMapEntry.9349_to = private unnamed_addr constant [35 x i8] c"android/view/CollapsibleActionView\00", align 1 +@.TypeMapEntry.9350_from = private unnamed_addr constant [58 x i8] c"Android.Views.ICollapsibleActionViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9351_from = private unnamed_addr constant [41 x i8] c"Android.Views.IContextMenu, Mono.Android\00", align 1 +@.TypeMapEntry.9352_to = private unnamed_addr constant [25 x i8] c"android/view/ContextMenu\00", align 1 +@.TypeMapEntry.9353_from = private unnamed_addr constant [56 x i8] c"Android.Views.IContextMenuContextMenuInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9354_to = private unnamed_addr constant [41 x i8] c"android/view/ContextMenu$ContextMenuInfo\00", align 1 +@.TypeMapEntry.9355_from = private unnamed_addr constant [63 x i8] c"Android.Views.IContextMenuContextMenuInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9356_from = private unnamed_addr constant [48 x i8] c"Android.Views.IContextMenuInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9357_from = private unnamed_addr constant [34 x i8] c"Android.Views.IMenu, Mono.Android\00", align 1 +@.TypeMapEntry.9358_to = private unnamed_addr constant [18 x i8] c"android/view/Menu\00", align 1 +@.TypeMapEntry.9359_from = private unnamed_addr constant [41 x i8] c"Android.Views.IMenuInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9360_from = private unnamed_addr constant [38 x i8] c"Android.Views.IMenuItem, Mono.Android\00", align 1 +@.TypeMapEntry.9361_to = private unnamed_addr constant [22 x i8] c"android/view/MenuItem\00", align 1 +@.TypeMapEntry.9362_from = private unnamed_addr constant [45 x i8] c"Android.Views.IMenuItemInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9363_from = private unnamed_addr constant [60 x i8] c"Android.Views.IMenuItemOnActionExpandListener, Mono.Android\00", align 1 +@.TypeMapEntry.9364_to = private unnamed_addr constant [45 x i8] c"android/view/MenuItem$OnActionExpandListener\00", align 1 +@.TypeMapEntry.9365_from = private unnamed_addr constant [71 x i8] c"Android.Views.IMenuItemOnActionExpandListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9366_to = private unnamed_addr constant [61 x i8] c"mono/android/view/MenuItem_OnActionExpandListenerImplementor\00", align 1 +@.TypeMapEntry.9367_from = private unnamed_addr constant [67 x i8] c"Android.Views.IMenuItemOnActionExpandListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9368_from = private unnamed_addr constant [61 x i8] c"Android.Views.IMenuItemOnMenuItemClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.9369_to = private unnamed_addr constant [46 x i8] c"android/view/MenuItem$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.9370_from = private unnamed_addr constant [72 x i8] c"Android.Views.IMenuItemOnMenuItemClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9371_to = private unnamed_addr constant [62 x i8] c"mono/android/view/MenuItem_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.9372_from = private unnamed_addr constant [68 x i8] c"Android.Views.IMenuItemOnMenuItemClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9373_from = private unnamed_addr constant [54 x i8] c"Android.Views.IOnReceiveContentListener, Mono.Android\00", align 1 +@.TypeMapEntry.9374_to = private unnamed_addr constant [38 x i8] c"android/view/OnReceiveContentListener\00", align 1 +@.TypeMapEntry.9375_from = private unnamed_addr constant [65 x i8] c"Android.Views.IOnReceiveContentListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9376_to = private unnamed_addr constant [54 x i8] c"mono/android/view/OnReceiveContentListenerImplementor\00", align 1 +@.TypeMapEntry.9377_from = private unnamed_addr constant [61 x i8] c"Android.Views.IOnReceiveContentListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9378_from = private unnamed_addr constant [51 x i8] c"Android.Views.IScrollCaptureCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9379_to = private unnamed_addr constant [35 x i8] c"android/view/ScrollCaptureCallback\00", align 1 +@.TypeMapEntry.9380_from = private unnamed_addr constant [58 x i8] c"Android.Views.IScrollCaptureCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9381_from = private unnamed_addr constant [52 x i8] c"Android.Views.IScrollFeedbackProvider, Mono.Android\00", align 1 +@.TypeMapEntry.9382_to = private unnamed_addr constant [36 x i8] c"android/view/ScrollFeedbackProvider\00", align 1 +@.TypeMapEntry.9383_from = private unnamed_addr constant [59 x i8] c"Android.Views.IScrollFeedbackProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9384_from = private unnamed_addr constant [37 x i8] c"Android.Views.ISubMenu, Mono.Android\00", align 1 +@.TypeMapEntry.9385_to = private unnamed_addr constant [21 x i8] c"android/view/SubMenu\00", align 1 +@.TypeMapEntry.9386_from = private unnamed_addr constant [44 x i8] c"Android.Views.ISubMenuInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9387_from = private unnamed_addr constant [57 x i8] c"Android.Views.ISurfaceControlInputReceiver, Mono.Android\00", align 1 +@.TypeMapEntry.9388_to = private unnamed_addr constant [41 x i8] c"android/view/SurfaceControlInputReceiver\00", align 1 +@.TypeMapEntry.9389_from = private unnamed_addr constant [64 x i8] c"Android.Views.ISurfaceControlInputReceiverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9390_from = private unnamed_addr constant [43 x i8] c"Android.Views.ISurfaceHolder, Mono.Android\00", align 1 +@.TypeMapEntry.9391_to = private unnamed_addr constant [27 x i8] c"android/view/SurfaceHolder\00", align 1 +@.TypeMapEntry.9392_from = private unnamed_addr constant [51 x i8] c"Android.Views.ISurfaceHolderCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9393_to = private unnamed_addr constant [36 x i8] c"android/view/SurfaceHolder$Callback\00", align 1 +@.TypeMapEntry.9394_from = private unnamed_addr constant [52 x i8] c"Android.Views.ISurfaceHolderCallback2, Mono.Android\00", align 1 +@.TypeMapEntry.9395_to = private unnamed_addr constant [37 x i8] c"android/view/SurfaceHolder$Callback2\00", align 1 +@.TypeMapEntry.9396_from = private unnamed_addr constant [59 x i8] c"Android.Views.ISurfaceHolderCallback2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.9397_from = private unnamed_addr constant [58 x i8] c"Android.Views.ISurfaceHolderCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9398_from = private unnamed_addr constant [50 x i8] c"Android.Views.ISurfaceHolderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9399_from = private unnamed_addr constant [41 x i8] c"Android.Views.IViewManager, Mono.Android\00", align 1 +@.TypeMapEntry.9400_to = private unnamed_addr constant [25 x i8] c"android/view/ViewManager\00", align 1 +@.TypeMapEntry.9401_from = private unnamed_addr constant [48 x i8] c"Android.Views.IViewManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9402_from = private unnamed_addr constant [40 x i8] c"Android.Views.IViewParent, Mono.Android\00", align 1 +@.TypeMapEntry.9403_to = private unnamed_addr constant [24 x i8] c"android/view/ViewParent\00", align 1 +@.TypeMapEntry.9404_from = private unnamed_addr constant [47 x i8] c"Android.Views.IViewParentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9405_from = private unnamed_addr constant [66 x i8] c"Android.Views.IWindowInsetsAnimationControlListener, Mono.Android\00", align 1 +@.TypeMapEntry.9406_to = private unnamed_addr constant [50 x i8] c"android/view/WindowInsetsAnimationControlListener\00", align 1 +@.TypeMapEntry.9407_from = private unnamed_addr constant [77 x i8] c"Android.Views.IWindowInsetsAnimationControlListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9408_to = private unnamed_addr constant [66 x i8] c"mono/android/view/WindowInsetsAnimationControlListenerImplementor\00", align 1 +@.TypeMapEntry.9409_from = private unnamed_addr constant [73 x i8] c"Android.Views.IWindowInsetsAnimationControlListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9410_from = private unnamed_addr constant [61 x i8] c"Android.Views.IWindowInsetsAnimationController, Mono.Android\00", align 1 +@.TypeMapEntry.9411_to = private unnamed_addr constant [45 x i8] c"android/view/WindowInsetsAnimationController\00", align 1 +@.TypeMapEntry.9412_from = private unnamed_addr constant [68 x i8] c"Android.Views.IWindowInsetsAnimationControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9413_from = private unnamed_addr constant [89 x i8] c"Android.Views.IWindowInsetsController+IOnControllableInsetsChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.9414_to = private unnamed_addr constant [72 x i8] c"android/view/WindowInsetsController$OnControllableInsetsChangedListener\00", align 1 +@.TypeMapEntry.9415_from = private unnamed_addr constant [100 x i8] c"Android.Views.IWindowInsetsController+IOnControllableInsetsChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9416_to = private unnamed_addr constant [88 x i8] c"mono/android/view/WindowInsetsController_OnControllableInsetsChangedListenerImplementor\00", align 1 +@.TypeMapEntry.9417_from = private unnamed_addr constant [96 x i8] c"Android.Views.IWindowInsetsController+IOnControllableInsetsChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9418_from = private unnamed_addr constant [52 x i8] c"Android.Views.IWindowInsetsController, Mono.Android\00", align 1 +@.TypeMapEntry.9419_to = private unnamed_addr constant [36 x i8] c"android/view/WindowInsetsController\00", align 1 +@.TypeMapEntry.9420_from = private unnamed_addr constant [59 x i8] c"Android.Views.IWindowInsetsControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9421_from = private unnamed_addr constant [43 x i8] c"Android.Views.IWindowManager, Mono.Android\00", align 1 +@.TypeMapEntry.9422_to = private unnamed_addr constant [27 x i8] c"android/view/WindowManager\00", align 1 +@.TypeMapEntry.9423_from = private unnamed_addr constant [50 x i8] c"Android.Views.IWindowManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9424_from = private unnamed_addr constant [45 x i8] c"Android.Views.InflateException, Mono.Android\00", align 1 +@.TypeMapEntry.9425_to = private unnamed_addr constant [30 x i8] c"android/view/InflateException\00", align 1 +@.TypeMapEntry.9426_from = private unnamed_addr constant [52 x i8] c"Android.Views.InputDevice+MotionRange, Mono.Android\00", align 1 +@.TypeMapEntry.9427_to = private unnamed_addr constant [37 x i8] c"android/view/InputDevice$MotionRange\00", align 1 +@.TypeMapEntry.9428_from = private unnamed_addr constant [53 x i8] c"Android.Views.InputDevice+ViewBehavior, Mono.Android\00", align 1 +@.TypeMapEntry.9429_to = private unnamed_addr constant [38 x i8] c"android/view/InputDevice$ViewBehavior\00", align 1 +@.TypeMapEntry.9430_from = private unnamed_addr constant [40 x i8] c"Android.Views.InputDevice, Mono.Android\00", align 1 +@.TypeMapEntry.9431_to = private unnamed_addr constant [25 x i8] c"android/view/InputDevice\00", align 1 +@.TypeMapEntry.9432_from = private unnamed_addr constant [39 x i8] c"Android.Views.InputEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9433_to = private unnamed_addr constant [24 x i8] c"android/view/InputEvent\00", align 1 +@.TypeMapEntry.9434_from = private unnamed_addr constant [46 x i8] c"Android.Views.InputEventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9435_from = private unnamed_addr constant [61 x i8] c"Android.Views.InputMethods.BaseInputConnection, Mono.Android\00", align 1 +@.TypeMapEntry.9436_to = private unnamed_addr constant [45 x i8] c"android/view/inputmethod/BaseInputConnection\00", align 1 +@.TypeMapEntry.9437_from = private unnamed_addr constant [56 x i8] c"Android.Views.InputMethods.CompletionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9438_to = private unnamed_addr constant [40 x i8] c"android/view/inputmethod/CompletionInfo\00", align 1 +@.TypeMapEntry.9439_from = private unnamed_addr constant [56 x i8] c"Android.Views.InputMethods.CorrectionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9440_to = private unnamed_addr constant [40 x i8] c"android/view/inputmethod/CorrectionInfo\00", align 1 +@.TypeMapEntry.9441_from = private unnamed_addr constant [66 x i8] c"Android.Views.InputMethods.CursorAnchorInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9442_to = private unnamed_addr constant [50 x i8] c"android/view/inputmethod/CursorAnchorInfo$Builder\00", align 1 +@.TypeMapEntry.9443_from = private unnamed_addr constant [58 x i8] c"Android.Views.InputMethods.CursorAnchorInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9444_to = private unnamed_addr constant [42 x i8] c"android/view/inputmethod/CursorAnchorInfo\00", align 1 +@.TypeMapEntry.9445_from = private unnamed_addr constant [63 x i8] c"Android.Views.InputMethods.DeleteGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9446_to = private unnamed_addr constant [47 x i8] c"android/view/inputmethod/DeleteGesture$Builder\00", align 1 +@.TypeMapEntry.9447_from = private unnamed_addr constant [55 x i8] c"Android.Views.InputMethods.DeleteGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9448_to = private unnamed_addr constant [39 x i8] c"android/view/inputmethod/DeleteGesture\00", align 1 +@.TypeMapEntry.9449_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.DeleteRangeGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9450_to = private unnamed_addr constant [52 x i8] c"android/view/inputmethod/DeleteRangeGesture$Builder\00", align 1 +@.TypeMapEntry.9451_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.DeleteRangeGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9452_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/DeleteRangeGesture\00", align 1 +@.TypeMapEntry.9453_from = private unnamed_addr constant [66 x i8] c"Android.Views.InputMethods.EditorBoundsInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9454_to = private unnamed_addr constant [50 x i8] c"android/view/inputmethod/EditorBoundsInfo$Builder\00", align 1 +@.TypeMapEntry.9455_from = private unnamed_addr constant [58 x i8] c"Android.Views.InputMethods.EditorBoundsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9456_to = private unnamed_addr constant [42 x i8] c"android/view/inputmethod/EditorBoundsInfo\00", align 1 +@.TypeMapEntry.9457_from = private unnamed_addr constant [52 x i8] c"Android.Views.InputMethods.EditorInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9458_to = private unnamed_addr constant [36 x i8] c"android/view/inputmethod/EditorInfo\00", align 1 +@.TypeMapEntry.9459_from = private unnamed_addr constant [55 x i8] c"Android.Views.InputMethods.ExtractedText, Mono.Android\00", align 1 +@.TypeMapEntry.9460_to = private unnamed_addr constant [39 x i8] c"android/view/inputmethod/ExtractedText\00", align 1 +@.TypeMapEntry.9461_from = private unnamed_addr constant [62 x i8] c"Android.Views.InputMethods.ExtractedTextRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9462_to = private unnamed_addr constant [46 x i8] c"android/view/inputmethod/ExtractedTextRequest\00", align 1 +@.TypeMapEntry.9463_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.HandwritingGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9464_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/HandwritingGesture\00", align 1 +@.TypeMapEntry.9465_from = private unnamed_addr constant [67 x i8] c"Android.Views.InputMethods.HandwritingGestureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9466_from = private unnamed_addr constant [76 x i8] c"Android.Views.InputMethods.IConnectionlessHandwritingCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9467_to = private unnamed_addr constant [59 x i8] c"android/view/inputmethod/ConnectionlessHandwritingCallback\00", align 1 +@.TypeMapEntry.9468_from = private unnamed_addr constant [83 x i8] c"Android.Views.InputMethods.IConnectionlessHandwritingCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9469_from = private unnamed_addr constant [58 x i8] c"Android.Views.InputMethods.IInputConnection, Mono.Android\00", align 1 +@.TypeMapEntry.9470_to = private unnamed_addr constant [41 x i8] c"android/view/inputmethod/InputConnection\00", align 1 +@.TypeMapEntry.9471_from = private unnamed_addr constant [65 x i8] c"Android.Views.InputMethods.IInputConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9472_from = private unnamed_addr constant [54 x i8] c"Android.Views.InputMethods.IInputMethod, Mono.Android\00", align 1 +@.TypeMapEntry.9473_to = private unnamed_addr constant [37 x i8] c"android/view/inputmethod/InputMethod\00", align 1 +@.TypeMapEntry.9474_from = private unnamed_addr constant [61 x i8] c"Android.Views.InputMethods.IInputMethodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9475_from = private unnamed_addr constant [61 x i8] c"Android.Views.InputMethods.IInputMethodSession, Mono.Android\00", align 1 +@.TypeMapEntry.9476_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/InputMethodSession\00", align 1 +@.TypeMapEntry.9477_from = private unnamed_addr constant [69 x i8] c"Android.Views.InputMethods.IInputMethodSessionCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9478_to = private unnamed_addr constant [53 x i8] c"android/view/inputmethod/InputMethod$SessionCallback\00", align 1 +@.TypeMapEntry.9479_from = private unnamed_addr constant [76 x i8] c"Android.Views.InputMethods.IInputMethodSessionCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9480_from = private unnamed_addr constant [74 x i8] c"Android.Views.InputMethods.IInputMethodSessionEventCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9481_to = private unnamed_addr constant [58 x i8] c"android/view/inputmethod/InputMethodSession$EventCallback\00", align 1 +@.TypeMapEntry.9482_from = private unnamed_addr constant [81 x i8] c"Android.Views.InputMethods.IInputMethodSessionEventCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9483_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.IInputMethodSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9484_from = private unnamed_addr constant [58 x i8] c"Android.Views.InputMethods.InlineSuggestion, Mono.Android\00", align 1 +@.TypeMapEntry.9485_to = private unnamed_addr constant [42 x i8] c"android/view/inputmethod/InlineSuggestion\00", align 1 +@.TypeMapEntry.9486_from = private unnamed_addr constant [62 x i8] c"Android.Views.InputMethods.InlineSuggestionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9487_to = private unnamed_addr constant [46 x i8] c"android/view/inputmethod/InlineSuggestionInfo\00", align 1 +@.TypeMapEntry.9488_from = private unnamed_addr constant [74 x i8] c"Android.Views.InputMethods.InlineSuggestionsRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9489_to = private unnamed_addr constant [58 x i8] c"android/view/inputmethod/InlineSuggestionsRequest$Builder\00", align 1 +@.TypeMapEntry.9490_from = private unnamed_addr constant [66 x i8] c"Android.Views.InputMethods.InlineSuggestionsRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9491_to = private unnamed_addr constant [50 x i8] c"android/view/inputmethod/InlineSuggestionsRequest\00", align 1 +@.TypeMapEntry.9492_from = private unnamed_addr constant [67 x i8] c"Android.Views.InputMethods.InlineSuggestionsResponse, Mono.Android\00", align 1 +@.TypeMapEntry.9493_to = private unnamed_addr constant [51 x i8] c"android/view/inputmethod/InlineSuggestionsResponse\00", align 1 +@.TypeMapEntry.9494_from = private unnamed_addr constant [54 x i8] c"Android.Views.InputMethods.InputBinding, Mono.Android\00", align 1 +@.TypeMapEntry.9495_to = private unnamed_addr constant [38 x i8] c"android/view/inputmethod/InputBinding\00", align 1 +@.TypeMapEntry.9496_from = private unnamed_addr constant [57 x i8] c"Android.Views.InputMethods.InputConnection, Mono.Android\00", align 1 +@.TypeMapEntry.9497_to = private unnamed_addr constant [55 x i8] c"mono/internal/android/view/inputmethod/InputConnection\00", align 1 +@.TypeMapEntry.9498_from = private unnamed_addr constant [64 x i8] c"Android.Views.InputMethods.InputConnectionWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.9499_to = private unnamed_addr constant [48 x i8] c"android/view/inputmethod/InputConnectionWrapper\00", align 1 +@.TypeMapEntry.9500_from = private unnamed_addr constant [58 x i8] c"Android.Views.InputMethods.InputContentInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9501_to = private unnamed_addr constant [42 x i8] c"android/view/inputmethod/InputContentInfo\00", align 1 +@.TypeMapEntry.9502_from = private unnamed_addr constant [53 x i8] c"Android.Views.InputMethods.InputMethod, Mono.Android\00", align 1 +@.TypeMapEntry.9503_to = private unnamed_addr constant [51 x i8] c"mono/internal/android/view/inputmethod/InputMethod\00", align 1 +@.TypeMapEntry.9504_from = private unnamed_addr constant [57 x i8] c"Android.Views.InputMethods.InputMethodInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9505_to = private unnamed_addr constant [41 x i8] c"android/view/inputmethod/InputMethodInfo\00", align 1 +@.TypeMapEntry.9506_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.InputMethodManager, Mono.Android\00", align 1 +@.TypeMapEntry.9507_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/InputMethodManager\00", align 1 +@.TypeMapEntry.9508_from = private unnamed_addr constant [86 x i8] c"Android.Views.InputMethods.InputMethodSubtype+InputMethodSubtypeBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.9509_to = private unnamed_addr constant [70 x i8] c"android/view/inputmethod/InputMethodSubtype$InputMethodSubtypeBuilder\00", align 1 +@.TypeMapEntry.9510_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.InputMethodSubtype, Mono.Android\00", align 1 +@.TypeMapEntry.9511_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/InputMethodSubtype\00", align 1 +@.TypeMapEntry.9512_from = private unnamed_addr constant [63 x i8] c"Android.Views.InputMethods.InsertGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9513_to = private unnamed_addr constant [47 x i8] c"android/view/inputmethod/InsertGesture$Builder\00", align 1 +@.TypeMapEntry.9514_from = private unnamed_addr constant [55 x i8] c"Android.Views.InputMethods.InsertGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9515_to = private unnamed_addr constant [39 x i8] c"android/view/inputmethod/InsertGesture\00", align 1 +@.TypeMapEntry.9516_from = private unnamed_addr constant [67 x i8] c"Android.Views.InputMethods.InsertModeGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9517_to = private unnamed_addr constant [51 x i8] c"android/view/inputmethod/InsertModeGesture$Builder\00", align 1 +@.TypeMapEntry.9518_from = private unnamed_addr constant [59 x i8] c"Android.Views.InputMethods.InsertModeGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9519_to = private unnamed_addr constant [43 x i8] c"android/view/inputmethod/InsertModeGesture\00", align 1 +@.TypeMapEntry.9520_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.JoinOrSplitGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9521_to = private unnamed_addr constant [52 x i8] c"android/view/inputmethod/JoinOrSplitGesture$Builder\00", align 1 +@.TypeMapEntry.9522_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.JoinOrSplitGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9523_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/JoinOrSplitGesture\00", align 1 +@.TypeMapEntry.9524_from = private unnamed_addr constant [71 x i8] c"Android.Views.InputMethods.PreviewableHandwritingGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9525_to = private unnamed_addr constant [55 x i8] c"android/view/inputmethod/PreviewableHandwritingGesture\00", align 1 +@.TypeMapEntry.9526_from = private unnamed_addr constant [78 x i8] c"Android.Views.InputMethods.PreviewableHandwritingGestureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9527_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.RemoveSpaceGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9528_to = private unnamed_addr constant [52 x i8] c"android/view/inputmethod/RemoveSpaceGesture$Builder\00", align 1 +@.TypeMapEntry.9529_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.RemoveSpaceGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9530_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/RemoveSpaceGesture\00", align 1 +@.TypeMapEntry.9531_from = private unnamed_addr constant [63 x i8] c"Android.Views.InputMethods.SelectGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9532_to = private unnamed_addr constant [47 x i8] c"android/view/inputmethod/SelectGesture$Builder\00", align 1 +@.TypeMapEntry.9533_from = private unnamed_addr constant [55 x i8] c"Android.Views.InputMethods.SelectGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9534_to = private unnamed_addr constant [39 x i8] c"android/view/inputmethod/SelectGesture\00", align 1 +@.TypeMapEntry.9535_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.SelectRangeGesture+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9536_to = private unnamed_addr constant [52 x i8] c"android/view/inputmethod/SelectRangeGesture$Builder\00", align 1 +@.TypeMapEntry.9537_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.SelectRangeGesture, Mono.Android\00", align 1 +@.TypeMapEntry.9538_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/SelectRangeGesture\00", align 1 +@.TypeMapEntry.9539_from = private unnamed_addr constant [57 x i8] c"Android.Views.InputMethods.SurroundingText, Mono.Android\00", align 1 +@.TypeMapEntry.9540_to = private unnamed_addr constant [41 x i8] c"android/view/inputmethod/SurroundingText\00", align 1 +@.TypeMapEntry.9541_from = private unnamed_addr constant [68 x i8] c"Android.Views.InputMethods.TextAppearanceInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9542_to = private unnamed_addr constant [52 x i8] c"android/view/inputmethod/TextAppearanceInfo$Builder\00", align 1 +@.TypeMapEntry.9543_from = private unnamed_addr constant [60 x i8] c"Android.Views.InputMethods.TextAppearanceInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9544_to = private unnamed_addr constant [44 x i8] c"android/view/inputmethod/TextAppearanceInfo\00", align 1 +@.TypeMapEntry.9545_from = private unnamed_addr constant [63 x i8] c"Android.Views.InputMethods.TextAttribute+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9546_to = private unnamed_addr constant [47 x i8] c"android/view/inputmethod/TextAttribute$Builder\00", align 1 +@.TypeMapEntry.9547_from = private unnamed_addr constant [55 x i8] c"Android.Views.InputMethods.TextAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.9548_to = private unnamed_addr constant [39 x i8] c"android/view/inputmethod/TextAttribute\00", align 1 +@.TypeMapEntry.9549_from = private unnamed_addr constant [64 x i8] c"Android.Views.InputMethods.TextBoundsInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9550_to = private unnamed_addr constant [48 x i8] c"android/view/inputmethod/TextBoundsInfo$Builder\00", align 1 +@.TypeMapEntry.9551_from = private unnamed_addr constant [56 x i8] c"Android.Views.InputMethods.TextBoundsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9552_to = private unnamed_addr constant [40 x i8] c"android/view/inputmethod/TextBoundsInfo\00", align 1 +@.TypeMapEntry.9553_from = private unnamed_addr constant [62 x i8] c"Android.Views.InputMethods.TextBoundsInfoResult, Mono.Android\00", align 1 +@.TypeMapEntry.9554_to = private unnamed_addr constant [46 x i8] c"android/view/inputmethod/TextBoundsInfoResult\00", align 1 +@.TypeMapEntry.9555_from = private unnamed_addr constant [54 x i8] c"Android.Views.InputMethods.TextSnapshot, Mono.Android\00", align 1 +@.TypeMapEntry.9556_to = private unnamed_addr constant [38 x i8] c"android/view/inputmethod/TextSnapshot\00", align 1 +@.TypeMapEntry.9557_from = private unnamed_addr constant [49 x i8] c"Android.Views.InputQueue+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.9558_to = private unnamed_addr constant [33 x i8] c"android/view/InputQueue$Callback\00", align 1 +@.TypeMapEntry.9559_from = private unnamed_addr constant [56 x i8] c"Android.Views.InputQueue+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9560_from = private unnamed_addr constant [39 x i8] c"Android.Views.InputQueue, Mono.Android\00", align 1 +@.TypeMapEntry.9561_to = private unnamed_addr constant [24 x i8] c"android/view/InputQueue\00", align 1 +@.TypeMapEntry.9562_from = private unnamed_addr constant [60 x i8] c"Android.Views.Inspectors.IInspectionCompanion, Mono.Android\00", align 1 +@.TypeMapEntry.9563_to = private unnamed_addr constant [43 x i8] c"android/view/inspector/InspectionCompanion\00", align 1 +@.TypeMapEntry.9564_from = private unnamed_addr constant [67 x i8] c"Android.Views.Inspectors.IInspectionCompanionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9565_from = private unnamed_addr constant [68 x i8] c"Android.Views.Inspectors.IInspectionCompanionProvider, Mono.Android\00", align 1 +@.TypeMapEntry.9566_to = private unnamed_addr constant [51 x i8] c"android/view/inspector/InspectionCompanionProvider\00", align 1 +@.TypeMapEntry.9567_from = private unnamed_addr constant [75 x i8] c"Android.Views.Inspectors.IInspectionCompanionProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9568_from = private unnamed_addr constant [55 x i8] c"Android.Views.Inspectors.IPropertyMapper, Mono.Android\00", align 1 +@.TypeMapEntry.9569_to = private unnamed_addr constant [38 x i8] c"android/view/inspector/PropertyMapper\00", align 1 +@.TypeMapEntry.9570_from = private unnamed_addr constant [62 x i8] c"Android.Views.Inspectors.IPropertyMapperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9571_from = private unnamed_addr constant [55 x i8] c"Android.Views.Inspectors.IPropertyReader, Mono.Android\00", align 1 +@.TypeMapEntry.9572_to = private unnamed_addr constant [38 x i8] c"android/view/inspector/PropertyReader\00", align 1 +@.TypeMapEntry.9573_from = private unnamed_addr constant [62 x i8] c"Android.Views.Inspectors.IPropertyReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9574_from = private unnamed_addr constant [92 x i8] c"Android.Views.Inspectors.InspectionCompanionUninitializedPropertyMapException, Mono.Android\00", align 1 +@.TypeMapEntry.9575_to = private unnamed_addr constant [77 x i8] c"android/view/inspector/InspectionCompanion$UninitializedPropertyMapException\00", align 1 +@.TypeMapEntry.9576_from = private unnamed_addr constant [54 x i8] c"Android.Views.Inspectors.IntFlagMapping, Mono.Android\00", align 1 +@.TypeMapEntry.9577_to = private unnamed_addr constant [38 x i8] c"android/view/inspector/IntFlagMapping\00", align 1 +@.TypeMapEntry.9578_from = private unnamed_addr constant [79 x i8] c"Android.Views.Inspectors.PropertyMapperPropertyConflictException, Mono.Android\00", align 1 +@.TypeMapEntry.9579_to = private unnamed_addr constant [64 x i8] c"android/view/inspector/PropertyMapper$PropertyConflictException\00", align 1 +@.TypeMapEntry.9580_from = private unnamed_addr constant [83 x i8] c"Android.Views.Inspectors.PropertyReaderPropertyTypeMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.9581_to = private unnamed_addr constant [68 x i8] c"android/view/inspector/PropertyReader$PropertyTypeMismatchException\00", align 1 +@.TypeMapEntry.9582_from = private unnamed_addr constant [73 x i8] c"Android.Views.Inspectors.StaticInspectionCompanionProvider, Mono.Android\00", align 1 +@.TypeMapEntry.9583_to = private unnamed_addr constant [57 x i8] c"android/view/inspector/StaticInspectionCompanionProvider\00", align 1 +@.TypeMapEntry.9584_from = private unnamed_addr constant [55 x i8] c"Android.Views.Inspectors.WindowInspector, Mono.Android\00", align 1 +@.TypeMapEntry.9585_to = private unnamed_addr constant [39 x i8] c"android/view/inspector/WindowInspector\00", align 1 +@.TypeMapEntry.9586_from = private unnamed_addr constant [52 x i8] c"Android.Views.KeyCharacterMap+KeyData, Mono.Android\00", align 1 +@.TypeMapEntry.9587_to = private unnamed_addr constant [37 x i8] c"android/view/KeyCharacterMap$KeyData\00", align 1 +@.TypeMapEntry.9588_from = private unnamed_addr constant [65 x i8] c"Android.Views.KeyCharacterMap+UnavailableException, Mono.Android\00", align 1 +@.TypeMapEntry.9589_to = private unnamed_addr constant [50 x i8] c"android/view/KeyCharacterMap$UnavailableException\00", align 1 +@.TypeMapEntry.9590_from = private unnamed_addr constant [44 x i8] c"Android.Views.KeyCharacterMap, Mono.Android\00", align 1 +@.TypeMapEntry.9591_to = private unnamed_addr constant [29 x i8] c"android/view/KeyCharacterMap\00", align 1 +@.TypeMapEntry.9592_from = private unnamed_addr constant [53 x i8] c"Android.Views.KeyEvent+DispatcherState, Mono.Android\00", align 1 +@.TypeMapEntry.9593_to = private unnamed_addr constant [38 x i8] c"android/view/KeyEvent$DispatcherState\00", align 1 +@.TypeMapEntry.9594_from = private unnamed_addr constant [47 x i8] c"Android.Views.KeyEvent+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.9595_to = private unnamed_addr constant [31 x i8] c"android/view/KeyEvent$Callback\00", align 1 +@.TypeMapEntry.9596_from = private unnamed_addr constant [54 x i8] c"Android.Views.KeyEvent+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9597_from = private unnamed_addr constant [37 x i8] c"Android.Views.KeyEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9598_to = private unnamed_addr constant [22 x i8] c"android/view/KeyEvent\00", align 1 +@.TypeMapEntry.9599_from = private unnamed_addr constant [50 x i8] c"Android.Views.KeyboardShortcutGroup, Mono.Android\00", align 1 +@.TypeMapEntry.9600_to = private unnamed_addr constant [35 x i8] c"android/view/KeyboardShortcutGroup\00", align 1 +@.TypeMapEntry.9601_from = private unnamed_addr constant [49 x i8] c"Android.Views.KeyboardShortcutInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9602_to = private unnamed_addr constant [34 x i8] c"android/view/KeyboardShortcutInfo\00", align 1 +@.TypeMapEntry.9603_from = private unnamed_addr constant [52 x i8] c"Android.Views.LayoutInflater+IFactory, Mono.Android\00", align 1 +@.TypeMapEntry.9604_to = private unnamed_addr constant [36 x i8] c"android/view/LayoutInflater$Factory\00", align 1 +@.TypeMapEntry.9605_from = private unnamed_addr constant [53 x i8] c"Android.Views.LayoutInflater+IFactory2, Mono.Android\00", align 1 +@.TypeMapEntry.9606_to = private unnamed_addr constant [37 x i8] c"android/view/LayoutInflater$Factory2\00", align 1 +@.TypeMapEntry.9607_from = private unnamed_addr constant [60 x i8] c"Android.Views.LayoutInflater+IFactory2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.9608_from = private unnamed_addr constant [59 x i8] c"Android.Views.LayoutInflater+IFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9609_from = private unnamed_addr constant [51 x i8] c"Android.Views.LayoutInflater+IFilter, Mono.Android\00", align 1 +@.TypeMapEntry.9610_to = private unnamed_addr constant [35 x i8] c"android/view/LayoutInflater$Filter\00", align 1 +@.TypeMapEntry.9611_from = private unnamed_addr constant [58 x i8] c"Android.Views.LayoutInflater+IFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9612_from = private unnamed_addr constant [43 x i8] c"Android.Views.LayoutInflater, Mono.Android\00", align 1 +@.TypeMapEntry.9613_to = private unnamed_addr constant [28 x i8] c"android/view/LayoutInflater\00", align 1 +@.TypeMapEntry.9614_from = private unnamed_addr constant [50 x i8] c"Android.Views.LayoutInflaterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9615_from = private unnamed_addr constant [33 x i8] c"Android.Views.Menu, Mono.Android\00", align 1 +@.TypeMapEntry.9616_to = private unnamed_addr constant [32 x i8] c"mono/internal/android/view/Menu\00", align 1 +@.TypeMapEntry.9617_from = private unnamed_addr constant [41 x i8] c"Android.Views.MenuInflater, Mono.Android\00", align 1 +@.TypeMapEntry.9618_to = private unnamed_addr constant [26 x i8] c"android/view/MenuInflater\00", align 1 +@.TypeMapEntry.9619_from = private unnamed_addr constant [54 x i8] c"Android.Views.MotionEvent+PointerCoords, Mono.Android\00", align 1 +@.TypeMapEntry.9620_to = private unnamed_addr constant [39 x i8] c"android/view/MotionEvent$PointerCoords\00", align 1 +@.TypeMapEntry.9621_from = private unnamed_addr constant [58 x i8] c"Android.Views.MotionEvent+PointerProperties, Mono.Android\00", align 1 +@.TypeMapEntry.9622_to = private unnamed_addr constant [43 x i8] c"android/view/MotionEvent$PointerProperties\00", align 1 +@.TypeMapEntry.9623_from = private unnamed_addr constant [40 x i8] c"Android.Views.MotionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9624_to = private unnamed_addr constant [25 x i8] c"android/view/MotionEvent\00", align 1 +@.TypeMapEntry.9625_from = private unnamed_addr constant [44 x i8] c"Android.Views.MotionPredictor, Mono.Android\00", align 1 +@.TypeMapEntry.9626_to = private unnamed_addr constant [29 x i8] c"android/view/MotionPredictor\00", align 1 +@.TypeMapEntry.9627_from = private unnamed_addr constant [53 x i8] c"Android.Views.OrientationEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.9628_to = private unnamed_addr constant [38 x i8] c"android/view/OrientationEventListener\00", align 1 +@.TypeMapEntry.9629_from = private unnamed_addr constant [60 x i8] c"Android.Views.OrientationEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9630_from = private unnamed_addr constant [48 x i8] c"Android.Views.OrientationListener, Mono.Android\00", align 1 +@.TypeMapEntry.9631_to = private unnamed_addr constant [33 x i8] c"android/view/OrientationListener\00", align 1 +@.TypeMapEntry.9632_from = private unnamed_addr constant [55 x i8] c"Android.Views.OrientationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9633_from = private unnamed_addr constant [67 x i8] c"Android.Views.PixelCopy+IOnPixelCopyFinishedListener, Mono.Android\00", align 1 +@.TypeMapEntry.9634_to = private unnamed_addr constant [51 x i8] c"android/view/PixelCopy$OnPixelCopyFinishedListener\00", align 1 +@.TypeMapEntry.9635_from = private unnamed_addr constant [78 x i8] c"Android.Views.PixelCopy+IOnPixelCopyFinishedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9636_to = private unnamed_addr constant [67 x i8] c"mono/android/view/PixelCopy_OnPixelCopyFinishedListenerImplementor\00", align 1 +@.TypeMapEntry.9637_from = private unnamed_addr constant [74 x i8] c"Android.Views.PixelCopy+IOnPixelCopyFinishedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9638_from = private unnamed_addr constant [63 x i8] c"Android.Views.PixelCopy+PixelCopyRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9639_to = private unnamed_addr constant [39 x i8] c"android/view/PixelCopy$Request$Builder\00", align 1 +@.TypeMapEntry.9640_from = private unnamed_addr constant [55 x i8] c"Android.Views.PixelCopy+PixelCopyRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9641_to = private unnamed_addr constant [31 x i8] c"android/view/PixelCopy$Request\00", align 1 +@.TypeMapEntry.9642_from = private unnamed_addr constant [45 x i8] c"Android.Views.PixelCopy+Result, Mono.Android\00", align 1 +@.TypeMapEntry.9643_to = private unnamed_addr constant [30 x i8] c"android/view/PixelCopy$Result\00", align 1 +@.TypeMapEntry.9644_from = private unnamed_addr constant [38 x i8] c"Android.Views.PixelCopy, Mono.Android\00", align 1 +@.TypeMapEntry.9645_to = private unnamed_addr constant [23 x i8] c"android/view/PixelCopy\00", align 1 +@.TypeMapEntry.9646_from = private unnamed_addr constant [40 x i8] c"Android.Views.PointerIcon, Mono.Android\00", align 1 +@.TypeMapEntry.9647_to = private unnamed_addr constant [25 x i8] c"android/view/PointerIcon\00", align 1 +@.TypeMapEntry.9648_from = private unnamed_addr constant [42 x i8] c"Android.Views.RoundedCorner, Mono.Android\00", align 1 +@.TypeMapEntry.9649_to = private unnamed_addr constant [27 x i8] c"android/view/RoundedCorner\00", align 1 +@.TypeMapEntry.9650_from = private unnamed_addr constant [73 x i8] c"Android.Views.ScaleGestureDetector+IOnScaleGestureListener, Mono.Android\00", align 1 +@.TypeMapEntry.9651_to = private unnamed_addr constant [57 x i8] c"android/view/ScaleGestureDetector$OnScaleGestureListener\00", align 1 +@.TypeMapEntry.9652_from = private unnamed_addr constant [84 x i8] c"Android.Views.ScaleGestureDetector+IOnScaleGestureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9653_to = private unnamed_addr constant [73 x i8] c"mono/android/view/ScaleGestureDetector_OnScaleGestureListenerImplementor\00", align 1 +@.TypeMapEntry.9654_from = private unnamed_addr constant [80 x i8] c"Android.Views.ScaleGestureDetector+IOnScaleGestureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9655_from = private unnamed_addr constant [78 x i8] c"Android.Views.ScaleGestureDetector+SimpleOnScaleGestureListener, Mono.Android\00", align 1 +@.TypeMapEntry.9656_to = private unnamed_addr constant [63 x i8] c"android/view/ScaleGestureDetector$SimpleOnScaleGestureListener\00", align 1 +@.TypeMapEntry.9657_from = private unnamed_addr constant [49 x i8] c"Android.Views.ScaleGestureDetector, Mono.Android\00", align 1 +@.TypeMapEntry.9658_to = private unnamed_addr constant [34 x i8] c"android/view/ScaleGestureDetector\00", align 1 +@.TypeMapEntry.9659_from = private unnamed_addr constant [49 x i8] c"Android.Views.ScrollCaptureSession, Mono.Android\00", align 1 +@.TypeMapEntry.9660_to = private unnamed_addr constant [34 x i8] c"android/view/ScrollCaptureSession\00", align 1 +@.TypeMapEntry.9661_from = private unnamed_addr constant [48 x i8] c"Android.Views.ScrollCaptureTarget, Mono.Android\00", align 1 +@.TypeMapEntry.9662_to = private unnamed_addr constant [33 x i8] c"android/view/ScrollCaptureTarget\00", align 1 +@.TypeMapEntry.9663_from = private unnamed_addr constant [40 x i8] c"Android.Views.SearchEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9664_to = private unnamed_addr constant [25 x i8] c"android/view/SearchEvent\00", align 1 +@.TypeMapEntry.9665_from = private unnamed_addr constant [49 x i8] c"Android.Views.SoundEffectConstants, Mono.Android\00", align 1 +@.TypeMapEntry.9666_to = private unnamed_addr constant [34 x i8] c"android/view/SoundEffectConstants\00", align 1 +@.TypeMapEntry.9667_from = private unnamed_addr constant [60 x i8] c"Android.Views.Surface+OutOfResourcesException, Mono.Android\00", align 1 +@.TypeMapEntry.9668_to = private unnamed_addr constant [45 x i8] c"android/view/Surface$OutOfResourcesException\00", align 1 +@.TypeMapEntry.9669_from = private unnamed_addr constant [36 x i8] c"Android.Views.Surface, Mono.Android\00", align 1 +@.TypeMapEntry.9670_to = private unnamed_addr constant [21 x i8] c"android/view/Surface\00", align 1 +@.TypeMapEntry.9671_from = private unnamed_addr constant [51 x i8] c"Android.Views.SurfaceControl+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9672_to = private unnamed_addr constant [36 x i8] c"android/view/SurfaceControl$Builder\00", align 1 +@.TypeMapEntry.9673_from = private unnamed_addr constant [73 x i8] c"Android.Views.SurfaceControl+ITransactionCommittedListener, Mono.Android\00", align 1 +@.TypeMapEntry.9674_to = private unnamed_addr constant [57 x i8] c"android/view/SurfaceControl$TransactionCommittedListener\00", align 1 +@.TypeMapEntry.9675_from = private unnamed_addr constant [84 x i8] c"Android.Views.SurfaceControl+ITransactionCommittedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9676_to = private unnamed_addr constant [73 x i8] c"mono/android/view/SurfaceControl_TransactionCommittedListenerImplementor\00", align 1 +@.TypeMapEntry.9677_from = private unnamed_addr constant [80 x i8] c"Android.Views.SurfaceControl+ITransactionCommittedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9678_from = private unnamed_addr constant [55 x i8] c"Android.Views.SurfaceControl+Transaction, Mono.Android\00", align 1 +@.TypeMapEntry.9679_to = private unnamed_addr constant [40 x i8] c"android/view/SurfaceControl$Transaction\00", align 1 +@.TypeMapEntry.9680_from = private unnamed_addr constant [60 x i8] c"Android.Views.SurfaceControl+TransactionStats, Mono.Android\00", align 1 +@.TypeMapEntry.9681_to = private unnamed_addr constant [45 x i8] c"android/view/SurfaceControl$TransactionStats\00", align 1 +@.TypeMapEntry.9682_from = private unnamed_addr constant [73 x i8] c"Android.Views.SurfaceControl+TrustedPresentationThresholds, Mono.Android\00", align 1 +@.TypeMapEntry.9683_to = private unnamed_addr constant [58 x i8] c"android/view/SurfaceControl$TrustedPresentationThresholds\00", align 1 +@.TypeMapEntry.9684_from = private unnamed_addr constant [43 x i8] c"Android.Views.SurfaceControl, Mono.Android\00", align 1 +@.TypeMapEntry.9685_to = private unnamed_addr constant [28 x i8] c"android/view/SurfaceControl\00", align 1 +@.TypeMapEntry.9686_from = private unnamed_addr constant [66 x i8] c"Android.Views.SurfaceControlViewHost+SurfacePackage, Mono.Android\00", align 1 +@.TypeMapEntry.9687_to = private unnamed_addr constant [51 x i8] c"android/view/SurfaceControlViewHost$SurfacePackage\00", align 1 +@.TypeMapEntry.9688_from = private unnamed_addr constant [51 x i8] c"Android.Views.SurfaceControlViewHost, Mono.Android\00", align 1 +@.TypeMapEntry.9689_to = private unnamed_addr constant [36 x i8] c"android/view/SurfaceControlViewHost\00", align 1 +@.TypeMapEntry.9690_from = private unnamed_addr constant [65 x i8] c"Android.Views.SurfaceHolderBadSurfaceTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.9691_to = private unnamed_addr constant [51 x i8] c"android/view/SurfaceHolder$BadSurfaceTypeException\00", align 1 +@.TypeMapEntry.9692_from = private unnamed_addr constant [40 x i8] c"Android.Views.SurfaceView, Mono.Android\00", align 1 +@.TypeMapEntry.9693_to = private unnamed_addr constant [25 x i8] c"android/view/SurfaceView\00", align 1 +@.TypeMapEntry.9694_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextClassifiers.ConversationAction+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9695_to = private unnamed_addr constant [55 x i8] c"android/view/textclassifier/ConversationAction$Builder\00", align 1 +@.TypeMapEntry.9696_from = private unnamed_addr constant [63 x i8] c"Android.Views.TextClassifiers.ConversationAction, Mono.Android\00", align 1 +@.TypeMapEntry.9697_to = private unnamed_addr constant [47 x i8] c"android/view/textclassifier/ConversationAction\00", align 1 +@.TypeMapEntry.9698_from = private unnamed_addr constant [80 x i8] c"Android.Views.TextClassifiers.ConversationActions+Message+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9699_to = private unnamed_addr constant [64 x i8] c"android/view/textclassifier/ConversationActions$Message$Builder\00", align 1 +@.TypeMapEntry.9700_from = private unnamed_addr constant [72 x i8] c"Android.Views.TextClassifiers.ConversationActions+Message, Mono.Android\00", align 1 +@.TypeMapEntry.9701_to = private unnamed_addr constant [56 x i8] c"android/view/textclassifier/ConversationActions$Message\00", align 1 +@.TypeMapEntry.9702_from = private unnamed_addr constant [80 x i8] c"Android.Views.TextClassifiers.ConversationActions+Request+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9703_to = private unnamed_addr constant [64 x i8] c"android/view/textclassifier/ConversationActions$Request$Builder\00", align 1 +@.TypeMapEntry.9704_from = private unnamed_addr constant [72 x i8] c"Android.Views.TextClassifiers.ConversationActions+Request, Mono.Android\00", align 1 +@.TypeMapEntry.9705_to = private unnamed_addr constant [56 x i8] c"android/view/textclassifier/ConversationActions$Request\00", align 1 +@.TypeMapEntry.9706_from = private unnamed_addr constant [64 x i8] c"Android.Views.TextClassifiers.ConversationActions, Mono.Android\00", align 1 +@.TypeMapEntry.9707_to = private unnamed_addr constant [48 x i8] c"android/view/textclassifier/ConversationActions\00", align 1 +@.TypeMapEntry.9708_from = private unnamed_addr constant [78 x i8] c"Android.Views.TextClassifiers.ITextClassificationSessionFactory, Mono.Android\00", align 1 +@.TypeMapEntry.9709_to = private unnamed_addr constant [61 x i8] c"android/view/textclassifier/TextClassificationSessionFactory\00", align 1 +@.TypeMapEntry.9710_from = private unnamed_addr constant [85 x i8] c"Android.Views.TextClassifiers.ITextClassificationSessionFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9711_from = private unnamed_addr constant [60 x i8] c"Android.Views.TextClassifiers.ITextClassifier, Mono.Android\00", align 1 +@.TypeMapEntry.9712_to = private unnamed_addr constant [43 x i8] c"android/view/textclassifier/TextClassifier\00", align 1 +@.TypeMapEntry.9713_from = private unnamed_addr constant [67 x i8] c"Android.Views.TextClassifiers.ITextClassifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9714_from = private unnamed_addr constant [59 x i8] c"Android.Views.TextClassifiers.SelectionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9715_to = private unnamed_addr constant [43 x i8] c"android/view/textclassifier/SelectionEvent\00", align 1 +@.TypeMapEntry.9716_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextClassifiers.TextClassification+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9717_to = private unnamed_addr constant [55 x i8] c"android/view/textclassifier/TextClassification$Builder\00", align 1 +@.TypeMapEntry.9718_from = private unnamed_addr constant [79 x i8] c"Android.Views.TextClassifiers.TextClassification+Request+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9719_to = private unnamed_addr constant [63 x i8] c"android/view/textclassifier/TextClassification$Request$Builder\00", align 1 +@.TypeMapEntry.9720_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextClassifiers.TextClassification+Request, Mono.Android\00", align 1 +@.TypeMapEntry.9721_to = private unnamed_addr constant [55 x i8] c"android/view/textclassifier/TextClassification$Request\00", align 1 +@.TypeMapEntry.9722_from = private unnamed_addr constant [63 x i8] c"Android.Views.TextClassifiers.TextClassification, Mono.Android\00", align 1 +@.TypeMapEntry.9723_to = private unnamed_addr constant [47 x i8] c"android/view/textclassifier/TextClassification\00", align 1 +@.TypeMapEntry.9724_from = private unnamed_addr constant [78 x i8] c"Android.Views.TextClassifiers.TextClassificationContext+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9725_to = private unnamed_addr constant [62 x i8] c"android/view/textclassifier/TextClassificationContext$Builder\00", align 1 +@.TypeMapEntry.9726_from = private unnamed_addr constant [70 x i8] c"Android.Views.TextClassifiers.TextClassificationContext, Mono.Android\00", align 1 +@.TypeMapEntry.9727_to = private unnamed_addr constant [54 x i8] c"android/view/textclassifier/TextClassificationContext\00", align 1 +@.TypeMapEntry.9728_from = private unnamed_addr constant [70 x i8] c"Android.Views.TextClassifiers.TextClassificationManager, Mono.Android\00", align 1 +@.TypeMapEntry.9729_to = private unnamed_addr constant [54 x i8] c"android/view/textclassifier/TextClassificationManager\00", align 1 +@.TypeMapEntry.9730_from = private unnamed_addr constant [72 x i8] c"Android.Views.TextClassifiers.TextClassificationSessionId, Mono.Android\00", align 1 +@.TypeMapEntry.9731_to = private unnamed_addr constant [56 x i8] c"android/view/textclassifier/TextClassificationSessionId\00", align 1 +@.TypeMapEntry.9732_from = private unnamed_addr constant [59 x i8] c"Android.Views.TextClassifiers.TextClassifier, Mono.Android\00", align 1 +@.TypeMapEntry.9733_to = private unnamed_addr constant [57 x i8] c"mono/internal/android/view/textclassifier/TextClassifier\00", align 1 +@.TypeMapEntry.9734_from = private unnamed_addr constant [79 x i8] c"Android.Views.TextClassifiers.TextClassifierEntityConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9735_to = private unnamed_addr constant [64 x i8] c"android/view/textclassifier/TextClassifier$EntityConfig$Builder\00", align 1 +@.TypeMapEntry.9736_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextClassifiers.TextClassifierEntityConfig, Mono.Android\00", align 1 +@.TypeMapEntry.9737_to = private unnamed_addr constant [56 x i8] c"android/view/textclassifier/TextClassifier$EntityConfig\00", align 1 +@.TypeMapEntry.9738_from = private unnamed_addr constant [72 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9739_to = private unnamed_addr constant [56 x i8] c"android/view/textclassifier/TextClassifierEvent$Builder\00", align 1 +@.TypeMapEntry.9740_from = private unnamed_addr constant [79 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+BuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9741_from = private unnamed_addr constant [97 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+ConversationActionsEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9742_to = private unnamed_addr constant [81 x i8] c"android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent$Builder\00", align 1 +@.TypeMapEntry.9743_from = private unnamed_addr constant [89 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+ConversationActionsEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9744_to = private unnamed_addr constant [73 x i8] c"android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent\00", align 1 +@.TypeMapEntry.9745_from = private unnamed_addr constant [95 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+LanguageDetectionEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9746_to = private unnamed_addr constant [79 x i8] c"android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent$Builder\00", align 1 +@.TypeMapEntry.9747_from = private unnamed_addr constant [87 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+LanguageDetectionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9748_to = private unnamed_addr constant [71 x i8] c"android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent\00", align 1 +@.TypeMapEntry.9749_from = private unnamed_addr constant [89 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+TextLinkifyEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9750_to = private unnamed_addr constant [73 x i8] c"android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent$Builder\00", align 1 +@.TypeMapEntry.9751_from = private unnamed_addr constant [81 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+TextLinkifyEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9752_to = private unnamed_addr constant [65 x i8] c"android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent\00", align 1 +@.TypeMapEntry.9753_from = private unnamed_addr constant [91 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+TextSelectionEvent+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9754_to = private unnamed_addr constant [75 x i8] c"android/view/textclassifier/TextClassifierEvent$TextSelectionEvent$Builder\00", align 1 +@.TypeMapEntry.9755_from = private unnamed_addr constant [83 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent+TextSelectionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9756_to = private unnamed_addr constant [67 x i8] c"android/view/textclassifier/TextClassifierEvent$TextSelectionEvent\00", align 1 +@.TypeMapEntry.9757_from = private unnamed_addr constant [64 x i8] c"Android.Views.TextClassifiers.TextClassifierEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9758_to = private unnamed_addr constant [48 x i8] c"android/view/textclassifier/TextClassifierEvent\00", align 1 +@.TypeMapEntry.9759_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextClassifiers.TextClassifierEventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9760_from = private unnamed_addr constant [65 x i8] c"Android.Views.TextClassifiers.TextLanguage+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9761_to = private unnamed_addr constant [49 x i8] c"android/view/textclassifier/TextLanguage$Builder\00", align 1 +@.TypeMapEntry.9762_from = private unnamed_addr constant [73 x i8] c"Android.Views.TextClassifiers.TextLanguage+Request+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9763_to = private unnamed_addr constant [57 x i8] c"android/view/textclassifier/TextLanguage$Request$Builder\00", align 1 +@.TypeMapEntry.9764_from = private unnamed_addr constant [65 x i8] c"Android.Views.TextClassifiers.TextLanguage+Request, Mono.Android\00", align 1 +@.TypeMapEntry.9765_to = private unnamed_addr constant [49 x i8] c"android/view/textclassifier/TextLanguage$Request\00", align 1 +@.TypeMapEntry.9766_from = private unnamed_addr constant [57 x i8] c"Android.Views.TextClassifiers.TextLanguage, Mono.Android\00", align 1 +@.TypeMapEntry.9767_to = private unnamed_addr constant [41 x i8] c"android/view/textclassifier/TextLanguage\00", align 1 +@.TypeMapEntry.9768_from = private unnamed_addr constant [62 x i8] c"Android.Views.TextClassifiers.TextLinks+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9769_to = private unnamed_addr constant [46 x i8] c"android/view/textclassifier/TextLinks$Builder\00", align 1 +@.TypeMapEntry.9770_from = private unnamed_addr constant [70 x i8] c"Android.Views.TextClassifiers.TextLinks+Request+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9771_to = private unnamed_addr constant [54 x i8] c"android/view/textclassifier/TextLinks$Request$Builder\00", align 1 +@.TypeMapEntry.9772_from = private unnamed_addr constant [62 x i8] c"Android.Views.TextClassifiers.TextLinks+Request, Mono.Android\00", align 1 +@.TypeMapEntry.9773_to = private unnamed_addr constant [46 x i8] c"android/view/textclassifier/TextLinks$Request\00", align 1 +@.TypeMapEntry.9774_from = private unnamed_addr constant [63 x i8] c"Android.Views.TextClassifiers.TextLinks+TextLink, Mono.Android\00", align 1 +@.TypeMapEntry.9775_to = private unnamed_addr constant [47 x i8] c"android/view/textclassifier/TextLinks$TextLink\00", align 1 +@.TypeMapEntry.9776_from = private unnamed_addr constant [67 x i8] c"Android.Views.TextClassifiers.TextLinks+TextLinkSpan, Mono.Android\00", align 1 +@.TypeMapEntry.9777_to = private unnamed_addr constant [51 x i8] c"android/view/textclassifier/TextLinks$TextLinkSpan\00", align 1 +@.TypeMapEntry.9778_from = private unnamed_addr constant [54 x i8] c"Android.Views.TextClassifiers.TextLinks, Mono.Android\00", align 1 +@.TypeMapEntry.9779_to = private unnamed_addr constant [38 x i8] c"android/view/textclassifier/TextLinks\00", align 1 +@.TypeMapEntry.9780_from = private unnamed_addr constant [66 x i8] c"Android.Views.TextClassifiers.TextSelection+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9781_to = private unnamed_addr constant [50 x i8] c"android/view/textclassifier/TextSelection$Builder\00", align 1 +@.TypeMapEntry.9782_from = private unnamed_addr constant [74 x i8] c"Android.Views.TextClassifiers.TextSelection+Request+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9783_to = private unnamed_addr constant [58 x i8] c"android/view/textclassifier/TextSelection$Request$Builder\00", align 1 +@.TypeMapEntry.9784_from = private unnamed_addr constant [66 x i8] c"Android.Views.TextClassifiers.TextSelection+Request, Mono.Android\00", align 1 +@.TypeMapEntry.9785_to = private unnamed_addr constant [50 x i8] c"android/view/textclassifier/TextSelection$Request\00", align 1 +@.TypeMapEntry.9786_from = private unnamed_addr constant [58 x i8] c"Android.Views.TextClassifiers.TextSelection, Mono.Android\00", align 1 +@.TypeMapEntry.9787_to = private unnamed_addr constant [42 x i8] c"android/view/textclassifier/TextSelection\00", align 1 +@.TypeMapEntry.9788_from = private unnamed_addr constant [64 x i8] c"Android.Views.TextService.SentenceSuggestionsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9789_to = private unnamed_addr constant [49 x i8] c"android/view/textservice/SentenceSuggestionsInfo\00", align 1 +@.TypeMapEntry.9790_from = private unnamed_addr constant [57 x i8] c"Android.Views.TextService.SpellCheckerInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9791_to = private unnamed_addr constant [42 x i8] c"android/view/textservice/SpellCheckerInfo\00", align 1 +@.TypeMapEntry.9792_from = private unnamed_addr constant [89 x i8] c"Android.Views.TextService.SpellCheckerSession+ISpellCheckerSessionListener, Mono.Android\00", align 1 +@.TypeMapEntry.9793_to = private unnamed_addr constant [73 x i8] c"android/view/textservice/SpellCheckerSession$SpellCheckerSessionListener\00", align 1 +@.TypeMapEntry.9794_from = private unnamed_addr constant [100 x i8] c"Android.Views.TextService.SpellCheckerSession+ISpellCheckerSessionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9795_to = private unnamed_addr constant [89 x i8] c"mono/android/view/textservice/SpellCheckerSession_SpellCheckerSessionListenerImplementor\00", align 1 +@.TypeMapEntry.9796_from = private unnamed_addr constant [96 x i8] c"Android.Views.TextService.SpellCheckerSession+ISpellCheckerSessionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9797_from = private unnamed_addr constant [94 x i8] c"Android.Views.TextService.SpellCheckerSession+SpellCheckerSessionParams+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9798_to = private unnamed_addr constant [79 x i8] c"android/view/textservice/SpellCheckerSession$SpellCheckerSessionParams$Builder\00", align 1 +@.TypeMapEntry.9799_from = private unnamed_addr constant [86 x i8] c"Android.Views.TextService.SpellCheckerSession+SpellCheckerSessionParams, Mono.Android\00", align 1 +@.TypeMapEntry.9800_to = private unnamed_addr constant [71 x i8] c"android/view/textservice/SpellCheckerSession$SpellCheckerSessionParams\00", align 1 +@.TypeMapEntry.9801_from = private unnamed_addr constant [60 x i8] c"Android.Views.TextService.SpellCheckerSession, Mono.Android\00", align 1 +@.TypeMapEntry.9802_to = private unnamed_addr constant [45 x i8] c"android/view/textservice/SpellCheckerSession\00", align 1 +@.TypeMapEntry.9803_from = private unnamed_addr constant [60 x i8] c"Android.Views.TextService.SpellCheckerSubtype, Mono.Android\00", align 1 +@.TypeMapEntry.9804_to = private unnamed_addr constant [45 x i8] c"android/view/textservice/SpellCheckerSubtype\00", align 1 +@.TypeMapEntry.9805_from = private unnamed_addr constant [56 x i8] c"Android.Views.TextService.SuggestionsInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9806_to = private unnamed_addr constant [41 x i8] c"android/view/textservice/SuggestionsInfo\00", align 1 +@.TypeMapEntry.9807_from = private unnamed_addr constant [49 x i8] c"Android.Views.TextService.TextInfo, Mono.Android\00", align 1 +@.TypeMapEntry.9808_to = private unnamed_addr constant [34 x i8] c"android/view/textservice/TextInfo\00", align 1 +@.TypeMapEntry.9809_from = private unnamed_addr constant [60 x i8] c"Android.Views.TextService.TextServicesManager, Mono.Android\00", align 1 +@.TypeMapEntry.9810_to = private unnamed_addr constant [45 x i8] c"android/view/textservice/TextServicesManager\00", align 1 +@.TypeMapEntry.9811_from = private unnamed_addr constant [64 x i8] c"Android.Views.TextureView+ISurfaceTextureListener, Mono.Android\00", align 1 +@.TypeMapEntry.9812_to = private unnamed_addr constant [48 x i8] c"android/view/TextureView$SurfaceTextureListener\00", align 1 +@.TypeMapEntry.9813_from = private unnamed_addr constant [75 x i8] c"Android.Views.TextureView+ISurfaceTextureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9814_to = private unnamed_addr constant [64 x i8] c"mono/android/view/TextureView_SurfaceTextureListenerImplementor\00", align 1 +@.TypeMapEntry.9815_from = private unnamed_addr constant [71 x i8] c"Android.Views.TextureView+ISurfaceTextureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9816_from = private unnamed_addr constant [40 x i8] c"Android.Views.TextureView, Mono.Android\00", align 1 +@.TypeMapEntry.9817_to = private unnamed_addr constant [25 x i8] c"android/view/TextureView\00", align 1 +@.TypeMapEntry.9818_from = private unnamed_addr constant [42 x i8] c"Android.Views.TouchDelegate, Mono.Android\00", align 1 +@.TypeMapEntry.9819_to = private unnamed_addr constant [27 x i8] c"android/view/TouchDelegate\00", align 1 +@.TypeMapEntry.9820_from = private unnamed_addr constant [68 x i8] c"Android.Views.Translation.IUiTranslationStateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9821_to = private unnamed_addr constant [52 x i8] c"android/view/translation/UiTranslationStateCallback\00", align 1 +@.TypeMapEntry.9822_from = private unnamed_addr constant [75 x i8] c"Android.Views.Translation.IUiTranslationStateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9823_from = private unnamed_addr constant [65 x i8] c"Android.Views.Translation.IViewTranslationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.9824_to = private unnamed_addr constant [49 x i8] c"android/view/translation/ViewTranslationCallback\00", align 1 +@.TypeMapEntry.9825_from = private unnamed_addr constant [72 x i8] c"Android.Views.Translation.IViewTranslationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9826_from = private unnamed_addr constant [62 x i8] c"Android.Views.Translation.TranslationCapability, Mono.Android\00", align 1 +@.TypeMapEntry.9827_to = private unnamed_addr constant [47 x i8] c"android/view/translation/TranslationCapability\00", align 1 +@.TypeMapEntry.9828_from = private unnamed_addr constant [67 x i8] c"Android.Views.Translation.TranslationContext+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9829_to = private unnamed_addr constant [52 x i8] c"android/view/translation/TranslationContext$Builder\00", align 1 +@.TypeMapEntry.9830_from = private unnamed_addr constant [59 x i8] c"Android.Views.Translation.TranslationContext, Mono.Android\00", align 1 +@.TypeMapEntry.9831_to = private unnamed_addr constant [44 x i8] c"android/view/translation/TranslationContext\00", align 1 +@.TypeMapEntry.9832_from = private unnamed_addr constant [59 x i8] c"Android.Views.Translation.TranslationManager, Mono.Android\00", align 1 +@.TypeMapEntry.9833_to = private unnamed_addr constant [44 x i8] c"android/view/translation/TranslationManager\00", align 1 +@.TypeMapEntry.9834_from = private unnamed_addr constant [67 x i8] c"Android.Views.Translation.TranslationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9835_to = private unnamed_addr constant [52 x i8] c"android/view/translation/TranslationRequest$Builder\00", align 1 +@.TypeMapEntry.9836_from = private unnamed_addr constant [59 x i8] c"Android.Views.Translation.TranslationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9837_to = private unnamed_addr constant [44 x i8] c"android/view/translation/TranslationRequest\00", align 1 +@.TypeMapEntry.9838_from = private unnamed_addr constant [64 x i8] c"Android.Views.Translation.TranslationRequestValue, Mono.Android\00", align 1 +@.TypeMapEntry.9839_to = private unnamed_addr constant [49 x i8] c"android/view/translation/TranslationRequestValue\00", align 1 +@.TypeMapEntry.9840_from = private unnamed_addr constant [68 x i8] c"Android.Views.Translation.TranslationResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9841_to = private unnamed_addr constant [53 x i8] c"android/view/translation/TranslationResponse$Builder\00", align 1 +@.TypeMapEntry.9842_from = private unnamed_addr constant [60 x i8] c"Android.Views.Translation.TranslationResponse, Mono.Android\00", align 1 +@.TypeMapEntry.9843_to = private unnamed_addr constant [45 x i8] c"android/view/translation/TranslationResponse\00", align 1 +@.TypeMapEntry.9844_from = private unnamed_addr constant [73 x i8] c"Android.Views.Translation.TranslationResponseValue+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9845_to = private unnamed_addr constant [58 x i8] c"android/view/translation/TranslationResponseValue$Builder\00", align 1 +@.TypeMapEntry.9846_from = private unnamed_addr constant [65 x i8] c"Android.Views.Translation.TranslationResponseValue, Mono.Android\00", align 1 +@.TypeMapEntry.9847_to = private unnamed_addr constant [50 x i8] c"android/view/translation/TranslationResponseValue\00", align 1 +@.TypeMapEntry.9848_from = private unnamed_addr constant [56 x i8] c"Android.Views.Translation.TranslationSpec, Mono.Android\00", align 1 +@.TypeMapEntry.9849_to = private unnamed_addr constant [41 x i8] c"android/view/translation/TranslationSpec\00", align 1 +@.TypeMapEntry.9850_from = private unnamed_addr constant [51 x i8] c"Android.Views.Translation.Translator, Mono.Android\00", align 1 +@.TypeMapEntry.9851_to = private unnamed_addr constant [36 x i8] c"android/view/translation/Translator\00", align 1 +@.TypeMapEntry.9852_from = private unnamed_addr constant [61 x i8] c"Android.Views.Translation.UiTranslationManager, Mono.Android\00", align 1 +@.TypeMapEntry.9853_to = private unnamed_addr constant [46 x i8] c"android/view/translation/UiTranslationManager\00", align 1 +@.TypeMapEntry.9854_from = private unnamed_addr constant [71 x i8] c"Android.Views.Translation.ViewTranslationRequest+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9855_to = private unnamed_addr constant [56 x i8] c"android/view/translation/ViewTranslationRequest$Builder\00", align 1 +@.TypeMapEntry.9856_from = private unnamed_addr constant [63 x i8] c"Android.Views.Translation.ViewTranslationRequest, Mono.Android\00", align 1 +@.TypeMapEntry.9857_to = private unnamed_addr constant [48 x i8] c"android/view/translation/ViewTranslationRequest\00", align 1 +@.TypeMapEntry.9858_from = private unnamed_addr constant [72 x i8] c"Android.Views.Translation.ViewTranslationResponse+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.9859_to = private unnamed_addr constant [57 x i8] c"android/view/translation/ViewTranslationResponse$Builder\00", align 1 +@.TypeMapEntry.9860_from = private unnamed_addr constant [64 x i8] c"Android.Views.Translation.ViewTranslationResponse, Mono.Android\00", align 1 +@.TypeMapEntry.9861_to = private unnamed_addr constant [49 x i8] c"android/view/translation/ViewTranslationResponse\00", align 1 +@.TypeMapEntry.9862_from = private unnamed_addr constant [44 x i8] c"Android.Views.VelocityTracker, Mono.Android\00", align 1 +@.TypeMapEntry.9863_to = private unnamed_addr constant [29 x i8] c"android/view/VelocityTracker\00", align 1 +@.TypeMapEntry.9864_from = private unnamed_addr constant [47 x i8] c"Android.Views.VerifiedInputEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9865_to = private unnamed_addr constant [32 x i8] c"android/view/VerifiedInputEvent\00", align 1 +@.TypeMapEntry.9866_from = private unnamed_addr constant [54 x i8] c"Android.Views.VerifiedInputEventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9867_from = private unnamed_addr constant [45 x i8] c"Android.Views.VerifiedKeyEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9868_to = private unnamed_addr constant [30 x i8] c"android/view/VerifiedKeyEvent\00", align 1 +@.TypeMapEntry.9869_from = private unnamed_addr constant [48 x i8] c"Android.Views.VerifiedMotionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.9870_to = private unnamed_addr constant [33 x i8] c"android/view/VerifiedMotionEvent\00", align 1 +@.TypeMapEntry.9871_from = private unnamed_addr constant [55 x i8] c"Android.Views.View+AccessibilityDelegate, Mono.Android\00", align 1 +@.TypeMapEntry.9872_to = private unnamed_addr constant [40 x i8] c"android/view/View$AccessibilityDelegate\00", align 1 +@.TypeMapEntry.9873_from = private unnamed_addr constant [48 x i8] c"Android.Views.View+BaseSavedState, Mono.Android\00", align 1 +@.TypeMapEntry.9874_to = private unnamed_addr constant [33 x i8] c"android/view/View$BaseSavedState\00", align 1 +@.TypeMapEntry.9875_from = private unnamed_addr constant [51 x i8] c"Android.Views.View+DragShadowBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.9876_to = private unnamed_addr constant [36 x i8] c"android/view/View$DragShadowBuilder\00", align 1 +@.TypeMapEntry.9877_from = private unnamed_addr constant [62 x i8] c"Android.Views.View+IOnApplyWindowInsetsListener, Mono.Android\00", align 1 +@.TypeMapEntry.9878_to = private unnamed_addr constant [46 x i8] c"android/view/View$OnApplyWindowInsetsListener\00", align 1 +@.TypeMapEntry.9879_from = private unnamed_addr constant [73 x i8] c"Android.Views.View+IOnApplyWindowInsetsListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9880_to = private unnamed_addr constant [62 x i8] c"mono/android/view/View_OnApplyWindowInsetsListenerImplementor\00", align 1 +@.TypeMapEntry.9881_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnApplyWindowInsetsListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9882_from = private unnamed_addr constant [62 x i8] c"Android.Views.View+IOnAttachStateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9883_to = private unnamed_addr constant [46 x i8] c"android/view/View$OnAttachStateChangeListener\00", align 1 +@.TypeMapEntry.9884_from = private unnamed_addr constant [73 x i8] c"Android.Views.View+IOnAttachStateChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9885_to = private unnamed_addr constant [62 x i8] c"mono/android/view/View_OnAttachStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9886_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnAttachStateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9887_from = private unnamed_addr constant [60 x i8] c"Android.Views.View+IOnCapturedPointerListener, Mono.Android\00", align 1 +@.TypeMapEntry.9888_to = private unnamed_addr constant [44 x i8] c"android/view/View$OnCapturedPointerListener\00", align 1 +@.TypeMapEntry.9889_from = private unnamed_addr constant [71 x i8] c"Android.Views.View+IOnCapturedPointerListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9890_to = private unnamed_addr constant [60 x i8] c"mono/android/view/View_OnCapturedPointerListenerImplementor\00", align 1 +@.TypeMapEntry.9891_from = private unnamed_addr constant [67 x i8] c"Android.Views.View+IOnCapturedPointerListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9892_from = private unnamed_addr constant [50 x i8] c"Android.Views.View+IOnClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.9893_to = private unnamed_addr constant [34 x i8] c"android/view/View$OnClickListener\00", align 1 +@.TypeMapEntry.9894_from = private unnamed_addr constant [61 x i8] c"Android.Views.View+IOnClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9895_to = private unnamed_addr constant [50 x i8] c"mono/android/view/View_OnClickListenerImplementor\00", align 1 +@.TypeMapEntry.9896_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9897_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnContextClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.9898_to = private unnamed_addr constant [41 x i8] c"android/view/View$OnContextClickListener\00", align 1 +@.TypeMapEntry.9899_from = private unnamed_addr constant [68 x i8] c"Android.Views.View+IOnContextClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9900_to = private unnamed_addr constant [57 x i8] c"mono/android/view/View_OnContextClickListenerImplementor\00", align 1 +@.TypeMapEntry.9901_from = private unnamed_addr constant [64 x i8] c"Android.Views.View+IOnContextClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9902_from = private unnamed_addr constant [62 x i8] c"Android.Views.View+IOnCreateContextMenuListener, Mono.Android\00", align 1 +@.TypeMapEntry.9903_to = private unnamed_addr constant [46 x i8] c"android/view/View$OnCreateContextMenuListener\00", align 1 +@.TypeMapEntry.9904_from = private unnamed_addr constant [73 x i8] c"Android.Views.View+IOnCreateContextMenuListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9905_to = private unnamed_addr constant [62 x i8] c"mono/android/view/View_OnCreateContextMenuListenerImplementor\00", align 1 +@.TypeMapEntry.9906_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnCreateContextMenuListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9907_from = private unnamed_addr constant [49 x i8] c"Android.Views.View+IOnDragListener, Mono.Android\00", align 1 +@.TypeMapEntry.9908_to = private unnamed_addr constant [33 x i8] c"android/view/View$OnDragListener\00", align 1 +@.TypeMapEntry.9909_from = private unnamed_addr constant [60 x i8] c"Android.Views.View+IOnDragListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9910_to = private unnamed_addr constant [49 x i8] c"mono/android/view/View_OnDragListenerImplementor\00", align 1 +@.TypeMapEntry.9911_from = private unnamed_addr constant [56 x i8] c"Android.Views.View+IOnDragListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9912_from = private unnamed_addr constant [56 x i8] c"Android.Views.View+IOnFocusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9913_to = private unnamed_addr constant [40 x i8] c"android/view/View$OnFocusChangeListener\00", align 1 +@.TypeMapEntry.9914_from = private unnamed_addr constant [67 x i8] c"Android.Views.View+IOnFocusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9915_to = private unnamed_addr constant [56 x i8] c"mono/android/view/View_OnFocusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9916_from = private unnamed_addr constant [63 x i8] c"Android.Views.View+IOnFocusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9917_from = private unnamed_addr constant [58 x i8] c"Android.Views.View+IOnGenericMotionListener, Mono.Android\00", align 1 +@.TypeMapEntry.9918_to = private unnamed_addr constant [42 x i8] c"android/view/View$OnGenericMotionListener\00", align 1 +@.TypeMapEntry.9919_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnGenericMotionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9920_to = private unnamed_addr constant [58 x i8] c"mono/android/view/View_OnGenericMotionListenerImplementor\00", align 1 +@.TypeMapEntry.9921_from = private unnamed_addr constant [65 x i8] c"Android.Views.View+IOnGenericMotionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9922_from = private unnamed_addr constant [50 x i8] c"Android.Views.View+IOnHoverListener, Mono.Android\00", align 1 +@.TypeMapEntry.9923_to = private unnamed_addr constant [34 x i8] c"android/view/View$OnHoverListener\00", align 1 +@.TypeMapEntry.9924_from = private unnamed_addr constant [61 x i8] c"Android.Views.View+IOnHoverListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9925_to = private unnamed_addr constant [50 x i8] c"mono/android/view/View_OnHoverListenerImplementor\00", align 1 +@.TypeMapEntry.9926_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnHoverListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9927_from = private unnamed_addr constant [48 x i8] c"Android.Views.View+IOnKeyListener, Mono.Android\00", align 1 +@.TypeMapEntry.9928_to = private unnamed_addr constant [32 x i8] c"android/view/View$OnKeyListener\00", align 1 +@.TypeMapEntry.9929_from = private unnamed_addr constant [59 x i8] c"Android.Views.View+IOnKeyListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9930_to = private unnamed_addr constant [48 x i8] c"mono/android/view/View_OnKeyListenerImplementor\00", align 1 +@.TypeMapEntry.9931_from = private unnamed_addr constant [55 x i8] c"Android.Views.View+IOnKeyListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9932_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnLayoutChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9933_to = private unnamed_addr constant [41 x i8] c"android/view/View$OnLayoutChangeListener\00", align 1 +@.TypeMapEntry.9934_from = private unnamed_addr constant [68 x i8] c"Android.Views.View+IOnLayoutChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9935_to = private unnamed_addr constant [57 x i8] c"mono/android/view/View_OnLayoutChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9936_from = private unnamed_addr constant [64 x i8] c"Android.Views.View+IOnLayoutChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9937_from = private unnamed_addr constant [54 x i8] c"Android.Views.View+IOnLongClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.9938_to = private unnamed_addr constant [38 x i8] c"android/view/View$OnLongClickListener\00", align 1 +@.TypeMapEntry.9939_from = private unnamed_addr constant [65 x i8] c"Android.Views.View+IOnLongClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9940_to = private unnamed_addr constant [54 x i8] c"mono/android/view/View_OnLongClickListenerImplementor\00", align 1 +@.TypeMapEntry.9941_from = private unnamed_addr constant [61 x i8] c"Android.Views.View+IOnLongClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9942_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnScrollChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9943_to = private unnamed_addr constant [41 x i8] c"android/view/View$OnScrollChangeListener\00", align 1 +@.TypeMapEntry.9944_from = private unnamed_addr constant [68 x i8] c"Android.Views.View+IOnScrollChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9945_to = private unnamed_addr constant [57 x i8] c"mono/android/view/View_OnScrollChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9946_from = private unnamed_addr constant [64 x i8] c"Android.Views.View+IOnScrollChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9947_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnSystemUiVisibilityChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9948_to = private unnamed_addr constant [53 x i8] c"android/view/View$OnSystemUiVisibilityChangeListener\00", align 1 +@.TypeMapEntry.9949_from = private unnamed_addr constant [80 x i8] c"Android.Views.View+IOnSystemUiVisibilityChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9950_to = private unnamed_addr constant [69 x i8] c"mono/android/view/View_OnSystemUiVisibilityChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9951_from = private unnamed_addr constant [76 x i8] c"Android.Views.View+IOnSystemUiVisibilityChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9952_from = private unnamed_addr constant [50 x i8] c"Android.Views.View+IOnTouchListener, Mono.Android\00", align 1 +@.TypeMapEntry.9953_to = private unnamed_addr constant [34 x i8] c"android/view/View$OnTouchListener\00", align 1 +@.TypeMapEntry.9954_from = private unnamed_addr constant [61 x i8] c"Android.Views.View+IOnTouchListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9955_to = private unnamed_addr constant [50 x i8] c"mono/android/view/View_OnTouchListenerImplementor\00", align 1 +@.TypeMapEntry.9956_from = private unnamed_addr constant [57 x i8] c"Android.Views.View+IOnTouchListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9957_from = private unnamed_addr constant [62 x i8] c"Android.Views.View+IOnUnhandledKeyEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.9958_to = private unnamed_addr constant [46 x i8] c"android/view/View$OnUnhandledKeyEventListener\00", align 1 +@.TypeMapEntry.9959_from = private unnamed_addr constant [73 x i8] c"Android.Views.View+IOnUnhandledKeyEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9960_to = private unnamed_addr constant [62 x i8] c"mono/android/view/View_OnUnhandledKeyEventListenerImplementor\00", align 1 +@.TypeMapEntry.9961_from = private unnamed_addr constant [69 x i8] c"Android.Views.View+IOnUnhandledKeyEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9962_from = private unnamed_addr constant [45 x i8] c"Android.Views.View+MeasureSpec, Mono.Android\00", align 1 +@.TypeMapEntry.9963_to = private unnamed_addr constant [30 x i8] c"android/view/View$MeasureSpec\00", align 1 +@.TypeMapEntry.9964_from = private unnamed_addr constant [33 x i8] c"Android.Views.View, Mono.Android\00", align 1 +@.TypeMapEntry.9965_to = private unnamed_addr constant [18 x i8] c"android/view/View\00", align 1 +@.TypeMapEntry.9966_from = private unnamed_addr constant [47 x i8] c"Android.Views.ViewAnimationUtils, Mono.Android\00", align 1 +@.TypeMapEntry.9967_to = private unnamed_addr constant [32 x i8] c"android/view/ViewAnimationUtils\00", align 1 +@.TypeMapEntry.9968_from = private unnamed_addr constant [46 x i8] c"Android.Views.ViewConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.9969_to = private unnamed_addr constant [31 x i8] c"android/view/ViewConfiguration\00", align 1 +@.TypeMapEntry.9970_from = private unnamed_addr constant [59 x i8] c"Android.Views.ViewDebug+CapturedViewProperty, Mono.Android\00", align 1 +@.TypeMapEntry.9971_to = private unnamed_addr constant [44 x i8] c"android/view/ViewDebug$CapturedViewProperty\00", align 1 +@.TypeMapEntry.9972_from = private unnamed_addr constant [66 x i8] c"Android.Views.ViewDebug+CapturedViewPropertyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9973_from = private unnamed_addr constant [55 x i8] c"Android.Views.ViewDebug+ExportedProperty, Mono.Android\00", align 1 +@.TypeMapEntry.9974_to = private unnamed_addr constant [40 x i8] c"android/view/ViewDebug$ExportedProperty\00", align 1 +@.TypeMapEntry.9975_from = private unnamed_addr constant [62 x i8] c"Android.Views.ViewDebug+ExportedPropertyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9976_from = private unnamed_addr constant [51 x i8] c"Android.Views.ViewDebug+FlagToString, Mono.Android\00", align 1 +@.TypeMapEntry.9977_to = private unnamed_addr constant [36 x i8] c"android/view/ViewDebug$FlagToString\00", align 1 +@.TypeMapEntry.9978_from = private unnamed_addr constant [58 x i8] c"Android.Views.ViewDebug+FlagToStringInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9979_from = private unnamed_addr constant [57 x i8] c"Android.Views.ViewDebug+HierarchyTraceType, Mono.Android\00", align 1 +@.TypeMapEntry.9980_to = private unnamed_addr constant [42 x i8] c"android/view/ViewDebug$HierarchyTraceType\00", align 1 +@.TypeMapEntry.9981_from = private unnamed_addr constant [50 x i8] c"Android.Views.ViewDebug+IntToString, Mono.Android\00", align 1 +@.TypeMapEntry.9982_to = private unnamed_addr constant [35 x i8] c"android/view/ViewDebug$IntToString\00", align 1 +@.TypeMapEntry.9983_from = private unnamed_addr constant [57 x i8] c"Android.Views.ViewDebug+IntToStringInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9984_from = private unnamed_addr constant [56 x i8] c"Android.Views.ViewDebug+RecyclerTraceType, Mono.Android\00", align 1 +@.TypeMapEntry.9985_to = private unnamed_addr constant [41 x i8] c"android/view/ViewDebug$RecyclerTraceType\00", align 1 +@.TypeMapEntry.9986_from = private unnamed_addr constant [38 x i8] c"Android.Views.ViewDebug, Mono.Android\00", align 1 +@.TypeMapEntry.9987_to = private unnamed_addr constant [23 x i8] c"android/view/ViewDebug\00", align 1 +@.TypeMapEntry.9988_from = private unnamed_addr constant [65 x i8] c"Android.Views.ViewGroup+IOnHierarchyChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.9989_to = private unnamed_addr constant [49 x i8] c"android/view/ViewGroup$OnHierarchyChangeListener\00", align 1 +@.TypeMapEntry.9990_from = private unnamed_addr constant [76 x i8] c"Android.Views.ViewGroup+IOnHierarchyChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.9991_to = private unnamed_addr constant [65 x i8] c"mono/android/view/ViewGroup_OnHierarchyChangeListenerImplementor\00", align 1 +@.TypeMapEntry.9992_from = private unnamed_addr constant [72 x i8] c"Android.Views.ViewGroup+IOnHierarchyChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.9993_from = private unnamed_addr constant [51 x i8] c"Android.Views.ViewGroup+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.9994_to = private unnamed_addr constant [36 x i8] c"android/view/ViewGroup$LayoutParams\00", align 1 +@.TypeMapEntry.9995_from = private unnamed_addr constant [57 x i8] c"Android.Views.ViewGroup+MarginLayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.9996_to = private unnamed_addr constant [42 x i8] c"android/view/ViewGroup$MarginLayoutParams\00", align 1 +@.TypeMapEntry.9997_from = private unnamed_addr constant [38 x i8] c"Android.Views.ViewGroup, Mono.Android\00", align 1 +@.TypeMapEntry.9998_to = private unnamed_addr constant [23 x i8] c"android/view/ViewGroup\00", align 1 +@.TypeMapEntry.9999_from = private unnamed_addr constant [45 x i8] c"Android.Views.ViewGroupInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10000_from = private unnamed_addr constant [45 x i8] c"Android.Views.ViewGroupOverlay, Mono.Android\00", align 1 +@.TypeMapEntry.10001_to = private unnamed_addr constant [30 x i8] c"android/view/ViewGroupOverlay\00", align 1 +@.TypeMapEntry.10002_from = private unnamed_addr constant [48 x i8] c"Android.Views.ViewOutlineProvider, Mono.Android\00", align 1 +@.TypeMapEntry.10003_to = private unnamed_addr constant [33 x i8] c"android/view/ViewOutlineProvider\00", align 1 +@.TypeMapEntry.10004_from = private unnamed_addr constant [55 x i8] c"Android.Views.ViewOutlineProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10005_from = private unnamed_addr constant [40 x i8] c"Android.Views.ViewOverlay, Mono.Android\00", align 1 +@.TypeMapEntry.10006_to = private unnamed_addr constant [25 x i8] c"android/view/ViewOverlay\00", align 1 +@.TypeMapEntry.10007_from = private unnamed_addr constant [49 x i8] c"Android.Views.ViewPropertyAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.10008_to = private unnamed_addr constant [34 x i8] c"android/view/ViewPropertyAnimator\00", align 1 +@.TypeMapEntry.10009_from = private unnamed_addr constant [59 x i8] c"Android.Views.ViewStructure+HtmlInfo+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10010_to = private unnamed_addr constant [44 x i8] c"android/view/ViewStructure$HtmlInfo$Builder\00", align 1 +@.TypeMapEntry.10011_from = private unnamed_addr constant [66 x i8] c"Android.Views.ViewStructure+HtmlInfo+BuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10012_from = private unnamed_addr constant [51 x i8] c"Android.Views.ViewStructure+HtmlInfo, Mono.Android\00", align 1 +@.TypeMapEntry.10013_to = private unnamed_addr constant [36 x i8] c"android/view/ViewStructure$HtmlInfo\00", align 1 +@.TypeMapEntry.10014_from = private unnamed_addr constant [58 x i8] c"Android.Views.ViewStructure+HtmlInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10015_from = private unnamed_addr constant [42 x i8] c"Android.Views.ViewStructure, Mono.Android\00", align 1 +@.TypeMapEntry.10016_to = private unnamed_addr constant [27 x i8] c"android/view/ViewStructure\00", align 1 +@.TypeMapEntry.10017_from = private unnamed_addr constant [49 x i8] c"Android.Views.ViewStructureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10018_from = private unnamed_addr constant [56 x i8] c"Android.Views.ViewStub+IOnInflateListener, Mono.Android\00", align 1 +@.TypeMapEntry.10019_to = private unnamed_addr constant [40 x i8] c"android/view/ViewStub$OnInflateListener\00", align 1 +@.TypeMapEntry.10020_from = private unnamed_addr constant [67 x i8] c"Android.Views.ViewStub+IOnInflateListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10021_to = private unnamed_addr constant [56 x i8] c"mono/android/view/ViewStub_OnInflateListenerImplementor\00", align 1 +@.TypeMapEntry.10022_from = private unnamed_addr constant [63 x i8] c"Android.Views.ViewStub+IOnInflateListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10023_from = private unnamed_addr constant [37 x i8] c"Android.Views.ViewStub, Mono.Android\00", align 1 +@.TypeMapEntry.10024_to = private unnamed_addr constant [22 x i8] c"android/view/ViewStub\00", align 1 +@.TypeMapEntry.10025_from = private unnamed_addr constant [61 x i8] c"Android.Views.ViewTreeObserver+IOnDrawListener, Mono.Android\00", align 1 +@.TypeMapEntry.10026_to = private unnamed_addr constant [45 x i8] c"android/view/ViewTreeObserver$OnDrawListener\00", align 1 +@.TypeMapEntry.10027_from = private unnamed_addr constant [72 x i8] c"Android.Views.ViewTreeObserver+IOnDrawListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10028_to = private unnamed_addr constant [61 x i8] c"mono/android/view/ViewTreeObserver_OnDrawListenerImplementor\00", align 1 +@.TypeMapEntry.10029_from = private unnamed_addr constant [68 x i8] c"Android.Views.ViewTreeObserver+IOnDrawListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10030_from = private unnamed_addr constant [74 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalFocusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10031_to = private unnamed_addr constant [58 x i8] c"android/view/ViewTreeObserver$OnGlobalFocusChangeListener\00", align 1 +@.TypeMapEntry.10032_from = private unnamed_addr constant [85 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalFocusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10033_to = private unnamed_addr constant [74 x i8] c"mono/android/view/ViewTreeObserver_OnGlobalFocusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10034_from = private unnamed_addr constant [81 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalFocusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10035_from = private unnamed_addr constant [69 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalLayoutListener, Mono.Android\00", align 1 +@.TypeMapEntry.10036_to = private unnamed_addr constant [53 x i8] c"android/view/ViewTreeObserver$OnGlobalLayoutListener\00", align 1 +@.TypeMapEntry.10037_from = private unnamed_addr constant [80 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalLayoutListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10038_to = private unnamed_addr constant [69 x i8] c"mono/android/view/ViewTreeObserver_OnGlobalLayoutListenerImplementor\00", align 1 +@.TypeMapEntry.10039_from = private unnamed_addr constant [76 x i8] c"Android.Views.ViewTreeObserver+IOnGlobalLayoutListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10040_from = private unnamed_addr constant [64 x i8] c"Android.Views.ViewTreeObserver+IOnPreDrawListener, Mono.Android\00", align 1 +@.TypeMapEntry.10041_to = private unnamed_addr constant [48 x i8] c"android/view/ViewTreeObserver$OnPreDrawListener\00", align 1 +@.TypeMapEntry.10042_from = private unnamed_addr constant [75 x i8] c"Android.Views.ViewTreeObserver+IOnPreDrawListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10043_to = private unnamed_addr constant [64 x i8] c"mono/android/view/ViewTreeObserver_OnPreDrawListenerImplementor\00", align 1 +@.TypeMapEntry.10044_from = private unnamed_addr constant [71 x i8] c"Android.Views.ViewTreeObserver+IOnPreDrawListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10045_from = private unnamed_addr constant [70 x i8] c"Android.Views.ViewTreeObserver+IOnScrollChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10046_to = private unnamed_addr constant [54 x i8] c"android/view/ViewTreeObserver$OnScrollChangedListener\00", align 1 +@.TypeMapEntry.10047_from = private unnamed_addr constant [81 x i8] c"Android.Views.ViewTreeObserver+IOnScrollChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10048_to = private unnamed_addr constant [70 x i8] c"mono/android/view/ViewTreeObserver_OnScrollChangedListenerImplementor\00", align 1 +@.TypeMapEntry.10049_from = private unnamed_addr constant [77 x i8] c"Android.Views.ViewTreeObserver+IOnScrollChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10050_from = private unnamed_addr constant [72 x i8] c"Android.Views.ViewTreeObserver+IOnTouchModeChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10051_to = private unnamed_addr constant [56 x i8] c"android/view/ViewTreeObserver$OnTouchModeChangeListener\00", align 1 +@.TypeMapEntry.10052_from = private unnamed_addr constant [83 x i8] c"Android.Views.ViewTreeObserver+IOnTouchModeChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10053_to = private unnamed_addr constant [72 x i8] c"mono/android/view/ViewTreeObserver_OnTouchModeChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10054_from = private unnamed_addr constant [79 x i8] c"Android.Views.ViewTreeObserver+IOnTouchModeChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10055_from = private unnamed_addr constant [69 x i8] c"Android.Views.ViewTreeObserver+IOnWindowAttachListener, Mono.Android\00", align 1 +@.TypeMapEntry.10056_to = private unnamed_addr constant [53 x i8] c"android/view/ViewTreeObserver$OnWindowAttachListener\00", align 1 +@.TypeMapEntry.10057_from = private unnamed_addr constant [80 x i8] c"Android.Views.ViewTreeObserver+IOnWindowAttachListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10058_to = private unnamed_addr constant [69 x i8] c"mono/android/view/ViewTreeObserver_OnWindowAttachListenerImplementor\00", align 1 +@.TypeMapEntry.10059_from = private unnamed_addr constant [76 x i8] c"Android.Views.ViewTreeObserver+IOnWindowAttachListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10060_from = private unnamed_addr constant [74 x i8] c"Android.Views.ViewTreeObserver+IOnWindowFocusChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10061_to = private unnamed_addr constant [58 x i8] c"android/view/ViewTreeObserver$OnWindowFocusChangeListener\00", align 1 +@.TypeMapEntry.10062_from = private unnamed_addr constant [85 x i8] c"Android.Views.ViewTreeObserver+IOnWindowFocusChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10063_to = private unnamed_addr constant [74 x i8] c"mono/android/view/ViewTreeObserver_OnWindowFocusChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10064_from = private unnamed_addr constant [81 x i8] c"Android.Views.ViewTreeObserver+IOnWindowFocusChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10065_from = private unnamed_addr constant [79 x i8] c"Android.Views.ViewTreeObserver+IOnWindowVisibilityChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10066_to = private unnamed_addr constant [63 x i8] c"android/view/ViewTreeObserver$OnWindowVisibilityChangeListener\00", align 1 +@.TypeMapEntry.10067_from = private unnamed_addr constant [90 x i8] c"Android.Views.ViewTreeObserver+IOnWindowVisibilityChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10068_to = private unnamed_addr constant [79 x i8] c"mono/android/view/ViewTreeObserver_OnWindowVisibilityChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10069_from = private unnamed_addr constant [86 x i8] c"Android.Views.ViewTreeObserver+IOnWindowVisibilityChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10070_from = private unnamed_addr constant [45 x i8] c"Android.Views.ViewTreeObserver, Mono.Android\00", align 1 +@.TypeMapEntry.10071_to = private unnamed_addr constant [30 x i8] c"android/view/ViewTreeObserver\00", align 1 +@.TypeMapEntry.10072_from = private unnamed_addr constant [45 x i8] c"Android.Views.Window+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.10073_to = private unnamed_addr constant [29 x i8] c"android/view/Window$Callback\00", align 1 +@.TypeMapEntry.10074_from = private unnamed_addr constant [52 x i8] c"Android.Views.Window+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10075_from = private unnamed_addr constant [68 x i8] c"Android.Views.Window+IOnFrameMetricsAvailableListener, Mono.Android\00", align 1 +@.TypeMapEntry.10076_to = private unnamed_addr constant [52 x i8] c"android/view/Window$OnFrameMetricsAvailableListener\00", align 1 +@.TypeMapEntry.10077_from = private unnamed_addr constant [79 x i8] c"Android.Views.Window+IOnFrameMetricsAvailableListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10078_to = private unnamed_addr constant [68 x i8] c"mono/android/view/Window_OnFrameMetricsAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.10079_from = private unnamed_addr constant [75 x i8] c"Android.Views.Window+IOnFrameMetricsAvailableListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10080_from = private unnamed_addr constant [75 x i8] c"Android.Views.Window+IOnRestrictedCaptionAreaChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10081_to = private unnamed_addr constant [59 x i8] c"android/view/Window$OnRestrictedCaptionAreaChangedListener\00", align 1 +@.TypeMapEntry.10082_from = private unnamed_addr constant [86 x i8] c"Android.Views.Window+IOnRestrictedCaptionAreaChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10083_to = private unnamed_addr constant [75 x i8] c"mono/android/view/Window_OnRestrictedCaptionAreaChangedListenerImplementor\00", align 1 +@.TypeMapEntry.10084_from = private unnamed_addr constant [82 x i8] c"Android.Views.Window+IOnRestrictedCaptionAreaChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10085_from = private unnamed_addr constant [35 x i8] c"Android.Views.Window, Mono.Android\00", align 1 +@.TypeMapEntry.10086_to = private unnamed_addr constant [20 x i8] c"android/view/Window\00", align 1 +@.TypeMapEntry.10087_from = private unnamed_addr constant [54 x i8] c"Android.Views.WindowAnimationFrameStats, Mono.Android\00", align 1 +@.TypeMapEntry.10088_to = private unnamed_addr constant [39 x i8] c"android/view/WindowAnimationFrameStats\00", align 1 +@.TypeMapEntry.10089_from = private unnamed_addr constant [52 x i8] c"Android.Views.WindowContentFrameStats, Mono.Android\00", align 1 +@.TypeMapEntry.10090_to = private unnamed_addr constant [37 x i8] c"android/view/WindowContentFrameStats\00", align 1 +@.TypeMapEntry.10091_from = private unnamed_addr constant [51 x i8] c"Android.Views.WindowId+FocusObserver, Mono.Android\00", align 1 +@.TypeMapEntry.10092_to = private unnamed_addr constant [36 x i8] c"android/view/WindowId$FocusObserver\00", align 1 +@.TypeMapEntry.10093_from = private unnamed_addr constant [58 x i8] c"Android.Views.WindowId+FocusObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10094_from = private unnamed_addr constant [37 x i8] c"Android.Views.WindowId, Mono.Android\00", align 1 +@.TypeMapEntry.10095_to = private unnamed_addr constant [22 x i8] c"android/view/WindowId\00", align 1 +@.TypeMapEntry.10096_from = private unnamed_addr constant [49 x i8] c"Android.Views.WindowInsets+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10097_to = private unnamed_addr constant [34 x i8] c"android/view/WindowInsets$Builder\00", align 1 +@.TypeMapEntry.10098_from = private unnamed_addr constant [46 x i8] c"Android.Views.WindowInsets+Side, Mono.Android\00", align 1 +@.TypeMapEntry.10099_to = private unnamed_addr constant [31 x i8] c"android/view/WindowInsets$Side\00", align 1 +@.TypeMapEntry.10100_from = private unnamed_addr constant [46 x i8] c"Android.Views.WindowInsets+Type, Mono.Android\00", align 1 +@.TypeMapEntry.10101_to = private unnamed_addr constant [31 x i8] c"android/view/WindowInsets$Type\00", align 1 +@.TypeMapEntry.10102_from = private unnamed_addr constant [41 x i8] c"Android.Views.WindowInsets, Mono.Android\00", align 1 +@.TypeMapEntry.10103_to = private unnamed_addr constant [26 x i8] c"android/view/WindowInsets\00", align 1 +@.TypeMapEntry.10104_from = private unnamed_addr constant [57 x i8] c"Android.Views.WindowInsetsAnimation+Bounds, Mono.Android\00", align 1 +@.TypeMapEntry.10105_to = private unnamed_addr constant [42 x i8] c"android/view/WindowInsetsAnimation$Bounds\00", align 1 +@.TypeMapEntry.10106_from = private unnamed_addr constant [59 x i8] c"Android.Views.WindowInsetsAnimation+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.10107_to = private unnamed_addr constant [44 x i8] c"android/view/WindowInsetsAnimation$Callback\00", align 1 +@.TypeMapEntry.10108_from = private unnamed_addr constant [66 x i8] c"Android.Views.WindowInsetsAnimation+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10109_from = private unnamed_addr constant [50 x i8] c"Android.Views.WindowInsetsAnimation, Mono.Android\00", align 1 +@.TypeMapEntry.10110_to = private unnamed_addr constant [35 x i8] c"android/view/WindowInsetsAnimation\00", align 1 +@.TypeMapEntry.10111_from = private unnamed_addr constant [42 x i8] c"Android.Views.WindowInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10112_from = private unnamed_addr constant [42 x i8] c"Android.Views.WindowManager, Mono.Android\00", align 1 +@.TypeMapEntry.10113_to = private unnamed_addr constant [41 x i8] c"mono/internal/android/view/WindowManager\00", align 1 +@.TypeMapEntry.10114_from = private unnamed_addr constant [59 x i8] c"Android.Views.WindowManagerBadTokenException, Mono.Android\00", align 1 +@.TypeMapEntry.10115_to = private unnamed_addr constant [45 x i8] c"android/view/WindowManager$BadTokenException\00", align 1 +@.TypeMapEntry.10116_from = private unnamed_addr constant [65 x i8] c"Android.Views.WindowManagerInvalidDisplayException, Mono.Android\00", align 1 +@.TypeMapEntry.10117_to = private unnamed_addr constant [51 x i8] c"android/view/WindowManager$InvalidDisplayException\00", align 1 +@.TypeMapEntry.10118_from = private unnamed_addr constant [54 x i8] c"Android.Views.WindowManagerLayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10119_to = private unnamed_addr constant [40 x i8] c"android/view/WindowManager$LayoutParams\00", align 1 +@.TypeMapEntry.10120_from = private unnamed_addr constant [42 x i8] c"Android.Views.WindowMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.10121_to = private unnamed_addr constant [27 x i8] c"android/view/WindowMetrics\00", align 1 +@.TypeMapEntry.10122_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.CacheManager+CacheResult, Mono.Android\00", align 1 +@.TypeMapEntry.10123_to = private unnamed_addr constant [40 x i8] c"android/webkit/CacheManager$CacheResult\00", align 1 +@.TypeMapEntry.10124_from = private unnamed_addr constant [42 x i8] c"Android.Webkit.CacheManager, Mono.Android\00", align 1 +@.TypeMapEntry.10125_to = private unnamed_addr constant [28 x i8] c"android/webkit/CacheManager\00", align 1 +@.TypeMapEntry.10126_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.ClientCertRequest, Mono.Android\00", align 1 +@.TypeMapEntry.10127_to = private unnamed_addr constant [33 x i8] c"android/webkit/ClientCertRequest\00", align 1 +@.TypeMapEntry.10128_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.ClientCertRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10129_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.ConsoleMessage+MessageLevel, Mono.Android\00", align 1 +@.TypeMapEntry.10130_to = private unnamed_addr constant [43 x i8] c"android/webkit/ConsoleMessage$MessageLevel\00", align 1 +@.TypeMapEntry.10131_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.ConsoleMessage, Mono.Android\00", align 1 +@.TypeMapEntry.10132_to = private unnamed_addr constant [30 x i8] c"android/webkit/ConsoleMessage\00", align 1 +@.TypeMapEntry.10133_from = private unnamed_addr constant [43 x i8] c"Android.Webkit.CookieManager, Mono.Android\00", align 1 +@.TypeMapEntry.10134_to = private unnamed_addr constant [29 x i8] c"android/webkit/CookieManager\00", align 1 +@.TypeMapEntry.10135_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.CookieManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10136_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.CookieSyncManager, Mono.Android\00", align 1 +@.TypeMapEntry.10137_to = private unnamed_addr constant [33 x i8] c"android/webkit/CookieSyncManager\00", align 1 +@.TypeMapEntry.10138_from = private unnamed_addr constant [40 x i8] c"Android.Webkit.DateSorter, Mono.Android\00", align 1 +@.TypeMapEntry.10139_to = private unnamed_addr constant [26 x i8] c"android/webkit/DateSorter\00", align 1 +@.TypeMapEntry.10140_from = private unnamed_addr constant [62 x i8] c"Android.Webkit.GeolocationPermissions+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.10141_to = private unnamed_addr constant [47 x i8] c"android/webkit/GeolocationPermissions$Callback\00", align 1 +@.TypeMapEntry.10142_from = private unnamed_addr constant [69 x i8] c"Android.Webkit.GeolocationPermissions+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10143_from = private unnamed_addr constant [52 x i8] c"Android.Webkit.GeolocationPermissions, Mono.Android\00", align 1 +@.TypeMapEntry.10144_to = private unnamed_addr constant [38 x i8] c"android/webkit/GeolocationPermissions\00", align 1 +@.TypeMapEntry.10145_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.HttpAuthHandler, Mono.Android\00", align 1 +@.TypeMapEntry.10146_to = private unnamed_addr constant [31 x i8] c"android/webkit/HttpAuthHandler\00", align 1 +@.TypeMapEntry.10147_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.IDownloadListener, Mono.Android\00", align 1 +@.TypeMapEntry.10148_to = private unnamed_addr constant [32 x i8] c"android/webkit/DownloadListener\00", align 1 +@.TypeMapEntry.10149_from = private unnamed_addr constant [58 x i8] c"Android.Webkit.IDownloadListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10150_to = private unnamed_addr constant [48 x i8] c"mono/android/webkit/DownloadListenerImplementor\00", align 1 +@.TypeMapEntry.10151_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.IDownloadListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10152_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.IJavascriptInterface, Mono.Android\00", align 1 +@.TypeMapEntry.10153_to = private unnamed_addr constant [35 x i8] c"android/webkit/JavascriptInterface\00", align 1 +@.TypeMapEntry.10154_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.IJavascriptInterfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10155_from = private unnamed_addr constant [41 x i8] c"Android.Webkit.IPluginStub, Mono.Android\00", align 1 +@.TypeMapEntry.10156_to = private unnamed_addr constant [26 x i8] c"android/webkit/PluginStub\00", align 1 +@.TypeMapEntry.10157_from = private unnamed_addr constant [48 x i8] c"Android.Webkit.IPluginStubInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10158_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.IUrlInterceptHandler, Mono.Android\00", align 1 +@.TypeMapEntry.10159_to = private unnamed_addr constant [35 x i8] c"android/webkit/UrlInterceptHandler\00", align 1 +@.TypeMapEntry.10160_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.IUrlInterceptHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10161_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.IValueCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10162_to = private unnamed_addr constant [29 x i8] c"android/webkit/ValueCallback\00", align 1 +@.TypeMapEntry.10163_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.IValueCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10164_from = private unnamed_addr constant [49 x i8] c"Android.Webkit.IWebResourceRequest, Mono.Android\00", align 1 +@.TypeMapEntry.10165_to = private unnamed_addr constant [34 x i8] c"android/webkit/WebResourceRequest\00", align 1 +@.TypeMapEntry.10166_from = private unnamed_addr constant [56 x i8] c"Android.Webkit.IWebResourceRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10167_from = private unnamed_addr constant [49 x i8] c"Android.Webkit.JavascriptInterface, Mono.Android\00", align 1 +@.TypeMapEntry.10168_from = private unnamed_addr constant [56 x i8] c"Android.Webkit.JavascriptInterfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10169_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.JsPromptResult, Mono.Android\00", align 1 +@.TypeMapEntry.10170_to = private unnamed_addr constant [30 x i8] c"android/webkit/JsPromptResult\00", align 1 +@.TypeMapEntry.10171_from = private unnamed_addr constant [38 x i8] c"Android.Webkit.JsResult, Mono.Android\00", align 1 +@.TypeMapEntry.10172_to = private unnamed_addr constant [24 x i8] c"android/webkit/JsResult\00", align 1 +@.TypeMapEntry.10173_from = private unnamed_addr constant [41 x i8] c"Android.Webkit.MimeTypeMap, Mono.Android\00", align 1 +@.TypeMapEntry.10174_to = private unnamed_addr constant [27 x i8] c"android/webkit/MimeTypeMap\00", align 1 +@.TypeMapEntry.10175_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.PermissionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.10176_to = private unnamed_addr constant [33 x i8] c"android/webkit/PermissionRequest\00", align 1 +@.TypeMapEntry.10177_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.PermissionRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10178_from = private unnamed_addr constant [61 x i8] c"Android.Webkit.Plugin+IPreferencesClickHandler, Mono.Android\00", align 1 +@.TypeMapEntry.10179_to = private unnamed_addr constant [46 x i8] c"android/webkit/Plugin$PreferencesClickHandler\00", align 1 +@.TypeMapEntry.10180_from = private unnamed_addr constant [68 x i8] c"Android.Webkit.Plugin+IPreferencesClickHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10181_from = private unnamed_addr constant [36 x i8] c"Android.Webkit.Plugin, Mono.Android\00", align 1 +@.TypeMapEntry.10182_to = private unnamed_addr constant [22 x i8] c"android/webkit/Plugin\00", align 1 +@.TypeMapEntry.10183_from = private unnamed_addr constant [40 x i8] c"Android.Webkit.PluginData, Mono.Android\00", align 1 +@.TypeMapEntry.10184_to = private unnamed_addr constant [26 x i8] c"android/webkit/PluginData\00", align 1 +@.TypeMapEntry.10185_from = private unnamed_addr constant [40 x i8] c"Android.Webkit.PluginList, Mono.Android\00", align 1 +@.TypeMapEntry.10186_to = private unnamed_addr constant [26 x i8] c"android/webkit/PluginList\00", align 1 +@.TypeMapEntry.10187_from = private unnamed_addr constant [53 x i8] c"Android.Webkit.RenderProcessGoneDetail, Mono.Android\00", align 1 +@.TypeMapEntry.10188_to = private unnamed_addr constant [39 x i8] c"android/webkit/RenderProcessGoneDetail\00", align 1 +@.TypeMapEntry.10189_from = private unnamed_addr constant [60 x i8] c"Android.Webkit.RenderProcessGoneDetailInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10190_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.SafeBrowsingResponse, Mono.Android\00", align 1 +@.TypeMapEntry.10191_to = private unnamed_addr constant [36 x i8] c"android/webkit/SafeBrowsingResponse\00", align 1 +@.TypeMapEntry.10192_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.SafeBrowsingResponseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10193_from = private unnamed_addr constant [49 x i8] c"Android.Webkit.ServiceWorkerClient, Mono.Android\00", align 1 +@.TypeMapEntry.10194_to = private unnamed_addr constant [35 x i8] c"android/webkit/ServiceWorkerClient\00", align 1 +@.TypeMapEntry.10195_from = private unnamed_addr constant [53 x i8] c"Android.Webkit.ServiceWorkerController, Mono.Android\00", align 1 +@.TypeMapEntry.10196_to = private unnamed_addr constant [39 x i8] c"android/webkit/ServiceWorkerController\00", align 1 +@.TypeMapEntry.10197_from = private unnamed_addr constant [60 x i8] c"Android.Webkit.ServiceWorkerControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10198_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.ServiceWorkerWebSettings, Mono.Android\00", align 1 +@.TypeMapEntry.10199_to = private unnamed_addr constant [40 x i8] c"android/webkit/ServiceWorkerWebSettings\00", align 1 +@.TypeMapEntry.10200_from = private unnamed_addr constant [61 x i8] c"Android.Webkit.ServiceWorkerWebSettingsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10201_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.SslErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.10202_to = private unnamed_addr constant [31 x i8] c"android/webkit/SslErrorHandler\00", align 1 +@.TypeMapEntry.10203_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.TracingConfig+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10204_to = private unnamed_addr constant [37 x i8] c"android/webkit/TracingConfig$Builder\00", align 1 +@.TypeMapEntry.10205_from = private unnamed_addr constant [43 x i8] c"Android.Webkit.TracingConfig, Mono.Android\00", align 1 +@.TypeMapEntry.10206_to = private unnamed_addr constant [29 x i8] c"android/webkit/TracingConfig\00", align 1 +@.TypeMapEntry.10207_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.TracingController, Mono.Android\00", align 1 +@.TypeMapEntry.10208_to = private unnamed_addr constant [33 x i8] c"android/webkit/TracingController\00", align 1 +@.TypeMapEntry.10209_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.TracingControllerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10210_from = private unnamed_addr constant [37 x i8] c"Android.Webkit.URLUtil, Mono.Android\00", align 1 +@.TypeMapEntry.10211_to = private unnamed_addr constant [23 x i8] c"android/webkit/URLUtil\00", align 1 +@.TypeMapEntry.10212_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.UrlInterceptRegistry, Mono.Android\00", align 1 +@.TypeMapEntry.10213_to = private unnamed_addr constant [36 x i8] c"android/webkit/UrlInterceptRegistry\00", align 1 +@.TypeMapEntry.10214_from = private unnamed_addr constant [48 x i8] c"Android.Webkit.WebBackForwardList, Mono.Android\00", align 1 +@.TypeMapEntry.10215_to = private unnamed_addr constant [34 x i8] c"android/webkit/WebBackForwardList\00", align 1 +@.TypeMapEntry.10216_from = private unnamed_addr constant [55 x i8] c"Android.Webkit.WebBackForwardListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10217_from = private unnamed_addr constant [63 x i8] c"Android.Webkit.WebChromeClient+FileChooserParams, Mono.Android\00", align 1 +@.TypeMapEntry.10218_to = private unnamed_addr constant [49 x i8] c"android/webkit/WebChromeClient$FileChooserParams\00", align 1 +@.TypeMapEntry.10219_from = private unnamed_addr constant [70 x i8] c"Android.Webkit.WebChromeClient+FileChooserParamsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10220_from = private unnamed_addr constant [65 x i8] c"Android.Webkit.WebChromeClient+ICustomViewCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10221_to = private unnamed_addr constant [50 x i8] c"android/webkit/WebChromeClient$CustomViewCallback\00", align 1 +@.TypeMapEntry.10222_from = private unnamed_addr constant [72 x i8] c"Android.Webkit.WebChromeClient+ICustomViewCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10223_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.WebChromeClient, Mono.Android\00", align 1 +@.TypeMapEntry.10224_to = private unnamed_addr constant [31 x i8] c"android/webkit/WebChromeClient\00", align 1 +@.TypeMapEntry.10225_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.WebHistoryItem, Mono.Android\00", align 1 +@.TypeMapEntry.10226_to = private unnamed_addr constant [30 x i8] c"android/webkit/WebHistoryItem\00", align 1 +@.TypeMapEntry.10227_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.WebHistoryItemInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10228_from = private unnamed_addr constant [59 x i8] c"Android.Webkit.WebIconDatabase+IIconListener, Mono.Android\00", align 1 +@.TypeMapEntry.10229_to = private unnamed_addr constant [44 x i8] c"android/webkit/WebIconDatabase$IconListener\00", align 1 +@.TypeMapEntry.10230_from = private unnamed_addr constant [70 x i8] c"Android.Webkit.WebIconDatabase+IIconListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10231_to = private unnamed_addr constant [60 x i8] c"mono/android/webkit/WebIconDatabase_IconListenerImplementor\00", align 1 +@.TypeMapEntry.10232_from = private unnamed_addr constant [66 x i8] c"Android.Webkit.WebIconDatabase+IIconListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10233_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.WebIconDatabase, Mono.Android\00", align 1 +@.TypeMapEntry.10234_to = private unnamed_addr constant [31 x i8] c"android/webkit/WebIconDatabase\00", align 1 +@.TypeMapEntry.10235_from = private unnamed_addr constant [52 x i8] c"Android.Webkit.WebIconDatabaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10236_from = private unnamed_addr constant [40 x i8] c"Android.Webkit.WebMessage, Mono.Android\00", align 1 +@.TypeMapEntry.10237_to = private unnamed_addr constant [26 x i8] c"android/webkit/WebMessage\00", align 1 +@.TypeMapEntry.10238_from = private unnamed_addr constant [63 x i8] c"Android.Webkit.WebMessagePort+WebMessageCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10239_to = private unnamed_addr constant [49 x i8] c"android/webkit/WebMessagePort$WebMessageCallback\00", align 1 +@.TypeMapEntry.10240_from = private unnamed_addr constant [70 x i8] c"Android.Webkit.WebMessagePort+WebMessageCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10241_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.WebMessagePort, Mono.Android\00", align 1 +@.TypeMapEntry.10242_to = private unnamed_addr constant [30 x i8] c"android/webkit/WebMessagePort\00", align 1 +@.TypeMapEntry.10243_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.WebMessagePortInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10244_from = private unnamed_addr constant [46 x i8] c"Android.Webkit.WebResourceError, Mono.Android\00", align 1 +@.TypeMapEntry.10245_to = private unnamed_addr constant [32 x i8] c"android/webkit/WebResourceError\00", align 1 +@.TypeMapEntry.10246_from = private unnamed_addr constant [53 x i8] c"Android.Webkit.WebResourceErrorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10247_from = private unnamed_addr constant [49 x i8] c"Android.Webkit.WebResourceResponse, Mono.Android\00", align 1 +@.TypeMapEntry.10248_to = private unnamed_addr constant [35 x i8] c"android/webkit/WebResourceResponse\00", align 1 +@.TypeMapEntry.10249_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.WebSettings+LayoutAlgorithm, Mono.Android\00", align 1 +@.TypeMapEntry.10250_to = private unnamed_addr constant [43 x i8] c"android/webkit/WebSettings$LayoutAlgorithm\00", align 1 +@.TypeMapEntry.10251_from = private unnamed_addr constant [53 x i8] c"Android.Webkit.WebSettings+PluginState, Mono.Android\00", align 1 +@.TypeMapEntry.10252_to = private unnamed_addr constant [39 x i8] c"android/webkit/WebSettings$PluginState\00", align 1 +@.TypeMapEntry.10253_from = private unnamed_addr constant [56 x i8] c"Android.Webkit.WebSettings+RenderPriority, Mono.Android\00", align 1 +@.TypeMapEntry.10254_to = private unnamed_addr constant [42 x i8] c"android/webkit/WebSettings$RenderPriority\00", align 1 +@.TypeMapEntry.10255_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.WebSettings+TextSize, Mono.Android\00", align 1 +@.TypeMapEntry.10256_to = private unnamed_addr constant [36 x i8] c"android/webkit/WebSettings$TextSize\00", align 1 +@.TypeMapEntry.10257_from = private unnamed_addr constant [53 x i8] c"Android.Webkit.WebSettings+ZoomDensity, Mono.Android\00", align 1 +@.TypeMapEntry.10258_to = private unnamed_addr constant [39 x i8] c"android/webkit/WebSettings$ZoomDensity\00", align 1 +@.TypeMapEntry.10259_from = private unnamed_addr constant [41 x i8] c"Android.Webkit.WebSettings, Mono.Android\00", align 1 +@.TypeMapEntry.10260_to = private unnamed_addr constant [27 x i8] c"android/webkit/WebSettings\00", align 1 +@.TypeMapEntry.10261_from = private unnamed_addr constant [48 x i8] c"Android.Webkit.WebSettingsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10262_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.WebStorage+IQuotaUpdater, Mono.Android\00", align 1 +@.TypeMapEntry.10263_to = private unnamed_addr constant [39 x i8] c"android/webkit/WebStorage$QuotaUpdater\00", align 1 +@.TypeMapEntry.10264_from = private unnamed_addr constant [61 x i8] c"Android.Webkit.WebStorage+IQuotaUpdaterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10265_from = private unnamed_addr constant [47 x i8] c"Android.Webkit.WebStorage+Origin, Mono.Android\00", align 1 +@.TypeMapEntry.10266_to = private unnamed_addr constant [33 x i8] c"android/webkit/WebStorage$Origin\00", align 1 +@.TypeMapEntry.10267_from = private unnamed_addr constant [40 x i8] c"Android.Webkit.WebStorage, Mono.Android\00", align 1 +@.TypeMapEntry.10268_to = private unnamed_addr constant [26 x i8] c"android/webkit/WebStorage\00", align 1 +@.TypeMapEntry.10269_from = private unnamed_addr constant [44 x i8] c"Android.Webkit.WebSyncManager, Mono.Android\00", align 1 +@.TypeMapEntry.10270_to = private unnamed_addr constant [30 x i8] c"android/webkit/WebSyncManager\00", align 1 +@.TypeMapEntry.10271_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.WebSyncManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10272_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.WebView+HitTestResult, Mono.Android\00", align 1 +@.TypeMapEntry.10273_to = private unnamed_addr constant [37 x i8] c"android/webkit/WebView$HitTestResult\00", align 1 +@.TypeMapEntry.10274_from = private unnamed_addr constant [51 x i8] c"Android.Webkit.WebView+IFindListener, Mono.Android\00", align 1 +@.TypeMapEntry.10275_to = private unnamed_addr constant [36 x i8] c"android/webkit/WebView$FindListener\00", align 1 +@.TypeMapEntry.10276_from = private unnamed_addr constant [62 x i8] c"Android.Webkit.WebView+IFindListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10277_to = private unnamed_addr constant [52 x i8] c"mono/android/webkit/WebView_FindListenerImplementor\00", align 1 +@.TypeMapEntry.10278_from = private unnamed_addr constant [58 x i8] c"Android.Webkit.WebView+IFindListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10279_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.WebView+IPictureListener, Mono.Android\00", align 1 +@.TypeMapEntry.10280_to = private unnamed_addr constant [39 x i8] c"android/webkit/WebView$PictureListener\00", align 1 +@.TypeMapEntry.10281_from = private unnamed_addr constant [65 x i8] c"Android.Webkit.WebView+IPictureListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10282_to = private unnamed_addr constant [55 x i8] c"mono/android/webkit/WebView_PictureListenerImplementor\00", align 1 +@.TypeMapEntry.10283_from = private unnamed_addr constant [61 x i8] c"Android.Webkit.WebView+IPictureListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10284_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.WebView+VisualStateCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10285_to = private unnamed_addr constant [43 x i8] c"android/webkit/WebView$VisualStateCallback\00", align 1 +@.TypeMapEntry.10286_from = private unnamed_addr constant [64 x i8] c"Android.Webkit.WebView+VisualStateCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10287_from = private unnamed_addr constant [54 x i8] c"Android.Webkit.WebView+WebViewTransport, Mono.Android\00", align 1 +@.TypeMapEntry.10288_to = private unnamed_addr constant [40 x i8] c"android/webkit/WebView$WebViewTransport\00", align 1 +@.TypeMapEntry.10289_from = private unnamed_addr constant [37 x i8] c"Android.Webkit.WebView, Mono.Android\00", align 1 +@.TypeMapEntry.10290_to = private unnamed_addr constant [23 x i8] c"android/webkit/WebView\00", align 1 +@.TypeMapEntry.10291_from = private unnamed_addr constant [43 x i8] c"Android.Webkit.WebViewClient, Mono.Android\00", align 1 +@.TypeMapEntry.10292_to = private unnamed_addr constant [29 x i8] c"android/webkit/WebViewClient\00", align 1 +@.TypeMapEntry.10293_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.WebViewDatabase, Mono.Android\00", align 1 +@.TypeMapEntry.10294_to = private unnamed_addr constant [31 x i8] c"android/webkit/WebViewDatabase\00", align 1 +@.TypeMapEntry.10295_from = private unnamed_addr constant [52 x i8] c"Android.Webkit.WebViewDatabaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10296_from = private unnamed_addr constant [45 x i8] c"Android.Webkit.WebViewFragment, Mono.Android\00", align 1 +@.TypeMapEntry.10297_to = private unnamed_addr constant [31 x i8] c"android/webkit/WebViewFragment\00", align 1 +@.TypeMapEntry.10298_from = private unnamed_addr constant [50 x i8] c"Android.Webkit.WebViewRenderProcess, Mono.Android\00", align 1 +@.TypeMapEntry.10299_to = private unnamed_addr constant [36 x i8] c"android/webkit/WebViewRenderProcess\00", align 1 +@.TypeMapEntry.10300_from = private unnamed_addr constant [56 x i8] c"Android.Webkit.WebViewRenderProcessClient, Mono.Android\00", align 1 +@.TypeMapEntry.10301_to = private unnamed_addr constant [42 x i8] c"android/webkit/WebViewRenderProcessClient\00", align 1 +@.TypeMapEntry.10302_from = private unnamed_addr constant [63 x i8] c"Android.Webkit.WebViewRenderProcessClientInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10303_from = private unnamed_addr constant [57 x i8] c"Android.Webkit.WebViewRenderProcessInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10304_from = private unnamed_addr constant [66 x i8] c"Android.Widget.AbsListView+IMultiChoiceModeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10305_to = private unnamed_addr constant [51 x i8] c"android/widget/AbsListView$MultiChoiceModeListener\00", align 1 +@.TypeMapEntry.10306_from = private unnamed_addr constant [73 x i8] c"Android.Widget.AbsListView+IMultiChoiceModeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10307_from = private unnamed_addr constant [59 x i8] c"Android.Widget.AbsListView+IOnScrollListener, Mono.Android\00", align 1 +@.TypeMapEntry.10308_to = private unnamed_addr constant [44 x i8] c"android/widget/AbsListView$OnScrollListener\00", align 1 +@.TypeMapEntry.10309_from = private unnamed_addr constant [70 x i8] c"Android.Widget.AbsListView+IOnScrollListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10310_to = private unnamed_addr constant [60 x i8] c"mono/android/widget/AbsListView_OnScrollListenerImplementor\00", align 1 +@.TypeMapEntry.10311_from = private unnamed_addr constant [66 x i8] c"Android.Widget.AbsListView+IOnScrollListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10312_from = private unnamed_addr constant [59 x i8] c"Android.Widget.AbsListView+IRecyclerListener, Mono.Android\00", align 1 +@.TypeMapEntry.10313_to = private unnamed_addr constant [44 x i8] c"android/widget/AbsListView$RecyclerListener\00", align 1 +@.TypeMapEntry.10314_from = private unnamed_addr constant [70 x i8] c"Android.Widget.AbsListView+IRecyclerListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10315_to = private unnamed_addr constant [60 x i8] c"mono/android/widget/AbsListView_RecyclerListenerImplementor\00", align 1 +@.TypeMapEntry.10316_from = private unnamed_addr constant [66 x i8] c"Android.Widget.AbsListView+IRecyclerListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10317_from = private unnamed_addr constant [66 x i8] c"Android.Widget.AbsListView+ISelectionBoundsAdjuster, Mono.Android\00", align 1 +@.TypeMapEntry.10318_to = private unnamed_addr constant [51 x i8] c"android/widget/AbsListView$SelectionBoundsAdjuster\00", align 1 +@.TypeMapEntry.10319_from = private unnamed_addr constant [73 x i8] c"Android.Widget.AbsListView+ISelectionBoundsAdjusterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10320_from = private unnamed_addr constant [54 x i8] c"Android.Widget.AbsListView+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10321_to = private unnamed_addr constant [40 x i8] c"android/widget/AbsListView$LayoutParams\00", align 1 +@.TypeMapEntry.10322_from = private unnamed_addr constant [41 x i8] c"Android.Widget.AbsListView, Mono.Android\00", align 1 +@.TypeMapEntry.10323_to = private unnamed_addr constant [27 x i8] c"android/widget/AbsListView\00", align 1 +@.TypeMapEntry.10324_from = private unnamed_addr constant [48 x i8] c"Android.Widget.AbsListViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10325_from = private unnamed_addr constant [40 x i8] c"Android.Widget.AbsSeekBar, Mono.Android\00", align 1 +@.TypeMapEntry.10326_to = private unnamed_addr constant [26 x i8] c"android/widget/AbsSeekBar\00", align 1 +@.TypeMapEntry.10327_from = private unnamed_addr constant [47 x i8] c"Android.Widget.AbsSeekBarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10328_from = private unnamed_addr constant [40 x i8] c"Android.Widget.AbsSpinner, Mono.Android\00", align 1 +@.TypeMapEntry.10329_to = private unnamed_addr constant [26 x i8] c"android/widget/AbsSpinner\00", align 1 +@.TypeMapEntry.10330_from = private unnamed_addr constant [47 x i8] c"Android.Widget.AbsSpinnerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10331_from = private unnamed_addr constant [57 x i8] c"Android.Widget.AbsoluteLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10332_to = private unnamed_addr constant [43 x i8] c"android/widget/AbsoluteLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10333_from = private unnamed_addr constant [44 x i8] c"Android.Widget.AbsoluteLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10334_to = private unnamed_addr constant [30 x i8] c"android/widget/AbsoluteLayout\00", align 1 +@.TypeMapEntry.10335_from = private unnamed_addr constant [69 x i8] c"Android.Widget.ActionMenuView+IOnMenuItemClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10336_to = private unnamed_addr constant [54 x i8] c"android/widget/ActionMenuView$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.10337_from = private unnamed_addr constant [80 x i8] c"Android.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10338_to = private unnamed_addr constant [70 x i8] c"mono/android/widget/ActionMenuView_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.10339_from = private unnamed_addr constant [76 x i8] c"Android.Widget.ActionMenuView+IOnMenuItemClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10340_from = private unnamed_addr constant [57 x i8] c"Android.Widget.ActionMenuView+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10341_to = private unnamed_addr constant [43 x i8] c"android/widget/ActionMenuView$LayoutParams\00", align 1 +@.TypeMapEntry.10342_from = private unnamed_addr constant [44 x i8] c"Android.Widget.ActionMenuView, Mono.Android\00", align 1 +@.TypeMapEntry.10343_to = private unnamed_addr constant [30 x i8] c"android/widget/ActionMenuView\00", align 1 +@.TypeMapEntry.10344_from = private unnamed_addr constant [37 x i8] c"Android.Widget.Adapter, Mono.Android\00", align 1 +@.TypeMapEntry.10345_to = private unnamed_addr constant [37 x i8] c"mono/internal/android/widget/Adapter\00", align 1 +@.TypeMapEntry.10346_from = private unnamed_addr constant [64 x i8] c"Android.Widget.AdapterView+AdapterContextMenuInfo, Mono.Android\00", align 1 +@.TypeMapEntry.10347_to = private unnamed_addr constant [50 x i8] c"android/widget/AdapterView$AdapterContextMenuInfo\00", align 1 +@.TypeMapEntry.10348_from = private unnamed_addr constant [62 x i8] c"Android.Widget.AdapterView+IOnItemClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10349_to = private unnamed_addr constant [47 x i8] c"android/widget/AdapterView$OnItemClickListener\00", align 1 +@.TypeMapEntry.10350_from = private unnamed_addr constant [73 x i8] c"Android.Widget.AdapterView+IOnItemClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10351_to = private unnamed_addr constant [63 x i8] c"mono/android/widget/AdapterView_OnItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.10352_from = private unnamed_addr constant [69 x i8] c"Android.Widget.AdapterView+IOnItemClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10353_from = private unnamed_addr constant [66 x i8] c"Android.Widget.AdapterView+IOnItemLongClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10354_to = private unnamed_addr constant [51 x i8] c"android/widget/AdapterView$OnItemLongClickListener\00", align 1 +@.TypeMapEntry.10355_from = private unnamed_addr constant [77 x i8] c"Android.Widget.AdapterView+IOnItemLongClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10356_to = private unnamed_addr constant [67 x i8] c"mono/android/widget/AdapterView_OnItemLongClickListenerImplementor\00", align 1 +@.TypeMapEntry.10357_from = private unnamed_addr constant [73 x i8] c"Android.Widget.AdapterView+IOnItemLongClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10358_from = private unnamed_addr constant [65 x i8] c"Android.Widget.AdapterView+IOnItemSelectedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10359_to = private unnamed_addr constant [50 x i8] c"android/widget/AdapterView$OnItemSelectedListener\00", align 1 +@.TypeMapEntry.10360_from = private unnamed_addr constant [76 x i8] c"Android.Widget.AdapterView+IOnItemSelectedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10361_to = private unnamed_addr constant [66 x i8] c"mono/android/widget/AdapterView_OnItemSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.10362_from = private unnamed_addr constant [72 x i8] c"Android.Widget.AdapterView+IOnItemSelectedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10363_from = private unnamed_addr constant [41 x i8] c"Android.Widget.AdapterView, Mono.Android\00", align 1 +@.TypeMapEntry.10364_to = private unnamed_addr constant [27 x i8] c"android/widget/AdapterView\00", align 1 +@.TypeMapEntry.10365_from = private unnamed_addr constant [49 x i8] c"Android.Widget.AdapterViewAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.10366_to = private unnamed_addr constant [35 x i8] c"android/widget/AdapterViewAnimator\00", align 1 +@.TypeMapEntry.10367_from = private unnamed_addr constant [56 x i8] c"Android.Widget.AdapterViewAnimatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10368_from = private unnamed_addr constant [48 x i8] c"Android.Widget.AdapterViewFlipper, Mono.Android\00", align 1 +@.TypeMapEntry.10369_to = private unnamed_addr constant [34 x i8] c"android/widget/AdapterViewFlipper\00", align 1 +@.TypeMapEntry.10370_from = private unnamed_addr constant [48 x i8] c"Android.Widget.AdapterViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10371_from = private unnamed_addr constant [43 x i8] c"Android.Widget.AdapterView`1, Mono.Android\00", align 1 +@.TypeMapEntry.10372_from = private unnamed_addr constant [45 x i8] c"Android.Widget.AlphabetIndexer, Mono.Android\00", align 1 +@.TypeMapEntry.10373_to = private unnamed_addr constant [31 x i8] c"android/widget/AlphabetIndexer\00", align 1 +@.TypeMapEntry.10374_from = private unnamed_addr constant [41 x i8] c"Android.Widget.AnalogClock, Mono.Android\00", align 1 +@.TypeMapEntry.10375_to = private unnamed_addr constant [27 x i8] c"android/widget/AnalogClock\00", align 1 +@.TypeMapEntry.10376_from = private unnamed_addr constant [42 x i8] c"Android.Widget.ArrayAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10377_to = private unnamed_addr constant [28 x i8] c"android/widget/ArrayAdapter\00", align 1 +@.TypeMapEntry.10378_from = private unnamed_addr constant [44 x i8] c"Android.Widget.ArrayAdapter`1, Mono.Android\00", align 1 +@.TypeMapEntry.10379_from = private unnamed_addr constant [69 x i8] c"Android.Widget.AutoCompleteTextView+IOnDismissListener, Mono.Android\00", align 1 +@.TypeMapEntry.10380_to = private unnamed_addr constant [54 x i8] c"android/widget/AutoCompleteTextView$OnDismissListener\00", align 1 +@.TypeMapEntry.10381_from = private unnamed_addr constant [80 x i8] c"Android.Widget.AutoCompleteTextView+IOnDismissListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10382_to = private unnamed_addr constant [70 x i8] c"mono/android/widget/AutoCompleteTextView_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.10383_from = private unnamed_addr constant [76 x i8] c"Android.Widget.AutoCompleteTextView+IOnDismissListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10384_from = private unnamed_addr constant [61 x i8] c"Android.Widget.AutoCompleteTextView+IValidator, Mono.Android\00", align 1 +@.TypeMapEntry.10385_to = private unnamed_addr constant [46 x i8] c"android/widget/AutoCompleteTextView$Validator\00", align 1 +@.TypeMapEntry.10386_from = private unnamed_addr constant [68 x i8] c"Android.Widget.AutoCompleteTextView+IValidatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10387_from = private unnamed_addr constant [50 x i8] c"Android.Widget.AutoCompleteTextView, Mono.Android\00", align 1 +@.TypeMapEntry.10388_to = private unnamed_addr constant [36 x i8] c"android/widget/AutoCompleteTextView\00", align 1 +@.TypeMapEntry.10389_from = private unnamed_addr constant [41 x i8] c"Android.Widget.BaseAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10390_to = private unnamed_addr constant [27 x i8] c"android/widget/BaseAdapter\00", align 1 +@.TypeMapEntry.10391_from = private unnamed_addr constant [48 x i8] c"Android.Widget.BaseAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10392_from = private unnamed_addr constant [43 x i8] c"Android.Widget.BaseAdapter`1, Mono.Android\00", align 1 +@.TypeMapEntry.10393_from = private unnamed_addr constant [55 x i8] c"Android.Widget.BaseExpandableListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10394_to = private unnamed_addr constant [41 x i8] c"android/widget/BaseExpandableListAdapter\00", align 1 +@.TypeMapEntry.10395_from = private unnamed_addr constant [62 x i8] c"Android.Widget.BaseExpandableListAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10396_from = private unnamed_addr constant [36 x i8] c"Android.Widget.Button, Mono.Android\00", align 1 +@.TypeMapEntry.10397_to = private unnamed_addr constant [22 x i8] c"android/widget/Button\00", align 1 +@.TypeMapEntry.10398_from = private unnamed_addr constant [64 x i8] c"Android.Widget.CalendarView+IOnDateChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10399_to = private unnamed_addr constant [49 x i8] c"android/widget/CalendarView$OnDateChangeListener\00", align 1 +@.TypeMapEntry.10400_from = private unnamed_addr constant [75 x i8] c"Android.Widget.CalendarView+IOnDateChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10401_to = private unnamed_addr constant [65 x i8] c"mono/android/widget/CalendarView_OnDateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10402_from = private unnamed_addr constant [71 x i8] c"Android.Widget.CalendarView+IOnDateChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10403_from = private unnamed_addr constant [42 x i8] c"Android.Widget.CalendarView, Mono.Android\00", align 1 +@.TypeMapEntry.10404_to = private unnamed_addr constant [28 x i8] c"android/widget/CalendarView\00", align 1 +@.TypeMapEntry.10405_from = private unnamed_addr constant [38 x i8] c"Android.Widget.CheckBox, Mono.Android\00", align 1 +@.TypeMapEntry.10406_to = private unnamed_addr constant [24 x i8] c"android/widget/CheckBox\00", align 1 +@.TypeMapEntry.10407_from = private unnamed_addr constant [45 x i8] c"Android.Widget.CheckedTextView, Mono.Android\00", align 1 +@.TypeMapEntry.10408_to = private unnamed_addr constant [31 x i8] c"android/widget/CheckedTextView\00", align 1 +@.TypeMapEntry.10409_from = private unnamed_addr constant [68 x i8] c"Android.Widget.Chronometer+IOnChronometerTickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10410_to = private unnamed_addr constant [53 x i8] c"android/widget/Chronometer$OnChronometerTickListener\00", align 1 +@.TypeMapEntry.10411_from = private unnamed_addr constant [79 x i8] c"Android.Widget.Chronometer+IOnChronometerTickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10412_to = private unnamed_addr constant [69 x i8] c"mono/android/widget/Chronometer_OnChronometerTickListenerImplementor\00", align 1 +@.TypeMapEntry.10413_from = private unnamed_addr constant [75 x i8] c"Android.Widget.Chronometer+IOnChronometerTickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10414_from = private unnamed_addr constant [41 x i8] c"Android.Widget.Chronometer, Mono.Android\00", align 1 +@.TypeMapEntry.10415_to = private unnamed_addr constant [27 x i8] c"android/widget/Chronometer\00", align 1 +@.TypeMapEntry.10416_from = private unnamed_addr constant [69 x i8] c"Android.Widget.CompoundButton+IOnCheckedChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10417_to = private unnamed_addr constant [54 x i8] c"android/widget/CompoundButton$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.10418_from = private unnamed_addr constant [80 x i8] c"Android.Widget.CompoundButton+IOnCheckedChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10419_to = private unnamed_addr constant [70 x i8] c"mono/android/widget/CompoundButton_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10420_from = private unnamed_addr constant [76 x i8] c"Android.Widget.CompoundButton+IOnCheckedChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10421_from = private unnamed_addr constant [44 x i8] c"Android.Widget.CompoundButton, Mono.Android\00", align 1 +@.TypeMapEntry.10422_to = private unnamed_addr constant [30 x i8] c"android/widget/CompoundButton\00", align 1 +@.TypeMapEntry.10423_from = private unnamed_addr constant [51 x i8] c"Android.Widget.CompoundButtonInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10424_from = private unnamed_addr constant [43 x i8] c"Android.Widget.CursorAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10425_to = private unnamed_addr constant [29 x i8] c"android/widget/CursorAdapter\00", align 1 +@.TypeMapEntry.10426_from = private unnamed_addr constant [50 x i8] c"Android.Widget.CursorAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10427_from = private unnamed_addr constant [47 x i8] c"Android.Widget.CursorTreeAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10428_to = private unnamed_addr constant [33 x i8] c"android/widget/CursorTreeAdapter\00", align 1 +@.TypeMapEntry.10429_from = private unnamed_addr constant [54 x i8] c"Android.Widget.CursorTreeAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10430_from = private unnamed_addr constant [63 x i8] c"Android.Widget.DatePicker+IOnDateChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10431_to = private unnamed_addr constant [48 x i8] c"android/widget/DatePicker$OnDateChangedListener\00", align 1 +@.TypeMapEntry.10432_from = private unnamed_addr constant [74 x i8] c"Android.Widget.DatePicker+IOnDateChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10433_to = private unnamed_addr constant [64 x i8] c"mono/android/widget/DatePicker_OnDateChangedListenerImplementor\00", align 1 +@.TypeMapEntry.10434_from = private unnamed_addr constant [70 x i8] c"Android.Widget.DatePicker+IOnDateChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10435_from = private unnamed_addr constant [40 x i8] c"Android.Widget.DatePicker, Mono.Android\00", align 1 +@.TypeMapEntry.10436_to = private unnamed_addr constant [26 x i8] c"android/widget/DatePicker\00", align 1 +@.TypeMapEntry.10437_from = private unnamed_addr constant [42 x i8] c"Android.Widget.DialerFilter, Mono.Android\00", align 1 +@.TypeMapEntry.10438_to = private unnamed_addr constant [28 x i8] c"android/widget/DialerFilter\00", align 1 +@.TypeMapEntry.10439_from = private unnamed_addr constant [42 x i8] c"Android.Widget.DigitalClock, Mono.Android\00", align 1 +@.TypeMapEntry.10440_to = private unnamed_addr constant [28 x i8] c"android/widget/DigitalClock\00", align 1 +@.TypeMapEntry.10441_from = private unnamed_addr constant [40 x i8] c"Android.Widget.EdgeEffect, Mono.Android\00", align 1 +@.TypeMapEntry.10442_to = private unnamed_addr constant [26 x i8] c"android/widget/EdgeEffect\00", align 1 +@.TypeMapEntry.10443_from = private unnamed_addr constant [38 x i8] c"Android.Widget.EditText, Mono.Android\00", align 1 +@.TypeMapEntry.10444_to = private unnamed_addr constant [24 x i8] c"android/widget/EditText\00", align 1 +@.TypeMapEntry.10445_from = private unnamed_addr constant [78 x i8] c"Android.Widget.ExpandableListView+ExpandableListContextMenuInfo, Mono.Android\00", align 1 +@.TypeMapEntry.10446_to = private unnamed_addr constant [64 x i8] c"android/widget/ExpandableListView$ExpandableListContextMenuInfo\00", align 1 +@.TypeMapEntry.10447_from = private unnamed_addr constant [70 x i8] c"Android.Widget.ExpandableListView+IOnChildClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10448_to = private unnamed_addr constant [55 x i8] c"android/widget/ExpandableListView$OnChildClickListener\00", align 1 +@.TypeMapEntry.10449_from = private unnamed_addr constant [81 x i8] c"Android.Widget.ExpandableListView+IOnChildClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10450_to = private unnamed_addr constant [71 x i8] c"mono/android/widget/ExpandableListView_OnChildClickListenerImplementor\00", align 1 +@.TypeMapEntry.10451_from = private unnamed_addr constant [77 x i8] c"Android.Widget.ExpandableListView+IOnChildClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10452_from = private unnamed_addr constant [70 x i8] c"Android.Widget.ExpandableListView+IOnGroupClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10453_to = private unnamed_addr constant [55 x i8] c"android/widget/ExpandableListView$OnGroupClickListener\00", align 1 +@.TypeMapEntry.10454_from = private unnamed_addr constant [81 x i8] c"Android.Widget.ExpandableListView+IOnGroupClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10455_to = private unnamed_addr constant [71 x i8] c"mono/android/widget/ExpandableListView_OnGroupClickListenerImplementor\00", align 1 +@.TypeMapEntry.10456_from = private unnamed_addr constant [77 x i8] c"Android.Widget.ExpandableListView+IOnGroupClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10457_from = private unnamed_addr constant [73 x i8] c"Android.Widget.ExpandableListView+IOnGroupCollapseListener, Mono.Android\00", align 1 +@.TypeMapEntry.10458_to = private unnamed_addr constant [58 x i8] c"android/widget/ExpandableListView$OnGroupCollapseListener\00", align 1 +@.TypeMapEntry.10459_from = private unnamed_addr constant [84 x i8] c"Android.Widget.ExpandableListView+IOnGroupCollapseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10460_to = private unnamed_addr constant [74 x i8] c"mono/android/widget/ExpandableListView_OnGroupCollapseListenerImplementor\00", align 1 +@.TypeMapEntry.10461_from = private unnamed_addr constant [80 x i8] c"Android.Widget.ExpandableListView+IOnGroupCollapseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10462_from = private unnamed_addr constant [71 x i8] c"Android.Widget.ExpandableListView+IOnGroupExpandListener, Mono.Android\00", align 1 +@.TypeMapEntry.10463_to = private unnamed_addr constant [56 x i8] c"android/widget/ExpandableListView$OnGroupExpandListener\00", align 1 +@.TypeMapEntry.10464_from = private unnamed_addr constant [82 x i8] c"Android.Widget.ExpandableListView+IOnGroupExpandListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10465_to = private unnamed_addr constant [72 x i8] c"mono/android/widget/ExpandableListView_OnGroupExpandListenerImplementor\00", align 1 +@.TypeMapEntry.10466_from = private unnamed_addr constant [78 x i8] c"Android.Widget.ExpandableListView+IOnGroupExpandListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10467_from = private unnamed_addr constant [48 x i8] c"Android.Widget.ExpandableListView, Mono.Android\00", align 1 +@.TypeMapEntry.10468_to = private unnamed_addr constant [34 x i8] c"android/widget/ExpandableListView\00", align 1 +@.TypeMapEntry.10469_from = private unnamed_addr constant [50 x i8] c"Android.Widget.Filter+FilterResults, Mono.Android\00", align 1 +@.TypeMapEntry.10470_to = private unnamed_addr constant [36 x i8] c"android/widget/Filter$FilterResults\00", align 1 +@.TypeMapEntry.10471_from = private unnamed_addr constant [52 x i8] c"Android.Widget.Filter+IFilterListener, Mono.Android\00", align 1 +@.TypeMapEntry.10472_to = private unnamed_addr constant [37 x i8] c"android/widget/Filter$FilterListener\00", align 1 +@.TypeMapEntry.10473_from = private unnamed_addr constant [63 x i8] c"Android.Widget.Filter+IFilterListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10474_to = private unnamed_addr constant [53 x i8] c"mono/android/widget/Filter_FilterListenerImplementor\00", align 1 +@.TypeMapEntry.10475_from = private unnamed_addr constant [59 x i8] c"Android.Widget.Filter+IFilterListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10476_from = private unnamed_addr constant [36 x i8] c"Android.Widget.Filter, Mono.Android\00", align 1 +@.TypeMapEntry.10477_to = private unnamed_addr constant [22 x i8] c"android/widget/Filter\00", align 1 +@.TypeMapEntry.10478_from = private unnamed_addr constant [43 x i8] c"Android.Widget.FilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10479_from = private unnamed_addr constant [54 x i8] c"Android.Widget.FrameLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10480_to = private unnamed_addr constant [40 x i8] c"android/widget/FrameLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10481_from = private unnamed_addr constant [41 x i8] c"Android.Widget.FrameLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10482_to = private unnamed_addr constant [27 x i8] c"android/widget/FrameLayout\00", align 1 +@.TypeMapEntry.10483_from = private unnamed_addr constant [50 x i8] c"Android.Widget.Gallery+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10484_to = private unnamed_addr constant [36 x i8] c"android/widget/Gallery$LayoutParams\00", align 1 +@.TypeMapEntry.10485_from = private unnamed_addr constant [37 x i8] c"Android.Widget.Gallery, Mono.Android\00", align 1 +@.TypeMapEntry.10486_to = private unnamed_addr constant [23 x i8] c"android/widget/Gallery\00", align 1 +@.TypeMapEntry.10487_from = private unnamed_addr constant [50 x i8] c"Android.Widget.GridLayout+Alignment, Mono.Android\00", align 1 +@.TypeMapEntry.10488_to = private unnamed_addr constant [36 x i8] c"android/widget/GridLayout$Alignment\00", align 1 +@.TypeMapEntry.10489_from = private unnamed_addr constant [57 x i8] c"Android.Widget.GridLayout+AlignmentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10490_from = private unnamed_addr constant [53 x i8] c"Android.Widget.GridLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10491_to = private unnamed_addr constant [39 x i8] c"android/widget/GridLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10492_from = private unnamed_addr constant [45 x i8] c"Android.Widget.GridLayout+Spec, Mono.Android\00", align 1 +@.TypeMapEntry.10493_to = private unnamed_addr constant [31 x i8] c"android/widget/GridLayout$Spec\00", align 1 +@.TypeMapEntry.10494_from = private unnamed_addr constant [40 x i8] c"Android.Widget.GridLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10495_to = private unnamed_addr constant [26 x i8] c"android/widget/GridLayout\00", align 1 +@.TypeMapEntry.10496_from = private unnamed_addr constant [38 x i8] c"Android.Widget.GridView, Mono.Android\00", align 1 +@.TypeMapEntry.10497_to = private unnamed_addr constant [24 x i8] c"android/widget/GridView\00", align 1 +@.TypeMapEntry.10498_from = private unnamed_addr constant [51 x i8] c"Android.Widget.HeaderViewListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10499_to = private unnamed_addr constant [37 x i8] c"android/widget/HeaderViewListAdapter\00", align 1 +@.TypeMapEntry.10500_from = private unnamed_addr constant [50 x i8] c"Android.Widget.HorizontalScrollView, Mono.Android\00", align 1 +@.TypeMapEntry.10501_to = private unnamed_addr constant [36 x i8] c"android/widget/HorizontalScrollView\00", align 1 +@.TypeMapEntry.10502_from = private unnamed_addr constant [38 x i8] c"Android.Widget.IAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10503_to = private unnamed_addr constant [23 x i8] c"android/widget/Adapter\00", align 1 +@.TypeMapEntry.10504_from = private unnamed_addr constant [45 x i8] c"Android.Widget.IAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10505_from = private unnamed_addr constant [42 x i8] c"Android.Widget.IAdvanceable, Mono.Android\00", align 1 +@.TypeMapEntry.10506_to = private unnamed_addr constant [27 x i8] c"android/widget/Advanceable\00", align 1 +@.TypeMapEntry.10507_from = private unnamed_addr constant [49 x i8] c"Android.Widget.IAdvanceableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10508_from = private unnamed_addr constant [40 x i8] c"Android.Widget.ICheckable, Mono.Android\00", align 1 +@.TypeMapEntry.10509_to = private unnamed_addr constant [25 x i8] c"android/widget/Checkable\00", align 1 +@.TypeMapEntry.10510_from = private unnamed_addr constant [47 x i8] c"Android.Widget.ICheckableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10511_from = private unnamed_addr constant [52 x i8] c"Android.Widget.IExpandableListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10512_to = private unnamed_addr constant [37 x i8] c"android/widget/ExpandableListAdapter\00", align 1 +@.TypeMapEntry.10513_from = private unnamed_addr constant [59 x i8] c"Android.Widget.IExpandableListAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10514_from = private unnamed_addr constant [50 x i8] c"Android.Widget.IFilterQueryProvider, Mono.Android\00", align 1 +@.TypeMapEntry.10515_to = private unnamed_addr constant [35 x i8] c"android/widget/FilterQueryProvider\00", align 1 +@.TypeMapEntry.10516_from = private unnamed_addr constant [57 x i8] c"Android.Widget.IFilterQueryProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10517_from = private unnamed_addr constant [41 x i8] c"Android.Widget.IFilterable, Mono.Android\00", align 1 +@.TypeMapEntry.10518_to = private unnamed_addr constant [26 x i8] c"android/widget/Filterable\00", align 1 +@.TypeMapEntry.10519_from = private unnamed_addr constant [48 x i8] c"Android.Widget.IFilterableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10520_from = private unnamed_addr constant [58 x i8] c"Android.Widget.IHeterogeneousExpandableList, Mono.Android\00", align 1 +@.TypeMapEntry.10521_to = private unnamed_addr constant [43 x i8] c"android/widget/HeterogeneousExpandableList\00", align 1 +@.TypeMapEntry.10522_from = private unnamed_addr constant [65 x i8] c"Android.Widget.IHeterogeneousExpandableListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10523_from = private unnamed_addr constant [42 x i8] c"Android.Widget.IListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10524_to = private unnamed_addr constant [27 x i8] c"android/widget/ListAdapter\00", align 1 +@.TypeMapEntry.10525_from = private unnamed_addr constant [49 x i8] c"Android.Widget.IListAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10526_from = private unnamed_addr constant [45 x i8] c"Android.Widget.ISectionIndexer, Mono.Android\00", align 1 +@.TypeMapEntry.10527_to = private unnamed_addr constant [30 x i8] c"android/widget/SectionIndexer\00", align 1 +@.TypeMapEntry.10528_from = private unnamed_addr constant [52 x i8] c"Android.Widget.ISectionIndexerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10529_from = private unnamed_addr constant [45 x i8] c"Android.Widget.ISpinnerAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10530_to = private unnamed_addr constant [30 x i8] c"android/widget/SpinnerAdapter\00", align 1 +@.TypeMapEntry.10531_from = private unnamed_addr constant [52 x i8] c"Android.Widget.ISpinnerAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10532_from = private unnamed_addr constant [51 x i8] c"Android.Widget.IThemedSpinnerAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10533_to = private unnamed_addr constant [36 x i8] c"android/widget/ThemedSpinnerAdapter\00", align 1 +@.TypeMapEntry.10534_from = private unnamed_addr constant [58 x i8] c"Android.Widget.IThemedSpinnerAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10535_from = private unnamed_addr constant [49 x i8] c"Android.Widget.IWrapperListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10536_to = private unnamed_addr constant [34 x i8] c"android/widget/WrapperListAdapter\00", align 1 +@.TypeMapEntry.10537_from = private unnamed_addr constant [56 x i8] c"Android.Widget.IWrapperListAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10538_from = private unnamed_addr constant [41 x i8] c"Android.Widget.ImageButton, Mono.Android\00", align 1 +@.TypeMapEntry.10539_to = private unnamed_addr constant [27 x i8] c"android/widget/ImageButton\00", align 1 +@.TypeMapEntry.10540_from = private unnamed_addr constant [43 x i8] c"Android.Widget.ImageSwitcher, Mono.Android\00", align 1 +@.TypeMapEntry.10541_to = private unnamed_addr constant [29 x i8] c"android/widget/ImageSwitcher\00", align 1 +@.TypeMapEntry.10542_from = private unnamed_addr constant [49 x i8] c"Android.Widget.ImageView+ScaleType, Mono.Android\00", align 1 +@.TypeMapEntry.10543_to = private unnamed_addr constant [35 x i8] c"android/widget/ImageView$ScaleType\00", align 1 +@.TypeMapEntry.10544_from = private unnamed_addr constant [39 x i8] c"Android.Widget.ImageView, Mono.Android\00", align 1 +@.TypeMapEntry.10545_to = private unnamed_addr constant [25 x i8] c"android/widget/ImageView\00", align 1 +@.TypeMapEntry.10546_from = private unnamed_addr constant [78 x i8] c"Android.Widget.Inline.InlineContentView+ISurfaceControlCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10547_to = private unnamed_addr constant [63 x i8] c"android/widget/inline/InlineContentView$SurfaceControlCallback\00", align 1 +@.TypeMapEntry.10548_from = private unnamed_addr constant [85 x i8] c"Android.Widget.Inline.InlineContentView+ISurfaceControlCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10549_from = private unnamed_addr constant [54 x i8] c"Android.Widget.Inline.InlineContentView, Mono.Android\00", align 1 +@.TypeMapEntry.10550_to = private unnamed_addr constant [40 x i8] c"android/widget/inline/InlineContentView\00", align 1 +@.TypeMapEntry.10551_from = private unnamed_addr constant [67 x i8] c"Android.Widget.Inline.InlinePresentationSpec+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10552_to = private unnamed_addr constant [53 x i8] c"android/widget/inline/InlinePresentationSpec$Builder\00", align 1 +@.TypeMapEntry.10553_from = private unnamed_addr constant [59 x i8] c"Android.Widget.Inline.InlinePresentationSpec, Mono.Android\00", align 1 +@.TypeMapEntry.10554_to = private unnamed_addr constant [45 x i8] c"android/widget/inline/InlinePresentationSpec\00", align 1 +@.TypeMapEntry.10555_from = private unnamed_addr constant [55 x i8] c"Android.Widget.LinearLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10556_to = private unnamed_addr constant [41 x i8] c"android/widget/LinearLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10557_from = private unnamed_addr constant [42 x i8] c"Android.Widget.LinearLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10558_to = private unnamed_addr constant [28 x i8] c"android/widget/LinearLayout\00", align 1 +@.TypeMapEntry.10559_from = private unnamed_addr constant [45 x i8] c"Android.Widget.ListPopupWindow, Mono.Android\00", align 1 +@.TypeMapEntry.10560_to = private unnamed_addr constant [31 x i8] c"android/widget/ListPopupWindow\00", align 1 +@.TypeMapEntry.10561_from = private unnamed_addr constant [52 x i8] c"Android.Widget.ListView+FixedViewInfo, Mono.Android\00", align 1 +@.TypeMapEntry.10562_to = private unnamed_addr constant [38 x i8] c"android/widget/ListView$FixedViewInfo\00", align 1 +@.TypeMapEntry.10563_from = private unnamed_addr constant [38 x i8] c"Android.Widget.ListView, Mono.Android\00", align 1 +@.TypeMapEntry.10564_to = private unnamed_addr constant [24 x i8] c"android/widget/ListView\00", align 1 +@.TypeMapEntry.10565_from = private unnamed_addr constant [47 x i8] c"Android.Widget.Magnifier+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10566_to = private unnamed_addr constant [33 x i8] c"android/widget/Magnifier$Builder\00", align 1 +@.TypeMapEntry.10567_from = private unnamed_addr constant [39 x i8] c"Android.Widget.Magnifier, Mono.Android\00", align 1 +@.TypeMapEntry.10568_to = private unnamed_addr constant [25 x i8] c"android/widget/Magnifier\00", align 1 +@.TypeMapEntry.10569_from = private unnamed_addr constant [65 x i8] c"Android.Widget.MediaController+IMediaPlayerControl, Mono.Android\00", align 1 +@.TypeMapEntry.10570_to = private unnamed_addr constant [50 x i8] c"android/widget/MediaController$MediaPlayerControl\00", align 1 +@.TypeMapEntry.10571_from = private unnamed_addr constant [72 x i8] c"Android.Widget.MediaController+IMediaPlayerControlInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10572_from = private unnamed_addr constant [45 x i8] c"Android.Widget.MediaController, Mono.Android\00", align 1 +@.TypeMapEntry.10573_to = private unnamed_addr constant [31 x i8] c"android/widget/MediaController\00", align 1 +@.TypeMapEntry.10574_from = private unnamed_addr constant [70 x i8] c"Android.Widget.MultiAutoCompleteTextView+CommaTokenizer, Mono.Android\00", align 1 +@.TypeMapEntry.10575_to = private unnamed_addr constant [56 x i8] c"android/widget/MultiAutoCompleteTextView$CommaTokenizer\00", align 1 +@.TypeMapEntry.10576_from = private unnamed_addr constant [66 x i8] c"Android.Widget.MultiAutoCompleteTextView+ITokenizer, Mono.Android\00", align 1 +@.TypeMapEntry.10577_to = private unnamed_addr constant [51 x i8] c"android/widget/MultiAutoCompleteTextView$Tokenizer\00", align 1 +@.TypeMapEntry.10578_from = private unnamed_addr constant [73 x i8] c"Android.Widget.MultiAutoCompleteTextView+ITokenizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10579_from = private unnamed_addr constant [55 x i8] c"Android.Widget.MultiAutoCompleteTextView, Mono.Android\00", align 1 +@.TypeMapEntry.10580_to = private unnamed_addr constant [41 x i8] c"android/widget/MultiAutoCompleteTextView\00", align 1 +@.TypeMapEntry.10581_from = private unnamed_addr constant [53 x i8] c"Android.Widget.NumberPicker+IFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.10582_to = private unnamed_addr constant [38 x i8] c"android/widget/NumberPicker$Formatter\00", align 1 +@.TypeMapEntry.10583_from = private unnamed_addr constant [60 x i8] c"Android.Widget.NumberPicker+IFormatterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10584_from = private unnamed_addr constant [60 x i8] c"Android.Widget.NumberPicker+IOnScrollListener, Mono.Android\00", align 1 +@.TypeMapEntry.10585_to = private unnamed_addr constant [45 x i8] c"android/widget/NumberPicker$OnScrollListener\00", align 1 +@.TypeMapEntry.10586_from = private unnamed_addr constant [71 x i8] c"Android.Widget.NumberPicker+IOnScrollListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10587_to = private unnamed_addr constant [61 x i8] c"mono/android/widget/NumberPicker_OnScrollListenerImplementor\00", align 1 +@.TypeMapEntry.10588_from = private unnamed_addr constant [67 x i8] c"Android.Widget.NumberPicker+IOnScrollListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10589_from = private unnamed_addr constant [65 x i8] c"Android.Widget.NumberPicker+IOnValueChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10590_to = private unnamed_addr constant [50 x i8] c"android/widget/NumberPicker$OnValueChangeListener\00", align 1 +@.TypeMapEntry.10591_from = private unnamed_addr constant [76 x i8] c"Android.Widget.NumberPicker+IOnValueChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10592_to = private unnamed_addr constant [66 x i8] c"mono/android/widget/NumberPicker_OnValueChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10593_from = private unnamed_addr constant [72 x i8] c"Android.Widget.NumberPicker+IOnValueChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10594_from = private unnamed_addr constant [42 x i8] c"Android.Widget.NumberPicker, Mono.Android\00", align 1 +@.TypeMapEntry.10595_to = private unnamed_addr constant [28 x i8] c"android/widget/NumberPicker\00", align 1 +@.TypeMapEntry.10596_from = private unnamed_addr constant [42 x i8] c"Android.Widget.OverScroller, Mono.Android\00", align 1 +@.TypeMapEntry.10597_to = private unnamed_addr constant [28 x i8] c"android/widget/OverScroller\00", align 1 +@.TypeMapEntry.10598_from = private unnamed_addr constant [58 x i8] c"Android.Widget.PopupMenu+IOnDismissListener, Mono.Android\00", align 1 +@.TypeMapEntry.10599_to = private unnamed_addr constant [43 x i8] c"android/widget/PopupMenu$OnDismissListener\00", align 1 +@.TypeMapEntry.10600_from = private unnamed_addr constant [69 x i8] c"Android.Widget.PopupMenu+IOnDismissListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10601_to = private unnamed_addr constant [59 x i8] c"mono/android/widget/PopupMenu_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.10602_from = private unnamed_addr constant [65 x i8] c"Android.Widget.PopupMenu+IOnDismissListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10603_from = private unnamed_addr constant [64 x i8] c"Android.Widget.PopupMenu+IOnMenuItemClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10604_to = private unnamed_addr constant [49 x i8] c"android/widget/PopupMenu$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.10605_from = private unnamed_addr constant [75 x i8] c"Android.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10606_to = private unnamed_addr constant [65 x i8] c"mono/android/widget/PopupMenu_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.10607_from = private unnamed_addr constant [71 x i8] c"Android.Widget.PopupMenu+IOnMenuItemClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10608_from = private unnamed_addr constant [39 x i8] c"Android.Widget.PopupMenu, Mono.Android\00", align 1 +@.TypeMapEntry.10609_to = private unnamed_addr constant [25 x i8] c"android/widget/PopupMenu\00", align 1 +@.TypeMapEntry.10610_from = private unnamed_addr constant [60 x i8] c"Android.Widget.PopupWindow+IOnDismissListener, Mono.Android\00", align 1 +@.TypeMapEntry.10611_to = private unnamed_addr constant [45 x i8] c"android/widget/PopupWindow$OnDismissListener\00", align 1 +@.TypeMapEntry.10612_from = private unnamed_addr constant [71 x i8] c"Android.Widget.PopupWindow+IOnDismissListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10613_to = private unnamed_addr constant [61 x i8] c"mono/android/widget/PopupWindow_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.10614_from = private unnamed_addr constant [67 x i8] c"Android.Widget.PopupWindow+IOnDismissListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10615_from = private unnamed_addr constant [41 x i8] c"Android.Widget.PopupWindow, Mono.Android\00", align 1 +@.TypeMapEntry.10616_to = private unnamed_addr constant [27 x i8] c"android/widget/PopupWindow\00", align 1 +@.TypeMapEntry.10617_from = private unnamed_addr constant [41 x i8] c"Android.Widget.ProgressBar, Mono.Android\00", align 1 +@.TypeMapEntry.10618_to = private unnamed_addr constant [27 x i8] c"android/widget/ProgressBar\00", align 1 +@.TypeMapEntry.10619_from = private unnamed_addr constant [47 x i8] c"Android.Widget.QuickContactBadge, Mono.Android\00", align 1 +@.TypeMapEntry.10620_to = private unnamed_addr constant [33 x i8] c"android/widget/QuickContactBadge\00", align 1 +@.TypeMapEntry.10621_from = private unnamed_addr constant [41 x i8] c"Android.Widget.RadioButton, Mono.Android\00", align 1 +@.TypeMapEntry.10622_to = private unnamed_addr constant [27 x i8] c"android/widget/RadioButton\00", align 1 +@.TypeMapEntry.10623_from = private unnamed_addr constant [65 x i8] c"Android.Widget.RadioGroup+IOnCheckedChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10624_to = private unnamed_addr constant [50 x i8] c"android/widget/RadioGroup$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.10625_from = private unnamed_addr constant [76 x i8] c"Android.Widget.RadioGroup+IOnCheckedChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10626_to = private unnamed_addr constant [66 x i8] c"mono/android/widget/RadioGroup_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10627_from = private unnamed_addr constant [72 x i8] c"Android.Widget.RadioGroup+IOnCheckedChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10628_from = private unnamed_addr constant [53 x i8] c"Android.Widget.RadioGroup+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10629_to = private unnamed_addr constant [39 x i8] c"android/widget/RadioGroup$LayoutParams\00", align 1 +@.TypeMapEntry.10630_from = private unnamed_addr constant [40 x i8] c"Android.Widget.RadioGroup, Mono.Android\00", align 1 +@.TypeMapEntry.10631_to = private unnamed_addr constant [26 x i8] c"android/widget/RadioGroup\00", align 1 +@.TypeMapEntry.10632_from = private unnamed_addr constant [66 x i8] c"Android.Widget.RatingBar+IOnRatingBarChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10633_to = private unnamed_addr constant [51 x i8] c"android/widget/RatingBar$OnRatingBarChangeListener\00", align 1 +@.TypeMapEntry.10634_from = private unnamed_addr constant [77 x i8] c"Android.Widget.RatingBar+IOnRatingBarChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10635_to = private unnamed_addr constant [67 x i8] c"mono/android/widget/RatingBar_OnRatingBarChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10636_from = private unnamed_addr constant [73 x i8] c"Android.Widget.RatingBar+IOnRatingBarChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10637_from = private unnamed_addr constant [39 x i8] c"Android.Widget.RatingBar, Mono.Android\00", align 1 +@.TypeMapEntry.10638_to = private unnamed_addr constant [25 x i8] c"android/widget/RatingBar\00", align 1 +@.TypeMapEntry.10639_from = private unnamed_addr constant [57 x i8] c"Android.Widget.RelativeLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10640_to = private unnamed_addr constant [43 x i8] c"android/widget/RelativeLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10641_from = private unnamed_addr constant [44 x i8] c"Android.Widget.RelativeLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10642_to = private unnamed_addr constant [30 x i8] c"android/widget/RelativeLayout\00", align 1 +@.TypeMapEntry.10643_from = private unnamed_addr constant [57 x i8] c"Android.Widget.RemoteViews+ActionException, Mono.Android\00", align 1 +@.TypeMapEntry.10644_to = private unnamed_addr constant [43 x i8] c"android/widget/RemoteViews$ActionException\00", align 1 +@.TypeMapEntry.10645_from = private unnamed_addr constant [66 x i8] c"Android.Widget.RemoteViews+DrawInstructions+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10646_to = private unnamed_addr constant [52 x i8] c"android/widget/RemoteViews$DrawInstructions$Builder\00", align 1 +@.TypeMapEntry.10647_from = private unnamed_addr constant [58 x i8] c"Android.Widget.RemoteViews+DrawInstructions, Mono.Android\00", align 1 +@.TypeMapEntry.10648_to = private unnamed_addr constant [44 x i8] c"android/widget/RemoteViews$DrawInstructions\00", align 1 +@.TypeMapEntry.10649_from = private unnamed_addr constant [71 x i8] c"Android.Widget.RemoteViews+RemoteCollectionItems+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.10650_to = private unnamed_addr constant [57 x i8] c"android/widget/RemoteViews$RemoteCollectionItems$Builder\00", align 1 +@.TypeMapEntry.10651_from = private unnamed_addr constant [63 x i8] c"Android.Widget.RemoteViews+RemoteCollectionItems, Mono.Android\00", align 1 +@.TypeMapEntry.10652_to = private unnamed_addr constant [49 x i8] c"android/widget/RemoteViews$RemoteCollectionItems\00", align 1 +@.TypeMapEntry.10653_from = private unnamed_addr constant [56 x i8] c"Android.Widget.RemoteViews+RemoteResponse, Mono.Android\00", align 1 +@.TypeMapEntry.10654_to = private unnamed_addr constant [42 x i8] c"android/widget/RemoteViews$RemoteResponse\00", align 1 +@.TypeMapEntry.10655_from = private unnamed_addr constant [52 x i8] c"Android.Widget.RemoteViews+RemoteView, Mono.Android\00", align 1 +@.TypeMapEntry.10656_to = private unnamed_addr constant [38 x i8] c"android/widget/RemoteViews$RemoteView\00", align 1 +@.TypeMapEntry.10657_from = private unnamed_addr constant [59 x i8] c"Android.Widget.RemoteViews+RemoteViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10658_from = private unnamed_addr constant [67 x i8] c"Android.Widget.RemoteViews+RemoteViewOutlineProvider, Mono.Android\00", align 1 +@.TypeMapEntry.10659_to = private unnamed_addr constant [53 x i8] c"android/widget/RemoteViews$RemoteViewOutlineProvider\00", align 1 +@.TypeMapEntry.10660_from = private unnamed_addr constant [41 x i8] c"Android.Widget.RemoteViews, Mono.Android\00", align 1 +@.TypeMapEntry.10661_to = private unnamed_addr constant [27 x i8] c"android/widget/RemoteViews\00", align 1 +@.TypeMapEntry.10662_from = private unnamed_addr constant [68 x i8] c"Android.Widget.RemoteViewsService+IRemoteViewsFactory, Mono.Android\00", align 1 +@.TypeMapEntry.10663_to = private unnamed_addr constant [53 x i8] c"android/widget/RemoteViewsService$RemoteViewsFactory\00", align 1 +@.TypeMapEntry.10664_from = private unnamed_addr constant [75 x i8] c"Android.Widget.RemoteViewsService+IRemoteViewsFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10665_from = private unnamed_addr constant [48 x i8] c"Android.Widget.RemoteViewsService, Mono.Android\00", align 1 +@.TypeMapEntry.10666_to = private unnamed_addr constant [34 x i8] c"android/widget/RemoteViewsService\00", align 1 +@.TypeMapEntry.10667_from = private unnamed_addr constant [55 x i8] c"Android.Widget.RemoteViewsServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10668_from = private unnamed_addr constant [51 x i8] c"Android.Widget.ResourceCursorAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10669_to = private unnamed_addr constant [37 x i8] c"android/widget/ResourceCursorAdapter\00", align 1 +@.TypeMapEntry.10670_from = private unnamed_addr constant [58 x i8] c"Android.Widget.ResourceCursorAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10671_from = private unnamed_addr constant [55 x i8] c"Android.Widget.ResourceCursorTreeAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10672_to = private unnamed_addr constant [41 x i8] c"android/widget/ResourceCursorTreeAdapter\00", align 1 +@.TypeMapEntry.10673_from = private unnamed_addr constant [62 x i8] c"Android.Widget.ResourceCursorTreeAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10674_from = private unnamed_addr constant [40 x i8] c"Android.Widget.ScrollView, Mono.Android\00", align 1 +@.TypeMapEntry.10675_to = private unnamed_addr constant [26 x i8] c"android/widget/ScrollView\00", align 1 +@.TypeMapEntry.10676_from = private unnamed_addr constant [38 x i8] c"Android.Widget.Scroller, Mono.Android\00", align 1 +@.TypeMapEntry.10677_to = private unnamed_addr constant [24 x i8] c"android/widget/Scroller\00", align 1 +@.TypeMapEntry.10678_from = private unnamed_addr constant [57 x i8] c"Android.Widget.SearchView+IOnCloseListener, Mono.Android\00", align 1 +@.TypeMapEntry.10679_to = private unnamed_addr constant [42 x i8] c"android/widget/SearchView$OnCloseListener\00", align 1 +@.TypeMapEntry.10680_from = private unnamed_addr constant [68 x i8] c"Android.Widget.SearchView+IOnCloseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10681_to = private unnamed_addr constant [58 x i8] c"mono/android/widget/SearchView_OnCloseListenerImplementor\00", align 1 +@.TypeMapEntry.10682_from = private unnamed_addr constant [64 x i8] c"Android.Widget.SearchView+IOnCloseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10683_from = private unnamed_addr constant [61 x i8] c"Android.Widget.SearchView+IOnQueryTextListener, Mono.Android\00", align 1 +@.TypeMapEntry.10684_to = private unnamed_addr constant [46 x i8] c"android/widget/SearchView$OnQueryTextListener\00", align 1 +@.TypeMapEntry.10685_from = private unnamed_addr constant [72 x i8] c"Android.Widget.SearchView+IOnQueryTextListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10686_to = private unnamed_addr constant [62 x i8] c"mono/android/widget/SearchView_OnQueryTextListenerImplementor\00", align 1 +@.TypeMapEntry.10687_from = private unnamed_addr constant [68 x i8] c"Android.Widget.SearchView+IOnQueryTextListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10688_from = private unnamed_addr constant [62 x i8] c"Android.Widget.SearchView+IOnSuggestionListener, Mono.Android\00", align 1 +@.TypeMapEntry.10689_to = private unnamed_addr constant [47 x i8] c"android/widget/SearchView$OnSuggestionListener\00", align 1 +@.TypeMapEntry.10690_from = private unnamed_addr constant [73 x i8] c"Android.Widget.SearchView+IOnSuggestionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10691_to = private unnamed_addr constant [63 x i8] c"mono/android/widget/SearchView_OnSuggestionListenerImplementor\00", align 1 +@.TypeMapEntry.10692_from = private unnamed_addr constant [69 x i8] c"Android.Widget.SearchView+IOnSuggestionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10693_from = private unnamed_addr constant [40 x i8] c"Android.Widget.SearchView, Mono.Android\00", align 1 +@.TypeMapEntry.10694_to = private unnamed_addr constant [26 x i8] c"android/widget/SearchView\00", align 1 +@.TypeMapEntry.10695_from = private unnamed_addr constant [62 x i8] c"Android.Widget.SeekBar+IOnSeekBarChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10696_to = private unnamed_addr constant [47 x i8] c"android/widget/SeekBar$OnSeekBarChangeListener\00", align 1 +@.TypeMapEntry.10697_from = private unnamed_addr constant [73 x i8] c"Android.Widget.SeekBar+IOnSeekBarChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10698_to = private unnamed_addr constant [63 x i8] c"mono/android/widget/SeekBar_OnSeekBarChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10699_from = private unnamed_addr constant [69 x i8] c"Android.Widget.SeekBar+IOnSeekBarChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10700_from = private unnamed_addr constant [37 x i8] c"Android.Widget.SeekBar, Mono.Android\00", align 1 +@.TypeMapEntry.10701_to = private unnamed_addr constant [23 x i8] c"android/widget/SeekBar\00", align 1 +@.TypeMapEntry.10702_from = private unnamed_addr constant [80 x i8] c"Android.Widget.ShareActionProvider+IOnShareTargetSelectedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10703_to = private unnamed_addr constant [65 x i8] c"android/widget/ShareActionProvider$OnShareTargetSelectedListener\00", align 1 +@.TypeMapEntry.10704_from = private unnamed_addr constant [91 x i8] c"Android.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10705_to = private unnamed_addr constant [81 x i8] c"mono/android/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.10706_from = private unnamed_addr constant [87 x i8] c"Android.Widget.ShareActionProvider+IOnShareTargetSelectedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10707_from = private unnamed_addr constant [49 x i8] c"Android.Widget.ShareActionProvider, Mono.Android\00", align 1 +@.TypeMapEntry.10708_to = private unnamed_addr constant [35 x i8] c"android/widget/ShareActionProvider\00", align 1 +@.TypeMapEntry.10709_from = private unnamed_addr constant [55 x i8] c"Android.Widget.SimpleAdapter+IViewBinder, Mono.Android\00", align 1 +@.TypeMapEntry.10710_to = private unnamed_addr constant [40 x i8] c"android/widget/SimpleAdapter$ViewBinder\00", align 1 +@.TypeMapEntry.10711_from = private unnamed_addr constant [62 x i8] c"Android.Widget.SimpleAdapter+IViewBinderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10712_from = private unnamed_addr constant [43 x i8] c"Android.Widget.SimpleAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10713_to = private unnamed_addr constant [29 x i8] c"android/widget/SimpleAdapter\00", align 1 +@.TypeMapEntry.10714_from = private unnamed_addr constant [74 x i8] c"Android.Widget.SimpleCursorAdapter+ICursorToStringConverter, Mono.Android\00", align 1 +@.TypeMapEntry.10715_to = private unnamed_addr constant [59 x i8] c"android/widget/SimpleCursorAdapter$CursorToStringConverter\00", align 1 +@.TypeMapEntry.10716_from = private unnamed_addr constant [81 x i8] c"Android.Widget.SimpleCursorAdapter+ICursorToStringConverterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10717_from = private unnamed_addr constant [61 x i8] c"Android.Widget.SimpleCursorAdapter+IViewBinder, Mono.Android\00", align 1 +@.TypeMapEntry.10718_to = private unnamed_addr constant [46 x i8] c"android/widget/SimpleCursorAdapter$ViewBinder\00", align 1 +@.TypeMapEntry.10719_from = private unnamed_addr constant [68 x i8] c"Android.Widget.SimpleCursorAdapter+IViewBinderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10720_from = private unnamed_addr constant [49 x i8] c"Android.Widget.SimpleCursorAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10721_to = private unnamed_addr constant [35 x i8] c"android/widget/SimpleCursorAdapter\00", align 1 +@.TypeMapEntry.10722_from = private unnamed_addr constant [65 x i8] c"Android.Widget.SimpleCursorTreeAdapter+IViewBinder, Mono.Android\00", align 1 +@.TypeMapEntry.10723_to = private unnamed_addr constant [50 x i8] c"android/widget/SimpleCursorTreeAdapter$ViewBinder\00", align 1 +@.TypeMapEntry.10724_from = private unnamed_addr constant [72 x i8] c"Android.Widget.SimpleCursorTreeAdapter+IViewBinderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10725_from = private unnamed_addr constant [53 x i8] c"Android.Widget.SimpleCursorTreeAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10726_to = private unnamed_addr constant [39 x i8] c"android/widget/SimpleCursorTreeAdapter\00", align 1 +@.TypeMapEntry.10727_from = private unnamed_addr constant [60 x i8] c"Android.Widget.SimpleCursorTreeAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10728_from = private unnamed_addr constant [57 x i8] c"Android.Widget.SimpleExpandableListAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.10729_to = private unnamed_addr constant [43 x i8] c"android/widget/SimpleExpandableListAdapter\00", align 1 +@.TypeMapEntry.10730_from = private unnamed_addr constant [66 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerCloseListener, Mono.Android\00", align 1 +@.TypeMapEntry.10731_to = private unnamed_addr constant [51 x i8] c"android/widget/SlidingDrawer$OnDrawerCloseListener\00", align 1 +@.TypeMapEntry.10732_from = private unnamed_addr constant [77 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerCloseListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10733_to = private unnamed_addr constant [67 x i8] c"mono/android/widget/SlidingDrawer_OnDrawerCloseListenerImplementor\00", align 1 +@.TypeMapEntry.10734_from = private unnamed_addr constant [73 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerCloseListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10735_from = private unnamed_addr constant [65 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerOpenListener, Mono.Android\00", align 1 +@.TypeMapEntry.10736_to = private unnamed_addr constant [50 x i8] c"android/widget/SlidingDrawer$OnDrawerOpenListener\00", align 1 +@.TypeMapEntry.10737_from = private unnamed_addr constant [76 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerOpenListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10738_to = private unnamed_addr constant [66 x i8] c"mono/android/widget/SlidingDrawer_OnDrawerOpenListenerImplementor\00", align 1 +@.TypeMapEntry.10739_from = private unnamed_addr constant [72 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerOpenListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10740_from = private unnamed_addr constant [67 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerScrollListener, Mono.Android\00", align 1 +@.TypeMapEntry.10741_to = private unnamed_addr constant [52 x i8] c"android/widget/SlidingDrawer$OnDrawerScrollListener\00", align 1 +@.TypeMapEntry.10742_from = private unnamed_addr constant [78 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerScrollListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10743_to = private unnamed_addr constant [68 x i8] c"mono/android/widget/SlidingDrawer_OnDrawerScrollListenerImplementor\00", align 1 +@.TypeMapEntry.10744_from = private unnamed_addr constant [74 x i8] c"Android.Widget.SlidingDrawer+IOnDrawerScrollListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10745_from = private unnamed_addr constant [43 x i8] c"Android.Widget.SlidingDrawer, Mono.Android\00", align 1 +@.TypeMapEntry.10746_to = private unnamed_addr constant [29 x i8] c"android/widget/SlidingDrawer\00", align 1 +@.TypeMapEntry.10747_from = private unnamed_addr constant [35 x i8] c"Android.Widget.Space, Mono.Android\00", align 1 +@.TypeMapEntry.10748_to = private unnamed_addr constant [21 x i8] c"android/widget/Space\00", align 1 +@.TypeMapEntry.10749_from = private unnamed_addr constant [37 x i8] c"Android.Widget.Spinner, Mono.Android\00", align 1 +@.TypeMapEntry.10750_to = private unnamed_addr constant [23 x i8] c"android/widget/Spinner\00", align 1 +@.TypeMapEntry.10751_from = private unnamed_addr constant [39 x i8] c"Android.Widget.StackView, Mono.Android\00", align 1 +@.TypeMapEntry.10752_to = private unnamed_addr constant [25 x i8] c"android/widget/StackView\00", align 1 +@.TypeMapEntry.10753_from = private unnamed_addr constant [36 x i8] c"Android.Widget.Switch, Mono.Android\00", align 1 +@.TypeMapEntry.10754_to = private unnamed_addr constant [22 x i8] c"android/widget/Switch\00", align 1 +@.TypeMapEntry.10755_from = private unnamed_addr constant [58 x i8] c"Android.Widget.TabHost+IOnTabChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.10756_to = private unnamed_addr constant [43 x i8] c"android/widget/TabHost$OnTabChangeListener\00", align 1 +@.TypeMapEntry.10757_from = private unnamed_addr constant [69 x i8] c"Android.Widget.TabHost+IOnTabChangeListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10758_to = private unnamed_addr constant [59 x i8] c"mono/android/widget/TabHost_OnTabChangeListenerImplementor\00", align 1 +@.TypeMapEntry.10759_from = private unnamed_addr constant [65 x i8] c"Android.Widget.TabHost+IOnTabChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10760_from = private unnamed_addr constant [56 x i8] c"Android.Widget.TabHost+ITabContentFactory, Mono.Android\00", align 1 +@.TypeMapEntry.10761_to = private unnamed_addr constant [41 x i8] c"android/widget/TabHost$TabContentFactory\00", align 1 +@.TypeMapEntry.10762_from = private unnamed_addr constant [63 x i8] c"Android.Widget.TabHost+ITabContentFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10763_from = private unnamed_addr constant [45 x i8] c"Android.Widget.TabHost+TabSpec, Mono.Android\00", align 1 +@.TypeMapEntry.10764_to = private unnamed_addr constant [31 x i8] c"android/widget/TabHost$TabSpec\00", align 1 +@.TypeMapEntry.10765_from = private unnamed_addr constant [37 x i8] c"Android.Widget.TabHost, Mono.Android\00", align 1 +@.TypeMapEntry.10766_to = private unnamed_addr constant [23 x i8] c"android/widget/TabHost\00", align 1 +@.TypeMapEntry.10767_from = private unnamed_addr constant [39 x i8] c"Android.Widget.TabWidget, Mono.Android\00", align 1 +@.TypeMapEntry.10768_to = private unnamed_addr constant [25 x i8] c"android/widget/TabWidget\00", align 1 +@.TypeMapEntry.10769_from = private unnamed_addr constant [54 x i8] c"Android.Widget.TableLayout+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10770_to = private unnamed_addr constant [40 x i8] c"android/widget/TableLayout$LayoutParams\00", align 1 +@.TypeMapEntry.10771_from = private unnamed_addr constant [41 x i8] c"Android.Widget.TableLayout, Mono.Android\00", align 1 +@.TypeMapEntry.10772_to = private unnamed_addr constant [27 x i8] c"android/widget/TableLayout\00", align 1 +@.TypeMapEntry.10773_from = private unnamed_addr constant [51 x i8] c"Android.Widget.TableRow+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10774_to = private unnamed_addr constant [37 x i8] c"android/widget/TableRow$LayoutParams\00", align 1 +@.TypeMapEntry.10775_from = private unnamed_addr constant [38 x i8] c"Android.Widget.TableRow, Mono.Android\00", align 1 +@.TypeMapEntry.10776_to = private unnamed_addr constant [24 x i8] c"android/widget/TableRow\00", align 1 +@.TypeMapEntry.10777_from = private unnamed_addr constant [39 x i8] c"Android.Widget.TextClock, Mono.Android\00", align 1 +@.TypeMapEntry.10778_to = private unnamed_addr constant [25 x i8] c"android/widget/TextClock\00", align 1 +@.TypeMapEntry.10779_from = private unnamed_addr constant [42 x i8] c"Android.Widget.TextSwitcher, Mono.Android\00", align 1 +@.TypeMapEntry.10780_to = private unnamed_addr constant [28 x i8] c"android/widget/TextSwitcher\00", align 1 +@.TypeMapEntry.10781_from = private unnamed_addr constant [49 x i8] c"Android.Widget.TextView+BufferType, Mono.Android\00", align 1 +@.TypeMapEntry.10782_to = private unnamed_addr constant [35 x i8] c"android/widget/TextView$BufferType\00", align 1 +@.TypeMapEntry.10783_from = private unnamed_addr constant [62 x i8] c"Android.Widget.TextView+IOnEditorActionListener, Mono.Android\00", align 1 +@.TypeMapEntry.10784_to = private unnamed_addr constant [47 x i8] c"android/widget/TextView$OnEditorActionListener\00", align 1 +@.TypeMapEntry.10785_from = private unnamed_addr constant [73 x i8] c"Android.Widget.TextView+IOnEditorActionListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10786_to = private unnamed_addr constant [63 x i8] c"mono/android/widget/TextView_OnEditorActionListenerImplementor\00", align 1 +@.TypeMapEntry.10787_from = private unnamed_addr constant [69 x i8] c"Android.Widget.TextView+IOnEditorActionListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10788_from = private unnamed_addr constant [49 x i8] c"Android.Widget.TextView+SavedState, Mono.Android\00", align 1 +@.TypeMapEntry.10789_to = private unnamed_addr constant [35 x i8] c"android/widget/TextView$SavedState\00", align 1 +@.TypeMapEntry.10790_from = private unnamed_addr constant [38 x i8] c"Android.Widget.TextView, Mono.Android\00", align 1 +@.TypeMapEntry.10791_to = private unnamed_addr constant [24 x i8] c"android/widget/TextView\00", align 1 +@.TypeMapEntry.10792_from = private unnamed_addr constant [63 x i8] c"Android.Widget.TimePicker+IOnTimeChangedListener, Mono.Android\00", align 1 +@.TypeMapEntry.10793_to = private unnamed_addr constant [48 x i8] c"android/widget/TimePicker$OnTimeChangedListener\00", align 1 +@.TypeMapEntry.10794_from = private unnamed_addr constant [74 x i8] c"Android.Widget.TimePicker+IOnTimeChangedListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10795_to = private unnamed_addr constant [64 x i8] c"mono/android/widget/TimePicker_OnTimeChangedListenerImplementor\00", align 1 +@.TypeMapEntry.10796_from = private unnamed_addr constant [70 x i8] c"Android.Widget.TimePicker+IOnTimeChangedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10797_from = private unnamed_addr constant [40 x i8] c"Android.Widget.TimePicker, Mono.Android\00", align 1 +@.TypeMapEntry.10798_to = private unnamed_addr constant [26 x i8] c"android/widget/TimePicker\00", align 1 +@.TypeMapEntry.10799_from = private unnamed_addr constant [44 x i8] c"Android.Widget.Toast+Callback, Mono.Android\00", align 1 +@.TypeMapEntry.10800_to = private unnamed_addr constant [30 x i8] c"android/widget/Toast$Callback\00", align 1 +@.TypeMapEntry.10801_from = private unnamed_addr constant [51 x i8] c"Android.Widget.Toast+CallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10802_from = private unnamed_addr constant [35 x i8] c"Android.Widget.Toast, Mono.Android\00", align 1 +@.TypeMapEntry.10803_to = private unnamed_addr constant [21 x i8] c"android/widget/Toast\00", align 1 +@.TypeMapEntry.10804_from = private unnamed_addr constant [42 x i8] c"Android.Widget.ToggleButton, Mono.Android\00", align 1 +@.TypeMapEntry.10805_to = private unnamed_addr constant [28 x i8] c"android/widget/ToggleButton\00", align 1 +@.TypeMapEntry.10806_from = private unnamed_addr constant [62 x i8] c"Android.Widget.Toolbar+IOnMenuItemClickListener, Mono.Android\00", align 1 +@.TypeMapEntry.10807_to = private unnamed_addr constant [47 x i8] c"android/widget/Toolbar$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.10808_from = private unnamed_addr constant [73 x i8] c"Android.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10809_to = private unnamed_addr constant [63 x i8] c"mono/android/widget/Toolbar_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.10810_from = private unnamed_addr constant [69 x i8] c"Android.Widget.Toolbar+IOnMenuItemClickListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10811_from = private unnamed_addr constant [50 x i8] c"Android.Widget.Toolbar+LayoutParams, Mono.Android\00", align 1 +@.TypeMapEntry.10812_to = private unnamed_addr constant [36 x i8] c"android/widget/Toolbar$LayoutParams\00", align 1 +@.TypeMapEntry.10813_from = private unnamed_addr constant [37 x i8] c"Android.Widget.Toolbar, Mono.Android\00", align 1 +@.TypeMapEntry.10814_to = private unnamed_addr constant [23 x i8] c"android/widget/Toolbar\00", align 1 +@.TypeMapEntry.10815_from = private unnamed_addr constant [45 x i8] c"Android.Widget.TwoLineListItem, Mono.Android\00", align 1 +@.TypeMapEntry.10816_to = private unnamed_addr constant [31 x i8] c"android/widget/TwoLineListItem\00", align 1 +@.TypeMapEntry.10817_from = private unnamed_addr constant [39 x i8] c"Android.Widget.VideoView, Mono.Android\00", align 1 +@.TypeMapEntry.10818_to = private unnamed_addr constant [25 x i8] c"android/widget/VideoView\00", align 1 +@.TypeMapEntry.10819_from = private unnamed_addr constant [42 x i8] c"Android.Widget.ViewAnimator, Mono.Android\00", align 1 +@.TypeMapEntry.10820_to = private unnamed_addr constant [28 x i8] c"android/widget/ViewAnimator\00", align 1 +@.TypeMapEntry.10821_from = private unnamed_addr constant [41 x i8] c"Android.Widget.ViewFlipper, Mono.Android\00", align 1 +@.TypeMapEntry.10822_to = private unnamed_addr constant [27 x i8] c"android/widget/ViewFlipper\00", align 1 +@.TypeMapEntry.10823_from = private unnamed_addr constant [55 x i8] c"Android.Widget.ViewSwitcher+IViewFactory, Mono.Android\00", align 1 +@.TypeMapEntry.10824_to = private unnamed_addr constant [40 x i8] c"android/widget/ViewSwitcher$ViewFactory\00", align 1 +@.TypeMapEntry.10825_from = private unnamed_addr constant [62 x i8] c"Android.Widget.ViewSwitcher+IViewFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10826_from = private unnamed_addr constant [42 x i8] c"Android.Widget.ViewSwitcher, Mono.Android\00", align 1 +@.TypeMapEntry.10827_to = private unnamed_addr constant [28 x i8] c"android/widget/ViewSwitcher\00", align 1 +@.TypeMapEntry.10828_from = private unnamed_addr constant [40 x i8] c"Android.Widget.ZoomButton, Mono.Android\00", align 1 +@.TypeMapEntry.10829_to = private unnamed_addr constant [26 x i8] c"android/widget/ZoomButton\00", align 1 +@.TypeMapEntry.10830_from = private unnamed_addr constant [67 x i8] c"Android.Widget.ZoomButtonsController+IOnZoomListener, Mono.Android\00", align 1 +@.TypeMapEntry.10831_to = private unnamed_addr constant [52 x i8] c"android/widget/ZoomButtonsController$OnZoomListener\00", align 1 +@.TypeMapEntry.10832_from = private unnamed_addr constant [78 x i8] c"Android.Widget.ZoomButtonsController+IOnZoomListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10833_to = private unnamed_addr constant [68 x i8] c"mono/android/widget/ZoomButtonsController_OnZoomListenerImplementor\00", align 1 +@.TypeMapEntry.10834_from = private unnamed_addr constant [74 x i8] c"Android.Widget.ZoomButtonsController+IOnZoomListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10835_from = private unnamed_addr constant [51 x i8] c"Android.Widget.ZoomButtonsController, Mono.Android\00", align 1 +@.TypeMapEntry.10836_to = private unnamed_addr constant [37 x i8] c"android/widget/ZoomButtonsController\00", align 1 +@.TypeMapEntry.10837_from = private unnamed_addr constant [42 x i8] c"Android.Widget.ZoomControls, Mono.Android\00", align 1 +@.TypeMapEntry.10838_to = private unnamed_addr constant [28 x i8] c"android/widget/ZoomControls\00", align 1 +@.TypeMapEntry.10839_from = private unnamed_addr constant [39 x i8] c"Android.Window.BackEvent, Mono.Android\00", align 1 +@.TypeMapEntry.10840_to = private unnamed_addr constant [25 x i8] c"android/window/BackEvent\00", align 1 +@.TypeMapEntry.10841_from = private unnamed_addr constant [54 x i8] c"Android.Window.IOnBackAnimationCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10842_to = private unnamed_addr constant [39 x i8] c"android/window/OnBackAnimationCallback\00", align 1 +@.TypeMapEntry.10843_from = private unnamed_addr constant [61 x i8] c"Android.Window.IOnBackAnimationCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10844_from = private unnamed_addr constant [52 x i8] c"Android.Window.IOnBackInvokedCallback, Mono.Android\00", align 1 +@.TypeMapEntry.10845_to = private unnamed_addr constant [37 x i8] c"android/window/OnBackInvokedCallback\00", align 1 +@.TypeMapEntry.10846_from = private unnamed_addr constant [59 x i8] c"Android.Window.IOnBackInvokedCallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10847_from = private unnamed_addr constant [54 x i8] c"Android.Window.IOnBackInvokedDispatcher, Mono.Android\00", align 1 +@.TypeMapEntry.10848_to = private unnamed_addr constant [39 x i8] c"android/window/OnBackInvokedDispatcher\00", align 1 +@.TypeMapEntry.10849_from = private unnamed_addr constant [61 x i8] c"Android.Window.IOnBackInvokedDispatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10850_from = private unnamed_addr constant [43 x i8] c"Android.Window.ISplashScreen, Mono.Android\00", align 1 +@.TypeMapEntry.10851_to = private unnamed_addr constant [28 x i8] c"android/window/SplashScreen\00", align 1 +@.TypeMapEntry.10852_from = private unnamed_addr constant [50 x i8] c"Android.Window.ISplashScreenInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10853_from = private unnamed_addr constant [66 x i8] c"Android.Window.ISplashScreenOnExitAnimationListener, Mono.Android\00", align 1 +@.TypeMapEntry.10854_to = private unnamed_addr constant [52 x i8] c"android/window/SplashScreen$OnExitAnimationListener\00", align 1 +@.TypeMapEntry.10855_from = private unnamed_addr constant [77 x i8] c"Android.Window.ISplashScreenOnExitAnimationListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.10856_to = private unnamed_addr constant [68 x i8] c"mono/android/window/SplashScreen_OnExitAnimationListenerImplementor\00", align 1 +@.TypeMapEntry.10857_from = private unnamed_addr constant [73 x i8] c"Android.Window.ISplashScreenOnExitAnimationListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.10858_from = private unnamed_addr constant [48 x i8] c"Android.Window.InputTransferToken, Mono.Android\00", align 1 +@.TypeMapEntry.10859_to = private unnamed_addr constant [34 x i8] c"android/window/InputTransferToken\00", align 1 +@.TypeMapEntry.10860_from = private unnamed_addr constant [42 x i8] c"Android.Window.SplashScreen, Mono.Android\00", align 1 +@.TypeMapEntry.10861_to = private unnamed_addr constant [42 x i8] c"mono/internal/android/window/SplashScreen\00", align 1 +@.TypeMapEntry.10862_from = private unnamed_addr constant [46 x i8] c"Android.Window.SplashScreenView, Mono.Android\00", align 1 +@.TypeMapEntry.10863_to = private unnamed_addr constant [32 x i8] c"android/window/SplashScreenView\00", align 1 +@.TypeMapEntry.10864_from = private unnamed_addr constant [46 x i8] c"Android.Window.SurfaceSyncGroup, Mono.Android\00", align 1 +@.TypeMapEntry.10865_to = private unnamed_addr constant [32 x i8] c"android/window/SurfaceSyncGroup\00", align 1 +@.TypeMapEntry.10866_from = private unnamed_addr constant [59 x i8] c"Android.Window.TrustedPresentationThresholds, Mono.Android\00", align 1 +@.TypeMapEntry.10867_to = private unnamed_addr constant [45 x i8] c"android/window/TrustedPresentationThresholds\00", align 1 +@.TypeMapEntry.10868_from = private unnamed_addr constant [69 x i8] c"AndroidX.Activity.ActivityViewModelLazyKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10869_to = private unnamed_addr constant [42 x i8] c"androidx/activity/ActivityViewModelLazyKt\00", align 1 +@.TypeMapEntry.10870_from = private unnamed_addr constant [71 x i8] c"AndroidX.Activity.BackEventCompat+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10871_to = private unnamed_addr constant [44 x i8] c"androidx/activity/BackEventCompat$Companion\00", align 1 +@.TypeMapEntry.10872_from = private unnamed_addr constant [72 x i8] c"AndroidX.Activity.BackEventCompat+ISwipeEdge, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10873_to = private unnamed_addr constant [44 x i8] c"androidx/activity/BackEventCompat$SwipeEdge\00", align 1 +@.TypeMapEntry.10874_from = private unnamed_addr constant [79 x i8] c"AndroidX.Activity.BackEventCompat+ISwipeEdgeInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10875_from = private unnamed_addr constant [61 x i8] c"AndroidX.Activity.BackEventCompat, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10876_to = private unnamed_addr constant [34 x i8] c"androidx/activity/BackEventCompat\00", align 1 +@.TypeMapEntry.10877_from = private unnamed_addr constant [89 x i8] c"AndroidX.Activity.ComponentActivity+NonConfigurationInstances, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10878_to = private unnamed_addr constant [62 x i8] c"androidx/activity/ComponentActivity$NonConfigurationInstances\00", align 1 +@.TypeMapEntry.10879_from = private unnamed_addr constant [63 x i8] c"AndroidX.Activity.ComponentActivity, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10880_to = private unnamed_addr constant [36 x i8] c"androidx/activity/ComponentActivity\00", align 1 +@.TypeMapEntry.10881_from = private unnamed_addr constant [61 x i8] c"AndroidX.Activity.ComponentDialog, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10882_to = private unnamed_addr constant [34 x i8] c"androidx/activity/ComponentDialog\00", align 1 +@.TypeMapEntry.10883_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.ContextAware.ContextAwareHelper, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10884_to = private unnamed_addr constant [50 x i8] c"androidx/activity/contextaware/ContextAwareHelper\00", align 1 +@.TypeMapEntry.10885_from = private unnamed_addr constant [73 x i8] c"AndroidX.Activity.ContextAware.ContextAwareKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10886_to = private unnamed_addr constant [46 x i8] c"androidx/activity/contextaware/ContextAwareKt\00", align 1 +@.TypeMapEntry.10887_from = private unnamed_addr constant [72 x i8] c"AndroidX.Activity.ContextAware.IContextAware, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10888_to = private unnamed_addr constant [44 x i8] c"androidx/activity/contextaware/ContextAware\00", align 1 +@.TypeMapEntry.10889_from = private unnamed_addr constant [79 x i8] c"AndroidX.Activity.ContextAware.IContextAwareInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10890_from = private unnamed_addr constant [86 x i8] c"AndroidX.Activity.ContextAware.IOnContextAvailableListener, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10891_to = private unnamed_addr constant [58 x i8] c"androidx/activity/contextaware/OnContextAvailableListener\00", align 1 +@.TypeMapEntry.10892_from = private unnamed_addr constant [97 x i8] c"AndroidX.Activity.ContextAware.IOnContextAvailableListenerImplementor, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10893_to = private unnamed_addr constant [74 x i8] c"mono/androidx/activity/contextaware/OnContextAvailableListenerImplementor\00", align 1 +@.TypeMapEntry.10894_from = private unnamed_addr constant [93 x i8] c"AndroidX.Activity.ContextAware.IOnContextAvailableListenerInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10895_from = private unnamed_addr constant [56 x i8] c"AndroidX.Activity.EdgeToEdge, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10896_to = private unnamed_addr constant [29 x i8] c"androidx/activity/EdgeToEdge\00", align 1 +@.TypeMapEntry.10897_from = private unnamed_addr constant [64 x i8] c"AndroidX.Activity.FullyDrawnReporter, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10898_to = private unnamed_addr constant [37 x i8] c"androidx/activity/FullyDrawnReporter\00", align 1 +@.TypeMapEntry.10899_from = private unnamed_addr constant [66 x i8] c"AndroidX.Activity.FullyDrawnReporterKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10900_to = private unnamed_addr constant [39 x i8] c"androidx/activity/FullyDrawnReporterKt\00", align 1 +@.TypeMapEntry.10901_from = private unnamed_addr constant [70 x i8] c"AndroidX.Activity.IFullyDrawnReporterOwner, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10902_to = private unnamed_addr constant [42 x i8] c"androidx/activity/FullyDrawnReporterOwner\00", align 1 +@.TypeMapEntry.10903_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.IFullyDrawnReporterOwnerInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10904_from = private unnamed_addr constant [75 x i8] c"AndroidX.Activity.IOnBackPressedDispatcherOwner, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10905_to = private unnamed_addr constant [47 x i8] c"androidx/activity/OnBackPressedDispatcherOwner\00", align 1 +@.TypeMapEntry.10906_from = private unnamed_addr constant [82 x i8] c"AndroidX.Activity.IOnBackPressedDispatcherOwnerInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10907_from = private unnamed_addr constant [67 x i8] c"AndroidX.Activity.OnBackPressedCallback, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10908_to = private unnamed_addr constant [40 x i8] c"androidx/activity/OnBackPressedCallback\00", align 1 +@.TypeMapEntry.10909_from = private unnamed_addr constant [74 x i8] c"AndroidX.Activity.OnBackPressedCallbackInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10910_from = private unnamed_addr constant [69 x i8] c"AndroidX.Activity.OnBackPressedDispatcher, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10911_to = private unnamed_addr constant [42 x i8] c"androidx/activity/OnBackPressedDispatcher\00", align 1 +@.TypeMapEntry.10912_from = private unnamed_addr constant [71 x i8] c"AndroidX.Activity.OnBackPressedDispatcherKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10913_to = private unnamed_addr constant [44 x i8] c"androidx/activity/OnBackPressedDispatcherKt\00", align 1 +@.TypeMapEntry.10914_from = private unnamed_addr constant [62 x i8] c"AndroidX.Activity.PipHintTrackerKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10915_to = private unnamed_addr constant [35 x i8] c"androidx/activity/PipHintTrackerKt\00", align 1 +@.TypeMapEntry.10916_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.Result.ActivityResult+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10917_to = private unnamed_addr constant [50 x i8] c"androidx/activity/result/ActivityResult$Companion\00", align 1 +@.TypeMapEntry.10918_from = private unnamed_addr constant [67 x i8] c"AndroidX.Activity.Result.ActivityResult, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10919_to = private unnamed_addr constant [40 x i8] c"androidx/activity/result/ActivityResult\00", align 1 +@.TypeMapEntry.10920_from = private unnamed_addr constant [75 x i8] c"AndroidX.Activity.Result.ActivityResultCallerKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10921_to = private unnamed_addr constant [48 x i8] c"androidx/activity/result/ActivityResultCallerKt\00", align 1 +@.TypeMapEntry.10922_from = private unnamed_addr constant [69 x i8] c"AndroidX.Activity.Result.ActivityResultKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10923_to = private unnamed_addr constant [42 x i8] c"androidx/activity/result/ActivityResultKt\00", align 1 +@.TypeMapEntry.10924_from = private unnamed_addr constant [75 x i8] c"AndroidX.Activity.Result.ActivityResultLauncher, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10925_to = private unnamed_addr constant [48 x i8] c"androidx/activity/result/ActivityResultLauncher\00", align 1 +@.TypeMapEntry.10926_from = private unnamed_addr constant [82 x i8] c"AndroidX.Activity.Result.ActivityResultLauncherInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10927_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.Result.ActivityResultLauncherKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10928_to = private unnamed_addr constant [50 x i8] c"androidx/activity/result/ActivityResultLauncherKt\00", align 1 +@.TypeMapEntry.10929_from = private unnamed_addr constant [75 x i8] c"AndroidX.Activity.Result.ActivityResultRegistry, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10930_to = private unnamed_addr constant [48 x i8] c"androidx/activity/result/ActivityResultRegistry\00", align 1 +@.TypeMapEntry.10931_from = private unnamed_addr constant [82 x i8] c"AndroidX.Activity.Result.ActivityResultRegistryInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10932_from = private unnamed_addr constant [102 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContract+SynchronousResult, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10933_to = private unnamed_addr constant [75 x i8] c"androidx/activity/result/contract/ActivityResultContract$SynchronousResult\00", align 1 +@.TypeMapEntry.10934_from = private unnamed_addr constant [84 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContract, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10935_to = private unnamed_addr constant [57 x i8] c"androidx/activity/result/contract/ActivityResultContract\00", align 1 +@.TypeMapEntry.10936_from = private unnamed_addr constant [91 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContractInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10937_from = private unnamed_addr constant [98 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+CaptureVideo, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10938_to = private unnamed_addr constant [71 x i8] c"androidx/activity/result/contract/ActivityResultContracts$CaptureVideo\00", align 1 +@.TypeMapEntry.10939_from = private unnamed_addr constant [100 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+CreateDocument, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10940_to = private unnamed_addr constant [73 x i8] c"androidx/activity/result/contract/ActivityResultContracts$CreateDocument\00", align 1 +@.TypeMapEntry.10941_from = private unnamed_addr constant [96 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+GetContent, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10942_to = private unnamed_addr constant [69 x i8] c"androidx/activity/result/contract/ActivityResultContracts$GetContent\00", align 1 +@.TypeMapEntry.10943_from = private unnamed_addr constant [105 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+GetMultipleContents, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10944_to = private unnamed_addr constant [78 x i8] c"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents\00", align 1 +@.TypeMapEntry.10945_from = private unnamed_addr constant [98 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+OpenDocument, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10946_to = private unnamed_addr constant [71 x i8] c"androidx/activity/result/contract/ActivityResultContracts$OpenDocument\00", align 1 +@.TypeMapEntry.10947_from = private unnamed_addr constant [102 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+OpenDocumentTree, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10948_to = private unnamed_addr constant [75 x i8] c"androidx/activity/result/contract/ActivityResultContracts$OpenDocumentTree\00", align 1 +@.TypeMapEntry.10949_from = private unnamed_addr constant [107 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+OpenMultipleDocuments, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10950_to = private unnamed_addr constant [80 x i8] c"androidx/activity/result/contract/ActivityResultContracts$OpenMultipleDocuments\00", align 1 +@.TypeMapEntry.10951_from = private unnamed_addr constant [97 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickContact, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10952_to = private unnamed_addr constant [70 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickContact\00", align 1 +@.TypeMapEntry.10953_from = private unnamed_addr constant [109 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickMultipleVisualMedia, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10954_to = private unnamed_addr constant [82 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia\00", align 1 +@.TypeMapEntry.10955_from = private unnamed_addr constant [111 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10956_to = private unnamed_addr constant [84 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$Companion\00", align 1 +@.TypeMapEntry.10957_from = private unnamed_addr constant [122 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+DefaultTab+AlbumsTab, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10958_to = private unnamed_addr constant [95 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$DefaultTab$AlbumsTab\00", align 1 +@.TypeMapEntry.10959_from = private unnamed_addr constant [122 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+DefaultTab+PhotosTab, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10960_to = private unnamed_addr constant [95 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$DefaultTab$PhotosTab\00", align 1 +@.TypeMapEntry.10961_from = private unnamed_addr constant [112 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+DefaultTab, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10962_to = private unnamed_addr constant [85 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$DefaultTab\00", align 1 +@.TypeMapEntry.10963_from = private unnamed_addr constant [119 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+DefaultTabInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10964_from = private unnamed_addr constant [118 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+IVisualMediaType, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10965_to = private unnamed_addr constant [90 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VisualMediaType\00", align 1 +@.TypeMapEntry.10966_from = private unnamed_addr constant [125 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+IVisualMediaTypeInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10967_from = private unnamed_addr constant [115 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+ImageAndVideo, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10968_to = private unnamed_addr constant [88 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageAndVideo\00", align 1 +@.TypeMapEntry.10969_from = private unnamed_addr constant [111 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+ImageOnly, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10970_to = private unnamed_addr constant [84 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageOnly\00", align 1 +@.TypeMapEntry.10971_from = private unnamed_addr constant [116 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+SingleMimeType, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10972_to = private unnamed_addr constant [89 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$SingleMimeType\00", align 1 +@.TypeMapEntry.10973_from = private unnamed_addr constant [111 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia+VideoOnly, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10974_to = private unnamed_addr constant [84 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VideoOnly\00", align 1 +@.TypeMapEntry.10975_from = private unnamed_addr constant [101 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+PickVisualMedia, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10976_to = private unnamed_addr constant [74 x i8] c"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia\00", align 1 +@.TypeMapEntry.10977_from = private unnamed_addr constant [122 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+RequestMultiplePermissions+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10978_to = private unnamed_addr constant [95 x i8] c"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion\00", align 1 +@.TypeMapEntry.10979_from = private unnamed_addr constant [112 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+RequestMultiplePermissions, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10980_to = private unnamed_addr constant [85 x i8] c"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions\00", align 1 +@.TypeMapEntry.10981_from = private unnamed_addr constant [103 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+RequestPermission, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10982_to = private unnamed_addr constant [76 x i8] c"androidx/activity/result/contract/ActivityResultContracts$RequestPermission\00", align 1 +@.TypeMapEntry.10983_from = private unnamed_addr constant [118 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+StartActivityForResult+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10984_to = private unnamed_addr constant [91 x i8] c"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion\00", align 1 +@.TypeMapEntry.10985_from = private unnamed_addr constant [108 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+StartActivityForResult, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10986_to = private unnamed_addr constant [81 x i8] c"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult\00", align 1 +@.TypeMapEntry.10987_from = private unnamed_addr constant [122 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+StartIntentSenderForResult+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10988_to = private unnamed_addr constant [95 x i8] c"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult$Companion\00", align 1 +@.TypeMapEntry.10989_from = private unnamed_addr constant [112 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+StartIntentSenderForResult, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10990_to = private unnamed_addr constant [85 x i8] c"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult\00", align 1 +@.TypeMapEntry.10991_from = private unnamed_addr constant [97 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+TakePicture, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10992_to = private unnamed_addr constant [70 x i8] c"androidx/activity/result/contract/ActivityResultContracts$TakePicture\00", align 1 +@.TypeMapEntry.10993_from = private unnamed_addr constant [104 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+TakePicturePreview, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10994_to = private unnamed_addr constant [77 x i8] c"androidx/activity/result/contract/ActivityResultContracts$TakePicturePreview\00", align 1 +@.TypeMapEntry.10995_from = private unnamed_addr constant [95 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts+TakeVideo, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10996_to = private unnamed_addr constant [68 x i8] c"androidx/activity/result/contract/ActivityResultContracts$TakeVideo\00", align 1 +@.TypeMapEntry.10997_from = private unnamed_addr constant [85 x i8] c"AndroidX.Activity.Result.Contract.ActivityResultContracts, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.10998_to = private unnamed_addr constant [58 x i8] c"androidx/activity/result/contract/ActivityResultContracts\00", align 1 +@.TypeMapEntry.10999_from = private unnamed_addr constant [76 x i8] c"AndroidX.Activity.Result.IActivityResultCallback, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11000_to = private unnamed_addr constant [48 x i8] c"androidx/activity/result/ActivityResultCallback\00", align 1 +@.TypeMapEntry.11001_from = private unnamed_addr constant [83 x i8] c"AndroidX.Activity.Result.IActivityResultCallbackInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11002_from = private unnamed_addr constant [74 x i8] c"AndroidX.Activity.Result.IActivityResultCaller, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11003_to = private unnamed_addr constant [46 x i8] c"androidx/activity/result/ActivityResultCaller\00", align 1 +@.TypeMapEntry.11004_from = private unnamed_addr constant [81 x i8] c"AndroidX.Activity.Result.IActivityResultCallerInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11005_from = private unnamed_addr constant [81 x i8] c"AndroidX.Activity.Result.IActivityResultRegistryOwner, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11006_to = private unnamed_addr constant [53 x i8] c"androidx/activity/result/ActivityResultRegistryOwner\00", align 1 +@.TypeMapEntry.11007_from = private unnamed_addr constant [88 x i8] c"AndroidX.Activity.Result.IActivityResultRegistryOwnerInvoker, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11008_from = private unnamed_addr constant [80 x i8] c"AndroidX.Activity.Result.IntentSenderRequest+Builder, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11009_to = private unnamed_addr constant [53 x i8] c"androidx/activity/result/IntentSenderRequest$Builder\00", align 1 +@.TypeMapEntry.11010_from = private unnamed_addr constant [82 x i8] c"AndroidX.Activity.Result.IntentSenderRequest+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11011_to = private unnamed_addr constant [55 x i8] c"androidx/activity/result/IntentSenderRequest$Companion\00", align 1 +@.TypeMapEntry.11012_from = private unnamed_addr constant [72 x i8] c"AndroidX.Activity.Result.IntentSenderRequest, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11013_to = private unnamed_addr constant [45 x i8] c"androidx/activity/result/IntentSenderRequest\00", align 1 +@.TypeMapEntry.11014_from = private unnamed_addr constant [83 x i8] c"AndroidX.Activity.Result.PickVisualMediaRequest+Builder, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11015_to = private unnamed_addr constant [56 x i8] c"androidx/activity/result/PickVisualMediaRequest$Builder\00", align 1 +@.TypeMapEntry.11016_from = private unnamed_addr constant [75 x i8] c"AndroidX.Activity.Result.PickVisualMediaRequest, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11017_to = private unnamed_addr constant [48 x i8] c"androidx/activity/result/PickVisualMediaRequest\00", align 1 +@.TypeMapEntry.11018_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.Result.PickVisualMediaRequestKt, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11019_to = private unnamed_addr constant [50 x i8] c"androidx/activity/result/PickVisualMediaRequestKt\00", align 1 +@.TypeMapEntry.11020_from = private unnamed_addr constant [70 x i8] c"AndroidX.Activity.SystemBarStyle+Companion, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11021_to = private unnamed_addr constant [43 x i8] c"androidx/activity/SystemBarStyle$Companion\00", align 1 +@.TypeMapEntry.11022_from = private unnamed_addr constant [60 x i8] c"AndroidX.Activity.SystemBarStyle, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11023_to = private unnamed_addr constant [33 x i8] c"androidx/activity/SystemBarStyle\00", align 1 +@.TypeMapEntry.11024_from = private unnamed_addr constant [77 x i8] c"AndroidX.Activity.ViewTreeFullyDrawnReporterOwner, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11025_to = private unnamed_addr constant [50 x i8] c"androidx/activity/ViewTreeFullyDrawnReporterOwner\00", align 1 +@.TypeMapEntry.11026_from = private unnamed_addr constant [82 x i8] c"AndroidX.Activity.ViewTreeOnBackPressedDispatcherOwner, Xamarin.AndroidX.Activity\00", align 1 +@.TypeMapEntry.11027_to = private unnamed_addr constant [55 x i8] c"androidx/activity/ViewTreeOnBackPressedDispatcherOwner\00", align 1 +@.TypeMapEntry.11028_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.Dimension, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11029_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/Dimension\00", align 1 +@.TypeMapEntry.11030_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.DimensionCompanion, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11031_to = private unnamed_addr constant [40 x i8] c"androidx/annotation/Dimension$Companion\00", align 1 +@.TypeMapEntry.11032_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.DimensionConsts, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11033_from = private unnamed_addr constant [94 x i8] c"AndroidX.Annotations.Experimental.ExperimentalLevel, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11034_to = private unnamed_addr constant [52 x i8] c"androidx/annotation/experimental/Experimental$Level\00", align 1 +@.TypeMapEntry.11035_from = private unnamed_addr constant [90 x i8] c"AndroidX.Annotations.Experimental.IExperimental, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11036_to = private unnamed_addr constant [46 x i8] c"androidx/annotation/experimental/Experimental\00", align 1 +@.TypeMapEntry.11037_from = private unnamed_addr constant [97 x i8] c"AndroidX.Annotations.Experimental.IExperimentalInvoker, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11038_from = private unnamed_addr constant [93 x i8] c"AndroidX.Annotations.Experimental.IUseExperimental, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11039_to = private unnamed_addr constant [49 x i8] c"androidx/annotation/experimental/UseExperimental\00", align 1 +@.TypeMapEntry.11040_from = private unnamed_addr constant [100 x i8] c"AndroidX.Annotations.Experimental.IUseExperimentalInvoker, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11041_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.IAnimRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11042_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/AnimRes\00", align 1 +@.TypeMapEntry.11043_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IAnimResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11044_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IAnimatorRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11045_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/AnimatorRes\00", align 1 +@.TypeMapEntry.11046_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IAnimatorResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11047_from = private unnamed_addr constant [62 x i8] c"AndroidX.Annotations.IAnyRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11048_to = private unnamed_addr constant [27 x i8] c"androidx/annotation/AnyRes\00", align 1 +@.TypeMapEntry.11049_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.IAnyResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11050_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IAnyThread, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11051_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/AnyThread\00", align 1 +@.TypeMapEntry.11052_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IAnyThreadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11053_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IArrayRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11054_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/ArrayRes\00", align 1 +@.TypeMapEntry.11055_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IArrayResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11056_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.IAttrRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11057_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/AttrRes\00", align 1 +@.TypeMapEntry.11058_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IAttrResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11059_from = private unnamed_addr constant [68 x i8] c"AndroidX.Annotations.IBinderThread, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11060_to = private unnamed_addr constant [33 x i8] c"androidx/annotation/BinderThread\00", align 1 +@.TypeMapEntry.11061_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.IBinderThreadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11062_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.IBoolRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11063_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/BoolRes\00", align 1 +@.TypeMapEntry.11064_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IBoolResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11065_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.ICallSuper, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11066_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/CallSuper\00", align 1 +@.TypeMapEntry.11067_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.ICallSuperInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11068_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.ICheckResult, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11069_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/CheckResult\00", align 1 +@.TypeMapEntry.11070_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.ICheckResultInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11071_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.IChecksSdkIntAtLeast, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11072_to = private unnamed_addr constant [40 x i8] c"androidx/annotation/ChecksSdkIntAtLeast\00", align 1 +@.TypeMapEntry.11073_from = private unnamed_addr constant [82 x i8] c"AndroidX.Annotations.IChecksSdkIntAtLeastInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11074_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IColorInt, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11075_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/ColorInt\00", align 1 +@.TypeMapEntry.11076_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IColorIntInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11077_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IColorLong, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11078_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/ColorLong\00", align 1 +@.TypeMapEntry.11079_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IColorLongInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11080_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IColorRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11081_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/ColorRes\00", align 1 +@.TypeMapEntry.11082_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IColorResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11083_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IContentView, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11084_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/ContentView\00", align 1 +@.TypeMapEntry.11085_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IContentViewInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11086_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IDeprecatedSinceApi, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11087_to = private unnamed_addr constant [39 x i8] c"androidx/annotation/DeprecatedSinceApi\00", align 1 +@.TypeMapEntry.11088_from = private unnamed_addr constant [81 x i8] c"AndroidX.Annotations.IDeprecatedSinceApiInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11089_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IDimenRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11090_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/DimenRes\00", align 1 +@.TypeMapEntry.11091_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IDimenResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11092_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IDimension, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11093_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IDimensionInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11094_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IDiscouraged, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11095_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/Discouraged\00", align 1 +@.TypeMapEntry.11096_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IDiscouragedInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11097_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IDisplayContext, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11098_to = private unnamed_addr constant [35 x i8] c"androidx/annotation/DisplayContext\00", align 1 +@.TypeMapEntry.11099_from = private unnamed_addr constant [77 x i8] c"AndroidX.Annotations.IDisplayContextInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11100_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IDoNotInline, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11101_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/DoNotInline\00", align 1 +@.TypeMapEntry.11102_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IDoNotInlineInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11103_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IDrawableRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11104_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/DrawableRes\00", align 1 +@.TypeMapEntry.11105_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IDrawableResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11106_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IEmptySuper, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11107_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/EmptySuper\00", align 1 +@.TypeMapEntry.11108_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IEmptySuperInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11109_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IFloatRange, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11110_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/FloatRange\00", align 1 +@.TypeMapEntry.11111_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IFloatRangeInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11112_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.IFontRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11113_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/FontRes\00", align 1 +@.TypeMapEntry.11114_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IFontResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11115_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IFractionRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11116_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/FractionRes\00", align 1 +@.TypeMapEntry.11117_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IFractionResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11118_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IGravityInt, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11119_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/GravityInt\00", align 1 +@.TypeMapEntry.11120_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IGravityIntInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11121_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IGuardedBy, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11122_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/GuardedBy\00", align 1 +@.TypeMapEntry.11123_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IGuardedByInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11124_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IHalfFloat, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11125_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/HalfFloat\00", align 1 +@.TypeMapEntry.11126_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IHalfFloatInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11127_from = private unnamed_addr constant [61 x i8] c"AndroidX.Annotations.IIdRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11128_to = private unnamed_addr constant [26 x i8] c"androidx/annotation/IdRes\00", align 1 +@.TypeMapEntry.11129_from = private unnamed_addr constant [68 x i8] c"AndroidX.Annotations.IIdResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11130_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.IInspectableProperty, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11131_to = private unnamed_addr constant [40 x i8] c"androidx/annotation/InspectableProperty\00", align 1 +@.TypeMapEntry.11132_from = private unnamed_addr constant [84 x i8] c"AndroidX.Annotations.IInspectablePropertyEnumEntry, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11133_to = private unnamed_addr constant [50 x i8] c"androidx/annotation/InspectableProperty$EnumEntry\00", align 1 +@.TypeMapEntry.11134_from = private unnamed_addr constant [91 x i8] c"AndroidX.Annotations.IInspectablePropertyEnumEntryInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11135_from = private unnamed_addr constant [84 x i8] c"AndroidX.Annotations.IInspectablePropertyFlagEntry, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11136_to = private unnamed_addr constant [50 x i8] c"androidx/annotation/InspectableProperty$FlagEntry\00", align 1 +@.TypeMapEntry.11137_from = private unnamed_addr constant [91 x i8] c"AndroidX.Annotations.IInspectablePropertyFlagEntryInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11138_from = private unnamed_addr constant [82 x i8] c"AndroidX.Annotations.IInspectablePropertyInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11139_from = private unnamed_addr constant [62 x i8] c"AndroidX.Annotations.IIntDef, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11140_to = private unnamed_addr constant [27 x i8] c"androidx/annotation/IntDef\00", align 1 +@.TypeMapEntry.11141_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.IIntDefInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11142_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IIntRange, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11143_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/IntRange\00", align 1 +@.TypeMapEntry.11144_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IIntRangeInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11145_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IIntegerRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11146_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/IntegerRes\00", align 1 +@.TypeMapEntry.11147_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IIntegerResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11148_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IInterpolatorRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11149_to = private unnamed_addr constant [36 x i8] c"androidx/annotation/InterpolatorRes\00", align 1 +@.TypeMapEntry.11150_from = private unnamed_addr constant [78 x i8] c"AndroidX.Annotations.IInterpolatorResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11151_from = private unnamed_addr constant [60 x i8] c"AndroidX.Annotations.IKeep, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11152_to = private unnamed_addr constant [25 x i8] c"androidx/annotation/Keep\00", align 1 +@.TypeMapEntry.11153_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IKeepInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11154_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.ILayoutRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11155_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/LayoutRes\00", align 1 +@.TypeMapEntry.11156_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.ILayoutResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11157_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.ILongDef, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11158_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/LongDef\00", align 1 +@.TypeMapEntry.11159_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.ILongDefInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11160_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IMainThread, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11161_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/MainThread\00", align 1 +@.TypeMapEntry.11162_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IMainThreadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11163_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.IMenuRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11164_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/MenuRes\00", align 1 +@.TypeMapEntry.11165_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IMenuResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11166_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.INavigationRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11167_to = private unnamed_addr constant [34 x i8] c"androidx/annotation/NavigationRes\00", align 1 +@.TypeMapEntry.11168_from = private unnamed_addr constant [76 x i8] c"AndroidX.Annotations.INavigationResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11169_from = private unnamed_addr constant [63 x i8] c"AndroidX.Annotations.INonNull, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11170_to = private unnamed_addr constant [28 x i8] c"androidx/annotation/NonNull\00", align 1 +@.TypeMapEntry.11171_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.INonNullInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11172_from = private unnamed_addr constant [68 x i8] c"AndroidX.Annotations.INonUiContext, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11173_to = private unnamed_addr constant [33 x i8] c"androidx/annotation/NonUiContext\00", align 1 +@.TypeMapEntry.11174_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.INonUiContextInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11175_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.INullable, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11176_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/Nullable\00", align 1 +@.TypeMapEntry.11177_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.INullableInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11178_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IOpenForTesting, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11179_to = private unnamed_addr constant [35 x i8] c"androidx/annotation/OpenForTesting\00", align 1 +@.TypeMapEntry.11180_from = private unnamed_addr constant [77 x i8] c"AndroidX.Annotations.IOpenForTestingInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11181_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.IOptIn, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11182_to = private unnamed_addr constant [26 x i8] c"androidx/annotation/OptIn\00", align 1 +@.TypeMapEntry.11183_from = private unnamed_addr constant [77 x i8] c"AndroidX.Annotations.IOptInInvoker, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11184_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IPluralsRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11185_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/PluralsRes\00", align 1 +@.TypeMapEntry.11186_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IPluralsResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11187_from = private unnamed_addr constant [58 x i8] c"AndroidX.Annotations.IPx, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11188_to = private unnamed_addr constant [23 x i8] c"androidx/annotation/Px\00", align 1 +@.TypeMapEntry.11189_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IPxInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11190_from = private unnamed_addr constant [62 x i8] c"AndroidX.Annotations.IRawRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11191_to = private unnamed_addr constant [27 x i8] c"androidx/annotation/RawRes\00", align 1 +@.TypeMapEntry.11192_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.IRawResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11193_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IReplaceWith, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11194_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/ReplaceWith\00", align 1 +@.TypeMapEntry.11195_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IReplaceWithInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11196_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.IRequiresApi, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11197_to = private unnamed_addr constant [32 x i8] c"androidx/annotation/RequiresApi\00", align 1 +@.TypeMapEntry.11198_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IRequiresApiInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11199_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IRequiresExtension, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11200_to = private unnamed_addr constant [38 x i8] c"androidx/annotation/RequiresExtension\00", align 1 +@.TypeMapEntry.11201_from = private unnamed_addr constant [82 x i8] c"AndroidX.Annotations.IRequiresExtensionContainer, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11202_to = private unnamed_addr constant [48 x i8] c"androidx/annotation/RequiresExtension$Container\00", align 1 +@.TypeMapEntry.11203_from = private unnamed_addr constant [89 x i8] c"AndroidX.Annotations.IRequiresExtensionContainerInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11204_from = private unnamed_addr constant [80 x i8] c"AndroidX.Annotations.IRequiresExtensionInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11205_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IRequiresFeature, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11206_to = private unnamed_addr constant [36 x i8] c"androidx/annotation/RequiresFeature\00", align 1 +@.TypeMapEntry.11207_from = private unnamed_addr constant [78 x i8] c"AndroidX.Annotations.IRequiresFeatureInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11208_from = private unnamed_addr constant [78 x i8] c"AndroidX.Annotations.IRequiresOptIn, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11209_to = private unnamed_addr constant [34 x i8] c"androidx/annotation/RequiresOptIn\00", align 1 +@.TypeMapEntry.11210_from = private unnamed_addr constant [85 x i8] c"AndroidX.Annotations.IRequiresOptInInvoker, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11211_from = private unnamed_addr constant [74 x i8] c"AndroidX.Annotations.IRequiresPermission, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11212_to = private unnamed_addr constant [39 x i8] c"androidx/annotation/RequiresPermission\00", align 1 +@.TypeMapEntry.11213_from = private unnamed_addr constant [81 x i8] c"AndroidX.Annotations.IRequiresPermissionInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11214_from = private unnamed_addr constant [78 x i8] c"AndroidX.Annotations.IRequiresPermissionRead, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11215_to = private unnamed_addr constant [44 x i8] c"androidx/annotation/RequiresPermission$Read\00", align 1 +@.TypeMapEntry.11216_from = private unnamed_addr constant [85 x i8] c"AndroidX.Annotations.IRequiresPermissionReadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11217_from = private unnamed_addr constant [79 x i8] c"AndroidX.Annotations.IRequiresPermissionWrite, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11218_to = private unnamed_addr constant [45 x i8] c"androidx/annotation/RequiresPermission$Write\00", align 1 +@.TypeMapEntry.11219_from = private unnamed_addr constant [86 x i8] c"AndroidX.Annotations.IRequiresPermissionWriteInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11220_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IRestrictTo, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11221_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/RestrictTo\00", align 1 +@.TypeMapEntry.11222_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IRestrictToInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11223_from = private unnamed_addr constant [66 x i8] c"AndroidX.Annotations.IReturnThis, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11224_to = private unnamed_addr constant [31 x i8] c"androidx/annotation/ReturnThis\00", align 1 +@.TypeMapEntry.11225_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IReturnThisInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11226_from = private unnamed_addr constant [60 x i8] c"AndroidX.Annotations.ISize, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11227_to = private unnamed_addr constant [25 x i8] c"androidx/annotation/Size\00", align 1 +@.TypeMapEntry.11228_from = private unnamed_addr constant [67 x i8] c"AndroidX.Annotations.ISizeInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11229_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IStringDef, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11230_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/StringDef\00", align 1 +@.TypeMapEntry.11231_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IStringDefInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11232_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IStringRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11233_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/StringRes\00", align 1 +@.TypeMapEntry.11234_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IStringResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11235_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IStyleRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11236_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/StyleRes\00", align 1 +@.TypeMapEntry.11237_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IStyleResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11238_from = private unnamed_addr constant [68 x i8] c"AndroidX.Annotations.IStyleableRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11239_to = private unnamed_addr constant [33 x i8] c"androidx/annotation/StyleableRes\00", align 1 +@.TypeMapEntry.11240_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.IStyleableResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11241_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.ITransitionRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11242_to = private unnamed_addr constant [34 x i8] c"androidx/annotation/TransitionRes\00", align 1 +@.TypeMapEntry.11243_from = private unnamed_addr constant [76 x i8] c"AndroidX.Annotations.ITransitionResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11244_from = private unnamed_addr constant [65 x i8] c"AndroidX.Annotations.IUiContext, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11245_to = private unnamed_addr constant [30 x i8] c"androidx/annotation/UiContext\00", align 1 +@.TypeMapEntry.11246_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.IUiContextInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11247_from = private unnamed_addr constant [64 x i8] c"AndroidX.Annotations.IUiThread, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11248_to = private unnamed_addr constant [29 x i8] c"androidx/annotation/UiThread\00", align 1 +@.TypeMapEntry.11249_from = private unnamed_addr constant [71 x i8] c"AndroidX.Annotations.IUiThreadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11250_from = private unnamed_addr constant [73 x i8] c"AndroidX.Annotations.IVisibleForTesting, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11251_to = private unnamed_addr constant [38 x i8] c"androidx/annotation/VisibleForTesting\00", align 1 +@.TypeMapEntry.11252_from = private unnamed_addr constant [80 x i8] c"AndroidX.Annotations.IVisibleForTestingInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11253_from = private unnamed_addr constant [68 x i8] c"AndroidX.Annotations.IWorkerThread, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11254_to = private unnamed_addr constant [33 x i8] c"androidx/annotation/WorkerThread\00", align 1 +@.TypeMapEntry.11255_from = private unnamed_addr constant [75 x i8] c"AndroidX.Annotations.IWorkerThreadInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11256_from = private unnamed_addr constant [62 x i8] c"AndroidX.Annotations.IXmlRes, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11257_to = private unnamed_addr constant [27 x i8] c"androidx/annotation/XmlRes\00", align 1 +@.TypeMapEntry.11258_from = private unnamed_addr constant [69 x i8] c"AndroidX.Annotations.IXmlResInvoker, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11259_from = private unnamed_addr constant [83 x i8] c"AndroidX.Annotations.InspectablePropertyValueType, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11260_to = private unnamed_addr constant [50 x i8] c"androidx/annotation/InspectableProperty$ValueType\00", align 1 +@.TypeMapEntry.11261_from = private unnamed_addr constant [82 x i8] c"AndroidX.Annotations.RequiresOptInLevel, Xamarin.AndroidX.Annotation.Experimental\00", align 1 +@.TypeMapEntry.11262_to = private unnamed_addr constant [40 x i8] c"androidx/annotation/RequiresOptIn$Level\00", align 1 +@.TypeMapEntry.11263_from = private unnamed_addr constant [70 x i8] c"AndroidX.Annotations.RestrictToScope, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11264_to = private unnamed_addr constant [37 x i8] c"androidx/annotation/RestrictTo$Scope\00", align 1 +@.TypeMapEntry.11265_from = private unnamed_addr constant [72 x i8] c"AndroidX.Annotations.VisibleForTesting, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11266_from = private unnamed_addr constant [81 x i8] c"AndroidX.Annotations.VisibleForTestingCompanion, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11267_to = private unnamed_addr constant [48 x i8] c"androidx/annotation/VisibleForTesting$Companion\00", align 1 +@.TypeMapEntry.11268_from = private unnamed_addr constant [78 x i8] c"AndroidX.Annotations.VisibleForTestingConsts, Xamarin.AndroidX.Annotation.Jvm\00", align 1 +@.TypeMapEntry.11269_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.App.ActionBar+IDisplayOptions, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11270_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/app/ActionBar$DisplayOptions\00", align 1 +@.TypeMapEntry.11271_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.App.ActionBar+IDisplayOptionsInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11272_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.App.ActionBar+INavigationMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11273_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/app/ActionBar$NavigationMode\00", align 1 +@.TypeMapEntry.11274_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.App.ActionBar+INavigationModeInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11275_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11276_to = private unnamed_addr constant [58 x i8] c"androidx/appcompat/app/ActionBar$OnMenuVisibilityListener\00", align 1 +@.TypeMapEntry.11277_from = private unnamed_addr constant [98 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11278_to = private unnamed_addr constant [74 x i8] c"mono/androidx/appcompat/app/ActionBar_OnMenuVisibilityListenerImplementor\00", align 1 +@.TypeMapEntry.11279_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnMenuVisibilityListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11280_from = private unnamed_addr constant [83 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnNavigationListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11281_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/app/ActionBar$OnNavigationListener\00", align 1 +@.TypeMapEntry.11282_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11283_to = private unnamed_addr constant [70 x i8] c"mono/androidx/appcompat/app/ActionBar_OnNavigationListenerImplementor\00", align 1 +@.TypeMapEntry.11284_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.App.ActionBar+IOnNavigationListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11285_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.App.ActionBar+ITabListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11286_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/app/ActionBar$TabListener\00", align 1 +@.TypeMapEntry.11287_from = private unnamed_addr constant [85 x i8] c"AndroidX.AppCompat.App.ActionBar+ITabListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11288_to = private unnamed_addr constant [61 x i8] c"mono/androidx/appcompat/app/ActionBar_TabListenerImplementor\00", align 1 +@.TypeMapEntry.11289_from = private unnamed_addr constant [81 x i8] c"AndroidX.AppCompat.App.ActionBar+ITabListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11290_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.App.ActionBar+LayoutParams, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11291_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/app/ActionBar$LayoutParams\00", align 1 +@.TypeMapEntry.11292_from = private unnamed_addr constant [65 x i8] c"AndroidX.AppCompat.App.ActionBar+Tab, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11293_to = private unnamed_addr constant [37 x i8] c"androidx/appcompat/app/ActionBar$Tab\00", align 1 +@.TypeMapEntry.11294_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.App.ActionBar+TabInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11295_from = private unnamed_addr constant [61 x i8] c"AndroidX.AppCompat.App.ActionBar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11296_to = private unnamed_addr constant [33 x i8] c"androidx/appcompat/app/ActionBar\00", align 1 +@.TypeMapEntry.11297_from = private unnamed_addr constant [83 x i8] c"AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegate, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11298_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/app/ActionBarDrawerToggle$Delegate\00", align 1 +@.TypeMapEntry.11299_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegateInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11300_from = private unnamed_addr constant [91 x i8] c"AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegateProvider, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11301_to = private unnamed_addr constant [62 x i8] c"androidx/appcompat/app/ActionBarDrawerToggle$DelegateProvider\00", align 1 +@.TypeMapEntry.11302_from = private unnamed_addr constant [98 x i8] c"AndroidX.AppCompat.App.ActionBarDrawerToggle+IDelegateProviderInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11303_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.App.ActionBarDrawerToggle, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11304_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/app/ActionBarDrawerToggle\00", align 1 +@.TypeMapEntry.11305_from = private unnamed_addr constant [68 x i8] c"AndroidX.AppCompat.App.ActionBarInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11306_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.App.AlertDialog+Builder, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11307_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/app/AlertDialog$Builder\00", align 1 +@.TypeMapEntry.11308_from = private unnamed_addr constant [107 x i8] c"AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11309_to = private unnamed_addr constant [79 x i8] c"androidx/appcompat/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor\00", align 1 +@.TypeMapEntry.11310_from = private unnamed_addr constant [106 x i8] c"AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11311_to = private unnamed_addr constant [78 x i8] c"androidx/appcompat/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor\00", align 1 +@.TypeMapEntry.11312_from = private unnamed_addr constant [117 x i8] c"AndroidX.AppCompat.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11313_to = private unnamed_addr constant [89 x i8] c"androidx/appcompat/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor\00", align 1 +@.TypeMapEntry.11314_from = private unnamed_addr constant [63 x i8] c"AndroidX.AppCompat.App.AlertDialog, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11315_to = private unnamed_addr constant [35 x i8] c"androidx/appcompat/app/AlertDialog\00", align 1 +@.TypeMapEntry.11316_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.App.AppCompatActivity, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11317_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/app/AppCompatActivity\00", align 1 +@.TypeMapEntry.11318_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.App.AppCompatDelegate+INightMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11319_to = private unnamed_addr constant [51 x i8] c"androidx/appcompat/app/AppCompatDelegate$NightMode\00", align 1 +@.TypeMapEntry.11320_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.App.AppCompatDelegate+INightModeInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11321_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.App.AppCompatDelegate, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11322_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/app/AppCompatDelegate\00", align 1 +@.TypeMapEntry.11323_from = private unnamed_addr constant [76 x i8] c"AndroidX.AppCompat.App.AppCompatDelegateInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11324_from = private unnamed_addr constant [67 x i8] c"AndroidX.AppCompat.App.AppCompatDialog, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11325_to = private unnamed_addr constant [39 x i8] c"androidx/appcompat/app/AppCompatDialog\00", align 1 +@.TypeMapEntry.11326_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.App.AppCompatDialogFragment, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11327_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/app/AppCompatDialogFragment\00", align 1 +@.TypeMapEntry.11328_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.App.AppCompatViewInflater, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11329_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/app/AppCompatViewInflater\00", align 1 +@.TypeMapEntry.11330_from = private unnamed_addr constant [83 x i8] c"AndroidX.AppCompat.App.AppLocalesMetadataHolderService, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11331_to = private unnamed_addr constant [55 x i8] c"androidx/appcompat/app/AppLocalesMetadataHolderService\00", align 1 +@.TypeMapEntry.11332_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.App.IAppCompatCallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11333_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/app/AppCompatCallback\00", align 1 +@.TypeMapEntry.11334_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.App.IAppCompatCallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11335_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.App.WindowDecorActionBar+ActionModeImpl, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11336_to = private unnamed_addr constant [59 x i8] c"androidx/appcompat/app/WindowDecorActionBar$ActionModeImpl\00", align 1 +@.TypeMapEntry.11337_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.App.WindowDecorActionBar+TabImpl, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11338_to = private unnamed_addr constant [52 x i8] c"androidx/appcompat/app/WindowDecorActionBar$TabImpl\00", align 1 +@.TypeMapEntry.11339_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.App.WindowDecorActionBar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11340_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/app/WindowDecorActionBar\00", align 1 +@.TypeMapEntry.11341_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.Content.Res.AppCompatResources, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11342_to = private unnamed_addr constant [50 x i8] c"androidx/appcompat/content/res/AppCompatResources\00", align 1 +@.TypeMapEntry.11343_from = private unnamed_addr constant [116 x i8] c"AndroidX.AppCompat.Graphics.Drawable.AnimatedStateListDrawableCompat, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11344_to = private unnamed_addr constant [69 x i8] c"androidx/appcompat/graphics/drawable/AnimatedStateListDrawableCompat\00", align 1 +@.TypeMapEntry.11345_from = private unnamed_addr constant [102 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawableContainer, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11346_to = private unnamed_addr constant [40 x i8] c"crc6439358991bbf5dbbd/DrawableContainer\00", align 1 +@.TypeMapEntry.11347_from = private unnamed_addr constant [108 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawableContainerCompat, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11348_to = private unnamed_addr constant [61 x i8] c"androidx/appcompat/graphics/drawable/DrawableContainerCompat\00", align 1 +@.TypeMapEntry.11349_from = private unnamed_addr constant [100 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawableWrapper, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11350_to = private unnamed_addr constant [38 x i8] c"crc6439358991bbf5dbbd/DrawableWrapper\00", align 1 +@.TypeMapEntry.11351_from = private unnamed_addr constant [106 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawableWrapperCompat, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11352_to = private unnamed_addr constant [59 x i8] c"androidx/appcompat/graphics/drawable/DrawableWrapperCompat\00", align 1 +@.TypeMapEntry.11353_from = private unnamed_addr constant [101 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawerArrowDrawable+IArrowDirection, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11354_to = private unnamed_addr constant [72 x i8] c"androidx/appcompat/graphics/drawable/DrawerArrowDrawable$ArrowDirection\00", align 1 +@.TypeMapEntry.11355_from = private unnamed_addr constant [108 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawerArrowDrawable+IArrowDirectionInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11356_from = private unnamed_addr constant [85 x i8] c"AndroidX.AppCompat.Graphics.Drawable.DrawerArrowDrawable, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11357_to = private unnamed_addr constant [57 x i8] c"androidx/appcompat/graphics/drawable/DrawerArrowDrawable\00", align 1 +@.TypeMapEntry.11358_from = private unnamed_addr constant [108 x i8] c"AndroidX.AppCompat.Graphics.Drawable.StateListDrawableCompat, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11359_to = private unnamed_addr constant [61 x i8] c"androidx/appcompat/graphics/drawable/StateListDrawableCompat\00", align 1 +@.TypeMapEntry.11360_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Resources.Compatibility, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11361_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/resources/Compatibility\00", align 1 +@.TypeMapEntry.11362_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.Text.AllCapsTransformationMethod, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11363_to = private unnamed_addr constant [52 x i8] c"androidx/appcompat/text/AllCapsTransformationMethod\00", align 1 +@.TypeMapEntry.11364_from = private unnamed_addr constant [68 x i8] c"AndroidX.AppCompat.View.ActionBarPolicy, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11365_to = private unnamed_addr constant [40 x i8] c"androidx/appcompat/view/ActionBarPolicy\00", align 1 +@.TypeMapEntry.11366_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.View.ActionMode+ICallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11367_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/ActionMode$Callback\00", align 1 +@.TypeMapEntry.11368_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.View.ActionMode+ICallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11369_from = private unnamed_addr constant [63 x i8] c"AndroidX.AppCompat.View.ActionMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11370_to = private unnamed_addr constant [35 x i8] c"androidx/appcompat/view/ActionMode\00", align 1 +@.TypeMapEntry.11371_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.View.ActionModeInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11372_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.ContextThemeWrapper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11373_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/ContextThemeWrapper\00", align 1 +@.TypeMapEntry.11374_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.View.ICollapsibleActionView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11375_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/view/CollapsibleActionView\00", align 1 +@.TypeMapEntry.11376_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.ICollapsibleActionViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11377_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.Menu.ActionMenuItem, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11378_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/menu/ActionMenuItem\00", align 1 +@.TypeMapEntry.11379_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.View.Menu.ActionMenuItemView+PopupCallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11380_to = private unnamed_addr constant [62 x i8] c"androidx/appcompat/view/menu/ActionMenuItemView$PopupCallback\00", align 1 +@.TypeMapEntry.11381_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.View.Menu.ActionMenuItemView+PopupCallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11382_from = private unnamed_addr constant [76 x i8] c"AndroidX.AppCompat.View.Menu.ActionMenuItemView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11383_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/view/menu/ActionMenuItemView\00", align 1 +@.TypeMapEntry.11384_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.View.Menu.BaseMenuPresenter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11385_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/view/menu/BaseMenuPresenter\00", align 1 +@.TypeMapEntry.11386_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.Menu.BaseMenuPresenterInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11387_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.View.Menu.ExpandedMenuView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11388_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/view/menu/ExpandedMenuView\00", align 1 +@.TypeMapEntry.11389_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.Menu.IMenuPresenter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11390_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/view/menu/MenuPresenter\00", align 1 +@.TypeMapEntry.11391_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.View.Menu.IMenuPresenterCallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11392_to = private unnamed_addr constant [52 x i8] c"androidx/appcompat/view/menu/MenuPresenter$Callback\00", align 1 +@.TypeMapEntry.11393_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.View.Menu.IMenuPresenterCallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11394_from = private unnamed_addr constant [79 x i8] c"AndroidX.AppCompat.View.Menu.IMenuPresenterInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11395_from = private unnamed_addr constant [67 x i8] c"AndroidX.AppCompat.View.Menu.IMenuView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11396_to = private unnamed_addr constant [38 x i8] c"androidx/appcompat/view/menu/MenuView\00", align 1 +@.TypeMapEntry.11397_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.View.Menu.IMenuViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11398_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.View.Menu.IMenuViewItemView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11399_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/view/menu/MenuView$ItemView\00", align 1 +@.TypeMapEntry.11400_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.Menu.IMenuViewItemViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11401_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.View.Menu.IShowableListMenu, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11402_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/view/menu/ShowableListMenu\00", align 1 +@.TypeMapEntry.11403_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.Menu.IShowableListMenuInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11404_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.View.Menu.ListMenuItemView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11405_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/view/menu/ListMenuItemView\00", align 1 +@.TypeMapEntry.11406_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.View.Menu.ListMenuPresenter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11407_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/view/menu/ListMenuPresenter\00", align 1 +@.TypeMapEntry.11408_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.View.Menu.MenuAdapter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11409_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/view/menu/MenuAdapter\00", align 1 +@.TypeMapEntry.11410_from = private unnamed_addr constant [79 x i8] c"AndroidX.AppCompat.View.Menu.MenuBuilder+ICallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11411_to = private unnamed_addr constant [50 x i8] c"androidx/appcompat/view/menu/MenuBuilder$Callback\00", align 1 +@.TypeMapEntry.11412_from = private unnamed_addr constant [86 x i8] c"AndroidX.AppCompat.View.Menu.MenuBuilder+ICallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11413_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.Menu.MenuBuilder+IItemInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11414_to = private unnamed_addr constant [53 x i8] c"androidx/appcompat/view/menu/MenuBuilder$ItemInvoker\00", align 1 +@.TypeMapEntry.11415_from = private unnamed_addr constant [89 x i8] c"AndroidX.AppCompat.View.Menu.MenuBuilder+IItemInvokerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11416_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.View.Menu.MenuBuilder, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11417_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/view/menu/MenuBuilder\00", align 1 +@.TypeMapEntry.11418_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.View.Menu.MenuItemImpl, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11419_to = private unnamed_addr constant [42 x i8] c"androidx/appcompat/view/menu/MenuItemImpl\00", align 1 +@.TypeMapEntry.11420_from = private unnamed_addr constant [67 x i8] c"AndroidX.AppCompat.View.Menu.MenuPopup, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11421_to = private unnamed_addr constant [39 x i8] c"androidx/appcompat/view/menu/MenuPopup\00", align 1 +@.TypeMapEntry.11422_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.View.Menu.MenuPopupHelper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11423_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/view/menu/MenuPopupHelper\00", align 1 +@.TypeMapEntry.11424_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.View.Menu.MenuPopupInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11425_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.Menu.MenuWrapperICS, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11426_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/menu/MenuWrapperICS\00", align 1 +@.TypeMapEntry.11427_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.Menu.SubMenuBuilder, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11428_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/menu/SubMenuBuilder\00", align 1 +@.TypeMapEntry.11429_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.View.StandaloneActionMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11430_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/view/StandaloneActionMode\00", align 1 +@.TypeMapEntry.11431_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.View.SupportActionModeWrapper+CallbackWrapper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11432_to = private unnamed_addr constant [65 x i8] c"androidx/appcompat/view/SupportActionModeWrapper$CallbackWrapper\00", align 1 +@.TypeMapEntry.11433_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.View.SupportActionModeWrapper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11434_to = private unnamed_addr constant [49 x i8] c"androidx/appcompat/view/SupportActionModeWrapper\00", align 1 +@.TypeMapEntry.11435_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.View.SupportMenuInflater, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11436_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/view/SupportMenuInflater\00", align 1 +@.TypeMapEntry.11437_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.View.ViewPropertyAnimatorCompatSet, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11438_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/view/ViewPropertyAnimatorCompatSet\00", align 1 +@.TypeMapEntry.11439_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.View.WindowCallbackWrapper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11440_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/view/WindowCallbackWrapper\00", align 1 +@.TypeMapEntry.11441_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.Widget.AbsActionBarView+VisibilityAnimListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11442_to = private unnamed_addr constant [66 x i8] c"androidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener\00", align 1 +@.TypeMapEntry.11443_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.Widget.AbsActionBarView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11444_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/widget/AbsActionBarView\00", align 1 +@.TypeMapEntry.11445_from = private unnamed_addr constant [78 x i8] c"AndroidX.AppCompat.Widget.AbsActionBarViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11446_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.ActionBarContainer, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11447_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/ActionBarContainer\00", align 1 +@.TypeMapEntry.11448_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.ActionBarContextView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11449_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/ActionBarContextView\00", align 1 +@.TypeMapEntry.11450_from = private unnamed_addr constant [106 x i8] c"AndroidX.AppCompat.Widget.ActionBarOverlayLayout+IActionBarVisibilityCallback, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11451_to = private unnamed_addr constant [77 x i8] c"androidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback\00", align 1 +@.TypeMapEntry.11452_from = private unnamed_addr constant [113 x i8] c"AndroidX.AppCompat.Widget.ActionBarOverlayLayout+IActionBarVisibilityCallbackInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11453_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Widget.ActionBarOverlayLayout+LayoutParams, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11454_to = private unnamed_addr constant [62 x i8] c"androidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams\00", align 1 +@.TypeMapEntry.11455_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.Widget.ActionBarOverlayLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11456_to = private unnamed_addr constant [49 x i8] c"androidx/appcompat/widget/ActionBarOverlayLayout\00", align 1 +@.TypeMapEntry.11457_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.Widget.ActionMenuPresenter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11458_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/widget/ActionMenuPresenter\00", align 1 +@.TypeMapEntry.11459_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+IActionMenuChildView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11460_to = private unnamed_addr constant [61 x i8] c"androidx/appcompat/widget/ActionMenuView$ActionMenuChildView\00", align 1 +@.TypeMapEntry.11461_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+IActionMenuChildViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11462_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11463_to = private unnamed_addr constant [65 x i8] c"androidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.11464_from = private unnamed_addr constant [105 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11465_to = private unnamed_addr constant [81 x i8] c"mono/androidx/appcompat/widget/ActionMenuView_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.11466_from = private unnamed_addr constant [101 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11467_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView+LayoutParams, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11468_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/widget/ActionMenuView$LayoutParams\00", align 1 +@.TypeMapEntry.11469_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.Widget.ActionMenuView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11470_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/widget/ActionMenuView\00", align 1 +@.TypeMapEntry.11471_from = private unnamed_addr constant [95 x i8] c"AndroidX.AppCompat.Widget.ActivityChooserModel+ActivityResolveInfo, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11472_to = private unnamed_addr constant [67 x i8] c"androidx/appcompat/widget/ActivityChooserModel$ActivityResolveInfo\00", align 1 +@.TypeMapEntry.11473_from = private unnamed_addr constant [92 x i8] c"AndroidX.AppCompat.Widget.ActivityChooserModel+HistoricalRecord, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11474_to = private unnamed_addr constant [64 x i8] c"androidx/appcompat/widget/ActivityChooserModel$HistoricalRecord\00", align 1 +@.TypeMapEntry.11475_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.ActivityChooserModel, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11476_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/ActivityChooserModel\00", align 1 +@.TypeMapEntry.11477_from = private unnamed_addr constant [86 x i8] c"AndroidX.AppCompat.Widget.ActivityChooserView+InnerLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11478_to = private unnamed_addr constant [58 x i8] c"androidx/appcompat/widget/ActivityChooserView$InnerLayout\00", align 1 +@.TypeMapEntry.11479_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.Widget.ActivityChooserView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11480_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/widget/ActivityChooserView\00", align 1 +@.TypeMapEntry.11481_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.Widget.AlertDialogLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11482_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/widget/AlertDialogLayout\00", align 1 +@.TypeMapEntry.11483_from = private unnamed_addr constant [104 x i8] c"AndroidX.AppCompat.Widget.AppCompatAutoCompleteTextView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11484_to = private unnamed_addr constant [76 x i8] c"androidx/appcompat/widget/AppCompatAutoCompleteTextView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11485_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.Widget.AppCompatAutoCompleteTextView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11486_to = private unnamed_addr constant [56 x i8] c"androidx/appcompat/widget/AppCompatAutoCompleteTextView\00", align 1 +@.TypeMapEntry.11487_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Widget.AppCompatButton+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11488_to = private unnamed_addr constant [62 x i8] c"androidx/appcompat/widget/AppCompatButton$InspectionCompanion\00", align 1 +@.TypeMapEntry.11489_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.Widget.AppCompatButton, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11490_to = private unnamed_addr constant [42 x i8] c"androidx/appcompat/widget/AppCompatButton\00", align 1 +@.TypeMapEntry.11491_from = private unnamed_addr constant [92 x i8] c"AndroidX.AppCompat.Widget.AppCompatCheckBox+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11492_to = private unnamed_addr constant [64 x i8] c"androidx/appcompat/widget/AppCompatCheckBox$InspectionCompanion\00", align 1 +@.TypeMapEntry.11493_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.Widget.AppCompatCheckBox, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11494_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/widget/AppCompatCheckBox\00", align 1 +@.TypeMapEntry.11495_from = private unnamed_addr constant [99 x i8] c"AndroidX.AppCompat.Widget.AppCompatCheckedTextView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11496_to = private unnamed_addr constant [71 x i8] c"androidx/appcompat/widget/AppCompatCheckedTextView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11497_from = private unnamed_addr constant [79 x i8] c"AndroidX.AppCompat.Widget.AppCompatCheckedTextView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11498_to = private unnamed_addr constant [51 x i8] c"androidx/appcompat/widget/AppCompatCheckedTextView\00", align 1 +@.TypeMapEntry.11499_from = private unnamed_addr constant [79 x i8] c"AndroidX.AppCompat.Widget.AppCompatDrawableManager, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11500_to = private unnamed_addr constant [51 x i8] c"androidx/appcompat/widget/AppCompatDrawableManager\00", align 1 +@.TypeMapEntry.11501_from = private unnamed_addr constant [92 x i8] c"AndroidX.AppCompat.Widget.AppCompatEditText+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11502_to = private unnamed_addr constant [64 x i8] c"androidx/appcompat/widget/AppCompatEditText$InspectionCompanion\00", align 1 +@.TypeMapEntry.11503_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.Widget.AppCompatEditText, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11504_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/widget/AppCompatEditText\00", align 1 +@.TypeMapEntry.11505_from = private unnamed_addr constant [95 x i8] c"AndroidX.AppCompat.Widget.AppCompatImageButton+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11506_to = private unnamed_addr constant [67 x i8] c"androidx/appcompat/widget/AppCompatImageButton$InspectionCompanion\00", align 1 +@.TypeMapEntry.11507_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.AppCompatImageButton, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11508_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/AppCompatImageButton\00", align 1 +@.TypeMapEntry.11509_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.AppCompatImageHelper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11510_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/AppCompatImageHelper\00", align 1 +@.TypeMapEntry.11511_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.Widget.AppCompatImageView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11512_to = private unnamed_addr constant [65 x i8] c"androidx/appcompat/widget/AppCompatImageView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11513_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.AppCompatImageView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11514_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/AppCompatImageView\00", align 1 +@.TypeMapEntry.11515_from = private unnamed_addr constant [109 x i8] c"AndroidX.AppCompat.Widget.AppCompatMultiAutoCompleteTextView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11516_to = private unnamed_addr constant [81 x i8] c"androidx/appcompat/widget/AppCompatMultiAutoCompleteTextView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11517_from = private unnamed_addr constant [89 x i8] c"AndroidX.AppCompat.Widget.AppCompatMultiAutoCompleteTextView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11518_to = private unnamed_addr constant [61 x i8] c"androidx/appcompat/widget/AppCompatMultiAutoCompleteTextView\00", align 1 +@.TypeMapEntry.11519_from = private unnamed_addr constant [95 x i8] c"AndroidX.AppCompat.Widget.AppCompatRadioButton+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11520_to = private unnamed_addr constant [67 x i8] c"androidx/appcompat/widget/AppCompatRadioButton$InspectionCompanion\00", align 1 +@.TypeMapEntry.11521_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.AppCompatRadioButton, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11522_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/AppCompatRadioButton\00", align 1 +@.TypeMapEntry.11523_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.AppCompatRatingBar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11524_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/AppCompatRatingBar\00", align 1 +@.TypeMapEntry.11525_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.Widget.AppCompatSeekBar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11526_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/widget/AppCompatSeekBar\00", align 1 +@.TypeMapEntry.11527_from = private unnamed_addr constant [91 x i8] c"AndroidX.AppCompat.Widget.AppCompatSpinner+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11528_to = private unnamed_addr constant [63 x i8] c"androidx/appcompat/widget/AppCompatSpinner$InspectionCompanion\00", align 1 +@.TypeMapEntry.11529_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.Widget.AppCompatSpinner, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11530_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/widget/AppCompatSpinner\00", align 1 +@.TypeMapEntry.11531_from = private unnamed_addr constant [92 x i8] c"AndroidX.AppCompat.Widget.AppCompatTextView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11532_to = private unnamed_addr constant [64 x i8] c"androidx/appcompat/widget/AppCompatTextView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11533_from = private unnamed_addr constant [72 x i8] c"AndroidX.AppCompat.Widget.AppCompatTextView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11534_to = private unnamed_addr constant [44 x i8] c"androidx/appcompat/widget/AppCompatTextView\00", align 1 +@.TypeMapEntry.11535_from = private unnamed_addr constant [96 x i8] c"AndroidX.AppCompat.Widget.AppCompatToggleButton+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11536_to = private unnamed_addr constant [68 x i8] c"androidx/appcompat/widget/AppCompatToggleButton$InspectionCompanion\00", align 1 +@.TypeMapEntry.11537_from = private unnamed_addr constant [76 x i8] c"AndroidX.AppCompat.Widget.AppCompatToggleButton, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11538_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/widget/AppCompatToggleButton\00", align 1 +@.TypeMapEntry.11539_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.Widget.ButtonBarLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11540_to = private unnamed_addr constant [42 x i8] c"androidx/appcompat/widget/ButtonBarLayout\00", align 1 +@.TypeMapEntry.11541_from = private unnamed_addr constant [91 x i8] c"AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11542_to = private unnamed_addr constant [62 x i8] c"androidx/appcompat/widget/ContentFrameLayout$OnAttachListener\00", align 1 +@.TypeMapEntry.11543_from = private unnamed_addr constant [102 x i8] c"AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11544_to = private unnamed_addr constant [78 x i8] c"mono/androidx/appcompat/widget/ContentFrameLayout_OnAttachListenerImplementor\00", align 1 +@.TypeMapEntry.11545_from = private unnamed_addr constant [98 x i8] c"AndroidX.AppCompat.Widget.ContentFrameLayout+IOnAttachListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11546_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.ContentFrameLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11547_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/ContentFrameLayout\00", align 1 +@.TypeMapEntry.11548_from = private unnamed_addr constant [66 x i8] c"AndroidX.AppCompat.Widget.DialogTitle, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11549_to = private unnamed_addr constant [38 x i8] c"androidx/appcompat/widget/DialogTitle\00", align 1 +@.TypeMapEntry.11550_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.Widget.DrawableUtils, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11551_to = private unnamed_addr constant [40 x i8] c"androidx/appcompat/widget/DrawableUtils\00", align 1 +@.TypeMapEntry.11552_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.Widget.DropDownListView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11553_to = private unnamed_addr constant [43 x i8] c"androidx/appcompat/widget/DropDownListView\00", align 1 +@.TypeMapEntry.11554_from = private unnamed_addr constant [76 x i8] c"AndroidX.AppCompat.Widget.FitWindowsFrameLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11555_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/widget/FitWindowsFrameLayout\00", align 1 +@.TypeMapEntry.11556_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.Widget.FitWindowsLinearLayout, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11557_to = private unnamed_addr constant [49 x i8] c"androidx/appcompat/widget/FitWindowsLinearLayout\00", align 1 +@.TypeMapEntry.11558_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.ForwardingListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11559_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/ForwardingListener\00", align 1 +@.TypeMapEntry.11560_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.Widget.ForwardingListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11561_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.Widget.IDecorContentParent, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11562_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/DecorContentParent\00", align 1 +@.TypeMapEntry.11563_from = private unnamed_addr constant [81 x i8] c"AndroidX.AppCompat.Widget.IDecorContentParentInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11564_from = private unnamed_addr constant [68 x i8] c"AndroidX.AppCompat.Widget.IDecorToolbar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11565_to = private unnamed_addr constant [39 x i8] c"androidx/appcompat/widget/DecorToolbar\00", align 1 +@.TypeMapEntry.11566_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.IDecorToolbarInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11567_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.Widget.IEmojiCompatConfigurationView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11568_to = private unnamed_addr constant [55 x i8] c"androidx/appcompat/widget/EmojiCompatConfigurationView\00", align 1 +@.TypeMapEntry.11569_from = private unnamed_addr constant [91 x i8] c"AndroidX.AppCompat.Widget.IEmojiCompatConfigurationViewInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11570_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.IFitWindowsViewGroup, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11571_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/widget/FitWindowsViewGroup\00", align 1 +@.TypeMapEntry.11572_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.Widget.IFitWindowsViewGroupInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11573_from = private unnamed_addr constant [101 x i8] c"AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11574_to = private unnamed_addr constant [73 x i8] c"androidx/appcompat/widget/FitWindowsViewGroup$OnFitSystemWindowsListener\00", align 1 +@.TypeMapEntry.11575_from = private unnamed_addr constant [112 x i8] c"AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11576_to = private unnamed_addr constant [89 x i8] c"mono/androidx/appcompat/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor\00", align 1 +@.TypeMapEntry.11577_from = private unnamed_addr constant [108 x i8] c"AndroidX.AppCompat.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11578_from = private unnamed_addr constant [77 x i8] c"AndroidX.AppCompat.Widget.IMenuItemHoverListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11579_to = private unnamed_addr constant [48 x i8] c"androidx/appcompat/widget/MenuItemHoverListener\00", align 1 +@.TypeMapEntry.11580_from = private unnamed_addr constant [88 x i8] c"AndroidX.AppCompat.Widget.IMenuItemHoverListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11581_to = private unnamed_addr constant [64 x i8] c"mono/androidx/appcompat/widget/MenuItemHoverListenerImplementor\00", align 1 +@.TypeMapEntry.11582_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.Widget.IMenuItemHoverListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11583_from = private unnamed_addr constant [76 x i8] c"AndroidX.AppCompat.Widget.IThemedSpinnerAdapter, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11584_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/ThemedSpinnerAdapter\00", align 1 +@.TypeMapEntry.11585_from = private unnamed_addr constant [83 x i8] c"AndroidX.AppCompat.Widget.IThemedSpinnerAdapterInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11586_from = private unnamed_addr constant [64 x i8] c"AndroidX.AppCompat.Widget.IWithHint, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11587_to = private unnamed_addr constant [35 x i8] c"androidx/appcompat/widget/WithHint\00", align 1 +@.TypeMapEntry.11588_from = private unnamed_addr constant [71 x i8] c"AndroidX.AppCompat.Widget.IWithHintInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11589_from = private unnamed_addr constant [86 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+IDividerMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11590_to = private unnamed_addr constant [57 x i8] c"androidx/appcompat/widget/LinearLayoutCompat$DividerMode\00", align 1 +@.TypeMapEntry.11591_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+IDividerModeInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11592_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+IOrientationMode, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11593_to = private unnamed_addr constant [61 x i8] c"androidx/appcompat/widget/LinearLayoutCompat$OrientationMode\00", align 1 +@.TypeMapEntry.11594_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+IOrientationModeInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11595_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11596_to = private unnamed_addr constant [65 x i8] c"androidx/appcompat/widget/LinearLayoutCompat$InspectionCompanion\00", align 1 +@.TypeMapEntry.11597_from = private unnamed_addr constant [86 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat+LayoutParams, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11598_to = private unnamed_addr constant [58 x i8] c"androidx/appcompat/widget/LinearLayoutCompat$LayoutParams\00", align 1 +@.TypeMapEntry.11599_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.LinearLayoutCompat, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11600_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/LinearLayoutCompat\00", align 1 +@.TypeMapEntry.11601_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.Widget.ListPopupWindow, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11602_to = private unnamed_addr constant [42 x i8] c"androidx/appcompat/widget/ListPopupWindow\00", align 1 +@.TypeMapEntry.11603_from = private unnamed_addr constant [91 x i8] c"AndroidX.AppCompat.Widget.MenuPopupWindow+MenuDropDownListView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11604_to = private unnamed_addr constant [63 x i8] c"androidx/appcompat/widget/MenuPopupWindow$MenuDropDownListView\00", align 1 +@.TypeMapEntry.11605_from = private unnamed_addr constant [70 x i8] c"AndroidX.AppCompat.Widget.MenuPopupWindow, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11606_to = private unnamed_addr constant [42 x i8] c"androidx/appcompat/widget/MenuPopupWindow\00", align 1 +@.TypeMapEntry.11607_from = private unnamed_addr constant [83 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11608_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/widget/PopupMenu$OnDismissListener\00", align 1 +@.TypeMapEntry.11609_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11610_to = private unnamed_addr constant [70 x i8] c"mono/androidx/appcompat/widget/PopupMenu_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.11611_from = private unnamed_addr constant [90 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnDismissListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11612_from = private unnamed_addr constant [89 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11613_to = private unnamed_addr constant [60 x i8] c"androidx/appcompat/widget/PopupMenu$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.11614_from = private unnamed_addr constant [100 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11615_to = private unnamed_addr constant [76 x i8] c"mono/androidx/appcompat/widget/PopupMenu_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.11616_from = private unnamed_addr constant [96 x i8] c"AndroidX.AppCompat.Widget.PopupMenu+IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11617_from = private unnamed_addr constant [64 x i8] c"AndroidX.AppCompat.Widget.PopupMenu, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11618_to = private unnamed_addr constant [36 x i8] c"androidx/appcompat/widget/PopupMenu\00", align 1 +@.TypeMapEntry.11619_from = private unnamed_addr constant [118 x i8] c"AndroidX.AppCompat.Widget.ResourceManagerInternal+AsldcInflateDelegate, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11620_to = private unnamed_addr constant [71 x i8] c"androidx/appcompat/widget/ResourceManagerInternal$AsldcInflateDelegate\00", align 1 +@.TypeMapEntry.11621_from = private unnamed_addr constant [119 x i8] c"AndroidX.AppCompat.Widget.ResourceManagerInternal+IResourceManagerHooks, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11622_to = private unnamed_addr constant [71 x i8] c"androidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks\00", align 1 +@.TypeMapEntry.11623_from = private unnamed_addr constant [126 x i8] c"AndroidX.AppCompat.Widget.ResourceManagerInternal+IResourceManagerHooksInvoker, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11624_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.Widget.ResourceManagerInternal, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11625_to = private unnamed_addr constant [50 x i8] c"androidx/appcompat/widget/ResourceManagerInternal\00", align 1 +@.TypeMapEntry.11626_from = private unnamed_addr constant [103 x i8] c"AndroidX.AppCompat.Widget.ScrollingTabContainerView+VisibilityAnimListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11627_to = private unnamed_addr constant [75 x i8] c"androidx/appcompat/widget/ScrollingTabContainerView$VisibilityAnimListener\00", align 1 +@.TypeMapEntry.11628_from = private unnamed_addr constant [80 x i8] c"AndroidX.AppCompat.Widget.ScrollingTabContainerView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11629_to = private unnamed_addr constant [52 x i8] c"androidx/appcompat/widget/ScrollingTabContainerView\00", align 1 +@.TypeMapEntry.11630_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnCloseListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11631_to = private unnamed_addr constant [53 x i8] c"androidx/appcompat/widget/SearchView$OnCloseListener\00", align 1 +@.TypeMapEntry.11632_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11633_to = private unnamed_addr constant [69 x i8] c"mono/androidx/appcompat/widget/SearchView_OnCloseListenerImplementor\00", align 1 +@.TypeMapEntry.11634_from = private unnamed_addr constant [89 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnCloseListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11635_from = private unnamed_addr constant [86 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11636_to = private unnamed_addr constant [57 x i8] c"androidx/appcompat/widget/SearchView$OnQueryTextListener\00", align 1 +@.TypeMapEntry.11637_from = private unnamed_addr constant [97 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11638_to = private unnamed_addr constant [73 x i8] c"mono/androidx/appcompat/widget/SearchView_OnQueryTextListenerImplementor\00", align 1 +@.TypeMapEntry.11639_from = private unnamed_addr constant [93 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnQueryTextListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11640_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11641_to = private unnamed_addr constant [58 x i8] c"androidx/appcompat/widget/SearchView$OnSuggestionListener\00", align 1 +@.TypeMapEntry.11642_from = private unnamed_addr constant [98 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11643_to = private unnamed_addr constant [74 x i8] c"mono/androidx/appcompat/widget/SearchView_OnSuggestionListenerImplementor\00", align 1 +@.TypeMapEntry.11644_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.Widget.SearchView+IOnSuggestionListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11645_from = private unnamed_addr constant [85 x i8] c"AndroidX.AppCompat.Widget.SearchView+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11646_to = private unnamed_addr constant [57 x i8] c"androidx/appcompat/widget/SearchView$InspectionCompanion\00", align 1 +@.TypeMapEntry.11647_from = private unnamed_addr constant [84 x i8] c"AndroidX.AppCompat.Widget.SearchView+SearchAutoComplete, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11648_to = private unnamed_addr constant [56 x i8] c"androidx/appcompat/widget/SearchView$SearchAutoComplete\00", align 1 +@.TypeMapEntry.11649_from = private unnamed_addr constant [65 x i8] c"AndroidX.AppCompat.Widget.SearchView, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11650_to = private unnamed_addr constant [37 x i8] c"androidx/appcompat/widget/SearchView\00", align 1 +@.TypeMapEntry.11651_from = private unnamed_addr constant [105 x i8] c"AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11652_to = private unnamed_addr constant [76 x i8] c"androidx/appcompat/widget/ShareActionProvider$OnShareTargetSelectedListener\00", align 1 +@.TypeMapEntry.11653_from = private unnamed_addr constant [116 x i8] c"AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11654_to = private unnamed_addr constant [92 x i8] c"mono/androidx/appcompat/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.11655_from = private unnamed_addr constant [112 x i8] c"AndroidX.AppCompat.Widget.ShareActionProvider+IOnShareTargetSelectedListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11656_from = private unnamed_addr constant [74 x i8] c"AndroidX.AppCompat.Widget.ShareActionProvider, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11657_to = private unnamed_addr constant [46 x i8] c"androidx/appcompat/widget/ShareActionProvider\00", align 1 +@.TypeMapEntry.11658_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.Widget.SwitchCompat+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11659_to = private unnamed_addr constant [59 x i8] c"androidx/appcompat/widget/SwitchCompat$InspectionCompanion\00", align 1 +@.TypeMapEntry.11660_from = private unnamed_addr constant [67 x i8] c"AndroidX.AppCompat.Widget.SwitchCompat, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11661_to = private unnamed_addr constant [39 x i8] c"androidx/appcompat/widget/SwitchCompat\00", align 1 +@.TypeMapEntry.11662_from = private unnamed_addr constant [65 x i8] c"AndroidX.AppCompat.Widget.ThemeUtils, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11663_to = private unnamed_addr constant [37 x i8] c"androidx/appcompat/widget/ThemeUtils\00", align 1 +@.TypeMapEntry.11664_from = private unnamed_addr constant [81 x i8] c"AndroidX.AppCompat.Widget.ThemedSpinnerAdapterHelper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11665_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/widget/ThemedSpinnerAdapter$Helper\00", align 1 +@.TypeMapEntry.11666_from = private unnamed_addr constant [92 x i8] c"AndroidX.AppCompat.Widget.TintContextWrapper, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11667_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/TintContextWrapper\00", align 1 +@.TypeMapEntry.11668_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.Widget.TintInfo, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11669_to = private unnamed_addr constant [35 x i8] c"androidx/appcompat/widget/TintInfo\00", align 1 +@.TypeMapEntry.11670_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.Widget.TintTypedArray, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11671_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/widget/TintTypedArray\00", align 1 +@.TypeMapEntry.11672_from = private unnamed_addr constant [87 x i8] c"AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11673_to = private unnamed_addr constant [58 x i8] c"androidx/appcompat/widget/Toolbar$OnMenuItemClickListener\00", align 1 +@.TypeMapEntry.11674_from = private unnamed_addr constant [98 x i8] c"AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11675_to = private unnamed_addr constant [74 x i8] c"mono/androidx/appcompat/widget/Toolbar_OnMenuItemClickListenerImplementor\00", align 1 +@.TypeMapEntry.11676_from = private unnamed_addr constant [94 x i8] c"AndroidX.AppCompat.Widget.Toolbar+IOnMenuItemClickListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11677_from = private unnamed_addr constant [82 x i8] c"AndroidX.AppCompat.Widget.Toolbar+InspectionCompanion, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11678_to = private unnamed_addr constant [54 x i8] c"androidx/appcompat/widget/Toolbar$InspectionCompanion\00", align 1 +@.TypeMapEntry.11679_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.Toolbar+LayoutParams, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11680_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/Toolbar$LayoutParams\00", align 1 +@.TypeMapEntry.11681_from = private unnamed_addr constant [95 x i8] c"AndroidX.AppCompat.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11682_to = private unnamed_addr constant [67 x i8] c"androidx/appcompat/widget/Toolbar_NavigationOnClickEventDispatcher\00", align 1 +@.TypeMapEntry.11683_from = private unnamed_addr constant [73 x i8] c"AndroidX.AppCompat.Widget.Toolbar+SavedState, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11684_to = private unnamed_addr constant [45 x i8] c"androidx/appcompat/widget/Toolbar$SavedState\00", align 1 +@.TypeMapEntry.11685_from = private unnamed_addr constant [62 x i8] c"AndroidX.AppCompat.Widget.Toolbar, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11686_to = private unnamed_addr constant [34 x i8] c"androidx/appcompat/widget/Toolbar\00", align 1 +@.TypeMapEntry.11687_from = private unnamed_addr constant [75 x i8] c"AndroidX.AppCompat.Widget.ToolbarWidgetWrapper, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11688_to = private unnamed_addr constant [47 x i8] c"androidx/appcompat/widget/ToolbarWidgetWrapper\00", align 1 +@.TypeMapEntry.11689_from = private unnamed_addr constant [68 x i8] c"AndroidX.AppCompat.Widget.TooltipCompat, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11690_to = private unnamed_addr constant [40 x i8] c"androidx/appcompat/widget/TooltipCompat\00", align 1 +@.TypeMapEntry.11691_from = private unnamed_addr constant [100 x i8] c"AndroidX.AppCompat.Widget.VectorEnabledTintResources, Xamarin.AndroidX.AppCompat.AppCompatResources\00", align 1 +@.TypeMapEntry.11692_to = private unnamed_addr constant [53 x i8] c"androidx/appcompat/widget/VectorEnabledTintResources\00", align 1 +@.TypeMapEntry.11693_from = private unnamed_addr constant [88 x i8] c"AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListener, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11694_to = private unnamed_addr constant [59 x i8] c"androidx/appcompat/widget/ViewStubCompat$OnInflateListener\00", align 1 +@.TypeMapEntry.11695_from = private unnamed_addr constant [99 x i8] c"AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11696_to = private unnamed_addr constant [75 x i8] c"mono/androidx/appcompat/widget/ViewStubCompat_OnInflateListenerImplementor\00", align 1 +@.TypeMapEntry.11697_from = private unnamed_addr constant [95 x i8] c"AndroidX.AppCompat.Widget.ViewStubCompat+IOnInflateListenerInvoker, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11698_from = private unnamed_addr constant [69 x i8] c"AndroidX.AppCompat.Widget.ViewStubCompat, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11699_to = private unnamed_addr constant [41 x i8] c"androidx/appcompat/widget/ViewStubCompat\00", align 1 +@.TypeMapEntry.11700_from = private unnamed_addr constant [64 x i8] c"AndroidX.AppCompat.Widget.ViewUtils, Xamarin.AndroidX.AppCompat\00", align 1 +@.TypeMapEntry.11701_to = private unnamed_addr constant [36 x i8] c"androidx/appcompat/widget/ViewUtils\00", align 1 +@.TypeMapEntry.11702_from = private unnamed_addr constant [81 x i8] c"AndroidX.Arch.Core.Executor.ArchTaskExecutor, Xamarin.AndroidX.Arch.Core.Runtime\00", align 1 +@.TypeMapEntry.11703_to = private unnamed_addr constant [45 x i8] c"androidx/arch/core/executor/ArchTaskExecutor\00", align 1 +@.TypeMapEntry.11704_from = private unnamed_addr constant [84 x i8] c"AndroidX.Arch.Core.Executor.DefaultTaskExecutor, Xamarin.AndroidX.Arch.Core.Runtime\00", align 1 +@.TypeMapEntry.11705_to = private unnamed_addr constant [48 x i8] c"androidx/arch/core/executor/DefaultTaskExecutor\00", align 1 +@.TypeMapEntry.11706_from = private unnamed_addr constant [77 x i8] c"AndroidX.Arch.Core.Executor.TaskExecutor, Xamarin.AndroidX.Arch.Core.Runtime\00", align 1 +@.TypeMapEntry.11707_to = private unnamed_addr constant [41 x i8] c"androidx/arch/core/executor/TaskExecutor\00", align 1 +@.TypeMapEntry.11708_from = private unnamed_addr constant [84 x i8] c"AndroidX.Arch.Core.Executor.TaskExecutorInvoker, Xamarin.AndroidX.Arch.Core.Runtime\00", align 1 +@.TypeMapEntry.11709_from = private unnamed_addr constant [83 x i8] c"AndroidX.Arch.Core.Internal.FastSafeIterableMap, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11710_to = private unnamed_addr constant [48 x i8] c"androidx/arch/core/internal/FastSafeIterableMap\00", align 1 +@.TypeMapEntry.11711_from = private unnamed_addr constant [85 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+Entry, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11712_to = private unnamed_addr constant [50 x i8] c"androidx/arch/core/internal/SafeIterableMap$Entry\00", align 1 +@.TypeMapEntry.11713_from = private unnamed_addr constant [101 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+IteratorWithAdditions, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11714_to = private unnamed_addr constant [66 x i8] c"androidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions\00", align 1 +@.TypeMapEntry.11715_from = private unnamed_addr constant [92 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+ListIterator, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11716_to = private unnamed_addr constant [57 x i8] c"androidx/arch/core/internal/SafeIterableMap$ListIterator\00", align 1 +@.TypeMapEntry.11717_from = private unnamed_addr constant [99 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+ListIteratorInvoker, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11718_from = private unnamed_addr constant [93 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+SupportRemove, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11719_to = private unnamed_addr constant [58 x i8] c"androidx/arch/core/internal/SafeIterableMap$SupportRemove\00", align 1 +@.TypeMapEntry.11720_from = private unnamed_addr constant [100 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap+SupportRemoveInvoker, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11721_from = private unnamed_addr constant [79 x i8] c"AndroidX.Arch.Core.Internal.SafeIterableMap, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11722_to = private unnamed_addr constant [44 x i8] c"androidx/arch/core/internal/SafeIterableMap\00", align 1 +@.TypeMapEntry.11723_from = private unnamed_addr constant [69 x i8] c"AndroidX.Arch.Core.Util.IFunction, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11724_to = private unnamed_addr constant [33 x i8] c"androidx/arch/core/util/Function\00", align 1 +@.TypeMapEntry.11725_from = private unnamed_addr constant [76 x i8] c"AndroidX.Arch.Core.Util.IFunctionInvoker, Xamarin.AndroidX.Arch.Core.Common\00", align 1 +@.TypeMapEntry.11726_from = private unnamed_addr constant [76 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionItem, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11727_to = private unnamed_addr constant [50 x i8] c"androidx/browser/browseractions/BrowserActionItem\00", align 1 +@.TypeMapEntry.11728_from = private unnamed_addr constant [89 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsFallbackMenuView, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11729_to = private unnamed_addr constant [63 x i8] c"androidx/browser/browseractions/BrowserActionsFallbackMenuView\00", align 1 +@.TypeMapEntry.11730_from = private unnamed_addr constant [87 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent+Builder, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11731_to = private unnamed_addr constant [61 x i8] c"androidx/browser/browseractions/BrowserActionsIntent$Builder\00", align 1 +@.TypeMapEntry.11732_from = private unnamed_addr constant [101 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsItemId, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11733_to = private unnamed_addr constant [74 x i8] c"androidx/browser/browseractions/BrowserActionsIntent$BrowserActionsItemId\00", align 1 +@.TypeMapEntry.11734_from = private unnamed_addr constant [108 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsItemIdInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11735_from = private unnamed_addr constant [102 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsUrlType, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11736_to = private unnamed_addr constant [75 x i8] c"androidx/browser/browseractions/BrowserActionsIntent$BrowserActionsUrlType\00", align 1 +@.TypeMapEntry.11737_from = private unnamed_addr constant [109 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent+IBrowserActionsUrlTypeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11738_from = private unnamed_addr constant [79 x i8] c"AndroidX.Browser.BrowserActions.BrowserActionsIntent, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11739_to = private unnamed_addr constant [53 x i8] c"androidx/browser/browseractions/BrowserActionsIntent\00", align 1 +@.TypeMapEntry.11740_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.BrowserActions.BrowserServiceFileProvider, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11741_to = private unnamed_addr constant [59 x i8] c"androidx/browser/browseractions/BrowserServiceFileProvider\00", align 1 +@.TypeMapEntry.11742_from = private unnamed_addr constant [89 x i8] c"AndroidX.Browser.CustomTabs.CustomTabColorSchemeParams+Builder, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11743_to = private unnamed_addr constant [63 x i8] c"androidx/browser/customtabs/CustomTabColorSchemeParams$Builder\00", align 1 +@.TypeMapEntry.11744_from = private unnamed_addr constant [81 x i8] c"AndroidX.Browser.CustomTabs.CustomTabColorSchemeParams, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11745_to = private unnamed_addr constant [55 x i8] c"androidx/browser/customtabs/CustomTabColorSchemeParams\00", align 1 +@.TypeMapEntry.11746_from = private unnamed_addr constant [94 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsCallback+IActivityLayoutState, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11747_to = private unnamed_addr constant [67 x i8] c"androidx/browser/customtabs/CustomTabsCallback$ActivityLayoutState\00", align 1 +@.TypeMapEntry.11748_from = private unnamed_addr constant [101 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsCallback+IActivityLayoutStateInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11749_from = private unnamed_addr constant [73 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11750_to = private unnamed_addr constant [47 x i8] c"androidx/browser/customtabs/CustomTabsCallback\00", align 1 +@.TypeMapEntry.11751_from = private unnamed_addr constant [94 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11752_to = private unnamed_addr constant [68 x i8] c"androidx/browser/customtabs/CustomTabsClient_CustomTabsCallbackImpl\00", align 1 +@.TypeMapEntry.11753_from = private unnamed_addr constant [71 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsClient, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11754_to = private unnamed_addr constant [45 x i8] c"androidx/browser/customtabs/CustomTabsClient\00", align 1 +@.TypeMapEntry.11755_from = private unnamed_addr constant [92 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsFeatures+ICustomTabsFeature, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11756_to = private unnamed_addr constant [65 x i8] c"androidx/browser/customtabs/CustomTabsFeatures$CustomTabsFeature\00", align 1 +@.TypeMapEntry.11757_from = private unnamed_addr constant [99 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsFeatures+ICustomTabsFeatureInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11758_from = private unnamed_addr constant [73 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsFeatures, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11759_to = private unnamed_addr constant [47 x i8] c"androidx/browser/customtabs/CustomTabsFeatures\00", align 1 +@.TypeMapEntry.11760_from = private unnamed_addr constant [79 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+Builder, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11761_to = private unnamed_addr constant [53 x i8] c"androidx/browser/customtabs/CustomTabsIntent$Builder\00", align 1 +@.TypeMapEntry.11762_from = private unnamed_addr constant [101 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivityHeightResizeBehavior, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11763_to = private unnamed_addr constant [74 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ActivityHeightResizeBehavior\00", align 1 +@.TypeMapEntry.11764_from = private unnamed_addr constant [108 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivityHeightResizeBehaviorInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11765_from = private unnamed_addr constant [104 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetDecorationType, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11766_to = private unnamed_addr constant [77 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ActivitySideSheetDecorationType\00", align 1 +@.TypeMapEntry.11767_from = private unnamed_addr constant [111 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetDecorationTypeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11768_from = private unnamed_addr constant [98 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetPosition, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11769_to = private unnamed_addr constant [71 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ActivitySideSheetPosition\00", align 1 +@.TypeMapEntry.11770_from = private unnamed_addr constant [105 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetPositionInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11771_from = private unnamed_addr constant [112 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetRoundedCornersPosition, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11772_to = private unnamed_addr constant [85 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ActivitySideSheetRoundedCornersPosition\00", align 1 +@.TypeMapEntry.11773_from = private unnamed_addr constant [119 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IActivitySideSheetRoundedCornersPositionInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11774_from = private unnamed_addr constant [92 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+ICloseButtonPosition, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11775_to = private unnamed_addr constant [65 x i8] c"androidx/browser/customtabs/CustomTabsIntent$CloseButtonPosition\00", align 1 +@.TypeMapEntry.11776_from = private unnamed_addr constant [99 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+ICloseButtonPositionInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11777_from = private unnamed_addr constant [84 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IColorScheme, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11778_to = private unnamed_addr constant [57 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ColorScheme\00", align 1 +@.TypeMapEntry.11779_from = private unnamed_addr constant [91 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IColorSchemeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11780_from = private unnamed_addr constant [83 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IShareState, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11781_to = private unnamed_addr constant [56 x i8] c"androidx/browser/customtabs/CustomTabsIntent$ShareState\00", align 1 +@.TypeMapEntry.11782_from = private unnamed_addr constant [90 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent+IShareStateInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11783_from = private unnamed_addr constant [71 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsIntent, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11784_to = private unnamed_addr constant [45 x i8] c"androidx/browser/customtabs/CustomTabsIntent\00", align 1 +@.TypeMapEntry.11785_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IFilePurpose, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11786_to = private unnamed_addr constant [58 x i8] c"androidx/browser/customtabs/CustomTabsService$FilePurpose\00", align 1 +@.TypeMapEntry.11787_from = private unnamed_addr constant [92 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IFilePurposeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11788_from = private unnamed_addr constant [82 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IRelation, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11789_to = private unnamed_addr constant [55 x i8] c"androidx/browser/customtabs/CustomTabsService$Relation\00", align 1 +@.TypeMapEntry.11790_from = private unnamed_addr constant [89 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IRelationInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11791_from = private unnamed_addr constant [80 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IResult, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11792_to = private unnamed_addr constant [53 x i8] c"androidx/browser/customtabs/CustomTabsService$Result\00", align 1 +@.TypeMapEntry.11793_from = private unnamed_addr constant [87 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService+IResultInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11794_from = private unnamed_addr constant [72 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11795_to = private unnamed_addr constant [46 x i8] c"androidx/browser/customtabs/CustomTabsService\00", align 1 +@.TypeMapEntry.11796_from = private unnamed_addr constant [82 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsServiceConnection, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11797_to = private unnamed_addr constant [56 x i8] c"androidx/browser/customtabs/CustomTabsServiceConnection\00", align 1 +@.TypeMapEntry.11798_from = private unnamed_addr constant [86 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11799_to = private unnamed_addr constant [54 x i8] c"crc64396a3fe5f8138e3f/CustomTabsServiceConnectionImpl\00", align 1 +@.TypeMapEntry.11800_from = private unnamed_addr constant [89 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsServiceConnectionInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11801_from = private unnamed_addr constant [79 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsServiceInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11802_from = private unnamed_addr constant [87 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsSession+PendingSession, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11803_to = private unnamed_addr constant [61 x i8] c"androidx/browser/customtabs/CustomTabsSession$PendingSession\00", align 1 +@.TypeMapEntry.11804_from = private unnamed_addr constant [72 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsSession, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11805_to = private unnamed_addr constant [46 x i8] c"androidx/browser/customtabs/CustomTabsSession\00", align 1 +@.TypeMapEntry.11806_from = private unnamed_addr constant [77 x i8] c"AndroidX.Browser.CustomTabs.CustomTabsSessionToken, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11807_to = private unnamed_addr constant [51 x i8] c"androidx/browser/customtabs/CustomTabsSessionToken\00", align 1 +@.TypeMapEntry.11808_from = private unnamed_addr constant [81 x i8] c"AndroidX.Browser.CustomTabs.IEngagementSignalsCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11809_to = private unnamed_addr constant [54 x i8] c"androidx/browser/customtabs/EngagementSignalsCallback\00", align 1 +@.TypeMapEntry.11810_from = private unnamed_addr constant [88 x i8] c"AndroidX.Browser.CustomTabs.IEngagementSignalsCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11811_from = private unnamed_addr constant [88 x i8] c"AndroidX.Browser.CustomTabs.IExperimentalMinimizationCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11812_to = private unnamed_addr constant [61 x i8] c"androidx/browser/customtabs/ExperimentalMinimizationCallback\00", align 1 +@.TypeMapEntry.11813_from = private unnamed_addr constant [95 x i8] c"AndroidX.Browser.CustomTabs.IExperimentalMinimizationCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11814_from = private unnamed_addr constant [74 x i8] c"AndroidX.Browser.CustomTabs.IPostMessageBackend, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11815_to = private unnamed_addr constant [47 x i8] c"androidx/browser/customtabs/PostMessageBackend\00", align 1 +@.TypeMapEntry.11816_from = private unnamed_addr constant [81 x i8] c"AndroidX.Browser.CustomTabs.IPostMessageBackendInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11817_from = private unnamed_addr constant [71 x i8] c"AndroidX.Browser.CustomTabs.KeepAliveService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11818_to = private unnamed_addr constant [39 x i8] c"crc64396a3fe5f8138e3f/KeepAliveService\00", align 1 +@.TypeMapEntry.11819_from = private unnamed_addr constant [73 x i8] c"AndroidX.Browser.CustomTabs.PostMessageService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11820_to = private unnamed_addr constant [47 x i8] c"androidx/browser/customtabs/PostMessageService\00", align 1 +@.TypeMapEntry.11821_from = private unnamed_addr constant [83 x i8] c"AndroidX.Browser.CustomTabs.PostMessageServiceConnection, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11822_to = private unnamed_addr constant [57 x i8] c"androidx/browser/customtabs/PostMessageServiceConnection\00", align 1 +@.TypeMapEntry.11823_from = private unnamed_addr constant [90 x i8] c"AndroidX.Browser.CustomTabs.PostMessageServiceConnectionInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11824_from = private unnamed_addr constant [70 x i8] c"AndroidX.Browser.CustomTabs.TrustedWebUtils, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11825_to = private unnamed_addr constant [44 x i8] c"androidx/browser/customtabs/TrustedWebUtils\00", align 1 +@.TypeMapEntry.11826_from = private unnamed_addr constant [63 x i8] c"AndroidX.Browser.Trusted.ITokenStore, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11827_to = private unnamed_addr constant [36 x i8] c"androidx/browser/trusted/TokenStore\00", align 1 +@.TypeMapEntry.11828_from = private unnamed_addr constant [70 x i8] c"AndroidX.Browser.Trusted.ITokenStoreInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11829_from = private unnamed_addr constant [82 x i8] c"AndroidX.Browser.Trusted.ITrustedWebActivityDisplayMode, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11830_to = private unnamed_addr constant [55 x i8] c"androidx/browser/trusted/TrustedWebActivityDisplayMode\00", align 1 +@.TypeMapEntry.11831_from = private unnamed_addr constant [89 x i8] c"AndroidX.Browser.Trusted.ITrustedWebActivityDisplayModeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11832_from = private unnamed_addr constant [77 x i8] c"AndroidX.Browser.Trusted.NotificationApiHelperForM, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11833_to = private unnamed_addr constant [51 x i8] c"androidx/browser/trusted/NotificationApiHelperForM\00", align 1 +@.TypeMapEntry.11834_from = private unnamed_addr constant [79 x i8] c"AndroidX.Browser.Trusted.ScreenOrientation+ILockType, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11835_to = private unnamed_addr constant [52 x i8] c"androidx/browser/trusted/ScreenOrientation$LockType\00", align 1 +@.TypeMapEntry.11836_from = private unnamed_addr constant [86 x i8] c"AndroidX.Browser.Trusted.ScreenOrientation+ILockTypeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11837_from = private unnamed_addr constant [69 x i8] c"AndroidX.Browser.Trusted.ScreenOrientation, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11838_to = private unnamed_addr constant [43 x i8] c"androidx/browser/trusted/ScreenOrientation\00", align 1 +@.TypeMapEntry.11839_from = private unnamed_addr constant [69 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareData, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11840_to = private unnamed_addr constant [43 x i8] c"androidx/browser/trusted/sharing/ShareData\00", align 1 +@.TypeMapEntry.11841_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+FileFormField, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11842_to = private unnamed_addr constant [59 x i8] c"androidx/browser/trusted/sharing/ShareTarget$FileFormField\00", align 1 +@.TypeMapEntry.11843_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+IEncodingType, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11844_to = private unnamed_addr constant [58 x i8] c"androidx/browser/trusted/sharing/ShareTarget$EncodingType\00", align 1 +@.TypeMapEntry.11845_from = private unnamed_addr constant [92 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+IEncodingTypeInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11846_from = private unnamed_addr constant [86 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+IRequestMethod, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11847_to = private unnamed_addr constant [59 x i8] c"androidx/browser/trusted/sharing/ShareTarget$RequestMethod\00", align 1 +@.TypeMapEntry.11848_from = private unnamed_addr constant [93 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+IRequestMethodInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11849_from = private unnamed_addr constant [78 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget+Params, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11850_to = private unnamed_addr constant [52 x i8] c"androidx/browser/trusted/sharing/ShareTarget$Params\00", align 1 +@.TypeMapEntry.11851_from = private unnamed_addr constant [71 x i8] c"AndroidX.Browser.Trusted.Sharing.ShareTarget, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11852_to = private unnamed_addr constant [45 x i8] c"androidx/browser/trusted/sharing/ShareTarget\00", align 1 +@.TypeMapEntry.11853_from = private unnamed_addr constant [86 x i8] c"AndroidX.Browser.Trusted.Splashscreens.SplashScreenParamKey, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11854_to = private unnamed_addr constant [60 x i8] c"androidx/browser/trusted/splashscreens/SplashScreenParamKey\00", align 1 +@.TypeMapEntry.11855_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.Trusted.Splashscreens.SplashScreenVersion, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11856_to = private unnamed_addr constant [59 x i8] c"androidx/browser/trusted/splashscreens/SplashScreenVersion\00", align 1 +@.TypeMapEntry.11857_from = private unnamed_addr constant [57 x i8] c"AndroidX.Browser.Trusted.Token, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11858_to = private unnamed_addr constant [31 x i8] c"androidx/browser/trusted/Token\00", align 1 +@.TypeMapEntry.11859_from = private unnamed_addr constant [78 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityCallback, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11860_to = private unnamed_addr constant [52 x i8] c"androidx/browser/trusted/TrustedWebActivityCallback\00", align 1 +@.TypeMapEntry.11861_from = private unnamed_addr constant [85 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityCallbackInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11862_from = private unnamed_addr constant [84 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityCallbackRemote, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11863_to = private unnamed_addr constant [58 x i8] c"androidx/browser/trusted/TrustedWebActivityCallbackRemote\00", align 1 +@.TypeMapEntry.11864_from = private unnamed_addr constant [81 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityDisplayMode, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11865_from = private unnamed_addr constant [87 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityDisplayModeConsts, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11866_from = private unnamed_addr constant [92 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityDisplayModeDefaultMode, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11867_to = private unnamed_addr constant [67 x i8] c"androidx/browser/trusted/TrustedWebActivityDisplayMode$DefaultMode\00", align 1 +@.TypeMapEntry.11868_from = private unnamed_addr constant [94 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityDisplayModeImmersiveMode, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11869_to = private unnamed_addr constant [69 x i8] c"androidx/browser/trusted/TrustedWebActivityDisplayMode$ImmersiveMode\00", align 1 +@.TypeMapEntry.11870_from = private unnamed_addr constant [76 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityIntent, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11871_to = private unnamed_addr constant [50 x i8] c"androidx/browser/trusted/TrustedWebActivityIntent\00", align 1 +@.TypeMapEntry.11872_from = private unnamed_addr constant [83 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityIntentBuilder, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11873_to = private unnamed_addr constant [57 x i8] c"androidx/browser/trusted/TrustedWebActivityIntentBuilder\00", align 1 +@.TypeMapEntry.11874_from = private unnamed_addr constant [77 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityService, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11875_to = private unnamed_addr constant [51 x i8] c"androidx/browser/trusted/TrustedWebActivityService\00", align 1 +@.TypeMapEntry.11876_from = private unnamed_addr constant [87 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityServiceConnection, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11877_to = private unnamed_addr constant [61 x i8] c"androidx/browser/trusted/TrustedWebActivityServiceConnection\00", align 1 +@.TypeMapEntry.11878_from = private unnamed_addr constant [91 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityServiceConnectionPool, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11879_to = private unnamed_addr constant [65 x i8] c"androidx/browser/trusted/TrustedWebActivityServiceConnectionPool\00", align 1 +@.TypeMapEntry.11880_from = private unnamed_addr constant [84 x i8] c"AndroidX.Browser.Trusted.TrustedWebActivityServiceInvoker, Xamarin.AndroidX.Browser\00", align 1 +@.TypeMapEntry.11881_from = private unnamed_addr constant [61 x i8] c"AndroidX.CardView.Widget.CardView, Xamarin.AndroidX.CardView\00", align 1 +@.TypeMapEntry.11882_to = private unnamed_addr constant [34 x i8] c"androidx/cardview/widget/CardView\00", align 1 +@.TypeMapEntry.11883_from = private unnamed_addr constant [80 x i8] c"AndroidX.CardView.Widget.RoundRectDrawableWithShadow, Xamarin.AndroidX.CardView\00", align 1 +@.TypeMapEntry.11884_to = private unnamed_addr constant [53 x i8] c"androidx/cardview/widget/RoundRectDrawableWithShadow\00", align 1 +@.TypeMapEntry.11885_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.ArrayMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11886_to = private unnamed_addr constant [29 x i8] c"androidx/collection/ArrayMap\00", align 1 +@.TypeMapEntry.11887_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.ArrayMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11888_to = private unnamed_addr constant [31 x i8] c"androidx/collection/ArrayMapKt\00", align 1 +@.TypeMapEntry.11889_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.ArraySet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11890_to = private unnamed_addr constant [29 x i8] c"androidx/collection/ArraySet\00", align 1 +@.TypeMapEntry.11891_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.ArraySetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11892_to = private unnamed_addr constant [31 x i8] c"androidx/collection/ArraySetKt\00", align 1 +@.TypeMapEntry.11893_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.CircularArray, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11894_to = private unnamed_addr constant [34 x i8] c"androidx/collection/CircularArray\00", align 1 +@.TypeMapEntry.11895_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.CircularIntArray, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11896_to = private unnamed_addr constant [37 x i8] c"androidx/collection/CircularIntArray\00", align 1 +@.TypeMapEntry.11897_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.DoubleList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11898_to = private unnamed_addr constant [31 x i8] c"androidx/collection/DoubleList\00", align 1 +@.TypeMapEntry.11899_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.DoubleListInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11900_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.DoubleListKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11901_to = private unnamed_addr constant [33 x i8] c"androidx/collection/DoubleListKt\00", align 1 +@.TypeMapEntry.11902_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.DoubleSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11903_to = private unnamed_addr constant [32 x i8] c"androidx/collection/DoubleSetKt\00", align 1 +@.TypeMapEntry.11904_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.FloatFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11905_to = private unnamed_addr constant [34 x i8] c"androidx/collection/FloatFloatMap\00", align 1 +@.TypeMapEntry.11906_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.FloatFloatMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11907_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.FloatFloatMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11908_to = private unnamed_addr constant [36 x i8] c"androidx/collection/FloatFloatMapKt\00", align 1 +@.TypeMapEntry.11909_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.FloatFloatPair, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11910_to = private unnamed_addr constant [35 x i8] c"androidx/collection/FloatFloatPair\00", align 1 +@.TypeMapEntry.11911_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.FloatIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11912_to = private unnamed_addr constant [32 x i8] c"androidx/collection/FloatIntMap\00", align 1 +@.TypeMapEntry.11913_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.FloatIntMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11914_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.FloatIntMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11915_to = private unnamed_addr constant [34 x i8] c"androidx/collection/FloatIntMapKt\00", align 1 +@.TypeMapEntry.11916_from = private unnamed_addr constant [63 x i8] c"AndroidX.Collection.FloatList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11917_to = private unnamed_addr constant [30 x i8] c"androidx/collection/FloatList\00", align 1 +@.TypeMapEntry.11918_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.FloatListInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11919_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.FloatListKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11920_to = private unnamed_addr constant [32 x i8] c"androidx/collection/FloatListKt\00", align 1 +@.TypeMapEntry.11921_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.FloatLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11922_to = private unnamed_addr constant [33 x i8] c"androidx/collection/FloatLongMap\00", align 1 +@.TypeMapEntry.11923_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.FloatLongMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11924_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.FloatLongMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11925_to = private unnamed_addr constant [35 x i8] c"androidx/collection/FloatLongMapKt\00", align 1 +@.TypeMapEntry.11926_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.FloatObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11927_to = private unnamed_addr constant [35 x i8] c"androidx/collection/FloatObjectMap\00", align 1 +@.TypeMapEntry.11928_from = private unnamed_addr constant [75 x i8] c"AndroidX.Collection.FloatObjectMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11929_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.FloatObjectMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11930_to = private unnamed_addr constant [37 x i8] c"androidx/collection/FloatObjectMapKt\00", align 1 +@.TypeMapEntry.11931_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.FloatSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11932_to = private unnamed_addr constant [29 x i8] c"androidx/collection/FloatSet\00", align 1 +@.TypeMapEntry.11933_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.FloatSetInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11934_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.FloatSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11935_to = private unnamed_addr constant [31 x i8] c"androidx/collection/FloatSetKt\00", align 1 +@.TypeMapEntry.11936_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.IntFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11937_to = private unnamed_addr constant [32 x i8] c"androidx/collection/IntFloatMap\00", align 1 +@.TypeMapEntry.11938_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.IntFloatMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11939_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.IntFloatMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11940_to = private unnamed_addr constant [34 x i8] c"androidx/collection/IntFloatMapKt\00", align 1 +@.TypeMapEntry.11941_from = private unnamed_addr constant [63 x i8] c"AndroidX.Collection.IntIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11942_to = private unnamed_addr constant [30 x i8] c"androidx/collection/IntIntMap\00", align 1 +@.TypeMapEntry.11943_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.IntIntMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11944_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.IntIntMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11945_to = private unnamed_addr constant [32 x i8] c"androidx/collection/IntIntMapKt\00", align 1 +@.TypeMapEntry.11946_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.IntIntPair, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11947_to = private unnamed_addr constant [31 x i8] c"androidx/collection/IntIntPair\00", align 1 +@.TypeMapEntry.11948_from = private unnamed_addr constant [61 x i8] c"AndroidX.Collection.IntList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11949_to = private unnamed_addr constant [28 x i8] c"androidx/collection/IntList\00", align 1 +@.TypeMapEntry.11950_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.IntListInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11951_from = private unnamed_addr constant [63 x i8] c"AndroidX.Collection.IntListKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11952_to = private unnamed_addr constant [30 x i8] c"androidx/collection/IntListKt\00", align 1 +@.TypeMapEntry.11953_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.IntLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11954_to = private unnamed_addr constant [31 x i8] c"androidx/collection/IntLongMap\00", align 1 +@.TypeMapEntry.11955_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.IntLongMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11956_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.IntLongMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11957_to = private unnamed_addr constant [33 x i8] c"androidx/collection/IntLongMapKt\00", align 1 +@.TypeMapEntry.11958_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.IntObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11959_to = private unnamed_addr constant [33 x i8] c"androidx/collection/IntObjectMap\00", align 1 +@.TypeMapEntry.11960_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.IntObjectMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11961_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.IntObjectMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11962_to = private unnamed_addr constant [35 x i8] c"androidx/collection/IntObjectMapKt\00", align 1 +@.TypeMapEntry.11963_from = private unnamed_addr constant [60 x i8] c"AndroidX.Collection.IntSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11964_to = private unnamed_addr constant [27 x i8] c"androidx/collection/IntSet\00", align 1 +@.TypeMapEntry.11965_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.IntSetInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11966_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.IntSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11967_to = private unnamed_addr constant [29 x i8] c"androidx/collection/IntSetKt\00", align 1 +@.TypeMapEntry.11968_from = private unnamed_addr constant [81 x i8] c"AndroidX.Collection.Internal.ContainerHelpersKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11969_to = private unnamed_addr constant [48 x i8] c"androidx/collection/internal/ContainerHelpersKt\00", align 1 +@.TypeMapEntry.11970_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.Internal.LockExtKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11971_to = private unnamed_addr constant [39 x i8] c"androidx/collection/internal/LockExtKt\00", align 1 +@.TypeMapEntry.11972_from = private unnamed_addr constant [83 x i8] c"AndroidX.Collection.Internal.PackingHelpers_jvmKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11973_to = private unnamed_addr constant [50 x i8] c"androidx/collection/internal/PackingHelpers_jvmKt\00", align 1 +@.TypeMapEntry.11974_from = private unnamed_addr constant [79 x i8] c"AndroidX.Collection.Internal.RuntimeHelpersKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11975_to = private unnamed_addr constant [46 x i8] c"androidx/collection/internal/RuntimeHelpersKt\00", align 1 +@.TypeMapEntry.11976_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.LongFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11977_to = private unnamed_addr constant [33 x i8] c"androidx/collection/LongFloatMap\00", align 1 +@.TypeMapEntry.11978_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.LongFloatMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11979_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.LongFloatMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11980_to = private unnamed_addr constant [35 x i8] c"androidx/collection/LongFloatMapKt\00", align 1 +@.TypeMapEntry.11981_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.LongIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11982_to = private unnamed_addr constant [31 x i8] c"androidx/collection/LongIntMap\00", align 1 +@.TypeMapEntry.11983_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.LongIntMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11984_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.LongIntMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11985_to = private unnamed_addr constant [33 x i8] c"androidx/collection/LongIntMapKt\00", align 1 +@.TypeMapEntry.11986_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.LongList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11987_to = private unnamed_addr constant [29 x i8] c"androidx/collection/LongList\00", align 1 +@.TypeMapEntry.11988_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.LongListInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11989_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.LongListKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11990_to = private unnamed_addr constant [31 x i8] c"androidx/collection/LongListKt\00", align 1 +@.TypeMapEntry.11991_from = private unnamed_addr constant [65 x i8] c"AndroidX.Collection.LongLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11992_to = private unnamed_addr constant [32 x i8] c"androidx/collection/LongLongMap\00", align 1 +@.TypeMapEntry.11993_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.LongLongMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11994_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.LongLongMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11995_to = private unnamed_addr constant [34 x i8] c"androidx/collection/LongLongMapKt\00", align 1 +@.TypeMapEntry.11996_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.LongLongPair, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11997_to = private unnamed_addr constant [33 x i8] c"androidx/collection/LongLongPair\00", align 1 +@.TypeMapEntry.11998_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.LongObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.11999_to = private unnamed_addr constant [34 x i8] c"androidx/collection/LongObjectMap\00", align 1 +@.TypeMapEntry.12000_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.LongObjectMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12001_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.LongObjectMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12002_to = private unnamed_addr constant [36 x i8] c"androidx/collection/LongObjectMapKt\00", align 1 +@.TypeMapEntry.12003_from = private unnamed_addr constant [61 x i8] c"AndroidX.Collection.LongSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12004_to = private unnamed_addr constant [28 x i8] c"androidx/collection/LongSet\00", align 1 +@.TypeMapEntry.12005_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.LongSetInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12006_from = private unnamed_addr constant [63 x i8] c"AndroidX.Collection.LongSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12007_to = private unnamed_addr constant [30 x i8] c"androidx/collection/LongSetKt\00", align 1 +@.TypeMapEntry.12008_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.LongSparseArray, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12009_to = private unnamed_addr constant [36 x i8] c"androidx/collection/LongSparseArray\00", align 1 +@.TypeMapEntry.12010_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.LongSparseArrayKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12011_to = private unnamed_addr constant [38 x i8] c"androidx/collection/LongSparseArrayKt\00", align 1 +@.TypeMapEntry.12012_from = private unnamed_addr constant [62 x i8] c"AndroidX.Collection.LruCache, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12013_to = private unnamed_addr constant [29 x i8] c"androidx/collection/LruCache\00", align 1 +@.TypeMapEntry.12014_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.LruCacheKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12015_to = private unnamed_addr constant [31 x i8] c"androidx/collection/LruCacheKt\00", align 1 +@.TypeMapEntry.12016_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableDoubleList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12017_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableDoubleList\00", align 1 +@.TypeMapEntry.12018_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.MutableFloatFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12019_to = private unnamed_addr constant [41 x i8] c"androidx/collection/MutableFloatFloatMap\00", align 1 +@.TypeMapEntry.12020_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.MutableFloatIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12021_to = private unnamed_addr constant [39 x i8] c"androidx/collection/MutableFloatIntMap\00", align 1 +@.TypeMapEntry.12022_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.MutableFloatList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12023_to = private unnamed_addr constant [37 x i8] c"androidx/collection/MutableFloatList\00", align 1 +@.TypeMapEntry.12024_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.MutableFloatLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12025_to = private unnamed_addr constant [40 x i8] c"androidx/collection/MutableFloatLongMap\00", align 1 +@.TypeMapEntry.12026_from = private unnamed_addr constant [75 x i8] c"AndroidX.Collection.MutableFloatObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12027_to = private unnamed_addr constant [42 x i8] c"androidx/collection/MutableFloatObjectMap\00", align 1 +@.TypeMapEntry.12028_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.MutableFloatSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12029_to = private unnamed_addr constant [36 x i8] c"androidx/collection/MutableFloatSet\00", align 1 +@.TypeMapEntry.12030_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.MutableIntFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12031_to = private unnamed_addr constant [39 x i8] c"androidx/collection/MutableIntFloatMap\00", align 1 +@.TypeMapEntry.12032_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.MutableIntIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12033_to = private unnamed_addr constant [37 x i8] c"androidx/collection/MutableIntIntMap\00", align 1 +@.TypeMapEntry.12034_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.MutableIntList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12035_to = private unnamed_addr constant [35 x i8] c"androidx/collection/MutableIntList\00", align 1 +@.TypeMapEntry.12036_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableIntLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12037_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableIntLongMap\00", align 1 +@.TypeMapEntry.12038_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.MutableIntObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12039_to = private unnamed_addr constant [40 x i8] c"androidx/collection/MutableIntObjectMap\00", align 1 +@.TypeMapEntry.12040_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.MutableIntSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12041_to = private unnamed_addr constant [34 x i8] c"androidx/collection/MutableIntSet\00", align 1 +@.TypeMapEntry.12042_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.MutableLongFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12043_to = private unnamed_addr constant [40 x i8] c"androidx/collection/MutableLongFloatMap\00", align 1 +@.TypeMapEntry.12044_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableLongIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12045_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableLongIntMap\00", align 1 +@.TypeMapEntry.12046_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.MutableLongList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12047_to = private unnamed_addr constant [36 x i8] c"androidx/collection/MutableLongList\00", align 1 +@.TypeMapEntry.12048_from = private unnamed_addr constant [72 x i8] c"AndroidX.Collection.MutableLongLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12049_to = private unnamed_addr constant [39 x i8] c"androidx/collection/MutableLongLongMap\00", align 1 +@.TypeMapEntry.12050_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.MutableLongObjectMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12051_to = private unnamed_addr constant [41 x i8] c"androidx/collection/MutableLongObjectMap\00", align 1 +@.TypeMapEntry.12052_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.MutableLongSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12053_to = private unnamed_addr constant [35 x i8] c"androidx/collection/MutableLongSet\00", align 1 +@.TypeMapEntry.12054_from = private unnamed_addr constant [75 x i8] c"AndroidX.Collection.MutableObjectFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12055_to = private unnamed_addr constant [42 x i8] c"androidx/collection/MutableObjectFloatMap\00", align 1 +@.TypeMapEntry.12056_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.MutableObjectIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12057_to = private unnamed_addr constant [40 x i8] c"androidx/collection/MutableObjectIntMap\00", align 1 +@.TypeMapEntry.12058_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableObjectList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12059_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableObjectList\00", align 1 +@.TypeMapEntry.12060_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.MutableObjectLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12061_to = private unnamed_addr constant [41 x i8] c"androidx/collection/MutableObjectLongMap\00", align 1 +@.TypeMapEntry.12062_from = private unnamed_addr constant [78 x i8] c"AndroidX.Collection.MutableOrderedScatterSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12063_to = private unnamed_addr constant [45 x i8] c"androidx/collection/MutableOrderedScatterSet\00", align 1 +@.TypeMapEntry.12064_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableScatterMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12065_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableScatterMap\00", align 1 +@.TypeMapEntry.12066_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.MutableScatterSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12067_to = private unnamed_addr constant [38 x i8] c"androidx/collection/MutableScatterSet\00", align 1 +@.TypeMapEntry.12068_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.ObjectFloatMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12069_to = private unnamed_addr constant [35 x i8] c"androidx/collection/ObjectFloatMap\00", align 1 +@.TypeMapEntry.12070_from = private unnamed_addr constant [75 x i8] c"AndroidX.Collection.ObjectFloatMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12071_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.ObjectFloatMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12072_to = private unnamed_addr constant [37 x i8] c"androidx/collection/ObjectFloatMapKt\00", align 1 +@.TypeMapEntry.12073_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.ObjectIntMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12074_to = private unnamed_addr constant [33 x i8] c"androidx/collection/ObjectIntMap\00", align 1 +@.TypeMapEntry.12075_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.ObjectIntMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12076_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.ObjectIntMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12077_to = private unnamed_addr constant [35 x i8] c"androidx/collection/ObjectIntMapKt\00", align 1 +@.TypeMapEntry.12078_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.ObjectList, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12079_to = private unnamed_addr constant [31 x i8] c"androidx/collection/ObjectList\00", align 1 +@.TypeMapEntry.12080_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.ObjectListInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12081_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.ObjectListKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12082_to = private unnamed_addr constant [33 x i8] c"androidx/collection/ObjectListKt\00", align 1 +@.TypeMapEntry.12083_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.ObjectLongMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12084_to = private unnamed_addr constant [34 x i8] c"androidx/collection/ObjectLongMap\00", align 1 +@.TypeMapEntry.12085_from = private unnamed_addr constant [74 x i8] c"AndroidX.Collection.ObjectLongMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12086_from = private unnamed_addr constant [69 x i8] c"AndroidX.Collection.ObjectLongMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12087_to = private unnamed_addr constant [36 x i8] c"androidx/collection/ObjectLongMapKt\00", align 1 +@.TypeMapEntry.12088_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.OrderedScatterSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12089_to = private unnamed_addr constant [38 x i8] c"androidx/collection/OrderedScatterSet\00", align 1 +@.TypeMapEntry.12090_from = private unnamed_addr constant [78 x i8] c"AndroidX.Collection.OrderedScatterSetInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12091_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.OrderedScatterSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12092_to = private unnamed_addr constant [40 x i8] c"androidx/collection/OrderedScatterSetKt\00", align 1 +@.TypeMapEntry.12093_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.PackingUtilsKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12094_to = private unnamed_addr constant [35 x i8] c"androidx/collection/PackingUtilsKt\00", align 1 +@.TypeMapEntry.12095_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.ScatterMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12096_to = private unnamed_addr constant [31 x i8] c"androidx/collection/ScatterMap\00", align 1 +@.TypeMapEntry.12097_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.ScatterMapInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12098_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.ScatterMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12099_to = private unnamed_addr constant [33 x i8] c"androidx/collection/ScatterMapKt\00", align 1 +@.TypeMapEntry.12100_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.ScatterSet, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12101_to = private unnamed_addr constant [31 x i8] c"androidx/collection/ScatterSet\00", align 1 +@.TypeMapEntry.12102_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.ScatterSetInvoker, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12103_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.ScatterSetKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12104_to = private unnamed_addr constant [33 x i8] c"androidx/collection/ScatterSetKt\00", align 1 +@.TypeMapEntry.12105_from = private unnamed_addr constant [64 x i8] c"AndroidX.Collection.SieveCache, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12106_to = private unnamed_addr constant [31 x i8] c"androidx/collection/SieveCache\00", align 1 +@.TypeMapEntry.12107_from = private unnamed_addr constant [66 x i8] c"AndroidX.Collection.SieveCacheKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12108_to = private unnamed_addr constant [33 x i8] c"androidx/collection/SieveCacheKt\00", align 1 +@.TypeMapEntry.12109_from = private unnamed_addr constant [68 x i8] c"AndroidX.Collection.SimpleArrayMap, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12110_to = private unnamed_addr constant [35 x i8] c"androidx/collection/SimpleArrayMap\00", align 1 +@.TypeMapEntry.12111_from = private unnamed_addr constant [70 x i8] c"AndroidX.Collection.SimpleArrayMapKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12112_to = private unnamed_addr constant [37 x i8] c"androidx/collection/SimpleArrayMapKt\00", align 1 +@.TypeMapEntry.12113_from = private unnamed_addr constant [71 x i8] c"AndroidX.Collection.SparseArrayCompat, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12114_to = private unnamed_addr constant [38 x i8] c"androidx/collection/SparseArrayCompat\00", align 1 +@.TypeMapEntry.12115_from = private unnamed_addr constant [73 x i8] c"AndroidX.Collection.SparseArrayCompatKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12116_to = private unnamed_addr constant [40 x i8] c"androidx/collection/SparseArrayCompatKt\00", align 1 +@.TypeMapEntry.12117_from = private unnamed_addr constant [67 x i8] c"AndroidX.Collection.SparseArrayKt, Xamarin.AndroidX.Collection.Jvm\00", align 1 +@.TypeMapEntry.12118_to = private unnamed_addr constant [34 x i8] c"androidx/collection/SparseArrayKt\00", align 1 +@.TypeMapEntry.12119_from = private unnamed_addr constant [90 x i8] c"AndroidX.Concurrent.Futures.AbstractResolvableFuture, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12120_to = private unnamed_addr constant [53 x i8] c"androidx/concurrent/futures/AbstractResolvableFuture\00", align 1 +@.TypeMapEntry.12121_from = private unnamed_addr constant [97 x i8] c"AndroidX.Concurrent.Futures.AbstractResolvableFutureInvoker, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12122_from = private unnamed_addr constant [99 x i8] c"AndroidX.Concurrent.Futures.CallbackToFutureAdapter+Completer, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12123_to = private unnamed_addr constant [62 x i8] c"androidx/concurrent/futures/CallbackToFutureAdapter$Completer\00", align 1 +@.TypeMapEntry.12124_from = private unnamed_addr constant [99 x i8] c"AndroidX.Concurrent.Futures.CallbackToFutureAdapter+IResolver, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12125_to = private unnamed_addr constant [61 x i8] c"androidx/concurrent/futures/CallbackToFutureAdapter$Resolver\00", align 1 +@.TypeMapEntry.12126_from = private unnamed_addr constant [106 x i8] c"AndroidX.Concurrent.Futures.CallbackToFutureAdapter+IResolverInvoker, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12127_from = private unnamed_addr constant [89 x i8] c"AndroidX.Concurrent.Futures.CallbackToFutureAdapter, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12128_to = private unnamed_addr constant [52 x i8] c"androidx/concurrent/futures/CallbackToFutureAdapter\00", align 1 +@.TypeMapEntry.12129_from = private unnamed_addr constant [80 x i8] c"AndroidX.Concurrent.Futures.DirectExecutor, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12130_to = private unnamed_addr constant [43 x i8] c"androidx/concurrent/futures/DirectExecutor\00", align 1 +@.TypeMapEntry.12131_from = private unnamed_addr constant [82 x i8] c"AndroidX.Concurrent.Futures.ResolvableFuture, Xamarin.AndroidX.Concurrent.Futures\00", align 1 +@.TypeMapEntry.12132_to = private unnamed_addr constant [45 x i8] c"androidx/concurrent/futures/ResolvableFuture\00", align 1 +@.TypeMapEntry.12133_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.ArrayLinkedVariables, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12134_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/ArrayLinkedVariables\00", align 1 +@.TypeMapEntry.12135_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.ArrayRow+IArrayRowVariables, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12136_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/core/ArrayRow$ArrayRowVariables\00", align 1 +@.TypeMapEntry.12137_from = private unnamed_addr constant [106 x i8] c"AndroidX.ConstraintLayout.Core.ArrayRow+IArrayRowVariablesInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12138_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Core.ArrayRow, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12139_to = private unnamed_addr constant [40 x i8] c"androidx/constraintlayout/core/ArrayRow\00", align 1 +@.TypeMapEntry.12140_from = private unnamed_addr constant [77 x i8] c"AndroidX.ConstraintLayout.Core.Cache, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12141_to = private unnamed_addr constant [37 x i8] c"androidx/constraintlayout/core/Cache\00", align 1 +@.TypeMapEntry.12142_from = private unnamed_addr constant [83 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Barrier, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12143_to = private unnamed_addr constant [43 x i8] c"androidx/constraintlayout/core/dsl/Barrier\00", align 1 +@.TypeMapEntry.12144_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Chain+Anchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12145_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/Chain$Anchor\00", align 1 +@.TypeMapEntry.12146_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Chain+Style, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12147_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/dsl/Chain$Style\00", align 1 +@.TypeMapEntry.12148_from = private unnamed_addr constant [81 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Chain, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12149_to = private unnamed_addr constant [41 x i8] c"androidx/constraintlayout/core/dsl/Chain\00", align 1 +@.TypeMapEntry.12150_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.ChainInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12151_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+Anchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12152_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/dsl/Constraint$Anchor\00", align 1 +@.TypeMapEntry.12153_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+Behaviour, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12154_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/dsl/Constraint$Behaviour\00", align 1 +@.TypeMapEntry.12155_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+ChainMode, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12156_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/dsl/Constraint$ChainMode\00", align 1 +@.TypeMapEntry.12157_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+HAnchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12158_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/dsl/Constraint$HAnchor\00", align 1 +@.TypeMapEntry.12159_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+HSide, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12160_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/dsl/Constraint$HSide\00", align 1 +@.TypeMapEntry.12161_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+Side, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12162_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/dsl/Constraint$Side\00", align 1 +@.TypeMapEntry.12163_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+VAnchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12164_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/dsl/Constraint$VAnchor\00", align 1 +@.TypeMapEntry.12165_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint+VSide, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12166_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/dsl/Constraint$VSide\00", align 1 +@.TypeMapEntry.12167_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Constraint, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12168_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/dsl/Constraint\00", align 1 +@.TypeMapEntry.12169_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.ConstraintSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12170_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/dsl/ConstraintSet\00", align 1 +@.TypeMapEntry.12171_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Guideline, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12172_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/core/dsl/Guideline\00", align 1 +@.TypeMapEntry.12173_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.GuidelineInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12174_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.HChain+HAnchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12175_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/dsl/HChain$HAnchor\00", align 1 +@.TypeMapEntry.12176_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.HChain, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12177_to = private unnamed_addr constant [42 x i8] c"androidx/constraintlayout/core/dsl/HChain\00", align 1 +@.TypeMapEntry.12178_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Helper+HelperType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12179_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/dsl/Helper$HelperType\00", align 1 +@.TypeMapEntry.12180_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Helper+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12181_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/dsl/Helper$Type\00", align 1 +@.TypeMapEntry.12182_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Helper, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12183_to = private unnamed_addr constant [42 x i8] c"androidx/constraintlayout/core/dsl/Helper\00", align 1 +@.TypeMapEntry.12184_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttribute+Fit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12185_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/dsl/KeyAttribute$Fit\00", align 1 +@.TypeMapEntry.12186_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttribute+Visibility, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12187_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/dsl/KeyAttribute$Visibility\00", align 1 +@.TypeMapEntry.12188_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttribute, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12189_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/KeyAttribute\00", align 1 +@.TypeMapEntry.12190_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttributes+Fit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12191_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/dsl/KeyAttributes$Fit\00", align 1 +@.TypeMapEntry.12192_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttributes+Visibility, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12193_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/dsl/KeyAttributes$Visibility\00", align 1 +@.TypeMapEntry.12194_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyAttributes, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12195_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/dsl/KeyAttributes\00", align 1 +@.TypeMapEntry.12196_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyCycle+Wave, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12197_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/dsl/KeyCycle$Wave\00", align 1 +@.TypeMapEntry.12198_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyCycle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12199_to = private unnamed_addr constant [44 x i8] c"androidx/constraintlayout/core/dsl/KeyCycle\00", align 1 +@.TypeMapEntry.12200_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyCycles+Wave, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12201_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/dsl/KeyCycles$Wave\00", align 1 +@.TypeMapEntry.12202_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyCycles, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12203_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/core/dsl/KeyCycles\00", align 1 +@.TypeMapEntry.12204_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyFrames, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12205_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/core/dsl/KeyFrames\00", align 1 +@.TypeMapEntry.12206_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyPosition+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12207_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/dsl/KeyPosition$Type\00", align 1 +@.TypeMapEntry.12208_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyPosition, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12209_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/dsl/KeyPosition\00", align 1 +@.TypeMapEntry.12210_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyPositions+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12211_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/dsl/KeyPositions$Type\00", align 1 +@.TypeMapEntry.12212_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.KeyPositions, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12213_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/KeyPositions\00", align 1 +@.TypeMapEntry.12214_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Keys, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12215_to = private unnamed_addr constant [40 x i8] c"androidx/constraintlayout/core/dsl/Keys\00", align 1 +@.TypeMapEntry.12216_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.MotionScene, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12217_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/dsl/MotionScene\00", align 1 +@.TypeMapEntry.12218_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe+Boundary, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12219_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe$Boundary\00", align 1 +@.TypeMapEntry.12220_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe+Drag, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12221_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe$Drag\00", align 1 +@.TypeMapEntry.12222_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe+Mode, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12223_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe$Mode\00", align 1 +@.TypeMapEntry.12224_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe+Side, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12225_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe$Side\00", align 1 +@.TypeMapEntry.12226_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe+TouchUp, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12227_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe$TouchUp\00", align 1 +@.TypeMapEntry.12228_from = private unnamed_addr constant [83 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.OnSwipe, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12229_to = private unnamed_addr constant [43 x i8] c"androidx/constraintlayout/core/dsl/OnSwipe\00", align 1 +@.TypeMapEntry.12230_from = private unnamed_addr constant [79 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Ref, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12231_to = private unnamed_addr constant [39 x i8] c"androidx/constraintlayout/core/dsl/Ref\00", align 1 +@.TypeMapEntry.12232_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.Transition, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12233_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/dsl/Transition\00", align 1 +@.TypeMapEntry.12234_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.VChain+VAnchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12235_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/dsl/VChain$VAnchor\00", align 1 +@.TypeMapEntry.12236_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.VChain, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12237_to = private unnamed_addr constant [42 x i8] c"androidx/constraintlayout/core/dsl/VChain\00", align 1 +@.TypeMapEntry.12238_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Dsl.VGuideline, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12239_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/dsl/VGuideline\00", align 1 +@.TypeMapEntry.12240_from = private unnamed_addr constant [79 x i8] c"AndroidX.ConstraintLayout.Core.GoalRow, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12241_to = private unnamed_addr constant [39 x i8] c"androidx/constraintlayout/core/GoalRow\00", align 1 +@.TypeMapEntry.12242_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Core.LinearSystem, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12243_to = private unnamed_addr constant [44 x i8] c"androidx/constraintlayout/core/LinearSystem\00", align 1 +@.TypeMapEntry.12244_from = private unnamed_addr constant [79 x i8] c"AndroidX.ConstraintLayout.Core.Metrics, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12245_to = private unnamed_addr constant [39 x i8] c"androidx/constraintlayout/core/Metrics\00", align 1 +@.TypeMapEntry.12246_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.CustomAttribute+AttributeType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12247_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/motion/CustomAttribute$AttributeType\00", align 1 +@.TypeMapEntry.12248_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.CustomAttribute, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12249_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/CustomAttribute\00", align 1 +@.TypeMapEntry.12250_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Motion.CustomVariable, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12251_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/motion/CustomVariable\00", align 1 +@.TypeMapEntry.12252_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionConstraintSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12253_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/motion/key/MotionConstraintSet\00", align 1 +@.TypeMapEntry.12254_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKey, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12255_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/motion/key/MotionKey\00", align 1 +@.TypeMapEntry.12256_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyAttributes, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12257_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/motion/key/MotionKeyAttributes\00", align 1 +@.TypeMapEntry.12258_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyCycle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12259_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/motion/key/MotionKeyCycle\00", align 1 +@.TypeMapEntry.12260_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12261_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyPosition, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12262_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/motion/key/MotionKeyPosition\00", align 1 +@.TypeMapEntry.12263_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyTimeCycle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12264_to = private unnamed_addr constant [61 x i8] c"androidx/constraintlayout/core/motion/key/MotionKeyTimeCycle\00", align 1 +@.TypeMapEntry.12265_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Key.MotionKeyTrigger, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12266_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/motion/key/MotionKeyTrigger\00", align 1 +@.TypeMapEntry.12267_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Motion, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12268_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/core/motion/Motion\00", align 1 +@.TypeMapEntry.12269_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Motion.MotionPaths, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12270_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/motion/MotionPaths\00", align 1 +@.TypeMapEntry.12271_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Core.Motion.MotionWidget+Motion, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12272_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/core/motion/MotionWidget$Motion\00", align 1 +@.TypeMapEntry.12273_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.MotionWidget+PropertySet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12274_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/core/motion/MotionWidget$PropertySet\00", align 1 +@.TypeMapEntry.12275_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.Motion.MotionWidget, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12276_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/motion/MotionWidget\00", align 1 +@.TypeMapEntry.12277_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Parse.KeyParser, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12278_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/parse/KeyParser\00", align 1 +@.TypeMapEntry.12279_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ArcCurveFit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12280_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/motion/utils/ArcCurveFit\00", align 1 +@.TypeMapEntry.12281_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.CurveFit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12282_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/motion/utils/CurveFit\00", align 1 +@.TypeMapEntry.12283_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.CurveFitInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12284_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Easing, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12285_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/motion/utils/Easing\00", align 1 +@.TypeMapEntry.12286_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.FloatRect, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12287_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/utils/FloatRect\00", align 1 +@.TypeMapEntry.12288_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.HyperSpline+Cubic, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12289_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/motion/utils/HyperSpline$Cubic\00", align 1 +@.TypeMapEntry.12290_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.HyperSpline, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12291_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/motion/utils/HyperSpline\00", align 1 +@.TypeMapEntry.12292_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.IDifferentialInterpolator, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12293_to = private unnamed_addr constant [69 x i8] c"androidx/constraintlayout/core/motion/utils/DifferentialInterpolator\00", align 1 +@.TypeMapEntry.12294_from = private unnamed_addr constant [117 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.IDifferentialInterpolatorInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12295_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.IStopEngine, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12296_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/core/motion/utils/StopEngine\00", align 1 +@.TypeMapEntry.12297_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.IStopEngineInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12298_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValues, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12299_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues\00", align 1 +@.TypeMapEntry.12300_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesAttributesType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12301_to = private unnamed_addr constant [71 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$AttributesType\00", align 1 +@.TypeMapEntry.12302_from = private unnamed_addr constant [118 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesAttributesTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12303_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCustom, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12304_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$Custom\00", align 1 +@.TypeMapEntry.12305_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCustomInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12306_from = private unnamed_addr constant [106 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCycleType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12307_to = private unnamed_addr constant [66 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$CycleType\00", align 1 +@.TypeMapEntry.12308_from = private unnamed_addr constant [113 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesCycleTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12309_from = private unnamed_addr constant [104 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12310_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionScene, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12311_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$MotionScene\00", align 1 +@.TypeMapEntry.12312_from = private unnamed_addr constant [115 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionSceneInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12313_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12314_to = private unnamed_addr constant [67 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$MotionType\00", align 1 +@.TypeMapEntry.12315_from = private unnamed_addr constant [114 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesMotionTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12316_from = private unnamed_addr constant [104 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesOnSwipe, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12317_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$OnSwipe\00", align 1 +@.TypeMapEntry.12318_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesOnSwipeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12319_from = private unnamed_addr constant [109 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesPositionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12320_to = private unnamed_addr constant [69 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$PositionType\00", align 1 +@.TypeMapEntry.12321_from = private unnamed_addr constant [116 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesPositionTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12322_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTransitionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12323_to = private unnamed_addr constant [71 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$TransitionType\00", align 1 +@.TypeMapEntry.12324_from = private unnamed_addr constant [118 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTransitionTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12325_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTriggerType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12326_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/motion/utils/TypedValues$TriggerType\00", align 1 +@.TypeMapEntry.12327_from = private unnamed_addr constant [115 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ITypedValuesTriggerTypeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12328_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyCache, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12329_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/motion/utils/KeyCache\00", align 1 +@.TypeMapEntry.12330_from = private unnamed_addr constant [117 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyCycleOscillator+PathRotateSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12331_to = private unnamed_addr constant [77 x i8] c"androidx/constraintlayout/core/motion/utils/KeyCycleOscillator$PathRotateSet\00", align 1 +@.TypeMapEntry.12332_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyCycleOscillator, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12333_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/core/motion/utils/KeyCycleOscillator\00", align 1 +@.TypeMapEntry.12334_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyCycleOscillatorInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12335_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyFrameArray+CustomArray, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12336_to = private unnamed_addr constant [70 x i8] c"androidx/constraintlayout/core/motion/utils/KeyFrameArray$CustomArray\00", align 1 +@.TypeMapEntry.12337_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyFrameArray+CustomVar, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12338_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/motion/utils/KeyFrameArray$CustomVar\00", align 1 +@.TypeMapEntry.12339_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.KeyFrameArray, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12340_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/core/motion/utils/KeyFrameArray\00", align 1 +@.TypeMapEntry.12341_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.LinearCurveFit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12342_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/motion/utils/LinearCurveFit\00", align 1 +@.TypeMapEntry.12343_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.MonotonicCurveFit, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12344_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/motion/utils/MonotonicCurveFit\00", align 1 +@.TypeMapEntry.12345_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Oscillator, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12346_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/core/motion/utils/Oscillator\00", align 1 +@.TypeMapEntry.12347_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Rect, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12348_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/motion/utils/Rect\00", align 1 +@.TypeMapEntry.12349_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Schlick, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12350_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/motion/utils/Schlick\00", align 1 +@.TypeMapEntry.12351_from = private unnamed_addr constant [104 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.SplineSet+CustomSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12352_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/core/motion/utils/SplineSet$CustomSet\00", align 1 +@.TypeMapEntry.12353_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.SplineSet+CustomSpline, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12354_to = private unnamed_addr constant [67 x i8] c"androidx/constraintlayout/core/motion/utils/SplineSet$CustomSpline\00", align 1 +@.TypeMapEntry.12355_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.SplineSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12356_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/utils/SplineSet\00", align 1 +@.TypeMapEntry.12357_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.SplineSetInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12358_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.SpringStopEngine, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12359_to = private unnamed_addr constant [61 x i8] c"androidx/constraintlayout/core/motion/utils/SpringStopEngine\00", align 1 +@.TypeMapEntry.12360_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.StepCurve, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12361_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/utils/StepCurve\00", align 1 +@.TypeMapEntry.12362_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.StopLogicEngine+Decelerate, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12363_to = private unnamed_addr constant [71 x i8] c"androidx/constraintlayout/core/motion/utils/StopLogicEngine$Decelerate\00", align 1 +@.TypeMapEntry.12364_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.StopLogicEngine, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12365_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/motion/utils/StopLogicEngine\00", align 1 +@.TypeMapEntry.12366_from = private unnamed_addr constant [113 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TimeCycleSplineSet+CustomSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12367_to = private unnamed_addr constant [73 x i8] c"androidx/constraintlayout/core/motion/utils/TimeCycleSplineSet$CustomSet\00", align 1 +@.TypeMapEntry.12368_from = private unnamed_addr constant [116 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TimeCycleSplineSet+CustomVarSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12369_to = private unnamed_addr constant [76 x i8] c"androidx/constraintlayout/core/motion/utils/TimeCycleSplineSet$CustomVarSet\00", align 1 +@.TypeMapEntry.12370_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TimeCycleSplineSet+Sort, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12371_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/motion/utils/TimeCycleSplineSet$Sort\00", align 1 +@.TypeMapEntry.12372_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TimeCycleSplineSet, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12373_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/core/motion/utils/TimeCycleSplineSet\00", align 1 +@.TypeMapEntry.12374_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TimeCycleSplineSetInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12375_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedBundle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12376_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/motion/utils/TypedBundle\00", align 1 +@.TypeMapEntry.12377_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValues, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12378_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesAttributesType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12379_from = private unnamed_addr constant [116 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesAttributesTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12380_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12381_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesCustom, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12382_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesCustomConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12383_from = private unnamed_addr constant [105 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesCycleType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12384_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesCycleTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12385_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesMotionScene, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12386_from = private unnamed_addr constant [113 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesMotionSceneConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12387_from = private unnamed_addr constant [106 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesMotionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12388_from = private unnamed_addr constant [112 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesMotionTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12389_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesOnSwipe, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12390_from = private unnamed_addr constant [109 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesOnSwipeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12391_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesPositionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12392_from = private unnamed_addr constant [114 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesPositionTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12393_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesTransitionType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12394_from = private unnamed_addr constant [116 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesTransitionTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12395_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesTriggerType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12396_from = private unnamed_addr constant [113 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.TypedValuesTriggerTypeConsts, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12397_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Utils+IDebugHandle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12398_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/motion/utils/Utils$DebugHandle\00", align 1 +@.TypeMapEntry.12399_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Utils+IDebugHandleInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12400_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.Utils, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12401_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/motion/utils/Utils\00", align 1 +@.TypeMapEntry.12402_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.VelocityMatrix, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12403_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/motion/utils/VelocityMatrix\00", align 1 +@.TypeMapEntry.12404_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Motion.Utils.ViewState, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12405_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/motion/utils/ViewState\00", align 1 +@.TypeMapEntry.12406_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLArray, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12407_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/parser/CLArray\00", align 1 +@.TypeMapEntry.12408_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLContainer, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12409_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/parser/CLContainer\00", align 1 +@.TypeMapEntry.12410_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLElement, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12411_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/parser/CLElement\00", align 1 +@.TypeMapEntry.12412_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLKey, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12413_to = private unnamed_addr constant [44 x i8] c"androidx/constraintlayout/core/parser/CLKey\00", align 1 +@.TypeMapEntry.12414_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLNumber, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12415_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/parser/CLNumber\00", align 1 +@.TypeMapEntry.12416_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLObject, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12417_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/parser/CLObject\00", align 1 +@.TypeMapEntry.12418_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLParser, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12419_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/parser/CLParser\00", align 1 +@.TypeMapEntry.12420_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLParsingException, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12421_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/parser/CLParsingException\00", align 1 +@.TypeMapEntry.12422_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLString, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12423_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/parser/CLString\00", align 1 +@.TypeMapEntry.12424_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Parser.CLToken, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12425_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/parser/CLToken\00", align 1 +@.TypeMapEntry.12426_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.PriorityGoalRow, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12427_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/PriorityGoalRow\00", align 1 +@.TypeMapEntry.12428_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.SolverVariable+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12429_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/SolverVariable$Type\00", align 1 +@.TypeMapEntry.12430_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.SolverVariable, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12431_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/SolverVariable\00", align 1 +@.TypeMapEntry.12432_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.SolverVariableValues, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12433_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/SolverVariableValues\00", align 1 +@.TypeMapEntry.12434_from = private unnamed_addr constant [125 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintReference+IConstraintReferenceFactory, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12435_to = private unnamed_addr constant [84 x i8] c"androidx/constraintlayout/core/state/ConstraintReference$ConstraintReferenceFactory\00", align 1 +@.TypeMapEntry.12436_from = private unnamed_addr constant [132 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintReference+IConstraintReferenceFactoryInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12437_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12438_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/state/ConstraintReference\00", align 1 +@.TypeMapEntry.12439_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintSetParser+DesignElement, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12440_to = private unnamed_addr constant [71 x i8] c"androidx/constraintlayout/core/state/ConstraintSetParser$DesignElement\00", align 1 +@.TypeMapEntry.12441_from = private unnamed_addr constant [113 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintSetParser+LayoutVariables, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12442_to = private unnamed_addr constant [73 x i8] c"androidx/constraintlayout/core/state/ConstraintSetParser$LayoutVariables\00", align 1 +@.TypeMapEntry.12443_from = private unnamed_addr constant [120 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintSetParser+MotionLayoutDebugFlags, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12444_to = private unnamed_addr constant [80 x i8] c"androidx/constraintlayout/core/state/ConstraintSetParser$MotionLayoutDebugFlags\00", align 1 +@.TypeMapEntry.12445_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.State.ConstraintSetParser, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12446_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/state/ConstraintSetParser\00", align 1 +@.TypeMapEntry.12447_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.State.Dimension+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12448_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/state/Dimension$Type\00", align 1 +@.TypeMapEntry.12449_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.State.Dimension, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12450_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/state/Dimension\00", align 1 +@.TypeMapEntry.12451_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.State.HelperReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12452_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/state/HelperReference\00", align 1 +@.TypeMapEntry.12453_from = private unnamed_addr constant [112 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.AlignHorizontallyReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12454_to = private unnamed_addr constant [72 x i8] c"androidx/constraintlayout/core/state/helpers/AlignHorizontallyReference\00", align 1 +@.TypeMapEntry.12455_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.AlignVerticallyReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12456_to = private unnamed_addr constant [70 x i8] c"androidx/constraintlayout/core/state/helpers/AlignVerticallyReference\00", align 1 +@.TypeMapEntry.12457_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.BarrierReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12458_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/core/state/helpers/BarrierReference\00", align 1 +@.TypeMapEntry.12459_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.ChainReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12460_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/state/helpers/ChainReference\00", align 1 +@.TypeMapEntry.12461_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.FlowReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12462_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/state/helpers/FlowReference\00", align 1 +@.TypeMapEntry.12463_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.GridReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12464_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/state/helpers/GridReference\00", align 1 +@.TypeMapEntry.12465_from = private unnamed_addr constant [104 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.GuidelineReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12466_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/core/state/helpers/GuidelineReference\00", align 1 +@.TypeMapEntry.12467_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.HorizontalChainReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12468_to = private unnamed_addr constant [70 x i8] c"androidx/constraintlayout/core/state/helpers/HorizontalChainReference\00", align 1 +@.TypeMapEntry.12469_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.IFacade, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12470_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/state/helpers/Facade\00", align 1 +@.TypeMapEntry.12471_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.IFacadeInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12472_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.State.Helpers.VerticalChainReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12473_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/state/helpers/VerticalChainReference\00", align 1 +@.TypeMapEntry.12474_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.State.ICoreMotionScene, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12475_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/state/CoreMotionScene\00", align 1 +@.TypeMapEntry.12476_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.State.ICoreMotionSceneInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12477_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.State.ICorePixelDp, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12478_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/state/CorePixelDp\00", align 1 +@.TypeMapEntry.12479_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.State.ICorePixelDpInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12480_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.State.IInterpolator, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12481_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/state/Interpolator\00", align 1 +@.TypeMapEntry.12482_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Core.State.IInterpolatorInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12483_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.State.IReference, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12484_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/state/Reference\00", align 1 +@.TypeMapEntry.12485_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Core.State.IReferenceInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12486_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Core.State.IRegistryCallback, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12487_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/state/RegistryCallback\00", align 1 +@.TypeMapEntry.12488_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Core.State.IRegistryCallbackInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12489_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.State.Registry, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12490_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/state/Registry\00", align 1 +@.TypeMapEntry.12491_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.State.State+Chain, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12492_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/state/State$Chain\00", align 1 +@.TypeMapEntry.12493_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.State.State+Constraint, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12494_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/state/State$Constraint\00", align 1 +@.TypeMapEntry.12495_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.State.State+Direction, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12496_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/state/State$Direction\00", align 1 +@.TypeMapEntry.12497_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Core.State.State+Helper, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12498_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/core/state/State$Helper\00", align 1 +@.TypeMapEntry.12499_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.State.State+Wrap, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12500_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/state/State$Wrap\00", align 1 +@.TypeMapEntry.12501_from = private unnamed_addr constant [83 x i8] c"AndroidX.ConstraintLayout.Core.State.State, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12502_to = private unnamed_addr constant [43 x i8] c"androidx/constraintlayout/core/state/State\00", align 1 +@.TypeMapEntry.12503_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.State.Transition+WidgetState, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12504_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/state/Transition$WidgetState\00", align 1 +@.TypeMapEntry.12505_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.State.Transition, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12506_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/state/Transition\00", align 1 +@.TypeMapEntry.12507_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.State.TransitionParser, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12508_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/core/state/TransitionParser\00", align 1 +@.TypeMapEntry.12509_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.State.WidgetFrame, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12510_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/state/WidgetFrame\00", align 1 +@.TypeMapEntry.12511_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Core.Utils.GridCore, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12512_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/utils/GridCore\00", align 1 +@.TypeMapEntry.12513_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Core.Utils.GridEngine, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12514_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/core/utils/GridEngine\00", align 1 +@.TypeMapEntry.12515_from = private unnamed_addr constant [111 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure+IMeasurer, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12516_to = private unnamed_addr constant [70 x i8] c"androidx/constraintlayout/core/widgets/analyzer/BasicMeasure$Measurer\00", align 1 +@.TypeMapEntry.12517_from = private unnamed_addr constant [118 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure+IMeasurerInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12518_from = private unnamed_addr constant [109 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure+Measure, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12519_to = private unnamed_addr constant [69 x i8] c"androidx/constraintlayout/core/widgets/analyzer/BasicMeasure$Measure\00", align 1 +@.TypeMapEntry.12520_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.BasicMeasure, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12521_to = private unnamed_addr constant [61 x i8] c"androidx/constraintlayout/core/widgets/analyzer/BasicMeasure\00", align 1 +@.TypeMapEntry.12522_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.ChainRun, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12523_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/widgets/analyzer/ChainRun\00", align 1 +@.TypeMapEntry.12524_from = private unnamed_addr constant [104 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.DependencyGraph, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12525_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/core/widgets/analyzer/DependencyGraph\00", align 1 +@.TypeMapEntry.12526_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.DependencyNode, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12527_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/core/widgets/analyzer/DependencyNode\00", align 1 +@.TypeMapEntry.12528_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.Direct, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12529_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/core/widgets/analyzer/Direct\00", align 1 +@.TypeMapEntry.12530_from = private unnamed_addr constant [97 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.Grouping, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12531_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/core/widgets/analyzer/Grouping\00", align 1 +@.TypeMapEntry.12532_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.HorizontalWidgetRun, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12533_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/core/widgets/analyzer/HorizontalWidgetRun\00", align 1 +@.TypeMapEntry.12534_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.IDependency, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12535_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/core/widgets/analyzer/Dependency\00", align 1 +@.TypeMapEntry.12536_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.IDependencyInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12537_from = private unnamed_addr constant [106 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.VerticalWidgetRun, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12538_to = private unnamed_addr constant [66 x i8] c"androidx/constraintlayout/core/widgets/analyzer/VerticalWidgetRun\00", align 1 +@.TypeMapEntry.12539_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.WidgetGroup, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12540_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/core/widgets/analyzer/WidgetGroup\00", align 1 +@.TypeMapEntry.12541_from = private unnamed_addr constant [106 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.WidgetRun+RunType, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12542_to = private unnamed_addr constant [66 x i8] c"androidx/constraintlayout/core/widgets/analyzer/WidgetRun$RunType\00", align 1 +@.TypeMapEntry.12543_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.WidgetRun, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12544_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/core/widgets/analyzer/WidgetRun\00", align 1 +@.TypeMapEntry.12545_from = private unnamed_addr constant [105 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Analyzer.WidgetRunInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12546_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Barrier, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12547_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/core/widgets/Barrier\00", align 1 +@.TypeMapEntry.12548_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Chain, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12549_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/core/widgets/Chain\00", align 1 +@.TypeMapEntry.12550_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ChainHead, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12551_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/widgets/ChainHead\00", align 1 +@.TypeMapEntry.12552_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ConstraintAnchor+Type, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12553_to = private unnamed_addr constant [61 x i8] c"androidx/constraintlayout/core/widgets/ConstraintAnchor$Type\00", align 1 +@.TypeMapEntry.12554_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ConstraintAnchor, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12555_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/widgets/ConstraintAnchor\00", align 1 +@.TypeMapEntry.12556_from = private unnamed_addr constant [115 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ConstraintWidget+DimensionBehaviour, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12557_to = private unnamed_addr constant [75 x i8] c"androidx/constraintlayout/core/widgets/ConstraintWidget$DimensionBehaviour\00", align 1 +@.TypeMapEntry.12558_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ConstraintWidget, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12559_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/core/widgets/ConstraintWidget\00", align 1 +@.TypeMapEntry.12560_from = private unnamed_addr constant [105 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.ConstraintWidgetContainer, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12561_to = private unnamed_addr constant [65 x i8] c"androidx/constraintlayout/core/widgets/ConstraintWidgetContainer\00", align 1 +@.TypeMapEntry.12562_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Flow, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12563_to = private unnamed_addr constant [44 x i8] c"androidx/constraintlayout/core/widgets/Flow\00", align 1 +@.TypeMapEntry.12564_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Guideline, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12565_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/widgets/Guideline\00", align 1 +@.TypeMapEntry.12566_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.HelperWidget, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12567_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/core/widgets/HelperWidget\00", align 1 +@.TypeMapEntry.12568_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.IHelper, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12569_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/core/widgets/Helper\00", align 1 +@.TypeMapEntry.12570_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.IHelperInvoker, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12571_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Optimizer, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12572_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/widgets/Optimizer\00", align 1 +@.TypeMapEntry.12573_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Placeholder, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12574_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/core/widgets/Placeholder\00", align 1 +@.TypeMapEntry.12575_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.Rectangle, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12576_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/core/widgets/Rectangle\00", align 1 +@.TypeMapEntry.12577_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.VirtualLayout, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12578_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/core/widgets/VirtualLayout\00", align 1 +@.TypeMapEntry.12579_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Core.Widgets.WidgetContainer, Xamarin.AndroidX.ConstraintLayout.Core\00", align 1 +@.TypeMapEntry.12580_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/core/widgets/WidgetContainer\00", align 1 +@.TypeMapEntry.12581_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Carousel+IAdapter, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12582_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/helper/widget/Carousel$Adapter\00", align 1 +@.TypeMapEntry.12583_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Carousel+IAdapterInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12584_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Carousel, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12585_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/helper/widget/Carousel\00", align 1 +@.TypeMapEntry.12586_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.CircularFlow, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12587_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/helper/widget/CircularFlow\00", align 1 +@.TypeMapEntry.12588_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Flow, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12589_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/helper/widget/Flow\00", align 1 +@.TypeMapEntry.12590_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Grid, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12591_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/helper/widget/Grid\00", align 1 +@.TypeMapEntry.12592_from = private unnamed_addr constant [81 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.Layer, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12593_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/helper/widget/Layer\00", align 1 +@.TypeMapEntry.12594_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.MotionEffect, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12595_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/helper/widget/MotionEffect\00", align 1 +@.TypeMapEntry.12596_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Helper.Widget.MotionPlaceholder, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12597_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/helper/widget/MotionPlaceholder\00", align 1 +@.TypeMapEntry.12598_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.CustomSupport, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12599_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/motion/utils/CustomSupport\00", align 1 +@.TypeMapEntry.12600_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.StopLogic, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12601_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/motion/utils/StopLogic\00", align 1 +@.TypeMapEntry.12602_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewOscillator+PathRotateSet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12603_to = private unnamed_addr constant [68 x i8] c"androidx/constraintlayout/motion/utils/ViewOscillator$PathRotateSet\00", align 1 +@.TypeMapEntry.12604_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewOscillator, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12605_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/motion/utils/ViewOscillator\00", align 1 +@.TypeMapEntry.12606_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewOscillatorInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12607_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewSpline+CustomSet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12608_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/motion/utils/ViewSpline$CustomSet\00", align 1 +@.TypeMapEntry.12609_from = private unnamed_addr constant [96 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewSpline+PathRotate, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12610_to = private unnamed_addr constant [61 x i8] c"androidx/constraintlayout/motion/utils/ViewSpline$PathRotate\00", align 1 +@.TypeMapEntry.12611_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewSpline, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12612_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/motion/utils/ViewSpline\00", align 1 +@.TypeMapEntry.12613_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewSplineInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12614_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewState, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12615_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/motion/utils/ViewState\00", align 1 +@.TypeMapEntry.12616_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewTimeCycle+CustomSet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12617_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/motion/utils/ViewTimeCycle$CustomSet\00", align 1 +@.TypeMapEntry.12618_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewTimeCycle+PathRotate, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12619_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/motion/utils/ViewTimeCycle$PathRotate\00", align 1 +@.TypeMapEntry.12620_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewTimeCycle, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12621_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/motion/utils/ViewTimeCycle\00", align 1 +@.TypeMapEntry.12622_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Motion.Utils.ViewTimeCycleInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12623_from = private unnamed_addr constant [81 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.Debug, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12624_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/motion/widget/Debug\00", align 1 +@.TypeMapEntry.12625_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.DesignTool, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12626_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/motion/widget/DesignTool\00", align 1 +@.TypeMapEntry.12627_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IAnimatable, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12628_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/motion/widget/Animatable\00", align 1 +@.TypeMapEntry.12629_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IAnimatableInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12630_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.ICustomFloatAttributes, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12631_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/motion/widget/CustomFloatAttributes\00", align 1 +@.TypeMapEntry.12632_from = private unnamed_addr constant [105 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.ICustomFloatAttributesInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12633_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IFloatLayout, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12634_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/motion/widget/FloatLayout\00", align 1 +@.TypeMapEntry.12635_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IFloatLayoutInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12636_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IMotionHelperInterface, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12637_to = private unnamed_addr constant [62 x i8] c"androidx/constraintlayout/motion/widget/MotionHelperInterface\00", align 1 +@.TypeMapEntry.12638_from = private unnamed_addr constant [105 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.IMotionHelperInterfaceInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12639_from = private unnamed_addr constant [79 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.Key, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12640_to = private unnamed_addr constant [44 x i8] c"androidx/constraintlayout/motion/widget/Key\00", align 1 +@.TypeMapEntry.12641_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyAttributes, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12642_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/motion/widget/KeyAttributes\00", align 1 +@.TypeMapEntry.12643_from = private unnamed_addr constant [84 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyCycle, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12644_to = private unnamed_addr constant [49 x i8] c"androidx/constraintlayout/motion/widget/KeyCycle\00", align 1 +@.TypeMapEntry.12645_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyFrames, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12646_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/motion/widget/KeyFrames\00", align 1 +@.TypeMapEntry.12647_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12648_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyPosition, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12649_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/motion/widget/KeyPosition\00", align 1 +@.TypeMapEntry.12650_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyTimeCycle, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12651_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/motion/widget/KeyTimeCycle\00", align 1 +@.TypeMapEntry.12652_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.KeyTrigger, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12653_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/motion/widget/KeyTrigger\00", align 1 +@.TypeMapEntry.12654_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionController, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12655_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/motion/widget/MotionController\00", align 1 +@.TypeMapEntry.12656_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionHelper, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12657_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/motion/widget/MotionHelper\00", align 1 +@.TypeMapEntry.12658_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionInterpolator, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12659_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/motion/widget/MotionInterpolator\00", align 1 +@.TypeMapEntry.12660_from = private unnamed_addr constant [101 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionInterpolatorInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12661_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+IMotionTracker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12662_to = private unnamed_addr constant [67 x i8] c"androidx/constraintlayout/motion/widget/MotionLayout$MotionTracker\00", align 1 +@.TypeMapEntry.12663_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+IMotionTrackerInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12664_from = private unnamed_addr constant [108 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListener, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12665_to = private unnamed_addr constant [72 x i8] c"androidx/constraintlayout/motion/widget/MotionLayout$TransitionListener\00", align 1 +@.TypeMapEntry.12666_from = private unnamed_addr constant [119 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListenerImplementor, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12667_to = private unnamed_addr constant [88 x i8] c"mono/androidx/constraintlayout/motion/widget/MotionLayout_TransitionListenerImplementor\00", align 1 +@.TypeMapEntry.12668_from = private unnamed_addr constant [115 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout+ITransitionListenerInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12669_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionLayout, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12670_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/motion/widget/MotionLayout\00", align 1 +@.TypeMapEntry.12671_from = private unnamed_addr constant [116 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionScene+Transition+TransitionOnClick, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12672_to = private unnamed_addr constant [81 x i8] c"androidx/constraintlayout/motion/widget/MotionScene$Transition$TransitionOnClick\00", align 1 +@.TypeMapEntry.12673_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionScene+Transition, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12674_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/motion/widget/MotionScene$Transition\00", align 1 +@.TypeMapEntry.12675_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.MotionScene, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12676_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/motion/widget/MotionScene\00", align 1 +@.TypeMapEntry.12677_from = private unnamed_addr constant [83 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.OnSwipe, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12678_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/motion/widget/OnSwipe\00", align 1 +@.TypeMapEntry.12679_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.TransitionAdapter, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12680_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/motion/widget/TransitionAdapter\00", align 1 +@.TypeMapEntry.12681_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.TransitionAdapterInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12682_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.TransitionBuilder, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12683_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/motion/widget/TransitionBuilder\00", align 1 +@.TypeMapEntry.12684_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.ViewTransition, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12685_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/motion/widget/ViewTransition\00", align 1 +@.TypeMapEntry.12686_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Motion.Widget.ViewTransitionController, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12687_to = private unnamed_addr constant [65 x i8] c"androidx/constraintlayout/motion/widget/ViewTransitionController\00", align 1 +@.TypeMapEntry.12688_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.ImageFilterButton, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12689_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/utils/widget/ImageFilterButton\00", align 1 +@.TypeMapEntry.12690_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.ImageFilterView, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12691_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/utils/widget/ImageFilterView\00", align 1 +@.TypeMapEntry.12692_from = private unnamed_addr constant [83 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.MockView, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12693_to = private unnamed_addr constant [48 x i8] c"androidx/constraintlayout/utils/widget/MockView\00", align 1 +@.TypeMapEntry.12694_from = private unnamed_addr constant [87 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.MotionButton, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12695_to = private unnamed_addr constant [52 x i8] c"androidx/constraintlayout/utils/widget/MotionButton\00", align 1 +@.TypeMapEntry.12696_from = private unnamed_addr constant [86 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.MotionLabel, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12697_to = private unnamed_addr constant [51 x i8] c"androidx/constraintlayout/utils/widget/MotionLabel\00", align 1 +@.TypeMapEntry.12698_from = private unnamed_addr constant [90 x i8] c"AndroidX.ConstraintLayout.Utils.Widget.MotionTelltales, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12699_to = private unnamed_addr constant [55 x i8] c"androidx/constraintlayout/utils/widget/MotionTelltales\00", align 1 +@.TypeMapEntry.12700_from = private unnamed_addr constant [76 x i8] c"AndroidX.ConstraintLayout.Widget.Barrier, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12701_to = private unnamed_addr constant [41 x i8] c"androidx/constraintlayout/widget/Barrier\00", align 1 +@.TypeMapEntry.12702_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintAttribute+AttributeType, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12703_to = private unnamed_addr constant [67 x i8] c"androidx/constraintlayout/widget/ConstraintAttribute$AttributeType\00", align 1 +@.TypeMapEntry.12704_from = private unnamed_addr constant [88 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintAttribute, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12705_to = private unnamed_addr constant [53 x i8] c"androidx/constraintlayout/widget/ConstraintAttribute\00", align 1 +@.TypeMapEntry.12706_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintHelper, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12707_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/widget/ConstraintHelper\00", align 1 +@.TypeMapEntry.12708_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintHelperInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12709_from = private unnamed_addr constant [100 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayout+IValueModifier, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12710_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/widget/ConstraintLayout$ValueModifier\00", align 1 +@.TypeMapEntry.12711_from = private unnamed_addr constant [107 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayout+IValueModifierInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12712_from = private unnamed_addr constant [98 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayout+LayoutParams, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12713_to = private unnamed_addr constant [63 x i8] c"androidx/constraintlayout/widget/ConstraintLayout$LayoutParams\00", align 1 +@.TypeMapEntry.12714_from = private unnamed_addr constant [85 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayout, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12715_to = private unnamed_addr constant [50 x i8] c"androidx/constraintlayout/widget/ConstraintLayout\00", align 1 +@.TypeMapEntry.12716_from = private unnamed_addr constant [91 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayoutStates, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12717_to = private unnamed_addr constant [56 x i8] c"androidx/constraintlayout/widget/ConstraintLayoutStates\00", align 1 +@.TypeMapEntry.12718_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintLayoutStatistics, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12719_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/widget/ConstraintLayoutStatistics\00", align 1 +@.TypeMapEntry.12720_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintProperties, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12721_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/widget/ConstraintProperties\00", align 1 +@.TypeMapEntry.12722_from = private unnamed_addr constant [99 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+Constraint+Delta, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12723_to = private unnamed_addr constant [64 x i8] c"androidx/constraintlayout/widget/ConstraintSet$Constraint$Delta\00", align 1 +@.TypeMapEntry.12724_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+Constraint, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12725_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/widget/ConstraintSet$Constraint\00", align 1 +@.TypeMapEntry.12726_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+Layout, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12727_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/widget/ConstraintSet$Layout\00", align 1 +@.TypeMapEntry.12728_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+Motion, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12729_to = private unnamed_addr constant [54 x i8] c"androidx/constraintlayout/widget/ConstraintSet$Motion\00", align 1 +@.TypeMapEntry.12730_from = private unnamed_addr constant [94 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+PropertySet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12731_to = private unnamed_addr constant [59 x i8] c"androidx/constraintlayout/widget/ConstraintSet$PropertySet\00", align 1 +@.TypeMapEntry.12732_from = private unnamed_addr constant [92 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet+Transform, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12733_to = private unnamed_addr constant [57 x i8] c"androidx/constraintlayout/widget/ConstraintSet$Transform\00", align 1 +@.TypeMapEntry.12734_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintSet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12735_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/widget/ConstraintSet\00", align 1 +@.TypeMapEntry.12736_from = private unnamed_addr constant [93 x i8] c"AndroidX.ConstraintLayout.Widget.Constraints+LayoutParams, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12737_to = private unnamed_addr constant [58 x i8] c"androidx/constraintlayout/widget/Constraints$LayoutParams\00", align 1 +@.TypeMapEntry.12738_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Widget.Constraints, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12739_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/widget/Constraints\00", align 1 +@.TypeMapEntry.12740_from = private unnamed_addr constant [95 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintsChangedListener, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12741_to = private unnamed_addr constant [60 x i8] c"androidx/constraintlayout/widget/ConstraintsChangedListener\00", align 1 +@.TypeMapEntry.12742_from = private unnamed_addr constant [102 x i8] c"AndroidX.ConstraintLayout.Widget.ConstraintsChangedListenerInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12743_from = private unnamed_addr constant [74 x i8] c"AndroidX.ConstraintLayout.Widget.Group, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12744_to = private unnamed_addr constant [39 x i8] c"androidx/constraintlayout/widget/Group\00", align 1 +@.TypeMapEntry.12745_from = private unnamed_addr constant [78 x i8] c"AndroidX.ConstraintLayout.Widget.Guideline, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12746_to = private unnamed_addr constant [43 x i8] c"androidx/constraintlayout/widget/Guideline\00", align 1 +@.TypeMapEntry.12747_from = private unnamed_addr constant [80 x i8] c"AndroidX.ConstraintLayout.Widget.Placeholder, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12748_to = private unnamed_addr constant [45 x i8] c"androidx/constraintlayout/widget/Placeholder\00", align 1 +@.TypeMapEntry.12749_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Widget.ReactiveGuide, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12750_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/widget/ReactiveGuide\00", align 1 +@.TypeMapEntry.12751_from = private unnamed_addr constant [103 x i8] c"AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListener, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12752_to = private unnamed_addr constant [67 x i8] c"androidx/constraintlayout/widget/SharedValues$SharedValuesListener\00", align 1 +@.TypeMapEntry.12753_from = private unnamed_addr constant [114 x i8] c"AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListenerImplementor, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12754_to = private unnamed_addr constant [83 x i8] c"mono/androidx/constraintlayout/widget/SharedValues_SharedValuesListenerImplementor\00", align 1 +@.TypeMapEntry.12755_from = private unnamed_addr constant [110 x i8] c"AndroidX.ConstraintLayout.Widget.SharedValues+ISharedValuesListenerInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12756_from = private unnamed_addr constant [81 x i8] c"AndroidX.ConstraintLayout.Widget.SharedValues, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12757_to = private unnamed_addr constant [46 x i8] c"androidx/constraintlayout/widget/SharedValues\00", align 1 +@.TypeMapEntry.12758_from = private unnamed_addr constant [77 x i8] c"AndroidX.ConstraintLayout.Widget.StateSet, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12759_to = private unnamed_addr constant [42 x i8] c"androidx/constraintlayout/widget/StateSet\00", align 1 +@.TypeMapEntry.12760_from = private unnamed_addr constant [82 x i8] c"AndroidX.ConstraintLayout.Widget.VirtualLayout, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12761_to = private unnamed_addr constant [47 x i8] c"androidx/constraintlayout/widget/VirtualLayout\00", align 1 +@.TypeMapEntry.12762_from = private unnamed_addr constant [89 x i8] c"AndroidX.ConstraintLayout.Widget.VirtualLayoutInvoker, Xamarin.AndroidX.ConstraintLayout\00", align 1 +@.TypeMapEntry.12763_from = private unnamed_addr constant [97 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+Behavior, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12764_to = private unnamed_addr constant [61 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$Behavior\00", align 1 +@.TypeMapEntry.12765_from = private unnamed_addr constant [104 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+BehaviorInvoker, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12766_from = private unnamed_addr constant [106 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IAttachedBehavior, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12767_to = private unnamed_addr constant [69 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$AttachedBehavior\00", align 1 +@.TypeMapEntry.12768_from = private unnamed_addr constant [113 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IAttachedBehaviorInvoker, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12769_from = private unnamed_addr constant [105 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDefaultBehavior, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12770_to = private unnamed_addr constant [68 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$DefaultBehavior\00", align 1 +@.TypeMapEntry.12771_from = private unnamed_addr constant [112 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDefaultBehaviorInvoker, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12772_from = private unnamed_addr constant [109 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDispatchChangeEvent, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12773_to = private unnamed_addr constant [72 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$DispatchChangeEvent\00", align 1 +@.TypeMapEntry.12774_from = private unnamed_addr constant [116 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+IDispatchChangeEventInvoker, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12775_from = private unnamed_addr constant [101 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+LayoutParams, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12776_to = private unnamed_addr constant [65 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$LayoutParams\00", align 1 +@.TypeMapEntry.12777_from = private unnamed_addr constant [99 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout+SavedState, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12778_to = private unnamed_addr constant [63 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout$SavedState\00", align 1 +@.TypeMapEntry.12779_from = private unnamed_addr constant [88 x i8] c"AndroidX.CoordinatorLayout.Widget.CoordinatorLayout, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12780_to = private unnamed_addr constant [52 x i8] c"androidx/coordinatorlayout/widget/CoordinatorLayout\00", align 1 +@.TypeMapEntry.12781_from = private unnamed_addr constant [91 x i8] c"AndroidX.CoordinatorLayout.Widget.DirectedAcyclicGraph, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12782_to = private unnamed_addr constant [55 x i8] c"androidx/coordinatorlayout/widget/DirectedAcyclicGraph\00", align 1 +@.TypeMapEntry.12783_from = private unnamed_addr constant [85 x i8] c"AndroidX.CoordinatorLayout.Widget.ViewGroupUtils, Xamarin.AndroidX.CoordinatorLayout\00", align 1 +@.TypeMapEntry.12784_to = private unnamed_addr constant [49 x i8] c"androidx/coordinatorlayout/widget/ViewGroupUtils\00", align 1 +@.TypeMapEntry.12785_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.AccessibilityService.AccessibilityServiceInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12786_to = private unnamed_addr constant [66 x i8] c"androidx/core/accessibilityservice/AccessibilityServiceInfoCompat\00", align 1 +@.TypeMapEntry.12787_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Animation.AnimatorKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.12788_to = private unnamed_addr constant [35 x i8] c"androidx/core/animation/AnimatorKt\00", align 1 +@.TypeMapEntry.12789_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.App.ActivityCompat+IOnRequestPermissionsResultCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12790_to = private unnamed_addr constant [68 x i8] c"androidx/core/app/ActivityCompat$OnRequestPermissionsResultCallback\00", align 1 +@.TypeMapEntry.12791_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.App.ActivityCompat+IOnRequestPermissionsResultCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12792_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.App.ActivityCompat+IPermissionCompatDelegate, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12793_to = private unnamed_addr constant [58 x i8] c"androidx/core/app/ActivityCompat$PermissionCompatDelegate\00", align 1 +@.TypeMapEntry.12794_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.App.ActivityCompat+IPermissionCompatDelegateInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12795_from = private unnamed_addr constant [96 x i8] c"AndroidX.Core.App.ActivityCompat+IRequestPermissionsRequestCodeValidator, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12796_to = private unnamed_addr constant [72 x i8] c"androidx/core/app/ActivityCompat$RequestPermissionsRequestCodeValidator\00", align 1 +@.TypeMapEntry.12797_from = private unnamed_addr constant [103 x i8] c"AndroidX.Core.App.ActivityCompat+IRequestPermissionsRequestCodeValidatorInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12798_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.App.ActivityCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12799_to = private unnamed_addr constant [33 x i8] c"androidx/core/app/ActivityCompat\00", align 1 +@.TypeMapEntry.12800_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.App.ActivityManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12801_to = private unnamed_addr constant [40 x i8] c"androidx/core/app/ActivityManagerCompat\00", align 1 +@.TypeMapEntry.12802_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.App.ActivityOptionsCompat+IBackgroundActivityStartMode, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12803_to = private unnamed_addr constant [68 x i8] c"androidx/core/app/ActivityOptionsCompat$BackgroundActivityStartMode\00", align 1 +@.TypeMapEntry.12804_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.App.ActivityOptionsCompat+IBackgroundActivityStartModeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12805_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.App.ActivityOptionsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12806_to = private unnamed_addr constant [40 x i8] c"androidx/core/app/ActivityOptionsCompat\00", align 1 +@.TypeMapEntry.12807_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.App.AlarmManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12808_to = private unnamed_addr constant [37 x i8] c"androidx/core/app/AlarmManagerCompat\00", align 1 +@.TypeMapEntry.12809_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.AppComponentFactory, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12810_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/AppComponentFactory\00", align 1 +@.TypeMapEntry.12811_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.App.AppLaunchChecker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12812_to = private unnamed_addr constant [35 x i8] c"androidx/core/app/AppLaunchChecker\00", align 1 +@.TypeMapEntry.12813_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.App.AppLocalesStorageHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12814_to = private unnamed_addr constant [42 x i8] c"androidx/core/app/AppLocalesStorageHelper\00", align 1 +@.TypeMapEntry.12815_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.AppOpsManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12816_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/AppOpsManagerCompat\00", align 1 +@.TypeMapEntry.12817_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.App.BundleCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12818_to = private unnamed_addr constant [31 x i8] c"androidx/core/app/BundleCompat\00", align 1 +@.TypeMapEntry.12819_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.App.ComponentActivity+ExtraData, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12820_to = private unnamed_addr constant [46 x i8] c"androidx/core/app/ComponentActivity$ExtraData\00", align 1 +@.TypeMapEntry.12821_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.App.ComponentActivity, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12822_to = private unnamed_addr constant [36 x i8] c"androidx/core/app/ComponentActivity\00", align 1 +@.TypeMapEntry.12823_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.App.CoreComponentFactory+ICompatWrapped, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12824_to = private unnamed_addr constant [53 x i8] c"androidx/core/app/CoreComponentFactory$CompatWrapped\00", align 1 +@.TypeMapEntry.12825_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.App.CoreComponentFactory+ICompatWrappedInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12826_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.App.CoreComponentFactory, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12827_to = private unnamed_addr constant [39 x i8] c"androidx/core/app/CoreComponentFactory\00", align 1 +@.TypeMapEntry.12828_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.App.DialogCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12829_to = private unnamed_addr constant [31 x i8] c"androidx/core/app/DialogCompat\00", align 1 +@.TypeMapEntry.12830_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.App.FrameMetricsAggregator+IMetricType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12831_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/FrameMetricsAggregator$MetricType\00", align 1 +@.TypeMapEntry.12832_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.App.FrameMetricsAggregator+IMetricTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12833_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.App.FrameMetricsAggregator, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12834_to = private unnamed_addr constant [41 x i8] c"androidx/core/app/FrameMetricsAggregator\00", align 1 +@.TypeMapEntry.12835_from = private unnamed_addr constant [95 x i8] c"AndroidX.Core.App.GrammaticalInflectionManagerCompat+IGrammaticalGender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12836_to = private unnamed_addr constant [71 x i8] c"androidx/core/app/GrammaticalInflectionManagerCompat$GrammaticalGender\00", align 1 +@.TypeMapEntry.12837_from = private unnamed_addr constant [102 x i8] c"AndroidX.Core.App.GrammaticalInflectionManagerCompat+IGrammaticalGenderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12838_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.App.GrammaticalInflectionManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12839_to = private unnamed_addr constant [53 x i8] c"androidx/core/app/GrammaticalInflectionManagerCompat\00", align 1 +@.TypeMapEntry.12840_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.App.INotificationBuilderWithBuilderAccessor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12841_to = private unnamed_addr constant [57 x i8] c"androidx/core/app/NotificationBuilderWithBuilderAccessor\00", align 1 +@.TypeMapEntry.12842_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.App.INotificationBuilderWithBuilderAccessorInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12843_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.IOnMultiWindowModeChangedProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12844_to = private unnamed_addr constant [51 x i8] c"androidx/core/app/OnMultiWindowModeChangedProvider\00", align 1 +@.TypeMapEntry.12845_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.App.IOnMultiWindowModeChangedProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12846_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.App.IOnNewIntentProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12847_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/OnNewIntentProvider\00", align 1 +@.TypeMapEntry.12848_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.App.IOnNewIntentProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12849_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.App.IOnPictureInPictureModeChangedProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12850_to = private unnamed_addr constant [56 x i8] c"androidx/core/app/OnPictureInPictureModeChangedProvider\00", align 1 +@.TypeMapEntry.12851_from = private unnamed_addr constant [87 x i8] c"AndroidX.Core.App.IOnPictureInPictureModeChangedProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12852_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.App.IOnUserLeaveHintProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12853_to = private unnamed_addr constant [42 x i8] c"androidx/core/app/OnUserLeaveHintProvider\00", align 1 +@.TypeMapEntry.12854_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.App.IOnUserLeaveHintProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12855_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.App.JobIntentService, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12856_to = private unnamed_addr constant [35 x i8] c"androidx/core/app/JobIntentService\00", align 1 +@.TypeMapEntry.12857_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.App.JobIntentServiceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12858_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.LocaleManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12859_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/LocaleManagerCompat\00", align 1 +@.TypeMapEntry.12860_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.App.MultiWindowModeChangedInfo, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12861_to = private unnamed_addr constant [45 x i8] c"androidx/core/app/MultiWindowModeChangedInfo\00", align 1 +@.TypeMapEntry.12862_from = private unnamed_addr constant [50 x i8] c"AndroidX.Core.App.NavUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12863_to = private unnamed_addr constant [27 x i8] c"androidx/core/app/NavUtils\00", align 1 +@.TypeMapEntry.12864_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.NotificationChannelCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12865_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/NotificationChannelCompat$Builder\00", align 1 +@.TypeMapEntry.12866_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.App.NotificationChannelCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12867_to = private unnamed_addr constant [44 x i8] c"androidx/core/app/NotificationChannelCompat\00", align 1 +@.TypeMapEntry.12868_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.App.NotificationChannelGroupCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12869_to = private unnamed_addr constant [57 x i8] c"androidx/core/app/NotificationChannelGroupCompat$Builder\00", align 1 +@.TypeMapEntry.12870_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.App.NotificationChannelGroupCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12871_to = private unnamed_addr constant [49 x i8] c"androidx/core/app/NotificationChannelGroupCompat\00", align 1 +@.TypeMapEntry.12872_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.App.NotificationCompat+Action+Builder+Api31Impl, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12873_to = private unnamed_addr constant [62 x i8] c"androidx/core/app/NotificationCompat$Action$Builder$Api31Impl\00", align 1 +@.TypeMapEntry.12874_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.NotificationCompat+Action+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12875_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/NotificationCompat$Action$Builder\00", align 1 +@.TypeMapEntry.12876_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.App.NotificationCompat+Action+IExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12877_to = private unnamed_addr constant [53 x i8] c"androidx/core/app/NotificationCompat$Action$Extender\00", align 1 +@.TypeMapEntry.12878_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.App.NotificationCompat+Action+IExtenderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12879_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.App.NotificationCompat+Action+ISemanticAction, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12880_to = private unnamed_addr constant [59 x i8] c"androidx/core/app/NotificationCompat$Action$SemanticAction\00", align 1 +@.TypeMapEntry.12881_from = private unnamed_addr constant [90 x i8] c"AndroidX.Core.App.NotificationCompat+Action+ISemanticActionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12882_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.App.NotificationCompat+Action+WearableExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12883_to = private unnamed_addr constant [61 x i8] c"androidx/core/app/NotificationCompat$Action$WearableExtender\00", align 1 +@.TypeMapEntry.12884_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.App.NotificationCompat+Action, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12885_to = private unnamed_addr constant [44 x i8] c"androidx/core/app/NotificationCompat$Action\00", align 1 +@.TypeMapEntry.12886_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.App.NotificationCompat+BigPictureStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12887_to = private unnamed_addr constant [53 x i8] c"androidx/core/app/NotificationCompat$BigPictureStyle\00", align 1 +@.TypeMapEntry.12888_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.App.NotificationCompat+BigTextStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12889_to = private unnamed_addr constant [50 x i8] c"androidx/core/app/NotificationCompat$BigTextStyle\00", align 1 +@.TypeMapEntry.12890_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.App.NotificationCompat+BubbleMetadata+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12891_to = private unnamed_addr constant [60 x i8] c"androidx/core/app/NotificationCompat$BubbleMetadata$Builder\00", align 1 +@.TypeMapEntry.12892_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.NotificationCompat+BubbleMetadata, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12893_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/NotificationCompat$BubbleMetadata\00", align 1 +@.TypeMapEntry.12894_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.App.NotificationCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12895_to = private unnamed_addr constant [45 x i8] c"androidx/core/app/NotificationCompat$Builder\00", align 1 +@.TypeMapEntry.12896_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.App.NotificationCompat+CallStyle+Api31Impl, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12897_to = private unnamed_addr constant [57 x i8] c"androidx/core/app/NotificationCompat$CallStyle$Api31Impl\00", align 1 +@.TypeMapEntry.12898_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.App.NotificationCompat+CallStyle+ICallType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12899_to = private unnamed_addr constant [56 x i8] c"androidx/core/app/NotificationCompat$CallStyle$CallType\00", align 1 +@.TypeMapEntry.12900_from = private unnamed_addr constant [87 x i8] c"AndroidX.Core.App.NotificationCompat+CallStyle+ICallTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12901_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.App.NotificationCompat+CallStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12902_to = private unnamed_addr constant [47 x i8] c"androidx/core/app/NotificationCompat$CallStyle\00", align 1 +@.TypeMapEntry.12903_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.App.NotificationCompat+CarExtender+UnreadConversation+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12904_to = private unnamed_addr constant [76 x i8] c"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation$Builder\00", align 1 +@.TypeMapEntry.12905_from = private unnamed_addr constant [91 x i8] c"AndroidX.Core.App.NotificationCompat+CarExtender+UnreadConversation, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12906_to = private unnamed_addr constant [68 x i8] c"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation\00", align 1 +@.TypeMapEntry.12907_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.App.NotificationCompat+CarExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12908_to = private unnamed_addr constant [49 x i8] c"androidx/core/app/NotificationCompat$CarExtender\00", align 1 +@.TypeMapEntry.12909_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.App.NotificationCompat+DecoratedCustomViewStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12910_to = private unnamed_addr constant [62 x i8] c"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle\00", align 1 +@.TypeMapEntry.12911_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.NotificationCompat+IBadgeIconType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12912_to = private unnamed_addr constant [51 x i8] c"androidx/core/app/NotificationCompat$BadgeIconType\00", align 1 +@.TypeMapEntry.12913_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.App.NotificationCompat+IBadgeIconTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12914_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.App.NotificationCompat+IExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12915_to = private unnamed_addr constant [46 x i8] c"androidx/core/app/NotificationCompat$Extender\00", align 1 +@.TypeMapEntry.12916_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.App.NotificationCompat+IExtenderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12917_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.App.NotificationCompat+IGroupAlertBehavior, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12918_to = private unnamed_addr constant [56 x i8] c"androidx/core/app/NotificationCompat$GroupAlertBehavior\00", align 1 +@.TypeMapEntry.12919_from = private unnamed_addr constant [87 x i8] c"AndroidX.Core.App.NotificationCompat+IGroupAlertBehaviorInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12920_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.App.NotificationCompat+INotificationVisibility, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12921_to = private unnamed_addr constant [60 x i8] c"androidx/core/app/NotificationCompat$NotificationVisibility\00", align 1 +@.TypeMapEntry.12922_from = private unnamed_addr constant [91 x i8] c"AndroidX.Core.App.NotificationCompat+INotificationVisibilityInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12923_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.App.NotificationCompat+IServiceNotificationBehavior, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12924_to = private unnamed_addr constant [65 x i8] c"androidx/core/app/NotificationCompat$ServiceNotificationBehavior\00", align 1 +@.TypeMapEntry.12925_from = private unnamed_addr constant [96 x i8] c"AndroidX.Core.App.NotificationCompat+IServiceNotificationBehaviorInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12926_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.App.NotificationCompat+IStreamType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12927_to = private unnamed_addr constant [48 x i8] c"androidx/core/app/NotificationCompat$StreamType\00", align 1 +@.TypeMapEntry.12928_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.App.NotificationCompat+IStreamTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12929_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.App.NotificationCompat+InboxStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12930_to = private unnamed_addr constant [48 x i8] c"androidx/core/app/NotificationCompat$InboxStyle\00", align 1 +@.TypeMapEntry.12931_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.App.NotificationCompat+MessagingStyle+Message, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12932_to = private unnamed_addr constant [60 x i8] c"androidx/core/app/NotificationCompat$MessagingStyle$Message\00", align 1 +@.TypeMapEntry.12933_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.NotificationCompat+MessagingStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12934_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/NotificationCompat$MessagingStyle\00", align 1 +@.TypeMapEntry.12935_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.App.NotificationCompat+Style, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12936_to = private unnamed_addr constant [43 x i8] c"androidx/core/app/NotificationCompat$Style\00", align 1 +@.TypeMapEntry.12937_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.App.NotificationCompat+StyleInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12938_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.App.NotificationCompat+TvExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12939_to = private unnamed_addr constant [48 x i8] c"androidx/core/app/NotificationCompat$TvExtender\00", align 1 +@.TypeMapEntry.12940_from = private unnamed_addr constant [87 x i8] c"AndroidX.Core.App.NotificationCompat+WearableExtender+Api31Impl, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12941_to = private unnamed_addr constant [64 x i8] c"androidx/core/app/NotificationCompat$WearableExtender$Api31Impl\00", align 1 +@.TypeMapEntry.12942_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.App.NotificationCompat+WearableExtender, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12943_to = private unnamed_addr constant [54 x i8] c"androidx/core/app/NotificationCompat$WearableExtender\00", align 1 +@.TypeMapEntry.12944_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.App.NotificationCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12945_to = private unnamed_addr constant [37 x i8] c"androidx/core/app/NotificationCompat\00", align 1 +@.TypeMapEntry.12946_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.App.NotificationCompatExtras, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12947_to = private unnamed_addr constant [43 x i8] c"androidx/core/app/NotificationCompatExtras\00", align 1 +@.TypeMapEntry.12948_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.App.NotificationCompatSideChannelService, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12949_to = private unnamed_addr constant [55 x i8] c"androidx/core/app/NotificationCompatSideChannelService\00", align 1 +@.TypeMapEntry.12950_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.App.NotificationCompatSideChannelServiceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12951_from = private unnamed_addr constant [87 x i8] c"AndroidX.Core.App.NotificationManagerCompat+IInterruptionFilter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12952_to = private unnamed_addr constant [63 x i8] c"androidx/core/app/NotificationManagerCompat$InterruptionFilter\00", align 1 +@.TypeMapEntry.12953_from = private unnamed_addr constant [94 x i8] c"AndroidX.Core.App.NotificationManagerCompat+IInterruptionFilterInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12954_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.App.NotificationManagerCompat+NotificationWithIdAndTag, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12955_to = private unnamed_addr constant [69 x i8] c"androidx/core/app/NotificationManagerCompat$NotificationWithIdAndTag\00", align 1 +@.TypeMapEntry.12956_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.App.NotificationManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12957_to = private unnamed_addr constant [44 x i8] c"androidx/core/app/NotificationManagerCompat\00", align 1 +@.TypeMapEntry.12958_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.App.PendingIntentCompat+IFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12959_to = private unnamed_addr constant [44 x i8] c"androidx/core/app/PendingIntentCompat$Flags\00", align 1 +@.TypeMapEntry.12960_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.App.PendingIntentCompat+IFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12961_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.PendingIntentCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12962_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/PendingIntentCompat\00", align 1 +@.TypeMapEntry.12963_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.App.Person+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12964_to = private unnamed_addr constant [33 x i8] c"androidx/core/app/Person$Builder\00", align 1 +@.TypeMapEntry.12965_from = private unnamed_addr constant [48 x i8] c"AndroidX.Core.App.Person, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12966_to = private unnamed_addr constant [25 x i8] c"androidx/core/app/Person\00", align 1 +@.TypeMapEntry.12967_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.App.PictureInPictureModeChangedInfo, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12968_to = private unnamed_addr constant [50 x i8] c"androidx/core/app/PictureInPictureModeChangedInfo\00", align 1 +@.TypeMapEntry.12969_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.App.RemoteActionCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12970_to = private unnamed_addr constant [37 x i8] c"androidx/core/app/RemoteActionCompat\00", align 1 +@.TypeMapEntry.12971_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.App.RemoteActionCompatParcelizer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12972_to = private unnamed_addr constant [47 x i8] c"androidx/core/app/RemoteActionCompatParcelizer\00", align 1 +@.TypeMapEntry.12973_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.RemoteInput+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12974_to = private unnamed_addr constant [38 x i8] c"androidx/core/app/RemoteInput$Builder\00", align 1 +@.TypeMapEntry.12975_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.App.RemoteInput+IEditChoicesBeforeSending, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12976_to = private unnamed_addr constant [55 x i8] c"androidx/core/app/RemoteInput$EditChoicesBeforeSending\00", align 1 +@.TypeMapEntry.12977_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.App.RemoteInput+IEditChoicesBeforeSendingInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12978_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.App.RemoteInput+ISource, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12979_to = private unnamed_addr constant [37 x i8] c"androidx/core/app/RemoteInput$Source\00", align 1 +@.TypeMapEntry.12980_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.App.RemoteInput+ISourceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12981_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.App.RemoteInput, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12982_to = private unnamed_addr constant [30 x i8] c"androidx/core/app/RemoteInput\00", align 1 +@.TypeMapEntry.12983_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.App.ServiceCompat+IStopForegroundFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12984_to = private unnamed_addr constant [52 x i8] c"androidx/core/app/ServiceCompat$StopForegroundFlags\00", align 1 +@.TypeMapEntry.12985_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.App.ServiceCompat+IStopForegroundFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12986_from = private unnamed_addr constant [55 x i8] c"AndroidX.Core.App.ServiceCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12987_to = private unnamed_addr constant [32 x i8] c"androidx/core/app/ServiceCompat\00", align 1 +@.TypeMapEntry.12988_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.App.ShareCompat+IntentBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12989_to = private unnamed_addr constant [44 x i8] c"androidx/core/app/ShareCompat$IntentBuilder\00", align 1 +@.TypeMapEntry.12990_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.App.ShareCompat+IntentReader, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12991_to = private unnamed_addr constant [43 x i8] c"androidx/core/app/ShareCompat$IntentReader\00", align 1 +@.TypeMapEntry.12992_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.App.ShareCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12993_to = private unnamed_addr constant [30 x i8] c"androidx/core/app/ShareCompat\00", align 1 +@.TypeMapEntry.12994_from = private unnamed_addr constant [94 x i8] c"AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12995_to = private unnamed_addr constant [70 x i8] c"androidx/core/app/SharedElementCallback$OnSharedElementsReadyListener\00", align 1 +@.TypeMapEntry.12996_from = private unnamed_addr constant [105 x i8] c"AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12997_to = private unnamed_addr constant [86 x i8] c"mono/androidx/core/app/SharedElementCallback_OnSharedElementsReadyListenerImplementor\00", align 1 +@.TypeMapEntry.12998_from = private unnamed_addr constant [101 x i8] c"AndroidX.Core.App.SharedElementCallback+IOnSharedElementsReadyListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.12999_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.App.SharedElementCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13000_to = private unnamed_addr constant [40 x i8] c"androidx/core/app/SharedElementCallback\00", align 1 +@.TypeMapEntry.13001_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.App.SharedElementCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13002_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.App.TaskStackBuilder+ISupportParentable, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13003_to = private unnamed_addr constant [53 x i8] c"androidx/core/app/TaskStackBuilder$SupportParentable\00", align 1 +@.TypeMapEntry.13004_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.App.TaskStackBuilder+ISupportParentableInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13005_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.App.TaskStackBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13006_to = private unnamed_addr constant [35 x i8] c"androidx/core/app/TaskStackBuilder\00", align 1 +@.TypeMapEntry.13007_from = private unnamed_addr constant [102 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13008_to = private unnamed_addr constant [79 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback\00", align 1 +@.TypeMapEntry.13009_from = private unnamed_addr constant [109 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13010_from = private unnamed_addr constant [101 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportService, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13011_to = private unnamed_addr constant [78 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService\00", align 1 +@.TypeMapEntry.13012_from = private unnamed_addr constant [108 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.IUnusedAppRestrictionsBackportServiceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13013_from = private unnamed_addr constant [101 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13014_from = private unnamed_addr constant [107 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportCallbackConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13015_from = private unnamed_addr constant [108 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportCallbackDefault, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13016_to = private unnamed_addr constant [87 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Default\00", align 1 +@.TypeMapEntry.13017_from = private unnamed_addr constant [105 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportCallbackStub, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13018_to = private unnamed_addr constant [84 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub\00", align 1 +@.TypeMapEntry.13019_from = private unnamed_addr constant [112 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportCallbackStubInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13020_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportService, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13021_from = private unnamed_addr constant [106 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportServiceConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13022_from = private unnamed_addr constant [107 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportServiceDefault, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13023_to = private unnamed_addr constant [86 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Default\00", align 1 +@.TypeMapEntry.13024_from = private unnamed_addr constant [104 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportServiceStub, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13025_to = private unnamed_addr constant [83 x i8] c"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub\00", align 1 +@.TypeMapEntry.13026_from = private unnamed_addr constant [111 x i8] c"AndroidX.Core.App.UnusedAppRestrictions.UnusedAppRestrictionsBackportServiceStubInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13027_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Content.ContentProviderCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13028_to = private unnamed_addr constant [44 x i8] c"androidx/core/content/ContentProviderCompat\00", align 1 +@.TypeMapEntry.13029_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Content.ContentResolverCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13030_to = private unnamed_addr constant [44 x i8] c"androidx/core/content/ContentResolverCompat\00", align 1 +@.TypeMapEntry.13031_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Content.ContentValuesKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13032_to = private unnamed_addr constant [38 x i8] c"androidx/core/content/ContentValuesKt\00", align 1 +@.TypeMapEntry.13033_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Content.ContextCompat+IRegisterReceiverFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13034_to = private unnamed_addr constant [58 x i8] c"androidx/core/content/ContextCompat$RegisterReceiverFlags\00", align 1 +@.TypeMapEntry.13035_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.Content.ContextCompat+IRegisterReceiverFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13036_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Content.ContextCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13037_to = private unnamed_addr constant [36 x i8] c"androidx/core/content/ContextCompat\00", align 1 +@.TypeMapEntry.13038_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Content.ContextKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13039_to = private unnamed_addr constant [32 x i8] c"androidx/core/content/ContextKt\00", align 1 +@.TypeMapEntry.13040_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Content.FileProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13041_to = private unnamed_addr constant [35 x i8] c"androidx/core/content/FileProvider\00", align 1 +@.TypeMapEntry.13042_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Content.IOnConfigurationChangedProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13043_to = private unnamed_addr constant [53 x i8] c"androidx/core/content/OnConfigurationChangedProvider\00", align 1 +@.TypeMapEntry.13044_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Content.IOnConfigurationChangedProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13045_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Content.IOnTrimMemoryProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13046_to = private unnamed_addr constant [43 x i8] c"androidx/core/content/OnTrimMemoryProvider\00", align 1 +@.TypeMapEntry.13047_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Content.IOnTrimMemoryProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13048_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Content.IntentCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13049_to = private unnamed_addr constant [35 x i8] c"androidx/core/content/IntentCompat\00", align 1 +@.TypeMapEntry.13050_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Content.IntentSanitizer+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13051_to = private unnamed_addr constant [46 x i8] c"androidx/core/content/IntentSanitizer$Builder\00", align 1 +@.TypeMapEntry.13052_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Content.IntentSanitizer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13053_to = private unnamed_addr constant [38 x i8] c"androidx/core/content/IntentSanitizer\00", align 1 +@.TypeMapEntry.13054_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Content.LocusIdCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13055_to = private unnamed_addr constant [36 x i8] c"androidx/core/content/LocusIdCompat\00", align 1 +@.TypeMapEntry.13056_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Content.MimeTypeFilter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13057_to = private unnamed_addr constant [37 x i8] c"androidx/core/content/MimeTypeFilter\00", align 1 +@.TypeMapEntry.13058_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Content.PM.ActivityInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13059_to = private unnamed_addr constant [44 x i8] c"androidx/core/content/pm/ActivityInfoCompat\00", align 1 +@.TypeMapEntry.13060_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Content.PM.PackageInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13061_to = private unnamed_addr constant [43 x i8] c"androidx/core/content/pm/PackageInfoCompat\00", align 1 +@.TypeMapEntry.13062_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Content.PM.PermissionInfoCompat+IProtection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13063_to = private unnamed_addr constant [57 x i8] c"androidx/core/content/pm/PermissionInfoCompat$Protection\00", align 1 +@.TypeMapEntry.13064_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.Content.PM.PermissionInfoCompat+IProtectionFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13065_to = private unnamed_addr constant [62 x i8] c"androidx/core/content/pm/PermissionInfoCompat$ProtectionFlags\00", align 1 +@.TypeMapEntry.13066_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.Content.PM.PermissionInfoCompat+IProtectionFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13067_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.Content.PM.PermissionInfoCompat+IProtectionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13068_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Content.PM.PermissionInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13069_to = private unnamed_addr constant [46 x i8] c"androidx/core/content/pm/PermissionInfoCompat\00", align 1 +@.TypeMapEntry.13070_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoChangeListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13071_to = private unnamed_addr constant [52 x i8] c"androidx/core/content/pm/ShortcutInfoChangeListener\00", align 1 +@.TypeMapEntry.13072_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoChangeListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13073_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13074_to = private unnamed_addr constant [52 x i8] c"androidx/core/content/pm/ShortcutInfoCompat$Builder\00", align 1 +@.TypeMapEntry.13075_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompat+ISurface, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13076_to = private unnamed_addr constant [52 x i8] c"androidx/core/content/pm/ShortcutInfoCompat$Surface\00", align 1 +@.TypeMapEntry.13077_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompat+ISurfaceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13078_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13079_to = private unnamed_addr constant [44 x i8] c"androidx/core/content/pm/ShortcutInfoCompat\00", align 1 +@.TypeMapEntry.13080_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompatSaver+NoopImpl, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13081_to = private unnamed_addr constant [58 x i8] c"androidx/core/content/pm/ShortcutInfoCompatSaver$NoopImpl\00", align 1 +@.TypeMapEntry.13082_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompatSaver, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13083_to = private unnamed_addr constant [49 x i8] c"androidx/core/content/pm/ShortcutInfoCompatSaver\00", align 1 +@.TypeMapEntry.13084_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Content.PM.ShortcutInfoCompatSaverInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13085_from = private unnamed_addr constant [90 x i8] c"AndroidX.Core.Content.PM.ShortcutManagerCompat+IShortcutMatchFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13086_to = private unnamed_addr constant [66 x i8] c"androidx/core/content/pm/ShortcutManagerCompat$ShortcutMatchFlags\00", align 1 +@.TypeMapEntry.13087_from = private unnamed_addr constant [97 x i8] c"AndroidX.Core.Content.PM.ShortcutManagerCompat+IShortcutMatchFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13088_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Content.PM.ShortcutManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13089_to = private unnamed_addr constant [47 x i8] c"androidx/core/content/pm/ShortcutManagerCompat\00", align 1 +@.TypeMapEntry.13090_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Content.PM.ShortcutXmlParser, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13091_to = private unnamed_addr constant [43 x i8] c"androidx/core/content/pm/ShortcutXmlParser\00", align 1 +@.TypeMapEntry.13092_from = private unnamed_addr constant [95 x i8] c"AndroidX.Core.Content.PackageManagerCompat+IUnusedAppRestrictionsStatus, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13093_to = private unnamed_addr constant [71 x i8] c"androidx/core/content/PackageManagerCompat$UnusedAppRestrictionsStatus\00", align 1 +@.TypeMapEntry.13094_from = private unnamed_addr constant [102 x i8] c"AndroidX.Core.Content.PackageManagerCompat+IUnusedAppRestrictionsStatusInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13095_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Content.PackageManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13096_to = private unnamed_addr constant [43 x i8] c"androidx/core/content/PackageManagerCompat\00", align 1 +@.TypeMapEntry.13097_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Content.PermissionChecker+IPermissionResult, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13098_to = private unnamed_addr constant [57 x i8] c"androidx/core/content/PermissionChecker$PermissionResult\00", align 1 +@.TypeMapEntry.13099_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.Content.PermissionChecker+IPermissionResultInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13100_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Content.PermissionChecker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13101_to = private unnamed_addr constant [40 x i8] c"androidx/core/content/PermissionChecker\00", align 1 +@.TypeMapEntry.13102_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Content.Resources.CamColor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13103_to = private unnamed_addr constant [35 x i8] c"androidx/core/content/res/CamColor\00", align 1 +@.TypeMapEntry.13104_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Content.Resources.ColorStateListInflaterCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13105_to = private unnamed_addr constant [55 x i8] c"androidx/core/content/res/ColorStateListInflaterCompat\00", align 1 +@.TypeMapEntry.13106_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Content.Resources.ComplexColorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13107_to = private unnamed_addr constant [45 x i8] c"androidx/core/content/res/ComplexColorCompat\00", align 1 +@.TypeMapEntry.13108_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Content.Resources.ConfigurationHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13109_to = private unnamed_addr constant [46 x i8] c"androidx/core/content/res/ConfigurationHelper\00", align 1 +@.TypeMapEntry.13110_from = private unnamed_addr constant [110 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+FontFamilyFilesResourceEntry, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13111_to = private unnamed_addr constant [81 x i8] c"androidx/core/content/res/FontResourcesParserCompat$FontFamilyFilesResourceEntry\00", align 1 +@.TypeMapEntry.13112_from = private unnamed_addr constant [103 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+FontFileResourceEntry, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13113_to = private unnamed_addr constant [74 x i8] c"androidx/core/content/res/FontResourcesParserCompat$FontFileResourceEntry\00", align 1 +@.TypeMapEntry.13114_from = private unnamed_addr constant [102 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFamilyResourceEntry, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13115_to = private unnamed_addr constant [72 x i8] c"androidx/core/content/res/FontResourcesParserCompat$FamilyResourceEntry\00", align 1 +@.TypeMapEntry.13116_from = private unnamed_addr constant [109 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFamilyResourceEntryInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13117_from = private unnamed_addr constant [96 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFetchStrategy, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13118_to = private unnamed_addr constant [66 x i8] c"androidx/core/content/res/FontResourcesParserCompat$FetchStrategy\00", align 1 +@.TypeMapEntry.13119_from = private unnamed_addr constant [103 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+IFetchStrategyInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13120_from = private unnamed_addr constant [103 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat+ProviderResourceEntry, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13121_to = private unnamed_addr constant [74 x i8] c"androidx/core/content/res/FontResourcesParserCompat$ProviderResourceEntry\00", align 1 +@.TypeMapEntry.13122_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Content.Resources.FontResourcesParserCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13123_to = private unnamed_addr constant [52 x i8] c"androidx/core/content/res/FontResourcesParserCompat\00", align 1 +@.TypeMapEntry.13124_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Content.Resources.ResourcesCompat+FontCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13125_to = private unnamed_addr constant [55 x i8] c"androidx/core/content/res/ResourcesCompat$FontCallback\00", align 1 +@.TypeMapEntry.13126_from = private unnamed_addr constant [91 x i8] c"AndroidX.Core.Content.Resources.ResourcesCompat+FontCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13127_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Content.Resources.ResourcesCompat+ThemeCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13128_to = private unnamed_addr constant [54 x i8] c"androidx/core/content/res/ResourcesCompat$ThemeCompat\00", align 1 +@.TypeMapEntry.13129_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Content.Resources.ResourcesCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13130_to = private unnamed_addr constant [42 x i8] c"androidx/core/content/res/ResourcesCompat\00", align 1 +@.TypeMapEntry.13131_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Content.Resources.TypedArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13132_to = private unnamed_addr constant [39 x i8] c"androidx/core/content/res/TypedArrayKt\00", align 1 +@.TypeMapEntry.13133_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Content.Resources.TypedArrayUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13134_to = private unnamed_addr constant [42 x i8] c"androidx/core/content/res/TypedArrayUtils\00", align 1 +@.TypeMapEntry.13135_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Content.SharedPreferencesCompat+EditorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13136_to = private unnamed_addr constant [59 x i8] c"androidx/core/content/SharedPreferencesCompat$EditorCompat\00", align 1 +@.TypeMapEntry.13137_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Content.SharedPreferencesCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13138_to = private unnamed_addr constant [46 x i8] c"androidx/core/content/SharedPreferencesCompat\00", align 1 +@.TypeMapEntry.13139_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Content.SharedPreferencesKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13140_to = private unnamed_addr constant [42 x i8] c"androidx/core/content/SharedPreferencesKt\00", align 1 +@.TypeMapEntry.13141_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Content.UnusedAppRestrictionsBackportCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13142_to = private unnamed_addr constant [60 x i8] c"androidx/core/content/UnusedAppRestrictionsBackportCallback\00", align 1 +@.TypeMapEntry.13143_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Content.UnusedAppRestrictionsBackportService, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13144_to = private unnamed_addr constant [59 x i8] c"androidx/core/content/UnusedAppRestrictionsBackportService\00", align 1 +@.TypeMapEntry.13145_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.Content.UnusedAppRestrictionsBackportServiceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13146_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Content.UnusedAppRestrictionsConstants, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13147_to = private unnamed_addr constant [53 x i8] c"androidx/core/content/UnusedAppRestrictionsConstants\00", align 1 +@.TypeMapEntry.13148_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Content.UriMatcherCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13149_to = private unnamed_addr constant [39 x i8] c"androidx/core/content/UriMatcherCompat\00", align 1 +@.TypeMapEntry.13150_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Database.CursorKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13151_to = private unnamed_addr constant [32 x i8] c"androidx/core/database/CursorKt\00", align 1 +@.TypeMapEntry.13152_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Database.CursorWindowCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13153_to = private unnamed_addr constant [42 x i8] c"androidx/core/database/CursorWindowCompat\00", align 1 +@.TypeMapEntry.13154_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Database.DatabaseUtilsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13155_to = private unnamed_addr constant [43 x i8] c"androidx/core/database/DatabaseUtilsCompat\00", align 1 +@.TypeMapEntry.13156_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.Database.SqlLite.SQLiteCursorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13157_to = private unnamed_addr constant [49 x i8] c"androidx/core/database/sqlite/SQLiteCursorCompat\00", align 1 +@.TypeMapEntry.13158_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Database.Sqlite.SQLiteDatabaseKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13159_to = private unnamed_addr constant [47 x i8] c"androidx/core/database/sqlite/SQLiteDatabaseKt\00", align 1 +@.TypeMapEntry.13160_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Graphics.BitmapCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13161_to = private unnamed_addr constant [36 x i8] c"androidx/core/graphics/BitmapCompat\00", align 1 +@.TypeMapEntry.13162_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Graphics.BitmapKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13163_to = private unnamed_addr constant [32 x i8] c"androidx/core/graphics/BitmapKt\00", align 1 +@.TypeMapEntry.13164_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.Graphics.BlendModeColorFilterCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13165_to = private unnamed_addr constant [50 x i8] c"androidx/core/graphics/BlendModeColorFilterCompat\00", align 1 +@.TypeMapEntry.13166_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Graphics.BlendModeCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13167_to = private unnamed_addr constant [39 x i8] c"androidx/core/graphics/BlendModeCompat\00", align 1 +@.TypeMapEntry.13168_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Graphics.CanvasKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13169_to = private unnamed_addr constant [32 x i8] c"androidx/core/graphics/CanvasKt\00", align 1 +@.TypeMapEntry.13170_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Graphics.ColorKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13171_to = private unnamed_addr constant [31 x i8] c"androidx/core/graphics/ColorKt\00", align 1 +@.TypeMapEntry.13172_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.Graphics.ColorUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13173_to = private unnamed_addr constant [34 x i8] c"androidx/core/graphics/ColorUtils\00", align 1 +@.TypeMapEntry.13174_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Graphics.Drawable.BitmapDrawableKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13175_to = private unnamed_addr constant [49 x i8] c"androidx/core/graphics/drawable/BitmapDrawableKt\00", align 1 +@.TypeMapEntry.13176_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.Graphics.Drawable.ColorDrawableKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13177_to = private unnamed_addr constant [48 x i8] c"androidx/core/graphics/drawable/ColorDrawableKt\00", align 1 +@.TypeMapEntry.13178_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Graphics.Drawable.DrawableCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13179_to = private unnamed_addr constant [47 x i8] c"androidx/core/graphics/drawable/DrawableCompat\00", align 1 +@.TypeMapEntry.13180_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Graphics.Drawable.DrawableKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13181_to = private unnamed_addr constant [43 x i8] c"androidx/core/graphics/drawable/DrawableKt\00", align 1 +@.TypeMapEntry.13182_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Graphics.Drawable.ITintAwareDrawable, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13183_to = private unnamed_addr constant [50 x i8] c"androidx/core/graphics/drawable/TintAwareDrawable\00", align 1 +@.TypeMapEntry.13184_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Graphics.Drawable.ITintAwareDrawableInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13185_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Graphics.Drawable.IWrappedDrawable, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13186_to = private unnamed_addr constant [48 x i8] c"androidx/core/graphics/drawable/WrappedDrawable\00", align 1 +@.TypeMapEntry.13187_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Graphics.Drawable.IWrappedDrawableInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13188_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Graphics.Drawable.IconCompat+IIconType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13189_to = private unnamed_addr constant [52 x i8] c"androidx/core/graphics/drawable/IconCompat$IconType\00", align 1 +@.TypeMapEntry.13190_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Graphics.Drawable.IconCompat+IIconTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13191_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Graphics.Drawable.IconCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13192_to = private unnamed_addr constant [43 x i8] c"androidx/core/graphics/drawable/IconCompat\00", align 1 +@.TypeMapEntry.13193_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Graphics.Drawable.IconCompatParcelizer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13194_to = private unnamed_addr constant [53 x i8] c"androidx/core/graphics/drawable/IconCompatParcelizer\00", align 1 +@.TypeMapEntry.13195_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Graphics.Drawable.IconKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13196_to = private unnamed_addr constant [39 x i8] c"androidx/core/graphics/drawable/IconKt\00", align 1 +@.TypeMapEntry.13197_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Graphics.Drawable.RoundedBitmapDrawable, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13198_to = private unnamed_addr constant [54 x i8] c"androidx/core/graphics/drawable/RoundedBitmapDrawable\00", align 1 +@.TypeMapEntry.13199_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Graphics.Drawable.RoundedBitmapDrawableFactory, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13200_to = private unnamed_addr constant [61 x i8] c"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory\00", align 1 +@.TypeMapEntry.13201_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Graphics.Drawable.RoundedBitmapDrawableInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13202_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Graphics.ImageDecoderKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13203_to = private unnamed_addr constant [38 x i8] c"androidx/core/graphics/ImageDecoderKt\00", align 1 +@.TypeMapEntry.13204_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.Graphics.Insets, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13205_to = private unnamed_addr constant [30 x i8] c"androidx/core/graphics/Insets\00", align 1 +@.TypeMapEntry.13206_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Graphics.MatrixKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13207_to = private unnamed_addr constant [32 x i8] c"androidx/core/graphics/MatrixKt\00", align 1 +@.TypeMapEntry.13208_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Graphics.PaintCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13209_to = private unnamed_addr constant [35 x i8] c"androidx/core/graphics/PaintCompat\00", align 1 +@.TypeMapEntry.13210_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Graphics.PaintKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13211_to = private unnamed_addr constant [31 x i8] c"androidx/core/graphics/PaintKt\00", align 1 +@.TypeMapEntry.13212_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Graphics.PathKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13213_to = private unnamed_addr constant [30 x i8] c"androidx/core/graphics/PathKt\00", align 1 +@.TypeMapEntry.13214_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Graphics.PathParser+PathDataNode, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13215_to = private unnamed_addr constant [47 x i8] c"androidx/core/graphics/PathParser$PathDataNode\00", align 1 +@.TypeMapEntry.13216_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.Graphics.PathParser, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13217_to = private unnamed_addr constant [34 x i8] c"androidx/core/graphics/PathParser\00", align 1 +@.TypeMapEntry.13218_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Graphics.PathSegment, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13219_to = private unnamed_addr constant [35 x i8] c"androidx/core/graphics/PathSegment\00", align 1 +@.TypeMapEntry.13220_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Graphics.PathUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13221_to = private unnamed_addr constant [33 x i8] c"androidx/core/graphics/PathUtils\00", align 1 +@.TypeMapEntry.13222_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Graphics.PictureKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13223_to = private unnamed_addr constant [33 x i8] c"androidx/core/graphics/PictureKt\00", align 1 +@.TypeMapEntry.13224_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Graphics.PointKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13225_to = private unnamed_addr constant [31 x i8] c"androidx/core/graphics/PointKt\00", align 1 +@.TypeMapEntry.13226_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Graphics.PorterDuffKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13227_to = private unnamed_addr constant [36 x i8] c"androidx/core/graphics/PorterDuffKt\00", align 1 +@.TypeMapEntry.13228_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Graphics.RectKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13229_to = private unnamed_addr constant [30 x i8] c"androidx/core/graphics/RectKt\00", align 1 +@.TypeMapEntry.13230_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Graphics.RegionKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13231_to = private unnamed_addr constant [32 x i8] c"androidx/core/graphics/RegionKt\00", align 1 +@.TypeMapEntry.13232_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Graphics.ShaderKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13233_to = private unnamed_addr constant [32 x i8] c"androidx/core/graphics/ShaderKt\00", align 1 +@.TypeMapEntry.13234_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.Graphics.TypefaceCompat+ResourcesCallbackAdapter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13235_to = private unnamed_addr constant [63 x i8] c"androidx/core/graphics/TypefaceCompat$ResourcesCallbackAdapter\00", align 1 +@.TypeMapEntry.13236_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Graphics.TypefaceCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13237_to = private unnamed_addr constant [38 x i8] c"androidx/core/graphics/TypefaceCompat\00", align 1 +@.TypeMapEntry.13238_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Graphics.TypefaceCompatUtil, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13239_to = private unnamed_addr constant [42 x i8] c"androidx/core/graphics/TypefaceCompatUtil\00", align 1 +@.TypeMapEntry.13240_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Hardware.Display.DisplayManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13241_to = private unnamed_addr constant [52 x i8] c"androidx/core/hardware/display/DisplayManagerCompat\00", align 1 +@.TypeMapEntry.13242_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.Hardware.Display.IExperimentalDisplayApi, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13243_to = private unnamed_addr constant [54 x i8] c"androidx/core/hardware/display/ExperimentalDisplayApi\00", align 1 +@.TypeMapEntry.13244_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.Hardware.Display.IExperimentalDisplayApiInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13245_from = private unnamed_addr constant [106 x i8] c"AndroidX.Core.Hardware.Fingerprint.FingerprintManagerCompat+AuthenticationCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13246_to = private unnamed_addr constant [83 x i8] c"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationCallback\00", align 1 +@.TypeMapEntry.13247_from = private unnamed_addr constant [113 x i8] c"AndroidX.Core.Hardware.Fingerprint.FingerprintManagerCompat+AuthenticationCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13248_from = private unnamed_addr constant [104 x i8] c"AndroidX.Core.Hardware.Fingerprint.FingerprintManagerCompat+AuthenticationResult, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13249_to = private unnamed_addr constant [81 x i8] c"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationResult\00", align 1 +@.TypeMapEntry.13250_from = private unnamed_addr constant [96 x i8] c"AndroidX.Core.Hardware.Fingerprint.FingerprintManagerCompat+CryptoObject, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13251_to = private unnamed_addr constant [73 x i8] c"androidx/core/hardware/fingerprint/FingerprintManagerCompat$CryptoObject\00", align 1 +@.TypeMapEntry.13252_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Hardware.Fingerprint.FingerprintManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13253_to = private unnamed_addr constant [60 x i8] c"androidx/core/hardware/fingerprint/FingerprintManagerCompat\00", align 1 +@.TypeMapEntry.13254_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Internal.View.ISupportMenu, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13255_to = private unnamed_addr constant [40 x i8] c"androidx/core/internal/view/SupportMenu\00", align 1 +@.TypeMapEntry.13256_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Internal.View.ISupportMenuInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13257_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Internal.View.ISupportMenuItem, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13258_to = private unnamed_addr constant [44 x i8] c"androidx/core/internal/view/SupportMenuItem\00", align 1 +@.TypeMapEntry.13259_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Internal.View.ISupportMenuItemInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13260_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Internal.View.ISupportSubMenu, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13261_to = private unnamed_addr constant [43 x i8] c"androidx/core/internal/view/SupportSubMenu\00", align 1 +@.TypeMapEntry.13262_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Internal.View.ISupportSubMenuInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13263_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Internal.View.SupportMenu, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13264_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Internal.View.SupportMenuConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13265_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Internal.View.SupportMenuItem, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13266_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.Internal.View.SupportMenuItemConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13267_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Location.GnssStatusCompat+Callback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13268_to = private unnamed_addr constant [49 x i8] c"androidx/core/location/GnssStatusCompat$Callback\00", align 1 +@.TypeMapEntry.13269_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Location.GnssStatusCompat+CallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13270_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Location.GnssStatusCompat+IConstellationType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13271_to = private unnamed_addr constant [58 x i8] c"androidx/core/location/GnssStatusCompat$ConstellationType\00", align 1 +@.TypeMapEntry.13272_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.Location.GnssStatusCompat+IConstellationTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13273_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Location.GnssStatusCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13274_to = private unnamed_addr constant [40 x i8] c"androidx/core/location/GnssStatusCompat\00", align 1 +@.TypeMapEntry.13275_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Location.GnssStatusCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13276_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Location.ILocationListenerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13277_to = private unnamed_addr constant [46 x i8] c"androidx/core/location/LocationListenerCompat\00", align 1 +@.TypeMapEntry.13278_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Location.ILocationListenerCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13279_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Location.LocationCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13280_to = private unnamed_addr constant [38 x i8] c"androidx/core/location/LocationCompat\00", align 1 +@.TypeMapEntry.13281_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Location.LocationKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13282_to = private unnamed_addr constant [34 x i8] c"androidx/core/location/LocationKt\00", align 1 +@.TypeMapEntry.13283_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Location.LocationManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13284_to = private unnamed_addr constant [45 x i8] c"androidx/core/location/LocationManagerCompat\00", align 1 +@.TypeMapEntry.13285_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Location.LocationRequestCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13286_to = private unnamed_addr constant [53 x i8] c"androidx/core/location/LocationRequestCompat$Builder\00", align 1 +@.TypeMapEntry.13287_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Location.LocationRequestCompat+IQuality, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13288_to = private unnamed_addr constant [53 x i8] c"androidx/core/location/LocationRequestCompat$Quality\00", align 1 +@.TypeMapEntry.13289_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Location.LocationRequestCompat+IQualityInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13290_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Location.LocationRequestCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13291_to = private unnamed_addr constant [45 x i8] c"androidx/core/location/LocationRequestCompat\00", align 1 +@.TypeMapEntry.13292_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Math.MathUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13293_to = private unnamed_addr constant [29 x i8] c"androidx/core/math/MathUtils\00", align 1 +@.TypeMapEntry.13294_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.Net.ConnectivityManagerCompat+IRestrictBackgroundStatus, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13295_to = private unnamed_addr constant [69 x i8] c"androidx/core/net/ConnectivityManagerCompat$RestrictBackgroundStatus\00", align 1 +@.TypeMapEntry.13296_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.Net.ConnectivityManagerCompat+IRestrictBackgroundStatusInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13297_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Net.ConnectivityManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13298_to = private unnamed_addr constant [44 x i8] c"androidx/core/net/ConnectivityManagerCompat\00", align 1 +@.TypeMapEntry.13299_from = private unnamed_addr constant [48 x i8] c"AndroidX.Core.Net.MailTo, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13300_to = private unnamed_addr constant [25 x i8] c"androidx/core/net/MailTo\00", align 1 +@.TypeMapEntry.13301_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Net.ParseException, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13302_to = private unnamed_addr constant [33 x i8] c"androidx/core/net/ParseException\00", align 1 +@.TypeMapEntry.13303_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Net.TrafficStatsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13304_to = private unnamed_addr constant [37 x i8] c"androidx/core/net/TrafficStatsCompat\00", align 1 +@.TypeMapEntry.13305_from = private unnamed_addr constant [51 x i8] c"AndroidX.Core.Net.UriCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13306_to = private unnamed_addr constant [28 x i8] c"androidx/core/net/UriCompat\00", align 1 +@.TypeMapEntry.13307_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Net.UriKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13308_to = private unnamed_addr constant [24 x i8] c"androidx/core/net/UriKt\00", align 1 +@.TypeMapEntry.13309_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.OS.BufferFillPolicy+Companion, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13310_to = private unnamed_addr constant [44 x i8] c"androidx/core/os/BufferFillPolicy$Companion\00", align 1 +@.TypeMapEntry.13311_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.BufferFillPolicy, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13312_to = private unnamed_addr constant [34 x i8] c"androidx/core/os/BufferFillPolicy\00", align 1 +@.TypeMapEntry.13313_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.OS.BufferFillPolicyInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13314_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.OS.BuildCompat+IPrereleaseSdkCheck, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13315_to = private unnamed_addr constant [48 x i8] c"androidx/core/os/BuildCompat$PrereleaseSdkCheck\00", align 1 +@.TypeMapEntry.13316_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.OS.BuildCompat+IPrereleaseSdkCheckInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13317_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.OS.BuildCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13318_to = private unnamed_addr constant [29 x i8] c"androidx/core/os/BuildCompat\00", align 1 +@.TypeMapEntry.13319_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.OS.BundleCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13320_to = private unnamed_addr constant [30 x i8] c"androidx/core/os/BundleCompat\00", align 1 +@.TypeMapEntry.13321_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.OS.BundleKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13322_to = private unnamed_addr constant [26 x i8] c"androidx/core/os/BundleKt\00", align 1 +@.TypeMapEntry.13323_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.OS.CancellationSignal+IOnCancelListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13324_to = private unnamed_addr constant [53 x i8] c"androidx/core/os/CancellationSignal$OnCancelListener\00", align 1 +@.TypeMapEntry.13325_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13326_to = private unnamed_addr constant [69 x i8] c"mono/androidx/core/os/CancellationSignal_OnCancelListenerImplementor\00", align 1 +@.TypeMapEntry.13327_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.OS.CancellationSignal+IOnCancelListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13328_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.OS.CancellationSignal, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13329_to = private unnamed_addr constant [36 x i8] c"androidx/core/os/CancellationSignal\00", align 1 +@.TypeMapEntry.13330_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.OS.ConfigurationCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13331_to = private unnamed_addr constant [37 x i8] c"androidx/core/os/ConfigurationCompat\00", align 1 +@.TypeMapEntry.13332_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.OS.EnvironmentCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13333_to = private unnamed_addr constant [35 x i8] c"androidx/core/os/EnvironmentCompat\00", align 1 +@.TypeMapEntry.13334_from = private unnamed_addr constant [55 x i8] c"AndroidX.Core.OS.ExecutorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13335_to = private unnamed_addr constant [32 x i8] c"androidx/core/os/ExecutorCompat\00", align 1 +@.TypeMapEntry.13336_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.OS.HandlerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13337_to = private unnamed_addr constant [31 x i8] c"androidx/core/os/HandlerCompat\00", align 1 +@.TypeMapEntry.13338_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.OS.HandlerKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13339_to = private unnamed_addr constant [27 x i8] c"androidx/core/os/HandlerKt\00", align 1 +@.TypeMapEntry.13340_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.OS.HeapProfileRequestBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13341_to = private unnamed_addr constant [43 x i8] c"androidx/core/os/HeapProfileRequestBuilder\00", align 1 +@.TypeMapEntry.13342_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.OS.IOutcomeReceiverCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13343_to = private unnamed_addr constant [39 x i8] c"androidx/core/os/OutcomeReceiverCompat\00", align 1 +@.TypeMapEntry.13344_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.OS.IOutcomeReceiverCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13345_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.OS.IParcelableCompatCreatorCallbacks, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13346_to = private unnamed_addr constant [50 x i8] c"androidx/core/os/ParcelableCompatCreatorCallbacks\00", align 1 +@.TypeMapEntry.13347_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.OS.IParcelableCompatCreatorCallbacksInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13348_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.OS.JavaHeapDumpRequestBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13349_to = private unnamed_addr constant [44 x i8] c"androidx/core/os/JavaHeapDumpRequestBuilder\00", align 1 +@.TypeMapEntry.13350_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.LocaleListCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13351_to = private unnamed_addr constant [34 x i8] c"androidx/core/os/LocaleListCompat\00", align 1 +@.TypeMapEntry.13352_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.OS.MessageCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13353_to = private unnamed_addr constant [31 x i8] c"androidx/core/os/MessageCompat\00", align 1 +@.TypeMapEntry.13354_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.OS.OperationCanceledException, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13355_to = private unnamed_addr constant [44 x i8] c"androidx/core/os/OperationCanceledException\00", align 1 +@.TypeMapEntry.13356_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.OS.OutcomeReceiverKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13357_to = private unnamed_addr constant [35 x i8] c"androidx/core/os/OutcomeReceiverKt\00", align 1 +@.TypeMapEntry.13358_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.OS.ParcelCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13359_to = private unnamed_addr constant [30 x i8] c"androidx/core/os/ParcelCompat\00", align 1 +@.TypeMapEntry.13360_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.ParcelableCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13361_to = private unnamed_addr constant [34 x i8] c"androidx/core/os/ParcelableCompat\00", align 1 +@.TypeMapEntry.13362_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.OS.PersistableBundleKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13363_to = private unnamed_addr constant [37 x i8] c"androidx/core/os/PersistableBundleKt\00", align 1 +@.TypeMapEntry.13364_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.OS.ProcessCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13365_to = private unnamed_addr constant [31 x i8] c"androidx/core/os/ProcessCompat\00", align 1 +@.TypeMapEntry.13366_from = private unnamed_addr constant [50 x i8] c"AndroidX.Core.OS.Profiling, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13367_to = private unnamed_addr constant [27 x i8] c"androidx/core/os/Profiling\00", align 1 +@.TypeMapEntry.13368_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.ProfilingRequest, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13369_to = private unnamed_addr constant [34 x i8] c"androidx/core/os/ProfilingRequest\00", align 1 +@.TypeMapEntry.13370_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.OS.ProfilingRequestBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13371_to = private unnamed_addr constant [41 x i8] c"androidx/core/os/ProfilingRequestBuilder\00", align 1 +@.TypeMapEntry.13372_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.OS.ProfilingRequestBuilderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13373_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.OS.StackSamplingRequestBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13374_to = private unnamed_addr constant [45 x i8] c"androidx/core/os/StackSamplingRequestBuilder\00", align 1 +@.TypeMapEntry.13375_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.OS.SystemTraceRequestBuilder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13376_to = private unnamed_addr constant [43 x i8] c"androidx/core/os/SystemTraceRequestBuilder\00", align 1 +@.TypeMapEntry.13377_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.OS.TraceCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13378_to = private unnamed_addr constant [29 x i8] c"androidx/core/os/TraceCompat\00", align 1 +@.TypeMapEntry.13379_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.TraceKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13380_to = private unnamed_addr constant [25 x i8] c"androidx/core/os/TraceKt\00", align 1 +@.TypeMapEntry.13381_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.OS.UserHandleCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13382_to = private unnamed_addr constant [34 x i8] c"androidx/core/os/UserHandleCompat\00", align 1 +@.TypeMapEntry.13383_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.OS.UserManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13384_to = private unnamed_addr constant [35 x i8] c"androidx/core/os/UserManagerCompat\00", align 1 +@.TypeMapEntry.13385_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.Provider.DocumentsContractCompat+DocumentCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13386_to = private unnamed_addr constant [62 x i8] c"androidx/core/provider/DocumentsContractCompat$DocumentCompat\00", align 1 +@.TypeMapEntry.13387_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Provider.DocumentsContractCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13388_to = private unnamed_addr constant [47 x i8] c"androidx/core/provider/DocumentsContractCompat\00", align 1 +@.TypeMapEntry.13389_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Provider.FontRequest, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13390_to = private unnamed_addr constant [35 x i8] c"androidx/core/provider/FontRequest\00", align 1 +@.TypeMapEntry.13391_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Provider.FontsContractCompat+Columns, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13392_to = private unnamed_addr constant [51 x i8] c"androidx/core/provider/FontsContractCompat$Columns\00", align 1 +@.TypeMapEntry.13393_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Provider.FontsContractCompat+FontFamilyResult, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13394_to = private unnamed_addr constant [60 x i8] c"androidx/core/provider/FontsContractCompat$FontFamilyResult\00", align 1 +@.TypeMapEntry.13395_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Provider.FontsContractCompat+FontInfo, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13396_to = private unnamed_addr constant [52 x i8] c"androidx/core/provider/FontsContractCompat$FontInfo\00", align 1 +@.TypeMapEntry.13397_from = private unnamed_addr constant [109 x i8] c"AndroidX.Core.Provider.FontsContractCompat+FontRequestCallback+IFontRequestFailReason, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13398_to = private unnamed_addr constant [85 x i8] c"androidx/core/provider/FontsContractCompat$FontRequestCallback$FontRequestFailReason\00", align 1 +@.TypeMapEntry.13399_from = private unnamed_addr constant [116 x i8] c"AndroidX.Core.Provider.FontsContractCompat+FontRequestCallback+IFontRequestFailReasonInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13400_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.Provider.FontsContractCompat+FontRequestCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13401_to = private unnamed_addr constant [63 x i8] c"androidx/core/provider/FontsContractCompat$FontRequestCallback\00", align 1 +@.TypeMapEntry.13402_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Provider.FontsContractCompat+ITypefaceStyle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13403_to = private unnamed_addr constant [57 x i8] c"androidx/core/provider/FontsContractCompat$TypefaceStyle\00", align 1 +@.TypeMapEntry.13404_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.Provider.FontsContractCompat+ITypefaceStyleInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13405_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Provider.FontsContractCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13406_to = private unnamed_addr constant [43 x i8] c"androidx/core/provider/FontsContractCompat\00", align 1 +@.TypeMapEntry.13407_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.Provider.SelfDestructiveThread+IReplyCallback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13408_to = private unnamed_addr constant [59 x i8] c"androidx/core/provider/SelfDestructiveThread$ReplyCallback\00", align 1 +@.TypeMapEntry.13409_from = private unnamed_addr constant [90 x i8] c"AndroidX.Core.Provider.SelfDestructiveThread+IReplyCallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13410_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Provider.SelfDestructiveThread, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13411_to = private unnamed_addr constant [45 x i8] c"androidx/core/provider/SelfDestructiveThread\00", align 1 +@.TypeMapEntry.13412_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.Service.QuickSettings.PendingIntentActivityWrapper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13413_to = private unnamed_addr constant [65 x i8] c"androidx/core/service/quicksettings/PendingIntentActivityWrapper\00", align 1 +@.TypeMapEntry.13414_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Service.QuickSettings.TileServiceCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13415_to = private unnamed_addr constant [54 x i8] c"androidx/core/service/quicksettings/TileServiceCompat\00", align 1 +@.TypeMapEntry.13416_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.Telephony.Mbms.MbmsHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13417_to = private unnamed_addr constant [40 x i8] c"androidx/core/telephony/mbms/MbmsHelper\00", align 1 +@.TypeMapEntry.13418_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.Telephony.SubscriptionManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13419_to = private unnamed_addr constant [50 x i8] c"androidx/core/telephony/SubscriptionManagerCompat\00", align 1 +@.TypeMapEntry.13420_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Telephony.TelephonyManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13421_to = private unnamed_addr constant [47 x i8] c"androidx/core/telephony/TelephonyManagerCompat\00", align 1 +@.TypeMapEntry.13422_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Text.BidiFormatter+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13423_to = private unnamed_addr constant [41 x i8] c"androidx/core/text/BidiFormatter$Builder\00", align 1 +@.TypeMapEntry.13424_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Text.BidiFormatter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13425_to = private unnamed_addr constant [33 x i8] c"androidx/core/text/BidiFormatter\00", align 1 +@.TypeMapEntry.13426_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Text.CharSequenceKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13427_to = private unnamed_addr constant [34 x i8] c"androidx/core/text/CharSequenceKt\00", align 1 +@.TypeMapEntry.13428_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.Text.HtmlCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13429_to = private unnamed_addr constant [30 x i8] c"androidx/core/text/HtmlCompat\00", align 1 +@.TypeMapEntry.13430_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Text.HtmlKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13431_to = private unnamed_addr constant [26 x i8] c"androidx/core/text/HtmlKt\00", align 1 +@.TypeMapEntry.13432_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Text.ICUCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13433_to = private unnamed_addr constant [29 x i8] c"androidx/core/text/ICUCompat\00", align 1 +@.TypeMapEntry.13434_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Text.ITextDirectionHeuristicCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13435_to = private unnamed_addr constant [48 x i8] c"androidx/core/text/TextDirectionHeuristicCompat\00", align 1 +@.TypeMapEntry.13436_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Text.ITextDirectionHeuristicCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13437_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Text.LocaleKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13438_to = private unnamed_addr constant [28 x i8] c"androidx/core/text/LocaleKt\00", align 1 +@.TypeMapEntry.13439_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Text.Method.LinkMovementMethodCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13440_to = private unnamed_addr constant [51 x i8] c"androidx/core/text/method/LinkMovementMethodCompat\00", align 1 +@.TypeMapEntry.13441_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.Text.PrecomputedTextCompat+Params+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13442_to = private unnamed_addr constant [56 x i8] c"androidx/core/text/PrecomputedTextCompat$Params$Builder\00", align 1 +@.TypeMapEntry.13443_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Text.PrecomputedTextCompat+Params, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13444_to = private unnamed_addr constant [48 x i8] c"androidx/core/text/PrecomputedTextCompat$Params\00", align 1 +@.TypeMapEntry.13445_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Text.PrecomputedTextCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13446_to = private unnamed_addr constant [41 x i8] c"androidx/core/text/PrecomputedTextCompat\00", align 1 +@.TypeMapEntry.13447_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Text.SpannableStringBuilderKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13448_to = private unnamed_addr constant [44 x i8] c"androidx/core/text/SpannableStringBuilderKt\00", align 1 +@.TypeMapEntry.13449_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Text.SpannableStringKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13450_to = private unnamed_addr constant [37 x i8] c"androidx/core/text/SpannableStringKt\00", align 1 +@.TypeMapEntry.13451_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.Text.SpannedStringKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13452_to = private unnamed_addr constant [35 x i8] c"androidx/core/text/SpannedStringKt\00", align 1 +@.TypeMapEntry.13453_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Text.StringKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13454_to = private unnamed_addr constant [28 x i8] c"androidx/core/text/StringKt\00", align 1 +@.TypeMapEntry.13455_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.Text.TextDirectionHeuristicsCompat+TextDirectionHeuristicImpl, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13456_to = private unnamed_addr constant [76 x i8] c"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl\00", align 1 +@.TypeMapEntry.13457_from = private unnamed_addr constant [106 x i8] c"AndroidX.Core.Text.TextDirectionHeuristicsCompat+TextDirectionHeuristicImplInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13458_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Text.TextDirectionHeuristicsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13459_to = private unnamed_addr constant [49 x i8] c"androidx/core/text/TextDirectionHeuristicsCompat\00", align 1 +@.TypeMapEntry.13460_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Text.TextUtilsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13461_to = private unnamed_addr constant [35 x i8] c"androidx/core/text/TextUtilsCompat\00", align 1 +@.TypeMapEntry.13462_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.Text.Util.LinkifyCompat+ILinkifyMask, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13463_to = private unnamed_addr constant [50 x i8] c"androidx/core/text/util/LinkifyCompat$LinkifyMask\00", align 1 +@.TypeMapEntry.13464_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Text.Util.LinkifyCompat+ILinkifyMaskInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13465_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Text.Util.LinkifyCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13466_to = private unnamed_addr constant [38 x i8] c"androidx/core/text/util/LinkifyCompat\00", align 1 +@.TypeMapEntry.13467_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+CalendarType+ICalendarTypes, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13468_to = private unnamed_addr constant [69 x i8] c"androidx/core/text/util/LocalePreferences$CalendarType$CalendarTypes\00", align 1 +@.TypeMapEntry.13469_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+CalendarType+ICalendarTypesInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13470_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+CalendarType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13471_to = private unnamed_addr constant [55 x i8] c"androidx/core/text/util/LocalePreferences$CalendarType\00", align 1 +@.TypeMapEntry.13472_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+FirstDayOfWeek+IDays, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13473_to = private unnamed_addr constant [62 x i8] c"androidx/core/text/util/LocalePreferences$FirstDayOfWeek$Days\00", align 1 +@.TypeMapEntry.13474_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+FirstDayOfWeek+IDaysInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13475_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+FirstDayOfWeek, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13476_to = private unnamed_addr constant [57 x i8] c"androidx/core/text/util/LocalePreferences$FirstDayOfWeek\00", align 1 +@.TypeMapEntry.13477_from = private unnamed_addr constant [91 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+HourCycle+IHourCycleTypes, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13478_to = private unnamed_addr constant [67 x i8] c"androidx/core/text/util/LocalePreferences$HourCycle$HourCycleTypes\00", align 1 +@.TypeMapEntry.13479_from = private unnamed_addr constant [98 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+HourCycle+IHourCycleTypesInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13480_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+HourCycle, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13481_to = private unnamed_addr constant [52 x i8] c"androidx/core/text/util/LocalePreferences$HourCycle\00", align 1 +@.TypeMapEntry.13482_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+TemperatureUnit+ITemperatureUnits, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13483_to = private unnamed_addr constant [75 x i8] c"androidx/core/text/util/LocalePreferences$TemperatureUnit$TemperatureUnits\00", align 1 +@.TypeMapEntry.13484_from = private unnamed_addr constant [106 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+TemperatureUnit+ITemperatureUnitsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13485_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Text.Util.LocalePreferences+TemperatureUnit, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13486_to = private unnamed_addr constant [58 x i8] c"androidx/core/text/util/LocalePreferences$TemperatureUnit\00", align 1 +@.TypeMapEntry.13487_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Text.Util.LocalePreferences, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13488_to = private unnamed_addr constant [42 x i8] c"androidx/core/text/util/LocalePreferences\00", align 1 +@.TypeMapEntry.13489_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Transition.TransitionKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13490_to = private unnamed_addr constant [38 x i8] c"androidx/core/transition/TransitionKt\00", align 1 +@.TypeMapEntry.13491_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Util.AndroidXConsumerKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13492_to = private unnamed_addr constant [38 x i8] c"androidx/core/util/AndroidXConsumerKt\00", align 1 +@.TypeMapEntry.13493_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.Util.AtomicFile, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13494_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/AtomicFile\00", align 1 +@.TypeMapEntry.13495_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Util.AtomicFileKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13496_to = private unnamed_addr constant [32 x i8] c"androidx/core/util/AtomicFileKt\00", align 1 +@.TypeMapEntry.13497_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Util.ConsumerKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13498_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/ConsumerKt\00", align 1 +@.TypeMapEntry.13499_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.Util.DebugUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13500_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/DebugUtils\00", align 1 +@.TypeMapEntry.13501_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Util.HalfKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13502_to = private unnamed_addr constant [26 x i8] c"androidx/core/util/HalfKt\00", align 1 +@.TypeMapEntry.13503_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.IConsumer, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13504_to = private unnamed_addr constant [28 x i8] c"androidx/core/util/Consumer\00", align 1 +@.TypeMapEntry.13505_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.IConsumerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13506_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.IFunction, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13507_to = private unnamed_addr constant [28 x i8] c"androidx/core/util/Function\00", align 1 +@.TypeMapEntry.13508_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.IFunctionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13509_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.Util.IPredicate, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13510_to = private unnamed_addr constant [29 x i8] c"androidx/core/util/Predicate\00", align 1 +@.TypeMapEntry.13511_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Util.IPredicateInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13512_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.ISupplier, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13513_to = private unnamed_addr constant [28 x i8] c"androidx/core/util/Supplier\00", align 1 +@.TypeMapEntry.13514_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.ISupplierInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13515_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.LogWriter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13516_to = private unnamed_addr constant [29 x i8] c"androidx/core/util/LogWriter\00", align 1 +@.TypeMapEntry.13517_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Util.LongSparseArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13518_to = private unnamed_addr constant [37 x i8] c"androidx/core/util/LongSparseArrayKt\00", align 1 +@.TypeMapEntry.13519_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Util.LruCacheKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13520_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/LruCacheKt\00", align 1 +@.TypeMapEntry.13521_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Util.ObjectsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13522_to = private unnamed_addr constant [33 x i8] c"androidx/core/util/ObjectsCompat\00", align 1 +@.TypeMapEntry.13523_from = private unnamed_addr constant [47 x i8] c"AndroidX.Core.Util.Pair, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13524_to = private unnamed_addr constant [24 x i8] c"androidx/core/util/Pair\00", align 1 +@.TypeMapEntry.13525_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Util.PairKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13526_to = private unnamed_addr constant [26 x i8] c"androidx/core/util/PairKt\00", align 1 +@.TypeMapEntry.13527_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.Util.PatternsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13528_to = private unnamed_addr constant [34 x i8] c"androidx/core/util/PatternsCompat\00", align 1 +@.TypeMapEntry.13529_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.Util.Pools+IPool, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13530_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/Pools$Pool\00", align 1 +@.TypeMapEntry.13531_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Util.Pools+IPoolInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13532_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.Pools+SimplePool, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13533_to = private unnamed_addr constant [36 x i8] c"androidx/core/util/Pools$SimplePool\00", align 1 +@.TypeMapEntry.13534_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Util.Pools+SynchronizedPool, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13535_to = private unnamed_addr constant [42 x i8] c"androidx/core/util/Pools$SynchronizedPool\00", align 1 +@.TypeMapEntry.13536_from = private unnamed_addr constant [48 x i8] c"AndroidX.Core.Util.Pools, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13537_to = private unnamed_addr constant [25 x i8] c"androidx/core/util/Pools\00", align 1 +@.TypeMapEntry.13538_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.Util.Preconditions, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13539_to = private unnamed_addr constant [33 x i8] c"androidx/core/util/Preconditions\00", align 1 +@.TypeMapEntry.13540_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.Predicate, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13541_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Util.PredicateConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13542_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.RangeKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13543_to = private unnamed_addr constant [27 x i8] c"androidx/core/util/RangeKt\00", align 1 +@.TypeMapEntry.13544_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Util.RunnableKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13545_to = private unnamed_addr constant [30 x i8] c"androidx/core/util/RunnableKt\00", align 1 +@.TypeMapEntry.13546_from = private unnamed_addr constant [54 x i8] c"AndroidX.Core.Util.SizeFCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13547_to = private unnamed_addr constant [31 x i8] c"androidx/core/util/SizeFCompat\00", align 1 +@.TypeMapEntry.13548_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.Util.SizeKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13549_to = private unnamed_addr constant [26 x i8] c"androidx/core/util/SizeKt\00", align 1 +@.TypeMapEntry.13550_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Util.SparseArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13551_to = private unnamed_addr constant [33 x i8] c"androidx/core/util/SparseArrayKt\00", align 1 +@.TypeMapEntry.13552_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.Util.SparseBooleanArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13553_to = private unnamed_addr constant [40 x i8] c"androidx/core/util/SparseBooleanArrayKt\00", align 1 +@.TypeMapEntry.13554_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Util.SparseIntArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13555_to = private unnamed_addr constant [36 x i8] c"androidx/core/util/SparseIntArrayKt\00", align 1 +@.TypeMapEntry.13556_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Util.SparseLongArrayKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13557_to = private unnamed_addr constant [37 x i8] c"androidx/core/util/SparseLongArrayKt\00", align 1 +@.TypeMapEntry.13558_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.Util.TimeUtils, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13559_to = private unnamed_addr constant [29 x i8] c"androidx/core/util/TimeUtils\00", align 1 +@.TypeMapEntry.13560_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.Util.TypedValueCompat+IComplexDimensionUnit, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13561_to = private unnamed_addr constant [57 x i8] c"androidx/core/util/TypedValueCompat$ComplexDimensionUnit\00", align 1 +@.TypeMapEntry.13562_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.Util.TypedValueCompat+IComplexDimensionUnitInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13563_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Util.TypedValueCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13564_to = private unnamed_addr constant [36 x i8] c"androidx/core/util/TypedValueCompat\00", align 1 +@.TypeMapEntry.13565_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityClickableSpanCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13566_to = private unnamed_addr constant [66 x i8] c"androidx/core/view/accessibility/AccessibilityClickableSpanCompat\00", align 1 +@.TypeMapEntry.13567_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityEventCompat+IContentChangeType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13568_to = private unnamed_addr constant [76 x i8] c"androidx/core/view/accessibility/AccessibilityEventCompat$ContentChangeType\00", align 1 +@.TypeMapEntry.13569_from = private unnamed_addr constant [107 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityEventCompat+IContentChangeTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13570_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityEventCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13571_to = private unnamed_addr constant [58 x i8] c"androidx/core/view/accessibility/AccessibilityEventCompat\00", align 1 +@.TypeMapEntry.13572_from = private unnamed_addr constant [122 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+AccessibilityStateChangeListenerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13573_to = private unnamed_addr constant [99 x i8] c"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat\00", align 1 +@.TypeMapEntry.13574_from = private unnamed_addr constant [129 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+AccessibilityStateChangeListenerCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13575_from = private unnamed_addr constant [117 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13576_to = private unnamed_addr constant [93 x i8] c"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListener\00", align 1 +@.TypeMapEntry.13577_from = private unnamed_addr constant [128 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13578_to = private unnamed_addr constant [109 x i8] c"mono/androidx/core/view/accessibility/AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.13579_from = private unnamed_addr constant [124 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+IAccessibilityStateChangeListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13580_from = private unnamed_addr constant [120 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13581_to = private unnamed_addr constant [96 x i8] c"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListener\00", align 1 +@.TypeMapEntry.13582_from = private unnamed_addr constant [131 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13583_to = private unnamed_addr constant [112 x i8] c"mono/androidx/core/view/accessibility/AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.13584_from = private unnamed_addr constant [127 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat+ITouchExplorationStateChangeListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13585_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityManagerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13586_to = private unnamed_addr constant [60 x i8] c"androidx/core/view/accessibility/AccessibilityManagerCompat\00", align 1 +@.TypeMapEntry.13587_from = private unnamed_addr constant [110 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+AccessibilityActionCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13588_to = private unnamed_addr constant [87 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$AccessibilityActionCompat\00", align 1 +@.TypeMapEntry.13589_from = private unnamed_addr constant [113 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+CollectionInfoCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13590_to = private unnamed_addr constant [90 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat$Builder\00", align 1 +@.TypeMapEntry.13591_from = private unnamed_addr constant [105 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+CollectionInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13592_to = private unnamed_addr constant [82 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat\00", align 1 +@.TypeMapEntry.13593_from = private unnamed_addr constant [117 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+CollectionItemInfoCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13594_to = private unnamed_addr constant [94 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat$Builder\00", align 1 +@.TypeMapEntry.13595_from = private unnamed_addr constant [109 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+CollectionItemInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13596_to = private unnamed_addr constant [86 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat\00", align 1 +@.TypeMapEntry.13597_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+RangeInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13598_to = private unnamed_addr constant [77 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$RangeInfoCompat\00", align 1 +@.TypeMapEntry.13599_from = private unnamed_addr constant [108 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat+TouchDelegateInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13600_to = private unnamed_addr constant [85 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$TouchDelegateInfoCompat\00", align 1 +@.TypeMapEntry.13601_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13602_to = private unnamed_addr constant [61 x i8] c"androidx/core/view/accessibility/AccessibilityNodeInfoCompat\00", align 1 +@.TypeMapEntry.13603_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityNodeProviderCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13604_to = private unnamed_addr constant [65 x i8] c"androidx/core/view/accessibility/AccessibilityNodeProviderCompat\00", align 1 +@.TypeMapEntry.13605_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityRecordCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13606_to = private unnamed_addr constant [59 x i8] c"androidx/core/view/accessibility/AccessibilityRecordCompat\00", align 1 +@.TypeMapEntry.13607_from = private unnamed_addr constant [97 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandCommandArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13608_to = private unnamed_addr constant [75 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$CommandArguments\00", align 1 +@.TypeMapEntry.13609_from = private unnamed_addr constant [104 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandCommandArgumentsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13610_from = private unnamed_addr constant [107 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandMoveAtGranularityArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13611_to = private unnamed_addr constant [85 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$MoveAtGranularityArguments\00", align 1 +@.TypeMapEntry.13612_from = private unnamed_addr constant [98 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandMoveHtmlArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13613_to = private unnamed_addr constant [76 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$MoveHtmlArguments\00", align 1 +@.TypeMapEntry.13614_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandMoveWindowArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13615_to = private unnamed_addr constant [78 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$MoveWindowArguments\00", align 1 +@.TypeMapEntry.13616_from = private unnamed_addr constant [106 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandScrollToPositionArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13617_to = private unnamed_addr constant [84 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$ScrollToPositionArguments\00", align 1 +@.TypeMapEntry.13618_from = private unnamed_addr constant [101 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandSetProgressArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13619_to = private unnamed_addr constant [79 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$SetProgressArguments\00", align 1 +@.TypeMapEntry.13620_from = private unnamed_addr constant [102 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandSetSelectionArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13621_to = private unnamed_addr constant [80 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$SetSelectionArguments\00", align 1 +@.TypeMapEntry.13622_from = private unnamed_addr constant [97 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityViewCommandSetTextArguments, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13623_to = private unnamed_addr constant [75 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand$SetTextArguments\00", align 1 +@.TypeMapEntry.13624_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.View.Accessibility.AccessibilityWindowInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13625_to = private unnamed_addr constant [63 x i8] c"androidx/core/view/accessibility/AccessibilityWindowInfoCompat\00", align 1 +@.TypeMapEntry.13626_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.View.Accessibility.IAccessibilityViewCommand, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13627_to = private unnamed_addr constant [58 x i8] c"androidx/core/view/accessibility/AccessibilityViewCommand\00", align 1 +@.TypeMapEntry.13628_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.View.Accessibility.IAccessibilityViewCommandInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13629_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.View.AccessibilityDelegateCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13630_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/AccessibilityDelegateCompat\00", align 1 +@.TypeMapEntry.13631_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.View.ActionProvider+ISubUiVisibilityListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13632_to = private unnamed_addr constant [58 x i8] c"androidx/core/view/ActionProvider$SubUiVisibilityListener\00", align 1 +@.TypeMapEntry.13633_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13634_to = private unnamed_addr constant [74 x i8] c"mono/androidx/core/view/ActionProvider_SubUiVisibilityListenerImplementor\00", align 1 +@.TypeMapEntry.13635_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.View.ActionProvider+ISubUiVisibilityListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13636_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.View.ActionProvider+IVisibilityListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13637_to = private unnamed_addr constant [53 x i8] c"androidx/core/view/ActionProvider$VisibilityListener\00", align 1 +@.TypeMapEntry.13638_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13639_to = private unnamed_addr constant [69 x i8] c"mono/androidx/core/view/ActionProvider_VisibilityListenerImplementor\00", align 1 +@.TypeMapEntry.13640_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.View.ActionProvider+IVisibilityListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13641_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.View.ActionProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13642_to = private unnamed_addr constant [34 x i8] c"androidx/core/view/ActionProvider\00", align 1 +@.TypeMapEntry.13643_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.View.ActionProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13644_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.View.Animation.PathInterpolatorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13645_to = private unnamed_addr constant [52 x i8] c"androidx/core/view/animation/PathInterpolatorCompat\00", align 1 +@.TypeMapEntry.13646_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.View.AutoFill.AutofillIdCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13647_to = private unnamed_addr constant [45 x i8] c"androidx/core/view/autofill/AutofillIdCompat\00", align 1 +@.TypeMapEntry.13648_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.View.ContentCapture.ContentCaptureSessionCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13649_to = private unnamed_addr constant [62 x i8] c"androidx/core/view/contentcapture/ContentCaptureSessionCompat\00", align 1 +@.TypeMapEntry.13650_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.View.ContentInfoCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13651_to = private unnamed_addr constant [45 x i8] c"androidx/core/view/ContentInfoCompat$Builder\00", align 1 +@.TypeMapEntry.13652_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.View.ContentInfoCompat+IFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13653_to = private unnamed_addr constant [43 x i8] c"androidx/core/view/ContentInfoCompat$Flags\00", align 1 +@.TypeMapEntry.13654_from = private unnamed_addr constant [74 x i8] c"AndroidX.Core.View.ContentInfoCompat+IFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13655_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.View.ContentInfoCompat+ISource, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13656_to = private unnamed_addr constant [44 x i8] c"androidx/core/view/ContentInfoCompat$Source\00", align 1 +@.TypeMapEntry.13657_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.View.ContentInfoCompat+ISourceInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13658_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.View.ContentInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13659_to = private unnamed_addr constant [37 x i8] c"androidx/core/view/ContentInfoCompat\00", align 1 +@.TypeMapEntry.13660_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.View.DifferentialMotionFlingController, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13661_to = private unnamed_addr constant [53 x i8] c"androidx/core/view/DifferentialMotionFlingController\00", align 1 +@.TypeMapEntry.13662_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.View.DisplayCompat+ModeCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13663_to = private unnamed_addr constant [44 x i8] c"androidx/core/view/DisplayCompat$ModeCompat\00", align 1 +@.TypeMapEntry.13664_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.View.DisplayCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13665_to = private unnamed_addr constant [33 x i8] c"androidx/core/view/DisplayCompat\00", align 1 +@.TypeMapEntry.13666_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.View.DisplayCutoutCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13667_to = private unnamed_addr constant [39 x i8] c"androidx/core/view/DisplayCutoutCompat\00", align 1 +@.TypeMapEntry.13668_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.DragAndDropPermissionsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13669_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/DragAndDropPermissionsCompat\00", align 1 +@.TypeMapEntry.13670_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.DragStartHelper+IOnDragStartListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13671_to = private unnamed_addr constant [55 x i8] c"androidx/core/view/DragStartHelper$OnDragStartListener\00", align 1 +@.TypeMapEntry.13672_from = private unnamed_addr constant [90 x i8] c"AndroidX.Core.View.DragStartHelper+IOnDragStartListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13673_to = private unnamed_addr constant [71 x i8] c"mono/androidx/core/view/DragStartHelper_OnDragStartListenerImplementor\00", align 1 +@.TypeMapEntry.13674_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.View.DragStartHelper+IOnDragStartListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13675_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.View.DragStartHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13676_to = private unnamed_addr constant [35 x i8] c"androidx/core/view/DragStartHelper\00", align 1 +@.TypeMapEntry.13677_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.View.GestureDetectorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13678_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/GestureDetectorCompat\00", align 1 +@.TypeMapEntry.13679_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.View.GravityCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13680_to = private unnamed_addr constant [33 x i8] c"androidx/core/view/GravityCompat\00", align 1 +@.TypeMapEntry.13681_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackFlags, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13682_to = private unnamed_addr constant [69 x i8] c"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackFlags\00", align 1 +@.TypeMapEntry.13683_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackFlagsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13684_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13685_to = private unnamed_addr constant [68 x i8] c"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackType\00", align 1 +@.TypeMapEntry.13686_from = private unnamed_addr constant [99 x i8] c"AndroidX.Core.View.HapticFeedbackConstantsCompat+IHapticFeedbackTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13687_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.HapticFeedbackConstantsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13688_to = private unnamed_addr constant [49 x i8] c"androidx/core/view/HapticFeedbackConstantsCompat\00", align 1 +@.TypeMapEntry.13689_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.View.IDifferentialMotionFlingTarget, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13690_to = private unnamed_addr constant [49 x i8] c"androidx/core/view/DifferentialMotionFlingTarget\00", align 1 +@.TypeMapEntry.13691_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.View.IDifferentialMotionFlingTargetInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13692_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.ILayoutInflaterFactory, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13693_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/LayoutInflaterFactory\00", align 1 +@.TypeMapEntry.13694_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.ILayoutInflaterFactoryInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13695_from = private unnamed_addr constant [52 x i8] c"AndroidX.Core.View.IMenuHost, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13696_to = private unnamed_addr constant [28 x i8] c"androidx/core/view/MenuHost\00", align 1 +@.TypeMapEntry.13697_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.View.IMenuHostInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13698_from = private unnamed_addr constant [56 x i8] c"AndroidX.Core.View.IMenuProvider, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13699_to = private unnamed_addr constant [32 x i8] c"androidx/core/view/MenuProvider\00", align 1 +@.TypeMapEntry.13700_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.View.IMenuProviderInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13701_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.View.INestedScrollingChild, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13702_to = private unnamed_addr constant [40 x i8] c"androidx/core/view/NestedScrollingChild\00", align 1 +@.TypeMapEntry.13703_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.INestedScrollingChild2, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13704_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/NestedScrollingChild2\00", align 1 +@.TypeMapEntry.13705_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.INestedScrollingChild2Invoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13706_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.INestedScrollingChild3, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13707_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/NestedScrollingChild3\00", align 1 +@.TypeMapEntry.13708_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.INestedScrollingChild3Invoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13709_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.INestedScrollingChildInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13710_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.INestedScrollingParent, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13711_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/NestedScrollingParent\00", align 1 +@.TypeMapEntry.13712_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.INestedScrollingParent2, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13713_to = private unnamed_addr constant [42 x i8] c"androidx/core/view/NestedScrollingParent2\00", align 1 +@.TypeMapEntry.13714_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.View.INestedScrollingParent2Invoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13715_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.INestedScrollingParent3, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13716_to = private unnamed_addr constant [42 x i8] c"androidx/core/view/NestedScrollingParent3\00", align 1 +@.TypeMapEntry.13717_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.View.INestedScrollingParent3Invoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13718_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.INestedScrollingParentInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13719_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.IOnApplyWindowInsetsListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13720_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/OnApplyWindowInsetsListener\00", align 1 +@.TypeMapEntry.13721_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13722_to = private unnamed_addr constant [63 x i8] c"mono/androidx/core/view/OnApplyWindowInsetsListenerImplementor\00", align 1 +@.TypeMapEntry.13723_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.IOnApplyWindowInsetsListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13724_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.View.IOnReceiveContentListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13725_to = private unnamed_addr constant [44 x i8] c"androidx/core/view/OnReceiveContentListener\00", align 1 +@.TypeMapEntry.13726_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.IOnReceiveContentListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13727_to = private unnamed_addr constant [60 x i8] c"mono/androidx/core/view/OnReceiveContentListenerImplementor\00", align 1 +@.TypeMapEntry.13728_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.View.IOnReceiveContentListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13729_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.IOnReceiveContentViewBehavior, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13730_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/OnReceiveContentViewBehavior\00", align 1 +@.TypeMapEntry.13731_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.IOnReceiveContentViewBehaviorInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13732_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.View.IScrollingView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13733_to = private unnamed_addr constant [33 x i8] c"androidx/core/view/ScrollingView\00", align 1 +@.TypeMapEntry.13734_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.View.IScrollingViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13735_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.ITintableBackgroundView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13736_to = private unnamed_addr constant [42 x i8] c"androidx/core/view/TintableBackgroundView\00", align 1 +@.TypeMapEntry.13737_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.View.ITintableBackgroundViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13738_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13739_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/ViewPropertyAnimatorListener\00", align 1 +@.TypeMapEntry.13740_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13741_to = private unnamed_addr constant [64 x i8] c"mono/androidx/core/view/ViewPropertyAnimatorListenerImplementor\00", align 1 +@.TypeMapEntry.13742_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13743_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorUpdateListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13744_to = private unnamed_addr constant [54 x i8] c"androidx/core/view/ViewPropertyAnimatorUpdateListener\00", align 1 +@.TypeMapEntry.13745_from = private unnamed_addr constant [89 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13746_to = private unnamed_addr constant [70 x i8] c"mono/androidx/core/view/ViewPropertyAnimatorUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.13747_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.View.IViewPropertyAnimatorUpdateListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13748_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.View.IWindowInsetsAnimationControlListenerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13749_to = private unnamed_addr constant [62 x i8] c"androidx/core/view/WindowInsetsAnimationControlListenerCompat\00", align 1 +@.TypeMapEntry.13750_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.View.IWindowInsetsAnimationControlListenerCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13751_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.View.InputDeviceCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13752_to = private unnamed_addr constant [37 x i8] c"androidx/core/view/InputDeviceCompat\00", align 1 +@.TypeMapEntry.13753_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.InputMethod.EditorInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13754_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/inputmethod/EditorInfoCompat\00", align 1 +@.TypeMapEntry.13755_from = private unnamed_addr constant [101 x i8] c"AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13756_to = private unnamed_addr constant [77 x i8] c"androidx/core/view/inputmethod/InputConnectionCompat$OnCommitContentListener\00", align 1 +@.TypeMapEntry.13757_from = private unnamed_addr constant [112 x i8] c"AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13758_to = private unnamed_addr constant [93 x i8] c"mono/androidx/core/view/inputmethod/InputConnectionCompat_OnCommitContentListenerImplementor\00", align 1 +@.TypeMapEntry.13759_from = private unnamed_addr constant [108 x i8] c"AndroidX.Core.View.InputMethod.InputConnectionCompat+IOnCommitContentListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13760_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.View.InputMethod.InputConnectionCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13761_to = private unnamed_addr constant [53 x i8] c"androidx/core/view/inputmethod/InputConnectionCompat\00", align 1 +@.TypeMapEntry.13762_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.View.InputMethod.InputContentInfoCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13763_to = private unnamed_addr constant [54 x i8] c"androidx/core/view/inputmethod/InputContentInfoCompat\00", align 1 +@.TypeMapEntry.13764_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.Insets.ColorProtection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13765_to = private unnamed_addr constant [42 x i8] c"androidx/core/view/insets/ColorProtection\00", align 1 +@.TypeMapEntry.13766_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.View.Insets.GradientProtection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13767_to = private unnamed_addr constant [45 x i8] c"androidx/core/view/insets/GradientProtection\00", align 1 +@.TypeMapEntry.13768_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.View.Insets.Protection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13769_to = private unnamed_addr constant [37 x i8] c"androidx/core/view/insets/Protection\00", align 1 +@.TypeMapEntry.13770_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.View.Insets.ProtectionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13771_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.Insets.ProtectionLayout, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13772_to = private unnamed_addr constant [43 x i8] c"androidx/core/view/insets/ProtectionLayout\00", align 1 +@.TypeMapEntry.13773_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.KeyEventDispatcher+IComponent, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13774_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/KeyEventDispatcher$Component\00", align 1 +@.TypeMapEntry.13775_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.KeyEventDispatcher+IComponentInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13776_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.View.KeyEventDispatcher, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13777_to = private unnamed_addr constant [38 x i8] c"androidx/core/view/KeyEventDispatcher\00", align 1 +@.TypeMapEntry.13778_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.View.LayoutInflaterCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13779_to = private unnamed_addr constant [40 x i8] c"androidx/core/view/LayoutInflaterCompat\00", align 1 +@.TypeMapEntry.13780_from = private unnamed_addr constant [67 x i8] c"AndroidX.Core.View.MarginLayoutParamsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13781_to = private unnamed_addr constant [44 x i8] c"androidx/core/view/MarginLayoutParamsCompat\00", align 1 +@.TypeMapEntry.13782_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.View.MenuCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13783_to = private unnamed_addr constant [30 x i8] c"androidx/core/view/MenuCompat\00", align 1 +@.TypeMapEntry.13784_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.View.MenuHostHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13785_to = private unnamed_addr constant [34 x i8] c"androidx/core/view/MenuHostHelper\00", align 1 +@.TypeMapEntry.13786_from = private unnamed_addr constant [81 x i8] c"AndroidX.Core.View.MenuItemCompat+IOnActionExpandListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13787_to = private unnamed_addr constant [57 x i8] c"androidx/core/view/MenuItemCompat$OnActionExpandListener\00", align 1 +@.TypeMapEntry.13788_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13789_to = private unnamed_addr constant [73 x i8] c"mono/androidx/core/view/MenuItemCompat_OnActionExpandListenerImplementor\00", align 1 +@.TypeMapEntry.13790_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.View.MenuItemCompat+IOnActionExpandListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13791_from = private unnamed_addr constant [57 x i8] c"AndroidX.Core.View.MenuItemCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13792_to = private unnamed_addr constant [34 x i8] c"androidx/core/view/MenuItemCompat\00", align 1 +@.TypeMapEntry.13793_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.View.MenuKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13794_to = private unnamed_addr constant [26 x i8] c"androidx/core/view/MenuKt\00", align 1 +@.TypeMapEntry.13795_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.View.MotionEventCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13796_to = private unnamed_addr constant [37 x i8] c"androidx/core/view/MotionEventCompat\00", align 1 +@.TypeMapEntry.13797_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.View.NestedScrollingChildHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13798_to = private unnamed_addr constant [46 x i8] c"androidx/core/view/NestedScrollingChildHelper\00", align 1 +@.TypeMapEntry.13799_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.View.NestedScrollingParentHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13800_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/NestedScrollingParentHelper\00", align 1 +@.TypeMapEntry.13801_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.OneShotPreDrawListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13802_to = private unnamed_addr constant [42 x i8] c"androidx/core/view/OneShotPreDrawListener\00", align 1 +@.TypeMapEntry.13803_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.View.PointerIconCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13804_to = private unnamed_addr constant [37 x i8] c"androidx/core/view/PointerIconCompat\00", align 1 +@.TypeMapEntry.13805_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.View.ScaleGestureDetectorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13806_to = private unnamed_addr constant [46 x i8] c"androidx/core/view/ScaleGestureDetectorCompat\00", align 1 +@.TypeMapEntry.13807_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.ScrollFeedbackProviderCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13808_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/ScrollFeedbackProviderCompat\00", align 1 +@.TypeMapEntry.13809_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.View.SoftwareKeyboardControllerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13810_to = private unnamed_addr constant [52 x i8] c"androidx/core/view/SoftwareKeyboardControllerCompat\00", align 1 +@.TypeMapEntry.13811_from = private unnamed_addr constant [98 x i8] c"AndroidX.Core.View.VelocityTrackerCompat+IVelocityTrackableMotionEventAxis, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13812_to = private unnamed_addr constant [74 x i8] c"androidx/core/view/VelocityTrackerCompat$VelocityTrackableMotionEventAxis\00", align 1 +@.TypeMapEntry.13813_from = private unnamed_addr constant [105 x i8] c"AndroidX.Core.View.VelocityTrackerCompat+IVelocityTrackableMotionEventAxisInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13814_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.View.VelocityTrackerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13815_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/VelocityTrackerCompat\00", align 1 +@.TypeMapEntry.13816_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.View.ViewCompat+IFocusDirection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13817_to = private unnamed_addr constant [45 x i8] c"androidx/core/view/ViewCompat$FocusDirection\00", align 1 +@.TypeMapEntry.13818_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.View.ViewCompat+IFocusDirectionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13819_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.View.ViewCompat+IFocusRealDirection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13820_to = private unnamed_addr constant [49 x i8] c"androidx/core/view/ViewCompat$FocusRealDirection\00", align 1 +@.TypeMapEntry.13821_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.View.ViewCompat+IFocusRealDirectionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13822_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.View.ViewCompat+IFocusRelativeDirection, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13823_to = private unnamed_addr constant [53 x i8] c"androidx/core/view/ViewCompat$FocusRelativeDirection\00", align 1 +@.TypeMapEntry.13824_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.View.ViewCompat+IFocusRelativeDirectionInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13825_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.ViewCompat+INestedScrollType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13826_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/ViewCompat$NestedScrollType\00", align 1 +@.TypeMapEntry.13827_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.ViewCompat+INestedScrollTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13828_from = private unnamed_addr constant [88 x i8] c"AndroidX.Core.View.ViewCompat+IOnUnhandledKeyEventListenerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13829_to = private unnamed_addr constant [64 x i8] c"androidx/core/view/ViewCompat$OnUnhandledKeyEventListenerCompat\00", align 1 +@.TypeMapEntry.13830_from = private unnamed_addr constant [95 x i8] c"AndroidX.Core.View.ViewCompat+IOnUnhandledKeyEventListenerCompatInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13831_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.View.ViewCompat+IScrollAxis, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13832_to = private unnamed_addr constant [41 x i8] c"androidx/core/view/ViewCompat$ScrollAxis\00", align 1 +@.TypeMapEntry.13833_from = private unnamed_addr constant [72 x i8] c"AndroidX.Core.View.ViewCompat+IScrollAxisInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13834_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.ViewCompat+IScrollIndicators, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13835_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/ViewCompat$ScrollIndicators\00", align 1 +@.TypeMapEntry.13836_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.ViewCompat+IScrollIndicatorsInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13837_from = private unnamed_addr constant [53 x i8] c"AndroidX.Core.View.ViewCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13838_to = private unnamed_addr constant [30 x i8] c"androidx/core/view/ViewCompat\00", align 1 +@.TypeMapEntry.13839_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.ViewConfigurationCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13840_to = private unnamed_addr constant [43 x i8] c"androidx/core/view/ViewConfigurationCompat\00", align 1 +@.TypeMapEntry.13841_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.View.ViewGroupCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13842_to = private unnamed_addr constant [35 x i8] c"androidx/core/view/ViewGroupCompat\00", align 1 +@.TypeMapEntry.13843_from = private unnamed_addr constant [63 x i8] c"AndroidX.Core.View.ViewGroupKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13844_to = private unnamed_addr constant [31 x i8] c"androidx/core/view/ViewGroupKt\00", align 1 +@.TypeMapEntry.13845_from = private unnamed_addr constant [58 x i8] c"AndroidX.Core.View.ViewKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13846_to = private unnamed_addr constant [26 x i8] c"androidx/core/view/ViewKt\00", align 1 +@.TypeMapEntry.13847_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.View.ViewParentCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13848_to = private unnamed_addr constant [36 x i8] c"androidx/core/view/ViewParentCompat\00", align 1 +@.TypeMapEntry.13849_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.View.ViewPropertyAnimatorCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13850_to = private unnamed_addr constant [46 x i8] c"androidx/core/view/ViewPropertyAnimatorCompat\00", align 1 +@.TypeMapEntry.13851_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.ViewPropertyAnimatorListenerAdapter, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13852_to = private unnamed_addr constant [55 x i8] c"androidx/core/view/ViewPropertyAnimatorListenerAdapter\00", align 1 +@.TypeMapEntry.13853_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.View.ViewStructureCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13854_to = private unnamed_addr constant [39 x i8] c"androidx/core/view/ViewStructureCompat\00", align 1 +@.TypeMapEntry.13855_from = private unnamed_addr constant [55 x i8] c"AndroidX.Core.View.WindowCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13856_to = private unnamed_addr constant [32 x i8] c"androidx/core/view/WindowCompat\00", align 1 +@.TypeMapEntry.13857_from = private unnamed_addr constant [83 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat+BoundsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13858_to = private unnamed_addr constant [60 x i8] c"androidx/core/view/WindowInsetsAnimationCompat$BoundsCompat\00", align 1 +@.TypeMapEntry.13859_from = private unnamed_addr constant [93 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat+Callback+IDispatchMode, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13860_to = private unnamed_addr constant [69 x i8] c"androidx/core/view/WindowInsetsAnimationCompat$Callback$DispatchMode\00", align 1 +@.TypeMapEntry.13861_from = private unnamed_addr constant [100 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat+Callback+IDispatchModeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13862_from = private unnamed_addr constant [79 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat+Callback, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13863_to = private unnamed_addr constant [56 x i8] c"androidx/core/view/WindowInsetsAnimationCompat$Callback\00", align 1 +@.TypeMapEntry.13864_from = private unnamed_addr constant [86 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat+CallbackInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13865_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.View.WindowInsetsAnimationCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13866_to = private unnamed_addr constant [47 x i8] c"androidx/core/view/WindowInsetsAnimationCompat\00", align 1 +@.TypeMapEntry.13867_from = private unnamed_addr constant [80 x i8] c"AndroidX.Core.View.WindowInsetsAnimationControllerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13868_to = private unnamed_addr constant [57 x i8] c"androidx/core/view/WindowInsetsAnimationControllerCompat\00", align 1 +@.TypeMapEntry.13869_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Builder, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13870_to = private unnamed_addr constant [46 x i8] c"androidx/core/view/WindowInsetsCompat$Builder\00", align 1 +@.TypeMapEntry.13871_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Side+IInsetsSide, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13872_to = private unnamed_addr constant [54 x i8] c"androidx/core/view/WindowInsetsCompat$Side$InsetsSide\00", align 1 +@.TypeMapEntry.13873_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Side+IInsetsSideInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13874_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Side, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13875_to = private unnamed_addr constant [43 x i8] c"androidx/core/view/WindowInsetsCompat$Side\00", align 1 +@.TypeMapEntry.13876_from = private unnamed_addr constant [78 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Type+IInsetsType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13877_to = private unnamed_addr constant [54 x i8] c"androidx/core/view/WindowInsetsCompat$Type$InsetsType\00", align 1 +@.TypeMapEntry.13878_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Type+IInsetsTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13879_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.View.WindowInsetsCompat+Type, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13880_to = private unnamed_addr constant [43 x i8] c"androidx/core/view/WindowInsetsCompat$Type\00", align 1 +@.TypeMapEntry.13881_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.View.WindowInsetsCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13882_to = private unnamed_addr constant [38 x i8] c"androidx/core/view/WindowInsetsCompat\00", align 1 +@.TypeMapEntry.13883_from = private unnamed_addr constant [108 x i8] c"AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13884_to = private unnamed_addr constant [84 x i8] c"androidx/core/view/WindowInsetsControllerCompat$OnControllableInsetsChangedListener\00", align 1 +@.TypeMapEntry.13885_from = private unnamed_addr constant [119 x i8] c"AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13886_to = private unnamed_addr constant [100 x i8] c"mono/androidx/core/view/WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor\00", align 1 +@.TypeMapEntry.13887_from = private unnamed_addr constant [115 x i8] c"AndroidX.Core.View.WindowInsetsControllerCompat+IOnControllableInsetsChangedListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13888_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.View.WindowInsetsControllerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13889_to = private unnamed_addr constant [48 x i8] c"androidx/core/view/WindowInsetsControllerCompat\00", align 1 +@.TypeMapEntry.13890_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.ViewTree.ViewTree, Xamarin.AndroidX.Core.ViewTree\00", align 1 +@.TypeMapEntry.13891_to = private unnamed_addr constant [32 x i8] c"androidx/core/viewtree/ViewTree\00", align 1 +@.TypeMapEntry.13892_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Widget.AutoScrollHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13893_to = private unnamed_addr constant [38 x i8] c"androidx/core/widget/AutoScrollHelper\00", align 1 +@.TypeMapEntry.13894_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Widget.AutoScrollHelperInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13895_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Widget.AutoSizeableTextView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13896_to = private unnamed_addr constant [42 x i8] c"androidx/core/widget/AutoSizeableTextView\00", align 1 +@.TypeMapEntry.13897_from = private unnamed_addr constant [71 x i8] c"AndroidX.Core.Widget.AutoSizeableTextViewConsts, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13898_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Widget.CheckedTextViewCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13899_to = private unnamed_addr constant [43 x i8] c"androidx/core/widget/CheckedTextViewCompat\00", align 1 +@.TypeMapEntry.13900_from = private unnamed_addr constant [65 x i8] c"AndroidX.Core.Widget.CompoundButtonCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13901_to = private unnamed_addr constant [42 x i8] c"androidx/core/widget/CompoundButtonCompat\00", align 1 +@.TypeMapEntry.13902_from = private unnamed_addr constant [70 x i8] c"AndroidX.Core.Widget.ContentLoadingProgressBar, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13903_to = private unnamed_addr constant [47 x i8] c"androidx/core/widget/ContentLoadingProgressBar\00", align 1 +@.TypeMapEntry.13904_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Widget.EdgeEffectCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13905_to = private unnamed_addr constant [38 x i8] c"androidx/core/widget/EdgeEffectCompat\00", align 1 +@.TypeMapEntry.13906_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Widget.IAutoSizeableTextView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13907_from = private unnamed_addr constant [73 x i8] c"AndroidX.Core.Widget.IAutoSizeableTextViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13908_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Widget.ITintableCheckedTextView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13909_to = private unnamed_addr constant [45 x i8] c"androidx/core/widget/TintableCheckedTextView\00", align 1 +@.TypeMapEntry.13910_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Widget.ITintableCheckedTextViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13911_from = private unnamed_addr constant [68 x i8] c"AndroidX.Core.Widget.ITintableCompoundButton, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13912_to = private unnamed_addr constant [44 x i8] c"androidx/core/widget/TintableCompoundButton\00", align 1 +@.TypeMapEntry.13913_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Widget.ITintableCompoundButtonInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13914_from = private unnamed_addr constant [75 x i8] c"AndroidX.Core.Widget.ITintableCompoundDrawablesView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13915_to = private unnamed_addr constant [51 x i8] c"androidx/core/widget/TintableCompoundDrawablesView\00", align 1 +@.TypeMapEntry.13916_from = private unnamed_addr constant [82 x i8] c"AndroidX.Core.Widget.ITintableCompoundDrawablesViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13917_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Widget.ITintableImageSourceView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13918_to = private unnamed_addr constant [45 x i8] c"androidx/core/widget/TintableImageSourceView\00", align 1 +@.TypeMapEntry.13919_from = private unnamed_addr constant [76 x i8] c"AndroidX.Core.Widget.ITintableImageSourceViewInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13920_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Widget.ImageViewCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13921_to = private unnamed_addr constant [37 x i8] c"androidx/core/widget/ImageViewCompat\00", align 1 +@.TypeMapEntry.13922_from = private unnamed_addr constant [66 x i8] c"AndroidX.Core.Widget.ListPopupWindowCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13923_to = private unnamed_addr constant [43 x i8] c"androidx/core/widget/ListPopupWindowCompat\00", align 1 +@.TypeMapEntry.13924_from = private unnamed_addr constant [69 x i8] c"AndroidX.Core.Widget.ListViewAutoScrollHelper, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13925_to = private unnamed_addr constant [46 x i8] c"androidx/core/widget/ListViewAutoScrollHelper\00", align 1 +@.TypeMapEntry.13926_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Widget.ListViewCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13927_to = private unnamed_addr constant [36 x i8] c"androidx/core/widget/ListViewCompat\00", align 1 +@.TypeMapEntry.13928_from = private unnamed_addr constant [85 x i8] c"AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13929_to = private unnamed_addr constant [61 x i8] c"androidx/core/widget/NestedScrollView$OnScrollChangeListener\00", align 1 +@.TypeMapEntry.13930_from = private unnamed_addr constant [96 x i8] c"AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13931_to = private unnamed_addr constant [77 x i8] c"mono/androidx/core/widget/NestedScrollView_OnScrollChangeListenerImplementor\00", align 1 +@.TypeMapEntry.13932_from = private unnamed_addr constant [92 x i8] c"AndroidX.Core.Widget.NestedScrollView+IOnScrollChangeListenerInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13933_from = private unnamed_addr constant [61 x i8] c"AndroidX.Core.Widget.NestedScrollView, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13934_to = private unnamed_addr constant [38 x i8] c"androidx/core/widget/NestedScrollView\00", align 1 +@.TypeMapEntry.13935_from = private unnamed_addr constant [60 x i8] c"AndroidX.Core.Widget.PopupMenuCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13936_to = private unnamed_addr constant [37 x i8] c"androidx/core/widget/PopupMenuCompat\00", align 1 +@.TypeMapEntry.13937_from = private unnamed_addr constant [62 x i8] c"AndroidX.Core.Widget.PopupWindowCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13938_to = private unnamed_addr constant [39 x i8] c"androidx/core/widget/PopupWindowCompat\00", align 1 +@.TypeMapEntry.13939_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Widget.ScrollerCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13940_to = private unnamed_addr constant [36 x i8] c"androidx/core/widget/ScrollerCompat\00", align 1 +@.TypeMapEntry.13941_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Widget.TextViewCompat+IAutoSizeTextType, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13942_to = private unnamed_addr constant [53 x i8] c"androidx/core/widget/TextViewCompat$AutoSizeTextType\00", align 1 +@.TypeMapEntry.13943_from = private unnamed_addr constant [84 x i8] c"AndroidX.Core.Widget.TextViewCompat+IAutoSizeTextTypeInvoker, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13944_from = private unnamed_addr constant [59 x i8] c"AndroidX.Core.Widget.TextViewCompat, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13945_to = private unnamed_addr constant [36 x i8] c"androidx/core/widget/TextViewCompat\00", align 1 +@.TypeMapEntry.13946_from = private unnamed_addr constant [64 x i8] c"AndroidX.Core.Widget.TextViewKt, Xamarin.AndroidX.Core.Core.Ktx\00", align 1 +@.TypeMapEntry.13947_to = private unnamed_addr constant [32 x i8] c"androidx/core/widget/TextViewKt\00", align 1 +@.TypeMapEntry.13948_from = private unnamed_addr constant [77 x i8] c"AndroidX.Core.Widget.TextViewOnReceiveContentListener, Xamarin.AndroidX.Core\00", align 1 +@.TypeMapEntry.13949_to = private unnamed_addr constant [54 x i8] c"androidx/core/widget/TextViewOnReceiveContentListener\00", align 1 +@.TypeMapEntry.13950_from = private unnamed_addr constant [76 x i8] c"AndroidX.CursorAdapter.Widget.CursorAdapter, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13951_to = private unnamed_addr constant [44 x i8] c"androidx/cursoradapter/widget/CursorAdapter\00", align 1 +@.TypeMapEntry.13952_from = private unnamed_addr constant [83 x i8] c"AndroidX.CursorAdapter.Widget.CursorAdapterInvoker, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13953_from = private unnamed_addr constant [75 x i8] c"AndroidX.CursorAdapter.Widget.CursorFilter, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13954_to = private unnamed_addr constant [43 x i8] c"androidx/cursoradapter/widget/CursorFilter\00", align 1 +@.TypeMapEntry.13955_from = private unnamed_addr constant [84 x i8] c"AndroidX.CursorAdapter.Widget.ResourceCursorAdapter, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13956_to = private unnamed_addr constant [52 x i8] c"androidx/cursoradapter/widget/ResourceCursorAdapter\00", align 1 +@.TypeMapEntry.13957_from = private unnamed_addr constant [91 x i8] c"AndroidX.CursorAdapter.Widget.ResourceCursorAdapterInvoker, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13958_from = private unnamed_addr constant [107 x i8] c"AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+ICursorToStringConverter, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13959_to = private unnamed_addr constant [74 x i8] c"androidx/cursoradapter/widget/SimpleCursorAdapter$CursorToStringConverter\00", align 1 +@.TypeMapEntry.13960_from = private unnamed_addr constant [114 x i8] c"AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+ICursorToStringConverterInvoker, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13961_from = private unnamed_addr constant [94 x i8] c"AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+IViewBinder, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13962_to = private unnamed_addr constant [61 x i8] c"androidx/cursoradapter/widget/SimpleCursorAdapter$ViewBinder\00", align 1 +@.TypeMapEntry.13963_from = private unnamed_addr constant [101 x i8] c"AndroidX.CursorAdapter.Widget.SimpleCursorAdapter+IViewBinderInvoker, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13964_from = private unnamed_addr constant [82 x i8] c"AndroidX.CursorAdapter.Widget.SimpleCursorAdapter, Xamarin.AndroidX.CursorAdapter\00", align 1 +@.TypeMapEntry.13965_to = private unnamed_addr constant [50 x i8] c"androidx/cursoradapter/widget/SimpleCursorAdapter\00", align 1 +@.TypeMapEntry.13966_from = private unnamed_addr constant [109 x i8] c"AndroidX.CustomView.PoolingContainer.IPoolingContainerListener, Xamarin.AndroidX.CustomView.PoolingContainer\00", align 1 +@.TypeMapEntry.13967_to = private unnamed_addr constant [62 x i8] c"androidx/customview/poolingcontainer/PoolingContainerListener\00", align 1 +@.TypeMapEntry.13968_from = private unnamed_addr constant [120 x i8] c"AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerImplementor, Xamarin.AndroidX.CustomView.PoolingContainer\00", align 1 +@.TypeMapEntry.13969_to = private unnamed_addr constant [78 x i8] c"mono/androidx/customview/poolingcontainer/PoolingContainerListenerImplementor\00", align 1 +@.TypeMapEntry.13970_from = private unnamed_addr constant [116 x i8] c"AndroidX.CustomView.PoolingContainer.IPoolingContainerListenerInvoker, Xamarin.AndroidX.CustomView.PoolingContainer\00", align 1 +@.TypeMapEntry.13971_from = private unnamed_addr constant [100 x i8] c"AndroidX.CustomView.PoolingContainer.PoolingContainer, Xamarin.AndroidX.CustomView.PoolingContainer\00", align 1 +@.TypeMapEntry.13972_to = private unnamed_addr constant [54 x i8] c"androidx/customview/poolingcontainer/PoolingContainer\00", align 1 +@.TypeMapEntry.13973_from = private unnamed_addr constant [68 x i8] c"AndroidX.CustomView.View.AbsSavedState, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13974_to = private unnamed_addr constant [39 x i8] c"androidx/customview/view/AbsSavedState\00", align 1 +@.TypeMapEntry.13975_from = private unnamed_addr constant [75 x i8] c"AndroidX.CustomView.View.AbsSavedStateInvoker, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13976_from = private unnamed_addr constant [77 x i8] c"AndroidX.CustomView.Widget.ExploreByTouchHelper, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13977_to = private unnamed_addr constant [48 x i8] c"androidx/customview/widget/ExploreByTouchHelper\00", align 1 +@.TypeMapEntry.13978_from = private unnamed_addr constant [84 x i8] c"AndroidX.CustomView.Widget.ExploreByTouchHelperInvoker, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13979_from = private unnamed_addr constant [66 x i8] c"AndroidX.CustomView.Widget.IOpenable, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13980_to = private unnamed_addr constant [36 x i8] c"androidx/customview/widget/Openable\00", align 1 +@.TypeMapEntry.13981_from = private unnamed_addr constant [73 x i8] c"AndroidX.CustomView.Widget.IOpenableInvoker, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13982_from = private unnamed_addr constant [80 x i8] c"AndroidX.CustomView.Widget.ViewDragHelper+Callback, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13983_to = private unnamed_addr constant [51 x i8] c"androidx/customview/widget/ViewDragHelper$Callback\00", align 1 +@.TypeMapEntry.13984_from = private unnamed_addr constant [87 x i8] c"AndroidX.CustomView.Widget.ViewDragHelper+CallbackInvoker, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13985_from = private unnamed_addr constant [71 x i8] c"AndroidX.CustomView.Widget.ViewDragHelper, Xamarin.AndroidX.CustomView\00", align 1 +@.TypeMapEntry.13986_to = private unnamed_addr constant [42 x i8] c"androidx/customview/widget/ViewDragHelper\00", align 1 +@.TypeMapEntry.13987_from = private unnamed_addr constant [89 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListener, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13988_to = private unnamed_addr constant [57 x i8] c"androidx/drawerlayout/widget/DrawerLayout$DrawerListener\00", align 1 +@.TypeMapEntry.13989_from = private unnamed_addr constant [100 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13990_to = private unnamed_addr constant [73 x i8] c"mono/androidx/drawerlayout/widget/DrawerLayout_DrawerListenerImplementor\00", align 1 +@.TypeMapEntry.13991_from = private unnamed_addr constant [96 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+IDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13992_from = private unnamed_addr constant [86 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+LayoutParams, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13993_to = private unnamed_addr constant [55 x i8] c"androidx/drawerlayout/widget/DrawerLayout$LayoutParams\00", align 1 +@.TypeMapEntry.13994_from = private unnamed_addr constant [84 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+SavedState, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13995_to = private unnamed_addr constant [53 x i8] c"androidx/drawerlayout/widget/DrawerLayout$SavedState\00", align 1 +@.TypeMapEntry.13996_from = private unnamed_addr constant [94 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+SimpleDrawerListener, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13997_to = private unnamed_addr constant [63 x i8] c"androidx/drawerlayout/widget/DrawerLayout$SimpleDrawerListener\00", align 1 +@.TypeMapEntry.13998_from = private unnamed_addr constant [101 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout+SimpleDrawerListenerInvoker, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.13999_from = private unnamed_addr constant [73 x i8] c"AndroidX.DrawerLayout.Widget.DrawerLayout, Xamarin.AndroidX.DrawerLayout\00", align 1 +@.TypeMapEntry.14000_to = private unnamed_addr constant [42 x i8] c"androidx/drawerlayout/widget/DrawerLayout\00", align 1 +@.TypeMapEntry.14001_from = private unnamed_addr constant [108 x i8] c"AndroidX.DynamicAnimation.AnimationHandler+DurationScaleChangeListener33, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14002_to = private unnamed_addr constant [83 x i8] c"androidx/dynamicanimation/animation/AnimationHandler$DurationScaleChangeListener33\00", align 1 +@.TypeMapEntry.14003_from = private unnamed_addr constant [107 x i8] c"AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListener, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14004_to = private unnamed_addr constant [81 x i8] c"androidx/dynamicanimation/animation/AnimationHandler$DurationScaleChangeListener\00", align 1 +@.TypeMapEntry.14005_from = private unnamed_addr constant [118 x i8] c"AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListenerImplementor, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14006_to = private unnamed_addr constant [97 x i8] c"mono/androidx/dynamicanimation/animation/AnimationHandler_DurationScaleChangeListenerImplementor\00", align 1 +@.TypeMapEntry.14007_from = private unnamed_addr constant [114 x i8] c"AndroidX.DynamicAnimation.AnimationHandler+IDurationScaleChangeListenerInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14008_from = private unnamed_addr constant [78 x i8] c"AndroidX.DynamicAnimation.AnimationHandler, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14009_to = private unnamed_addr constant [53 x i8] c"androidx/dynamicanimation/animation/AnimationHandler\00", align 1 +@.TypeMapEntry.14010_from = private unnamed_addr constant [102 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListener, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14011_to = private unnamed_addr constant [76 x i8] c"androidx/dynamicanimation/animation/DynamicAnimation$OnAnimationEndListener\00", align 1 +@.TypeMapEntry.14012_from = private unnamed_addr constant [113 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListenerImplementor, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14013_to = private unnamed_addr constant [92 x i8] c"mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationEndListenerImplementor\00", align 1 +@.TypeMapEntry.14014_from = private unnamed_addr constant [109 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationEndListenerInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14015_from = private unnamed_addr constant [105 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListener, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14016_to = private unnamed_addr constant [79 x i8] c"androidx/dynamicanimation/animation/DynamicAnimation$OnAnimationUpdateListener\00", align 1 +@.TypeMapEntry.14017_from = private unnamed_addr constant [116 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListenerImplementor, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14018_to = private unnamed_addr constant [95 x i8] c"mono/androidx/dynamicanimation/animation/DynamicAnimation_OnAnimationUpdateListenerImplementor\00", align 1 +@.TypeMapEntry.14019_from = private unnamed_addr constant [112 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+IOnAnimationUpdateListenerInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14020_from = private unnamed_addr constant [91 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+ViewProperty, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14021_to = private unnamed_addr constant [66 x i8] c"androidx/dynamicanimation/animation/DynamicAnimation$ViewProperty\00", align 1 +@.TypeMapEntry.14022_from = private unnamed_addr constant [98 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation+ViewPropertyInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14023_from = private unnamed_addr constant [78 x i8] c"AndroidX.DynamicAnimation.DynamicAnimation, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14024_to = private unnamed_addr constant [53 x i8] c"androidx/dynamicanimation/animation/DynamicAnimation\00", align 1 +@.TypeMapEntry.14025_from = private unnamed_addr constant [85 x i8] c"AndroidX.DynamicAnimation.DynamicAnimationInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14026_from = private unnamed_addr constant [76 x i8] c"AndroidX.DynamicAnimation.FlingAnimation, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14027_to = private unnamed_addr constant [51 x i8] c"androidx/dynamicanimation/animation/FlingAnimation\00", align 1 +@.TypeMapEntry.14028_from = private unnamed_addr constant [81 x i8] c"AndroidX.DynamicAnimation.FloatPropertyCompat, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14029_to = private unnamed_addr constant [56 x i8] c"androidx/dynamicanimation/animation/FloatPropertyCompat\00", align 1 +@.TypeMapEntry.14030_from = private unnamed_addr constant [88 x i8] c"AndroidX.DynamicAnimation.FloatPropertyCompatInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14031_from = private unnamed_addr constant [78 x i8] c"AndroidX.DynamicAnimation.FloatValueHolder, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14032_to = private unnamed_addr constant [53 x i8] c"androidx/dynamicanimation/animation/FloatValueHolder\00", align 1 +@.TypeMapEntry.14033_from = private unnamed_addr constant [85 x i8] c"AndroidX.DynamicAnimation.IFrameCallbackScheduler, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14034_to = private unnamed_addr constant [59 x i8] c"androidx/dynamicanimation/animation/FrameCallbackScheduler\00", align 1 +@.TypeMapEntry.14035_from = private unnamed_addr constant [92 x i8] c"AndroidX.DynamicAnimation.IFrameCallbackSchedulerInvoker, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14036_from = private unnamed_addr constant [77 x i8] c"AndroidX.DynamicAnimation.SpringAnimation, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14037_to = private unnamed_addr constant [52 x i8] c"androidx/dynamicanimation/animation/SpringAnimation\00", align 1 +@.TypeMapEntry.14038_from = private unnamed_addr constant [73 x i8] c"AndroidX.DynamicAnimation.SpringForce, Xamarin.AndroidX.DynamicAnimation\00", align 1 +@.TypeMapEntry.14039_to = private unnamed_addr constant [48 x i8] c"androidx/dynamicanimation/animation/SpringForce\00", align 1 +@.TypeMapEntry.14040_from = private unnamed_addr constant [103 x i8] c"AndroidX.Emoji2.Text.DefaultEmojiCompatConfig+DefaultEmojiCompatConfigFactory, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14041_to = private unnamed_addr constant [78 x i8] c"androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigFactory\00", align 1 +@.TypeMapEntry.14042_from = private unnamed_addr constant [102 x i8] c"AndroidX.Emoji2.Text.DefaultEmojiCompatConfig+DefaultEmojiCompatConfigHelper, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14043_to = private unnamed_addr constant [77 x i8] c"androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper\00", align 1 +@.TypeMapEntry.14044_from = private unnamed_addr constant [108 x i8] c"AndroidX.Emoji2.Text.DefaultEmojiCompatConfig+DefaultEmojiCompatConfigHelper_API28, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14045_to = private unnamed_addr constant [83 x i8] c"androidx/emoji2/text/DefaultEmojiCompatConfig$DefaultEmojiCompatConfigHelper_API28\00", align 1 +@.TypeMapEntry.14046_from = private unnamed_addr constant [71 x i8] c"AndroidX.Emoji2.Text.DefaultEmojiCompatConfig, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14047_to = private unnamed_addr constant [46 x i8] c"androidx/emoji2/text/DefaultEmojiCompatConfig\00", align 1 +@.TypeMapEntry.14048_from = private unnamed_addr constant [65 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+Config, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14049_to = private unnamed_addr constant [40 x i8] c"androidx/emoji2/text/EmojiCompat$Config\00", align 1 +@.TypeMapEntry.14050_from = private unnamed_addr constant [72 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ConfigInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14051_from = private unnamed_addr constant [77 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+DefaultSpanFactory, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14052_to = private unnamed_addr constant [52 x i8] c"androidx/emoji2/text/EmojiCompat$DefaultSpanFactory\00", align 1 +@.TypeMapEntry.14053_from = private unnamed_addr constant [88 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ICodepointSequenceMatchResult, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14054_to = private unnamed_addr constant [62 x i8] c"androidx/emoji2/text/EmojiCompat$CodepointSequenceMatchResult\00", align 1 +@.TypeMapEntry.14055_from = private unnamed_addr constant [95 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ICodepointSequenceMatchResultInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14056_from = private unnamed_addr constant [72 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IGlyphChecker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14057_to = private unnamed_addr constant [46 x i8] c"androidx/emoji2/text/EmojiCompat$GlyphChecker\00", align 1 +@.TypeMapEntry.14058_from = private unnamed_addr constant [79 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IGlyphCheckerInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14059_from = private unnamed_addr constant [72 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ILoadStrategy, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14060_to = private unnamed_addr constant [46 x i8] c"androidx/emoji2/text/EmojiCompat$LoadStrategy\00", align 1 +@.TypeMapEntry.14061_from = private unnamed_addr constant [79 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ILoadStrategyInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14062_from = private unnamed_addr constant [78 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IMetadataRepoLoader, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14063_to = private unnamed_addr constant [52 x i8] c"androidx/emoji2/text/EmojiCompat$MetadataRepoLoader\00", align 1 +@.TypeMapEntry.14064_from = private unnamed_addr constant [85 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IMetadataRepoLoaderInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14065_from = private unnamed_addr constant [75 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IReplaceStrategy, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14066_to = private unnamed_addr constant [49 x i8] c"androidx/emoji2/text/EmojiCompat$ReplaceStrategy\00", align 1 +@.TypeMapEntry.14067_from = private unnamed_addr constant [82 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+IReplaceStrategyInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14068_from = private unnamed_addr constant [71 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ISpanFactory, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14069_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/EmojiCompat$SpanFactory\00", align 1 +@.TypeMapEntry.14070_from = private unnamed_addr constant [78 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+ISpanFactoryInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14071_from = private unnamed_addr constant [71 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+InitCallback, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14072_to = private unnamed_addr constant [46 x i8] c"androidx/emoji2/text/EmojiCompat$InitCallback\00", align 1 +@.TypeMapEntry.14073_from = private unnamed_addr constant [78 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+InitCallbackInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14074_from = private unnamed_addr constant [85 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+MetadataRepoLoaderCallback, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14075_to = private unnamed_addr constant [60 x i8] c"androidx/emoji2/text/EmojiCompat$MetadataRepoLoaderCallback\00", align 1 +@.TypeMapEntry.14076_from = private unnamed_addr constant [92 x i8] c"AndroidX.Emoji2.Text.EmojiCompat+MetadataRepoLoaderCallbackInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14077_from = private unnamed_addr constant [58 x i8] c"AndroidX.Emoji2.Text.EmojiCompat, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14078_to = private unnamed_addr constant [33 x i8] c"androidx/emoji2/text/EmojiCompat\00", align 1 +@.TypeMapEntry.14079_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.EmojiCompatInitializer, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14080_to = private unnamed_addr constant [44 x i8] c"androidx/emoji2/text/EmojiCompatInitializer\00", align 1 +@.TypeMapEntry.14081_from = private unnamed_addr constant [60 x i8] c"AndroidX.Emoji2.Text.EmojiDefaults, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14082_to = private unnamed_addr constant [35 x i8] c"androidx/emoji2/text/EmojiDefaults\00", align 1 +@.TypeMapEntry.14083_from = private unnamed_addr constant [56 x i8] c"AndroidX.Emoji2.Text.EmojiSpan, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14084_to = private unnamed_addr constant [31 x i8] c"androidx/emoji2/text/EmojiSpan\00", align 1 +@.TypeMapEntry.14085_from = private unnamed_addr constant [63 x i8] c"AndroidX.Emoji2.Text.EmojiSpanInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14086_from = private unnamed_addr constant [75 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.ArrayReadWriteBuf, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14087_to = private unnamed_addr constant [50 x i8] c"androidx/emoji2/text/flatbuffer/ArrayReadWriteBuf\00", align 1 +@.TypeMapEntry.14088_from = private unnamed_addr constant [68 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.BaseVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14089_to = private unnamed_addr constant [43 x i8] c"androidx/emoji2/text/flatbuffer/BaseVector\00", align 1 +@.TypeMapEntry.14090_from = private unnamed_addr constant [71 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.BooleanVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14091_to = private unnamed_addr constant [46 x i8] c"androidx/emoji2/text/flatbuffer/BooleanVector\00", align 1 +@.TypeMapEntry.14092_from = private unnamed_addr constant [80 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.ByteBufferReadWriteBuf, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14093_to = private unnamed_addr constant [55 x i8] c"androidx/emoji2/text/flatbuffer/ByteBufferReadWriteBuf\00", align 1 +@.TypeMapEntry.14094_from = private unnamed_addr constant [72 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.ByteBufferUtil, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14095_to = private unnamed_addr constant [47 x i8] c"androidx/emoji2/text/flatbuffer/ByteBufferUtil\00", align 1 +@.TypeMapEntry.14096_from = private unnamed_addr constant [68 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.ByteVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14097_to = private unnamed_addr constant [43 x i8] c"androidx/emoji2/text/flatbuffer/ByteVector\00", align 1 +@.TypeMapEntry.14098_from = private unnamed_addr constant [67 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Constants, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14099_to = private unnamed_addr constant [42 x i8] c"androidx/emoji2/text/flatbuffer/Constants\00", align 1 +@.TypeMapEntry.14100_from = private unnamed_addr constant [70 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.DoubleVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14101_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/flatbuffer/DoubleVector\00", align 1 +@.TypeMapEntry.14102_from = private unnamed_addr constant [93 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlatBufferBuilder+ByteBufferFactory, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14103_to = private unnamed_addr constant [68 x i8] c"androidx/emoji2/text/flatbuffer/FlatBufferBuilder$ByteBufferFactory\00", align 1 +@.TypeMapEntry.14104_from = private unnamed_addr constant [100 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlatBufferBuilder+ByteBufferFactoryInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14105_from = private unnamed_addr constant [97 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlatBufferBuilder+HeapByteBufferFactory, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14106_to = private unnamed_addr constant [72 x i8] c"androidx/emoji2/text/flatbuffer/FlatBufferBuilder$HeapByteBufferFactory\00", align 1 +@.TypeMapEntry.14107_from = private unnamed_addr constant [75 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlatBufferBuilder, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14108_to = private unnamed_addr constant [50 x i8] c"androidx/emoji2/text/flatbuffer/FlatBufferBuilder\00", align 1 +@.TypeMapEntry.14109_from = private unnamed_addr constant [89 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlexBuffers+FlexBufferException, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14110_to = private unnamed_addr constant [64 x i8] c"androidx/emoji2/text/flatbuffer/FlexBuffers$FlexBufferException\00", align 1 +@.TypeMapEntry.14111_from = private unnamed_addr constant [79 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlexBuffers+KeyVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14112_to = private unnamed_addr constant [54 x i8] c"androidx/emoji2/text/flatbuffer/FlexBuffers$KeyVector\00", align 1 +@.TypeMapEntry.14113_from = private unnamed_addr constant [79 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlexBuffers+Reference, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14114_to = private unnamed_addr constant [54 x i8] c"androidx/emoji2/text/flatbuffer/FlexBuffers$Reference\00", align 1 +@.TypeMapEntry.14115_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlexBuffers, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14116_to = private unnamed_addr constant [44 x i8] c"androidx/emoji2/text/flatbuffer/FlexBuffers\00", align 1 +@.TypeMapEntry.14117_from = private unnamed_addr constant [76 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FlexBuffersBuilder, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14118_to = private unnamed_addr constant [51 x i8] c"androidx/emoji2/text/flatbuffer/FlexBuffersBuilder\00", align 1 +@.TypeMapEntry.14119_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.FloatVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14120_to = private unnamed_addr constant [44 x i8] c"androidx/emoji2/text/flatbuffer/FloatVector\00", align 1 +@.TypeMapEntry.14121_from = private unnamed_addr constant [67 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.IntVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14122_to = private unnamed_addr constant [42 x i8] c"androidx/emoji2/text/flatbuffer/IntVector\00", align 1 +@.TypeMapEntry.14123_from = private unnamed_addr constant [68 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.LongVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14124_to = private unnamed_addr constant [43 x i8] c"androidx/emoji2/text/flatbuffer/LongVector\00", align 1 +@.TypeMapEntry.14125_from = private unnamed_addr constant [77 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.MetadataItem+Vector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14126_to = private unnamed_addr constant [52 x i8] c"androidx/emoji2/text/flatbuffer/MetadataItem$Vector\00", align 1 +@.TypeMapEntry.14127_from = private unnamed_addr constant [70 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.MetadataItem, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14128_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/flatbuffer/MetadataItem\00", align 1 +@.TypeMapEntry.14129_from = private unnamed_addr constant [77 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.MetadataList+Vector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14130_to = private unnamed_addr constant [52 x i8] c"androidx/emoji2/text/flatbuffer/MetadataList$Vector\00", align 1 +@.TypeMapEntry.14131_from = private unnamed_addr constant [70 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.MetadataList, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14132_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/flatbuffer/MetadataList\00", align 1 +@.TypeMapEntry.14133_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.ShortVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14134_to = private unnamed_addr constant [44 x i8] c"androidx/emoji2/text/flatbuffer/ShortVector\00", align 1 +@.TypeMapEntry.14135_from = private unnamed_addr constant [70 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.StringVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14136_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/flatbuffer/StringVector\00", align 1 +@.TypeMapEntry.14137_from = private unnamed_addr constant [64 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Struct, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14138_to = private unnamed_addr constant [39 x i8] c"androidx/emoji2/text/flatbuffer/Struct\00", align 1 +@.TypeMapEntry.14139_from = private unnamed_addr constant [63 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Table, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14140_to = private unnamed_addr constant [38 x i8] c"androidx/emoji2/text/flatbuffer/Table\00", align 1 +@.TypeMapEntry.14141_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.UnionVector, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14142_to = private unnamed_addr constant [44 x i8] c"androidx/emoji2/text/flatbuffer/UnionVector\00", align 1 +@.TypeMapEntry.14143_from = private unnamed_addr constant [62 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Utf8, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14144_to = private unnamed_addr constant [37 x i8] c"androidx/emoji2/text/flatbuffer/Utf8\00", align 1 +@.TypeMapEntry.14145_from = private unnamed_addr constant [69 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Utf8Invoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14146_from = private unnamed_addr constant [65 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Utf8Old, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14147_to = private unnamed_addr constant [40 x i8] c"androidx/emoji2/text/flatbuffer/Utf8Old\00", align 1 +@.TypeMapEntry.14148_from = private unnamed_addr constant [66 x i8] c"AndroidX.Emoji2.Text.FlatBuffer.Utf8Safe, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14149_to = private unnamed_addr constant [41 x i8] c"androidx/emoji2/text/flatbuffer/Utf8Safe\00", align 1 +@.TypeMapEntry.14150_from = private unnamed_addr constant [105 x i8] c"AndroidX.Emoji2.Text.FontRequestEmojiCompatConfig+ExponentialBackoffRetryPolicy, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14151_to = private unnamed_addr constant [80 x i8] c"androidx/emoji2/text/FontRequestEmojiCompatConfig$ExponentialBackoffRetryPolicy\00", align 1 +@.TypeMapEntry.14152_from = private unnamed_addr constant [94 x i8] c"AndroidX.Emoji2.Text.FontRequestEmojiCompatConfig+FontProviderHelper, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14153_to = private unnamed_addr constant [69 x i8] c"androidx/emoji2/text/FontRequestEmojiCompatConfig$FontProviderHelper\00", align 1 +@.TypeMapEntry.14154_from = private unnamed_addr constant [87 x i8] c"AndroidX.Emoji2.Text.FontRequestEmojiCompatConfig+RetryPolicy, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14155_to = private unnamed_addr constant [62 x i8] c"androidx/emoji2/text/FontRequestEmojiCompatConfig$RetryPolicy\00", align 1 +@.TypeMapEntry.14156_from = private unnamed_addr constant [94 x i8] c"AndroidX.Emoji2.Text.FontRequestEmojiCompatConfig+RetryPolicyInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14157_from = private unnamed_addr constant [75 x i8] c"AndroidX.Emoji2.Text.FontRequestEmojiCompatConfig, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14158_to = private unnamed_addr constant [50 x i8] c"androidx/emoji2/text/FontRequestEmojiCompatConfig\00", align 1 +@.TypeMapEntry.14159_from = private unnamed_addr constant [59 x i8] c"AndroidX.Emoji2.Text.MetadataRepo, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14160_to = private unnamed_addr constant [34 x i8] c"androidx/emoji2/text/MetadataRepo\00", align 1 +@.TypeMapEntry.14161_from = private unnamed_addr constant [63 x i8] c"AndroidX.Emoji2.Text.SpannableBuilder, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14162_to = private unnamed_addr constant [38 x i8] c"androidx/emoji2/text/SpannableBuilder\00", align 1 +@.TypeMapEntry.14163_from = private unnamed_addr constant [80 x i8] c"AndroidX.Emoji2.Text.TypefaceEmojiRasterizer+IHasGlyph, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14164_to = private unnamed_addr constant [54 x i8] c"androidx/emoji2/text/TypefaceEmojiRasterizer$HasGlyph\00", align 1 +@.TypeMapEntry.14165_from = private unnamed_addr constant [87 x i8] c"AndroidX.Emoji2.Text.TypefaceEmojiRasterizer+IHasGlyphInvoker, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14166_from = private unnamed_addr constant [70 x i8] c"AndroidX.Emoji2.Text.TypefaceEmojiRasterizer, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14167_to = private unnamed_addr constant [45 x i8] c"androidx/emoji2/text/TypefaceEmojiRasterizer\00", align 1 +@.TypeMapEntry.14168_from = private unnamed_addr constant [64 x i8] c"AndroidX.Emoji2.Text.TypefaceEmojiSpan, Xamarin.AndroidX.Emoji2\00", align 1 +@.TypeMapEntry.14169_to = private unnamed_addr constant [39 x i8] c"androidx/emoji2/text/TypefaceEmojiSpan\00", align 1 +@.TypeMapEntry.14170_from = private unnamed_addr constant [90 x i8] c"AndroidX.Emoji2.ViewsIntegration.EmojiEditTextHelper, Xamarin.AndroidX.Emoji2.ViewsHelper\00", align 1 +@.TypeMapEntry.14171_to = private unnamed_addr constant [53 x i8] c"androidx/emoji2/viewsintegration/EmojiEditTextHelper\00", align 1 +@.TypeMapEntry.14172_from = private unnamed_addr constant [90 x i8] c"AndroidX.Emoji2.ViewsIntegration.EmojiTextViewHelper, Xamarin.AndroidX.Emoji2.ViewsHelper\00", align 1 +@.TypeMapEntry.14173_to = private unnamed_addr constant [53 x i8] c"androidx/emoji2/viewsintegration/EmojiTextViewHelper\00", align 1 +@.TypeMapEntry.14174_from = private unnamed_addr constant [91 x i8] c"AndroidX.ExifInterface.Media.ExifInterface+IExifStreamType, Xamarin.AndroidX.ExifInterface\00", align 1 +@.TypeMapEntry.14175_to = private unnamed_addr constant [58 x i8] c"androidx/exifinterface/media/ExifInterface$ExifStreamType\00", align 1 +@.TypeMapEntry.14176_from = private unnamed_addr constant [98 x i8] c"AndroidX.ExifInterface.Media.ExifInterface+IExifStreamTypeInvoker, Xamarin.AndroidX.ExifInterface\00", align 1 +@.TypeMapEntry.14177_from = private unnamed_addr constant [84 x i8] c"AndroidX.ExifInterface.Media.ExifInterface+IIfdType, Xamarin.AndroidX.ExifInterface\00", align 1 +@.TypeMapEntry.14178_to = private unnamed_addr constant [51 x i8] c"androidx/exifinterface/media/ExifInterface$IfdType\00", align 1 +@.TypeMapEntry.14179_from = private unnamed_addr constant [91 x i8] c"AndroidX.ExifInterface.Media.ExifInterface+IIfdTypeInvoker, Xamarin.AndroidX.ExifInterface\00", align 1 +@.TypeMapEntry.14180_from = private unnamed_addr constant [75 x i8] c"AndroidX.ExifInterface.Media.ExifInterface, Xamarin.AndroidX.ExifInterface\00", align 1 +@.TypeMapEntry.14181_to = private unnamed_addr constant [43 x i8] c"androidx/exifinterface/media/ExifInterface\00", align 1 +@.TypeMapEntry.14182_from = private unnamed_addr constant [65 x i8] c"AndroidX.Fragment.App.BackStackRecord, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14183_to = private unnamed_addr constant [38 x i8] c"androidx/fragment/app/BackStackRecord\00", align 1 +@.TypeMapEntry.14184_from = private unnamed_addr constant [64 x i8] c"AndroidX.Fragment.App.DialogFragment, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14185_to = private unnamed_addr constant [37 x i8] c"androidx/fragment/app/DialogFragment\00", align 1 +@.TypeMapEntry.14186_from = private unnamed_addr constant [81 x i8] c"AndroidX.Fragment.App.Fragment+InstantiationException, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14187_to = private unnamed_addr constant [54 x i8] c"androidx/fragment/app/Fragment$InstantiationException\00", align 1 +@.TypeMapEntry.14188_from = private unnamed_addr constant [69 x i8] c"AndroidX.Fragment.App.Fragment+SavedState, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14189_to = private unnamed_addr constant [42 x i8] c"androidx/fragment/app/Fragment$SavedState\00", align 1 +@.TypeMapEntry.14190_from = private unnamed_addr constant [58 x i8] c"AndroidX.Fragment.App.Fragment, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14191_to = private unnamed_addr constant [31 x i8] c"androidx/fragment/app/Fragment\00", align 1 +@.TypeMapEntry.14192_from = private unnamed_addr constant [66 x i8] c"AndroidX.Fragment.App.FragmentActivity, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14193_to = private unnamed_addr constant [39 x i8] c"androidx/fragment/app/FragmentActivity\00", align 1 +@.TypeMapEntry.14194_from = private unnamed_addr constant [67 x i8] c"AndroidX.Fragment.App.FragmentContainer, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14195_to = private unnamed_addr constant [40 x i8] c"androidx/fragment/app/FragmentContainer\00", align 1 +@.TypeMapEntry.14196_from = private unnamed_addr constant [74 x i8] c"AndroidX.Fragment.App.FragmentContainerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14197_from = private unnamed_addr constant [71 x i8] c"AndroidX.Fragment.App.FragmentContainerView, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14198_to = private unnamed_addr constant [44 x i8] c"androidx/fragment/app/FragmentContainerView\00", align 1 +@.TypeMapEntry.14199_from = private unnamed_addr constant [68 x i8] c"AndroidX.Fragment.App.FragmentController, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14200_to = private unnamed_addr constant [41 x i8] c"androidx/fragment/app/FragmentController\00", align 1 +@.TypeMapEntry.14201_from = private unnamed_addr constant [65 x i8] c"AndroidX.Fragment.App.FragmentFactory, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14202_to = private unnamed_addr constant [38 x i8] c"androidx/fragment/app/FragmentFactory\00", align 1 +@.TypeMapEntry.14203_from = private unnamed_addr constant [70 x i8] c"AndroidX.Fragment.App.FragmentHostCallback, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14204_to = private unnamed_addr constant [43 x i8] c"androidx/fragment/app/FragmentHostCallback\00", align 1 +@.TypeMapEntry.14205_from = private unnamed_addr constant [77 x i8] c"AndroidX.Fragment.App.FragmentHostCallbackInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14206_from = private unnamed_addr constant [64 x i8] c"AndroidX.Fragment.App.FragmentKt, Xamarin.AndroidX.Fragment.Ktx\00", align 1 +@.TypeMapEntry.14207_to = private unnamed_addr constant [33 x i8] c"androidx/fragment/app/FragmentKt\00", align 1 +@.TypeMapEntry.14208_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.FragmentManager+FragmentLifecycleCallbacks, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14209_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks\00", align 1 +@.TypeMapEntry.14210_from = private unnamed_addr constant [99 x i8] c"AndroidX.Fragment.App.FragmentManager+FragmentLifecycleCallbacksInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14211_from = private unnamed_addr constant [81 x i8] c"AndroidX.Fragment.App.FragmentManager+IBackStackEntry, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14212_to = private unnamed_addr constant [53 x i8] c"androidx/fragment/app/FragmentManager$BackStackEntry\00", align 1 +@.TypeMapEntry.14213_from = private unnamed_addr constant [88 x i8] c"AndroidX.Fragment.App.FragmentManager+IBackStackEntryInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14214_from = private unnamed_addr constant [93 x i8] c"AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListener, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14215_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/FragmentManager$OnBackStackChangedListener\00", align 1 +@.TypeMapEntry.14216_from = private unnamed_addr constant [104 x i8] c"AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14217_to = private unnamed_addr constant [81 x i8] c"mono/androidx/fragment/app/FragmentManager_OnBackStackChangedListenerImplementor\00", align 1 +@.TypeMapEntry.14218_from = private unnamed_addr constant [100 x i8] c"AndroidX.Fragment.App.FragmentManager+IOnBackStackChangedListenerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14219_from = private unnamed_addr constant [65 x i8] c"AndroidX.Fragment.App.FragmentManager, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14220_to = private unnamed_addr constant [38 x i8] c"androidx/fragment/app/FragmentManager\00", align 1 +@.TypeMapEntry.14221_from = private unnamed_addr constant [72 x i8] c"AndroidX.Fragment.App.FragmentManagerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14222_from = private unnamed_addr constant [71 x i8] c"AndroidX.Fragment.App.FragmentManagerKt, Xamarin.AndroidX.Fragment.Ktx\00", align 1 +@.TypeMapEntry.14223_to = private unnamed_addr constant [40 x i8] c"androidx/fragment/app/FragmentManagerKt\00", align 1 +@.TypeMapEntry.14224_from = private unnamed_addr constant [74 x i8] c"AndroidX.Fragment.App.FragmentManagerNonConfig, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14225_to = private unnamed_addr constant [47 x i8] c"androidx/fragment/app/FragmentManagerNonConfig\00", align 1 +@.TypeMapEntry.14226_from = private unnamed_addr constant [70 x i8] c"AndroidX.Fragment.App.FragmentPagerAdapter, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14227_to = private unnamed_addr constant [43 x i8] c"androidx/fragment/app/FragmentPagerAdapter\00", align 1 +@.TypeMapEntry.14228_from = private unnamed_addr constant [77 x i8] c"AndroidX.Fragment.App.FragmentPagerAdapterInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14229_from = private unnamed_addr constant [75 x i8] c"AndroidX.Fragment.App.FragmentStatePagerAdapter, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14230_to = private unnamed_addr constant [48 x i8] c"androidx/fragment/app/FragmentStatePagerAdapter\00", align 1 +@.TypeMapEntry.14231_from = private unnamed_addr constant [82 x i8] c"AndroidX.Fragment.App.FragmentStatePagerAdapterInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14232_from = private unnamed_addr constant [65 x i8] c"AndroidX.Fragment.App.FragmentTabHost, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14233_to = private unnamed_addr constant [38 x i8] c"androidx/fragment/app/FragmentTabHost\00", align 1 +@.TypeMapEntry.14234_from = private unnamed_addr constant [69 x i8] c"AndroidX.Fragment.App.FragmentTransaction, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14235_to = private unnamed_addr constant [42 x i8] c"androidx/fragment/app/FragmentTransaction\00", align 1 +@.TypeMapEntry.14236_from = private unnamed_addr constant [76 x i8] c"AndroidX.Fragment.App.FragmentTransactionInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14237_from = private unnamed_addr constant [75 x i8] c"AndroidX.Fragment.App.FragmentTransactionKt, Xamarin.AndroidX.Fragment.Ktx\00", align 1 +@.TypeMapEntry.14238_to = private unnamed_addr constant [44 x i8] c"androidx/fragment/app/FragmentTransactionKt\00", align 1 +@.TypeMapEntry.14239_from = private unnamed_addr constant [72 x i8] c"AndroidX.Fragment.App.FragmentTransitionImpl, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14240_to = private unnamed_addr constant [45 x i8] c"androidx/fragment/app/FragmentTransitionImpl\00", align 1 +@.TypeMapEntry.14241_from = private unnamed_addr constant [79 x i8] c"AndroidX.Fragment.App.FragmentTransitionImplInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14242_from = private unnamed_addr constant [77 x i8] c"AndroidX.Fragment.App.FragmentViewModelLazyKt, Xamarin.AndroidX.Fragment.Ktx\00", align 1 +@.TypeMapEntry.14243_to = private unnamed_addr constant [46 x i8] c"androidx/fragment/app/FragmentViewModelLazyKt\00", align 1 +@.TypeMapEntry.14244_from = private unnamed_addr constant [75 x i8] c"AndroidX.Fragment.App.IFragmentOnAttachListener, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14245_to = private unnamed_addr constant [47 x i8] c"androidx/fragment/app/FragmentOnAttachListener\00", align 1 +@.TypeMapEntry.14246_from = private unnamed_addr constant [86 x i8] c"AndroidX.Fragment.App.IFragmentOnAttachListenerImplementor, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14247_to = private unnamed_addr constant [63 x i8] c"mono/androidx/fragment/app/FragmentOnAttachListenerImplementor\00", align 1 +@.TypeMapEntry.14248_from = private unnamed_addr constant [82 x i8] c"AndroidX.Fragment.App.IFragmentOnAttachListenerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14249_from = private unnamed_addr constant [73 x i8] c"AndroidX.Fragment.App.IFragmentResultListener, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14250_to = private unnamed_addr constant [45 x i8] c"androidx/fragment/app/FragmentResultListener\00", align 1 +@.TypeMapEntry.14251_from = private unnamed_addr constant [84 x i8] c"AndroidX.Fragment.App.IFragmentResultListenerImplementor, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14252_to = private unnamed_addr constant [61 x i8] c"mono/androidx/fragment/app/FragmentResultListenerImplementor\00", align 1 +@.TypeMapEntry.14253_from = private unnamed_addr constant [80 x i8] c"AndroidX.Fragment.App.IFragmentResultListenerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14254_from = private unnamed_addr constant [70 x i8] c"AndroidX.Fragment.App.IFragmentResultOwner, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14255_to = private unnamed_addr constant [42 x i8] c"androidx/fragment/app/FragmentResultOwner\00", align 1 +@.TypeMapEntry.14256_from = private unnamed_addr constant [77 x i8] c"AndroidX.Fragment.App.IFragmentResultOwnerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14257_from = private unnamed_addr constant [72 x i8] c"AndroidX.Fragment.App.IPredictiveBackControl, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14258_to = private unnamed_addr constant [44 x i8] c"androidx/fragment/app/PredictiveBackControl\00", align 1 +@.TypeMapEntry.14259_from = private unnamed_addr constant [79 x i8] c"AndroidX.Fragment.App.IPredictiveBackControlInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14260_from = private unnamed_addr constant [62 x i8] c"AndroidX.Fragment.App.ListFragment, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14261_to = private unnamed_addr constant [35 x i8] c"androidx/fragment/app/ListFragment\00", align 1 +@.TypeMapEntry.14262_from = private unnamed_addr constant [83 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentReuseViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14263_to = private unnamed_addr constant [56 x i8] c"androidx/fragment/app/strictmode/FragmentReuseViolation\00", align 1 +@.TypeMapEntry.14264_from = private unnamed_addr constant [100 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListener, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14265_to = private unnamed_addr constant [72 x i8] c"androidx/fragment/app/strictmode/FragmentStrictMode$OnViolationListener\00", align 1 +@.TypeMapEntry.14266_from = private unnamed_addr constant [111 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListenerImplementor, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14267_to = private unnamed_addr constant [88 x i8] c"mono/androidx/fragment/app/strictmode/FragmentStrictMode_OnViolationListenerImplementor\00", align 1 +@.TypeMapEntry.14268_from = private unnamed_addr constant [107 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode+IOnViolationListenerInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14269_from = private unnamed_addr constant [94 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode+Policy+Builder, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14270_to = private unnamed_addr constant [67 x i8] c"androidx/fragment/app/strictmode/FragmentStrictMode$Policy$Builder\00", align 1 +@.TypeMapEntry.14271_from = private unnamed_addr constant [86 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode+Policy, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14272_to = private unnamed_addr constant [59 x i8] c"androidx/fragment/app/strictmode/FragmentStrictMode$Policy\00", align 1 +@.TypeMapEntry.14273_from = private unnamed_addr constant [79 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentStrictMode, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14274_to = private unnamed_addr constant [52 x i8] c"androidx/fragment/app/strictmode/FragmentStrictMode\00", align 1 +@.TypeMapEntry.14275_from = private unnamed_addr constant [86 x i8] c"AndroidX.Fragment.App.StrictMode.FragmentTagUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14276_to = private unnamed_addr constant [59 x i8] c"androidx/fragment/app/strictmode/FragmentTagUsageViolation\00", align 1 +@.TypeMapEntry.14277_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.StrictMode.GetRetainInstanceUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14278_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/strictmode/GetRetainInstanceUsageViolation\00", align 1 +@.TypeMapEntry.14279_from = private unnamed_addr constant [103 x i8] c"AndroidX.Fragment.App.StrictMode.GetTargetFragmentRequestCodeUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14280_to = private unnamed_addr constant [76 x i8] c"androidx/fragment/app/strictmode/GetTargetFragmentRequestCodeUsageViolation\00", align 1 +@.TypeMapEntry.14281_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.StrictMode.GetTargetFragmentUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14282_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/strictmode/GetTargetFragmentUsageViolation\00", align 1 +@.TypeMapEntry.14283_from = private unnamed_addr constant [89 x i8] c"AndroidX.Fragment.App.StrictMode.RetainInstanceUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14284_to = private unnamed_addr constant [62 x i8] c"androidx/fragment/app/strictmode/RetainInstanceUsageViolation\00", align 1 +@.TypeMapEntry.14285_from = private unnamed_addr constant [96 x i8] c"AndroidX.Fragment.App.StrictMode.RetainInstanceUsageViolationInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14286_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.StrictMode.SetRetainInstanceUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14287_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/strictmode/SetRetainInstanceUsageViolation\00", align 1 +@.TypeMapEntry.14288_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.StrictMode.SetTargetFragmentUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14289_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/strictmode/SetTargetFragmentUsageViolation\00", align 1 +@.TypeMapEntry.14290_from = private unnamed_addr constant [88 x i8] c"AndroidX.Fragment.App.StrictMode.SetUserVisibleHintViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14291_to = private unnamed_addr constant [61 x i8] c"androidx/fragment/app/strictmode/SetUserVisibleHintViolation\00", align 1 +@.TypeMapEntry.14292_from = private unnamed_addr constant [89 x i8] c"AndroidX.Fragment.App.StrictMode.TargetFragmentUsageViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14293_to = private unnamed_addr constant [62 x i8] c"androidx/fragment/app/strictmode/TargetFragmentUsageViolation\00", align 1 +@.TypeMapEntry.14294_from = private unnamed_addr constant [96 x i8] c"AndroidX.Fragment.App.StrictMode.TargetFragmentUsageViolationInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14295_from = private unnamed_addr constant [70 x i8] c"AndroidX.Fragment.App.StrictMode.Violation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14296_to = private unnamed_addr constant [43 x i8] c"androidx/fragment/app/strictmode/Violation\00", align 1 +@.TypeMapEntry.14297_from = private unnamed_addr constant [77 x i8] c"AndroidX.Fragment.App.StrictMode.ViolationInvoker, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14298_from = private unnamed_addr constant [92 x i8] c"AndroidX.Fragment.App.StrictMode.WrongFragmentContainerViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14299_to = private unnamed_addr constant [65 x i8] c"androidx/fragment/app/strictmode/WrongFragmentContainerViolation\00", align 1 +@.TypeMapEntry.14300_from = private unnamed_addr constant [90 x i8] c"AndroidX.Fragment.App.StrictMode.WrongNestedHierarchyViolation, Xamarin.AndroidX.Fragment\00", align 1 +@.TypeMapEntry.14301_to = private unnamed_addr constant [63 x i8] c"androidx/fragment/app/strictmode/WrongNestedHierarchyViolation\00", align 1 +@.TypeMapEntry.14302_from = private unnamed_addr constant [60 x i8] c"AndroidX.Fragment.App.ViewKt, Xamarin.AndroidX.Fragment.Ktx\00", align 1 +@.TypeMapEntry.14303_to = private unnamed_addr constant [29 x i8] c"androidx/fragment/app/ViewKt\00", align 1 +@.TypeMapEntry.14304_from = private unnamed_addr constant [96 x i8] c"AndroidX.Interpolator.View.Animation.FastOutLinearInInterpolator, Xamarin.AndroidX.Interpolator\00", align 1 +@.TypeMapEntry.14305_to = private unnamed_addr constant [65 x i8] c"androidx/interpolator/view/animation/FastOutLinearInInterpolator\00", align 1 +@.TypeMapEntry.14306_from = private unnamed_addr constant [94 x i8] c"AndroidX.Interpolator.View.Animation.FastOutSlowInInterpolator, Xamarin.AndroidX.Interpolator\00", align 1 +@.TypeMapEntry.14307_to = private unnamed_addr constant [63 x i8] c"androidx/interpolator/view/animation/FastOutSlowInInterpolator\00", align 1 +@.TypeMapEntry.14308_from = private unnamed_addr constant [96 x i8] c"AndroidX.Interpolator.View.Animation.LinearOutSlowInInterpolator, Xamarin.AndroidX.Interpolator\00", align 1 +@.TypeMapEntry.14309_to = private unnamed_addr constant [65 x i8] c"androidx/interpolator/view/animation/LinearOutSlowInInterpolator\00", align 1 +@.TypeMapEntry.14310_from = private unnamed_addr constant [92 x i8] c"AndroidX.Interpolator.View.Animation.LookupTableInterpolator, Xamarin.AndroidX.Interpolator\00", align 1 +@.TypeMapEntry.14311_to = private unnamed_addr constant [61 x i8] c"androidx/interpolator/view/animation/LookupTableInterpolator\00", align 1 +@.TypeMapEntry.14312_from = private unnamed_addr constant [99 x i8] c"AndroidX.Interpolator.View.Animation.LookupTableInterpolatorInvoker, Xamarin.AndroidX.Interpolator\00", align 1 +@.TypeMapEntry.14313_from = private unnamed_addr constant [102 x i8] c"AndroidX.Lifecycle.AbstractSavedStateViewModelFactory, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14314_to = private unnamed_addr constant [54 x i8] c"androidx/lifecycle/AbstractSavedStateViewModelFactory\00", align 1 +@.TypeMapEntry.14315_from = private unnamed_addr constant [109 x i8] c"AndroidX.Lifecycle.AbstractSavedStateViewModelFactoryInvoker, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14316_from = private unnamed_addr constant [82 x i8] c"AndroidX.Lifecycle.AndroidViewModel, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14317_to = private unnamed_addr constant [36 x i8] c"androidx/lifecycle/AndroidViewModel\00", align 1 +@.TypeMapEntry.14318_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.CompositeGeneratedAdaptersObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14319_to = private unnamed_addr constant [54 x i8] c"androidx/lifecycle/CompositeGeneratedAdaptersObserver\00", align 1 +@.TypeMapEntry.14320_from = private unnamed_addr constant [75 x i8] c"AndroidX.Lifecycle.ComputableLiveData, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14321_to = private unnamed_addr constant [38 x i8] c"androidx/lifecycle/ComputableLiveData\00", align 1 +@.TypeMapEntry.14322_from = private unnamed_addr constant [82 x i8] c"AndroidX.Lifecycle.ComputableLiveDataInvoker, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14323_from = private unnamed_addr constant [76 x i8] c"AndroidX.Lifecycle.CoroutineLiveDataKt, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14324_to = private unnamed_addr constant [39 x i8] c"androidx/lifecycle/CoroutineLiveDataKt\00", align 1 +@.TypeMapEntry.14325_from = private unnamed_addr constant [73 x i8] c"AndroidX.Lifecycle.FlowExtKt, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14326_to = private unnamed_addr constant [29 x i8] c"androidx/lifecycle/FlowExtKt\00", align 1 +@.TypeMapEntry.14327_from = private unnamed_addr constant [80 x i8] c"AndroidX.Lifecycle.FlowLiveDataConversions, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14328_to = private unnamed_addr constant [43 x i8] c"androidx/lifecycle/FlowLiveDataConversions\00", align 1 +@.TypeMapEntry.14329_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.IDefaultLifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14330_to = private unnamed_addr constant [44 x i8] c"androidx/lifecycle/DefaultLifecycleObserver\00", align 1 +@.TypeMapEntry.14331_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.IDefaultLifecycleObserverInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14332_from = private unnamed_addr constant [76 x i8] c"AndroidX.Lifecycle.IGeneratedAdapter, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14333_to = private unnamed_addr constant [36 x i8] c"androidx/lifecycle/GeneratedAdapter\00", align 1 +@.TypeMapEntry.14334_from = private unnamed_addr constant [83 x i8] c"AndroidX.Lifecycle.IGeneratedAdapterInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14335_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.IGenericLifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14336_to = private unnamed_addr constant [44 x i8] c"androidx/lifecycle/GenericLifecycleObserver\00", align 1 +@.TypeMapEntry.14337_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.IGenericLifecycleObserverInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14338_from = private unnamed_addr constant [101 x i8] c"AndroidX.Lifecycle.IHasDefaultViewModelProviderFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14339_to = private unnamed_addr constant [54 x i8] c"androidx/lifecycle/HasDefaultViewModelProviderFactory\00", align 1 +@.TypeMapEntry.14340_from = private unnamed_addr constant [108 x i8] c"AndroidX.Lifecycle.IHasDefaultViewModelProviderFactoryInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14341_from = private unnamed_addr constant [82 x i8] c"AndroidX.Lifecycle.ILifecycleEventObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14342_to = private unnamed_addr constant [42 x i8] c"androidx/lifecycle/LifecycleEventObserver\00", align 1 +@.TypeMapEntry.14343_from = private unnamed_addr constant [89 x i8] c"AndroidX.Lifecycle.ILifecycleEventObserverInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14344_from = private unnamed_addr constant [77 x i8] c"AndroidX.Lifecycle.ILifecycleObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14345_to = private unnamed_addr constant [37 x i8] c"androidx/lifecycle/LifecycleObserver\00", align 1 +@.TypeMapEntry.14346_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.ILifecycleObserverInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14347_from = private unnamed_addr constant [74 x i8] c"AndroidX.Lifecycle.ILifecycleOwner, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14348_to = private unnamed_addr constant [34 x i8] c"androidx/lifecycle/LifecycleOwner\00", align 1 +@.TypeMapEntry.14349_from = private unnamed_addr constant [81 x i8] c"AndroidX.Lifecycle.ILifecycleOwnerInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14350_from = private unnamed_addr constant [87 x i8] c"AndroidX.Lifecycle.ILifecycleRegistryOwner, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14351_to = private unnamed_addr constant [42 x i8] c"androidx/lifecycle/LifecycleRegistryOwner\00", align 1 +@.TypeMapEntry.14352_from = private unnamed_addr constant [94 x i8] c"AndroidX.Lifecycle.ILifecycleRegistryOwnerInvoker, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14353_from = private unnamed_addr constant [71 x i8] c"AndroidX.Lifecycle.ILiveDataScope, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14354_to = private unnamed_addr constant [33 x i8] c"androidx/lifecycle/LiveDataScope\00", align 1 +@.TypeMapEntry.14355_from = private unnamed_addr constant [78 x i8] c"AndroidX.Lifecycle.ILiveDataScopeInvoker, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14356_from = private unnamed_addr constant [71 x i8] c"AndroidX.Lifecycle.IObserver, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14357_to = private unnamed_addr constant [28 x i8] c"androidx/lifecycle/Observer\00", align 1 +@.TypeMapEntry.14358_from = private unnamed_addr constant [78 x i8] c"AndroidX.Lifecycle.IObserverInvoker, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14359_from = private unnamed_addr constant [86 x i8] c"AndroidX.Lifecycle.IViewModelStoreOwner, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14360_to = private unnamed_addr constant [39 x i8] c"androidx/lifecycle/ViewModelStoreOwner\00", align 1 +@.TypeMapEntry.14361_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.IViewModelStoreOwnerInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14362_from = private unnamed_addr constant [97 x i8] c"AndroidX.Lifecycle.Lifecycle+Event+Companion+WhenMappings, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14363_to = private unnamed_addr constant [58 x i8] c"androidx/lifecycle/Lifecycle$Event$Companion$WhenMappings\00", align 1 +@.TypeMapEntry.14364_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.Lifecycle+Event+Companion, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14365_to = private unnamed_addr constant [45 x i8] c"androidx/lifecycle/Lifecycle$Event$Companion\00", align 1 +@.TypeMapEntry.14366_from = private unnamed_addr constant [87 x i8] c"AndroidX.Lifecycle.Lifecycle+Event+WhenMappings, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14367_to = private unnamed_addr constant [48 x i8] c"androidx/lifecycle/Lifecycle$Event$WhenMappings\00", align 1 +@.TypeMapEntry.14368_from = private unnamed_addr constant [74 x i8] c"AndroidX.Lifecycle.Lifecycle+Event, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14369_to = private unnamed_addr constant [35 x i8] c"androidx/lifecycle/Lifecycle$Event\00", align 1 +@.TypeMapEntry.14370_from = private unnamed_addr constant [74 x i8] c"AndroidX.Lifecycle.Lifecycle+State, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14371_to = private unnamed_addr constant [35 x i8] c"androidx/lifecycle/Lifecycle$State\00", align 1 +@.TypeMapEntry.14372_from = private unnamed_addr constant [68 x i8] c"AndroidX.Lifecycle.Lifecycle, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14373_to = private unnamed_addr constant [29 x i8] c"androidx/lifecycle/Lifecycle\00", align 1 +@.TypeMapEntry.14374_from = private unnamed_addr constant [82 x i8] c"AndroidX.Lifecycle.LifecycleCoroutineScope, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14375_to = private unnamed_addr constant [43 x i8] c"androidx/lifecycle/LifecycleCoroutineScope\00", align 1 +@.TypeMapEntry.14376_from = private unnamed_addr constant [89 x i8] c"AndroidX.Lifecycle.LifecycleCoroutineScopeInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14377_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.LifecycleDestroyedException, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14378_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/LifecycleDestroyedException\00", align 1 +@.TypeMapEntry.14379_from = private unnamed_addr constant [75 x i8] c"AndroidX.Lifecycle.LifecycleInvoker, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14380_from = private unnamed_addr constant [70 x i8] c"AndroidX.Lifecycle.LifecycleKt, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14381_to = private unnamed_addr constant [31 x i8] c"androidx/lifecycle/LifecycleKt\00", align 1 +@.TypeMapEntry.14382_from = private unnamed_addr constant [75 x i8] c"AndroidX.Lifecycle.LifecycleOwnerKt, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14383_to = private unnamed_addr constant [36 x i8] c"androidx/lifecycle/LifecycleOwnerKt\00", align 1 +@.TypeMapEntry.14384_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.LifecycleRegistry+Companion, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14385_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/LifecycleRegistry$Companion\00", align 1 +@.TypeMapEntry.14386_from = private unnamed_addr constant [81 x i8] c"AndroidX.Lifecycle.LifecycleRegistry, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14387_to = private unnamed_addr constant [37 x i8] c"androidx/lifecycle/LifecycleRegistry\00", align 1 +@.TypeMapEntry.14388_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.LifecycleRegistry_androidKt, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14389_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/LifecycleRegistry_androidKt\00", align 1 +@.TypeMapEntry.14390_from = private unnamed_addr constant [74 x i8] c"AndroidX.Lifecycle.Lifecycle_jvmKt, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14391_to = private unnamed_addr constant [35 x i8] c"androidx/lifecycle/Lifecycle_jvmKt\00", align 1 +@.TypeMapEntry.14392_from = private unnamed_addr constant [70 x i8] c"AndroidX.Lifecycle.Lifecycling, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14393_to = private unnamed_addr constant [31 x i8] c"androidx/lifecycle/Lifecycling\00", align 1 +@.TypeMapEntry.14394_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.LiveData+LifecycleBoundObserver, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14395_to = private unnamed_addr constant [51 x i8] c"androidx/lifecycle/LiveData$LifecycleBoundObserver\00", align 1 +@.TypeMapEntry.14396_from = private unnamed_addr constant [86 x i8] c"AndroidX.Lifecycle.LiveData+ObserverWrapper, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14397_to = private unnamed_addr constant [44 x i8] c"androidx/lifecycle/LiveData$ObserverWrapper\00", align 1 +@.TypeMapEntry.14398_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.LiveData+ObserverWrapperInvoker, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14399_from = private unnamed_addr constant [70 x i8] c"AndroidX.Lifecycle.LiveData, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14400_to = private unnamed_addr constant [28 x i8] c"androidx/lifecycle/LiveData\00", align 1 +@.TypeMapEntry.14401_from = private unnamed_addr constant [77 x i8] c"AndroidX.Lifecycle.LiveDataInvoker, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14402_from = private unnamed_addr constant [72 x i8] c"AndroidX.Lifecycle.LiveDataKt, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14403_to = private unnamed_addr constant [30 x i8] c"androidx/lifecycle/LiveDataKt\00", align 1 +@.TypeMapEntry.14404_from = private unnamed_addr constant [73 x i8] c"AndroidX.Lifecycle.MediatorLiveData, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14405_to = private unnamed_addr constant [36 x i8] c"androidx/lifecycle/MediatorLiveData\00", align 1 +@.TypeMapEntry.14406_from = private unnamed_addr constant [76 x i8] c"AndroidX.Lifecycle.MethodCallsLogger, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14407_to = private unnamed_addr constant [37 x i8] c"androidx/lifecycle/MethodCallsLogger\00", align 1 +@.TypeMapEntry.14408_from = private unnamed_addr constant [77 x i8] c"AndroidX.Lifecycle.MutableLiveData, Xamarin.AndroidX.Lifecycle.LiveData.Core\00", align 1 +@.TypeMapEntry.14409_to = private unnamed_addr constant [35 x i8] c"androidx/lifecycle/MutableLiveData\00", align 1 +@.TypeMapEntry.14410_from = private unnamed_addr constant [78 x i8] c"AndroidX.Lifecycle.PausingDispatcherKt, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14411_to = private unnamed_addr constant [39 x i8] c"androidx/lifecycle/PausingDispatcherKt\00", align 1 +@.TypeMapEntry.14412_from = private unnamed_addr constant [83 x i8] c"AndroidX.Lifecycle.ProcessLifecycleInitializer, Xamarin.AndroidX.Lifecycle.Process\00", align 1 +@.TypeMapEntry.14413_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/ProcessLifecycleInitializer\00", align 1 +@.TypeMapEntry.14414_from = private unnamed_addr constant [87 x i8] c"AndroidX.Lifecycle.ProcessLifecycleOwner+Companion, Xamarin.AndroidX.Lifecycle.Process\00", align 1 +@.TypeMapEntry.14415_to = private unnamed_addr constant [51 x i8] c"androidx/lifecycle/ProcessLifecycleOwner$Companion\00", align 1 +@.TypeMapEntry.14416_from = private unnamed_addr constant [77 x i8] c"AndroidX.Lifecycle.ProcessLifecycleOwner, Xamarin.AndroidX.Lifecycle.Process\00", align 1 +@.TypeMapEntry.14417_to = private unnamed_addr constant [41 x i8] c"androidx/lifecycle/ProcessLifecycleOwner\00", align 1 +@.TypeMapEntry.14418_from = private unnamed_addr constant [83 x i8] c"AndroidX.Lifecycle.RepeatOnLifecycleKt, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14419_to = private unnamed_addr constant [39 x i8] c"androidx/lifecycle/RepeatOnLifecycleKt\00", align 1 +@.TypeMapEntry.14420_from = private unnamed_addr constant [88 x i8] c"AndroidX.Lifecycle.ReportFragment+Companion, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14421_to = private unnamed_addr constant [44 x i8] c"androidx/lifecycle/ReportFragment$Companion\00", align 1 +@.TypeMapEntry.14422_from = private unnamed_addr constant [110 x i8] c"AndroidX.Lifecycle.ReportFragment+IActivityInitializationListener, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14423_to = private unnamed_addr constant [65 x i8] c"androidx/lifecycle/ReportFragment$ActivityInitializationListener\00", align 1 +@.TypeMapEntry.14424_from = private unnamed_addr constant [121 x i8] c"AndroidX.Lifecycle.ReportFragment+IActivityInitializationListenerImplementor, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14425_to = private unnamed_addr constant [81 x i8] c"mono/androidx/lifecycle/ReportFragment_ActivityInitializationListenerImplementor\00", align 1 +@.TypeMapEntry.14426_from = private unnamed_addr constant [117 x i8] c"AndroidX.Lifecycle.ReportFragment+IActivityInitializationListenerInvoker, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14427_from = private unnamed_addr constant [78 x i8] c"AndroidX.Lifecycle.ReportFragment, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14428_to = private unnamed_addr constant [34 x i8] c"androidx/lifecycle/ReportFragment\00", align 1 +@.TypeMapEntry.14429_from = private unnamed_addr constant [94 x i8] c"AndroidX.Lifecycle.SavedStateHandle+Companion, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14430_to = private unnamed_addr constant [46 x i8] c"androidx/lifecycle/SavedStateHandle$Companion\00", align 1 +@.TypeMapEntry.14431_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.SavedStateHandle, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14432_to = private unnamed_addr constant [36 x i8] c"androidx/lifecycle/SavedStateHandle\00", align 1 +@.TypeMapEntry.14433_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.SavedStateHandleSupport, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14434_to = private unnamed_addr constant [43 x i8] c"androidx/lifecycle/SavedStateHandleSupport\00", align 1 +@.TypeMapEntry.14435_from = private unnamed_addr constant [94 x i8] c"AndroidX.Lifecycle.SavedStateViewModelFactory, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14436_to = private unnamed_addr constant [46 x i8] c"androidx/lifecycle/SavedStateViewModelFactory\00", align 1 +@.TypeMapEntry.14437_from = private unnamed_addr constant [96 x i8] c"AndroidX.Lifecycle.SavedStateViewModelFactoryKt, Xamarin.AndroidX.Lifecycle.ViewModelSavedState\00", align 1 +@.TypeMapEntry.14438_to = private unnamed_addr constant [48 x i8] c"androidx/lifecycle/SavedStateViewModelFactoryKt\00", align 1 +@.TypeMapEntry.14439_from = private unnamed_addr constant [89 x i8] c"AndroidX.Lifecycle.SingleGeneratedAdapterObserver, Xamarin.AndroidX.Lifecycle.Common.Jvm\00", align 1 +@.TypeMapEntry.14440_to = private unnamed_addr constant [50 x i8] c"androidx/lifecycle/SingleGeneratedAdapterObserver\00", align 1 +@.TypeMapEntry.14441_from = private unnamed_addr constant [72 x i8] c"AndroidX.Lifecycle.Transformations, Xamarin.AndroidX.Lifecycle.LiveData\00", align 1 +@.TypeMapEntry.14442_to = private unnamed_addr constant [35 x i8] c"androidx/lifecycle/Transformations\00", align 1 +@.TypeMapEntry.14443_from = private unnamed_addr constant [70 x i8] c"AndroidX.Lifecycle.ViewKt, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14444_to = private unnamed_addr constant [26 x i8] c"androidx/lifecycle/ViewKt\00", align 1 +@.TypeMapEntry.14445_from = private unnamed_addr constant [75 x i8] c"AndroidX.Lifecycle.ViewModel, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14446_to = private unnamed_addr constant [29 x i8] c"androidx/lifecycle/ViewModel\00", align 1 +@.TypeMapEntry.14447_from = private unnamed_addr constant [82 x i8] c"AndroidX.Lifecycle.ViewModelInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14448_from = private unnamed_addr constant [77 x i8] c"AndroidX.Lifecycle.ViewModelKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14449_to = private unnamed_addr constant [31 x i8] c"androidx/lifecycle/ViewModelKt\00", align 1 +@.TypeMapEntry.14450_from = private unnamed_addr constant [79 x i8] c"AndroidX.Lifecycle.ViewModelLazy, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14451_to = private unnamed_addr constant [33 x i8] c"androidx/lifecycle/ViewModelLazy\00", align 1 +@.TypeMapEntry.14452_from = private unnamed_addr constant [117 x i8] c"AndroidX.Lifecycle.ViewModelProvider+AndroidViewModelFactory+Companion, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14453_to = private unnamed_addr constant [71 x i8] c"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion\00", align 1 +@.TypeMapEntry.14454_from = private unnamed_addr constant [107 x i8] c"AndroidX.Lifecycle.ViewModelProvider+AndroidViewModelFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14455_to = private unnamed_addr constant [61 x i8] c"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory\00", align 1 +@.TypeMapEntry.14456_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.ViewModelProvider+Companion, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14457_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/ViewModelProvider$Companion\00", align 1 +@.TypeMapEntry.14458_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.ViewModelProvider+Factory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14459_to = private unnamed_addr constant [45 x i8] c"androidx/lifecycle/ViewModelProvider$Factory\00", align 1 +@.TypeMapEntry.14460_from = private unnamed_addr constant [100 x i8] c"AndroidX.Lifecycle.ViewModelProvider+FactoryCompanion, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14461_to = private unnamed_addr constant [55 x i8] c"androidx/lifecycle/ViewModelProvider$Factory$Companion\00", align 1 +@.TypeMapEntry.14462_from = private unnamed_addr constant [97 x i8] c"AndroidX.Lifecycle.ViewModelProvider+FactoryConsts, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14463_from = private unnamed_addr constant [92 x i8] c"AndroidX.Lifecycle.ViewModelProvider+IFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14464_from = private unnamed_addr constant [99 x i8] c"AndroidX.Lifecycle.ViewModelProvider+IFactoryInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14465_from = private unnamed_addr constant [112 x i8] c"AndroidX.Lifecycle.ViewModelProvider+NewInstanceFactory+Companion, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14466_to = private unnamed_addr constant [66 x i8] c"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion\00", align 1 +@.TypeMapEntry.14467_from = private unnamed_addr constant [102 x i8] c"AndroidX.Lifecycle.ViewModelProvider+NewInstanceFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14468_to = private unnamed_addr constant [56 x i8] c"androidx/lifecycle/ViewModelProvider$NewInstanceFactory\00", align 1 +@.TypeMapEntry.14469_from = private unnamed_addr constant [100 x i8] c"AndroidX.Lifecycle.ViewModelProvider+OnRequeryFactory, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14470_to = private unnamed_addr constant [54 x i8] c"androidx/lifecycle/ViewModelProvider$OnRequeryFactory\00", align 1 +@.TypeMapEntry.14471_from = private unnamed_addr constant [83 x i8] c"AndroidX.Lifecycle.ViewModelProvider, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14472_to = private unnamed_addr constant [37 x i8] c"androidx/lifecycle/ViewModelProvider\00", align 1 +@.TypeMapEntry.14473_from = private unnamed_addr constant [88 x i8] c"AndroidX.Lifecycle.ViewModelProviderGetKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14474_to = private unnamed_addr constant [42 x i8] c"androidx/lifecycle/ViewModelProviderGetKt\00", align 1 +@.TypeMapEntry.14475_from = private unnamed_addr constant [80 x i8] c"AndroidX.Lifecycle.ViewModelStore, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14476_to = private unnamed_addr constant [34 x i8] c"androidx/lifecycle/ViewModelStore\00", align 1 +@.TypeMapEntry.14477_from = private unnamed_addr constant [97 x i8] c"AndroidX.Lifecycle.ViewModels.CreationExtras+Empty, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14478_to = private unnamed_addr constant [50 x i8] c"androidx/lifecycle/viewmodel/CreationExtras$Empty\00", align 1 +@.TypeMapEntry.14479_from = private unnamed_addr constant [96 x i8] c"AndroidX.Lifecycle.ViewModels.CreationExtras+IKey, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14480_to = private unnamed_addr constant [48 x i8] c"androidx/lifecycle/viewmodel/CreationExtras$Key\00", align 1 +@.TypeMapEntry.14481_from = private unnamed_addr constant [103 x i8] c"AndroidX.Lifecycle.ViewModels.CreationExtras+IKeyInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14482_from = private unnamed_addr constant [91 x i8] c"AndroidX.Lifecycle.ViewModels.CreationExtras, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14483_to = private unnamed_addr constant [44 x i8] c"androidx/lifecycle/viewmodel/CreationExtras\00", align 1 +@.TypeMapEntry.14484_from = private unnamed_addr constant [98 x i8] c"AndroidX.Lifecycle.ViewModels.CreationExtrasInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14485_from = private unnamed_addr constant [97 x i8] c"AndroidX.Lifecycle.ViewModels.IViewModelFactoryDsl, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14486_to = private unnamed_addr constant [49 x i8] c"androidx/lifecycle/viewmodel/ViewModelFactoryDsl\00", align 1 +@.TypeMapEntry.14487_from = private unnamed_addr constant [104 x i8] c"AndroidX.Lifecycle.ViewModels.IViewModelFactoryDslInvoker, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14488_from = private unnamed_addr constant [111 x i8] c"AndroidX.Lifecycle.ViewModels.InitializerViewModelFactoryBuilder, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14489_to = private unnamed_addr constant [64 x i8] c"androidx/lifecycle/viewmodel/InitializerViewModelFactoryBuilder\00", align 1 +@.TypeMapEntry.14490_from = private unnamed_addr constant [106 x i8] c"AndroidX.Lifecycle.ViewModels.InitializerViewModelFactoryKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14491_to = private unnamed_addr constant [59 x i8] c"androidx/lifecycle/viewmodel/InitializerViewModelFactoryKt\00", align 1 +@.TypeMapEntry.14492_from = private unnamed_addr constant [111 x i8] c"AndroidX.Lifecycle.ViewModels.Internal.CloseableCoroutineScopeKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14493_to = private unnamed_addr constant [64 x i8] c"androidx/lifecycle/viewmodel/internal/CloseableCoroutineScopeKt\00", align 1 +@.TypeMapEntry.14494_from = private unnamed_addr constant [106 x i8] c"AndroidX.Lifecycle.ViewModels.Internal.SynchronizedObjectKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14495_to = private unnamed_addr constant [59 x i8] c"androidx/lifecycle/viewmodel/internal/SynchronizedObjectKt\00", align 1 +@.TypeMapEntry.14496_from = private unnamed_addr constant [110 x i8] c"AndroidX.Lifecycle.ViewModels.Internal.SynchronizedObject_jvmKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14497_to = private unnamed_addr constant [63 x i8] c"androidx/lifecycle/viewmodel/internal/SynchronizedObject_jvmKt\00", align 1 +@.TypeMapEntry.14498_from = private unnamed_addr constant [110 x i8] c"AndroidX.Lifecycle.ViewModels.Internal.ViewModelProviders_jvmKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14499_to = private unnamed_addr constant [63 x i8] c"androidx/lifecycle/viewmodel/internal/ViewModelProviders_jvmKt\00", align 1 +@.TypeMapEntry.14500_from = private unnamed_addr constant [98 x i8] c"AndroidX.Lifecycle.ViewModels.MutableCreationExtras, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14501_to = private unnamed_addr constant [51 x i8] c"androidx/lifecycle/viewmodel/MutableCreationExtras\00", align 1 +@.TypeMapEntry.14502_from = private unnamed_addr constant [97 x i8] c"AndroidX.Lifecycle.ViewModels.ViewModelInitializer, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14503_to = private unnamed_addr constant [50 x i8] c"androidx/lifecycle/viewmodel/ViewModelInitializer\00", align 1 +@.TypeMapEntry.14504_from = private unnamed_addr constant [108 x i8] c"AndroidX.Lifecycle.ViewModels.ViewModelProviderImpl_androidKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14505_to = private unnamed_addr constant [61 x i8] c"androidx/lifecycle/viewmodel/ViewModelProviderImpl_androidKt\00", align 1 +@.TypeMapEntry.14506_from = private unnamed_addr constant [86 x i8] c"AndroidX.Lifecycle.ViewTreeLifecycleOwner, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14507_to = private unnamed_addr constant [42 x i8] c"androidx/lifecycle/ViewTreeLifecycleOwner\00", align 1 +@.TypeMapEntry.14508_from = private unnamed_addr constant [85 x i8] c"AndroidX.Lifecycle.ViewTreeViewModelKt, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14509_to = private unnamed_addr constant [39 x i8] c"androidx/lifecycle/ViewTreeViewModelKt\00", align 1 +@.TypeMapEntry.14510_from = private unnamed_addr constant [93 x i8] c"AndroidX.Lifecycle.ViewTreeViewModelStoreOwner, Xamarin.AndroidX.Lifecycle.ViewModel.Android\00", align 1 +@.TypeMapEntry.14511_to = private unnamed_addr constant [47 x i8] c"androidx/lifecycle/ViewTreeViewModelStoreOwner\00", align 1 +@.TypeMapEntry.14512_from = private unnamed_addr constant [84 x i8] c"AndroidX.Lifecycle.WithLifecycleStateKt, Xamarin.AndroidX.Lifecycle.Runtime.Android\00", align 1 +@.TypeMapEntry.14513_to = private unnamed_addr constant [40 x i8] c"androidx/lifecycle/WithLifecycleStateKt\00", align 1 +@.TypeMapEntry.14514_from = private unnamed_addr constant [76 x i8] c"AndroidX.Loader.App.LoaderManager+ILoaderCallbacks, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14515_to = private unnamed_addr constant [50 x i8] c"androidx/loader/app/LoaderManager$LoaderCallbacks\00", align 1 +@.TypeMapEntry.14516_from = private unnamed_addr constant [83 x i8] c"AndroidX.Loader.App.LoaderManager+ILoaderCallbacksInvoker, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14517_from = private unnamed_addr constant [59 x i8] c"AndroidX.Loader.App.LoaderManager, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14518_to = private unnamed_addr constant [34 x i8] c"androidx/loader/app/LoaderManager\00", align 1 +@.TypeMapEntry.14519_from = private unnamed_addr constant [66 x i8] c"AndroidX.Loader.App.LoaderManagerInvoker, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14520_from = private unnamed_addr constant [65 x i8] c"AndroidX.Loader.Content.AsyncTaskLoader, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14521_to = private unnamed_addr constant [40 x i8] c"androidx/loader/content/AsyncTaskLoader\00", align 1 +@.TypeMapEntry.14522_from = private unnamed_addr constant [72 x i8] c"AndroidX.Loader.Content.AsyncTaskLoaderInvoker, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14523_from = private unnamed_addr constant [62 x i8] c"AndroidX.Loader.Content.CursorLoader, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14524_to = private unnamed_addr constant [37 x i8] c"androidx/loader/content/CursorLoader\00", align 1 +@.TypeMapEntry.14525_from = private unnamed_addr constant [81 x i8] c"AndroidX.Loader.Content.Loader+ForceLoadContentObserver, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14526_to = private unnamed_addr constant [56 x i8] c"androidx/loader/content/Loader$ForceLoadContentObserver\00", align 1 +@.TypeMapEntry.14527_from = private unnamed_addr constant [80 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCanceledListener, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14528_to = private unnamed_addr constant [54 x i8] c"androidx/loader/content/Loader$OnLoadCanceledListener\00", align 1 +@.TypeMapEntry.14529_from = private unnamed_addr constant [91 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14530_to = private unnamed_addr constant [70 x i8] c"mono/androidx/loader/content/Loader_OnLoadCanceledListenerImplementor\00", align 1 +@.TypeMapEntry.14531_from = private unnamed_addr constant [87 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCanceledListenerInvoker, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14532_from = private unnamed_addr constant [80 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCompleteListener, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14533_to = private unnamed_addr constant [54 x i8] c"androidx/loader/content/Loader$OnLoadCompleteListener\00", align 1 +@.TypeMapEntry.14534_from = private unnamed_addr constant [91 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14535_to = private unnamed_addr constant [70 x i8] c"mono/androidx/loader/content/Loader_OnLoadCompleteListenerImplementor\00", align 1 +@.TypeMapEntry.14536_from = private unnamed_addr constant [87 x i8] c"AndroidX.Loader.Content.Loader+IOnLoadCompleteListenerInvoker, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14537_from = private unnamed_addr constant [56 x i8] c"AndroidX.Loader.Content.Loader, Xamarin.AndroidX.Loader\00", align 1 +@.TypeMapEntry.14538_to = private unnamed_addr constant [31 x i8] c"androidx/loader/content/Loader\00", align 1 +@.TypeMapEntry.14539_from = private unnamed_addr constant [80 x i8] c"AndroidX.Navigation.ActionOnlyNavDirections, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14540_to = private unnamed_addr constant [44 x i8] c"androidx/navigation/ActionOnlyNavDirections\00", align 1 +@.TypeMapEntry.14541_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.ActivityKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14542_to = private unnamed_addr constant [31 x i8] c"androidx/navigation/ActivityKt\00", align 1 +@.TypeMapEntry.14543_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.ActivityNavArgsLazyKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14544_to = private unnamed_addr constant [42 x i8] c"androidx/navigation/ActivityNavArgsLazyKt\00", align 1 +@.TypeMapEntry.14545_from = private unnamed_addr constant [85 x i8] c"AndroidX.Navigation.ActivityNavigator+Companion, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14546_to = private unnamed_addr constant [48 x i8] c"androidx/navigation/ActivityNavigator$Companion\00", align 1 +@.TypeMapEntry.14547_from = private unnamed_addr constant [87 x i8] c"AndroidX.Navigation.ActivityNavigator+Destination, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14548_to = private unnamed_addr constant [50 x i8] c"androidx/navigation/ActivityNavigator$Destination\00", align 1 +@.TypeMapEntry.14549_from = private unnamed_addr constant [90 x i8] c"AndroidX.Navigation.ActivityNavigator+Extras+Builder, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14550_to = private unnamed_addr constant [53 x i8] c"androidx/navigation/ActivityNavigator$Extras$Builder\00", align 1 +@.TypeMapEntry.14551_from = private unnamed_addr constant [82 x i8] c"AndroidX.Navigation.ActivityNavigator+Extras, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14552_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/ActivityNavigator$Extras\00", align 1 +@.TypeMapEntry.14553_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.ActivityNavigator, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14554_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/ActivityNavigator\00", align 1 +@.TypeMapEntry.14555_from = private unnamed_addr constant [93 x i8] c"AndroidX.Navigation.ActivityNavigatorDestinationBuilder, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14556_to = private unnamed_addr constant [56 x i8] c"androidx/navigation/ActivityNavigatorDestinationBuilder\00", align 1 +@.TypeMapEntry.14557_from = private unnamed_addr constant [95 x i8] c"AndroidX.Navigation.ActivityNavigatorDestinationBuilderKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14558_to = private unnamed_addr constant [58 x i8] c"androidx/navigation/ActivityNavigatorDestinationBuilderKt\00", align 1 +@.TypeMapEntry.14559_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.ActivityNavigatorExtrasKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14560_to = private unnamed_addr constant [46 x i8] c"androidx/navigation/ActivityNavigatorExtrasKt\00", align 1 +@.TypeMapEntry.14561_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.AnimBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14562_to = private unnamed_addr constant [32 x i8] c"androidx/navigation/AnimBuilder\00", align 1 +@.TypeMapEntry.14563_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.CollectionNavType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14564_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/CollectionNavType\00", align 1 +@.TypeMapEntry.14565_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.CollectionNavTypeInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14566_from = private unnamed_addr constant [94 x i8] c"AndroidX.Navigation.Fragment.AbstractListDetailFragment, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14567_to = private unnamed_addr constant [56 x i8] c"androidx/navigation/fragment/AbstractListDetailFragment\00", align 1 +@.TypeMapEntry.14568_from = private unnamed_addr constant [101 x i8] c"AndroidX.Navigation.Fragment.AbstractListDetailFragmentInvoker, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14569_from = private unnamed_addr constant [103 x i8] c"AndroidX.Navigation.Fragment.DialogFragmentNavigator+Destination, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14570_to = private unnamed_addr constant [65 x i8] c"androidx/navigation/fragment/DialogFragmentNavigator$Destination\00", align 1 +@.TypeMapEntry.14571_from = private unnamed_addr constant [91 x i8] c"AndroidX.Navigation.Fragment.DialogFragmentNavigator, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14572_to = private unnamed_addr constant [53 x i8] c"androidx/navigation/fragment/DialogFragmentNavigator\00", align 1 +@.TypeMapEntry.14573_from = private unnamed_addr constant [109 x i8] c"AndroidX.Navigation.Fragment.DialogFragmentNavigatorDestinationBuilder, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14574_to = private unnamed_addr constant [71 x i8] c"androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilder\00", align 1 +@.TypeMapEntry.14575_from = private unnamed_addr constant [111 x i8] c"AndroidX.Navigation.Fragment.DialogFragmentNavigatorDestinationBuilderKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14576_to = private unnamed_addr constant [73 x i8] c"androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilderKt\00", align 1 +@.TypeMapEntry.14577_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.Fragment.FragmentKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14578_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/fragment/FragmentKt\00", align 1 +@.TypeMapEntry.14579_from = private unnamed_addr constant [89 x i8] c"AndroidX.Navigation.Fragment.FragmentNavArgsLazyKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14580_to = private unnamed_addr constant [51 x i8] c"androidx/navigation/fragment/FragmentNavArgsLazyKt\00", align 1 +@.TypeMapEntry.14581_from = private unnamed_addr constant [97 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigator+Destination, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14582_to = private unnamed_addr constant [59 x i8] c"androidx/navigation/fragment/FragmentNavigator$Destination\00", align 1 +@.TypeMapEntry.14583_from = private unnamed_addr constant [100 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigator+Extras+Builder, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14584_to = private unnamed_addr constant [62 x i8] c"androidx/navigation/fragment/FragmentNavigator$Extras$Builder\00", align 1 +@.TypeMapEntry.14585_from = private unnamed_addr constant [92 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigator+Extras, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14586_to = private unnamed_addr constant [54 x i8] c"androidx/navigation/fragment/FragmentNavigator$Extras\00", align 1 +@.TypeMapEntry.14587_from = private unnamed_addr constant [85 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigator, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14588_to = private unnamed_addr constant [47 x i8] c"androidx/navigation/fragment/FragmentNavigator\00", align 1 +@.TypeMapEntry.14589_from = private unnamed_addr constant [103 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigatorDestinationBuilder, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14590_to = private unnamed_addr constant [65 x i8] c"androidx/navigation/fragment/FragmentNavigatorDestinationBuilder\00", align 1 +@.TypeMapEntry.14591_from = private unnamed_addr constant [105 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigatorDestinationBuilderKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14592_to = private unnamed_addr constant [67 x i8] c"androidx/navigation/fragment/FragmentNavigatorDestinationBuilderKt\00", align 1 +@.TypeMapEntry.14593_from = private unnamed_addr constant [93 x i8] c"AndroidX.Navigation.Fragment.FragmentNavigatorExtrasKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14594_to = private unnamed_addr constant [55 x i8] c"androidx/navigation/fragment/FragmentNavigatorExtrasKt\00", align 1 +@.TypeMapEntry.14595_from = private unnamed_addr constant [93 x i8] c"AndroidX.Navigation.Fragment.NavHostFragment+Companion, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14596_to = private unnamed_addr constant [55 x i8] c"androidx/navigation/fragment/NavHostFragment$Companion\00", align 1 +@.TypeMapEntry.14597_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.Fragment.NavHostFragment, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14598_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/fragment/NavHostFragment\00", align 1 +@.TypeMapEntry.14599_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.IFloatingWindow, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14600_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/FloatingWindow\00", align 1 +@.TypeMapEntry.14601_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.IFloatingWindowInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14602_from = private unnamed_addr constant [65 x i8] c"AndroidX.Navigation.INavArgs, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14603_to = private unnamed_addr constant [28 x i8] c"androidx/navigation/NavArgs\00", align 1 +@.TypeMapEntry.14604_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.INavArgsInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14605_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.INavDeepLinkDsl, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14606_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/NavDeepLinkDsl\00", align 1 +@.TypeMapEntry.14607_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.INavDeepLinkDslInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14608_from = private unnamed_addr constant [86 x i8] c"AndroidX.Navigation.INavDeepLinkSaveStateControl, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14609_to = private unnamed_addr constant [48 x i8] c"androidx/navigation/NavDeepLinkSaveStateControl\00", align 1 +@.TypeMapEntry.14610_from = private unnamed_addr constant [93 x i8] c"AndroidX.Navigation.INavDeepLinkSaveStateControlInvoker, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14611_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.INavDestinationDsl, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14612_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavDestinationDsl\00", align 1 +@.TypeMapEntry.14613_from = private unnamed_addr constant [82 x i8] c"AndroidX.Navigation.INavDestinationDslInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14614_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.INavDirections, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14615_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NavDirections\00", align 1 +@.TypeMapEntry.14616_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.INavDirectionsInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14617_from = private unnamed_addr constant [66 x i8] c"AndroidX.Navigation.INavHost, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14618_to = private unnamed_addr constant [28 x i8] c"androidx/navigation/NavHost\00", align 1 +@.TypeMapEntry.14619_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.INavHostInvoker, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14620_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.INavOptionsDsl, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14621_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NavOptionsDsl\00", align 1 +@.TypeMapEntry.14622_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.INavOptionsDslInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14623_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.INavViewModelStoreProvider, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14624_to = private unnamed_addr constant [46 x i8] c"androidx/navigation/NavViewModelStoreProvider\00", align 1 +@.TypeMapEntry.14625_from = private unnamed_addr constant [90 x i8] c"AndroidX.Navigation.INavViewModelStoreProviderInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14626_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.NamedNavArgument, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14627_to = private unnamed_addr constant [37 x i8] c"androidx/navigation/NamedNavArgument\00", align 1 +@.TypeMapEntry.14628_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NamedNavArgumentKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14629_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NamedNavArgumentKt\00", align 1 +@.TypeMapEntry.14630_from = private unnamed_addr constant [66 x i8] c"AndroidX.Navigation.NavAction, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14631_to = private unnamed_addr constant [30 x i8] c"androidx/navigation/NavAction\00", align 1 +@.TypeMapEntry.14632_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.NavActionBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14633_to = private unnamed_addr constant [37 x i8] c"androidx/navigation/NavActionBuilder\00", align 1 +@.TypeMapEntry.14634_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.NavArgsLazy, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14635_to = private unnamed_addr constant [32 x i8] c"androidx/navigation/NavArgsLazy\00", align 1 +@.TypeMapEntry.14636_from = private unnamed_addr constant [70 x i8] c"AndroidX.Navigation.NavArgsLazyKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14637_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NavArgsLazyKt\00", align 1 +@.TypeMapEntry.14638_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavArgument+Builder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14639_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/NavArgument$Builder\00", align 1 +@.TypeMapEntry.14640_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.NavArgument, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14641_to = private unnamed_addr constant [32 x i8] c"androidx/navigation/NavArgument\00", align 1 +@.TypeMapEntry.14642_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NavArgumentBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14643_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NavArgumentBuilder\00", align 1 +@.TypeMapEntry.14644_from = private unnamed_addr constant [70 x i8] c"AndroidX.Navigation.NavArgumentKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14645_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NavArgumentKt\00", align 1 +@.TypeMapEntry.14646_from = private unnamed_addr constant [84 x i8] c"AndroidX.Navigation.NavBackStackEntry+Companion, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14647_to = private unnamed_addr constant [48 x i8] c"androidx/navigation/NavBackStackEntry$Companion\00", align 1 +@.TypeMapEntry.14648_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavBackStackEntry, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14649_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavBackStackEntry\00", align 1 +@.TypeMapEntry.14650_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavBackStackEntryKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14651_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/NavBackStackEntryKt\00", align 1 +@.TypeMapEntry.14652_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.NavController+Companion, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14653_to = private unnamed_addr constant [44 x i8] c"androidx/navigation/NavController$Companion\00", align 1 +@.TypeMapEntry.14654_from = private unnamed_addr constant [101 x i8] c"AndroidX.Navigation.NavController+IOnDestinationChangedListener, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14655_to = private unnamed_addr constant [63 x i8] c"androidx/navigation/NavController$OnDestinationChangedListener\00", align 1 +@.TypeMapEntry.14656_from = private unnamed_addr constant [112 x i8] c"AndroidX.Navigation.NavController+IOnDestinationChangedListenerImplementor, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14657_to = private unnamed_addr constant [79 x i8] c"mono/androidx/navigation/NavController_OnDestinationChangedListenerImplementor\00", align 1 +@.TypeMapEntry.14658_from = private unnamed_addr constant [108 x i8] c"AndroidX.Navigation.NavController+IOnDestinationChangedListenerInvoker, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14659_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.NavController, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14660_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NavController\00", align 1 +@.TypeMapEntry.14661_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.NavControllerKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14662_to = private unnamed_addr constant [36 x i8] c"androidx/navigation/NavControllerKt\00", align 1 +@.TypeMapEntry.14663_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavDeepLink+Builder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14664_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/NavDeepLink$Builder\00", align 1 +@.TypeMapEntry.14665_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.NavDeepLink, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14666_to = private unnamed_addr constant [32 x i8] c"androidx/navigation/NavDeepLink\00", align 1 +@.TypeMapEntry.14667_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavDeepLinkBuilder, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14668_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NavDeepLinkBuilder\00", align 1 +@.TypeMapEntry.14669_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.NavDeepLinkDslBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14670_to = private unnamed_addr constant [42 x i8] c"androidx/navigation/NavDeepLinkDslBuilder\00", align 1 +@.TypeMapEntry.14671_from = private unnamed_addr constant [80 x i8] c"AndroidX.Navigation.NavDeepLinkDslBuilderKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14672_to = private unnamed_addr constant [44 x i8] c"androidx/navigation/NavDeepLinkDslBuilderKt\00", align 1 +@.TypeMapEntry.14673_from = private unnamed_addr constant [93 x i8] c"AndroidX.Navigation.NavDeepLinkRequest+Builder+Companion, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14674_to = private unnamed_addr constant [57 x i8] c"androidx/navigation/NavDeepLinkRequest$Builder$Companion\00", align 1 +@.TypeMapEntry.14675_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.NavDeepLinkRequest+Builder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14676_to = private unnamed_addr constant [47 x i8] c"androidx/navigation/NavDeepLinkRequest$Builder\00", align 1 +@.TypeMapEntry.14677_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NavDeepLinkRequest, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14678_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NavDeepLinkRequest\00", align 1 +@.TypeMapEntry.14679_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.NavDestination+Companion, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14680_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/NavDestination$Companion\00", align 1 +@.TypeMapEntry.14681_from = private unnamed_addr constant [85 x i8] c"AndroidX.Navigation.NavDestination+DeepLinkMatch, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14682_to = private unnamed_addr constant [49 x i8] c"androidx/navigation/NavDestination$DeepLinkMatch\00", align 1 +@.TypeMapEntry.14683_from = private unnamed_addr constant [82 x i8] c"AndroidX.Navigation.NavDestination+IClassType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14684_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/NavDestination$ClassType\00", align 1 +@.TypeMapEntry.14685_from = private unnamed_addr constant [89 x i8] c"AndroidX.Navigation.NavDestination+IClassTypeInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14686_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.NavDestination, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14687_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/NavDestination\00", align 1 +@.TypeMapEntry.14688_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.NavDestinationBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14689_to = private unnamed_addr constant [42 x i8] c"androidx/navigation/NavDestinationBuilder\00", align 1 +@.TypeMapEntry.14690_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NavGraph+Companion, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14691_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NavGraph$Companion\00", align 1 +@.TypeMapEntry.14692_from = private unnamed_addr constant [65 x i8] c"AndroidX.Navigation.NavGraph, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14693_to = private unnamed_addr constant [29 x i8] c"androidx/navigation/NavGraph\00", align 1 +@.TypeMapEntry.14694_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.NavGraphBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14695_to = private unnamed_addr constant [36 x i8] c"androidx/navigation/NavGraphBuilder\00", align 1 +@.TypeMapEntry.14696_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavGraphBuilderKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14697_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavGraphBuilderKt\00", align 1 +@.TypeMapEntry.14698_from = private unnamed_addr constant [67 x i8] c"AndroidX.Navigation.NavGraphKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14699_to = private unnamed_addr constant [31 x i8] c"androidx/navigation/NavGraphKt\00", align 1 +@.TypeMapEntry.14700_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavGraphNavigator, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14701_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavGraphNavigator\00", align 1 +@.TypeMapEntry.14702_from = private unnamed_addr constant [82 x i8] c"AndroidX.Navigation.NavGraphViewModelLazyKt, Xamarin.AndroidX.Navigation.Fragment\00", align 1 +@.TypeMapEntry.14703_to = private unnamed_addr constant [44 x i8] c"androidx/navigation/NavGraphViewModelLazyKt\00", align 1 +@.TypeMapEntry.14704_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NavHostController, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14705_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavHostController\00", align 1 +@.TypeMapEntry.14706_from = private unnamed_addr constant [67 x i8] c"AndroidX.Navigation.NavHostKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14707_to = private unnamed_addr constant [30 x i8] c"androidx/navigation/NavHostKt\00", align 1 +@.TypeMapEntry.14708_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.NavInflater+Companion, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14709_to = private unnamed_addr constant [42 x i8] c"androidx/navigation/NavInflater$Companion\00", align 1 +@.TypeMapEntry.14710_from = private unnamed_addr constant [69 x i8] c"AndroidX.Navigation.NavInflater, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14711_to = private unnamed_addr constant [32 x i8] c"androidx/navigation/NavInflater\00", align 1 +@.TypeMapEntry.14712_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.NavOptions+Builder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14713_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/NavOptions$Builder\00", align 1 +@.TypeMapEntry.14714_from = private unnamed_addr constant [67 x i8] c"AndroidX.Navigation.NavOptions, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14715_to = private unnamed_addr constant [31 x i8] c"androidx/navigation/NavOptions\00", align 1 +@.TypeMapEntry.14716_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavOptionsBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14717_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavOptionsBuilder\00", align 1 +@.TypeMapEntry.14718_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavOptionsBuilderKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14719_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/NavOptionsBuilderKt\00", align 1 +@.TypeMapEntry.14720_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavType+Companion, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14721_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavType$Companion\00", align 1 +@.TypeMapEntry.14722_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.NavType+EnumType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14723_to = private unnamed_addr constant [37 x i8] c"androidx/navigation/NavType$EnumType\00", align 1 +@.TypeMapEntry.14724_from = private unnamed_addr constant [84 x i8] c"AndroidX.Navigation.NavType+ParcelableArrayType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14725_to = private unnamed_addr constant [48 x i8] c"androidx/navigation/NavType$ParcelableArrayType\00", align 1 +@.TypeMapEntry.14726_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.NavType+ParcelableType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14727_to = private unnamed_addr constant [43 x i8] c"androidx/navigation/NavType$ParcelableType\00", align 1 +@.TypeMapEntry.14728_from = private unnamed_addr constant [86 x i8] c"AndroidX.Navigation.NavType+SerializableArrayType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14729_to = private unnamed_addr constant [50 x i8] c"androidx/navigation/NavType$SerializableArrayType\00", align 1 +@.TypeMapEntry.14730_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.NavType+SerializableType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14731_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/NavType$SerializableType\00", align 1 +@.TypeMapEntry.14732_from = private unnamed_addr constant [64 x i8] c"AndroidX.Navigation.NavType, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14733_to = private unnamed_addr constant [28 x i8] c"androidx/navigation/NavType\00", align 1 +@.TypeMapEntry.14734_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.NavTypeInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14735_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.Navigation, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14736_to = private unnamed_addr constant [31 x i8] c"androidx/navigation/Navigation\00", align 1 +@.TypeMapEntry.14737_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.Navigator+IExtras, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14738_to = private unnamed_addr constant [37 x i8] c"androidx/navigation/Navigator$Extras\00", align 1 +@.TypeMapEntry.14739_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.Navigator+IExtrasInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14740_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.Navigator+IName, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14741_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/Navigator$Name\00", align 1 +@.TypeMapEntry.14742_from = private unnamed_addr constant [79 x i8] c"AndroidX.Navigation.Navigator+INameInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14743_from = private unnamed_addr constant [66 x i8] c"AndroidX.Navigation.Navigator, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14744_to = private unnamed_addr constant [30 x i8] c"androidx/navigation/Navigator\00", align 1 +@.TypeMapEntry.14745_from = private unnamed_addr constant [73 x i8] c"AndroidX.Navigation.NavigatorInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14746_from = private unnamed_addr constant [74 x i8] c"AndroidX.Navigation.NavigatorProvider, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14747_to = private unnamed_addr constant [38 x i8] c"androidx/navigation/NavigatorProvider\00", align 1 +@.TypeMapEntry.14748_from = private unnamed_addr constant [76 x i8] c"AndroidX.Navigation.NavigatorProviderKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14749_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/NavigatorProviderKt\00", align 1 +@.TypeMapEntry.14750_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.NavigatorState, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14751_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/NavigatorState\00", align 1 +@.TypeMapEntry.14752_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.NavigatorStateInvoker, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14753_from = private unnamed_addr constant [70 x i8] c"AndroidX.Navigation.NoOpNavigator, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14754_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/NoOpNavigator\00", align 1 +@.TypeMapEntry.14755_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.PopUpToBuilder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14756_to = private unnamed_addr constant [35 x i8] c"androidx/navigation/PopUpToBuilder\00", align 1 +@.TypeMapEntry.14757_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.SavedStateHandleKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14758_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/SavedStateHandleKt\00", align 1 +@.TypeMapEntry.14759_from = private unnamed_addr constant [102 x i8] c"AndroidX.Navigation.Serialization.NavTypeConverterKt+WhenMappings, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14760_to = private unnamed_addr constant [66 x i8] c"androidx/navigation/serialization/NavTypeConverterKt$WhenMappings\00", align 1 +@.TypeMapEntry.14761_from = private unnamed_addr constant [89 x i8] c"AndroidX.Navigation.Serialization.NavTypeConverterKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14762_to = private unnamed_addr constant [53 x i8] c"androidx/navigation/serialization/NavTypeConverterKt\00", align 1 +@.TypeMapEntry.14763_from = private unnamed_addr constant [90 x i8] c"AndroidX.Navigation.Serialization.RouteDeserializerKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14764_to = private unnamed_addr constant [54 x i8] c"androidx/navigation/serialization/RouteDeserializerKt\00", align 1 +@.TypeMapEntry.14765_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.Serialization.RouteEncoder, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14766_to = private unnamed_addr constant [47 x i8] c"androidx/navigation/serialization/RouteEncoder\00", align 1 +@.TypeMapEntry.14767_from = private unnamed_addr constant [88 x i8] c"AndroidX.Navigation.Serialization.RouteSerializerKt, Xamarin.AndroidX.Navigation.Common\00", align 1 +@.TypeMapEntry.14768_to = private unnamed_addr constant [52 x i8] c"androidx/navigation/serialization/RouteSerializerKt\00", align 1 +@.TypeMapEntry.14769_from = private unnamed_addr constant [66 x i8] c"AndroidX.Navigation.UI.ActivityKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14770_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/ui/ActivityKt\00", align 1 +@.TypeMapEntry.14771_from = private unnamed_addr constant [83 x i8] c"AndroidX.Navigation.UI.AppBarConfiguration+Builder, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14772_to = private unnamed_addr constant [51 x i8] c"androidx/navigation/ui/AppBarConfiguration$Builder\00", align 1 +@.TypeMapEntry.14773_from = private unnamed_addr constant [97 x i8] c"AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListener, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14774_to = private unnamed_addr constant [64 x i8] c"androidx/navigation/ui/AppBarConfiguration$OnNavigateUpListener\00", align 1 +@.TypeMapEntry.14775_from = private unnamed_addr constant [108 x i8] c"AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListenerImplementor, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14776_to = private unnamed_addr constant [80 x i8] c"mono/androidx/navigation/ui/AppBarConfiguration_OnNavigateUpListenerImplementor\00", align 1 +@.TypeMapEntry.14777_from = private unnamed_addr constant [104 x i8] c"AndroidX.Navigation.UI.AppBarConfiguration+IOnNavigateUpListenerInvoker, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14778_from = private unnamed_addr constant [75 x i8] c"AndroidX.Navigation.UI.AppBarConfiguration, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14779_to = private unnamed_addr constant [43 x i8] c"androidx/navigation/ui/AppBarConfiguration\00", align 1 +@.TypeMapEntry.14780_from = private unnamed_addr constant [77 x i8] c"AndroidX.Navigation.UI.AppBarConfigurationKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14781_to = private unnamed_addr constant [45 x i8] c"androidx/navigation/ui/AppBarConfigurationKt\00", align 1 +@.TypeMapEntry.14782_from = private unnamed_addr constant [78 x i8] c"AndroidX.Navigation.UI.BottomNavigationViewKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14783_to = private unnamed_addr constant [46 x i8] c"androidx/navigation/ui/BottomNavigationViewKt\00", align 1 +@.TypeMapEntry.14784_from = private unnamed_addr constant [81 x i8] c"AndroidX.Navigation.UI.CollapsingToolbarLayoutKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14785_to = private unnamed_addr constant [49 x i8] c"androidx/navigation/ui/CollapsingToolbarLayoutKt\00", align 1 +@.TypeMapEntry.14786_from = private unnamed_addr constant [85 x i8] c"AndroidX.Navigation.UI.INavigationUiSaveStateControl, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14787_to = private unnamed_addr constant [52 x i8] c"androidx/navigation/ui/NavigationUiSaveStateControl\00", align 1 +@.TypeMapEntry.14788_from = private unnamed_addr constant [92 x i8] c"AndroidX.Navigation.UI.INavigationUiSaveStateControlInvoker, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14789_from = private unnamed_addr constant [66 x i8] c"AndroidX.Navigation.UI.MenuItemKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14790_to = private unnamed_addr constant [34 x i8] c"androidx/navigation/ui/MenuItemKt\00", align 1 +@.TypeMapEntry.14791_from = private unnamed_addr constant [71 x i8] c"AndroidX.Navigation.UI.NavControllerKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14792_to = private unnamed_addr constant [39 x i8] c"androidx/navigation/ui/NavControllerKt\00", align 1 +@.TypeMapEntry.14793_from = private unnamed_addr constant [68 x i8] c"AndroidX.Navigation.UI.NavigationUI, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14794_to = private unnamed_addr constant [36 x i8] c"androidx/navigation/ui/NavigationUI\00", align 1 +@.TypeMapEntry.14795_from = private unnamed_addr constant [72 x i8] c"AndroidX.Navigation.UI.NavigationViewKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14796_to = private unnamed_addr constant [40 x i8] c"androidx/navigation/ui/NavigationViewKt\00", align 1 +@.TypeMapEntry.14797_from = private unnamed_addr constant [65 x i8] c"AndroidX.Navigation.UI.ToolbarKt, Xamarin.AndroidX.Navigation.UI\00", align 1 +@.TypeMapEntry.14798_to = private unnamed_addr constant [33 x i8] c"androidx/navigation/ui/ToolbarKt\00", align 1 +@.TypeMapEntry.14799_from = private unnamed_addr constant [64 x i8] c"AndroidX.Navigation.ViewKt, Xamarin.AndroidX.Navigation.Runtime\00", align 1 +@.TypeMapEntry.14800_to = private unnamed_addr constant [27 x i8] c"androidx/navigation/ViewKt\00", align 1 +@.TypeMapEntry.14801_from = private unnamed_addr constant [99 x i8] c"AndroidX.ProfileInstallers.DeviceProfileWriter, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14802_to = private unnamed_addr constant [46 x i8] c"androidx/profileinstaller/DeviceProfileWriter\00", align 1 +@.TypeMapEntry.14803_from = private unnamed_addr constant [102 x i8] c"AndroidX.ProfileInstallers.ProfileInstallReceiver, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14804_to = private unnamed_addr constant [49 x i8] c"androidx/profileinstaller/ProfileInstallReceiver\00", align 1 +@.TypeMapEntry.14805_from = private unnamed_addr constant [112 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14806_to = private unnamed_addr constant [58 x i8] c"androidx/profileinstaller/ProfileInstaller$DiagnosticCode\00", align 1 +@.TypeMapEntry.14807_from = private unnamed_addr constant [119 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticCodeInvoker, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14808_from = private unnamed_addr constant [117 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticsCallback, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14809_to = private unnamed_addr constant [63 x i8] c"androidx/profileinstaller/ProfileInstaller$DiagnosticsCallback\00", align 1 +@.TypeMapEntry.14810_from = private unnamed_addr constant [124 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IDiagnosticsCallbackInvoker, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14811_from = private unnamed_addr constant [108 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IResultCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14812_to = private unnamed_addr constant [54 x i8] c"androidx/profileinstaller/ProfileInstaller$ResultCode\00", align 1 +@.TypeMapEntry.14813_from = private unnamed_addr constant [115 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller+IResultCodeInvoker, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14814_from = private unnamed_addr constant [96 x i8] c"AndroidX.ProfileInstallers.ProfileInstaller, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14815_to = private unnamed_addr constant [43 x i8] c"androidx/profileinstaller/ProfileInstaller\00", align 1 +@.TypeMapEntry.14816_from = private unnamed_addr constant [114 x i8] c"AndroidX.ProfileInstallers.ProfileInstallerInitializer+Result, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14817_to = private unnamed_addr constant [61 x i8] c"androidx/profileinstaller/ProfileInstallerInitializer$Result\00", align 1 +@.TypeMapEntry.14818_from = private unnamed_addr constant [107 x i8] c"AndroidX.ProfileInstallers.ProfileInstallerInitializer, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14819_to = private unnamed_addr constant [54 x i8] c"androidx/profileinstaller/ProfileInstallerInitializer\00", align 1 +@.TypeMapEntry.14820_from = private unnamed_addr constant [125 x i8] c"AndroidX.ProfileInstallers.ProfileVerifier+CompilationStatus+IResultCode, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14821_to = private unnamed_addr constant [71 x i8] c"androidx/profileinstaller/ProfileVerifier$CompilationStatus$ResultCode\00", align 1 +@.TypeMapEntry.14822_from = private unnamed_addr constant [132 x i8] c"AndroidX.ProfileInstallers.ProfileVerifier+CompilationStatus+IResultCodeInvoker, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14823_from = private unnamed_addr constant [113 x i8] c"AndroidX.ProfileInstallers.ProfileVerifier+CompilationStatus, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14824_to = private unnamed_addr constant [60 x i8] c"androidx/profileinstaller/ProfileVerifier$CompilationStatus\00", align 1 +@.TypeMapEntry.14825_from = private unnamed_addr constant [95 x i8] c"AndroidX.ProfileInstallers.ProfileVerifier, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14826_to = private unnamed_addr constant [42 x i8] c"androidx/profileinstaller/ProfileVerifier\00", align 1 +@.TypeMapEntry.14827_from = private unnamed_addr constant [94 x i8] c"AndroidX.ProfileInstallers.ProfileVersion, Xamarin.AndroidX.ProfileInstaller.ProfileInstaller\00", align 1 +@.TypeMapEntry.14828_to = private unnamed_addr constant [41 x i8] c"androidx/profileinstaller/ProfileVersion\00", align 1 +@.TypeMapEntry.14829_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.AdapterListUpdateCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14830_to = private unnamed_addr constant [55 x i8] c"androidx/recyclerview/widget/AdapterListUpdateCallback\00", align 1 +@.TypeMapEntry.14831_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.AsyncDifferConfig+Builder, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14832_to = private unnamed_addr constant [55 x i8] c"androidx/recyclerview/widget/AsyncDifferConfig$Builder\00", align 1 +@.TypeMapEntry.14833_from = private unnamed_addr constant [78 x i8] c"AndroidX.RecyclerView.Widget.AsyncDifferConfig, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14834_to = private unnamed_addr constant [47 x i8] c"androidx/recyclerview/widget/AsyncDifferConfig\00", align 1 +@.TypeMapEntry.14835_from = private unnamed_addr constant [90 x i8] c"AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14836_to = private unnamed_addr constant [58 x i8] c"androidx/recyclerview/widget/AsyncListDiffer$ListListener\00", align 1 +@.TypeMapEntry.14837_from = private unnamed_addr constant [101 x i8] c"AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListenerImplementor, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14838_to = private unnamed_addr constant [74 x i8] c"mono/androidx/recyclerview/widget/AsyncListDiffer_ListListenerImplementor\00", align 1 +@.TypeMapEntry.14839_from = private unnamed_addr constant [97 x i8] c"AndroidX.RecyclerView.Widget.AsyncListDiffer+IListListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14840_from = private unnamed_addr constant [76 x i8] c"AndroidX.RecyclerView.Widget.AsyncListDiffer, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14841_to = private unnamed_addr constant [45 x i8] c"androidx/recyclerview/widget/AsyncListDiffer\00", align 1 +@.TypeMapEntry.14842_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.AsyncListUtil+DataCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14843_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/AsyncListUtil$DataCallback\00", align 1 +@.TypeMapEntry.14844_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.AsyncListUtil+DataCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14845_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.AsyncListUtil+ViewCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14846_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/AsyncListUtil$ViewCallback\00", align 1 +@.TypeMapEntry.14847_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.AsyncListUtil+ViewCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14848_from = private unnamed_addr constant [74 x i8] c"AndroidX.RecyclerView.Widget.AsyncListUtil, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14849_to = private unnamed_addr constant [43 x i8] c"androidx/recyclerview/widget/AsyncListUtil\00", align 1 +@.TypeMapEntry.14850_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.BatchingListUpdateCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14851_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/BatchingListUpdateCallback\00", align 1 +@.TypeMapEntry.14852_from = private unnamed_addr constant [89 x i8] c"AndroidX.RecyclerView.Widget.ConcatAdapter+Config+Builder, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14853_to = private unnamed_addr constant [58 x i8] c"androidx/recyclerview/widget/ConcatAdapter$Config$Builder\00", align 1 +@.TypeMapEntry.14854_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.ConcatAdapter+Config+StableIdMode, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14855_to = private unnamed_addr constant [63 x i8] c"androidx/recyclerview/widget/ConcatAdapter$Config$StableIdMode\00", align 1 +@.TypeMapEntry.14856_from = private unnamed_addr constant [81 x i8] c"AndroidX.RecyclerView.Widget.ConcatAdapter+Config, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14857_to = private unnamed_addr constant [50 x i8] c"androidx/recyclerview/widget/ConcatAdapter$Config\00", align 1 +@.TypeMapEntry.14858_from = private unnamed_addr constant [74 x i8] c"AndroidX.RecyclerView.Widget.ConcatAdapter, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14859_to = private unnamed_addr constant [43 x i8] c"androidx/recyclerview/widget/ConcatAdapter\00", align 1 +@.TypeMapEntry.14860_from = private unnamed_addr constant [80 x i8] c"AndroidX.RecyclerView.Widget.DefaultItemAnimator, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14861_to = private unnamed_addr constant [49 x i8] c"androidx/recyclerview/widget/DefaultItemAnimator\00", align 1 +@.TypeMapEntry.14862_from = private unnamed_addr constant [78 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil+Callback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14863_to = private unnamed_addr constant [47 x i8] c"androidx/recyclerview/widget/DiffUtil$Callback\00", align 1 +@.TypeMapEntry.14864_from = private unnamed_addr constant [85 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil+CallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14865_from = private unnamed_addr constant [80 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil+DiffResult, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14866_to = private unnamed_addr constant [49 x i8] c"androidx/recyclerview/widget/DiffUtil$DiffResult\00", align 1 +@.TypeMapEntry.14867_from = private unnamed_addr constant [82 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil+ItemCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14868_to = private unnamed_addr constant [51 x i8] c"androidx/recyclerview/widget/DiffUtil$ItemCallback\00", align 1 +@.TypeMapEntry.14869_from = private unnamed_addr constant [89 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil+ItemCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14870_from = private unnamed_addr constant [69 x i8] c"AndroidX.RecyclerView.Widget.DiffUtil, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14871_to = private unnamed_addr constant [38 x i8] c"androidx/recyclerview/widget/DiffUtil\00", align 1 +@.TypeMapEntry.14872_from = private unnamed_addr constant [82 x i8] c"AndroidX.RecyclerView.Widget.DividerItemDecoration, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14873_to = private unnamed_addr constant [51 x i8] c"androidx/recyclerview/widget/DividerItemDecoration\00", align 1 +@.TypeMapEntry.14874_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.GridLayoutManager+DefaultSpanSizeLookup, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14875_to = private unnamed_addr constant [69 x i8] c"androidx/recyclerview/widget/GridLayoutManager$DefaultSpanSizeLookup\00", align 1 +@.TypeMapEntry.14876_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.GridLayoutManager+LayoutParams, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14877_to = private unnamed_addr constant [60 x i8] c"androidx/recyclerview/widget/GridLayoutManager$LayoutParams\00", align 1 +@.TypeMapEntry.14878_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.GridLayoutManager+SpanSizeLookup, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14879_to = private unnamed_addr constant [62 x i8] c"androidx/recyclerview/widget/GridLayoutManager$SpanSizeLookup\00", align 1 +@.TypeMapEntry.14880_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.GridLayoutManager+SpanSizeLookupInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14881_from = private unnamed_addr constant [78 x i8] c"AndroidX.RecyclerView.Widget.GridLayoutManager, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14882_to = private unnamed_addr constant [47 x i8] c"androidx/recyclerview/widget/GridLayoutManager\00", align 1 +@.TypeMapEntry.14883_from = private unnamed_addr constant [77 x i8] c"AndroidX.RecyclerView.Widget.IItemTouchUIUtil, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14884_to = private unnamed_addr constant [45 x i8] c"androidx/recyclerview/widget/ItemTouchUIUtil\00", align 1 +@.TypeMapEntry.14885_from = private unnamed_addr constant [84 x i8] c"AndroidX.RecyclerView.Widget.IItemTouchUIUtilInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14886_from = private unnamed_addr constant [80 x i8] c"AndroidX.RecyclerView.Widget.IListUpdateCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14887_to = private unnamed_addr constant [48 x i8] c"androidx/recyclerview/widget/ListUpdateCallback\00", align 1 +@.TypeMapEntry.14888_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.IListUpdateCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14889_from = private unnamed_addr constant [85 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+Callback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14890_to = private unnamed_addr constant [54 x i8] c"androidx/recyclerview/widget/ItemTouchHelper$Callback\00", align 1 +@.TypeMapEntry.14891_from = private unnamed_addr constant [92 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+CallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14892_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+IViewDropHandler, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14893_to = private unnamed_addr constant [61 x i8] c"androidx/recyclerview/widget/ItemTouchHelper$ViewDropHandler\00", align 1 +@.TypeMapEntry.14894_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+IViewDropHandlerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14895_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+SimpleCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14896_to = private unnamed_addr constant [60 x i8] c"androidx/recyclerview/widget/ItemTouchHelper$SimpleCallback\00", align 1 +@.TypeMapEntry.14897_from = private unnamed_addr constant [98 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper+SimpleCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14898_from = private unnamed_addr constant [76 x i8] c"AndroidX.RecyclerView.Widget.ItemTouchHelper, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14899_to = private unnamed_addr constant [45 x i8] c"androidx/recyclerview/widget/ItemTouchHelper\00", align 1 +@.TypeMapEntry.14900_from = private unnamed_addr constant [72 x i8] c"AndroidX.RecyclerView.Widget.LayoutState, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14901_to = private unnamed_addr constant [41 x i8] c"androidx/recyclerview/widget/LayoutState\00", align 1 +@.TypeMapEntry.14902_from = private unnamed_addr constant [98 x i8] c"AndroidX.RecyclerView.Widget.LinearLayoutManager+LayoutChunkResult, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14903_to = private unnamed_addr constant [67 x i8] c"androidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult\00", align 1 +@.TypeMapEntry.14904_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.LinearLayoutManager+SavedState, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14905_to = private unnamed_addr constant [60 x i8] c"androidx/recyclerview/widget/LinearLayoutManager$SavedState\00", align 1 +@.TypeMapEntry.14906_from = private unnamed_addr constant [80 x i8] c"AndroidX.RecyclerView.Widget.LinearLayoutManager, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14907_to = private unnamed_addr constant [49 x i8] c"androidx/recyclerview/widget/LinearLayoutManager\00", align 1 +@.TypeMapEntry.14908_from = private unnamed_addr constant [81 x i8] c"AndroidX.RecyclerView.Widget.LinearSmoothScroller, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14909_to = private unnamed_addr constant [50 x i8] c"androidx/recyclerview/widget/LinearSmoothScroller\00", align 1 +@.TypeMapEntry.14910_from = private unnamed_addr constant [77 x i8] c"AndroidX.RecyclerView.Widget.LinearSnapHelper, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14911_to = private unnamed_addr constant [46 x i8] c"androidx/recyclerview/widget/LinearSnapHelper\00", align 1 +@.TypeMapEntry.14912_from = private unnamed_addr constant [72 x i8] c"AndroidX.RecyclerView.Widget.ListAdapter, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14913_to = private unnamed_addr constant [41 x i8] c"androidx/recyclerview/widget/ListAdapter\00", align 1 +@.TypeMapEntry.14914_from = private unnamed_addr constant [79 x i8] c"AndroidX.RecyclerView.Widget.ListAdapterInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14915_from = private unnamed_addr constant [78 x i8] c"AndroidX.RecyclerView.Widget.OrientationHelper, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14916_to = private unnamed_addr constant [47 x i8] c"androidx/recyclerview/widget/OrientationHelper\00", align 1 +@.TypeMapEntry.14917_from = private unnamed_addr constant [85 x i8] c"AndroidX.RecyclerView.Widget.OrientationHelperInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14918_from = private unnamed_addr constant [76 x i8] c"AndroidX.RecyclerView.Widget.PagerSnapHelper, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14919_to = private unnamed_addr constant [45 x i8] c"androidx/recyclerview/widget/PagerSnapHelper\00", align 1 +@.TypeMapEntry.14920_from = private unnamed_addr constant [104 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+Adapter+StateRestorationPolicy, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14921_to = private unnamed_addr constant [73 x i8] c"androidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy\00", align 1 +@.TypeMapEntry.14922_from = private unnamed_addr constant [81 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+Adapter, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14923_to = private unnamed_addr constant [50 x i8] c"androidx/recyclerview/widget/RecyclerView$Adapter\00", align 1 +@.TypeMapEntry.14924_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+AdapterDataObserver, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14925_to = private unnamed_addr constant [62 x i8] c"androidx/recyclerview/widget/RecyclerView$AdapterDataObserver\00", align 1 +@.TypeMapEntry.14926_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+AdapterDataObserverInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14927_from = private unnamed_addr constant [88 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+AdapterInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14928_from = private unnamed_addr constant [106 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+EdgeEffectFactory+IEdgeDirection, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14929_to = private unnamed_addr constant [74 x i8] c"androidx/recyclerview/widget/RecyclerView$EdgeEffectFactory$EdgeDirection\00", align 1 +@.TypeMapEntry.14930_from = private unnamed_addr constant [113 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+EdgeEffectFactory+IEdgeDirectionInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14931_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+EdgeEffectFactory, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14932_to = private unnamed_addr constant [60 x i8] c"androidx/recyclerview/widget/RecyclerView$EdgeEffectFactory\00", align 1 +@.TypeMapEntry.14933_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IChildDrawingOrderCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14934_to = private unnamed_addr constant [68 x i8] c"androidx/recyclerview/widget/RecyclerView$ChildDrawingOrderCallback\00", align 1 +@.TypeMapEntry.14935_from = private unnamed_addr constant [107 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IChildDrawingOrderCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14936_from = private unnamed_addr constant [107 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14937_to = private unnamed_addr constant [75 x i8] c"androidx/recyclerview/widget/RecyclerView$OnChildAttachStateChangeListener\00", align 1 +@.TypeMapEntry.14938_from = private unnamed_addr constant [118 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14939_to = private unnamed_addr constant [91 x i8] c"mono/androidx/recyclerview/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.14940_from = private unnamed_addr constant [114 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnChildAttachStateChangeListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14941_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14942_to = private unnamed_addr constant [62 x i8] c"androidx/recyclerview/widget/RecyclerView$OnItemTouchListener\00", align 1 +@.TypeMapEntry.14943_from = private unnamed_addr constant [105 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14944_to = private unnamed_addr constant [78 x i8] c"mono/androidx/recyclerview/widget/RecyclerView_OnItemTouchListenerImplementor\00", align 1 +@.TypeMapEntry.14945_from = private unnamed_addr constant [101 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOnItemTouchListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14946_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOrientation, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14947_to = private unnamed_addr constant [54 x i8] c"androidx/recyclerview/widget/RecyclerView$Orientation\00", align 1 +@.TypeMapEntry.14948_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IOrientationInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14949_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14950_to = private unnamed_addr constant [59 x i8] c"androidx/recyclerview/widget/RecyclerView$RecyclerListener\00", align 1 +@.TypeMapEntry.14951_from = private unnamed_addr constant [102 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14952_to = private unnamed_addr constant [75 x i8] c"mono/androidx/recyclerview/widget/RecyclerView_RecyclerListenerImplementor\00", align 1 +@.TypeMapEntry.14953_from = private unnamed_addr constant [98 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+IRecyclerListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14954_from = private unnamed_addr constant [102 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IAdapterChanges, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14955_to = private unnamed_addr constant [70 x i8] c"androidx/recyclerview/widget/RecyclerView$ItemAnimator$AdapterChanges\00", align 1 +@.TypeMapEntry.14956_from = private unnamed_addr constant [109 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IAdapterChangesInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14957_from = private unnamed_addr constant [116 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14958_to = private unnamed_addr constant [84 x i8] c"androidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemAnimatorFinishedListener\00", align 1 +@.TypeMapEntry.14959_from = private unnamed_addr constant [127 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14960_to = private unnamed_addr constant [100 x i8] c"mono/androidx/recyclerview/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor\00", align 1 +@.TypeMapEntry.14961_from = private unnamed_addr constant [123 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14962_from = private unnamed_addr constant [101 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator+ItemHolderInfo, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14963_to = private unnamed_addr constant [70 x i8] c"androidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo\00", align 1 +@.TypeMapEntry.14964_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimator, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14965_to = private unnamed_addr constant [55 x i8] c"androidx/recyclerview/widget/RecyclerView$ItemAnimator\00", align 1 +@.TypeMapEntry.14966_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemAnimatorInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14967_from = private unnamed_addr constant [88 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemDecoration, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14968_to = private unnamed_addr constant [57 x i8] c"androidx/recyclerview/widget/RecyclerView$ItemDecoration\00", align 1 +@.TypeMapEntry.14969_from = private unnamed_addr constant [95 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ItemDecorationInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14970_from = private unnamed_addr constant [111 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutManager+ILayoutPrefetchRegistry, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14971_to = private unnamed_addr constant [79 x i8] c"androidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry\00", align 1 +@.TypeMapEntry.14972_from = private unnamed_addr constant [118 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutManager+ILayoutPrefetchRegistryInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14973_from = private unnamed_addr constant [98 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutManager+Properties, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14974_to = private unnamed_addr constant [67 x i8] c"androidx/recyclerview/widget/RecyclerView$LayoutManager$Properties\00", align 1 +@.TypeMapEntry.14975_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutManager, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14976_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/RecyclerView$LayoutManager\00", align 1 +@.TypeMapEntry.14977_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutManagerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14978_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+LayoutParams, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14979_to = private unnamed_addr constant [55 x i8] c"androidx/recyclerview/widget/RecyclerView$LayoutParams\00", align 1 +@.TypeMapEntry.14980_from = private unnamed_addr constant [89 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+OnFlingListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14981_to = private unnamed_addr constant [58 x i8] c"androidx/recyclerview/widget/RecyclerView$OnFlingListener\00", align 1 +@.TypeMapEntry.14982_from = private unnamed_addr constant [96 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+OnFlingListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14983_from = private unnamed_addr constant [90 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+OnScrollListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14984_to = private unnamed_addr constant [59 x i8] c"androidx/recyclerview/widget/RecyclerView$OnScrollListener\00", align 1 +@.TypeMapEntry.14985_from = private unnamed_addr constant [97 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+OnScrollListenerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14986_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+RecycledViewPool+ScrapData, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14987_to = private unnamed_addr constant [69 x i8] c"androidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData\00", align 1 +@.TypeMapEntry.14988_from = private unnamed_addr constant [90 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+RecycledViewPool, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14989_to = private unnamed_addr constant [59 x i8] c"androidx/recyclerview/widget/RecyclerView$RecycledViewPool\00", align 1 +@.TypeMapEntry.14990_from = private unnamed_addr constant [82 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+Recycler, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14991_to = private unnamed_addr constant [51 x i8] c"androidx/recyclerview/widget/RecyclerView$Recycler\00", align 1 +@.TypeMapEntry.14992_from = private unnamed_addr constant [84 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SavedState, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14993_to = private unnamed_addr constant [53 x i8] c"androidx/recyclerview/widget/RecyclerView$SavedState\00", align 1 +@.TypeMapEntry.14994_from = private unnamed_addr constant [99 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SimpleOnItemTouchListener, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14995_to = private unnamed_addr constant [68 x i8] c"androidx/recyclerview/widget/RecyclerView$SimpleOnItemTouchListener\00", align 1 +@.TypeMapEntry.14996_from = private unnamed_addr constant [95 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SmoothScroller+Action, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14997_to = private unnamed_addr constant [64 x i8] c"androidx/recyclerview/widget/RecyclerView$SmoothScroller$Action\00", align 1 +@.TypeMapEntry.14998_from = private unnamed_addr constant [110 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SmoothScroller+IScrollVectorProvider, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.14999_to = private unnamed_addr constant [78 x i8] c"androidx/recyclerview/widget/RecyclerView$SmoothScroller$ScrollVectorProvider\00", align 1 +@.TypeMapEntry.15000_from = private unnamed_addr constant [117 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SmoothScroller+IScrollVectorProviderInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15001_from = private unnamed_addr constant [88 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SmoothScroller, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15002_to = private unnamed_addr constant [57 x i8] c"androidx/recyclerview/widget/RecyclerView$SmoothScroller\00", align 1 +@.TypeMapEntry.15003_from = private unnamed_addr constant [95 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+SmoothScrollerInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15004_from = private unnamed_addr constant [79 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+State, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15005_to = private unnamed_addr constant [48 x i8] c"androidx/recyclerview/widget/RecyclerView$State\00", align 1 +@.TypeMapEntry.15006_from = private unnamed_addr constant [92 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ViewCacheExtension, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15007_to = private unnamed_addr constant [61 x i8] c"androidx/recyclerview/widget/RecyclerView$ViewCacheExtension\00", align 1 +@.TypeMapEntry.15008_from = private unnamed_addr constant [99 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ViewCacheExtensionInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15009_from = private unnamed_addr constant [84 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ViewHolder, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15010_to = private unnamed_addr constant [53 x i8] c"androidx/recyclerview/widget/RecyclerView$ViewHolder\00", align 1 +@.TypeMapEntry.15011_from = private unnamed_addr constant [91 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView+ViewHolderInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15012_from = private unnamed_addr constant [73 x i8] c"AndroidX.RecyclerView.Widget.RecyclerView, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15013_to = private unnamed_addr constant [42 x i8] c"androidx/recyclerview/widget/RecyclerView\00", align 1 +@.TypeMapEntry.15014_from = private unnamed_addr constant [107 x i8] c"AndroidX.RecyclerView.Widget.RecyclerViewAccessibilityDelegate+ItemDelegate, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15015_to = private unnamed_addr constant [76 x i8] c"androidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate\00", align 1 +@.TypeMapEntry.15016_from = private unnamed_addr constant [94 x i8] c"AndroidX.RecyclerView.Widget.RecyclerViewAccessibilityDelegate, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15017_to = private unnamed_addr constant [63 x i8] c"androidx/recyclerview/widget/RecyclerViewAccessibilityDelegate\00", align 1 +@.TypeMapEntry.15018_from = private unnamed_addr constant [79 x i8] c"AndroidX.RecyclerView.Widget.SimpleItemAnimator, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15019_to = private unnamed_addr constant [48 x i8] c"androidx/recyclerview/widget/SimpleItemAnimator\00", align 1 +@.TypeMapEntry.15020_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.SimpleItemAnimatorInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15021_from = private unnamed_addr constant [71 x i8] c"AndroidX.RecyclerView.Widget.SnapHelper, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15022_to = private unnamed_addr constant [40 x i8] c"androidx/recyclerview/widget/SnapHelper\00", align 1 +@.TypeMapEntry.15023_from = private unnamed_addr constant [78 x i8] c"AndroidX.RecyclerView.Widget.SnapHelperInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15024_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.SortedList+BatchedCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15025_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/SortedList$BatchedCallback\00", align 1 +@.TypeMapEntry.15026_from = private unnamed_addr constant [80 x i8] c"AndroidX.RecyclerView.Widget.SortedList+Callback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15027_to = private unnamed_addr constant [49 x i8] c"androidx/recyclerview/widget/SortedList$Callback\00", align 1 +@.TypeMapEntry.15028_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.SortedList+CallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15029_from = private unnamed_addr constant [71 x i8] c"AndroidX.RecyclerView.Widget.SortedList, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15030_to = private unnamed_addr constant [40 x i8] c"androidx/recyclerview/widget/SortedList\00", align 1 +@.TypeMapEntry.15031_from = private unnamed_addr constant [86 x i8] c"AndroidX.RecyclerView.Widget.SortedListAdapterCallback, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15032_to = private unnamed_addr constant [55 x i8] c"androidx/recyclerview/widget/SortedListAdapterCallback\00", align 1 +@.TypeMapEntry.15033_from = private unnamed_addr constant [93 x i8] c"AndroidX.RecyclerView.Widget.SortedListAdapterCallbackInvoker, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15034_from = private unnamed_addr constant [100 x i8] c"AndroidX.RecyclerView.Widget.StaggeredGridLayoutManager+LayoutParams, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15035_to = private unnamed_addr constant [69 x i8] c"androidx/recyclerview/widget/StaggeredGridLayoutManager$LayoutParams\00", align 1 +@.TypeMapEntry.15036_from = private unnamed_addr constant [98 x i8] c"AndroidX.RecyclerView.Widget.StaggeredGridLayoutManager+SavedState, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15037_to = private unnamed_addr constant [67 x i8] c"androidx/recyclerview/widget/StaggeredGridLayoutManager$SavedState\00", align 1 +@.TypeMapEntry.15038_from = private unnamed_addr constant [87 x i8] c"AndroidX.RecyclerView.Widget.StaggeredGridLayoutManager, Xamarin.AndroidX.RecyclerView\00", align 1 +@.TypeMapEntry.15039_to = private unnamed_addr constant [56 x i8] c"androidx/recyclerview/widget/StaggeredGridLayoutManager\00", align 1 +@.TypeMapEntry.15040_from = private unnamed_addr constant [116 x i8] c"AndroidX.ResourceInspection.Annotation.IAppCompatShadowedAttributes, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15041_to = private unnamed_addr constant [67 x i8] c"androidx/resourceinspection/annotation/AppCompatShadowedAttributes\00", align 1 +@.TypeMapEntry.15042_from = private unnamed_addr constant [123 x i8] c"AndroidX.ResourceInspection.Annotation.IAppCompatShadowedAttributesInvoker, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15043_from = private unnamed_addr constant [98 x i8] c"AndroidX.ResourceInspection.Annotation.IAttribute, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15044_to = private unnamed_addr constant [49 x i8] c"androidx/resourceinspection/annotation/Attribute\00", align 1 +@.TypeMapEntry.15045_from = private unnamed_addr constant [104 x i8] c"AndroidX.ResourceInspection.Annotation.IAttributeIntMap, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15046_to = private unnamed_addr constant [56 x i8] c"androidx/resourceinspection/annotation/Attribute$IntMap\00", align 1 +@.TypeMapEntry.15047_from = private unnamed_addr constant [111 x i8] c"AndroidX.ResourceInspection.Annotation.IAttributeIntMapInvoker, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15048_from = private unnamed_addr constant [105 x i8] c"AndroidX.ResourceInspection.Annotation.IAttributeInvoker, Xamarin.AndroidX.ResourceInspection.Annotation\00", align 1 +@.TypeMapEntry.15049_from = private unnamed_addr constant [74 x i8] c"AndroidX.SavedState.ISavedStateRegistryOwner, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15050_to = private unnamed_addr constant [44 x i8] c"androidx/savedstate/SavedStateRegistryOwner\00", align 1 +@.TypeMapEntry.15051_from = private unnamed_addr constant [81 x i8] c"AndroidX.SavedState.ISavedStateRegistryOwnerInvoker, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15052_from = private unnamed_addr constant [83 x i8] c"AndroidX.SavedState.SavedStateRegistry+IAutoRecreated, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15053_to = private unnamed_addr constant [53 x i8] c"androidx/savedstate/SavedStateRegistry$AutoRecreated\00", align 1 +@.TypeMapEntry.15054_from = private unnamed_addr constant [90 x i8] c"AndroidX.SavedState.SavedStateRegistry+IAutoRecreatedInvoker, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15055_from = private unnamed_addr constant [88 x i8] c"AndroidX.SavedState.SavedStateRegistry+ISavedStateProvider, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15056_to = private unnamed_addr constant [58 x i8] c"androidx/savedstate/SavedStateRegistry$SavedStateProvider\00", align 1 +@.TypeMapEntry.15057_from = private unnamed_addr constant [95 x i8] c"AndroidX.SavedState.SavedStateRegistry+ISavedStateProviderInvoker, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15058_from = private unnamed_addr constant [68 x i8] c"AndroidX.SavedState.SavedStateRegistry, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15059_to = private unnamed_addr constant [39 x i8] c"androidx/savedstate/SavedStateRegistry\00", align 1 +@.TypeMapEntry.15060_from = private unnamed_addr constant [88 x i8] c"AndroidX.SavedState.SavedStateRegistryController+Companion, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15061_to = private unnamed_addr constant [59 x i8] c"androidx/savedstate/SavedStateRegistryController$Companion\00", align 1 +@.TypeMapEntry.15062_from = private unnamed_addr constant [78 x i8] c"AndroidX.SavedState.SavedStateRegistryController, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15063_to = private unnamed_addr constant [49 x i8] c"androidx/savedstate/SavedStateRegistryController\00", align 1 +@.TypeMapEntry.15064_from = private unnamed_addr constant [71 x i8] c"AndroidX.SavedState.ViewKt, Xamarin.AndroidX.SavedState.SavedState.Ktx\00", align 1 +@.TypeMapEntry.15065_to = private unnamed_addr constant [27 x i8] c"androidx/savedstate/ViewKt\00", align 1 +@.TypeMapEntry.15066_from = private unnamed_addr constant [81 x i8] c"AndroidX.SavedState.ViewTreeSavedStateRegistryOwner, Xamarin.AndroidX.SavedState\00", align 1 +@.TypeMapEntry.15067_to = private unnamed_addr constant [52 x i8] c"androidx/savedstate/ViewTreeSavedStateRegistryOwner\00", align 1 +@.TypeMapEntry.15068_from = private unnamed_addr constant [89 x i8] c"AndroidX.Security.Crypto.EncryptedFile+Builder, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15069_to = private unnamed_addr constant [47 x i8] c"androidx/security/crypto/EncryptedFile$Builder\00", align 1 +@.TypeMapEntry.15070_from = private unnamed_addr constant [102 x i8] c"AndroidX.Security.Crypto.EncryptedFile+FileEncryptionScheme, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15071_to = private unnamed_addr constant [60 x i8] c"androidx/security/crypto/EncryptedFile$FileEncryptionScheme\00", align 1 +@.TypeMapEntry.15072_from = private unnamed_addr constant [81 x i8] c"AndroidX.Security.Crypto.EncryptedFile, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15073_to = private unnamed_addr constant [39 x i8] c"androidx/security/crypto/EncryptedFile\00", align 1 +@.TypeMapEntry.15074_from = private unnamed_addr constant [118 x i8] c"AndroidX.Security.Crypto.EncryptedSharedPreferences+PrefKeyEncryptionScheme, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15075_to = private unnamed_addr constant [76 x i8] c"androidx/security/crypto/EncryptedSharedPreferences$PrefKeyEncryptionScheme\00", align 1 +@.TypeMapEntry.15076_from = private unnamed_addr constant [120 x i8] c"AndroidX.Security.Crypto.EncryptedSharedPreferences+PrefValueEncryptionScheme, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15077_to = private unnamed_addr constant [78 x i8] c"androidx/security/crypto/EncryptedSharedPreferences$PrefValueEncryptionScheme\00", align 1 +@.TypeMapEntry.15078_from = private unnamed_addr constant [94 x i8] c"AndroidX.Security.Crypto.EncryptedSharedPreferences, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15079_to = private unnamed_addr constant [52 x i8] c"androidx/security/crypto/EncryptedSharedPreferences\00", align 1 +@.TypeMapEntry.15080_from = private unnamed_addr constant [85 x i8] c"AndroidX.Security.Crypto.MasterKey+Builder, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15081_to = private unnamed_addr constant [43 x i8] c"androidx/security/crypto/MasterKey$Builder\00", align 1 +@.TypeMapEntry.15082_from = private unnamed_addr constant [87 x i8] c"AndroidX.Security.Crypto.MasterKey+KeyScheme, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15083_to = private unnamed_addr constant [45 x i8] c"androidx/security/crypto/MasterKey$KeyScheme\00", align 1 +@.TypeMapEntry.15084_from = private unnamed_addr constant [77 x i8] c"AndroidX.Security.Crypto.MasterKey, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15085_to = private unnamed_addr constant [35 x i8] c"androidx/security/crypto/MasterKey\00", align 1 +@.TypeMapEntry.15086_from = private unnamed_addr constant [78 x i8] c"AndroidX.Security.Crypto.MasterKeys, Xamarin.AndroidX.Security.SecurityCrypto\00", align 1 +@.TypeMapEntry.15087_to = private unnamed_addr constant [36 x i8] c"androidx/security/crypto/MasterKeys\00", align 1 +@.TypeMapEntry.15088_from = private unnamed_addr constant [108 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListener, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15089_to = private unnamed_addr constant [71 x i8] c"androidx/slidingpanelayout/widget/SlidingPaneLayout$PanelSlideListener\00", align 1 +@.TypeMapEntry.15090_from = private unnamed_addr constant [119 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15091_to = private unnamed_addr constant [87 x i8] c"mono/androidx/slidingpanelayout/widget/SlidingPaneLayout_PanelSlideListenerImplementor\00", align 1 +@.TypeMapEntry.15092_from = private unnamed_addr constant [115 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+IPanelSlideListenerInvoker, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15093_from = private unnamed_addr constant [101 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+LayoutParams, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15094_to = private unnamed_addr constant [65 x i8] c"androidx/slidingpanelayout/widget/SlidingPaneLayout$LayoutParams\00", align 1 +@.TypeMapEntry.15095_from = private unnamed_addr constant [113 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout+SimplePanelSlideListener, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15096_to = private unnamed_addr constant [77 x i8] c"androidx/slidingpanelayout/widget/SlidingPaneLayout$SimplePanelSlideListener\00", align 1 +@.TypeMapEntry.15097_from = private unnamed_addr constant [88 x i8] c"AndroidX.SlidingPaneLayout.Widget.SlidingPaneLayout, Xamarin.AndroidX.SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15098_to = private unnamed_addr constant [52 x i8] c"androidx/slidingpanelayout/widget/SlidingPaneLayout\00", align 1 +@.TypeMapEntry.15099_from = private unnamed_addr constant [73 x i8] c"AndroidX.Startup.AppInitializer, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15100_to = private unnamed_addr constant [32 x i8] c"androidx/startup/AppInitializer\00", align 1 +@.TypeMapEntry.15101_from = private unnamed_addr constant [71 x i8] c"AndroidX.Startup.IInitializer, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15102_to = private unnamed_addr constant [29 x i8] c"androidx/startup/Initializer\00", align 1 +@.TypeMapEntry.15103_from = private unnamed_addr constant [78 x i8] c"AndroidX.Startup.IInitializerInvoker, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15104_from = private unnamed_addr constant [81 x i8] c"AndroidX.Startup.InitializationProvider, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15105_to = private unnamed_addr constant [40 x i8] c"androidx/startup/InitializationProvider\00", align 1 +@.TypeMapEntry.15106_from = private unnamed_addr constant [75 x i8] c"AndroidX.Startup.StartupException, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15107_to = private unnamed_addr constant [34 x i8] c"androidx/startup/StartupException\00", align 1 +@.TypeMapEntry.15108_from = private unnamed_addr constant [72 x i8] c"AndroidX.Startup.StartupLogger, Xamarin.AndroidX.Startup.StartupRuntime\00", align 1 +@.TypeMapEntry.15109_to = private unnamed_addr constant [31 x i8] c"androidx/startup/StartupLogger\00", align 1 +@.TypeMapEntry.15110_from = private unnamed_addr constant [119 x i8] c"AndroidX.SwipeRefreshLayout.Widget.CircularProgressDrawable+IProgressDrawableSize, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15111_to = private unnamed_addr constant [81 x i8] c"androidx/swiperefreshlayout/widget/CircularProgressDrawable$ProgressDrawableSize\00", align 1 +@.TypeMapEntry.15112_from = private unnamed_addr constant [126 x i8] c"AndroidX.SwipeRefreshLayout.Widget.CircularProgressDrawable+IProgressDrawableSizeInvoker, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15113_from = private unnamed_addr constant [97 x i8] c"AndroidX.SwipeRefreshLayout.Widget.CircularProgressDrawable, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15114_to = private unnamed_addr constant [60 x i8] c"androidx/swiperefreshlayout/widget/CircularProgressDrawable\00", align 1 +@.TypeMapEntry.15115_from = private unnamed_addr constant [116 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnChildScrollUpCallback, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15116_to = private unnamed_addr constant [78 x i8] c"androidx/swiperefreshlayout/widget/SwipeRefreshLayout$OnChildScrollUpCallback\00", align 1 +@.TypeMapEntry.15117_from = private unnamed_addr constant [123 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnChildScrollUpCallbackInvoker, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15118_from = private unnamed_addr constant [110 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListener, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15119_to = private unnamed_addr constant [72 x i8] c"androidx/swiperefreshlayout/widget/SwipeRefreshLayout$OnRefreshListener\00", align 1 +@.TypeMapEntry.15120_from = private unnamed_addr constant [121 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15121_to = private unnamed_addr constant [88 x i8] c"mono/androidx/swiperefreshlayout/widget/SwipeRefreshLayout_OnRefreshListenerImplementor\00", align 1 +@.TypeMapEntry.15122_from = private unnamed_addr constant [117 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout+IOnRefreshListenerInvoker, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15123_from = private unnamed_addr constant [91 x i8] c"AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout, Xamarin.AndroidX.SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15124_to = private unnamed_addr constant [54 x i8] c"androidx/swiperefreshlayout/widget/SwipeRefreshLayout\00", align 1 +@.TypeMapEntry.15125_from = private unnamed_addr constant [57 x i8] c"AndroidX.Tracing.Trace, Xamarin.AndroidX.Tracing.Tracing\00", align 1 +@.TypeMapEntry.15126_to = private unnamed_addr constant [23 x i8] c"androidx/tracing/Trace\00", align 1 +@.TypeMapEntry.15127_from = private unnamed_addr constant [60 x i8] c"AndroidX.Transitions.ArcMotion, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15128_to = private unnamed_addr constant [30 x i8] c"androidx/transition/ArcMotion\00", align 1 +@.TypeMapEntry.15129_from = private unnamed_addr constant [65 x i8] c"AndroidX.Transitions.AutoTransition, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15130_to = private unnamed_addr constant [35 x i8] c"androidx/transition/AutoTransition\00", align 1 +@.TypeMapEntry.15131_from = private unnamed_addr constant [63 x i8] c"AndroidX.Transitions.ChangeBounds, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15132_to = private unnamed_addr constant [33 x i8] c"androidx/transition/ChangeBounds\00", align 1 +@.TypeMapEntry.15133_from = private unnamed_addr constant [67 x i8] c"AndroidX.Transitions.ChangeClipBounds, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15134_to = private unnamed_addr constant [37 x i8] c"androidx/transition/ChangeClipBounds\00", align 1 +@.TypeMapEntry.15135_from = private unnamed_addr constant [71 x i8] c"AndroidX.Transitions.ChangeImageTransform, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15136_to = private unnamed_addr constant [41 x i8] c"androidx/transition/ChangeImageTransform\00", align 1 +@.TypeMapEntry.15137_from = private unnamed_addr constant [63 x i8] c"AndroidX.Transitions.ChangeScroll, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15138_to = private unnamed_addr constant [33 x i8] c"androidx/transition/ChangeScroll\00", align 1 +@.TypeMapEntry.15139_from = private unnamed_addr constant [66 x i8] c"AndroidX.Transitions.ChangeTransform, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15140_to = private unnamed_addr constant [36 x i8] c"androidx/transition/ChangeTransform\00", align 1 +@.TypeMapEntry.15141_from = private unnamed_addr constant [70 x i8] c"AndroidX.Transitions.CircularPropagation, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15142_to = private unnamed_addr constant [40 x i8] c"androidx/transition/CircularPropagation\00", align 1 +@.TypeMapEntry.15143_from = private unnamed_addr constant [58 x i8] c"AndroidX.Transitions.Explode, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15144_to = private unnamed_addr constant [28 x i8] c"androidx/transition/Explode\00", align 1 +@.TypeMapEntry.15145_from = private unnamed_addr constant [55 x i8] c"AndroidX.Transitions.Fade, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15146_to = private unnamed_addr constant [25 x i8] c"androidx/transition/Fade\00", align 1 +@.TypeMapEntry.15147_from = private unnamed_addr constant [70 x i8] c"AndroidX.Transitions.FloatArrayEvaluator, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15148_to = private unnamed_addr constant [42 x i8] c"crc64a25b61d9f8ee364f/FloatArrayEvaluator\00", align 1 +@.TypeMapEntry.15149_from = private unnamed_addr constant [76 x i8] c"AndroidX.Transitions.FragmentTransitionSupport, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15150_to = private unnamed_addr constant [46 x i8] c"androidx/transition/FragmentTransitionSupport\00", align 1 +@.TypeMapEntry.15151_from = private unnamed_addr constant [76 x i8] c"AndroidX.Transitions.ITransitionSeekController, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15152_to = private unnamed_addr constant [45 x i8] c"androidx/transition/TransitionSeekController\00", align 1 +@.TypeMapEntry.15153_from = private unnamed_addr constant [83 x i8] c"AndroidX.Transitions.ITransitionSeekControllerInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15154_from = private unnamed_addr constant [61 x i8] c"AndroidX.Transitions.PathMotion, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15155_to = private unnamed_addr constant [31 x i8] c"androidx/transition/PathMotion\00", align 1 +@.TypeMapEntry.15156_from = private unnamed_addr constant [68 x i8] c"AndroidX.Transitions.PathMotionInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15157_from = private unnamed_addr constant [68 x i8] c"AndroidX.Transitions.PatternPathMotion, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15158_to = private unnamed_addr constant [38 x i8] c"androidx/transition/PatternPathMotion\00", align 1 +@.TypeMapEntry.15159_from = private unnamed_addr constant [64 x i8] c"AndroidX.Transitions.RectEvaluator, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15160_to = private unnamed_addr constant [36 x i8] c"crc64a25b61d9f8ee364f/RectEvaluator\00", align 1 +@.TypeMapEntry.15161_from = private unnamed_addr constant [56 x i8] c"AndroidX.Transitions.Scene, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15162_to = private unnamed_addr constant [26 x i8] c"androidx/transition/Scene\00", align 1 +@.TypeMapEntry.15163_from = private unnamed_addr constant [66 x i8] c"AndroidX.Transitions.SidePropagation, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15164_to = private unnamed_addr constant [36 x i8] c"androidx/transition/SidePropagation\00", align 1 +@.TypeMapEntry.15165_from = private unnamed_addr constant [69 x i8] c"AndroidX.Transitions.Slide+IGravityFlag, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15166_to = private unnamed_addr constant [38 x i8] c"androidx/transition/Slide$GravityFlag\00", align 1 +@.TypeMapEntry.15167_from = private unnamed_addr constant [76 x i8] c"AndroidX.Transitions.Slide+IGravityFlagInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15168_from = private unnamed_addr constant [56 x i8] c"AndroidX.Transitions.Slide, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15169_to = private unnamed_addr constant [26 x i8] c"androidx/transition/Slide\00", align 1 +@.TypeMapEntry.15170_from = private unnamed_addr constant [79 x i8] c"AndroidX.Transitions.Transition+EpicenterCallback, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15171_to = private unnamed_addr constant [49 x i8] c"androidx/transition/Transition$EpicenterCallback\00", align 1 +@.TypeMapEntry.15172_from = private unnamed_addr constant [86 x i8] c"AndroidX.Transitions.Transition+EpicenterCallbackInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15173_from = private unnamed_addr constant [73 x i8] c"AndroidX.Transitions.Transition+IMatchOrder, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15174_to = private unnamed_addr constant [42 x i8] c"androidx/transition/Transition$MatchOrder\00", align 1 +@.TypeMapEntry.15175_from = private unnamed_addr constant [80 x i8] c"AndroidX.Transitions.Transition+IMatchOrderInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15176_from = private unnamed_addr constant [81 x i8] c"AndroidX.Transitions.Transition+ITransitionListener, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15177_to = private unnamed_addr constant [50 x i8] c"androidx/transition/Transition$TransitionListener\00", align 1 +@.TypeMapEntry.15178_from = private unnamed_addr constant [92 x i8] c"AndroidX.Transitions.Transition+ITransitionListenerImplementor, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15179_to = private unnamed_addr constant [66 x i8] c"mono/androidx/transition/Transition_TransitionListenerImplementor\00", align 1 +@.TypeMapEntry.15180_from = private unnamed_addr constant [88 x i8] c"AndroidX.Transitions.Transition+ITransitionListenerInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15181_from = private unnamed_addr constant [61 x i8] c"AndroidX.Transitions.Transition, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15182_to = private unnamed_addr constant [31 x i8] c"androidx/transition/Transition\00", align 1 +@.TypeMapEntry.15183_from = private unnamed_addr constant [69 x i8] c"AndroidX.Transitions.TransitionInflater, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15184_to = private unnamed_addr constant [39 x i8] c"androidx/transition/TransitionInflater\00", align 1 +@.TypeMapEntry.15185_from = private unnamed_addr constant [68 x i8] c"AndroidX.Transitions.TransitionInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15186_from = private unnamed_addr constant [76 x i8] c"AndroidX.Transitions.TransitionListenerAdapter, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15187_to = private unnamed_addr constant [46 x i8] c"androidx/transition/TransitionListenerAdapter\00", align 1 +@.TypeMapEntry.15188_from = private unnamed_addr constant [68 x i8] c"AndroidX.Transitions.TransitionManager, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15189_to = private unnamed_addr constant [38 x i8] c"androidx/transition/TransitionManager\00", align 1 +@.TypeMapEntry.15190_from = private unnamed_addr constant [72 x i8] c"AndroidX.Transitions.TransitionPropagation, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15191_to = private unnamed_addr constant [42 x i8] c"androidx/transition/TransitionPropagation\00", align 1 +@.TypeMapEntry.15192_from = private unnamed_addr constant [79 x i8] c"AndroidX.Transitions.TransitionPropagationInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15193_from = private unnamed_addr constant [64 x i8] c"AndroidX.Transitions.TransitionSet, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15194_to = private unnamed_addr constant [34 x i8] c"androidx/transition/TransitionSet\00", align 1 +@.TypeMapEntry.15195_from = private unnamed_addr constant [82 x i8] c"AndroidX.Transitions.TransitionUtils+MatrixEvaluator, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15196_to = private unnamed_addr constant [54 x i8] c"crc64a25b61d9f8ee364f/TransitionUtils_MatrixEvaluator\00", align 1 +@.TypeMapEntry.15197_from = private unnamed_addr constant [66 x i8] c"AndroidX.Transitions.TransitionUtils, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15198_to = private unnamed_addr constant [38 x i8] c"crc64a25b61d9f8ee364f/TransitionUtils\00", align 1 +@.TypeMapEntry.15199_from = private unnamed_addr constant [67 x i8] c"AndroidX.Transitions.TransitionValues, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15200_to = private unnamed_addr constant [37 x i8] c"androidx/transition/TransitionValues\00", align 1 +@.TypeMapEntry.15201_from = private unnamed_addr constant [67 x i8] c"AndroidX.Transitions.Visibility+IMode, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15202_to = private unnamed_addr constant [36 x i8] c"androidx/transition/Visibility$Mode\00", align 1 +@.TypeMapEntry.15203_from = private unnamed_addr constant [74 x i8] c"AndroidX.Transitions.Visibility+IModeInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15204_from = private unnamed_addr constant [61 x i8] c"AndroidX.Transitions.Visibility, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15205_to = private unnamed_addr constant [31 x i8] c"androidx/transition/Visibility\00", align 1 +@.TypeMapEntry.15206_from = private unnamed_addr constant [68 x i8] c"AndroidX.Transitions.VisibilityInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15207_from = private unnamed_addr constant [72 x i8] c"AndroidX.Transitions.VisibilityPropagation, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15208_to = private unnamed_addr constant [42 x i8] c"androidx/transition/VisibilityPropagation\00", align 1 +@.TypeMapEntry.15209_from = private unnamed_addr constant [79 x i8] c"AndroidX.Transitions.VisibilityPropagationInvoker, Xamarin.AndroidX.Transition\00", align 1 +@.TypeMapEntry.15210_from = private unnamed_addr constant [119 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.Animatable2CompatAnimationCallback, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15211_to = private unnamed_addr constant [78 x i8] c"androidx/vectordrawable/graphics/drawable/Animatable2Compat$AnimationCallback\00", align 1 +@.TypeMapEntry.15212_from = private unnamed_addr constant [126 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.Animatable2CompatAnimationCallbackInvoker, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15213_from = private unnamed_addr constant [113 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.AnimatedVectorDrawableCompat, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15214_to = private unnamed_addr constant [71 x i8] c"androidx/vectordrawable/graphics/drawable/AnimatedVectorDrawableCompat\00", align 1 +@.TypeMapEntry.15215_from = private unnamed_addr constant [105 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.AnimationUtilsCompat, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15216_to = private unnamed_addr constant [63 x i8] c"androidx/vectordrawable/graphics/drawable/AnimationUtilsCompat\00", align 1 +@.TypeMapEntry.15217_from = private unnamed_addr constant [107 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.AnimatorInflaterCompat, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15218_to = private unnamed_addr constant [65 x i8] c"androidx/vectordrawable/graphics/drawable/AnimatorInflaterCompat\00", align 1 +@.TypeMapEntry.15219_from = private unnamed_addr constant [98 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.ArgbEvaluator, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15220_to = private unnamed_addr constant [56 x i8] c"androidx/vectordrawable/graphics/drawable/ArgbEvaluator\00", align 1 +@.TypeMapEntry.15221_from = private unnamed_addr constant [103 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.IAnimatable2Compat, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15222_to = private unnamed_addr constant [60 x i8] c"androidx/vectordrawable/graphics/drawable/Animatable2Compat\00", align 1 +@.TypeMapEntry.15223_from = private unnamed_addr constant [110 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.IAnimatable2CompatInvoker, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15224_from = private unnamed_addr constant [107 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.PathInterpolatorCompat, Xamarin.AndroidX.VectorDrawable.Animated\00", align 1 +@.TypeMapEntry.15225_to = private unnamed_addr constant [65 x i8] c"androidx/vectordrawable/graphics/drawable/PathInterpolatorCompat\00", align 1 +@.TypeMapEntry.15226_from = private unnamed_addr constant [96 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.VectorDrawableCommon, Xamarin.AndroidX.VectorDrawable\00", align 1 +@.TypeMapEntry.15227_to = private unnamed_addr constant [63 x i8] c"androidx/vectordrawable/graphics/drawable/VectorDrawableCommon\00", align 1 +@.TypeMapEntry.15228_from = private unnamed_addr constant [103 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.VectorDrawableCommonInvoker, Xamarin.AndroidX.VectorDrawable\00", align 1 +@.TypeMapEntry.15229_from = private unnamed_addr constant [96 x i8] c"AndroidX.VectorDrawable.Graphics.Drawable.VectorDrawableCompat, Xamarin.AndroidX.VectorDrawable\00", align 1 +@.TypeMapEntry.15230_to = private unnamed_addr constant [63 x i8] c"androidx/vectordrawable/graphics/drawable/VectorDrawableCompat\00", align 1 +@.TypeMapEntry.15231_from = private unnamed_addr constant [93 x i8] c"AndroidX.VersionedParcelable.CustomVersionedParcelable, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15232_to = private unnamed_addr constant [55 x i8] c"androidx/versionedparcelable/CustomVersionedParcelable\00", align 1 +@.TypeMapEntry.15233_from = private unnamed_addr constant [100 x i8] c"AndroidX.VersionedParcelable.CustomVersionedParcelableInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15234_from = private unnamed_addr constant [83 x i8] c"AndroidX.VersionedParcelable.INonParcelField, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15235_to = private unnamed_addr constant [44 x i8] c"androidx/versionedparcelable/NonParcelField\00", align 1 +@.TypeMapEntry.15236_from = private unnamed_addr constant [90 x i8] c"AndroidX.VersionedParcelable.INonParcelFieldInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15237_from = private unnamed_addr constant [80 x i8] c"AndroidX.VersionedParcelable.IParcelField, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15238_to = private unnamed_addr constant [41 x i8] c"androidx/versionedparcelable/ParcelField\00", align 1 +@.TypeMapEntry.15239_from = private unnamed_addr constant [87 x i8] c"AndroidX.VersionedParcelable.IParcelFieldInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15240_from = private unnamed_addr constant [88 x i8] c"AndroidX.VersionedParcelable.IVersionedParcelable, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15241_to = private unnamed_addr constant [49 x i8] c"androidx/versionedparcelable/VersionedParcelable\00", align 1 +@.TypeMapEntry.15242_from = private unnamed_addr constant [95 x i8] c"AndroidX.VersionedParcelable.IVersionedParcelableInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15243_from = private unnamed_addr constant [87 x i8] c"AndroidX.VersionedParcelable.IVersionedParcelize, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15244_to = private unnamed_addr constant [48 x i8] c"androidx/versionedparcelable/VersionedParcelize\00", align 1 +@.TypeMapEntry.15245_from = private unnamed_addr constant [94 x i8] c"AndroidX.VersionedParcelable.IVersionedParcelizeInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15246_from = private unnamed_addr constant [78 x i8] c"AndroidX.VersionedParcelable.ParcelImpl, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15247_to = private unnamed_addr constant [40 x i8] c"androidx/versionedparcelable/ParcelImpl\00", align 1 +@.TypeMapEntry.15248_from = private unnamed_addr constant [79 x i8] c"AndroidX.VersionedParcelable.ParcelUtils, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15249_to = private unnamed_addr constant [41 x i8] c"androidx/versionedparcelable/ParcelUtils\00", align 1 +@.TypeMapEntry.15250_from = private unnamed_addr constant [99 x i8] c"AndroidX.VersionedParcelable.VersionedParcel+ParcelException, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15251_to = private unnamed_addr constant [61 x i8] c"androidx/versionedparcelable/VersionedParcel$ParcelException\00", align 1 +@.TypeMapEntry.15252_from = private unnamed_addr constant [83 x i8] c"AndroidX.VersionedParcelable.VersionedParcel, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15253_to = private unnamed_addr constant [45 x i8] c"androidx/versionedparcelable/VersionedParcel\00", align 1 +@.TypeMapEntry.15254_from = private unnamed_addr constant [90 x i8] c"AndroidX.VersionedParcelable.VersionedParcelInvoker, Xamarin.AndroidX.VersionedParcelable\00", align 1 +@.TypeMapEntry.15255_from = private unnamed_addr constant [67 x i8] c"AndroidX.ViewPager.Widget.PagerAdapter, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15256_to = private unnamed_addr constant [39 x i8] c"androidx/viewpager/widget/PagerAdapter\00", align 1 +@.TypeMapEntry.15257_from = private unnamed_addr constant [74 x i8] c"AndroidX.ViewPager.Widget.PagerAdapterInvoker, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15258_from = private unnamed_addr constant [68 x i8] c"AndroidX.ViewPager.Widget.PagerTabStrip, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15259_to = private unnamed_addr constant [40 x i8] c"androidx/viewpager/widget/PagerTabStrip\00", align 1 +@.TypeMapEntry.15260_from = private unnamed_addr constant [70 x i8] c"AndroidX.ViewPager.Widget.PagerTitleStrip, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15261_to = private unnamed_addr constant [42 x i8] c"androidx/viewpager/widget/PagerTitleStrip\00", align 1 +@.TypeMapEntry.15262_from = private unnamed_addr constant [75 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IDecorView, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15263_to = private unnamed_addr constant [46 x i8] c"androidx/viewpager/widget/ViewPager$DecorView\00", align 1 +@.TypeMapEntry.15264_from = private unnamed_addr constant [82 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IDecorViewInvoker, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15265_from = private unnamed_addr constant [89 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListener, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15266_to = private unnamed_addr constant [60 x i8] c"androidx/viewpager/widget/ViewPager$OnAdapterChangeListener\00", align 1 +@.TypeMapEntry.15267_from = private unnamed_addr constant [100 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListenerImplementor, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15268_to = private unnamed_addr constant [76 x i8] c"mono/androidx/viewpager/widget/ViewPager_OnAdapterChangeListenerImplementor\00", align 1 +@.TypeMapEntry.15269_from = private unnamed_addr constant [96 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnAdapterChangeListenerInvoker, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15270_from = private unnamed_addr constant [86 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListener, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15271_to = private unnamed_addr constant [57 x i8] c"androidx/viewpager/widget/ViewPager$OnPageChangeListener\00", align 1 +@.TypeMapEntry.15272_from = private unnamed_addr constant [97 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListenerImplementor, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15273_to = private unnamed_addr constant [73 x i8] c"mono/androidx/viewpager/widget/ViewPager_OnPageChangeListenerImplementor\00", align 1 +@.TypeMapEntry.15274_from = private unnamed_addr constant [93 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IOnPageChangeListenerInvoker, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15275_from = private unnamed_addr constant [81 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IPageTransformer, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15276_to = private unnamed_addr constant [52 x i8] c"androidx/viewpager/widget/ViewPager$PageTransformer\00", align 1 +@.TypeMapEntry.15277_from = private unnamed_addr constant [88 x i8] c"AndroidX.ViewPager.Widget.ViewPager+IPageTransformerInvoker, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15278_from = private unnamed_addr constant [77 x i8] c"AndroidX.ViewPager.Widget.ViewPager+LayoutParams, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15279_to = private unnamed_addr constant [49 x i8] c"androidx/viewpager/widget/ViewPager$LayoutParams\00", align 1 +@.TypeMapEntry.15280_from = private unnamed_addr constant [75 x i8] c"AndroidX.ViewPager.Widget.ViewPager+SavedState, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15281_to = private unnamed_addr constant [47 x i8] c"androidx/viewpager/widget/ViewPager$SavedState\00", align 1 +@.TypeMapEntry.15282_from = private unnamed_addr constant [91 x i8] c"AndroidX.ViewPager.Widget.ViewPager+SimpleOnPageChangeListener, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15283_to = private unnamed_addr constant [63 x i8] c"androidx/viewpager/widget/ViewPager$SimpleOnPageChangeListener\00", align 1 +@.TypeMapEntry.15284_from = private unnamed_addr constant [64 x i8] c"AndroidX.ViewPager.Widget.ViewPager, Xamarin.AndroidX.ViewPager\00", align 1 +@.TypeMapEntry.15285_to = private unnamed_addr constant [36 x i8] c"androidx/viewpager/widget/ViewPager\00", align 1 +@.TypeMapEntry.15286_from = private unnamed_addr constant [127 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListener, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15287_to = private unnamed_addr constant [97 x i8] c"androidx/viewpager2/adapter/FragmentStateAdapter$FragmentTransactionCallback$OnPostEventListener\00", align 1 +@.TypeMapEntry.15288_from = private unnamed_addr constant [138 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListenerImplementor, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15289_to = private unnamed_addr constant [113 x i8] c"mono/androidx/viewpager2/adapter/FragmentStateAdapter_FragmentTransactionCallback_OnPostEventListenerImplementor\00", align 1 +@.TypeMapEntry.15290_from = private unnamed_addr constant [134 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback+IOnPostEventListenerInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15291_from = private unnamed_addr constant [106 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallback, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15292_to = private unnamed_addr constant [77 x i8] c"androidx/viewpager2/adapter/FragmentStateAdapter$FragmentTransactionCallback\00", align 1 +@.TypeMapEntry.15293_from = private unnamed_addr constant [113 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+FragmentTransactionCallbackInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15294_from = private unnamed_addr constant [115 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+IExperimentalFragmentStateAdapterApi, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15295_to = private unnamed_addr constant [85 x i8] c"androidx/viewpager2/adapter/FragmentStateAdapter$ExperimentalFragmentStateAdapterApi\00", align 1 +@.TypeMapEntry.15296_from = private unnamed_addr constant [122 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter+IExperimentalFragmentStateAdapterApiInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15297_from = private unnamed_addr constant [78 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapter, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15298_to = private unnamed_addr constant [49 x i8] c"androidx/viewpager2/adapter/FragmentStateAdapter\00", align 1 +@.TypeMapEntry.15299_from = private unnamed_addr constant [85 x i8] c"AndroidX.ViewPager2.Adapter.FragmentStateAdapterInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15300_from = private unnamed_addr constant [76 x i8] c"AndroidX.ViewPager2.Adapter.FragmentViewHolder, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15301_to = private unnamed_addr constant [47 x i8] c"androidx/viewpager2/adapter/FragmentViewHolder\00", align 1 +@.TypeMapEntry.15302_from = private unnamed_addr constant [74 x i8] c"AndroidX.ViewPager2.Adapter.IStatefulAdapter, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15303_to = private unnamed_addr constant [44 x i8] c"androidx/viewpager2/adapter/StatefulAdapter\00", align 1 +@.TypeMapEntry.15304_from = private unnamed_addr constant [81 x i8] c"AndroidX.ViewPager2.Adapter.IStatefulAdapterInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15305_from = private unnamed_addr constant [81 x i8] c"AndroidX.ViewPager2.Widget.CompositePageTransformer, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15306_to = private unnamed_addr constant [52 x i8] c"androidx/viewpager2/widget/CompositePageTransformer\00", align 1 +@.TypeMapEntry.15307_from = private unnamed_addr constant [78 x i8] c"AndroidX.ViewPager2.Widget.MarginPageTransformer, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15308_to = private unnamed_addr constant [49 x i8] c"androidx/viewpager2/widget/MarginPageTransformer\00", align 1 +@.TypeMapEntry.15309_from = private unnamed_addr constant [87 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IOffscreenPageLimit, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15310_to = private unnamed_addr constant [57 x i8] c"androidx/viewpager2/widget/ViewPager2$OffscreenPageLimit\00", align 1 +@.TypeMapEntry.15311_from = private unnamed_addr constant [94 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IOffscreenPageLimitInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15312_from = private unnamed_addr constant [80 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IOrientation, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15313_to = private unnamed_addr constant [50 x i8] c"androidx/viewpager2/widget/ViewPager2$Orientation\00", align 1 +@.TypeMapEntry.15314_from = private unnamed_addr constant [87 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IOrientationInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15315_from = private unnamed_addr constant [84 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IPageTransformer, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15316_to = private unnamed_addr constant [54 x i8] c"androidx/viewpager2/widget/ViewPager2$PageTransformer\00", align 1 +@.TypeMapEntry.15317_from = private unnamed_addr constant [91 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IPageTransformerInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15318_from = private unnamed_addr constant [80 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IScrollState, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15319_to = private unnamed_addr constant [50 x i8] c"androidx/viewpager2/widget/ViewPager2$ScrollState\00", align 1 +@.TypeMapEntry.15320_from = private unnamed_addr constant [87 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+IScrollStateInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15321_from = private unnamed_addr constant [88 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+OnPageChangeCallback, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15322_to = private unnamed_addr constant [59 x i8] c"androidx/viewpager2/widget/ViewPager2$OnPageChangeCallback\00", align 1 +@.TypeMapEntry.15323_from = private unnamed_addr constant [95 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2+OnPageChangeCallbackInvoker, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15324_from = private unnamed_addr constant [67 x i8] c"AndroidX.ViewPager2.Widget.ViewPager2, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15325_to = private unnamed_addr constant [38 x i8] c"androidx/viewpager2/widget/ViewPager2\00", align 1 +@.TypeMapEntry.15326_from = private unnamed_addr constant [76 x i8] c"AndroidX.ViewPager2.Widget.WindowInsetsApplier, Xamarin.AndroidX.ViewPager2\00", align 1 +@.TypeMapEntry.15327_to = private unnamed_addr constant [47 x i8] c"androidx/viewpager2/widget/WindowInsetsApplier\00", align 1 +@.TypeMapEntry.15328_from = private unnamed_addr constant [68 x i8] c"AndroidX.Window.Area.IWindowAreaController, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15329_to = private unnamed_addr constant [42 x i8] c"androidx/window/area/WindowAreaController\00", align 1 +@.TypeMapEntry.15330_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Area.IWindowAreaControllerDecorator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15331_to = private unnamed_addr constant [51 x i8] c"androidx/window/area/WindowAreaControllerDecorator\00", align 1 +@.TypeMapEntry.15332_from = private unnamed_addr constant [84 x i8] c"AndroidX.Window.Area.IWindowAreaControllerDecoratorInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15333_from = private unnamed_addr constant [75 x i8] c"AndroidX.Window.Area.IWindowAreaControllerInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15334_from = private unnamed_addr constant [85 x i8] c"AndroidX.Window.Area.IWindowAreaPresentationSessionCallback, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15335_to = private unnamed_addr constant [59 x i8] c"androidx/window/area/WindowAreaPresentationSessionCallback\00", align 1 +@.TypeMapEntry.15336_from = private unnamed_addr constant [92 x i8] c"AndroidX.Window.Area.IWindowAreaPresentationSessionCallbackInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15337_from = private unnamed_addr constant [65 x i8] c"AndroidX.Window.Area.IWindowAreaSession, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15338_to = private unnamed_addr constant [39 x i8] c"androidx/window/area/WindowAreaSession\00", align 1 +@.TypeMapEntry.15339_from = private unnamed_addr constant [73 x i8] c"AndroidX.Window.Area.IWindowAreaSessionCallback, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15340_to = private unnamed_addr constant [47 x i8] c"androidx/window/area/WindowAreaSessionCallback\00", align 1 +@.TypeMapEntry.15341_from = private unnamed_addr constant [80 x i8] c"AndroidX.Window.Area.IWindowAreaSessionCallbackInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15342_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Area.IWindowAreaSessionInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15343_from = private unnamed_addr constant [74 x i8] c"AndroidX.Window.Area.IWindowAreaSessionPresenter, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15344_to = private unnamed_addr constant [48 x i8] c"androidx/window/area/WindowAreaSessionPresenter\00", align 1 +@.TypeMapEntry.15345_from = private unnamed_addr constant [81 x i8] c"AndroidX.Window.Area.IWindowAreaSessionPresenterInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15346_from = private unnamed_addr constant [107 x i8] c"AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaPresentationRequirements, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15347_to = private unnamed_addr constant [81 x i8] c"androidx/window/area/reflectionguard/ExtensionWindowAreaPresentationRequirements\00", align 1 +@.TypeMapEntry.15348_from = private unnamed_addr constant [114 x i8] c"AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaPresentationRequirementsInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15349_from = private unnamed_addr constant [101 x i8] c"AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaStatusRequirements, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15350_to = private unnamed_addr constant [75 x i8] c"androidx/window/area/reflectionguard/ExtensionWindowAreaStatusRequirements\00", align 1 +@.TypeMapEntry.15351_from = private unnamed_addr constant [108 x i8] c"AndroidX.Window.Area.ReflectionGuard.IExtensionWindowAreaStatusRequirementsInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15352_from = private unnamed_addr constant [99 x i8] c"AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi2Requirements, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15353_to = private unnamed_addr constant [73 x i8] c"androidx/window/area/reflectionguard/WindowAreaComponentApi2Requirements\00", align 1 +@.TypeMapEntry.15354_from = private unnamed_addr constant [106 x i8] c"AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi2RequirementsInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15355_from = private unnamed_addr constant [99 x i8] c"AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi3Requirements, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15356_to = private unnamed_addr constant [73 x i8] c"androidx/window/area/reflectionguard/WindowAreaComponentApi3Requirements\00", align 1 +@.TypeMapEntry.15357_from = private unnamed_addr constant [106 x i8] c"AndroidX.Window.Area.ReflectionGuard.IWindowAreaComponentApi3RequirementsInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15358_from = private unnamed_addr constant [87 x i8] c"AndroidX.Window.Area.WindowAreaCapability+Operation+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15359_to = private unnamed_addr constant [62 x i8] c"androidx/window/area/WindowAreaCapability$Operation$Companion\00", align 1 +@.TypeMapEntry.15360_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Area.WindowAreaCapability+Operation, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15361_to = private unnamed_addr constant [52 x i8] c"androidx/window/area/WindowAreaCapability$Operation\00", align 1 +@.TypeMapEntry.15362_from = private unnamed_addr constant [84 x i8] c"AndroidX.Window.Area.WindowAreaCapability+Status+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15363_to = private unnamed_addr constant [59 x i8] c"androidx/window/area/WindowAreaCapability$Status$Companion\00", align 1 +@.TypeMapEntry.15364_from = private unnamed_addr constant [74 x i8] c"AndroidX.Window.Area.WindowAreaCapability+Status, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15365_to = private unnamed_addr constant [49 x i8] c"androidx/window/area/WindowAreaCapability$Status\00", align 1 +@.TypeMapEntry.15366_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Area.WindowAreaCapability, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15367_to = private unnamed_addr constant [42 x i8] c"androidx/window/area/WindowAreaCapability\00", align 1 +@.TypeMapEntry.15368_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Area.WindowAreaController, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15369_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Area.WindowAreaControllerCompanion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15370_to = private unnamed_addr constant [52 x i8] c"androidx/window/area/WindowAreaController$Companion\00", align 1 +@.TypeMapEntry.15371_from = private unnamed_addr constant [73 x i8] c"AndroidX.Window.Area.WindowAreaControllerConsts, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15372_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Area.WindowAreaInfo+Type+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15373_to = private unnamed_addr constant [51 x i8] c"androidx/window/area/WindowAreaInfo$Type$Companion\00", align 1 +@.TypeMapEntry.15374_from = private unnamed_addr constant [66 x i8] c"AndroidX.Window.Area.WindowAreaInfo+Type, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15375_to = private unnamed_addr constant [41 x i8] c"androidx/window/area/WindowAreaInfo$Type\00", align 1 +@.TypeMapEntry.15376_from = private unnamed_addr constant [61 x i8] c"AndroidX.Window.Area.WindowAreaInfo, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15377_to = private unnamed_addr constant [36 x i8] c"androidx/window/area/WindowAreaInfo\00", align 1 +@.TypeMapEntry.15378_from = private unnamed_addr constant [69 x i8] c"AndroidX.Window.Core.IExperimentalWindowApi, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15379_to = private unnamed_addr constant [43 x i8] c"androidx/window/core/ExperimentalWindowApi\00", align 1 +@.TypeMapEntry.15380_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Core.IExperimentalWindowApiInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15381_from = private unnamed_addr constant [89 x i8] c"AndroidX.Window.Embedding.ActivityEmbeddingController+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15382_to = private unnamed_addr constant [64 x i8] c"androidx/window/embedding/ActivityEmbeddingController$Companion\00", align 1 +@.TypeMapEntry.15383_from = private unnamed_addr constant [79 x i8] c"AndroidX.Window.Embedding.ActivityEmbeddingController, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15384_to = private unnamed_addr constant [54 x i8] c"androidx/window/embedding/ActivityEmbeddingController\00", align 1 +@.TypeMapEntry.15385_from = private unnamed_addr constant [66 x i8] c"AndroidX.Window.Embedding.ActivityFilter, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15386_to = private unnamed_addr constant [41 x i8] c"androidx/window/embedding/ActivityFilter\00", align 1 +@.TypeMapEntry.15387_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Embedding.ActivityRule+Builder, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15388_to = private unnamed_addr constant [47 x i8] c"androidx/window/embedding/ActivityRule$Builder\00", align 1 +@.TypeMapEntry.15389_from = private unnamed_addr constant [64 x i8] c"AndroidX.Window.Embedding.ActivityRule, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15390_to = private unnamed_addr constant [39 x i8] c"androidx/window/embedding/ActivityRule\00", align 1 +@.TypeMapEntry.15391_from = private unnamed_addr constant [65 x i8] c"AndroidX.Window.Embedding.ActivityStack, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15392_to = private unnamed_addr constant [40 x i8] c"androidx/window/embedding/ActivityStack\00", align 1 +@.TypeMapEntry.15393_from = private unnamed_addr constant [82 x i8] c"AndroidX.Window.Embedding.EmbeddingAspectRatio+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15394_to = private unnamed_addr constant [57 x i8] c"androidx/window/embedding/EmbeddingAspectRatio$Companion\00", align 1 +@.TypeMapEntry.15395_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Embedding.EmbeddingAspectRatio, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15396_to = private unnamed_addr constant [47 x i8] c"androidx/window/embedding/EmbeddingAspectRatio\00", align 1 +@.TypeMapEntry.15397_from = private unnamed_addr constant [68 x i8] c"AndroidX.Window.Embedding.EmbeddingBackend, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15398_to = private unnamed_addr constant [43 x i8] c"androidx/window/embedding/EmbeddingBackend\00", align 1 +@.TypeMapEntry.15399_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Embedding.EmbeddingBackendCompanion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15400_to = private unnamed_addr constant [53 x i8] c"androidx/window/embedding/EmbeddingBackend$Companion\00", align 1 +@.TypeMapEntry.15401_from = private unnamed_addr constant [74 x i8] c"AndroidX.Window.Embedding.EmbeddingBackendConsts, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15402_from = private unnamed_addr constant [65 x i8] c"AndroidX.Window.Embedding.EmbeddingRule, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15403_to = private unnamed_addr constant [40 x i8] c"androidx/window/embedding/EmbeddingRule\00", align 1 +@.TypeMapEntry.15404_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Embedding.EmbeddingRuleInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15405_from = private unnamed_addr constant [69 x i8] c"AndroidX.Window.Embedding.IEmbeddingBackend, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15406_from = private unnamed_addr constant [78 x i8] c"AndroidX.Window.Embedding.IEmbeddingBackendDecorator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15407_to = private unnamed_addr constant [52 x i8] c"androidx/window/embedding/EmbeddingBackendDecorator\00", align 1 +@.TypeMapEntry.15408_from = private unnamed_addr constant [85 x i8] c"AndroidX.Window.Embedding.IEmbeddingBackendDecoratorInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15409_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Embedding.IEmbeddingBackendInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15410_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Embedding.RuleController+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15411_to = private unnamed_addr constant [51 x i8] c"androidx/window/embedding/RuleController$Companion\00", align 1 +@.TypeMapEntry.15412_from = private unnamed_addr constant [66 x i8] c"AndroidX.Window.Embedding.RuleController, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15413_to = private unnamed_addr constant [41 x i8] c"androidx/window/embedding/RuleController\00", align 1 +@.TypeMapEntry.15414_from = private unnamed_addr constant [75 x i8] c"AndroidX.Window.Embedding.SplitAttributes+Builder, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15415_to = private unnamed_addr constant [50 x i8] c"androidx/window/embedding/SplitAttributes$Builder\00", align 1 +@.TypeMapEntry.15416_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Embedding.SplitAttributes+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15417_to = private unnamed_addr constant [52 x i8] c"androidx/window/embedding/SplitAttributes$Companion\00", align 1 +@.TypeMapEntry.15418_from = private unnamed_addr constant [93 x i8] c"AndroidX.Window.Embedding.SplitAttributes+LayoutDirection+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15419_to = private unnamed_addr constant [68 x i8] c"androidx/window/embedding/SplitAttributes$LayoutDirection$Companion\00", align 1 +@.TypeMapEntry.15420_from = private unnamed_addr constant [83 x i8] c"AndroidX.Window.Embedding.SplitAttributes+LayoutDirection, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15421_to = private unnamed_addr constant [58 x i8] c"androidx/window/embedding/SplitAttributes$LayoutDirection\00", align 1 +@.TypeMapEntry.15422_from = private unnamed_addr constant [87 x i8] c"AndroidX.Window.Embedding.SplitAttributes+SplitType+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15423_to = private unnamed_addr constant [62 x i8] c"androidx/window/embedding/SplitAttributes$SplitType$Companion\00", align 1 +@.TypeMapEntry.15424_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Embedding.SplitAttributes+SplitType, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15425_to = private unnamed_addr constant [52 x i8] c"androidx/window/embedding/SplitAttributes$SplitType\00", align 1 +@.TypeMapEntry.15426_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Embedding.SplitAttributes, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15427_to = private unnamed_addr constant [42 x i8] c"androidx/window/embedding/SplitAttributes\00", align 1 +@.TypeMapEntry.15428_from = private unnamed_addr constant [83 x i8] c"AndroidX.Window.Embedding.SplitAttributesCalculatorParams, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15429_to = private unnamed_addr constant [58 x i8] c"androidx/window/embedding/SplitAttributesCalculatorParams\00", align 1 +@.TypeMapEntry.15430_from = private unnamed_addr constant [77 x i8] c"AndroidX.Window.Embedding.SplitController+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15431_to = private unnamed_addr constant [52 x i8] c"androidx/window/embedding/SplitController$Companion\00", align 1 +@.TypeMapEntry.15432_from = private unnamed_addr constant [96 x i8] c"AndroidX.Window.Embedding.SplitController+SplitSupportStatus+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15433_to = private unnamed_addr constant [71 x i8] c"androidx/window/embedding/SplitController$SplitSupportStatus$Companion\00", align 1 +@.TypeMapEntry.15434_from = private unnamed_addr constant [86 x i8] c"AndroidX.Window.Embedding.SplitController+SplitSupportStatus, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15435_to = private unnamed_addr constant [61 x i8] c"androidx/window/embedding/SplitController$SplitSupportStatus\00", align 1 +@.TypeMapEntry.15436_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Embedding.SplitController, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15437_to = private unnamed_addr constant [42 x i8] c"androidx/window/embedding/SplitController\00", align 1 +@.TypeMapEntry.15438_from = private unnamed_addr constant [61 x i8] c"AndroidX.Window.Embedding.SplitInfo, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15439_to = private unnamed_addr constant [36 x i8] c"androidx/window/embedding/SplitInfo\00", align 1 +@.TypeMapEntry.15440_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Embedding.SplitPairFilter, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15441_to = private unnamed_addr constant [42 x i8] c"androidx/window/embedding/SplitPairFilter\00", align 1 +@.TypeMapEntry.15442_from = private unnamed_addr constant [73 x i8] c"AndroidX.Window.Embedding.SplitPairRule+Builder, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15443_to = private unnamed_addr constant [48 x i8] c"androidx/window/embedding/SplitPairRule$Builder\00", align 1 +@.TypeMapEntry.15444_from = private unnamed_addr constant [65 x i8] c"AndroidX.Window.Embedding.SplitPairRule, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15445_to = private unnamed_addr constant [40 x i8] c"androidx/window/embedding/SplitPairRule\00", align 1 +@.TypeMapEntry.15446_from = private unnamed_addr constant [80 x i8] c"AndroidX.Window.Embedding.SplitPlaceholderRule+Builder, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15447_to = private unnamed_addr constant [55 x i8] c"androidx/window/embedding/SplitPlaceholderRule$Builder\00", align 1 +@.TypeMapEntry.15448_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Embedding.SplitPlaceholderRule, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15449_to = private unnamed_addr constant [47 x i8] c"androidx/window/embedding/SplitPlaceholderRule\00", align 1 +@.TypeMapEntry.15450_from = private unnamed_addr constant [71 x i8] c"AndroidX.Window.Embedding.SplitRule+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15451_to = private unnamed_addr constant [46 x i8] c"androidx/window/embedding/SplitRule$Companion\00", align 1 +@.TypeMapEntry.15452_from = private unnamed_addr constant [86 x i8] c"AndroidX.Window.Embedding.SplitRule+FinishBehavior+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15453_to = private unnamed_addr constant [61 x i8] c"androidx/window/embedding/SplitRule$FinishBehavior$Companion\00", align 1 +@.TypeMapEntry.15454_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Embedding.SplitRule+FinishBehavior, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15455_to = private unnamed_addr constant [51 x i8] c"androidx/window/embedding/SplitRule$FinishBehavior\00", align 1 +@.TypeMapEntry.15456_from = private unnamed_addr constant [61 x i8] c"AndroidX.Window.Embedding.SplitRule, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15457_to = private unnamed_addr constant [36 x i8] c"androidx/window/embedding/SplitRule\00", align 1 +@.TypeMapEntry.15458_from = private unnamed_addr constant [102 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IConsumer, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15459_to = private unnamed_addr constant [55 x i8] c"androidx/window/extensions/core/util/function/Consumer\00", align 1 +@.TypeMapEntry.15460_from = private unnamed_addr constant [109 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IConsumerInvoker, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15461_from = private unnamed_addr constant [102 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IFunction, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15462_to = private unnamed_addr constant [55 x i8] c"androidx/window/extensions/core/util/function/Function\00", align 1 +@.TypeMapEntry.15463_from = private unnamed_addr constant [109 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IFunctionInvoker, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15464_from = private unnamed_addr constant [103 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IPredicate, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15465_to = private unnamed_addr constant [56 x i8] c"androidx/window/extensions/core/util/function/Predicate\00", align 1 +@.TypeMapEntry.15466_from = private unnamed_addr constant [110 x i8] c"AndroidX.Window.Extensions.Core.Util.Function.IPredicateInvoker, Xamarin.AndroidX.Window.Extensions.Core.Core\00", align 1 +@.TypeMapEntry.15467_from = private unnamed_addr constant [69 x i8] c"AndroidX.Window.IRequiresWindowSdkExtension, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15468_to = private unnamed_addr constant [43 x i8] c"androidx/window/RequiresWindowSdkExtension\00", align 1 +@.TypeMapEntry.15469_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.IRequiresWindowSdkExtensionInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15470_from = private unnamed_addr constant [86 x i8] c"AndroidX.Window.Layout.FoldingFeatureOcclusionType+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15471_to = private unnamed_addr constant [62 x i8] c"androidx/window/layout/FoldingFeature$OcclusionType$Companion\00", align 1 +@.TypeMapEntry.15472_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Layout.FoldingFeatureOcclusionType, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15473_to = private unnamed_addr constant [52 x i8] c"androidx/window/layout/FoldingFeature$OcclusionType\00", align 1 +@.TypeMapEntry.15474_from = private unnamed_addr constant [84 x i8] c"AndroidX.Window.Layout.FoldingFeatureOrientation+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15475_to = private unnamed_addr constant [60 x i8] c"androidx/window/layout/FoldingFeature$Orientation$Companion\00", align 1 +@.TypeMapEntry.15476_from = private unnamed_addr constant [74 x i8] c"AndroidX.Window.Layout.FoldingFeatureOrientation, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15477_to = private unnamed_addr constant [50 x i8] c"androidx/window/layout/FoldingFeature$Orientation\00", align 1 +@.TypeMapEntry.15478_from = private unnamed_addr constant [78 x i8] c"AndroidX.Window.Layout.FoldingFeatureState+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15479_to = private unnamed_addr constant [54 x i8] c"androidx/window/layout/FoldingFeature$State$Companion\00", align 1 +@.TypeMapEntry.15480_from = private unnamed_addr constant [68 x i8] c"AndroidX.Window.Layout.FoldingFeatureState, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15481_to = private unnamed_addr constant [44 x i8] c"androidx/window/layout/FoldingFeature$State\00", align 1 +@.TypeMapEntry.15482_from = private unnamed_addr constant [64 x i8] c"AndroidX.Window.Layout.IDisplayFeature, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15483_to = private unnamed_addr constant [38 x i8] c"androidx/window/layout/DisplayFeature\00", align 1 +@.TypeMapEntry.15484_from = private unnamed_addr constant [71 x i8] c"AndroidX.Window.Layout.IDisplayFeatureInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15485_from = private unnamed_addr constant [64 x i8] c"AndroidX.Window.Layout.IFoldingFeature, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15486_to = private unnamed_addr constant [38 x i8] c"androidx/window/layout/FoldingFeature\00", align 1 +@.TypeMapEntry.15487_from = private unnamed_addr constant [71 x i8] c"AndroidX.Window.Layout.IFoldingFeatureInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15488_from = private unnamed_addr constant [67 x i8] c"AndroidX.Window.Layout.IWindowInfoTracker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15489_to = private unnamed_addr constant [41 x i8] c"androidx/window/layout/WindowInfoTracker\00", align 1 +@.TypeMapEntry.15490_from = private unnamed_addr constant [76 x i8] c"AndroidX.Window.Layout.IWindowInfoTrackerDecorator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15491_to = private unnamed_addr constant [50 x i8] c"androidx/window/layout/WindowInfoTrackerDecorator\00", align 1 +@.TypeMapEntry.15492_from = private unnamed_addr constant [83 x i8] c"AndroidX.Window.Layout.IWindowInfoTrackerDecoratorInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15493_from = private unnamed_addr constant [74 x i8] c"AndroidX.Window.Layout.IWindowInfoTrackerInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15494_from = private unnamed_addr constant [73 x i8] c"AndroidX.Window.Layout.IWindowMetricsCalculator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15495_to = private unnamed_addr constant [47 x i8] c"androidx/window/layout/WindowMetricsCalculator\00", align 1 +@.TypeMapEntry.15496_from = private unnamed_addr constant [82 x i8] c"AndroidX.Window.Layout.IWindowMetricsCalculatorDecorator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15497_to = private unnamed_addr constant [56 x i8] c"androidx/window/layout/WindowMetricsCalculatorDecorator\00", align 1 +@.TypeMapEntry.15498_from = private unnamed_addr constant [89 x i8] c"AndroidX.Window.Layout.IWindowMetricsCalculatorDecoratorInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15499_from = private unnamed_addr constant [80 x i8] c"AndroidX.Window.Layout.IWindowMetricsCalculatorInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15500_from = private unnamed_addr constant [66 x i8] c"AndroidX.Window.Layout.WindowInfoTracker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15501_from = private unnamed_addr constant [75 x i8] c"AndroidX.Window.Layout.WindowInfoTrackerCompanion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15502_to = private unnamed_addr constant [51 x i8] c"androidx/window/layout/WindowInfoTracker$Companion\00", align 1 +@.TypeMapEntry.15503_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Layout.WindowInfoTrackerConsts, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15504_from = private unnamed_addr constant [65 x i8] c"AndroidX.Window.Layout.WindowLayoutInfo, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15505_to = private unnamed_addr constant [40 x i8] c"androidx/window/layout/WindowLayoutInfo\00", align 1 +@.TypeMapEntry.15506_from = private unnamed_addr constant [62 x i8] c"AndroidX.Window.Layout.WindowMetrics, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15507_to = private unnamed_addr constant [37 x i8] c"androidx/window/layout/WindowMetrics\00", align 1 +@.TypeMapEntry.15508_from = private unnamed_addr constant [72 x i8] c"AndroidX.Window.Layout.WindowMetricsCalculator, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15509_from = private unnamed_addr constant [81 x i8] c"AndroidX.Window.Layout.WindowMetricsCalculatorCompanion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15510_to = private unnamed_addr constant [57 x i8] c"androidx/window/layout/WindowMetricsCalculator$Companion\00", align 1 +@.TypeMapEntry.15511_from = private unnamed_addr constant [78 x i8] c"AndroidX.Window.Layout.WindowMetricsCalculatorConsts, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15512_from = private unnamed_addr constant [58 x i8] c"AndroidX.Window.WindowProperties, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15513_to = private unnamed_addr constant [33 x i8] c"androidx/window/WindowProperties\00", align 1 +@.TypeMapEntry.15514_from = private unnamed_addr constant [71 x i8] c"AndroidX.Window.WindowSdkExtensions+Companion, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15515_to = private unnamed_addr constant [46 x i8] c"androidx/window/WindowSdkExtensions$Companion\00", align 1 +@.TypeMapEntry.15516_from = private unnamed_addr constant [61 x i8] c"AndroidX.Window.WindowSdkExtensions, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15517_to = private unnamed_addr constant [36 x i8] c"androidx/window/WindowSdkExtensions\00", align 1 +@.TypeMapEntry.15518_from = private unnamed_addr constant [68 x i8] c"AndroidX.Window.WindowSdkExtensionsInvoker, Xamarin.AndroidX.Window\00", align 1 +@.TypeMapEntry.15519_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.DiskLruCache.DiskLruCache+Editor, Xamarin.Android.Glide.DiskLruCache\00", align 1 +@.TypeMapEntry.15520_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/disklrucache/DiskLruCache$Editor\00", align 1 +@.TypeMapEntry.15521_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.DiskLruCache.DiskLruCache+Value, Xamarin.Android.Glide.DiskLruCache\00", align 1 +@.TypeMapEntry.15522_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/disklrucache/DiskLruCache$Value\00", align 1 +@.TypeMapEntry.15523_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.DiskLruCache.DiskLruCache, Xamarin.Android.Glide.DiskLruCache\00", align 1 +@.TypeMapEntry.15524_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/disklrucache/DiskLruCache\00", align 1 +@.TypeMapEntry.15525_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.GeneratedAppGlideModule, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15526_to = private unnamed_addr constant [43 x i8] c"com/bumptech/glide/GeneratedAppGlideModule\00", align 1 +@.TypeMapEntry.15527_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.GeneratedAppGlideModuleInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15528_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.GenericTransitionOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15529_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/GenericTransitionOptions\00", align 1 +@.TypeMapEntry.15530_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.GifDecoder.GifDecoder, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15531_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/gifdecoder/GifDecoder\00", align 1 +@.TypeMapEntry.15532_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.GifDecoder.GifDecoderConsts, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15533_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.GifDecoder.GifHeader, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15534_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/gifdecoder/GifHeader\00", align 1 +@.TypeMapEntry.15535_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.GifDecoder.GifHeaderParser, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15536_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/gifdecoder/GifHeaderParser\00", align 1 +@.TypeMapEntry.15537_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoder, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15538_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoderBitmapProvider, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15539_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/gifdecoder/GifDecoder$BitmapProvider\00", align 1 +@.TypeMapEntry.15540_from = private unnamed_addr constant [93 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoderBitmapProviderInvoker, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15541_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoderGifDecodeStatus, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15542_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/gifdecoder/GifDecoder$GifDecodeStatus\00", align 1 +@.TypeMapEntry.15543_from = private unnamed_addr constant [94 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoderGifDecodeStatusInvoker, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15544_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.GifDecoder.IGifDecoderInvoker, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15545_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.GifDecoder.StandardGifDecoder, Xamarin.Android.Glide.GifDecoder\00", align 1 +@.TypeMapEntry.15546_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/gifdecoder/StandardGifDecoder\00", align 1 +@.TypeMapEntry.15547_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Glide+IRequestOptionsFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15548_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/Glide$RequestOptionsFactory\00", align 1 +@.TypeMapEntry.15549_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Glide+IRequestOptionsFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15550_from = private unnamed_addr constant [44 x i8] c"Bumptech.Glide.Glide, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15551_to = private unnamed_addr constant [25 x i8] c"com/bumptech/glide/Glide\00", align 1 +@.TypeMapEntry.15552_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.GlideBuilder+LogRequestOrigins, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15553_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/GlideBuilder$LogRequestOrigins\00", align 1 +@.TypeMapEntry.15554_from = private unnamed_addr constant [51 x i8] c"Bumptech.Glide.GlideBuilder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15555_to = private unnamed_addr constant [32 x i8] c"com/bumptech/glide/GlideBuilder\00", align 1 +@.TypeMapEntry.15556_from = private unnamed_addr constant [51 x i8] c"Bumptech.Glide.GlideContext, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15557_to = private unnamed_addr constant [32 x i8] c"com/bumptech/glide/GlideContext\00", align 1 +@.TypeMapEntry.15558_from = private unnamed_addr constant [55 x i8] c"Bumptech.Glide.GlideExperiments, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15559_to = private unnamed_addr constant [36 x i8] c"com/bumptech/glide/GlideExperiments\00", align 1 +@.TypeMapEntry.15560_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.ListPreloader+IPreloadModelProvider, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15561_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/ListPreloader$PreloadModelProvider\00", align 1 +@.TypeMapEntry.15562_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.ListPreloader+IPreloadModelProviderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15563_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.ListPreloader+IPreloadSizeProvider, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15564_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/ListPreloader$PreloadSizeProvider\00", align 1 +@.TypeMapEntry.15565_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.ListPreloader+IPreloadSizeProviderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15566_from = private unnamed_addr constant [52 x i8] c"Bumptech.Glide.ListPreloader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15567_to = private unnamed_addr constant [33 x i8] c"com/bumptech/glide/ListPreloader\00", align 1 +@.TypeMapEntry.15568_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Data.AssetFileDescriptorLocalUriFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15569_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/data/AssetFileDescriptorLocalUriFetcher\00", align 1 +@.TypeMapEntry.15570_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Data.AssetPathFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15571_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/load/data/AssetPathFetcher\00", align 1 +@.TypeMapEntry.15572_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Data.AssetPathFetcherInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15573_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Data.BufferedOutputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15574_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/data/BufferedOutputStream\00", align 1 +@.TypeMapEntry.15575_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Data.DataRewinderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15576_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/data/DataRewinderRegistry\00", align 1 +@.TypeMapEntry.15577_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Data.ExifOrientationStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15578_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/data/ExifOrientationStream\00", align 1 +@.TypeMapEntry.15579_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Data.FileDescriptorAssetPathFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15580_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/data/FileDescriptorAssetPathFetcher\00", align 1 +@.TypeMapEntry.15581_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Data.FileDescriptorLocalUriFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15582_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/data/FileDescriptorLocalUriFetcher\00", align 1 +@.TypeMapEntry.15583_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.Data.HttpUrlFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15584_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/load/data/HttpUrlFetcher\00", align 1 +@.TypeMapEntry.15585_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Load.Data.IDataFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15586_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/load/data/DataFetcher\00", align 1 +@.TypeMapEntry.15587_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Data.IDataFetcherDataCallback, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15588_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/data/DataFetcher$DataCallback\00", align 1 +@.TypeMapEntry.15589_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Data.IDataFetcherDataCallbackInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15590_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Data.IDataFetcherInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15591_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Load.Data.IDataRewinder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15592_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/load/data/DataRewinder\00", align 1 +@.TypeMapEntry.15593_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Data.IDataRewinderFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15594_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/data/DataRewinder$Factory\00", align 1 +@.TypeMapEntry.15595_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Data.IDataRewinderFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15596_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Data.IDataRewinderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15597_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Data.InputStreamRewinder+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15598_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/data/InputStreamRewinder$Factory\00", align 1 +@.TypeMapEntry.15599_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Data.InputStreamRewinder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15600_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/data/InputStreamRewinder\00", align 1 +@.TypeMapEntry.15601_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Load.Data.LocalUriFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15602_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/load/data/LocalUriFetcher\00", align 1 +@.TypeMapEntry.15603_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Load.Data.LocalUriFetcherInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15604_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Data.Mediastore.IThumbnailQuery, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15605_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/data/mediastore/ThumbnailQuery\00", align 1 +@.TypeMapEntry.15606_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Data.Mediastore.IThumbnailQueryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15607_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Data.Mediastore.MediaStoreUtil, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15608_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/data/mediastore/MediaStoreUtil\00", align 1 +@.TypeMapEntry.15609_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Data.Mediastore.ThumbFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15610_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/load/data/mediastore/ThumbFetcher\00", align 1 +@.TypeMapEntry.15611_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Data.ParcelFileDescriptorRewinder+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15612_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/load/data/ParcelFileDescriptorRewinder$Factory\00", align 1 +@.TypeMapEntry.15613_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Data.ParcelFileDescriptorRewinder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15614_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/data/ParcelFileDescriptorRewinder\00", align 1 +@.TypeMapEntry.15615_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Load.Data.StreamAssetPathFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15616_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/load/data/StreamAssetPathFetcher\00", align 1 +@.TypeMapEntry.15617_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Data.StreamLocalUriFetcher, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15618_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/data/StreamLocalUriFetcher\00", align 1 +@.TypeMapEntry.15619_from = private unnamed_addr constant [54 x i8] c"Bumptech.Glide.Load.DataSource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15620_to = private unnamed_addr constant [35 x i8] c"com/bumptech/glide/load/DataSource\00", align 1 +@.TypeMapEntry.15621_from = private unnamed_addr constant [56 x i8] c"Bumptech.Glide.Load.DecodeFormat, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15622_to = private unnamed_addr constant [37 x i8] c"com/bumptech/glide/load/DecodeFormat\00", align 1 +@.TypeMapEntry.15623_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Load.EncodeStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15624_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/load/EncodeStrategy\00", align 1 +@.TypeMapEntry.15625_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.ArrayPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15626_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/ArrayPool\00", align 1 +@.TypeMapEntry.15627_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.ArrayPoolConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15628_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.BaseKeyPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15629_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/BaseKeyPool\00", align 1 +@.TypeMapEntry.15630_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.BaseKeyPoolInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15631_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.BitmapPoolAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15632_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/BitmapPoolAdapter\00", align 1 +@.TypeMapEntry.15633_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.ByteArrayAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15634_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/ByteArrayAdapter\00", align 1 +@.TypeMapEntry.15635_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IArrayPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15636_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IArrayPoolInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15637_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IBitmapPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15638_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/BitmapPool\00", align 1 +@.TypeMapEntry.15639_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IBitmapPoolInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15640_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.ILruPoolStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15641_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/LruPoolStrategy\00", align 1 +@.TypeMapEntry.15642_from = private unnamed_addr constant [88 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.ILruPoolStrategyInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15643_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IPoolable, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15644_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/Poolable\00", align 1 +@.TypeMapEntry.15645_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IPoolableInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15646_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.IntegerArrayAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15647_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/IntegerArrayAdapter\00", align 1 +@.TypeMapEntry.15648_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.LruArrayPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15649_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/LruArrayPool\00", align 1 +@.TypeMapEntry.15650_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.LruBitmapPool, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15651_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/LruBitmapPool\00", align 1 +@.TypeMapEntry.15652_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Engine.BitmapRecycle.SizeConfigStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15653_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/load/engine/bitmap_recycle/SizeConfigStrategy\00", align 1 +@.TypeMapEntry.15654_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskCacheAdapter+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15655_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/engine/cache/DiskCacheAdapter$Factory\00", align 1 +@.TypeMapEntry.15656_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskCacheAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15657_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/engine/cache/DiskCacheAdapter\00", align 1 +@.TypeMapEntry.15658_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15659_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/engine/cache/DiskCache$Factory\00", align 1 +@.TypeMapEntry.15660_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskCacheFactoryConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15661_from = private unnamed_addr constant [98 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskLruCacheFactory+ICacheDirectoryGetter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15662_to = private unnamed_addr constant [78 x i8] c"com/bumptech/glide/load/engine/cache/DiskLruCacheFactory$CacheDirectoryGetter\00", align 1 +@.TypeMapEntry.15663_from = private unnamed_addr constant [105 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskLruCacheFactory+ICacheDirectoryGetterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15664_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskLruCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15665_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/engine/cache/DiskLruCacheFactory\00", align 1 +@.TypeMapEntry.15666_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Engine.Cache.DiskLruCacheWrapper, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15667_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/engine/cache/DiskLruCacheWrapper\00", align 1 +@.TypeMapEntry.15668_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Engine.Cache.ExternalCacheDiskCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15669_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/engine/cache/ExternalCacheDiskCacheFactory\00", align 1 +@.TypeMapEntry.15670_from = private unnamed_addr constant [95 x i8] c"Bumptech.Glide.Load.Engine.Cache.ExternalPreferredCacheDiskCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15671_to = private unnamed_addr constant [76 x i8] c"com/bumptech/glide/load/engine/cache/ExternalPreferredCacheDiskCacheFactory\00", align 1 +@.TypeMapEntry.15672_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15673_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/load/engine/cache/DiskCache\00", align 1 +@.TypeMapEntry.15674_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15675_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCacheFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15676_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCacheInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15677_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCacheWriter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15678_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/engine/cache/DiskCache$Writer\00", align 1 +@.TypeMapEntry.15679_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Engine.Cache.IDiskCacheWriterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15680_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Engine.Cache.IMemoryCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15681_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/engine/cache/MemoryCache\00", align 1 +@.TypeMapEntry.15682_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Engine.Cache.IMemoryCacheInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15683_from = private unnamed_addr constant [92 x i8] c"Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15684_to = private unnamed_addr constant [73 x i8] c"com/bumptech/glide/load/engine/cache/MemoryCache$ResourceRemovedListener\00", align 1 +@.TypeMapEntry.15685_from = private unnamed_addr constant [103 x i8] c"Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerImplementor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15686_to = private unnamed_addr constant [89 x i8] c"mono/com/bumptech/glide/load/engine/cache/MemoryCache_ResourceRemovedListenerImplementor\00", align 1 +@.TypeMapEntry.15687_from = private unnamed_addr constant [99 x i8] c"Bumptech.Glide.Load.Engine.Cache.IMemoryCacheResourceRemovedListenerInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15688_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Engine.Cache.InternalCacheDiskCacheFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15689_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/engine/cache/InternalCacheDiskCacheFactory\00", align 1 +@.TypeMapEntry.15690_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Cache.LruResourceCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15691_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/engine/cache/LruResourceCache\00", align 1 +@.TypeMapEntry.15692_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Engine.Cache.MemoryCacheAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15693_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/engine/cache/MemoryCacheAdapter\00", align 1 +@.TypeMapEntry.15694_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Engine.Cache.MemorySizeCalculator+Builder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15695_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/load/engine/cache/MemorySizeCalculator$Builder\00", align 1 +@.TypeMapEntry.15696_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Engine.Cache.MemorySizeCalculator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15697_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/engine/cache/MemorySizeCalculator\00", align 1 +@.TypeMapEntry.15698_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Cache.SafeKeyGenerator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15699_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/engine/cache/SafeKeyGenerator\00", align 1 +@.TypeMapEntry.15700_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Load.Engine.DecodePath, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15701_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/load/engine/DecodePath\00", align 1 +@.TypeMapEntry.15702_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Engine.DiskCacheStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15703_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/engine/DiskCacheStrategy\00", align 1 +@.TypeMapEntry.15704_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Engine.DiskCacheStrategyInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15705_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Engine.Engine+LoadStatus, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15706_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/engine/Engine$LoadStatus\00", align 1 +@.TypeMapEntry.15707_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Load.Engine.Engine, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15708_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/load/engine/Engine\00", align 1 +@.TypeMapEntry.15709_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor+Builder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15710_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/engine/executor/GlideExecutor$Builder\00", align 1 +@.TypeMapEntry.15711_from = private unnamed_addr constant [100 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor+IUncaughtThrowableStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15712_to = private unnamed_addr constant [80 x i8] c"com/bumptech/glide/load/engine/executor/GlideExecutor$UncaughtThrowableStrategy\00", align 1 +@.TypeMapEntry.15713_from = private unnamed_addr constant [107 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor+IUncaughtThrowableStrategyInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15714_from = private unnamed_addr constant [99 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor+UncaughtThrowableStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15715_from = private unnamed_addr constant [105 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor+UncaughtThrowableStrategyConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15716_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Engine.Executor.GlideExecutor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15717_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/engine/executor/GlideExecutor\00", align 1 +@.TypeMapEntry.15718_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Engine.GlideException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15719_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/load/engine/GlideException\00", align 1 +@.TypeMapEntry.15720_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Engine.IInitializable, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15721_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/load/engine/Initializable\00", align 1 +@.TypeMapEntry.15722_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Engine.IInitializableInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15723_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Load.Engine.IResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15724_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/load/engine/Resource\00", align 1 +@.TypeMapEntry.15725_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Engine.IResourceInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15726_from = private unnamed_addr constant [59 x i8] c"Bumptech.Glide.Load.Engine.LoadPath, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15727_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/load/engine/LoadPath\00", align 1 +@.TypeMapEntry.15728_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Engine.Prefill.BitmapPreFiller, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15729_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/engine/prefill/BitmapPreFiller\00", align 1 +@.TypeMapEntry.15730_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Engine.Prefill.PreFillType+Builder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15731_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/engine/prefill/PreFillType$Builder\00", align 1 +@.TypeMapEntry.15732_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Engine.Prefill.PreFillType, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15733_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/engine/prefill/PreFillType\00", align 1 +@.TypeMapEntry.15734_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Load.HttpException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15735_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/load/HttpException\00", align 1 +@.TypeMapEntry.15736_from = private unnamed_addr constant [52 x i8] c"Bumptech.Glide.Load.IEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15737_to = private unnamed_addr constant [32 x i8] c"com/bumptech/glide/load/Encoder\00", align 1 +@.TypeMapEntry.15738_from = private unnamed_addr constant [59 x i8] c"Bumptech.Glide.Load.IEncoderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15739_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Load.IImageHeaderParser, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15740_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/load/ImageHeaderParser\00", align 1 +@.TypeMapEntry.15741_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.IImageHeaderParserInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15742_from = private unnamed_addr constant [48 x i8] c"Bumptech.Glide.Load.IKey, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15743_to = private unnamed_addr constant [28 x i8] c"com/bumptech/glide/load/Key\00", align 1 +@.TypeMapEntry.15744_from = private unnamed_addr constant [55 x i8] c"Bumptech.Glide.Load.IKeyInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15745_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Load.IResourceDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15746_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/load/ResourceDecoder\00", align 1 +@.TypeMapEntry.15747_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.IResourceDecoderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15748_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Load.IResourceEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15749_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/load/ResourceEncoder\00", align 1 +@.TypeMapEntry.15750_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.IResourceEncoderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15751_from = private unnamed_addr constant [59 x i8] c"Bumptech.Glide.Load.ITransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15752_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/load/Transformation\00", align 1 +@.TypeMapEntry.15753_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Load.ITransformationInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15754_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Load.ImageHeaderParser, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15755_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.ImageHeaderParserConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15756_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.ImageHeaderParserImageType, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15757_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/load/ImageHeaderParser$ImageType\00", align 1 +@.TypeMapEntry.15758_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Load.ImageHeaderParserUtils, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15759_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/load/ImageHeaderParserUtils\00", align 1 +@.TypeMapEntry.15760_from = private unnamed_addr constant [47 x i8] c"Bumptech.Glide.Load.Key, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15761_from = private unnamed_addr constant [53 x i8] c"Bumptech.Glide.Load.KeyConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15762_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Model.AssetUriLoader+FileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15763_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/model/AssetUriLoader$FileDescriptorFactory\00", align 1 +@.TypeMapEntry.15764_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Model.AssetUriLoader+IAssetFetcherFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15765_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/load/model/AssetUriLoader$AssetFetcherFactory\00", align 1 +@.TypeMapEntry.15766_from = private unnamed_addr constant [92 x i8] c"Bumptech.Glide.Load.Model.AssetUriLoader+IAssetFetcherFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15767_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Model.AssetUriLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15768_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/model/AssetUriLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15769_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Load.Model.AssetUriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15770_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/load/model/AssetUriLoader\00", align 1 +@.TypeMapEntry.15771_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.ByteArrayLoader+ByteBufferFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15772_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/model/ByteArrayLoader$ByteBufferFactory\00", align 1 +@.TypeMapEntry.15773_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Model.ByteArrayLoader+IConverter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15774_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/model/ByteArrayLoader$Converter\00", align 1 +@.TypeMapEntry.15775_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.ByteArrayLoader+IConverterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15776_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Model.ByteArrayLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15777_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/model/ByteArrayLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15778_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Model.ByteArrayLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15779_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/load/model/ByteArrayLoader\00", align 1 +@.TypeMapEntry.15780_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Model.ByteBufferEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15781_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/load/model/ByteBufferEncoder\00", align 1 +@.TypeMapEntry.15782_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Model.ByteBufferFileLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15783_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/model/ByteBufferFileLoader$Factory\00", align 1 +@.TypeMapEntry.15784_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Model.ByteBufferFileLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15785_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/model/ByteBufferFileLoader\00", align 1 +@.TypeMapEntry.15786_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Model.DataUrlLoader+IDataDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15787_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/model/DataUrlLoader$DataDecoder\00", align 1 +@.TypeMapEntry.15788_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.DataUrlLoader+IDataDecoderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15789_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Model.DataUrlLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15790_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/model/DataUrlLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15791_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.Model.DataUrlLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15792_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/load/model/DataUrlLoader\00", align 1 +@.TypeMapEntry.15793_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Model.DirectResourceLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15794_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/model/DirectResourceLoader\00", align 1 +@.TypeMapEntry.15795_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Model.FileLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15796_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/model/FileLoader$Factory\00", align 1 +@.TypeMapEntry.15797_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Model.FileLoader+FileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15798_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/model/FileLoader$FileDescriptorFactory\00", align 1 +@.TypeMapEntry.15799_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Model.FileLoader+IFileOpener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15800_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/load/model/FileLoader$FileOpener\00", align 1 +@.TypeMapEntry.15801_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Model.FileLoader+IFileOpenerInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15802_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Model.FileLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15803_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/model/FileLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15804_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Load.Model.FileLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15805_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/load/model/FileLoader\00", align 1 +@.TypeMapEntry.15806_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Load.Model.GlideUrl, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15807_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/load/model/GlideUrl\00", align 1 +@.TypeMapEntry.15808_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Load.Model.Headers, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15809_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/load/model/Headers\00", align 1 +@.TypeMapEntry.15810_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.Model.HeadersConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15811_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Load.Model.IHeaders, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15812_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Model.IHeadersInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15813_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Model.ILazyHeaderFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15814_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/load/model/LazyHeaderFactory\00", align 1 +@.TypeMapEntry.15815_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Model.ILazyHeaderFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15816_from = private unnamed_addr constant [56 x i8] c"Bumptech.Glide.Load.Model.IModel, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15817_to = private unnamed_addr constant [36 x i8] c"com/bumptech/glide/load/model/Model\00", align 1 +@.TypeMapEntry.15818_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.Model.IModelInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15819_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Load.Model.IModelLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15820_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/load/model/ModelLoader\00", align 1 +@.TypeMapEntry.15821_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Model.IModelLoaderFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15822_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/model/ModelLoaderFactory\00", align 1 +@.TypeMapEntry.15823_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Model.IModelLoaderFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15824_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Model.IModelLoaderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15825_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Model.LazyHeaders+Builder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15826_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/model/LazyHeaders$Builder\00", align 1 +@.TypeMapEntry.15827_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Load.Model.LazyHeaders, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15828_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/load/model/LazyHeaders\00", align 1 +@.TypeMapEntry.15829_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Model.MediaStoreFileLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15830_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/model/MediaStoreFileLoader$Factory\00", align 1 +@.TypeMapEntry.15831_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Model.MediaStoreFileLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15832_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/model/MediaStoreFileLoader\00", align 1 +@.TypeMapEntry.15833_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Load.Model.ModelCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15834_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/load/model/ModelCache\00", align 1 +@.TypeMapEntry.15835_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Model.ModelLoaderLoadData, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15836_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/model/ModelLoader$LoadData\00", align 1 +@.TypeMapEntry.15837_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Model.ModelLoaderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15838_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/model/ModelLoaderRegistry\00", align 1 +@.TypeMapEntry.15839_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Model.MultiModelLoaderFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15840_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/model/MultiModelLoaderFactory\00", align 1 +@.TypeMapEntry.15841_from = private unnamed_addr constant [91 x i8] c"Bumptech.Glide.Load.Model.ResourceLoader+AssetFileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15842_to = private unnamed_addr constant [72 x i8] c"com/bumptech/glide/load/model/ResourceLoader$AssetFileDescriptorFactory\00", align 1 +@.TypeMapEntry.15843_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Model.ResourceLoader+FileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15844_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/model/ResourceLoader$FileDescriptorFactory\00", align 1 +@.TypeMapEntry.15845_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Model.ResourceLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15846_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/model/ResourceLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15847_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Model.ResourceLoader+UriFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15848_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/model/ResourceLoader$UriFactory\00", align 1 +@.TypeMapEntry.15849_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Load.Model.ResourceLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15850_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/load/model/ResourceLoader\00", align 1 +@.TypeMapEntry.15851_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Model.ResourceUriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15852_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/load/model/ResourceUriLoader\00", align 1 +@.TypeMapEntry.15853_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Model.Stream.BaseGlideUrlLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15854_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/model/stream/BaseGlideUrlLoader\00", align 1 +@.TypeMapEntry.15855_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Model.Stream.BaseGlideUrlLoaderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15856_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.Stream.HttpGlideUrlLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15857_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/model/stream/HttpGlideUrlLoader$Factory\00", align 1 +@.TypeMapEntry.15858_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Model.Stream.HttpGlideUrlLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15859_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/model/stream/HttpGlideUrlLoader\00", align 1 +@.TypeMapEntry.15860_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Model.Stream.HttpUriLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15861_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/model/stream/HttpUriLoader$Factory\00", align 1 +@.TypeMapEntry.15862_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Model.Stream.HttpUriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15863_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/model/stream/HttpUriLoader\00", align 1 +@.TypeMapEntry.15864_from = private unnamed_addr constant [91 x i8] c"Bumptech.Glide.Load.Model.Stream.MediaStoreImageThumbLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15865_to = private unnamed_addr constant [72 x i8] c"com/bumptech/glide/load/model/stream/MediaStoreImageThumbLoader$Factory\00", align 1 +@.TypeMapEntry.15866_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.Stream.MediaStoreImageThumbLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15867_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/model/stream/MediaStoreImageThumbLoader\00", align 1 +@.TypeMapEntry.15868_from = private unnamed_addr constant [91 x i8] c"Bumptech.Glide.Load.Model.Stream.MediaStoreVideoThumbLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15869_to = private unnamed_addr constant [72 x i8] c"com/bumptech/glide/load/model/stream/MediaStoreVideoThumbLoader$Factory\00", align 1 +@.TypeMapEntry.15870_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.Stream.MediaStoreVideoThumbLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15871_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/model/stream/MediaStoreVideoThumbLoader\00", align 1 +@.TypeMapEntry.15872_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Model.Stream.QMediaStoreUriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15873_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/model/stream/QMediaStoreUriLoader\00", align 1 +@.TypeMapEntry.15874_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Model.Stream.UrlLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15875_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/load/model/stream/UrlLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15876_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Load.Model.Stream.UrlLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15877_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/load/model/stream/UrlLoader\00", align 1 +@.TypeMapEntry.15878_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.Model.StreamEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15879_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/load/model/StreamEncoder\00", align 1 +@.TypeMapEntry.15880_from = private unnamed_addr constant [89 x i8] c"Bumptech.Glide.Load.Model.StringLoader+AssetFileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15881_to = private unnamed_addr constant [70 x i8] c"com/bumptech/glide/load/model/StringLoader$AssetFileDescriptorFactory\00", align 1 +@.TypeMapEntry.15882_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.Load.Model.StringLoader+FileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15883_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/load/model/StringLoader$FileDescriptorFactory\00", align 1 +@.TypeMapEntry.15884_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Model.StringLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15885_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/model/StringLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15886_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Load.Model.StringLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15887_to = private unnamed_addr constant [43 x i8] c"com/bumptech/glide/load/model/StringLoader\00", align 1 +@.TypeMapEntry.15888_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Model.UnitModelLoader+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15889_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/model/UnitModelLoader$Factory\00", align 1 +@.TypeMapEntry.15890_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Load.Model.UnitModelLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15891_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/load/model/UnitModelLoader\00", align 1 +@.TypeMapEntry.15892_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Model.UriLoader+AssetFileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15893_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/model/UriLoader$AssetFileDescriptorFactory\00", align 1 +@.TypeMapEntry.15894_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Model.UriLoader+FileDescriptorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15895_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/model/UriLoader$FileDescriptorFactory\00", align 1 +@.TypeMapEntry.15896_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Model.UriLoader+ILocalUriFetcherFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15897_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/model/UriLoader$LocalUriFetcherFactory\00", align 1 +@.TypeMapEntry.15898_from = private unnamed_addr constant [90 x i8] c"Bumptech.Glide.Load.Model.UriLoader+ILocalUriFetcherFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15899_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Model.UriLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15900_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/model/UriLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15901_from = private unnamed_addr constant [59 x i8] c"Bumptech.Glide.Load.Model.UriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15902_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/load/model/UriLoader\00", align 1 +@.TypeMapEntry.15903_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Model.UrlUriLoader+StreamFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15904_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/model/UrlUriLoader$StreamFactory\00", align 1 +@.TypeMapEntry.15905_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Load.Model.UrlUriLoader, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15906_to = private unnamed_addr constant [43 x i8] c"com/bumptech/glide/load/model/UrlUriLoader\00", align 1 +@.TypeMapEntry.15907_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.MultiTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15908_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/load/MultiTransformation\00", align 1 +@.TypeMapEntry.15909_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Option+ICacheKeyUpdater, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15910_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/load/Option$CacheKeyUpdater\00", align 1 +@.TypeMapEntry.15911_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Option+ICacheKeyUpdaterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15912_from = private unnamed_addr constant [50 x i8] c"Bumptech.Glide.Load.Option, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15913_to = private unnamed_addr constant [31 x i8] c"com/bumptech/glide/load/Option\00", align 1 +@.TypeMapEntry.15914_from = private unnamed_addr constant [51 x i8] c"Bumptech.Glide.Load.Options, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15915_to = private unnamed_addr constant [32 x i8] c"com/bumptech/glide/load/Options\00", align 1 +@.TypeMapEntry.15916_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Load.PreferredColorSpace, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15917_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/load/PreferredColorSpace\00", align 1 +@.TypeMapEntry.15918_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapDrawableDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15919_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapDrawableDecoder\00", align 1 +@.TypeMapEntry.15920_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapDrawableEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15921_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapDrawableEncoder\00", align 1 +@.TypeMapEntry.15922_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapDrawableResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15923_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapDrawableResource\00", align 1 +@.TypeMapEntry.15924_from = private unnamed_addr constant [88 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapDrawableTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15925_to = private unnamed_addr constant [69 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapDrawableTransformation\00", align 1 +@.TypeMapEntry.15926_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15927_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapEncoder\00", align 1 +@.TypeMapEntry.15928_from = private unnamed_addr constant [93 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapImageDecoderResourceDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15929_to = private unnamed_addr constant [74 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapImageDecoderResourceDecoder\00", align 1 +@.TypeMapEntry.15930_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15931_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapResource\00", align 1 +@.TypeMapEntry.15932_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15933_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapTransformation\00", align 1 +@.TypeMapEntry.15934_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapTransformationInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15935_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.BitmapTransitionOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15936_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/resource/bitmap/BitmapTransitionOptions\00", align 1 +@.TypeMapEntry.15937_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.ByteBufferBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15938_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/resource/bitmap/ByteBufferBitmapDecoder\00", align 1 +@.TypeMapEntry.15939_from = private unnamed_addr constant [103 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.ByteBufferBitmapImageDecoderResourceDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15940_to = private unnamed_addr constant [84 x i8] c"com/bumptech/glide/load/resource/bitmap/ByteBufferBitmapImageDecoderResourceDecoder\00", align 1 +@.TypeMapEntry.15941_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.CenterCrop, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15942_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/resource/bitmap/CenterCrop\00", align 1 +@.TypeMapEntry.15943_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.CenterInside, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15944_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/load/resource/bitmap/CenterInside\00", align 1 +@.TypeMapEntry.15945_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.CircleCrop, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15946_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/resource/bitmap/CircleCrop\00", align 1 +@.TypeMapEntry.15947_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.DefaultImageHeaderParser, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15948_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/load/resource/bitmap/DefaultImageHeaderParser\00", align 1 +@.TypeMapEntry.15949_from = private unnamed_addr constant [97 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.DownsampleStrategy+SampleSizeRounding, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15950_to = private unnamed_addr constant [78 x i8] c"com/bumptech/glide/load/resource/bitmap/DownsampleStrategy$SampleSizeRounding\00", align 1 +@.TypeMapEntry.15951_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.DownsampleStrategy, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15952_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/resource/bitmap/DownsampleStrategy\00", align 1 +@.TypeMapEntry.15953_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.DownsampleStrategyInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15954_from = private unnamed_addr constant [88 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.Downsampler+IDecodeCallbacks, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15955_to = private unnamed_addr constant [68 x i8] c"com/bumptech/glide/load/resource/bitmap/Downsampler$DecodeCallbacks\00", align 1 +@.TypeMapEntry.15956_from = private unnamed_addr constant [95 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.Downsampler+IDecodeCallbacksInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15957_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.Downsampler, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15958_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/load/resource/bitmap/Downsampler\00", align 1 +@.TypeMapEntry.15959_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.DrawableTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15960_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/resource/bitmap/DrawableTransformation\00", align 1 +@.TypeMapEntry.15961_from = private unnamed_addr constant [90 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.ExifInterfaceImageHeaderParser, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15962_to = private unnamed_addr constant [71 x i8] c"com/bumptech/glide/load/resource/bitmap/ExifInterfaceImageHeaderParser\00", align 1 +@.TypeMapEntry.15963_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.FitCenter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15964_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/resource/bitmap/FitCenter\00", align 1 +@.TypeMapEntry.15965_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.GranularRoundedCorners, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15966_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/resource/bitmap/GranularRoundedCorners\00", align 1 +@.TypeMapEntry.15967_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.HardwareConfigState, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15968_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/resource/bitmap/HardwareConfigState\00", align 1 +@.TypeMapEntry.15969_from = private unnamed_addr constant [104 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.InputStreamBitmapImageDecoderResourceDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15970_to = private unnamed_addr constant [85 x i8] c"com/bumptech/glide/load/resource/bitmap/InputStreamBitmapImageDecoderResourceDecoder\00", align 1 +@.TypeMapEntry.15971_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.LazyBitmapDrawableResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15972_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/resource/bitmap/LazyBitmapDrawableResource\00", align 1 +@.TypeMapEntry.15973_from = private unnamed_addr constant [93 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.ParcelFileDescriptorBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15974_to = private unnamed_addr constant [74 x i8] c"com/bumptech/glide/load/resource/bitmap/ParcelFileDescriptorBitmapDecoder\00", align 1 +@.TypeMapEntry.15975_from = private unnamed_addr constant [89 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.RecyclableBufferedInputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15976_to = private unnamed_addr constant [70 x i8] c"com/bumptech/glide/load/resource/bitmap/RecyclableBufferedInputStream\00", align 1 +@.TypeMapEntry.15977_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.ResourceBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15978_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/bitmap/ResourceBitmapDecoder\00", align 1 +@.TypeMapEntry.15979_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.Rotate, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15980_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/load/resource/bitmap/Rotate\00", align 1 +@.TypeMapEntry.15981_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.RoundedCorners, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15982_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/resource/bitmap/RoundedCorners\00", align 1 +@.TypeMapEntry.15983_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.StreamBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15984_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/resource/bitmap/StreamBitmapDecoder\00", align 1 +@.TypeMapEntry.15985_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.TransformationUtils, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15986_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/load/resource/bitmap/TransformationUtils\00", align 1 +@.TypeMapEntry.15987_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.UnitBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15988_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/resource/bitmap/UnitBitmapDecoder\00", align 1 +@.TypeMapEntry.15989_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.VideoBitmapDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15990_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/resource/bitmap/VideoBitmapDecoder\00", align 1 +@.TypeMapEntry.15991_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Resource.Bitmap.VideoDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15992_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/load/resource/bitmap/VideoDecoder\00", align 1 +@.TypeMapEntry.15993_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Resource.Bytes.ByteBufferRewinder+Factory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15994_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/load/resource/bytes/ByteBufferRewinder$Factory\00", align 1 +@.TypeMapEntry.15995_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Resource.Bytes.ByteBufferRewinder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15996_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/resource/bytes/ByteBufferRewinder\00", align 1 +@.TypeMapEntry.15997_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Load.Resource.Bytes.BytesResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.15998_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/load/resource/bytes/BytesResource\00", align 1 +@.TypeMapEntry.15999_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Resource.DefaultOnHeaderDecodedListener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16000_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/resource/DefaultOnHeaderDecodedListener\00", align 1 +@.TypeMapEntry.16001_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Drawable.AnimatedImageDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16002_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/resource/drawable/AnimatedImageDecoder\00", align 1 +@.TypeMapEntry.16003_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Drawable.AnimatedWebpDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16004_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/drawable/AnimatedWebpDecoder\00", align 1 +@.TypeMapEntry.16005_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Load.Resource.Drawable.DrawableDecoderCompat, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16006_to = private unnamed_addr constant [64 x i8] c"com/bumptech/glide/load/resource/drawable/DrawableDecoderCompat\00", align 1 +@.TypeMapEntry.16007_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Load.Resource.Drawable.DrawableResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16008_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/load/resource/drawable/DrawableResource\00", align 1 +@.TypeMapEntry.16009_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Resource.Drawable.DrawableResourceInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16010_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.Load.Resource.Drawable.DrawableTransitionOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16011_to = private unnamed_addr constant [68 x i8] c"com/bumptech/glide/load/resource/drawable/DrawableTransitionOptions\00", align 1 +@.TypeMapEntry.16012_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Load.Resource.Drawable.ResourceDrawableDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16013_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/load/resource/drawable/ResourceDrawableDecoder\00", align 1 +@.TypeMapEntry.16014_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Drawable.UnitDrawableDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16015_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/drawable/UnitDrawableDecoder\00", align 1 +@.TypeMapEntry.16016_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Load.Resource.File.FileDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16017_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/load/resource/file/FileDecoder\00", align 1 +@.TypeMapEntry.16018_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Load.Resource.File.FileResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16019_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/load/resource/file/FileResource\00", align 1 +@.TypeMapEntry.16020_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Resource.Gif.ByteBufferGifDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16021_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/resource/gif/ByteBufferGifDecoder\00", align 1 +@.TypeMapEntry.16022_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifBitmapProvider, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16023_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/load/resource/gif/GifBitmapProvider\00", align 1 +@.TypeMapEntry.16024_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifDrawable, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16025_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/load/resource/gif/GifDrawable\00", align 1 +@.TypeMapEntry.16026_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifDrawableEncoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16027_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/load/resource/gif/GifDrawableEncoder\00", align 1 +@.TypeMapEntry.16028_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifDrawableResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16029_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/load/resource/gif/GifDrawableResource\00", align 1 +@.TypeMapEntry.16030_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifDrawableTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16031_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/load/resource/gif/GifDrawableTransformation\00", align 1 +@.TypeMapEntry.16032_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifFrameResourceDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16033_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/load/resource/gif/GifFrameResourceDecoder\00", align 1 +@.TypeMapEntry.16034_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Resource.Gif.GifOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16035_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/load/resource/gif/GifOptions\00", align 1 +@.TypeMapEntry.16036_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Load.Resource.Gif.StreamGifDecoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16037_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/load/resource/gif/StreamGifDecoder\00", align 1 +@.TypeMapEntry.16038_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Load.Resource.SimpleResource, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16039_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/load/resource/SimpleResource\00", align 1 +@.TypeMapEntry.16040_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.Load.Resource.Transcode.BitmapBytesTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16041_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/load/resource/transcode/BitmapBytesTranscoder\00", align 1 +@.TypeMapEntry.16042_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.Load.Resource.Transcode.BitmapDrawableTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16043_to = private unnamed_addr constant [68 x i8] c"com/bumptech/glide/load/resource/transcode/BitmapDrawableTranscoder\00", align 1 +@.TypeMapEntry.16044_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Load.Resource.Transcode.DrawableBytesTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16045_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/load/resource/transcode/DrawableBytesTranscoder\00", align 1 +@.TypeMapEntry.16046_from = private unnamed_addr constant [89 x i8] c"Bumptech.Glide.Load.Resource.Transcode.GifDrawableBytesTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16047_to = private unnamed_addr constant [70 x i8] c"com/bumptech/glide/load/resource/transcode/GifDrawableBytesTranscoder\00", align 1 +@.TypeMapEntry.16048_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Load.Resource.Transcode.IResourceTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16049_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/transcode/ResourceTranscoder\00", align 1 +@.TypeMapEntry.16050_from = private unnamed_addr constant [89 x i8] c"Bumptech.Glide.Load.Resource.Transcode.IResourceTranscoderInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16051_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Load.Resource.Transcode.TranscoderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16052_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/load/resource/transcode/TranscoderRegistry\00", align 1 +@.TypeMapEntry.16053_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Load.Resource.Transcode.UnitTranscoder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16054_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/load/resource/transcode/UnitTranscoder\00", align 1 +@.TypeMapEntry.16055_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Load.Resource.UnitTransformation, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16056_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/load/resource/UnitTransformation\00", align 1 +@.TypeMapEntry.16057_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Manager.DefaultConnectivityMonitorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16058_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/manager/DefaultConnectivityMonitorFactory\00", align 1 +@.TypeMapEntry.16059_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16060_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/manager/ConnectivityMonitor\00", align 1 +@.TypeMapEntry.16061_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16062_to = private unnamed_addr constant [68 x i8] c"com/bumptech/glide/manager/ConnectivityMonitor$ConnectivityListener\00", align 1 +@.TypeMapEntry.16063_from = private unnamed_addr constant [98 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerImplementor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16064_to = private unnamed_addr constant [84 x i8] c"mono/com/bumptech/glide/manager/ConnectivityMonitor_ConnectivityListenerImplementor\00", align 1 +@.TypeMapEntry.16065_from = private unnamed_addr constant [94 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorConnectivityListenerInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16066_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16067_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/manager/ConnectivityMonitorFactory\00", align 1 +@.TypeMapEntry.16068_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16069_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Manager.IConnectivityMonitorInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16070_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Manager.ILifecycle, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16071_to = private unnamed_addr constant [37 x i8] c"com/bumptech/glide/manager/Lifecycle\00", align 1 +@.TypeMapEntry.16072_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Manager.ILifecycleInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16073_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Manager.ILifecycleListener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16074_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/manager/LifecycleListener\00", align 1 +@.TypeMapEntry.16075_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Manager.ILifecycleListenerImplementor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16076_to = private unnamed_addr constant [61 x i8] c"mono/com/bumptech/glide/manager/LifecycleListenerImplementor\00", align 1 +@.TypeMapEntry.16077_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Manager.ILifecycleListenerInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16078_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Manager.IRequestManagerTreeNode, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16079_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/manager/RequestManagerTreeNode\00", align 1 +@.TypeMapEntry.16080_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Manager.IRequestManagerTreeNodeInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16081_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Manager.RequestManagerFragment, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16082_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/manager/RequestManagerFragment\00", align 1 +@.TypeMapEntry.16083_from = private unnamed_addr constant [93 x i8] c"Bumptech.Glide.Manager.RequestManagerRetriever+IRequestManagerFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16084_to = private unnamed_addr constant [73 x i8] c"com/bumptech/glide/manager/RequestManagerRetriever$RequestManagerFactory\00", align 1 +@.TypeMapEntry.16085_from = private unnamed_addr constant [100 x i8] c"Bumptech.Glide.Manager.RequestManagerRetriever+IRequestManagerFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16086_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Manager.RequestManagerRetriever, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16087_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/manager/RequestManagerRetriever\00", align 1 +@.TypeMapEntry.16088_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Manager.RequestTracker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16089_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/manager/RequestTracker\00", align 1 +@.TypeMapEntry.16090_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Manager.SupportRequestManagerFragment, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16091_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/manager/SupportRequestManagerFragment\00", align 1 +@.TypeMapEntry.16092_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Manager.TargetTracker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16093_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/manager/TargetTracker\00", align 1 +@.TypeMapEntry.16094_from = private unnamed_addr constant [53 x i8] c"Bumptech.Glide.MemoryCategory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16095_to = private unnamed_addr constant [34 x i8] c"com/bumptech/glide/MemoryCategory\00", align 1 +@.TypeMapEntry.16096_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Module.AppGlideModule, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16097_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/module/AppGlideModule\00", align 1 +@.TypeMapEntry.16098_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Module.AppGlideModuleInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16099_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Module.IAppliesOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16100_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/module/AppliesOptions\00", align 1 +@.TypeMapEntry.16101_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Module.IAppliesOptionsInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16102_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Module.IGlideModule, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16103_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/module/GlideModule\00", align 1 +@.TypeMapEntry.16104_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Module.IGlideModuleInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16105_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Module.IRegistersComponents, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16106_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/module/RegistersComponents\00", align 1 +@.TypeMapEntry.16107_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Module.IRegistersComponentsInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16108_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Module.LibraryGlideModule, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16109_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/module/LibraryGlideModule\00", align 1 +@.TypeMapEntry.16110_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Module.LibraryGlideModuleInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16111_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Module.ManifestParser, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16112_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/module/ManifestParser\00", align 1 +@.TypeMapEntry.16113_from = private unnamed_addr constant [47 x i8] c"Bumptech.Glide.Priority, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16114_to = private unnamed_addr constant [28 x i8] c"com/bumptech/glide/Priority\00", align 1 +@.TypeMapEntry.16115_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Provider.EncoderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16116_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/provider/EncoderRegistry\00", align 1 +@.TypeMapEntry.16117_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Provider.ImageHeaderParserRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16118_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/provider/ImageHeaderParserRegistry\00", align 1 +@.TypeMapEntry.16119_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Provider.LoadPathCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16120_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/provider/LoadPathCache\00", align 1 +@.TypeMapEntry.16121_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Provider.ModelToResourceClassCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16122_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/provider/ModelToResourceClassCache\00", align 1 +@.TypeMapEntry.16123_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Provider.ResourceDecoderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16124_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/provider/ResourceDecoderRegistry\00", align 1 +@.TypeMapEntry.16125_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Provider.ResourceEncoderRegistry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16126_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/provider/ResourceEncoderRegistry\00", align 1 +@.TypeMapEntry.16127_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Registry+MissingComponentException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16128_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/Registry$MissingComponentException\00", align 1 +@.TypeMapEntry.16129_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Registry+NoImageHeaderParserException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16130_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/Registry$NoImageHeaderParserException\00", align 1 +@.TypeMapEntry.16131_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Registry+NoModelLoaderAvailableException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16132_to = private unnamed_addr constant [60 x i8] c"com/bumptech/glide/Registry$NoModelLoaderAvailableException\00", align 1 +@.TypeMapEntry.16133_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Registry+NoResultEncoderAvailableException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16134_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/Registry$NoResultEncoderAvailableException\00", align 1 +@.TypeMapEntry.16135_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Registry+NoSourceEncoderAvailableException, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16136_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/Registry$NoSourceEncoderAvailableException\00", align 1 +@.TypeMapEntry.16137_from = private unnamed_addr constant [47 x i8] c"Bumptech.Glide.Registry, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16138_to = private unnamed_addr constant [28 x i8] c"com/bumptech/glide/Registry\00", align 1 +@.TypeMapEntry.16139_from = private unnamed_addr constant [65 x i8] c"Bumptech.Glide.Request.BaseRequestOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16140_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/request/BaseRequestOptions\00", align 1 +@.TypeMapEntry.16141_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Request.BaseRequestOptionsInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16142_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Request.ErrorRequestCoordinator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16143_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/request/ErrorRequestCoordinator\00", align 1 +@.TypeMapEntry.16144_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Request.IFutureTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16145_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/request/FutureTarget\00", align 1 +@.TypeMapEntry.16146_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Request.IFutureTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16147_from = private unnamed_addr constant [55 x i8] c"Bumptech.Glide.Request.IRequest, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16148_to = private unnamed_addr constant [35 x i8] c"com/bumptech/glide/request/Request\00", align 1 +@.TypeMapEntry.16149_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Request.IRequestCoordinator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16150_to = private unnamed_addr constant [46 x i8] c"com/bumptech/glide/request/RequestCoordinator\00", align 1 +@.TypeMapEntry.16151_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Request.IRequestCoordinatorInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16152_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Request.IRequestInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16153_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Request.IRequestListener, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16154_to = private unnamed_addr constant [43 x i8] c"com/bumptech/glide/request/RequestListener\00", align 1 +@.TypeMapEntry.16155_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Request.IRequestListenerImplementor, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16156_to = private unnamed_addr constant [59 x i8] c"mono/com/bumptech/glide/request/RequestListenerImplementor\00", align 1 +@.TypeMapEntry.16157_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Request.IRequestListenerInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16158_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Request.IResourceCallback, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16159_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/request/ResourceCallback\00", align 1 +@.TypeMapEntry.16160_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Request.IResourceCallbackInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16161_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Request.RequestCoordinatorRequestState, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16162_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/request/RequestCoordinator$RequestState\00", align 1 +@.TypeMapEntry.16163_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Request.RequestFutureTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16164_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/request/RequestFutureTarget\00", align 1 +@.TypeMapEntry.16165_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Request.RequestOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16166_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/request/RequestOptions\00", align 1 +@.TypeMapEntry.16167_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Request.SingleRequest, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16168_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/request/SingleRequest\00", align 1 +@.TypeMapEntry.16169_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Request.Target.AppWidgetTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16170_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/request/target/AppWidgetTarget\00", align 1 +@.TypeMapEntry.16171_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Request.Target.BaseTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16172_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/request/target/BaseTarget\00", align 1 +@.TypeMapEntry.16173_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Request.Target.BaseTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16174_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Request.Target.BitmapImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16175_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/request/target/BitmapImageViewTarget\00", align 1 +@.TypeMapEntry.16176_from = private unnamed_addr constant [84 x i8] c"Bumptech.Glide.Request.Target.BitmapThumbnailImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16177_to = private unnamed_addr constant [65 x i8] c"com/bumptech/glide/request/target/BitmapThumbnailImageViewTarget\00", align 1 +@.TypeMapEntry.16178_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Request.Target.CustomTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16179_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/request/target/CustomTarget\00", align 1 +@.TypeMapEntry.16180_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Request.Target.CustomTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16181_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Request.Target.CustomViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16182_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/request/target/CustomViewTarget\00", align 1 +@.TypeMapEntry.16183_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Request.Target.CustomViewTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16184_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Request.Target.DrawableImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16185_to = private unnamed_addr constant [58 x i8] c"com/bumptech/glide/request/target/DrawableImageViewTarget\00", align 1 +@.TypeMapEntry.16186_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Request.Target.DrawableThumbnailImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16187_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/request/target/DrawableThumbnailImageViewTarget\00", align 1 +@.TypeMapEntry.16188_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Request.Target.FixedSizeDrawable, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16189_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/request/target/FixedSizeDrawable\00", align 1 +@.TypeMapEntry.16190_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Request.Target.ISizeReadyCallback, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16191_to = private unnamed_addr constant [52 x i8] c"com/bumptech/glide/request/target/SizeReadyCallback\00", align 1 +@.TypeMapEntry.16192_from = private unnamed_addr constant [79 x i8] c"Bumptech.Glide.Request.Target.ISizeReadyCallbackInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16193_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Request.Target.ITarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16194_to = private unnamed_addr constant [41 x i8] c"com/bumptech/glide/request/target/Target\00", align 1 +@.TypeMapEntry.16195_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Request.Target.ITargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16196_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Request.Target.ImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16197_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/request/target/ImageViewTarget\00", align 1 +@.TypeMapEntry.16198_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Request.Target.ImageViewTargetFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16199_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/request/target/ImageViewTargetFactory\00", align 1 +@.TypeMapEntry.16200_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Request.Target.ImageViewTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16201_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Request.Target.NotificationTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16202_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/request/target/NotificationTarget\00", align 1 +@.TypeMapEntry.16203_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Request.Target.PreloadTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16204_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/request/target/PreloadTarget\00", align 1 +@.TypeMapEntry.16205_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Request.Target.SimpleTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16206_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/request/target/SimpleTarget\00", align 1 +@.TypeMapEntry.16207_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Request.Target.SimpleTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16208_from = private unnamed_addr constant [60 x i8] c"Bumptech.Glide.Request.Target.Target, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16209_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Request.Target.TargetConsts, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16210_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Request.Target.ThumbnailImageViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16211_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/request/target/ThumbnailImageViewTarget\00", align 1 +@.TypeMapEntry.16212_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Request.Target.ThumbnailImageViewTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16213_from = private unnamed_addr constant [64 x i8] c"Bumptech.Glide.Request.Target.ViewTarget, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16214_to = private unnamed_addr constant [45 x i8] c"com/bumptech/glide/request/target/ViewTarget\00", align 1 +@.TypeMapEntry.16215_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Request.Target.ViewTargetInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16216_from = private unnamed_addr constant [74 x i8] c"Bumptech.Glide.Request.ThumbnailRequestCoordinator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16217_to = private unnamed_addr constant [55 x i8] c"com/bumptech/glide/request/ThumbnailRequestCoordinator\00", align 1 +@.TypeMapEntry.16218_from = private unnamed_addr constant [90 x i8] c"Bumptech.Glide.Request.Transition.BitmapContainerTransitionFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16219_to = private unnamed_addr constant [71 x i8] c"com/bumptech/glide/request/transition/BitmapContainerTransitionFactory\00", align 1 +@.TypeMapEntry.16220_from = private unnamed_addr constant [97 x i8] c"Bumptech.Glide.Request.Transition.BitmapContainerTransitionFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16221_from = private unnamed_addr constant [81 x i8] c"Bumptech.Glide.Request.Transition.BitmapTransitionFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16222_to = private unnamed_addr constant [62 x i8] c"com/bumptech/glide/request/transition/BitmapTransitionFactory\00", align 1 +@.TypeMapEntry.16223_from = private unnamed_addr constant [90 x i8] c"Bumptech.Glide.Request.Transition.DrawableCrossFadeFactory+Builder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16224_to = private unnamed_addr constant [71 x i8] c"com/bumptech/glide/request/transition/DrawableCrossFadeFactory$Builder\00", align 1 +@.TypeMapEntry.16225_from = private unnamed_addr constant [82 x i8] c"Bumptech.Glide.Request.Transition.DrawableCrossFadeFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16226_to = private unnamed_addr constant [63 x i8] c"com/bumptech/glide/request/transition/DrawableCrossFadeFactory\00", align 1 +@.TypeMapEntry.16227_from = private unnamed_addr constant [85 x i8] c"Bumptech.Glide.Request.Transition.DrawableCrossFadeTransition, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16228_to = private unnamed_addr constant [66 x i8] c"com/bumptech/glide/request/transition/DrawableCrossFadeTransition\00", align 1 +@.TypeMapEntry.16229_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Request.Transition.ITransition, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16230_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/request/transition/Transition\00", align 1 +@.TypeMapEntry.16231_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Request.Transition.ITransitionFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16232_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/request/transition/TransitionFactory\00", align 1 +@.TypeMapEntry.16233_from = private unnamed_addr constant [83 x i8] c"Bumptech.Glide.Request.Transition.ITransitionFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16234_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Request.Transition.ITransitionInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16235_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Request.Transition.ITransitionViewAdapter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16236_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/request/transition/Transition$ViewAdapter\00", align 1 +@.TypeMapEntry.16237_from = private unnamed_addr constant [87 x i8] c"Bumptech.Glide.Request.Transition.ITransitionViewAdapterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16238_from = private unnamed_addr constant [89 x i8] c"Bumptech.Glide.Request.Transition.NoTransition+NoAnimationFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16239_to = private unnamed_addr constant [70 x i8] c"com/bumptech/glide/request/transition/NoTransition$NoAnimationFactory\00", align 1 +@.TypeMapEntry.16240_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Request.Transition.NoTransition, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16241_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/request/transition/NoTransition\00", align 1 +@.TypeMapEntry.16242_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Request.Transition.ViewAnimationFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16243_to = private unnamed_addr constant [59 x i8] c"com/bumptech/glide/request/transition/ViewAnimationFactory\00", align 1 +@.TypeMapEntry.16244_from = private unnamed_addr constant [86 x i8] c"Bumptech.Glide.Request.Transition.ViewPropertyAnimationFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16245_to = private unnamed_addr constant [67 x i8] c"com/bumptech/glide/request/transition/ViewPropertyAnimationFactory\00", align 1 +@.TypeMapEntry.16246_from = private unnamed_addr constant [90 x i8] c"Bumptech.Glide.Request.Transition.ViewPropertyTransition+IAnimator, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16247_to = private unnamed_addr constant [70 x i8] c"com/bumptech/glide/request/transition/ViewPropertyTransition$Animator\00", align 1 +@.TypeMapEntry.16248_from = private unnamed_addr constant [97 x i8] c"Bumptech.Glide.Request.Transition.ViewPropertyTransition+IAnimatorInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16249_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Request.Transition.ViewPropertyTransition, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16250_to = private unnamed_addr constant [61 x i8] c"com/bumptech/glide/request/transition/ViewPropertyTransition\00", align 1 +@.TypeMapEntry.16251_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Request.Transition.ViewTransition, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16252_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/request/transition/ViewTransition\00", align 1 +@.TypeMapEntry.16253_from = private unnamed_addr constant [53 x i8] c"Bumptech.Glide.RequestBuilder, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16254_to = private unnamed_addr constant [34 x i8] c"com/bumptech/glide/RequestBuilder\00", align 1 +@.TypeMapEntry.16255_from = private unnamed_addr constant [53 x i8] c"Bumptech.Glide.RequestManager, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16256_to = private unnamed_addr constant [34 x i8] c"com/bumptech/glide/RequestManager\00", align 1 +@.TypeMapEntry.16257_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Signature.AndroidResourceSignature, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16258_to = private unnamed_addr constant [54 x i8] c"com/bumptech/glide/signature/AndroidResourceSignature\00", align 1 +@.TypeMapEntry.16259_from = private unnamed_addr constant [76 x i8] c"Bumptech.Glide.Signature.ApplicationVersionSignature, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16260_to = private unnamed_addr constant [57 x i8] c"com/bumptech/glide/signature/ApplicationVersionSignature\00", align 1 +@.TypeMapEntry.16261_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.Signature.EmptySignature, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16262_to = private unnamed_addr constant [44 x i8] c"com/bumptech/glide/signature/EmptySignature\00", align 1 +@.TypeMapEntry.16263_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Signature.MediaStoreSignature, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16264_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/signature/MediaStoreSignature\00", align 1 +@.TypeMapEntry.16265_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Signature.ObjectKey, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16266_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/signature/ObjectKey\00", align 1 +@.TypeMapEntry.16267_from = private unnamed_addr constant [56 x i8] c"Bumptech.Glide.TransitionOptions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16268_to = private unnamed_addr constant [37 x i8] c"com/bumptech/glide/TransitionOptions\00", align 1 +@.TypeMapEntry.16269_from = private unnamed_addr constant [63 x i8] c"Bumptech.Glide.TransitionOptionsInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16270_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Util.ByteBufferUtil, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16271_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/util/ByteBufferUtil\00", align 1 +@.TypeMapEntry.16272_from = private unnamed_addr constant [66 x i8] c"Bumptech.Glide.Util.CachedHashCodeArrayMap, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16273_to = private unnamed_addr constant [47 x i8] c"com/bumptech/glide/util/CachedHashCodeArrayMap\00", align 1 +@.TypeMapEntry.16274_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Util.ContentLengthInputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16275_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/util/ContentLengthInputStream\00", align 1 +@.TypeMapEntry.16276_from = private unnamed_addr constant [72 x i8] c"Bumptech.Glide.Util.ExceptionCatchingInputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16277_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/util/ExceptionCatchingInputStream\00", align 1 +@.TypeMapEntry.16278_from = private unnamed_addr constant [75 x i8] c"Bumptech.Glide.Util.ExceptionPassthroughInputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16279_to = private unnamed_addr constant [56 x i8] c"com/bumptech/glide/util/ExceptionPassthroughInputStream\00", align 1 +@.TypeMapEntry.16280_from = private unnamed_addr constant [53 x i8] c"Bumptech.Glide.Util.Executors, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16281_to = private unnamed_addr constant [34 x i8] c"com/bumptech/glide/util/Executors\00", align 1 +@.TypeMapEntry.16282_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Util.FixedPreloadSizeProvider, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16283_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/util/FixedPreloadSizeProvider\00", align 1 +@.TypeMapEntry.16284_from = private unnamed_addr constant [73 x i8] c"Bumptech.Glide.Util.GlideSuppliers+IGlideSupplier, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16285_to = private unnamed_addr constant [53 x i8] c"com/bumptech/glide/util/GlideSuppliers$GlideSupplier\00", align 1 +@.TypeMapEntry.16286_from = private unnamed_addr constant [80 x i8] c"Bumptech.Glide.Util.GlideSuppliers+IGlideSupplierInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16287_from = private unnamed_addr constant [58 x i8] c"Bumptech.Glide.Util.GlideSuppliers, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16288_to = private unnamed_addr constant [39 x i8] c"com/bumptech/glide/util/GlideSuppliers\00", align 1 +@.TypeMapEntry.16289_from = private unnamed_addr constant [54 x i8] c"Bumptech.Glide.Util.ISynthetic, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16290_to = private unnamed_addr constant [34 x i8] c"com/bumptech/glide/util/Synthetic\00", align 1 +@.TypeMapEntry.16291_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Util.ISyntheticInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16292_from = private unnamed_addr constant [51 x i8] c"Bumptech.Glide.Util.LogTime, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16293_to = private unnamed_addr constant [32 x i8] c"com/bumptech/glide/util/LogTime\00", align 1 +@.TypeMapEntry.16294_from = private unnamed_addr constant [52 x i8] c"Bumptech.Glide.Util.LruCache, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16295_to = private unnamed_addr constant [33 x i8] c"com/bumptech/glide/util/LruCache\00", align 1 +@.TypeMapEntry.16296_from = private unnamed_addr constant [68 x i8] c"Bumptech.Glide.Util.MarkEnforcingInputStream, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16297_to = private unnamed_addr constant [49 x i8] c"com/bumptech/glide/util/MarkEnforcingInputStream\00", align 1 +@.TypeMapEntry.16298_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Util.MultiClassKey, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16299_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/util/MultiClassKey\00", align 1 +@.TypeMapEntry.16300_from = private unnamed_addr constant [70 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IFactory, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16301_to = private unnamed_addr constant [50 x i8] c"com/bumptech/glide/util/pool/FactoryPools$Factory\00", align 1 +@.TypeMapEntry.16302_from = private unnamed_addr constant [77 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IFactoryInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16303_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IPoolable, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16304_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/util/pool/FactoryPools$Poolable\00", align 1 +@.TypeMapEntry.16305_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IPoolableInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16306_from = private unnamed_addr constant [71 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IResetter, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16307_to = private unnamed_addr constant [51 x i8] c"com/bumptech/glide/util/pool/FactoryPools$Resetter\00", align 1 +@.TypeMapEntry.16308_from = private unnamed_addr constant [78 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools+IResetterInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16309_from = private unnamed_addr constant [61 x i8] c"Bumptech.Glide.Util.Pool.FactoryPools, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16310_to = private unnamed_addr constant [42 x i8] c"com/bumptech/glide/util/pool/FactoryPools\00", align 1 +@.TypeMapEntry.16311_from = private unnamed_addr constant [59 x i8] c"Bumptech.Glide.Util.Pool.GlideTrace, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16312_to = private unnamed_addr constant [40 x i8] c"com/bumptech/glide/util/pool/GlideTrace\00", align 1 +@.TypeMapEntry.16313_from = private unnamed_addr constant [62 x i8] c"Bumptech.Glide.Util.Pool.StateVerifier, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16314_to = private unnamed_addr constant [43 x i8] c"com/bumptech/glide/util/pool/StateVerifier\00", align 1 +@.TypeMapEntry.16315_from = private unnamed_addr constant [69 x i8] c"Bumptech.Glide.Util.Pool.StateVerifierInvoker, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16316_from = private unnamed_addr constant [57 x i8] c"Bumptech.Glide.Util.Preconditions, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16317_to = private unnamed_addr constant [38 x i8] c"com/bumptech/glide/util/Preconditions\00", align 1 +@.TypeMapEntry.16318_from = private unnamed_addr constant [48 x i8] c"Bumptech.Glide.Util.Util, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16319_to = private unnamed_addr constant [29 x i8] c"com/bumptech/glide/util/Util\00", align 1 +@.TypeMapEntry.16320_from = private unnamed_addr constant [67 x i8] c"Bumptech.Glide.Util.ViewPreloadSizeProvider, Xamarin.Android.Glide\00", align 1 +@.TypeMapEntry.16321_to = private unnamed_addr constant [48 x i8] c"com/bumptech/glide/util/ViewPreloadSizeProvider\00", align 1 +@.TypeMapEntry.16322_from = private unnamed_addr constant [44 x i8] c"Dalvik.Annotation.ITestTarget, Mono.Android\00", align 1 +@.TypeMapEntry.16323_to = private unnamed_addr constant [29 x i8] c"dalvik/annotation/TestTarget\00", align 1 +@.TypeMapEntry.16324_from = private unnamed_addr constant [49 x i8] c"Dalvik.Annotation.ITestTargetClass, Mono.Android\00", align 1 +@.TypeMapEntry.16325_to = private unnamed_addr constant [34 x i8] c"dalvik/annotation/TestTargetClass\00", align 1 +@.TypeMapEntry.16326_from = private unnamed_addr constant [56 x i8] c"Dalvik.Annotation.ITestTargetClassInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16327_from = private unnamed_addr constant [51 x i8] c"Dalvik.Annotation.ITestTargetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16328_from = private unnamed_addr constant [61 x i8] c"Dalvik.Annotation.Optimization.ICriticalNative, Mono.Android\00", align 1 +@.TypeMapEntry.16329_to = private unnamed_addr constant [46 x i8] c"dalvik/annotation/optimization/CriticalNative\00", align 1 +@.TypeMapEntry.16330_from = private unnamed_addr constant [68 x i8] c"Dalvik.Annotation.Optimization.ICriticalNativeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16331_from = private unnamed_addr constant [57 x i8] c"Dalvik.Annotation.Optimization.IFastNative, Mono.Android\00", align 1 +@.TypeMapEntry.16332_to = private unnamed_addr constant [42 x i8] c"dalvik/annotation/optimization/FastNative\00", align 1 +@.TypeMapEntry.16333_from = private unnamed_addr constant [64 x i8] c"Dalvik.Annotation.Optimization.IFastNativeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16334_from = private unnamed_addr constant [43 x i8] c"Dalvik.Annotation.TestTarget, Mono.Android\00", align 1 +@.TypeMapEntry.16335_from = private unnamed_addr constant [48 x i8] c"Dalvik.Annotation.TestTargetClass, Mono.Android\00", align 1 +@.TypeMapEntry.16336_from = private unnamed_addr constant [55 x i8] c"Dalvik.Annotation.TestTargetClassInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16337_from = private unnamed_addr constant [50 x i8] c"Dalvik.Annotation.TestTargetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16338_from = private unnamed_addr constant [41 x i8] c"Dalvik.Bytecode.OpcodeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.16339_to = private unnamed_addr constant [27 x i8] c"dalvik/bytecode/OpcodeInfo\00", align 1 +@.TypeMapEntry.16340_from = private unnamed_addr constant [38 x i8] c"Dalvik.Bytecode.Opcodes, Mono.Android\00", align 1 +@.TypeMapEntry.16341_to = private unnamed_addr constant [38 x i8] c"mono/internal/dalvik/bytecode/Opcodes\00", align 1 +@.TypeMapEntry.16342_from = private unnamed_addr constant [54 x i8] c"Dalvik.SystemInterop.ApplicationRuntime, Mono.Android\00", align 1 +@.TypeMapEntry.16343_to = private unnamed_addr constant [33 x i8] c"dalvik/system/ApplicationRuntime\00", align 1 +@.TypeMapEntry.16344_from = private unnamed_addr constant [54 x i8] c"Dalvik.SystemInterop.BaseDexClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.16345_to = private unnamed_addr constant [33 x i8] c"dalvik/system/BaseDexClassLoader\00", align 1 +@.TypeMapEntry.16346_from = private unnamed_addr constant [59 x i8] c"Dalvik.SystemInterop.DelegateLastClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.16347_to = private unnamed_addr constant [38 x i8] c"dalvik/system/DelegateLastClassLoader\00", align 1 +@.TypeMapEntry.16348_from = private unnamed_addr constant [50 x i8] c"Dalvik.SystemInterop.DexClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.16349_to = private unnamed_addr constant [29 x i8] c"dalvik/system/DexClassLoader\00", align 1 +@.TypeMapEntry.16350_from = private unnamed_addr constant [60 x i8] c"Dalvik.SystemInterop.DexFile+OptimizationInfo, Mono.Android\00", align 1 +@.TypeMapEntry.16351_to = private unnamed_addr constant [39 x i8] c"dalvik/system/DexFile$OptimizationInfo\00", align 1 +@.TypeMapEntry.16352_from = private unnamed_addr constant [43 x i8] c"Dalvik.SystemInterop.DexFile, Mono.Android\00", align 1 +@.TypeMapEntry.16353_to = private unnamed_addr constant [22 x i8] c"dalvik/system/DexFile\00", align 1 +@.TypeMapEntry.16354_from = private unnamed_addr constant [58 x i8] c"Dalvik.SystemInterop.InMemoryDexClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.16355_to = private unnamed_addr constant [37 x i8] c"dalvik/system/InMemoryDexClassLoader\00", align 1 +@.TypeMapEntry.16356_from = private unnamed_addr constant [51 x i8] c"Dalvik.SystemInterop.PathClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.16357_to = private unnamed_addr constant [30 x i8] c"dalvik/system/PathClassLoader\00", align 1 +@.TypeMapEntry.16358_from = private unnamed_addr constant [62 x i8] c"Dalvik.SystemInterop.ZipPathValidator+ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.16359_to = private unnamed_addr constant [40 x i8] c"dalvik/system/ZipPathValidator$Callback\00", align 1 +@.TypeMapEntry.16360_from = private unnamed_addr constant [69 x i8] c"Dalvik.SystemInterop.ZipPathValidator+ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.16361_from = private unnamed_addr constant [52 x i8] c"Dalvik.SystemInterop.ZipPathValidator, Mono.Android\00", align 1 +@.TypeMapEntry.16362_to = private unnamed_addr constant [31 x i8] c"dalvik/system/ZipPathValidator\00", align 1 +@.TypeMapEntry.16363_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Animation.AnimationUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16364_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/animation/AnimationUtils\00", align 1 +@.TypeMapEntry.16365_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Animation.AnimatorSetCompat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16366_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/animation/AnimatorSetCompat\00", align 1 +@.TypeMapEntry.16367_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Animation.ArgbEvaluatorCompat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16368_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/animation/ArgbEvaluatorCompat\00", align 1 +@.TypeMapEntry.16369_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Animation.ChildrenAlphaProperty, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16370_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/animation/ChildrenAlphaProperty\00", align 1 +@.TypeMapEntry.16371_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Animation.DrawableAlphaProperty, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16372_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/animation/DrawableAlphaProperty\00", align 1 +@.TypeMapEntry.16373_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Animation.IAnimatableView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16374_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/animation/AnimatableView\00", align 1 +@.TypeMapEntry.16375_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Animation.IAnimatableViewInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16376_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Animation.IAnimatableViewListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16377_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/animation/AnimatableView$Listener\00", align 1 +@.TypeMapEntry.16378_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Animation.IAnimatableViewListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16379_to = private unnamed_addr constant [78 x i8] c"mono/com/google/android/material/animation/AnimatableView_ListenerImplementor\00", align 1 +@.TypeMapEntry.16380_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Animation.IAnimatableViewListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16381_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Animation.ITransformationCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16382_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/animation/TransformationCallback\00", align 1 +@.TypeMapEntry.16383_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Animation.ITransformationCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16384_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Animation.ImageMatrixProperty, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16385_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/animation/ImageMatrixProperty\00", align 1 +@.TypeMapEntry.16386_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Animation.MatrixEvaluator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16387_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/animation/MatrixEvaluator\00", align 1 +@.TypeMapEntry.16388_from = private unnamed_addr constant [78 x i8] c"Google.Android.Material.Animation.MotionSpec, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16389_to = private unnamed_addr constant [49 x i8] c"com/google/android/material/animation/MotionSpec\00", align 1 +@.TypeMapEntry.16390_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Animation.MotionTiming, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16391_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/animation/MotionTiming\00", align 1 +@.TypeMapEntry.16392_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Animation.Positioning, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16393_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/animation/Positioning\00", align 1 +@.TypeMapEntry.16394_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.AppBar.AppBarLayout+BaseBehavior+BaseDragCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16395_to = private unnamed_addr constant [78 x i8] c"com/google/android/material/appbar/AppBarLayout$BaseBehavior$BaseDragCallback\00", align 1 +@.TypeMapEntry.16396_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.AppBar.AppBarLayout+BaseBehavior+BaseDragCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16397_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.AppBar.AppBarLayout+BaseBehavior+SavedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16398_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/appbar/AppBarLayout$BaseBehavior$SavedState\00", align 1 +@.TypeMapEntry.16399_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.AppBar.AppBarLayout+BaseBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16400_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/appbar/AppBarLayout$BaseBehavior\00", align 1 +@.TypeMapEntry.16401_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.AppBar.AppBarLayout+Behavior+DragCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16402_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/appbar/AppBarLayout$Behavior$DragCallback\00", align 1 +@.TypeMapEntry.16403_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.AppBar.AppBarLayout+Behavior+DragCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16404_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.AppBar.AppBarLayout+Behavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16405_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/appbar/AppBarLayout$Behavior\00", align 1 +@.TypeMapEntry.16406_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ChildScrollEffect, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16407_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/appbar/AppBarLayout$ChildScrollEffect\00", align 1 +@.TypeMapEntry.16408_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ChildScrollEffectInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16409_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.AppBar.AppBarLayout+CompressChildScrollEffect, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16410_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/appbar/AppBarLayout$CompressChildScrollEffect\00", align 1 +@.TypeMapEntry.16411_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16412_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/appbar/AppBarLayout$LiftOnScrollListener\00", align 1 +@.TypeMapEntry.16413_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16414_to = private unnamed_addr constant [85 x i8] c"mono/com/google/android/material/appbar/AppBarLayout_LiftOnScrollListenerImplementor\00", align 1 +@.TypeMapEntry.16415_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ILiftOnScrollListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16416_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16417_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/appbar/AppBarLayout$OnOffsetChangedListener\00", align 1 +@.TypeMapEntry.16418_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16419_to = private unnamed_addr constant [88 x i8] c"mono/com/google/android/material/appbar/AppBarLayout_OnOffsetChangedListenerImplementor\00", align 1 +@.TypeMapEntry.16420_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.AppBar.AppBarLayout+IOnOffsetChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16421_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollEffect, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16422_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/appbar/AppBarLayout$LayoutParams$ScrollEffect\00", align 1 +@.TypeMapEntry.16423_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollEffectInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16424_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollFlags, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16425_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/appbar/AppBarLayout$LayoutParams$ScrollFlags\00", align 1 +@.TypeMapEntry.16426_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.AppBar.AppBarLayout+LayoutParams+IScrollFlagsInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16427_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.AppBar.AppBarLayout+LayoutParams, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16428_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/appbar/AppBarLayout$LayoutParams\00", align 1 +@.TypeMapEntry.16429_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.AppBar.AppBarLayout+ScrollingViewBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16430_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/appbar/AppBarLayout$ScrollingViewBehavior\00", align 1 +@.TypeMapEntry.16431_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.AppBar.AppBarLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16432_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/appbar/AppBarLayout\00", align 1 +@.TypeMapEntry.16433_from = private unnamed_addr constant [119 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout+IStaticLayoutBuilderConfigurer, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16434_to = private unnamed_addr constant [89 x i8] c"com/google/android/material/appbar/CollapsingToolbarLayout$StaticLayoutBuilderConfigurer\00", align 1 +@.TypeMapEntry.16435_from = private unnamed_addr constant [126 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout+IStaticLayoutBuilderConfigurerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16436_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout+ITitleCollapseMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16437_to = private unnamed_addr constant [77 x i8] c"com/google/android/material/appbar/CollapsingToolbarLayout$TitleCollapseMode\00", align 1 +@.TypeMapEntry.16438_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout+ITitleCollapseModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16439_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout+LayoutParams, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16440_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/appbar/CollapsingToolbarLayout$LayoutParams\00", align 1 +@.TypeMapEntry.16441_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.AppBar.CollapsingToolbarLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16442_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/appbar/CollapsingToolbarLayout\00", align 1 +@.TypeMapEntry.16443_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.AppBar.HeaderBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16444_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/appbar/HeaderBehavior\00", align 1 +@.TypeMapEntry.16445_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.AppBar.HeaderBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16446_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.AppBar.HeaderScrollingViewBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16447_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/appbar/HeaderScrollingViewBehavior\00", align 1 +@.TypeMapEntry.16448_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.AppBar.HeaderScrollingViewBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16449_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.AppBar.MaterialToolbar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16450_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/appbar/MaterialToolbar\00", align 1 +@.TypeMapEntry.16451_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.AppBar.ViewOffsetBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16452_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/appbar/ViewOffsetBehavior\00", align 1 +@.TypeMapEntry.16453_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Badge.BadgeDrawable+IBadgeGravity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16454_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/badge/BadgeDrawable$BadgeGravity\00", align 1 +@.TypeMapEntry.16455_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Badge.BadgeDrawable+IBadgeGravityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16456_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Badge.BadgeDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16457_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/badge/BadgeDrawable\00", align 1 +@.TypeMapEntry.16458_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Badge.BadgeState+State, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16459_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/badge/BadgeState$State\00", align 1 +@.TypeMapEntry.16460_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Badge.BadgeState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16461_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/badge/BadgeState\00", align 1 +@.TypeMapEntry.16462_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Badge.BadgeUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16463_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/badge/BadgeUtils\00", align 1 +@.TypeMapEntry.16464_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Badge.IExperimentalBadgeUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16465_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/badge/ExperimentalBadgeUtils\00", align 1 +@.TypeMapEntry.16466_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Badge.IExperimentalBadgeUtilsInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16467_from = private unnamed_addr constant [127 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16468_to = private unnamed_addr constant [97 x i8] c"com/google/android/material/behavior/HideBottomViewOnScrollBehavior$OnScrollStateChangedListener\00", align 1 +@.TypeMapEntry.16469_from = private unnamed_addr constant [138 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16470_to = private unnamed_addr constant [113 x i8] c"mono/com/google/android/material/behavior/HideBottomViewOnScrollBehavior_OnScrollStateChangedListenerImplementor\00", align 1 +@.TypeMapEntry.16471_from = private unnamed_addr constant [134 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IOnScrollStateChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16472_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IScrollState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16473_to = private unnamed_addr constant [80 x i8] c"com/google/android/material/behavior/HideBottomViewOnScrollBehavior$ScrollState\00", align 1 +@.TypeMapEntry.16474_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior+IScrollStateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16475_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Behavior.HideBottomViewOnScrollBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16476_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/behavior/HideBottomViewOnScrollBehavior\00", align 1 +@.TypeMapEntry.16477_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16478_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/behavior/SwipeDismissBehavior$OnDismissListener\00", align 1 +@.TypeMapEntry.16479_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16480_to = private unnamed_addr constant [92 x i8] c"mono/com/google/android/material/behavior/SwipeDismissBehavior_OnDismissListenerImplementor\00", align 1 +@.TypeMapEntry.16481_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.Behavior.SwipeDismissBehavior+IOnDismissListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16482_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Behavior.SwipeDismissBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16483_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/behavior/SwipeDismissBehavior\00", align 1 +@.TypeMapEntry.16484_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+Behavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16485_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/bottomappbar/BottomAppBar$Behavior\00", align 1 +@.TypeMapEntry.16486_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAlignmentMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16487_to = private unnamed_addr constant [71 x i8] c"com/google/android/material/bottomappbar/BottomAppBar$FabAlignmentMode\00", align 1 +@.TypeMapEntry.16488_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAlignmentModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16489_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnchorMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16490_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/bottomappbar/BottomAppBar$FabAnchorMode\00", align 1 +@.TypeMapEntry.16491_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnchorModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16492_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnimationMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16493_to = private unnamed_addr constant [71 x i8] c"com/google/android/material/bottomappbar/BottomAppBar$FabAnimationMode\00", align 1 +@.TypeMapEntry.16494_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IFabAnimationModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16495_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IMenuAlignmentMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16496_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/bottomappbar/BottomAppBar$MenuAlignmentMode\00", align 1 +@.TypeMapEntry.16497_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar+IMenuAlignmentModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16498_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16499_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/bottomappbar/BottomAppBar\00", align 1 +@.TypeMapEntry.16500_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.BottomAppBar.BottomAppBarTopEdgeTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16501_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/bottomappbar/BottomAppBarTopEdgeTreatment\00", align 1 +@.TypeMapEntry.16502_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationItemView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16503_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/bottomnavigation/BottomNavigationItemView\00", align 1 +@.TypeMapEntry.16504_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationMenuView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16505_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/bottomnavigation/BottomNavigationMenuView\00", align 1 +@.TypeMapEntry.16506_from = private unnamed_addr constant [131 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemReselectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16507_to = private unnamed_addr constant [101 x i8] c"com/google/android/material/bottomnavigation/BottomNavigationView$OnNavigationItemReselectedListener\00", align 1 +@.TypeMapEntry.16508_from = private unnamed_addr constant [138 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemReselectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16509_from = private unnamed_addr constant [129 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemSelectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16510_to = private unnamed_addr constant [99 x i8] c"com/google/android/material/bottomnavigation/BottomNavigationView$OnNavigationItemSelectedListener\00", align 1 +@.TypeMapEntry.16511_from = private unnamed_addr constant [136 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationView+IOnNavigationItemSelectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16512_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.BottomNavigation.BottomNavigationView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16513_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/bottomnavigation/BottomNavigationView\00", align 1 +@.TypeMapEntry.16514_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.BottomNavigation.ILabelVisibilityMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16515_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/bottomnavigation/LabelVisibilityMode\00", align 1 +@.TypeMapEntry.16516_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.BottomNavigation.ILabelVisibilityModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16517_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.BottomNavigation.LabelVisibilityMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16518_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.BottomNavigation.LabelVisibilityModeConsts, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16519_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+BottomSheetCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16520_to = private unnamed_addr constant [80 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior$BottomSheetCallback\00", align 1 +@.TypeMapEntry.16521_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+BottomSheetCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16522_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+ISaveFlags, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16523_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior$SaveFlags\00", align 1 +@.TypeMapEntry.16524_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+ISaveFlagsInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16525_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+IStableState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16526_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior$StableState\00", align 1 +@.TypeMapEntry.16527_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+IStableStateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16528_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+IState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16529_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior$State\00", align 1 +@.TypeMapEntry.16530_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+IStateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16531_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior+SavedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16532_to = private unnamed_addr constant [71 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior$SavedState\00", align 1 +@.TypeMapEntry.16533_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.BottomSheet.BottomSheetBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16534_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/bottomsheet/BottomSheetBehavior\00", align 1 +@.TypeMapEntry.16535_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.BottomSheet.BottomSheetDialog, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16536_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/bottomsheet/BottomSheetDialog\00", align 1 +@.TypeMapEntry.16537_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.BottomSheet.BottomSheetDialogFragment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16538_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/bottomsheet/BottomSheetDialogFragment\00", align 1 +@.TypeMapEntry.16539_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.BottomSheet.BottomSheetDragHandleView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16540_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/bottomsheet/BottomSheetDragHandleView\00", align 1 +@.TypeMapEntry.16541_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Button.MaterialButton+IIconGravity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16542_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/button/MaterialButton$IconGravity\00", align 1 +@.TypeMapEntry.16543_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Button.MaterialButton+IIconGravityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16544_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16545_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/button/MaterialButton$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.16546_from = private unnamed_addr constant [115 x i8] c"Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16547_to = private unnamed_addr constant [90 x i8] c"mono/com/google/android/material/button/MaterialButton_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16548_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.Button.MaterialButton+IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16549_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Button.MaterialButton+InspectionCompanion, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16550_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/button/MaterialButton$InspectionCompanion\00", align 1 +@.TypeMapEntry.16551_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Button.MaterialButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16552_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/button/MaterialButton\00", align 1 +@.TypeMapEntry.16553_from = private unnamed_addr constant [115 x i8] c"Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16554_to = private unnamed_addr constant [85 x i8] c"com/google/android/material/button/MaterialButtonToggleGroup$OnButtonCheckedListener\00", align 1 +@.TypeMapEntry.16555_from = private unnamed_addr constant [126 x i8] c"Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16556_to = private unnamed_addr constant [101 x i8] c"mono/com/google/android/material/button/MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor\00", align 1 +@.TypeMapEntry.16557_from = private unnamed_addr constant [122 x i8] c"Google.Android.Material.Button.MaterialButtonToggleGroup+IOnButtonCheckedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16558_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Button.MaterialButtonToggleGroup, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16559_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/button/MaterialButtonToggleGroup\00", align 1 +@.TypeMapEntry.16560_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Canvas.CanvasCompat+ICanvasOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16561_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/canvas/CanvasCompat$CanvasOperation\00", align 1 +@.TypeMapEntry.16562_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.Canvas.CanvasCompat+ICanvasOperationInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16563_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Canvas.CanvasCompat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16564_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/canvas/CanvasCompat\00", align 1 +@.TypeMapEntry.16565_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Card.MaterialCardView+ICheckedIconGravity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16566_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/card/MaterialCardView$CheckedIconGravity\00", align 1 +@.TypeMapEntry.16567_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Card.MaterialCardView+ICheckedIconGravityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16568_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16569_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/card/MaterialCardView$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.16570_from = private unnamed_addr constant [115 x i8] c"Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16571_to = private unnamed_addr constant [90 x i8] c"mono/com/google/android/material/card/MaterialCardView_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16572_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.Card.MaterialCardView+IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16573_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Card.MaterialCardView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16574_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/card/MaterialCardView\00", align 1 +@.TypeMapEntry.16575_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Carousel.CarouselLayoutManager, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16576_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/carousel/CarouselLayoutManager\00", align 1 +@.TypeMapEntry.16577_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Carousel.CarouselSnapHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16578_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/carousel/CarouselSnapHelper\00", align 1 +@.TypeMapEntry.16579_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Carousel.CarouselStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16580_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/carousel/CarouselStrategy\00", align 1 +@.TypeMapEntry.16581_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Carousel.CarouselStrategyInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16582_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Carousel.FullScreenCarouselStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16583_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/carousel/FullScreenCarouselStrategy\00", align 1 +@.TypeMapEntry.16584_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Carousel.HeroCarouselStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16585_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/carousel/HeroCarouselStrategy\00", align 1 +@.TypeMapEntry.16586_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Carousel.IOnMaskChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16587_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/carousel/OnMaskChangedListener\00", align 1 +@.TypeMapEntry.16588_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.Carousel.IOnMaskChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16589_to = private unnamed_addr constant [75 x i8] c"mono/com/google/android/material/carousel/OnMaskChangedListenerImplementor\00", align 1 +@.TypeMapEntry.16590_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Carousel.IOnMaskChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16591_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Carousel.MaskableFrameLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16592_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/carousel/MaskableFrameLayout\00", align 1 +@.TypeMapEntry.16593_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Carousel.MultiBrowseCarouselStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16594_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/carousel/MultiBrowseCarouselStrategy\00", align 1 +@.TypeMapEntry.16595_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Carousel.UncontainedCarouselStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16596_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/carousel/UncontainedCarouselStrategy\00", align 1 +@.TypeMapEntry.16597_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+ICheckedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16598_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/checkbox/MaterialCheckBox$CheckedState\00", align 1 +@.TypeMapEntry.16599_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+ICheckedStateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16600_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16601_to = private unnamed_addr constant [84 x i8] c"com/google/android/material/checkbox/MaterialCheckBox$OnCheckedStateChangedListener\00", align 1 +@.TypeMapEntry.16602_from = private unnamed_addr constant [125 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16603_to = private unnamed_addr constant [100 x i8] c"mono/com/google/android/material/checkbox/MaterialCheckBox_OnCheckedStateChangedListenerImplementor\00", align 1 +@.TypeMapEntry.16604_from = private unnamed_addr constant [121 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnCheckedStateChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16605_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16606_to = private unnamed_addr constant [77 x i8] c"com/google/android/material/checkbox/MaterialCheckBox$OnErrorChangedListener\00", align 1 +@.TypeMapEntry.16607_from = private unnamed_addr constant [118 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16608_to = private unnamed_addr constant [93 x i8] c"mono/com/google/android/material/checkbox/MaterialCheckBox_OnErrorChangedListenerImplementor\00", align 1 +@.TypeMapEntry.16609_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox+IOnErrorChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16610_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.CheckBox.MaterialCheckBox, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16611_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/checkbox/MaterialCheckBox\00", align 1 +@.TypeMapEntry.16612_from = private unnamed_addr constant [67 x i8] c"Google.Android.Material.Chip.Chip, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16613_to = private unnamed_addr constant [38 x i8] c"com/google/android/material/chip/Chip\00", align 1 +@.TypeMapEntry.16614_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Chip.ChipDrawable+IDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16615_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/chip/ChipDrawable$Delegate\00", align 1 +@.TypeMapEntry.16616_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Chip.ChipDrawable+IDelegateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16617_from = private unnamed_addr constant [75 x i8] c"Google.Android.Material.Chip.ChipDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16618_to = private unnamed_addr constant [46 x i8] c"com/google/android/material/chip/ChipDrawable\00", align 1 +@.TypeMapEntry.16619_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16620_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/chip/ChipGroup$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.16621_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16622_to = private unnamed_addr constant [83 x i8] c"mono/com/google/android/material/chip/ChipGroup_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16623_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16624_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16625_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/chip/ChipGroup$OnCheckedStateChangeListener\00", align 1 +@.TypeMapEntry.16626_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16627_to = private unnamed_addr constant [88 x i8] c"mono/com/google/android/material/chip/ChipGroup_OnCheckedStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16628_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.Chip.ChipGroup+IOnCheckedStateChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16629_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Chip.ChipGroup+LayoutParams, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16630_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/chip/ChipGroup$LayoutParams\00", align 1 +@.TypeMapEntry.16631_from = private unnamed_addr constant [72 x i8] c"Google.Android.Material.Chip.ChipGroup, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16632_to = private unnamed_addr constant [43 x i8] c"com/google/android/material/chip/ChipGroup\00", align 1 +@.TypeMapEntry.16633_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.CircularReveal.CardView.CircularRevealCardView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16634_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/circularreveal/cardview/CircularRevealCardView\00", align 1 +@.TypeMapEntry.16635_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.CircularReveal.CircularRevealCompat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16636_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/circularreveal/CircularRevealCompat\00", align 1 +@.TypeMapEntry.16637_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.CircularReveal.CircularRevealFrameLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16638_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/circularreveal/CircularRevealFrameLayout\00", align 1 +@.TypeMapEntry.16639_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.CircularReveal.CircularRevealGridLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16640_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/circularreveal/CircularRevealGridLayout\00", align 1 +@.TypeMapEntry.16641_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.CircularReveal.CircularRevealHelper+IDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16642_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/circularreveal/CircularRevealHelper$Delegate\00", align 1 +@.TypeMapEntry.16643_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.CircularReveal.CircularRevealHelper+IDelegateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16644_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.CircularReveal.CircularRevealHelper+IStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16645_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/circularreveal/CircularRevealHelper$Strategy\00", align 1 +@.TypeMapEntry.16646_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.CircularReveal.CircularRevealHelper+IStrategyInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16647_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.CircularReveal.CircularRevealHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16648_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/circularreveal/CircularRevealHelper\00", align 1 +@.TypeMapEntry.16649_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.CircularReveal.CircularRevealLinearLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16650_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/circularreveal/CircularRevealLinearLayout\00", align 1 +@.TypeMapEntry.16651_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.CircularReveal.CircularRevealRelativeLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16652_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/circularreveal/CircularRevealRelativeLayout\00", align 1 +@.TypeMapEntry.16653_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.CircularReveal.CircularRevealWidgetCircularRevealEvaluator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16654_to = private unnamed_addr constant [88 x i8] c"com/google/android/material/circularreveal/CircularRevealWidget$CircularRevealEvaluator\00", align 1 +@.TypeMapEntry.16655_from = private unnamed_addr constant [115 x i8] c"Google.Android.Material.CircularReveal.CircularRevealWidgetCircularRevealProperty, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16656_to = private unnamed_addr constant [87 x i8] c"com/google/android/material/circularreveal/CircularRevealWidget$CircularRevealProperty\00", align 1 +@.TypeMapEntry.16657_from = private unnamed_addr constant [125 x i8] c"Google.Android.Material.CircularReveal.CircularRevealWidgetCircularRevealScrimColorProperty, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16658_to = private unnamed_addr constant [97 x i8] c"com/google/android/material/circularreveal/CircularRevealWidget$CircularRevealScrimColorProperty\00", align 1 +@.TypeMapEntry.16659_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.CircularReveal.CircularRevealWidgetRevealInfo, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16660_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/circularreveal/CircularRevealWidget$RevealInfo\00", align 1 +@.TypeMapEntry.16661_from = private unnamed_addr constant [122 x i8] c"Google.Android.Material.CircularReveal.CoordinatorLayout.CircularRevealCoordinatorLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16662_to = private unnamed_addr constant [93 x i8] c"com/google/android/material/circularreveal/coordinatorlayout/CircularRevealCoordinatorLayout\00", align 1 +@.TypeMapEntry.16663_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.CircularReveal.ICircularRevealWidget, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16664_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/circularreveal/CircularRevealWidget\00", align 1 +@.TypeMapEntry.16665_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.CircularReveal.ICircularRevealWidgetInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16666_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Color.ColorContrast, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16667_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/color/ColorContrast\00", align 1 +@.TypeMapEntry.16668_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Color.ColorContrastOptions+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16669_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/color/ColorContrastOptions$Builder\00", align 1 +@.TypeMapEntry.16670_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Color.ColorContrastOptions, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16671_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/color/ColorContrastOptions\00", align 1 +@.TypeMapEntry.16672_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Color.ColorRoles, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16673_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/color/ColorRoles\00", align 1 +@.TypeMapEntry.16674_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Color.DynamicColors+IOnAppliedCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16675_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/color/DynamicColors$OnAppliedCallback\00", align 1 +@.TypeMapEntry.16676_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Color.DynamicColors+IOnAppliedCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16677_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Color.DynamicColors+IPrecondition, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16678_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/DynamicColors$Precondition\00", align 1 +@.TypeMapEntry.16679_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Color.DynamicColors+IPreconditionInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16680_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Color.DynamicColors, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16681_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/color/DynamicColors\00", align 1 +@.TypeMapEntry.16682_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Color.DynamicColorsOptions+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16683_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/color/DynamicColorsOptions$Builder\00", align 1 +@.TypeMapEntry.16684_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Color.DynamicColorsOptions, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16685_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/color/DynamicColorsOptions\00", align 1 +@.TypeMapEntry.16686_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Color.HarmonizedColorAttributes, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16687_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/color/HarmonizedColorAttributes\00", align 1 +@.TypeMapEntry.16688_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Color.HarmonizedColors, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16689_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/color/HarmonizedColors\00", align 1 +@.TypeMapEntry.16690_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Color.HarmonizedColorsOptions+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16691_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/color/HarmonizedColorsOptions$Builder\00", align 1 +@.TypeMapEntry.16692_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.HarmonizedColorsOptions, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16693_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/HarmonizedColorsOptions\00", align 1 +@.TypeMapEntry.16694_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.IColorResourcesOverride, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16695_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/color/ColorResourcesOverride\00", align 1 +@.TypeMapEntry.16696_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Color.IColorResourcesOverrideInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16697_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Color.MaterialColorUtilitiesHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16698_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/color/MaterialColorUtilitiesHelper\00", align 1 +@.TypeMapEntry.16699_from = private unnamed_addr constant [78 x i8] c"Google.Android.Material.Color.MaterialColors, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16700_to = private unnamed_addr constant [49 x i8] c"com/google/android/material/color/MaterialColors\00", align 1 +@.TypeMapEntry.16701_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Color.ThemeUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16702_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/color/ThemeUtils\00", align 1 +@.TypeMapEntry.16703_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Color.Utilities.Blend, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16704_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/color/utilities/Blend\00", align 1 +@.TypeMapEntry.16705_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Color.Utilities.Cam16, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16706_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/color/utilities/Cam16\00", align 1 +@.TypeMapEntry.16707_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Color.Utilities.ColorUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16708_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/color/utilities/ColorUtils\00", align 1 +@.TypeMapEntry.16709_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Color.Utilities.Contrast, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16710_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/color/utilities/Contrast\00", align 1 +@.TypeMapEntry.16711_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.ContrastCurve, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16712_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/ContrastCurve\00", align 1 +@.TypeMapEntry.16713_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Color.Utilities.CorePalette, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16714_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/color/utilities/CorePalette\00", align 1 +@.TypeMapEntry.16715_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Color.Utilities.DislikeAnalyzer, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16716_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/color/utilities/DislikeAnalyzer\00", align 1 +@.TypeMapEntry.16717_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Color.Utilities.DynamicColor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16718_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/color/utilities/DynamicColor\00", align 1 +@.TypeMapEntry.16719_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.DynamicScheme, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16720_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/DynamicScheme\00", align 1 +@.TypeMapEntry.16721_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Color.Utilities.Hct, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16722_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/color/utilities/Hct\00", align 1 +@.TypeMapEntry.16723_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Color.Utilities.HctSolver, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16724_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/color/utilities/HctSolver\00", align 1 +@.TypeMapEntry.16725_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Color.Utilities.IPointProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16726_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/PointProvider\00", align 1 +@.TypeMapEntry.16727_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Color.Utilities.IPointProviderInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16728_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Color.Utilities.MaterialDynamicColors, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16729_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/color/utilities/MaterialDynamicColors\00", align 1 +@.TypeMapEntry.16730_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Color.Utilities.MathUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16731_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/color/utilities/MathUtils\00", align 1 +@.TypeMapEntry.16732_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.PointProviderLab, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16733_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/PointProviderLab\00", align 1 +@.TypeMapEntry.16734_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Color.Utilities.QuantizerCelebi, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16735_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/color/utilities/QuantizerCelebi\00", align 1 +@.TypeMapEntry.16736_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Color.Utilities.QuantizerMap, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16737_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/color/utilities/QuantizerMap\00", align 1 +@.TypeMapEntry.16738_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Color.Utilities.QuantizerResult, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16739_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/color/utilities/QuantizerResult\00", align 1 +@.TypeMapEntry.16740_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.QuantizerWsmeans, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16741_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/QuantizerWsmeans\00", align 1 +@.TypeMapEntry.16742_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Color.Utilities.QuantizerWu, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16743_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/color/utilities/QuantizerWu\00", align 1 +@.TypeMapEntry.16744_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Color.Utilities.Scheme, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16745_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/color/utilities/Scheme\00", align 1 +@.TypeMapEntry.16746_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.SchemeContent, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16747_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/SchemeContent\00", align 1 +@.TypeMapEntry.16748_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.SchemeExpressive, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16749_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/SchemeExpressive\00", align 1 +@.TypeMapEntry.16750_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Color.Utilities.SchemeFidelity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16751_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/color/utilities/SchemeFidelity\00", align 1 +@.TypeMapEntry.16752_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.SchemeFruitSalad, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16753_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/SchemeFruitSalad\00", align 1 +@.TypeMapEntry.16754_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.SchemeMonochrome, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16755_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/SchemeMonochrome\00", align 1 +@.TypeMapEntry.16756_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.SchemeNeutral, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16757_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/SchemeNeutral\00", align 1 +@.TypeMapEntry.16758_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.SchemeRainbow, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16759_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/SchemeRainbow\00", align 1 +@.TypeMapEntry.16760_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Color.Utilities.SchemeTonalSpot, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16761_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/color/utilities/SchemeTonalSpot\00", align 1 +@.TypeMapEntry.16762_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.SchemeVibrant, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16763_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/SchemeVibrant\00", align 1 +@.TypeMapEntry.16764_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Color.Utilities.Score, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16765_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/color/utilities/Score\00", align 1 +@.TypeMapEntry.16766_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Color.Utilities.TemperatureCache, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16767_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/color/utilities/TemperatureCache\00", align 1 +@.TypeMapEntry.16768_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Color.Utilities.TonalPalette, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16769_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/color/utilities/TonalPalette\00", align 1 +@.TypeMapEntry.16770_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Color.Utilities.ToneDeltaPair, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16771_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/color/utilities/ToneDeltaPair\00", align 1 +@.TypeMapEntry.16772_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Color.Utilities.TonePolarity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16773_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/color/utilities/TonePolarity\00", align 1 +@.TypeMapEntry.16774_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Color.Utilities.Variant, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16775_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/color/utilities/Variant\00", align 1 +@.TypeMapEntry.16776_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Color.Utilities.ViewingConditions, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16777_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/color/utilities/ViewingConditions\00", align 1 +@.TypeMapEntry.16778_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.DatePicker.CalendarConstraints+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16779_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/datepicker/CalendarConstraints$Builder\00", align 1 +@.TypeMapEntry.16780_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.DatePicker.CalendarConstraints+IDateValidator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16781_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/datepicker/CalendarConstraints$DateValidator\00", align 1 +@.TypeMapEntry.16782_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.DatePicker.CalendarConstraints+IDateValidatorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16783_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.DatePicker.CalendarConstraints, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16784_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/datepicker/CalendarConstraints\00", align 1 +@.TypeMapEntry.16785_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.DatePicker.CompositeDateValidator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16786_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/datepicker/CompositeDateValidator\00", align 1 +@.TypeMapEntry.16787_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.DatePicker.DateSelector, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16788_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/datepicker/DateSelector\00", align 1 +@.TypeMapEntry.16789_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.DatePicker.DateSelectorConsts, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16790_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.DatePicker.DateValidatorPointBackward, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16791_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/datepicker/DateValidatorPointBackward\00", align 1 +@.TypeMapEntry.16792_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.DatePicker.DateValidatorPointForward, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16793_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/datepicker/DateValidatorPointForward\00", align 1 +@.TypeMapEntry.16794_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.DatePicker.DayViewDecorator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16795_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/datepicker/DayViewDecorator\00", align 1 +@.TypeMapEntry.16796_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.DatePicker.DayViewDecoratorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16797_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.DatePicker.IDateSelector, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16798_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.DatePicker.IDateSelectorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16799_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16800_to = private unnamed_addr constant [83 x i8] c"com/google/android/material/datepicker/MaterialPickerOnPositiveButtonClickListener\00", align 1 +@.TypeMapEntry.16801_from = private unnamed_addr constant [124 x i8] c"Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16802_to = private unnamed_addr constant [99 x i8] c"mono/com/google/android/material/datepicker/MaterialPickerOnPositiveButtonClickListenerImplementor\00", align 1 +@.TypeMapEntry.16803_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.DatePicker.IMaterialPickerOnPositiveButtonClickListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16804_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.DatePicker.MaterialCalendar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16805_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/datepicker/MaterialCalendar\00", align 1 +@.TypeMapEntry.16806_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.DatePicker.MaterialDatePicker+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16807_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/datepicker/MaterialDatePicker$Builder\00", align 1 +@.TypeMapEntry.16808_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.DatePicker.MaterialDatePicker+IInputMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16809_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/datepicker/MaterialDatePicker$InputMode\00", align 1 +@.TypeMapEntry.16810_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.DatePicker.MaterialDatePicker+IInputModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16811_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.DatePicker.MaterialDatePicker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16812_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/datepicker/MaterialDatePicker\00", align 1 +@.TypeMapEntry.16813_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.DatePicker.MaterialStyledDatePickerDialog, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16814_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/datepicker/MaterialStyledDatePickerDialog\00", align 1 +@.TypeMapEntry.16815_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.DatePicker.MaterialTextInputPicker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16816_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/datepicker/MaterialTextInputPicker\00", align 1 +@.TypeMapEntry.16817_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.DatePicker.OnSelectionChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16818_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/datepicker/OnSelectionChangedListener\00", align 1 +@.TypeMapEntry.16819_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.DatePicker.OnSelectionChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16820_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.DatePicker.RangeDateSelector, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16821_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/datepicker/RangeDateSelector\00", align 1 +@.TypeMapEntry.16822_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.DatePicker.SingleDateSelector, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16823_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/datepicker/SingleDateSelector\00", align 1 +@.TypeMapEntry.16824_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Dialog.InsetDialogOnTouchListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16825_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/dialog/InsetDialogOnTouchListener\00", align 1 +@.TypeMapEntry.16826_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Dialog.MaterialAlertDialogBuilder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16827_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/dialog/MaterialAlertDialogBuilder\00", align 1 +@.TypeMapEntry.16828_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Dialog.MaterialDialogs, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16829_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/dialog/MaterialDialogs\00", align 1 +@.TypeMapEntry.16830_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Divider.MaterialDivider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16831_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/divider/MaterialDivider\00", align 1 +@.TypeMapEntry.16832_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Divider.MaterialDividerItemDecoration, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16833_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/divider/MaterialDividerItemDecoration\00", align 1 +@.TypeMapEntry.16834_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Drawable.DrawableUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16835_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/drawable/DrawableUtils\00", align 1 +@.TypeMapEntry.16836_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Drawable.ScaledDrawableWrapper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16837_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/drawable/ScaledDrawableWrapper\00", align 1 +@.TypeMapEntry.16838_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Elevation.ElevationOverlayProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16839_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/elevation/ElevationOverlayProvider\00", align 1 +@.TypeMapEntry.16840_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Elevation.SurfaceColors, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16841_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/elevation/SurfaceColors\00", align 1 +@.TypeMapEntry.16842_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Expandable.ExpandableWidgetHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16843_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/expandable/ExpandableWidgetHelper\00", align 1 +@.TypeMapEntry.16844_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.Expandable.IExpandableTransformationWidget, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16845_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/expandable/ExpandableTransformationWidget\00", align 1 +@.TypeMapEntry.16846_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.Expandable.IExpandableTransformationWidgetInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16847_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Expandable.IExpandableWidget, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16848_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/expandable/ExpandableWidget\00", align 1 +@.TypeMapEntry.16849_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Expandable.IExpandableWidgetInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16850_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.FloatingActionButton.BaseMotionStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16851_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/floatingactionbutton/BaseMotionStrategy\00", align 1 +@.TypeMapEntry.16852_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.FloatingActionButton.BaseMotionStrategyInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16853_from = private unnamed_addr constant [144 x i8] c"Google.Android.Material.FloatingActionButton.ExtendedFloatingActionButton+ExtendedFloatingActionButtonBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16854_to = private unnamed_addr constant [115 x i8] c"com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior\00", align 1 +@.TypeMapEntry.16855_from = private unnamed_addr constant [125 x i8] c"Google.Android.Material.FloatingActionButton.ExtendedFloatingActionButton+OnChangedCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16856_to = private unnamed_addr constant [96 x i8] c"com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton$OnChangedCallback\00", align 1 +@.TypeMapEntry.16857_from = private unnamed_addr constant [132 x i8] c"Google.Android.Material.FloatingActionButton.ExtendedFloatingActionButton+OnChangedCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16858_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.FloatingActionButton.ExtendedFloatingActionButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16859_to = private unnamed_addr constant [78 x i8] c"com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton\00", align 1 +@.TypeMapEntry.16860_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+BaseBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16861_to = private unnamed_addr constant [83 x i8] c"com/google/android/material/floatingactionbutton/FloatingActionButton$BaseBehavior\00", align 1 +@.TypeMapEntry.16862_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+Behavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16863_to = private unnamed_addr constant [79 x i8] c"com/google/android/material/floatingactionbutton/FloatingActionButton$Behavior\00", align 1 +@.TypeMapEntry.16864_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+ISize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16865_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/floatingactionbutton/FloatingActionButton$Size\00", align 1 +@.TypeMapEntry.16866_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+ISizeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16867_from = private unnamed_addr constant [127 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+OnVisibilityChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16868_to = private unnamed_addr constant [98 x i8] c"com/google/android/material/floatingactionbutton/FloatingActionButton$OnVisibilityChangedListener\00", align 1 +@.TypeMapEntry.16869_from = private unnamed_addr constant [134 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton+OnVisibilityChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16870_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.FloatingActionButton.FloatingActionButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16871_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/floatingactionbutton/FloatingActionButton\00", align 1 +@.TypeMapEntry.16872_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.ImageView.ShapeableImageView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16873_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/imageview/ShapeableImageView\00", align 1 +@.TypeMapEntry.16874_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Internal.BaselineLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16875_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/internal/BaselineLayout\00", align 1 +@.TypeMapEntry.16876_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16877_to = private unnamed_addr constant [81 x i8] c"com/google/android/material/internal/CheckableGroup$OnCheckedStateChangeListener\00", align 1 +@.TypeMapEntry.16878_from = private unnamed_addr constant [122 x i8] c"Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16879_to = private unnamed_addr constant [97 x i8] c"mono/com/google/android/material/internal/CheckableGroup_OnCheckedStateChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16880_from = private unnamed_addr constant [118 x i8] c"Google.Android.Material.Internal.CheckableGroup+IOnCheckedStateChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16881_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Internal.CheckableGroup, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16882_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/internal/CheckableGroup\00", align 1 +@.TypeMapEntry.16883_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Internal.CheckableImageButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16884_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/internal/CheckableImageButton\00", align 1 +@.TypeMapEntry.16885_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Internal.ClippableRoundedCornerLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16886_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/internal/ClippableRoundedCornerLayout\00", align 1 +@.TypeMapEntry.16887_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Internal.CollapsingTextHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16888_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/internal/CollapsingTextHelper\00", align 1 +@.TypeMapEntry.16889_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Internal.ContextUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16890_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/internal/ContextUtils\00", align 1 +@.TypeMapEntry.16891_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Internal.DescendantOffsetUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16892_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/internal/DescendantOffsetUtils\00", align 1 +@.TypeMapEntry.16893_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Internal.EdgeToEdgeUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16894_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/internal/EdgeToEdgeUtils\00", align 1 +@.TypeMapEntry.16895_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Internal.ExpandCollapseAnimationHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16896_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/internal/ExpandCollapseAnimationHelper\00", align 1 +@.TypeMapEntry.16897_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Internal.FadeThroughDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16898_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/internal/FadeThroughDrawable\00", align 1 +@.TypeMapEntry.16899_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Internal.FadeThroughUpdateListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16900_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/internal/FadeThroughUpdateListener\00", align 1 +@.TypeMapEntry.16901_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Internal.FlowLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16902_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/internal/FlowLayout\00", align 1 +@.TypeMapEntry.16903_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Internal.ForegroundLinearLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16904_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/internal/ForegroundLinearLayout\00", align 1 +@.TypeMapEntry.16905_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Internal.IExperimental, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16906_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/internal/Experimental\00", align 1 +@.TypeMapEntry.16907_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Internal.IExperimentalInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16908_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Internal.IMaterialCheckable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16909_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/internal/MaterialCheckable\00", align 1 +@.TypeMapEntry.16910_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Internal.IMaterialCheckableInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16911_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16912_to = private unnamed_addr constant [79 x i8] c"com/google/android/material/internal/MaterialCheckable$OnCheckedChangeListener\00", align 1 +@.TypeMapEntry.16913_from = private unnamed_addr constant [119 x i8] c"Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16914_to = private unnamed_addr constant [95 x i8] c"mono/com/google/android/material/internal/MaterialCheckable_OnCheckedChangeListenerImplementor\00", align 1 +@.TypeMapEntry.16915_from = private unnamed_addr constant [115 x i8] c"Google.Android.Material.Internal.IMaterialCheckableOnCheckedChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16916_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Internal.IStaticLayoutBuilderConfigurer, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16917_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/internal/StaticLayoutBuilderConfigurer\00", align 1 +@.TypeMapEntry.16918_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Internal.IStaticLayoutBuilderConfigurerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16919_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Internal.IViewOverlayImpl, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16920_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/internal/ViewOverlayImpl\00", align 1 +@.TypeMapEntry.16921_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Internal.IViewOverlayImplInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16922_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Internal.ManufacturerUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16923_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/internal/ManufacturerUtils\00", align 1 +@.TypeMapEntry.16924_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Internal.MultiViewUpdateListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16925_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/internal/MultiViewUpdateListener\00", align 1 +@.TypeMapEntry.16926_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Internal.NavigationMenu, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16927_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/internal/NavigationMenu\00", align 1 +@.TypeMapEntry.16928_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Internal.NavigationMenuItemView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16929_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/internal/NavigationMenuItemView\00", align 1 +@.TypeMapEntry.16930_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Internal.NavigationMenuPresenter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16931_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/internal/NavigationMenuPresenter\00", align 1 +@.TypeMapEntry.16932_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Internal.NavigationMenuView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16933_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/internal/NavigationMenuView\00", align 1 +@.TypeMapEntry.16934_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Internal.NavigationSubMenu, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16935_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/internal/NavigationSubMenu\00", align 1 +@.TypeMapEntry.16936_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Internal.ParcelableSparseArray, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16937_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/internal/ParcelableSparseArray\00", align 1 +@.TypeMapEntry.16938_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Internal.ParcelableSparseBooleanArray, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16939_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/internal/ParcelableSparseBooleanArray\00", align 1 +@.TypeMapEntry.16940_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Internal.ParcelableSparseIntArray, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16941_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/internal/ParcelableSparseIntArray\00", align 1 +@.TypeMapEntry.16942_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Internal.RectEvaluator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16943_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/internal/RectEvaluator\00", align 1 +@.TypeMapEntry.16944_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Internal.ReversableAnimatedValueInterpolator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16945_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/internal/ReversableAnimatedValueInterpolator\00", align 1 +@.TypeMapEntry.16946_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Internal.ScrimInsetsFrameLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16947_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/internal/ScrimInsetsFrameLayout\00", align 1 +@.TypeMapEntry.16948_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Internal.StateListAnimator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16949_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/internal/StateListAnimator\00", align 1 +@.TypeMapEntry.16950_from = private unnamed_addr constant [107 x i8] c"Google.Android.Material.Internal.TextDrawableHelper+ITextDrawableDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16951_to = private unnamed_addr constant [77 x i8] c"com/google/android/material/internal/TextDrawableHelper$TextDrawableDelegate\00", align 1 +@.TypeMapEntry.16952_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.Internal.TextDrawableHelper+ITextDrawableDelegateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16953_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Internal.TextDrawableHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16954_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/internal/TextDrawableHelper\00", align 1 +@.TypeMapEntry.16955_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Internal.TextScale, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16956_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/internal/TextScale\00", align 1 +@.TypeMapEntry.16957_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Internal.TextWatcherAdapter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16958_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/internal/TextWatcherAdapter\00", align 1 +@.TypeMapEntry.16959_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Internal.ThemeEnforcement, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16960_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/internal/ThemeEnforcement\00", align 1 +@.TypeMapEntry.16961_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Internal.ToolbarUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16962_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/internal/ToolbarUtils\00", align 1 +@.TypeMapEntry.16963_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Internal.TouchObserverFrameLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16964_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/internal/TouchObserverFrameLayout\00", align 1 +@.TypeMapEntry.16965_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16966_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/internal/ViewUtils$OnApplyWindowInsetsListener\00", align 1 +@.TypeMapEntry.16967_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16968_to = private unnamed_addr constant [91 x i8] c"mono/com/google/android/material/internal/ViewUtils_OnApplyWindowInsetsListenerImplementor\00", align 1 +@.TypeMapEntry.16969_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Internal.ViewUtils+IOnApplyWindowInsetsListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16970_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Internal.ViewUtils+RelativePadding, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16971_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/internal/ViewUtils$RelativePadding\00", align 1 +@.TypeMapEntry.16972_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Internal.ViewUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16973_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/internal/ViewUtils\00", align 1 +@.TypeMapEntry.16974_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Internal.VisibilityAwareImageButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16975_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/internal/VisibilityAwareImageButton\00", align 1 +@.TypeMapEntry.16976_from = private unnamed_addr constant [78 x i8] c"Google.Android.Material.Internal.WindowUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16977_to = private unnamed_addr constant [49 x i8] c"com/google/android/material/internal/WindowUtils\00", align 1 +@.TypeMapEntry.16978_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.MaterialSwitch.MaterialSwitch, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16979_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/materialswitch/MaterialSwitch\00", align 1 +@.TypeMapEntry.16980_from = private unnamed_addr constant [72 x i8] c"Google.Android.Material.Math.MathUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16981_to = private unnamed_addr constant [43 x i8] c"com/google/android/material/math/MathUtils\00", align 1 +@.TypeMapEntry.16982_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Motion.IMaterialBackHandler, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16983_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/motion/MaterialBackHandler\00", align 1 +@.TypeMapEntry.16984_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Motion.IMaterialBackHandlerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16985_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Motion.MaterialBackAnimationHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16986_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/motion/MaterialBackAnimationHelper\00", align 1 +@.TypeMapEntry.16987_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Motion.MaterialBackAnimationHelperInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16988_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Motion.MaterialBackOrchestrator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16989_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/motion/MaterialBackOrchestrator\00", align 1 +@.TypeMapEntry.16990_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Motion.MaterialBottomContainerBackHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16991_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/motion/MaterialBottomContainerBackHelper\00", align 1 +@.TypeMapEntry.16992_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Motion.MaterialMainContainerBackHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16993_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/motion/MaterialMainContainerBackHelper\00", align 1 +@.TypeMapEntry.16994_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Motion.MaterialSideContainerBackHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16995_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/motion/MaterialSideContainerBackHelper\00", align 1 +@.TypeMapEntry.16996_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Motion.MotionUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16997_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/motion/MotionUtils\00", align 1 +@.TypeMapEntry.16998_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Navigation.DrawerLayoutUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.16999_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/navigation/DrawerLayoutUtils\00", align 1 +@.TypeMapEntry.17000_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Navigation.NavigationBarItemView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17001_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/navigation/NavigationBarItemView\00", align 1 +@.TypeMapEntry.17002_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Navigation.NavigationBarItemViewInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17003_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Navigation.NavigationBarMenu, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17004_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/navigation/NavigationBarMenu\00", align 1 +@.TypeMapEntry.17005_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Navigation.NavigationBarMenuView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17006_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/navigation/NavigationBarMenuView\00", align 1 +@.TypeMapEntry.17007_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Navigation.NavigationBarMenuViewInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17008_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Navigation.NavigationBarPresenter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17009_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/navigation/NavigationBarPresenter\00", align 1 +@.TypeMapEntry.17010_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Navigation.NavigationBarView+ILabelVisibility, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17011_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/navigation/NavigationBarView$LabelVisibility\00", align 1 +@.TypeMapEntry.17012_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Navigation.NavigationBarView+ILabelVisibilityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17013_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17014_to = private unnamed_addr constant [82 x i8] c"com/google/android/material/navigation/NavigationBarView$OnItemReselectedListener\00", align 1 +@.TypeMapEntry.17015_from = private unnamed_addr constant [123 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17016_to = private unnamed_addr constant [98 x i8] c"mono/com/google/android/material/navigation/NavigationBarView_OnItemReselectedListenerImplementor\00", align 1 +@.TypeMapEntry.17017_from = private unnamed_addr constant [119 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemReselectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17018_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17019_to = private unnamed_addr constant [80 x i8] c"com/google/android/material/navigation/NavigationBarView$OnItemSelectedListener\00", align 1 +@.TypeMapEntry.17020_from = private unnamed_addr constant [121 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17021_to = private unnamed_addr constant [96 x i8] c"mono/com/google/android/material/navigation/NavigationBarView_OnItemSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.17022_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Navigation.NavigationBarView+IOnItemSelectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17023_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Navigation.NavigationBarView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17024_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/navigation/NavigationBarView\00", align 1 +@.TypeMapEntry.17025_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Navigation.NavigationBarViewInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17026_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17027_to = private unnamed_addr constant [87 x i8] c"com/google/android/material/navigation/NavigationView$OnNavigationItemSelectedListener\00", align 1 +@.TypeMapEntry.17028_from = private unnamed_addr constant [128 x i8] c"Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17029_to = private unnamed_addr constant [103 x i8] c"mono/com/google/android/material/navigation/NavigationView_OnNavigationItemSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.17030_from = private unnamed_addr constant [124 x i8] c"Google.Android.Material.Navigation.NavigationView+IOnNavigationItemSelectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17031_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Navigation.NavigationView+SavedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17032_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/navigation/NavigationView$SavedState\00", align 1 +@.TypeMapEntry.17033_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Navigation.NavigationView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17034_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/navigation/NavigationView\00", align 1 +@.TypeMapEntry.17035_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.NavigationRail.NavigationRailMenuView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17036_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/navigationrail/NavigationRailMenuView\00", align 1 +@.TypeMapEntry.17037_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.NavigationRail.NavigationRailView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17038_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/navigationrail/NavigationRailView\00", align 1 +@.TypeMapEntry.17039_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.ProgressIndicator.AnimatorDurationScaleProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17040_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/progressindicator/AnimatorDurationScaleProvider\00", align 1 +@.TypeMapEntry.17041_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IHideAnimationBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17042_to = private unnamed_addr constant [90 x i8] c"com/google/android/material/progressindicator/BaseProgressIndicator$HideAnimationBehavior\00", align 1 +@.TypeMapEntry.17043_from = private unnamed_addr constant [127 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IHideAnimationBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17044_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IShowAnimationBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17045_to = private unnamed_addr constant [90 x i8] c"com/google/android/material/progressindicator/BaseProgressIndicator$ShowAnimationBehavior\00", align 1 +@.TypeMapEntry.17046_from = private unnamed_addr constant [127 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicator+IShowAnimationBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17047_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17048_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/progressindicator/BaseProgressIndicator\00", align 1 +@.TypeMapEntry.17049_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicatorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17050_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicatorSpec, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17051_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/progressindicator/BaseProgressIndicatorSpec\00", align 1 +@.TypeMapEntry.17052_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.ProgressIndicator.BaseProgressIndicatorSpecInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17053_from = private unnamed_addr constant [121 x i8] c"Google.Android.Material.ProgressIndicator.CircularProgressIndicator+IIndicatorDirection, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17054_to = private unnamed_addr constant [91 x i8] c"com/google/android/material/progressindicator/CircularProgressIndicator$IndicatorDirection\00", align 1 +@.TypeMapEntry.17055_from = private unnamed_addr constant [128 x i8] c"Google.Android.Material.ProgressIndicator.CircularProgressIndicator+IIndicatorDirectionInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17056_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.ProgressIndicator.CircularProgressIndicator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17057_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/progressindicator/CircularProgressIndicator\00", align 1 +@.TypeMapEntry.17058_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.ProgressIndicator.CircularProgressIndicatorSpec, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17059_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/progressindicator/CircularProgressIndicatorSpec\00", align 1 +@.TypeMapEntry.17060_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.ProgressIndicator.DeterminateDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17061_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/progressindicator/DeterminateDrawable\00", align 1 +@.TypeMapEntry.17062_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.ProgressIndicator.IndeterminateDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17063_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/progressindicator/IndeterminateDrawable\00", align 1 +@.TypeMapEntry.17064_from = private unnamed_addr constant [127 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndeterminateAnimationType, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17065_to = private unnamed_addr constant [97 x i8] c"com/google/android/material/progressindicator/LinearProgressIndicator$IndeterminateAnimationType\00", align 1 +@.TypeMapEntry.17066_from = private unnamed_addr constant [134 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndeterminateAnimationTypeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17067_from = private unnamed_addr constant [119 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndicatorDirection, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17068_to = private unnamed_addr constant [89 x i8] c"com/google/android/material/progressindicator/LinearProgressIndicator$IndicatorDirection\00", align 1 +@.TypeMapEntry.17069_from = private unnamed_addr constant [126 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicator+IIndicatorDirectionInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17070_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17071_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/progressindicator/LinearProgressIndicator\00", align 1 +@.TypeMapEntry.17072_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.ProgressIndicator.LinearProgressIndicatorSpec, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17073_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/progressindicator/LinearProgressIndicatorSpec\00", align 1 +@.TypeMapEntry.17074_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.RadioButton.MaterialRadioButton, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17075_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/radiobutton/MaterialRadioButton\00", align 1 +@.TypeMapEntry.17076_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.Resources.CancelableFontCallback+IApplyFont, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17077_to = private unnamed_addr constant [71 x i8] c"com/google/android/material/resources/CancelableFontCallback$ApplyFont\00", align 1 +@.TypeMapEntry.17078_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.Resources.CancelableFontCallback+IApplyFontInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17079_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Resources.CancelableFontCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17080_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/resources/CancelableFontCallback\00", align 1 +@.TypeMapEntry.17081_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Resources.MaterialAttributes, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17082_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/resources/MaterialAttributes\00", align 1 +@.TypeMapEntry.17083_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Resources.MaterialResources, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17084_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/resources/MaterialResources\00", align 1 +@.TypeMapEntry.17085_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Resources.TextAppearance, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17086_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/resources/TextAppearance\00", align 1 +@.TypeMapEntry.17087_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Resources.TextAppearanceConfig, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17088_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/resources/TextAppearanceConfig\00", align 1 +@.TypeMapEntry.17089_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Resources.TextAppearanceFontCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17090_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/resources/TextAppearanceFontCallback\00", align 1 +@.TypeMapEntry.17091_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.Resources.TextAppearanceFontCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17092_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Resources.TypefaceUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17093_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/resources/TypefaceUtils\00", align 1 +@.TypeMapEntry.17094_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Ripple.RippleDrawableCompat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17095_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/ripple/RippleDrawableCompat\00", align 1 +@.TypeMapEntry.17096_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Ripple.RippleUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17097_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/ripple/RippleUtils\00", align 1 +@.TypeMapEntry.17098_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Search.SearchBar+OnLoadAnimationCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17099_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/search/SearchBar$OnLoadAnimationCallback\00", align 1 +@.TypeMapEntry.17100_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Search.SearchBar+OnLoadAnimationCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17101_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Search.SearchBar+ScrollingViewBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17102_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/search/SearchBar$ScrollingViewBehavior\00", align 1 +@.TypeMapEntry.17103_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Search.SearchBar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17104_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/search/SearchBar\00", align 1 +@.TypeMapEntry.17105_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Search.SearchView+Behavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17106_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/search/SearchView$Behavior\00", align 1 +@.TypeMapEntry.17107_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Search.SearchView+ITransitionListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17108_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/search/SearchView$TransitionListener\00", align 1 +@.TypeMapEntry.17109_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Search.SearchView+ITransitionListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17110_to = private unnamed_addr constant [81 x i8] c"mono/com/google/android/material/search/SearchView_TransitionListenerImplementor\00", align 1 +@.TypeMapEntry.17111_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Search.SearchView+ITransitionListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17112_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Search.SearchView+TransitionState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17113_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/search/SearchView$TransitionState\00", align 1 +@.TypeMapEntry.17114_from = private unnamed_addr constant [75 x i8] c"Google.Android.Material.Search.SearchView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17115_to = private unnamed_addr constant [46 x i8] c"com/google/android/material/search/SearchView\00", align 1 +@.TypeMapEntry.17116_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Shadow.IShadowViewDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17117_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/shadow/ShadowViewDelegate\00", align 1 +@.TypeMapEntry.17118_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Shadow.IShadowViewDelegateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17119_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Shadow.ShadowDrawableWrapper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17120_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/shadow/ShadowDrawableWrapper\00", align 1 +@.TypeMapEntry.17121_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Shadow.ShadowRenderer, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17122_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/shadow/ShadowRenderer\00", align 1 +@.TypeMapEntry.17123_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.AbsoluteCornerSize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17124_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/shape/AbsoluteCornerSize\00", align 1 +@.TypeMapEntry.17125_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.AdjustedCornerSize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17126_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/shape/AdjustedCornerSize\00", align 1 +@.TypeMapEntry.17127_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Shape.ClampedCornerSize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17128_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/shape/ClampedCornerSize\00", align 1 +@.TypeMapEntry.17129_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Shape.CornerFamily, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17130_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/shape/CornerFamily\00", align 1 +@.TypeMapEntry.17131_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.CornerFamilyConsts, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17132_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Shape.CornerTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17133_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/shape/CornerTreatment\00", align 1 +@.TypeMapEntry.17134_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.CutCornerTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17135_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/shape/CutCornerTreatment\00", align 1 +@.TypeMapEntry.17136_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Shape.EdgeTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17137_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/shape/EdgeTreatment\00", align 1 +@.TypeMapEntry.17138_from = private unnamed_addr constant [77 x i8] c"Google.Android.Material.Shape.ICornerFamily, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17139_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Shape.ICornerFamilyInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17140_from = private unnamed_addr constant [75 x i8] c"Google.Android.Material.Shape.ICornerSize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17141_to = private unnamed_addr constant [45 x i8] c"com/google/android/material/shape/CornerSize\00", align 1 +@.TypeMapEntry.17142_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.ICornerSizeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17143_from = private unnamed_addr constant [74 x i8] c"Google.Android.Material.Shape.IShapeable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17144_to = private unnamed_addr constant [44 x i8] c"com/google/android/material/shape/Shapeable\00", align 1 +@.TypeMapEntry.17145_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Shape.IShapeableInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17146_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Shape.InterpolateOnScrollPositionChangeHelper, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17147_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/shape/InterpolateOnScrollPositionChangeHelper\00", align 1 +@.TypeMapEntry.17148_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Shape.MarkerEdgeTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17149_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/shape/MarkerEdgeTreatment\00", align 1 +@.TypeMapEntry.17150_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Shape.MaterialShapeDrawable+ICompatibilityShadowMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17151_to = private unnamed_addr constant [80 x i8] c"com/google/android/material/shape/MaterialShapeDrawable$CompatibilityShadowMode\00", align 1 +@.TypeMapEntry.17152_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Shape.MaterialShapeDrawable+ICompatibilityShadowModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17153_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Shape.MaterialShapeDrawable+MaterialShapeDrawableState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17154_to = private unnamed_addr constant [83 x i8] c"com/google/android/material/shape/MaterialShapeDrawable$MaterialShapeDrawableState\00", align 1 +@.TypeMapEntry.17155_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Shape.MaterialShapeDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17156_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/shape/MaterialShapeDrawable\00", align 1 +@.TypeMapEntry.17157_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.MaterialShapeUtils, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17158_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/shape/MaterialShapeUtils\00", align 1 +@.TypeMapEntry.17159_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.Shape.OffsetEdgeTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17160_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/shape/OffsetEdgeTreatment\00", align 1 +@.TypeMapEntry.17161_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Shape.RelativeCornerSize, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17162_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/shape/RelativeCornerSize\00", align 1 +@.TypeMapEntry.17163_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Shape.RoundedCornerTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17164_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/shape/RoundedCornerTreatment\00", align 1 +@.TypeMapEntry.17165_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Shape.ShapeAppearanceModel+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17166_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/shape/ShapeAppearanceModel$Builder\00", align 1 +@.TypeMapEntry.17167_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.Shape.ShapeAppearanceModel+ICornerSizeUnaryOperator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17168_to = private unnamed_addr constant [79 x i8] c"com/google/android/material/shape/ShapeAppearanceModel$CornerSizeUnaryOperator\00", align 1 +@.TypeMapEntry.17169_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.Shape.ShapeAppearanceModel+ICornerSizeUnaryOperatorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17170_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Shape.ShapeAppearanceModel, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17171_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/shape/ShapeAppearanceModel\00", align 1 +@.TypeMapEntry.17172_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17173_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/shape/ShapeAppearancePathProvider$PathListener\00", align 1 +@.TypeMapEntry.17174_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17175_to = private unnamed_addr constant [91 x i8] c"mono/com/google/android/material/shape/ShapeAppearancePathProvider_PathListenerImplementor\00", align 1 +@.TypeMapEntry.17176_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Shape.ShapeAppearancePathProvider+IPathListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17177_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Shape.ShapeAppearancePathProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17178_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/shape/ShapeAppearancePathProvider\00", align 1 +@.TypeMapEntry.17179_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Shape.ShapePath+PathArcOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17180_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/shape/ShapePath$PathArcOperation\00", align 1 +@.TypeMapEntry.17181_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Shape.ShapePath+PathCubicOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17182_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/shape/ShapePath$PathCubicOperation\00", align 1 +@.TypeMapEntry.17183_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Shape.ShapePath+PathLineOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17184_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/shape/ShapePath$PathLineOperation\00", align 1 +@.TypeMapEntry.17185_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Shape.ShapePath+PathOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17186_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/shape/ShapePath$PathOperation\00", align 1 +@.TypeMapEntry.17187_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Shape.ShapePath+PathOperationInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17188_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Shape.ShapePath+PathQuadOperation, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17189_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/shape/ShapePath$PathQuadOperation\00", align 1 +@.TypeMapEntry.17190_from = private unnamed_addr constant [73 x i8] c"Google.Android.Material.Shape.ShapePath, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17191_to = private unnamed_addr constant [44 x i8] c"com/google/android/material/shape/ShapePath\00", align 1 +@.TypeMapEntry.17192_from = private unnamed_addr constant [78 x i8] c"Google.Android.Material.Shape.ShapePathModel, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17193_to = private unnamed_addr constant [49 x i8] c"com/google/android/material/shape/ShapePathModel\00", align 1 +@.TypeMapEntry.17194_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Shape.ShapeableDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17195_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/shape/ShapeableDelegate\00", align 1 +@.TypeMapEntry.17196_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Shape.ShapeableDelegateInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17197_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Shape.TriangleEdgeTreatment, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17198_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/shape/TriangleEdgeTreatment\00", align 1 +@.TypeMapEntry.17199_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.SideSheet.SideSheetBehavior+SavedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17200_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/sidesheet/SideSheetBehavior$SavedState\00", align 1 +@.TypeMapEntry.17201_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.SideSheet.SideSheetBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17202_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/sidesheet/SideSheetBehavior\00", align 1 +@.TypeMapEntry.17203_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.SideSheet.SideSheetCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17204_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/sidesheet/SideSheetCallback\00", align 1 +@.TypeMapEntry.17205_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.SideSheet.SideSheetCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17206_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.SideSheet.SideSheetDialog, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17207_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/sidesheet/SideSheetDialog\00", align 1 +@.TypeMapEntry.17208_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Slider.BasicLabelFormatter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17209_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/slider/BasicLabelFormatter\00", align 1 +@.TypeMapEntry.17210_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Slider.IBaseOnChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17211_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/slider/BaseOnChangeListener\00", align 1 +@.TypeMapEntry.17212_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Slider.IBaseOnChangeListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17213_to = private unnamed_addr constant [72 x i8] c"mono/com/google/android/material/slider/BaseOnChangeListenerImplementor\00", align 1 +@.TypeMapEntry.17214_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Slider.IBaseOnChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17215_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Slider.IBaseOnSliderTouchListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17216_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/slider/BaseOnSliderTouchListener\00", align 1 +@.TypeMapEntry.17217_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Slider.IBaseOnSliderTouchListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17218_to = private unnamed_addr constant [77 x i8] c"mono/com/google/android/material/slider/BaseOnSliderTouchListenerImplementor\00", align 1 +@.TypeMapEntry.17219_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Slider.IBaseOnSliderTouchListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17220_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Slider.ILabelFormatter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17221_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/slider/LabelFormatter\00", align 1 +@.TypeMapEntry.17222_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Slider.ILabelFormatterInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17223_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.Slider.LabelFormatter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17224_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Slider.LabelFormatterConsts, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17225_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Slider.RangeSlider+IOnChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17226_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/slider/RangeSlider$OnChangeListener\00", align 1 +@.TypeMapEntry.17227_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.Slider.RangeSlider+IOnChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17228_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Slider.RangeSlider+IOnSliderTouchListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17229_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/slider/RangeSlider$OnSliderTouchListener\00", align 1 +@.TypeMapEntry.17230_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Slider.RangeSlider+IOnSliderTouchListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17231_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Slider.RangeSlider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17232_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/slider/RangeSlider\00", align 1 +@.TypeMapEntry.17233_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Slider.Slider+IOnChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17234_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/slider/Slider$OnChangeListener\00", align 1 +@.TypeMapEntry.17235_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Slider.Slider+IOnChangeListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17236_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Slider.Slider+IOnSliderTouchListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17237_to = private unnamed_addr constant [64 x i8] c"com/google/android/material/slider/Slider$OnSliderTouchListener\00", align 1 +@.TypeMapEntry.17238_from = private unnamed_addr constant [101 x i8] c"Google.Android.Material.Slider.Slider+IOnSliderTouchListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17239_from = private unnamed_addr constant [71 x i8] c"Google.Android.Material.Slider.Slider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17240_to = private unnamed_addr constant [42 x i8] c"com/google/android/material/slider/Slider\00", align 1 +@.TypeMapEntry.17241_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+BaseCallback+IDismissEvent, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17242_to = private unnamed_addr constant [86 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$BaseCallback$DismissEvent\00", align 1 +@.TypeMapEntry.17243_from = private unnamed_addr constant [123 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+BaseCallback+IDismissEventInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17244_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+BaseCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17245_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$BaseCallback\00", align 1 +@.TypeMapEntry.17246_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+BaseCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17247_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+Behavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17248_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$Behavior\00", align 1 +@.TypeMapEntry.17249_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+BehaviorDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17250_to = private unnamed_addr constant [77 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$BehaviorDelegate\00", align 1 +@.TypeMapEntry.17251_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IAnimationMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17252_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$AnimationMode\00", align 1 +@.TypeMapEntry.17253_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IAnimationModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17254_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IContentViewCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17255_to = private unnamed_addr constant [80 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$ContentViewCallback\00", align 1 +@.TypeMapEntry.17256_from = private unnamed_addr constant [117 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IContentViewCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17257_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IDuration, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17258_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$Duration\00", align 1 +@.TypeMapEntry.17259_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+IDurationInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17260_from = private unnamed_addr constant [108 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar+SnackbarBaseLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17261_to = private unnamed_addr constant [79 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar$SnackbarBaseLayout\00", align 1 +@.TypeMapEntry.17262_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17263_to = private unnamed_addr constant [60 x i8] c"com/google/android/material/snackbar/BaseTransientBottomBar\00", align 1 +@.TypeMapEntry.17264_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Snackbar.BaseTransientBottomBarInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17265_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Snackbar.IContentViewCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17266_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/snackbar/ContentViewCallback\00", align 1 +@.TypeMapEntry.17267_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Snackbar.IContentViewCallbackInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17268_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Snackbar.Snackbar+Callback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17269_to = private unnamed_addr constant [55 x i8] c"com/google/android/material/snackbar/Snackbar$Callback\00", align 1 +@.TypeMapEntry.17270_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Snackbar.Snackbar+SnackbarActionClickImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17271_to = private unnamed_addr constant [77 x i8] c"com/google/android/material/snackbar/Snackbar_SnackbarActionClickImplementor\00", align 1 +@.TypeMapEntry.17272_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Snackbar.Snackbar+SnackbarLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17273_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/snackbar/Snackbar$SnackbarLayout\00", align 1 +@.TypeMapEntry.17274_from = private unnamed_addr constant [75 x i8] c"Google.Android.Material.Snackbar.Snackbar, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17275_to = private unnamed_addr constant [46 x i8] c"com/google/android/material/snackbar/Snackbar\00", align 1 +@.TypeMapEntry.17276_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Snackbar.SnackbarContentLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17277_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/snackbar/SnackbarContentLayout\00", align 1 +@.TypeMapEntry.17278_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Stateful.ExtendableSavedState, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17279_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/stateful/ExtendableSavedState\00", align 1 +@.TypeMapEntry.17280_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.SwitchMaterial.SwitchMaterial, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17281_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/switchmaterial/SwitchMaterial\00", align 1 +@.TypeMapEntry.17282_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Tabs.AppCompat.App.AppCompatActivity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17283_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/tabs/appcompat/app/AppCompatActivity\00", align 1 +@.TypeMapEntry.17284_from = private unnamed_addr constant [70 x i8] c"Google.Android.Material.Tabs.TabItem, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17285_to = private unnamed_addr constant [41 x i8] c"com/google/android/material/tabs/TabItem\00", align 1 +@.TypeMapEntry.17286_from = private unnamed_addr constant [89 x i8] c"Google.Android.Material.Tabs.TabLayout+ILabelVisibility, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17287_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/tabs/TabLayout$LabelVisibility\00", align 1 +@.TypeMapEntry.17288_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Tabs.TabLayout+ILabelVisibilityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17289_from = private unnamed_addr constant [78 x i8] c"Google.Android.Material.Tabs.TabLayout+IMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17290_to = private unnamed_addr constant [48 x i8] c"com/google/android/material/tabs/TabLayout$Mode\00", align 1 +@.TypeMapEntry.17291_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.Tabs.TabLayout+IModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17292_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17293_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/tabs/TabLayout$BaseOnTabSelectedListener\00", align 1 +@.TypeMapEntry.17294_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListener2, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17295_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/tabs/TabLayout$OnTabSelectedListener\00", align 1 +@.TypeMapEntry.17296_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListener2Invoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17297_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17298_to = private unnamed_addr constant [85 x i8] c"mono/com/google/android/material/tabs/TabLayout_BaseOnTabSelectedListenerImplementor\00", align 1 +@.TypeMapEntry.17299_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Tabs.TabLayout+IOnTabSelectedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17300_from = private unnamed_addr constant [84 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabGravity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17301_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/tabs/TabLayout$TabGravity\00", align 1 +@.TypeMapEntry.17302_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabGravityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17303_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabIndicatorAnimationMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17304_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/tabs/TabLayout$TabIndicatorAnimationMode\00", align 1 +@.TypeMapEntry.17305_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabIndicatorAnimationModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17306_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabIndicatorGravity, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17307_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/tabs/TabLayout$TabIndicatorGravity\00", align 1 +@.TypeMapEntry.17308_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.Tabs.TabLayout+ITabIndicatorGravityInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17309_from = private unnamed_addr constant [76 x i8] c"Google.Android.Material.Tabs.TabLayout+Tab, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17310_to = private unnamed_addr constant [47 x i8] c"com/google/android/material/tabs/TabLayout$Tab\00", align 1 +@.TypeMapEntry.17311_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Tabs.TabLayout+TabLayoutOnPageChangeListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17312_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/tabs/TabLayout$TabLayoutOnPageChangeListener\00", align 1 +@.TypeMapEntry.17313_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Tabs.TabLayout+TabView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17314_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/tabs/TabLayout$TabView\00", align 1 +@.TypeMapEntry.17315_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Tabs.TabLayout+ViewPagerOnTabSelectedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17316_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/tabs/TabLayout$ViewPagerOnTabSelectedListener\00", align 1 +@.TypeMapEntry.17317_from = private unnamed_addr constant [72 x i8] c"Google.Android.Material.Tabs.TabLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17318_to = private unnamed_addr constant [43 x i8] c"com/google/android/material/tabs/TabLayout\00", align 1 +@.TypeMapEntry.17319_from = private unnamed_addr constant [106 x i8] c"Google.Android.Material.Tabs.TabLayoutMediator+ITabConfigurationStrategy, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17320_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/tabs/TabLayoutMediator$TabConfigurationStrategy\00", align 1 +@.TypeMapEntry.17321_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.Tabs.TabLayoutMediator+ITabConfigurationStrategyInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17322_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.Tabs.TabLayoutMediator, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17323_to = private unnamed_addr constant [51 x i8] c"com/google/android/material/tabs/TabLayoutMediator\00", align 1 +@.TypeMapEntry.17324_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.TextField.MaterialAutoCompleteTextView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17325_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/textfield/MaterialAutoCompleteTextView\00", align 1 +@.TypeMapEntry.17326_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.TextField.TextInputEditText, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17327_to = private unnamed_addr constant [56 x i8] c"com/google/android/material/textfield/TextInputEditText\00", align 1 +@.TypeMapEntry.17328_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.TextField.TextInputLayout+AccessibilityDelegate, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17329_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/textfield/TextInputLayout$AccessibilityDelegate\00", align 1 +@.TypeMapEntry.17330_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.TextField.TextInputLayout+IBoxBackgroundMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17331_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/textfield/TextInputLayout$BoxBackgroundMode\00", align 1 +@.TypeMapEntry.17332_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.TextField.TextInputLayout+IBoxBackgroundModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17333_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.TextField.TextInputLayout+IEndIconMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17334_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/textfield/TextInputLayout$EndIconMode\00", align 1 +@.TypeMapEntry.17335_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.TextField.TextInputLayout+IEndIconModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17336_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.TextField.TextInputLayout+ILengthCounter, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17337_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/textfield/TextInputLayout$LengthCounter\00", align 1 +@.TypeMapEntry.17338_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.TextField.TextInputLayout+ILengthCounterInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17339_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17340_to = private unnamed_addr constant [81 x i8] c"com/google/android/material/textfield/TextInputLayout$OnEditTextAttachedListener\00", align 1 +@.TypeMapEntry.17341_from = private unnamed_addr constant [122 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17342_to = private unnamed_addr constant [97 x i8] c"mono/com/google/android/material/textfield/TextInputLayout_OnEditTextAttachedListenerImplementor\00", align 1 +@.TypeMapEntry.17343_from = private unnamed_addr constant [118 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEditTextAttachedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17344_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListener, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17345_to = private unnamed_addr constant [79 x i8] c"com/google/android/material/textfield/TextInputLayout$OnEndIconChangedListener\00", align 1 +@.TypeMapEntry.17346_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListenerImplementor, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17347_to = private unnamed_addr constant [95 x i8] c"mono/com/google/android/material/textfield/TextInputLayout_OnEndIconChangedListenerImplementor\00", align 1 +@.TypeMapEntry.17348_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.TextField.TextInputLayout+IOnEndIconChangedListenerInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17349_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.TextField.TextInputLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17350_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/textfield/TextInputLayout\00", align 1 +@.TypeMapEntry.17351_from = private unnamed_addr constant [83 x i8] c"Google.Android.Material.TextView.MaterialTextView, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17352_to = private unnamed_addr constant [54 x i8] c"com/google/android/material/textview/MaterialTextView\00", align 1 +@.TypeMapEntry.17353_from = private unnamed_addr constant [94 x i8] c"Google.Android.Material.Theme.MaterialComponentsViewInflater, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17354_to = private unnamed_addr constant [65 x i8] c"com/google/android/material/theme/MaterialComponentsViewInflater\00", align 1 +@.TypeMapEntry.17355_from = private unnamed_addr constant [92 x i8] c"Google.Android.Material.Theme.Overlay.MaterialThemeOverlay, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17356_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/theme/overlay/MaterialThemeOverlay\00", align 1 +@.TypeMapEntry.17357_from = private unnamed_addr constant [80 x i8] c"Google.Android.Material.TimePicker.ITimeFormat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17358_to = private unnamed_addr constant [50 x i8] c"com/google/android/material/timepicker/TimeFormat\00", align 1 +@.TypeMapEntry.17359_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.TimePicker.ITimeFormatInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17360_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.TimePicker.MaterialTimePicker+Builder, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17361_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/timepicker/MaterialTimePicker$Builder\00", align 1 +@.TypeMapEntry.17362_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.TimePicker.MaterialTimePicker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17363_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/timepicker/MaterialTimePicker\00", align 1 +@.TypeMapEntry.17364_from = private unnamed_addr constant [79 x i8] c"Google.Android.Material.TimePicker.TimeFormat, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17365_from = private unnamed_addr constant [85 x i8] c"Google.Android.Material.TimePicker.TimeFormatConsts, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17366_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Tooltip.TooltipDrawable, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17367_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/tooltip/TooltipDrawable\00", align 1 +@.TypeMapEntry.17368_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Transformation.ExpandableBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17369_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/transformation/ExpandableBehavior\00", align 1 +@.TypeMapEntry.17370_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Transformation.ExpandableBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17371_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Transformation.ExpandableTransformationBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17372_to = private unnamed_addr constant [76 x i8] c"com/google/android/material/transformation/ExpandableTransformationBehavior\00", align 1 +@.TypeMapEntry.17373_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Transformation.ExpandableTransformationBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17374_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.Transformation.FabTransformationBehavior+FabTransformationSpec, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17375_to = private unnamed_addr constant [91 x i8] c"com/google/android/material/transformation/FabTransformationBehavior$FabTransformationSpec\00", align 1 +@.TypeMapEntry.17376_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Transformation.FabTransformationBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17377_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/transformation/FabTransformationBehavior\00", align 1 +@.TypeMapEntry.17378_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Transformation.FabTransformationBehaviorInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17379_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Transformation.FabTransformationScrimBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17380_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/transformation/FabTransformationScrimBehavior\00", align 1 +@.TypeMapEntry.17381_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Transformation.FabTransformationSheetBehavior, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17382_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/transformation/FabTransformationSheetBehavior\00", align 1 +@.TypeMapEntry.17383_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Transformation.TransformationChildCard, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17384_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/transformation/TransformationChildCard\00", align 1 +@.TypeMapEntry.17385_from = private unnamed_addr constant [98 x i8] c"Google.Android.Material.Transformation.TransformationChildLayout, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17386_to = private unnamed_addr constant [69 x i8] c"com/google/android/material/transformation/TransformationChildLayout\00", align 1 +@.TypeMapEntry.17387_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Transition.FadeProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17388_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/transition/FadeProvider\00", align 1 +@.TypeMapEntry.17389_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Transition.FadeThroughProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17390_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/transition/FadeThroughProvider\00", align 1 +@.TypeMapEntry.17391_from = private unnamed_addr constant [73 x i8] c"Google.Android.Material.Transition.Hold, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17392_to = private unnamed_addr constant [44 x i8] c"com/google/android/material/transition/Hold\00", align 1 +@.TypeMapEntry.17393_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Transition.IVisibilityAnimatorProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17394_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/transition/VisibilityAnimatorProvider\00", align 1 +@.TypeMapEntry.17395_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Transition.IVisibilityAnimatorProviderInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17396_from = private unnamed_addr constant [86 x i8] c"Google.Android.Material.Transition.MaterialArcMotion, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17397_to = private unnamed_addr constant [57 x i8] c"com/google/android/material/transition/MaterialArcMotion\00", align 1 +@.TypeMapEntry.17398_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+IFadeMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17399_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/transition/MaterialContainerTransform$FadeMode\00", align 1 +@.TypeMapEntry.17400_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+IFadeModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17401_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+IFitMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17402_to = private unnamed_addr constant [74 x i8] c"com/google/android/material/transition/MaterialContainerTransform$FitMode\00", align 1 +@.TypeMapEntry.17403_from = private unnamed_addr constant [111 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+IFitModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17404_from = private unnamed_addr constant [116 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+ITransitionDirection, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17405_to = private unnamed_addr constant [86 x i8] c"com/google/android/material/transition/MaterialContainerTransform$TransitionDirection\00", align 1 +@.TypeMapEntry.17406_from = private unnamed_addr constant [123 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+ITransitionDirectionInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17407_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform+ProgressThresholds, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17408_to = private unnamed_addr constant [85 x i8] c"com/google/android/material/transition/MaterialContainerTransform$ProgressThresholds\00", align 1 +@.TypeMapEntry.17409_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Transition.MaterialContainerTransform, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17410_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/transition/MaterialContainerTransform\00", align 1 +@.TypeMapEntry.17411_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Transition.MaterialElevationScale, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17412_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/transition/MaterialElevationScale\00", align 1 +@.TypeMapEntry.17413_from = private unnamed_addr constant [81 x i8] c"Google.Android.Material.Transition.MaterialFade, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17414_to = private unnamed_addr constant [52 x i8] c"com/google/android/material/transition/MaterialFade\00", align 1 +@.TypeMapEntry.17415_from = private unnamed_addr constant [88 x i8] c"Google.Android.Material.Transition.MaterialFadeThrough, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17416_to = private unnamed_addr constant [59 x i8] c"com/google/android/material/transition/MaterialFadeThrough\00", align 1 +@.TypeMapEntry.17417_from = private unnamed_addr constant [93 x i8] c"Google.Android.Material.Transition.MaterialSharedAxis+IAxis, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17418_to = private unnamed_addr constant [63 x i8] c"com/google/android/material/transition/MaterialSharedAxis$Axis\00", align 1 +@.TypeMapEntry.17419_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.Transition.MaterialSharedAxis+IAxisInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17420_from = private unnamed_addr constant [87 x i8] c"Google.Android.Material.Transition.MaterialSharedAxis, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17421_to = private unnamed_addr constant [58 x i8] c"com/google/android/material/transition/MaterialSharedAxis\00", align 1 +@.TypeMapEntry.17422_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Transition.Platform.FadeProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17423_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/transition/platform/FadeProvider\00", align 1 +@.TypeMapEntry.17424_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Transition.Platform.FadeThroughProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17425_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/transition/platform/FadeThroughProvider\00", align 1 +@.TypeMapEntry.17426_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Transition.Platform.Hold, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17427_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/transition/platform/Hold\00", align 1 +@.TypeMapEntry.17428_from = private unnamed_addr constant [105 x i8] c"Google.Android.Material.Transition.Platform.IVisibilityAnimatorProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17429_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/transition/platform/VisibilityAnimatorProvider\00", align 1 +@.TypeMapEntry.17430_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Transition.Platform.IVisibilityAnimatorProviderInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17431_from = private unnamed_addr constant [95 x i8] c"Google.Android.Material.Transition.Platform.MaterialArcMotion, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17432_to = private unnamed_addr constant [66 x i8] c"com/google/android/material/transition/platform/MaterialArcMotion\00", align 1 +@.TypeMapEntry.17433_from = private unnamed_addr constant [114 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFadeMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17434_to = private unnamed_addr constant [84 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransform$FadeMode\00", align 1 +@.TypeMapEntry.17435_from = private unnamed_addr constant [121 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFadeModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17436_from = private unnamed_addr constant [113 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFitMode, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17437_to = private unnamed_addr constant [83 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransform$FitMode\00", align 1 +@.TypeMapEntry.17438_from = private unnamed_addr constant [120 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+IFitModeInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17439_from = private unnamed_addr constant [125 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+ITransitionDirection, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17440_to = private unnamed_addr constant [95 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransform$TransitionDirection\00", align 1 +@.TypeMapEntry.17441_from = private unnamed_addr constant [132 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+ITransitionDirectionInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17442_from = private unnamed_addr constant [123 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform+ProgressThresholds, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17443_to = private unnamed_addr constant [94 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransform$ProgressThresholds\00", align 1 +@.TypeMapEntry.17444_from = private unnamed_addr constant [104 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransform, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17445_to = private unnamed_addr constant [75 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransform\00", align 1 +@.TypeMapEntry.17446_from = private unnamed_addr constant [140 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback+IShapeProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17447_to = private unnamed_addr constant [110 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransformSharedElementCallback$ShapeProvider\00", align 1 +@.TypeMapEntry.17448_from = private unnamed_addr constant [147 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback+IShapeProviderInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17449_from = private unnamed_addr constant [152 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback+ShapeableViewShapeProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17450_to = private unnamed_addr constant [123 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransformSharedElementCallback$ShapeableViewShapeProvider\00", align 1 +@.TypeMapEntry.17451_from = private unnamed_addr constant [125 x i8] c"Google.Android.Material.Transition.Platform.MaterialContainerTransformSharedElementCallback, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17452_to = private unnamed_addr constant [96 x i8] c"com/google/android/material/transition/platform/MaterialContainerTransformSharedElementCallback\00", align 1 +@.TypeMapEntry.17453_from = private unnamed_addr constant [100 x i8] c"Google.Android.Material.Transition.Platform.MaterialElevationScale, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17454_to = private unnamed_addr constant [71 x i8] c"com/google/android/material/transition/platform/MaterialElevationScale\00", align 1 +@.TypeMapEntry.17455_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Transition.Platform.MaterialFade, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17456_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/transition/platform/MaterialFade\00", align 1 +@.TypeMapEntry.17457_from = private unnamed_addr constant [97 x i8] c"Google.Android.Material.Transition.Platform.MaterialFadeThrough, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17458_to = private unnamed_addr constant [68 x i8] c"com/google/android/material/transition/platform/MaterialFadeThrough\00", align 1 +@.TypeMapEntry.17459_from = private unnamed_addr constant [102 x i8] c"Google.Android.Material.Transition.Platform.MaterialSharedAxis+IAxis, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17460_to = private unnamed_addr constant [72 x i8] c"com/google/android/material/transition/platform/MaterialSharedAxis$Axis\00", align 1 +@.TypeMapEntry.17461_from = private unnamed_addr constant [109 x i8] c"Google.Android.Material.Transition.Platform.MaterialSharedAxis+IAxisInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17462_from = private unnamed_addr constant [96 x i8] c"Google.Android.Material.Transition.Platform.MaterialSharedAxis, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17463_to = private unnamed_addr constant [67 x i8] c"com/google/android/material/transition/platform/MaterialSharedAxis\00", align 1 +@.TypeMapEntry.17464_from = private unnamed_addr constant [91 x i8] c"Google.Android.Material.Transition.Platform.ScaleProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17465_to = private unnamed_addr constant [62 x i8] c"com/google/android/material/transition/platform/ScaleProvider\00", align 1 +@.TypeMapEntry.17466_from = private unnamed_addr constant [112 x i8] c"Google.Android.Material.Transition.Platform.SlideDistanceProvider+IGravityFlag, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17467_to = private unnamed_addr constant [82 x i8] c"com/google/android/material/transition/platform/SlideDistanceProvider$GravityFlag\00", align 1 +@.TypeMapEntry.17468_from = private unnamed_addr constant [119 x i8] c"Google.Android.Material.Transition.Platform.SlideDistanceProvider+IGravityFlagInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17469_from = private unnamed_addr constant [99 x i8] c"Google.Android.Material.Transition.Platform.SlideDistanceProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17470_to = private unnamed_addr constant [70 x i8] c"com/google/android/material/transition/platform/SlideDistanceProvider\00", align 1 +@.TypeMapEntry.17471_from = private unnamed_addr constant [82 x i8] c"Google.Android.Material.Transition.ScaleProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17472_to = private unnamed_addr constant [53 x i8] c"com/google/android/material/transition/ScaleProvider\00", align 1 +@.TypeMapEntry.17473_from = private unnamed_addr constant [103 x i8] c"Google.Android.Material.Transition.SlideDistanceProvider+IGravityFlag, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17474_to = private unnamed_addr constant [73 x i8] c"com/google/android/material/transition/SlideDistanceProvider$GravityFlag\00", align 1 +@.TypeMapEntry.17475_from = private unnamed_addr constant [110 x i8] c"Google.Android.Material.Transition.SlideDistanceProvider+IGravityFlagInvoker, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17476_from = private unnamed_addr constant [90 x i8] c"Google.Android.Material.Transition.SlideDistanceProvider, Xamarin.Google.Android.Material\00", align 1 +@.TypeMapEntry.17477_to = private unnamed_addr constant [61 x i8] c"com/google/android/material/transition/SlideDistanceProvider\00", align 1 +@.TypeMapEntry.17478_from = private unnamed_addr constant [87 x i8] c"Google.Common.Util.Concurrent.IListenableFuture, Xamarin.Google.Guava.ListenableFuture\00", align 1 +@.TypeMapEntry.17479_to = private unnamed_addr constant [51 x i8] c"com/google/common/util/concurrent/ListenableFuture\00", align 1 +@.TypeMapEntry.17480_from = private unnamed_addr constant [94 x i8] c"Google.Common.Util.Concurrent.IListenableFutureInvoker, Xamarin.Google.Guava.ListenableFuture\00", align 1 +@.TypeMapEntry.17481_from = private unnamed_addr constant [43 x i8] c"GoogleGson.Annotations.IExpose, GoogleGson\00", align 1 +@.TypeMapEntry.17482_to = private unnamed_addr constant [35 x i8] c"com/google/gson/annotations/Expose\00", align 1 +@.TypeMapEntry.17483_from = private unnamed_addr constant [50 x i8] c"GoogleGson.Annotations.IExposeInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17484_from = private unnamed_addr constant [48 x i8] c"GoogleGson.Annotations.IJsonAdapter, GoogleGson\00", align 1 +@.TypeMapEntry.17485_to = private unnamed_addr constant [40 x i8] c"com/google/gson/annotations/JsonAdapter\00", align 1 +@.TypeMapEntry.17486_from = private unnamed_addr constant [55 x i8] c"GoogleGson.Annotations.IJsonAdapterInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17487_from = private unnamed_addr constant [51 x i8] c"GoogleGson.Annotations.ISerializedName, GoogleGson\00", align 1 +@.TypeMapEntry.17488_to = private unnamed_addr constant [43 x i8] c"com/google/gson/annotations/SerializedName\00", align 1 +@.TypeMapEntry.17489_from = private unnamed_addr constant [58 x i8] c"GoogleGson.Annotations.ISerializedNameInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17490_from = private unnamed_addr constant [42 x i8] c"GoogleGson.Annotations.ISince, GoogleGson\00", align 1 +@.TypeMapEntry.17491_to = private unnamed_addr constant [34 x i8] c"com/google/gson/annotations/Since\00", align 1 +@.TypeMapEntry.17492_from = private unnamed_addr constant [49 x i8] c"GoogleGson.Annotations.ISinceInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17493_from = private unnamed_addr constant [42 x i8] c"GoogleGson.Annotations.IUntil, GoogleGson\00", align 1 +@.TypeMapEntry.17494_to = private unnamed_addr constant [34 x i8] c"com/google/gson/annotations/Until\00", align 1 +@.TypeMapEntry.17495_from = private unnamed_addr constant [49 x i8] c"GoogleGson.Annotations.IUntilInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17496_from = private unnamed_addr constant [39 x i8] c"GoogleGson.FieldAttributes, GoogleGson\00", align 1 +@.TypeMapEntry.17497_to = private unnamed_addr constant [32 x i8] c"com/google/gson/FieldAttributes\00", align 1 +@.TypeMapEntry.17498_from = private unnamed_addr constant [41 x i8] c"GoogleGson.FieldNamingPolicy, GoogleGson\00", align 1 +@.TypeMapEntry.17499_to = private unnamed_addr constant [34 x i8] c"com/google/gson/FieldNamingPolicy\00", align 1 +@.TypeMapEntry.17500_from = private unnamed_addr constant [48 x i8] c"GoogleGson.FieldNamingPolicyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17501_from = private unnamed_addr constant [39 x i8] c"GoogleGson.FormattingStyle, GoogleGson\00", align 1 +@.TypeMapEntry.17502_to = private unnamed_addr constant [32 x i8] c"com/google/gson/FormattingStyle\00", align 1 +@.TypeMapEntry.17503_from = private unnamed_addr constant [28 x i8] c"GoogleGson.Gson, GoogleGson\00", align 1 +@.TypeMapEntry.17504_to = private unnamed_addr constant [21 x i8] c"com/google/gson/Gson\00", align 1 +@.TypeMapEntry.17505_from = private unnamed_addr constant [35 x i8] c"GoogleGson.GsonBuilder, GoogleGson\00", align 1 +@.TypeMapEntry.17506_to = private unnamed_addr constant [28 x i8] c"com/google/gson/GsonBuilder\00", align 1 +@.TypeMapEntry.17507_from = private unnamed_addr constant [42 x i8] c"GoogleGson.IExclusionStrategy, GoogleGson\00", align 1 +@.TypeMapEntry.17508_to = private unnamed_addr constant [34 x i8] c"com/google/gson/ExclusionStrategy\00", align 1 +@.TypeMapEntry.17509_from = private unnamed_addr constant [49 x i8] c"GoogleGson.IExclusionStrategyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17510_from = private unnamed_addr constant [44 x i8] c"GoogleGson.IFieldNamingStrategy, GoogleGson\00", align 1 +@.TypeMapEntry.17511_to = private unnamed_addr constant [36 x i8] c"com/google/gson/FieldNamingStrategy\00", align 1 +@.TypeMapEntry.17512_from = private unnamed_addr constant [51 x i8] c"GoogleGson.IFieldNamingStrategyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17513_from = private unnamed_addr constant [40 x i8] c"GoogleGson.IInstanceCreator, GoogleGson\00", align 1 +@.TypeMapEntry.17514_to = private unnamed_addr constant [32 x i8] c"com/google/gson/InstanceCreator\00", align 1 +@.TypeMapEntry.17515_from = private unnamed_addr constant [47 x i8] c"GoogleGson.IInstanceCreatorInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17516_from = private unnamed_addr constant [51 x i8] c"GoogleGson.IJsonDeserializationContext, GoogleGson\00", align 1 +@.TypeMapEntry.17517_to = private unnamed_addr constant [43 x i8] c"com/google/gson/JsonDeserializationContext\00", align 1 +@.TypeMapEntry.17518_from = private unnamed_addr constant [58 x i8] c"GoogleGson.IJsonDeserializationContextInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17519_from = private unnamed_addr constant [41 x i8] c"GoogleGson.IJsonDeserializer, GoogleGson\00", align 1 +@.TypeMapEntry.17520_to = private unnamed_addr constant [33 x i8] c"com/google/gson/JsonDeserializer\00", align 1 +@.TypeMapEntry.17521_from = private unnamed_addr constant [48 x i8] c"GoogleGson.IJsonDeserializerInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17522_from = private unnamed_addr constant [49 x i8] c"GoogleGson.IJsonSerializationContext, GoogleGson\00", align 1 +@.TypeMapEntry.17523_to = private unnamed_addr constant [41 x i8] c"com/google/gson/JsonSerializationContext\00", align 1 +@.TypeMapEntry.17524_from = private unnamed_addr constant [56 x i8] c"GoogleGson.IJsonSerializationContextInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17525_from = private unnamed_addr constant [39 x i8] c"GoogleGson.IJsonSerializer, GoogleGson\00", align 1 +@.TypeMapEntry.17526_to = private unnamed_addr constant [31 x i8] c"com/google/gson/JsonSerializer\00", align 1 +@.TypeMapEntry.17527_from = private unnamed_addr constant [46 x i8] c"GoogleGson.IJsonSerializerInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17528_from = private unnamed_addr constant [47 x i8] c"GoogleGson.IReflectionAccessFilter, GoogleGson\00", align 1 +@.TypeMapEntry.17529_to = private unnamed_addr constant [39 x i8] c"com/google/gson/ReflectionAccessFilter\00", align 1 +@.TypeMapEntry.17530_from = private unnamed_addr constant [54 x i8] c"GoogleGson.IReflectionAccessFilterInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17531_from = private unnamed_addr constant [41 x i8] c"GoogleGson.IToNumberStrategy, GoogleGson\00", align 1 +@.TypeMapEntry.17532_to = private unnamed_addr constant [33 x i8] c"com/google/gson/ToNumberStrategy\00", align 1 +@.TypeMapEntry.17533_from = private unnamed_addr constant [48 x i8] c"GoogleGson.IToNumberStrategyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17534_from = private unnamed_addr constant [43 x i8] c"GoogleGson.ITypeAdapterFactory, GoogleGson\00", align 1 +@.TypeMapEntry.17535_to = private unnamed_addr constant [35 x i8] c"com/google/gson/TypeAdapterFactory\00", align 1 +@.TypeMapEntry.17536_from = private unnamed_addr constant [50 x i8] c"GoogleGson.ITypeAdapterFactoryInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17537_from = private unnamed_addr constant [33 x i8] c"GoogleGson.JsonArray, GoogleGson\00", align 1 +@.TypeMapEntry.17538_to = private unnamed_addr constant [26 x i8] c"com/google/gson/JsonArray\00", align 1 +@.TypeMapEntry.17539_from = private unnamed_addr constant [35 x i8] c"GoogleGson.JsonElement, GoogleGson\00", align 1 +@.TypeMapEntry.17540_to = private unnamed_addr constant [28 x i8] c"com/google/gson/JsonElement\00", align 1 +@.TypeMapEntry.17541_from = private unnamed_addr constant [42 x i8] c"GoogleGson.JsonElementInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17542_from = private unnamed_addr constant [39 x i8] c"GoogleGson.JsonIOException, GoogleGson\00", align 1 +@.TypeMapEntry.17543_to = private unnamed_addr constant [32 x i8] c"com/google/gson/JsonIOException\00", align 1 +@.TypeMapEntry.17544_from = private unnamed_addr constant [32 x i8] c"GoogleGson.JsonNull, GoogleGson\00", align 1 +@.TypeMapEntry.17545_to = private unnamed_addr constant [25 x i8] c"com/google/gson/JsonNull\00", align 1 +@.TypeMapEntry.17546_from = private unnamed_addr constant [34 x i8] c"GoogleGson.JsonObject, GoogleGson\00", align 1 +@.TypeMapEntry.17547_to = private unnamed_addr constant [27 x i8] c"com/google/gson/JsonObject\00", align 1 +@.TypeMapEntry.17548_from = private unnamed_addr constant [42 x i8] c"GoogleGson.JsonParseException, GoogleGson\00", align 1 +@.TypeMapEntry.17549_to = private unnamed_addr constant [35 x i8] c"com/google/gson/JsonParseException\00", align 1 +@.TypeMapEntry.17550_from = private unnamed_addr constant [34 x i8] c"GoogleGson.JsonParser, GoogleGson\00", align 1 +@.TypeMapEntry.17551_to = private unnamed_addr constant [27 x i8] c"com/google/gson/JsonParser\00", align 1 +@.TypeMapEntry.17552_from = private unnamed_addr constant [37 x i8] c"GoogleGson.JsonPrimitive, GoogleGson\00", align 1 +@.TypeMapEntry.17553_to = private unnamed_addr constant [30 x i8] c"com/google/gson/JsonPrimitive\00", align 1 +@.TypeMapEntry.17554_from = private unnamed_addr constant [40 x i8] c"GoogleGson.JsonStreamParser, GoogleGson\00", align 1 +@.TypeMapEntry.17555_to = private unnamed_addr constant [33 x i8] c"com/google/gson/JsonStreamParser\00", align 1 +@.TypeMapEntry.17556_from = private unnamed_addr constant [43 x i8] c"GoogleGson.JsonSyntaxException, GoogleGson\00", align 1 +@.TypeMapEntry.17557_to = private unnamed_addr constant [36 x i8] c"com/google/gson/JsonSyntaxException\00", align 1 +@.TypeMapEntry.17558_from = private unnamed_addr constant [47 x i8] c"GoogleGson.LongSerializationPolicy, GoogleGson\00", align 1 +@.TypeMapEntry.17559_to = private unnamed_addr constant [40 x i8] c"com/google/gson/LongSerializationPolicy\00", align 1 +@.TypeMapEntry.17560_from = private unnamed_addr constant [54 x i8] c"GoogleGson.LongSerializationPolicyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17561_from = private unnamed_addr constant [41 x i8] c"GoogleGson.Reflect.TypeToken, GoogleGson\00", align 1 +@.TypeMapEntry.17562_to = private unnamed_addr constant [34 x i8] c"com/google/gson/reflect/TypeToken\00", align 1 +@.TypeMapEntry.17563_from = private unnamed_addr constant [46 x i8] c"GoogleGson.ReflectionAccessFilter, GoogleGson\00", align 1 +@.TypeMapEntry.17564_from = private unnamed_addr constant [52 x i8] c"GoogleGson.ReflectionAccessFilterConsts, GoogleGson\00", align 1 +@.TypeMapEntry.17565_from = private unnamed_addr constant [58 x i8] c"GoogleGson.ReflectionAccessFilterFilterResult, GoogleGson\00", align 1 +@.TypeMapEntry.17566_to = private unnamed_addr constant [52 x i8] c"com/google/gson/ReflectionAccessFilter$FilterResult\00", align 1 +@.TypeMapEntry.17567_from = private unnamed_addr constant [41 x i8] c"GoogleGson.Stream.JsonReader, GoogleGson\00", align 1 +@.TypeMapEntry.17568_to = private unnamed_addr constant [34 x i8] c"com/google/gson/stream/JsonReader\00", align 1 +@.TypeMapEntry.17569_from = private unnamed_addr constant [40 x i8] c"GoogleGson.Stream.JsonToken, GoogleGson\00", align 1 +@.TypeMapEntry.17570_to = private unnamed_addr constant [33 x i8] c"com/google/gson/stream/JsonToken\00", align 1 +@.TypeMapEntry.17571_from = private unnamed_addr constant [41 x i8] c"GoogleGson.Stream.JsonWriter, GoogleGson\00", align 1 +@.TypeMapEntry.17572_to = private unnamed_addr constant [34 x i8] c"com/google/gson/stream/JsonWriter\00", align 1 +@.TypeMapEntry.17573_from = private unnamed_addr constant [53 x i8] c"GoogleGson.Stream.MalformedJsonException, GoogleGson\00", align 1 +@.TypeMapEntry.17574_to = private unnamed_addr constant [46 x i8] c"com/google/gson/stream/MalformedJsonException\00", align 1 +@.TypeMapEntry.17575_from = private unnamed_addr constant [34 x i8] c"GoogleGson.Strictness, GoogleGson\00", align 1 +@.TypeMapEntry.17576_to = private unnamed_addr constant [27 x i8] c"com/google/gson/Strictness\00", align 1 +@.TypeMapEntry.17577_from = private unnamed_addr constant [38 x i8] c"GoogleGson.ToNumberPolicy, GoogleGson\00", align 1 +@.TypeMapEntry.17578_to = private unnamed_addr constant [31 x i8] c"com/google/gson/ToNumberPolicy\00", align 1 +@.TypeMapEntry.17579_from = private unnamed_addr constant [45 x i8] c"GoogleGson.ToNumberPolicyInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17580_from = private unnamed_addr constant [35 x i8] c"GoogleGson.TypeAdapter, GoogleGson\00", align 1 +@.TypeMapEntry.17581_to = private unnamed_addr constant [28 x i8] c"com/google/gson/TypeAdapter\00", align 1 +@.TypeMapEntry.17582_from = private unnamed_addr constant [42 x i8] c"GoogleGson.TypeAdapterInvoker, GoogleGson\00", align 1 +@.TypeMapEntry.17583_from = private unnamed_addr constant [62 x i8] c"IntelliJ.Lang.Annotations.Flow, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17584_to = private unnamed_addr constant [35 x i8] c"org/intellij/lang/annotations/Flow\00", align 1 +@.TypeMapEntry.17585_from = private unnamed_addr constant [68 x i8] c"IntelliJ.Lang.Annotations.FlowConsts, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17586_from = private unnamed_addr constant [63 x i8] c"IntelliJ.Lang.Annotations.IFlow, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17587_from = private unnamed_addr constant [70 x i8] c"IntelliJ.Lang.Annotations.IFlowInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17588_from = private unnamed_addr constant [69 x i8] c"IntelliJ.Lang.Annotations.IIdentifier, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17589_to = private unnamed_addr constant [41 x i8] c"org/intellij/lang/annotations/Identifier\00", align 1 +@.TypeMapEntry.17590_from = private unnamed_addr constant [76 x i8] c"IntelliJ.Lang.Annotations.IIdentifierInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17591_from = private unnamed_addr constant [67 x i8] c"IntelliJ.Lang.Annotations.ILanguage, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17592_to = private unnamed_addr constant [39 x i8] c"org/intellij/lang/annotations/Language\00", align 1 +@.TypeMapEntry.17593_from = private unnamed_addr constant [74 x i8] c"IntelliJ.Lang.Annotations.ILanguageInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17594_from = private unnamed_addr constant [72 x i8] c"IntelliJ.Lang.Annotations.IMagicConstant, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17595_to = private unnamed_addr constant [44 x i8] c"org/intellij/lang/annotations/MagicConstant\00", align 1 +@.TypeMapEntry.17596_from = private unnamed_addr constant [79 x i8] c"IntelliJ.Lang.Annotations.IMagicConstantInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17597_from = private unnamed_addr constant [66 x i8] c"IntelliJ.Lang.Annotations.IPattern, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17598_to = private unnamed_addr constant [38 x i8] c"org/intellij/lang/annotations/Pattern\00", align 1 +@.TypeMapEntry.17599_from = private unnamed_addr constant [73 x i8] c"IntelliJ.Lang.Annotations.IPatternInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17600_from = private unnamed_addr constant [70 x i8] c"IntelliJ.Lang.Annotations.IPrintFormat, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17601_to = private unnamed_addr constant [42 x i8] c"org/intellij/lang/annotations/PrintFormat\00", align 1 +@.TypeMapEntry.17602_from = private unnamed_addr constant [77 x i8] c"IntelliJ.Lang.Annotations.IPrintFormatInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17603_from = private unnamed_addr constant [65 x i8] c"IntelliJ.Lang.Annotations.IRegExp, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17604_to = private unnamed_addr constant [37 x i8] c"org/intellij/lang/annotations/RegExp\00", align 1 +@.TypeMapEntry.17605_from = private unnamed_addr constant [72 x i8] c"IntelliJ.Lang.Annotations.IRegExpInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17606_from = private unnamed_addr constant [64 x i8] c"IntelliJ.Lang.Annotations.ISubst, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17607_to = private unnamed_addr constant [36 x i8] c"org/intellij/lang/annotations/Subst\00", align 1 +@.TypeMapEntry.17608_from = private unnamed_addr constant [71 x i8] c"IntelliJ.Lang.Annotations.ISubstInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17609_from = private unnamed_addr constant [93 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IAdjustableOrientation, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17610_to = private unnamed_addr constant [65 x i8] c"org/intellij/lang/annotations/JdkConstants$AdjustableOrientation\00", align 1 +@.TypeMapEntry.17611_from = private unnamed_addr constant [100 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IAdjustableOrientationInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17612_from = private unnamed_addr constant [85 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IBoxLayoutAxis, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17613_to = private unnamed_addr constant [57 x i8] c"org/intellij/lang/annotations/JdkConstants$BoxLayoutAxis\00", align 1 +@.TypeMapEntry.17614_from = private unnamed_addr constant [92 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IBoxLayoutAxisInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17615_from = private unnamed_addr constant [85 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ICalendarMonth, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17616_to = private unnamed_addr constant [57 x i8] c"org/intellij/lang/annotations/JdkConstants$CalendarMonth\00", align 1 +@.TypeMapEntry.17617_from = private unnamed_addr constant [92 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ICalendarMonthInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17618_from = private unnamed_addr constant [82 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ICursorType, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17619_to = private unnamed_addr constant [54 x i8] c"org/intellij/lang/annotations/JdkConstants$CursorType\00", align 1 +@.TypeMapEntry.17620_from = private unnamed_addr constant [89 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ICursorTypeInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17621_from = private unnamed_addr constant [91 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IFlowLayoutAlignment, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17622_to = private unnamed_addr constant [63 x i8] c"org/intellij/lang/annotations/JdkConstants$FlowLayoutAlignment\00", align 1 +@.TypeMapEntry.17623_from = private unnamed_addr constant [98 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IFlowLayoutAlignmentInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17624_from = private unnamed_addr constant [81 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IFontStyle, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17625_to = private unnamed_addr constant [53 x i8] c"org/intellij/lang/annotations/JdkConstants$FontStyle\00", align 1 +@.TypeMapEntry.17626_from = private unnamed_addr constant [88 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IFontStyleInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17627_from = private unnamed_addr constant [91 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IHorizontalAlignment, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17628_to = private unnamed_addr constant [63 x i8] c"org/intellij/lang/annotations/JdkConstants$HorizontalAlignment\00", align 1 +@.TypeMapEntry.17629_from = private unnamed_addr constant [98 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IHorizontalAlignmentInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17630_from = private unnamed_addr constant [97 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IHorizontalScrollBarPolicy, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17631_to = private unnamed_addr constant [69 x i8] c"org/intellij/lang/annotations/JdkConstants$HorizontalScrollBarPolicy\00", align 1 +@.TypeMapEntry.17632_from = private unnamed_addr constant [104 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IHorizontalScrollBarPolicyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17633_from = private unnamed_addr constant [86 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IInputEventMask, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17634_to = private unnamed_addr constant [58 x i8] c"org/intellij/lang/annotations/JdkConstants$InputEventMask\00", align 1 +@.TypeMapEntry.17635_from = private unnamed_addr constant [93 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IInputEventMaskInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17636_from = private unnamed_addr constant [89 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IListSelectionMode, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17637_to = private unnamed_addr constant [61 x i8] c"org/intellij/lang/annotations/JdkConstants$ListSelectionMode\00", align 1 +@.TypeMapEntry.17638_from = private unnamed_addr constant [96 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IListSelectionModeInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17639_from = private unnamed_addr constant [84 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IPatternFlags, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17640_to = private unnamed_addr constant [56 x i8] c"org/intellij/lang/annotations/JdkConstants$PatternFlags\00", align 1 +@.TypeMapEntry.17641_from = private unnamed_addr constant [91 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IPatternFlagsInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17642_from = private unnamed_addr constant [87 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITabLayoutPolicy, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17643_to = private unnamed_addr constant [59 x i8] c"org/intellij/lang/annotations/JdkConstants$TabLayoutPolicy\00", align 1 +@.TypeMapEntry.17644_from = private unnamed_addr constant [94 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITabLayoutPolicyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17645_from = private unnamed_addr constant [84 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITabPlacement, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17646_to = private unnamed_addr constant [56 x i8] c"org/intellij/lang/annotations/JdkConstants$TabPlacement\00", align 1 +@.TypeMapEntry.17647_from = private unnamed_addr constant [91 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITabPlacementInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17648_from = private unnamed_addr constant [97 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderJustification, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17649_to = private unnamed_addr constant [69 x i8] c"org/intellij/lang/annotations/JdkConstants$TitledBorderJustification\00", align 1 +@.TypeMapEntry.17650_from = private unnamed_addr constant [104 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderJustificationInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17651_from = private unnamed_addr constant [97 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderTitlePosition, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17652_to = private unnamed_addr constant [69 x i8] c"org/intellij/lang/annotations/JdkConstants$TitledBorderTitlePosition\00", align 1 +@.TypeMapEntry.17653_from = private unnamed_addr constant [104 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITitledBorderTitlePositionInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17654_from = private unnamed_addr constant [89 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITreeSelectionMode, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17655_to = private unnamed_addr constant [61 x i8] c"org/intellij/lang/annotations/JdkConstants$TreeSelectionMode\00", align 1 +@.TypeMapEntry.17656_from = private unnamed_addr constant [96 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+ITreeSelectionModeInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17657_from = private unnamed_addr constant [95 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IVerticalScrollBarPolicy, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17658_to = private unnamed_addr constant [67 x i8] c"org/intellij/lang/annotations/JdkConstants$VerticalScrollBarPolicy\00", align 1 +@.TypeMapEntry.17659_from = private unnamed_addr constant [102 x i8] c"IntelliJ.Lang.Annotations.JdkConstants+IVerticalScrollBarPolicyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17660_from = private unnamed_addr constant [70 x i8] c"IntelliJ.Lang.Annotations.JdkConstants, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.17661_to = private unnamed_addr constant [43 x i8] c"org/intellij/lang/annotations/JdkConstants\00", align 1 +@.TypeMapEntry.17662_from = private unnamed_addr constant [48 x i8] c"Java.Awt.Font.NumericShaper+Range, Mono.Android\00", align 1 +@.TypeMapEntry.17663_to = private unnamed_addr constant [34 x i8] c"java/awt/font/NumericShaper$Range\00", align 1 +@.TypeMapEntry.17664_from = private unnamed_addr constant [42 x i8] c"Java.Awt.Font.NumericShaper, Mono.Android\00", align 1 +@.TypeMapEntry.17665_to = private unnamed_addr constant [28 x i8] c"java/awt/font/NumericShaper\00", align 1 +@.TypeMapEntry.17666_from = private unnamed_addr constant [42 x i8] c"Java.Awt.Font.TextAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.17667_to = private unnamed_addr constant [28 x i8] c"java/awt/font/TextAttribute\00", align 1 +@.TypeMapEntry.17668_from = private unnamed_addr constant [49 x i8] c"Java.Beans.IPropertyChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.17669_to = private unnamed_addr constant [34 x i8] c"java/beans/PropertyChangeListener\00", align 1 +@.TypeMapEntry.17670_from = private unnamed_addr constant [56 x i8] c"Java.Beans.IPropertyChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17671_from = private unnamed_addr constant [52 x i8] c"Java.Beans.IndexedPropertyChangeEvent, Mono.Android\00", align 1 +@.TypeMapEntry.17672_to = private unnamed_addr constant [38 x i8] c"java/beans/IndexedPropertyChangeEvent\00", align 1 +@.TypeMapEntry.17673_from = private unnamed_addr constant [45 x i8] c"Java.Beans.PropertyChangeEvent, Mono.Android\00", align 1 +@.TypeMapEntry.17674_to = private unnamed_addr constant [31 x i8] c"java/beans/PropertyChangeEvent\00", align 1 +@.TypeMapEntry.17675_from = private unnamed_addr constant [53 x i8] c"Java.Beans.PropertyChangeListenerProxy, Mono.Android\00", align 1 +@.TypeMapEntry.17676_to = private unnamed_addr constant [39 x i8] c"java/beans/PropertyChangeListenerProxy\00", align 1 +@.TypeMapEntry.17677_from = private unnamed_addr constant [47 x i8] c"Java.Beans.PropertyChangeSupport, Mono.Android\00", align 1 +@.TypeMapEntry.17678_to = private unnamed_addr constant [33 x i8] c"java/beans/PropertyChangeSupport\00", align 1 +@.TypeMapEntry.17679_from = private unnamed_addr constant [42 x i8] c"Java.IO.BufferedInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17680_to = private unnamed_addr constant [28 x i8] c"java/io/BufferedInputStream\00", align 1 +@.TypeMapEntry.17681_from = private unnamed_addr constant [43 x i8] c"Java.IO.BufferedOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17682_to = private unnamed_addr constant [29 x i8] c"java/io/BufferedOutputStream\00", align 1 +@.TypeMapEntry.17683_from = private unnamed_addr constant [37 x i8] c"Java.IO.BufferedReader, Mono.Android\00", align 1 +@.TypeMapEntry.17684_to = private unnamed_addr constant [23 x i8] c"java/io/BufferedReader\00", align 1 +@.TypeMapEntry.17685_from = private unnamed_addr constant [37 x i8] c"Java.IO.BufferedWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17686_to = private unnamed_addr constant [23 x i8] c"java/io/BufferedWriter\00", align 1 +@.TypeMapEntry.17687_from = private unnamed_addr constant [43 x i8] c"Java.IO.ByteArrayInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17688_to = private unnamed_addr constant [29 x i8] c"java/io/ByteArrayInputStream\00", align 1 +@.TypeMapEntry.17689_from = private unnamed_addr constant [44 x i8] c"Java.IO.ByteArrayOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17690_to = private unnamed_addr constant [30 x i8] c"java/io/ByteArrayOutputStream\00", align 1 +@.TypeMapEntry.17691_from = private unnamed_addr constant [38 x i8] c"Java.IO.CharArrayReader, Mono.Android\00", align 1 +@.TypeMapEntry.17692_to = private unnamed_addr constant [24 x i8] c"java/io/CharArrayReader\00", align 1 +@.TypeMapEntry.17693_from = private unnamed_addr constant [38 x i8] c"Java.IO.CharArrayWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17694_to = private unnamed_addr constant [24 x i8] c"java/io/CharArrayWriter\00", align 1 +@.TypeMapEntry.17695_from = private unnamed_addr constant [46 x i8] c"Java.IO.CharConversionException, Mono.Android\00", align 1 +@.TypeMapEntry.17696_to = private unnamed_addr constant [32 x i8] c"java/io/CharConversionException\00", align 1 +@.TypeMapEntry.17697_from = private unnamed_addr constant [30 x i8] c"Java.IO.Console, Mono.Android\00", align 1 +@.TypeMapEntry.17698_to = private unnamed_addr constant [16 x i8] c"java/io/Console\00", align 1 +@.TypeMapEntry.17699_from = private unnamed_addr constant [38 x i8] c"Java.IO.DataInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17700_to = private unnamed_addr constant [24 x i8] c"java/io/DataInputStream\00", align 1 +@.TypeMapEntry.17701_from = private unnamed_addr constant [39 x i8] c"Java.IO.DataOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17702_to = private unnamed_addr constant [25 x i8] c"java/io/DataOutputStream\00", align 1 +@.TypeMapEntry.17703_from = private unnamed_addr constant [35 x i8] c"Java.IO.EOFException, Mono.Android\00", align 1 +@.TypeMapEntry.17704_to = private unnamed_addr constant [21 x i8] c"java/io/EOFException\00", align 1 +@.TypeMapEntry.17705_from = private unnamed_addr constant [27 x i8] c"Java.IO.File, Mono.Android\00", align 1 +@.TypeMapEntry.17706_to = private unnamed_addr constant [13 x i8] c"java/io/File\00", align 1 +@.TypeMapEntry.17707_from = private unnamed_addr constant [37 x i8] c"Java.IO.FileDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.17708_to = private unnamed_addr constant [23 x i8] c"java/io/FileDescriptor\00", align 1 +@.TypeMapEntry.17709_from = private unnamed_addr constant [38 x i8] c"Java.IO.FileInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17710_to = private unnamed_addr constant [24 x i8] c"java/io/FileInputStream\00", align 1 +@.TypeMapEntry.17711_from = private unnamed_addr constant [44 x i8] c"Java.IO.FileNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.17712_to = private unnamed_addr constant [30 x i8] c"java/io/FileNotFoundException\00", align 1 +@.TypeMapEntry.17713_from = private unnamed_addr constant [39 x i8] c"Java.IO.FileOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17714_to = private unnamed_addr constant [25 x i8] c"java/io/FileOutputStream\00", align 1 +@.TypeMapEntry.17715_from = private unnamed_addr constant [37 x i8] c"Java.IO.FilePermission, Mono.Android\00", align 1 +@.TypeMapEntry.17716_to = private unnamed_addr constant [23 x i8] c"java/io/FilePermission\00", align 1 +@.TypeMapEntry.17717_from = private unnamed_addr constant [33 x i8] c"Java.IO.FileReader, Mono.Android\00", align 1 +@.TypeMapEntry.17718_to = private unnamed_addr constant [19 x i8] c"java/io/FileReader\00", align 1 +@.TypeMapEntry.17719_from = private unnamed_addr constant [33 x i8] c"Java.IO.FileWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17720_to = private unnamed_addr constant [19 x i8] c"java/io/FileWriter\00", align 1 +@.TypeMapEntry.17721_from = private unnamed_addr constant [40 x i8] c"Java.IO.FilterInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17722_to = private unnamed_addr constant [26 x i8] c"java/io/FilterInputStream\00", align 1 +@.TypeMapEntry.17723_from = private unnamed_addr constant [41 x i8] c"Java.IO.FilterOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17724_to = private unnamed_addr constant [27 x i8] c"java/io/FilterOutputStream\00", align 1 +@.TypeMapEntry.17725_from = private unnamed_addr constant [35 x i8] c"Java.IO.FilterReader, Mono.Android\00", align 1 +@.TypeMapEntry.17726_to = private unnamed_addr constant [21 x i8] c"java/io/FilterReader\00", align 1 +@.TypeMapEntry.17727_from = private unnamed_addr constant [42 x i8] c"Java.IO.FilterReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17728_from = private unnamed_addr constant [35 x i8] c"Java.IO.FilterWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17729_to = private unnamed_addr constant [21 x i8] c"java/io/FilterWriter\00", align 1 +@.TypeMapEntry.17730_from = private unnamed_addr constant [42 x i8] c"Java.IO.FilterWriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17731_from = private unnamed_addr constant [33 x i8] c"Java.IO.ICloseable, Mono.Android\00", align 1 +@.TypeMapEntry.17732_to = private unnamed_addr constant [18 x i8] c"java/io/Closeable\00", align 1 +@.TypeMapEntry.17733_from = private unnamed_addr constant [40 x i8] c"Java.IO.ICloseableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17734_from = private unnamed_addr constant [33 x i8] c"Java.IO.IDataInput, Mono.Android\00", align 1 +@.TypeMapEntry.17735_to = private unnamed_addr constant [18 x i8] c"java/io/DataInput\00", align 1 +@.TypeMapEntry.17736_from = private unnamed_addr constant [40 x i8] c"Java.IO.IDataInputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17737_from = private unnamed_addr constant [34 x i8] c"Java.IO.IDataOutput, Mono.Android\00", align 1 +@.TypeMapEntry.17738_to = private unnamed_addr constant [19 x i8] c"java/io/DataOutput\00", align 1 +@.TypeMapEntry.17739_from = private unnamed_addr constant [41 x i8] c"Java.IO.IDataOutputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17740_from = private unnamed_addr constant [38 x i8] c"Java.IO.IExternalizable, Mono.Android\00", align 1 +@.TypeMapEntry.17741_to = private unnamed_addr constant [23 x i8] c"java/io/Externalizable\00", align 1 +@.TypeMapEntry.17742_from = private unnamed_addr constant [45 x i8] c"Java.IO.IExternalizableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17743_from = private unnamed_addr constant [34 x i8] c"Java.IO.IFileFilter, Mono.Android\00", align 1 +@.TypeMapEntry.17744_to = private unnamed_addr constant [19 x i8] c"java/io/FileFilter\00", align 1 +@.TypeMapEntry.17745_from = private unnamed_addr constant [41 x i8] c"Java.IO.IFileFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17746_from = private unnamed_addr constant [38 x i8] c"Java.IO.IFilenameFilter, Mono.Android\00", align 1 +@.TypeMapEntry.17747_to = private unnamed_addr constant [23 x i8] c"java/io/FilenameFilter\00", align 1 +@.TypeMapEntry.17748_from = private unnamed_addr constant [45 x i8] c"Java.IO.IFilenameFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17749_from = private unnamed_addr constant [33 x i8] c"Java.IO.IFlushable, Mono.Android\00", align 1 +@.TypeMapEntry.17750_to = private unnamed_addr constant [18 x i8] c"java/io/Flushable\00", align 1 +@.TypeMapEntry.17751_from = private unnamed_addr constant [40 x i8] c"Java.IO.IFlushableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17752_from = private unnamed_addr constant [30 x i8] c"Java.IO.IOError, Mono.Android\00", align 1 +@.TypeMapEntry.17753_to = private unnamed_addr constant [16 x i8] c"java/io/IOError\00", align 1 +@.TypeMapEntry.17754_from = private unnamed_addr constant [34 x i8] c"Java.IO.IOException, Mono.Android\00", align 1 +@.TypeMapEntry.17755_to = private unnamed_addr constant [20 x i8] c"java/io/IOException\00", align 1 +@.TypeMapEntry.17756_from = private unnamed_addr constant [35 x i8] c"Java.IO.IObjectInput, Mono.Android\00", align 1 +@.TypeMapEntry.17757_to = private unnamed_addr constant [20 x i8] c"java/io/ObjectInput\00", align 1 +@.TypeMapEntry.17758_from = private unnamed_addr constant [42 x i8] c"Java.IO.IObjectInputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17759_from = private unnamed_addr constant [45 x i8] c"Java.IO.IObjectInputValidation, Mono.Android\00", align 1 +@.TypeMapEntry.17760_to = private unnamed_addr constant [30 x i8] c"java/io/ObjectInputValidation\00", align 1 +@.TypeMapEntry.17761_from = private unnamed_addr constant [52 x i8] c"Java.IO.IObjectInputValidationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17762_from = private unnamed_addr constant [36 x i8] c"Java.IO.IObjectOutput, Mono.Android\00", align 1 +@.TypeMapEntry.17763_to = private unnamed_addr constant [21 x i8] c"java/io/ObjectOutput\00", align 1 +@.TypeMapEntry.17764_from = private unnamed_addr constant [43 x i8] c"Java.IO.IObjectOutputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17765_from = private unnamed_addr constant [30 x i8] c"Java.IO.ISerial, Mono.Android\00", align 1 +@.TypeMapEntry.17766_to = private unnamed_addr constant [15 x i8] c"java/io/Serial\00", align 1 +@.TypeMapEntry.17767_from = private unnamed_addr constant [37 x i8] c"Java.IO.ISerialInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17768_from = private unnamed_addr constant [36 x i8] c"Java.IO.ISerializable, Mono.Android\00", align 1 +@.TypeMapEntry.17769_to = private unnamed_addr constant [21 x i8] c"java/io/Serializable\00", align 1 +@.TypeMapEntry.17770_from = private unnamed_addr constant [43 x i8] c"Java.IO.ISerializableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17771_from = private unnamed_addr constant [34 x i8] c"Java.IO.InputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17772_to = private unnamed_addr constant [20 x i8] c"java/io/InputStream\00", align 1 +@.TypeMapEntry.17773_from = private unnamed_addr constant [41 x i8] c"Java.IO.InputStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17774_from = private unnamed_addr constant [40 x i8] c"Java.IO.InputStreamReader, Mono.Android\00", align 1 +@.TypeMapEntry.17775_to = private unnamed_addr constant [26 x i8] c"java/io/InputStreamReader\00", align 1 +@.TypeMapEntry.17776_from = private unnamed_addr constant [45 x i8] c"Java.IO.InterruptedIOException, Mono.Android\00", align 1 +@.TypeMapEntry.17777_to = private unnamed_addr constant [31 x i8] c"java/io/InterruptedIOException\00", align 1 +@.TypeMapEntry.17778_from = private unnamed_addr constant [44 x i8] c"Java.IO.InvalidClassException, Mono.Android\00", align 1 +@.TypeMapEntry.17779_to = private unnamed_addr constant [30 x i8] c"java/io/InvalidClassException\00", align 1 +@.TypeMapEntry.17780_from = private unnamed_addr constant [45 x i8] c"Java.IO.InvalidObjectException, Mono.Android\00", align 1 +@.TypeMapEntry.17781_to = private unnamed_addr constant [31 x i8] c"java/io/InvalidObjectException\00", align 1 +@.TypeMapEntry.17782_from = private unnamed_addr constant [44 x i8] c"Java.IO.LineNumberInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17783_to = private unnamed_addr constant [30 x i8] c"java/io/LineNumberInputStream\00", align 1 +@.TypeMapEntry.17784_from = private unnamed_addr constant [39 x i8] c"Java.IO.LineNumberReader, Mono.Android\00", align 1 +@.TypeMapEntry.17785_to = private unnamed_addr constant [25 x i8] c"java/io/LineNumberReader\00", align 1 +@.TypeMapEntry.17786_from = private unnamed_addr constant [41 x i8] c"Java.IO.NotActiveException, Mono.Android\00", align 1 +@.TypeMapEntry.17787_to = private unnamed_addr constant [27 x i8] c"java/io/NotActiveException\00", align 1 +@.TypeMapEntry.17788_from = private unnamed_addr constant [47 x i8] c"Java.IO.NotSerializableException, Mono.Android\00", align 1 +@.TypeMapEntry.17789_to = private unnamed_addr constant [33 x i8] c"java/io/NotSerializableException\00", align 1 +@.TypeMapEntry.17790_from = private unnamed_addr constant [49 x i8] c"Java.IO.ObjectInputStream+GetField, Mono.Android\00", align 1 +@.TypeMapEntry.17791_to = private unnamed_addr constant [35 x i8] c"java/io/ObjectInputStream$GetField\00", align 1 +@.TypeMapEntry.17792_from = private unnamed_addr constant [56 x i8] c"Java.IO.ObjectInputStream+GetFieldInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17793_from = private unnamed_addr constant [40 x i8] c"Java.IO.ObjectInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17794_to = private unnamed_addr constant [26 x i8] c"java/io/ObjectInputStream\00", align 1 +@.TypeMapEntry.17795_from = private unnamed_addr constant [50 x i8] c"Java.IO.ObjectOutputStream+PutField, Mono.Android\00", align 1 +@.TypeMapEntry.17796_to = private unnamed_addr constant [36 x i8] c"java/io/ObjectOutputStream$PutField\00", align 1 +@.TypeMapEntry.17797_from = private unnamed_addr constant [57 x i8] c"Java.IO.ObjectOutputStream+PutFieldInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17798_from = private unnamed_addr constant [41 x i8] c"Java.IO.ObjectOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17799_to = private unnamed_addr constant [27 x i8] c"java/io/ObjectOutputStream\00", align 1 +@.TypeMapEntry.17800_from = private unnamed_addr constant [40 x i8] c"Java.IO.ObjectStreamClass, Mono.Android\00", align 1 +@.TypeMapEntry.17801_to = private unnamed_addr constant [26 x i8] c"java/io/ObjectStreamClass\00", align 1 +@.TypeMapEntry.17802_from = private unnamed_addr constant [44 x i8] c"Java.IO.ObjectStreamConstants, Mono.Android\00", align 1 +@.TypeMapEntry.17803_to = private unnamed_addr constant [44 x i8] c"mono/internal/java/io/ObjectStreamConstants\00", align 1 +@.TypeMapEntry.17804_from = private unnamed_addr constant [44 x i8] c"Java.IO.ObjectStreamException, Mono.Android\00", align 1 +@.TypeMapEntry.17805_to = private unnamed_addr constant [30 x i8] c"java/io/ObjectStreamException\00", align 1 +@.TypeMapEntry.17806_from = private unnamed_addr constant [51 x i8] c"Java.IO.ObjectStreamExceptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17807_from = private unnamed_addr constant [40 x i8] c"Java.IO.ObjectStreamField, Mono.Android\00", align 1 +@.TypeMapEntry.17808_to = private unnamed_addr constant [26 x i8] c"java/io/ObjectStreamField\00", align 1 +@.TypeMapEntry.17809_from = private unnamed_addr constant [44 x i8] c"Java.IO.OptionalDataException, Mono.Android\00", align 1 +@.TypeMapEntry.17810_to = private unnamed_addr constant [30 x i8] c"java/io/OptionalDataException\00", align 1 +@.TypeMapEntry.17811_from = private unnamed_addr constant [35 x i8] c"Java.IO.OutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17812_to = private unnamed_addr constant [21 x i8] c"java/io/OutputStream\00", align 1 +@.TypeMapEntry.17813_from = private unnamed_addr constant [42 x i8] c"Java.IO.OutputStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17814_from = private unnamed_addr constant [41 x i8] c"Java.IO.OutputStreamWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17815_to = private unnamed_addr constant [27 x i8] c"java/io/OutputStreamWriter\00", align 1 +@.TypeMapEntry.17816_from = private unnamed_addr constant [39 x i8] c"Java.IO.PipedInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17817_to = private unnamed_addr constant [25 x i8] c"java/io/PipedInputStream\00", align 1 +@.TypeMapEntry.17818_from = private unnamed_addr constant [40 x i8] c"Java.IO.PipedOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17819_to = private unnamed_addr constant [26 x i8] c"java/io/PipedOutputStream\00", align 1 +@.TypeMapEntry.17820_from = private unnamed_addr constant [34 x i8] c"Java.IO.PipedReader, Mono.Android\00", align 1 +@.TypeMapEntry.17821_to = private unnamed_addr constant [20 x i8] c"java/io/PipedReader\00", align 1 +@.TypeMapEntry.17822_from = private unnamed_addr constant [34 x i8] c"Java.IO.PipedWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17823_to = private unnamed_addr constant [20 x i8] c"java/io/PipedWriter\00", align 1 +@.TypeMapEntry.17824_from = private unnamed_addr constant [34 x i8] c"Java.IO.PrintStream, Mono.Android\00", align 1 +@.TypeMapEntry.17825_to = private unnamed_addr constant [20 x i8] c"java/io/PrintStream\00", align 1 +@.TypeMapEntry.17826_from = private unnamed_addr constant [34 x i8] c"Java.IO.PrintWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17827_to = private unnamed_addr constant [20 x i8] c"java/io/PrintWriter\00", align 1 +@.TypeMapEntry.17828_from = private unnamed_addr constant [42 x i8] c"Java.IO.PushbackInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17829_to = private unnamed_addr constant [28 x i8] c"java/io/PushbackInputStream\00", align 1 +@.TypeMapEntry.17830_from = private unnamed_addr constant [37 x i8] c"Java.IO.PushbackReader, Mono.Android\00", align 1 +@.TypeMapEntry.17831_to = private unnamed_addr constant [23 x i8] c"java/io/PushbackReader\00", align 1 +@.TypeMapEntry.17832_from = private unnamed_addr constant [39 x i8] c"Java.IO.RandomAccessFile, Mono.Android\00", align 1 +@.TypeMapEntry.17833_to = private unnamed_addr constant [25 x i8] c"java/io/RandomAccessFile\00", align 1 +@.TypeMapEntry.17834_from = private unnamed_addr constant [29 x i8] c"Java.IO.Reader, Mono.Android\00", align 1 +@.TypeMapEntry.17835_to = private unnamed_addr constant [15 x i8] c"java/io/Reader\00", align 1 +@.TypeMapEntry.17836_from = private unnamed_addr constant [36 x i8] c"Java.IO.ReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17837_from = private unnamed_addr constant [42 x i8] c"Java.IO.SequenceInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17838_to = private unnamed_addr constant [28 x i8] c"java/io/SequenceInputStream\00", align 1 +@.TypeMapEntry.17839_from = private unnamed_addr constant [45 x i8] c"Java.IO.SerializablePermission, Mono.Android\00", align 1 +@.TypeMapEntry.17840_to = private unnamed_addr constant [31 x i8] c"java/io/SerializablePermission\00", align 1 +@.TypeMapEntry.17841_from = private unnamed_addr constant [47 x i8] c"Java.IO.StreamCorruptedException, Mono.Android\00", align 1 +@.TypeMapEntry.17842_to = private unnamed_addr constant [33 x i8] c"java/io/StreamCorruptedException\00", align 1 +@.TypeMapEntry.17843_from = private unnamed_addr constant [38 x i8] c"Java.IO.StreamTokenizer, Mono.Android\00", align 1 +@.TypeMapEntry.17844_to = private unnamed_addr constant [24 x i8] c"java/io/StreamTokenizer\00", align 1 +@.TypeMapEntry.17845_from = private unnamed_addr constant [46 x i8] c"Java.IO.StringBufferInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.17846_to = private unnamed_addr constant [32 x i8] c"java/io/StringBufferInputStream\00", align 1 +@.TypeMapEntry.17847_from = private unnamed_addr constant [35 x i8] c"Java.IO.StringReader, Mono.Android\00", align 1 +@.TypeMapEntry.17848_to = private unnamed_addr constant [21 x i8] c"java/io/StringReader\00", align 1 +@.TypeMapEntry.17849_from = private unnamed_addr constant [35 x i8] c"Java.IO.StringWriter, Mono.Android\00", align 1 +@.TypeMapEntry.17850_to = private unnamed_addr constant [21 x i8] c"java/io/StringWriter\00", align 1 +@.TypeMapEntry.17851_from = private unnamed_addr constant [42 x i8] c"Java.IO.SyncFailedException, Mono.Android\00", align 1 +@.TypeMapEntry.17852_to = private unnamed_addr constant [28 x i8] c"java/io/SyncFailedException\00", align 1 +@.TypeMapEntry.17853_from = private unnamed_addr constant [45 x i8] c"Java.IO.UTFDataFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.17854_to = private unnamed_addr constant [31 x i8] c"java/io/UTFDataFormatException\00", align 1 +@.TypeMapEntry.17855_from = private unnamed_addr constant [43 x i8] c"Java.IO.UncheckedIOException, Mono.Android\00", align 1 +@.TypeMapEntry.17856_to = private unnamed_addr constant [29 x i8] c"java/io/UncheckedIOException\00", align 1 +@.TypeMapEntry.17857_from = private unnamed_addr constant [51 x i8] c"Java.IO.UnsupportedEncodingException, Mono.Android\00", align 1 +@.TypeMapEntry.17858_to = private unnamed_addr constant [37 x i8] c"java/io/UnsupportedEncodingException\00", align 1 +@.TypeMapEntry.17859_from = private unnamed_addr constant [44 x i8] c"Java.IO.WriteAbortedException, Mono.Android\00", align 1 +@.TypeMapEntry.17860_to = private unnamed_addr constant [30 x i8] c"java/io/WriteAbortedException\00", align 1 +@.TypeMapEntry.17861_from = private unnamed_addr constant [29 x i8] c"Java.IO.Writer, Mono.Android\00", align 1 +@.TypeMapEntry.17862_to = private unnamed_addr constant [15 x i8] c"java/io/Writer\00", align 1 +@.TypeMapEntry.17863_from = private unnamed_addr constant [36 x i8] c"Java.IO.WriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17864_from = private unnamed_addr constant [55 x i8] c"Java.Interop.TypeManager+JavaTypeManager, Mono.Android\00", align 1 +@.TypeMapEntry.17865_to = private unnamed_addr constant [25 x i8] c"mono/android/TypeManager\00", align 1 +@.TypeMapEntry.17866_from = private unnamed_addr constant [44 x i8] c"Java.Lang.AbstractMethodError, Mono.Android\00", align 1 +@.TypeMapEntry.17867_to = private unnamed_addr constant [30 x i8] c"java/lang/AbstractMethodError\00", align 1 +@.TypeMapEntry.17868_from = private unnamed_addr constant [46 x i8] c"Java.Lang.AbstractStringBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.17869_to = private unnamed_addr constant [32 x i8] c"java/lang/AbstractStringBuilder\00", align 1 +@.TypeMapEntry.17870_from = private unnamed_addr constant [53 x i8] c"Java.Lang.AbstractStringBuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17871_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Annotation.AnnotationFormatError, Mono.Android\00", align 1 +@.TypeMapEntry.17872_to = private unnamed_addr constant [43 x i8] c"java/lang/annotation/AnnotationFormatError\00", align 1 +@.TypeMapEntry.17873_from = private unnamed_addr constant [67 x i8] c"Java.Lang.Annotation.AnnotationTypeMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.17874_to = private unnamed_addr constant [53 x i8] c"java/lang/annotation/AnnotationTypeMismatchException\00", align 1 +@.TypeMapEntry.17875_from = private unnamed_addr constant [46 x i8] c"Java.Lang.Annotation.Documented, Mono.Android\00", align 1 +@.TypeMapEntry.17876_to = private unnamed_addr constant [32 x i8] c"java/lang/annotation/Documented\00", align 1 +@.TypeMapEntry.17877_from = private unnamed_addr constant [53 x i8] c"Java.Lang.Annotation.DocumentedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17878_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Annotation.ElementType, Mono.Android\00", align 1 +@.TypeMapEntry.17879_to = private unnamed_addr constant [33 x i8] c"java/lang/annotation/ElementType\00", align 1 +@.TypeMapEntry.17880_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Annotation.IAnnotation, Mono.Android\00", align 1 +@.TypeMapEntry.17881_to = private unnamed_addr constant [32 x i8] c"java/lang/annotation/Annotation\00", align 1 +@.TypeMapEntry.17882_from = private unnamed_addr constant [54 x i8] c"Java.Lang.Annotation.IAnnotationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17883_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Annotation.IDocumented, Mono.Android\00", align 1 +@.TypeMapEntry.17884_from = private unnamed_addr constant [54 x i8] c"Java.Lang.Annotation.IDocumentedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17885_from = private unnamed_addr constant [46 x i8] c"Java.Lang.Annotation.IInherited, Mono.Android\00", align 1 +@.TypeMapEntry.17886_to = private unnamed_addr constant [31 x i8] c"java/lang/annotation/Inherited\00", align 1 +@.TypeMapEntry.17887_from = private unnamed_addr constant [53 x i8] c"Java.Lang.Annotation.IInheritedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17888_from = private unnamed_addr constant [43 x i8] c"Java.Lang.Annotation.INative, Mono.Android\00", align 1 +@.TypeMapEntry.17889_to = private unnamed_addr constant [28 x i8] c"java/lang/annotation/Native\00", align 1 +@.TypeMapEntry.17890_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Annotation.INativeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17891_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Annotation.IRepeatable, Mono.Android\00", align 1 +@.TypeMapEntry.17892_to = private unnamed_addr constant [32 x i8] c"java/lang/annotation/Repeatable\00", align 1 +@.TypeMapEntry.17893_from = private unnamed_addr constant [54 x i8] c"Java.Lang.Annotation.IRepeatableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17894_from = private unnamed_addr constant [46 x i8] c"Java.Lang.Annotation.IRetention, Mono.Android\00", align 1 +@.TypeMapEntry.17895_to = private unnamed_addr constant [31 x i8] c"java/lang/annotation/Retention\00", align 1 +@.TypeMapEntry.17896_from = private unnamed_addr constant [53 x i8] c"Java.Lang.Annotation.IRetentionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17897_from = private unnamed_addr constant [43 x i8] c"Java.Lang.Annotation.ITarget, Mono.Android\00", align 1 +@.TypeMapEntry.17898_to = private unnamed_addr constant [28 x i8] c"java/lang/annotation/Target\00", align 1 +@.TypeMapEntry.17899_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Annotation.ITargetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17900_from = private unnamed_addr constant [65 x i8] c"Java.Lang.Annotation.IncompleteAnnotationException, Mono.Android\00", align 1 +@.TypeMapEntry.17901_to = private unnamed_addr constant [51 x i8] c"java/lang/annotation/IncompleteAnnotationException\00", align 1 +@.TypeMapEntry.17902_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Annotation.Inherited, Mono.Android\00", align 1 +@.TypeMapEntry.17903_from = private unnamed_addr constant [52 x i8] c"Java.Lang.Annotation.InheritedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17904_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Annotation.Retention, Mono.Android\00", align 1 +@.TypeMapEntry.17905_from = private unnamed_addr constant [52 x i8] c"Java.Lang.Annotation.RetentionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17906_from = private unnamed_addr constant [51 x i8] c"Java.Lang.Annotation.RetentionPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.17907_to = private unnamed_addr constant [37 x i8] c"java/lang/annotation/RetentionPolicy\00", align 1 +@.TypeMapEntry.17908_from = private unnamed_addr constant [42 x i8] c"Java.Lang.Annotation.Target, Mono.Android\00", align 1 +@.TypeMapEntry.17909_from = private unnamed_addr constant [49 x i8] c"Java.Lang.Annotation.TargetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17910_from = private unnamed_addr constant [44 x i8] c"Java.Lang.ArithmeticException, Mono.Android\00", align 1 +@.TypeMapEntry.17911_to = private unnamed_addr constant [30 x i8] c"java/lang/ArithmeticException\00", align 1 +@.TypeMapEntry.17912_from = private unnamed_addr constant [55 x i8] c"Java.Lang.ArrayIndexOutOfBoundsException, Mono.Android\00", align 1 +@.TypeMapEntry.17913_to = private unnamed_addr constant [41 x i8] c"java/lang/ArrayIndexOutOfBoundsException\00", align 1 +@.TypeMapEntry.17914_from = private unnamed_addr constant [44 x i8] c"Java.Lang.ArrayStoreException, Mono.Android\00", align 1 +@.TypeMapEntry.17915_to = private unnamed_addr constant [30 x i8] c"java/lang/ArrayStoreException\00", align 1 +@.TypeMapEntry.17916_from = private unnamed_addr constant [39 x i8] c"Java.Lang.AssertionError, Mono.Android\00", align 1 +@.TypeMapEntry.17917_to = private unnamed_addr constant [25 x i8] c"java/lang/AssertionError\00", align 1 +@.TypeMapEntry.17918_from = private unnamed_addr constant [32 x i8] c"Java.Lang.Boolean, Mono.Android\00", align 1 +@.TypeMapEntry.17919_to = private unnamed_addr constant [18 x i8] c"java/lang/Boolean\00", align 1 +@.TypeMapEntry.17920_from = private unnamed_addr constant [45 x i8] c"Java.Lang.BootstrapMethodError, Mono.Android\00", align 1 +@.TypeMapEntry.17921_to = private unnamed_addr constant [31 x i8] c"java/lang/BootstrapMethodError\00", align 1 +@.TypeMapEntry.17922_from = private unnamed_addr constant [29 x i8] c"Java.Lang.Byte, Mono.Android\00", align 1 +@.TypeMapEntry.17923_to = private unnamed_addr constant [15 x i8] c"java/lang/Byte\00", align 1 +@.TypeMapEntry.17924_from = private unnamed_addr constant [43 x i8] c"Java.Lang.CharSequenceConsts, Mono.Android\00", align 1 +@.TypeMapEntry.17925_to = private unnamed_addr constant [37 x i8] c"mono/internal/java/lang/CharSequence\00", align 1 +@.TypeMapEntry.17926_from = private unnamed_addr constant [41 x i8] c"Java.Lang.Character+Subset, Mono.Android\00", align 1 +@.TypeMapEntry.17927_to = private unnamed_addr constant [27 x i8] c"java/lang/Character$Subset\00", align 1 +@.TypeMapEntry.17928_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Character+UnicodeBlock, Mono.Android\00", align 1 +@.TypeMapEntry.17929_to = private unnamed_addr constant [33 x i8] c"java/lang/Character$UnicodeBlock\00", align 1 +@.TypeMapEntry.17930_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Character+UnicodeScript, Mono.Android\00", align 1 +@.TypeMapEntry.17931_to = private unnamed_addr constant [34 x i8] c"java/lang/Character$UnicodeScript\00", align 1 +@.TypeMapEntry.17932_from = private unnamed_addr constant [34 x i8] c"Java.Lang.Character, Mono.Android\00", align 1 +@.TypeMapEntry.17933_to = private unnamed_addr constant [20 x i8] c"java/lang/Character\00", align 1 +@.TypeMapEntry.17934_from = private unnamed_addr constant [30 x i8] c"Java.Lang.Class, Mono.Android\00", align 1 +@.TypeMapEntry.17935_to = private unnamed_addr constant [16 x i8] c"java/lang/Class\00", align 1 +@.TypeMapEntry.17936_from = private unnamed_addr constant [43 x i8] c"Java.Lang.ClassCastException, Mono.Android\00", align 1 +@.TypeMapEntry.17937_to = private unnamed_addr constant [29 x i8] c"java/lang/ClassCastException\00", align 1 +@.TypeMapEntry.17938_from = private unnamed_addr constant [46 x i8] c"Java.Lang.ClassCircularityError, Mono.Android\00", align 1 +@.TypeMapEntry.17939_to = private unnamed_addr constant [32 x i8] c"java/lang/ClassCircularityError\00", align 1 +@.TypeMapEntry.17940_from = private unnamed_addr constant [41 x i8] c"Java.Lang.ClassFormatError, Mono.Android\00", align 1 +@.TypeMapEntry.17941_to = private unnamed_addr constant [27 x i8] c"java/lang/ClassFormatError\00", align 1 +@.TypeMapEntry.17942_from = private unnamed_addr constant [36 x i8] c"Java.Lang.ClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.17943_to = private unnamed_addr constant [22 x i8] c"java/lang/ClassLoader\00", align 1 +@.TypeMapEntry.17944_from = private unnamed_addr constant [43 x i8] c"Java.Lang.ClassLoaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17945_from = private unnamed_addr constant [47 x i8] c"Java.Lang.ClassNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.17946_to = private unnamed_addr constant [33 x i8] c"java/lang/ClassNotFoundException\00", align 1 +@.TypeMapEntry.17947_from = private unnamed_addr constant [35 x i8] c"Java.Lang.ClassValue, Mono.Android\00", align 1 +@.TypeMapEntry.17948_to = private unnamed_addr constant [21 x i8] c"java/lang/ClassValue\00", align 1 +@.TypeMapEntry.17949_from = private unnamed_addr constant [42 x i8] c"Java.Lang.ClassValueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17950_from = private unnamed_addr constant [51 x i8] c"Java.Lang.CloneNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.17951_to = private unnamed_addr constant [37 x i8] c"java/lang/CloneNotSupportedException\00", align 1 +@.TypeMapEntry.17952_from = private unnamed_addr constant [33 x i8] c"Java.Lang.Compiler, Mono.Android\00", align 1 +@.TypeMapEntry.17953_to = private unnamed_addr constant [19 x i8] c"java/lang/Compiler\00", align 1 +@.TypeMapEntry.17954_from = private unnamed_addr constant [35 x i8] c"Java.Lang.Deprecated, Mono.Android\00", align 1 +@.TypeMapEntry.17955_to = private unnamed_addr constant [21 x i8] c"java/lang/Deprecated\00", align 1 +@.TypeMapEntry.17956_from = private unnamed_addr constant [42 x i8] c"Java.Lang.DeprecatedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17957_from = private unnamed_addr constant [31 x i8] c"Java.Lang.Double, Mono.Android\00", align 1 +@.TypeMapEntry.17958_to = private unnamed_addr constant [17 x i8] c"java/lang/Double\00", align 1 +@.TypeMapEntry.17959_from = private unnamed_addr constant [29 x i8] c"Java.Lang.Enum, Mono.Android\00", align 1 +@.TypeMapEntry.17960_to = private unnamed_addr constant [15 x i8] c"java/lang/Enum\00", align 1 +@.TypeMapEntry.17961_from = private unnamed_addr constant [56 x i8] c"Java.Lang.EnumConstantNotPresentException, Mono.Android\00", align 1 +@.TypeMapEntry.17962_to = private unnamed_addr constant [42 x i8] c"java/lang/EnumConstantNotPresentException\00", align 1 +@.TypeMapEntry.17963_from = private unnamed_addr constant [36 x i8] c"Java.Lang.EnumInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17964_from = private unnamed_addr constant [30 x i8] c"Java.Lang.Error, Mono.Android\00", align 1 +@.TypeMapEntry.17965_to = private unnamed_addr constant [16 x i8] c"java/lang/Error\00", align 1 +@.TypeMapEntry.17966_from = private unnamed_addr constant [34 x i8] c"Java.Lang.Exception, Mono.Android\00", align 1 +@.TypeMapEntry.17967_to = private unnamed_addr constant [20 x i8] c"java/lang/Exception\00", align 1 +@.TypeMapEntry.17968_from = private unnamed_addr constant [52 x i8] c"Java.Lang.ExceptionInInitializerError, Mono.Android\00", align 1 +@.TypeMapEntry.17969_to = private unnamed_addr constant [38 x i8] c"java/lang/ExceptionInInitializerError\00", align 1 +@.TypeMapEntry.17970_from = private unnamed_addr constant [30 x i8] c"Java.Lang.Float, Mono.Android\00", align 1 +@.TypeMapEntry.17971_to = private unnamed_addr constant [16 x i8] c"java/lang/Float\00", align 1 +@.TypeMapEntry.17972_from = private unnamed_addr constant [36 x i8] c"Java.Lang.IAppendable, Mono.Android\00", align 1 +@.TypeMapEntry.17973_to = private unnamed_addr constant [21 x i8] c"java/lang/Appendable\00", align 1 +@.TypeMapEntry.17974_from = private unnamed_addr constant [43 x i8] c"Java.Lang.IAppendableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17975_from = private unnamed_addr constant [39 x i8] c"Java.Lang.IAutoCloseable, Mono.Android\00", align 1 +@.TypeMapEntry.17976_to = private unnamed_addr constant [24 x i8] c"java/lang/AutoCloseable\00", align 1 +@.TypeMapEntry.17977_from = private unnamed_addr constant [46 x i8] c"Java.Lang.IAutoCloseableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17978_from = private unnamed_addr constant [38 x i8] c"Java.Lang.ICharSequence, Mono.Android\00", align 1 +@.TypeMapEntry.17979_to = private unnamed_addr constant [23 x i8] c"java/lang/CharSequence\00", align 1 +@.TypeMapEntry.17980_from = private unnamed_addr constant [45 x i8] c"Java.Lang.ICharSequenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17981_from = private unnamed_addr constant [35 x i8] c"Java.Lang.ICloneable, Mono.Android\00", align 1 +@.TypeMapEntry.17982_to = private unnamed_addr constant [20 x i8] c"java/lang/Cloneable\00", align 1 +@.TypeMapEntry.17983_from = private unnamed_addr constant [42 x i8] c"Java.Lang.ICloneableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17984_from = private unnamed_addr constant [36 x i8] c"Java.Lang.IComparable, Mono.Android\00", align 1 +@.TypeMapEntry.17985_to = private unnamed_addr constant [21 x i8] c"java/lang/Comparable\00", align 1 +@.TypeMapEntry.17986_from = private unnamed_addr constant [43 x i8] c"Java.Lang.IComparableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17987_from = private unnamed_addr constant [36 x i8] c"Java.Lang.IDeprecated, Mono.Android\00", align 1 +@.TypeMapEntry.17988_from = private unnamed_addr constant [43 x i8] c"Java.Lang.IDeprecatedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17989_from = private unnamed_addr constant [45 x i8] c"Java.Lang.IFunctionalInterface, Mono.Android\00", align 1 +@.TypeMapEntry.17990_to = private unnamed_addr constant [30 x i8] c"java/lang/FunctionalInterface\00", align 1 +@.TypeMapEntry.17991_from = private unnamed_addr constant [52 x i8] c"Java.Lang.IFunctionalInterfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17992_from = private unnamed_addr constant [34 x i8] c"Java.Lang.IIterable, Mono.Android\00", align 1 +@.TypeMapEntry.17993_to = private unnamed_addr constant [19 x i8] c"java/lang/Iterable\00", align 1 +@.TypeMapEntry.17994_from = private unnamed_addr constant [41 x i8] c"Java.Lang.IIterableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17995_from = private unnamed_addr constant [34 x i8] c"Java.Lang.IOverride, Mono.Android\00", align 1 +@.TypeMapEntry.17996_to = private unnamed_addr constant [19 x i8] c"java/lang/Override\00", align 1 +@.TypeMapEntry.17997_from = private unnamed_addr constant [41 x i8] c"Java.Lang.IOverrideInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.17998_from = private unnamed_addr constant [34 x i8] c"Java.Lang.IReadable, Mono.Android\00", align 1 +@.TypeMapEntry.17999_to = private unnamed_addr constant [19 x i8] c"java/lang/Readable\00", align 1 +@.TypeMapEntry.18000_from = private unnamed_addr constant [41 x i8] c"Java.Lang.IReadableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18001_from = private unnamed_addr constant [34 x i8] c"Java.Lang.IRunnable, Mono.Android\00", align 1 +@.TypeMapEntry.18002_to = private unnamed_addr constant [19 x i8] c"java/lang/Runnable\00", align 1 +@.TypeMapEntry.18003_from = private unnamed_addr constant [41 x i8] c"Java.Lang.IRunnableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18004_from = private unnamed_addr constant [37 x i8] c"Java.Lang.ISafeVarargs, Mono.Android\00", align 1 +@.TypeMapEntry.18005_to = private unnamed_addr constant [22 x i8] c"java/lang/SafeVarargs\00", align 1 +@.TypeMapEntry.18006_from = private unnamed_addr constant [44 x i8] c"Java.Lang.ISafeVarargsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18007_from = private unnamed_addr constant [42 x i8] c"Java.Lang.ISuppressWarnings, Mono.Android\00", align 1 +@.TypeMapEntry.18008_to = private unnamed_addr constant [27 x i8] c"java/lang/SuppressWarnings\00", align 1 +@.TypeMapEntry.18009_from = private unnamed_addr constant [49 x i8] c"Java.Lang.ISuppressWarningsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18010_from = private unnamed_addr constant [43 x i8] c"Java.Lang.IllegalAccessError, Mono.Android\00", align 1 +@.TypeMapEntry.18011_to = private unnamed_addr constant [29 x i8] c"java/lang/IllegalAccessError\00", align 1 +@.TypeMapEntry.18012_from = private unnamed_addr constant [47 x i8] c"Java.Lang.IllegalAccessException, Mono.Android\00", align 1 +@.TypeMapEntry.18013_to = private unnamed_addr constant [33 x i8] c"java/lang/IllegalAccessException\00", align 1 +@.TypeMapEntry.18014_from = private unnamed_addr constant [49 x i8] c"Java.Lang.IllegalArgumentException, Mono.Android\00", align 1 +@.TypeMapEntry.18015_to = private unnamed_addr constant [35 x i8] c"java/lang/IllegalArgumentException\00", align 1 +@.TypeMapEntry.18016_from = private unnamed_addr constant [53 x i8] c"Java.Lang.IllegalMonitorStateException, Mono.Android\00", align 1 +@.TypeMapEntry.18017_to = private unnamed_addr constant [39 x i8] c"java/lang/IllegalMonitorStateException\00", align 1 +@.TypeMapEntry.18018_from = private unnamed_addr constant [46 x i8] c"Java.Lang.IllegalStateException, Mono.Android\00", align 1 +@.TypeMapEntry.18019_to = private unnamed_addr constant [32 x i8] c"java/lang/IllegalStateException\00", align 1 +@.TypeMapEntry.18020_from = private unnamed_addr constant [52 x i8] c"Java.Lang.IllegalThreadStateException, Mono.Android\00", align 1 +@.TypeMapEntry.18021_to = private unnamed_addr constant [38 x i8] c"java/lang/IllegalThreadStateException\00", align 1 +@.TypeMapEntry.18022_from = private unnamed_addr constant [53 x i8] c"Java.Lang.IncompatibleClassChangeError, Mono.Android\00", align 1 +@.TypeMapEntry.18023_to = private unnamed_addr constant [39 x i8] c"java/lang/IncompatibleClassChangeError\00", align 1 +@.TypeMapEntry.18024_from = private unnamed_addr constant [50 x i8] c"Java.Lang.IndexOutOfBoundsException, Mono.Android\00", align 1 +@.TypeMapEntry.18025_to = private unnamed_addr constant [36 x i8] c"java/lang/IndexOutOfBoundsException\00", align 1 +@.TypeMapEntry.18026_from = private unnamed_addr constant [47 x i8] c"Java.Lang.InheritableThreadLocal, Mono.Android\00", align 1 +@.TypeMapEntry.18027_to = private unnamed_addr constant [33 x i8] c"java/lang/InheritableThreadLocal\00", align 1 +@.TypeMapEntry.18028_from = private unnamed_addr constant [43 x i8] c"Java.Lang.InstantiationError, Mono.Android\00", align 1 +@.TypeMapEntry.18029_to = private unnamed_addr constant [29 x i8] c"java/lang/InstantiationError\00", align 1 +@.TypeMapEntry.18030_from = private unnamed_addr constant [47 x i8] c"Java.Lang.InstantiationException, Mono.Android\00", align 1 +@.TypeMapEntry.18031_to = private unnamed_addr constant [33 x i8] c"java/lang/InstantiationException\00", align 1 +@.TypeMapEntry.18032_from = private unnamed_addr constant [32 x i8] c"Java.Lang.Integer, Mono.Android\00", align 1 +@.TypeMapEntry.18033_to = private unnamed_addr constant [18 x i8] c"java/lang/Integer\00", align 1 +@.TypeMapEntry.18034_from = private unnamed_addr constant [38 x i8] c"Java.Lang.InternalError, Mono.Android\00", align 1 +@.TypeMapEntry.18035_to = private unnamed_addr constant [24 x i8] c"java/lang/InternalError\00", align 1 +@.TypeMapEntry.18036_from = private unnamed_addr constant [45 x i8] c"Java.Lang.InterruptedException, Mono.Android\00", align 1 +@.TypeMapEntry.18037_to = private unnamed_addr constant [31 x i8] c"java/lang/InterruptedException\00", align 1 +@.TypeMapEntry.18038_from = private unnamed_addr constant [40 x i8] c"Java.Lang.Invoke.CallSite, Mono.Android\00", align 1 +@.TypeMapEntry.18039_to = private unnamed_addr constant [26 x i8] c"java/lang/invoke/CallSite\00", align 1 +@.TypeMapEntry.18040_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Invoke.CallSiteInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18041_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Invoke.ConstantCallSite, Mono.Android\00", align 1 +@.TypeMapEntry.18042_to = private unnamed_addr constant [34 x i8] c"java/lang/invoke/ConstantCallSite\00", align 1 +@.TypeMapEntry.18043_from = private unnamed_addr constant [49 x i8] c"Java.Lang.Invoke.IMethodHandleInfo, Mono.Android\00", align 1 +@.TypeMapEntry.18044_to = private unnamed_addr constant [34 x i8] c"java/lang/invoke/MethodHandleInfo\00", align 1 +@.TypeMapEntry.18045_from = private unnamed_addr constant [56 x i8] c"Java.Lang.Invoke.IMethodHandleInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18046_from = private unnamed_addr constant [56 x i8] c"Java.Lang.Invoke.ITypeDescriptor+IOfField, Mono.Android\00", align 1 +@.TypeMapEntry.18047_to = private unnamed_addr constant [40 x i8] c"java/lang/invoke/TypeDescriptor$OfField\00", align 1 +@.TypeMapEntry.18048_from = private unnamed_addr constant [63 x i8] c"Java.Lang.Invoke.ITypeDescriptor+IOfFieldInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18049_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Invoke.ITypeDescriptor+IOfMethod, Mono.Android\00", align 1 +@.TypeMapEntry.18050_to = private unnamed_addr constant [41 x i8] c"java/lang/invoke/TypeDescriptor$OfMethod\00", align 1 +@.TypeMapEntry.18051_from = private unnamed_addr constant [64 x i8] c"Java.Lang.Invoke.ITypeDescriptor+IOfMethodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18052_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Invoke.ITypeDescriptor, Mono.Android\00", align 1 +@.TypeMapEntry.18053_to = private unnamed_addr constant [32 x i8] c"java/lang/invoke/TypeDescriptor\00", align 1 +@.TypeMapEntry.18054_from = private unnamed_addr constant [54 x i8] c"Java.Lang.Invoke.ITypeDescriptorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18055_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Invoke.LambdaConversionException, Mono.Android\00", align 1 +@.TypeMapEntry.18056_to = private unnamed_addr constant [43 x i8] c"java/lang/invoke/LambdaConversionException\00", align 1 +@.TypeMapEntry.18057_from = private unnamed_addr constant [44 x i8] c"Java.Lang.Invoke.MethodHandle, Mono.Android\00", align 1 +@.TypeMapEntry.18058_to = private unnamed_addr constant [30 x i8] c"java/lang/invoke/MethodHandle\00", align 1 +@.TypeMapEntry.18059_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Invoke.MethodHandleInfo, Mono.Android\00", align 1 +@.TypeMapEntry.18060_to = private unnamed_addr constant [48 x i8] c"mono/internal/java/lang/invoke/MethodHandleInfo\00", align 1 +@.TypeMapEntry.18061_from = private unnamed_addr constant [51 x i8] c"Java.Lang.Invoke.MethodHandleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18062_from = private unnamed_addr constant [52 x i8] c"Java.Lang.Invoke.MethodHandles+Lookup, Mono.Android\00", align 1 +@.TypeMapEntry.18063_to = private unnamed_addr constant [38 x i8] c"java/lang/invoke/MethodHandles$Lookup\00", align 1 +@.TypeMapEntry.18064_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Invoke.MethodHandles, Mono.Android\00", align 1 +@.TypeMapEntry.18065_to = private unnamed_addr constant [31 x i8] c"java/lang/invoke/MethodHandles\00", align 1 +@.TypeMapEntry.18066_from = private unnamed_addr constant [42 x i8] c"Java.Lang.Invoke.MethodType, Mono.Android\00", align 1 +@.TypeMapEntry.18067_to = private unnamed_addr constant [28 x i8] c"java/lang/invoke/MethodType\00", align 1 +@.TypeMapEntry.18068_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Invoke.MutableCallSite, Mono.Android\00", align 1 +@.TypeMapEntry.18069_to = private unnamed_addr constant [33 x i8] c"java/lang/invoke/MutableCallSite\00", align 1 +@.TypeMapEntry.18070_from = private unnamed_addr constant [52 x i8] c"Java.Lang.Invoke.VarHandle+AccessMode, Mono.Android\00", align 1 +@.TypeMapEntry.18071_to = private unnamed_addr constant [38 x i8] c"java/lang/invoke/VarHandle$AccessMode\00", align 1 +@.TypeMapEntry.18072_from = private unnamed_addr constant [41 x i8] c"Java.Lang.Invoke.VarHandle, Mono.Android\00", align 1 +@.TypeMapEntry.18073_to = private unnamed_addr constant [27 x i8] c"java/lang/invoke/VarHandle\00", align 1 +@.TypeMapEntry.18074_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Invoke.VarHandleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18075_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Invoke.VolatileCallSite, Mono.Android\00", align 1 +@.TypeMapEntry.18076_to = private unnamed_addr constant [34 x i8] c"java/lang/invoke/VolatileCallSite\00", align 1 +@.TypeMapEntry.18077_from = private unnamed_addr constant [56 x i8] c"Java.Lang.Invoke.WrongMethodTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.18078_to = private unnamed_addr constant [42 x i8] c"java/lang/invoke/WrongMethodTypeException\00", align 1 +@.TypeMapEntry.18079_from = private unnamed_addr constant [35 x i8] c"Java.Lang.JavaSystem, Mono.Android\00", align 1 +@.TypeMapEntry.18080_to = private unnamed_addr constant [17 x i8] c"java/lang/System\00", align 1 +@.TypeMapEntry.18081_from = private unnamed_addr constant [37 x i8] c"Java.Lang.LinkageError, Mono.Android\00", align 1 +@.TypeMapEntry.18082_to = private unnamed_addr constant [23 x i8] c"java/lang/LinkageError\00", align 1 +@.TypeMapEntry.18083_from = private unnamed_addr constant [29 x i8] c"Java.Lang.Long, Mono.Android\00", align 1 +@.TypeMapEntry.18084_to = private unnamed_addr constant [15 x i8] c"java/lang/Long\00", align 1 +@.TypeMapEntry.18085_from = private unnamed_addr constant [29 x i8] c"Java.Lang.Math, Mono.Android\00", align 1 +@.TypeMapEntry.18086_to = private unnamed_addr constant [15 x i8] c"java/lang/Math\00", align 1 +@.TypeMapEntry.18087_from = private unnamed_addr constant [51 x i8] c"Java.Lang.NegativeArraySizeException, Mono.Android\00", align 1 +@.TypeMapEntry.18088_to = private unnamed_addr constant [37 x i8] c"java/lang/NegativeArraySizeException\00", align 1 +@.TypeMapEntry.18089_from = private unnamed_addr constant [45 x i8] c"Java.Lang.NoClassDefFoundError, Mono.Android\00", align 1 +@.TypeMapEntry.18090_to = private unnamed_addr constant [31 x i8] c"java/lang/NoClassDefFoundError\00", align 1 +@.TypeMapEntry.18091_from = private unnamed_addr constant [41 x i8] c"Java.Lang.NoSuchFieldError, Mono.Android\00", align 1 +@.TypeMapEntry.18092_to = private unnamed_addr constant [27 x i8] c"java/lang/NoSuchFieldError\00", align 1 +@.TypeMapEntry.18093_from = private unnamed_addr constant [45 x i8] c"Java.Lang.NoSuchFieldException, Mono.Android\00", align 1 +@.TypeMapEntry.18094_to = private unnamed_addr constant [31 x i8] c"java/lang/NoSuchFieldException\00", align 1 +@.TypeMapEntry.18095_from = private unnamed_addr constant [42 x i8] c"Java.Lang.NoSuchMethodError, Mono.Android\00", align 1 +@.TypeMapEntry.18096_to = private unnamed_addr constant [28 x i8] c"java/lang/NoSuchMethodError\00", align 1 +@.TypeMapEntry.18097_from = private unnamed_addr constant [46 x i8] c"Java.Lang.NoSuchMethodException, Mono.Android\00", align 1 +@.TypeMapEntry.18098_to = private unnamed_addr constant [32 x i8] c"java/lang/NoSuchMethodException\00", align 1 +@.TypeMapEntry.18099_from = private unnamed_addr constant [45 x i8] c"Java.Lang.NullPointerException, Mono.Android\00", align 1 +@.TypeMapEntry.18100_to = private unnamed_addr constant [31 x i8] c"java/lang/NullPointerException\00", align 1 +@.TypeMapEntry.18101_from = private unnamed_addr constant [31 x i8] c"Java.Lang.Number, Mono.Android\00", align 1 +@.TypeMapEntry.18102_to = private unnamed_addr constant [17 x i8] c"java/lang/Number\00", align 1 +@.TypeMapEntry.18103_from = private unnamed_addr constant [46 x i8] c"Java.Lang.NumberFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.18104_to = private unnamed_addr constant [32 x i8] c"java/lang/NumberFormatException\00", align 1 +@.TypeMapEntry.18105_from = private unnamed_addr constant [38 x i8] c"Java.Lang.NumberInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18106_from = private unnamed_addr constant [31 x i8] c"Java.Lang.Object, Mono.Android\00", align 1 +@.TypeMapEntry.18107_to = private unnamed_addr constant [17 x i8] c"java/lang/Object\00", align 1 +@.TypeMapEntry.18108_from = private unnamed_addr constant [41 x i8] c"Java.Lang.OutOfMemoryError, Mono.Android\00", align 1 +@.TypeMapEntry.18109_to = private unnamed_addr constant [27 x i8] c"java/lang/OutOfMemoryError\00", align 1 +@.TypeMapEntry.18110_from = private unnamed_addr constant [33 x i8] c"Java.Lang.Override, Mono.Android\00", align 1 +@.TypeMapEntry.18111_from = private unnamed_addr constant [40 x i8] c"Java.Lang.OverrideInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18112_from = private unnamed_addr constant [32 x i8] c"Java.Lang.Package, Mono.Android\00", align 1 +@.TypeMapEntry.18113_to = private unnamed_addr constant [18 x i8] c"java/lang/Package\00", align 1 +@.TypeMapEntry.18114_from = private unnamed_addr constant [32 x i8] c"Java.Lang.Process, Mono.Android\00", align 1 +@.TypeMapEntry.18115_to = private unnamed_addr constant [18 x i8] c"java/lang/Process\00", align 1 +@.TypeMapEntry.18116_from = private unnamed_addr constant [53 x i8] c"Java.Lang.ProcessBuilder+Redirect+Type, Mono.Android\00", align 1 +@.TypeMapEntry.18117_to = private unnamed_addr constant [39 x i8] c"java/lang/ProcessBuilder$Redirect$Type\00", align 1 +@.TypeMapEntry.18118_from = private unnamed_addr constant [48 x i8] c"Java.Lang.ProcessBuilder+Redirect, Mono.Android\00", align 1 +@.TypeMapEntry.18119_to = private unnamed_addr constant [34 x i8] c"java/lang/ProcessBuilder$Redirect\00", align 1 +@.TypeMapEntry.18120_from = private unnamed_addr constant [55 x i8] c"Java.Lang.ProcessBuilder+RedirectInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18121_from = private unnamed_addr constant [39 x i8] c"Java.Lang.ProcessBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.18122_to = private unnamed_addr constant [25 x i8] c"java/lang/ProcessBuilder\00", align 1 +@.TypeMapEntry.18123_from = private unnamed_addr constant [39 x i8] c"Java.Lang.ProcessInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18124_from = private unnamed_addr constant [31 x i8] c"Java.Lang.Record, Mono.Android\00", align 1 +@.TypeMapEntry.18125_to = private unnamed_addr constant [17 x i8] c"java/lang/Record\00", align 1 +@.TypeMapEntry.18126_from = private unnamed_addr constant [38 x i8] c"Java.Lang.RecordInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18127_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Ref.Cleaner+ICleanable, Mono.Android\00", align 1 +@.TypeMapEntry.18128_to = private unnamed_addr constant [32 x i8] c"java/lang/ref/Cleaner$Cleanable\00", align 1 +@.TypeMapEntry.18129_from = private unnamed_addr constant [54 x i8] c"Java.Lang.Ref.Cleaner+ICleanableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18130_from = private unnamed_addr constant [36 x i8] c"Java.Lang.Ref.Cleaner, Mono.Android\00", align 1 +@.TypeMapEntry.18131_to = private unnamed_addr constant [22 x i8] c"java/lang/ref/Cleaner\00", align 1 +@.TypeMapEntry.18132_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Ref.PhantomReference, Mono.Android\00", align 1 +@.TypeMapEntry.18133_to = private unnamed_addr constant [31 x i8] c"java/lang/ref/PhantomReference\00", align 1 +@.TypeMapEntry.18134_from = private unnamed_addr constant [38 x i8] c"Java.Lang.Ref.Reference, Mono.Android\00", align 1 +@.TypeMapEntry.18135_to = private unnamed_addr constant [24 x i8] c"java/lang/ref/Reference\00", align 1 +@.TypeMapEntry.18136_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Ref.ReferenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18137_from = private unnamed_addr constant [43 x i8] c"Java.Lang.Ref.ReferenceQueue, Mono.Android\00", align 1 +@.TypeMapEntry.18138_to = private unnamed_addr constant [29 x i8] c"java/lang/ref/ReferenceQueue\00", align 1 +@.TypeMapEntry.18139_from = private unnamed_addr constant [42 x i8] c"Java.Lang.Ref.SoftReference, Mono.Android\00", align 1 +@.TypeMapEntry.18140_to = private unnamed_addr constant [28 x i8] c"java/lang/ref/SoftReference\00", align 1 +@.TypeMapEntry.18141_from = private unnamed_addr constant [42 x i8] c"Java.Lang.Ref.WeakReference, Mono.Android\00", align 1 +@.TypeMapEntry.18142_to = private unnamed_addr constant [28 x i8] c"java/lang/ref/WeakReference\00", align 1 +@.TypeMapEntry.18143_from = private unnamed_addr constant [49 x i8] c"Java.Lang.Reflect.AccessibleObject, Mono.Android\00", align 1 +@.TypeMapEntry.18144_to = private unnamed_addr constant [35 x i8] c"java/lang/reflect/AccessibleObject\00", align 1 +@.TypeMapEntry.18145_from = private unnamed_addr constant [38 x i8] c"Java.Lang.Reflect.Array, Mono.Android\00", align 1 +@.TypeMapEntry.18146_to = private unnamed_addr constant [24 x i8] c"java/lang/reflect/Array\00", align 1 +@.TypeMapEntry.18147_from = private unnamed_addr constant [44 x i8] c"Java.Lang.Reflect.Constructor, Mono.Android\00", align 1 +@.TypeMapEntry.18148_to = private unnamed_addr constant [30 x i8] c"java/lang/reflect/Constructor\00", align 1 +@.TypeMapEntry.18149_from = private unnamed_addr constant [43 x i8] c"Java.Lang.Reflect.Executable, Mono.Android\00", align 1 +@.TypeMapEntry.18150_to = private unnamed_addr constant [29 x i8] c"java/lang/reflect/Executable\00", align 1 +@.TypeMapEntry.18151_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Reflect.ExecutableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18152_from = private unnamed_addr constant [38 x i8] c"Java.Lang.Reflect.Field, Mono.Android\00", align 1 +@.TypeMapEntry.18153_to = private unnamed_addr constant [24 x i8] c"java/lang/reflect/Field\00", align 1 +@.TypeMapEntry.18154_from = private unnamed_addr constant [60 x i8] c"Java.Lang.Reflect.GenericSignatureFormatError, Mono.Android\00", align 1 +@.TypeMapEntry.18155_to = private unnamed_addr constant [46 x i8] c"java/lang/reflect/GenericSignatureFormatError\00", align 1 +@.TypeMapEntry.18156_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Reflect.IAnnotatedElement, Mono.Android\00", align 1 +@.TypeMapEntry.18157_to = private unnamed_addr constant [35 x i8] c"java/lang/reflect/AnnotatedElement\00", align 1 +@.TypeMapEntry.18158_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Reflect.IAnnotatedElementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18159_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Reflect.IGenericArrayType, Mono.Android\00", align 1 +@.TypeMapEntry.18160_to = private unnamed_addr constant [35 x i8] c"java/lang/reflect/GenericArrayType\00", align 1 +@.TypeMapEntry.18161_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Reflect.IGenericArrayTypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18162_from = private unnamed_addr constant [52 x i8] c"Java.Lang.Reflect.IGenericDeclaration, Mono.Android\00", align 1 +@.TypeMapEntry.18163_to = private unnamed_addr constant [37 x i8] c"java/lang/reflect/GenericDeclaration\00", align 1 +@.TypeMapEntry.18164_from = private unnamed_addr constant [59 x i8] c"Java.Lang.Reflect.IGenericDeclarationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18165_from = private unnamed_addr constant [51 x i8] c"Java.Lang.Reflect.IInvocationHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18166_to = private unnamed_addr constant [36 x i8] c"java/lang/reflect/InvocationHandler\00", align 1 +@.TypeMapEntry.18167_from = private unnamed_addr constant [58 x i8] c"Java.Lang.Reflect.IInvocationHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18168_from = private unnamed_addr constant [40 x i8] c"Java.Lang.Reflect.IMember, Mono.Android\00", align 1 +@.TypeMapEntry.18169_to = private unnamed_addr constant [25 x i8] c"java/lang/reflect/Member\00", align 1 +@.TypeMapEntry.18170_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Reflect.IMemberInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18171_from = private unnamed_addr constant [51 x i8] c"Java.Lang.Reflect.IParameterizedType, Mono.Android\00", align 1 +@.TypeMapEntry.18172_to = private unnamed_addr constant [36 x i8] c"java/lang/reflect/ParameterizedType\00", align 1 +@.TypeMapEntry.18173_from = private unnamed_addr constant [58 x i8] c"Java.Lang.Reflect.IParameterizedTypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18174_from = private unnamed_addr constant [38 x i8] c"Java.Lang.Reflect.IType, Mono.Android\00", align 1 +@.TypeMapEntry.18175_to = private unnamed_addr constant [23 x i8] c"java/lang/reflect/Type\00", align 1 +@.TypeMapEntry.18176_from = private unnamed_addr constant [45 x i8] c"Java.Lang.Reflect.ITypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18177_from = private unnamed_addr constant [46 x i8] c"Java.Lang.Reflect.ITypeVariable, Mono.Android\00", align 1 +@.TypeMapEntry.18178_to = private unnamed_addr constant [31 x i8] c"java/lang/reflect/TypeVariable\00", align 1 +@.TypeMapEntry.18179_from = private unnamed_addr constant [53 x i8] c"Java.Lang.Reflect.ITypeVariableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18180_from = private unnamed_addr constant [46 x i8] c"Java.Lang.Reflect.IWildcardType, Mono.Android\00", align 1 +@.TypeMapEntry.18181_to = private unnamed_addr constant [31 x i8] c"java/lang/reflect/WildcardType\00", align 1 +@.TypeMapEntry.18182_from = private unnamed_addr constant [53 x i8] c"Java.Lang.Reflect.IWildcardTypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18183_from = private unnamed_addr constant [58 x i8] c"Java.Lang.Reflect.InvocationTargetException, Mono.Android\00", align 1 +@.TypeMapEntry.18184_to = private unnamed_addr constant [44 x i8] c"java/lang/reflect/InvocationTargetException\00", align 1 +@.TypeMapEntry.18185_from = private unnamed_addr constant [68 x i8] c"Java.Lang.Reflect.MalformedParameterizedTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.18186_to = private unnamed_addr constant [54 x i8] c"java/lang/reflect/MalformedParameterizedTypeException\00", align 1 +@.TypeMapEntry.18187_from = private unnamed_addr constant [61 x i8] c"Java.Lang.Reflect.MalformedParametersException, Mono.Android\00", align 1 +@.TypeMapEntry.18188_to = private unnamed_addr constant [47 x i8] c"java/lang/reflect/MalformedParametersException\00", align 1 +@.TypeMapEntry.18189_from = private unnamed_addr constant [39 x i8] c"Java.Lang.Reflect.Member, Mono.Android\00", align 1 +@.TypeMapEntry.18190_to = private unnamed_addr constant [39 x i8] c"mono/internal/java/lang/reflect/Member\00", align 1 +@.TypeMapEntry.18191_from = private unnamed_addr constant [39 x i8] c"Java.Lang.Reflect.Method, Mono.Android\00", align 1 +@.TypeMapEntry.18192_to = private unnamed_addr constant [25 x i8] c"java/lang/reflect/Method\00", align 1 +@.TypeMapEntry.18193_from = private unnamed_addr constant [41 x i8] c"Java.Lang.Reflect.Modifier, Mono.Android\00", align 1 +@.TypeMapEntry.18194_to = private unnamed_addr constant [27 x i8] c"java/lang/reflect/Modifier\00", align 1 +@.TypeMapEntry.18195_from = private unnamed_addr constant [42 x i8] c"Java.Lang.Reflect.Parameter, Mono.Android\00", align 1 +@.TypeMapEntry.18196_to = private unnamed_addr constant [28 x i8] c"java/lang/reflect/Parameter\00", align 1 +@.TypeMapEntry.18197_from = private unnamed_addr constant [38 x i8] c"Java.Lang.Reflect.Proxy, Mono.Android\00", align 1 +@.TypeMapEntry.18198_to = private unnamed_addr constant [24 x i8] c"java/lang/reflect/Proxy\00", align 1 +@.TypeMapEntry.18199_from = private unnamed_addr constant [48 x i8] c"Java.Lang.Reflect.RecordComponent, Mono.Android\00", align 1 +@.TypeMapEntry.18200_to = private unnamed_addr constant [34 x i8] c"java/lang/reflect/RecordComponent\00", align 1 +@.TypeMapEntry.18201_from = private unnamed_addr constant [50 x i8] c"Java.Lang.Reflect.ReflectPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18202_to = private unnamed_addr constant [36 x i8] c"java/lang/reflect/ReflectPermission\00", align 1 +@.TypeMapEntry.18203_from = private unnamed_addr constant [61 x i8] c"Java.Lang.Reflect.UndeclaredThrowableException, Mono.Android\00", align 1 +@.TypeMapEntry.18204_to = private unnamed_addr constant [47 x i8] c"java/lang/reflect/UndeclaredThrowableException\00", align 1 +@.TypeMapEntry.18205_from = private unnamed_addr constant [53 x i8] c"Java.Lang.ReflectiveOperationException, Mono.Android\00", align 1 +@.TypeMapEntry.18206_to = private unnamed_addr constant [39 x i8] c"java/lang/ReflectiveOperationException\00", align 1 +@.TypeMapEntry.18207_from = private unnamed_addr constant [33 x i8] c"Java.Lang.Runnable, Mono.Android\00", align 1 +@.TypeMapEntry.18208_to = private unnamed_addr constant [24 x i8] c"mono/java/lang/Runnable\00", align 1 +@.TypeMapEntry.18209_from = private unnamed_addr constant [32 x i8] c"Java.Lang.Runtime, Mono.Android\00", align 1 +@.TypeMapEntry.18210_to = private unnamed_addr constant [18 x i8] c"java/lang/Runtime\00", align 1 +@.TypeMapEntry.18211_from = private unnamed_addr constant [41 x i8] c"Java.Lang.RuntimeException, Mono.Android\00", align 1 +@.TypeMapEntry.18212_to = private unnamed_addr constant [27 x i8] c"java/lang/RuntimeException\00", align 1 +@.TypeMapEntry.18213_from = private unnamed_addr constant [42 x i8] c"Java.Lang.RuntimePermission, Mono.Android\00", align 1 +@.TypeMapEntry.18214_to = private unnamed_addr constant [28 x i8] c"java/lang/RuntimePermission\00", align 1 +@.TypeMapEntry.18215_from = private unnamed_addr constant [47 x i8] c"Java.Lang.Runtimes.ObjectMethods, Mono.Android\00", align 1 +@.TypeMapEntry.18216_to = private unnamed_addr constant [32 x i8] c"java/lang/runtime/ObjectMethods\00", align 1 +@.TypeMapEntry.18217_from = private unnamed_addr constant [42 x i8] c"Java.Lang.SecurityException, Mono.Android\00", align 1 +@.TypeMapEntry.18218_to = private unnamed_addr constant [28 x i8] c"java/lang/SecurityException\00", align 1 +@.TypeMapEntry.18219_from = private unnamed_addr constant [40 x i8] c"Java.Lang.SecurityManager, Mono.Android\00", align 1 +@.TypeMapEntry.18220_to = private unnamed_addr constant [26 x i8] c"java/lang/SecurityManager\00", align 1 +@.TypeMapEntry.18221_from = private unnamed_addr constant [30 x i8] c"Java.Lang.Short, Mono.Android\00", align 1 +@.TypeMapEntry.18222_to = private unnamed_addr constant [16 x i8] c"java/lang/Short\00", align 1 +@.TypeMapEntry.18223_from = private unnamed_addr constant [43 x i8] c"Java.Lang.StackOverflowError, Mono.Android\00", align 1 +@.TypeMapEntry.18224_to = private unnamed_addr constant [29 x i8] c"java/lang/StackOverflowError\00", align 1 +@.TypeMapEntry.18225_from = private unnamed_addr constant [42 x i8] c"Java.Lang.StackTraceElement, Mono.Android\00", align 1 +@.TypeMapEntry.18226_to = private unnamed_addr constant [28 x i8] c"java/lang/StackTraceElement\00", align 1 +@.TypeMapEntry.18227_from = private unnamed_addr constant [48 x i8] c"Java.Lang.StackWalker+IStackFrame, Mono.Android\00", align 1 +@.TypeMapEntry.18228_to = private unnamed_addr constant [33 x i8] c"java/lang/StackWalker$StackFrame\00", align 1 +@.TypeMapEntry.18229_from = private unnamed_addr constant [55 x i8] c"Java.Lang.StackWalker+IStackFrameInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18230_from = private unnamed_addr constant [43 x i8] c"Java.Lang.StackWalker+Option, Mono.Android\00", align 1 +@.TypeMapEntry.18231_to = private unnamed_addr constant [29 x i8] c"java/lang/StackWalker$Option\00", align 1 +@.TypeMapEntry.18232_from = private unnamed_addr constant [36 x i8] c"Java.Lang.StackWalker, Mono.Android\00", align 1 +@.TypeMapEntry.18233_to = private unnamed_addr constant [22 x i8] c"java/lang/StackWalker\00", align 1 +@.TypeMapEntry.18234_from = private unnamed_addr constant [35 x i8] c"Java.Lang.StrictMath, Mono.Android\00", align 1 +@.TypeMapEntry.18235_to = private unnamed_addr constant [21 x i8] c"java/lang/StrictMath\00", align 1 +@.TypeMapEntry.18236_from = private unnamed_addr constant [31 x i8] c"Java.Lang.String, Mono.Android\00", align 1 +@.TypeMapEntry.18237_to = private unnamed_addr constant [17 x i8] c"java/lang/String\00", align 1 +@.TypeMapEntry.18238_from = private unnamed_addr constant [37 x i8] c"Java.Lang.StringBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18239_to = private unnamed_addr constant [23 x i8] c"java/lang/StringBuffer\00", align 1 +@.TypeMapEntry.18240_from = private unnamed_addr constant [38 x i8] c"Java.Lang.StringBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.18241_to = private unnamed_addr constant [24 x i8] c"java/lang/StringBuilder\00", align 1 +@.TypeMapEntry.18242_from = private unnamed_addr constant [56 x i8] c"Java.Lang.StringIndexOutOfBoundsException, Mono.Android\00", align 1 +@.TypeMapEntry.18243_to = private unnamed_addr constant [42 x i8] c"java/lang/StringIndexOutOfBoundsException\00", align 1 +@.TypeMapEntry.18244_from = private unnamed_addr constant [41 x i8] c"Java.Lang.SuppressWarnings, Mono.Android\00", align 1 +@.TypeMapEntry.18245_from = private unnamed_addr constant [48 x i8] c"Java.Lang.SuppressWarningsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18246_from = private unnamed_addr constant [57 x i8] c"Java.Lang.Thread+IUncaughtExceptionHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18247_to = private unnamed_addr constant [42 x i8] c"java/lang/Thread$UncaughtExceptionHandler\00", align 1 +@.TypeMapEntry.18248_from = private unnamed_addr constant [64 x i8] c"Java.Lang.Thread+IUncaughtExceptionHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18249_from = private unnamed_addr constant [51 x i8] c"Java.Lang.Thread+RunnableImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.18250_to = private unnamed_addr constant [35 x i8] c"mono/java/lang/RunnableImplementor\00", align 1 +@.TypeMapEntry.18251_from = private unnamed_addr constant [37 x i8] c"Java.Lang.Thread+State, Mono.Android\00", align 1 +@.TypeMapEntry.18252_to = private unnamed_addr constant [23 x i8] c"java/lang/Thread$State\00", align 1 +@.TypeMapEntry.18253_from = private unnamed_addr constant [31 x i8] c"Java.Lang.Thread, Mono.Android\00", align 1 +@.TypeMapEntry.18254_to = private unnamed_addr constant [17 x i8] c"java/lang/Thread\00", align 1 +@.TypeMapEntry.18255_from = private unnamed_addr constant [36 x i8] c"Java.Lang.ThreadDeath, Mono.Android\00", align 1 +@.TypeMapEntry.18256_to = private unnamed_addr constant [22 x i8] c"java/lang/ThreadDeath\00", align 1 +@.TypeMapEntry.18257_from = private unnamed_addr constant [36 x i8] c"Java.Lang.ThreadGroup, Mono.Android\00", align 1 +@.TypeMapEntry.18258_to = private unnamed_addr constant [22 x i8] c"java/lang/ThreadGroup\00", align 1 +@.TypeMapEntry.18259_from = private unnamed_addr constant [36 x i8] c"Java.Lang.ThreadLocal, Mono.Android\00", align 1 +@.TypeMapEntry.18260_to = private unnamed_addr constant [22 x i8] c"java/lang/ThreadLocal\00", align 1 +@.TypeMapEntry.18261_from = private unnamed_addr constant [34 x i8] c"Java.Lang.Throwable, Mono.Android\00", align 1 +@.TypeMapEntry.18262_to = private unnamed_addr constant [20 x i8] c"java/lang/Throwable\00", align 1 +@.TypeMapEntry.18263_from = private unnamed_addr constant [48 x i8] c"Java.Lang.TypeNotPresentException, Mono.Android\00", align 1 +@.TypeMapEntry.18264_to = private unnamed_addr constant [34 x i8] c"java/lang/TypeNotPresentException\00", align 1 +@.TypeMapEntry.18265_from = private unnamed_addr constant [37 x i8] c"Java.Lang.UnknownError, Mono.Android\00", align 1 +@.TypeMapEntry.18266_to = private unnamed_addr constant [23 x i8] c"java/lang/UnknownError\00", align 1 +@.TypeMapEntry.18267_from = private unnamed_addr constant [45 x i8] c"Java.Lang.UnsatisfiedLinkError, Mono.Android\00", align 1 +@.TypeMapEntry.18268_to = private unnamed_addr constant [31 x i8] c"java/lang/UnsatisfiedLinkError\00", align 1 +@.TypeMapEntry.18269_from = private unnamed_addr constant [53 x i8] c"Java.Lang.UnsupportedClassVersionError, Mono.Android\00", align 1 +@.TypeMapEntry.18270_to = private unnamed_addr constant [39 x i8] c"java/lang/UnsupportedClassVersionError\00", align 1 +@.TypeMapEntry.18271_from = private unnamed_addr constant [54 x i8] c"Java.Lang.UnsupportedOperationException, Mono.Android\00", align 1 +@.TypeMapEntry.18272_to = private unnamed_addr constant [40 x i8] c"java/lang/UnsupportedOperationException\00", align 1 +@.TypeMapEntry.18273_from = private unnamed_addr constant [36 x i8] c"Java.Lang.VerifyError, Mono.Android\00", align 1 +@.TypeMapEntry.18274_to = private unnamed_addr constant [22 x i8] c"java/lang/VerifyError\00", align 1 +@.TypeMapEntry.18275_from = private unnamed_addr constant [44 x i8] c"Java.Lang.VirtualMachineError, Mono.Android\00", align 1 +@.TypeMapEntry.18276_to = private unnamed_addr constant [30 x i8] c"java/lang/VirtualMachineError\00", align 1 +@.TypeMapEntry.18277_from = private unnamed_addr constant [51 x i8] c"Java.Lang.VirtualMachineErrorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18278_from = private unnamed_addr constant [29 x i8] c"Java.Lang.Void, Mono.Android\00", align 1 +@.TypeMapEntry.18279_to = private unnamed_addr constant [15 x i8] c"java/lang/Void\00", align 1 +@.TypeMapEntry.18280_from = private unnamed_addr constant [35 x i8] c"Java.Math.BigDecimal, Mono.Android\00", align 1 +@.TypeMapEntry.18281_to = private unnamed_addr constant [21 x i8] c"java/math/BigDecimal\00", align 1 +@.TypeMapEntry.18282_from = private unnamed_addr constant [35 x i8] c"Java.Math.BigInteger, Mono.Android\00", align 1 +@.TypeMapEntry.18283_to = private unnamed_addr constant [21 x i8] c"java/math/BigInteger\00", align 1 +@.TypeMapEntry.18284_from = private unnamed_addr constant [36 x i8] c"Java.Math.MathContext, Mono.Android\00", align 1 +@.TypeMapEntry.18285_to = private unnamed_addr constant [22 x i8] c"java/math/MathContext\00", align 1 +@.TypeMapEntry.18286_from = private unnamed_addr constant [37 x i8] c"Java.Math.RoundingMode, Mono.Android\00", align 1 +@.TypeMapEntry.18287_to = private unnamed_addr constant [23 x i8] c"java/math/RoundingMode\00", align 1 +@.TypeMapEntry.18288_from = private unnamed_addr constant [51 x i8] c"Java.Net.Authenticator+RequestorType, Mono.Android\00", align 1 +@.TypeMapEntry.18289_to = private unnamed_addr constant [37 x i8] c"java/net/Authenticator$RequestorType\00", align 1 +@.TypeMapEntry.18290_from = private unnamed_addr constant [37 x i8] c"Java.Net.Authenticator, Mono.Android\00", align 1 +@.TypeMapEntry.18291_to = private unnamed_addr constant [23 x i8] c"java/net/Authenticator\00", align 1 +@.TypeMapEntry.18292_from = private unnamed_addr constant [44 x i8] c"Java.Net.AuthenticatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18293_from = private unnamed_addr constant [37 x i8] c"Java.Net.BindException, Mono.Android\00", align 1 +@.TypeMapEntry.18294_to = private unnamed_addr constant [23 x i8] c"java/net/BindException\00", align 1 +@.TypeMapEntry.18295_from = private unnamed_addr constant [36 x i8] c"Java.Net.CacheRequest, Mono.Android\00", align 1 +@.TypeMapEntry.18296_to = private unnamed_addr constant [22 x i8] c"java/net/CacheRequest\00", align 1 +@.TypeMapEntry.18297_from = private unnamed_addr constant [43 x i8] c"Java.Net.CacheRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18298_from = private unnamed_addr constant [37 x i8] c"Java.Net.CacheResponse, Mono.Android\00", align 1 +@.TypeMapEntry.18299_to = private unnamed_addr constant [23 x i8] c"java/net/CacheResponse\00", align 1 +@.TypeMapEntry.18300_from = private unnamed_addr constant [44 x i8] c"Java.Net.CacheResponseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18301_from = private unnamed_addr constant [40 x i8] c"Java.Net.ConnectException, Mono.Android\00", align 1 +@.TypeMapEntry.18302_to = private unnamed_addr constant [26 x i8] c"java/net/ConnectException\00", align 1 +@.TypeMapEntry.18303_from = private unnamed_addr constant [38 x i8] c"Java.Net.ContentHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18304_to = private unnamed_addr constant [24 x i8] c"java/net/ContentHandler\00", align 1 +@.TypeMapEntry.18305_from = private unnamed_addr constant [45 x i8] c"Java.Net.ContentHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18306_from = private unnamed_addr constant [37 x i8] c"Java.Net.CookieHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18307_to = private unnamed_addr constant [23 x i8] c"java/net/CookieHandler\00", align 1 +@.TypeMapEntry.18308_from = private unnamed_addr constant [44 x i8] c"Java.Net.CookieHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18309_from = private unnamed_addr constant [37 x i8] c"Java.Net.CookieManager, Mono.Android\00", align 1 +@.TypeMapEntry.18310_to = private unnamed_addr constant [23 x i8] c"java/net/CookieManager\00", align 1 +@.TypeMapEntry.18311_from = private unnamed_addr constant [36 x i8] c"Java.Net.CookiePolicy, Mono.Android\00", align 1 +@.TypeMapEntry.18312_to = private unnamed_addr constant [36 x i8] c"mono/internal/java/net/CookiePolicy\00", align 1 +@.TypeMapEntry.18313_from = private unnamed_addr constant [38 x i8] c"Java.Net.DatagramPacket, Mono.Android\00", align 1 +@.TypeMapEntry.18314_to = private unnamed_addr constant [24 x i8] c"java/net/DatagramPacket\00", align 1 +@.TypeMapEntry.18315_from = private unnamed_addr constant [38 x i8] c"Java.Net.DatagramSocket, Mono.Android\00", align 1 +@.TypeMapEntry.18316_to = private unnamed_addr constant [24 x i8] c"java/net/DatagramSocket\00", align 1 +@.TypeMapEntry.18317_from = private unnamed_addr constant [42 x i8] c"Java.Net.DatagramSocketImpl, Mono.Android\00", align 1 +@.TypeMapEntry.18318_to = private unnamed_addr constant [28 x i8] c"java/net/DatagramSocketImpl\00", align 1 +@.TypeMapEntry.18319_from = private unnamed_addr constant [49 x i8] c"Java.Net.DatagramSocketImplInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18320_from = private unnamed_addr constant [34 x i8] c"Java.Net.HttpCookie, Mono.Android\00", align 1 +@.TypeMapEntry.18321_to = private unnamed_addr constant [20 x i8] c"java/net/HttpCookie\00", align 1 +@.TypeMapEntry.18322_from = private unnamed_addr constant [42 x i8] c"Java.Net.HttpRetryException, Mono.Android\00", align 1 +@.TypeMapEntry.18323_to = private unnamed_addr constant [28 x i8] c"java/net/HttpRetryException\00", align 1 +@.TypeMapEntry.18324_from = private unnamed_addr constant [41 x i8] c"Java.Net.HttpURLConnection, Mono.Android\00", align 1 +@.TypeMapEntry.18325_to = private unnamed_addr constant [27 x i8] c"java/net/HttpURLConnection\00", align 1 +@.TypeMapEntry.18326_from = private unnamed_addr constant [48 x i8] c"Java.Net.HttpURLConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18327_from = private unnamed_addr constant [46 x i8] c"Java.Net.IContentHandlerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.18328_to = private unnamed_addr constant [31 x i8] c"java/net/ContentHandlerFactory\00", align 1 +@.TypeMapEntry.18329_from = private unnamed_addr constant [53 x i8] c"Java.Net.IContentHandlerFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18330_from = private unnamed_addr constant [37 x i8] c"Java.Net.ICookiePolicy, Mono.Android\00", align 1 +@.TypeMapEntry.18331_to = private unnamed_addr constant [22 x i8] c"java/net/CookiePolicy\00", align 1 +@.TypeMapEntry.18332_from = private unnamed_addr constant [44 x i8] c"Java.Net.ICookiePolicyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18333_from = private unnamed_addr constant [36 x i8] c"Java.Net.ICookieStore, Mono.Android\00", align 1 +@.TypeMapEntry.18334_to = private unnamed_addr constant [21 x i8] c"java/net/CookieStore\00", align 1 +@.TypeMapEntry.18335_from = private unnamed_addr constant [43 x i8] c"Java.Net.ICookieStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18336_from = private unnamed_addr constant [27 x i8] c"Java.Net.IDN, Mono.Android\00", align 1 +@.TypeMapEntry.18337_to = private unnamed_addr constant [13 x i8] c"java/net/IDN\00", align 1 +@.TypeMapEntry.18338_from = private unnamed_addr constant [50 x i8] c"Java.Net.IDatagramSocketImplFactory, Mono.Android\00", align 1 +@.TypeMapEntry.18339_to = private unnamed_addr constant [35 x i8] c"java/net/DatagramSocketImplFactory\00", align 1 +@.TypeMapEntry.18340_from = private unnamed_addr constant [57 x i8] c"Java.Net.IDatagramSocketImplFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18341_from = private unnamed_addr constant [36 x i8] c"Java.Net.IFileNameMap, Mono.Android\00", align 1 +@.TypeMapEntry.18342_to = private unnamed_addr constant [21 x i8] c"java/net/FileNameMap\00", align 1 +@.TypeMapEntry.18343_from = private unnamed_addr constant [43 x i8] c"Java.Net.IFileNameMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18344_from = private unnamed_addr constant [39 x i8] c"Java.Net.IProtocolFamily, Mono.Android\00", align 1 +@.TypeMapEntry.18345_to = private unnamed_addr constant [24 x i8] c"java/net/ProtocolFamily\00", align 1 +@.TypeMapEntry.18346_from = private unnamed_addr constant [46 x i8] c"Java.Net.IProtocolFamilyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18347_from = private unnamed_addr constant [42 x i8] c"Java.Net.ISocketImplFactory, Mono.Android\00", align 1 +@.TypeMapEntry.18348_to = private unnamed_addr constant [27 x i8] c"java/net/SocketImplFactory\00", align 1 +@.TypeMapEntry.18349_from = private unnamed_addr constant [49 x i8] c"Java.Net.ISocketImplFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18350_from = private unnamed_addr constant [37 x i8] c"Java.Net.ISocketOption, Mono.Android\00", align 1 +@.TypeMapEntry.18351_to = private unnamed_addr constant [22 x i8] c"java/net/SocketOption\00", align 1 +@.TypeMapEntry.18352_from = private unnamed_addr constant [44 x i8] c"Java.Net.ISocketOptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18353_from = private unnamed_addr constant [38 x i8] c"Java.Net.ISocketOptions, Mono.Android\00", align 1 +@.TypeMapEntry.18354_to = private unnamed_addr constant [23 x i8] c"java/net/SocketOptions\00", align 1 +@.TypeMapEntry.18355_from = private unnamed_addr constant [45 x i8] c"Java.Net.ISocketOptionsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18356_from = private unnamed_addr constant [48 x i8] c"Java.Net.IURLStreamHandlerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.18357_to = private unnamed_addr constant [33 x i8] c"java/net/URLStreamHandlerFactory\00", align 1 +@.TypeMapEntry.18358_from = private unnamed_addr constant [55 x i8] c"Java.Net.IURLStreamHandlerFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18359_from = private unnamed_addr constant [36 x i8] c"Java.Net.Inet4Address, Mono.Android\00", align 1 +@.TypeMapEntry.18360_to = private unnamed_addr constant [22 x i8] c"java/net/Inet4Address\00", align 1 +@.TypeMapEntry.18361_from = private unnamed_addr constant [36 x i8] c"Java.Net.Inet6Address, Mono.Android\00", align 1 +@.TypeMapEntry.18362_to = private unnamed_addr constant [22 x i8] c"java/net/Inet6Address\00", align 1 +@.TypeMapEntry.18363_from = private unnamed_addr constant [35 x i8] c"Java.Net.InetAddress, Mono.Android\00", align 1 +@.TypeMapEntry.18364_to = private unnamed_addr constant [21 x i8] c"java/net/InetAddress\00", align 1 +@.TypeMapEntry.18365_from = private unnamed_addr constant [41 x i8] c"Java.Net.InetSocketAddress, Mono.Android\00", align 1 +@.TypeMapEntry.18366_to = private unnamed_addr constant [27 x i8] c"java/net/InetSocketAddress\00", align 1 +@.TypeMapEntry.18367_from = private unnamed_addr constant [40 x i8] c"Java.Net.InterfaceAddress, Mono.Android\00", align 1 +@.TypeMapEntry.18368_to = private unnamed_addr constant [26 x i8] c"java/net/InterfaceAddress\00", align 1 +@.TypeMapEntry.18369_from = private unnamed_addr constant [40 x i8] c"Java.Net.JarURLConnection, Mono.Android\00", align 1 +@.TypeMapEntry.18370_to = private unnamed_addr constant [26 x i8] c"java/net/JarURLConnection\00", align 1 +@.TypeMapEntry.18371_from = private unnamed_addr constant [47 x i8] c"Java.Net.JarURLConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18372_from = private unnamed_addr constant [45 x i8] c"Java.Net.MalformedURLException, Mono.Android\00", align 1 +@.TypeMapEntry.18373_to = private unnamed_addr constant [31 x i8] c"java/net/MalformedURLException\00", align 1 +@.TypeMapEntry.18374_from = private unnamed_addr constant [39 x i8] c"Java.Net.MulticastSocket, Mono.Android\00", align 1 +@.TypeMapEntry.18375_to = private unnamed_addr constant [25 x i8] c"java/net/MulticastSocket\00", align 1 +@.TypeMapEntry.18376_from = private unnamed_addr constant [37 x i8] c"Java.Net.NetPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18377_to = private unnamed_addr constant [23 x i8] c"java/net/NetPermission\00", align 1 +@.TypeMapEntry.18378_from = private unnamed_addr constant [40 x i8] c"Java.Net.NetworkInterface, Mono.Android\00", align 1 +@.TypeMapEntry.18379_to = private unnamed_addr constant [26 x i8] c"java/net/NetworkInterface\00", align 1 +@.TypeMapEntry.18380_from = private unnamed_addr constant [46 x i8] c"Java.Net.NoRouteToHostException, Mono.Android\00", align 1 +@.TypeMapEntry.18381_to = private unnamed_addr constant [32 x i8] c"java/net/NoRouteToHostException\00", align 1 +@.TypeMapEntry.18382_from = private unnamed_addr constant [46 x i8] c"Java.Net.PasswordAuthentication, Mono.Android\00", align 1 +@.TypeMapEntry.18383_to = private unnamed_addr constant [32 x i8] c"java/net/PasswordAuthentication\00", align 1 +@.TypeMapEntry.18384_from = private unnamed_addr constant [48 x i8] c"Java.Net.PortUnreachableException, Mono.Android\00", align 1 +@.TypeMapEntry.18385_to = private unnamed_addr constant [34 x i8] c"java/net/PortUnreachableException\00", align 1 +@.TypeMapEntry.18386_from = private unnamed_addr constant [41 x i8] c"Java.Net.ProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.18387_to = private unnamed_addr constant [27 x i8] c"java/net/ProtocolException\00", align 1 +@.TypeMapEntry.18388_from = private unnamed_addr constant [34 x i8] c"Java.Net.Proxy+Type, Mono.Android\00", align 1 +@.TypeMapEntry.18389_to = private unnamed_addr constant [20 x i8] c"java/net/Proxy$Type\00", align 1 +@.TypeMapEntry.18390_from = private unnamed_addr constant [29 x i8] c"Java.Net.Proxy, Mono.Android\00", align 1 +@.TypeMapEntry.18391_to = private unnamed_addr constant [15 x i8] c"java/net/Proxy\00", align 1 +@.TypeMapEntry.18392_from = private unnamed_addr constant [37 x i8] c"Java.Net.ProxySelector, Mono.Android\00", align 1 +@.TypeMapEntry.18393_to = private unnamed_addr constant [23 x i8] c"java/net/ProxySelector\00", align 1 +@.TypeMapEntry.18394_from = private unnamed_addr constant [44 x i8] c"Java.Net.ProxySelectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18395_from = private unnamed_addr constant [37 x i8] c"Java.Net.ResponseCache, Mono.Android\00", align 1 +@.TypeMapEntry.18396_to = private unnamed_addr constant [23 x i8] c"java/net/ResponseCache\00", align 1 +@.TypeMapEntry.18397_from = private unnamed_addr constant [44 x i8] c"Java.Net.ResponseCacheInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18398_from = private unnamed_addr constant [43 x i8] c"Java.Net.SecureCacheResponse, Mono.Android\00", align 1 +@.TypeMapEntry.18399_to = private unnamed_addr constant [29 x i8] c"java/net/SecureCacheResponse\00", align 1 +@.TypeMapEntry.18400_from = private unnamed_addr constant [50 x i8] c"Java.Net.SecureCacheResponseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18401_from = private unnamed_addr constant [36 x i8] c"Java.Net.ServerSocket, Mono.Android\00", align 1 +@.TypeMapEntry.18402_to = private unnamed_addr constant [22 x i8] c"java/net/ServerSocket\00", align 1 +@.TypeMapEntry.18403_from = private unnamed_addr constant [30 x i8] c"Java.Net.Socket, Mono.Android\00", align 1 +@.TypeMapEntry.18404_to = private unnamed_addr constant [16 x i8] c"java/net/Socket\00", align 1 +@.TypeMapEntry.18405_from = private unnamed_addr constant [37 x i8] c"Java.Net.SocketAddress, Mono.Android\00", align 1 +@.TypeMapEntry.18406_to = private unnamed_addr constant [23 x i8] c"java/net/SocketAddress\00", align 1 +@.TypeMapEntry.18407_from = private unnamed_addr constant [44 x i8] c"Java.Net.SocketAddressInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18408_from = private unnamed_addr constant [39 x i8] c"Java.Net.SocketException, Mono.Android\00", align 1 +@.TypeMapEntry.18409_to = private unnamed_addr constant [25 x i8] c"java/net/SocketException\00", align 1 +@.TypeMapEntry.18410_from = private unnamed_addr constant [34 x i8] c"Java.Net.SocketImpl, Mono.Android\00", align 1 +@.TypeMapEntry.18411_to = private unnamed_addr constant [20 x i8] c"java/net/SocketImpl\00", align 1 +@.TypeMapEntry.18412_from = private unnamed_addr constant [41 x i8] c"Java.Net.SocketImplInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18413_from = private unnamed_addr constant [37 x i8] c"Java.Net.SocketOptions, Mono.Android\00", align 1 +@.TypeMapEntry.18414_to = private unnamed_addr constant [37 x i8] c"mono/internal/java/net/SocketOptions\00", align 1 +@.TypeMapEntry.18415_from = private unnamed_addr constant [40 x i8] c"Java.Net.SocketPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18416_to = private unnamed_addr constant [26 x i8] c"java/net/SocketPermission\00", align 1 +@.TypeMapEntry.18417_from = private unnamed_addr constant [46 x i8] c"Java.Net.SocketTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.18418_to = private unnamed_addr constant [32 x i8] c"java/net/SocketTimeoutException\00", align 1 +@.TypeMapEntry.18419_from = private unnamed_addr constant [46 x i8] c"Java.Net.StandardProtocolFamily, Mono.Android\00", align 1 +@.TypeMapEntry.18420_to = private unnamed_addr constant [32 x i8] c"java/net/StandardProtocolFamily\00", align 1 +@.TypeMapEntry.18421_from = private unnamed_addr constant [45 x i8] c"Java.Net.StandardSocketOptions, Mono.Android\00", align 1 +@.TypeMapEntry.18422_to = private unnamed_addr constant [31 x i8] c"java/net/StandardSocketOptions\00", align 1 +@.TypeMapEntry.18423_from = private unnamed_addr constant [27 x i8] c"Java.Net.URI, Mono.Android\00", align 1 +@.TypeMapEntry.18424_to = private unnamed_addr constant [13 x i8] c"java/net/URI\00", align 1 +@.TypeMapEntry.18425_from = private unnamed_addr constant [42 x i8] c"Java.Net.URISyntaxException, Mono.Android\00", align 1 +@.TypeMapEntry.18426_to = private unnamed_addr constant [28 x i8] c"java/net/URISyntaxException\00", align 1 +@.TypeMapEntry.18427_from = private unnamed_addr constant [27 x i8] c"Java.Net.URL, Mono.Android\00", align 1 +@.TypeMapEntry.18428_to = private unnamed_addr constant [13 x i8] c"java/net/URL\00", align 1 +@.TypeMapEntry.18429_from = private unnamed_addr constant [38 x i8] c"Java.Net.URLClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.18430_to = private unnamed_addr constant [24 x i8] c"java/net/URLClassLoader\00", align 1 +@.TypeMapEntry.18431_from = private unnamed_addr constant [37 x i8] c"Java.Net.URLConnection, Mono.Android\00", align 1 +@.TypeMapEntry.18432_to = private unnamed_addr constant [23 x i8] c"java/net/URLConnection\00", align 1 +@.TypeMapEntry.18433_from = private unnamed_addr constant [44 x i8] c"Java.Net.URLConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18434_from = private unnamed_addr constant [34 x i8] c"Java.Net.URLDecoder, Mono.Android\00", align 1 +@.TypeMapEntry.18435_to = private unnamed_addr constant [20 x i8] c"java/net/URLDecoder\00", align 1 +@.TypeMapEntry.18436_from = private unnamed_addr constant [34 x i8] c"Java.Net.URLEncoder, Mono.Android\00", align 1 +@.TypeMapEntry.18437_to = private unnamed_addr constant [20 x i8] c"java/net/URLEncoder\00", align 1 +@.TypeMapEntry.18438_from = private unnamed_addr constant [40 x i8] c"Java.Net.URLStreamHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18439_to = private unnamed_addr constant [26 x i8] c"java/net/URLStreamHandler\00", align 1 +@.TypeMapEntry.18440_from = private unnamed_addr constant [47 x i8] c"Java.Net.URLStreamHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18441_from = private unnamed_addr constant [44 x i8] c"Java.Net.UnknownHostException, Mono.Android\00", align 1 +@.TypeMapEntry.18442_to = private unnamed_addr constant [30 x i8] c"java/net/UnknownHostException\00", align 1 +@.TypeMapEntry.18443_from = private unnamed_addr constant [47 x i8] c"Java.Net.UnknownServiceException, Mono.Android\00", align 1 +@.TypeMapEntry.18444_to = private unnamed_addr constant [33 x i8] c"java/net/UnknownServiceException\00", align 1 +@.TypeMapEntry.18445_from = private unnamed_addr constant [30 x i8] c"Java.Nio.Buffer, Mono.Android\00", align 1 +@.TypeMapEntry.18446_to = private unnamed_addr constant [16 x i8] c"java/nio/Buffer\00", align 1 +@.TypeMapEntry.18447_from = private unnamed_addr constant [37 x i8] c"Java.Nio.BufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18448_from = private unnamed_addr constant [47 x i8] c"Java.Nio.BufferOverflowException, Mono.Android\00", align 1 +@.TypeMapEntry.18449_to = private unnamed_addr constant [33 x i8] c"java/nio/BufferOverflowException\00", align 1 +@.TypeMapEntry.18450_from = private unnamed_addr constant [48 x i8] c"Java.Nio.BufferUnderflowException, Mono.Android\00", align 1 +@.TypeMapEntry.18451_to = private unnamed_addr constant [34 x i8] c"java/nio/BufferUnderflowException\00", align 1 +@.TypeMapEntry.18452_from = private unnamed_addr constant [34 x i8] c"Java.Nio.ByteBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18453_to = private unnamed_addr constant [20 x i8] c"java/nio/ByteBuffer\00", align 1 +@.TypeMapEntry.18454_from = private unnamed_addr constant [41 x i8] c"Java.Nio.ByteBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18455_from = private unnamed_addr constant [33 x i8] c"Java.Nio.ByteOrder, Mono.Android\00", align 1 +@.TypeMapEntry.18456_to = private unnamed_addr constant [19 x i8] c"java/nio/ByteOrder\00", align 1 +@.TypeMapEntry.18457_from = private unnamed_addr constant [55 x i8] c"Java.Nio.Channels.AcceptPendingException, Mono.Android\00", align 1 +@.TypeMapEntry.18458_to = private unnamed_addr constant [41 x i8] c"java/nio/channels/AcceptPendingException\00", align 1 +@.TypeMapEntry.18459_from = private unnamed_addr constant [54 x i8] c"Java.Nio.Channels.AlreadyBoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18460_to = private unnamed_addr constant [40 x i8] c"java/nio/channels/AlreadyBoundException\00", align 1 +@.TypeMapEntry.18461_from = private unnamed_addr constant [58 x i8] c"Java.Nio.Channels.AlreadyConnectedException, Mono.Android\00", align 1 +@.TypeMapEntry.18462_to = private unnamed_addr constant [44 x i8] c"java/nio/channels/AlreadyConnectedException\00", align 1 +@.TypeMapEntry.18463_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.AsynchronousChannelGroup, Mono.Android\00", align 1 +@.TypeMapEntry.18464_to = private unnamed_addr constant [43 x i8] c"java/nio/channels/AsynchronousChannelGroup\00", align 1 +@.TypeMapEntry.18465_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.AsynchronousChannelGroupInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18466_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Channels.AsynchronousCloseException, Mono.Android\00", align 1 +@.TypeMapEntry.18467_to = private unnamed_addr constant [45 x i8] c"java/nio/channels/AsynchronousCloseException\00", align 1 +@.TypeMapEntry.18468_from = private unnamed_addr constant [56 x i8] c"Java.Nio.Channels.AsynchronousFileChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18469_to = private unnamed_addr constant [42 x i8] c"java/nio/channels/AsynchronousFileChannel\00", align 1 +@.TypeMapEntry.18470_from = private unnamed_addr constant [63 x i8] c"Java.Nio.Channels.AsynchronousFileChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18471_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.AsynchronousServerSocketChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18472_to = private unnamed_addr constant [50 x i8] c"java/nio/channels/AsynchronousServerSocketChannel\00", align 1 +@.TypeMapEntry.18473_from = private unnamed_addr constant [71 x i8] c"Java.Nio.Channels.AsynchronousServerSocketChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18474_from = private unnamed_addr constant [58 x i8] c"Java.Nio.Channels.AsynchronousSocketChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18475_to = private unnamed_addr constant [44 x i8] c"java/nio/channels/AsynchronousSocketChannel\00", align 1 +@.TypeMapEntry.18476_from = private unnamed_addr constant [65 x i8] c"Java.Nio.Channels.AsynchronousSocketChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18477_from = private unnamed_addr constant [54 x i8] c"Java.Nio.Channels.CancelledKeyException, Mono.Android\00", align 1 +@.TypeMapEntry.18478_to = private unnamed_addr constant [40 x i8] c"java/nio/channels/CancelledKeyException\00", align 1 +@.TypeMapEntry.18479_from = private unnamed_addr constant [41 x i8] c"Java.Nio.Channels.Channels, Mono.Android\00", align 1 +@.TypeMapEntry.18480_to = private unnamed_addr constant [27 x i8] c"java/nio/channels/Channels\00", align 1 +@.TypeMapEntry.18481_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Channels.ClosedByInterruptException, Mono.Android\00", align 1 +@.TypeMapEntry.18482_to = private unnamed_addr constant [45 x i8] c"java/nio/channels/ClosedByInterruptException\00", align 1 +@.TypeMapEntry.18483_from = private unnamed_addr constant [55 x i8] c"Java.Nio.Channels.ClosedChannelException, Mono.Android\00", align 1 +@.TypeMapEntry.18484_to = private unnamed_addr constant [41 x i8] c"java/nio/channels/ClosedChannelException\00", align 1 +@.TypeMapEntry.18485_from = private unnamed_addr constant [56 x i8] c"Java.Nio.Channels.ClosedSelectorException, Mono.Android\00", align 1 +@.TypeMapEntry.18486_to = private unnamed_addr constant [42 x i8] c"java/nio/channels/ClosedSelectorException\00", align 1 +@.TypeMapEntry.18487_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Channels.ConnectionPendingException, Mono.Android\00", align 1 +@.TypeMapEntry.18488_to = private unnamed_addr constant [45 x i8] c"java/nio/channels/ConnectionPendingException\00", align 1 +@.TypeMapEntry.18489_from = private unnamed_addr constant [48 x i8] c"Java.Nio.Channels.DatagramChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18490_to = private unnamed_addr constant [34 x i8] c"java/nio/channels/DatagramChannel\00", align 1 +@.TypeMapEntry.18491_from = private unnamed_addr constant [55 x i8] c"Java.Nio.Channels.DatagramChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18492_from = private unnamed_addr constant [52 x i8] c"Java.Nio.Channels.FileChannel+MapMode, Mono.Android\00", align 1 +@.TypeMapEntry.18493_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/FileChannel$MapMode\00", align 1 +@.TypeMapEntry.18494_from = private unnamed_addr constant [44 x i8] c"Java.Nio.Channels.FileChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18495_to = private unnamed_addr constant [30 x i8] c"java/nio/channels/FileChannel\00", align 1 +@.TypeMapEntry.18496_from = private unnamed_addr constant [51 x i8] c"Java.Nio.Channels.FileChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18497_from = private unnamed_addr constant [41 x i8] c"Java.Nio.Channels.FileLock, Mono.Android\00", align 1 +@.TypeMapEntry.18498_to = private unnamed_addr constant [27 x i8] c"java/nio/channels/FileLock\00", align 1 +@.TypeMapEntry.18499_from = private unnamed_addr constant [62 x i8] c"Java.Nio.Channels.FileLockInterruptionException, Mono.Android\00", align 1 +@.TypeMapEntry.18500_to = private unnamed_addr constant [48 x i8] c"java/nio/channels/FileLockInterruptionException\00", align 1 +@.TypeMapEntry.18501_from = private unnamed_addr constant [48 x i8] c"Java.Nio.Channels.FileLockInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18502_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.IAsynchronousByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18503_to = private unnamed_addr constant [42 x i8] c"java/nio/channels/AsynchronousByteChannel\00", align 1 +@.TypeMapEntry.18504_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.IAsynchronousByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18505_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.IAsynchronousChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18506_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/AsynchronousChannel\00", align 1 +@.TypeMapEntry.18507_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.IAsynchronousChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18508_from = private unnamed_addr constant [45 x i8] c"Java.Nio.Channels.IByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18509_to = private unnamed_addr constant [30 x i8] c"java/nio/channels/ByteChannel\00", align 1 +@.TypeMapEntry.18510_from = private unnamed_addr constant [52 x i8] c"Java.Nio.Channels.IByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18511_from = private unnamed_addr constant [41 x i8] c"Java.Nio.Channels.IChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18512_to = private unnamed_addr constant [26 x i8] c"java/nio/channels/Channel\00", align 1 +@.TypeMapEntry.18513_from = private unnamed_addr constant [48 x i8] c"Java.Nio.Channels.IChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18514_from = private unnamed_addr constant [51 x i8] c"Java.Nio.Channels.ICompletionHandler, Mono.Android\00", align 1 +@.TypeMapEntry.18515_to = private unnamed_addr constant [36 x i8] c"java/nio/channels/CompletionHandler\00", align 1 +@.TypeMapEntry.18516_from = private unnamed_addr constant [58 x i8] c"Java.Nio.Channels.ICompletionHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18517_from = private unnamed_addr constant [54 x i8] c"Java.Nio.Channels.IGatheringByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18518_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/GatheringByteChannel\00", align 1 +@.TypeMapEntry.18519_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.IGatheringByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18520_from = private unnamed_addr constant [54 x i8] c"Java.Nio.Channels.IInterruptibleChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18521_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/InterruptibleChannel\00", align 1 +@.TypeMapEntry.18522_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.IInterruptibleChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18523_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.IReadableByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18524_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/ReadableByteChannel\00", align 1 +@.TypeMapEntry.18525_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.IReadableByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18526_from = private unnamed_addr constant [55 x i8] c"Java.Nio.Channels.IScatteringByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18527_to = private unnamed_addr constant [40 x i8] c"java/nio/channels/ScatteringByteChannel\00", align 1 +@.TypeMapEntry.18528_from = private unnamed_addr constant [62 x i8] c"Java.Nio.Channels.IScatteringByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18529_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.ISeekableByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18530_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/SeekableByteChannel\00", align 1 +@.TypeMapEntry.18531_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.ISeekableByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18532_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.IWritableByteChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18533_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/WritableByteChannel\00", align 1 +@.TypeMapEntry.18534_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.IWritableByteChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18535_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.IllegalBlockingModeException, Mono.Android\00", align 1 +@.TypeMapEntry.18536_to = private unnamed_addr constant [47 x i8] c"java/nio/channels/IllegalBlockingModeException\00", align 1 +@.TypeMapEntry.18537_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.IllegalChannelGroupException, Mono.Android\00", align 1 +@.TypeMapEntry.18538_to = private unnamed_addr constant [47 x i8] c"java/nio/channels/IllegalChannelGroupException\00", align 1 +@.TypeMapEntry.18539_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.IllegalSelectorException, Mono.Android\00", align 1 +@.TypeMapEntry.18540_to = private unnamed_addr constant [43 x i8] c"java/nio/channels/IllegalSelectorException\00", align 1 +@.TypeMapEntry.18541_from = private unnamed_addr constant [62 x i8] c"Java.Nio.Channels.InterruptedByTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.18542_to = private unnamed_addr constant [48 x i8] c"java/nio/channels/InterruptedByTimeoutException\00", align 1 +@.TypeMapEntry.18543_from = private unnamed_addr constant [46 x i8] c"Java.Nio.Channels.MembershipKey, Mono.Android\00", align 1 +@.TypeMapEntry.18544_to = private unnamed_addr constant [32 x i8] c"java/nio/channels/MembershipKey\00", align 1 +@.TypeMapEntry.18545_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.MembershipKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18546_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.NoConnectionPendingException, Mono.Android\00", align 1 +@.TypeMapEntry.18547_to = private unnamed_addr constant [47 x i8] c"java/nio/channels/NoConnectionPendingException\00", align 1 +@.TypeMapEntry.18548_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.NonReadableChannelException, Mono.Android\00", align 1 +@.TypeMapEntry.18549_to = private unnamed_addr constant [46 x i8] c"java/nio/channels/NonReadableChannelException\00", align 1 +@.TypeMapEntry.18550_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.NonWritableChannelException, Mono.Android\00", align 1 +@.TypeMapEntry.18551_to = private unnamed_addr constant [46 x i8] c"java/nio/channels/NonWritableChannelException\00", align 1 +@.TypeMapEntry.18552_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.NotYetBoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18553_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/NotYetBoundException\00", align 1 +@.TypeMapEntry.18554_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.NotYetConnectedException, Mono.Android\00", align 1 +@.TypeMapEntry.18555_to = private unnamed_addr constant [43 x i8] c"java/nio/channels/NotYetConnectedException\00", align 1 +@.TypeMapEntry.18556_from = private unnamed_addr constant [61 x i8] c"Java.Nio.Channels.OverlappingFileLockException, Mono.Android\00", align 1 +@.TypeMapEntry.18557_to = private unnamed_addr constant [47 x i8] c"java/nio/channels/OverlappingFileLockException\00", align 1 +@.TypeMapEntry.18558_from = private unnamed_addr constant [49 x i8] c"Java.Nio.Channels.Pipe+SinkChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18559_to = private unnamed_addr constant [35 x i8] c"java/nio/channels/Pipe$SinkChannel\00", align 1 +@.TypeMapEntry.18560_from = private unnamed_addr constant [56 x i8] c"Java.Nio.Channels.Pipe+SinkChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18561_from = private unnamed_addr constant [51 x i8] c"Java.Nio.Channels.Pipe+SourceChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18562_to = private unnamed_addr constant [37 x i8] c"java/nio/channels/Pipe$SourceChannel\00", align 1 +@.TypeMapEntry.18563_from = private unnamed_addr constant [58 x i8] c"Java.Nio.Channels.Pipe+SourceChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18564_from = private unnamed_addr constant [37 x i8] c"Java.Nio.Channels.Pipe, Mono.Android\00", align 1 +@.TypeMapEntry.18565_to = private unnamed_addr constant [23 x i8] c"java/nio/channels/Pipe\00", align 1 +@.TypeMapEntry.18566_from = private unnamed_addr constant [44 x i8] c"Java.Nio.Channels.PipeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18567_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.ReadPendingException, Mono.Android\00", align 1 +@.TypeMapEntry.18568_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/ReadPendingException\00", align 1 +@.TypeMapEntry.18569_from = private unnamed_addr constant [50 x i8] c"Java.Nio.Channels.SelectableChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18570_to = private unnamed_addr constant [36 x i8] c"java/nio/channels/SelectableChannel\00", align 1 +@.TypeMapEntry.18571_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.SelectableChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18572_from = private unnamed_addr constant [45 x i8] c"Java.Nio.Channels.SelectionKey, Mono.Android\00", align 1 +@.TypeMapEntry.18573_to = private unnamed_addr constant [31 x i8] c"java/nio/channels/SelectionKey\00", align 1 +@.TypeMapEntry.18574_from = private unnamed_addr constant [52 x i8] c"Java.Nio.Channels.SelectionKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18575_from = private unnamed_addr constant [41 x i8] c"Java.Nio.Channels.Selector, Mono.Android\00", align 1 +@.TypeMapEntry.18576_to = private unnamed_addr constant [27 x i8] c"java/nio/channels/Selector\00", align 1 +@.TypeMapEntry.18577_from = private unnamed_addr constant [48 x i8] c"Java.Nio.Channels.SelectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18578_from = private unnamed_addr constant [52 x i8] c"Java.Nio.Channels.ServerSocketChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18579_to = private unnamed_addr constant [38 x i8] c"java/nio/channels/ServerSocketChannel\00", align 1 +@.TypeMapEntry.18580_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Channels.ServerSocketChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18581_from = private unnamed_addr constant [62 x i8] c"Java.Nio.Channels.ShutdownChannelGroupException, Mono.Android\00", align 1 +@.TypeMapEntry.18582_to = private unnamed_addr constant [48 x i8] c"java/nio/channels/ShutdownChannelGroupException\00", align 1 +@.TypeMapEntry.18583_from = private unnamed_addr constant [46 x i8] c"Java.Nio.Channels.SocketChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18584_to = private unnamed_addr constant [32 x i8] c"java/nio/channels/SocketChannel\00", align 1 +@.TypeMapEntry.18585_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.SocketChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18586_from = private unnamed_addr constant [65 x i8] c"Java.Nio.Channels.Spi.AbstractInterruptibleChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18587_to = private unnamed_addr constant [51 x i8] c"java/nio/channels/spi/AbstractInterruptibleChannel\00", align 1 +@.TypeMapEntry.18588_from = private unnamed_addr constant [72 x i8] c"Java.Nio.Channels.Spi.AbstractInterruptibleChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18589_from = private unnamed_addr constant [62 x i8] c"Java.Nio.Channels.Spi.AbstractSelectableChannel, Mono.Android\00", align 1 +@.TypeMapEntry.18590_to = private unnamed_addr constant [48 x i8] c"java/nio/channels/spi/AbstractSelectableChannel\00", align 1 +@.TypeMapEntry.18591_from = private unnamed_addr constant [69 x i8] c"Java.Nio.Channels.Spi.AbstractSelectableChannelInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18592_from = private unnamed_addr constant [57 x i8] c"Java.Nio.Channels.Spi.AbstractSelectionKey, Mono.Android\00", align 1 +@.TypeMapEntry.18593_to = private unnamed_addr constant [43 x i8] c"java/nio/channels/spi/AbstractSelectionKey\00", align 1 +@.TypeMapEntry.18594_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.Spi.AbstractSelectionKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18595_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.Spi.AbstractSelector, Mono.Android\00", align 1 +@.TypeMapEntry.18596_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/spi/AbstractSelector\00", align 1 +@.TypeMapEntry.18597_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.Spi.AbstractSelectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18598_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.Spi.AsynchronousChannelProvider, Mono.Android\00", align 1 +@.TypeMapEntry.18599_to = private unnamed_addr constant [50 x i8] c"java/nio/channels/spi/AsynchronousChannelProvider\00", align 1 +@.TypeMapEntry.18600_from = private unnamed_addr constant [71 x i8] c"Java.Nio.Channels.Spi.AsynchronousChannelProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18601_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Channels.Spi.SelectorProvider, Mono.Android\00", align 1 +@.TypeMapEntry.18602_to = private unnamed_addr constant [39 x i8] c"java/nio/channels/spi/SelectorProvider\00", align 1 +@.TypeMapEntry.18603_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Channels.Spi.SelectorProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18604_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Channels.UnresolvedAddressException, Mono.Android\00", align 1 +@.TypeMapEntry.18605_to = private unnamed_addr constant [45 x i8] c"java/nio/channels/UnresolvedAddressException\00", align 1 +@.TypeMapEntry.18606_from = private unnamed_addr constant [64 x i8] c"Java.Nio.Channels.UnsupportedAddressTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.18607_to = private unnamed_addr constant [50 x i8] c"java/nio/channels/UnsupportedAddressTypeException\00", align 1 +@.TypeMapEntry.18608_from = private unnamed_addr constant [54 x i8] c"Java.Nio.Channels.WritePendingException, Mono.Android\00", align 1 +@.TypeMapEntry.18609_to = private unnamed_addr constant [40 x i8] c"java/nio/channels/WritePendingException\00", align 1 +@.TypeMapEntry.18610_from = private unnamed_addr constant [34 x i8] c"Java.Nio.CharBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18611_to = private unnamed_addr constant [20 x i8] c"java/nio/CharBuffer\00", align 1 +@.TypeMapEntry.18612_from = private unnamed_addr constant [41 x i8] c"Java.Nio.CharBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18613_from = private unnamed_addr constant [56 x i8] c"Java.Nio.Charset.CharacterCodingException, Mono.Android\00", align 1 +@.TypeMapEntry.18614_to = private unnamed_addr constant [42 x i8] c"java/nio/charset/CharacterCodingException\00", align 1 +@.TypeMapEntry.18615_from = private unnamed_addr constant [39 x i8] c"Java.Nio.Charset.Charset, Mono.Android\00", align 1 +@.TypeMapEntry.18616_to = private unnamed_addr constant [25 x i8] c"java/nio/charset/Charset\00", align 1 +@.TypeMapEntry.18617_from = private unnamed_addr constant [46 x i8] c"Java.Nio.Charset.CharsetDecoder, Mono.Android\00", align 1 +@.TypeMapEntry.18618_to = private unnamed_addr constant [32 x i8] c"java/nio/charset/CharsetDecoder\00", align 1 +@.TypeMapEntry.18619_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Charset.CharsetDecoderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18620_from = private unnamed_addr constant [46 x i8] c"Java.Nio.Charset.CharsetEncoder, Mono.Android\00", align 1 +@.TypeMapEntry.18621_to = private unnamed_addr constant [32 x i8] c"java/nio/charset/CharsetEncoder\00", align 1 +@.TypeMapEntry.18622_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Charset.CharsetEncoderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18623_from = private unnamed_addr constant [46 x i8] c"Java.Nio.Charset.CharsetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18624_from = private unnamed_addr constant [53 x i8] c"Java.Nio.Charset.CoderMalfunctionError, Mono.Android\00", align 1 +@.TypeMapEntry.18625_to = private unnamed_addr constant [39 x i8] c"java/nio/charset/CoderMalfunctionError\00", align 1 +@.TypeMapEntry.18626_from = private unnamed_addr constant [43 x i8] c"Java.Nio.Charset.CoderResult, Mono.Android\00", align 1 +@.TypeMapEntry.18627_to = private unnamed_addr constant [29 x i8] c"java/nio/charset/CoderResult\00", align 1 +@.TypeMapEntry.18628_from = private unnamed_addr constant [49 x i8] c"Java.Nio.Charset.CodingErrorAction, Mono.Android\00", align 1 +@.TypeMapEntry.18629_to = private unnamed_addr constant [35 x i8] c"java/nio/charset/CodingErrorAction\00", align 1 +@.TypeMapEntry.18630_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Charset.IllegalCharsetNameException, Mono.Android\00", align 1 +@.TypeMapEntry.18631_to = private unnamed_addr constant [45 x i8] c"java/nio/charset/IllegalCharsetNameException\00", align 1 +@.TypeMapEntry.18632_from = private unnamed_addr constant [55 x i8] c"Java.Nio.Charset.MalformedInputException, Mono.Android\00", align 1 +@.TypeMapEntry.18633_to = private unnamed_addr constant [41 x i8] c"java/nio/charset/MalformedInputException\00", align 1 +@.TypeMapEntry.18634_from = private unnamed_addr constant [51 x i8] c"Java.Nio.Charset.Spi.CharsetProvider, Mono.Android\00", align 1 +@.TypeMapEntry.18635_to = private unnamed_addr constant [37 x i8] c"java/nio/charset/spi/CharsetProvider\00", align 1 +@.TypeMapEntry.18636_from = private unnamed_addr constant [58 x i8] c"Java.Nio.Charset.Spi.CharsetProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18637_from = private unnamed_addr constant [48 x i8] c"Java.Nio.Charset.StandardCharsets, Mono.Android\00", align 1 +@.TypeMapEntry.18638_to = private unnamed_addr constant [34 x i8] c"java/nio/charset/StandardCharsets\00", align 1 +@.TypeMapEntry.18639_from = private unnamed_addr constant [60 x i8] c"Java.Nio.Charset.UnmappableCharacterException, Mono.Android\00", align 1 +@.TypeMapEntry.18640_to = private unnamed_addr constant [46 x i8] c"java/nio/charset/UnmappableCharacterException\00", align 1 +@.TypeMapEntry.18641_from = private unnamed_addr constant [59 x i8] c"Java.Nio.Charset.UnsupportedCharsetException, Mono.Android\00", align 1 +@.TypeMapEntry.18642_to = private unnamed_addr constant [45 x i8] c"java/nio/charset/UnsupportedCharsetException\00", align 1 +@.TypeMapEntry.18643_from = private unnamed_addr constant [36 x i8] c"Java.Nio.DoubleBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18644_to = private unnamed_addr constant [22 x i8] c"java/nio/DoubleBuffer\00", align 1 +@.TypeMapEntry.18645_from = private unnamed_addr constant [43 x i8] c"Java.Nio.DoubleBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18646_from = private unnamed_addr constant [53 x i8] c"Java.Nio.FileNio.AccessDeniedException, Mono.Android\00", align 1 +@.TypeMapEntry.18647_to = private unnamed_addr constant [36 x i8] c"java/nio/file/AccessDeniedException\00", align 1 +@.TypeMapEntry.18648_from = private unnamed_addr constant [42 x i8] c"Java.Nio.FileNio.AccessMode, Mono.Android\00", align 1 +@.TypeMapEntry.18649_to = private unnamed_addr constant [25 x i8] c"java/nio/file/AccessMode\00", align 1 +@.TypeMapEntry.18650_from = private unnamed_addr constant [63 x i8] c"Java.Nio.FileNio.AtomicMoveNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.18651_to = private unnamed_addr constant [46 x i8] c"java/nio/file/AtomicMoveNotSupportedException\00", align 1 +@.TypeMapEntry.18652_from = private unnamed_addr constant [59 x i8] c"Java.Nio.FileNio.Attributes.AclEntry+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.18653_to = private unnamed_addr constant [41 x i8] c"java/nio/file/attribute/AclEntry$Builder\00", align 1 +@.TypeMapEntry.18654_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.Attributes.AclEntry, Mono.Android\00", align 1 +@.TypeMapEntry.18655_to = private unnamed_addr constant [33 x i8] c"java/nio/file/attribute/AclEntry\00", align 1 +@.TypeMapEntry.18656_from = private unnamed_addr constant [55 x i8] c"Java.Nio.FileNio.Attributes.AclEntryFlag, Mono.Android\00", align 1 +@.TypeMapEntry.18657_to = private unnamed_addr constant [37 x i8] c"java/nio/file/attribute/AclEntryFlag\00", align 1 +@.TypeMapEntry.18658_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.Attributes.AclEntryPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18659_to = private unnamed_addr constant [43 x i8] c"java/nio/file/attribute/AclEntryPermission\00", align 1 +@.TypeMapEntry.18660_from = private unnamed_addr constant [55 x i8] c"Java.Nio.FileNio.Attributes.AclEntryType, Mono.Android\00", align 1 +@.TypeMapEntry.18661_to = private unnamed_addr constant [37 x i8] c"java/nio/file/attribute/AclEntryType\00", align 1 +@.TypeMapEntry.18662_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.Attributes.FileTime, Mono.Android\00", align 1 +@.TypeMapEntry.18663_to = private unnamed_addr constant [33 x i8] c"java/nio/file/attribute/FileTime\00", align 1 +@.TypeMapEntry.18664_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.Attributes.IAclFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18665_to = private unnamed_addr constant [45 x i8] c"java/nio/file/attribute/AclFileAttributeView\00", align 1 +@.TypeMapEntry.18666_from = private unnamed_addr constant [71 x i8] c"Java.Nio.FileNio.Attributes.IAclFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18667_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.Attributes.IAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18668_to = private unnamed_addr constant [38 x i8] c"java/nio/file/attribute/AttributeView\00", align 1 +@.TypeMapEntry.18669_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.Attributes.IAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18670_from = private unnamed_addr constant [66 x i8] c"Java.Nio.FileNio.Attributes.IBasicFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18671_to = private unnamed_addr constant [47 x i8] c"java/nio/file/attribute/BasicFileAttributeView\00", align 1 +@.TypeMapEntry.18672_from = private unnamed_addr constant [73 x i8] c"Java.Nio.FileNio.Attributes.IBasicFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18673_from = private unnamed_addr constant [63 x i8] c"Java.Nio.FileNio.Attributes.IBasicFileAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.18674_to = private unnamed_addr constant [44 x i8] c"java/nio/file/attribute/BasicFileAttributes\00", align 1 +@.TypeMapEntry.18675_from = private unnamed_addr constant [70 x i8] c"Java.Nio.FileNio.Attributes.IBasicFileAttributesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18676_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.Attributes.IDosFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18677_to = private unnamed_addr constant [45 x i8] c"java/nio/file/attribute/DosFileAttributeView\00", align 1 +@.TypeMapEntry.18678_from = private unnamed_addr constant [71 x i8] c"Java.Nio.FileNio.Attributes.IDosFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18679_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.Attributes.IDosFileAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.18680_to = private unnamed_addr constant [42 x i8] c"java/nio/file/attribute/DosFileAttributes\00", align 1 +@.TypeMapEntry.18681_from = private unnamed_addr constant [68 x i8] c"Java.Nio.FileNio.Attributes.IDosFileAttributesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18682_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.Attributes.IFileAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.18683_to = private unnamed_addr constant [38 x i8] c"java/nio/file/attribute/FileAttribute\00", align 1 +@.TypeMapEntry.18684_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.Attributes.IFileAttributeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18685_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.Attributes.IFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18686_to = private unnamed_addr constant [42 x i8] c"java/nio/file/attribute/FileAttributeView\00", align 1 +@.TypeMapEntry.18687_from = private unnamed_addr constant [68 x i8] c"Java.Nio.FileNio.Attributes.IFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18688_from = private unnamed_addr constant [66 x i8] c"Java.Nio.FileNio.Attributes.IFileOwnerAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18689_to = private unnamed_addr constant [47 x i8] c"java/nio/file/attribute/FileOwnerAttributeView\00", align 1 +@.TypeMapEntry.18690_from = private unnamed_addr constant [73 x i8] c"Java.Nio.FileNio.Attributes.IFileOwnerAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18691_from = private unnamed_addr constant [66 x i8] c"Java.Nio.FileNio.Attributes.IFileStoreAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18692_to = private unnamed_addr constant [47 x i8] c"java/nio/file/attribute/FileStoreAttributeView\00", align 1 +@.TypeMapEntry.18693_from = private unnamed_addr constant [73 x i8] c"Java.Nio.FileNio.Attributes.IFileStoreAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18694_from = private unnamed_addr constant [58 x i8] c"Java.Nio.FileNio.Attributes.IGroupPrincipal, Mono.Android\00", align 1 +@.TypeMapEntry.18695_to = private unnamed_addr constant [39 x i8] c"java/nio/file/attribute/GroupPrincipal\00", align 1 +@.TypeMapEntry.18696_from = private unnamed_addr constant [65 x i8] c"Java.Nio.FileNio.Attributes.IGroupPrincipalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18697_from = private unnamed_addr constant [66 x i8] c"Java.Nio.FileNio.Attributes.IPosixFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18698_to = private unnamed_addr constant [47 x i8] c"java/nio/file/attribute/PosixFileAttributeView\00", align 1 +@.TypeMapEntry.18699_from = private unnamed_addr constant [73 x i8] c"Java.Nio.FileNio.Attributes.IPosixFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18700_from = private unnamed_addr constant [63 x i8] c"Java.Nio.FileNio.Attributes.IPosixFileAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.18701_to = private unnamed_addr constant [44 x i8] c"java/nio/file/attribute/PosixFileAttributes\00", align 1 +@.TypeMapEntry.18702_from = private unnamed_addr constant [70 x i8] c"Java.Nio.FileNio.Attributes.IPosixFileAttributesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18703_from = private unnamed_addr constant [72 x i8] c"Java.Nio.FileNio.Attributes.IUserDefinedFileAttributeView, Mono.Android\00", align 1 +@.TypeMapEntry.18704_to = private unnamed_addr constant [53 x i8] c"java/nio/file/attribute/UserDefinedFileAttributeView\00", align 1 +@.TypeMapEntry.18705_from = private unnamed_addr constant [79 x i8] c"Java.Nio.FileNio.Attributes.IUserDefinedFileAttributeViewInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18706_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.Attributes.IUserPrincipal, Mono.Android\00", align 1 +@.TypeMapEntry.18707_to = private unnamed_addr constant [38 x i8] c"java/nio/file/attribute/UserPrincipal\00", align 1 +@.TypeMapEntry.18708_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.Attributes.IUserPrincipalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18709_from = private unnamed_addr constant [62 x i8] c"Java.Nio.FileNio.Attributes.PosixFilePermission, Mono.Android\00", align 1 +@.TypeMapEntry.18710_to = private unnamed_addr constant [44 x i8] c"java/nio/file/attribute/PosixFilePermission\00", align 1 +@.TypeMapEntry.18711_from = private unnamed_addr constant [63 x i8] c"Java.Nio.FileNio.Attributes.PosixFilePermissions, Mono.Android\00", align 1 +@.TypeMapEntry.18712_to = private unnamed_addr constant [45 x i8] c"java/nio/file/attribute/PosixFilePermissions\00", align 1 +@.TypeMapEntry.18713_from = private unnamed_addr constant [69 x i8] c"Java.Nio.FileNio.Attributes.UserPrincipalLookupService, Mono.Android\00", align 1 +@.TypeMapEntry.18714_to = private unnamed_addr constant [51 x i8] c"java/nio/file/attribute/UserPrincipalLookupService\00", align 1 +@.TypeMapEntry.18715_from = private unnamed_addr constant [76 x i8] c"Java.Nio.FileNio.Attributes.UserPrincipalLookupServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18716_from = private unnamed_addr constant [73 x i8] c"Java.Nio.FileNio.Attributes.UserPrincipalNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18717_to = private unnamed_addr constant [55 x i8] c"java/nio/file/attribute/UserPrincipalNotFoundException\00", align 1 +@.TypeMapEntry.18718_from = private unnamed_addr constant [62 x i8] c"Java.Nio.FileNio.ClosedDirectoryStreamException, Mono.Android\00", align 1 +@.TypeMapEntry.18719_to = private unnamed_addr constant [45 x i8] c"java/nio/file/ClosedDirectoryStreamException\00", align 1 +@.TypeMapEntry.18720_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.ClosedFileSystemException, Mono.Android\00", align 1 +@.TypeMapEntry.18721_to = private unnamed_addr constant [40 x i8] c"java/nio/file/ClosedFileSystemException\00", align 1 +@.TypeMapEntry.18722_from = private unnamed_addr constant [59 x i8] c"Java.Nio.FileNio.ClosedWatchServiceException, Mono.Android\00", align 1 +@.TypeMapEntry.18723_to = private unnamed_addr constant [42 x i8] c"java/nio/file/ClosedWatchServiceException\00", align 1 +@.TypeMapEntry.18724_from = private unnamed_addr constant [58 x i8] c"Java.Nio.FileNio.DirectoryIteratorException, Mono.Android\00", align 1 +@.TypeMapEntry.18725_to = private unnamed_addr constant [41 x i8] c"java/nio/file/DirectoryIteratorException\00", align 1 +@.TypeMapEntry.18726_from = private unnamed_addr constant [58 x i8] c"Java.Nio.FileNio.DirectoryNotEmptyException, Mono.Android\00", align 1 +@.TypeMapEntry.18727_to = private unnamed_addr constant [41 x i8] c"java/nio/file/DirectoryNotEmptyException\00", align 1 +@.TypeMapEntry.18728_from = private unnamed_addr constant [58 x i8] c"Java.Nio.FileNio.FileAlreadyExistsException, Mono.Android\00", align 1 +@.TypeMapEntry.18729_to = private unnamed_addr constant [41 x i8] c"java/nio/file/FileAlreadyExistsException\00", align 1 +@.TypeMapEntry.18730_from = private unnamed_addr constant [41 x i8] c"Java.Nio.FileNio.FileStore, Mono.Android\00", align 1 +@.TypeMapEntry.18731_to = private unnamed_addr constant [24 x i8] c"java/nio/file/FileStore\00", align 1 +@.TypeMapEntry.18732_from = private unnamed_addr constant [48 x i8] c"Java.Nio.FileNio.FileStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18733_from = private unnamed_addr constant [42 x i8] c"Java.Nio.FileNio.FileSystem, Mono.Android\00", align 1 +@.TypeMapEntry.18734_to = private unnamed_addr constant [25 x i8] c"java/nio/file/FileSystem\00", align 1 +@.TypeMapEntry.18735_from = private unnamed_addr constant [64 x i8] c"Java.Nio.FileNio.FileSystemAlreadyExistsException, Mono.Android\00", align 1 +@.TypeMapEntry.18736_to = private unnamed_addr constant [47 x i8] c"java/nio/file/FileSystemAlreadyExistsException\00", align 1 +@.TypeMapEntry.18737_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.FileSystemException, Mono.Android\00", align 1 +@.TypeMapEntry.18738_to = private unnamed_addr constant [34 x i8] c"java/nio/file/FileSystemException\00", align 1 +@.TypeMapEntry.18739_from = private unnamed_addr constant [49 x i8] c"Java.Nio.FileNio.FileSystemInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18740_from = private unnamed_addr constant [55 x i8] c"Java.Nio.FileNio.FileSystemLoopException, Mono.Android\00", align 1 +@.TypeMapEntry.18741_to = private unnamed_addr constant [38 x i8] c"java/nio/file/FileSystemLoopException\00", align 1 +@.TypeMapEntry.18742_from = private unnamed_addr constant [59 x i8] c"Java.Nio.FileNio.FileSystemNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18743_to = private unnamed_addr constant [42 x i8] c"java/nio/file/FileSystemNotFoundException\00", align 1 +@.TypeMapEntry.18744_from = private unnamed_addr constant [43 x i8] c"Java.Nio.FileNio.FileSystems, Mono.Android\00", align 1 +@.TypeMapEntry.18745_to = private unnamed_addr constant [26 x i8] c"java/nio/file/FileSystems\00", align 1 +@.TypeMapEntry.18746_from = private unnamed_addr constant [47 x i8] c"Java.Nio.FileNio.FileVisitOption, Mono.Android\00", align 1 +@.TypeMapEntry.18747_to = private unnamed_addr constant [30 x i8] c"java/nio/file/FileVisitOption\00", align 1 +@.TypeMapEntry.18748_from = private unnamed_addr constant [47 x i8] c"Java.Nio.FileNio.FileVisitResult, Mono.Android\00", align 1 +@.TypeMapEntry.18749_to = private unnamed_addr constant [30 x i8] c"java/nio/file/FileVisitResult\00", align 1 +@.TypeMapEntry.18750_from = private unnamed_addr constant [37 x i8] c"Java.Nio.FileNio.Files, Mono.Android\00", align 1 +@.TypeMapEntry.18751_to = private unnamed_addr constant [20 x i8] c"java/nio/file/Files\00", align 1 +@.TypeMapEntry.18752_from = private unnamed_addr constant [43 x i8] c"Java.Nio.FileNio.ICopyOption, Mono.Android\00", align 1 +@.TypeMapEntry.18753_to = private unnamed_addr constant [25 x i8] c"java/nio/file/CopyOption\00", align 1 +@.TypeMapEntry.18754_from = private unnamed_addr constant [50 x i8] c"Java.Nio.FileNio.ICopyOptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18755_from = private unnamed_addr constant [48 x i8] c"Java.Nio.FileNio.IDirectoryStream, Mono.Android\00", align 1 +@.TypeMapEntry.18756_to = private unnamed_addr constant [30 x i8] c"java/nio/file/DirectoryStream\00", align 1 +@.TypeMapEntry.18757_from = private unnamed_addr constant [54 x i8] c"Java.Nio.FileNio.IDirectoryStreamFilter, Mono.Android\00", align 1 +@.TypeMapEntry.18758_to = private unnamed_addr constant [37 x i8] c"java/nio/file/DirectoryStream$Filter\00", align 1 +@.TypeMapEntry.18759_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.IDirectoryStreamFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18760_from = private unnamed_addr constant [55 x i8] c"Java.Nio.FileNio.IDirectoryStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18761_from = private unnamed_addr constant [44 x i8] c"Java.Nio.FileNio.IFileVisitor, Mono.Android\00", align 1 +@.TypeMapEntry.18762_to = private unnamed_addr constant [26 x i8] c"java/nio/file/FileVisitor\00", align 1 +@.TypeMapEntry.18763_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.IFileVisitorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18764_from = private unnamed_addr constant [43 x i8] c"Java.Nio.FileNio.IOpenOption, Mono.Android\00", align 1 +@.TypeMapEntry.18765_to = private unnamed_addr constant [25 x i8] c"java/nio/file/OpenOption\00", align 1 +@.TypeMapEntry.18766_from = private unnamed_addr constant [50 x i8] c"Java.Nio.FileNio.IOpenOptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18767_from = private unnamed_addr constant [37 x i8] c"Java.Nio.FileNio.IPath, Mono.Android\00", align 1 +@.TypeMapEntry.18768_to = private unnamed_addr constant [19 x i8] c"java/nio/file/Path\00", align 1 +@.TypeMapEntry.18769_from = private unnamed_addr constant [44 x i8] c"Java.Nio.FileNio.IPathInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18770_from = private unnamed_addr constant [44 x i8] c"Java.Nio.FileNio.IPathMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.18771_to = private unnamed_addr constant [26 x i8] c"java/nio/file/PathMatcher\00", align 1 +@.TypeMapEntry.18772_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.IPathMatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18773_from = private unnamed_addr constant [54 x i8] c"Java.Nio.FileNio.ISecureDirectoryStream, Mono.Android\00", align 1 +@.TypeMapEntry.18774_to = private unnamed_addr constant [36 x i8] c"java/nio/file/SecureDirectoryStream\00", align 1 +@.TypeMapEntry.18775_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.ISecureDirectoryStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18776_from = private unnamed_addr constant [43 x i8] c"Java.Nio.FileNio.IWatchEvent, Mono.Android\00", align 1 +@.TypeMapEntry.18777_to = private unnamed_addr constant [25 x i8] c"java/nio/file/WatchEvent\00", align 1 +@.TypeMapEntry.18778_from = private unnamed_addr constant [50 x i8] c"Java.Nio.FileNio.IWatchEventInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18779_from = private unnamed_addr constant [47 x i8] c"Java.Nio.FileNio.IWatchEventKind, Mono.Android\00", align 1 +@.TypeMapEntry.18780_to = private unnamed_addr constant [30 x i8] c"java/nio/file/WatchEvent$Kind\00", align 1 +@.TypeMapEntry.18781_from = private unnamed_addr constant [54 x i8] c"Java.Nio.FileNio.IWatchEventKindInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18782_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.IWatchEventModifier, Mono.Android\00", align 1 +@.TypeMapEntry.18783_to = private unnamed_addr constant [34 x i8] c"java/nio/file/WatchEvent$Modifier\00", align 1 +@.TypeMapEntry.18784_from = private unnamed_addr constant [58 x i8] c"Java.Nio.FileNio.IWatchEventModifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18785_from = private unnamed_addr constant [41 x i8] c"Java.Nio.FileNio.IWatchKey, Mono.Android\00", align 1 +@.TypeMapEntry.18786_to = private unnamed_addr constant [23 x i8] c"java/nio/file/WatchKey\00", align 1 +@.TypeMapEntry.18787_from = private unnamed_addr constant [48 x i8] c"Java.Nio.FileNio.IWatchKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18788_from = private unnamed_addr constant [45 x i8] c"Java.Nio.FileNio.IWatchService, Mono.Android\00", align 1 +@.TypeMapEntry.18789_to = private unnamed_addr constant [27 x i8] c"java/nio/file/WatchService\00", align 1 +@.TypeMapEntry.18790_from = private unnamed_addr constant [52 x i8] c"Java.Nio.FileNio.IWatchServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18791_from = private unnamed_addr constant [42 x i8] c"Java.Nio.FileNio.IWatchable, Mono.Android\00", align 1 +@.TypeMapEntry.18792_to = private unnamed_addr constant [24 x i8] c"java/nio/file/Watchable\00", align 1 +@.TypeMapEntry.18793_from = private unnamed_addr constant [49 x i8] c"Java.Nio.FileNio.IWatchableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18794_from = private unnamed_addr constant [52 x i8] c"Java.Nio.FileNio.InvalidPathException, Mono.Android\00", align 1 +@.TypeMapEntry.18795_to = private unnamed_addr constant [35 x i8] c"java/nio/file/InvalidPathException\00", align 1 +@.TypeMapEntry.18796_from = private unnamed_addr constant [42 x i8] c"Java.Nio.FileNio.LinkOption, Mono.Android\00", align 1 +@.TypeMapEntry.18797_to = private unnamed_addr constant [25 x i8] c"java/nio/file/LinkOption\00", align 1 +@.TypeMapEntry.18798_from = private unnamed_addr constant [46 x i8] c"Java.Nio.FileNio.LinkPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18799_to = private unnamed_addr constant [29 x i8] c"java/nio/file/LinkPermission\00", align 1 +@.TypeMapEntry.18800_from = private unnamed_addr constant [51 x i8] c"Java.Nio.FileNio.NoSuchFileException, Mono.Android\00", align 1 +@.TypeMapEntry.18801_to = private unnamed_addr constant [34 x i8] c"java/nio/file/NoSuchFileException\00", align 1 +@.TypeMapEntry.18802_from = private unnamed_addr constant [53 x i8] c"Java.Nio.FileNio.NotDirectoryException, Mono.Android\00", align 1 +@.TypeMapEntry.18803_to = private unnamed_addr constant [36 x i8] c"java/nio/file/NotDirectoryException\00", align 1 +@.TypeMapEntry.18804_from = private unnamed_addr constant [48 x i8] c"Java.Nio.FileNio.NotLinkException, Mono.Android\00", align 1 +@.TypeMapEntry.18805_to = private unnamed_addr constant [31 x i8] c"java/nio/file/NotLinkException\00", align 1 +@.TypeMapEntry.18806_from = private unnamed_addr constant [36 x i8] c"Java.Nio.FileNio.Path, Mono.Android\00", align 1 +@.TypeMapEntry.18807_to = private unnamed_addr constant [33 x i8] c"mono/internal/java/nio/file/Path\00", align 1 +@.TypeMapEntry.18808_from = private unnamed_addr constant [37 x i8] c"Java.Nio.FileNio.Paths, Mono.Android\00", align 1 +@.TypeMapEntry.18809_to = private unnamed_addr constant [20 x i8] c"java/nio/file/Paths\00", align 1 +@.TypeMapEntry.18810_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.ProviderMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.18811_to = private unnamed_addr constant [40 x i8] c"java/nio/file/ProviderMismatchException\00", align 1 +@.TypeMapEntry.18812_from = private unnamed_addr constant [57 x i8] c"Java.Nio.FileNio.ProviderNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18813_to = private unnamed_addr constant [40 x i8] c"java/nio/file/ProviderNotFoundException\00", align 1 +@.TypeMapEntry.18814_from = private unnamed_addr constant [59 x i8] c"Java.Nio.FileNio.ReadOnlyFileSystemException, Mono.Android\00", align 1 +@.TypeMapEntry.18815_to = private unnamed_addr constant [42 x i8] c"java/nio/file/ReadOnlyFileSystemException\00", align 1 +@.TypeMapEntry.18816_from = private unnamed_addr constant [49 x i8] c"Java.Nio.FileNio.SimpleFileVisitor, Mono.Android\00", align 1 +@.TypeMapEntry.18817_to = private unnamed_addr constant [32 x i8] c"java/nio/file/SimpleFileVisitor\00", align 1 +@.TypeMapEntry.18818_from = private unnamed_addr constant [54 x i8] c"Java.Nio.FileNio.Spi.FileSystemProvider, Mono.Android\00", align 1 +@.TypeMapEntry.18819_to = private unnamed_addr constant [37 x i8] c"java/nio/file/spi/FileSystemProvider\00", align 1 +@.TypeMapEntry.18820_from = private unnamed_addr constant [61 x i8] c"Java.Nio.FileNio.Spi.FileSystemProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18821_from = private unnamed_addr constant [52 x i8] c"Java.Nio.FileNio.Spi.FileTypeDetector, Mono.Android\00", align 1 +@.TypeMapEntry.18822_to = private unnamed_addr constant [35 x i8] c"java/nio/file/spi/FileTypeDetector\00", align 1 +@.TypeMapEntry.18823_from = private unnamed_addr constant [59 x i8] c"Java.Nio.FileNio.Spi.FileTypeDetectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18824_from = private unnamed_addr constant [50 x i8] c"Java.Nio.FileNio.StandardCopyOption, Mono.Android\00", align 1 +@.TypeMapEntry.18825_to = private unnamed_addr constant [33 x i8] c"java/nio/file/StandardCopyOption\00", align 1 +@.TypeMapEntry.18826_from = private unnamed_addr constant [50 x i8] c"Java.Nio.FileNio.StandardOpenOption, Mono.Android\00", align 1 +@.TypeMapEntry.18827_to = private unnamed_addr constant [33 x i8] c"java/nio/file/StandardOpenOption\00", align 1 +@.TypeMapEntry.18828_from = private unnamed_addr constant [55 x i8] c"Java.Nio.FileNio.StandardWatchEventKinds, Mono.Android\00", align 1 +@.TypeMapEntry.18829_to = private unnamed_addr constant [38 x i8] c"java/nio/file/StandardWatchEventKinds\00", align 1 +@.TypeMapEntry.18830_from = private unnamed_addr constant [35 x i8] c"Java.Nio.FloatBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18831_to = private unnamed_addr constant [21 x i8] c"java/nio/FloatBuffer\00", align 1 +@.TypeMapEntry.18832_from = private unnamed_addr constant [42 x i8] c"Java.Nio.FloatBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18833_from = private unnamed_addr constant [33 x i8] c"Java.Nio.IntBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18834_to = private unnamed_addr constant [19 x i8] c"java/nio/IntBuffer\00", align 1 +@.TypeMapEntry.18835_from = private unnamed_addr constant [40 x i8] c"Java.Nio.IntBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18836_from = private unnamed_addr constant [44 x i8] c"Java.Nio.InvalidMarkException, Mono.Android\00", align 1 +@.TypeMapEntry.18837_to = private unnamed_addr constant [30 x i8] c"java/nio/InvalidMarkException\00", align 1 +@.TypeMapEntry.18838_from = private unnamed_addr constant [34 x i8] c"Java.Nio.LongBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18839_to = private unnamed_addr constant [20 x i8] c"java/nio/LongBuffer\00", align 1 +@.TypeMapEntry.18840_from = private unnamed_addr constant [41 x i8] c"Java.Nio.LongBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18841_from = private unnamed_addr constant [40 x i8] c"Java.Nio.MappedByteBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18842_to = private unnamed_addr constant [26 x i8] c"java/nio/MappedByteBuffer\00", align 1 +@.TypeMapEntry.18843_from = private unnamed_addr constant [47 x i8] c"Java.Nio.MappedByteBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18844_from = private unnamed_addr constant [47 x i8] c"Java.Nio.ReadOnlyBufferException, Mono.Android\00", align 1 +@.TypeMapEntry.18845_to = private unnamed_addr constant [33 x i8] c"java/nio/ReadOnlyBufferException\00", align 1 +@.TypeMapEntry.18846_from = private unnamed_addr constant [35 x i8] c"Java.Nio.ShortBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.18847_to = private unnamed_addr constant [21 x i8] c"java/nio/ShortBuffer\00", align 1 +@.TypeMapEntry.18848_from = private unnamed_addr constant [42 x i8] c"Java.Nio.ShortBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18849_from = private unnamed_addr constant [49 x i8] c"Java.Security.AccessControlContext, Mono.Android\00", align 1 +@.TypeMapEntry.18850_to = private unnamed_addr constant [35 x i8] c"java/security/AccessControlContext\00", align 1 +@.TypeMapEntry.18851_from = private unnamed_addr constant [51 x i8] c"Java.Security.AccessControlException, Mono.Android\00", align 1 +@.TypeMapEntry.18852_to = private unnamed_addr constant [37 x i8] c"java/security/AccessControlException\00", align 1 +@.TypeMapEntry.18853_from = private unnamed_addr constant [45 x i8] c"Java.Security.AccessController, Mono.Android\00", align 1 +@.TypeMapEntry.18854_to = private unnamed_addr constant [31 x i8] c"java/security/AccessController\00", align 1 +@.TypeMapEntry.18855_from = private unnamed_addr constant [53 x i8] c"Java.Security.Acl.AclNotFoundException, Mono.Android\00", align 1 +@.TypeMapEntry.18856_to = private unnamed_addr constant [39 x i8] c"java/security/acl/AclNotFoundException\00", align 1 +@.TypeMapEntry.18857_from = private unnamed_addr constant [37 x i8] c"Java.Security.Acl.IAcl, Mono.Android\00", align 1 +@.TypeMapEntry.18858_to = private unnamed_addr constant [22 x i8] c"java/security/acl/Acl\00", align 1 +@.TypeMapEntry.18859_from = private unnamed_addr constant [42 x i8] c"Java.Security.Acl.IAclEntry, Mono.Android\00", align 1 +@.TypeMapEntry.18860_to = private unnamed_addr constant [27 x i8] c"java/security/acl/AclEntry\00", align 1 +@.TypeMapEntry.18861_from = private unnamed_addr constant [49 x i8] c"Java.Security.Acl.IAclEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18862_from = private unnamed_addr constant [44 x i8] c"Java.Security.Acl.IAclInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18863_from = private unnamed_addr constant [39 x i8] c"Java.Security.Acl.IGroup, Mono.Android\00", align 1 +@.TypeMapEntry.18864_to = private unnamed_addr constant [24 x i8] c"java/security/acl/Group\00", align 1 +@.TypeMapEntry.18865_from = private unnamed_addr constant [46 x i8] c"Java.Security.Acl.IGroupInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18866_from = private unnamed_addr constant [39 x i8] c"Java.Security.Acl.IOwner, Mono.Android\00", align 1 +@.TypeMapEntry.18867_to = private unnamed_addr constant [24 x i8] c"java/security/acl/Owner\00", align 1 +@.TypeMapEntry.18868_from = private unnamed_addr constant [46 x i8] c"Java.Security.Acl.IOwnerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18869_from = private unnamed_addr constant [44 x i8] c"Java.Security.Acl.IPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18870_to = private unnamed_addr constant [29 x i8] c"java/security/acl/Permission\00", align 1 +@.TypeMapEntry.18871_from = private unnamed_addr constant [51 x i8] c"Java.Security.Acl.IPermissionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18872_from = private unnamed_addr constant [51 x i8] c"Java.Security.Acl.LastOwnerException, Mono.Android\00", align 1 +@.TypeMapEntry.18873_to = private unnamed_addr constant [37 x i8] c"java/security/acl/LastOwnerException\00", align 1 +@.TypeMapEntry.18874_from = private unnamed_addr constant [50 x i8] c"Java.Security.Acl.NotOwnerException, Mono.Android\00", align 1 +@.TypeMapEntry.18875_to = private unnamed_addr constant [36 x i8] c"java/security/acl/NotOwnerException\00", align 1 +@.TypeMapEntry.18876_from = private unnamed_addr constant [56 x i8] c"Java.Security.AlgorithmParameterGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.18877_to = private unnamed_addr constant [42 x i8] c"java/security/AlgorithmParameterGenerator\00", align 1 +@.TypeMapEntry.18878_from = private unnamed_addr constant [59 x i8] c"Java.Security.AlgorithmParameterGeneratorSpi, Mono.Android\00", align 1 +@.TypeMapEntry.18879_to = private unnamed_addr constant [45 x i8] c"java/security/AlgorithmParameterGeneratorSpi\00", align 1 +@.TypeMapEntry.18880_from = private unnamed_addr constant [66 x i8] c"Java.Security.AlgorithmParameterGeneratorSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18881_from = private unnamed_addr constant [48 x i8] c"Java.Security.AlgorithmParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18882_to = private unnamed_addr constant [34 x i8] c"java/security/AlgorithmParameters\00", align 1 +@.TypeMapEntry.18883_from = private unnamed_addr constant [51 x i8] c"Java.Security.AlgorithmParametersSpi, Mono.Android\00", align 1 +@.TypeMapEntry.18884_to = private unnamed_addr constant [37 x i8] c"java/security/AlgorithmParametersSpi\00", align 1 +@.TypeMapEntry.18885_from = private unnamed_addr constant [58 x i8] c"Java.Security.AlgorithmParametersSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18886_from = private unnamed_addr constant [42 x i8] c"Java.Security.AllPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18887_to = private unnamed_addr constant [28 x i8] c"java/security/AllPermission\00", align 1 +@.TypeMapEntry.18888_from = private unnamed_addr constant [41 x i8] c"Java.Security.AuthProvider, Mono.Android\00", align 1 +@.TypeMapEntry.18889_to = private unnamed_addr constant [27 x i8] c"java/security/AuthProvider\00", align 1 +@.TypeMapEntry.18890_from = private unnamed_addr constant [48 x i8] c"Java.Security.AuthProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18891_from = private unnamed_addr constant [44 x i8] c"Java.Security.BasicPermission, Mono.Android\00", align 1 +@.TypeMapEntry.18892_to = private unnamed_addr constant [30 x i8] c"java/security/BasicPermission\00", align 1 +@.TypeMapEntry.18893_from = private unnamed_addr constant [51 x i8] c"Java.Security.BasicPermissionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18894_from = private unnamed_addr constant [37 x i8] c"Java.Security.Cert.CRL, Mono.Android\00", align 1 +@.TypeMapEntry.18895_to = private unnamed_addr constant [23 x i8] c"java/security/cert/CRL\00", align 1 +@.TypeMapEntry.18896_from = private unnamed_addr constant [46 x i8] c"Java.Security.Cert.CRLException, Mono.Android\00", align 1 +@.TypeMapEntry.18897_to = private unnamed_addr constant [32 x i8] c"java/security/cert/CRLException\00", align 1 +@.TypeMapEntry.18898_from = private unnamed_addr constant [44 x i8] c"Java.Security.Cert.CRLInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18899_from = private unnamed_addr constant [43 x i8] c"Java.Security.Cert.CRLReason, Mono.Android\00", align 1 +@.TypeMapEntry.18900_to = private unnamed_addr constant [29 x i8] c"java/security/cert/CRLReason\00", align 1 +@.TypeMapEntry.18901_from = private unnamed_addr constant [54 x i8] c"Java.Security.Cert.CertPath+CertPathRep, Mono.Android\00", align 1 +@.TypeMapEntry.18902_to = private unnamed_addr constant [40 x i8] c"java/security/cert/CertPath$CertPathRep\00", align 1 +@.TypeMapEntry.18903_from = private unnamed_addr constant [42 x i8] c"Java.Security.Cert.CertPath, Mono.Android\00", align 1 +@.TypeMapEntry.18904_to = private unnamed_addr constant [28 x i8] c"java/security/cert/CertPath\00", align 1 +@.TypeMapEntry.18905_from = private unnamed_addr constant [49 x i8] c"Java.Security.Cert.CertPathBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.18906_to = private unnamed_addr constant [35 x i8] c"java/security/cert/CertPathBuilder\00", align 1 +@.TypeMapEntry.18907_from = private unnamed_addr constant [58 x i8] c"Java.Security.Cert.CertPathBuilderException, Mono.Android\00", align 1 +@.TypeMapEntry.18908_to = private unnamed_addr constant [44 x i8] c"java/security/cert/CertPathBuilderException\00", align 1 +@.TypeMapEntry.18909_from = private unnamed_addr constant [52 x i8] c"Java.Security.Cert.CertPathBuilderSpi, Mono.Android\00", align 1 +@.TypeMapEntry.18910_to = private unnamed_addr constant [38 x i8] c"java/security/cert/CertPathBuilderSpi\00", align 1 +@.TypeMapEntry.18911_from = private unnamed_addr constant [59 x i8] c"Java.Security.Cert.CertPathBuilderSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18912_from = private unnamed_addr constant [49 x i8] c"Java.Security.Cert.CertPathInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18913_from = private unnamed_addr constant [51 x i8] c"Java.Security.Cert.CertPathValidator, Mono.Android\00", align 1 +@.TypeMapEntry.18914_to = private unnamed_addr constant [37 x i8] c"java/security/cert/CertPathValidator\00", align 1 +@.TypeMapEntry.18915_from = private unnamed_addr constant [72 x i8] c"Java.Security.Cert.CertPathValidatorException+BasicReason, Mono.Android\00", align 1 +@.TypeMapEntry.18916_to = private unnamed_addr constant [58 x i8] c"java/security/cert/CertPathValidatorException$BasicReason\00", align 1 +@.TypeMapEntry.18917_from = private unnamed_addr constant [68 x i8] c"Java.Security.Cert.CertPathValidatorException+IReason, Mono.Android\00", align 1 +@.TypeMapEntry.18918_to = private unnamed_addr constant [53 x i8] c"java/security/cert/CertPathValidatorException$Reason\00", align 1 +@.TypeMapEntry.18919_from = private unnamed_addr constant [75 x i8] c"Java.Security.Cert.CertPathValidatorException+IReasonInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18920_from = private unnamed_addr constant [60 x i8] c"Java.Security.Cert.CertPathValidatorException, Mono.Android\00", align 1 +@.TypeMapEntry.18921_to = private unnamed_addr constant [46 x i8] c"java/security/cert/CertPathValidatorException\00", align 1 +@.TypeMapEntry.18922_from = private unnamed_addr constant [54 x i8] c"Java.Security.Cert.CertPathValidatorSpi, Mono.Android\00", align 1 +@.TypeMapEntry.18923_to = private unnamed_addr constant [40 x i8] c"java/security/cert/CertPathValidatorSpi\00", align 1 +@.TypeMapEntry.18924_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.CertPathValidatorSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18925_from = private unnamed_addr constant [43 x i8] c"Java.Security.Cert.CertStore, Mono.Android\00", align 1 +@.TypeMapEntry.18926_to = private unnamed_addr constant [29 x i8] c"java/security/cert/CertStore\00", align 1 +@.TypeMapEntry.18927_from = private unnamed_addr constant [52 x i8] c"Java.Security.Cert.CertStoreException, Mono.Android\00", align 1 +@.TypeMapEntry.18928_to = private unnamed_addr constant [38 x i8] c"java/security/cert/CertStoreException\00", align 1 +@.TypeMapEntry.18929_from = private unnamed_addr constant [46 x i8] c"Java.Security.Cert.CertStoreSpi, Mono.Android\00", align 1 +@.TypeMapEntry.18930_to = private unnamed_addr constant [32 x i8] c"java/security/cert/CertStoreSpi\00", align 1 +@.TypeMapEntry.18931_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.CertStoreSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18932_from = private unnamed_addr constant [60 x i8] c"Java.Security.Cert.Certificate+CertificateRep, Mono.Android\00", align 1 +@.TypeMapEntry.18933_to = private unnamed_addr constant [46 x i8] c"java/security/cert/Certificate$CertificateRep\00", align 1 +@.TypeMapEntry.18934_from = private unnamed_addr constant [45 x i8] c"Java.Security.Cert.Certificate, Mono.Android\00", align 1 +@.TypeMapEntry.18935_to = private unnamed_addr constant [31 x i8] c"java/security/cert/Certificate\00", align 1 +@.TypeMapEntry.18936_from = private unnamed_addr constant [62 x i8] c"Java.Security.Cert.CertificateEncodingException, Mono.Android\00", align 1 +@.TypeMapEntry.18937_to = private unnamed_addr constant [48 x i8] c"java/security/cert/CertificateEncodingException\00", align 1 +@.TypeMapEntry.18938_from = private unnamed_addr constant [54 x i8] c"Java.Security.Cert.CertificateException, Mono.Android\00", align 1 +@.TypeMapEntry.18939_to = private unnamed_addr constant [40 x i8] c"java/security/cert/CertificateException\00", align 1 +@.TypeMapEntry.18940_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.CertificateExpiredException, Mono.Android\00", align 1 +@.TypeMapEntry.18941_to = private unnamed_addr constant [47 x i8] c"java/security/cert/CertificateExpiredException\00", align 1 +@.TypeMapEntry.18942_from = private unnamed_addr constant [52 x i8] c"Java.Security.Cert.CertificateFactory, Mono.Android\00", align 1 +@.TypeMapEntry.18943_to = private unnamed_addr constant [38 x i8] c"java/security/cert/CertificateFactory\00", align 1 +@.TypeMapEntry.18944_from = private unnamed_addr constant [55 x i8] c"Java.Security.Cert.CertificateFactorySpi, Mono.Android\00", align 1 +@.TypeMapEntry.18945_to = private unnamed_addr constant [41 x i8] c"java/security/cert/CertificateFactorySpi\00", align 1 +@.TypeMapEntry.18946_from = private unnamed_addr constant [62 x i8] c"Java.Security.Cert.CertificateFactorySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18947_from = private unnamed_addr constant [52 x i8] c"Java.Security.Cert.CertificateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18948_from = private unnamed_addr constant [65 x i8] c"Java.Security.Cert.CertificateNotYetValidException, Mono.Android\00", align 1 +@.TypeMapEntry.18949_to = private unnamed_addr constant [51 x i8] c"java/security/cert/CertificateNotYetValidException\00", align 1 +@.TypeMapEntry.18950_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.CertificateParsingException, Mono.Android\00", align 1 +@.TypeMapEntry.18951_to = private unnamed_addr constant [47 x i8] c"java/security/cert/CertificateParsingException\00", align 1 +@.TypeMapEntry.18952_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.CertificateRevokedException, Mono.Android\00", align 1 +@.TypeMapEntry.18953_to = private unnamed_addr constant [47 x i8] c"java/security/cert/CertificateRevokedException\00", align 1 +@.TypeMapEntry.18954_from = private unnamed_addr constant [63 x i8] c"Java.Security.Cert.CollectionCertStoreParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18955_to = private unnamed_addr constant [49 x i8] c"java/security/cert/CollectionCertStoreParameters\00", align 1 +@.TypeMapEntry.18956_from = private unnamed_addr constant [46 x i8] c"Java.Security.Cert.ICRLSelector, Mono.Android\00", align 1 +@.TypeMapEntry.18957_to = private unnamed_addr constant [31 x i8] c"java/security/cert/CRLSelector\00", align 1 +@.TypeMapEntry.18958_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.ICRLSelectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18959_from = private unnamed_addr constant [56 x i8] c"Java.Security.Cert.ICertPathBuilderResult, Mono.Android\00", align 1 +@.TypeMapEntry.18960_to = private unnamed_addr constant [41 x i8] c"java/security/cert/CertPathBuilderResult\00", align 1 +@.TypeMapEntry.18961_from = private unnamed_addr constant [63 x i8] c"Java.Security.Cert.ICertPathBuilderResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18962_from = private unnamed_addr constant [50 x i8] c"Java.Security.Cert.ICertPathChecker, Mono.Android\00", align 1 +@.TypeMapEntry.18963_to = private unnamed_addr constant [35 x i8] c"java/security/cert/CertPathChecker\00", align 1 +@.TypeMapEntry.18964_from = private unnamed_addr constant [57 x i8] c"Java.Security.Cert.ICertPathCheckerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18965_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.ICertPathParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18966_to = private unnamed_addr constant [38 x i8] c"java/security/cert/CertPathParameters\00", align 1 +@.TypeMapEntry.18967_from = private unnamed_addr constant [60 x i8] c"Java.Security.Cert.ICertPathParametersInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18968_from = private unnamed_addr constant [58 x i8] c"Java.Security.Cert.ICertPathValidatorResult, Mono.Android\00", align 1 +@.TypeMapEntry.18969_to = private unnamed_addr constant [43 x i8] c"java/security/cert/CertPathValidatorResult\00", align 1 +@.TypeMapEntry.18970_from = private unnamed_addr constant [65 x i8] c"Java.Security.Cert.ICertPathValidatorResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18971_from = private unnamed_addr constant [47 x i8] c"Java.Security.Cert.ICertSelector, Mono.Android\00", align 1 +@.TypeMapEntry.18972_to = private unnamed_addr constant [32 x i8] c"java/security/cert/CertSelector\00", align 1 +@.TypeMapEntry.18973_from = private unnamed_addr constant [54 x i8] c"Java.Security.Cert.ICertSelectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18974_from = private unnamed_addr constant [54 x i8] c"Java.Security.Cert.ICertStoreParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18975_to = private unnamed_addr constant [39 x i8] c"java/security/cert/CertStoreParameters\00", align 1 +@.TypeMapEntry.18976_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.ICertStoreParametersInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18977_from = private unnamed_addr constant [44 x i8] c"Java.Security.Cert.IExtension, Mono.Android\00", align 1 +@.TypeMapEntry.18978_to = private unnamed_addr constant [29 x i8] c"java/security/cert/Extension\00", align 1 +@.TypeMapEntry.18979_from = private unnamed_addr constant [51 x i8] c"Java.Security.Cert.IExtensionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18980_from = private unnamed_addr constant [45 x i8] c"Java.Security.Cert.IPolicyNode, Mono.Android\00", align 1 +@.TypeMapEntry.18981_to = private unnamed_addr constant [30 x i8] c"java/security/cert/PolicyNode\00", align 1 +@.TypeMapEntry.18982_from = private unnamed_addr constant [52 x i8] c"Java.Security.Cert.IPolicyNodeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18983_from = private unnamed_addr constant [48 x i8] c"Java.Security.Cert.IX509Extension, Mono.Android\00", align 1 +@.TypeMapEntry.18984_to = private unnamed_addr constant [33 x i8] c"java/security/cert/X509Extension\00", align 1 +@.TypeMapEntry.18985_from = private unnamed_addr constant [55 x i8] c"Java.Security.Cert.IX509ExtensionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18986_from = private unnamed_addr constant [57 x i8] c"Java.Security.Cert.LDAPCertStoreParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18987_to = private unnamed_addr constant [43 x i8] c"java/security/cert/LDAPCertStoreParameters\00", align 1 +@.TypeMapEntry.18988_from = private unnamed_addr constant [55 x i8] c"Java.Security.Cert.PKIXBuilderParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18989_to = private unnamed_addr constant [41 x i8] c"java/security/cert/PKIXBuilderParameters\00", align 1 +@.TypeMapEntry.18990_from = private unnamed_addr constant [59 x i8] c"Java.Security.Cert.PKIXCertPathBuilderResult, Mono.Android\00", align 1 +@.TypeMapEntry.18991_to = private unnamed_addr constant [45 x i8] c"java/security/cert/PKIXCertPathBuilderResult\00", align 1 +@.TypeMapEntry.18992_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.PKIXCertPathChecker, Mono.Android\00", align 1 +@.TypeMapEntry.18993_to = private unnamed_addr constant [39 x i8] c"java/security/cert/PKIXCertPathChecker\00", align 1 +@.TypeMapEntry.18994_from = private unnamed_addr constant [60 x i8] c"Java.Security.Cert.PKIXCertPathCheckerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.18995_from = private unnamed_addr constant [61 x i8] c"Java.Security.Cert.PKIXCertPathValidatorResult, Mono.Android\00", align 1 +@.TypeMapEntry.18996_to = private unnamed_addr constant [47 x i8] c"java/security/cert/PKIXCertPathValidatorResult\00", align 1 +@.TypeMapEntry.18997_from = private unnamed_addr constant [48 x i8] c"Java.Security.Cert.PKIXParameters, Mono.Android\00", align 1 +@.TypeMapEntry.18998_to = private unnamed_addr constant [34 x i8] c"java/security/cert/PKIXParameters\00", align 1 +@.TypeMapEntry.18999_from = private unnamed_addr constant [44 x i8] c"Java.Security.Cert.PKIXReason, Mono.Android\00", align 1 +@.TypeMapEntry.19000_to = private unnamed_addr constant [30 x i8] c"java/security/cert/PKIXReason\00", align 1 +@.TypeMapEntry.19001_from = private unnamed_addr constant [62 x i8] c"Java.Security.Cert.PKIXRevocationChecker+Option, Mono.Android\00", align 1 +@.TypeMapEntry.19002_to = private unnamed_addr constant [48 x i8] c"java/security/cert/PKIXRevocationChecker$Option\00", align 1 +@.TypeMapEntry.19003_from = private unnamed_addr constant [55 x i8] c"Java.Security.Cert.PKIXRevocationChecker, Mono.Android\00", align 1 +@.TypeMapEntry.19004_to = private unnamed_addr constant [41 x i8] c"java/security/cert/PKIXRevocationChecker\00", align 1 +@.TypeMapEntry.19005_from = private unnamed_addr constant [62 x i8] c"Java.Security.Cert.PKIXRevocationCheckerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19006_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.PolicyQualifierInfo, Mono.Android\00", align 1 +@.TypeMapEntry.19007_to = private unnamed_addr constant [39 x i8] c"java/security/cert/PolicyQualifierInfo\00", align 1 +@.TypeMapEntry.19008_from = private unnamed_addr constant [45 x i8] c"Java.Security.Cert.TrustAnchor, Mono.Android\00", align 1 +@.TypeMapEntry.19009_to = private unnamed_addr constant [31 x i8] c"java/security/cert/TrustAnchor\00", align 1 +@.TypeMapEntry.19010_from = private unnamed_addr constant [56 x i8] c"Java.Security.Cert.URICertStoreParameters, Mono.Android\00", align 1 +@.TypeMapEntry.19011_to = private unnamed_addr constant [42 x i8] c"java/security/cert/URICertStoreParameters\00", align 1 +@.TypeMapEntry.19012_from = private unnamed_addr constant [41 x i8] c"Java.Security.Cert.X509CRL, Mono.Android\00", align 1 +@.TypeMapEntry.19013_to = private unnamed_addr constant [27 x i8] c"java/security/cert/X509CRL\00", align 1 +@.TypeMapEntry.19014_from = private unnamed_addr constant [46 x i8] c"Java.Security.Cert.X509CRLEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19015_to = private unnamed_addr constant [32 x i8] c"java/security/cert/X509CRLEntry\00", align 1 +@.TypeMapEntry.19016_from = private unnamed_addr constant [53 x i8] c"Java.Security.Cert.X509CRLEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19017_from = private unnamed_addr constant [48 x i8] c"Java.Security.Cert.X509CRLInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19018_from = private unnamed_addr constant [49 x i8] c"Java.Security.Cert.X509CRLSelector, Mono.Android\00", align 1 +@.TypeMapEntry.19019_to = private unnamed_addr constant [35 x i8] c"java/security/cert/X509CRLSelector\00", align 1 +@.TypeMapEntry.19020_from = private unnamed_addr constant [50 x i8] c"Java.Security.Cert.X509CertSelector, Mono.Android\00", align 1 +@.TypeMapEntry.19021_to = private unnamed_addr constant [36 x i8] c"java/security/cert/X509CertSelector\00", align 1 +@.TypeMapEntry.19022_from = private unnamed_addr constant [49 x i8] c"Java.Security.Cert.X509Certificate, Mono.Android\00", align 1 +@.TypeMapEntry.19023_to = private unnamed_addr constant [35 x i8] c"java/security/cert/X509Certificate\00", align 1 +@.TypeMapEntry.19024_from = private unnamed_addr constant [56 x i8] c"Java.Security.Cert.X509CertificateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19025_from = private unnamed_addr constant [39 x i8] c"Java.Security.CodeSigner, Mono.Android\00", align 1 +@.TypeMapEntry.19026_to = private unnamed_addr constant [25 x i8] c"java/security/CodeSigner\00", align 1 +@.TypeMapEntry.19027_from = private unnamed_addr constant [39 x i8] c"Java.Security.CodeSource, Mono.Android\00", align 1 +@.TypeMapEntry.19028_to = private unnamed_addr constant [25 x i8] c"java/security/CodeSource\00", align 1 +@.TypeMapEntry.19029_from = private unnamed_addr constant [44 x i8] c"Java.Security.CryptoPrimitive, Mono.Android\00", align 1 +@.TypeMapEntry.19030_to = private unnamed_addr constant [30 x i8] c"java/security/CryptoPrimitive\00", align 1 +@.TypeMapEntry.19031_from = private unnamed_addr constant [44 x i8] c"Java.Security.DigestException, Mono.Android\00", align 1 +@.TypeMapEntry.19032_to = private unnamed_addr constant [30 x i8] c"java/security/DigestException\00", align 1 +@.TypeMapEntry.19033_from = private unnamed_addr constant [46 x i8] c"Java.Security.DigestInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.19034_to = private unnamed_addr constant [32 x i8] c"java/security/DigestInputStream\00", align 1 +@.TypeMapEntry.19035_from = private unnamed_addr constant [47 x i8] c"Java.Security.DigestOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.19036_to = private unnamed_addr constant [33 x i8] c"java/security/DigestOutputStream\00", align 1 +@.TypeMapEntry.19037_from = private unnamed_addr constant [53 x i8] c"Java.Security.DomainLoadStoreParameter, Mono.Android\00", align 1 +@.TypeMapEntry.19038_to = private unnamed_addr constant [39 x i8] c"java/security/DomainLoadStoreParameter\00", align 1 +@.TypeMapEntry.19039_from = private unnamed_addr constant [54 x i8] c"Java.Security.DrbgParameters+Capability, Mono.Android\00", align 1 +@.TypeMapEntry.19040_to = private unnamed_addr constant [40 x i8] c"java/security/DrbgParameters$Capability\00", align 1 +@.TypeMapEntry.19041_from = private unnamed_addr constant [57 x i8] c"Java.Security.DrbgParameters+Instantiation, Mono.Android\00", align 1 +@.TypeMapEntry.19042_to = private unnamed_addr constant [43 x i8] c"java/security/DrbgParameters$Instantiation\00", align 1 +@.TypeMapEntry.19043_from = private unnamed_addr constant [53 x i8] c"Java.Security.DrbgParameters+NextBytes, Mono.Android\00", align 1 +@.TypeMapEntry.19044_to = private unnamed_addr constant [39 x i8] c"java/security/DrbgParameters$NextBytes\00", align 1 +@.TypeMapEntry.19045_from = private unnamed_addr constant [50 x i8] c"Java.Security.DrbgParameters+Reseed, Mono.Android\00", align 1 +@.TypeMapEntry.19046_to = private unnamed_addr constant [36 x i8] c"java/security/DrbgParameters$Reseed\00", align 1 +@.TypeMapEntry.19047_from = private unnamed_addr constant [43 x i8] c"Java.Security.DrbgParameters, Mono.Android\00", align 1 +@.TypeMapEntry.19048_to = private unnamed_addr constant [29 x i8] c"java/security/DrbgParameters\00", align 1 +@.TypeMapEntry.19049_from = private unnamed_addr constant [53 x i8] c"Java.Security.GeneralSecurityException, Mono.Android\00", align 1 +@.TypeMapEntry.19050_to = private unnamed_addr constant [39 x i8] c"java/security/GeneralSecurityException\00", align 1 +@.TypeMapEntry.19051_from = private unnamed_addr constant [42 x i8] c"Java.Security.GuardedObject, Mono.Android\00", align 1 +@.TypeMapEntry.19052_to = private unnamed_addr constant [28 x i8] c"java/security/GuardedObject\00", align 1 +@.TypeMapEntry.19053_from = private unnamed_addr constant [50 x i8] c"Java.Security.IAlgorithmConstraints, Mono.Android\00", align 1 +@.TypeMapEntry.19054_to = private unnamed_addr constant [35 x i8] c"java/security/AlgorithmConstraints\00", align 1 +@.TypeMapEntry.19055_from = private unnamed_addr constant [57 x i8] c"Java.Security.IAlgorithmConstraintsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19056_from = private unnamed_addr constant [41 x i8] c"Java.Security.ICertificate, Mono.Android\00", align 1 +@.TypeMapEntry.19057_to = private unnamed_addr constant [26 x i8] c"java/security/Certificate\00", align 1 +@.TypeMapEntry.19058_from = private unnamed_addr constant [48 x i8] c"Java.Security.ICertificateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19059_from = private unnamed_addr constant [44 x i8] c"Java.Security.IDomainCombiner, Mono.Android\00", align 1 +@.TypeMapEntry.19060_to = private unnamed_addr constant [29 x i8] c"java/security/DomainCombiner\00", align 1 +@.TypeMapEntry.19061_from = private unnamed_addr constant [51 x i8] c"Java.Security.IDomainCombinerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19062_from = private unnamed_addr constant [35 x i8] c"Java.Security.IGuard, Mono.Android\00", align 1 +@.TypeMapEntry.19063_to = private unnamed_addr constant [20 x i8] c"java/security/Guard\00", align 1 +@.TypeMapEntry.19064_from = private unnamed_addr constant [42 x i8] c"Java.Security.IGuardInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19065_from = private unnamed_addr constant [33 x i8] c"Java.Security.IKey, Mono.Android\00", align 1 +@.TypeMapEntry.19066_to = private unnamed_addr constant [18 x i8] c"java/security/Key\00", align 1 +@.TypeMapEntry.19067_from = private unnamed_addr constant [40 x i8] c"Java.Security.IKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19068_from = private unnamed_addr constant [39 x i8] c"Java.Security.IPrincipal, Mono.Android\00", align 1 +@.TypeMapEntry.19069_to = private unnamed_addr constant [24 x i8] c"java/security/Principal\00", align 1 +@.TypeMapEntry.19070_from = private unnamed_addr constant [46 x i8] c"Java.Security.IPrincipalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19071_from = private unnamed_addr constant [40 x i8] c"Java.Security.IPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19072_to = private unnamed_addr constant [25 x i8] c"java/security/PrivateKey\00", align 1 +@.TypeMapEntry.19073_from = private unnamed_addr constant [47 x i8] c"Java.Security.IPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19074_from = private unnamed_addr constant [46 x i8] c"Java.Security.IPrivilegedAction, Mono.Android\00", align 1 +@.TypeMapEntry.19075_to = private unnamed_addr constant [31 x i8] c"java/security/PrivilegedAction\00", align 1 +@.TypeMapEntry.19076_from = private unnamed_addr constant [53 x i8] c"Java.Security.IPrivilegedActionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19077_from = private unnamed_addr constant [55 x i8] c"Java.Security.IPrivilegedExceptionAction, Mono.Android\00", align 1 +@.TypeMapEntry.19078_to = private unnamed_addr constant [40 x i8] c"java/security/PrivilegedExceptionAction\00", align 1 +@.TypeMapEntry.19079_from = private unnamed_addr constant [62 x i8] c"Java.Security.IPrivilegedExceptionActionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19080_from = private unnamed_addr constant [39 x i8] c"Java.Security.IPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19081_to = private unnamed_addr constant [24 x i8] c"java/security/PublicKey\00", align 1 +@.TypeMapEntry.19082_from = private unnamed_addr constant [46 x i8] c"Java.Security.IPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19083_from = private unnamed_addr constant [52 x i8] c"Java.Security.ISecureRandomParameters, Mono.Android\00", align 1 +@.TypeMapEntry.19084_to = private unnamed_addr constant [37 x i8] c"java/security/SecureRandomParameters\00", align 1 +@.TypeMapEntry.19085_from = private unnamed_addr constant [59 x i8] c"Java.Security.ISecureRandomParametersInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19086_from = private unnamed_addr constant [37 x i8] c"Java.Security.Identity, Mono.Android\00", align 1 +@.TypeMapEntry.19087_to = private unnamed_addr constant [23 x i8] c"java/security/Identity\00", align 1 +@.TypeMapEntry.19088_from = private unnamed_addr constant [44 x i8] c"Java.Security.IdentityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19089_from = private unnamed_addr constant [42 x i8] c"Java.Security.IdentityScope, Mono.Android\00", align 1 +@.TypeMapEntry.19090_to = private unnamed_addr constant [28 x i8] c"java/security/IdentityScope\00", align 1 +@.TypeMapEntry.19091_from = private unnamed_addr constant [49 x i8] c"Java.Security.IdentityScopeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19092_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.DSAPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19093_to = private unnamed_addr constant [53 x i8] c"mono/internal/java/security/interfaces/DSAPrivateKey\00", align 1 +@.TypeMapEntry.19094_from = private unnamed_addr constant [52 x i8] c"Java.Security.Interfaces.DSAPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19095_to = private unnamed_addr constant [52 x i8] c"mono/internal/java/security/interfaces/DSAPublicKey\00", align 1 +@.TypeMapEntry.19096_from = private unnamed_addr constant [52 x i8] c"Java.Security.Interfaces.ECPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19097_to = private unnamed_addr constant [52 x i8] c"mono/internal/java/security/interfaces/ECPrivateKey\00", align 1 +@.TypeMapEntry.19098_from = private unnamed_addr constant [51 x i8] c"Java.Security.Interfaces.ECPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19099_to = private unnamed_addr constant [51 x i8] c"mono/internal/java/security/interfaces/ECPublicKey\00", align 1 +@.TypeMapEntry.19100_from = private unnamed_addr constant [47 x i8] c"Java.Security.Interfaces.IDSAKey, Mono.Android\00", align 1 +@.TypeMapEntry.19101_to = private unnamed_addr constant [32 x i8] c"java/security/interfaces/DSAKey\00", align 1 +@.TypeMapEntry.19102_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IDSAKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19103_from = private unnamed_addr constant [60 x i8] c"Java.Security.Interfaces.IDSAKeyPairGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.19104_to = private unnamed_addr constant [45 x i8] c"java/security/interfaces/DSAKeyPairGenerator\00", align 1 +@.TypeMapEntry.19105_from = private unnamed_addr constant [67 x i8] c"Java.Security.Interfaces.IDSAKeyPairGeneratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19106_from = private unnamed_addr constant [50 x i8] c"Java.Security.Interfaces.IDSAParams, Mono.Android\00", align 1 +@.TypeMapEntry.19107_to = private unnamed_addr constant [35 x i8] c"java/security/interfaces/DSAParams\00", align 1 +@.TypeMapEntry.19108_from = private unnamed_addr constant [57 x i8] c"Java.Security.Interfaces.IDSAParamsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19109_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IDSAPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19110_to = private unnamed_addr constant [39 x i8] c"java/security/interfaces/DSAPrivateKey\00", align 1 +@.TypeMapEntry.19111_from = private unnamed_addr constant [61 x i8] c"Java.Security.Interfaces.IDSAPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19112_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.IDSAPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19113_to = private unnamed_addr constant [38 x i8] c"java/security/interfaces/DSAPublicKey\00", align 1 +@.TypeMapEntry.19114_from = private unnamed_addr constant [60 x i8] c"Java.Security.Interfaces.IDSAPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19115_from = private unnamed_addr constant [46 x i8] c"Java.Security.Interfaces.IECKey, Mono.Android\00", align 1 +@.TypeMapEntry.19116_to = private unnamed_addr constant [31 x i8] c"java/security/interfaces/ECKey\00", align 1 +@.TypeMapEntry.19117_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.IECKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19118_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.IECPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19119_to = private unnamed_addr constant [38 x i8] c"java/security/interfaces/ECPrivateKey\00", align 1 +@.TypeMapEntry.19120_from = private unnamed_addr constant [60 x i8] c"Java.Security.Interfaces.IECPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19121_from = private unnamed_addr constant [52 x i8] c"Java.Security.Interfaces.IECPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19122_to = private unnamed_addr constant [37 x i8] c"java/security/interfaces/ECPublicKey\00", align 1 +@.TypeMapEntry.19123_from = private unnamed_addr constant [59 x i8] c"Java.Security.Interfaces.IECPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19124_from = private unnamed_addr constant [48 x i8] c"Java.Security.Interfaces.IEdECKey, Mono.Android\00", align 1 +@.TypeMapEntry.19125_to = private unnamed_addr constant [33 x i8] c"java/security/interfaces/EdECKey\00", align 1 +@.TypeMapEntry.19126_from = private unnamed_addr constant [55 x i8] c"Java.Security.Interfaces.IEdECKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19127_from = private unnamed_addr constant [55 x i8] c"Java.Security.Interfaces.IEdECPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19128_to = private unnamed_addr constant [40 x i8] c"java/security/interfaces/EdECPrivateKey\00", align 1 +@.TypeMapEntry.19129_from = private unnamed_addr constant [62 x i8] c"Java.Security.Interfaces.IEdECPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19130_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IEdECPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19131_to = private unnamed_addr constant [39 x i8] c"java/security/interfaces/EdECPublicKey\00", align 1 +@.TypeMapEntry.19132_from = private unnamed_addr constant [61 x i8] c"Java.Security.Interfaces.IEdECPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19133_from = private unnamed_addr constant [47 x i8] c"Java.Security.Interfaces.IRSAKey, Mono.Android\00", align 1 +@.TypeMapEntry.19134_to = private unnamed_addr constant [32 x i8] c"java/security/interfaces/RSAKey\00", align 1 +@.TypeMapEntry.19135_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IRSAKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19136_from = private unnamed_addr constant [67 x i8] c"Java.Security.Interfaces.IRSAMultiPrimePrivateCrtKey, Mono.Android\00", align 1 +@.TypeMapEntry.19137_to = private unnamed_addr constant [52 x i8] c"java/security/interfaces/RSAMultiPrimePrivateCrtKey\00", align 1 +@.TypeMapEntry.19138_from = private unnamed_addr constant [74 x i8] c"Java.Security.Interfaces.IRSAMultiPrimePrivateCrtKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19139_from = private unnamed_addr constant [57 x i8] c"Java.Security.Interfaces.IRSAPrivateCrtKey, Mono.Android\00", align 1 +@.TypeMapEntry.19140_to = private unnamed_addr constant [42 x i8] c"java/security/interfaces/RSAPrivateCrtKey\00", align 1 +@.TypeMapEntry.19141_from = private unnamed_addr constant [64 x i8] c"Java.Security.Interfaces.IRSAPrivateCrtKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19142_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IRSAPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19143_to = private unnamed_addr constant [39 x i8] c"java/security/interfaces/RSAPrivateKey\00", align 1 +@.TypeMapEntry.19144_from = private unnamed_addr constant [61 x i8] c"Java.Security.Interfaces.IRSAPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19145_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.IRSAPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19146_to = private unnamed_addr constant [38 x i8] c"java/security/interfaces/RSAPublicKey\00", align 1 +@.TypeMapEntry.19147_from = private unnamed_addr constant [60 x i8] c"Java.Security.Interfaces.IRSAPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19148_from = private unnamed_addr constant [47 x i8] c"Java.Security.Interfaces.IXECKey, Mono.Android\00", align 1 +@.TypeMapEntry.19149_to = private unnamed_addr constant [32 x i8] c"java/security/interfaces/XECKey\00", align 1 +@.TypeMapEntry.19150_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IXECKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19151_from = private unnamed_addr constant [54 x i8] c"Java.Security.Interfaces.IXECPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19152_to = private unnamed_addr constant [39 x i8] c"java/security/interfaces/XECPrivateKey\00", align 1 +@.TypeMapEntry.19153_from = private unnamed_addr constant [61 x i8] c"Java.Security.Interfaces.IXECPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19154_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.IXECPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19155_to = private unnamed_addr constant [38 x i8] c"java/security/interfaces/XECPublicKey\00", align 1 +@.TypeMapEntry.19156_from = private unnamed_addr constant [60 x i8] c"Java.Security.Interfaces.IXECPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19157_from = private unnamed_addr constant [66 x i8] c"Java.Security.Interfaces.RSAMultiPrimePrivateCrtKey, Mono.Android\00", align 1 +@.TypeMapEntry.19158_to = private unnamed_addr constant [66 x i8] c"mono/internal/java/security/interfaces/RSAMultiPrimePrivateCrtKey\00", align 1 +@.TypeMapEntry.19159_from = private unnamed_addr constant [56 x i8] c"Java.Security.Interfaces.RSAPrivateCrtKey, Mono.Android\00", align 1 +@.TypeMapEntry.19160_to = private unnamed_addr constant [56 x i8] c"mono/internal/java/security/interfaces/RSAPrivateCrtKey\00", align 1 +@.TypeMapEntry.19161_from = private unnamed_addr constant [53 x i8] c"Java.Security.Interfaces.RSAPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19162_to = private unnamed_addr constant [53 x i8] c"mono/internal/java/security/interfaces/RSAPrivateKey\00", align 1 +@.TypeMapEntry.19163_from = private unnamed_addr constant [52 x i8] c"Java.Security.Interfaces.RSAPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19164_to = private unnamed_addr constant [52 x i8] c"mono/internal/java/security/interfaces/RSAPublicKey\00", align 1 +@.TypeMapEntry.19165_from = private unnamed_addr constant [63 x i8] c"Java.Security.InvalidAlgorithmParameterException, Mono.Android\00", align 1 +@.TypeMapEntry.19166_to = private unnamed_addr constant [49 x i8] c"java/security/InvalidAlgorithmParameterException\00", align 1 +@.TypeMapEntry.19167_from = private unnamed_addr constant [48 x i8] c"Java.Security.InvalidKeyException, Mono.Android\00", align 1 +@.TypeMapEntry.19168_to = private unnamed_addr constant [34 x i8] c"java/security/InvalidKeyException\00", align 1 +@.TypeMapEntry.19169_from = private unnamed_addr constant [54 x i8] c"Java.Security.InvalidParameterException, Mono.Android\00", align 1 +@.TypeMapEntry.19170_to = private unnamed_addr constant [40 x i8] c"java/security/InvalidParameterException\00", align 1 +@.TypeMapEntry.19171_from = private unnamed_addr constant [32 x i8] c"Java.Security.Key, Mono.Android\00", align 1 +@.TypeMapEntry.19172_to = private unnamed_addr constant [32 x i8] c"mono/internal/java/security/Key\00", align 1 +@.TypeMapEntry.19173_from = private unnamed_addr constant [41 x i8] c"Java.Security.KeyException, Mono.Android\00", align 1 +@.TypeMapEntry.19174_to = private unnamed_addr constant [27 x i8] c"java/security/KeyException\00", align 1 +@.TypeMapEntry.19175_from = private unnamed_addr constant [39 x i8] c"Java.Security.KeyFactory, Mono.Android\00", align 1 +@.TypeMapEntry.19176_to = private unnamed_addr constant [25 x i8] c"java/security/KeyFactory\00", align 1 +@.TypeMapEntry.19177_from = private unnamed_addr constant [42 x i8] c"Java.Security.KeyFactorySpi, Mono.Android\00", align 1 +@.TypeMapEntry.19178_to = private unnamed_addr constant [28 x i8] c"java/security/KeyFactorySpi\00", align 1 +@.TypeMapEntry.19179_from = private unnamed_addr constant [49 x i8] c"Java.Security.KeyFactorySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19180_from = private unnamed_addr constant [51 x i8] c"Java.Security.KeyManagementException, Mono.Android\00", align 1 +@.TypeMapEntry.19181_to = private unnamed_addr constant [37 x i8] c"java/security/KeyManagementException\00", align 1 +@.TypeMapEntry.19182_from = private unnamed_addr constant [36 x i8] c"Java.Security.KeyPair, Mono.Android\00", align 1 +@.TypeMapEntry.19183_to = private unnamed_addr constant [22 x i8] c"java/security/KeyPair\00", align 1 +@.TypeMapEntry.19184_from = private unnamed_addr constant [45 x i8] c"Java.Security.KeyPairGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.19185_to = private unnamed_addr constant [31 x i8] c"java/security/KeyPairGenerator\00", align 1 +@.TypeMapEntry.19186_from = private unnamed_addr constant [52 x i8] c"Java.Security.KeyPairGeneratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19187_from = private unnamed_addr constant [48 x i8] c"Java.Security.KeyPairGeneratorSpi, Mono.Android\00", align 1 +@.TypeMapEntry.19188_to = private unnamed_addr constant [34 x i8] c"java/security/KeyPairGeneratorSpi\00", align 1 +@.TypeMapEntry.19189_from = private unnamed_addr constant [55 x i8] c"Java.Security.KeyPairGeneratorSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19190_from = private unnamed_addr constant [40 x i8] c"Java.Security.KeyRep+Type, Mono.Android\00", align 1 +@.TypeMapEntry.19191_to = private unnamed_addr constant [26 x i8] c"java/security/KeyRep$Type\00", align 1 +@.TypeMapEntry.19192_from = private unnamed_addr constant [35 x i8] c"Java.Security.KeyRep, Mono.Android\00", align 1 +@.TypeMapEntry.19193_to = private unnamed_addr constant [21 x i8] c"java/security/KeyRep\00", align 1 +@.TypeMapEntry.19194_from = private unnamed_addr constant [45 x i8] c"Java.Security.KeyStore+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.19195_to = private unnamed_addr constant [31 x i8] c"java/security/KeyStore$Builder\00", align 1 +@.TypeMapEntry.19196_from = private unnamed_addr constant [52 x i8] c"Java.Security.KeyStore+BuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19197_from = private unnamed_addr constant [63 x i8] c"Java.Security.KeyStore+CallbackHandlerProtection, Mono.Android\00", align 1 +@.TypeMapEntry.19198_to = private unnamed_addr constant [49 x i8] c"java/security/KeyStore$CallbackHandlerProtection\00", align 1 +@.TypeMapEntry.19199_from = private unnamed_addr constant [44 x i8] c"Java.Security.KeyStore+IEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19200_to = private unnamed_addr constant [29 x i8] c"java/security/KeyStore$Entry\00", align 1 +@.TypeMapEntry.19201_from = private unnamed_addr constant [53 x i8] c"Java.Security.KeyStore+IEntryAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.19202_to = private unnamed_addr constant [39 x i8] c"java/security/KeyStore$Entry$Attribute\00", align 1 +@.TypeMapEntry.19203_from = private unnamed_addr constant [60 x i8] c"Java.Security.KeyStore+IEntryAttributeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19204_from = private unnamed_addr constant [51 x i8] c"Java.Security.KeyStore+IEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19205_from = private unnamed_addr constant [57 x i8] c"Java.Security.KeyStore+ILoadStoreParameter, Mono.Android\00", align 1 +@.TypeMapEntry.19206_to = private unnamed_addr constant [42 x i8] c"java/security/KeyStore$LoadStoreParameter\00", align 1 +@.TypeMapEntry.19207_from = private unnamed_addr constant [64 x i8] c"Java.Security.KeyStore+ILoadStoreParameterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19208_from = private unnamed_addr constant [58 x i8] c"Java.Security.KeyStore+IProtectionParameter, Mono.Android\00", align 1 +@.TypeMapEntry.19209_to = private unnamed_addr constant [43 x i8] c"java/security/KeyStore$ProtectionParameter\00", align 1 +@.TypeMapEntry.19210_from = private unnamed_addr constant [65 x i8] c"Java.Security.KeyStore+IProtectionParameterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19211_from = private unnamed_addr constant [56 x i8] c"Java.Security.KeyStore+PasswordProtection, Mono.Android\00", align 1 +@.TypeMapEntry.19212_to = private unnamed_addr constant [42 x i8] c"java/security/KeyStore$PasswordProtection\00", align 1 +@.TypeMapEntry.19213_from = private unnamed_addr constant [53 x i8] c"Java.Security.KeyStore+PrivateKeyEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19214_to = private unnamed_addr constant [39 x i8] c"java/security/KeyStore$PrivateKeyEntry\00", align 1 +@.TypeMapEntry.19215_from = private unnamed_addr constant [52 x i8] c"Java.Security.KeyStore+SecretKeyEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19216_to = private unnamed_addr constant [38 x i8] c"java/security/KeyStore$SecretKeyEntry\00", align 1 +@.TypeMapEntry.19217_from = private unnamed_addr constant [61 x i8] c"Java.Security.KeyStore+TrustedCertificateEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19218_to = private unnamed_addr constant [47 x i8] c"java/security/KeyStore$TrustedCertificateEntry\00", align 1 +@.TypeMapEntry.19219_from = private unnamed_addr constant [37 x i8] c"Java.Security.KeyStore, Mono.Android\00", align 1 +@.TypeMapEntry.19220_to = private unnamed_addr constant [23 x i8] c"java/security/KeyStore\00", align 1 +@.TypeMapEntry.19221_from = private unnamed_addr constant [46 x i8] c"Java.Security.KeyStoreException, Mono.Android\00", align 1 +@.TypeMapEntry.19222_to = private unnamed_addr constant [32 x i8] c"java/security/KeyStoreException\00", align 1 +@.TypeMapEntry.19223_from = private unnamed_addr constant [40 x i8] c"Java.Security.KeyStoreSpi, Mono.Android\00", align 1 +@.TypeMapEntry.19224_to = private unnamed_addr constant [26 x i8] c"java/security/KeyStoreSpi\00", align 1 +@.TypeMapEntry.19225_from = private unnamed_addr constant [47 x i8] c"Java.Security.KeyStoreSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19226_from = private unnamed_addr constant [42 x i8] c"Java.Security.MessageDigest, Mono.Android\00", align 1 +@.TypeMapEntry.19227_to = private unnamed_addr constant [28 x i8] c"java/security/MessageDigest\00", align 1 +@.TypeMapEntry.19228_from = private unnamed_addr constant [49 x i8] c"Java.Security.MessageDigestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19229_from = private unnamed_addr constant [45 x i8] c"Java.Security.MessageDigestSpi, Mono.Android\00", align 1 +@.TypeMapEntry.19230_to = private unnamed_addr constant [31 x i8] c"java/security/MessageDigestSpi\00", align 1 +@.TypeMapEntry.19231_from = private unnamed_addr constant [52 x i8] c"Java.Security.MessageDigestSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19232_from = private unnamed_addr constant [53 x i8] c"Java.Security.NoSuchAlgorithmException, Mono.Android\00", align 1 +@.TypeMapEntry.19233_to = private unnamed_addr constant [39 x i8] c"java/security/NoSuchAlgorithmException\00", align 1 +@.TypeMapEntry.19234_from = private unnamed_addr constant [52 x i8] c"Java.Security.NoSuchProviderException, Mono.Android\00", align 1 +@.TypeMapEntry.19235_to = private unnamed_addr constant [38 x i8] c"java/security/NoSuchProviderException\00", align 1 +@.TypeMapEntry.19236_from = private unnamed_addr constant [44 x i8] c"Java.Security.PKCS12Attribute, Mono.Android\00", align 1 +@.TypeMapEntry.19237_to = private unnamed_addr constant [30 x i8] c"java/security/PKCS12Attribute\00", align 1 +@.TypeMapEntry.19238_from = private unnamed_addr constant [39 x i8] c"Java.Security.Permission, Mono.Android\00", align 1 +@.TypeMapEntry.19239_to = private unnamed_addr constant [25 x i8] c"java/security/Permission\00", align 1 +@.TypeMapEntry.19240_from = private unnamed_addr constant [49 x i8] c"Java.Security.PermissionCollection, Mono.Android\00", align 1 +@.TypeMapEntry.19241_to = private unnamed_addr constant [35 x i8] c"java/security/PermissionCollection\00", align 1 +@.TypeMapEntry.19242_from = private unnamed_addr constant [56 x i8] c"Java.Security.PermissionCollectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19243_from = private unnamed_addr constant [46 x i8] c"Java.Security.PermissionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19244_from = private unnamed_addr constant [40 x i8] c"Java.Security.Permissions, Mono.Android\00", align 1 +@.TypeMapEntry.19245_to = private unnamed_addr constant [26 x i8] c"java/security/Permissions\00", align 1 +@.TypeMapEntry.19246_from = private unnamed_addr constant [47 x i8] c"Java.Security.Policy+IParameters, Mono.Android\00", align 1 +@.TypeMapEntry.19247_to = private unnamed_addr constant [32 x i8] c"java/security/Policy$Parameters\00", align 1 +@.TypeMapEntry.19248_from = private unnamed_addr constant [54 x i8] c"Java.Security.Policy+IParametersInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19249_from = private unnamed_addr constant [35 x i8] c"Java.Security.Policy, Mono.Android\00", align 1 +@.TypeMapEntry.19250_to = private unnamed_addr constant [21 x i8] c"java/security/Policy\00", align 1 +@.TypeMapEntry.19251_from = private unnamed_addr constant [42 x i8] c"Java.Security.PolicyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19252_from = private unnamed_addr constant [38 x i8] c"Java.Security.PolicySpi, Mono.Android\00", align 1 +@.TypeMapEntry.19253_to = private unnamed_addr constant [24 x i8] c"java/security/PolicySpi\00", align 1 +@.TypeMapEntry.19254_from = private unnamed_addr constant [45 x i8] c"Java.Security.PolicySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19255_from = private unnamed_addr constant [39 x i8] c"Java.Security.PrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.19256_to = private unnamed_addr constant [39 x i8] c"mono/internal/java/security/PrivateKey\00", align 1 +@.TypeMapEntry.19257_from = private unnamed_addr constant [54 x i8] c"Java.Security.PrivilegedActionException, Mono.Android\00", align 1 +@.TypeMapEntry.19258_to = private unnamed_addr constant [40 x i8] c"java/security/PrivilegedActionException\00", align 1 +@.TypeMapEntry.19259_from = private unnamed_addr constant [45 x i8] c"Java.Security.ProtectionDomain, Mono.Android\00", align 1 +@.TypeMapEntry.19260_to = private unnamed_addr constant [31 x i8] c"java/security/ProtectionDomain\00", align 1 +@.TypeMapEntry.19261_from = private unnamed_addr constant [45 x i8] c"Java.Security.Provider+Service, Mono.Android\00", align 1 +@.TypeMapEntry.19262_to = private unnamed_addr constant [31 x i8] c"java/security/Provider$Service\00", align 1 +@.TypeMapEntry.19263_from = private unnamed_addr constant [37 x i8] c"Java.Security.Provider, Mono.Android\00", align 1 +@.TypeMapEntry.19264_to = private unnamed_addr constant [23 x i8] c"java/security/Provider\00", align 1 +@.TypeMapEntry.19265_from = private unnamed_addr constant [46 x i8] c"Java.Security.ProviderException, Mono.Android\00", align 1 +@.TypeMapEntry.19266_to = private unnamed_addr constant [32 x i8] c"java/security/ProviderException\00", align 1 +@.TypeMapEntry.19267_from = private unnamed_addr constant [44 x i8] c"Java.Security.ProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19268_from = private unnamed_addr constant [38 x i8] c"Java.Security.PublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.19269_to = private unnamed_addr constant [38 x i8] c"mono/internal/java/security/PublicKey\00", align 1 +@.TypeMapEntry.19270_from = private unnamed_addr constant [46 x i8] c"Java.Security.SecureClassLoader, Mono.Android\00", align 1 +@.TypeMapEntry.19271_to = private unnamed_addr constant [32 x i8] c"java/security/SecureClassLoader\00", align 1 +@.TypeMapEntry.19272_from = private unnamed_addr constant [41 x i8] c"Java.Security.SecureRandom, Mono.Android\00", align 1 +@.TypeMapEntry.19273_to = private unnamed_addr constant [27 x i8] c"java/security/SecureRandom\00", align 1 +@.TypeMapEntry.19274_from = private unnamed_addr constant [44 x i8] c"Java.Security.SecureRandomSpi, Mono.Android\00", align 1 +@.TypeMapEntry.19275_to = private unnamed_addr constant [30 x i8] c"java/security/SecureRandomSpi\00", align 1 +@.TypeMapEntry.19276_from = private unnamed_addr constant [51 x i8] c"Java.Security.SecureRandomSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19277_from = private unnamed_addr constant [37 x i8] c"Java.Security.Security, Mono.Android\00", align 1 +@.TypeMapEntry.19278_to = private unnamed_addr constant [23 x i8] c"java/security/Security\00", align 1 +@.TypeMapEntry.19279_from = private unnamed_addr constant [47 x i8] c"Java.Security.SecurityPermission, Mono.Android\00", align 1 +@.TypeMapEntry.19280_to = private unnamed_addr constant [33 x i8] c"java/security/SecurityPermission\00", align 1 +@.TypeMapEntry.19281_from = private unnamed_addr constant [38 x i8] c"Java.Security.Signature, Mono.Android\00", align 1 +@.TypeMapEntry.19282_to = private unnamed_addr constant [24 x i8] c"java/security/Signature\00", align 1 +@.TypeMapEntry.19283_from = private unnamed_addr constant [47 x i8] c"Java.Security.SignatureException, Mono.Android\00", align 1 +@.TypeMapEntry.19284_to = private unnamed_addr constant [33 x i8] c"java/security/SignatureException\00", align 1 +@.TypeMapEntry.19285_from = private unnamed_addr constant [45 x i8] c"Java.Security.SignatureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19286_from = private unnamed_addr constant [41 x i8] c"Java.Security.SignatureSpi, Mono.Android\00", align 1 +@.TypeMapEntry.19287_to = private unnamed_addr constant [27 x i8] c"java/security/SignatureSpi\00", align 1 +@.TypeMapEntry.19288_from = private unnamed_addr constant [48 x i8] c"Java.Security.SignatureSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19289_from = private unnamed_addr constant [41 x i8] c"Java.Security.SignedObject, Mono.Android\00", align 1 +@.TypeMapEntry.19290_to = private unnamed_addr constant [27 x i8] c"java/security/SignedObject\00", align 1 +@.TypeMapEntry.19291_from = private unnamed_addr constant [35 x i8] c"Java.Security.Signer, Mono.Android\00", align 1 +@.TypeMapEntry.19292_to = private unnamed_addr constant [21 x i8] c"java/security/Signer\00", align 1 +@.TypeMapEntry.19293_from = private unnamed_addr constant [42 x i8] c"Java.Security.SignerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19294_from = private unnamed_addr constant [53 x i8] c"Java.Security.Spec.DSAGenParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19295_to = private unnamed_addr constant [39 x i8] c"java/security/spec/DSAGenParameterSpec\00", align 1 +@.TypeMapEntry.19296_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.DSAParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19297_to = private unnamed_addr constant [36 x i8] c"java/security/spec/DSAParameterSpec\00", align 1 +@.TypeMapEntry.19298_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.DSAPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19299_to = private unnamed_addr constant [37 x i8] c"java/security/spec/DSAPrivateKeySpec\00", align 1 +@.TypeMapEntry.19300_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.DSAPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19301_to = private unnamed_addr constant [36 x i8] c"java/security/spec/DSAPublicKeySpec\00", align 1 +@.TypeMapEntry.19302_from = private unnamed_addr constant [44 x i8] c"Java.Security.Spec.ECFieldF2m, Mono.Android\00", align 1 +@.TypeMapEntry.19303_to = private unnamed_addr constant [30 x i8] c"java/security/spec/ECFieldF2m\00", align 1 +@.TypeMapEntry.19304_from = private unnamed_addr constant [43 x i8] c"Java.Security.Spec.ECFieldFp, Mono.Android\00", align 1 +@.TypeMapEntry.19305_to = private unnamed_addr constant [29 x i8] c"java/security/spec/ECFieldFp\00", align 1 +@.TypeMapEntry.19306_from = private unnamed_addr constant [52 x i8] c"Java.Security.Spec.ECGenParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19307_to = private unnamed_addr constant [38 x i8] c"java/security/spec/ECGenParameterSpec\00", align 1 +@.TypeMapEntry.19308_from = private unnamed_addr constant [49 x i8] c"Java.Security.Spec.ECParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19309_to = private unnamed_addr constant [35 x i8] c"java/security/spec/ECParameterSpec\00", align 1 +@.TypeMapEntry.19310_from = private unnamed_addr constant [41 x i8] c"Java.Security.Spec.ECPoint, Mono.Android\00", align 1 +@.TypeMapEntry.19311_to = private unnamed_addr constant [27 x i8] c"java/security/spec/ECPoint\00", align 1 +@.TypeMapEntry.19312_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.ECPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19313_to = private unnamed_addr constant [36 x i8] c"java/security/spec/ECPrivateKeySpec\00", align 1 +@.TypeMapEntry.19314_from = private unnamed_addr constant [49 x i8] c"Java.Security.Spec.ECPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19315_to = private unnamed_addr constant [35 x i8] c"java/security/spec/ECPublicKeySpec\00", align 1 +@.TypeMapEntry.19316_from = private unnamed_addr constant [52 x i8] c"Java.Security.Spec.EdDSAParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19317_to = private unnamed_addr constant [38 x i8] c"java/security/spec/EdDSAParameterSpec\00", align 1 +@.TypeMapEntry.19318_from = private unnamed_addr constant [43 x i8] c"Java.Security.Spec.EdECPoint, Mono.Android\00", align 1 +@.TypeMapEntry.19319_to = private unnamed_addr constant [29 x i8] c"java/security/spec/EdECPoint\00", align 1 +@.TypeMapEntry.19320_from = private unnamed_addr constant [52 x i8] c"Java.Security.Spec.EdECPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19321_to = private unnamed_addr constant [38 x i8] c"java/security/spec/EdECPrivateKeySpec\00", align 1 +@.TypeMapEntry.19322_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.EdECPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19323_to = private unnamed_addr constant [37 x i8] c"java/security/spec/EdECPublicKeySpec\00", align 1 +@.TypeMapEntry.19324_from = private unnamed_addr constant [47 x i8] c"Java.Security.Spec.EllipticCurve, Mono.Android\00", align 1 +@.TypeMapEntry.19325_to = private unnamed_addr constant [33 x i8] c"java/security/spec/EllipticCurve\00", align 1 +@.TypeMapEntry.19326_from = private unnamed_addr constant [48 x i8] c"Java.Security.Spec.EncodedKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19327_to = private unnamed_addr constant [34 x i8] c"java/security/spec/EncodedKeySpec\00", align 1 +@.TypeMapEntry.19328_from = private unnamed_addr constant [55 x i8] c"Java.Security.Spec.EncodedKeySpecInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19329_from = private unnamed_addr constant [57 x i8] c"Java.Security.Spec.IAlgorithmParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19330_to = private unnamed_addr constant [42 x i8] c"java/security/spec/AlgorithmParameterSpec\00", align 1 +@.TypeMapEntry.19331_from = private unnamed_addr constant [64 x i8] c"Java.Security.Spec.IAlgorithmParameterSpecInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19332_from = private unnamed_addr constant [42 x i8] c"Java.Security.Spec.IECField, Mono.Android\00", align 1 +@.TypeMapEntry.19333_to = private unnamed_addr constant [27 x i8] c"java/security/spec/ECField\00", align 1 +@.TypeMapEntry.19334_from = private unnamed_addr constant [49 x i8] c"Java.Security.Spec.IECFieldInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19335_from = private unnamed_addr constant [42 x i8] c"Java.Security.Spec.IKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19336_to = private unnamed_addr constant [27 x i8] c"java/security/spec/KeySpec\00", align 1 +@.TypeMapEntry.19337_from = private unnamed_addr constant [49 x i8] c"Java.Security.Spec.IKeySpecInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19338_from = private unnamed_addr constant [57 x i8] c"Java.Security.Spec.InvalidKeySpecException, Mono.Android\00", align 1 +@.TypeMapEntry.19339_to = private unnamed_addr constant [43 x i8] c"java/security/spec/InvalidKeySpecException\00", align 1 +@.TypeMapEntry.19340_from = private unnamed_addr constant [63 x i8] c"Java.Security.Spec.InvalidParameterSpecException, Mono.Android\00", align 1 +@.TypeMapEntry.19341_to = private unnamed_addr constant [49 x i8] c"java/security/spec/InvalidParameterSpecException\00", align 1 +@.TypeMapEntry.19342_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.MGF1ParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19343_to = private unnamed_addr constant [37 x i8] c"java/security/spec/MGF1ParameterSpec\00", align 1 +@.TypeMapEntry.19344_from = private unnamed_addr constant [52 x i8] c"Java.Security.Spec.NamedParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19345_to = private unnamed_addr constant [38 x i8] c"java/security/spec/NamedParameterSpec\00", align 1 +@.TypeMapEntry.19346_from = private unnamed_addr constant [53 x i8] c"Java.Security.Spec.PKCS8EncodedKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19347_to = private unnamed_addr constant [39 x i8] c"java/security/spec/PKCS8EncodedKeySpec\00", align 1 +@.TypeMapEntry.19348_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.PSSParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19349_to = private unnamed_addr constant [36 x i8] c"java/security/spec/PSSParameterSpec\00", align 1 +@.TypeMapEntry.19350_from = private unnamed_addr constant [56 x i8] c"Java.Security.Spec.RSAKeyGenParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.19351_to = private unnamed_addr constant [42 x i8] c"java/security/spec/RSAKeyGenParameterSpec\00", align 1 +@.TypeMapEntry.19352_from = private unnamed_addr constant [64 x i8] c"Java.Security.Spec.RSAMultiPrimePrivateCrtKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19353_to = private unnamed_addr constant [50 x i8] c"java/security/spec/RSAMultiPrimePrivateCrtKeySpec\00", align 1 +@.TypeMapEntry.19354_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.RSAOtherPrimeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.19355_to = private unnamed_addr constant [37 x i8] c"java/security/spec/RSAOtherPrimeInfo\00", align 1 +@.TypeMapEntry.19356_from = private unnamed_addr constant [54 x i8] c"Java.Security.Spec.RSAPrivateCrtKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19357_to = private unnamed_addr constant [40 x i8] c"java/security/spec/RSAPrivateCrtKeySpec\00", align 1 +@.TypeMapEntry.19358_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.RSAPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19359_to = private unnamed_addr constant [37 x i8] c"java/security/spec/RSAPrivateKeySpec\00", align 1 +@.TypeMapEntry.19360_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.RSAPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19361_to = private unnamed_addr constant [36 x i8] c"java/security/spec/RSAPublicKeySpec\00", align 1 +@.TypeMapEntry.19362_from = private unnamed_addr constant [52 x i8] c"Java.Security.Spec.X509EncodedKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19363_to = private unnamed_addr constant [38 x i8] c"java/security/spec/X509EncodedKeySpec\00", align 1 +@.TypeMapEntry.19364_from = private unnamed_addr constant [51 x i8] c"Java.Security.Spec.XECPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19365_to = private unnamed_addr constant [37 x i8] c"java/security/spec/XECPrivateKeySpec\00", align 1 +@.TypeMapEntry.19366_from = private unnamed_addr constant [50 x i8] c"Java.Security.Spec.XECPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.19367_to = private unnamed_addr constant [36 x i8] c"java/security/spec/XECPublicKeySpec\00", align 1 +@.TypeMapEntry.19368_from = private unnamed_addr constant [38 x i8] c"Java.Security.Timestamp, Mono.Android\00", align 1 +@.TypeMapEntry.19369_to = private unnamed_addr constant [24 x i8] c"java/security/Timestamp\00", align 1 +@.TypeMapEntry.19370_from = private unnamed_addr constant [56 x i8] c"Java.Security.UnrecoverableEntryException, Mono.Android\00", align 1 +@.TypeMapEntry.19371_to = private unnamed_addr constant [42 x i8] c"java/security/UnrecoverableEntryException\00", align 1 +@.TypeMapEntry.19372_from = private unnamed_addr constant [54 x i8] c"Java.Security.UnrecoverableKeyException, Mono.Android\00", align 1 +@.TypeMapEntry.19373_to = private unnamed_addr constant [40 x i8] c"java/security/UnrecoverableKeyException\00", align 1 +@.TypeMapEntry.19374_from = private unnamed_addr constant [49 x i8] c"Java.Security.UnresolvedPermission, Mono.Android\00", align 1 +@.TypeMapEntry.19375_to = private unnamed_addr constant [35 x i8] c"java/security/UnresolvedPermission\00", align 1 +@.TypeMapEntry.19376_from = private unnamed_addr constant [44 x i8] c"Java.Sql.BatchUpdateException, Mono.Android\00", align 1 +@.TypeMapEntry.19377_to = private unnamed_addr constant [30 x i8] c"java/sql/BatchUpdateException\00", align 1 +@.TypeMapEntry.19378_from = private unnamed_addr constant [40 x i8] c"Java.Sql.ClientInfoStatus, Mono.Android\00", align 1 +@.TypeMapEntry.19379_to = private unnamed_addr constant [26 x i8] c"java/sql/ClientInfoStatus\00", align 1 +@.TypeMapEntry.19380_from = private unnamed_addr constant [34 x i8] c"Java.Sql.Connection, Mono.Android\00", align 1 +@.TypeMapEntry.19381_to = private unnamed_addr constant [34 x i8] c"mono/internal/java/sql/Connection\00", align 1 +@.TypeMapEntry.19382_from = private unnamed_addr constant [38 x i8] c"Java.Sql.DataTruncation, Mono.Android\00", align 1 +@.TypeMapEntry.19383_to = private unnamed_addr constant [24 x i8] c"java/sql/DataTruncation\00", align 1 +@.TypeMapEntry.19384_from = private unnamed_addr constant [40 x i8] c"Java.Sql.DatabaseMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19385_to = private unnamed_addr constant [40 x i8] c"mono/internal/java/sql/DatabaseMetaData\00", align 1 +@.TypeMapEntry.19386_from = private unnamed_addr constant [28 x i8] c"Java.Sql.Date, Mono.Android\00", align 1 +@.TypeMapEntry.19387_to = private unnamed_addr constant [14 x i8] c"java/sql/Date\00", align 1 +@.TypeMapEntry.19388_from = private unnamed_addr constant [37 x i8] c"Java.Sql.DriverManager, Mono.Android\00", align 1 +@.TypeMapEntry.19389_to = private unnamed_addr constant [23 x i8] c"java/sql/DriverManager\00", align 1 +@.TypeMapEntry.19390_from = private unnamed_addr constant [42 x i8] c"Java.Sql.DriverPropertyInfo, Mono.Android\00", align 1 +@.TypeMapEntry.19391_to = private unnamed_addr constant [28 x i8] c"java/sql/DriverPropertyInfo\00", align 1 +@.TypeMapEntry.19392_from = private unnamed_addr constant [30 x i8] c"Java.Sql.IArray, Mono.Android\00", align 1 +@.TypeMapEntry.19393_to = private unnamed_addr constant [15 x i8] c"java/sql/Array\00", align 1 +@.TypeMapEntry.19394_from = private unnamed_addr constant [37 x i8] c"Java.Sql.IArrayInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19395_from = private unnamed_addr constant [29 x i8] c"Java.Sql.IBlob, Mono.Android\00", align 1 +@.TypeMapEntry.19396_to = private unnamed_addr constant [14 x i8] c"java/sql/Blob\00", align 1 +@.TypeMapEntry.19397_from = private unnamed_addr constant [36 x i8] c"Java.Sql.IBlobInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19398_from = private unnamed_addr constant [42 x i8] c"Java.Sql.ICallableStatement, Mono.Android\00", align 1 +@.TypeMapEntry.19399_to = private unnamed_addr constant [27 x i8] c"java/sql/CallableStatement\00", align 1 +@.TypeMapEntry.19400_from = private unnamed_addr constant [49 x i8] c"Java.Sql.ICallableStatementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19401_from = private unnamed_addr constant [29 x i8] c"Java.Sql.IClob, Mono.Android\00", align 1 +@.TypeMapEntry.19402_to = private unnamed_addr constant [14 x i8] c"java/sql/Clob\00", align 1 +@.TypeMapEntry.19403_from = private unnamed_addr constant [36 x i8] c"Java.Sql.IClobInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19404_from = private unnamed_addr constant [35 x i8] c"Java.Sql.IConnection, Mono.Android\00", align 1 +@.TypeMapEntry.19405_to = private unnamed_addr constant [20 x i8] c"java/sql/Connection\00", align 1 +@.TypeMapEntry.19406_from = private unnamed_addr constant [42 x i8] c"Java.Sql.IConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19407_from = private unnamed_addr constant [41 x i8] c"Java.Sql.IDatabaseMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19408_to = private unnamed_addr constant [26 x i8] c"java/sql/DatabaseMetaData\00", align 1 +@.TypeMapEntry.19409_from = private unnamed_addr constant [48 x i8] c"Java.Sql.IDatabaseMetaDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19410_from = private unnamed_addr constant [31 x i8] c"Java.Sql.IDriver, Mono.Android\00", align 1 +@.TypeMapEntry.19411_to = private unnamed_addr constant [16 x i8] c"java/sql/Driver\00", align 1 +@.TypeMapEntry.19412_from = private unnamed_addr constant [38 x i8] c"Java.Sql.IDriverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19413_from = private unnamed_addr constant [30 x i8] c"Java.Sql.INClob, Mono.Android\00", align 1 +@.TypeMapEntry.19414_to = private unnamed_addr constant [15 x i8] c"java/sql/NClob\00", align 1 +@.TypeMapEntry.19415_from = private unnamed_addr constant [37 x i8] c"Java.Sql.INClobInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19416_from = private unnamed_addr constant [42 x i8] c"Java.Sql.IParameterMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19417_to = private unnamed_addr constant [27 x i8] c"java/sql/ParameterMetaData\00", align 1 +@.TypeMapEntry.19418_from = private unnamed_addr constant [49 x i8] c"Java.Sql.IParameterMetaDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19419_from = private unnamed_addr constant [42 x i8] c"Java.Sql.IPreparedStatement, Mono.Android\00", align 1 +@.TypeMapEntry.19420_to = private unnamed_addr constant [27 x i8] c"java/sql/PreparedStatement\00", align 1 +@.TypeMapEntry.19421_from = private unnamed_addr constant [49 x i8] c"Java.Sql.IPreparedStatementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19422_from = private unnamed_addr constant [28 x i8] c"Java.Sql.IRef, Mono.Android\00", align 1 +@.TypeMapEntry.19423_to = private unnamed_addr constant [13 x i8] c"java/sql/Ref\00", align 1 +@.TypeMapEntry.19424_from = private unnamed_addr constant [35 x i8] c"Java.Sql.IRefInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19425_from = private unnamed_addr constant [34 x i8] c"Java.Sql.IResultSet, Mono.Android\00", align 1 +@.TypeMapEntry.19426_to = private unnamed_addr constant [19 x i8] c"java/sql/ResultSet\00", align 1 +@.TypeMapEntry.19427_from = private unnamed_addr constant [41 x i8] c"Java.Sql.IResultSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19428_from = private unnamed_addr constant [42 x i8] c"Java.Sql.IResultSetMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19429_to = private unnamed_addr constant [27 x i8] c"java/sql/ResultSetMetaData\00", align 1 +@.TypeMapEntry.19430_from = private unnamed_addr constant [49 x i8] c"Java.Sql.IResultSetMetaDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19431_from = private unnamed_addr constant [30 x i8] c"Java.Sql.IRowId, Mono.Android\00", align 1 +@.TypeMapEntry.19432_to = private unnamed_addr constant [15 x i8] c"java/sql/RowId\00", align 1 +@.TypeMapEntry.19433_from = private unnamed_addr constant [37 x i8] c"Java.Sql.IRowIdInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19434_from = private unnamed_addr constant [32 x i8] c"Java.Sql.ISQLData, Mono.Android\00", align 1 +@.TypeMapEntry.19435_to = private unnamed_addr constant [17 x i8] c"java/sql/SQLData\00", align 1 +@.TypeMapEntry.19436_from = private unnamed_addr constant [39 x i8] c"Java.Sql.ISQLDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19437_from = private unnamed_addr constant [33 x i8] c"Java.Sql.ISQLInput, Mono.Android\00", align 1 +@.TypeMapEntry.19438_to = private unnamed_addr constant [18 x i8] c"java/sql/SQLInput\00", align 1 +@.TypeMapEntry.19439_from = private unnamed_addr constant [40 x i8] c"Java.Sql.ISQLInputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19440_from = private unnamed_addr constant [34 x i8] c"Java.Sql.ISQLOutput, Mono.Android\00", align 1 +@.TypeMapEntry.19441_to = private unnamed_addr constant [19 x i8] c"java/sql/SQLOutput\00", align 1 +@.TypeMapEntry.19442_from = private unnamed_addr constant [41 x i8] c"Java.Sql.ISQLOutputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19443_from = private unnamed_addr constant [31 x i8] c"Java.Sql.ISQLXML, Mono.Android\00", align 1 +@.TypeMapEntry.19444_to = private unnamed_addr constant [16 x i8] c"java/sql/SQLXML\00", align 1 +@.TypeMapEntry.19445_from = private unnamed_addr constant [38 x i8] c"Java.Sql.ISQLXMLInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19446_from = private unnamed_addr constant [34 x i8] c"Java.Sql.ISavepoint, Mono.Android\00", align 1 +@.TypeMapEntry.19447_to = private unnamed_addr constant [19 x i8] c"java/sql/Savepoint\00", align 1 +@.TypeMapEntry.19448_from = private unnamed_addr constant [41 x i8] c"Java.Sql.ISavepointInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19449_from = private unnamed_addr constant [34 x i8] c"Java.Sql.IStatement, Mono.Android\00", align 1 +@.TypeMapEntry.19450_to = private unnamed_addr constant [19 x i8] c"java/sql/Statement\00", align 1 +@.TypeMapEntry.19451_from = private unnamed_addr constant [41 x i8] c"Java.Sql.IStatementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19452_from = private unnamed_addr constant [31 x i8] c"Java.Sql.IStruct, Mono.Android\00", align 1 +@.TypeMapEntry.19453_to = private unnamed_addr constant [16 x i8] c"java/sql/Struct\00", align 1 +@.TypeMapEntry.19454_from = private unnamed_addr constant [38 x i8] c"Java.Sql.IStructInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19455_from = private unnamed_addr constant [32 x i8] c"Java.Sql.IWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.19456_to = private unnamed_addr constant [17 x i8] c"java/sql/Wrapper\00", align 1 +@.TypeMapEntry.19457_from = private unnamed_addr constant [39 x i8] c"Java.Sql.IWrapperInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19458_from = private unnamed_addr constant [41 x i8] c"Java.Sql.ParameterMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19459_to = private unnamed_addr constant [41 x i8] c"mono/internal/java/sql/ParameterMetaData\00", align 1 +@.TypeMapEntry.19460_from = private unnamed_addr constant [33 x i8] c"Java.Sql.ResultSet, Mono.Android\00", align 1 +@.TypeMapEntry.19461_to = private unnamed_addr constant [33 x i8] c"mono/internal/java/sql/ResultSet\00", align 1 +@.TypeMapEntry.19462_from = private unnamed_addr constant [41 x i8] c"Java.Sql.ResultSetMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.19463_to = private unnamed_addr constant [41 x i8] c"mono/internal/java/sql/ResultSetMetaData\00", align 1 +@.TypeMapEntry.19464_from = private unnamed_addr constant [37 x i8] c"Java.Sql.RowIdLifetime, Mono.Android\00", align 1 +@.TypeMapEntry.19465_to = private unnamed_addr constant [23 x i8] c"java/sql/RowIdLifetime\00", align 1 +@.TypeMapEntry.19466_from = private unnamed_addr constant [46 x i8] c"Java.Sql.SQLClientInfoException, Mono.Android\00", align 1 +@.TypeMapEntry.19467_to = private unnamed_addr constant [32 x i8] c"java/sql/SQLClientInfoException\00", align 1 +@.TypeMapEntry.19468_from = private unnamed_addr constant [40 x i8] c"Java.Sql.SQLDataException, Mono.Android\00", align 1 +@.TypeMapEntry.19469_to = private unnamed_addr constant [26 x i8] c"java/sql/SQLDataException\00", align 1 +@.TypeMapEntry.19470_from = private unnamed_addr constant [36 x i8] c"Java.Sql.SQLException, Mono.Android\00", align 1 +@.TypeMapEntry.19471_to = private unnamed_addr constant [22 x i8] c"java/sql/SQLException\00", align 1 +@.TypeMapEntry.19472_from = private unnamed_addr constant [55 x i8] c"Java.Sql.SQLFeatureNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.19473_to = private unnamed_addr constant [41 x i8] c"java/sql/SQLFeatureNotSupportedException\00", align 1 +@.TypeMapEntry.19474_from = private unnamed_addr constant [64 x i8] c"Java.Sql.SQLIntegrityConstraintViolationException, Mono.Android\00", align 1 +@.TypeMapEntry.19475_to = private unnamed_addr constant [50 x i8] c"java/sql/SQLIntegrityConstraintViolationException\00", align 1 +@.TypeMapEntry.19476_from = private unnamed_addr constant [60 x i8] c"Java.Sql.SQLInvalidAuthorizationSpecException, Mono.Android\00", align 1 +@.TypeMapEntry.19477_to = private unnamed_addr constant [46 x i8] c"java/sql/SQLInvalidAuthorizationSpecException\00", align 1 +@.TypeMapEntry.19478_from = private unnamed_addr constant [58 x i8] c"Java.Sql.SQLNonTransientConnectionException, Mono.Android\00", align 1 +@.TypeMapEntry.19479_to = private unnamed_addr constant [44 x i8] c"java/sql/SQLNonTransientConnectionException\00", align 1 +@.TypeMapEntry.19480_from = private unnamed_addr constant [48 x i8] c"Java.Sql.SQLNonTransientException, Mono.Android\00", align 1 +@.TypeMapEntry.19481_to = private unnamed_addr constant [34 x i8] c"java/sql/SQLNonTransientException\00", align 1 +@.TypeMapEntry.19482_from = private unnamed_addr constant [37 x i8] c"Java.Sql.SQLPermission, Mono.Android\00", align 1 +@.TypeMapEntry.19483_to = private unnamed_addr constant [23 x i8] c"java/sql/SQLPermission\00", align 1 +@.TypeMapEntry.19484_from = private unnamed_addr constant [47 x i8] c"Java.Sql.SQLRecoverableException, Mono.Android\00", align 1 +@.TypeMapEntry.19485_to = private unnamed_addr constant [33 x i8] c"java/sql/SQLRecoverableException\00", align 1 +@.TypeMapEntry.19486_from = private unnamed_addr constant [47 x i8] c"Java.Sql.SQLSyntaxErrorException, Mono.Android\00", align 1 +@.TypeMapEntry.19487_to = private unnamed_addr constant [33 x i8] c"java/sql/SQLSyntaxErrorException\00", align 1 +@.TypeMapEntry.19488_from = private unnamed_addr constant [43 x i8] c"Java.Sql.SQLTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.19489_to = private unnamed_addr constant [29 x i8] c"java/sql/SQLTimeoutException\00", align 1 +@.TypeMapEntry.19490_from = private unnamed_addr constant [55 x i8] c"Java.Sql.SQLTransactionRollbackException, Mono.Android\00", align 1 +@.TypeMapEntry.19491_to = private unnamed_addr constant [41 x i8] c"java/sql/SQLTransactionRollbackException\00", align 1 +@.TypeMapEntry.19492_from = private unnamed_addr constant [55 x i8] c"Java.Sql.SQLTransientConnectionException, Mono.Android\00", align 1 +@.TypeMapEntry.19493_to = private unnamed_addr constant [41 x i8] c"java/sql/SQLTransientConnectionException\00", align 1 +@.TypeMapEntry.19494_from = private unnamed_addr constant [45 x i8] c"Java.Sql.SQLTransientException, Mono.Android\00", align 1 +@.TypeMapEntry.19495_to = private unnamed_addr constant [31 x i8] c"java/sql/SQLTransientException\00", align 1 +@.TypeMapEntry.19496_from = private unnamed_addr constant [34 x i8] c"Java.Sql.SQLWarning, Mono.Android\00", align 1 +@.TypeMapEntry.19497_to = private unnamed_addr constant [20 x i8] c"java/sql/SQLWarning\00", align 1 +@.TypeMapEntry.19498_from = private unnamed_addr constant [33 x i8] c"Java.Sql.Statement, Mono.Android\00", align 1 +@.TypeMapEntry.19499_to = private unnamed_addr constant [33 x i8] c"mono/internal/java/sql/Statement\00", align 1 +@.TypeMapEntry.19500_from = private unnamed_addr constant [28 x i8] c"Java.Sql.Time, Mono.Android\00", align 1 +@.TypeMapEntry.19501_to = private unnamed_addr constant [14 x i8] c"java/sql/Time\00", align 1 +@.TypeMapEntry.19502_from = private unnamed_addr constant [33 x i8] c"Java.Sql.Timestamp, Mono.Android\00", align 1 +@.TypeMapEntry.19503_to = private unnamed_addr constant [19 x i8] c"java/sql/Timestamp\00", align 1 +@.TypeMapEntry.19504_from = private unnamed_addr constant [29 x i8] c"Java.Sql.Types, Mono.Android\00", align 1 +@.TypeMapEntry.19505_to = private unnamed_addr constant [15 x i8] c"java/sql/Types\00", align 1 +@.TypeMapEntry.19506_from = private unnamed_addr constant [35 x i8] c"Java.Text.Annotation, Mono.Android\00", align 1 +@.TypeMapEntry.19507_to = private unnamed_addr constant [21 x i8] c"java/text/Annotation\00", align 1 +@.TypeMapEntry.19508_from = private unnamed_addr constant [61 x i8] c"Java.Text.AttributedCharacterIteratorAttribute, Mono.Android\00", align 1 +@.TypeMapEntry.19509_to = private unnamed_addr constant [48 x i8] c"java/text/AttributedCharacterIterator$Attribute\00", align 1 +@.TypeMapEntry.19510_from = private unnamed_addr constant [41 x i8] c"Java.Text.AttributedString, Mono.Android\00", align 1 +@.TypeMapEntry.19511_to = private unnamed_addr constant [27 x i8] c"java/text/AttributedString\00", align 1 +@.TypeMapEntry.19512_from = private unnamed_addr constant [29 x i8] c"Java.Text.Bidi, Mono.Android\00", align 1 +@.TypeMapEntry.19513_to = private unnamed_addr constant [15 x i8] c"java/text/Bidi\00", align 1 +@.TypeMapEntry.19514_from = private unnamed_addr constant [38 x i8] c"Java.Text.BreakIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19515_to = private unnamed_addr constant [24 x i8] c"java/text/BreakIterator\00", align 1 +@.TypeMapEntry.19516_from = private unnamed_addr constant [45 x i8] c"Java.Text.BreakIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19517_from = private unnamed_addr constant [42 x i8] c"Java.Text.CharacterIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19518_to = private unnamed_addr constant [42 x i8] c"mono/internal/java/text/CharacterIterator\00", align 1 +@.TypeMapEntry.19519_from = private unnamed_addr constant [37 x i8] c"Java.Text.ChoiceFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19520_to = private unnamed_addr constant [23 x i8] c"java/text/ChoiceFormat\00", align 1 +@.TypeMapEntry.19521_from = private unnamed_addr constant [49 x i8] c"Java.Text.CollationElementIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19522_to = private unnamed_addr constant [35 x i8] c"java/text/CollationElementIterator\00", align 1 +@.TypeMapEntry.19523_from = private unnamed_addr constant [37 x i8] c"Java.Text.CollationKey, Mono.Android\00", align 1 +@.TypeMapEntry.19524_to = private unnamed_addr constant [23 x i8] c"java/text/CollationKey\00", align 1 +@.TypeMapEntry.19525_from = private unnamed_addr constant [44 x i8] c"Java.Text.CollationKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19526_from = private unnamed_addr constant [33 x i8] c"Java.Text.Collator, Mono.Android\00", align 1 +@.TypeMapEntry.19527_to = private unnamed_addr constant [19 x i8] c"java/text/Collator\00", align 1 +@.TypeMapEntry.19528_from = private unnamed_addr constant [40 x i8] c"Java.Text.CollatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19529_from = private unnamed_addr constant [41 x i8] c"Java.Text.DateFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.19530_to = private unnamed_addr constant [27 x i8] c"java/text/DateFormat$Field\00", align 1 +@.TypeMapEntry.19531_from = private unnamed_addr constant [35 x i8] c"Java.Text.DateFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19532_to = private unnamed_addr constant [21 x i8] c"java/text/DateFormat\00", align 1 +@.TypeMapEntry.19533_from = private unnamed_addr constant [42 x i8] c"Java.Text.DateFormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19534_from = private unnamed_addr constant [42 x i8] c"Java.Text.DateFormatSymbols, Mono.Android\00", align 1 +@.TypeMapEntry.19535_to = private unnamed_addr constant [28 x i8] c"java/text/DateFormatSymbols\00", align 1 +@.TypeMapEntry.19536_from = private unnamed_addr constant [38 x i8] c"Java.Text.DecimalFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19537_to = private unnamed_addr constant [24 x i8] c"java/text/DecimalFormat\00", align 1 +@.TypeMapEntry.19538_from = private unnamed_addr constant [45 x i8] c"Java.Text.DecimalFormatSymbols, Mono.Android\00", align 1 +@.TypeMapEntry.19539_to = private unnamed_addr constant [31 x i8] c"java/text/DecimalFormatSymbols\00", align 1 +@.TypeMapEntry.19540_from = private unnamed_addr constant [38 x i8] c"Java.Text.FieldPosition, Mono.Android\00", align 1 +@.TypeMapEntry.19541_to = private unnamed_addr constant [24 x i8] c"java/text/FieldPosition\00", align 1 +@.TypeMapEntry.19542_from = private unnamed_addr constant [53 x i8] c"Java.Text.IAttributedCharacterIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19543_to = private unnamed_addr constant [38 x i8] c"java/text/AttributedCharacterIterator\00", align 1 +@.TypeMapEntry.19544_from = private unnamed_addr constant [60 x i8] c"Java.Text.IAttributedCharacterIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19545_from = private unnamed_addr constant [43 x i8] c"Java.Text.ICharacterIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19546_to = private unnamed_addr constant [28 x i8] c"java/text/CharacterIterator\00", align 1 +@.TypeMapEntry.19547_from = private unnamed_addr constant [50 x i8] c"Java.Text.ICharacterIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19548_from = private unnamed_addr constant [44 x i8] c"Java.Text.MessageFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.19549_to = private unnamed_addr constant [30 x i8] c"java/text/MessageFormat$Field\00", align 1 +@.TypeMapEntry.19550_from = private unnamed_addr constant [38 x i8] c"Java.Text.MessageFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19551_to = private unnamed_addr constant [24 x i8] c"java/text/MessageFormat\00", align 1 +@.TypeMapEntry.19552_from = private unnamed_addr constant [40 x i8] c"Java.Text.Normalizer+Form, Mono.Android\00", align 1 +@.TypeMapEntry.19553_to = private unnamed_addr constant [26 x i8] c"java/text/Normalizer$Form\00", align 1 +@.TypeMapEntry.19554_from = private unnamed_addr constant [35 x i8] c"Java.Text.Normalizer, Mono.Android\00", align 1 +@.TypeMapEntry.19555_to = private unnamed_addr constant [21 x i8] c"java/text/Normalizer\00", align 1 +@.TypeMapEntry.19556_from = private unnamed_addr constant [43 x i8] c"Java.Text.NumberFormat+Field, Mono.Android\00", align 1 +@.TypeMapEntry.19557_to = private unnamed_addr constant [29 x i8] c"java/text/NumberFormat$Field\00", align 1 +@.TypeMapEntry.19558_from = private unnamed_addr constant [37 x i8] c"Java.Text.NumberFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19559_to = private unnamed_addr constant [23 x i8] c"java/text/NumberFormat\00", align 1 +@.TypeMapEntry.19560_from = private unnamed_addr constant [44 x i8] c"Java.Text.NumberFormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19561_from = private unnamed_addr constant [39 x i8] c"Java.Text.ParseException, Mono.Android\00", align 1 +@.TypeMapEntry.19562_to = private unnamed_addr constant [25 x i8] c"java/text/ParseException\00", align 1 +@.TypeMapEntry.19563_from = private unnamed_addr constant [38 x i8] c"Java.Text.ParsePosition, Mono.Android\00", align 1 +@.TypeMapEntry.19564_to = private unnamed_addr constant [24 x i8] c"java/text/ParsePosition\00", align 1 +@.TypeMapEntry.19565_from = private unnamed_addr constant [42 x i8] c"Java.Text.RuleBasedCollator, Mono.Android\00", align 1 +@.TypeMapEntry.19566_to = private unnamed_addr constant [28 x i8] c"java/text/RuleBasedCollator\00", align 1 +@.TypeMapEntry.19567_from = private unnamed_addr constant [41 x i8] c"Java.Text.SimpleDateFormat, Mono.Android\00", align 1 +@.TypeMapEntry.19568_to = private unnamed_addr constant [27 x i8] c"java/text/SimpleDateFormat\00", align 1 +@.TypeMapEntry.19569_from = private unnamed_addr constant [48 x i8] c"Java.Text.StringCharacterIterator, Mono.Android\00", align 1 +@.TypeMapEntry.19570_to = private unnamed_addr constant [34 x i8] c"java/text/StringCharacterIterator\00", align 1 +@.TypeMapEntry.19571_from = private unnamed_addr constant [38 x i8] c"Java.Text._Format+Field, Mono.Android\00", align 1 +@.TypeMapEntry.19572_to = private unnamed_addr constant [23 x i8] c"java/text/Format$Field\00", align 1 +@.TypeMapEntry.19573_from = private unnamed_addr constant [32 x i8] c"Java.Text._Format, Mono.Android\00", align 1 +@.TypeMapEntry.19574_to = private unnamed_addr constant [17 x i8] c"java/text/Format\00", align 1 +@.TypeMapEntry.19575_from = private unnamed_addr constant [39 x i8] c"Java.Text._FormatInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19576_from = private unnamed_addr constant [50 x i8] c"Java.Time.Chrono.AbstractChronology, Mono.Android\00", align 1 +@.TypeMapEntry.19577_to = private unnamed_addr constant [36 x i8] c"java/time/chrono/AbstractChronology\00", align 1 +@.TypeMapEntry.19578_from = private unnamed_addr constant [57 x i8] c"Java.Time.Chrono.AbstractChronologyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19579_from = private unnamed_addr constant [47 x i8] c"Java.Time.Chrono.ChronoLocalDate, Mono.Android\00", align 1 +@.TypeMapEntry.19580_to = private unnamed_addr constant [47 x i8] c"mono/internal/java/time/chrono/ChronoLocalDate\00", align 1 +@.TypeMapEntry.19581_from = private unnamed_addr constant [51 x i8] c"Java.Time.Chrono.ChronoLocalDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19582_to = private unnamed_addr constant [51 x i8] c"mono/internal/java/time/chrono/ChronoLocalDateTime\00", align 1 +@.TypeMapEntry.19583_from = private unnamed_addr constant [44 x i8] c"Java.Time.Chrono.ChronoPeriod, Mono.Android\00", align 1 +@.TypeMapEntry.19584_to = private unnamed_addr constant [44 x i8] c"mono/internal/java/time/chrono/ChronoPeriod\00", align 1 +@.TypeMapEntry.19585_from = private unnamed_addr constant [51 x i8] c"Java.Time.Chrono.ChronoZonedDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19586_to = private unnamed_addr constant [51 x i8] c"mono/internal/java/time/chrono/ChronoZonedDateTime\00", align 1 +@.TypeMapEntry.19587_from = private unnamed_addr constant [42 x i8] c"Java.Time.Chrono.Chronology, Mono.Android\00", align 1 +@.TypeMapEntry.19588_to = private unnamed_addr constant [42 x i8] c"mono/internal/java/time/chrono/Chronology\00", align 1 +@.TypeMapEntry.19589_from = private unnamed_addr constant [41 x i8] c"Java.Time.Chrono.HijrahEra, Mono.Android\00", align 1 +@.TypeMapEntry.19590_to = private unnamed_addr constant [27 x i8] c"java/time/chrono/HijrahEra\00", align 1 +@.TypeMapEntry.19591_from = private unnamed_addr constant [48 x i8] c"Java.Time.Chrono.IChronoLocalDate, Mono.Android\00", align 1 +@.TypeMapEntry.19592_to = private unnamed_addr constant [33 x i8] c"java/time/chrono/ChronoLocalDate\00", align 1 +@.TypeMapEntry.19593_from = private unnamed_addr constant [55 x i8] c"Java.Time.Chrono.IChronoLocalDateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19594_from = private unnamed_addr constant [52 x i8] c"Java.Time.Chrono.IChronoLocalDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19595_to = private unnamed_addr constant [37 x i8] c"java/time/chrono/ChronoLocalDateTime\00", align 1 +@.TypeMapEntry.19596_from = private unnamed_addr constant [59 x i8] c"Java.Time.Chrono.IChronoLocalDateTimeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19597_from = private unnamed_addr constant [45 x i8] c"Java.Time.Chrono.IChronoPeriod, Mono.Android\00", align 1 +@.TypeMapEntry.19598_to = private unnamed_addr constant [30 x i8] c"java/time/chrono/ChronoPeriod\00", align 1 +@.TypeMapEntry.19599_from = private unnamed_addr constant [52 x i8] c"Java.Time.Chrono.IChronoPeriodInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19600_from = private unnamed_addr constant [52 x i8] c"Java.Time.Chrono.IChronoZonedDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19601_to = private unnamed_addr constant [37 x i8] c"java/time/chrono/ChronoZonedDateTime\00", align 1 +@.TypeMapEntry.19602_from = private unnamed_addr constant [59 x i8] c"Java.Time.Chrono.IChronoZonedDateTimeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19603_from = private unnamed_addr constant [43 x i8] c"Java.Time.Chrono.IChronology, Mono.Android\00", align 1 +@.TypeMapEntry.19604_to = private unnamed_addr constant [28 x i8] c"java/time/chrono/Chronology\00", align 1 +@.TypeMapEntry.19605_from = private unnamed_addr constant [50 x i8] c"Java.Time.Chrono.IChronologyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19606_from = private unnamed_addr constant [36 x i8] c"Java.Time.Chrono.IEra, Mono.Android\00", align 1 +@.TypeMapEntry.19607_to = private unnamed_addr constant [21 x i8] c"java/time/chrono/Era\00", align 1 +@.TypeMapEntry.19608_from = private unnamed_addr constant [43 x i8] c"Java.Time.Chrono.IEraInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19609_from = private unnamed_addr constant [45 x i8] c"Java.Time.Chrono.IsoChronology, Mono.Android\00", align 1 +@.TypeMapEntry.19610_to = private unnamed_addr constant [31 x i8] c"java/time/chrono/IsoChronology\00", align 1 +@.TypeMapEntry.19611_from = private unnamed_addr constant [38 x i8] c"Java.Time.Chrono.IsoEra, Mono.Android\00", align 1 +@.TypeMapEntry.19612_to = private unnamed_addr constant [24 x i8] c"java/time/chrono/IsoEra\00", align 1 +@.TypeMapEntry.19613_from = private unnamed_addr constant [43 x i8] c"Java.Time.Chrono.JapaneseEra, Mono.Android\00", align 1 +@.TypeMapEntry.19614_to = private unnamed_addr constant [29 x i8] c"java/time/chrono/JapaneseEra\00", align 1 +@.TypeMapEntry.19615_from = private unnamed_addr constant [41 x i8] c"Java.Time.Chrono.MinguoEra, Mono.Android\00", align 1 +@.TypeMapEntry.19616_to = private unnamed_addr constant [27 x i8] c"java/time/chrono/MinguoEra\00", align 1 +@.TypeMapEntry.19617_from = private unnamed_addr constant [47 x i8] c"Java.Time.Chrono.ThaiBuddhistEra, Mono.Android\00", align 1 +@.TypeMapEntry.19618_to = private unnamed_addr constant [33 x i8] c"java/time/chrono/ThaiBuddhistEra\00", align 1 +@.TypeMapEntry.19619_from = private unnamed_addr constant [30 x i8] c"Java.Time.Clock, Mono.Android\00", align 1 +@.TypeMapEntry.19620_to = private unnamed_addr constant [16 x i8] c"java/time/Clock\00", align 1 +@.TypeMapEntry.19621_from = private unnamed_addr constant [37 x i8] c"Java.Time.ClockInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19622_from = private unnamed_addr constant [42 x i8] c"Java.Time.DateTimeException, Mono.Android\00", align 1 +@.TypeMapEntry.19623_to = private unnamed_addr constant [28 x i8] c"java/time/DateTimeException\00", align 1 +@.TypeMapEntry.19624_from = private unnamed_addr constant [34 x i8] c"Java.Time.DayOfWeek, Mono.Android\00", align 1 +@.TypeMapEntry.19625_to = private unnamed_addr constant [20 x i8] c"java/time/DayOfWeek\00", align 1 +@.TypeMapEntry.19626_from = private unnamed_addr constant [33 x i8] c"Java.Time.Duration, Mono.Android\00", align 1 +@.TypeMapEntry.19627_to = private unnamed_addr constant [19 x i8] c"java/time/Duration\00", align 1 +@.TypeMapEntry.19628_from = private unnamed_addr constant [49 x i8] c"Java.Time.Format.DateTimeFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.19629_to = private unnamed_addr constant [35 x i8] c"java/time/format/DateTimeFormatter\00", align 1 +@.TypeMapEntry.19630_from = private unnamed_addr constant [56 x i8] c"Java.Time.Format.DateTimeFormatterBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.19631_to = private unnamed_addr constant [42 x i8] c"java/time/format/DateTimeFormatterBuilder\00", align 1 +@.TypeMapEntry.19632_from = private unnamed_addr constant [54 x i8] c"Java.Time.Format.DateTimeParseException, Mono.Android\00", align 1 +@.TypeMapEntry.19633_to = private unnamed_addr constant [40 x i8] c"java/time/format/DateTimeParseException\00", align 1 +@.TypeMapEntry.19634_from = private unnamed_addr constant [44 x i8] c"Java.Time.Format.DecimalStyle, Mono.Android\00", align 1 +@.TypeMapEntry.19635_to = private unnamed_addr constant [30 x i8] c"java/time/format/DecimalStyle\00", align 1 +@.TypeMapEntry.19636_from = private unnamed_addr constant [43 x i8] c"Java.Time.Format.FormatStyle, Mono.Android\00", align 1 +@.TypeMapEntry.19637_to = private unnamed_addr constant [29 x i8] c"java/time/format/FormatStyle\00", align 1 +@.TypeMapEntry.19638_from = private unnamed_addr constant [45 x i8] c"Java.Time.Format.ResolverStyle, Mono.Android\00", align 1 +@.TypeMapEntry.19639_to = private unnamed_addr constant [31 x i8] c"java/time/format/ResolverStyle\00", align 1 +@.TypeMapEntry.19640_from = private unnamed_addr constant [41 x i8] c"Java.Time.Format.SignStyle, Mono.Android\00", align 1 +@.TypeMapEntry.19641_to = private unnamed_addr constant [27 x i8] c"java/time/format/SignStyle\00", align 1 +@.TypeMapEntry.19642_from = private unnamed_addr constant [41 x i8] c"Java.Time.Format.TextStyle, Mono.Android\00", align 1 +@.TypeMapEntry.19643_to = private unnamed_addr constant [27 x i8] c"java/time/format/TextStyle\00", align 1 +@.TypeMapEntry.19644_from = private unnamed_addr constant [39 x i8] c"Java.Time.IInstantSource, Mono.Android\00", align 1 +@.TypeMapEntry.19645_to = private unnamed_addr constant [24 x i8] c"java/time/InstantSource\00", align 1 +@.TypeMapEntry.19646_from = private unnamed_addr constant [46 x i8] c"Java.Time.IInstantSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19647_from = private unnamed_addr constant [32 x i8] c"Java.Time.Instant, Mono.Android\00", align 1 +@.TypeMapEntry.19648_to = private unnamed_addr constant [18 x i8] c"java/time/Instant\00", align 1 +@.TypeMapEntry.19649_from = private unnamed_addr constant [34 x i8] c"Java.Time.LocalDate, Mono.Android\00", align 1 +@.TypeMapEntry.19650_to = private unnamed_addr constant [20 x i8] c"java/time/LocalDate\00", align 1 +@.TypeMapEntry.19651_from = private unnamed_addr constant [38 x i8] c"Java.Time.LocalDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19652_to = private unnamed_addr constant [24 x i8] c"java/time/LocalDateTime\00", align 1 +@.TypeMapEntry.19653_from = private unnamed_addr constant [34 x i8] c"Java.Time.LocalTime, Mono.Android\00", align 1 +@.TypeMapEntry.19654_to = private unnamed_addr constant [20 x i8] c"java/time/LocalTime\00", align 1 +@.TypeMapEntry.19655_from = private unnamed_addr constant [30 x i8] c"Java.Time.Month, Mono.Android\00", align 1 +@.TypeMapEntry.19656_to = private unnamed_addr constant [16 x i8] c"java/time/Month\00", align 1 +@.TypeMapEntry.19657_from = private unnamed_addr constant [33 x i8] c"Java.Time.MonthDay, Mono.Android\00", align 1 +@.TypeMapEntry.19658_to = private unnamed_addr constant [19 x i8] c"java/time/MonthDay\00", align 1 +@.TypeMapEntry.19659_from = private unnamed_addr constant [39 x i8] c"Java.Time.OffsetDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19660_to = private unnamed_addr constant [25 x i8] c"java/time/OffsetDateTime\00", align 1 +@.TypeMapEntry.19661_from = private unnamed_addr constant [35 x i8] c"Java.Time.OffsetTime, Mono.Android\00", align 1 +@.TypeMapEntry.19662_to = private unnamed_addr constant [21 x i8] c"java/time/OffsetTime\00", align 1 +@.TypeMapEntry.19663_from = private unnamed_addr constant [31 x i8] c"Java.Time.Period, Mono.Android\00", align 1 +@.TypeMapEntry.19664_to = private unnamed_addr constant [17 x i8] c"java/time/Period\00", align 1 +@.TypeMapEntry.19665_from = private unnamed_addr constant [45 x i8] c"Java.Time.Temporal.ChronoField, Mono.Android\00", align 1 +@.TypeMapEntry.19666_to = private unnamed_addr constant [31 x i8] c"java/time/temporal/ChronoField\00", align 1 +@.TypeMapEntry.19667_from = private unnamed_addr constant [44 x i8] c"Java.Time.Temporal.ChronoUnit, Mono.Android\00", align 1 +@.TypeMapEntry.19668_to = private unnamed_addr constant [30 x i8] c"java/time/temporal/ChronoUnit\00", align 1 +@.TypeMapEntry.19669_from = private unnamed_addr constant [43 x i8] c"Java.Time.Temporal.ITemporal, Mono.Android\00", align 1 +@.TypeMapEntry.19670_to = private unnamed_addr constant [28 x i8] c"java/time/temporal/Temporal\00", align 1 +@.TypeMapEntry.19671_from = private unnamed_addr constant [51 x i8] c"Java.Time.Temporal.ITemporalAccessor, Mono.Android\00", align 1 +@.TypeMapEntry.19672_to = private unnamed_addr constant [36 x i8] c"java/time/temporal/TemporalAccessor\00", align 1 +@.TypeMapEntry.19673_from = private unnamed_addr constant [58 x i8] c"Java.Time.Temporal.ITemporalAccessorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19674_from = private unnamed_addr constant [51 x i8] c"Java.Time.Temporal.ITemporalAdjuster, Mono.Android\00", align 1 +@.TypeMapEntry.19675_to = private unnamed_addr constant [36 x i8] c"java/time/temporal/TemporalAdjuster\00", align 1 +@.TypeMapEntry.19676_from = private unnamed_addr constant [58 x i8] c"Java.Time.Temporal.ITemporalAdjusterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19677_from = private unnamed_addr constant [49 x i8] c"Java.Time.Temporal.ITemporalAmount, Mono.Android\00", align 1 +@.TypeMapEntry.19678_to = private unnamed_addr constant [34 x i8] c"java/time/temporal/TemporalAmount\00", align 1 +@.TypeMapEntry.19679_from = private unnamed_addr constant [56 x i8] c"Java.Time.Temporal.ITemporalAmountInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19680_from = private unnamed_addr constant [48 x i8] c"Java.Time.Temporal.ITemporalField, Mono.Android\00", align 1 +@.TypeMapEntry.19681_to = private unnamed_addr constant [33 x i8] c"java/time/temporal/TemporalField\00", align 1 +@.TypeMapEntry.19682_from = private unnamed_addr constant [55 x i8] c"Java.Time.Temporal.ITemporalFieldInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19683_from = private unnamed_addr constant [50 x i8] c"Java.Time.Temporal.ITemporalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19684_from = private unnamed_addr constant [48 x i8] c"Java.Time.Temporal.ITemporalQuery, Mono.Android\00", align 1 +@.TypeMapEntry.19685_to = private unnamed_addr constant [33 x i8] c"java/time/temporal/TemporalQuery\00", align 1 +@.TypeMapEntry.19686_from = private unnamed_addr constant [55 x i8] c"Java.Time.Temporal.ITemporalQueryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19687_from = private unnamed_addr constant [47 x i8] c"Java.Time.Temporal.ITemporalUnit, Mono.Android\00", align 1 +@.TypeMapEntry.19688_to = private unnamed_addr constant [32 x i8] c"java/time/temporal/TemporalUnit\00", align 1 +@.TypeMapEntry.19689_from = private unnamed_addr constant [54 x i8] c"Java.Time.Temporal.ITemporalUnitInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19690_from = private unnamed_addr constant [43 x i8] c"Java.Time.Temporal.IsoFields, Mono.Android\00", align 1 +@.TypeMapEntry.19691_to = private unnamed_addr constant [29 x i8] c"java/time/temporal/IsoFields\00", align 1 +@.TypeMapEntry.19692_from = private unnamed_addr constant [46 x i8] c"Java.Time.Temporal.JulianFields, Mono.Android\00", align 1 +@.TypeMapEntry.19693_to = private unnamed_addr constant [32 x i8] c"java/time/temporal/JulianFields\00", align 1 +@.TypeMapEntry.19694_from = private unnamed_addr constant [51 x i8] c"Java.Time.Temporal.TemporalAdjusters, Mono.Android\00", align 1 +@.TypeMapEntry.19695_to = private unnamed_addr constant [37 x i8] c"java/time/temporal/TemporalAdjusters\00", align 1 +@.TypeMapEntry.19696_from = private unnamed_addr constant [49 x i8] c"Java.Time.Temporal.TemporalQueries, Mono.Android\00", align 1 +@.TypeMapEntry.19697_to = private unnamed_addr constant [35 x i8] c"java/time/temporal/TemporalQueries\00", align 1 +@.TypeMapEntry.19698_from = private unnamed_addr constant [66 x i8] c"Java.Time.Temporal.UnsupportedTemporalTypeException, Mono.Android\00", align 1 +@.TypeMapEntry.19699_to = private unnamed_addr constant [52 x i8] c"java/time/temporal/UnsupportedTemporalTypeException\00", align 1 +@.TypeMapEntry.19700_from = private unnamed_addr constant [44 x i8] c"Java.Time.Temporal.ValueRange, Mono.Android\00", align 1 +@.TypeMapEntry.19701_to = private unnamed_addr constant [30 x i8] c"java/time/temporal/ValueRange\00", align 1 +@.TypeMapEntry.19702_from = private unnamed_addr constant [44 x i8] c"Java.Time.Temporal.WeekFields, Mono.Android\00", align 1 +@.TypeMapEntry.19703_to = private unnamed_addr constant [30 x i8] c"java/time/temporal/WeekFields\00", align 1 +@.TypeMapEntry.19704_from = private unnamed_addr constant [29 x i8] c"Java.Time.Year, Mono.Android\00", align 1 +@.TypeMapEntry.19705_to = private unnamed_addr constant [15 x i8] c"java/time/Year\00", align 1 +@.TypeMapEntry.19706_from = private unnamed_addr constant [34 x i8] c"Java.Time.YearMonth, Mono.Android\00", align 1 +@.TypeMapEntry.19707_to = private unnamed_addr constant [20 x i8] c"java/time/YearMonth\00", align 1 +@.TypeMapEntry.19708_from = private unnamed_addr constant [50 x i8] c"Java.Time.Zone.ZoneOffsetTransition, Mono.Android\00", align 1 +@.TypeMapEntry.19709_to = private unnamed_addr constant [36 x i8] c"java/time/zone/ZoneOffsetTransition\00", align 1 +@.TypeMapEntry.19710_from = private unnamed_addr constant [69 x i8] c"Java.Time.Zone.ZoneOffsetTransitionRule+TimeDefinition, Mono.Android\00", align 1 +@.TypeMapEntry.19711_to = private unnamed_addr constant [55 x i8] c"java/time/zone/ZoneOffsetTransitionRule$TimeDefinition\00", align 1 +@.TypeMapEntry.19712_from = private unnamed_addr constant [54 x i8] c"Java.Time.Zone.ZoneOffsetTransitionRule, Mono.Android\00", align 1 +@.TypeMapEntry.19713_to = private unnamed_addr constant [40 x i8] c"java/time/zone/ZoneOffsetTransitionRule\00", align 1 +@.TypeMapEntry.19714_from = private unnamed_addr constant [39 x i8] c"Java.Time.Zone.ZoneRules, Mono.Android\00", align 1 +@.TypeMapEntry.19715_to = private unnamed_addr constant [25 x i8] c"java/time/zone/ZoneRules\00", align 1 +@.TypeMapEntry.19716_from = private unnamed_addr constant [48 x i8] c"Java.Time.Zone.ZoneRulesException, Mono.Android\00", align 1 +@.TypeMapEntry.19717_to = private unnamed_addr constant [34 x i8] c"java/time/zone/ZoneRulesException\00", align 1 +@.TypeMapEntry.19718_from = private unnamed_addr constant [31 x i8] c"Java.Time.ZoneId, Mono.Android\00", align 1 +@.TypeMapEntry.19719_to = private unnamed_addr constant [17 x i8] c"java/time/ZoneId\00", align 1 +@.TypeMapEntry.19720_from = private unnamed_addr constant [38 x i8] c"Java.Time.ZoneIdInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19721_from = private unnamed_addr constant [35 x i8] c"Java.Time.ZoneOffset, Mono.Android\00", align 1 +@.TypeMapEntry.19722_to = private unnamed_addr constant [21 x i8] c"java/time/ZoneOffset\00", align 1 +@.TypeMapEntry.19723_from = private unnamed_addr constant [38 x i8] c"Java.Time.ZonedDateTime, Mono.Android\00", align 1 +@.TypeMapEntry.19724_to = private unnamed_addr constant [24 x i8] c"java/time/ZonedDateTime\00", align 1 +@.TypeMapEntry.19725_from = private unnamed_addr constant [43 x i8] c"Java.Util.AbstractCollection, Mono.Android\00", align 1 +@.TypeMapEntry.19726_to = private unnamed_addr constant [29 x i8] c"java/util/AbstractCollection\00", align 1 +@.TypeMapEntry.19727_from = private unnamed_addr constant [50 x i8] c"Java.Util.AbstractCollectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19728_from = private unnamed_addr constant [37 x i8] c"Java.Util.AbstractList, Mono.Android\00", align 1 +@.TypeMapEntry.19729_to = private unnamed_addr constant [23 x i8] c"java/util/AbstractList\00", align 1 +@.TypeMapEntry.19730_from = private unnamed_addr constant [44 x i8] c"Java.Util.AbstractListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19731_from = private unnamed_addr constant [48 x i8] c"Java.Util.AbstractMap+SimpleEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19732_to = private unnamed_addr constant [34 x i8] c"java/util/AbstractMap$SimpleEntry\00", align 1 +@.TypeMapEntry.19733_from = private unnamed_addr constant [57 x i8] c"Java.Util.AbstractMap+SimpleImmutableEntry, Mono.Android\00", align 1 +@.TypeMapEntry.19734_to = private unnamed_addr constant [43 x i8] c"java/util/AbstractMap$SimpleImmutableEntry\00", align 1 +@.TypeMapEntry.19735_from = private unnamed_addr constant [36 x i8] c"Java.Util.AbstractMap, Mono.Android\00", align 1 +@.TypeMapEntry.19736_to = private unnamed_addr constant [22 x i8] c"java/util/AbstractMap\00", align 1 +@.TypeMapEntry.19737_from = private unnamed_addr constant [43 x i8] c"Java.Util.AbstractMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19738_from = private unnamed_addr constant [38 x i8] c"Java.Util.AbstractQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19739_to = private unnamed_addr constant [24 x i8] c"java/util/AbstractQueue\00", align 1 +@.TypeMapEntry.19740_from = private unnamed_addr constant [45 x i8] c"Java.Util.AbstractQueueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19741_from = private unnamed_addr constant [47 x i8] c"Java.Util.AbstractSequentialList, Mono.Android\00", align 1 +@.TypeMapEntry.19742_to = private unnamed_addr constant [33 x i8] c"java/util/AbstractSequentialList\00", align 1 +@.TypeMapEntry.19743_from = private unnamed_addr constant [54 x i8] c"Java.Util.AbstractSequentialListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19744_from = private unnamed_addr constant [36 x i8] c"Java.Util.AbstractSet, Mono.Android\00", align 1 +@.TypeMapEntry.19745_to = private unnamed_addr constant [22 x i8] c"java/util/AbstractSet\00", align 1 +@.TypeMapEntry.19746_from = private unnamed_addr constant [43 x i8] c"Java.Util.AbstractSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19747_from = private unnamed_addr constant [35 x i8] c"Java.Util.ArrayDeque, Mono.Android\00", align 1 +@.TypeMapEntry.19748_to = private unnamed_addr constant [21 x i8] c"java/util/ArrayDeque\00", align 1 +@.TypeMapEntry.19749_from = private unnamed_addr constant [34 x i8] c"Java.Util.ArrayList, Mono.Android\00", align 1 +@.TypeMapEntry.19750_from = private unnamed_addr constant [31 x i8] c"Java.Util.Arrays, Mono.Android\00", align 1 +@.TypeMapEntry.19751_to = private unnamed_addr constant [17 x i8] c"java/util/Arrays\00", align 1 +@.TypeMapEntry.19752_from = private unnamed_addr constant [39 x i8] c"Java.Util.Base64+Decoder, Mono.Android\00", align 1 +@.TypeMapEntry.19753_to = private unnamed_addr constant [25 x i8] c"java/util/Base64$Decoder\00", align 1 +@.TypeMapEntry.19754_from = private unnamed_addr constant [39 x i8] c"Java.Util.Base64+Encoder, Mono.Android\00", align 1 +@.TypeMapEntry.19755_to = private unnamed_addr constant [25 x i8] c"java/util/Base64$Encoder\00", align 1 +@.TypeMapEntry.19756_from = private unnamed_addr constant [31 x i8] c"Java.Util.Base64, Mono.Android\00", align 1 +@.TypeMapEntry.19757_to = private unnamed_addr constant [17 x i8] c"java/util/Base64\00", align 1 +@.TypeMapEntry.19758_from = private unnamed_addr constant [31 x i8] c"Java.Util.BitSet, Mono.Android\00", align 1 +@.TypeMapEntry.19759_to = private unnamed_addr constant [17 x i8] c"java/util/BitSet\00", align 1 +@.TypeMapEntry.19760_from = private unnamed_addr constant [41 x i8] c"Java.Util.Calendar+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.19761_to = private unnamed_addr constant [27 x i8] c"java/util/Calendar$Builder\00", align 1 +@.TypeMapEntry.19762_from = private unnamed_addr constant [33 x i8] c"Java.Util.Calendar, Mono.Android\00", align 1 +@.TypeMapEntry.19763_to = private unnamed_addr constant [19 x i8] c"java/util/Calendar\00", align 1 +@.TypeMapEntry.19764_from = private unnamed_addr constant [40 x i8] c"Java.Util.CalendarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19765_from = private unnamed_addr constant [36 x i8] c"Java.Util.Collections, Mono.Android\00", align 1 +@.TypeMapEntry.19766_to = private unnamed_addr constant [22 x i8] c"java/util/Collections\00", align 1 +@.TypeMapEntry.19767_from = private unnamed_addr constant [35 x i8] c"Java.Util.Comparator, Mono.Android\00", align 1 +@.TypeMapEntry.19768_to = private unnamed_addr constant [35 x i8] c"mono/internal/java/util/Comparator\00", align 1 +@.TypeMapEntry.19769_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.AbstractExecutorService, Mono.Android\00", align 1 +@.TypeMapEntry.19770_to = private unnamed_addr constant [45 x i8] c"java/util/concurrent/AbstractExecutorService\00", align 1 +@.TypeMapEntry.19771_from = private unnamed_addr constant [66 x i8] c"Java.Util.Concurrent.AbstractExecutorServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19772_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.ArrayBlockingQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19773_to = private unnamed_addr constant [40 x i8] c"java/util/concurrent/ArrayBlockingQueue\00", align 1 +@.TypeMapEntry.19774_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.Atomic.AtomicBoolean, Mono.Android\00", align 1 +@.TypeMapEntry.19775_to = private unnamed_addr constant [42 x i8] c"java/util/concurrent/atomic/AtomicBoolean\00", align 1 +@.TypeMapEntry.19776_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.Atomic.AtomicInteger, Mono.Android\00", align 1 +@.TypeMapEntry.19777_to = private unnamed_addr constant [42 x i8] c"java/util/concurrent/atomic/AtomicInteger\00", align 1 +@.TypeMapEntry.19778_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.Atomic.AtomicIntegerArray, Mono.Android\00", align 1 +@.TypeMapEntry.19779_to = private unnamed_addr constant [47 x i8] c"java/util/concurrent/atomic/AtomicIntegerArray\00", align 1 +@.TypeMapEntry.19780_from = private unnamed_addr constant [68 x i8] c"Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdater, Mono.Android\00", align 1 +@.TypeMapEntry.19781_to = private unnamed_addr constant [54 x i8] c"java/util/concurrent/atomic/AtomicIntegerFieldUpdater\00", align 1 +@.TypeMapEntry.19782_from = private unnamed_addr constant [75 x i8] c"Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdaterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19783_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.Atomic.AtomicLong, Mono.Android\00", align 1 +@.TypeMapEntry.19784_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/atomic/AtomicLong\00", align 1 +@.TypeMapEntry.19785_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.Atomic.AtomicLongArray, Mono.Android\00", align 1 +@.TypeMapEntry.19786_to = private unnamed_addr constant [44 x i8] c"java/util/concurrent/atomic/AtomicLongArray\00", align 1 +@.TypeMapEntry.19787_from = private unnamed_addr constant [65 x i8] c"Java.Util.Concurrent.Atomic.AtomicLongFieldUpdater, Mono.Android\00", align 1 +@.TypeMapEntry.19788_to = private unnamed_addr constant [51 x i8] c"java/util/concurrent/atomic/AtomicLongFieldUpdater\00", align 1 +@.TypeMapEntry.19789_from = private unnamed_addr constant [72 x i8] c"Java.Util.Concurrent.Atomic.AtomicLongFieldUpdaterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19790_from = private unnamed_addr constant [66 x i8] c"Java.Util.Concurrent.Atomic.AtomicMarkableReference, Mono.Android\00", align 1 +@.TypeMapEntry.19791_to = private unnamed_addr constant [52 x i8] c"java/util/concurrent/atomic/AtomicMarkableReference\00", align 1 +@.TypeMapEntry.19792_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.Atomic.AtomicReference, Mono.Android\00", align 1 +@.TypeMapEntry.19793_to = private unnamed_addr constant [44 x i8] c"java/util/concurrent/atomic/AtomicReference\00", align 1 +@.TypeMapEntry.19794_from = private unnamed_addr constant [63 x i8] c"Java.Util.Concurrent.Atomic.AtomicReferenceArray, Mono.Android\00", align 1 +@.TypeMapEntry.19795_to = private unnamed_addr constant [49 x i8] c"java/util/concurrent/atomic/AtomicReferenceArray\00", align 1 +@.TypeMapEntry.19796_from = private unnamed_addr constant [70 x i8] c"Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdater, Mono.Android\00", align 1 +@.TypeMapEntry.19797_to = private unnamed_addr constant [56 x i8] c"java/util/concurrent/atomic/AtomicReferenceFieldUpdater\00", align 1 +@.TypeMapEntry.19798_from = private unnamed_addr constant [77 x i8] c"Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdaterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19799_from = private unnamed_addr constant [65 x i8] c"Java.Util.Concurrent.Atomic.AtomicStampedReference, Mono.Android\00", align 1 +@.TypeMapEntry.19800_to = private unnamed_addr constant [51 x i8] c"java/util/concurrent/atomic/AtomicStampedReference\00", align 1 +@.TypeMapEntry.19801_from = private unnamed_addr constant [60 x i8] c"Java.Util.Concurrent.Atomic.DoubleAccumulator, Mono.Android\00", align 1 +@.TypeMapEntry.19802_to = private unnamed_addr constant [46 x i8] c"java/util/concurrent/atomic/DoubleAccumulator\00", align 1 +@.TypeMapEntry.19803_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.Atomic.DoubleAdder, Mono.Android\00", align 1 +@.TypeMapEntry.19804_to = private unnamed_addr constant [40 x i8] c"java/util/concurrent/atomic/DoubleAdder\00", align 1 +@.TypeMapEntry.19805_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.Atomic.LongAccumulator, Mono.Android\00", align 1 +@.TypeMapEntry.19806_to = private unnamed_addr constant [44 x i8] c"java/util/concurrent/atomic/LongAccumulator\00", align 1 +@.TypeMapEntry.19807_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.Atomic.LongAdder, Mono.Android\00", align 1 +@.TypeMapEntry.19808_to = private unnamed_addr constant [38 x i8] c"java/util/concurrent/atomic/LongAdder\00", align 1 +@.TypeMapEntry.19809_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.Atomic.Striped64, Mono.Android\00", align 1 +@.TypeMapEntry.19810_to = private unnamed_addr constant [38 x i8] c"java/util/concurrent/atomic/Striped64\00", align 1 +@.TypeMapEntry.19811_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.Atomic.Striped64Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.19812_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.BrokenBarrierException, Mono.Android\00", align 1 +@.TypeMapEntry.19813_to = private unnamed_addr constant [44 x i8] c"java/util/concurrent/BrokenBarrierException\00", align 1 +@.TypeMapEntry.19814_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.CancellationException, Mono.Android\00", align 1 +@.TypeMapEntry.19815_to = private unnamed_addr constant [43 x i8] c"java/util/concurrent/CancellationException\00", align 1 +@.TypeMapEntry.19816_from = private unnamed_addr constant [81 x i8] c"Java.Util.Concurrent.CompletableFuture+IAsynchronousCompletionTask, Mono.Android\00", align 1 +@.TypeMapEntry.19817_to = private unnamed_addr constant [66 x i8] c"java/util/concurrent/CompletableFuture$AsynchronousCompletionTask\00", align 1 +@.TypeMapEntry.19818_from = private unnamed_addr constant [88 x i8] c"Java.Util.Concurrent.CompletableFuture+IAsynchronousCompletionTaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19819_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.CompletableFuture, Mono.Android\00", align 1 +@.TypeMapEntry.19820_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/CompletableFuture\00", align 1 +@.TypeMapEntry.19821_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.CompletionException, Mono.Android\00", align 1 +@.TypeMapEntry.19822_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/CompletionException\00", align 1 +@.TypeMapEntry.19823_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.ConcurrentHashMap, Mono.Android\00", align 1 +@.TypeMapEntry.19824_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/ConcurrentHashMap\00", align 1 +@.TypeMapEntry.19825_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.ConcurrentLinkedDeque, Mono.Android\00", align 1 +@.TypeMapEntry.19826_to = private unnamed_addr constant [43 x i8] c"java/util/concurrent/ConcurrentLinkedDeque\00", align 1 +@.TypeMapEntry.19827_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.ConcurrentLinkedQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19828_to = private unnamed_addr constant [43 x i8] c"java/util/concurrent/ConcurrentLinkedQueue\00", align 1 +@.TypeMapEntry.19829_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.ConcurrentSkipListMap, Mono.Android\00", align 1 +@.TypeMapEntry.19830_to = private unnamed_addr constant [43 x i8] c"java/util/concurrent/ConcurrentSkipListMap\00", align 1 +@.TypeMapEntry.19831_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.CopyOnWriteArrayList, Mono.Android\00", align 1 +@.TypeMapEntry.19832_to = private unnamed_addr constant [42 x i8] c"java/util/concurrent/CopyOnWriteArrayList\00", align 1 +@.TypeMapEntry.19833_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.CopyOnWriteArraySet, Mono.Android\00", align 1 +@.TypeMapEntry.19834_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/CopyOnWriteArraySet\00", align 1 +@.TypeMapEntry.19835_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.CountDownLatch, Mono.Android\00", align 1 +@.TypeMapEntry.19836_to = private unnamed_addr constant [36 x i8] c"java/util/concurrent/CountDownLatch\00", align 1 +@.TypeMapEntry.19837_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.CountedCompleter, Mono.Android\00", align 1 +@.TypeMapEntry.19838_to = private unnamed_addr constant [38 x i8] c"java/util/concurrent/CountedCompleter\00", align 1 +@.TypeMapEntry.19839_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.CountedCompleterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19840_from = private unnamed_addr constant [49 x i8] c"Java.Util.Concurrent.CyclicBarrier, Mono.Android\00", align 1 +@.TypeMapEntry.19841_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/CyclicBarrier\00", align 1 +@.TypeMapEntry.19842_from = private unnamed_addr constant [46 x i8] c"Java.Util.Concurrent.DelayQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19843_to = private unnamed_addr constant [32 x i8] c"java/util/concurrent/DelayQueue\00", align 1 +@.TypeMapEntry.19844_from = private unnamed_addr constant [45 x i8] c"Java.Util.Concurrent.Exchanger, Mono.Android\00", align 1 +@.TypeMapEntry.19845_to = private unnamed_addr constant [31 x i8] c"java/util/concurrent/Exchanger\00", align 1 +@.TypeMapEntry.19846_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.ExecutionException, Mono.Android\00", align 1 +@.TypeMapEntry.19847_to = private unnamed_addr constant [40 x i8] c"java/util/concurrent/ExecutionException\00", align 1 +@.TypeMapEntry.19848_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.ExecutorCompletionService, Mono.Android\00", align 1 +@.TypeMapEntry.19849_to = private unnamed_addr constant [47 x i8] c"java/util/concurrent/ExecutorCompletionService\00", align 1 +@.TypeMapEntry.19850_from = private unnamed_addr constant [45 x i8] c"Java.Util.Concurrent.Executors, Mono.Android\00", align 1 +@.TypeMapEntry.19851_to = private unnamed_addr constant [31 x i8] c"java/util/concurrent/Executors\00", align 1 +@.TypeMapEntry.19852_from = private unnamed_addr constant [51 x i8] c"Java.Util.Concurrent.Flow+IProcessor, Mono.Android\00", align 1 +@.TypeMapEntry.19853_to = private unnamed_addr constant [36 x i8] c"java/util/concurrent/Flow$Processor\00", align 1 +@.TypeMapEntry.19854_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.Flow+IProcessorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19855_from = private unnamed_addr constant [51 x i8] c"Java.Util.Concurrent.Flow+IPublisher, Mono.Android\00", align 1 +@.TypeMapEntry.19856_to = private unnamed_addr constant [36 x i8] c"java/util/concurrent/Flow$Publisher\00", align 1 +@.TypeMapEntry.19857_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.Flow+IPublisherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19858_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.Flow+ISubscriber, Mono.Android\00", align 1 +@.TypeMapEntry.19859_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/Flow$Subscriber\00", align 1 +@.TypeMapEntry.19860_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.Flow+ISubscriberInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19861_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.Flow+ISubscription, Mono.Android\00", align 1 +@.TypeMapEntry.19862_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/Flow$Subscription\00", align 1 +@.TypeMapEntry.19863_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.Flow+ISubscriptionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19864_from = private unnamed_addr constant [40 x i8] c"Java.Util.Concurrent.Flow, Mono.Android\00", align 1 +@.TypeMapEntry.19865_to = private unnamed_addr constant [26 x i8] c"java/util/concurrent/Flow\00", align 1 +@.TypeMapEntry.19866_from = private unnamed_addr constant [77 x i8] c"Java.Util.Concurrent.ForkJoinPool+IForkJoinWorkerThreadFactory, Mono.Android\00", align 1 +@.TypeMapEntry.19867_to = private unnamed_addr constant [62 x i8] c"java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory\00", align 1 +@.TypeMapEntry.19868_from = private unnamed_addr constant [84 x i8] c"Java.Util.Concurrent.ForkJoinPool+IForkJoinWorkerThreadFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19869_from = private unnamed_addr constant [64 x i8] c"Java.Util.Concurrent.ForkJoinPool+IManagedBlocker, Mono.Android\00", align 1 +@.TypeMapEntry.19870_to = private unnamed_addr constant [49 x i8] c"java/util/concurrent/ForkJoinPool$ManagedBlocker\00", align 1 +@.TypeMapEntry.19871_from = private unnamed_addr constant [71 x i8] c"Java.Util.Concurrent.ForkJoinPool+IManagedBlockerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19872_from = private unnamed_addr constant [48 x i8] c"Java.Util.Concurrent.ForkJoinPool, Mono.Android\00", align 1 +@.TypeMapEntry.19873_to = private unnamed_addr constant [34 x i8] c"java/util/concurrent/ForkJoinPool\00", align 1 +@.TypeMapEntry.19874_from = private unnamed_addr constant [48 x i8] c"Java.Util.Concurrent.ForkJoinTask, Mono.Android\00", align 1 +@.TypeMapEntry.19875_to = private unnamed_addr constant [34 x i8] c"java/util/concurrent/ForkJoinTask\00", align 1 +@.TypeMapEntry.19876_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.ForkJoinTaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19877_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.ForkJoinWorkerThread, Mono.Android\00", align 1 +@.TypeMapEntry.19878_to = private unnamed_addr constant [42 x i8] c"java/util/concurrent/ForkJoinWorkerThread\00", align 1 +@.TypeMapEntry.19879_from = private unnamed_addr constant [46 x i8] c"Java.Util.Concurrent.FutureTask, Mono.Android\00", align 1 +@.TypeMapEntry.19880_to = private unnamed_addr constant [32 x i8] c"java/util/concurrent/FutureTask\00", align 1 +@.TypeMapEntry.19881_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.IBlockingDeque, Mono.Android\00", align 1 +@.TypeMapEntry.19882_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/BlockingDeque\00", align 1 +@.TypeMapEntry.19883_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.IBlockingDequeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19884_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.IBlockingQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19885_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/BlockingQueue\00", align 1 +@.TypeMapEntry.19886_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.IBlockingQueueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19887_from = private unnamed_addr constant [45 x i8] c"Java.Util.Concurrent.ICallable, Mono.Android\00", align 1 +@.TypeMapEntry.19888_to = private unnamed_addr constant [30 x i8] c"java/util/concurrent/Callable\00", align 1 +@.TypeMapEntry.19889_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.ICallableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19890_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.ICompletionService, Mono.Android\00", align 1 +@.TypeMapEntry.19891_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/CompletionService\00", align 1 +@.TypeMapEntry.19892_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.ICompletionServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19893_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.ICompletionStage, Mono.Android\00", align 1 +@.TypeMapEntry.19894_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/CompletionStage\00", align 1 +@.TypeMapEntry.19895_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.ICompletionStageInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19896_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.IConcurrentMap, Mono.Android\00", align 1 +@.TypeMapEntry.19897_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/ConcurrentMap\00", align 1 +@.TypeMapEntry.19898_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.IConcurrentMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19899_from = private unnamed_addr constant [44 x i8] c"Java.Util.Concurrent.IDelayed, Mono.Android\00", align 1 +@.TypeMapEntry.19900_to = private unnamed_addr constant [29 x i8] c"java/util/concurrent/Delayed\00", align 1 +@.TypeMapEntry.19901_from = private unnamed_addr constant [51 x i8] c"Java.Util.Concurrent.IDelayedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19902_from = private unnamed_addr constant [45 x i8] c"Java.Util.Concurrent.IExecutor, Mono.Android\00", align 1 +@.TypeMapEntry.19903_to = private unnamed_addr constant [30 x i8] c"java/util/concurrent/Executor\00", align 1 +@.TypeMapEntry.19904_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.IExecutorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19905_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.IExecutorService, Mono.Android\00", align 1 +@.TypeMapEntry.19906_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/ExecutorService\00", align 1 +@.TypeMapEntry.19907_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.IExecutorServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19908_from = private unnamed_addr constant [43 x i8] c"Java.Util.Concurrent.IFuture, Mono.Android\00", align 1 +@.TypeMapEntry.19909_to = private unnamed_addr constant [28 x i8] c"java/util/concurrent/Future\00", align 1 +@.TypeMapEntry.19910_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.IFutureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19911_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.IRejectedExecutionHandler, Mono.Android\00", align 1 +@.TypeMapEntry.19912_to = private unnamed_addr constant [46 x i8] c"java/util/concurrent/RejectedExecutionHandler\00", align 1 +@.TypeMapEntry.19913_from = private unnamed_addr constant [68 x i8] c"Java.Util.Concurrent.IRejectedExecutionHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19914_from = private unnamed_addr constant [51 x i8] c"Java.Util.Concurrent.IRunnableFuture, Mono.Android\00", align 1 +@.TypeMapEntry.19915_to = private unnamed_addr constant [36 x i8] c"java/util/concurrent/RunnableFuture\00", align 1 +@.TypeMapEntry.19916_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.IRunnableFutureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19917_from = private unnamed_addr constant [60 x i8] c"Java.Util.Concurrent.IRunnableScheduledFuture, Mono.Android\00", align 1 +@.TypeMapEntry.19918_to = private unnamed_addr constant [45 x i8] c"java/util/concurrent/RunnableScheduledFuture\00", align 1 +@.TypeMapEntry.19919_from = private unnamed_addr constant [67 x i8] c"Java.Util.Concurrent.IRunnableScheduledFutureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19920_from = private unnamed_addr constant [61 x i8] c"Java.Util.Concurrent.IScheduledExecutorService, Mono.Android\00", align 1 +@.TypeMapEntry.19921_to = private unnamed_addr constant [46 x i8] c"java/util/concurrent/ScheduledExecutorService\00", align 1 +@.TypeMapEntry.19922_from = private unnamed_addr constant [68 x i8] c"Java.Util.Concurrent.IScheduledExecutorServiceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19923_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.IScheduledFuture, Mono.Android\00", align 1 +@.TypeMapEntry.19924_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/ScheduledFuture\00", align 1 +@.TypeMapEntry.19925_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.IScheduledFutureInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19926_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.IThreadFactory, Mono.Android\00", align 1 +@.TypeMapEntry.19927_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/ThreadFactory\00", align 1 +@.TypeMapEntry.19928_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.IThreadFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19929_from = private unnamed_addr constant [50 x i8] c"Java.Util.Concurrent.ITransferQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19930_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/TransferQueue\00", align 1 +@.TypeMapEntry.19931_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.ITransferQueueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19932_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.LinkedBlockingDeque, Mono.Android\00", align 1 +@.TypeMapEntry.19933_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/LinkedBlockingDeque\00", align 1 +@.TypeMapEntry.19934_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.LinkedBlockingQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19935_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/LinkedBlockingQueue\00", align 1 +@.TypeMapEntry.19936_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.LinkedTransferQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19937_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/LinkedTransferQueue\00", align 1 +@.TypeMapEntry.19938_from = private unnamed_addr constant [69 x i8] c"Java.Util.Concurrent.Locks.AbstractOwnableSynchronizer, Mono.Android\00", align 1 +@.TypeMapEntry.19939_to = private unnamed_addr constant [55 x i8] c"java/util/concurrent/locks/AbstractOwnableSynchronizer\00", align 1 +@.TypeMapEntry.19940_from = private unnamed_addr constant [76 x i8] c"Java.Util.Concurrent.Locks.AbstractOwnableSynchronizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19941_from = private unnamed_addr constant [88 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedLongSynchronizer+ConditionObject, Mono.Android\00", align 1 +@.TypeMapEntry.19942_to = private unnamed_addr constant [74 x i8] c"java/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject\00", align 1 +@.TypeMapEntry.19943_from = private unnamed_addr constant [72 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedLongSynchronizer, Mono.Android\00", align 1 +@.TypeMapEntry.19944_to = private unnamed_addr constant [58 x i8] c"java/util/concurrent/locks/AbstractQueuedLongSynchronizer\00", align 1 +@.TypeMapEntry.19945_from = private unnamed_addr constant [79 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedLongSynchronizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19946_from = private unnamed_addr constant [84 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedSynchronizer+ConditionObject, Mono.Android\00", align 1 +@.TypeMapEntry.19947_to = private unnamed_addr constant [70 x i8] c"java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject\00", align 1 +@.TypeMapEntry.19948_from = private unnamed_addr constant [68 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedSynchronizer, Mono.Android\00", align 1 +@.TypeMapEntry.19949_to = private unnamed_addr constant [54 x i8] c"java/util/concurrent/locks/AbstractQueuedSynchronizer\00", align 1 +@.TypeMapEntry.19950_from = private unnamed_addr constant [75 x i8] c"Java.Util.Concurrent.Locks.AbstractQueuedSynchronizerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19951_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.Locks.ICondition, Mono.Android\00", align 1 +@.TypeMapEntry.19952_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/locks/Condition\00", align 1 +@.TypeMapEntry.19953_from = private unnamed_addr constant [59 x i8] c"Java.Util.Concurrent.Locks.IConditionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19954_from = private unnamed_addr constant [47 x i8] c"Java.Util.Concurrent.Locks.ILock, Mono.Android\00", align 1 +@.TypeMapEntry.19955_to = private unnamed_addr constant [32 x i8] c"java/util/concurrent/locks/Lock\00", align 1 +@.TypeMapEntry.19956_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.Locks.ILockInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19957_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.Locks.IReadWriteLock, Mono.Android\00", align 1 +@.TypeMapEntry.19958_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/locks/ReadWriteLock\00", align 1 +@.TypeMapEntry.19959_from = private unnamed_addr constant [63 x i8] c"Java.Util.Concurrent.Locks.IReadWriteLockInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19960_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.Locks.LockSupport, Mono.Android\00", align 1 +@.TypeMapEntry.19961_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/locks/LockSupport\00", align 1 +@.TypeMapEntry.19962_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.Locks.ReentrantLock, Mono.Android\00", align 1 +@.TypeMapEntry.19963_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/locks/ReentrantLock\00", align 1 +@.TypeMapEntry.19964_from = private unnamed_addr constant [82 x i8] c"Java.Util.Concurrent.Locks.ReentrantReadWriteLock+ReentrantReadLock, Mono.Android\00", align 1 +@.TypeMapEntry.19965_to = private unnamed_addr constant [59 x i8] c"java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock\00", align 1 +@.TypeMapEntry.19966_from = private unnamed_addr constant [83 x i8] c"Java.Util.Concurrent.Locks.ReentrantReadWriteLock+ReentrantWriteLock, Mono.Android\00", align 1 +@.TypeMapEntry.19967_to = private unnamed_addr constant [60 x i8] c"java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock\00", align 1 +@.TypeMapEntry.19968_from = private unnamed_addr constant [64 x i8] c"Java.Util.Concurrent.Locks.ReentrantReadWriteLock, Mono.Android\00", align 1 +@.TypeMapEntry.19969_to = private unnamed_addr constant [50 x i8] c"java/util/concurrent/locks/ReentrantReadWriteLock\00", align 1 +@.TypeMapEntry.19970_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.Locks.StampedLock, Mono.Android\00", align 1 +@.TypeMapEntry.19971_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/locks/StampedLock\00", align 1 +@.TypeMapEntry.19972_from = private unnamed_addr constant [42 x i8] c"Java.Util.Concurrent.Phaser, Mono.Android\00", align 1 +@.TypeMapEntry.19973_to = private unnamed_addr constant [28 x i8] c"java/util/concurrent/Phaser\00", align 1 +@.TypeMapEntry.19974_from = private unnamed_addr constant [57 x i8] c"Java.Util.Concurrent.PriorityBlockingQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19975_to = private unnamed_addr constant [43 x i8] c"java/util/concurrent/PriorityBlockingQueue\00", align 1 +@.TypeMapEntry.19976_from = private unnamed_addr constant [51 x i8] c"Java.Util.Concurrent.RecursiveAction, Mono.Android\00", align 1 +@.TypeMapEntry.19977_to = private unnamed_addr constant [37 x i8] c"java/util/concurrent/RecursiveAction\00", align 1 +@.TypeMapEntry.19978_from = private unnamed_addr constant [58 x i8] c"Java.Util.Concurrent.RecursiveActionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19979_from = private unnamed_addr constant [49 x i8] c"Java.Util.Concurrent.RecursiveTask, Mono.Android\00", align 1 +@.TypeMapEntry.19980_to = private unnamed_addr constant [35 x i8] c"java/util/concurrent/RecursiveTask\00", align 1 +@.TypeMapEntry.19981_from = private unnamed_addr constant [56 x i8] c"Java.Util.Concurrent.RecursiveTaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.19982_from = private unnamed_addr constant [62 x i8] c"Java.Util.Concurrent.RejectedExecutionException, Mono.Android\00", align 1 +@.TypeMapEntry.19983_to = private unnamed_addr constant [48 x i8] c"java/util/concurrent/RejectedExecutionException\00", align 1 +@.TypeMapEntry.19984_from = private unnamed_addr constant [63 x i8] c"Java.Util.Concurrent.ScheduledThreadPoolExecutor, Mono.Android\00", align 1 +@.TypeMapEntry.19985_to = private unnamed_addr constant [49 x i8] c"java/util/concurrent/ScheduledThreadPoolExecutor\00", align 1 +@.TypeMapEntry.19986_from = private unnamed_addr constant [45 x i8] c"Java.Util.Concurrent.Semaphore, Mono.Android\00", align 1 +@.TypeMapEntry.19987_to = private unnamed_addr constant [31 x i8] c"java/util/concurrent/Semaphore\00", align 1 +@.TypeMapEntry.19988_from = private unnamed_addr constant [55 x i8] c"Java.Util.Concurrent.SubmissionPublisher, Mono.Android\00", align 1 +@.TypeMapEntry.19989_to = private unnamed_addr constant [41 x i8] c"java/util/concurrent/SubmissionPublisher\00", align 1 +@.TypeMapEntry.19990_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.SynchronousQueue, Mono.Android\00", align 1 +@.TypeMapEntry.19991_to = private unnamed_addr constant [38 x i8] c"java/util/concurrent/SynchronousQueue\00", align 1 +@.TypeMapEntry.19992_from = private unnamed_addr constant [53 x i8] c"Java.Util.Concurrent.ThreadLocalRandom, Mono.Android\00", align 1 +@.TypeMapEntry.19993_to = private unnamed_addr constant [39 x i8] c"java/util/concurrent/ThreadLocalRandom\00", align 1 +@.TypeMapEntry.19994_from = private unnamed_addr constant [66 x i8] c"Java.Util.Concurrent.ThreadPoolExecutor+AbortPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.19995_to = private unnamed_addr constant [52 x i8] c"java/util/concurrent/ThreadPoolExecutor$AbortPolicy\00", align 1 +@.TypeMapEntry.19996_from = private unnamed_addr constant [71 x i8] c"Java.Util.Concurrent.ThreadPoolExecutor+CallerRunsPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.19997_to = private unnamed_addr constant [57 x i8] c"java/util/concurrent/ThreadPoolExecutor$CallerRunsPolicy\00", align 1 +@.TypeMapEntry.19998_from = private unnamed_addr constant [74 x i8] c"Java.Util.Concurrent.ThreadPoolExecutor+DiscardOldestPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.19999_to = private unnamed_addr constant [60 x i8] c"java/util/concurrent/ThreadPoolExecutor$DiscardOldestPolicy\00", align 1 +@.TypeMapEntry.20000_from = private unnamed_addr constant [68 x i8] c"Java.Util.Concurrent.ThreadPoolExecutor+DiscardPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.20001_to = private unnamed_addr constant [54 x i8] c"java/util/concurrent/ThreadPoolExecutor$DiscardPolicy\00", align 1 +@.TypeMapEntry.20002_from = private unnamed_addr constant [54 x i8] c"Java.Util.Concurrent.ThreadPoolExecutor, Mono.Android\00", align 1 +@.TypeMapEntry.20003_to = private unnamed_addr constant [40 x i8] c"java/util/concurrent/ThreadPoolExecutor\00", align 1 +@.TypeMapEntry.20004_from = private unnamed_addr constant [44 x i8] c"Java.Util.Concurrent.TimeUnit, Mono.Android\00", align 1 +@.TypeMapEntry.20005_to = private unnamed_addr constant [30 x i8] c"java/util/concurrent/TimeUnit\00", align 1 +@.TypeMapEntry.20006_from = private unnamed_addr constant [52 x i8] c"Java.Util.Concurrent.TimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.20007_to = private unnamed_addr constant [38 x i8] c"java/util/concurrent/TimeoutException\00", align 1 +@.TypeMapEntry.20008_from = private unnamed_addr constant [56 x i8] c"Java.Util.ConcurrentModificationException, Mono.Android\00", align 1 +@.TypeMapEntry.20009_to = private unnamed_addr constant [42 x i8] c"java/util/ConcurrentModificationException\00", align 1 +@.TypeMapEntry.20010_from = private unnamed_addr constant [33 x i8] c"Java.Util.Currency, Mono.Android\00", align 1 +@.TypeMapEntry.20011_to = private unnamed_addr constant [19 x i8] c"java/util/Currency\00", align 1 +@.TypeMapEntry.20012_from = private unnamed_addr constant [29 x i8] c"Java.Util.Date, Mono.Android\00", align 1 +@.TypeMapEntry.20013_to = private unnamed_addr constant [15 x i8] c"java/util/Date\00", align 1 +@.TypeMapEntry.20014_from = private unnamed_addr constant [35 x i8] c"Java.Util.Dictionary, Mono.Android\00", align 1 +@.TypeMapEntry.20015_to = private unnamed_addr constant [21 x i8] c"java/util/Dictionary\00", align 1 +@.TypeMapEntry.20016_from = private unnamed_addr constant [42 x i8] c"Java.Util.DictionaryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20017_from = private unnamed_addr constant [48 x i8] c"Java.Util.DoubleSummaryStatistics, Mono.Android\00", align 1 +@.TypeMapEntry.20018_to = private unnamed_addr constant [34 x i8] c"java/util/DoubleSummaryStatistics\00", align 1 +@.TypeMapEntry.20019_from = private unnamed_addr constant [54 x i8] c"Java.Util.DuplicateFormatFlagsException, Mono.Android\00", align 1 +@.TypeMapEntry.20020_to = private unnamed_addr constant [40 x i8] c"java/util/DuplicateFormatFlagsException\00", align 1 +@.TypeMapEntry.20021_from = private unnamed_addr constant [44 x i8] c"Java.Util.EmptyStackException, Mono.Android\00", align 1 +@.TypeMapEntry.20022_to = private unnamed_addr constant [30 x i8] c"java/util/EmptyStackException\00", align 1 +@.TypeMapEntry.20023_from = private unnamed_addr constant [32 x i8] c"Java.Util.EnumMap, Mono.Android\00", align 1 +@.TypeMapEntry.20024_to = private unnamed_addr constant [18 x i8] c"java/util/EnumMap\00", align 1 +@.TypeMapEntry.20025_from = private unnamed_addr constant [32 x i8] c"Java.Util.EnumSet, Mono.Android\00", align 1 +@.TypeMapEntry.20026_to = private unnamed_addr constant [18 x i8] c"java/util/EnumSet\00", align 1 +@.TypeMapEntry.20027_from = private unnamed_addr constant [39 x i8] c"Java.Util.EnumSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20028_from = private unnamed_addr constant [43 x i8] c"Java.Util.EventListenerProxy, Mono.Android\00", align 1 +@.TypeMapEntry.20029_to = private unnamed_addr constant [29 x i8] c"java/util/EventListenerProxy\00", align 1 +@.TypeMapEntry.20030_from = private unnamed_addr constant [50 x i8] c"Java.Util.EventListenerProxyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20031_from = private unnamed_addr constant [36 x i8] c"Java.Util.EventObject, Mono.Android\00", align 1 +@.TypeMapEntry.20032_to = private unnamed_addr constant [22 x i8] c"java/util/EventObject\00", align 1 +@.TypeMapEntry.20033_from = private unnamed_addr constant [63 x i8] c"Java.Util.FormatFlagsConversionMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.20034_to = private unnamed_addr constant [49 x i8] c"java/util/FormatFlagsConversionMismatchException\00", align 1 +@.TypeMapEntry.20035_from = private unnamed_addr constant [41 x i8] c"Java.Util.FormattableFlags, Mono.Android\00", align 1 +@.TypeMapEntry.20036_to = private unnamed_addr constant [27 x i8] c"java/util/FormattableFlags\00", align 1 +@.TypeMapEntry.20037_from = private unnamed_addr constant [55 x i8] c"Java.Util.Formatter+BigDecimalLayoutForm, Mono.Android\00", align 1 +@.TypeMapEntry.20038_to = private unnamed_addr constant [41 x i8] c"java/util/Formatter$BigDecimalLayoutForm\00", align 1 +@.TypeMapEntry.20039_from = private unnamed_addr constant [34 x i8] c"Java.Util.Formatter, Mono.Android\00", align 1 +@.TypeMapEntry.20040_to = private unnamed_addr constant [20 x i8] c"java/util/Formatter\00", align 1 +@.TypeMapEntry.20041_from = private unnamed_addr constant [49 x i8] c"Java.Util.FormatterClosedException, Mono.Android\00", align 1 +@.TypeMapEntry.20042_to = private unnamed_addr constant [35 x i8] c"java/util/FormatterClosedException\00", align 1 +@.TypeMapEntry.20043_from = private unnamed_addr constant [49 x i8] c"Java.Util.Functions.BinaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20044_to = private unnamed_addr constant [48 x i8] c"mono/internal/java/util/function/BinaryOperator\00", align 1 +@.TypeMapEntry.20045_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.DoubleUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20046_to = private unnamed_addr constant [53 x i8] c"mono/internal/java/util/function/DoubleUnaryOperator\00", align 1 +@.TypeMapEntry.20047_from = private unnamed_addr constant [43 x i8] c"Java.Util.Functions.Function, Mono.Android\00", align 1 +@.TypeMapEntry.20048_to = private unnamed_addr constant [42 x i8] c"mono/internal/java/util/function/Function\00", align 1 +@.TypeMapEntry.20049_from = private unnamed_addr constant [46 x i8] c"Java.Util.Functions.IBiConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20050_to = private unnamed_addr constant [30 x i8] c"java/util/function/BiConsumer\00", align 1 +@.TypeMapEntry.20051_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.IBiConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20052_from = private unnamed_addr constant [46 x i8] c"Java.Util.Functions.IBiFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20053_to = private unnamed_addr constant [30 x i8] c"java/util/function/BiFunction\00", align 1 +@.TypeMapEntry.20054_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.IBiFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20055_from = private unnamed_addr constant [47 x i8] c"Java.Util.Functions.IBiPredicate, Mono.Android\00", align 1 +@.TypeMapEntry.20056_to = private unnamed_addr constant [31 x i8] c"java/util/function/BiPredicate\00", align 1 +@.TypeMapEntry.20057_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.IBiPredicateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20058_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IBinaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20059_to = private unnamed_addr constant [34 x i8] c"java/util/function/BinaryOperator\00", align 1 +@.TypeMapEntry.20060_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IBinaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20061_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IBooleanSupplier, Mono.Android\00", align 1 +@.TypeMapEntry.20062_to = private unnamed_addr constant [35 x i8] c"java/util/function/BooleanSupplier\00", align 1 +@.TypeMapEntry.20063_from = private unnamed_addr constant [58 x i8] c"Java.Util.Functions.IBooleanSupplierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20064_from = private unnamed_addr constant [44 x i8] c"Java.Util.Functions.IConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20065_to = private unnamed_addr constant [28 x i8] c"java/util/function/Consumer\00", align 1 +@.TypeMapEntry.20066_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20067_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.IDoubleBinaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20068_to = private unnamed_addr constant [40 x i8] c"java/util/function/DoubleBinaryOperator\00", align 1 +@.TypeMapEntry.20069_from = private unnamed_addr constant [63 x i8] c"Java.Util.Functions.IDoubleBinaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20070_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IDoubleConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20071_to = private unnamed_addr constant [34 x i8] c"java/util/function/DoubleConsumer\00", align 1 +@.TypeMapEntry.20072_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IDoubleConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20073_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IDoubleFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20074_to = private unnamed_addr constant [34 x i8] c"java/util/function/DoubleFunction\00", align 1 +@.TypeMapEntry.20075_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IDoubleFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20076_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IDoublePredicate, Mono.Android\00", align 1 +@.TypeMapEntry.20077_to = private unnamed_addr constant [35 x i8] c"java/util/function/DoublePredicate\00", align 1 +@.TypeMapEntry.20078_from = private unnamed_addr constant [58 x i8] c"Java.Util.Functions.IDoublePredicateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20079_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IDoubleSupplier, Mono.Android\00", align 1 +@.TypeMapEntry.20080_to = private unnamed_addr constant [34 x i8] c"java/util/function/DoubleSupplier\00", align 1 +@.TypeMapEntry.20081_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IDoubleSupplierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20082_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.IDoubleToIntFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20083_to = private unnamed_addr constant [39 x i8] c"java/util/function/DoubleToIntFunction\00", align 1 +@.TypeMapEntry.20084_from = private unnamed_addr constant [62 x i8] c"Java.Util.Functions.IDoubleToIntFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20085_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.IDoubleToLongFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20086_to = private unnamed_addr constant [40 x i8] c"java/util/function/DoubleToLongFunction\00", align 1 +@.TypeMapEntry.20087_from = private unnamed_addr constant [63 x i8] c"Java.Util.Functions.IDoubleToLongFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20088_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.IDoubleUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20089_to = private unnamed_addr constant [39 x i8] c"java/util/function/DoubleUnaryOperator\00", align 1 +@.TypeMapEntry.20090_from = private unnamed_addr constant [62 x i8] c"Java.Util.Functions.IDoubleUnaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20091_from = private unnamed_addr constant [44 x i8] c"Java.Util.Functions.IFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20092_to = private unnamed_addr constant [28 x i8] c"java/util/function/Function\00", align 1 +@.TypeMapEntry.20093_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20094_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.IIntBinaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20095_to = private unnamed_addr constant [37 x i8] c"java/util/function/IntBinaryOperator\00", align 1 +@.TypeMapEntry.20096_from = private unnamed_addr constant [60 x i8] c"Java.Util.Functions.IIntBinaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20097_from = private unnamed_addr constant [47 x i8] c"Java.Util.Functions.IIntConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20098_to = private unnamed_addr constant [31 x i8] c"java/util/function/IntConsumer\00", align 1 +@.TypeMapEntry.20099_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.IIntConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20100_from = private unnamed_addr constant [47 x i8] c"Java.Util.Functions.IIntFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20101_to = private unnamed_addr constant [31 x i8] c"java/util/function/IntFunction\00", align 1 +@.TypeMapEntry.20102_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.IIntFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20103_from = private unnamed_addr constant [48 x i8] c"Java.Util.Functions.IIntPredicate, Mono.Android\00", align 1 +@.TypeMapEntry.20104_to = private unnamed_addr constant [32 x i8] c"java/util/function/IntPredicate\00", align 1 +@.TypeMapEntry.20105_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.IIntPredicateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20106_from = private unnamed_addr constant [47 x i8] c"Java.Util.Functions.IIntSupplier, Mono.Android\00", align 1 +@.TypeMapEntry.20107_to = private unnamed_addr constant [31 x i8] c"java/util/function/IntSupplier\00", align 1 +@.TypeMapEntry.20108_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.IIntSupplierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20109_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.IIntToDoubleFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20110_to = private unnamed_addr constant [39 x i8] c"java/util/function/IntToDoubleFunction\00", align 1 +@.TypeMapEntry.20111_from = private unnamed_addr constant [62 x i8] c"Java.Util.Functions.IIntToDoubleFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20112_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.IIntToLongFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20113_to = private unnamed_addr constant [37 x i8] c"java/util/function/IntToLongFunction\00", align 1 +@.TypeMapEntry.20114_from = private unnamed_addr constant [60 x i8] c"Java.Util.Functions.IIntToLongFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20115_from = private unnamed_addr constant [52 x i8] c"Java.Util.Functions.IIntUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20116_to = private unnamed_addr constant [36 x i8] c"java/util/function/IntUnaryOperator\00", align 1 +@.TypeMapEntry.20117_from = private unnamed_addr constant [59 x i8] c"Java.Util.Functions.IIntUnaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20118_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.ILongBinaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20119_to = private unnamed_addr constant [38 x i8] c"java/util/function/LongBinaryOperator\00", align 1 +@.TypeMapEntry.20120_from = private unnamed_addr constant [61 x i8] c"Java.Util.Functions.ILongBinaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20121_from = private unnamed_addr constant [48 x i8] c"Java.Util.Functions.ILongConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20122_to = private unnamed_addr constant [32 x i8] c"java/util/function/LongConsumer\00", align 1 +@.TypeMapEntry.20123_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.ILongConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20124_from = private unnamed_addr constant [48 x i8] c"Java.Util.Functions.ILongFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20125_to = private unnamed_addr constant [32 x i8] c"java/util/function/LongFunction\00", align 1 +@.TypeMapEntry.20126_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.ILongFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20127_from = private unnamed_addr constant [49 x i8] c"Java.Util.Functions.ILongPredicate, Mono.Android\00", align 1 +@.TypeMapEntry.20128_to = private unnamed_addr constant [33 x i8] c"java/util/function/LongPredicate\00", align 1 +@.TypeMapEntry.20129_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.ILongPredicateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20130_from = private unnamed_addr constant [48 x i8] c"Java.Util.Functions.ILongSupplier, Mono.Android\00", align 1 +@.TypeMapEntry.20131_to = private unnamed_addr constant [32 x i8] c"java/util/function/LongSupplier\00", align 1 +@.TypeMapEntry.20132_from = private unnamed_addr constant [55 x i8] c"Java.Util.Functions.ILongSupplierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20133_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.ILongToDoubleFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20134_to = private unnamed_addr constant [40 x i8] c"java/util/function/LongToDoubleFunction\00", align 1 +@.TypeMapEntry.20135_from = private unnamed_addr constant [63 x i8] c"Java.Util.Functions.ILongToDoubleFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20136_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.ILongToIntFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20137_to = private unnamed_addr constant [37 x i8] c"java/util/function/LongToIntFunction\00", align 1 +@.TypeMapEntry.20138_from = private unnamed_addr constant [60 x i8] c"Java.Util.Functions.ILongToIntFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20139_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.ILongUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20140_to = private unnamed_addr constant [37 x i8] c"java/util/function/LongUnaryOperator\00", align 1 +@.TypeMapEntry.20141_from = private unnamed_addr constant [60 x i8] c"Java.Util.Functions.ILongUnaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20142_from = private unnamed_addr constant [53 x i8] c"Java.Util.Functions.IObjDoubleConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20143_to = private unnamed_addr constant [37 x i8] c"java/util/function/ObjDoubleConsumer\00", align 1 +@.TypeMapEntry.20144_from = private unnamed_addr constant [60 x i8] c"Java.Util.Functions.IObjDoubleConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20145_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IObjIntConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20146_to = private unnamed_addr constant [34 x i8] c"java/util/function/ObjIntConsumer\00", align 1 +@.TypeMapEntry.20147_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IObjIntConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20148_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IObjLongConsumer, Mono.Android\00", align 1 +@.TypeMapEntry.20149_to = private unnamed_addr constant [35 x i8] c"java/util/function/ObjLongConsumer\00", align 1 +@.TypeMapEntry.20150_from = private unnamed_addr constant [58 x i8] c"Java.Util.Functions.IObjLongConsumerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20151_from = private unnamed_addr constant [45 x i8] c"Java.Util.Functions.IPredicate, Mono.Android\00", align 1 +@.TypeMapEntry.20152_to = private unnamed_addr constant [29 x i8] c"java/util/function/Predicate\00", align 1 +@.TypeMapEntry.20153_from = private unnamed_addr constant [52 x i8] c"Java.Util.Functions.IPredicateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20154_from = private unnamed_addr constant [44 x i8] c"Java.Util.Functions.ISupplier, Mono.Android\00", align 1 +@.TypeMapEntry.20155_to = private unnamed_addr constant [28 x i8] c"java/util/function/Supplier\00", align 1 +@.TypeMapEntry.20156_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.ISupplierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20157_from = private unnamed_addr constant [54 x i8] c"Java.Util.Functions.IToDoubleBiFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20158_to = private unnamed_addr constant [38 x i8] c"java/util/function/ToDoubleBiFunction\00", align 1 +@.TypeMapEntry.20159_from = private unnamed_addr constant [61 x i8] c"Java.Util.Functions.IToDoubleBiFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20160_from = private unnamed_addr constant [52 x i8] c"Java.Util.Functions.IToDoubleFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20161_to = private unnamed_addr constant [36 x i8] c"java/util/function/ToDoubleFunction\00", align 1 +@.TypeMapEntry.20162_from = private unnamed_addr constant [59 x i8] c"Java.Util.Functions.IToDoubleFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20163_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IToIntBiFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20164_to = private unnamed_addr constant [35 x i8] c"java/util/function/ToIntBiFunction\00", align 1 +@.TypeMapEntry.20165_from = private unnamed_addr constant [58 x i8] c"Java.Util.Functions.IToIntBiFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20166_from = private unnamed_addr constant [49 x i8] c"Java.Util.Functions.IToIntFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20167_to = private unnamed_addr constant [33 x i8] c"java/util/function/ToIntFunction\00", align 1 +@.TypeMapEntry.20168_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.IToIntFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20169_from = private unnamed_addr constant [52 x i8] c"Java.Util.Functions.IToLongBiFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20170_to = private unnamed_addr constant [36 x i8] c"java/util/function/ToLongBiFunction\00", align 1 +@.TypeMapEntry.20171_from = private unnamed_addr constant [59 x i8] c"Java.Util.Functions.IToLongBiFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20172_from = private unnamed_addr constant [50 x i8] c"Java.Util.Functions.IToLongFunction, Mono.Android\00", align 1 +@.TypeMapEntry.20173_to = private unnamed_addr constant [34 x i8] c"java/util/function/ToLongFunction\00", align 1 +@.TypeMapEntry.20174_from = private unnamed_addr constant [57 x i8] c"Java.Util.Functions.IToLongFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20175_from = private unnamed_addr constant [49 x i8] c"Java.Util.Functions.IUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20176_to = private unnamed_addr constant [33 x i8] c"java/util/function/UnaryOperator\00", align 1 +@.TypeMapEntry.20177_from = private unnamed_addr constant [56 x i8] c"Java.Util.Functions.IUnaryOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20178_from = private unnamed_addr constant [51 x i8] c"Java.Util.Functions.IntUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20179_to = private unnamed_addr constant [50 x i8] c"mono/internal/java/util/function/IntUnaryOperator\00", align 1 +@.TypeMapEntry.20180_from = private unnamed_addr constant [52 x i8] c"Java.Util.Functions.LongUnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20181_to = private unnamed_addr constant [51 x i8] c"mono/internal/java/util/function/LongUnaryOperator\00", align 1 +@.TypeMapEntry.20182_from = private unnamed_addr constant [44 x i8] c"Java.Util.Functions.Predicate, Mono.Android\00", align 1 +@.TypeMapEntry.20183_to = private unnamed_addr constant [43 x i8] c"mono/internal/java/util/function/Predicate\00", align 1 +@.TypeMapEntry.20184_from = private unnamed_addr constant [48 x i8] c"Java.Util.Functions.UnaryOperator, Mono.Android\00", align 1 +@.TypeMapEntry.20185_to = private unnamed_addr constant [47 x i8] c"mono/internal/java/util/function/UnaryOperator\00", align 1 +@.TypeMapEntry.20186_from = private unnamed_addr constant [42 x i8] c"Java.Util.GregorianCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.20187_to = private unnamed_addr constant [28 x i8] c"java/util/GregorianCalendar\00", align 1 +@.TypeMapEntry.20188_from = private unnamed_addr constant [32 x i8] c"Java.Util.HashMap, Mono.Android\00", align 1 +@.TypeMapEntry.20189_from = private unnamed_addr constant [32 x i8] c"Java.Util.HashSet, Mono.Android\00", align 1 +@.TypeMapEntry.20190_from = private unnamed_addr constant [34 x i8] c"Java.Util.Hashtable, Mono.Android\00", align 1 +@.TypeMapEntry.20191_to = private unnamed_addr constant [20 x i8] c"java/util/Hashtable\00", align 1 +@.TypeMapEntry.20192_from = private unnamed_addr constant [34 x i8] c"Java.Util.HexFormat, Mono.Android\00", align 1 +@.TypeMapEntry.20193_to = private unnamed_addr constant [20 x i8] c"java/util/HexFormat\00", align 1 +@.TypeMapEntry.20194_from = private unnamed_addr constant [36 x i8] c"Java.Util.ICollection, Mono.Android\00", align 1 +@.TypeMapEntry.20195_from = private unnamed_addr constant [43 x i8] c"Java.Util.ICollectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20196_from = private unnamed_addr constant [36 x i8] c"Java.Util.IComparator, Mono.Android\00", align 1 +@.TypeMapEntry.20197_to = private unnamed_addr constant [21 x i8] c"java/util/Comparator\00", align 1 +@.TypeMapEntry.20198_from = private unnamed_addr constant [43 x i8] c"Java.Util.IComparatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20199_from = private unnamed_addr constant [31 x i8] c"Java.Util.IDeque, Mono.Android\00", align 1 +@.TypeMapEntry.20200_to = private unnamed_addr constant [16 x i8] c"java/util/Deque\00", align 1 +@.TypeMapEntry.20201_from = private unnamed_addr constant [38 x i8] c"Java.Util.IDequeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20202_from = private unnamed_addr constant [37 x i8] c"Java.Util.IEnumeration, Mono.Android\00", align 1 +@.TypeMapEntry.20203_to = private unnamed_addr constant [22 x i8] c"java/util/Enumeration\00", align 1 +@.TypeMapEntry.20204_from = private unnamed_addr constant [44 x i8] c"Java.Util.IEnumerationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20205_from = private unnamed_addr constant [39 x i8] c"Java.Util.IEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.20206_to = private unnamed_addr constant [24 x i8] c"java/util/EventListener\00", align 1 +@.TypeMapEntry.20207_from = private unnamed_addr constant [50 x i8] c"Java.Util.IEventListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.20208_to = private unnamed_addr constant [40 x i8] c"mono/java/util/EventListenerImplementor\00", align 1 +@.TypeMapEntry.20209_from = private unnamed_addr constant [46 x i8] c"Java.Util.IEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20210_from = private unnamed_addr constant [37 x i8] c"Java.Util.IFormattable, Mono.Android\00", align 1 +@.TypeMapEntry.20211_to = private unnamed_addr constant [22 x i8] c"java/util/Formattable\00", align 1 +@.TypeMapEntry.20212_from = private unnamed_addr constant [44 x i8] c"Java.Util.IFormattableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20213_from = private unnamed_addr constant [34 x i8] c"Java.Util.IIterator, Mono.Android\00", align 1 +@.TypeMapEntry.20214_to = private unnamed_addr constant [19 x i8] c"java/util/Iterator\00", align 1 +@.TypeMapEntry.20215_from = private unnamed_addr constant [41 x i8] c"Java.Util.IIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20216_from = private unnamed_addr constant [30 x i8] c"Java.Util.IList, Mono.Android\00", align 1 +@.TypeMapEntry.20217_to = private unnamed_addr constant [15 x i8] c"java/util/List\00", align 1 +@.TypeMapEntry.20218_from = private unnamed_addr constant [37 x i8] c"Java.Util.IListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20219_from = private unnamed_addr constant [38 x i8] c"Java.Util.IListIterator, Mono.Android\00", align 1 +@.TypeMapEntry.20220_to = private unnamed_addr constant [23 x i8] c"java/util/ListIterator\00", align 1 +@.TypeMapEntry.20221_from = private unnamed_addr constant [45 x i8] c"Java.Util.IListIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20222_from = private unnamed_addr constant [29 x i8] c"Java.Util.IMap, Mono.Android\00", align 1 +@.TypeMapEntry.20223_to = private unnamed_addr constant [14 x i8] c"java/util/Map\00", align 1 +@.TypeMapEntry.20224_from = private unnamed_addr constant [34 x i8] c"Java.Util.IMapEntry, Mono.Android\00", align 1 +@.TypeMapEntry.20225_to = private unnamed_addr constant [20 x i8] c"java/util/Map$Entry\00", align 1 +@.TypeMapEntry.20226_from = private unnamed_addr constant [41 x i8] c"Java.Util.IMapEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20227_from = private unnamed_addr constant [36 x i8] c"Java.Util.IMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20228_from = private unnamed_addr constant [38 x i8] c"Java.Util.INavigableMap, Mono.Android\00", align 1 +@.TypeMapEntry.20229_to = private unnamed_addr constant [23 x i8] c"java/util/NavigableMap\00", align 1 +@.TypeMapEntry.20230_from = private unnamed_addr constant [45 x i8] c"Java.Util.INavigableMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20231_from = private unnamed_addr constant [38 x i8] c"Java.Util.INavigableSet, Mono.Android\00", align 1 +@.TypeMapEntry.20232_to = private unnamed_addr constant [23 x i8] c"java/util/NavigableSet\00", align 1 +@.TypeMapEntry.20233_from = private unnamed_addr constant [45 x i8] c"Java.Util.INavigableSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20234_from = private unnamed_addr constant [34 x i8] c"Java.Util.IObserver, Mono.Android\00", align 1 +@.TypeMapEntry.20235_to = private unnamed_addr constant [19 x i8] c"java/util/Observer\00", align 1 +@.TypeMapEntry.20236_from = private unnamed_addr constant [41 x i8] c"Java.Util.IObserverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20237_from = private unnamed_addr constant [43 x i8] c"Java.Util.IPrimitiveIterator, Mono.Android\00", align 1 +@.TypeMapEntry.20238_to = private unnamed_addr constant [28 x i8] c"java/util/PrimitiveIterator\00", align 1 +@.TypeMapEntry.20239_from = private unnamed_addr constant [50 x i8] c"Java.Util.IPrimitiveIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20240_from = private unnamed_addr constant [51 x i8] c"Java.Util.IPrimitiveIteratorOfDouble, Mono.Android\00", align 1 +@.TypeMapEntry.20241_to = private unnamed_addr constant [37 x i8] c"java/util/PrimitiveIterator$OfDouble\00", align 1 +@.TypeMapEntry.20242_from = private unnamed_addr constant [58 x i8] c"Java.Util.IPrimitiveIteratorOfDoubleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20243_from = private unnamed_addr constant [48 x i8] c"Java.Util.IPrimitiveIteratorOfInt, Mono.Android\00", align 1 +@.TypeMapEntry.20244_to = private unnamed_addr constant [34 x i8] c"java/util/PrimitiveIterator$OfInt\00", align 1 +@.TypeMapEntry.20245_from = private unnamed_addr constant [55 x i8] c"Java.Util.IPrimitiveIteratorOfIntInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20246_from = private unnamed_addr constant [49 x i8] c"Java.Util.IPrimitiveIteratorOfLong, Mono.Android\00", align 1 +@.TypeMapEntry.20247_to = private unnamed_addr constant [35 x i8] c"java/util/PrimitiveIterator$OfLong\00", align 1 +@.TypeMapEntry.20248_from = private unnamed_addr constant [56 x i8] c"Java.Util.IPrimitiveIteratorOfLongInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20249_from = private unnamed_addr constant [31 x i8] c"Java.Util.IQueue, Mono.Android\00", align 1 +@.TypeMapEntry.20250_to = private unnamed_addr constant [16 x i8] c"java/util/Queue\00", align 1 +@.TypeMapEntry.20251_from = private unnamed_addr constant [38 x i8] c"Java.Util.IQueueInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20252_from = private unnamed_addr constant [38 x i8] c"Java.Util.IRandomAccess, Mono.Android\00", align 1 +@.TypeMapEntry.20253_to = private unnamed_addr constant [23 x i8] c"java/util/RandomAccess\00", align 1 +@.TypeMapEntry.20254_from = private unnamed_addr constant [45 x i8] c"Java.Util.IRandomAccessInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20255_from = private unnamed_addr constant [45 x i8] c"Java.Util.ISequencedCollection, Mono.Android\00", align 1 +@.TypeMapEntry.20256_to = private unnamed_addr constant [30 x i8] c"java/util/SequencedCollection\00", align 1 +@.TypeMapEntry.20257_from = private unnamed_addr constant [52 x i8] c"Java.Util.ISequencedCollectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20258_from = private unnamed_addr constant [38 x i8] c"Java.Util.ISequencedMap, Mono.Android\00", align 1 +@.TypeMapEntry.20259_to = private unnamed_addr constant [23 x i8] c"java/util/SequencedMap\00", align 1 +@.TypeMapEntry.20260_from = private unnamed_addr constant [45 x i8] c"Java.Util.ISequencedMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20261_from = private unnamed_addr constant [38 x i8] c"Java.Util.ISequencedSet, Mono.Android\00", align 1 +@.TypeMapEntry.20262_to = private unnamed_addr constant [23 x i8] c"java/util/SequencedSet\00", align 1 +@.TypeMapEntry.20263_from = private unnamed_addr constant [45 x i8] c"Java.Util.ISequencedSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20264_from = private unnamed_addr constant [29 x i8] c"Java.Util.ISet, Mono.Android\00", align 1 +@.TypeMapEntry.20265_to = private unnamed_addr constant [14 x i8] c"java/util/Set\00", align 1 +@.TypeMapEntry.20266_from = private unnamed_addr constant [36 x i8] c"Java.Util.ISetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20267_from = private unnamed_addr constant [35 x i8] c"Java.Util.ISortedMap, Mono.Android\00", align 1 +@.TypeMapEntry.20268_to = private unnamed_addr constant [20 x i8] c"java/util/SortedMap\00", align 1 +@.TypeMapEntry.20269_from = private unnamed_addr constant [42 x i8] c"Java.Util.ISortedMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20270_from = private unnamed_addr constant [35 x i8] c"Java.Util.ISortedSet, Mono.Android\00", align 1 +@.TypeMapEntry.20271_to = private unnamed_addr constant [20 x i8] c"java/util/SortedSet\00", align 1 +@.TypeMapEntry.20272_from = private unnamed_addr constant [42 x i8] c"Java.Util.ISortedSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20273_from = private unnamed_addr constant [37 x i8] c"Java.Util.ISpliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20274_to = private unnamed_addr constant [22 x i8] c"java/util/Spliterator\00", align 1 +@.TypeMapEntry.20275_from = private unnamed_addr constant [44 x i8] c"Java.Util.ISpliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20276_from = private unnamed_addr constant [40 x i8] c"Java.Util.IdentityHashMap, Mono.Android\00", align 1 +@.TypeMapEntry.20277_to = private unnamed_addr constant [26 x i8] c"java/util/IdentityHashMap\00", align 1 +@.TypeMapEntry.20278_from = private unnamed_addr constant [56 x i8] c"Java.Util.IllegalFormatCodePointException, Mono.Android\00", align 1 +@.TypeMapEntry.20279_to = private unnamed_addr constant [42 x i8] c"java/util/IllegalFormatCodePointException\00", align 1 +@.TypeMapEntry.20280_from = private unnamed_addr constant [57 x i8] c"Java.Util.IllegalFormatConversionException, Mono.Android\00", align 1 +@.TypeMapEntry.20281_to = private unnamed_addr constant [43 x i8] c"java/util/IllegalFormatConversionException\00", align 1 +@.TypeMapEntry.20282_from = private unnamed_addr constant [47 x i8] c"Java.Util.IllegalFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.20283_to = private unnamed_addr constant [33 x i8] c"java/util/IllegalFormatException\00", align 1 +@.TypeMapEntry.20284_from = private unnamed_addr constant [52 x i8] c"Java.Util.IllegalFormatFlagsException, Mono.Android\00", align 1 +@.TypeMapEntry.20285_to = private unnamed_addr constant [38 x i8] c"java/util/IllegalFormatFlagsException\00", align 1 +@.TypeMapEntry.20286_from = private unnamed_addr constant [56 x i8] c"Java.Util.IllegalFormatPrecisionException, Mono.Android\00", align 1 +@.TypeMapEntry.20287_to = private unnamed_addr constant [42 x i8] c"java/util/IllegalFormatPrecisionException\00", align 1 +@.TypeMapEntry.20288_from = private unnamed_addr constant [52 x i8] c"Java.Util.IllegalFormatWidthException, Mono.Android\00", align 1 +@.TypeMapEntry.20289_to = private unnamed_addr constant [38 x i8] c"java/util/IllegalFormatWidthException\00", align 1 +@.TypeMapEntry.20290_from = private unnamed_addr constant [49 x i8] c"Java.Util.IllformedLocaleException, Mono.Android\00", align 1 +@.TypeMapEntry.20291_to = private unnamed_addr constant [35 x i8] c"java/util/IllformedLocaleException\00", align 1 +@.TypeMapEntry.20292_from = private unnamed_addr constant [47 x i8] c"Java.Util.InputMismatchException, Mono.Android\00", align 1 +@.TypeMapEntry.20293_to = private unnamed_addr constant [33 x i8] c"java/util/InputMismatchException\00", align 1 +@.TypeMapEntry.20294_from = private unnamed_addr constant [45 x i8] c"Java.Util.IntSummaryStatistics, Mono.Android\00", align 1 +@.TypeMapEntry.20295_to = private unnamed_addr constant [31 x i8] c"java/util/IntSummaryStatistics\00", align 1 +@.TypeMapEntry.20296_from = private unnamed_addr constant [57 x i8] c"Java.Util.InvalidPropertiesFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.20297_to = private unnamed_addr constant [43 x i8] c"java/util/InvalidPropertiesFormatException\00", align 1 +@.TypeMapEntry.20298_from = private unnamed_addr constant [44 x i8] c"Java.Util.Jar.Attributes+Name, Mono.Android\00", align 1 +@.TypeMapEntry.20299_to = private unnamed_addr constant [30 x i8] c"java/util/jar/Attributes$Name\00", align 1 +@.TypeMapEntry.20300_from = private unnamed_addr constant [39 x i8] c"Java.Util.Jar.Attributes, Mono.Android\00", align 1 +@.TypeMapEntry.20301_to = private unnamed_addr constant [25 x i8] c"java/util/jar/Attributes\00", align 1 +@.TypeMapEntry.20302_from = private unnamed_addr constant [37 x i8] c"Java.Util.Jar.JarEntry, Mono.Android\00", align 1 +@.TypeMapEntry.20303_to = private unnamed_addr constant [23 x i8] c"java/util/jar/JarEntry\00", align 1 +@.TypeMapEntry.20304_from = private unnamed_addr constant [41 x i8] c"Java.Util.Jar.JarException, Mono.Android\00", align 1 +@.TypeMapEntry.20305_to = private unnamed_addr constant [27 x i8] c"java/util/jar/JarException\00", align 1 +@.TypeMapEntry.20306_from = private unnamed_addr constant [36 x i8] c"Java.Util.Jar.JarFile, Mono.Android\00", align 1 +@.TypeMapEntry.20307_to = private unnamed_addr constant [22 x i8] c"java/util/jar/JarFile\00", align 1 +@.TypeMapEntry.20308_from = private unnamed_addr constant [43 x i8] c"Java.Util.Jar.JarInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20309_to = private unnamed_addr constant [29 x i8] c"java/util/jar/JarInputStream\00", align 1 +@.TypeMapEntry.20310_from = private unnamed_addr constant [44 x i8] c"Java.Util.Jar.JarOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20311_to = private unnamed_addr constant [30 x i8] c"java/util/jar/JarOutputStream\00", align 1 +@.TypeMapEntry.20312_from = private unnamed_addr constant [37 x i8] c"Java.Util.Jar.Manifest, Mono.Android\00", align 1 +@.TypeMapEntry.20313_to = private unnamed_addr constant [23 x i8] c"java/util/jar/Manifest\00", align 1 +@.TypeMapEntry.20314_from = private unnamed_addr constant [44 x i8] c"Java.Util.Jar.Pack200+IPacker, Mono.Android\00", align 1 +@.TypeMapEntry.20315_to = private unnamed_addr constant [29 x i8] c"java/util/jar/Pack200$Packer\00", align 1 +@.TypeMapEntry.20316_from = private unnamed_addr constant [51 x i8] c"Java.Util.Jar.Pack200+IPackerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20317_from = private unnamed_addr constant [46 x i8] c"Java.Util.Jar.Pack200+IUnpacker, Mono.Android\00", align 1 +@.TypeMapEntry.20318_to = private unnamed_addr constant [31 x i8] c"java/util/jar/Pack200$Unpacker\00", align 1 +@.TypeMapEntry.20319_from = private unnamed_addr constant [53 x i8] c"Java.Util.Jar.Pack200+IUnpackerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20320_from = private unnamed_addr constant [43 x i8] c"Java.Util.Jar.Pack200+Packer, Mono.Android\00", align 1 +@.TypeMapEntry.20321_to = private unnamed_addr constant [43 x i8] c"mono/internal/java/util/jar/Pack200$Packer\00", align 1 +@.TypeMapEntry.20322_from = private unnamed_addr constant [45 x i8] c"Java.Util.Jar.Pack200+Unpacker, Mono.Android\00", align 1 +@.TypeMapEntry.20323_to = private unnamed_addr constant [45 x i8] c"mono/internal/java/util/jar/Pack200$Unpacker\00", align 1 +@.TypeMapEntry.20324_from = private unnamed_addr constant [36 x i8] c"Java.Util.Jar.Pack200, Mono.Android\00", align 1 +@.TypeMapEntry.20325_to = private unnamed_addr constant [22 x i8] c"java/util/jar/Pack200\00", align 1 +@.TypeMapEntry.20326_from = private unnamed_addr constant [43 x i8] c"Java.Util.Jar.Pack200Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.20327_from = private unnamed_addr constant [38 x i8] c"Java.Util.LinkedHashMap, Mono.Android\00", align 1 +@.TypeMapEntry.20328_to = private unnamed_addr constant [24 x i8] c"java/util/LinkedHashMap\00", align 1 +@.TypeMapEntry.20329_from = private unnamed_addr constant [38 x i8] c"Java.Util.LinkedHashSet, Mono.Android\00", align 1 +@.TypeMapEntry.20330_to = private unnamed_addr constant [24 x i8] c"java/util/LinkedHashSet\00", align 1 +@.TypeMapEntry.20331_from = private unnamed_addr constant [35 x i8] c"Java.Util.LinkedList, Mono.Android\00", align 1 +@.TypeMapEntry.20332_to = private unnamed_addr constant [21 x i8] c"java/util/LinkedList\00", align 1 +@.TypeMapEntry.20333_from = private unnamed_addr constant [29 x i8] c"Java.Util.List, Mono.Android\00", align 1 +@.TypeMapEntry.20334_to = private unnamed_addr constant [29 x i8] c"mono/internal/java/util/List\00", align 1 +@.TypeMapEntry.20335_from = private unnamed_addr constant [43 x i8] c"Java.Util.ListResourceBundle, Mono.Android\00", align 1 +@.TypeMapEntry.20336_to = private unnamed_addr constant [29 x i8] c"java/util/ListResourceBundle\00", align 1 +@.TypeMapEntry.20337_from = private unnamed_addr constant [50 x i8] c"Java.Util.ListResourceBundleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20338_from = private unnamed_addr constant [39 x i8] c"Java.Util.Locale+Builder, Mono.Android\00", align 1 +@.TypeMapEntry.20339_to = private unnamed_addr constant [25 x i8] c"java/util/Locale$Builder\00", align 1 +@.TypeMapEntry.20340_from = private unnamed_addr constant [40 x i8] c"Java.Util.Locale+Category, Mono.Android\00", align 1 +@.TypeMapEntry.20341_to = private unnamed_addr constant [26 x i8] c"java/util/Locale$Category\00", align 1 +@.TypeMapEntry.20342_from = private unnamed_addr constant [45 x i8] c"Java.Util.Locale+FilteringMode, Mono.Android\00", align 1 +@.TypeMapEntry.20343_to = private unnamed_addr constant [31 x i8] c"java/util/Locale$FilteringMode\00", align 1 +@.TypeMapEntry.20344_from = private unnamed_addr constant [46 x i8] c"Java.Util.Locale+IsoCountryCode, Mono.Android\00", align 1 +@.TypeMapEntry.20345_to = private unnamed_addr constant [32 x i8] c"java/util/Locale$IsoCountryCode\00", align 1 +@.TypeMapEntry.20346_from = private unnamed_addr constant [45 x i8] c"Java.Util.Locale+LanguageRange, Mono.Android\00", align 1 +@.TypeMapEntry.20347_to = private unnamed_addr constant [31 x i8] c"java/util/Locale$LanguageRange\00", align 1 +@.TypeMapEntry.20348_from = private unnamed_addr constant [31 x i8] c"Java.Util.Locale, Mono.Android\00", align 1 +@.TypeMapEntry.20349_to = private unnamed_addr constant [17 x i8] c"java/util/Locale\00", align 1 +@.TypeMapEntry.20350_from = private unnamed_addr constant [47 x i8] c"Java.Util.Logging.ConsoleHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20351_to = private unnamed_addr constant [33 x i8] c"java/util/logging/ConsoleHandler\00", align 1 +@.TypeMapEntry.20352_from = private unnamed_addr constant [45 x i8] c"Java.Util.Logging.ErrorManager, Mono.Android\00", align 1 +@.TypeMapEntry.20353_to = private unnamed_addr constant [31 x i8] c"java/util/logging/ErrorManager\00", align 1 +@.TypeMapEntry.20354_from = private unnamed_addr constant [44 x i8] c"Java.Util.Logging.FileHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20355_to = private unnamed_addr constant [30 x i8] c"java/util/logging/FileHandler\00", align 1 +@.TypeMapEntry.20356_from = private unnamed_addr constant [42 x i8] c"Java.Util.Logging.Formatter, Mono.Android\00", align 1 +@.TypeMapEntry.20357_to = private unnamed_addr constant [28 x i8] c"java/util/logging/Formatter\00", align 1 +@.TypeMapEntry.20358_from = private unnamed_addr constant [49 x i8] c"Java.Util.Logging.FormatterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20359_from = private unnamed_addr constant [40 x i8] c"Java.Util.Logging.Handler, Mono.Android\00", align 1 +@.TypeMapEntry.20360_to = private unnamed_addr constant [26 x i8] c"java/util/logging/Handler\00", align 1 +@.TypeMapEntry.20361_from = private unnamed_addr constant [47 x i8] c"Java.Util.Logging.HandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20362_from = private unnamed_addr constant [40 x i8] c"Java.Util.Logging.IFilter, Mono.Android\00", align 1 +@.TypeMapEntry.20363_to = private unnamed_addr constant [25 x i8] c"java/util/logging/Filter\00", align 1 +@.TypeMapEntry.20364_from = private unnamed_addr constant [47 x i8] c"Java.Util.Logging.IFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20365_from = private unnamed_addr constant [47 x i8] c"Java.Util.Logging.ILoggingMXBean, Mono.Android\00", align 1 +@.TypeMapEntry.20366_to = private unnamed_addr constant [32 x i8] c"java/util/logging/LoggingMXBean\00", align 1 +@.TypeMapEntry.20367_from = private unnamed_addr constant [54 x i8] c"Java.Util.Logging.ILoggingMXBeanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20368_from = private unnamed_addr constant [38 x i8] c"Java.Util.Logging.Level, Mono.Android\00", align 1 +@.TypeMapEntry.20369_to = private unnamed_addr constant [24 x i8] c"java/util/logging/Level\00", align 1 +@.TypeMapEntry.20370_from = private unnamed_addr constant [43 x i8] c"Java.Util.Logging.LogManager, Mono.Android\00", align 1 +@.TypeMapEntry.20371_to = private unnamed_addr constant [29 x i8] c"java/util/logging/LogManager\00", align 1 +@.TypeMapEntry.20372_from = private unnamed_addr constant [42 x i8] c"Java.Util.Logging.LogRecord, Mono.Android\00", align 1 +@.TypeMapEntry.20373_to = private unnamed_addr constant [28 x i8] c"java/util/logging/LogRecord\00", align 1 +@.TypeMapEntry.20374_from = private unnamed_addr constant [39 x i8] c"Java.Util.Logging.Logger, Mono.Android\00", align 1 +@.TypeMapEntry.20375_to = private unnamed_addr constant [25 x i8] c"java/util/logging/Logger\00", align 1 +@.TypeMapEntry.20376_from = private unnamed_addr constant [50 x i8] c"Java.Util.Logging.LoggingPermission, Mono.Android\00", align 1 +@.TypeMapEntry.20377_to = private unnamed_addr constant [36 x i8] c"java/util/logging/LoggingPermission\00", align 1 +@.TypeMapEntry.20378_from = private unnamed_addr constant [46 x i8] c"Java.Util.Logging.MemoryHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20379_to = private unnamed_addr constant [32 x i8] c"java/util/logging/MemoryHandler\00", align 1 +@.TypeMapEntry.20380_from = private unnamed_addr constant [48 x i8] c"Java.Util.Logging.SimpleFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.20381_to = private unnamed_addr constant [34 x i8] c"java/util/logging/SimpleFormatter\00", align 1 +@.TypeMapEntry.20382_from = private unnamed_addr constant [46 x i8] c"Java.Util.Logging.SocketHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20383_to = private unnamed_addr constant [32 x i8] c"java/util/logging/SocketHandler\00", align 1 +@.TypeMapEntry.20384_from = private unnamed_addr constant [46 x i8] c"Java.Util.Logging.StreamHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20385_to = private unnamed_addr constant [32 x i8] c"java/util/logging/StreamHandler\00", align 1 +@.TypeMapEntry.20386_from = private unnamed_addr constant [45 x i8] c"Java.Util.Logging.XMLFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.20387_to = private unnamed_addr constant [31 x i8] c"java/util/logging/XMLFormatter\00", align 1 +@.TypeMapEntry.20388_from = private unnamed_addr constant [46 x i8] c"Java.Util.LongSummaryStatistics, Mono.Android\00", align 1 +@.TypeMapEntry.20389_to = private unnamed_addr constant [32 x i8] c"java/util/LongSummaryStatistics\00", align 1 +@.TypeMapEntry.20390_from = private unnamed_addr constant [28 x i8] c"Java.Util.Map, Mono.Android\00", align 1 +@.TypeMapEntry.20391_to = private unnamed_addr constant [28 x i8] c"mono/internal/java/util/Map\00", align 1 +@.TypeMapEntry.20392_from = private unnamed_addr constant [33 x i8] c"Java.Util.MapEntry, Mono.Android\00", align 1 +@.TypeMapEntry.20393_to = private unnamed_addr constant [34 x i8] c"mono/internal/java/util/Map$Entry\00", align 1 +@.TypeMapEntry.20394_from = private unnamed_addr constant [55 x i8] c"Java.Util.MissingFormatArgumentException, Mono.Android\00", align 1 +@.TypeMapEntry.20395_to = private unnamed_addr constant [41 x i8] c"java/util/MissingFormatArgumentException\00", align 1 +@.TypeMapEntry.20396_from = private unnamed_addr constant [52 x i8] c"Java.Util.MissingFormatWidthException, Mono.Android\00", align 1 +@.TypeMapEntry.20397_to = private unnamed_addr constant [38 x i8] c"java/util/MissingFormatWidthException\00", align 1 +@.TypeMapEntry.20398_from = private unnamed_addr constant [49 x i8] c"Java.Util.MissingResourceException, Mono.Android\00", align 1 +@.TypeMapEntry.20399_to = private unnamed_addr constant [35 x i8] c"java/util/MissingResourceException\00", align 1 +@.TypeMapEntry.20400_from = private unnamed_addr constant [47 x i8] c"Java.Util.NoSuchElementException, Mono.Android\00", align 1 +@.TypeMapEntry.20401_to = private unnamed_addr constant [33 x i8] c"java/util/NoSuchElementException\00", align 1 +@.TypeMapEntry.20402_from = private unnamed_addr constant [32 x i8] c"Java.Util.Objects, Mono.Android\00", align 1 +@.TypeMapEntry.20403_to = private unnamed_addr constant [18 x i8] c"java/util/Objects\00", align 1 +@.TypeMapEntry.20404_from = private unnamed_addr constant [35 x i8] c"Java.Util.Observable, Mono.Android\00", align 1 +@.TypeMapEntry.20405_to = private unnamed_addr constant [21 x i8] c"java/util/Observable\00", align 1 +@.TypeMapEntry.20406_from = private unnamed_addr constant [33 x i8] c"Java.Util.Optional, Mono.Android\00", align 1 +@.TypeMapEntry.20407_to = private unnamed_addr constant [19 x i8] c"java/util/Optional\00", align 1 +@.TypeMapEntry.20408_from = private unnamed_addr constant [39 x i8] c"Java.Util.OptionalDouble, Mono.Android\00", align 1 +@.TypeMapEntry.20409_to = private unnamed_addr constant [25 x i8] c"java/util/OptionalDouble\00", align 1 +@.TypeMapEntry.20410_from = private unnamed_addr constant [36 x i8] c"Java.Util.OptionalInt, Mono.Android\00", align 1 +@.TypeMapEntry.20411_to = private unnamed_addr constant [22 x i8] c"java/util/OptionalInt\00", align 1 +@.TypeMapEntry.20412_from = private unnamed_addr constant [37 x i8] c"Java.Util.OptionalLong, Mono.Android\00", align 1 +@.TypeMapEntry.20413_to = private unnamed_addr constant [23 x i8] c"java/util/OptionalLong\00", align 1 +@.TypeMapEntry.20414_from = private unnamed_addr constant [50 x i8] c"Java.Util.Prefs.AbstractPreferences, Mono.Android\00", align 1 +@.TypeMapEntry.20415_to = private unnamed_addr constant [36 x i8] c"java/util/prefs/AbstractPreferences\00", align 1 +@.TypeMapEntry.20416_from = private unnamed_addr constant [57 x i8] c"Java.Util.Prefs.AbstractPreferencesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20417_from = private unnamed_addr constant [52 x i8] c"Java.Util.Prefs.BackingStoreException, Mono.Android\00", align 1 +@.TypeMapEntry.20418_to = private unnamed_addr constant [38 x i8] c"java/util/prefs/BackingStoreException\00", align 1 +@.TypeMapEntry.20419_from = private unnamed_addr constant [50 x i8] c"Java.Util.Prefs.INodeChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.20420_to = private unnamed_addr constant [35 x i8] c"java/util/prefs/NodeChangeListener\00", align 1 +@.TypeMapEntry.20421_from = private unnamed_addr constant [57 x i8] c"Java.Util.Prefs.INodeChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20422_from = private unnamed_addr constant [56 x i8] c"Java.Util.Prefs.IPreferenceChangeListener, Mono.Android\00", align 1 +@.TypeMapEntry.20423_to = private unnamed_addr constant [41 x i8] c"java/util/prefs/PreferenceChangeListener\00", align 1 +@.TypeMapEntry.20424_from = private unnamed_addr constant [63 x i8] c"Java.Util.Prefs.IPreferenceChangeListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20425_from = private unnamed_addr constant [50 x i8] c"Java.Util.Prefs.IPreferencesFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20426_to = private unnamed_addr constant [35 x i8] c"java/util/prefs/PreferencesFactory\00", align 1 +@.TypeMapEntry.20427_from = private unnamed_addr constant [57 x i8] c"Java.Util.Prefs.IPreferencesFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20428_from = private unnamed_addr constant [64 x i8] c"Java.Util.Prefs.InvalidPreferencesFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.20429_to = private unnamed_addr constant [50 x i8] c"java/util/prefs/InvalidPreferencesFormatException\00", align 1 +@.TypeMapEntry.20430_from = private unnamed_addr constant [46 x i8] c"Java.Util.Prefs.NodeChangeEvent, Mono.Android\00", align 1 +@.TypeMapEntry.20431_to = private unnamed_addr constant [32 x i8] c"java/util/prefs/NodeChangeEvent\00", align 1 +@.TypeMapEntry.20432_from = private unnamed_addr constant [52 x i8] c"Java.Util.Prefs.PreferenceChangeEvent, Mono.Android\00", align 1 +@.TypeMapEntry.20433_to = private unnamed_addr constant [38 x i8] c"java/util/prefs/PreferenceChangeEvent\00", align 1 +@.TypeMapEntry.20434_from = private unnamed_addr constant [42 x i8] c"Java.Util.Prefs.Preferences, Mono.Android\00", align 1 +@.TypeMapEntry.20435_to = private unnamed_addr constant [28 x i8] c"java/util/prefs/Preferences\00", align 1 +@.TypeMapEntry.20436_from = private unnamed_addr constant [49 x i8] c"Java.Util.Prefs.PreferencesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20437_from = private unnamed_addr constant [38 x i8] c"Java.Util.PriorityQueue, Mono.Android\00", align 1 +@.TypeMapEntry.20438_to = private unnamed_addr constant [24 x i8] c"java/util/PriorityQueue\00", align 1 +@.TypeMapEntry.20439_from = private unnamed_addr constant [35 x i8] c"Java.Util.Properties, Mono.Android\00", align 1 +@.TypeMapEntry.20440_to = private unnamed_addr constant [21 x i8] c"java/util/Properties\00", align 1 +@.TypeMapEntry.20441_from = private unnamed_addr constant [43 x i8] c"Java.Util.PropertyPermission, Mono.Android\00", align 1 +@.TypeMapEntry.20442_to = private unnamed_addr constant [29 x i8] c"java/util/PropertyPermission\00", align 1 +@.TypeMapEntry.20443_from = private unnamed_addr constant [47 x i8] c"Java.Util.PropertyResourceBundle, Mono.Android\00", align 1 +@.TypeMapEntry.20444_to = private unnamed_addr constant [33 x i8] c"java/util/PropertyResourceBundle\00", align 1 +@.TypeMapEntry.20445_from = private unnamed_addr constant [31 x i8] c"Java.Util.Random, Mono.Android\00", align 1 +@.TypeMapEntry.20446_to = private unnamed_addr constant [17 x i8] c"java/util/Random\00", align 1 +@.TypeMapEntry.20447_from = private unnamed_addr constant [58 x i8] c"Java.Util.RandomGenerators.IRandomGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.20448_to = private unnamed_addr constant [33 x i8] c"java/util/random/RandomGenerator\00", align 1 +@.TypeMapEntry.20449_from = private unnamed_addr constant [65 x i8] c"Java.Util.RandomGenerators.IRandomGeneratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20450_from = private unnamed_addr constant [64 x i8] c"Java.Util.RandomGenerators.RandomGeneratorFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20451_to = private unnamed_addr constant [40 x i8] c"java/util/random/RandomGeneratorFactory\00", align 1 +@.TypeMapEntry.20452_from = private unnamed_addr constant [43 x i8] c"Java.Util.Regex.IMatchResult, Mono.Android\00", align 1 +@.TypeMapEntry.20453_to = private unnamed_addr constant [28 x i8] c"java/util/regex/MatchResult\00", align 1 +@.TypeMapEntry.20454_from = private unnamed_addr constant [50 x i8] c"Java.Util.Regex.IMatchResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20455_from = private unnamed_addr constant [38 x i8] c"Java.Util.Regex.Matcher, Mono.Android\00", align 1 +@.TypeMapEntry.20456_to = private unnamed_addr constant [24 x i8] c"java/util/regex/Matcher\00", align 1 +@.TypeMapEntry.20457_from = private unnamed_addr constant [38 x i8] c"Java.Util.Regex.Pattern, Mono.Android\00", align 1 +@.TypeMapEntry.20458_to = private unnamed_addr constant [24 x i8] c"java/util/regex/Pattern\00", align 1 +@.TypeMapEntry.20459_from = private unnamed_addr constant [53 x i8] c"Java.Util.Regex.PatternSyntaxException, Mono.Android\00", align 1 +@.TypeMapEntry.20460_to = private unnamed_addr constant [39 x i8] c"java/util/regex/PatternSyntaxException\00", align 1 +@.TypeMapEntry.20461_from = private unnamed_addr constant [47 x i8] c"Java.Util.ResourceBundle+Control, Mono.Android\00", align 1 +@.TypeMapEntry.20462_to = private unnamed_addr constant [33 x i8] c"java/util/ResourceBundle$Control\00", align 1 +@.TypeMapEntry.20463_from = private unnamed_addr constant [39 x i8] c"Java.Util.ResourceBundle, Mono.Android\00", align 1 +@.TypeMapEntry.20464_to = private unnamed_addr constant [25 x i8] c"java/util/ResourceBundle\00", align 1 +@.TypeMapEntry.20465_from = private unnamed_addr constant [46 x i8] c"Java.Util.ResourceBundleInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20466_from = private unnamed_addr constant [32 x i8] c"Java.Util.Scanner, Mono.Android\00", align 1 +@.TypeMapEntry.20467_to = private unnamed_addr constant [18 x i8] c"java/util/Scanner\00", align 1 +@.TypeMapEntry.20468_from = private unnamed_addr constant [50 x i8] c"Java.Util.ServiceConfigurationError, Mono.Android\00", align 1 +@.TypeMapEntry.20469_to = private unnamed_addr constant [36 x i8] c"java/util/ServiceConfigurationError\00", align 1 +@.TypeMapEntry.20470_from = private unnamed_addr constant [48 x i8] c"Java.Util.ServiceLoader+IProvider, Mono.Android\00", align 1 +@.TypeMapEntry.20471_to = private unnamed_addr constant [33 x i8] c"java/util/ServiceLoader$Provider\00", align 1 +@.TypeMapEntry.20472_from = private unnamed_addr constant [55 x i8] c"Java.Util.ServiceLoader+IProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20473_from = private unnamed_addr constant [38 x i8] c"Java.Util.ServiceLoader, Mono.Android\00", align 1 +@.TypeMapEntry.20474_to = private unnamed_addr constant [24 x i8] c"java/util/ServiceLoader\00", align 1 +@.TypeMapEntry.20475_from = private unnamed_addr constant [28 x i8] c"Java.Util.Set, Mono.Android\00", align 1 +@.TypeMapEntry.20476_to = private unnamed_addr constant [28 x i8] c"mono/internal/java/util/Set\00", align 1 +@.TypeMapEntry.20477_from = private unnamed_addr constant [39 x i8] c"Java.Util.SimpleTimeZone, Mono.Android\00", align 1 +@.TypeMapEntry.20478_to = private unnamed_addr constant [25 x i8] c"java/util/SimpleTimeZone\00", align 1 +@.TypeMapEntry.20479_from = private unnamed_addr constant [36 x i8] c"Java.Util.Spliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20480_to = private unnamed_addr constant [36 x i8] c"mono/internal/java/util/Spliterator\00", align 1 +@.TypeMapEntry.20481_from = private unnamed_addr constant [63 x i8] c"Java.Util.Spliterators+AbstractDoubleSpliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20482_to = private unnamed_addr constant [49 x i8] c"java/util/Spliterators$AbstractDoubleSpliterator\00", align 1 +@.TypeMapEntry.20483_from = private unnamed_addr constant [70 x i8] c"Java.Util.Spliterators+AbstractDoubleSpliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20484_from = private unnamed_addr constant [60 x i8] c"Java.Util.Spliterators+AbstractIntSpliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20485_to = private unnamed_addr constant [46 x i8] c"java/util/Spliterators$AbstractIntSpliterator\00", align 1 +@.TypeMapEntry.20486_from = private unnamed_addr constant [67 x i8] c"Java.Util.Spliterators+AbstractIntSpliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20487_from = private unnamed_addr constant [61 x i8] c"Java.Util.Spliterators+AbstractLongSpliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20488_to = private unnamed_addr constant [47 x i8] c"java/util/Spliterators$AbstractLongSpliterator\00", align 1 +@.TypeMapEntry.20489_from = private unnamed_addr constant [68 x i8] c"Java.Util.Spliterators+AbstractLongSpliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20490_from = private unnamed_addr constant [57 x i8] c"Java.Util.Spliterators+AbstractSpliterator, Mono.Android\00", align 1 +@.TypeMapEntry.20491_to = private unnamed_addr constant [43 x i8] c"java/util/Spliterators$AbstractSpliterator\00", align 1 +@.TypeMapEntry.20492_from = private unnamed_addr constant [64 x i8] c"Java.Util.Spliterators+AbstractSpliteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20493_from = private unnamed_addr constant [37 x i8] c"Java.Util.Spliterators, Mono.Android\00", align 1 +@.TypeMapEntry.20494_to = private unnamed_addr constant [23 x i8] c"java/util/Spliterators\00", align 1 +@.TypeMapEntry.20495_from = private unnamed_addr constant [41 x i8] c"Java.Util.SplittableRandom, Mono.Android\00", align 1 +@.TypeMapEntry.20496_to = private unnamed_addr constant [27 x i8] c"java/util/SplittableRandom\00", align 1 +@.TypeMapEntry.20497_from = private unnamed_addr constant [30 x i8] c"Java.Util.Stack, Mono.Android\00", align 1 +@.TypeMapEntry.20498_to = private unnamed_addr constant [16 x i8] c"java/util/Stack\00", align 1 +@.TypeMapEntry.20499_from = private unnamed_addr constant [42 x i8] c"Java.Util.Streams.Collector, Mono.Android\00", align 1 +@.TypeMapEntry.20500_to = private unnamed_addr constant [41 x i8] c"mono/internal/java/util/stream/Collector\00", align 1 +@.TypeMapEntry.20501_from = private unnamed_addr constant [57 x i8] c"Java.Util.Streams.CollectorCharacteristics, Mono.Android\00", align 1 +@.TypeMapEntry.20502_to = private unnamed_addr constant [43 x i8] c"java/util/stream/Collector$Characteristics\00", align 1 +@.TypeMapEntry.20503_from = private unnamed_addr constant [43 x i8] c"Java.Util.Streams.Collectors, Mono.Android\00", align 1 +@.TypeMapEntry.20504_to = private unnamed_addr constant [28 x i8] c"java/util/stream/Collectors\00", align 1 +@.TypeMapEntry.20505_from = private unnamed_addr constant [44 x i8] c"Java.Util.Streams.IBaseStream, Mono.Android\00", align 1 +@.TypeMapEntry.20506_to = private unnamed_addr constant [28 x i8] c"java/util/stream/BaseStream\00", align 1 +@.TypeMapEntry.20507_from = private unnamed_addr constant [51 x i8] c"Java.Util.Streams.IBaseStreamInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20508_from = private unnamed_addr constant [43 x i8] c"Java.Util.Streams.ICollector, Mono.Android\00", align 1 +@.TypeMapEntry.20509_to = private unnamed_addr constant [27 x i8] c"java/util/stream/Collector\00", align 1 +@.TypeMapEntry.20510_from = private unnamed_addr constant [50 x i8] c"Java.Util.Streams.ICollectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20511_from = private unnamed_addr constant [46 x i8] c"Java.Util.Streams.StreamSupport, Mono.Android\00", align 1 +@.TypeMapEntry.20512_to = private unnamed_addr constant [31 x i8] c"java/util/stream/StreamSupport\00", align 1 +@.TypeMapEntry.20513_from = private unnamed_addr constant [37 x i8] c"Java.Util.StringJoiner, Mono.Android\00", align 1 +@.TypeMapEntry.20514_to = private unnamed_addr constant [23 x i8] c"java/util/StringJoiner\00", align 1 +@.TypeMapEntry.20515_from = private unnamed_addr constant [40 x i8] c"Java.Util.StringTokenizer, Mono.Android\00", align 1 +@.TypeMapEntry.20516_to = private unnamed_addr constant [26 x i8] c"java/util/StringTokenizer\00", align 1 +@.TypeMapEntry.20517_from = private unnamed_addr constant [33 x i8] c"Java.Util.TimeZone, Mono.Android\00", align 1 +@.TypeMapEntry.20518_to = private unnamed_addr constant [19 x i8] c"java/util/TimeZone\00", align 1 +@.TypeMapEntry.20519_from = private unnamed_addr constant [40 x i8] c"Java.Util.TimeZoneInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20520_from = private unnamed_addr constant [30 x i8] c"Java.Util.Timer, Mono.Android\00", align 1 +@.TypeMapEntry.20521_to = private unnamed_addr constant [16 x i8] c"java/util/Timer\00", align 1 +@.TypeMapEntry.20522_from = private unnamed_addr constant [34 x i8] c"Java.Util.TimerTask, Mono.Android\00", align 1 +@.TypeMapEntry.20523_to = private unnamed_addr constant [20 x i8] c"java/util/TimerTask\00", align 1 +@.TypeMapEntry.20524_from = private unnamed_addr constant [41 x i8] c"Java.Util.TimerTaskInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20525_from = private unnamed_addr constant [50 x i8] c"Java.Util.TooManyListenersException, Mono.Android\00", align 1 +@.TypeMapEntry.20526_to = private unnamed_addr constant [36 x i8] c"java/util/TooManyListenersException\00", align 1 +@.TypeMapEntry.20527_from = private unnamed_addr constant [32 x i8] c"Java.Util.TreeMap, Mono.Android\00", align 1 +@.TypeMapEntry.20528_to = private unnamed_addr constant [18 x i8] c"java/util/TreeMap\00", align 1 +@.TypeMapEntry.20529_from = private unnamed_addr constant [32 x i8] c"Java.Util.TreeSet, Mono.Android\00", align 1 +@.TypeMapEntry.20530_to = private unnamed_addr constant [18 x i8] c"java/util/TreeSet\00", align 1 +@.TypeMapEntry.20531_from = private unnamed_addr constant [29 x i8] c"Java.Util.UUID, Mono.Android\00", align 1 +@.TypeMapEntry.20532_to = private unnamed_addr constant [15 x i8] c"java/util/UUID\00", align 1 +@.TypeMapEntry.20533_from = private unnamed_addr constant [57 x i8] c"Java.Util.UnknownFormatConversionException, Mono.Android\00", align 1 +@.TypeMapEntry.20534_to = private unnamed_addr constant [43 x i8] c"java/util/UnknownFormatConversionException\00", align 1 +@.TypeMapEntry.20535_from = private unnamed_addr constant [52 x i8] c"Java.Util.UnknownFormatFlagsException, Mono.Android\00", align 1 +@.TypeMapEntry.20536_to = private unnamed_addr constant [38 x i8] c"java/util/UnknownFormatFlagsException\00", align 1 +@.TypeMapEntry.20537_from = private unnamed_addr constant [31 x i8] c"Java.Util.Vector, Mono.Android\00", align 1 +@.TypeMapEntry.20538_to = private unnamed_addr constant [17 x i8] c"java/util/Vector\00", align 1 +@.TypeMapEntry.20539_from = private unnamed_addr constant [36 x i8] c"Java.Util.WeakHashMap, Mono.Android\00", align 1 +@.TypeMapEntry.20540_to = private unnamed_addr constant [22 x i8] c"java/util/WeakHashMap\00", align 1 +@.TypeMapEntry.20541_from = private unnamed_addr constant [36 x i8] c"Java.Util.Zip.Adler32, Mono.Android\00", align 1 +@.TypeMapEntry.20542_to = private unnamed_addr constant [22 x i8] c"java/util/zip/Adler32\00", align 1 +@.TypeMapEntry.20543_from = private unnamed_addr constant [34 x i8] c"Java.Util.Zip.CRC32, Mono.Android\00", align 1 +@.TypeMapEntry.20544_to = private unnamed_addr constant [20 x i8] c"java/util/zip/CRC32\00", align 1 +@.TypeMapEntry.20545_from = private unnamed_addr constant [35 x i8] c"Java.Util.Zip.CRC32C, Mono.Android\00", align 1 +@.TypeMapEntry.20546_to = private unnamed_addr constant [21 x i8] c"java/util/zip/CRC32C\00", align 1 +@.TypeMapEntry.20547_from = private unnamed_addr constant [47 x i8] c"Java.Util.Zip.CheckedInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20548_to = private unnamed_addr constant [33 x i8] c"java/util/zip/CheckedInputStream\00", align 1 +@.TypeMapEntry.20549_from = private unnamed_addr constant [48 x i8] c"Java.Util.Zip.CheckedOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20550_to = private unnamed_addr constant [34 x i8] c"java/util/zip/CheckedOutputStream\00", align 1 +@.TypeMapEntry.20551_from = private unnamed_addr constant [48 x i8] c"Java.Util.Zip.DataFormatException, Mono.Android\00", align 1 +@.TypeMapEntry.20552_to = private unnamed_addr constant [34 x i8] c"java/util/zip/DataFormatException\00", align 1 +@.TypeMapEntry.20553_from = private unnamed_addr constant [37 x i8] c"Java.Util.Zip.Deflater, Mono.Android\00", align 1 +@.TypeMapEntry.20554_to = private unnamed_addr constant [23 x i8] c"java/util/zip/Deflater\00", align 1 +@.TypeMapEntry.20555_from = private unnamed_addr constant [48 x i8] c"Java.Util.Zip.DeflaterInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20556_to = private unnamed_addr constant [34 x i8] c"java/util/zip/DeflaterInputStream\00", align 1 +@.TypeMapEntry.20557_from = private unnamed_addr constant [49 x i8] c"Java.Util.Zip.DeflaterOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20558_to = private unnamed_addr constant [35 x i8] c"java/util/zip/DeflaterOutputStream\00", align 1 +@.TypeMapEntry.20559_from = private unnamed_addr constant [44 x i8] c"Java.Util.Zip.GZIPInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20560_to = private unnamed_addr constant [30 x i8] c"java/util/zip/GZIPInputStream\00", align 1 +@.TypeMapEntry.20561_from = private unnamed_addr constant [45 x i8] c"Java.Util.Zip.GZIPOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20562_to = private unnamed_addr constant [31 x i8] c"java/util/zip/GZIPOutputStream\00", align 1 +@.TypeMapEntry.20563_from = private unnamed_addr constant [38 x i8] c"Java.Util.Zip.IChecksum, Mono.Android\00", align 1 +@.TypeMapEntry.20564_to = private unnamed_addr constant [23 x i8] c"java/util/zip/Checksum\00", align 1 +@.TypeMapEntry.20565_from = private unnamed_addr constant [45 x i8] c"Java.Util.Zip.IChecksumInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20566_from = private unnamed_addr constant [37 x i8] c"Java.Util.Zip.Inflater, Mono.Android\00", align 1 +@.TypeMapEntry.20567_to = private unnamed_addr constant [23 x i8] c"java/util/zip/Inflater\00", align 1 +@.TypeMapEntry.20568_from = private unnamed_addr constant [48 x i8] c"Java.Util.Zip.InflaterInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20569_to = private unnamed_addr constant [34 x i8] c"java/util/zip/InflaterInputStream\00", align 1 +@.TypeMapEntry.20570_from = private unnamed_addr constant [49 x i8] c"Java.Util.Zip.InflaterOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20571_to = private unnamed_addr constant [35 x i8] c"java/util/zip/InflaterOutputStream\00", align 1 +@.TypeMapEntry.20572_from = private unnamed_addr constant [37 x i8] c"Java.Util.Zip.ZipEntry, Mono.Android\00", align 1 +@.TypeMapEntry.20573_to = private unnamed_addr constant [23 x i8] c"java/util/zip/ZipEntry\00", align 1 +@.TypeMapEntry.20574_from = private unnamed_addr constant [37 x i8] c"Java.Util.Zip.ZipError, Mono.Android\00", align 1 +@.TypeMapEntry.20575_to = private unnamed_addr constant [23 x i8] c"java/util/zip/ZipError\00", align 1 +@.TypeMapEntry.20576_from = private unnamed_addr constant [41 x i8] c"Java.Util.Zip.ZipException, Mono.Android\00", align 1 +@.TypeMapEntry.20577_to = private unnamed_addr constant [27 x i8] c"java/util/zip/ZipException\00", align 1 +@.TypeMapEntry.20578_from = private unnamed_addr constant [36 x i8] c"Java.Util.Zip.ZipFile, Mono.Android\00", align 1 +@.TypeMapEntry.20579_to = private unnamed_addr constant [22 x i8] c"java/util/zip/ZipFile\00", align 1 +@.TypeMapEntry.20580_from = private unnamed_addr constant [43 x i8] c"Java.Util.Zip.ZipInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20581_to = private unnamed_addr constant [29 x i8] c"java/util/zip/ZipInputStream\00", align 1 +@.TypeMapEntry.20582_from = private unnamed_addr constant [44 x i8] c"Java.Util.Zip.ZipOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20583_to = private unnamed_addr constant [30 x i8] c"java/util/zip/ZipOutputStream\00", align 1 +@.TypeMapEntry.20584_from = private unnamed_addr constant [54 x i8] c"Javax.Annotation.Concurrent.IGuardedBy, Jsr305Binding\00", align 1 +@.TypeMapEntry.20585_to = private unnamed_addr constant [38 x i8] c"javax/annotation/concurrent/GuardedBy\00", align 1 +@.TypeMapEntry.20586_from = private unnamed_addr constant [61 x i8] c"Javax.Annotation.Concurrent.IGuardedByInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20587_from = private unnamed_addr constant [54 x i8] c"Javax.Annotation.Concurrent.IImmutable, Jsr305Binding\00", align 1 +@.TypeMapEntry.20588_to = private unnamed_addr constant [38 x i8] c"javax/annotation/concurrent/Immutable\00", align 1 +@.TypeMapEntry.20589_from = private unnamed_addr constant [61 x i8] c"Javax.Annotation.Concurrent.IImmutableInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20590_from = private unnamed_addr constant [58 x i8] c"Javax.Annotation.Concurrent.INotThreadSafe, Jsr305Binding\00", align 1 +@.TypeMapEntry.20591_to = private unnamed_addr constant [42 x i8] c"javax/annotation/concurrent/NotThreadSafe\00", align 1 +@.TypeMapEntry.20592_from = private unnamed_addr constant [65 x i8] c"Javax.Annotation.Concurrent.INotThreadSafeInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20593_from = private unnamed_addr constant [55 x i8] c"Javax.Annotation.Concurrent.IThreadSafe, Jsr305Binding\00", align 1 +@.TypeMapEntry.20594_to = private unnamed_addr constant [39 x i8] c"javax/annotation/concurrent/ThreadSafe\00", align 1 +@.TypeMapEntry.20595_from = private unnamed_addr constant [62 x i8] c"Javax.Annotation.Concurrent.IThreadSafeInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20596_from = private unnamed_addr constant [46 x i8] c"Javax.Annotation.ICheckForNull, Jsr305Binding\00", align 1 +@.TypeMapEntry.20597_to = private unnamed_addr constant [30 x i8] c"javax/annotation/CheckForNull\00", align 1 +@.TypeMapEntry.20598_from = private unnamed_addr constant [53 x i8] c"Javax.Annotation.ICheckForNullInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20599_from = private unnamed_addr constant [48 x i8] c"Javax.Annotation.ICheckForSigned, Jsr305Binding\00", align 1 +@.TypeMapEntry.20600_to = private unnamed_addr constant [32 x i8] c"javax/annotation/CheckForSigned\00", align 1 +@.TypeMapEntry.20601_from = private unnamed_addr constant [55 x i8] c"Javax.Annotation.ICheckForSignedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20602_from = private unnamed_addr constant [50 x i8] c"Javax.Annotation.ICheckReturnValue, Jsr305Binding\00", align 1 +@.TypeMapEntry.20603_to = private unnamed_addr constant [34 x i8] c"javax/annotation/CheckReturnValue\00", align 1 +@.TypeMapEntry.20604_from = private unnamed_addr constant [57 x i8] c"Javax.Annotation.ICheckReturnValueInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20605_from = private unnamed_addr constant [43 x i8] c"Javax.Annotation.IDetainted, Jsr305Binding\00", align 1 +@.TypeMapEntry.20606_to = private unnamed_addr constant [27 x i8] c"javax/annotation/Detainted\00", align 1 +@.TypeMapEntry.20607_from = private unnamed_addr constant [50 x i8] c"Javax.Annotation.IDetaintedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20608_from = private unnamed_addr constant [48 x i8] c"Javax.Annotation.IMatchesPattern, Jsr305Binding\00", align 1 +@.TypeMapEntry.20609_to = private unnamed_addr constant [32 x i8] c"javax/annotation/MatchesPattern\00", align 1 +@.TypeMapEntry.20610_from = private unnamed_addr constant [55 x i8] c"Javax.Annotation.IMatchesPatternInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20611_from = private unnamed_addr constant [45 x i8] c"Javax.Annotation.INonnegative, Jsr305Binding\00", align 1 +@.TypeMapEntry.20612_to = private unnamed_addr constant [29 x i8] c"javax/annotation/Nonnegative\00", align 1 +@.TypeMapEntry.20613_from = private unnamed_addr constant [52 x i8] c"Javax.Annotation.INonnegativeInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20614_from = private unnamed_addr constant [41 x i8] c"Javax.Annotation.INonnull, Jsr305Binding\00", align 1 +@.TypeMapEntry.20615_to = private unnamed_addr constant [25 x i8] c"javax/annotation/Nonnull\00", align 1 +@.TypeMapEntry.20616_from = private unnamed_addr constant [48 x i8] c"Javax.Annotation.INonnullInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20617_from = private unnamed_addr constant [42 x i8] c"Javax.Annotation.INullable, Jsr305Binding\00", align 1 +@.TypeMapEntry.20618_to = private unnamed_addr constant [26 x i8] c"javax/annotation/Nullable\00", align 1 +@.TypeMapEntry.20619_from = private unnamed_addr constant [49 x i8] c"Javax.Annotation.INullableInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20620_from = private unnamed_addr constant [66 x i8] c"Javax.Annotation.IOverridingMethodsMustInvokeSuper, Jsr305Binding\00", align 1 +@.TypeMapEntry.20621_to = private unnamed_addr constant [50 x i8] c"javax/annotation/OverridingMethodsMustInvokeSuper\00", align 1 +@.TypeMapEntry.20622_from = private unnamed_addr constant [73 x i8] c"Javax.Annotation.IOverridingMethodsMustInvokeSuperInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20623_from = private unnamed_addr constant [63 x i8] c"Javax.Annotation.IParametersAreNonnullByDefault, Jsr305Binding\00", align 1 +@.TypeMapEntry.20624_to = private unnamed_addr constant [47 x i8] c"javax/annotation/ParametersAreNonnullByDefault\00", align 1 +@.TypeMapEntry.20625_from = private unnamed_addr constant [70 x i8] c"Javax.Annotation.IParametersAreNonnullByDefaultInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20626_from = private unnamed_addr constant [64 x i8] c"Javax.Annotation.IParametersAreNullableByDefault, Jsr305Binding\00", align 1 +@.TypeMapEntry.20627_to = private unnamed_addr constant [48 x i8] c"javax/annotation/ParametersAreNullableByDefault\00", align 1 +@.TypeMapEntry.20628_from = private unnamed_addr constant [71 x i8] c"Javax.Annotation.IParametersAreNullableByDefaultInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20629_from = private unnamed_addr constant [45 x i8] c"Javax.Annotation.IPropertyKey, Jsr305Binding\00", align 1 +@.TypeMapEntry.20630_to = private unnamed_addr constant [29 x i8] c"javax/annotation/PropertyKey\00", align 1 +@.TypeMapEntry.20631_from = private unnamed_addr constant [52 x i8] c"Javax.Annotation.IPropertyKeyInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20632_from = private unnamed_addr constant [39 x i8] c"Javax.Annotation.IRegEx, Jsr305Binding\00", align 1 +@.TypeMapEntry.20633_to = private unnamed_addr constant [23 x i8] c"javax/annotation/RegEx\00", align 1 +@.TypeMapEntry.20634_from = private unnamed_addr constant [46 x i8] c"Javax.Annotation.IRegExInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20635_from = private unnamed_addr constant [40 x i8] c"Javax.Annotation.ISigned, Jsr305Binding\00", align 1 +@.TypeMapEntry.20636_to = private unnamed_addr constant [24 x i8] c"javax/annotation/Signed\00", align 1 +@.TypeMapEntry.20637_from = private unnamed_addr constant [47 x i8] c"Javax.Annotation.ISignedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20638_from = private unnamed_addr constant [40 x i8] c"Javax.Annotation.ISyntax, Jsr305Binding\00", align 1 +@.TypeMapEntry.20639_to = private unnamed_addr constant [24 x i8] c"javax/annotation/Syntax\00", align 1 +@.TypeMapEntry.20640_from = private unnamed_addr constant [47 x i8] c"Javax.Annotation.ISyntaxInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20641_from = private unnamed_addr constant [41 x i8] c"Javax.Annotation.ITainted, Jsr305Binding\00", align 1 +@.TypeMapEntry.20642_to = private unnamed_addr constant [25 x i8] c"javax/annotation/Tainted\00", align 1 +@.TypeMapEntry.20643_from = private unnamed_addr constant [48 x i8] c"Javax.Annotation.ITaintedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20644_from = private unnamed_addr constant [43 x i8] c"Javax.Annotation.IUntainted, Jsr305Binding\00", align 1 +@.TypeMapEntry.20645_to = private unnamed_addr constant [27 x i8] c"javax/annotation/Untainted\00", align 1 +@.TypeMapEntry.20646_from = private unnamed_addr constant [50 x i8] c"Javax.Annotation.IUntaintedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20647_from = private unnamed_addr constant [43 x i8] c"Javax.Annotation.IWillClose, Jsr305Binding\00", align 1 +@.TypeMapEntry.20648_to = private unnamed_addr constant [27 x i8] c"javax/annotation/WillClose\00", align 1 +@.TypeMapEntry.20649_from = private unnamed_addr constant [50 x i8] c"Javax.Annotation.IWillCloseInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20650_from = private unnamed_addr constant [53 x i8] c"Javax.Annotation.IWillCloseWhenClosed, Jsr305Binding\00", align 1 +@.TypeMapEntry.20651_to = private unnamed_addr constant [37 x i8] c"javax/annotation/WillCloseWhenClosed\00", align 1 +@.TypeMapEntry.20652_from = private unnamed_addr constant [60 x i8] c"Javax.Annotation.IWillCloseWhenClosedInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20653_from = private unnamed_addr constant [46 x i8] c"Javax.Annotation.IWillNotClose, Jsr305Binding\00", align 1 +@.TypeMapEntry.20654_to = private unnamed_addr constant [30 x i8] c"javax/annotation/WillNotClose\00", align 1 +@.TypeMapEntry.20655_from = private unnamed_addr constant [53 x i8] c"Javax.Annotation.IWillNotCloseInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20656_from = private unnamed_addr constant [54 x i8] c"Javax.Annotation.MatchesPatternChecker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20657_to = private unnamed_addr constant [40 x i8] c"javax/annotation/MatchesPattern$Checker\00", align 1 +@.TypeMapEntry.20658_from = private unnamed_addr constant [48 x i8] c"Javax.Annotation.Meta.IExclusive, Jsr305Binding\00", align 1 +@.TypeMapEntry.20659_to = private unnamed_addr constant [32 x i8] c"javax/annotation/meta/Exclusive\00", align 1 +@.TypeMapEntry.20660_from = private unnamed_addr constant [55 x i8] c"Javax.Annotation.Meta.IExclusiveInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20661_from = private unnamed_addr constant [49 x i8] c"Javax.Annotation.Meta.IExhaustive, Jsr305Binding\00", align 1 +@.TypeMapEntry.20662_to = private unnamed_addr constant [33 x i8] c"javax/annotation/meta/Exhaustive\00", align 1 +@.TypeMapEntry.20663_from = private unnamed_addr constant [56 x i8] c"Javax.Annotation.Meta.IExhaustiveInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20664_from = private unnamed_addr constant [52 x i8] c"Javax.Annotation.Meta.ITypeQualifier, Jsr305Binding\00", align 1 +@.TypeMapEntry.20665_to = private unnamed_addr constant [36 x i8] c"javax/annotation/meta/TypeQualifier\00", align 1 +@.TypeMapEntry.20666_from = private unnamed_addr constant [59 x i8] c"Javax.Annotation.Meta.ITypeQualifierDefault, Jsr305Binding\00", align 1 +@.TypeMapEntry.20667_to = private unnamed_addr constant [43 x i8] c"javax/annotation/meta/TypeQualifierDefault\00", align 1 +@.TypeMapEntry.20668_from = private unnamed_addr constant [66 x i8] c"Javax.Annotation.Meta.ITypeQualifierDefaultInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20669_from = private unnamed_addr constant [59 x i8] c"Javax.Annotation.Meta.ITypeQualifierInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20670_from = private unnamed_addr constant [60 x i8] c"Javax.Annotation.Meta.ITypeQualifierNickname, Jsr305Binding\00", align 1 +@.TypeMapEntry.20671_to = private unnamed_addr constant [44 x i8] c"javax/annotation/meta/TypeQualifierNickname\00", align 1 +@.TypeMapEntry.20672_from = private unnamed_addr constant [67 x i8] c"Javax.Annotation.Meta.ITypeQualifierNicknameInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20673_from = private unnamed_addr constant [61 x i8] c"Javax.Annotation.Meta.ITypeQualifierValidator, Jsr305Binding\00", align 1 +@.TypeMapEntry.20674_to = private unnamed_addr constant [45 x i8] c"javax/annotation/meta/TypeQualifierValidator\00", align 1 +@.TypeMapEntry.20675_from = private unnamed_addr constant [68 x i8] c"Javax.Annotation.Meta.ITypeQualifierValidatorInvoker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20676_from = private unnamed_addr constant [42 x i8] c"Javax.Annotation.Meta.When, Jsr305Binding\00", align 1 +@.TypeMapEntry.20677_to = private unnamed_addr constant [27 x i8] c"javax/annotation/meta/When\00", align 1 +@.TypeMapEntry.20678_from = private unnamed_addr constant [51 x i8] c"Javax.Annotation.NonnegativeChecker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20679_to = private unnamed_addr constant [37 x i8] c"javax/annotation/Nonnegative$Checker\00", align 1 +@.TypeMapEntry.20680_from = private unnamed_addr constant [47 x i8] c"Javax.Annotation.NonnullChecker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20681_to = private unnamed_addr constant [33 x i8] c"javax/annotation/Nonnull$Checker\00", align 1 +@.TypeMapEntry.20682_from = private unnamed_addr constant [53 x i8] c"Javax.Annotation.Processing.IGenerated, Mono.Android\00", align 1 +@.TypeMapEntry.20683_to = private unnamed_addr constant [38 x i8] c"javax/annotation/processing/Generated\00", align 1 +@.TypeMapEntry.20684_from = private unnamed_addr constant [60 x i8] c"Javax.Annotation.Processing.IGeneratedInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20685_from = private unnamed_addr constant [45 x i8] c"Javax.Annotation.RegExChecker, Jsr305Binding\00", align 1 +@.TypeMapEntry.20686_to = private unnamed_addr constant [31 x i8] c"javax/annotation/RegEx$Checker\00", align 1 +@.TypeMapEntry.20687_from = private unnamed_addr constant [47 x i8] c"Javax.Crypto.AEADBadTagException, Mono.Android\00", align 1 +@.TypeMapEntry.20688_to = private unnamed_addr constant [33 x i8] c"javax/crypto/AEADBadTagException\00", align 1 +@.TypeMapEntry.20689_from = private unnamed_addr constant [47 x i8] c"Javax.Crypto.BadPaddingException, Mono.Android\00", align 1 +@.TypeMapEntry.20690_to = private unnamed_addr constant [33 x i8] c"javax/crypto/BadPaddingException\00", align 1 +@.TypeMapEntry.20691_from = private unnamed_addr constant [34 x i8] c"Javax.Crypto.Cipher, Mono.Android\00", align 1 +@.TypeMapEntry.20692_to = private unnamed_addr constant [20 x i8] c"javax/crypto/Cipher\00", align 1 +@.TypeMapEntry.20693_from = private unnamed_addr constant [45 x i8] c"Javax.Crypto.CipherInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20694_to = private unnamed_addr constant [31 x i8] c"javax/crypto/CipherInputStream\00", align 1 +@.TypeMapEntry.20695_from = private unnamed_addr constant [46 x i8] c"Javax.Crypto.CipherOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.20696_to = private unnamed_addr constant [32 x i8] c"javax/crypto/CipherOutputStream\00", align 1 +@.TypeMapEntry.20697_from = private unnamed_addr constant [37 x i8] c"Javax.Crypto.CipherSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20698_to = private unnamed_addr constant [23 x i8] c"javax/crypto/CipherSpi\00", align 1 +@.TypeMapEntry.20699_from = private unnamed_addr constant [44 x i8] c"Javax.Crypto.CipherSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20700_from = private unnamed_addr constant [51 x i8] c"Javax.Crypto.EncryptedPrivateKeyInfo, Mono.Android\00", align 1 +@.TypeMapEntry.20701_to = private unnamed_addr constant [37 x i8] c"javax/crypto/EncryptedPrivateKeyInfo\00", align 1 +@.TypeMapEntry.20702_from = private unnamed_addr constant [46 x i8] c"Javax.Crypto.ExemptionMechanism, Mono.Android\00", align 1 +@.TypeMapEntry.20703_to = private unnamed_addr constant [32 x i8] c"javax/crypto/ExemptionMechanism\00", align 1 +@.TypeMapEntry.20704_from = private unnamed_addr constant [55 x i8] c"Javax.Crypto.ExemptionMechanismException, Mono.Android\00", align 1 +@.TypeMapEntry.20705_to = private unnamed_addr constant [41 x i8] c"javax/crypto/ExemptionMechanismException\00", align 1 +@.TypeMapEntry.20706_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.ExemptionMechanismSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20707_to = private unnamed_addr constant [35 x i8] c"javax/crypto/ExemptionMechanismSpi\00", align 1 +@.TypeMapEntry.20708_from = private unnamed_addr constant [56 x i8] c"Javax.Crypto.ExemptionMechanismSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20709_from = private unnamed_addr constant [38 x i8] c"Javax.Crypto.ISecretKey, Mono.Android\00", align 1 +@.TypeMapEntry.20710_to = private unnamed_addr constant [23 x i8] c"javax/crypto/SecretKey\00", align 1 +@.TypeMapEntry.20711_from = private unnamed_addr constant [45 x i8] c"Javax.Crypto.ISecretKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20712_from = private unnamed_addr constant [53 x i8] c"Javax.Crypto.IllegalBlockSizeException, Mono.Android\00", align 1 +@.TypeMapEntry.20713_to = private unnamed_addr constant [39 x i8] c"javax/crypto/IllegalBlockSizeException\00", align 1 +@.TypeMapEntry.20714_from = private unnamed_addr constant [51 x i8] c"Javax.Crypto.Interfaces.DHPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.20715_to = private unnamed_addr constant [51 x i8] c"mono/internal/javax/crypto/interfaces/DHPrivateKey\00", align 1 +@.TypeMapEntry.20716_from = private unnamed_addr constant [50 x i8] c"Javax.Crypto.Interfaces.DHPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.20717_to = private unnamed_addr constant [50 x i8] c"mono/internal/javax/crypto/interfaces/DHPublicKey\00", align 1 +@.TypeMapEntry.20718_from = private unnamed_addr constant [45 x i8] c"Javax.Crypto.Interfaces.IDHKey, Mono.Android\00", align 1 +@.TypeMapEntry.20719_to = private unnamed_addr constant [30 x i8] c"javax/crypto/interfaces/DHKey\00", align 1 +@.TypeMapEntry.20720_from = private unnamed_addr constant [52 x i8] c"Javax.Crypto.Interfaces.IDHKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20721_from = private unnamed_addr constant [52 x i8] c"Javax.Crypto.Interfaces.IDHPrivateKey, Mono.Android\00", align 1 +@.TypeMapEntry.20722_to = private unnamed_addr constant [37 x i8] c"javax/crypto/interfaces/DHPrivateKey\00", align 1 +@.TypeMapEntry.20723_from = private unnamed_addr constant [59 x i8] c"Javax.Crypto.Interfaces.IDHPrivateKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20724_from = private unnamed_addr constant [51 x i8] c"Javax.Crypto.Interfaces.IDHPublicKey, Mono.Android\00", align 1 +@.TypeMapEntry.20725_to = private unnamed_addr constant [36 x i8] c"javax/crypto/interfaces/DHPublicKey\00", align 1 +@.TypeMapEntry.20726_from = private unnamed_addr constant [58 x i8] c"Javax.Crypto.Interfaces.IDHPublicKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20727_from = private unnamed_addr constant [46 x i8] c"Javax.Crypto.Interfaces.IPBEKey, Mono.Android\00", align 1 +@.TypeMapEntry.20728_to = private unnamed_addr constant [31 x i8] c"javax/crypto/interfaces/PBEKey\00", align 1 +@.TypeMapEntry.20729_from = private unnamed_addr constant [53 x i8] c"Javax.Crypto.Interfaces.IPBEKeyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20730_from = private unnamed_addr constant [45 x i8] c"Javax.Crypto.Interfaces.PBEKey, Mono.Android\00", align 1 +@.TypeMapEntry.20731_to = private unnamed_addr constant [45 x i8] c"mono/internal/javax/crypto/interfaces/PBEKey\00", align 1 +@.TypeMapEntry.20732_from = private unnamed_addr constant [40 x i8] c"Javax.Crypto.KeyAgreement, Mono.Android\00", align 1 +@.TypeMapEntry.20733_to = private unnamed_addr constant [26 x i8] c"javax/crypto/KeyAgreement\00", align 1 +@.TypeMapEntry.20734_from = private unnamed_addr constant [43 x i8] c"Javax.Crypto.KeyAgreementSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20735_to = private unnamed_addr constant [29 x i8] c"javax/crypto/KeyAgreementSpi\00", align 1 +@.TypeMapEntry.20736_from = private unnamed_addr constant [50 x i8] c"Javax.Crypto.KeyAgreementSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20737_from = private unnamed_addr constant [40 x i8] c"Javax.Crypto.KeyGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.20738_to = private unnamed_addr constant [26 x i8] c"javax/crypto/KeyGenerator\00", align 1 +@.TypeMapEntry.20739_from = private unnamed_addr constant [43 x i8] c"Javax.Crypto.KeyGeneratorSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20740_to = private unnamed_addr constant [29 x i8] c"javax/crypto/KeyGeneratorSpi\00", align 1 +@.TypeMapEntry.20741_from = private unnamed_addr constant [50 x i8] c"Javax.Crypto.KeyGeneratorSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20742_from = private unnamed_addr constant [31 x i8] c"Javax.Crypto.Mac, Mono.Android\00", align 1 +@.TypeMapEntry.20743_to = private unnamed_addr constant [17 x i8] c"javax/crypto/Mac\00", align 1 +@.TypeMapEntry.20744_from = private unnamed_addr constant [34 x i8] c"Javax.Crypto.MacSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20745_to = private unnamed_addr constant [20 x i8] c"javax/crypto/MacSpi\00", align 1 +@.TypeMapEntry.20746_from = private unnamed_addr constant [41 x i8] c"Javax.Crypto.MacSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20747_from = private unnamed_addr constant [50 x i8] c"Javax.Crypto.NoSuchPaddingException, Mono.Android\00", align 1 +@.TypeMapEntry.20748_to = private unnamed_addr constant [36 x i8] c"javax/crypto/NoSuchPaddingException\00", align 1 +@.TypeMapEntry.20749_from = private unnamed_addr constant [38 x i8] c"Javax.Crypto.NullCipher, Mono.Android\00", align 1 +@.TypeMapEntry.20750_to = private unnamed_addr constant [24 x i8] c"javax/crypto/NullCipher\00", align 1 +@.TypeMapEntry.20751_from = private unnamed_addr constant [40 x i8] c"Javax.Crypto.SealedObject, Mono.Android\00", align 1 +@.TypeMapEntry.20752_to = private unnamed_addr constant [26 x i8] c"javax/crypto/SealedObject\00", align 1 +@.TypeMapEntry.20753_from = private unnamed_addr constant [37 x i8] c"Javax.Crypto.SecretKey, Mono.Android\00", align 1 +@.TypeMapEntry.20754_to = private unnamed_addr constant [37 x i8] c"mono/internal/javax/crypto/SecretKey\00", align 1 +@.TypeMapEntry.20755_from = private unnamed_addr constant [44 x i8] c"Javax.Crypto.SecretKeyFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20756_to = private unnamed_addr constant [30 x i8] c"javax/crypto/SecretKeyFactory\00", align 1 +@.TypeMapEntry.20757_from = private unnamed_addr constant [47 x i8] c"Javax.Crypto.SecretKeyFactorySpi, Mono.Android\00", align 1 +@.TypeMapEntry.20758_to = private unnamed_addr constant [33 x i8] c"javax/crypto/SecretKeyFactorySpi\00", align 1 +@.TypeMapEntry.20759_from = private unnamed_addr constant [54 x i8] c"Javax.Crypto.SecretKeyFactorySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20760_from = private unnamed_addr constant [48 x i8] c"Javax.Crypto.ShortBufferException, Mono.Android\00", align 1 +@.TypeMapEntry.20761_to = private unnamed_addr constant [34 x i8] c"javax/crypto/ShortBufferException\00", align 1 +@.TypeMapEntry.20762_from = private unnamed_addr constant [54 x i8] c"Javax.Crypto.Spec.ChaCha20ParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20763_to = private unnamed_addr constant [40 x i8] c"javax/crypto/spec/ChaCha20ParameterSpec\00", align 1 +@.TypeMapEntry.20764_from = private unnamed_addr constant [43 x i8] c"Javax.Crypto.Spec.DESKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20765_to = private unnamed_addr constant [29 x i8] c"javax/crypto/spec/DESKeySpec\00", align 1 +@.TypeMapEntry.20766_from = private unnamed_addr constant [46 x i8] c"Javax.Crypto.Spec.DESedeKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20767_to = private unnamed_addr constant [32 x i8] c"javax/crypto/spec/DESedeKeySpec\00", align 1 +@.TypeMapEntry.20768_from = private unnamed_addr constant [51 x i8] c"Javax.Crypto.Spec.DHGenParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20769_to = private unnamed_addr constant [37 x i8] c"javax/crypto/spec/DHGenParameterSpec\00", align 1 +@.TypeMapEntry.20770_from = private unnamed_addr constant [48 x i8] c"Javax.Crypto.Spec.DHParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20771_to = private unnamed_addr constant [34 x i8] c"javax/crypto/spec/DHParameterSpec\00", align 1 +@.TypeMapEntry.20772_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.Spec.DHPrivateKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20773_to = private unnamed_addr constant [35 x i8] c"javax/crypto/spec/DHPrivateKeySpec\00", align 1 +@.TypeMapEntry.20774_from = private unnamed_addr constant [48 x i8] c"Javax.Crypto.Spec.DHPublicKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20775_to = private unnamed_addr constant [34 x i8] c"javax/crypto/spec/DHPublicKeySpec\00", align 1 +@.TypeMapEntry.20776_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.Spec.GCMParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20777_to = private unnamed_addr constant [35 x i8] c"javax/crypto/spec/GCMParameterSpec\00", align 1 +@.TypeMapEntry.20778_from = private unnamed_addr constant [48 x i8] c"Javax.Crypto.Spec.IvParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20779_to = private unnamed_addr constant [34 x i8] c"javax/crypto/spec/IvParameterSpec\00", align 1 +@.TypeMapEntry.20780_from = private unnamed_addr constant [50 x i8] c"Javax.Crypto.Spec.OAEPParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20781_to = private unnamed_addr constant [36 x i8] c"javax/crypto/spec/OAEPParameterSpec\00", align 1 +@.TypeMapEntry.20782_from = private unnamed_addr constant [43 x i8] c"Javax.Crypto.Spec.PBEKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20783_to = private unnamed_addr constant [29 x i8] c"javax/crypto/spec/PBEKeySpec\00", align 1 +@.TypeMapEntry.20784_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.Spec.PBEParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20785_to = private unnamed_addr constant [35 x i8] c"javax/crypto/spec/PBEParameterSpec\00", align 1 +@.TypeMapEntry.20786_from = private unnamed_addr constant [51 x i8] c"Javax.Crypto.Spec.PSource+PSpecified, Mono.Android\00", align 1 +@.TypeMapEntry.20787_to = private unnamed_addr constant [37 x i8] c"javax/crypto/spec/PSource$PSpecified\00", align 1 +@.TypeMapEntry.20788_from = private unnamed_addr constant [40 x i8] c"Javax.Crypto.Spec.PSource, Mono.Android\00", align 1 +@.TypeMapEntry.20789_to = private unnamed_addr constant [26 x i8] c"javax/crypto/spec/PSource\00", align 1 +@.TypeMapEntry.20790_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.Spec.RC2ParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20791_to = private unnamed_addr constant [35 x i8] c"javax/crypto/spec/RC2ParameterSpec\00", align 1 +@.TypeMapEntry.20792_from = private unnamed_addr constant [49 x i8] c"Javax.Crypto.Spec.RC5ParameterSpec, Mono.Android\00", align 1 +@.TypeMapEntry.20793_to = private unnamed_addr constant [35 x i8] c"javax/crypto/spec/RC5ParameterSpec\00", align 1 +@.TypeMapEntry.20794_from = private unnamed_addr constant [46 x i8] c"Javax.Crypto.Spec.SecretKeySpec, Mono.Android\00", align 1 +@.TypeMapEntry.20795_to = private unnamed_addr constant [32 x i8] c"javax/crypto/spec/SecretKeySpec\00", align 1 +@.TypeMapEntry.20796_from = private unnamed_addr constant [51 x i8] c"Javax.Microedition.Khronos.Egl.EGL10, Mono.Android\00", align 1 +@.TypeMapEntry.20797_to = private unnamed_addr constant [51 x i8] c"mono/internal/javax/microedition/khronos/egl/EGL10\00", align 1 +@.TypeMapEntry.20798_from = private unnamed_addr constant [51 x i8] c"Javax.Microedition.Khronos.Egl.EGL11, Mono.Android\00", align 1 +@.TypeMapEntry.20799_to = private unnamed_addr constant [51 x i8] c"mono/internal/javax/microedition/khronos/egl/EGL11\00", align 1 +@.TypeMapEntry.20800_from = private unnamed_addr constant [55 x i8] c"Javax.Microedition.Khronos.Egl.EGLConfig, Mono.Android\00", align 1 +@.TypeMapEntry.20801_to = private unnamed_addr constant [41 x i8] c"javax/microedition/khronos/egl/EGLConfig\00", align 1 +@.TypeMapEntry.20802_from = private unnamed_addr constant [62 x i8] c"Javax.Microedition.Khronos.Egl.EGLConfigInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20803_from = private unnamed_addr constant [56 x i8] c"Javax.Microedition.Khronos.Egl.EGLContext, Mono.Android\00", align 1 +@.TypeMapEntry.20804_to = private unnamed_addr constant [42 x i8] c"javax/microedition/khronos/egl/EGLContext\00", align 1 +@.TypeMapEntry.20805_from = private unnamed_addr constant [63 x i8] c"Javax.Microedition.Khronos.Egl.EGLContextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20806_from = private unnamed_addr constant [56 x i8] c"Javax.Microedition.Khronos.Egl.EGLDisplay, Mono.Android\00", align 1 +@.TypeMapEntry.20807_to = private unnamed_addr constant [42 x i8] c"javax/microedition/khronos/egl/EGLDisplay\00", align 1 +@.TypeMapEntry.20808_from = private unnamed_addr constant [63 x i8] c"Javax.Microedition.Khronos.Egl.EGLDisplayInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20809_from = private unnamed_addr constant [56 x i8] c"Javax.Microedition.Khronos.Egl.EGLSurface, Mono.Android\00", align 1 +@.TypeMapEntry.20810_to = private unnamed_addr constant [42 x i8] c"javax/microedition/khronos/egl/EGLSurface\00", align 1 +@.TypeMapEntry.20811_from = private unnamed_addr constant [63 x i8] c"Javax.Microedition.Khronos.Egl.EGLSurfaceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20812_from = private unnamed_addr constant [50 x i8] c"Javax.Microedition.Khronos.Egl.IEGL, Mono.Android\00", align 1 +@.TypeMapEntry.20813_to = private unnamed_addr constant [35 x i8] c"javax/microedition/khronos/egl/EGL\00", align 1 +@.TypeMapEntry.20814_from = private unnamed_addr constant [52 x i8] c"Javax.Microedition.Khronos.Egl.IEGL10, Mono.Android\00", align 1 +@.TypeMapEntry.20815_to = private unnamed_addr constant [37 x i8] c"javax/microedition/khronos/egl/EGL10\00", align 1 +@.TypeMapEntry.20816_from = private unnamed_addr constant [59 x i8] c"Javax.Microedition.Khronos.Egl.IEGL10Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.20817_from = private unnamed_addr constant [52 x i8] c"Javax.Microedition.Khronos.Egl.IEGL11, Mono.Android\00", align 1 +@.TypeMapEntry.20818_to = private unnamed_addr constant [37 x i8] c"javax/microedition/khronos/egl/EGL11\00", align 1 +@.TypeMapEntry.20819_from = private unnamed_addr constant [59 x i8] c"Javax.Microedition.Khronos.Egl.IEGL11Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.20820_from = private unnamed_addr constant [57 x i8] c"Javax.Microedition.Khronos.Egl.IEGLInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20821_from = private unnamed_addr constant [55 x i8] c"Javax.Microedition.Khronos.Opengles.GL10, Mono.Android\00", align 1 +@.TypeMapEntry.20822_to = private unnamed_addr constant [55 x i8] c"mono/internal/javax/microedition/khronos/opengles/GL10\00", align 1 +@.TypeMapEntry.20823_from = private unnamed_addr constant [55 x i8] c"Javax.Microedition.Khronos.Opengles.GL11, Mono.Android\00", align 1 +@.TypeMapEntry.20824_to = private unnamed_addr constant [55 x i8] c"mono/internal/javax/microedition/khronos/opengles/GL11\00", align 1 +@.TypeMapEntry.20825_from = private unnamed_addr constant [58 x i8] c"Javax.Microedition.Khronos.Opengles.GL11Ext, Mono.Android\00", align 1 +@.TypeMapEntry.20826_to = private unnamed_addr constant [58 x i8] c"mono/internal/javax/microedition/khronos/opengles/GL11Ext\00", align 1 +@.TypeMapEntry.20827_from = private unnamed_addr constant [68 x i8] c"Javax.Microedition.Khronos.Opengles.GL11ExtensionPack, Mono.Android\00", align 1 +@.TypeMapEntry.20828_to = private unnamed_addr constant [68 x i8] c"mono/internal/javax/microedition/khronos/opengles/GL11ExtensionPack\00", align 1 +@.TypeMapEntry.20829_from = private unnamed_addr constant [54 x i8] c"Javax.Microedition.Khronos.Opengles.IGL, Mono.Android\00", align 1 +@.TypeMapEntry.20830_to = private unnamed_addr constant [39 x i8] c"javax/microedition/khronos/opengles/GL\00", align 1 +@.TypeMapEntry.20831_from = private unnamed_addr constant [56 x i8] c"Javax.Microedition.Khronos.Opengles.IGL10, Mono.Android\00", align 1 +@.TypeMapEntry.20832_to = private unnamed_addr constant [41 x i8] c"javax/microedition/khronos/opengles/GL10\00", align 1 +@.TypeMapEntry.20833_from = private unnamed_addr constant [59 x i8] c"Javax.Microedition.Khronos.Opengles.IGL10Ext, Mono.Android\00", align 1 +@.TypeMapEntry.20834_to = private unnamed_addr constant [44 x i8] c"javax/microedition/khronos/opengles/GL10Ext\00", align 1 +@.TypeMapEntry.20835_from = private unnamed_addr constant [66 x i8] c"Javax.Microedition.Khronos.Opengles.IGL10ExtInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20836_from = private unnamed_addr constant [63 x i8] c"Javax.Microedition.Khronos.Opengles.IGL10Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.20837_from = private unnamed_addr constant [56 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11, Mono.Android\00", align 1 +@.TypeMapEntry.20838_to = private unnamed_addr constant [41 x i8] c"javax/microedition/khronos/opengles/GL11\00", align 1 +@.TypeMapEntry.20839_from = private unnamed_addr constant [59 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11Ext, Mono.Android\00", align 1 +@.TypeMapEntry.20840_to = private unnamed_addr constant [44 x i8] c"javax/microedition/khronos/opengles/GL11Ext\00", align 1 +@.TypeMapEntry.20841_from = private unnamed_addr constant [66 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11ExtInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20842_from = private unnamed_addr constant [69 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11ExtensionPack, Mono.Android\00", align 1 +@.TypeMapEntry.20843_to = private unnamed_addr constant [54 x i8] c"javax/microedition/khronos/opengles/GL11ExtensionPack\00", align 1 +@.TypeMapEntry.20844_from = private unnamed_addr constant [76 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11ExtensionPackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20845_from = private unnamed_addr constant [63 x i8] c"Javax.Microedition.Khronos.Opengles.IGL11Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.20846_from = private unnamed_addr constant [61 x i8] c"Javax.Microedition.Khronos.Opengles.IGLInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20847_from = private unnamed_addr constant [44 x i8] c"Javax.Net.ServerSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20848_to = private unnamed_addr constant [30 x i8] c"javax/net/ServerSocketFactory\00", align 1 +@.TypeMapEntry.20849_from = private unnamed_addr constant [51 x i8] c"Javax.Net.ServerSocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20850_from = private unnamed_addr constant [38 x i8] c"Javax.Net.SocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20851_to = private unnamed_addr constant [24 x i8] c"javax/net/SocketFactory\00", align 1 +@.TypeMapEntry.20852_from = private unnamed_addr constant [45 x i8] c"Javax.Net.SocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20853_from = private unnamed_addr constant [59 x i8] c"Javax.Net.Ssl.CertPathTrustManagerParameters, Mono.Android\00", align 1 +@.TypeMapEntry.20854_to = private unnamed_addr constant [45 x i8] c"javax/net/ssl/CertPathTrustManagerParameters\00", align 1 +@.TypeMapEntry.20855_from = private unnamed_addr constant [47 x i8] c"Javax.Net.Ssl.ExtendedSSLSession, Mono.Android\00", align 1 +@.TypeMapEntry.20856_to = private unnamed_addr constant [33 x i8] c"javax/net/ssl/ExtendedSSLSession\00", align 1 +@.TypeMapEntry.20857_from = private unnamed_addr constant [54 x i8] c"Javax.Net.Ssl.ExtendedSSLSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20858_from = private unnamed_addr constant [52 x i8] c"Javax.Net.Ssl.HandshakeCompletedEvent, Mono.Android\00", align 1 +@.TypeMapEntry.20859_to = private unnamed_addr constant [38 x i8] c"javax/net/ssl/HandshakeCompletedEvent\00", align 1 +@.TypeMapEntry.20860_from = private unnamed_addr constant [47 x i8] c"Javax.Net.Ssl.HttpsURLConnection, Mono.Android\00", align 1 +@.TypeMapEntry.20861_to = private unnamed_addr constant [33 x i8] c"javax/net/ssl/HttpsURLConnection\00", align 1 +@.TypeMapEntry.20862_from = private unnamed_addr constant [54 x i8] c"Javax.Net.Ssl.HttpsURLConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20863_from = private unnamed_addr constant [56 x i8] c"Javax.Net.Ssl.IHandshakeCompletedListener, Mono.Android\00", align 1 +@.TypeMapEntry.20864_to = private unnamed_addr constant [41 x i8] c"javax/net/ssl/HandshakeCompletedListener\00", align 1 +@.TypeMapEntry.20865_from = private unnamed_addr constant [63 x i8] c"Javax.Net.Ssl.IHandshakeCompletedListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20866_from = private unnamed_addr constant [46 x i8] c"Javax.Net.Ssl.IHostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.20867_to = private unnamed_addr constant [31 x i8] c"javax/net/ssl/HostnameVerifier\00", align 1 +@.TypeMapEntry.20868_from = private unnamed_addr constant [53 x i8] c"Javax.Net.Ssl.IHostnameVerifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20869_from = private unnamed_addr constant [40 x i8] c"Javax.Net.Ssl.IKeyManager, Mono.Android\00", align 1 +@.TypeMapEntry.20870_to = private unnamed_addr constant [25 x i8] c"javax/net/ssl/KeyManager\00", align 1 +@.TypeMapEntry.20871_from = private unnamed_addr constant [47 x i8] c"Javax.Net.Ssl.IKeyManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20872_from = private unnamed_addr constant [54 x i8] c"Javax.Net.Ssl.IManagerFactoryParameters, Mono.Android\00", align 1 +@.TypeMapEntry.20873_to = private unnamed_addr constant [39 x i8] c"javax/net/ssl/ManagerFactoryParameters\00", align 1 +@.TypeMapEntry.20874_from = private unnamed_addr constant [61 x i8] c"Javax.Net.Ssl.IManagerFactoryParametersInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20875_from = private unnamed_addr constant [40 x i8] c"Javax.Net.Ssl.ISSLSession, Mono.Android\00", align 1 +@.TypeMapEntry.20876_to = private unnamed_addr constant [25 x i8] c"javax/net/ssl/SSLSession\00", align 1 +@.TypeMapEntry.20877_from = private unnamed_addr constant [55 x i8] c"Javax.Net.Ssl.ISSLSessionBindingListener, Mono.Android\00", align 1 +@.TypeMapEntry.20878_to = private unnamed_addr constant [40 x i8] c"javax/net/ssl/SSLSessionBindingListener\00", align 1 +@.TypeMapEntry.20879_from = private unnamed_addr constant [62 x i8] c"Javax.Net.Ssl.ISSLSessionBindingListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20880_from = private unnamed_addr constant [47 x i8] c"Javax.Net.Ssl.ISSLSessionContext, Mono.Android\00", align 1 +@.TypeMapEntry.20881_to = private unnamed_addr constant [32 x i8] c"javax/net/ssl/SSLSessionContext\00", align 1 +@.TypeMapEntry.20882_from = private unnamed_addr constant [54 x i8] c"Javax.Net.Ssl.ISSLSessionContextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20883_from = private unnamed_addr constant [47 x i8] c"Javax.Net.Ssl.ISSLSessionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20884_from = private unnamed_addr constant [42 x i8] c"Javax.Net.Ssl.ITrustManager, Mono.Android\00", align 1 +@.TypeMapEntry.20885_to = private unnamed_addr constant [27 x i8] c"javax/net/ssl/TrustManager\00", align 1 +@.TypeMapEntry.20886_from = private unnamed_addr constant [49 x i8] c"Javax.Net.Ssl.ITrustManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20887_from = private unnamed_addr constant [44 x i8] c"Javax.Net.Ssl.IX509KeyManager, Mono.Android\00", align 1 +@.TypeMapEntry.20888_to = private unnamed_addr constant [29 x i8] c"javax/net/ssl/X509KeyManager\00", align 1 +@.TypeMapEntry.20889_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20890_from = private unnamed_addr constant [46 x i8] c"Javax.Net.Ssl.IX509TrustManager, Mono.Android\00", align 1 +@.TypeMapEntry.20891_to = private unnamed_addr constant [31 x i8] c"javax/net/ssl/X509TrustManager\00", align 1 +@.TypeMapEntry.20892_from = private unnamed_addr constant [53 x i8] c"Javax.Net.Ssl.IX509TrustManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20893_from = private unnamed_addr constant [46 x i8] c"Javax.Net.Ssl.KeyManagerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20894_to = private unnamed_addr constant [32 x i8] c"javax/net/ssl/KeyManagerFactory\00", align 1 +@.TypeMapEntry.20895_from = private unnamed_addr constant [49 x i8] c"Javax.Net.Ssl.KeyManagerFactorySpi, Mono.Android\00", align 1 +@.TypeMapEntry.20896_to = private unnamed_addr constant [35 x i8] c"javax/net/ssl/KeyManagerFactorySpi\00", align 1 +@.TypeMapEntry.20897_from = private unnamed_addr constant [56 x i8] c"Javax.Net.Ssl.KeyManagerFactorySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20898_from = private unnamed_addr constant [54 x i8] c"Javax.Net.Ssl.KeyStoreBuilderParameters, Mono.Android\00", align 1 +@.TypeMapEntry.20899_to = private unnamed_addr constant [40 x i8] c"javax/net/ssl/KeyStoreBuilderParameters\00", align 1 +@.TypeMapEntry.20900_from = private unnamed_addr constant [40 x i8] c"Javax.Net.Ssl.SNIHostName, Mono.Android\00", align 1 +@.TypeMapEntry.20901_to = private unnamed_addr constant [26 x i8] c"javax/net/ssl/SNIHostName\00", align 1 +@.TypeMapEntry.20902_from = private unnamed_addr constant [39 x i8] c"Javax.Net.Ssl.SNIMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.20903_to = private unnamed_addr constant [25 x i8] c"javax/net/ssl/SNIMatcher\00", align 1 +@.TypeMapEntry.20904_from = private unnamed_addr constant [46 x i8] c"Javax.Net.Ssl.SNIMatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20905_from = private unnamed_addr constant [42 x i8] c"Javax.Net.Ssl.SNIServerName, Mono.Android\00", align 1 +@.TypeMapEntry.20906_to = private unnamed_addr constant [28 x i8] c"javax/net/ssl/SNIServerName\00", align 1 +@.TypeMapEntry.20907_from = private unnamed_addr constant [49 x i8] c"Javax.Net.Ssl.SNIServerNameInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20908_from = private unnamed_addr constant [39 x i8] c"Javax.Net.Ssl.SSLContext, Mono.Android\00", align 1 +@.TypeMapEntry.20909_to = private unnamed_addr constant [25 x i8] c"javax/net/ssl/SSLContext\00", align 1 +@.TypeMapEntry.20910_from = private unnamed_addr constant [42 x i8] c"Javax.Net.Ssl.SSLContextSpi, Mono.Android\00", align 1 +@.TypeMapEntry.20911_to = private unnamed_addr constant [28 x i8] c"javax/net/ssl/SSLContextSpi\00", align 1 +@.TypeMapEntry.20912_from = private unnamed_addr constant [49 x i8] c"Javax.Net.Ssl.SSLContextSpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20913_from = private unnamed_addr constant [38 x i8] c"Javax.Net.Ssl.SSLEngine, Mono.Android\00", align 1 +@.TypeMapEntry.20914_to = private unnamed_addr constant [24 x i8] c"javax/net/ssl/SSLEngine\00", align 1 +@.TypeMapEntry.20915_from = private unnamed_addr constant [45 x i8] c"Javax.Net.Ssl.SSLEngineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20916_from = private unnamed_addr constant [60 x i8] c"Javax.Net.Ssl.SSLEngineResult+HandshakeStatus, Mono.Android\00", align 1 +@.TypeMapEntry.20917_to = private unnamed_addr constant [46 x i8] c"javax/net/ssl/SSLEngineResult$HandshakeStatus\00", align 1 +@.TypeMapEntry.20918_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.SSLEngineResult+Status, Mono.Android\00", align 1 +@.TypeMapEntry.20919_to = private unnamed_addr constant [37 x i8] c"javax/net/ssl/SSLEngineResult$Status\00", align 1 +@.TypeMapEntry.20920_from = private unnamed_addr constant [44 x i8] c"Javax.Net.Ssl.SSLEngineResult, Mono.Android\00", align 1 +@.TypeMapEntry.20921_to = private unnamed_addr constant [30 x i8] c"javax/net/ssl/SSLEngineResult\00", align 1 +@.TypeMapEntry.20922_from = private unnamed_addr constant [41 x i8] c"Javax.Net.Ssl.SSLException, Mono.Android\00", align 1 +@.TypeMapEntry.20923_to = private unnamed_addr constant [27 x i8] c"javax/net/ssl/SSLException\00", align 1 +@.TypeMapEntry.20924_from = private unnamed_addr constant [50 x i8] c"Javax.Net.Ssl.SSLHandshakeException, Mono.Android\00", align 1 +@.TypeMapEntry.20925_to = private unnamed_addr constant [36 x i8] c"javax/net/ssl/SSLHandshakeException\00", align 1 +@.TypeMapEntry.20926_from = private unnamed_addr constant [44 x i8] c"Javax.Net.Ssl.SSLKeyException, Mono.Android\00", align 1 +@.TypeMapEntry.20927_to = private unnamed_addr constant [30 x i8] c"javax/net/ssl/SSLKeyException\00", align 1 +@.TypeMapEntry.20928_from = private unnamed_addr constant [42 x i8] c"Javax.Net.Ssl.SSLParameters, Mono.Android\00", align 1 +@.TypeMapEntry.20929_to = private unnamed_addr constant [28 x i8] c"javax/net/ssl/SSLParameters\00", align 1 +@.TypeMapEntry.20930_from = private unnamed_addr constant [55 x i8] c"Javax.Net.Ssl.SSLPeerUnverifiedException, Mono.Android\00", align 1 +@.TypeMapEntry.20931_to = private unnamed_addr constant [41 x i8] c"javax/net/ssl/SSLPeerUnverifiedException\00", align 1 +@.TypeMapEntry.20932_from = private unnamed_addr constant [42 x i8] c"Javax.Net.Ssl.SSLPermission, Mono.Android\00", align 1 +@.TypeMapEntry.20933_to = private unnamed_addr constant [28 x i8] c"javax/net/ssl/SSLPermission\00", align 1 +@.TypeMapEntry.20934_from = private unnamed_addr constant [49 x i8] c"Javax.Net.Ssl.SSLProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.20935_to = private unnamed_addr constant [35 x i8] c"javax/net/ssl/SSLProtocolException\00", align 1 +@.TypeMapEntry.20936_from = private unnamed_addr constant [44 x i8] c"Javax.Net.Ssl.SSLServerSocket, Mono.Android\00", align 1 +@.TypeMapEntry.20937_to = private unnamed_addr constant [30 x i8] c"javax/net/ssl/SSLServerSocket\00", align 1 +@.TypeMapEntry.20938_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.SSLServerSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20939_to = private unnamed_addr constant [37 x i8] c"javax/net/ssl/SSLServerSocketFactory\00", align 1 +@.TypeMapEntry.20940_from = private unnamed_addr constant [58 x i8] c"Javax.Net.Ssl.SSLServerSocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20941_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.SSLServerSocketInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20942_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.SSLSessionBindingEvent, Mono.Android\00", align 1 +@.TypeMapEntry.20943_to = private unnamed_addr constant [37 x i8] c"javax/net/ssl/SSLSessionBindingEvent\00", align 1 +@.TypeMapEntry.20944_from = private unnamed_addr constant [38 x i8] c"Javax.Net.Ssl.SSLSocket, Mono.Android\00", align 1 +@.TypeMapEntry.20945_to = private unnamed_addr constant [24 x i8] c"javax/net/ssl/SSLSocket\00", align 1 +@.TypeMapEntry.20946_from = private unnamed_addr constant [45 x i8] c"Javax.Net.Ssl.SSLSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20947_to = private unnamed_addr constant [31 x i8] c"javax/net/ssl/SSLSocketFactory\00", align 1 +@.TypeMapEntry.20948_from = private unnamed_addr constant [52 x i8] c"Javax.Net.Ssl.SSLSocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20949_from = private unnamed_addr constant [45 x i8] c"Javax.Net.Ssl.SSLSocketInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20950_from = private unnamed_addr constant [46 x i8] c"Javax.Net.Ssl.StandardConstants, Mono.Android\00", align 1 +@.TypeMapEntry.20951_to = private unnamed_addr constant [32 x i8] c"javax/net/ssl/StandardConstants\00", align 1 +@.TypeMapEntry.20952_from = private unnamed_addr constant [48 x i8] c"Javax.Net.Ssl.TrustManagerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.20953_to = private unnamed_addr constant [34 x i8] c"javax/net/ssl/TrustManagerFactory\00", align 1 +@.TypeMapEntry.20954_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.TrustManagerFactorySpi, Mono.Android\00", align 1 +@.TypeMapEntry.20955_to = private unnamed_addr constant [37 x i8] c"javax/net/ssl/TrustManagerFactorySpi\00", align 1 +@.TypeMapEntry.20956_from = private unnamed_addr constant [58 x i8] c"Javax.Net.Ssl.TrustManagerFactorySpiInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20957_from = private unnamed_addr constant [51 x i8] c"Javax.Net.Ssl.X509ExtendedKeyManager, Mono.Android\00", align 1 +@.TypeMapEntry.20958_to = private unnamed_addr constant [37 x i8] c"javax/net/ssl/X509ExtendedKeyManager\00", align 1 +@.TypeMapEntry.20959_from = private unnamed_addr constant [58 x i8] c"Javax.Net.Ssl.X509ExtendedKeyManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20960_from = private unnamed_addr constant [53 x i8] c"Javax.Net.Ssl.X509ExtendedTrustManager, Mono.Android\00", align 1 +@.TypeMapEntry.20961_to = private unnamed_addr constant [39 x i8] c"javax/net/ssl/X509ExtendedTrustManager\00", align 1 +@.TypeMapEntry.20962_from = private unnamed_addr constant [60 x i8] c"Javax.Net.Ssl.X509ExtendedTrustManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20963_from = private unnamed_addr constant [49 x i8] c"Javax.Security.Auth.AuthPermission, Mono.Android\00", align 1 +@.TypeMapEntry.20964_to = private unnamed_addr constant [35 x i8] c"javax/security/auth/AuthPermission\00", align 1 +@.TypeMapEntry.20965_from = private unnamed_addr constant [53 x i8] c"Javax.Security.Auth.Callback.ICallback, Mono.Android\00", align 1 +@.TypeMapEntry.20966_to = private unnamed_addr constant [38 x i8] c"javax/security/auth/callback/Callback\00", align 1 +@.TypeMapEntry.20967_from = private unnamed_addr constant [60 x i8] c"Javax.Security.Auth.Callback.ICallbackHandler, Mono.Android\00", align 1 +@.TypeMapEntry.20968_to = private unnamed_addr constant [45 x i8] c"javax/security/auth/callback/CallbackHandler\00", align 1 +@.TypeMapEntry.20969_from = private unnamed_addr constant [67 x i8] c"Javax.Security.Auth.Callback.ICallbackHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20970_from = private unnamed_addr constant [60 x i8] c"Javax.Security.Auth.Callback.ICallbackInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20971_from = private unnamed_addr constant [60 x i8] c"Javax.Security.Auth.Callback.PasswordCallback, Mono.Android\00", align 1 +@.TypeMapEntry.20972_to = private unnamed_addr constant [46 x i8] c"javax/security/auth/callback/PasswordCallback\00", align 1 +@.TypeMapEntry.20973_from = private unnamed_addr constant [72 x i8] c"Javax.Security.Auth.Callback.UnsupportedCallbackException, Mono.Android\00", align 1 +@.TypeMapEntry.20974_to = private unnamed_addr constant [58 x i8] c"javax/security/auth/callback/UnsupportedCallbackException\00", align 1 +@.TypeMapEntry.20975_from = private unnamed_addr constant [57 x i8] c"Javax.Security.Auth.DestroyFailedException, Mono.Android\00", align 1 +@.TypeMapEntry.20976_to = private unnamed_addr constant [43 x i8] c"javax/security/auth/DestroyFailedException\00", align 1 +@.TypeMapEntry.20977_from = private unnamed_addr constant [47 x i8] c"Javax.Security.Auth.IDestroyable, Mono.Android\00", align 1 +@.TypeMapEntry.20978_to = private unnamed_addr constant [32 x i8] c"javax/security/auth/Destroyable\00", align 1 +@.TypeMapEntry.20979_from = private unnamed_addr constant [54 x i8] c"Javax.Security.Auth.IDestroyableInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.20980_from = private unnamed_addr constant [55 x i8] c"Javax.Security.Auth.Login.LoginException, Mono.Android\00", align 1 +@.TypeMapEntry.20981_to = private unnamed_addr constant [41 x i8] c"javax/security/auth/login/LoginException\00", align 1 +@.TypeMapEntry.20982_from = private unnamed_addr constant [62 x i8] c"Javax.Security.Auth.PrivateCredentialPermission, Mono.Android\00", align 1 +@.TypeMapEntry.20983_to = private unnamed_addr constant [48 x i8] c"javax/security/auth/PrivateCredentialPermission\00", align 1 +@.TypeMapEntry.20984_from = private unnamed_addr constant [42 x i8] c"Javax.Security.Auth.Subject, Mono.Android\00", align 1 +@.TypeMapEntry.20985_to = private unnamed_addr constant [28 x i8] c"javax/security/auth/Subject\00", align 1 +@.TypeMapEntry.20986_from = private unnamed_addr constant [56 x i8] c"Javax.Security.Auth.SubjectDomainCombiner, Mono.Android\00", align 1 +@.TypeMapEntry.20987_to = private unnamed_addr constant [42 x i8] c"javax/security/auth/SubjectDomainCombiner\00", align 1 +@.TypeMapEntry.20988_from = private unnamed_addr constant [53 x i8] c"Javax.Security.Auth.X500.X500Principal, Mono.Android\00", align 1 +@.TypeMapEntry.20989_to = private unnamed_addr constant [39 x i8] c"javax/security/auth/x500/X500Principal\00", align 1 +@.TypeMapEntry.20990_from = private unnamed_addr constant [61 x i8] c"Javax.Security.Auth.X500.X500PrivateCredential, Mono.Android\00", align 1 +@.TypeMapEntry.20991_to = private unnamed_addr constant [47 x i8] c"javax/security/auth/x500/X500PrivateCredential\00", align 1 +@.TypeMapEntry.20992_from = private unnamed_addr constant [46 x i8] c"Javax.Security.Cert.Certificate, Mono.Android\00", align 1 +@.TypeMapEntry.20993_to = private unnamed_addr constant [32 x i8] c"javax/security/cert/Certificate\00", align 1 +@.TypeMapEntry.20994_from = private unnamed_addr constant [63 x i8] c"Javax.Security.Cert.CertificateEncodingException, Mono.Android\00", align 1 +@.TypeMapEntry.20995_to = private unnamed_addr constant [49 x i8] c"javax/security/cert/CertificateEncodingException\00", align 1 +@.TypeMapEntry.20996_from = private unnamed_addr constant [55 x i8] c"Javax.Security.Cert.CertificateException, Mono.Android\00", align 1 +@.TypeMapEntry.20997_to = private unnamed_addr constant [41 x i8] c"javax/security/cert/CertificateException\00", align 1 +@.TypeMapEntry.20998_from = private unnamed_addr constant [62 x i8] c"Javax.Security.Cert.CertificateExpiredException, Mono.Android\00", align 1 +@.TypeMapEntry.20999_to = private unnamed_addr constant [48 x i8] c"javax/security/cert/CertificateExpiredException\00", align 1 +@.TypeMapEntry.21000_from = private unnamed_addr constant [53 x i8] c"Javax.Security.Cert.CertificateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21001_from = private unnamed_addr constant [66 x i8] c"Javax.Security.Cert.CertificateNotYetValidException, Mono.Android\00", align 1 +@.TypeMapEntry.21002_to = private unnamed_addr constant [52 x i8] c"javax/security/cert/CertificateNotYetValidException\00", align 1 +@.TypeMapEntry.21003_from = private unnamed_addr constant [62 x i8] c"Javax.Security.Cert.CertificateParsingException, Mono.Android\00", align 1 +@.TypeMapEntry.21004_to = private unnamed_addr constant [48 x i8] c"javax/security/cert/CertificateParsingException\00", align 1 +@.TypeMapEntry.21005_from = private unnamed_addr constant [50 x i8] c"Javax.Security.Cert.X509Certificate, Mono.Android\00", align 1 +@.TypeMapEntry.21006_to = private unnamed_addr constant [36 x i8] c"javax/security/cert/X509Certificate\00", align 1 +@.TypeMapEntry.21007_from = private unnamed_addr constant [57 x i8] c"Javax.Security.Cert.X509CertificateInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21008_from = private unnamed_addr constant [40 x i8] c"Javax.Sql.ConnectionEvent, Mono.Android\00", align 1 +@.TypeMapEntry.21009_to = private unnamed_addr constant [26 x i8] c"javax/sql/ConnectionEvent\00", align 1 +@.TypeMapEntry.21010_from = private unnamed_addr constant [42 x i8] c"Javax.Sql.ICommonDataSource, Mono.Android\00", align 1 +@.TypeMapEntry.21011_to = private unnamed_addr constant [27 x i8] c"javax/sql/CommonDataSource\00", align 1 +@.TypeMapEntry.21012_from = private unnamed_addr constant [49 x i8] c"Javax.Sql.ICommonDataSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21013_from = private unnamed_addr constant [49 x i8] c"Javax.Sql.IConnectionEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.21014_to = private unnamed_addr constant [34 x i8] c"javax/sql/ConnectionEventListener\00", align 1 +@.TypeMapEntry.21015_from = private unnamed_addr constant [56 x i8] c"Javax.Sql.IConnectionEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21016_from = private unnamed_addr constant [50 x i8] c"Javax.Sql.IConnectionPoolDataSource, Mono.Android\00", align 1 +@.TypeMapEntry.21017_to = private unnamed_addr constant [35 x i8] c"javax/sql/ConnectionPoolDataSource\00", align 1 +@.TypeMapEntry.21018_from = private unnamed_addr constant [57 x i8] c"Javax.Sql.IConnectionPoolDataSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21019_from = private unnamed_addr constant [36 x i8] c"Javax.Sql.IDataSource, Mono.Android\00", align 1 +@.TypeMapEntry.21020_to = private unnamed_addr constant [21 x i8] c"javax/sql/DataSource\00", align 1 +@.TypeMapEntry.21021_from = private unnamed_addr constant [43 x i8] c"Javax.Sql.IDataSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21022_from = private unnamed_addr constant [42 x i8] c"Javax.Sql.IPooledConnection, Mono.Android\00", align 1 +@.TypeMapEntry.21023_to = private unnamed_addr constant [27 x i8] c"javax/sql/PooledConnection\00", align 1 +@.TypeMapEntry.21024_from = private unnamed_addr constant [49 x i8] c"Javax.Sql.IPooledConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21025_from = private unnamed_addr constant [32 x i8] c"Javax.Sql.IRowSet, Mono.Android\00", align 1 +@.TypeMapEntry.21026_to = private unnamed_addr constant [17 x i8] c"javax/sql/RowSet\00", align 1 +@.TypeMapEntry.21027_from = private unnamed_addr constant [40 x i8] c"Javax.Sql.IRowSetInternal, Mono.Android\00", align 1 +@.TypeMapEntry.21028_to = private unnamed_addr constant [25 x i8] c"javax/sql/RowSetInternal\00", align 1 +@.TypeMapEntry.21029_from = private unnamed_addr constant [47 x i8] c"Javax.Sql.IRowSetInternalInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21030_from = private unnamed_addr constant [39 x i8] c"Javax.Sql.IRowSetInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21031_from = private unnamed_addr constant [40 x i8] c"Javax.Sql.IRowSetListener, Mono.Android\00", align 1 +@.TypeMapEntry.21032_to = private unnamed_addr constant [25 x i8] c"javax/sql/RowSetListener\00", align 1 +@.TypeMapEntry.21033_from = private unnamed_addr constant [47 x i8] c"Javax.Sql.IRowSetListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21034_from = private unnamed_addr constant [40 x i8] c"Javax.Sql.IRowSetMetaData, Mono.Android\00", align 1 +@.TypeMapEntry.21035_to = private unnamed_addr constant [25 x i8] c"javax/sql/RowSetMetaData\00", align 1 +@.TypeMapEntry.21036_from = private unnamed_addr constant [47 x i8] c"Javax.Sql.IRowSetMetaDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21037_from = private unnamed_addr constant [38 x i8] c"Javax.Sql.IRowSetReader, Mono.Android\00", align 1 +@.TypeMapEntry.21038_to = private unnamed_addr constant [23 x i8] c"javax/sql/RowSetReader\00", align 1 +@.TypeMapEntry.21039_from = private unnamed_addr constant [45 x i8] c"Javax.Sql.IRowSetReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21040_from = private unnamed_addr constant [38 x i8] c"Javax.Sql.IRowSetWriter, Mono.Android\00", align 1 +@.TypeMapEntry.21041_to = private unnamed_addr constant [23 x i8] c"javax/sql/RowSetWriter\00", align 1 +@.TypeMapEntry.21042_from = private unnamed_addr constant [45 x i8] c"Javax.Sql.IRowSetWriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21043_from = private unnamed_addr constant [48 x i8] c"Javax.Sql.IStatementEventListener, Mono.Android\00", align 1 +@.TypeMapEntry.21044_to = private unnamed_addr constant [33 x i8] c"javax/sql/StatementEventListener\00", align 1 +@.TypeMapEntry.21045_from = private unnamed_addr constant [55 x i8] c"Javax.Sql.IStatementEventListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21046_from = private unnamed_addr constant [36 x i8] c"Javax.Sql.RowSetEvent, Mono.Android\00", align 1 +@.TypeMapEntry.21047_to = private unnamed_addr constant [22 x i8] c"javax/sql/RowSetEvent\00", align 1 +@.TypeMapEntry.21048_from = private unnamed_addr constant [39 x i8] c"Javax.Sql.StatementEvent, Mono.Android\00", align 1 +@.TypeMapEntry.21049_to = private unnamed_addr constant [25 x i8] c"javax/sql/StatementEvent\00", align 1 +@.TypeMapEntry.21050_from = private unnamed_addr constant [64 x i8] c"Javax.Xml.Datatype.DatatypeConfigurationException, Mono.Android\00", align 1 +@.TypeMapEntry.21051_to = private unnamed_addr constant [50 x i8] c"javax/xml/datatype/DatatypeConfigurationException\00", align 1 +@.TypeMapEntry.21052_from = private unnamed_addr constant [57 x i8] c"Javax.Xml.Datatype.DatatypeConstants+Field, Mono.Android\00", align 1 +@.TypeMapEntry.21053_to = private unnamed_addr constant [43 x i8] c"javax/xml/datatype/DatatypeConstants$Field\00", align 1 +@.TypeMapEntry.21054_from = private unnamed_addr constant [51 x i8] c"Javax.Xml.Datatype.DatatypeConstants, Mono.Android\00", align 1 +@.TypeMapEntry.21055_to = private unnamed_addr constant [37 x i8] c"javax/xml/datatype/DatatypeConstants\00", align 1 +@.TypeMapEntry.21056_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Datatype.DatatypeFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21057_to = private unnamed_addr constant [35 x i8] c"javax/xml/datatype/DatatypeFactory\00", align 1 +@.TypeMapEntry.21058_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Datatype.DatatypeFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21059_from = private unnamed_addr constant [42 x i8] c"Javax.Xml.Datatype.Duration, Mono.Android\00", align 1 +@.TypeMapEntry.21060_to = private unnamed_addr constant [28 x i8] c"javax/xml/datatype/Duration\00", align 1 +@.TypeMapEntry.21061_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Datatype.DurationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21062_from = private unnamed_addr constant [54 x i8] c"Javax.Xml.Datatype.XMLGregorianCalendar, Mono.Android\00", align 1 +@.TypeMapEntry.21063_to = private unnamed_addr constant [40 x i8] c"javax/xml/datatype/XMLGregorianCalendar\00", align 1 +@.TypeMapEntry.21064_from = private unnamed_addr constant [61 x i8] c"Javax.Xml.Datatype.XMLGregorianCalendarInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21065_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Namespace.INamespaceContext, Mono.Android\00", align 1 +@.TypeMapEntry.21066_to = private unnamed_addr constant [37 x i8] c"javax/xml/namespace/NamespaceContext\00", align 1 +@.TypeMapEntry.21067_from = private unnamed_addr constant [59 x i8] c"Javax.Xml.Namespace.INamespaceContextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21068_from = private unnamed_addr constant [40 x i8] c"Javax.Xml.Namespace.QName, Mono.Android\00", align 1 +@.TypeMapEntry.21069_to = private unnamed_addr constant [26 x i8] c"javax/xml/namespace/QName\00", align 1 +@.TypeMapEntry.21070_from = private unnamed_addr constant [48 x i8] c"Javax.Xml.Parsers.DocumentBuilder, Mono.Android\00", align 1 +@.TypeMapEntry.21071_to = private unnamed_addr constant [34 x i8] c"javax/xml/parsers/DocumentBuilder\00", align 1 +@.TypeMapEntry.21072_from = private unnamed_addr constant [55 x i8] c"Javax.Xml.Parsers.DocumentBuilderFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21073_to = private unnamed_addr constant [41 x i8] c"javax/xml/parsers/DocumentBuilderFactory\00", align 1 +@.TypeMapEntry.21074_from = private unnamed_addr constant [62 x i8] c"Javax.Xml.Parsers.DocumentBuilderFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21075_from = private unnamed_addr constant [55 x i8] c"Javax.Xml.Parsers.DocumentBuilderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21076_from = private unnamed_addr constant [58 x i8] c"Javax.Xml.Parsers.FactoryConfigurationError, Mono.Android\00", align 1 +@.TypeMapEntry.21077_to = private unnamed_addr constant [44 x i8] c"javax/xml/parsers/FactoryConfigurationError\00", align 1 +@.TypeMapEntry.21078_from = private unnamed_addr constant [61 x i8] c"Javax.Xml.Parsers.ParserConfigurationException, Mono.Android\00", align 1 +@.TypeMapEntry.21079_to = private unnamed_addr constant [47 x i8] c"javax/xml/parsers/ParserConfigurationException\00", align 1 +@.TypeMapEntry.21080_from = private unnamed_addr constant [42 x i8] c"Javax.Xml.Parsers.SAXParser, Mono.Android\00", align 1 +@.TypeMapEntry.21081_to = private unnamed_addr constant [28 x i8] c"javax/xml/parsers/SAXParser\00", align 1 +@.TypeMapEntry.21082_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Parsers.SAXParserFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21083_to = private unnamed_addr constant [35 x i8] c"javax/xml/parsers/SAXParserFactory\00", align 1 +@.TypeMapEntry.21084_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Parsers.SAXParserFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21085_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Parsers.SAXParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21086_from = private unnamed_addr constant [48 x i8] c"Javax.Xml.Transform.Dom.DOMResult, Mono.Android\00", align 1 +@.TypeMapEntry.21087_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/dom/DOMResult\00", align 1 +@.TypeMapEntry.21088_from = private unnamed_addr constant [48 x i8] c"Javax.Xml.Transform.Dom.DOMSource, Mono.Android\00", align 1 +@.TypeMapEntry.21089_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/dom/DOMSource\00", align 1 +@.TypeMapEntry.21090_from = private unnamed_addr constant [50 x i8] c"Javax.Xml.Transform.Dom.IDOMLocator, Mono.Android\00", align 1 +@.TypeMapEntry.21091_to = private unnamed_addr constant [35 x i8] c"javax/xml/transform/dom/DOMLocator\00", align 1 +@.TypeMapEntry.21092_from = private unnamed_addr constant [57 x i8] c"Javax.Xml.Transform.Dom.IDOMLocatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21093_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Transform.IErrorListener, Mono.Android\00", align 1 +@.TypeMapEntry.21094_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/ErrorListener\00", align 1 +@.TypeMapEntry.21095_from = private unnamed_addr constant [60 x i8] c"Javax.Xml.Transform.IErrorListenerImplementor, Mono.Android\00", align 1 +@.TypeMapEntry.21096_to = private unnamed_addr constant [50 x i8] c"mono/javax/xml/transform/ErrorListenerImplementor\00", align 1 +@.TypeMapEntry.21097_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Transform.IErrorListenerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21098_from = private unnamed_addr constant [42 x i8] c"Javax.Xml.Transform.IResult, Mono.Android\00", align 1 +@.TypeMapEntry.21099_to = private unnamed_addr constant [27 x i8] c"javax/xml/transform/Result\00", align 1 +@.TypeMapEntry.21100_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Transform.IResultInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21101_from = private unnamed_addr constant [42 x i8] c"Javax.Xml.Transform.ISource, Mono.Android\00", align 1 +@.TypeMapEntry.21102_to = private unnamed_addr constant [27 x i8] c"javax/xml/transform/Source\00", align 1 +@.TypeMapEntry.21103_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Transform.ISourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21104_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Transform.ISourceLocator, Mono.Android\00", align 1 +@.TypeMapEntry.21105_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/SourceLocator\00", align 1 +@.TypeMapEntry.21106_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Transform.ISourceLocatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21107_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Transform.ITemplates, Mono.Android\00", align 1 +@.TypeMapEntry.21108_to = private unnamed_addr constant [30 x i8] c"javax/xml/transform/Templates\00", align 1 +@.TypeMapEntry.21109_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Transform.ITemplatesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21110_from = private unnamed_addr constant [47 x i8] c"Javax.Xml.Transform.IURIResolver, Mono.Android\00", align 1 +@.TypeMapEntry.21111_to = private unnamed_addr constant [32 x i8] c"javax/xml/transform/URIResolver\00", align 1 +@.TypeMapEntry.21112_from = private unnamed_addr constant [54 x i8] c"Javax.Xml.Transform.IURIResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21113_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Transform.OutputKeys, Mono.Android\00", align 1 +@.TypeMapEntry.21114_to = private unnamed_addr constant [31 x i8] c"javax/xml/transform/OutputKeys\00", align 1 +@.TypeMapEntry.21115_from = private unnamed_addr constant [41 x i8] c"Javax.Xml.Transform.Result, Mono.Android\00", align 1 +@.TypeMapEntry.21116_to = private unnamed_addr constant [41 x i8] c"mono/internal/javax/xml/transform/Result\00", align 1 +@.TypeMapEntry.21117_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Transform.Sax.ITemplatesHandler, Mono.Android\00", align 1 +@.TypeMapEntry.21118_to = private unnamed_addr constant [41 x i8] c"javax/xml/transform/sax/TemplatesHandler\00", align 1 +@.TypeMapEntry.21119_from = private unnamed_addr constant [63 x i8] c"Javax.Xml.Transform.Sax.ITemplatesHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21120_from = private unnamed_addr constant [58 x i8] c"Javax.Xml.Transform.Sax.ITransformerHandler, Mono.Android\00", align 1 +@.TypeMapEntry.21121_to = private unnamed_addr constant [43 x i8] c"javax/xml/transform/sax/TransformerHandler\00", align 1 +@.TypeMapEntry.21122_from = private unnamed_addr constant [65 x i8] c"Javax.Xml.Transform.Sax.ITransformerHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21123_from = private unnamed_addr constant [48 x i8] c"Javax.Xml.Transform.Sax.SAXResult, Mono.Android\00", align 1 +@.TypeMapEntry.21124_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/sax/SAXResult\00", align 1 +@.TypeMapEntry.21125_from = private unnamed_addr constant [48 x i8] c"Javax.Xml.Transform.Sax.SAXSource, Mono.Android\00", align 1 +@.TypeMapEntry.21126_to = private unnamed_addr constant [34 x i8] c"javax/xml/transform/sax/SAXSource\00", align 1 +@.TypeMapEntry.21127_from = private unnamed_addr constant [60 x i8] c"Javax.Xml.Transform.Sax.SAXTransformerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21128_to = private unnamed_addr constant [46 x i8] c"javax/xml/transform/sax/SAXTransformerFactory\00", align 1 +@.TypeMapEntry.21129_from = private unnamed_addr constant [67 x i8] c"Javax.Xml.Transform.Sax.SAXTransformerFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21130_from = private unnamed_addr constant [54 x i8] c"Javax.Xml.Transform.Stream.StreamResult, Mono.Android\00", align 1 +@.TypeMapEntry.21131_to = private unnamed_addr constant [40 x i8] c"javax/xml/transform/stream/StreamResult\00", align 1 +@.TypeMapEntry.21132_from = private unnamed_addr constant [54 x i8] c"Javax.Xml.Transform.Stream.StreamSource, Mono.Android\00", align 1 +@.TypeMapEntry.21133_to = private unnamed_addr constant [40 x i8] c"javax/xml/transform/stream/StreamSource\00", align 1 +@.TypeMapEntry.21134_from = private unnamed_addr constant [46 x i8] c"Javax.Xml.Transform.Transformer, Mono.Android\00", align 1 +@.TypeMapEntry.21135_to = private unnamed_addr constant [32 x i8] c"javax/xml/transform/Transformer\00", align 1 +@.TypeMapEntry.21136_from = private unnamed_addr constant [68 x i8] c"Javax.Xml.Transform.TransformerConfigurationException, Mono.Android\00", align 1 +@.TypeMapEntry.21137_to = private unnamed_addr constant [54 x i8] c"javax/xml/transform/TransformerConfigurationException\00", align 1 +@.TypeMapEntry.21138_from = private unnamed_addr constant [55 x i8] c"Javax.Xml.Transform.TransformerException, Mono.Android\00", align 1 +@.TypeMapEntry.21139_to = private unnamed_addr constant [41 x i8] c"javax/xml/transform/TransformerException\00", align 1 +@.TypeMapEntry.21140_from = private unnamed_addr constant [53 x i8] c"Javax.Xml.Transform.TransformerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21141_to = private unnamed_addr constant [39 x i8] c"javax/xml/transform/TransformerFactory\00", align 1 +@.TypeMapEntry.21142_from = private unnamed_addr constant [71 x i8] c"Javax.Xml.Transform.TransformerFactoryConfigurationError, Mono.Android\00", align 1 +@.TypeMapEntry.21143_to = private unnamed_addr constant [57 x i8] c"javax/xml/transform/TransformerFactoryConfigurationError\00", align 1 +@.TypeMapEntry.21144_from = private unnamed_addr constant [60 x i8] c"Javax.Xml.Transform.TransformerFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21145_from = private unnamed_addr constant [53 x i8] c"Javax.Xml.Transform.TransformerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21146_from = private unnamed_addr constant [42 x i8] c"Javax.Xml.Validation.Schema, Mono.Android\00", align 1 +@.TypeMapEntry.21147_to = private unnamed_addr constant [28 x i8] c"javax/xml/validation/Schema\00", align 1 +@.TypeMapEntry.21148_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Validation.SchemaFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21149_to = private unnamed_addr constant [35 x i8] c"javax/xml/validation/SchemaFactory\00", align 1 +@.TypeMapEntry.21150_from = private unnamed_addr constant [56 x i8] c"Javax.Xml.Validation.SchemaFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21151_from = private unnamed_addr constant [55 x i8] c"Javax.Xml.Validation.SchemaFactoryLoader, Mono.Android\00", align 1 +@.TypeMapEntry.21152_to = private unnamed_addr constant [41 x i8] c"javax/xml/validation/SchemaFactoryLoader\00", align 1 +@.TypeMapEntry.21153_from = private unnamed_addr constant [62 x i8] c"Javax.Xml.Validation.SchemaFactoryLoaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21154_from = private unnamed_addr constant [49 x i8] c"Javax.Xml.Validation.SchemaInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21155_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Validation.TypeInfoProvider, Mono.Android\00", align 1 +@.TypeMapEntry.21156_to = private unnamed_addr constant [38 x i8] c"javax/xml/validation/TypeInfoProvider\00", align 1 +@.TypeMapEntry.21157_from = private unnamed_addr constant [59 x i8] c"Javax.Xml.Validation.TypeInfoProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21158_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Validation.Validator, Mono.Android\00", align 1 +@.TypeMapEntry.21159_to = private unnamed_addr constant [31 x i8] c"javax/xml/validation/Validator\00", align 1 +@.TypeMapEntry.21160_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Validation.ValidatorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.21161_to = private unnamed_addr constant [38 x i8] c"javax/xml/validation/ValidatorHandler\00", align 1 +@.TypeMapEntry.21162_from = private unnamed_addr constant [59 x i8] c"Javax.Xml.Validation.ValidatorHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21163_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Validation.ValidatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21164_from = private unnamed_addr constant [37 x i8] c"Javax.Xml.XMLConstants, Mono.Android\00", align 1 +@.TypeMapEntry.21165_to = private unnamed_addr constant [23 x i8] c"javax/xml/XMLConstants\00", align 1 +@.TypeMapEntry.21166_from = private unnamed_addr constant [37 x i8] c"Javax.Xml.Xpath.IXPath, Mono.Android\00", align 1 +@.TypeMapEntry.21167_to = private unnamed_addr constant [22 x i8] c"javax/xml/xpath/XPath\00", align 1 +@.TypeMapEntry.21168_from = private unnamed_addr constant [47 x i8] c"Javax.Xml.Xpath.IXPathExpression, Mono.Android\00", align 1 +@.TypeMapEntry.21169_to = private unnamed_addr constant [32 x i8] c"javax/xml/xpath/XPathExpression\00", align 1 +@.TypeMapEntry.21170_from = private unnamed_addr constant [54 x i8] c"Javax.Xml.Xpath.IXPathExpressionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21171_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Xpath.IXPathFunction, Mono.Android\00", align 1 +@.TypeMapEntry.21172_to = private unnamed_addr constant [30 x i8] c"javax/xml/xpath/XPathFunction\00", align 1 +@.TypeMapEntry.21173_from = private unnamed_addr constant [52 x i8] c"Javax.Xml.Xpath.IXPathFunctionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21174_from = private unnamed_addr constant [53 x i8] c"Javax.Xml.Xpath.IXPathFunctionResolver, Mono.Android\00", align 1 +@.TypeMapEntry.21175_to = private unnamed_addr constant [38 x i8] c"javax/xml/xpath/XPathFunctionResolver\00", align 1 +@.TypeMapEntry.21176_from = private unnamed_addr constant [60 x i8] c"Javax.Xml.Xpath.IXPathFunctionResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21177_from = private unnamed_addr constant [44 x i8] c"Javax.Xml.Xpath.IXPathInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21178_from = private unnamed_addr constant [53 x i8] c"Javax.Xml.Xpath.IXPathVariableResolver, Mono.Android\00", align 1 +@.TypeMapEntry.21179_to = private unnamed_addr constant [38 x i8] c"javax/xml/xpath/XPathVariableResolver\00", align 1 +@.TypeMapEntry.21180_from = private unnamed_addr constant [60 x i8] c"Javax.Xml.Xpath.IXPathVariableResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21181_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Xpath.XPathConstants, Mono.Android\00", align 1 +@.TypeMapEntry.21182_to = private unnamed_addr constant [31 x i8] c"javax/xml/xpath/XPathConstants\00", align 1 +@.TypeMapEntry.21183_from = private unnamed_addr constant [45 x i8] c"Javax.Xml.Xpath.XPathException, Mono.Android\00", align 1 +@.TypeMapEntry.21184_to = private unnamed_addr constant [31 x i8] c"javax/xml/xpath/XPathException\00", align 1 +@.TypeMapEntry.21185_from = private unnamed_addr constant [55 x i8] c"Javax.Xml.Xpath.XPathExpressionException, Mono.Android\00", align 1 +@.TypeMapEntry.21186_to = private unnamed_addr constant [41 x i8] c"javax/xml/xpath/XPathExpressionException\00", align 1 +@.TypeMapEntry.21187_from = private unnamed_addr constant [43 x i8] c"Javax.Xml.Xpath.XPathFactory, Mono.Android\00", align 1 +@.TypeMapEntry.21188_to = private unnamed_addr constant [29 x i8] c"javax/xml/xpath/XPathFactory\00", align 1 +@.TypeMapEntry.21189_from = private unnamed_addr constant [65 x i8] c"Javax.Xml.Xpath.XPathFactoryConfigurationException, Mono.Android\00", align 1 +@.TypeMapEntry.21190_to = private unnamed_addr constant [51 x i8] c"javax/xml/xpath/XPathFactoryConfigurationException\00", align 1 +@.TypeMapEntry.21191_from = private unnamed_addr constant [50 x i8] c"Javax.Xml.Xpath.XPathFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.21192_from = private unnamed_addr constant [53 x i8] c"Javax.Xml.Xpath.XPathFunctionException, Mono.Android\00", align 1 +@.TypeMapEntry.21193_to = private unnamed_addr constant [39 x i8] c"javax/xml/xpath/XPathFunctionException\00", align 1 +@.TypeMapEntry.21194_from = private unnamed_addr constant [79 x i8] c"JetBrains.Annotations.ApiStatus+IAvailableSince, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21195_to = private unnamed_addr constant [51 x i8] c"org/jetbrains/annotations/ApiStatus$AvailableSince\00", align 1 +@.TypeMapEntry.21196_from = private unnamed_addr constant [86 x i8] c"JetBrains.Annotations.ApiStatus+IAvailableSinceInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21197_from = private unnamed_addr constant [77 x i8] c"JetBrains.Annotations.ApiStatus+IExperimental, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21198_to = private unnamed_addr constant [49 x i8] c"org/jetbrains/annotations/ApiStatus$Experimental\00", align 1 +@.TypeMapEntry.21199_from = private unnamed_addr constant [84 x i8] c"JetBrains.Annotations.ApiStatus+IExperimentalInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21200_from = private unnamed_addr constant [73 x i8] c"JetBrains.Annotations.ApiStatus+IInternal, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21201_to = private unnamed_addr constant [45 x i8] c"org/jetbrains/annotations/ApiStatus$Internal\00", align 1 +@.TypeMapEntry.21202_from = private unnamed_addr constant [80 x i8] c"JetBrains.Annotations.ApiStatus+IInternalInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21203_from = private unnamed_addr constant [78 x i8] c"JetBrains.Annotations.ApiStatus+INonExtendable, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21204_to = private unnamed_addr constant [50 x i8] c"org/jetbrains/annotations/ApiStatus$NonExtendable\00", align 1 +@.TypeMapEntry.21205_from = private unnamed_addr constant [85 x i8] c"JetBrains.Annotations.ApiStatus+INonExtendableInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21206_from = private unnamed_addr constant [73 x i8] c"JetBrains.Annotations.ApiStatus+IObsolete, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21207_to = private unnamed_addr constant [45 x i8] c"org/jetbrains/annotations/ApiStatus$Obsolete\00", align 1 +@.TypeMapEntry.21208_from = private unnamed_addr constant [80 x i8] c"JetBrains.Annotations.ApiStatus+IObsoleteInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21209_from = private unnamed_addr constant [77 x i8] c"JetBrains.Annotations.ApiStatus+IOverrideOnly, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21210_to = private unnamed_addr constant [49 x i8] c"org/jetbrains/annotations/ApiStatus$OverrideOnly\00", align 1 +@.TypeMapEntry.21211_from = private unnamed_addr constant [84 x i8] c"JetBrains.Annotations.ApiStatus+IOverrideOnlyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21212_from = private unnamed_addr constant [84 x i8] c"JetBrains.Annotations.ApiStatus+IScheduledForRemoval, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21213_to = private unnamed_addr constant [56 x i8] c"org/jetbrains/annotations/ApiStatus$ScheduledForRemoval\00", align 1 +@.TypeMapEntry.21214_from = private unnamed_addr constant [91 x i8] c"JetBrains.Annotations.ApiStatus+IScheduledForRemovalInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21215_from = private unnamed_addr constant [63 x i8] c"JetBrains.Annotations.ApiStatus, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21216_to = private unnamed_addr constant [36 x i8] c"org/jetbrains/annotations/ApiStatus\00", align 1 +@.TypeMapEntry.21217_from = private unnamed_addr constant [68 x i8] c"JetBrains.Annotations.Async+IExecute, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21218_to = private unnamed_addr constant [40 x i8] c"org/jetbrains/annotations/Async$Execute\00", align 1 +@.TypeMapEntry.21219_from = private unnamed_addr constant [75 x i8] c"JetBrains.Annotations.Async+IExecuteInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21220_from = private unnamed_addr constant [69 x i8] c"JetBrains.Annotations.Async+ISchedule, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21221_to = private unnamed_addr constant [41 x i8] c"org/jetbrains/annotations/Async$Schedule\00", align 1 +@.TypeMapEntry.21222_from = private unnamed_addr constant [76 x i8] c"JetBrains.Annotations.Async+IScheduleInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21223_from = private unnamed_addr constant [59 x i8] c"JetBrains.Annotations.Async, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21224_to = private unnamed_addr constant [32 x i8] c"org/jetbrains/annotations/Async\00", align 1 +@.TypeMapEntry.21225_from = private unnamed_addr constant [69 x i8] c"JetBrains.Annotations.Debug+IRenderer, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21226_to = private unnamed_addr constant [41 x i8] c"org/jetbrains/annotations/Debug$Renderer\00", align 1 +@.TypeMapEntry.21227_from = private unnamed_addr constant [76 x i8] c"JetBrains.Annotations.Debug+IRendererInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21228_from = private unnamed_addr constant [59 x i8] c"JetBrains.Annotations.Debug, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21229_to = private unnamed_addr constant [32 x i8] c"org/jetbrains/annotations/Debug\00", align 1 +@.TypeMapEntry.21230_from = private unnamed_addr constant [63 x i8] c"JetBrains.Annotations.IBlocking, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21231_to = private unnamed_addr constant [35 x i8] c"org/jetbrains/annotations/Blocking\00", align 1 +@.TypeMapEntry.21232_from = private unnamed_addr constant [71 x i8] c"JetBrains.Annotations.IBlockingExecutor, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21233_to = private unnamed_addr constant [43 x i8] c"org/jetbrains/annotations/BlockingExecutor\00", align 1 +@.TypeMapEntry.21234_from = private unnamed_addr constant [78 x i8] c"JetBrains.Annotations.IBlockingExecutorInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21235_from = private unnamed_addr constant [70 x i8] c"JetBrains.Annotations.IBlockingInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21236_from = private unnamed_addr constant [71 x i8] c"JetBrains.Annotations.ICheckReturnValue, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21237_to = private unnamed_addr constant [43 x i8] c"org/jetbrains/annotations/CheckReturnValue\00", align 1 +@.TypeMapEntry.21238_from = private unnamed_addr constant [78 x i8] c"JetBrains.Annotations.ICheckReturnValueInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21239_from = private unnamed_addr constant [63 x i8] c"JetBrains.Annotations.IContract, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21240_to = private unnamed_addr constant [35 x i8] c"org/jetbrains/annotations/Contract\00", align 1 +@.TypeMapEntry.21241_from = private unnamed_addr constant [70 x i8] c"JetBrains.Annotations.IContractInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21242_from = private unnamed_addr constant [80 x i8] c"JetBrains.Annotations.IMustBeInvokedByOverriders, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21243_to = private unnamed_addr constant [52 x i8] c"org/jetbrains/annotations/MustBeInvokedByOverriders\00", align 1 +@.TypeMapEntry.21244_from = private unnamed_addr constant [87 x i8] c"JetBrains.Annotations.IMustBeInvokedByOverridersInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21245_from = private unnamed_addr constant [58 x i8] c"JetBrains.Annotations.INls, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21246_to = private unnamed_addr constant [30 x i8] c"org/jetbrains/annotations/Nls\00", align 1 +@.TypeMapEntry.21247_from = private unnamed_addr constant [65 x i8] c"JetBrains.Annotations.INlsInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21248_from = private unnamed_addr constant [66 x i8] c"JetBrains.Annotations.INonBlocking, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21249_to = private unnamed_addr constant [38 x i8] c"org/jetbrains/annotations/NonBlocking\00", align 1 +@.TypeMapEntry.21250_from = private unnamed_addr constant [74 x i8] c"JetBrains.Annotations.INonBlockingExecutor, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21251_to = private unnamed_addr constant [46 x i8] c"org/jetbrains/annotations/NonBlockingExecutor\00", align 1 +@.TypeMapEntry.21252_from = private unnamed_addr constant [81 x i8] c"JetBrains.Annotations.INonBlockingExecutorInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21253_from = private unnamed_addr constant [73 x i8] c"JetBrains.Annotations.INonBlockingInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21254_from = private unnamed_addr constant [61 x i8] c"JetBrains.Annotations.INonNls, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21255_to = private unnamed_addr constant [33 x i8] c"org/jetbrains/annotations/NonNls\00", align 1 +@.TypeMapEntry.21256_from = private unnamed_addr constant [68 x i8] c"JetBrains.Annotations.INonNlsInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21257_from = private unnamed_addr constant [62 x i8] c"JetBrains.Annotations.INotNull, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21258_to = private unnamed_addr constant [34 x i8] c"org/jetbrains/annotations/NotNull\00", align 1 +@.TypeMapEntry.21259_from = private unnamed_addr constant [71 x i8] c"JetBrains.Annotations.INotNullByDefault, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21260_to = private unnamed_addr constant [43 x i8] c"org/jetbrains/annotations/NotNullByDefault\00", align 1 +@.TypeMapEntry.21261_from = private unnamed_addr constant [78 x i8] c"JetBrains.Annotations.INotNullByDefaultInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21262_from = private unnamed_addr constant [69 x i8] c"JetBrains.Annotations.INotNullInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21263_from = private unnamed_addr constant [63 x i8] c"JetBrains.Annotations.INullable, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21264_to = private unnamed_addr constant [35 x i8] c"org/jetbrains/annotations/Nullable\00", align 1 +@.TypeMapEntry.21265_from = private unnamed_addr constant [70 x i8] c"JetBrains.Annotations.INullableInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21266_from = private unnamed_addr constant [66 x i8] c"JetBrains.Annotations.IPropertyKey, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21267_to = private unnamed_addr constant [38 x i8] c"org/jetbrains/annotations/PropertyKey\00", align 1 +@.TypeMapEntry.21268_from = private unnamed_addr constant [73 x i8] c"JetBrains.Annotations.IPropertyKeyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21269_from = private unnamed_addr constant [60 x i8] c"JetBrains.Annotations.IRange, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21270_to = private unnamed_addr constant [32 x i8] c"org/jetbrains/annotations/Range\00", align 1 +@.TypeMapEntry.21271_from = private unnamed_addr constant [67 x i8] c"JetBrains.Annotations.IRangeInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21272_from = private unnamed_addr constant [63 x i8] c"JetBrains.Annotations.ITestOnly, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21273_to = private unnamed_addr constant [35 x i8] c"org/jetbrains/annotations/TestOnly\00", align 1 +@.TypeMapEntry.21274_from = private unnamed_addr constant [70 x i8] c"JetBrains.Annotations.ITestOnlyInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21275_from = private unnamed_addr constant [73 x i8] c"JetBrains.Annotations.IUnknownNullability, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21276_to = private unnamed_addr constant [45 x i8] c"org/jetbrains/annotations/UnknownNullability\00", align 1 +@.TypeMapEntry.21277_from = private unnamed_addr constant [80 x i8] c"JetBrains.Annotations.IUnknownNullabilityInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21278_from = private unnamed_addr constant [67 x i8] c"JetBrains.Annotations.IUnmodifiable, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21279_to = private unnamed_addr constant [39 x i8] c"org/jetbrains/annotations/Unmodifiable\00", align 1 +@.TypeMapEntry.21280_from = private unnamed_addr constant [74 x i8] c"JetBrains.Annotations.IUnmodifiableInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21281_from = private unnamed_addr constant [71 x i8] c"JetBrains.Annotations.IUnmodifiableView, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21282_to = private unnamed_addr constant [43 x i8] c"org/jetbrains/annotations/UnmodifiableView\00", align 1 +@.TypeMapEntry.21283_from = private unnamed_addr constant [78 x i8] c"JetBrains.Annotations.IUnmodifiableViewInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21284_from = private unnamed_addr constant [72 x i8] c"JetBrains.Annotations.IVisibleForTesting, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21285_to = private unnamed_addr constant [44 x i8] c"org/jetbrains/annotations/VisibleForTesting\00", align 1 +@.TypeMapEntry.21286_from = private unnamed_addr constant [79 x i8] c"JetBrains.Annotations.IVisibleForTestingInvoker, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21287_from = private unnamed_addr constant [71 x i8] c"JetBrains.Annotations.NlsCapitalization, Xamarin.Jetbrains.Annotations\00", align 1 +@.TypeMapEntry.21288_to = private unnamed_addr constant [45 x i8] c"org/jetbrains/annotations/Nls$Capitalization\00", align 1 +@.TypeMapEntry.21289_from = private unnamed_addr constant [61 x i8] c"Kotlin.Annotation.AnnotationRetention, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21290_to = private unnamed_addr constant [38 x i8] c"kotlin/annotation/AnnotationRetention\00", align 1 +@.TypeMapEntry.21291_from = private unnamed_addr constant [58 x i8] c"Kotlin.Annotation.AnnotationTarget, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21292_to = private unnamed_addr constant [35 x i8] c"kotlin/annotation/AnnotationTarget\00", align 1 +@.TypeMapEntry.21293_from = private unnamed_addr constant [59 x i8] c"Kotlin.Annotation.IMustBeDocumented, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21294_to = private unnamed_addr constant [35 x i8] c"kotlin/annotation/MustBeDocumented\00", align 1 +@.TypeMapEntry.21295_from = private unnamed_addr constant [66 x i8] c"Kotlin.Annotation.IMustBeDocumentedInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21296_from = private unnamed_addr constant [53 x i8] c"Kotlin.Annotation.IRepeatable, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21297_to = private unnamed_addr constant [29 x i8] c"kotlin/annotation/Repeatable\00", align 1 +@.TypeMapEntry.21298_from = private unnamed_addr constant [60 x i8] c"Kotlin.Annotation.IRepeatableInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21299_from = private unnamed_addr constant [52 x i8] c"Kotlin.Annotation.IRetention, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21300_to = private unnamed_addr constant [28 x i8] c"kotlin/annotation/Retention\00", align 1 +@.TypeMapEntry.21301_from = private unnamed_addr constant [59 x i8] c"Kotlin.Annotation.IRetentionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21302_from = private unnamed_addr constant [49 x i8] c"Kotlin.Annotation.ITarget, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21303_to = private unnamed_addr constant [25 x i8] c"kotlin/annotation/Target\00", align 1 +@.TypeMapEntry.21304_from = private unnamed_addr constant [56 x i8] c"Kotlin.Annotation.ITargetInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21305_from = private unnamed_addr constant [48 x i8] c"Kotlin.ArrayIntrinsicsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21306_to = private unnamed_addr constant [25 x i8] c"kotlin/ArrayIntrinsicsKt\00", align 1 +@.TypeMapEntry.21307_from = private unnamed_addr constant [44 x i8] c"Kotlin.CharCodeJVMKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21308_to = private unnamed_addr constant [21 x i8] c"kotlin/CharCodeJVMKt\00", align 1 +@.TypeMapEntry.21309_from = private unnamed_addr constant [41 x i8] c"Kotlin.CharCodeKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21310_to = private unnamed_addr constant [18 x i8] c"kotlin/CharCodeKt\00", align 1 +@.TypeMapEntry.21311_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.AbstractCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21312_to = private unnamed_addr constant [38 x i8] c"kotlin/collections/AbstractCollection\00", align 1 +@.TypeMapEntry.21313_from = private unnamed_addr constant [68 x i8] c"Kotlin.Collections.AbstractCollectionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21314_from = private unnamed_addr constant [59 x i8] c"Kotlin.Collections.AbstractIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21315_to = private unnamed_addr constant [36 x i8] c"kotlin/collections/AbstractIterator\00", align 1 +@.TypeMapEntry.21316_from = private unnamed_addr constant [66 x i8] c"Kotlin.Collections.AbstractIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21317_from = private unnamed_addr constant [55 x i8] c"Kotlin.Collections.AbstractList, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21318_to = private unnamed_addr constant [32 x i8] c"kotlin/collections/AbstractList\00", align 1 +@.TypeMapEntry.21319_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.AbstractListInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21320_from = private unnamed_addr constant [54 x i8] c"Kotlin.Collections.AbstractMap, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21321_to = private unnamed_addr constant [31 x i8] c"kotlin/collections/AbstractMap\00", align 1 +@.TypeMapEntry.21322_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.AbstractMapInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21323_from = private unnamed_addr constant [68 x i8] c"Kotlin.Collections.AbstractMutableCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21324_to = private unnamed_addr constant [45 x i8] c"kotlin/collections/AbstractMutableCollection\00", align 1 +@.TypeMapEntry.21325_from = private unnamed_addr constant [75 x i8] c"Kotlin.Collections.AbstractMutableCollectionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21326_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.AbstractMutableList, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21327_to = private unnamed_addr constant [39 x i8] c"kotlin/collections/AbstractMutableList\00", align 1 +@.TypeMapEntry.21328_from = private unnamed_addr constant [69 x i8] c"Kotlin.Collections.AbstractMutableListInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21329_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.AbstractMutableMap, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21330_to = private unnamed_addr constant [38 x i8] c"kotlin/collections/AbstractMutableMap\00", align 1 +@.TypeMapEntry.21331_from = private unnamed_addr constant [68 x i8] c"Kotlin.Collections.AbstractMutableMapInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21332_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.AbstractMutableSet, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21333_to = private unnamed_addr constant [38 x i8] c"kotlin/collections/AbstractMutableSet\00", align 1 +@.TypeMapEntry.21334_from = private unnamed_addr constant [68 x i8] c"Kotlin.Collections.AbstractMutableSetInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21335_from = private unnamed_addr constant [54 x i8] c"Kotlin.Collections.AbstractSet, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21336_to = private unnamed_addr constant [31 x i8] c"kotlin/collections/AbstractSet\00", align 1 +@.TypeMapEntry.21337_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.AbstractSetInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21338_from = private unnamed_addr constant [53 x i8] c"Kotlin.Collections.ArrayDeque, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21339_to = private unnamed_addr constant [30 x i8] c"kotlin/collections/ArrayDeque\00", align 1 +@.TypeMapEntry.21340_from = private unnamed_addr constant [51 x i8] c"Kotlin.Collections.ArraysKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21341_to = private unnamed_addr constant [28 x i8] c"kotlin/collections/ArraysKt\00", align 1 +@.TypeMapEntry.21342_from = private unnamed_addr constant [58 x i8] c"Kotlin.Collections.BooleanIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21343_to = private unnamed_addr constant [35 x i8] c"kotlin/collections/BooleanIterator\00", align 1 +@.TypeMapEntry.21344_from = private unnamed_addr constant [65 x i8] c"Kotlin.Collections.BooleanIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21345_from = private unnamed_addr constant [78 x i8] c"Kotlin.Collections.Builders.AbstractMapBuilderEntrySet, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21346_to = private unnamed_addr constant [55 x i8] c"kotlin/collections/builders/AbstractMapBuilderEntrySet\00", align 1 +@.TypeMapEntry.21347_from = private unnamed_addr constant [85 x i8] c"Kotlin.Collections.Builders.AbstractMapBuilderEntrySetInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21348_from = private unnamed_addr constant [78 x i8] c"Kotlin.Collections.Builders.ListBuilder+BuilderSubList, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21349_to = private unnamed_addr constant [55 x i8] c"kotlin/collections/builders/ListBuilder$BuilderSubList\00", align 1 +@.TypeMapEntry.21350_from = private unnamed_addr constant [63 x i8] c"Kotlin.Collections.Builders.ListBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21351_to = private unnamed_addr constant [40 x i8] c"kotlin/collections/builders/ListBuilder\00", align 1 +@.TypeMapEntry.21352_from = private unnamed_addr constant [65 x i8] c"Kotlin.Collections.Builders.ListBuilderKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21353_to = private unnamed_addr constant [42 x i8] c"kotlin/collections/builders/ListBuilderKt\00", align 1 +@.TypeMapEntry.21354_from = private unnamed_addr constant [73 x i8] c"Kotlin.Collections.Builders.MapBuilder+EntriesItr, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21355_to = private unnamed_addr constant [50 x i8] c"kotlin/collections/builders/MapBuilder$EntriesItr\00", align 1 +@.TypeMapEntry.21356_from = private unnamed_addr constant [71 x i8] c"Kotlin.Collections.Builders.MapBuilder+EntryRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21357_to = private unnamed_addr constant [48 x i8] c"kotlin/collections/builders/MapBuilder$EntryRef\00", align 1 +@.TypeMapEntry.21358_from = private unnamed_addr constant [66 x i8] c"Kotlin.Collections.Builders.MapBuilder+Itr, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21359_to = private unnamed_addr constant [43 x i8] c"kotlin/collections/builders/MapBuilder$Itr\00", align 1 +@.TypeMapEntry.21360_from = private unnamed_addr constant [70 x i8] c"Kotlin.Collections.Builders.MapBuilder+KeysItr, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21361_to = private unnamed_addr constant [47 x i8] c"kotlin/collections/builders/MapBuilder$KeysItr\00", align 1 +@.TypeMapEntry.21362_from = private unnamed_addr constant [72 x i8] c"Kotlin.Collections.Builders.MapBuilder+ValuesItr, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21363_to = private unnamed_addr constant [49 x i8] c"kotlin/collections/builders/MapBuilder$ValuesItr\00", align 1 +@.TypeMapEntry.21364_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.Builders.MapBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21365_to = private unnamed_addr constant [39 x i8] c"kotlin/collections/builders/MapBuilder\00", align 1 +@.TypeMapEntry.21366_from = private unnamed_addr constant [69 x i8] c"Kotlin.Collections.Builders.MapBuilderEntries, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21367_to = private unnamed_addr constant [46 x i8] c"kotlin/collections/builders/MapBuilderEntries\00", align 1 +@.TypeMapEntry.21368_from = private unnamed_addr constant [66 x i8] c"Kotlin.Collections.Builders.MapBuilderKeys, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21369_to = private unnamed_addr constant [43 x i8] c"kotlin/collections/builders/MapBuilderKeys\00", align 1 +@.TypeMapEntry.21370_from = private unnamed_addr constant [68 x i8] c"Kotlin.Collections.Builders.MapBuilderValues, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21371_to = private unnamed_addr constant [45 x i8] c"kotlin/collections/builders/MapBuilderValues\00", align 1 +@.TypeMapEntry.21372_from = private unnamed_addr constant [72 x i8] c"Kotlin.Collections.Builders.SerializedCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21373_to = private unnamed_addr constant [49 x i8] c"kotlin/collections/builders/SerializedCollection\00", align 1 +@.TypeMapEntry.21374_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.Builders.SetBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21375_to = private unnamed_addr constant [39 x i8] c"kotlin/collections/builders/SetBuilder\00", align 1 +@.TypeMapEntry.21376_from = private unnamed_addr constant [55 x i8] c"Kotlin.Collections.ByteIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21377_to = private unnamed_addr constant [32 x i8] c"kotlin/collections/ByteIterator\00", align 1 +@.TypeMapEntry.21378_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.ByteIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21379_from = private unnamed_addr constant [55 x i8] c"Kotlin.Collections.CharIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21380_to = private unnamed_addr constant [32 x i8] c"kotlin/collections/CharIterator\00", align 1 +@.TypeMapEntry.21381_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.CharIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21382_from = private unnamed_addr constant [56 x i8] c"Kotlin.Collections.CollectionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21383_to = private unnamed_addr constant [33 x i8] c"kotlin/collections/CollectionsKt\00", align 1 +@.TypeMapEntry.21384_from = private unnamed_addr constant [57 x i8] c"Kotlin.Collections.DoubleIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21385_to = private unnamed_addr constant [34 x i8] c"kotlin/collections/DoubleIterator\00", align 1 +@.TypeMapEntry.21386_from = private unnamed_addr constant [64 x i8] c"Kotlin.Collections.DoubleIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21387_from = private unnamed_addr constant [56 x i8] c"Kotlin.Collections.FloatIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21388_to = private unnamed_addr constant [33 x i8] c"kotlin/collections/FloatIterator\00", align 1 +@.TypeMapEntry.21389_from = private unnamed_addr constant [63 x i8] c"Kotlin.Collections.FloatIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21390_from = private unnamed_addr constant [53 x i8] c"Kotlin.Collections.GroupingKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21391_to = private unnamed_addr constant [30 x i8] c"kotlin/collections/GroupingKt\00", align 1 +@.TypeMapEntry.21392_from = private unnamed_addr constant [52 x i8] c"Kotlin.Collections.IGrouping, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21393_to = private unnamed_addr constant [28 x i8] c"kotlin/collections/Grouping\00", align 1 +@.TypeMapEntry.21394_from = private unnamed_addr constant [59 x i8] c"Kotlin.Collections.IGroupingInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21395_from = private unnamed_addr constant [55 x i8] c"Kotlin.Collections.IndexedValue, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21396_to = private unnamed_addr constant [32 x i8] c"kotlin/collections/IndexedValue\00", align 1 +@.TypeMapEntry.21397_from = private unnamed_addr constant [54 x i8] c"Kotlin.Collections.IntIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21398_to = private unnamed_addr constant [31 x i8] c"kotlin/collections/IntIterator\00", align 1 +@.TypeMapEntry.21399_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.IntIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21400_from = private unnamed_addr constant [65 x i8] c"Kotlin.Collections.Jdk8.CollectionsJDK8Kt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21401_to = private unnamed_addr constant [42 x i8] c"kotlin/collections/jdk8/CollectionsJDK8Kt\00", align 1 +@.TypeMapEntry.21402_from = private unnamed_addr constant [55 x i8] c"Kotlin.Collections.LongIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21403_to = private unnamed_addr constant [32 x i8] c"kotlin/collections/LongIterator\00", align 1 +@.TypeMapEntry.21404_from = private unnamed_addr constant [62 x i8] c"Kotlin.Collections.LongIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21405_from = private unnamed_addr constant [57 x i8] c"Kotlin.Collections.MapAccessorsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21406_to = private unnamed_addr constant [34 x i8] c"kotlin/collections/MapAccessorsKt\00", align 1 +@.TypeMapEntry.21407_from = private unnamed_addr constant [49 x i8] c"Kotlin.Collections.MapsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21408_to = private unnamed_addr constant [26 x i8] c"kotlin/collections/MapsKt\00", align 1 +@.TypeMapEntry.21409_from = private unnamed_addr constant [49 x i8] c"Kotlin.Collections.SetsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21410_to = private unnamed_addr constant [26 x i8] c"kotlin/collections/SetsKt\00", align 1 +@.TypeMapEntry.21411_from = private unnamed_addr constant [56 x i8] c"Kotlin.Collections.ShortIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21412_to = private unnamed_addr constant [33 x i8] c"kotlin/collections/ShortIterator\00", align 1 +@.TypeMapEntry.21413_from = private unnamed_addr constant [63 x i8] c"Kotlin.Collections.ShortIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21414_from = private unnamed_addr constant [58 x i8] c"Kotlin.Collections.SlidingWindowKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21415_to = private unnamed_addr constant [35 x i8] c"kotlin/collections/SlidingWindowKt\00", align 1 +@.TypeMapEntry.21416_from = private unnamed_addr constant [56 x i8] c"Kotlin.Collections.TypeAliasesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21417_to = private unnamed_addr constant [33 x i8] c"kotlin/collections/TypeAliasesKt\00", align 1 +@.TypeMapEntry.21418_from = private unnamed_addr constant [58 x i8] c"Kotlin.Collections.UArraySortingKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21419_to = private unnamed_addr constant [35 x i8] c"kotlin/collections/UArraySortingKt\00", align 1 +@.TypeMapEntry.21420_from = private unnamed_addr constant [57 x i8] c"Kotlin.Collections.UCollectionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21421_to = private unnamed_addr constant [34 x i8] c"kotlin/collections/UCollectionsKt\00", align 1 +@.TypeMapEntry.21422_from = private unnamed_addr constant [61 x i8] c"Kotlin.Collections.Unsigned.UArraysKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21423_to = private unnamed_addr constant [38 x i8] c"kotlin/collections/unsigned/UArraysKt\00", align 1 +@.TypeMapEntry.21424_from = private unnamed_addr constant [42 x i8] c"Kotlin.CompareToKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21425_to = private unnamed_addr constant [19 x i8] c"kotlin/CompareToKt\00", align 1 +@.TypeMapEntry.21426_from = private unnamed_addr constant [56 x i8] c"Kotlin.Comparisons.ComparisonsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21427_to = private unnamed_addr constant [33 x i8] c"kotlin/comparisons/ComparisonsKt\00", align 1 +@.TypeMapEntry.21428_from = private unnamed_addr constant [57 x i8] c"Kotlin.Comparisons.UComparisonsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21429_to = private unnamed_addr constant [34 x i8] c"kotlin/comparisons/UComparisonsKt\00", align 1 +@.TypeMapEntry.21430_from = private unnamed_addr constant [49 x i8] c"Kotlin.Concurrent.LocksKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21431_to = private unnamed_addr constant [26 x i8] c"kotlin/concurrent/LocksKt\00", align 1 +@.TypeMapEntry.21432_from = private unnamed_addr constant [51 x i8] c"Kotlin.Concurrent.ThreadsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21433_to = private unnamed_addr constant [28 x i8] c"kotlin/concurrent/ThreadsKt\00", align 1 +@.TypeMapEntry.21434_from = private unnamed_addr constant [50 x i8] c"Kotlin.Concurrent.TimersKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21435_to = private unnamed_addr constant [27 x i8] c"kotlin/concurrent/TimersKt\00", align 1 +@.TypeMapEntry.21436_from = private unnamed_addr constant [52 x i8] c"Kotlin.Concurrent.VolatileKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21437_to = private unnamed_addr constant [29 x i8] c"kotlin/concurrent/VolatileKt\00", align 1 +@.TypeMapEntry.21438_from = private unnamed_addr constant [68 x i8] c"Kotlin.Contracts.ContractBuilderDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21439_to = private unnamed_addr constant [46 x i8] c"kotlin/contracts/ContractBuilder$DefaultImpls\00", align 1 +@.TypeMapEntry.21440_from = private unnamed_addr constant [58 x i8] c"Kotlin.Contracts.ContractBuilderKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21441_to = private unnamed_addr constant [35 x i8] c"kotlin/contracts/ContractBuilderKt\00", align 1 +@.TypeMapEntry.21442_from = private unnamed_addr constant [54 x i8] c"Kotlin.Contracts.ICallsInPlace, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21443_to = private unnamed_addr constant [30 x i8] c"kotlin/contracts/CallsInPlace\00", align 1 +@.TypeMapEntry.21444_from = private unnamed_addr constant [61 x i8] c"Kotlin.Contracts.ICallsInPlaceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21445_from = private unnamed_addr constant [59 x i8] c"Kotlin.Contracts.IConditionalEffect, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21446_to = private unnamed_addr constant [35 x i8] c"kotlin/contracts/ConditionalEffect\00", align 1 +@.TypeMapEntry.21447_from = private unnamed_addr constant [66 x i8] c"Kotlin.Contracts.IConditionalEffectInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21448_from = private unnamed_addr constant [57 x i8] c"Kotlin.Contracts.IContractBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21449_to = private unnamed_addr constant [33 x i8] c"kotlin/contracts/ContractBuilder\00", align 1 +@.TypeMapEntry.21450_from = private unnamed_addr constant [64 x i8] c"Kotlin.Contracts.IContractBuilderInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21451_from = private unnamed_addr constant [48 x i8] c"Kotlin.Contracts.IEffect, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21452_to = private unnamed_addr constant [24 x i8] c"kotlin/contracts/Effect\00", align 1 +@.TypeMapEntry.21453_from = private unnamed_addr constant [55 x i8] c"Kotlin.Contracts.IEffectInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21454_from = private unnamed_addr constant [63 x i8] c"Kotlin.Contracts.IExperimentalContracts, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21455_to = private unnamed_addr constant [39 x i8] c"kotlin/contracts/ExperimentalContracts\00", align 1 +@.TypeMapEntry.21456_from = private unnamed_addr constant [70 x i8] c"Kotlin.Contracts.IExperimentalContractsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21457_from = private unnamed_addr constant [49 x i8] c"Kotlin.Contracts.IReturns, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21458_to = private unnamed_addr constant [25 x i8] c"kotlin/contracts/Returns\00", align 1 +@.TypeMapEntry.21459_from = private unnamed_addr constant [56 x i8] c"Kotlin.Contracts.IReturnsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21460_from = private unnamed_addr constant [56 x i8] c"Kotlin.Contracts.IReturnsNotNull, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21461_to = private unnamed_addr constant [32 x i8] c"kotlin/contracts/ReturnsNotNull\00", align 1 +@.TypeMapEntry.21462_from = private unnamed_addr constant [63 x i8] c"Kotlin.Contracts.IReturnsNotNullInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21463_from = private unnamed_addr constant [54 x i8] c"Kotlin.Contracts.ISimpleEffect, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21464_to = private unnamed_addr constant [30 x i8] c"kotlin/contracts/SimpleEffect\00", align 1 +@.TypeMapEntry.21465_from = private unnamed_addr constant [61 x i8] c"Kotlin.Contracts.ISimpleEffectInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21466_from = private unnamed_addr constant [55 x i8] c"Kotlin.Contracts.InvocationKind, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21467_to = private unnamed_addr constant [32 x i8] c"kotlin/contracts/InvocationKind\00", align 1 +@.TypeMapEntry.21468_from = private unnamed_addr constant [73 x i8] c"Kotlin.Coroutines.AbstractCoroutineContextElement, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21469_to = private unnamed_addr constant [50 x i8] c"kotlin/coroutines/AbstractCoroutineContextElement\00", align 1 +@.TypeMapEntry.21470_from = private unnamed_addr constant [80 x i8] c"Kotlin.Coroutines.AbstractCoroutineContextElementInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21471_from = private unnamed_addr constant [78 x i8] c"Kotlin.Coroutines.Cancellation.CancellationExceptionKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21472_to = private unnamed_addr constant [55 x i8] c"kotlin/coroutines/cancellation/CancellationExceptionKt\00", align 1 +@.TypeMapEntry.21473_from = private unnamed_addr constant [65 x i8] c"Kotlin.Coroutines.ContinuationInterceptor, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21474_to = private unnamed_addr constant [42 x i8] c"kotlin/coroutines/ContinuationInterceptor\00", align 1 +@.TypeMapEntry.21475_from = private unnamed_addr constant [71 x i8] c"Kotlin.Coroutines.ContinuationInterceptorConsts, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21476_from = private unnamed_addr constant [77 x i8] c"Kotlin.Coroutines.ContinuationInterceptorDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21477_to = private unnamed_addr constant [55 x i8] c"kotlin/coroutines/ContinuationInterceptor$DefaultImpls\00", align 1 +@.TypeMapEntry.21478_from = private unnamed_addr constant [68 x i8] c"Kotlin.Coroutines.ContinuationInterceptorKey, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21479_to = private unnamed_addr constant [46 x i8] c"kotlin/coroutines/ContinuationInterceptor$Key\00", align 1 +@.TypeMapEntry.21480_from = private unnamed_addr constant [56 x i8] c"Kotlin.Coroutines.ContinuationKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21481_to = private unnamed_addr constant [33 x i8] c"kotlin/coroutines/ContinuationKt\00", align 1 +@.TypeMapEntry.21482_from = private unnamed_addr constant [70 x i8] c"Kotlin.Coroutines.CoroutineContextDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21483_to = private unnamed_addr constant [48 x i8] c"kotlin/coroutines/CoroutineContext$DefaultImpls\00", align 1 +@.TypeMapEntry.21484_from = private unnamed_addr constant [77 x i8] c"Kotlin.Coroutines.CoroutineContextElementDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21485_to = private unnamed_addr constant [56 x i8] c"kotlin/coroutines/CoroutineContext$Element$DefaultImpls\00", align 1 +@.TypeMapEntry.21486_from = private unnamed_addr constant [64 x i8] c"Kotlin.Coroutines.CoroutineContextImplKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21487_to = private unnamed_addr constant [41 x i8] c"kotlin/coroutines/CoroutineContextImplKt\00", align 1 +@.TypeMapEntry.21488_from = private unnamed_addr constant [63 x i8] c"Kotlin.Coroutines.EmptyCoroutineContext, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21489_to = private unnamed_addr constant [40 x i8] c"kotlin/coroutines/EmptyCoroutineContext\00", align 1 +@.TypeMapEntry.21490_from = private unnamed_addr constant [55 x i8] c"Kotlin.Coroutines.IContinuation, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21491_to = private unnamed_addr constant [31 x i8] c"kotlin/coroutines/Continuation\00", align 1 +@.TypeMapEntry.21492_from = private unnamed_addr constant [66 x i8] c"Kotlin.Coroutines.IContinuationInterceptor, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21493_from = private unnamed_addr constant [73 x i8] c"Kotlin.Coroutines.IContinuationInterceptorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21494_from = private unnamed_addr constant [62 x i8] c"Kotlin.Coroutines.IContinuationInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21495_from = private unnamed_addr constant [59 x i8] c"Kotlin.Coroutines.ICoroutineContext, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21496_to = private unnamed_addr constant [35 x i8] c"kotlin/coroutines/CoroutineContext\00", align 1 +@.TypeMapEntry.21497_from = private unnamed_addr constant [66 x i8] c"Kotlin.Coroutines.ICoroutineContextElement, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21498_to = private unnamed_addr constant [43 x i8] c"kotlin/coroutines/CoroutineContext$Element\00", align 1 +@.TypeMapEntry.21499_from = private unnamed_addr constant [73 x i8] c"Kotlin.Coroutines.ICoroutineContextElementInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21500_from = private unnamed_addr constant [66 x i8] c"Kotlin.Coroutines.ICoroutineContextInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21501_from = private unnamed_addr constant [62 x i8] c"Kotlin.Coroutines.ICoroutineContextKey, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21502_to = private unnamed_addr constant [39 x i8] c"kotlin/coroutines/CoroutineContext$Key\00", align 1 +@.TypeMapEntry.21503_from = private unnamed_addr constant [69 x i8] c"Kotlin.Coroutines.ICoroutineContextKeyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21504_from = private unnamed_addr constant [62 x i8] c"Kotlin.Coroutines.IRestrictsSuspension, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21505_to = private unnamed_addr constant [38 x i8] c"kotlin/coroutines/RestrictsSuspension\00", align 1 +@.TypeMapEntry.21506_from = private unnamed_addr constant [69 x i8] c"Kotlin.Coroutines.IRestrictsSuspensionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21507_from = private unnamed_addr constant [65 x i8] c"Kotlin.Coroutines.Intrinsics.IntrinsicsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21508_to = private unnamed_addr constant [42 x i8] c"kotlin/coroutines/intrinsics/IntrinsicsKt\00", align 1 +@.TypeMapEntry.21509_from = private unnamed_addr constant [61 x i8] c"Kotlin.Coroutines.Jvm.Internal.Boxing, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21510_to = private unnamed_addr constant [38 x i8] c"kotlin/coroutines/jvm/internal/Boxing\00", align 1 +@.TypeMapEntry.21511_from = private unnamed_addr constant [70 x i8] c"Kotlin.Coroutines.Jvm.Internal.DebugMetadataKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21512_to = private unnamed_addr constant [47 x i8] c"kotlin/coroutines/jvm/internal/DebugMetadataKt\00", align 1 +@.TypeMapEntry.21513_from = private unnamed_addr constant [68 x i8] c"Kotlin.Coroutines.Jvm.Internal.DebugProbesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21514_to = private unnamed_addr constant [45 x i8] c"kotlin/coroutines/jvm/internal/DebugProbesKt\00", align 1 +@.TypeMapEntry.21515_from = private unnamed_addr constant [75 x i8] c"Kotlin.Coroutines.Jvm.Internal.ICoroutineStackFrame, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21516_to = private unnamed_addr constant [51 x i8] c"kotlin/coroutines/jvm/internal/CoroutineStackFrame\00", align 1 +@.TypeMapEntry.21517_from = private unnamed_addr constant [82 x i8] c"Kotlin.Coroutines.Jvm.Internal.ICoroutineStackFrameInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21518_from = private unnamed_addr constant [67 x i8] c"Kotlin.Coroutines.Jvm.Internal.RunSuspendKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21519_to = private unnamed_addr constant [44 x i8] c"kotlin/coroutines/jvm/internal/RunSuspendKt\00", align 1 +@.TypeMapEntry.21520_from = private unnamed_addr constant [52 x i8] c"Kotlin.DeepRecursiveFunction, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21521_to = private unnamed_addr constant [29 x i8] c"kotlin/DeepRecursiveFunction\00", align 1 +@.TypeMapEntry.21522_from = private unnamed_addr constant [46 x i8] c"Kotlin.DeepRecursiveKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21523_to = private unnamed_addr constant [23 x i8] c"kotlin/DeepRecursiveKt\00", align 1 +@.TypeMapEntry.21524_from = private unnamed_addr constant [49 x i8] c"Kotlin.DeepRecursiveScope, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21525_to = private unnamed_addr constant [26 x i8] c"kotlin/DeepRecursiveScope\00", align 1 +@.TypeMapEntry.21526_from = private unnamed_addr constant [56 x i8] c"Kotlin.DeepRecursiveScopeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21527_from = private unnamed_addr constant [47 x i8] c"Kotlin.DeprecationLevel, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21528_to = private unnamed_addr constant [24 x i8] c"kotlin/DeprecationLevel\00", align 1 +@.TypeMapEntry.21529_from = private unnamed_addr constant [53 x i8] c"Kotlin.Enums.EnumEntriesJVMKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21530_to = private unnamed_addr constant [30 x i8] c"kotlin/enums/EnumEntriesJVMKt\00", align 1 +@.TypeMapEntry.21531_from = private unnamed_addr constant [50 x i8] c"Kotlin.Enums.EnumEntriesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21532_to = private unnamed_addr constant [27 x i8] c"kotlin/enums/EnumEntriesKt\00", align 1 +@.TypeMapEntry.21533_from = private unnamed_addr constant [49 x i8] c"Kotlin.Enums.IEnumEntries, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21534_to = private unnamed_addr constant [25 x i8] c"kotlin/enums/EnumEntries\00", align 1 +@.TypeMapEntry.21535_from = private unnamed_addr constant [56 x i8] c"Kotlin.Enums.IEnumEntriesInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21536_from = private unnamed_addr constant [43 x i8] c"Kotlin.ExceptionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21537_to = private unnamed_addr constant [20 x i8] c"kotlin/ExceptionsKt\00", align 1 +@.TypeMapEntry.21538_from = private unnamed_addr constant [63 x i8] c"Kotlin.Experimental.BitwiseOperationsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21539_to = private unnamed_addr constant [40 x i8] c"kotlin/experimental/BitwiseOperationsKt\00", align 1 +@.TypeMapEntry.21540_from = private unnamed_addr constant [66 x i8] c"Kotlin.Experimental.IExperimentalNativeApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21541_to = private unnamed_addr constant [42 x i8] c"kotlin/experimental/ExperimentalNativeApi\00", align 1 +@.TypeMapEntry.21542_from = private unnamed_addr constant [73 x i8] c"Kotlin.Experimental.IExperimentalNativeApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21543_from = private unnamed_addr constant [65 x i8] c"Kotlin.Experimental.IExperimentalObjCName, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21544_to = private unnamed_addr constant [41 x i8] c"kotlin/experimental/ExperimentalObjCName\00", align 1 +@.TypeMapEntry.21545_from = private unnamed_addr constant [72 x i8] c"Kotlin.Experimental.IExperimentalObjCNameInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21546_from = private unnamed_addr constant [71 x i8] c"Kotlin.Experimental.IExperimentalObjCRefinement, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21547_to = private unnamed_addr constant [47 x i8] c"kotlin/experimental/ExperimentalObjCRefinement\00", align 1 +@.TypeMapEntry.21548_from = private unnamed_addr constant [78 x i8] c"Kotlin.Experimental.IExperimentalObjCRefinementInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21549_from = private unnamed_addr constant [70 x i8] c"Kotlin.Experimental.IExperimentalTypeInference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21550_to = private unnamed_addr constant [46 x i8] c"kotlin/experimental/ExperimentalTypeInference\00", align 1 +@.TypeMapEntry.21551_from = private unnamed_addr constant [77 x i8] c"Kotlin.Experimental.IExperimentalTypeInferenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21552_from = private unnamed_addr constant [41 x i8] c"Kotlin.HashCodeKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21553_to = private unnamed_addr constant [18 x i8] c"kotlin/HashCodeKt\00", align 1 +@.TypeMapEntry.21554_from = private unnamed_addr constant [48 x i8] c"Kotlin.IBuilderInference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21555_to = private unnamed_addr constant [24 x i8] c"kotlin/BuilderInference\00", align 1 +@.TypeMapEntry.21556_from = private unnamed_addr constant [55 x i8] c"Kotlin.IBuilderInferenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21557_from = private unnamed_addr constant [56 x i8] c"Kotlin.IConsistentCopyVisibility, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21558_to = private unnamed_addr constant [32 x i8] c"kotlin/ConsistentCopyVisibility\00", align 1 +@.TypeMapEntry.21559_from = private unnamed_addr constant [63 x i8] c"Kotlin.IConsistentCopyVisibilityInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21560_from = private unnamed_addr constant [57 x i8] c"Kotlin.IContextFunctionTypeParams, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21561_to = private unnamed_addr constant [33 x i8] c"kotlin/ContextFunctionTypeParams\00", align 1 +@.TypeMapEntry.21562_from = private unnamed_addr constant [64 x i8] c"Kotlin.IContextFunctionTypeParamsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21563_from = private unnamed_addr constant [42 x i8] c"Kotlin.IDeprecated, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21564_to = private unnamed_addr constant [18 x i8] c"kotlin/Deprecated\00", align 1 +@.TypeMapEntry.21565_from = private unnamed_addr constant [49 x i8] c"Kotlin.IDeprecatedInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21566_from = private unnamed_addr constant [53 x i8] c"Kotlin.IDeprecatedSinceKotlin, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21567_to = private unnamed_addr constant [29 x i8] c"kotlin/DeprecatedSinceKotlin\00", align 1 +@.TypeMapEntry.21568_from = private unnamed_addr constant [60 x i8] c"Kotlin.IDeprecatedSinceKotlinInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21569_from = private unnamed_addr constant [41 x i8] c"Kotlin.IDslMarker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21570_to = private unnamed_addr constant [17 x i8] c"kotlin/DslMarker\00", align 1 +@.TypeMapEntry.21571_from = private unnamed_addr constant [48 x i8] c"Kotlin.IDslMarkerInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21572_from = private unnamed_addr constant [57 x i8] c"Kotlin.IExperimentalMultiplatform, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21573_to = private unnamed_addr constant [33 x i8] c"kotlin/ExperimentalMultiplatform\00", align 1 +@.TypeMapEntry.21574_from = private unnamed_addr constant [64 x i8] c"Kotlin.IExperimentalMultiplatformInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21575_from = private unnamed_addr constant [53 x i8] c"Kotlin.IExperimentalStdlibApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21576_to = private unnamed_addr constant [29 x i8] c"kotlin/ExperimentalStdlibApi\00", align 1 +@.TypeMapEntry.21577_from = private unnamed_addr constant [60 x i8] c"Kotlin.IExperimentalStdlibApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21578_from = private unnamed_addr constant [57 x i8] c"Kotlin.IExperimentalSubclassOptIn, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21579_to = private unnamed_addr constant [33 x i8] c"kotlin/ExperimentalSubclassOptIn\00", align 1 +@.TypeMapEntry.21580_from = private unnamed_addr constant [64 x i8] c"Kotlin.IExperimentalSubclassOptInInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21581_from = private unnamed_addr constant [57 x i8] c"Kotlin.IExperimentalUnsignedTypes, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21582_to = private unnamed_addr constant [33 x i8] c"kotlin/ExperimentalUnsignedTypes\00", align 1 +@.TypeMapEntry.21583_from = private unnamed_addr constant [64 x i8] c"Kotlin.IExperimentalUnsignedTypesInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21584_from = private unnamed_addr constant [53 x i8] c"Kotlin.IExposedCopyVisibility, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21585_to = private unnamed_addr constant [29 x i8] c"kotlin/ExposedCopyVisibility\00", align 1 +@.TypeMapEntry.21586_from = private unnamed_addr constant [60 x i8] c"Kotlin.IExposedCopyVisibilityInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21587_from = private unnamed_addr constant [53 x i8] c"Kotlin.IExtensionFunctionType, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21588_to = private unnamed_addr constant [29 x i8] c"kotlin/ExtensionFunctionType\00", align 1 +@.TypeMapEntry.21589_from = private unnamed_addr constant [60 x i8] c"Kotlin.IExtensionFunctionTypeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21590_from = private unnamed_addr constant [40 x i8] c"Kotlin.IFunction, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21591_to = private unnamed_addr constant [16 x i8] c"kotlin/Function\00", align 1 +@.TypeMapEntry.21592_from = private unnamed_addr constant [47 x i8] c"Kotlin.IFunctionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21593_from = private unnamed_addr constant [36 x i8] c"Kotlin.ILazy, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21594_to = private unnamed_addr constant [12 x i8] c"kotlin/Lazy\00", align 1 +@.TypeMapEntry.21595_from = private unnamed_addr constant [43 x i8] c"Kotlin.ILazyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21596_from = private unnamed_addr constant [40 x i8] c"Kotlin.IMetadata, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21597_to = private unnamed_addr constant [16 x i8] c"kotlin/Metadata\00", align 1 +@.TypeMapEntry.21598_from = private unnamed_addr constant [47 x i8] c"Kotlin.IMetadataInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21599_from = private unnamed_addr constant [55 x i8] c"Kotlin.IO.AccessDeniedException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21600_to = private unnamed_addr constant [32 x i8] c"kotlin/io/AccessDeniedException\00", align 1 +@.TypeMapEntry.21601_from = private unnamed_addr constant [47 x i8] c"Kotlin.IO.ByteStreamsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21602_to = private unnamed_addr constant [24 x i8] c"kotlin/io/ByteStreamsKt\00", align 1 +@.TypeMapEntry.21603_from = private unnamed_addr constant [45 x i8] c"Kotlin.IO.CloseableKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21604_to = private unnamed_addr constant [22 x i8] c"kotlin/io/CloseableKt\00", align 1 +@.TypeMapEntry.21605_from = private unnamed_addr constant [43 x i8] c"Kotlin.IO.ConsoleKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21606_to = private unnamed_addr constant [20 x i8] c"kotlin/io/ConsoleKt\00", align 1 +@.TypeMapEntry.21607_from = private unnamed_addr constant [45 x i8] c"Kotlin.IO.ConstantsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21608_to = private unnamed_addr constant [22 x i8] c"kotlin/io/ConstantsKt\00", align 1 +@.TypeMapEntry.21609_from = private unnamed_addr constant [63 x i8] c"Kotlin.IO.Encoding.Base64+DefaultStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21610_to = private unnamed_addr constant [34 x i8] c"kotlin/io/encoding/Base64$Default\00", align 1 +@.TypeMapEntry.21611_from = private unnamed_addr constant [63 x i8] c"Kotlin.IO.Encoding.Base64+PaddingOption, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21612_to = private unnamed_addr constant [40 x i8] c"kotlin/io/encoding/Base64$PaddingOption\00", align 1 +@.TypeMapEntry.21613_from = private unnamed_addr constant [49 x i8] c"Kotlin.IO.Encoding.Base64, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21614_to = private unnamed_addr constant [26 x i8] c"kotlin/io/encoding/Base64\00", align 1 +@.TypeMapEntry.21615_from = private unnamed_addr constant [54 x i8] c"Kotlin.IO.Encoding.Base64JVMKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21616_to = private unnamed_addr constant [31 x i8] c"kotlin/io/encoding/Base64JVMKt\00", align 1 +@.TypeMapEntry.21617_from = private unnamed_addr constant [51 x i8] c"Kotlin.IO.Encoding.Base64Kt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21618_to = private unnamed_addr constant [28 x i8] c"kotlin/io/encoding/Base64Kt\00", align 1 +@.TypeMapEntry.21619_from = private unnamed_addr constant [67 x i8] c"Kotlin.IO.Encoding.IExperimentalEncodingApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21620_to = private unnamed_addr constant [43 x i8] c"kotlin/io/encoding/ExperimentalEncodingApi\00", align 1 +@.TypeMapEntry.21621_from = private unnamed_addr constant [74 x i8] c"Kotlin.IO.Encoding.IExperimentalEncodingApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21622_from = private unnamed_addr constant [59 x i8] c"Kotlin.IO.Encoding.StreamEncodingKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21623_to = private unnamed_addr constant [36 x i8] c"kotlin/io/encoding/StreamEncodingKt\00", align 1 +@.TypeMapEntry.21624_from = private unnamed_addr constant [46 x i8] c"Kotlin.IO.ExceptionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21625_to = private unnamed_addr constant [23 x i8] c"kotlin/io/ExceptionsKt\00", align 1 +@.TypeMapEntry.21626_from = private unnamed_addr constant [60 x i8] c"Kotlin.IO.FileAlreadyExistsException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21627_to = private unnamed_addr constant [37 x i8] c"kotlin/io/FileAlreadyExistsException\00", align 1 +@.TypeMapEntry.21628_from = private unnamed_addr constant [53 x i8] c"Kotlin.IO.FileSystemException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21629_to = private unnamed_addr constant [30 x i8] c"kotlin/io/FileSystemException\00", align 1 +@.TypeMapEntry.21630_from = private unnamed_addr constant [46 x i8] c"Kotlin.IO.FileTreeWalk, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21631_to = private unnamed_addr constant [23 x i8] c"kotlin/io/FileTreeWalk\00", align 1 +@.TypeMapEntry.21632_from = private unnamed_addr constant [51 x i8] c"Kotlin.IO.FileWalkDirection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21633_to = private unnamed_addr constant [28 x i8] c"kotlin/io/FileWalkDirection\00", align 1 +@.TypeMapEntry.21634_from = private unnamed_addr constant [41 x i8] c"Kotlin.IO.FilesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21635_to = private unnamed_addr constant [18 x i8] c"kotlin/io/FilesKt\00", align 1 +@.TypeMapEntry.21636_from = private unnamed_addr constant [53 x i8] c"Kotlin.IO.NoSuchFileException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21637_to = private unnamed_addr constant [30 x i8] c"kotlin/io/NoSuchFileException\00", align 1 +@.TypeMapEntry.21638_from = private unnamed_addr constant [47 x i8] c"Kotlin.IO.OnErrorAction, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21639_to = private unnamed_addr constant [24 x i8] c"kotlin/io/OnErrorAction\00", align 1 +@.TypeMapEntry.21640_from = private unnamed_addr constant [55 x i8] c"Kotlin.IO.Path.CopyActionResult, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21641_to = private unnamed_addr constant [32 x i8] c"kotlin/io/path/CopyActionResult\00", align 1 +@.TypeMapEntry.21642_from = private unnamed_addr constant [57 x i8] c"Kotlin.IO.Path.ICopyActionContext, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21643_to = private unnamed_addr constant [33 x i8] c"kotlin/io/path/CopyActionContext\00", align 1 +@.TypeMapEntry.21644_from = private unnamed_addr constant [64 x i8] c"Kotlin.IO.Path.ICopyActionContextInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21645_from = private unnamed_addr constant [59 x i8] c"Kotlin.IO.Path.IExperimentalPathApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21646_to = private unnamed_addr constant [35 x i8] c"kotlin/io/path/ExperimentalPathApi\00", align 1 +@.TypeMapEntry.21647_from = private unnamed_addr constant [66 x i8] c"Kotlin.IO.Path.IExperimentalPathApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21648_from = private unnamed_addr constant [58 x i8] c"Kotlin.IO.Path.IFileVisitorBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21649_to = private unnamed_addr constant [34 x i8] c"kotlin/io/path/FileVisitorBuilder\00", align 1 +@.TypeMapEntry.21650_from = private unnamed_addr constant [65 x i8] c"Kotlin.IO.Path.IFileVisitorBuilderInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21651_from = private unnamed_addr constant [52 x i8] c"Kotlin.IO.Path.OnErrorResult, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21652_to = private unnamed_addr constant [29 x i8] c"kotlin/io/path/OnErrorResult\00", align 1 +@.TypeMapEntry.21653_from = private unnamed_addr constant [53 x i8] c"Kotlin.IO.Path.PathTreeWalkKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21654_to = private unnamed_addr constant [30 x i8] c"kotlin/io/path/PathTreeWalkKt\00", align 1 +@.TypeMapEntry.21655_from = private unnamed_addr constant [53 x i8] c"Kotlin.IO.Path.PathWalkOption, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21656_to = private unnamed_addr constant [30 x i8] c"kotlin/io/path/PathWalkOption\00", align 1 +@.TypeMapEntry.21657_from = private unnamed_addr constant [46 x i8] c"Kotlin.IO.Path.PathsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21658_to = private unnamed_addr constant [23 x i8] c"kotlin/io/path/PathsKt\00", align 1 +@.TypeMapEntry.21659_from = private unnamed_addr constant [48 x i8] c"Kotlin.IO.SerializableKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21660_to = private unnamed_addr constant [25 x i8] c"kotlin/io/SerializableKt\00", align 1 +@.TypeMapEntry.21661_from = private unnamed_addr constant [47 x i8] c"Kotlin.IO.TextStreamsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21662_to = private unnamed_addr constant [24 x i8] c"kotlin/io/TextStreamsKt\00", align 1 +@.TypeMapEntry.21663_from = private unnamed_addr constant [37 x i8] c"Kotlin.IOptIn, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21664_to = private unnamed_addr constant [13 x i8] c"kotlin/OptIn\00", align 1 +@.TypeMapEntry.21665_from = private unnamed_addr constant [44 x i8] c"Kotlin.IOptInInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21666_from = private unnamed_addr constant [51 x i8] c"Kotlin.IOptionalExpectation, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21667_to = private unnamed_addr constant [27 x i8] c"kotlin/OptionalExpectation\00", align 1 +@.TypeMapEntry.21668_from = private unnamed_addr constant [58 x i8] c"Kotlin.IOptionalExpectationInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21669_from = private unnamed_addr constant [68 x i8] c"Kotlin.IOverloadResolutionByLambdaReturnType, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21670_to = private unnamed_addr constant [44 x i8] c"kotlin/OverloadResolutionByLambdaReturnType\00", align 1 +@.TypeMapEntry.21671_from = private unnamed_addr constant [75 x i8] c"Kotlin.IOverloadResolutionByLambdaReturnTypeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21672_from = private unnamed_addr constant [45 x i8] c"Kotlin.IParameterName, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21673_to = private unnamed_addr constant [21 x i8] c"kotlin/ParameterName\00", align 1 +@.TypeMapEntry.21674_from = private unnamed_addr constant [52 x i8] c"Kotlin.IParameterNameInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21675_from = private unnamed_addr constant [44 x i8] c"Kotlin.IPublishedApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21676_to = private unnamed_addr constant [20 x i8] c"kotlin/PublishedApi\00", align 1 +@.TypeMapEntry.21677_from = private unnamed_addr constant [51 x i8] c"Kotlin.IPublishedApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21678_from = private unnamed_addr constant [43 x i8] c"Kotlin.IReplaceWith, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21679_to = private unnamed_addr constant [19 x i8] c"kotlin/ReplaceWith\00", align 1 +@.TypeMapEntry.21680_from = private unnamed_addr constant [50 x i8] c"Kotlin.IReplaceWithInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21681_from = private unnamed_addr constant [45 x i8] c"Kotlin.IRequiresOptIn, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21682_to = private unnamed_addr constant [21 x i8] c"kotlin/RequiresOptIn\00", align 1 +@.TypeMapEntry.21683_from = private unnamed_addr constant [52 x i8] c"Kotlin.IRequiresOptInInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21684_from = private unnamed_addr constant [43 x i8] c"Kotlin.ISinceKotlin, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21685_to = private unnamed_addr constant [19 x i8] c"kotlin/SinceKotlin\00", align 1 +@.TypeMapEntry.21686_from = private unnamed_addr constant [50 x i8] c"Kotlin.ISinceKotlinInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21687_from = private unnamed_addr constant [53 x i8] c"Kotlin.ISubclassOptInRequired, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21688_to = private unnamed_addr constant [29 x i8] c"kotlin/SubclassOptInRequired\00", align 1 +@.TypeMapEntry.21689_from = private unnamed_addr constant [60 x i8] c"Kotlin.ISubclassOptInRequiredInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21690_from = private unnamed_addr constant [40 x i8] c"Kotlin.ISuppress, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21691_to = private unnamed_addr constant [16 x i8] c"kotlin/Suppress\00", align 1 +@.TypeMapEntry.21692_from = private unnamed_addr constant [47 x i8] c"Kotlin.ISuppressInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21693_from = private unnamed_addr constant [46 x i8] c"Kotlin.IUnsafeVariance, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21694_to = private unnamed_addr constant [22 x i8] c"kotlin/UnsafeVariance\00", align 1 +@.TypeMapEntry.21695_from = private unnamed_addr constant [53 x i8] c"Kotlin.IUnsafeVarianceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21696_from = private unnamed_addr constant [65 x i8] c"Kotlin.Internal.PlatformImplementationsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21697_to = private unnamed_addr constant [42 x i8] c"kotlin/internal/PlatformImplementationsKt\00", align 1 +@.TypeMapEntry.21698_from = private unnamed_addr constant [57 x i8] c"Kotlin.Internal.ProgressionUtilKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21699_to = private unnamed_addr constant [34 x i8] c"kotlin/internal/ProgressionUtilKt\00", align 1 +@.TypeMapEntry.21700_from = private unnamed_addr constant [58 x i8] c"Kotlin.Internal.UProgressionUtilKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21701_to = private unnamed_addr constant [35 x i8] c"kotlin/internal/UProgressionUtilKt\00", align 1 +@.TypeMapEntry.21702_from = private unnamed_addr constant [63 x i8] c"Kotlin.JS.IExperimentalJsCollectionsApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21703_to = private unnamed_addr constant [39 x i8] c"kotlin/js/ExperimentalJsCollectionsApi\00", align 1 +@.TypeMapEntry.21704_from = private unnamed_addr constant [70 x i8] c"Kotlin.JS.IExperimentalJsCollectionsApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21705_from = private unnamed_addr constant [55 x i8] c"Kotlin.JS.IExperimentalJsExport, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21706_to = private unnamed_addr constant [31 x i8] c"kotlin/js/ExperimentalJsExport\00", align 1 +@.TypeMapEntry.21707_from = private unnamed_addr constant [62 x i8] c"Kotlin.JS.IExperimentalJsExportInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21708_from = private unnamed_addr constant [57 x i8] c"Kotlin.JS.IExperimentalJsFileName, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21709_to = private unnamed_addr constant [33 x i8] c"kotlin/js/ExperimentalJsFileName\00", align 1 +@.TypeMapEntry.21710_from = private unnamed_addr constant [64 x i8] c"Kotlin.JS.IExperimentalJsFileNameInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21711_from = private unnamed_addr constant [73 x i8] c"Kotlin.JS.IExperimentalJsReflectionCreateInstance, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21712_to = private unnamed_addr constant [49 x i8] c"kotlin/js/ExperimentalJsReflectionCreateInstance\00", align 1 +@.TypeMapEntry.21713_from = private unnamed_addr constant [80 x i8] c"Kotlin.JS.IExperimentalJsReflectionCreateInstanceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21714_from = private unnamed_addr constant [55 x i8] c"Kotlin.JS.IExperimentalJsStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21715_to = private unnamed_addr constant [31 x i8] c"kotlin/js/ExperimentalJsStatic\00", align 1 +@.TypeMapEntry.21716_from = private unnamed_addr constant [62 x i8] c"Kotlin.JS.IExperimentalJsStaticInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21717_from = private unnamed_addr constant [51 x i8] c"Kotlin.Jdk7.AutoCloseableKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21718_to = private unnamed_addr constant [28 x i8] c"kotlin/jdk7/AutoCloseableKt\00", align 1 +@.TypeMapEntry.21719_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction0, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21720_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function0\00", align 1 +@.TypeMapEntry.21721_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction0Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21722_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction1, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21723_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function1\00", align 1 +@.TypeMapEntry.21724_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction10, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21725_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function10\00", align 1 +@.TypeMapEntry.21726_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction10Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21727_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction11, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21728_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function11\00", align 1 +@.TypeMapEntry.21729_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction11Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21730_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction12, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21731_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function12\00", align 1 +@.TypeMapEntry.21732_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction12Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21733_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction13, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21734_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function13\00", align 1 +@.TypeMapEntry.21735_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction13Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21736_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction14, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21737_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function14\00", align 1 +@.TypeMapEntry.21738_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction14Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21739_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction15, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21740_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function15\00", align 1 +@.TypeMapEntry.21741_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction15Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21742_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction16, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21743_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function16\00", align 1 +@.TypeMapEntry.21744_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction16Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21745_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction17, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21746_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function17\00", align 1 +@.TypeMapEntry.21747_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction17Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21748_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction18, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21749_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function18\00", align 1 +@.TypeMapEntry.21750_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction18Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21751_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction19, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21752_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function19\00", align 1 +@.TypeMapEntry.21753_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction19Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21754_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction1Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21755_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction2, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21756_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function2\00", align 1 +@.TypeMapEntry.21757_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction20, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21758_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function20\00", align 1 +@.TypeMapEntry.21759_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction20Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21760_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction21, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21761_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function21\00", align 1 +@.TypeMapEntry.21762_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction21Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21763_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Functions.IFunction22, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21764_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/functions/Function22\00", align 1 +@.TypeMapEntry.21765_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Functions.IFunction22Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21766_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction2Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21767_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction3, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21768_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function3\00", align 1 +@.TypeMapEntry.21769_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction3Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21770_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction4, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21771_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function4\00", align 1 +@.TypeMapEntry.21772_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction4Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21773_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction5, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21774_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function5\00", align 1 +@.TypeMapEntry.21775_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction5Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21776_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction6, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21777_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function6\00", align 1 +@.TypeMapEntry.21778_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction6Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21779_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction7, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21780_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function7\00", align 1 +@.TypeMapEntry.21781_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction7Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21782_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction8, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21783_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function8\00", align 1 +@.TypeMapEntry.21784_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction8Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21785_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunction9, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21786_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/Function9\00", align 1 +@.TypeMapEntry.21787_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunction9Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21788_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Functions.IFunctionN, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21789_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/functions/FunctionN\00", align 1 +@.TypeMapEntry.21790_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Functions.IFunctionNInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21791_from = private unnamed_addr constant [72 x i8] c"Kotlin.Jvm.IImplicitlyActualizedByJvmDeclaration, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21792_to = private unnamed_addr constant [48 x i8] c"kotlin/jvm/ImplicitlyActualizedByJvmDeclaration\00", align 1 +@.TypeMapEntry.21793_from = private unnamed_addr constant [79 x i8] c"Kotlin.Jvm.IImplicitlyActualizedByJvmDeclarationInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21794_from = private unnamed_addr constant [46 x i8] c"Kotlin.Jvm.IJvmDefault, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21795_to = private unnamed_addr constant [22 x i8] c"kotlin/jvm/JvmDefault\00", align 1 +@.TypeMapEntry.21796_from = private unnamed_addr constant [53 x i8] c"Kotlin.Jvm.IJvmDefaultInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21797_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.IJvmDefaultWithCompatibility, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21798_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/JvmDefaultWithCompatibility\00", align 1 +@.TypeMapEntry.21799_from = private unnamed_addr constant [70 x i8] c"Kotlin.Jvm.IJvmDefaultWithCompatibilityInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21800_from = private unnamed_addr constant [66 x i8] c"Kotlin.Jvm.IJvmDefaultWithoutCompatibility, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21801_to = private unnamed_addr constant [42 x i8] c"kotlin/jvm/JvmDefaultWithoutCompatibility\00", align 1 +@.TypeMapEntry.21802_from = private unnamed_addr constant [73 x i8] c"Kotlin.Jvm.IJvmDefaultWithoutCompatibilityInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21803_from = private unnamed_addr constant [44 x i8] c"Kotlin.Jvm.IJvmField, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21804_to = private unnamed_addr constant [20 x i8] c"kotlin/jvm/JvmField\00", align 1 +@.TypeMapEntry.21805_from = private unnamed_addr constant [51 x i8] c"Kotlin.Jvm.IJvmFieldInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21806_from = private unnamed_addr constant [45 x i8] c"Kotlin.Jvm.IJvmInline, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21807_to = private unnamed_addr constant [21 x i8] c"kotlin/jvm/JvmInline\00", align 1 +@.TypeMapEntry.21808_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.IJvmInlineInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21809_from = private unnamed_addr constant [53 x i8] c"Kotlin.Jvm.IJvmMultifileClass, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21810_to = private unnamed_addr constant [29 x i8] c"kotlin/jvm/JvmMultifileClass\00", align 1 +@.TypeMapEntry.21811_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.IJvmMultifileClassInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21812_from = private unnamed_addr constant [43 x i8] c"Kotlin.Jvm.IJvmName, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21813_to = private unnamed_addr constant [19 x i8] c"kotlin/jvm/JvmName\00", align 1 +@.TypeMapEntry.21814_from = private unnamed_addr constant [50 x i8] c"Kotlin.Jvm.IJvmNameInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21815_from = private unnamed_addr constant [48 x i8] c"Kotlin.Jvm.IJvmOverloads, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21816_to = private unnamed_addr constant [24 x i8] c"kotlin/jvm/JvmOverloads\00", align 1 +@.TypeMapEntry.21817_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.IJvmOverloadsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21818_from = private unnamed_addr constant [45 x i8] c"Kotlin.Jvm.IJvmRecord, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21819_to = private unnamed_addr constant [21 x i8] c"kotlin/jvm/JvmRecord\00", align 1 +@.TypeMapEntry.21820_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.IJvmRecordInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21821_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.IJvmSerializableLambda, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21822_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/JvmSerializableLambda\00", align 1 +@.TypeMapEntry.21823_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.IJvmSerializableLambdaInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21824_from = private unnamed_addr constant [45 x i8] c"Kotlin.Jvm.IJvmStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21825_to = private unnamed_addr constant [21 x i8] c"kotlin/jvm/JvmStatic\00", align 1 +@.TypeMapEntry.21826_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.IJvmStaticInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21827_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.IJvmSuppressWildcards, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21828_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/JvmSuppressWildcards\00", align 1 +@.TypeMapEntry.21829_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.IJvmSuppressWildcardsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21830_from = private unnamed_addr constant [48 x i8] c"Kotlin.Jvm.IJvmSynthetic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21831_to = private unnamed_addr constant [24 x i8] c"kotlin/jvm/JvmSynthetic\00", align 1 +@.TypeMapEntry.21832_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.IJvmSyntheticInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21833_from = private unnamed_addr constant [47 x i8] c"Kotlin.Jvm.IJvmWildcard, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21834_to = private unnamed_addr constant [23 x i8] c"kotlin/jvm/JvmWildcard\00", align 1 +@.TypeMapEntry.21835_from = private unnamed_addr constant [54 x i8] c"Kotlin.Jvm.IJvmWildcardInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21836_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.IPurelyImplements, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21837_to = private unnamed_addr constant [28 x i8] c"kotlin/jvm/PurelyImplements\00", align 1 +@.TypeMapEntry.21838_from = private unnamed_addr constant [59 x i8] c"Kotlin.Jvm.IPurelyImplementsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21839_from = private unnamed_addr constant [44 x i8] c"Kotlin.Jvm.IStrictfp, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21840_to = private unnamed_addr constant [20 x i8] c"kotlin/jvm/Strictfp\00", align 1 +@.TypeMapEntry.21841_from = private unnamed_addr constant [51 x i8] c"Kotlin.Jvm.IStrictfpInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21842_from = private unnamed_addr constant [48 x i8] c"Kotlin.Jvm.ISynchronized, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21843_to = private unnamed_addr constant [24 x i8] c"kotlin/jvm/Synchronized\00", align 1 +@.TypeMapEntry.21844_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.ISynchronizedInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21845_from = private unnamed_addr constant [42 x i8] c"Kotlin.Jvm.IThrows, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21846_to = private unnamed_addr constant [18 x i8] c"kotlin/jvm/Throws\00", align 1 +@.TypeMapEntry.21847_from = private unnamed_addr constant [49 x i8] c"Kotlin.Jvm.IThrowsInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21848_from = private unnamed_addr constant [45 x i8] c"Kotlin.Jvm.ITransient, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21849_to = private unnamed_addr constant [21 x i8] c"kotlin/jvm/Transient\00", align 1 +@.TypeMapEntry.21850_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.ITransientInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21851_from = private unnamed_addr constant [44 x i8] c"Kotlin.Jvm.IVolatile, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21852_to = private unnamed_addr constant [20 x i8] c"kotlin/jvm/Volatile\00", align 1 +@.TypeMapEntry.21853_from = private unnamed_addr constant [51 x i8] c"Kotlin.Jvm.IVolatileInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21854_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.Internal.AdaptedFunctionReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21855_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/AdaptedFunctionReference\00", align 1 +@.TypeMapEntry.21856_from = private unnamed_addr constant [59 x i8] c"Kotlin.Jvm.Internal.ArrayIteratorKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21857_to = private unnamed_addr constant [36 x i8] c"kotlin/jvm/internal/ArrayIteratorKt\00", align 1 +@.TypeMapEntry.21858_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.Internal.ArrayIteratorsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21859_to = private unnamed_addr constant [37 x i8] c"kotlin/jvm/internal/ArrayIteratorsKt\00", align 1 +@.TypeMapEntry.21860_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.BooleanSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21861_to = private unnamed_addr constant [41 x i8] c"kotlin/jvm/internal/BooleanSpreadBuilder\00", align 1 +@.TypeMapEntry.21862_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.ByteSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21863_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/ByteSpreadBuilder\00", align 1 +@.TypeMapEntry.21864_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.CallableReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21865_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/CallableReference\00", align 1 +@.TypeMapEntry.21866_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.Internal.CallableReferenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21867_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.CharSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21868_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/CharSpreadBuilder\00", align 1 +@.TypeMapEntry.21869_from = private unnamed_addr constant [74 x i8] c"Kotlin.Jvm.Internal.ClassReference+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21870_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/ClassReference$Companion\00", align 1 +@.TypeMapEntry.21871_from = private unnamed_addr constant [58 x i8] c"Kotlin.Jvm.Internal.ClassReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21872_to = private unnamed_addr constant [35 x i8] c"kotlin/jvm/internal/ClassReference\00", align 1 +@.TypeMapEntry.21873_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.CollectionToArray, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21874_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/CollectionToArray\00", align 1 +@.TypeMapEntry.21875_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.Internal.DefaultConstructorMarker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21876_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/DefaultConstructorMarker\00", align 1 +@.TypeMapEntry.21877_from = private unnamed_addr constant [63 x i8] c"Kotlin.Jvm.Internal.DoubleSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21878_to = private unnamed_addr constant [40 x i8] c"kotlin/jvm/internal/DoubleSpreadBuilder\00", align 1 +@.TypeMapEntry.21879_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.FloatSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21880_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/FloatSpreadBuilder\00", align 1 +@.TypeMapEntry.21881_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.FunInterfaceConstructorReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21882_to = private unnamed_addr constant [53 x i8] c"kotlin/jvm/internal/FunInterfaceConstructorReference\00", align 1 +@.TypeMapEntry.21883_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.FunctionReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21884_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/FunctionReference\00", align 1 +@.TypeMapEntry.21885_from = private unnamed_addr constant [75 x i8] c"Kotlin.Jvm.Internal.IClassBasedDeclarationContainer, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21886_to = private unnamed_addr constant [51 x i8] c"kotlin/jvm/internal/ClassBasedDeclarationContainer\00", align 1 +@.TypeMapEntry.21887_from = private unnamed_addr constant [82 x i8] c"Kotlin.Jvm.Internal.IClassBasedDeclarationContainerInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21888_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.Internal.IFunctionAdapter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21889_to = private unnamed_addr constant [36 x i8] c"kotlin/jvm/internal/FunctionAdapter\00", align 1 +@.TypeMapEntry.21890_from = private unnamed_addr constant [67 x i8] c"Kotlin.Jvm.Internal.IFunctionAdapterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21891_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.IFunctionBase, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21892_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/internal/FunctionBase\00", align 1 +@.TypeMapEntry.21893_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.IFunctionBaseInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21894_from = private unnamed_addr constant [54 x i8] c"Kotlin.Jvm.Internal.IKTypeBase, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21895_to = private unnamed_addr constant [30 x i8] c"kotlin/jvm/internal/KTypeBase\00", align 1 +@.TypeMapEntry.21896_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.IKTypeBaseInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21897_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.IRepeatableContainer, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21898_to = private unnamed_addr constant [40 x i8] c"kotlin/jvm/internal/RepeatableContainer\00", align 1 +@.TypeMapEntry.21899_from = private unnamed_addr constant [71 x i8] c"Kotlin.Jvm.Internal.IRepeatableContainerInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21900_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.ISerializedIr, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21901_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/internal/SerializedIr\00", align 1 +@.TypeMapEntry.21902_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.ISerializedIrInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21903_from = private unnamed_addr constant [65 x i8] c"Kotlin.Jvm.Internal.ISourceDebugExtension, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21904_to = private unnamed_addr constant [41 x i8] c"kotlin/jvm/internal/SourceDebugExtension\00", align 1 +@.TypeMapEntry.21905_from = private unnamed_addr constant [72 x i8] c"Kotlin.Jvm.Internal.ISourceDebugExtensionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21906_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Internal.InlineMarker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21907_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/internal/InlineMarker\00", align 1 +@.TypeMapEntry.21908_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.Internal.IntSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21909_to = private unnamed_addr constant [37 x i8] c"kotlin/jvm/internal/IntSpreadBuilder\00", align 1 +@.TypeMapEntry.21910_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.Intrinsics+Kotlin, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21911_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/Intrinsics$Kotlin\00", align 1 +@.TypeMapEntry.21912_from = private unnamed_addr constant [54 x i8] c"Kotlin.Jvm.Internal.Intrinsics, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21913_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/internal/Intrinsics\00", align 1 +@.TypeMapEntry.21914_from = private unnamed_addr constant [50 x i8] c"Kotlin.Jvm.Internal.Lambda, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21915_to = private unnamed_addr constant [27 x i8] c"kotlin/jvm/internal/Lambda\00", align 1 +@.TypeMapEntry.21916_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.LambdaInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21917_from = private unnamed_addr constant [66 x i8] c"Kotlin.Jvm.Internal.LocalVariableReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21918_to = private unnamed_addr constant [43 x i8] c"kotlin/jvm/internal/LocalVariableReference\00", align 1 +@.TypeMapEntry.21919_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.LocalVariableReferencesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21920_to = private unnamed_addr constant [46 x i8] c"kotlin/jvm/internal/LocalVariableReferencesKt\00", align 1 +@.TypeMapEntry.21921_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.LongSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21922_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/LongSpreadBuilder\00", align 1 +@.TypeMapEntry.21923_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.MagicApiIntrinsics, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21924_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/MagicApiIntrinsics\00", align 1 +@.TypeMapEntry.21925_from = private unnamed_addr constant [66 x i8] c"Kotlin.Jvm.Internal.Markers.IKMappedMarker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21926_to = private unnamed_addr constant [42 x i8] c"kotlin/jvm/internal/markers/KMappedMarker\00", align 1 +@.TypeMapEntry.21927_from = private unnamed_addr constant [73 x i8] c"Kotlin.Jvm.Internal.Markers.IKMappedMarkerInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21928_from = private unnamed_addr constant [71 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21929_to = private unnamed_addr constant [47 x i8] c"kotlin/jvm/internal/markers/KMutableCollection\00", align 1 +@.TypeMapEntry.21930_from = private unnamed_addr constant [78 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableCollectionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21931_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableIterable, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21932_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/markers/KMutableIterable\00", align 1 +@.TypeMapEntry.21933_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableIterableInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21934_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21935_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/markers/KMutableIterator\00", align 1 +@.TypeMapEntry.21936_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21937_from = private unnamed_addr constant [65 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableList, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21938_to = private unnamed_addr constant [41 x i8] c"kotlin/jvm/internal/markers/KMutableList\00", align 1 +@.TypeMapEntry.21939_from = private unnamed_addr constant [72 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableListInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21940_from = private unnamed_addr constant [73 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableListIterator, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21941_to = private unnamed_addr constant [49 x i8] c"kotlin/jvm/internal/markers/KMutableListIterator\00", align 1 +@.TypeMapEntry.21942_from = private unnamed_addr constant [80 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableListIteratorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21943_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableMap, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21944_to = private unnamed_addr constant [40 x i8] c"kotlin/jvm/internal/markers/KMutableMap\00", align 1 +@.TypeMapEntry.21945_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableMapEntry, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21946_to = private unnamed_addr constant [46 x i8] c"kotlin/jvm/internal/markers/KMutableMap$Entry\00", align 1 +@.TypeMapEntry.21947_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableMapEntryInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21948_from = private unnamed_addr constant [71 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableMapInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21949_from = private unnamed_addr constant [64 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableSet, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21950_to = private unnamed_addr constant [40 x i8] c"kotlin/jvm/internal/markers/KMutableSet\00", align 1 +@.TypeMapEntry.21951_from = private unnamed_addr constant [71 x i8] c"Kotlin.Jvm.Internal.Markers.IKMutableSetInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21952_from = private unnamed_addr constant [73 x i8] c"Kotlin.Jvm.Internal.MutableLocalVariableReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21953_to = private unnamed_addr constant [50 x i8] c"kotlin/jvm/internal/MutableLocalVariableReference\00", align 1 +@.TypeMapEntry.21954_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21955_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/internal/MutablePropertyReference\00", align 1 +@.TypeMapEntry.21956_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference0, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21957_to = private unnamed_addr constant [46 x i8] c"kotlin/jvm/internal/MutablePropertyReference0\00", align 1 +@.TypeMapEntry.21958_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference0Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21959_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference1, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21960_to = private unnamed_addr constant [46 x i8] c"kotlin/jvm/internal/MutablePropertyReference1\00", align 1 +@.TypeMapEntry.21961_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference1Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21962_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference2, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21963_to = private unnamed_addr constant [46 x i8] c"kotlin/jvm/internal/MutablePropertyReference2\00", align 1 +@.TypeMapEntry.21964_from = private unnamed_addr constant [76 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReference2Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21965_from = private unnamed_addr constant [75 x i8] c"Kotlin.Jvm.Internal.MutablePropertyReferenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21966_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.Internal.PackageReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21967_to = private unnamed_addr constant [37 x i8] c"kotlin/jvm/internal/PackageReference\00", align 1 +@.TypeMapEntry.21968_from = private unnamed_addr constant [66 x i8] c"Kotlin.Jvm.Internal.PrimitiveSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21969_to = private unnamed_addr constant [43 x i8] c"kotlin/jvm/internal/PrimitiveSpreadBuilder\00", align 1 +@.TypeMapEntry.21970_from = private unnamed_addr constant [73 x i8] c"Kotlin.Jvm.Internal.PrimitiveSpreadBuilderInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21971_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.PropertyReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21972_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/PropertyReference\00", align 1 +@.TypeMapEntry.21973_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.PropertyReference0, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21974_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/PropertyReference0\00", align 1 +@.TypeMapEntry.21975_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.PropertyReference0Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21976_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.PropertyReference1, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21977_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/PropertyReference1\00", align 1 +@.TypeMapEntry.21978_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.PropertyReference1Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21979_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.PropertyReference2, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21980_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/PropertyReference2\00", align 1 +@.TypeMapEntry.21981_from = private unnamed_addr constant [69 x i8] c"Kotlin.Jvm.Internal.PropertyReference2Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21982_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.Internal.PropertyReferenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21983_from = private unnamed_addr constant [58 x i8] c"Kotlin.Jvm.Internal.Ref+BooleanRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21984_to = private unnamed_addr constant [35 x i8] c"kotlin/jvm/internal/Ref$BooleanRef\00", align 1 +@.TypeMapEntry.21985_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Internal.Ref+ByteRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21986_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/internal/Ref$ByteRef\00", align 1 +@.TypeMapEntry.21987_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Internal.Ref+CharRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21988_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/internal/Ref$CharRef\00", align 1 +@.TypeMapEntry.21989_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.Ref+DoubleRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21990_to = private unnamed_addr constant [34 x i8] c"kotlin/jvm/internal/Ref$DoubleRef\00", align 1 +@.TypeMapEntry.21991_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Internal.Ref+FloatRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21992_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/internal/Ref$FloatRef\00", align 1 +@.TypeMapEntry.21993_from = private unnamed_addr constant [54 x i8] c"Kotlin.Jvm.Internal.Ref+IntRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21994_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/internal/Ref$IntRef\00", align 1 +@.TypeMapEntry.21995_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Internal.Ref+LongRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21996_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/internal/Ref$LongRef\00", align 1 +@.TypeMapEntry.21997_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.Ref+ObjectRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.21998_to = private unnamed_addr constant [34 x i8] c"kotlin/jvm/internal/Ref$ObjectRef\00", align 1 +@.TypeMapEntry.21999_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Internal.Ref+ShortRef, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22000_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/internal/Ref$ShortRef\00", align 1 +@.TypeMapEntry.22001_from = private unnamed_addr constant [47 x i8] c"Kotlin.Jvm.Internal.Ref, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22002_to = private unnamed_addr constant [24 x i8] c"kotlin/jvm/internal/Ref\00", align 1 +@.TypeMapEntry.22003_from = private unnamed_addr constant [54 x i8] c"Kotlin.Jvm.Internal.Reflection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22004_to = private unnamed_addr constant [31 x i8] c"kotlin/jvm/internal/Reflection\00", align 1 +@.TypeMapEntry.22005_from = private unnamed_addr constant [61 x i8] c"Kotlin.Jvm.Internal.ReflectionFactory, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22006_to = private unnamed_addr constant [38 x i8] c"kotlin/jvm/internal/ReflectionFactory\00", align 1 +@.TypeMapEntry.22007_from = private unnamed_addr constant [62 x i8] c"Kotlin.Jvm.Internal.ShortSpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22008_to = private unnamed_addr constant [39 x i8] c"kotlin/jvm/internal/ShortSpreadBuilder\00", align 1 +@.TypeMapEntry.22009_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.SpreadBuilder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22010_to = private unnamed_addr constant [34 x i8] c"kotlin/jvm/internal/SpreadBuilder\00", align 1 +@.TypeMapEntry.22011_from = private unnamed_addr constant [58 x i8] c"Kotlin.Jvm.Internal.TypeIntrinsics, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22012_to = private unnamed_addr constant [35 x i8] c"kotlin/jvm/internal/TypeIntrinsics\00", align 1 +@.TypeMapEntry.22013_from = private unnamed_addr constant [95 x i8] c"Kotlin.Jvm.Internal.TypeParameterReference+CompanionStatic+WhenMappings, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22014_to = private unnamed_addr constant [66 x i8] c"kotlin/jvm/internal/TypeParameterReference$Companion$WhenMappings\00", align 1 +@.TypeMapEntry.22015_from = private unnamed_addr constant [82 x i8] c"Kotlin.Jvm.Internal.TypeParameterReference+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22016_to = private unnamed_addr constant [53 x i8] c"kotlin/jvm/internal/TypeParameterReference$Companion\00", align 1 +@.TypeMapEntry.22017_from = private unnamed_addr constant [66 x i8] c"Kotlin.Jvm.Internal.TypeParameterReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22018_to = private unnamed_addr constant [43 x i8] c"kotlin/jvm/internal/TypeParameterReference\00", align 1 +@.TypeMapEntry.22019_from = private unnamed_addr constant [70 x i8] c"Kotlin.Jvm.Internal.TypeReference+WhenMappings, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22020_to = private unnamed_addr constant [47 x i8] c"kotlin/jvm/internal/TypeReference$WhenMappings\00", align 1 +@.TypeMapEntry.22021_from = private unnamed_addr constant [57 x i8] c"Kotlin.Jvm.Internal.TypeReference, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22022_to = private unnamed_addr constant [34 x i8] c"kotlin/jvm/internal/TypeReference\00", align 1 +@.TypeMapEntry.22023_from = private unnamed_addr constant [60 x i8] c"Kotlin.Jvm.Internal.Unsafe.MonitorKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22024_to = private unnamed_addr constant [37 x i8] c"kotlin/jvm/internal/unsafe/MonitorKt\00", align 1 +@.TypeMapEntry.22025_from = private unnamed_addr constant [55 x i8] c"Kotlin.Jvm.Jdk8.JvmRepeatableKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22026_to = private unnamed_addr constant [32 x i8] c"kotlin/jvm/jdk8/JvmRepeatableKt\00", align 1 +@.TypeMapEntry.22027_from = private unnamed_addr constant [52 x i8] c"Kotlin.Jvm.JvmClassMappingKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22028_to = private unnamed_addr constant [29 x i8] c"kotlin/jvm/JvmClassMappingKt\00", align 1 +@.TypeMapEntry.22029_from = private unnamed_addr constant [68 x i8] c"Kotlin.Jvm.KotlinReflectionNotSupportedError, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22030_to = private unnamed_addr constant [45 x i8] c"kotlin/jvm/KotlinReflectionNotSupportedError\00", align 1 +@.TypeMapEntry.22031_from = private unnamed_addr constant [56 x i8] c"Kotlin.Jvm.Optionals.OptionalsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22032_to = private unnamed_addr constant [33 x i8] c"kotlin/jvm/optionals/OptionalsKt\00", align 1 +@.TypeMapEntry.22033_from = private unnamed_addr constant [57 x i8] c"Kotlin.KotlinNullPointerException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22034_to = private unnamed_addr constant [34 x i8] c"kotlin/KotlinNullPointerException\00", align 1 +@.TypeMapEntry.22035_from = private unnamed_addr constant [44 x i8] c"Kotlin.KotlinVersion, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22036_to = private unnamed_addr constant [21 x i8] c"kotlin/KotlinVersion\00", align 1 +@.TypeMapEntry.22037_from = private unnamed_addr constant [41 x i8] c"Kotlin.LateinitKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22038_to = private unnamed_addr constant [18 x i8] c"kotlin/LateinitKt\00", align 1 +@.TypeMapEntry.22039_from = private unnamed_addr constant [37 x i8] c"Kotlin.LazyKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22040_to = private unnamed_addr constant [14 x i8] c"kotlin/LazyKt\00", align 1 +@.TypeMapEntry.22041_from = private unnamed_addr constant [51 x i8] c"Kotlin.LazyThreadSafetyMode, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22042_to = private unnamed_addr constant [28 x i8] c"kotlin/LazyThreadSafetyMode\00", align 1 +@.TypeMapEntry.22043_from = private unnamed_addr constant [42 x i8] c"Kotlin.Math.MathKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22044_to = private unnamed_addr constant [19 x i8] c"kotlin/math/MathKt\00", align 1 +@.TypeMapEntry.22045_from = private unnamed_addr constant [43 x i8] c"Kotlin.Math.UMathKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22046_to = private unnamed_addr constant [20 x i8] c"kotlin/math/UMathKt\00", align 1 +@.TypeMapEntry.22047_from = private unnamed_addr constant [51 x i8] c"Kotlin.MetadataDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22048_to = private unnamed_addr constant [29 x i8] c"kotlin/Metadata$DefaultImpls\00", align 1 +@.TypeMapEntry.22049_from = private unnamed_addr constant [59 x i8] c"Kotlin.NoWhenBranchMatchedException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22050_to = private unnamed_addr constant [36 x i8] c"kotlin/NoWhenBranchMatchedException\00", align 1 +@.TypeMapEntry.22051_from = private unnamed_addr constant [50 x i8] c"Kotlin.NotImplementedError, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22052_to = private unnamed_addr constant [27 x i8] c"kotlin/NotImplementedError\00", align 1 +@.TypeMapEntry.22053_from = private unnamed_addr constant [40 x i8] c"Kotlin.NumbersKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22054_to = private unnamed_addr constant [17 x i8] c"kotlin/NumbersKt\00", align 1 +@.TypeMapEntry.22055_from = private unnamed_addr constant [35 x i8] c"Kotlin.Pair, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22056_to = private unnamed_addr constant [12 x i8] c"kotlin/Pair\00", align 1 +@.TypeMapEntry.22057_from = private unnamed_addr constant [46 x i8] c"Kotlin.PreconditionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22058_to = private unnamed_addr constant [23 x i8] c"kotlin/PreconditionsKt\00", align 1 +@.TypeMapEntry.22059_from = private unnamed_addr constant [51 x i8] c"Kotlin.Properties.Delegates, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22060_to = private unnamed_addr constant [28 x i8] c"kotlin/properties/Delegates\00", align 1 +@.TypeMapEntry.22061_from = private unnamed_addr constant [67 x i8] c"Kotlin.Properties.IPropertyDelegateProvider, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22062_to = private unnamed_addr constant [43 x i8] c"kotlin/properties/PropertyDelegateProvider\00", align 1 +@.TypeMapEntry.22063_from = private unnamed_addr constant [74 x i8] c"Kotlin.Properties.IPropertyDelegateProviderInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22064_from = private unnamed_addr constant [59 x i8] c"Kotlin.Properties.IReadOnlyProperty, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22065_to = private unnamed_addr constant [35 x i8] c"kotlin/properties/ReadOnlyProperty\00", align 1 +@.TypeMapEntry.22066_from = private unnamed_addr constant [66 x i8] c"Kotlin.Properties.IReadOnlyPropertyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22067_from = private unnamed_addr constant [60 x i8] c"Kotlin.Properties.IReadWriteProperty, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22068_to = private unnamed_addr constant [36 x i8] c"kotlin/properties/ReadWriteProperty\00", align 1 +@.TypeMapEntry.22069_from = private unnamed_addr constant [67 x i8] c"Kotlin.Properties.IReadWritePropertyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22070_from = private unnamed_addr constant [60 x i8] c"Kotlin.Properties.ObservableProperty, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22071_to = private unnamed_addr constant [37 x i8] c"kotlin/properties/ObservableProperty\00", align 1 +@.TypeMapEntry.22072_from = private unnamed_addr constant [67 x i8] c"Kotlin.Properties.ObservablePropertyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22073_from = private unnamed_addr constant [59 x i8] c"Kotlin.PropertyReferenceDelegatesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22074_to = private unnamed_addr constant [36 x i8] c"kotlin/PropertyReferenceDelegatesKt\00", align 1 +@.TypeMapEntry.22075_from = private unnamed_addr constant [54 x i8] c"Kotlin.Random.PlatformRandomKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22076_to = private unnamed_addr constant [31 x i8] c"kotlin/random/PlatformRandomKt\00", align 1 +@.TypeMapEntry.22077_from = private unnamed_addr constant [58 x i8] c"Kotlin.Random.Random+DefaultStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22078_to = private unnamed_addr constant [29 x i8] c"kotlin/random/Random$Default\00", align 1 +@.TypeMapEntry.22079_from = private unnamed_addr constant [44 x i8] c"Kotlin.Random.Random, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22080_to = private unnamed_addr constant [21 x i8] c"kotlin/random/Random\00", align 1 +@.TypeMapEntry.22081_from = private unnamed_addr constant [51 x i8] c"Kotlin.Random.RandomInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22082_from = private unnamed_addr constant [46 x i8] c"Kotlin.Random.RandomKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22083_to = private unnamed_addr constant [23 x i8] c"kotlin/random/RandomKt\00", align 1 +@.TypeMapEntry.22084_from = private unnamed_addr constant [47 x i8] c"Kotlin.Random.URandomKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22085_to = private unnamed_addr constant [24 x i8] c"kotlin/random/URandomKt\00", align 1 +@.TypeMapEntry.22086_from = private unnamed_addr constant [69 x i8] c"Kotlin.Ranges.CharProgression+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22087_to = private unnamed_addr constant [40 x i8] c"kotlin/ranges/CharProgression$Companion\00", align 1 +@.TypeMapEntry.22088_from = private unnamed_addr constant [53 x i8] c"Kotlin.Ranges.CharProgression, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22089_to = private unnamed_addr constant [30 x i8] c"kotlin/ranges/CharProgression\00", align 1 +@.TypeMapEntry.22090_from = private unnamed_addr constant [63 x i8] c"Kotlin.Ranges.CharRange+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22091_to = private unnamed_addr constant [34 x i8] c"kotlin/ranges/CharRange$Companion\00", align 1 +@.TypeMapEntry.22092_from = private unnamed_addr constant [47 x i8] c"Kotlin.Ranges.CharRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22093_to = private unnamed_addr constant [24 x i8] c"kotlin/ranges/CharRange\00", align 1 +@.TypeMapEntry.22094_from = private unnamed_addr constant [74 x i8] c"Kotlin.Ranges.ClosedFloatingPointRangeDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22095_to = private unnamed_addr constant [52 x i8] c"kotlin/ranges/ClosedFloatingPointRange$DefaultImpls\00", align 1 +@.TypeMapEntry.22096_from = private unnamed_addr constant [61 x i8] c"Kotlin.Ranges.ClosedRangeDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22097_to = private unnamed_addr constant [39 x i8] c"kotlin/ranges/ClosedRange$DefaultImpls\00", align 1 +@.TypeMapEntry.22098_from = private unnamed_addr constant [63 x i8] c"Kotlin.Ranges.IClosedFloatingPointRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22099_to = private unnamed_addr constant [39 x i8] c"kotlin/ranges/ClosedFloatingPointRange\00", align 1 +@.TypeMapEntry.22100_from = private unnamed_addr constant [70 x i8] c"Kotlin.Ranges.IClosedFloatingPointRangeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22101_from = private unnamed_addr constant [50 x i8] c"Kotlin.Ranges.IClosedRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22102_to = private unnamed_addr constant [26 x i8] c"kotlin/ranges/ClosedRange\00", align 1 +@.TypeMapEntry.22103_from = private unnamed_addr constant [57 x i8] c"Kotlin.Ranges.IClosedRangeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22104_from = private unnamed_addr constant [51 x i8] c"Kotlin.Ranges.IOpenEndRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22105_to = private unnamed_addr constant [27 x i8] c"kotlin/ranges/OpenEndRange\00", align 1 +@.TypeMapEntry.22106_from = private unnamed_addr constant [58 x i8] c"Kotlin.Ranges.IOpenEndRangeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22107_from = private unnamed_addr constant [68 x i8] c"Kotlin.Ranges.IntProgression+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22108_to = private unnamed_addr constant [39 x i8] c"kotlin/ranges/IntProgression$Companion\00", align 1 +@.TypeMapEntry.22109_from = private unnamed_addr constant [52 x i8] c"Kotlin.Ranges.IntProgression, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22110_to = private unnamed_addr constant [29 x i8] c"kotlin/ranges/IntProgression\00", align 1 +@.TypeMapEntry.22111_from = private unnamed_addr constant [62 x i8] c"Kotlin.Ranges.IntRange+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22112_to = private unnamed_addr constant [33 x i8] c"kotlin/ranges/IntRange$Companion\00", align 1 +@.TypeMapEntry.22113_from = private unnamed_addr constant [46 x i8] c"Kotlin.Ranges.IntRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22114_to = private unnamed_addr constant [23 x i8] c"kotlin/ranges/IntRange\00", align 1 +@.TypeMapEntry.22115_from = private unnamed_addr constant [69 x i8] c"Kotlin.Ranges.LongProgression+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22116_to = private unnamed_addr constant [40 x i8] c"kotlin/ranges/LongProgression$Companion\00", align 1 +@.TypeMapEntry.22117_from = private unnamed_addr constant [53 x i8] c"Kotlin.Ranges.LongProgression, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22118_to = private unnamed_addr constant [30 x i8] c"kotlin/ranges/LongProgression\00", align 1 +@.TypeMapEntry.22119_from = private unnamed_addr constant [63 x i8] c"Kotlin.Ranges.LongRange+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22120_to = private unnamed_addr constant [34 x i8] c"kotlin/ranges/LongRange$Companion\00", align 1 +@.TypeMapEntry.22121_from = private unnamed_addr constant [47 x i8] c"Kotlin.Ranges.LongRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22122_to = private unnamed_addr constant [24 x i8] c"kotlin/ranges/LongRange\00", align 1 +@.TypeMapEntry.22123_from = private unnamed_addr constant [62 x i8] c"Kotlin.Ranges.OpenEndRangeDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22124_to = private unnamed_addr constant [40 x i8] c"kotlin/ranges/OpenEndRange$DefaultImpls\00", align 1 +@.TypeMapEntry.22125_from = private unnamed_addr constant [46 x i8] c"Kotlin.Ranges.RangesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22126_to = private unnamed_addr constant [23 x i8] c"kotlin/ranges/RangesKt\00", align 1 +@.TypeMapEntry.22127_from = private unnamed_addr constant [69 x i8] c"Kotlin.Ranges.UIntProgression+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22128_to = private unnamed_addr constant [40 x i8] c"kotlin/ranges/UIntProgression$Companion\00", align 1 +@.TypeMapEntry.22129_from = private unnamed_addr constant [53 x i8] c"Kotlin.Ranges.UIntProgression, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22130_to = private unnamed_addr constant [30 x i8] c"kotlin/ranges/UIntProgression\00", align 1 +@.TypeMapEntry.22131_from = private unnamed_addr constant [63 x i8] c"Kotlin.Ranges.UIntRange+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22132_to = private unnamed_addr constant [34 x i8] c"kotlin/ranges/UIntRange$Companion\00", align 1 +@.TypeMapEntry.22133_from = private unnamed_addr constant [47 x i8] c"Kotlin.Ranges.UIntRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22134_to = private unnamed_addr constant [24 x i8] c"kotlin/ranges/UIntRange\00", align 1 +@.TypeMapEntry.22135_from = private unnamed_addr constant [70 x i8] c"Kotlin.Ranges.ULongProgression+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22136_to = private unnamed_addr constant [41 x i8] c"kotlin/ranges/ULongProgression$Companion\00", align 1 +@.TypeMapEntry.22137_from = private unnamed_addr constant [54 x i8] c"Kotlin.Ranges.ULongProgression, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22138_to = private unnamed_addr constant [31 x i8] c"kotlin/ranges/ULongProgression\00", align 1 +@.TypeMapEntry.22139_from = private unnamed_addr constant [64 x i8] c"Kotlin.Ranges.ULongRange+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22140_to = private unnamed_addr constant [35 x i8] c"kotlin/ranges/ULongRange$Companion\00", align 1 +@.TypeMapEntry.22141_from = private unnamed_addr constant [48 x i8] c"Kotlin.Ranges.ULongRange, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22142_to = private unnamed_addr constant [25 x i8] c"kotlin/ranges/ULongRange\00", align 1 +@.TypeMapEntry.22143_from = private unnamed_addr constant [47 x i8] c"Kotlin.Ranges.URangesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22144_to = private unnamed_addr constant [24 x i8] c"kotlin/ranges/URangesKt\00", align 1 +@.TypeMapEntry.22145_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKAnnotatedElement, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22146_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KAnnotatedElement\00", align 1 +@.TypeMapEntry.22147_from = private unnamed_addr constant [64 x i8] c"Kotlin.Reflect.IKAnnotatedElementInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22148_from = private unnamed_addr constant [49 x i8] c"Kotlin.Reflect.IKCallable, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22149_to = private unnamed_addr constant [25 x i8] c"kotlin/reflect/KCallable\00", align 1 +@.TypeMapEntry.22150_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKCallableInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22151_from = private unnamed_addr constant [46 x i8] c"Kotlin.Reflect.IKClass, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22152_to = private unnamed_addr constant [22 x i8] c"kotlin/reflect/KClass\00", align 1 +@.TypeMapEntry.22153_from = private unnamed_addr constant [53 x i8] c"Kotlin.Reflect.IKClassInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22154_from = private unnamed_addr constant [51 x i8] c"Kotlin.Reflect.IKClassifier, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22155_to = private unnamed_addr constant [27 x i8] c"kotlin/reflect/KClassifier\00", align 1 +@.TypeMapEntry.22156_from = private unnamed_addr constant [58 x i8] c"Kotlin.Reflect.IKClassifierInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22157_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.IKDeclarationContainer, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22158_to = private unnamed_addr constant [37 x i8] c"kotlin/reflect/KDeclarationContainer\00", align 1 +@.TypeMapEntry.22159_from = private unnamed_addr constant [68 x i8] c"Kotlin.Reflect.IKDeclarationContainerInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22160_from = private unnamed_addr constant [49 x i8] c"Kotlin.Reflect.IKFunction, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22161_to = private unnamed_addr constant [25 x i8] c"kotlin/reflect/KFunction\00", align 1 +@.TypeMapEntry.22162_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKFunctionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22163_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKMutableProperty, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22164_to = private unnamed_addr constant [32 x i8] c"kotlin/reflect/KMutableProperty\00", align 1 +@.TypeMapEntry.22165_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKMutableProperty0, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22166_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KMutableProperty0\00", align 1 +@.TypeMapEntry.22167_from = private unnamed_addr constant [64 x i8] c"Kotlin.Reflect.IKMutableProperty0Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22168_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKMutableProperty0Setter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22169_to = private unnamed_addr constant [40 x i8] c"kotlin/reflect/KMutableProperty0$Setter\00", align 1 +@.TypeMapEntry.22170_from = private unnamed_addr constant [70 x i8] c"Kotlin.Reflect.IKMutableProperty0SetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22171_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKMutableProperty1, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22172_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KMutableProperty1\00", align 1 +@.TypeMapEntry.22173_from = private unnamed_addr constant [64 x i8] c"Kotlin.Reflect.IKMutableProperty1Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22174_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKMutableProperty1Setter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22175_to = private unnamed_addr constant [40 x i8] c"kotlin/reflect/KMutableProperty1$Setter\00", align 1 +@.TypeMapEntry.22176_from = private unnamed_addr constant [70 x i8] c"Kotlin.Reflect.IKMutableProperty1SetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22177_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKMutableProperty2, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22178_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KMutableProperty2\00", align 1 +@.TypeMapEntry.22179_from = private unnamed_addr constant [64 x i8] c"Kotlin.Reflect.IKMutableProperty2Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22180_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKMutableProperty2Setter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22181_to = private unnamed_addr constant [40 x i8] c"kotlin/reflect/KMutableProperty2$Setter\00", align 1 +@.TypeMapEntry.22182_from = private unnamed_addr constant [70 x i8] c"Kotlin.Reflect.IKMutableProperty2SetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22183_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKMutablePropertyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22184_from = private unnamed_addr constant [62 x i8] c"Kotlin.Reflect.IKMutablePropertySetter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22185_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/KMutableProperty$Setter\00", align 1 +@.TypeMapEntry.22186_from = private unnamed_addr constant [69 x i8] c"Kotlin.Reflect.IKMutablePropertySetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22187_from = private unnamed_addr constant [50 x i8] c"Kotlin.Reflect.IKParameter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22188_to = private unnamed_addr constant [26 x i8] c"kotlin/reflect/KParameter\00", align 1 +@.TypeMapEntry.22189_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKParameterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22190_from = private unnamed_addr constant [49 x i8] c"Kotlin.Reflect.IKProperty, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22191_to = private unnamed_addr constant [25 x i8] c"kotlin/reflect/KProperty\00", align 1 +@.TypeMapEntry.22192_from = private unnamed_addr constant [50 x i8] c"Kotlin.Reflect.IKProperty0, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22193_to = private unnamed_addr constant [26 x i8] c"kotlin/reflect/KProperty0\00", align 1 +@.TypeMapEntry.22194_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKProperty0Getter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22195_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KProperty0$Getter\00", align 1 +@.TypeMapEntry.22196_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKProperty0GetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22197_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKProperty0Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22198_from = private unnamed_addr constant [50 x i8] c"Kotlin.Reflect.IKProperty1, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22199_to = private unnamed_addr constant [26 x i8] c"kotlin/reflect/KProperty1\00", align 1 +@.TypeMapEntry.22200_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKProperty1Getter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22201_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KProperty1$Getter\00", align 1 +@.TypeMapEntry.22202_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKProperty1GetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22203_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKProperty1Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22204_from = private unnamed_addr constant [50 x i8] c"Kotlin.Reflect.IKProperty2, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22205_to = private unnamed_addr constant [26 x i8] c"kotlin/reflect/KProperty2\00", align 1 +@.TypeMapEntry.22206_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKProperty2Getter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22207_to = private unnamed_addr constant [33 x i8] c"kotlin/reflect/KProperty2$Getter\00", align 1 +@.TypeMapEntry.22208_from = private unnamed_addr constant [63 x i8] c"Kotlin.Reflect.IKProperty2GetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22209_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKProperty2Invoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22210_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.IKPropertyAccessor, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22211_to = private unnamed_addr constant [34 x i8] c"kotlin/reflect/KProperty$Accessor\00", align 1 +@.TypeMapEntry.22212_from = private unnamed_addr constant [64 x i8] c"Kotlin.Reflect.IKPropertyAccessorInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22213_from = private unnamed_addr constant [55 x i8] c"Kotlin.Reflect.IKPropertyGetter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22214_to = private unnamed_addr constant [32 x i8] c"kotlin/reflect/KProperty$Getter\00", align 1 +@.TypeMapEntry.22215_from = private unnamed_addr constant [62 x i8] c"Kotlin.Reflect.IKPropertyGetterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22216_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.IKPropertyInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22217_from = private unnamed_addr constant [45 x i8] c"Kotlin.Reflect.IKType, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22218_to = private unnamed_addr constant [21 x i8] c"kotlin/reflect/KType\00", align 1 +@.TypeMapEntry.22219_from = private unnamed_addr constant [52 x i8] c"Kotlin.Reflect.IKTypeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22220_from = private unnamed_addr constant [54 x i8] c"Kotlin.Reflect.IKTypeParameter, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22221_to = private unnamed_addr constant [30 x i8] c"kotlin/reflect/KTypeParameter\00", align 1 +@.TypeMapEntry.22222_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.IKTypeParameterInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22223_from = private unnamed_addr constant [60 x i8] c"Kotlin.Reflect.KCallableDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22224_to = private unnamed_addr constant [38 x i8] c"kotlin/reflect/KCallable$DefaultImpls\00", align 1 +@.TypeMapEntry.22225_from = private unnamed_addr constant [57 x i8] c"Kotlin.Reflect.KClassDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22226_to = private unnamed_addr constant [35 x i8] c"kotlin/reflect/KClass$DefaultImpls\00", align 1 +@.TypeMapEntry.22227_from = private unnamed_addr constant [47 x i8] c"Kotlin.Reflect.KClasses, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22228_to = private unnamed_addr constant [24 x i8] c"kotlin/reflect/KClasses\00", align 1 +@.TypeMapEntry.22229_from = private unnamed_addr constant [53 x i8] c"Kotlin.Reflect.KClassesImplKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22230_to = private unnamed_addr constant [30 x i8] c"kotlin/reflect/KClassesImplKt\00", align 1 +@.TypeMapEntry.22231_from = private unnamed_addr constant [60 x i8] c"Kotlin.Reflect.KFunctionDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22232_to = private unnamed_addr constant [38 x i8] c"kotlin/reflect/KFunction$DefaultImpls\00", align 1 +@.TypeMapEntry.22233_from = private unnamed_addr constant [68 x i8] c"Kotlin.Reflect.KMutableProperty0DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22234_to = private unnamed_addr constant [46 x i8] c"kotlin/reflect/KMutableProperty0$DefaultImpls\00", align 1 +@.TypeMapEntry.22235_from = private unnamed_addr constant [68 x i8] c"Kotlin.Reflect.KMutableProperty1DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22236_to = private unnamed_addr constant [46 x i8] c"kotlin/reflect/KMutableProperty1$DefaultImpls\00", align 1 +@.TypeMapEntry.22237_from = private unnamed_addr constant [68 x i8] c"Kotlin.Reflect.KMutableProperty2DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22238_to = private unnamed_addr constant [46 x i8] c"kotlin/reflect/KMutableProperty2$DefaultImpls\00", align 1 +@.TypeMapEntry.22239_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.KParameterDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22240_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/KParameter$DefaultImpls\00", align 1 +@.TypeMapEntry.22241_from = private unnamed_addr constant [53 x i8] c"Kotlin.Reflect.KParameterKind, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22242_to = private unnamed_addr constant [31 x i8] c"kotlin/reflect/KParameter$Kind\00", align 1 +@.TypeMapEntry.22243_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.KProperty0DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22244_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/KProperty0$DefaultImpls\00", align 1 +@.TypeMapEntry.22245_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.KProperty1DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22246_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/KProperty1$DefaultImpls\00", align 1 +@.TypeMapEntry.22247_from = private unnamed_addr constant [61 x i8] c"Kotlin.Reflect.KProperty2DefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22248_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/KProperty2$DefaultImpls\00", align 1 +@.TypeMapEntry.22249_from = private unnamed_addr constant [60 x i8] c"Kotlin.Reflect.KPropertyDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22250_to = private unnamed_addr constant [38 x i8] c"kotlin/reflect/KProperty$DefaultImpls\00", align 1 +@.TypeMapEntry.22251_from = private unnamed_addr constant [56 x i8] c"Kotlin.Reflect.KTypeDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22252_to = private unnamed_addr constant [34 x i8] c"kotlin/reflect/KType$DefaultImpls\00", align 1 +@.TypeMapEntry.22253_from = private unnamed_addr constant [70 x i8] c"Kotlin.Reflect.KTypeProjection+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22254_to = private unnamed_addr constant [41 x i8] c"kotlin/reflect/KTypeProjection$Companion\00", align 1 +@.TypeMapEntry.22255_from = private unnamed_addr constant [67 x i8] c"Kotlin.Reflect.KTypeProjection+WhenMappings, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22256_to = private unnamed_addr constant [44 x i8] c"kotlin/reflect/KTypeProjection$WhenMappings\00", align 1 +@.TypeMapEntry.22257_from = private unnamed_addr constant [54 x i8] c"Kotlin.Reflect.KTypeProjection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22258_to = private unnamed_addr constant [31 x i8] c"kotlin/reflect/KTypeProjection\00", align 1 +@.TypeMapEntry.22259_from = private unnamed_addr constant [48 x i8] c"Kotlin.Reflect.KVariance, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22260_to = private unnamed_addr constant [25 x i8] c"kotlin/reflect/KVariance\00", align 1 +@.TypeMapEntry.22261_from = private unnamed_addr constant [50 x i8] c"Kotlin.Reflect.KVisibility, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22262_to = private unnamed_addr constant [27 x i8] c"kotlin/reflect/KVisibility\00", align 1 +@.TypeMapEntry.22263_from = private unnamed_addr constant [47 x i8] c"Kotlin.Reflect.TypeOfKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22264_to = private unnamed_addr constant [24 x i8] c"kotlin/reflect/TypeOfKt\00", align 1 +@.TypeMapEntry.22265_from = private unnamed_addr constant [62 x i8] c"Kotlin.Reflect.TypesJVMKt+WhenMappings, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22266_to = private unnamed_addr constant [39 x i8] c"kotlin/reflect/TypesJVMKt$WhenMappings\00", align 1 +@.TypeMapEntry.22267_from = private unnamed_addr constant [49 x i8] c"Kotlin.Reflect.TypesJVMKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22268_to = private unnamed_addr constant [26 x i8] c"kotlin/reflect/TypesJVMKt\00", align 1 +@.TypeMapEntry.22269_from = private unnamed_addr constant [49 x i8] c"Kotlin.RequiresOptInLevel, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22270_to = private unnamed_addr constant [27 x i8] c"kotlin/RequiresOptIn$Level\00", align 1 +@.TypeMapEntry.22271_from = private unnamed_addr constant [37 x i8] c"Kotlin.Result, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22272_to = private unnamed_addr constant [14 x i8] c"kotlin/Result\00", align 1 +@.TypeMapEntry.22273_from = private unnamed_addr constant [39 x i8] c"Kotlin.ResultKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22274_to = private unnamed_addr constant [16 x i8] c"kotlin/ResultKt\00", align 1 +@.TypeMapEntry.22275_from = private unnamed_addr constant [50 x i8] c"Kotlin.Sequences.ISequence, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22276_to = private unnamed_addr constant [26 x i8] c"kotlin/sequences/Sequence\00", align 1 +@.TypeMapEntry.22277_from = private unnamed_addr constant [57 x i8] c"Kotlin.Sequences.ISequenceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22278_from = private unnamed_addr constant [54 x i8] c"Kotlin.Sequences.SequenceScope, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22279_to = private unnamed_addr constant [31 x i8] c"kotlin/sequences/SequenceScope\00", align 1 +@.TypeMapEntry.22280_from = private unnamed_addr constant [61 x i8] c"Kotlin.Sequences.SequenceScopeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22281_from = private unnamed_addr constant [52 x i8] c"Kotlin.Sequences.SequencesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22282_to = private unnamed_addr constant [29 x i8] c"kotlin/sequences/SequencesKt\00", align 1 +@.TypeMapEntry.22283_from = private unnamed_addr constant [53 x i8] c"Kotlin.Sequences.USequencesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22284_to = private unnamed_addr constant [30 x i8] c"kotlin/sequences/USequencesKt\00", align 1 +@.TypeMapEntry.22285_from = private unnamed_addr constant [41 x i8] c"Kotlin.StandardKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22286_to = private unnamed_addr constant [18 x i8] c"kotlin/StandardKt\00", align 1 +@.TypeMapEntry.22287_from = private unnamed_addr constant [53 x i8] c"Kotlin.Streams.Jdk8.StreamsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22288_to = private unnamed_addr constant [30 x i8] c"kotlin/streams/jdk8/StreamsKt\00", align 1 +@.TypeMapEntry.22289_from = private unnamed_addr constant [40 x i8] c"Kotlin.SuspendKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22290_to = private unnamed_addr constant [17 x i8] c"kotlin/SuspendKt\00", align 1 +@.TypeMapEntry.22291_from = private unnamed_addr constant [47 x i8] c"Kotlin.System.ProcessKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22292_to = private unnamed_addr constant [24 x i8] c"kotlin/system/ProcessKt\00", align 1 +@.TypeMapEntry.22293_from = private unnamed_addr constant [46 x i8] c"Kotlin.System.TimingKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22294_to = private unnamed_addr constant [23 x i8] c"kotlin/system/TimingKt\00", align 1 +@.TypeMapEntry.22295_from = private unnamed_addr constant [64 x i8] c"Kotlin.Text.CharCategory+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22296_to = private unnamed_addr constant [35 x i8] c"kotlin/text/CharCategory$Companion\00", align 1 +@.TypeMapEntry.22297_from = private unnamed_addr constant [48 x i8] c"Kotlin.Text.CharCategory, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22298_to = private unnamed_addr constant [25 x i8] c"kotlin/text/CharCategory\00", align 1 +@.TypeMapEntry.22299_from = private unnamed_addr constant [70 x i8] c"Kotlin.Text.CharDirectionality+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22300_to = private unnamed_addr constant [41 x i8] c"kotlin/text/CharDirectionality$Companion\00", align 1 +@.TypeMapEntry.22301_from = private unnamed_addr constant [54 x i8] c"Kotlin.Text.CharDirectionality, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22302_to = private unnamed_addr constant [31 x i8] c"kotlin/text/CharDirectionality\00", align 1 +@.TypeMapEntry.22303_from = private unnamed_addr constant [43 x i8] c"Kotlin.Text.CharsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22304_to = private unnamed_addr constant [20 x i8] c"kotlin/text/CharsKt\00", align 1 +@.TypeMapEntry.22305_from = private unnamed_addr constant [44 x i8] c"Kotlin.Text.Charsets, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22306_to = private unnamed_addr constant [21 x i8] c"kotlin/text/Charsets\00", align 1 +@.TypeMapEntry.22307_from = private unnamed_addr constant [46 x i8] c"Kotlin.Text.CharsetsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22308_to = private unnamed_addr constant [23 x i8] c"kotlin/text/CharsetsKt\00", align 1 +@.TypeMapEntry.22309_from = private unnamed_addr constant [51 x i8] c"Kotlin.Text.HexExtensionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22310_to = private unnamed_addr constant [28 x i8] c"kotlin/text/HexExtensionsKt\00", align 1 +@.TypeMapEntry.22311_from = private unnamed_addr constant [53 x i8] c"Kotlin.Text.HexFormat+Builder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22312_to = private unnamed_addr constant [30 x i8] c"kotlin/text/HexFormat$Builder\00", align 1 +@.TypeMapEntry.22313_from = private unnamed_addr constant [68 x i8] c"Kotlin.Text.HexFormat+BytesHexFormat+Builder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22314_to = private unnamed_addr constant [45 x i8] c"kotlin/text/HexFormat$BytesHexFormat$Builder\00", align 1 +@.TypeMapEntry.22315_from = private unnamed_addr constant [60 x i8] c"Kotlin.Text.HexFormat+BytesHexFormat, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22316_to = private unnamed_addr constant [37 x i8] c"kotlin/text/HexFormat$BytesHexFormat\00", align 1 +@.TypeMapEntry.22317_from = private unnamed_addr constant [61 x i8] c"Kotlin.Text.HexFormat+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22318_to = private unnamed_addr constant [32 x i8] c"kotlin/text/HexFormat$Companion\00", align 1 +@.TypeMapEntry.22319_from = private unnamed_addr constant [69 x i8] c"Kotlin.Text.HexFormat+NumberHexFormat+Builder, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22320_to = private unnamed_addr constant [46 x i8] c"kotlin/text/HexFormat$NumberHexFormat$Builder\00", align 1 +@.TypeMapEntry.22321_from = private unnamed_addr constant [61 x i8] c"Kotlin.Text.HexFormat+NumberHexFormat, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22322_to = private unnamed_addr constant [38 x i8] c"kotlin/text/HexFormat$NumberHexFormat\00", align 1 +@.TypeMapEntry.22323_from = private unnamed_addr constant [45 x i8] c"Kotlin.Text.HexFormat, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22324_to = private unnamed_addr constant [22 x i8] c"kotlin/text/HexFormat\00", align 1 +@.TypeMapEntry.22325_from = private unnamed_addr constant [47 x i8] c"Kotlin.Text.HexFormatKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22326_to = private unnamed_addr constant [24 x i8] c"kotlin/text/HexFormatKt\00", align 1 +@.TypeMapEntry.22327_from = private unnamed_addr constant [57 x i8] c"Kotlin.Text.IMatchGroupCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22328_to = private unnamed_addr constant [33 x i8] c"kotlin/text/MatchGroupCollection\00", align 1 +@.TypeMapEntry.22329_from = private unnamed_addr constant [64 x i8] c"Kotlin.Text.IMatchGroupCollectionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22330_from = private unnamed_addr constant [62 x i8] c"Kotlin.Text.IMatchNamedGroupCollection, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22331_to = private unnamed_addr constant [38 x i8] c"kotlin/text/MatchNamedGroupCollection\00", align 1 +@.TypeMapEntry.22332_from = private unnamed_addr constant [69 x i8] c"Kotlin.Text.IMatchNamedGroupCollectionInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22333_from = private unnamed_addr constant [48 x i8] c"Kotlin.Text.IMatchResult, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22334_to = private unnamed_addr constant [24 x i8] c"kotlin/text/MatchResult\00", align 1 +@.TypeMapEntry.22335_from = private unnamed_addr constant [55 x i8] c"Kotlin.Text.IMatchResultInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22336_from = private unnamed_addr constant [62 x i8] c"Kotlin.Text.Jdk8.RegexExtensionsJDK8Kt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22337_to = private unnamed_addr constant [39 x i8] c"kotlin/text/jdk8/RegexExtensionsJDK8Kt\00", align 1 +@.TypeMapEntry.22338_from = private unnamed_addr constant [46 x i8] c"Kotlin.Text.MatchGroup, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22339_to = private unnamed_addr constant [23 x i8] c"kotlin/text/MatchGroup\00", align 1 +@.TypeMapEntry.22340_from = private unnamed_addr constant [59 x i8] c"Kotlin.Text.MatchResultDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22341_to = private unnamed_addr constant [37 x i8] c"kotlin/text/MatchResult$DefaultImpls\00", align 1 +@.TypeMapEntry.22342_from = private unnamed_addr constant [59 x i8] c"Kotlin.Text.MatchResultDestructured, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22343_to = private unnamed_addr constant [37 x i8] c"kotlin/text/MatchResult$Destructured\00", align 1 +@.TypeMapEntry.22344_from = private unnamed_addr constant [57 x i8] c"Kotlin.Text.Regex+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22345_to = private unnamed_addr constant [28 x i8] c"kotlin/text/Regex$Companion\00", align 1 +@.TypeMapEntry.22346_from = private unnamed_addr constant [41 x i8] c"Kotlin.Text.Regex, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22347_to = private unnamed_addr constant [18 x i8] c"kotlin/text/Regex\00", align 1 +@.TypeMapEntry.22348_from = private unnamed_addr constant [43 x i8] c"Kotlin.Text.RegexKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22349_to = private unnamed_addr constant [20 x i8] c"kotlin/text/RegexKt\00", align 1 +@.TypeMapEntry.22350_from = private unnamed_addr constant [47 x i8] c"Kotlin.Text.RegexOption, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22351_to = private unnamed_addr constant [24 x i8] c"kotlin/text/RegexOption\00", align 1 +@.TypeMapEntry.22352_from = private unnamed_addr constant [45 x i8] c"Kotlin.Text.StringsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22353_to = private unnamed_addr constant [22 x i8] c"kotlin/text/StringsKt\00", align 1 +@.TypeMapEntry.22354_from = private unnamed_addr constant [49 x i8] c"Kotlin.Text.TypeAliasesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22355_to = private unnamed_addr constant [26 x i8] c"kotlin/text/TypeAliasesKt\00", align 1 +@.TypeMapEntry.22356_from = private unnamed_addr constant [46 x i8] c"Kotlin.Text.Typography, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22357_to = private unnamed_addr constant [23 x i8] c"kotlin/text/Typography\00", align 1 +@.TypeMapEntry.22358_from = private unnamed_addr constant [52 x i8] c"Kotlin.Text.UHexExtensionsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22359_to = private unnamed_addr constant [29 x i8] c"kotlin/text/UHexExtensionsKt\00", align 1 +@.TypeMapEntry.22360_from = private unnamed_addr constant [46 x i8] c"Kotlin.Text.UStringsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22361_to = private unnamed_addr constant [23 x i8] c"kotlin/text/UStringsKt\00", align 1 +@.TypeMapEntry.22362_from = private unnamed_addr constant [65 x i8] c"Kotlin.Text._OneToManyTitlecaseMappingsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22363_to = private unnamed_addr constant [42 x i8] c"kotlin/text/_OneToManyTitlecaseMappingsKt\00", align 1 +@.TypeMapEntry.22364_from = private unnamed_addr constant [39 x i8] c"Kotlin.ThrowsKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22365_to = private unnamed_addr constant [16 x i8] c"kotlin/ThrowsKt\00", align 1 +@.TypeMapEntry.22366_from = private unnamed_addr constant [60 x i8] c"Kotlin.Time.AbstractDoubleTimeSource, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22367_to = private unnamed_addr constant [37 x i8] c"kotlin/time/AbstractDoubleTimeSource\00", align 1 +@.TypeMapEntry.22368_from = private unnamed_addr constant [67 x i8] c"Kotlin.Time.AbstractDoubleTimeSourceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22369_from = private unnamed_addr constant [58 x i8] c"Kotlin.Time.AbstractLongTimeSource, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22370_to = private unnamed_addr constant [35 x i8] c"kotlin/time/AbstractLongTimeSource\00", align 1 +@.TypeMapEntry.22371_from = private unnamed_addr constant [65 x i8] c"Kotlin.Time.AbstractLongTimeSourceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22372_from = private unnamed_addr constant [66 x i8] c"Kotlin.Time.ComparableTimeMarkDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22373_to = private unnamed_addr constant [44 x i8] c"kotlin/time/ComparableTimeMark$DefaultImpls\00", align 1 +@.TypeMapEntry.22374_from = private unnamed_addr constant [60 x i8] c"Kotlin.Time.Duration+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22375_to = private unnamed_addr constant [31 x i8] c"kotlin/time/Duration$Companion\00", align 1 +@.TypeMapEntry.22376_from = private unnamed_addr constant [44 x i8] c"Kotlin.Time.Duration, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22377_to = private unnamed_addr constant [21 x i8] c"kotlin/time/Duration\00", align 1 +@.TypeMapEntry.22378_from = private unnamed_addr constant [49 x i8] c"Kotlin.Time.DurationJvmKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22379_to = private unnamed_addr constant [26 x i8] c"kotlin/time/DurationJvmKt\00", align 1 +@.TypeMapEntry.22380_from = private unnamed_addr constant [46 x i8] c"Kotlin.Time.DurationKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22381_to = private unnamed_addr constant [23 x i8] c"kotlin/time/DurationKt\00", align 1 +@.TypeMapEntry.22382_from = private unnamed_addr constant [48 x i8] c"Kotlin.Time.DurationUnit, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22383_to = private unnamed_addr constant [25 x i8] c"kotlin/time/DurationUnit\00", align 1 +@.TypeMapEntry.22384_from = private unnamed_addr constant [50 x i8] c"Kotlin.Time.DurationUnitKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22385_to = private unnamed_addr constant [27 x i8] c"kotlin/time/DurationUnitKt\00", align 1 +@.TypeMapEntry.22386_from = private unnamed_addr constant [55 x i8] c"Kotlin.Time.IComparableTimeMark, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22387_to = private unnamed_addr constant [31 x i8] c"kotlin/time/ComparableTimeMark\00", align 1 +@.TypeMapEntry.22388_from = private unnamed_addr constant [62 x i8] c"Kotlin.Time.IComparableTimeMarkInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22389_from = private unnamed_addr constant [53 x i8] c"Kotlin.Time.IExperimentalTime, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22390_to = private unnamed_addr constant [29 x i8] c"kotlin/time/ExperimentalTime\00", align 1 +@.TypeMapEntry.22391_from = private unnamed_addr constant [60 x i8] c"Kotlin.Time.IExperimentalTimeInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22392_from = private unnamed_addr constant [45 x i8] c"Kotlin.Time.ITimeMark, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22393_to = private unnamed_addr constant [21 x i8] c"kotlin/time/TimeMark\00", align 1 +@.TypeMapEntry.22394_from = private unnamed_addr constant [52 x i8] c"Kotlin.Time.ITimeMarkInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22395_from = private unnamed_addr constant [47 x i8] c"Kotlin.Time.ITimeSource, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22396_to = private unnamed_addr constant [23 x i8] c"kotlin/time/TimeSource\00", align 1 +@.TypeMapEntry.22397_from = private unnamed_addr constant [54 x i8] c"Kotlin.Time.ITimeSourceInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22398_from = private unnamed_addr constant [66 x i8] c"Kotlin.Time.ITimeSourceWithComparableMarks, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22399_to = private unnamed_addr constant [43 x i8] c"kotlin/time/TimeSource$WithComparableMarks\00", align 1 +@.TypeMapEntry.22400_from = private unnamed_addr constant [73 x i8] c"Kotlin.Time.ITimeSourceWithComparableMarksInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22401_from = private unnamed_addr constant [66 x i8] c"Kotlin.Time.Jdk8.DurationConversionsJDK8Kt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22402_to = private unnamed_addr constant [43 x i8] c"kotlin/time/jdk8/DurationConversionsJDK8Kt\00", align 1 +@.TypeMapEntry.22403_from = private unnamed_addr constant [55 x i8] c"Kotlin.Time.LongSaturatedMathKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22404_to = private unnamed_addr constant [32 x i8] c"kotlin/time/LongSaturatedMathKt\00", align 1 +@.TypeMapEntry.22405_from = private unnamed_addr constant [49 x i8] c"Kotlin.Time.MeasureTimeKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22406_to = private unnamed_addr constant [26 x i8] c"kotlin/time/MeasureTimeKt\00", align 1 +@.TypeMapEntry.22407_from = private unnamed_addr constant [52 x i8] c"Kotlin.Time.MonoTimeSourceKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22408_to = private unnamed_addr constant [29 x i8] c"kotlin/time/MonoTimeSourceKt\00", align 1 +@.TypeMapEntry.22409_from = private unnamed_addr constant [50 x i8] c"Kotlin.Time.TestTimeSource, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22410_to = private unnamed_addr constant [27 x i8] c"kotlin/time/TestTimeSource\00", align 1 +@.TypeMapEntry.22411_from = private unnamed_addr constant [56 x i8] c"Kotlin.Time.TimeMarkDefaultImpls, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22412_to = private unnamed_addr constant [34 x i8] c"kotlin/time/TimeMark$DefaultImpls\00", align 1 +@.TypeMapEntry.22413_from = private unnamed_addr constant [69 x i8] c"Kotlin.Time.TimeSourceMonotonic+ValueTimeMark, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22414_to = private unnamed_addr constant [47 x i8] c"kotlin/time/TimeSource$Monotonic$ValueTimeMark\00", align 1 +@.TypeMapEntry.22415_from = private unnamed_addr constant [55 x i8] c"Kotlin.Time.TimeSourceMonotonic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22416_to = private unnamed_addr constant [33 x i8] c"kotlin/time/TimeSource$Monotonic\00", align 1 +@.TypeMapEntry.22417_from = private unnamed_addr constant [46 x i8] c"Kotlin.Time.TimedValue, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22418_to = private unnamed_addr constant [23 x i8] c"kotlin/time/TimedValue\00", align 1 +@.TypeMapEntry.22419_from = private unnamed_addr constant [37 x i8] c"Kotlin.Triple, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22420_to = private unnamed_addr constant [14 x i8] c"kotlin/Triple\00", align 1 +@.TypeMapEntry.22421_from = private unnamed_addr constant [39 x i8] c"Kotlin.TuplesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22422_to = private unnamed_addr constant [16 x i8] c"kotlin/TuplesKt\00", align 1 +@.TypeMapEntry.22423_from = private unnamed_addr constant [44 x i8] c"Kotlin.TypeAliasesKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22424_to = private unnamed_addr constant [21 x i8] c"kotlin/TypeAliasesKt\00", align 1 +@.TypeMapEntry.22425_from = private unnamed_addr constant [48 x i8] c"Kotlin.TypeCastException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22426_to = private unnamed_addr constant [25 x i8] c"kotlin/TypeCastException\00", align 1 +@.TypeMapEntry.22427_from = private unnamed_addr constant [36 x i8] c"Kotlin.UByte, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22428_to = private unnamed_addr constant [13 x i8] c"kotlin/UByte\00", align 1 +@.TypeMapEntry.22429_from = private unnamed_addr constant [41 x i8] c"Kotlin.UByteArray, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22430_to = private unnamed_addr constant [18 x i8] c"kotlin/UByteArray\00", align 1 +@.TypeMapEntry.22431_from = private unnamed_addr constant [43 x i8] c"Kotlin.UByteArrayKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22432_to = private unnamed_addr constant [20 x i8] c"kotlin/UByteArrayKt\00", align 1 +@.TypeMapEntry.22433_from = private unnamed_addr constant [38 x i8] c"Kotlin.UByteKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22434_to = private unnamed_addr constant [15 x i8] c"kotlin/UByteKt\00", align 1 +@.TypeMapEntry.22435_from = private unnamed_addr constant [35 x i8] c"Kotlin.UInt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22436_to = private unnamed_addr constant [12 x i8] c"kotlin/UInt\00", align 1 +@.TypeMapEntry.22437_from = private unnamed_addr constant [40 x i8] c"Kotlin.UIntArray, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22438_to = private unnamed_addr constant [17 x i8] c"kotlin/UIntArray\00", align 1 +@.TypeMapEntry.22439_from = private unnamed_addr constant [42 x i8] c"Kotlin.UIntArrayKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22440_to = private unnamed_addr constant [19 x i8] c"kotlin/UIntArrayKt\00", align 1 +@.TypeMapEntry.22441_from = private unnamed_addr constant [37 x i8] c"Kotlin.UIntKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22442_to = private unnamed_addr constant [14 x i8] c"kotlin/UIntKt\00", align 1 +@.TypeMapEntry.22443_from = private unnamed_addr constant [36 x i8] c"Kotlin.ULong, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22444_to = private unnamed_addr constant [13 x i8] c"kotlin/ULong\00", align 1 +@.TypeMapEntry.22445_from = private unnamed_addr constant [41 x i8] c"Kotlin.ULongArray, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22446_to = private unnamed_addr constant [18 x i8] c"kotlin/ULongArray\00", align 1 +@.TypeMapEntry.22447_from = private unnamed_addr constant [43 x i8] c"Kotlin.ULongArrayKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22448_to = private unnamed_addr constant [20 x i8] c"kotlin/ULongArrayKt\00", align 1 +@.TypeMapEntry.22449_from = private unnamed_addr constant [38 x i8] c"Kotlin.ULongKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22450_to = private unnamed_addr constant [15 x i8] c"kotlin/ULongKt\00", align 1 +@.TypeMapEntry.22451_from = private unnamed_addr constant [41 x i8] c"Kotlin.UNumbersKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22452_to = private unnamed_addr constant [18 x i8] c"kotlin/UNumbersKt\00", align 1 +@.TypeMapEntry.22453_from = private unnamed_addr constant [37 x i8] c"Kotlin.UShort, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22454_to = private unnamed_addr constant [14 x i8] c"kotlin/UShort\00", align 1 +@.TypeMapEntry.22455_from = private unnamed_addr constant [42 x i8] c"Kotlin.UShortArray, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22456_to = private unnamed_addr constant [19 x i8] c"kotlin/UShortArray\00", align 1 +@.TypeMapEntry.22457_from = private unnamed_addr constant [44 x i8] c"Kotlin.UShortArrayKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22458_to = private unnamed_addr constant [21 x i8] c"kotlin/UShortArrayKt\00", align 1 +@.TypeMapEntry.22459_from = private unnamed_addr constant [39 x i8] c"Kotlin.UShortKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22460_to = private unnamed_addr constant [16 x i8] c"kotlin/UShortKt\00", align 1 +@.TypeMapEntry.22461_from = private unnamed_addr constant [67 x i8] c"Kotlin.UninitializedPropertyAccessException, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22462_to = private unnamed_addr constant [44 x i8] c"kotlin/UninitializedPropertyAccessException\00", align 1 +@.TypeMapEntry.22463_from = private unnamed_addr constant [35 x i8] c"Kotlin.Unit, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22464_to = private unnamed_addr constant [12 x i8] c"kotlin/Unit\00", align 1 +@.TypeMapEntry.22465_from = private unnamed_addr constant [41 x i8] c"Kotlin.UnsignedKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22466_to = private unnamed_addr constant [18 x i8] c"kotlin/UnsignedKt\00", align 1 +@.TypeMapEntry.22467_from = private unnamed_addr constant [56 x i8] c"Kotlin.Uuid.IExperimentalUuidApi, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22468_to = private unnamed_addr constant [32 x i8] c"kotlin/uuid/ExperimentalUuidApi\00", align 1 +@.TypeMapEntry.22469_from = private unnamed_addr constant [63 x i8] c"Kotlin.Uuid.IExperimentalUuidApiInvoker, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22470_from = private unnamed_addr constant [56 x i8] c"Kotlin.Uuid.Uuid+CompanionStatic, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22471_to = private unnamed_addr constant [27 x i8] c"kotlin/uuid/Uuid$Companion\00", align 1 +@.TypeMapEntry.22472_from = private unnamed_addr constant [40 x i8] c"Kotlin.Uuid.Uuid, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22473_to = private unnamed_addr constant [17 x i8] c"kotlin/uuid/Uuid\00", align 1 +@.TypeMapEntry.22474_from = private unnamed_addr constant [42 x i8] c"Kotlin.Uuid.UuidKt, Xamarin.Kotlin.StdLib\00", align 1 +@.TypeMapEntry.22475_to = private unnamed_addr constant [19 x i8] c"kotlin/uuid/UuidKt\00", align 1 +@.TypeMapEntry.22476_from = private unnamed_addr constant [59 x i8] c"KotlinX.AtomicFU.AtomicArray, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22477_to = private unnamed_addr constant [29 x i8] c"kotlinx/atomicfu/AtomicArray\00", align 1 +@.TypeMapEntry.22478_from = private unnamed_addr constant [61 x i8] c"KotlinX.AtomicFU.AtomicBoolean, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22479_to = private unnamed_addr constant [31 x i8] c"kotlinx/atomicfu/AtomicBoolean\00", align 1 +@.TypeMapEntry.22480_from = private unnamed_addr constant [66 x i8] c"KotlinX.AtomicFU.AtomicBooleanArray, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22481_to = private unnamed_addr constant [36 x i8] c"kotlinx/atomicfu/AtomicBooleanArray\00", align 1 +@.TypeMapEntry.22482_from = private unnamed_addr constant [56 x i8] c"KotlinX.AtomicFU.AtomicFU, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22483_to = private unnamed_addr constant [26 x i8] c"kotlinx/atomicfu/AtomicFU\00", align 1 +@.TypeMapEntry.22484_from = private unnamed_addr constant [65 x i8] c"KotlinX.AtomicFU.AtomicFU_commonKt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22485_to = private unnamed_addr constant [35 x i8] c"kotlinx/atomicfu/AtomicFU_commonKt\00", align 1 +@.TypeMapEntry.22486_from = private unnamed_addr constant [57 x i8] c"KotlinX.AtomicFU.AtomicInt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22487_to = private unnamed_addr constant [27 x i8] c"kotlinx/atomicfu/AtomicInt\00", align 1 +@.TypeMapEntry.22488_from = private unnamed_addr constant [62 x i8] c"KotlinX.AtomicFU.AtomicIntArray, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22489_to = private unnamed_addr constant [32 x i8] c"kotlinx/atomicfu/AtomicIntArray\00", align 1 +@.TypeMapEntry.22490_from = private unnamed_addr constant [58 x i8] c"KotlinX.AtomicFU.AtomicLong, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22491_to = private unnamed_addr constant [28 x i8] c"kotlinx/atomicfu/AtomicLong\00", align 1 +@.TypeMapEntry.22492_from = private unnamed_addr constant [63 x i8] c"KotlinX.AtomicFU.AtomicLongArray, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22493_to = private unnamed_addr constant [33 x i8] c"kotlinx/atomicfu/AtomicLongArray\00", align 1 +@.TypeMapEntry.22494_from = private unnamed_addr constant [57 x i8] c"KotlinX.AtomicFU.AtomicRef, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22495_to = private unnamed_addr constant [27 x i8] c"kotlinx/atomicfu/AtomicRef\00", align 1 +@.TypeMapEntry.22496_from = private unnamed_addr constant [68 x i8] c"KotlinX.AtomicFU.Locks.SynchronizedKt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22497_to = private unnamed_addr constant [38 x i8] c"kotlinx/atomicfu/locks/SynchronizedKt\00", align 1 +@.TypeMapEntry.22498_from = private unnamed_addr constant [64 x i8] c"KotlinX.AtomicFU.MangledJsNamesKt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22499_to = private unnamed_addr constant [34 x i8] c"kotlinx/atomicfu/MangledJsNamesKt\00", align 1 +@.TypeMapEntry.22500_from = private unnamed_addr constant [62 x i8] c"KotlinX.AtomicFU.TraceBase+None, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22501_to = private unnamed_addr constant [32 x i8] c"kotlinx/atomicfu/TraceBase$None\00", align 1 +@.TypeMapEntry.22502_from = private unnamed_addr constant [57 x i8] c"KotlinX.AtomicFU.TraceBase, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22503_to = private unnamed_addr constant [27 x i8] c"kotlinx/atomicfu/TraceBase\00", align 1 +@.TypeMapEntry.22504_from = private unnamed_addr constant [59 x i8] c"KotlinX.AtomicFU.TraceFormat, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22505_to = private unnamed_addr constant [29 x i8] c"kotlinx/atomicfu/TraceFormat\00", align 1 +@.TypeMapEntry.22506_from = private unnamed_addr constant [61 x i8] c"KotlinX.AtomicFU.TraceFormatKt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22507_to = private unnamed_addr constant [31 x i8] c"kotlinx/atomicfu/TraceFormatKt\00", align 1 +@.TypeMapEntry.22508_from = private unnamed_addr constant [55 x i8] c"KotlinX.AtomicFU.TraceKt, Xamarin.KotlinX.AtomicFU.Jvm\00", align 1 +@.TypeMapEntry.22509_to = private unnamed_addr constant [25 x i8] c"kotlinx/atomicfu/TraceKt\00", align 1 +@.TypeMapEntry.22510_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.Builtins.BuiltinSerializersKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22511_to = private unnamed_addr constant [52 x i8] c"kotlinx/serialization/builtins/BuiltinSerializersKt\00", align 1 +@.TypeMapEntry.22512_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Builtins.LongAsStringSerializer, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22513_to = private unnamed_addr constant [54 x i8] c"kotlinx/serialization/builtins/LongAsStringSerializer\00", align 1 +@.TypeMapEntry.22514_from = private unnamed_addr constant [83 x i8] c"KotlinX.Serialization.ContextualSerializer, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22515_to = private unnamed_addr constant [43 x i8] c"kotlinx/serialization/ContextualSerializer\00", align 1 +@.TypeMapEntry.22516_from = private unnamed_addr constant [103 x i8] c"KotlinX.Serialization.Descriptors.ClassSerialDescriptorBuilder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22517_to = private unnamed_addr constant [63 x i8] c"kotlinx/serialization/descriptors/ClassSerialDescriptorBuilder\00", align 1 +@.TypeMapEntry.22518_from = private unnamed_addr constant [89 x i8] c"KotlinX.Serialization.Descriptors.ContextAwareKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22519_to = private unnamed_addr constant [49 x i8] c"kotlinx/serialization/descriptors/ContextAwareKt\00", align 1 +@.TypeMapEntry.22520_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.Descriptors.ISerialDescriptor, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22521_to = private unnamed_addr constant [51 x i8] c"kotlinx/serialization/descriptors/SerialDescriptor\00", align 1 +@.TypeMapEntry.22522_from = private unnamed_addr constant [99 x i8] c"KotlinX.Serialization.Descriptors.ISerialDescriptorInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22523_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.PolymorphicKind+OPEN, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22524_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/descriptors/PolymorphicKind$OPEN\00", align 1 +@.TypeMapEntry.22525_from = private unnamed_addr constant [97 x i8] c"KotlinX.Serialization.Descriptors.PolymorphicKind+SEALED, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22526_to = private unnamed_addr constant [57 x i8] c"kotlinx/serialization/descriptors/PolymorphicKind$SEALED\00", align 1 +@.TypeMapEntry.22527_from = private unnamed_addr constant [90 x i8] c"KotlinX.Serialization.Descriptors.PolymorphicKind, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22528_to = private unnamed_addr constant [50 x i8] c"kotlinx/serialization/descriptors/PolymorphicKind\00", align 1 +@.TypeMapEntry.22529_from = private unnamed_addr constant [97 x i8] c"KotlinX.Serialization.Descriptors.PolymorphicKindInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22530_from = private unnamed_addr constant [96 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+BOOLEAN, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22531_to = private unnamed_addr constant [56 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$BOOLEAN\00", align 1 +@.TypeMapEntry.22532_from = private unnamed_addr constant [93 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+BYTE, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22533_to = private unnamed_addr constant [53 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$BYTE\00", align 1 +@.TypeMapEntry.22534_from = private unnamed_addr constant [93 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+CHAR, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22535_to = private unnamed_addr constant [53 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$CHAR\00", align 1 +@.TypeMapEntry.22536_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+DOUBLE, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22537_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$DOUBLE\00", align 1 +@.TypeMapEntry.22538_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+FLOAT, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22539_to = private unnamed_addr constant [54 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$FLOAT\00", align 1 +@.TypeMapEntry.22540_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+INT, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22541_to = private unnamed_addr constant [52 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$INT\00", align 1 +@.TypeMapEntry.22542_from = private unnamed_addr constant [93 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+LONG, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22543_to = private unnamed_addr constant [53 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$LONG\00", align 1 +@.TypeMapEntry.22544_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+SHORT, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22545_to = private unnamed_addr constant [54 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$SHORT\00", align 1 +@.TypeMapEntry.22546_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind+STRING, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22547_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind$STRING\00", align 1 +@.TypeMapEntry.22548_from = private unnamed_addr constant [88 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKind, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22549_to = private unnamed_addr constant [48 x i8] c"kotlinx/serialization/descriptors/PrimitiveKind\00", align 1 +@.TypeMapEntry.22550_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.PrimitiveKindInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22551_from = private unnamed_addr constant [103 x i8] c"KotlinX.Serialization.Descriptors.SerialDescriptorDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22552_to = private unnamed_addr constant [64 x i8] c"kotlinx/serialization/descriptors/SerialDescriptor$DefaultImpls\00", align 1 +@.TypeMapEntry.22553_from = private unnamed_addr constant [93 x i8] c"KotlinX.Serialization.Descriptors.SerialDescriptorKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22554_to = private unnamed_addr constant [53 x i8] c"kotlinx/serialization/descriptors/SerialDescriptorKt\00", align 1 +@.TypeMapEntry.22555_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Descriptors.SerialDescriptorsKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22556_to = private unnamed_addr constant [54 x i8] c"kotlinx/serialization/descriptors/SerialDescriptorsKt\00", align 1 +@.TypeMapEntry.22557_from = private unnamed_addr constant [96 x i8] c"KotlinX.Serialization.Descriptors.SerialKind+CONTEXTUAL, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22558_to = private unnamed_addr constant [56 x i8] c"kotlinx/serialization/descriptors/SerialKind$CONTEXTUAL\00", align 1 +@.TypeMapEntry.22559_from = private unnamed_addr constant [90 x i8] c"KotlinX.Serialization.Descriptors.SerialKind+ENUM, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22560_to = private unnamed_addr constant [50 x i8] c"kotlinx/serialization/descriptors/SerialKind$ENUM\00", align 1 +@.TypeMapEntry.22561_from = private unnamed_addr constant [85 x i8] c"KotlinX.Serialization.Descriptors.SerialKind, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22562_to = private unnamed_addr constant [45 x i8] c"kotlinx/serialization/descriptors/SerialKind\00", align 1 +@.TypeMapEntry.22563_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.Descriptors.SerialKindInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22564_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Descriptors.StructureKind+CLASS, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22565_to = private unnamed_addr constant [54 x i8] c"kotlinx/serialization/descriptors/StructureKind$CLASS\00", align 1 +@.TypeMapEntry.22566_from = private unnamed_addr constant [93 x i8] c"KotlinX.Serialization.Descriptors.StructureKind+LIST, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22567_to = private unnamed_addr constant [53 x i8] c"kotlinx/serialization/descriptors/StructureKind$LIST\00", align 1 +@.TypeMapEntry.22568_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.Descriptors.StructureKind+MAP, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22569_to = private unnamed_addr constant [52 x i8] c"kotlinx/serialization/descriptors/StructureKind$MAP\00", align 1 +@.TypeMapEntry.22570_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.StructureKind+OBJECT, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22571_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/descriptors/StructureKind$OBJECT\00", align 1 +@.TypeMapEntry.22572_from = private unnamed_addr constant [88 x i8] c"KotlinX.Serialization.Descriptors.StructureKind, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22573_to = private unnamed_addr constant [48 x i8] c"kotlinx/serialization/descriptors/StructureKind\00", align 1 +@.TypeMapEntry.22574_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Descriptors.StructureKindInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22575_from = private unnamed_addr constant [80 x i8] c"KotlinX.Serialization.EncodeDefaultMode, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22576_to = private unnamed_addr constant [41 x i8] c"kotlinx/serialization/EncodeDefault$Mode\00", align 1 +@.TypeMapEntry.22577_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.Encoding.AbstractDecoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22578_to = private unnamed_addr constant [47 x i8] c"kotlinx/serialization/encoding/AbstractDecoder\00", align 1 +@.TypeMapEntry.22579_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Encoding.AbstractDecoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22580_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.Encoding.AbstractEncoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22581_to = private unnamed_addr constant [47 x i8] c"kotlinx/serialization/encoding/AbstractEncoder\00", align 1 +@.TypeMapEntry.22582_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Encoding.AbstractEncoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22583_from = private unnamed_addr constant [88 x i8] c"KotlinX.Serialization.Encoding.CompositeDecoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22584_to = private unnamed_addr constant [48 x i8] c"kotlinx/serialization/encoding/CompositeDecoder\00", align 1 +@.TypeMapEntry.22585_from = private unnamed_addr constant [97 x i8] c"KotlinX.Serialization.Encoding.CompositeDecoderCompanion, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22586_to = private unnamed_addr constant [58 x i8] c"kotlinx/serialization/encoding/CompositeDecoder$Companion\00", align 1 +@.TypeMapEntry.22587_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Encoding.CompositeDecoderConsts, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22588_from = private unnamed_addr constant [100 x i8] c"KotlinX.Serialization.Encoding.CompositeDecoderDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22589_to = private unnamed_addr constant [61 x i8] c"kotlinx/serialization/encoding/CompositeDecoder$DefaultImpls\00", align 1 +@.TypeMapEntry.22590_from = private unnamed_addr constant [100 x i8] c"KotlinX.Serialization.Encoding.CompositeEncoderDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22591_to = private unnamed_addr constant [61 x i8] c"kotlinx/serialization/encoding/CompositeEncoder$DefaultImpls\00", align 1 +@.TypeMapEntry.22592_from = private unnamed_addr constant [91 x i8] c"KotlinX.Serialization.Encoding.DecoderDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22593_to = private unnamed_addr constant [52 x i8] c"kotlinx/serialization/encoding/Decoder$DefaultImpls\00", align 1 +@.TypeMapEntry.22594_from = private unnamed_addr constant [82 x i8] c"KotlinX.Serialization.Encoding.DecodingKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22595_to = private unnamed_addr constant [42 x i8] c"kotlinx/serialization/encoding/DecodingKt\00", align 1 +@.TypeMapEntry.22596_from = private unnamed_addr constant [91 x i8] c"KotlinX.Serialization.Encoding.EncoderDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22597_to = private unnamed_addr constant [52 x i8] c"kotlinx/serialization/encoding/Encoder$DefaultImpls\00", align 1 +@.TypeMapEntry.22598_from = private unnamed_addr constant [82 x i8] c"KotlinX.Serialization.Encoding.EncodingKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22599_to = private unnamed_addr constant [42 x i8] c"kotlinx/serialization/encoding/EncodingKt\00", align 1 +@.TypeMapEntry.22600_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.Encoding.IChunkedDecoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22601_to = private unnamed_addr constant [46 x i8] c"kotlinx/serialization/encoding/ChunkedDecoder\00", align 1 +@.TypeMapEntry.22602_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.Encoding.IChunkedDecoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22603_from = private unnamed_addr constant [89 x i8] c"KotlinX.Serialization.Encoding.ICompositeDecoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22604_from = private unnamed_addr constant [96 x i8] c"KotlinX.Serialization.Encoding.ICompositeDecoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22605_from = private unnamed_addr constant [89 x i8] c"KotlinX.Serialization.Encoding.ICompositeEncoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22606_to = private unnamed_addr constant [48 x i8] c"kotlinx/serialization/encoding/CompositeEncoder\00", align 1 +@.TypeMapEntry.22607_from = private unnamed_addr constant [96 x i8] c"KotlinX.Serialization.Encoding.ICompositeEncoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22608_from = private unnamed_addr constant [80 x i8] c"KotlinX.Serialization.Encoding.IDecoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22609_to = private unnamed_addr constant [39 x i8] c"kotlinx/serialization/encoding/Decoder\00", align 1 +@.TypeMapEntry.22610_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.Encoding.IDecoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22611_from = private unnamed_addr constant [80 x i8] c"KotlinX.Serialization.Encoding.IEncoder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22612_to = private unnamed_addr constant [39 x i8] c"kotlinx/serialization/encoding/Encoder\00", align 1 +@.TypeMapEntry.22613_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.Encoding.IEncoderInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22614_from = private unnamed_addr constant [76 x i8] c"KotlinX.Serialization.IBinaryFormat, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22615_to = private unnamed_addr constant [35 x i8] c"kotlinx/serialization/BinaryFormat\00", align 1 +@.TypeMapEntry.22616_from = private unnamed_addr constant [83 x i8] c"KotlinX.Serialization.IBinaryFormatInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22617_from = private unnamed_addr constant [74 x i8] c"KotlinX.Serialization.IContextual, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22618_to = private unnamed_addr constant [33 x i8] c"kotlinx/serialization/Contextual\00", align 1 +@.TypeMapEntry.22619_from = private unnamed_addr constant [81 x i8] c"KotlinX.Serialization.IContextualInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22620_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.IDeserializationStrategy, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22621_to = private unnamed_addr constant [46 x i8] c"kotlinx/serialization/DeserializationStrategy\00", align 1 +@.TypeMapEntry.22622_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.IDeserializationStrategyInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22623_from = private unnamed_addr constant [77 x i8] c"KotlinX.Serialization.IEncodeDefault, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22624_to = private unnamed_addr constant [36 x i8] c"kotlinx/serialization/EncodeDefault\00", align 1 +@.TypeMapEntry.22625_from = private unnamed_addr constant [84 x i8] c"KotlinX.Serialization.IEncodeDefaultInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22626_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.IExperimentalSerializationApi, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22627_to = private unnamed_addr constant [51 x i8] c"kotlinx/serialization/ExperimentalSerializationApi\00", align 1 +@.TypeMapEntry.22628_from = private unnamed_addr constant [99 x i8] c"KotlinX.Serialization.IExperimentalSerializationApiInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22629_from = private unnamed_addr constant [85 x i8] c"KotlinX.Serialization.IInheritableSerialInfo, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22630_to = private unnamed_addr constant [44 x i8] c"kotlinx/serialization/InheritableSerialInfo\00", align 1 +@.TypeMapEntry.22631_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.IInheritableSerialInfoInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22632_from = private unnamed_addr constant [88 x i8] c"KotlinX.Serialization.IInternalSerializationApi, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22633_to = private unnamed_addr constant [47 x i8] c"kotlinx/serialization/InternalSerializationApi\00", align 1 +@.TypeMapEntry.22634_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.IInternalSerializationApiInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22635_from = private unnamed_addr constant [75 x i8] c"KotlinX.Serialization.IKSerializer, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22636_to = private unnamed_addr constant [34 x i8] c"kotlinx/serialization/KSerializer\00", align 1 +@.TypeMapEntry.22637_from = private unnamed_addr constant [82 x i8] c"KotlinX.Serialization.IKSerializerInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22638_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.IKeepGeneratedSerializer, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22639_to = private unnamed_addr constant [46 x i8] c"kotlinx/serialization/KeepGeneratedSerializer\00", align 1 +@.TypeMapEntry.22640_from = private unnamed_addr constant [94 x i8] c"KotlinX.Serialization.IKeepGeneratedSerializerInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22641_from = private unnamed_addr constant [80 x i8] c"KotlinX.Serialization.IMetaSerializable, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22642_to = private unnamed_addr constant [39 x i8] c"kotlinx/serialization/MetaSerializable\00", align 1 +@.TypeMapEntry.22643_from = private unnamed_addr constant [87 x i8] c"KotlinX.Serialization.IMetaSerializableInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22644_from = private unnamed_addr constant [75 x i8] c"KotlinX.Serialization.IPolymorphic, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22645_to = private unnamed_addr constant [34 x i8] c"kotlinx/serialization/Polymorphic\00", align 1 +@.TypeMapEntry.22646_from = private unnamed_addr constant [82 x i8] c"KotlinX.Serialization.IPolymorphicInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22647_from = private unnamed_addr constant [72 x i8] c"KotlinX.Serialization.IRequired, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22648_to = private unnamed_addr constant [31 x i8] c"kotlinx/serialization/Required\00", align 1 +@.TypeMapEntry.22649_from = private unnamed_addr constant [79 x i8] c"KotlinX.Serialization.IRequiredInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22650_from = private unnamed_addr constant [76 x i8] c"KotlinX.Serialization.ISerialFormat, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22651_to = private unnamed_addr constant [35 x i8] c"kotlinx/serialization/SerialFormat\00", align 1 +@.TypeMapEntry.22652_from = private unnamed_addr constant [83 x i8] c"KotlinX.Serialization.ISerialFormatInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22653_from = private unnamed_addr constant [74 x i8] c"KotlinX.Serialization.ISerialInfo, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22654_to = private unnamed_addr constant [33 x i8] c"kotlinx/serialization/SerialInfo\00", align 1 +@.TypeMapEntry.22655_from = private unnamed_addr constant [81 x i8] c"KotlinX.Serialization.ISerialInfoInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22656_from = private unnamed_addr constant [74 x i8] c"KotlinX.Serialization.ISerialName, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22657_to = private unnamed_addr constant [33 x i8] c"kotlinx/serialization/SerialName\00", align 1 +@.TypeMapEntry.22658_from = private unnamed_addr constant [81 x i8] c"KotlinX.Serialization.ISerialNameInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22659_from = private unnamed_addr constant [76 x i8] c"KotlinX.Serialization.ISerializable, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22660_to = private unnamed_addr constant [35 x i8] c"kotlinx/serialization/Serializable\00", align 1 +@.TypeMapEntry.22661_from = private unnamed_addr constant [83 x i8] c"KotlinX.Serialization.ISerializableInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22662_from = private unnamed_addr constant [85 x i8] c"KotlinX.Serialization.ISerializationStrategy, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22663_to = private unnamed_addr constant [44 x i8] c"kotlinx/serialization/SerializationStrategy\00", align 1 +@.TypeMapEntry.22664_from = private unnamed_addr constant [92 x i8] c"KotlinX.Serialization.ISerializationStrategyInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22665_from = private unnamed_addr constant [74 x i8] c"KotlinX.Serialization.ISerializer, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22666_to = private unnamed_addr constant [33 x i8] c"kotlinx/serialization/Serializer\00", align 1 +@.TypeMapEntry.22667_from = private unnamed_addr constant [81 x i8] c"KotlinX.Serialization.ISerializerInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22668_from = private unnamed_addr constant [76 x i8] c"KotlinX.Serialization.IStringFormat, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22669_to = private unnamed_addr constant [35 x i8] c"kotlinx/serialization/StringFormat\00", align 1 +@.TypeMapEntry.22670_from = private unnamed_addr constant [83 x i8] c"KotlinX.Serialization.IStringFormatInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22671_from = private unnamed_addr constant [73 x i8] c"KotlinX.Serialization.ITransient, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22672_to = private unnamed_addr constant [32 x i8] c"kotlinx/serialization/Transient\00", align 1 +@.TypeMapEntry.22673_from = private unnamed_addr constant [80 x i8] c"KotlinX.Serialization.ITransientInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22674_from = private unnamed_addr constant [90 x i8] c"KotlinX.Serialization.IUseContextualSerialization, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22675_to = private unnamed_addr constant [49 x i8] c"kotlinx/serialization/UseContextualSerialization\00", align 1 +@.TypeMapEntry.22676_from = private unnamed_addr constant [97 x i8] c"KotlinX.Serialization.IUseContextualSerializationInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22677_from = private unnamed_addr constant [78 x i8] c"KotlinX.Serialization.IUseSerializers, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22678_to = private unnamed_addr constant [37 x i8] c"kotlinx/serialization/UseSerializers\00", align 1 +@.TypeMapEntry.22679_from = private unnamed_addr constant [85 x i8] c"KotlinX.Serialization.IUseSerializersInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22680_from = private unnamed_addr constant [84 x i8] c"KotlinX.Serialization.MissingFieldException, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22681_to = private unnamed_addr constant [44 x i8] c"kotlinx/serialization/MissingFieldException\00", align 1 +@.TypeMapEntry.22682_from = private unnamed_addr constant [98 x i8] c"KotlinX.Serialization.Modules.ISerializersModuleCollector, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22683_to = private unnamed_addr constant [57 x i8] c"kotlinx/serialization/modules/SerializersModuleCollector\00", align 1 +@.TypeMapEntry.22684_from = private unnamed_addr constant [105 x i8] c"KotlinX.Serialization.Modules.ISerializersModuleCollectorInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22685_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Modules.PolymorphicModuleBuilder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22686_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/modules/PolymorphicModuleBuilder\00", align 1 +@.TypeMapEntry.22687_from = private unnamed_addr constant [97 x i8] c"KotlinX.Serialization.Modules.PolymorphicModuleBuilderKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22688_to = private unnamed_addr constant [57 x i8] c"kotlinx/serialization/modules/PolymorphicModuleBuilderKt\00", align 1 +@.TypeMapEntry.22689_from = private unnamed_addr constant [88 x i8] c"KotlinX.Serialization.Modules.SerializersModule, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22690_to = private unnamed_addr constant [48 x i8] c"kotlinx/serialization/modules/SerializersModule\00", align 1 +@.TypeMapEntry.22691_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Modules.SerializersModuleBuilder, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22692_to = private unnamed_addr constant [55 x i8] c"kotlinx/serialization/modules/SerializersModuleBuilder\00", align 1 +@.TypeMapEntry.22693_from = private unnamed_addr constant [98 x i8] c"KotlinX.Serialization.Modules.SerializersModuleBuildersKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22694_to = private unnamed_addr constant [58 x i8] c"kotlinx/serialization/modules/SerializersModuleBuildersKt\00", align 1 +@.TypeMapEntry.22695_from = private unnamed_addr constant [109 x i8] c"KotlinX.Serialization.Modules.SerializersModuleCollectorDefaultImpls, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22696_to = private unnamed_addr constant [70 x i8] c"kotlinx/serialization/modules/SerializersModuleCollector$DefaultImpls\00", align 1 +@.TypeMapEntry.22697_from = private unnamed_addr constant [95 x i8] c"KotlinX.Serialization.Modules.SerializersModuleInvoker, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22698_from = private unnamed_addr constant [90 x i8] c"KotlinX.Serialization.Modules.SerializersModuleKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22699_to = private unnamed_addr constant [50 x i8] c"kotlinx/serialization/modules/SerializersModuleKt\00", align 1 +@.TypeMapEntry.22700_from = private unnamed_addr constant [86 x i8] c"KotlinX.Serialization.PolymorphicSerializerKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22701_to = private unnamed_addr constant [46 x i8] c"kotlinx/serialization/PolymorphicSerializerKt\00", align 1 +@.TypeMapEntry.22702_from = private unnamed_addr constant [77 x i8] c"KotlinX.Serialization.SerialFormatKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22703_to = private unnamed_addr constant [37 x i8] c"kotlinx/serialization/SerialFormatKt\00", align 1 +@.TypeMapEntry.22704_from = private unnamed_addr constant [85 x i8] c"KotlinX.Serialization.SerializationException, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22705_to = private unnamed_addr constant [45 x i8] c"kotlinx/serialization/SerializationException\00", align 1 +@.TypeMapEntry.22706_from = private unnamed_addr constant [81 x i8] c"KotlinX.Serialization.SerializersCacheKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22707_to = private unnamed_addr constant [41 x i8] c"kotlinx/serialization/SerializersCacheKt\00", align 1 +@.TypeMapEntry.22708_from = private unnamed_addr constant [76 x i8] c"KotlinX.Serialization.SerializersKt, Xamarin.KotlinX.Serialization.Core.Jvm\00", align 1 +@.TypeMapEntry.22709_to = private unnamed_addr constant [36 x i8] c"kotlinx/serialization/SerializersKt\00", align 1 +@.TypeMapEntry.22710_from = private unnamed_addr constant [144 x i8] c"Microsoft.AspNetCore.Components.WebView.Maui.AndroidWebKitWebViewManager+BlazorWebMessageCallback, Microsoft.AspNetCore.Components.WebView.Maui\00", align 1 +@.TypeMapEntry.22711_to = private unnamed_addr constant [75 x i8] c"crc64d693e2d9159537db/AndroidWebKitWebViewManager_BlazorWebMessageCallback\00", align 1 +@.TypeMapEntry.22712_from = private unnamed_addr constant [112 x i8] c"Microsoft.AspNetCore.Components.WebView.Maui.BlazorAndroidWebView, Microsoft.AspNetCore.Components.WebView.Maui\00", align 1 +@.TypeMapEntry.22713_to = private unnamed_addr constant [43 x i8] c"crc64d693e2d9159537db/BlazorAndroidWebView\00", align 1 +@.TypeMapEntry.22714_from = private unnamed_addr constant [113 x i8] c"Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebChromeClient, Microsoft.AspNetCore.Components.WebView.Maui\00", align 1 +@.TypeMapEntry.22715_to = private unnamed_addr constant [44 x i8] c"crc64d693e2d9159537db/BlazorWebChromeClient\00", align 1 +@.TypeMapEntry.22716_from = private unnamed_addr constant [135 x i8] c"Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient+JavaScriptValueCallback, Microsoft.AspNetCore.Components.WebView.Maui\00", align 1 +@.TypeMapEntry.22717_to = private unnamed_addr constant [66 x i8] c"crc64d693e2d9159537db/WebKitWebViewClient_JavaScriptValueCallback\00", align 1 +@.TypeMapEntry.22718_from = private unnamed_addr constant [111 x i8] c"Microsoft.AspNetCore.Components.WebView.Maui.WebKitWebViewClient, Microsoft.AspNetCore.Components.WebView.Maui\00", align 1 +@.TypeMapEntry.22719_to = private unnamed_addr constant [42 x i8] c"crc64d693e2d9159537db/WebKitWebViewClient\00", align 1 +@.TypeMapEntry.22720_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Animations.PlatformTicker+DurationScaleListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22721_to = private unnamed_addr constant [59 x i8] c"crc64a096dc44ad241142/PlatformTicker_DurationScaleListener\00", align 1 +@.TypeMapEntry.22722_from = private unnamed_addr constant [92 x i8] c"Microsoft.Maui.ApplicationModel.ActivityLifecycleContextListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22723_to = private unnamed_addr constant [55 x i8] c"crc64ba438d8f48cf7e75/ActivityLifecycleContextListener\00", align 1 +@.TypeMapEntry.22724_from = private unnamed_addr constant [96 x i8] c"Microsoft.Maui.ApplicationModel.DataTransfer.ClipboardChangeListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22725_to = private unnamed_addr constant [46 x i8] c"crc640a1f4d108c17e3f1/ClipboardChangeListener\00", align 1 +@.TypeMapEntry.22726_from = private unnamed_addr constant [80 x i8] c"Microsoft.Maui.ApplicationModel.IntermediateActivity, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22727_to = private unnamed_addr constant [43 x i8] c"crc64ba438d8f48cf7e75/IntermediateActivity\00", align 1 +@.TypeMapEntry.22728_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22729_to = private unnamed_addr constant [55 x i8] c"crc6468b6408a11370c2f/WebAuthenticatorCallbackActivity\00", align 1 +@.TypeMapEntry.22730_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22731_to = private unnamed_addr constant [59 x i8] c"crc6468b6408a11370c2f/WebAuthenticatorIntermediateActivity\00", align 1 +@.TypeMapEntry.22732_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22733_to = private unnamed_addr constant [35 x i8] c"crc64e1fb321c08285b90/BaseCellView\00", align 1 +@.TypeMapEntry.22734_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22735_to = private unnamed_addr constant [34 x i8] c"crc64e1fb321c08285b90/CellAdapter\00", align 1 +@.TypeMapEntry.22736_from = private unnamed_addr constant [100 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer+RendererHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22737_to = private unnamed_addr constant [50 x i8] c"crc64e1fb321c08285b90/CellRenderer_RendererHolder\00", align 1 +@.TypeMapEntry.22738_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ConditionalFocusLayout, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22739_to = private unnamed_addr constant [45 x i8] c"crc64e1fb321c08285b90/ConditionalFocusLayout\00", align 1 +@.TypeMapEntry.22740_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22741_to = private unnamed_addr constant [40 x i8] c"crc64e1fb321c08285b90/EntryCellEditText\00", align 1 +@.TypeMapEntry.22742_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22743_to = private unnamed_addr constant [36 x i8] c"crc64e1fb321c08285b90/EntryCellView\00", align 1 +@.TypeMapEntry.22744_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22745_to = private unnamed_addr constant [36 x i8] c"crc64e1fb321c08285b90/FrameRenderer\00", align 1 +@.TypeMapEntry.22746_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.GroupedListViewAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22747_to = private unnamed_addr constant [45 x i8] c"crc64e1fb321c08285b90/GroupedListViewAdapter\00", align 1 +@.TypeMapEntry.22748_from = private unnamed_addr constant [88 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22749_to = private unnamed_addr constant [38 x i8] c"crc64e1fb321c08285b90/ListViewAdapter\00", align 1 +@.TypeMapEntry.22750_from = private unnamed_addr constant [99 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+Container, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22751_to = private unnamed_addr constant [49 x i8] c"crc64e1fb321c08285b90/ListViewRenderer_Container\00", align 1 +@.TypeMapEntry.22752_from = private unnamed_addr constant [112 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewScrollDetector, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22753_to = private unnamed_addr constant [62 x i8] c"crc64e1fb321c08285b90/ListViewRenderer_ListViewScrollDetector\00", align 1 +@.TypeMapEntry.22754_from = private unnamed_addr constant [124 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+ListViewSwipeRefreshLayoutListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22755_to = private unnamed_addr constant [74 x i8] c"crc64e1fb321c08285b90/ListViewRenderer_ListViewSwipeRefreshLayoutListener\00", align 1 +@.TypeMapEntry.22756_from = private unnamed_addr constant [132 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer+SwipeRefreshLayoutWithFixedNestedScrolling, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22757_to = private unnamed_addr constant [82 x i8] c"crc64e1fb321c08285b90/ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling\00", align 1 +@.TypeMapEntry.22758_from = private unnamed_addr constant [89 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22759_to = private unnamed_addr constant [39 x i8] c"crc64e1fb321c08285b90/ListViewRenderer\00", align 1 +@.TypeMapEntry.22760_from = private unnamed_addr constant [87 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22761_to = private unnamed_addr constant [37 x i8] c"crc64e1fb321c08285b90/SwitchCellView\00", align 1 +@.TypeMapEntry.22762_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22763_to = private unnamed_addr constant [45 x i8] c"crc64e1fb321c08285b90/TableViewModelRenderer\00", align 1 +@.TypeMapEntry.22764_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22765_to = private unnamed_addr constant [40 x i8] c"crc64e1fb321c08285b90/TableViewRenderer\00", align 1 +@.TypeMapEntry.22766_from = private unnamed_addr constant [102 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer+TextCellView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22767_to = private unnamed_addr constant [52 x i8] c"crc64e1fb321c08285b90/TextCellRenderer_TextCellView\00", align 1 +@.TypeMapEntry.22768_from = private unnamed_addr constant [132 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+LongPressGestureListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22769_to = private unnamed_addr constant [82 x i8] c"crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_LongPressGestureListener\00", align 1 +@.TypeMapEntry.22770_from = private unnamed_addr constant [126 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer+TapGestureListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22771_to = private unnamed_addr constant [76 x i8] c"crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer_TapGestureListener\00", align 1 +@.TypeMapEntry.22772_from = private unnamed_addr constant [107 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer+ViewCellContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22773_to = private unnamed_addr constant [57 x i8] c"crc64e1fb321c08285b90/ViewCellRenderer_ViewCellContainer\00", align 1 +@.TypeMapEntry.22774_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22775_to = private unnamed_addr constant [35 x i8] c"crc64e1fb321c08285b90/ViewRenderer\00", align 1 +@.TypeMapEntry.22776_from = private unnamed_addr constant [87 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22777_to = private unnamed_addr constant [37 x i8] c"crc64e1fb321c08285b90/ViewRenderer_2\00", align 1 +@.TypeMapEntry.22778_from = private unnamed_addr constant [96 x i8] c"Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer`1, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22779_to = private unnamed_addr constant [46 x i8] c"crc64e1fb321c08285b90/VisualElementRenderer_1\00", align 1 +@.TypeMapEntry.22780_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Controls.Handlers.Items.CarouselSpacingItemDecoration, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22781_to = private unnamed_addr constant [52 x i8] c"crc645d80431ce5f73f11/CarouselSpacingItemDecoration\00", align 1 +@.TypeMapEntry.22782_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22783_to = private unnamed_addr constant [44 x i8] c"crc645d80431ce5f73f11/CarouselViewAdapter_2\00", align 1 +@.TypeMapEntry.22784_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Handlers.Items.CarouselViewOnScrollListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22785_to = private unnamed_addr constant [51 x i8] c"crc645d80431ce5f73f11/CarouselViewOnScrollListener\00", align 1 +@.TypeMapEntry.22786_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Controls.Handlers.Items.CenterSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22787_to = private unnamed_addr constant [39 x i8] c"crc645d80431ce5f73f11/CenterSnapHelper\00", align 1 +@.TypeMapEntry.22788_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Controls.Handlers.Items.DataChangeObserver, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22789_to = private unnamed_addr constant [41 x i8] c"crc645d80431ce5f73f11/DataChangeObserver\00", align 1 +@.TypeMapEntry.22790_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Controls.Handlers.Items.EdgeSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22791_to = private unnamed_addr constant [37 x i8] c"crc645d80431ce5f73f11/EdgeSnapHelper\00", align 1 +@.TypeMapEntry.22792_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22793_to = private unnamed_addr constant [39 x i8] c"crc645d80431ce5f73f11/EmptyViewAdapter\00", align 1 +@.TypeMapEntry.22794_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Controls.Handlers.Items.EndSingleSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22795_to = private unnamed_addr constant [42 x i8] c"crc645d80431ce5f73f11/EndSingleSnapHelper\00", align 1 +@.TypeMapEntry.22796_from = private unnamed_addr constant [78 x i8] c"Microsoft.Maui.Controls.Handlers.Items.EndSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22797_to = private unnamed_addr constant [36 x i8] c"crc645d80431ce5f73f11/EndSnapHelper\00", align 1 +@.TypeMapEntry.22798_from = private unnamed_addr constant [89 x i8] c"Microsoft.Maui.Controls.Handlers.Items.GridLayoutSpanSizeLookup, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22799_to = private unnamed_addr constant [47 x i8] c"crc645d80431ce5f73f11/GridLayoutSpanSizeLookup\00", align 1 +@.TypeMapEntry.22800_from = private unnamed_addr constant [92 x i8] c"Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22801_to = private unnamed_addr constant [50 x i8] c"crc645d80431ce5f73f11/GroupableItemsViewAdapter_2\00", align 1 +@.TypeMapEntry.22802_from = private unnamed_addr constant [80 x i8] c"Microsoft.Maui.Controls.Handlers.Items.ItemContentView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22803_to = private unnamed_addr constant [38 x i8] c"crc645d80431ce5f73f11/ItemContentView\00", align 1 +@.TypeMapEntry.22804_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22805_to = private unnamed_addr constant [41 x i8] c"crc645d80431ce5f73f11/ItemsViewAdapter_2\00", align 1 +@.TypeMapEntry.22806_from = private unnamed_addr constant [124 x i8] c"Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView+CarouselViewOnGlobalLayoutListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22807_to = private unnamed_addr constant [82 x i8] c"crc645d80431ce5f73f11/MauiCarouselRecyclerView_CarouselViewOnGlobalLayoutListener\00", align 1 +@.TypeMapEntry.22808_from = private unnamed_addr constant [89 x i8] c"Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22809_to = private unnamed_addr constant [47 x i8] c"crc645d80431ce5f73f11/MauiCarouselRecyclerView\00", align 1 +@.TypeMapEntry.22810_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView`3, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22811_to = private unnamed_addr constant [41 x i8] c"crc645d80431ce5f73f11/MauiRecyclerView_3\00", align 1 +@.TypeMapEntry.22812_from = private unnamed_addr constant [106 x i8] c"Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper+InitialScrollListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22813_to = private unnamed_addr constant [64 x i8] c"crc645d80431ce5f73f11/NongreedySnapHelper_InitialScrollListener\00", align 1 +@.TypeMapEntry.22814_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Controls.Handlers.Items.NongreedySnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22815_to = private unnamed_addr constant [42 x i8] c"crc645d80431ce5f73f11/NongreedySnapHelper\00", align 1 +@.TypeMapEntry.22816_from = private unnamed_addr constant [89 x i8] c"Microsoft.Maui.Controls.Handlers.Items.PositionalSmoothScroller, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22817_to = private unnamed_addr constant [47 x i8] c"crc645d80431ce5f73f11/PositionalSmoothScroller\00", align 1 +@.TypeMapEntry.22818_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22819_to = private unnamed_addr constant [51 x i8] c"crc645d80431ce5f73f11/RecyclerViewScrollListener_2\00", align 1 +@.TypeMapEntry.22820_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22821_to = private unnamed_addr constant [52 x i8] c"crc645d80431ce5f73f11/ReorderableItemsViewAdapter_2\00", align 1 +@.TypeMapEntry.22822_from = private unnamed_addr constant [77 x i8] c"Microsoft.Maui.Controls.Handlers.Items.ScrollHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22823_to = private unnamed_addr constant [35 x i8] c"crc645d80431ce5f73f11/ScrollHelper\00", align 1 +@.TypeMapEntry.22824_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22825_to = private unnamed_addr constant [51 x i8] c"crc645d80431ce5f73f11/SelectableItemsViewAdapter_2\00", align 1 +@.TypeMapEntry.22826_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22827_to = private unnamed_addr constant [43 x i8] c"crc645d80431ce5f73f11/SelectableViewHolder\00", align 1 +@.TypeMapEntry.22828_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22829_to = private unnamed_addr constant [52 x i8] c"crc645d80431ce5f73f11/SimpleItemTouchHelperCallback\00", align 1 +@.TypeMapEntry.22830_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SimpleViewHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22831_to = private unnamed_addr constant [39 x i8] c"crc645d80431ce5f73f11/SimpleViewHolder\00", align 1 +@.TypeMapEntry.22832_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SingleSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22833_to = private unnamed_addr constant [39 x i8] c"crc645d80431ce5f73f11/SingleSnapHelper\00", align 1 +@.TypeMapEntry.22834_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SizedItemContentView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22835_to = private unnamed_addr constant [43 x i8] c"crc645d80431ce5f73f11/SizedItemContentView\00", align 1 +@.TypeMapEntry.22836_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22837_to = private unnamed_addr constant [44 x i8] c"crc645d80431ce5f73f11/SpacingItemDecoration\00", align 1 +@.TypeMapEntry.22838_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.Items.StartSingleSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22839_to = private unnamed_addr constant [44 x i8] c"crc645d80431ce5f73f11/StartSingleSnapHelper\00", align 1 +@.TypeMapEntry.22840_from = private unnamed_addr constant [80 x i8] c"Microsoft.Maui.Controls.Handlers.Items.StartSnapHelper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22841_to = private unnamed_addr constant [38 x i8] c"crc645d80431ce5f73f11/StartSnapHelper\00", align 1 +@.TypeMapEntry.22842_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter`2, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22843_to = private unnamed_addr constant [51 x i8] c"crc645d80431ce5f73f11/StructuredItemsViewAdapter_2\00", align 1 +@.TypeMapEntry.22844_from = private unnamed_addr constant [88 x i8] c"Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22845_to = private unnamed_addr constant [46 x i8] c"crc645d80431ce5f73f11/TemplatedItemViewHolder\00", align 1 +@.TypeMapEntry.22846_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Controls.Handlers.Items.TextViewHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22847_to = private unnamed_addr constant [37 x i8] c"crc645d80431ce5f73f11/TextViewHolder\00", align 1 +@.TypeMapEntry.22848_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Handlers.TabbedPageManager+Listeners, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22849_to = private unnamed_addr constant [50 x i8] c"crc649ff77a65592e7d55/TabbedPageManager_Listeners\00", align 1 +@.TypeMapEntry.22850_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Controls.Handlers.TabbedPageManager+TempView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22851_to = private unnamed_addr constant [49 x i8] c"crc649ff77a65592e7d55/TabbedPageManager_TempView\00", align 1 +@.TypeMapEntry.22852_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22853_to = private unnamed_addr constant [48 x i8] c"crc64338477404e88479c/ColorChangeRevealDrawable\00", align 1 +@.TypeMapEntry.22854_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ContainerView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22855_to = private unnamed_addr constant [36 x i8] c"crc640ec207abc449b2ca/ContainerView\00", align 1 +@.TypeMapEntry.22856_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22857_to = private unnamed_addr constant [40 x i8] c"crc640ec207abc449b2ca/CustomFrameLayout\00", align 1 +@.TypeMapEntry.22858_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.RecyclerViewContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22859_to = private unnamed_addr constant [44 x i8] c"crc640ec207abc449b2ca/RecyclerViewContainer\00", align 1 +@.TypeMapEntry.22860_from = private unnamed_addr constant [92 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ScrollLayoutManager, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22861_to = private unnamed_addr constant [42 x i8] c"crc640ec207abc449b2ca/ScrollLayoutManager\00", align 1 +@.TypeMapEntry.22862_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22863_to = private unnamed_addr constant [43 x i8] c"crc640ec207abc449b2ca/ShellContentFragment\00", align 1 +@.TypeMapEntry.22864_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutLayout, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22865_to = private unnamed_addr constant [40 x i8] c"crc640ec207abc449b2ca/ShellFlyoutLayout\00", align 1 +@.TypeMapEntry.22866_from = private unnamed_addr constant [117 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ElementViewHolder, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22867_to = private unnamed_addr constant [67 x i8] c"crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ElementViewHolder\00", align 1 +@.TypeMapEntry.22868_from = private unnamed_addr constant [117 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter+ShellLinearLayout, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22869_to = private unnamed_addr constant [67 x i8] c"crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter_ShellLinearLayout\00", align 1 +@.TypeMapEntry.22870_from = private unnamed_addr constant [99 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22871_to = private unnamed_addr constant [49 x i8] c"crc640ec207abc449b2ca/ShellFlyoutRecyclerAdapter\00", align 1 +@.TypeMapEntry.22872_from = private unnamed_addr constant [92 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22873_to = private unnamed_addr constant [42 x i8] c"crc640ec207abc449b2ca/ShellFlyoutRenderer\00", align 1 +@.TypeMapEntry.22874_from = private unnamed_addr constant [124 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer+HeaderContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22875_to = private unnamed_addr constant [74 x i8] c"crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer_HeaderContainer\00", align 1 +@.TypeMapEntry.22876_from = private unnamed_addr constant [108 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22877_to = private unnamed_addr constant [58 x i8] c"crc640ec207abc449b2ca/ShellFlyoutTemplatedContentRenderer\00", align 1 +@.TypeMapEntry.22878_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22879_to = private unnamed_addr constant [45 x i8] c"crc640ec207abc449b2ca/ShellFragmentContainer\00", align 1 +@.TypeMapEntry.22880_from = private unnamed_addr constant [98 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellFragmentStateAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22881_to = private unnamed_addr constant [48 x i8] c"crc640ec207abc449b2ca/ShellFragmentStateAdapter\00", align 1 +@.TypeMapEntry.22882_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22883_to = private unnamed_addr constant [40 x i8] c"crc640ec207abc449b2ca/ShellItemRenderer\00", align 1 +@.TypeMapEntry.22884_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22885_to = private unnamed_addr constant [44 x i8] c"crc640ec207abc449b2ca/ShellItemRendererBase\00", align 1 +@.TypeMapEntry.22886_from = private unnamed_addr constant [91 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellPageContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22887_to = private unnamed_addr constant [41 x i8] c"crc640ec207abc449b2ca/ShellPageContainer\00", align 1 +@.TypeMapEntry.22888_from = private unnamed_addr constant [108 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView+ClipDrawableWrapper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22889_to = private unnamed_addr constant [58 x i8] c"crc640ec207abc449b2ca/ShellSearchView_ClipDrawableWrapper\00", align 1 +@.TypeMapEntry.22890_from = private unnamed_addr constant [88 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22891_to = private unnamed_addr constant [38 x i8] c"crc640ec207abc449b2ca/ShellSearchView\00", align 1 +@.TypeMapEntry.22892_from = private unnamed_addr constant [108 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+CustomFilter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22893_to = private unnamed_addr constant [58 x i8] c"crc640ec207abc449b2ca/ShellSearchViewAdapter_CustomFilter\00", align 1 +@.TypeMapEntry.22894_from = private unnamed_addr constant [109 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter+ObjectWrapper, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22895_to = private unnamed_addr constant [59 x i8] c"crc640ec207abc449b2ca/ShellSearchViewAdapter_ObjectWrapper\00", align 1 +@.TypeMapEntry.22896_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22897_to = private unnamed_addr constant [45 x i8] c"crc640ec207abc449b2ca/ShellSearchViewAdapter\00", align 1 +@.TypeMapEntry.22898_from = private unnamed_addr constant [114 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer+ViewPagerPageChanged, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22899_to = private unnamed_addr constant [64 x i8] c"crc640ec207abc449b2ca/ShellSectionRenderer_ViewPagerPageChanged\00", align 1 +@.TypeMapEntry.22900_from = private unnamed_addr constant [93 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22901_to = private unnamed_addr constant [43 x i8] c"crc640ec207abc449b2ca/ShellSectionRenderer\00", align 1 +@.TypeMapEntry.22902_from = private unnamed_addr constant [117 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker+FlyoutIconDrawerDrawable, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22903_to = private unnamed_addr constant [67 x i8] c"crc640ec207abc449b2ca/ShellToolbarTracker_FlyoutIconDrawerDrawable\00", align 1 +@.TypeMapEntry.22904_from = private unnamed_addr constant [92 x i8] c"Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22905_to = private unnamed_addr constant [42 x i8] c"crc640ec207abc449b2ca/ShellToolbarTracker\00", align 1 +@.TypeMapEntry.22906_from = private unnamed_addr constant [88 x i8] c"Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22907_to = private unnamed_addr constant [52 x i8] c"crc64338477404e88479c/ControlsAccessibilityDelegate\00", align 1 +@.TypeMapEntry.22908_from = private unnamed_addr constant [105 x i8] c"Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler+CustomLocalStateData, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22909_to = private unnamed_addr constant [69 x i8] c"crc64338477404e88479c/DragAndDropGestureHandler_CustomLocalStateData\00", align 1 +@.TypeMapEntry.22910_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Controls.Platform.DragAndDropGestureHandler, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22911_to = private unnamed_addr constant [48 x i8] c"crc64338477404e88479c/DragAndDropGestureHandler\00", align 1 +@.TypeMapEntry.22912_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Controls.Platform.FragmentContainer, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22913_to = private unnamed_addr constant [40 x i8] c"crc64338477404e88479c/FragmentContainer\00", align 1 +@.TypeMapEntry.22914_from = private unnamed_addr constant [82 x i8] c"Microsoft.Maui.Controls.Platform.GenericAnimatorListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22915_to = private unnamed_addr constant [46 x i8] c"crc64338477404e88479c/GenericAnimatorListener\00", align 1 +@.TypeMapEntry.22916_from = private unnamed_addr constant [86 x i8] c"Microsoft.Maui.Controls.Platform.GenericGlobalLayoutListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22917_to = private unnamed_addr constant [50 x i8] c"crc64338477404e88479c/GenericGlobalLayoutListener\00", align 1 +@.TypeMapEntry.22918_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Controls.Platform.GenericMenuClickListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22919_to = private unnamed_addr constant [47 x i8] c"crc64338477404e88479c/GenericMenuClickListener\00", align 1 +@.TypeMapEntry.22920_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Controls.Platform.GradientStrokeDrawable, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22921_to = private unnamed_addr constant [45 x i8] c"crc64338477404e88479c/GradientStrokeDrawable\00", align 1 +@.TypeMapEntry.22922_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Controls.Platform.InnerGestureListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22923_to = private unnamed_addr constant [43 x i8] c"crc64338477404e88479c/InnerGestureListener\00", align 1 +@.TypeMapEntry.22924_from = private unnamed_addr constant [77 x i8] c"Microsoft.Maui.Controls.Platform.InnerScaleListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22925_to = private unnamed_addr constant [41 x i8] c"crc64338477404e88479c/InnerScaleListener\00", align 1 +@.TypeMapEntry.22926_from = private unnamed_addr constant [72 x i8] c"Microsoft.Maui.Controls.Platform.MauiViewPager, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22927_to = private unnamed_addr constant [36 x i8] c"crc64338477404e88479c/MauiViewPager\00", align 1 +@.TypeMapEntry.22928_from = private unnamed_addr constant [126 x i8] c"Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog+CallBack, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22929_to = private unnamed_addr constant [90 x i8] c"crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog_CallBack\00", align 1 +@.TypeMapEntry.22930_from = private unnamed_addr constant [117 x i8] c"Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment+CustomComponentDialog, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22931_to = private unnamed_addr constant [81 x i8] c"crc64338477404e88479c/ModalNavigationManager_ModalFragment_CustomComponentDialog\00", align 1 +@.TypeMapEntry.22932_from = private unnamed_addr constant [95 x i8] c"Microsoft.Maui.Controls.Platform.ModalNavigationManager+ModalFragment, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22933_to = private unnamed_addr constant [59 x i8] c"crc64338477404e88479c/ModalNavigationManager_ModalFragment\00", align 1 +@.TypeMapEntry.22934_from = private unnamed_addr constant [90 x i8] c"Microsoft.Maui.Controls.Platform.MultiPageFragmentStateAdapter`1, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22935_to = private unnamed_addr constant [54 x i8] c"crc64338477404e88479c/MultiPageFragmentStateAdapter_1\00", align 1 +@.TypeMapEntry.22936_from = private unnamed_addr constant [80 x i8] c"Microsoft.Maui.Controls.Platform.PointerGestureHandler, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22937_to = private unnamed_addr constant [44 x i8] c"crc64338477404e88479c/PointerGestureHandler\00", align 1 +@.TypeMapEntry.22938_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Controls.Platform.TapAndPanGestureDetector, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22939_to = private unnamed_addr constant [47 x i8] c"crc64338477404e88479c/TapAndPanGestureDetector\00", align 1 +@.TypeMapEntry.22940_from = private unnamed_addr constant [102 x i8] c"Microsoft.Maui.Controls.Platform.ToolbarExtensions+ToolbarTitleIconImageView, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22941_to = private unnamed_addr constant [66 x i8] c"crc64338477404e88479c/ToolbarExtensions_ToolbarTitleIconImageView\00", align 1 +@.TypeMapEntry.22942_from = private unnamed_addr constant [82 x i8] c"Microsoft.Maui.Controls.TapWindowTracker+GestureListener, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22943_to = private unnamed_addr constant [55 x i8] c"crc64f728827fec74e9c3/TapWindowTracker_GestureListener\00", align 1 +@.TypeMapEntry.22944_from = private unnamed_addr constant [67 x i8] c"Microsoft.Maui.Controls.Toolbar+Container, Microsoft.Maui.Controls\00", align 1 +@.TypeMapEntry.22945_to = private unnamed_addr constant [40 x i8] c"crc64f728827fec74e9c3/Toolbar_Container\00", align 1 +@.TypeMapEntry.22946_from = private unnamed_addr constant [75 x i8] c"Microsoft.Maui.Devices.BatteryBroadcastReceiver, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22947_to = private unnamed_addr constant [47 x i8] c"crc640a8d9a12ddbf2cf2/BatteryBroadcastReceiver\00", align 1 +@.TypeMapEntry.22948_from = private unnamed_addr constant [87 x i8] c"Microsoft.Maui.Devices.DeviceDisplayImplementation+Listener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22949_to = private unnamed_addr constant [59 x i8] c"crc640a8d9a12ddbf2cf2/DeviceDisplayImplementation_Listener\00", align 1 +@.TypeMapEntry.22950_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Devices.EnergySaverBroadcastReceiver, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22951_to = private unnamed_addr constant [51 x i8] c"crc640a8d9a12ddbf2cf2/EnergySaverBroadcastReceiver\00", align 1 +@.TypeMapEntry.22952_from = private unnamed_addr constant [80 x i8] c"Microsoft.Maui.Devices.Sensors.AccelerometerListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22953_to = private unnamed_addr constant [44 x i8] c"crc64f62664462a8937a9/AccelerometerListener\00", align 1 +@.TypeMapEntry.22954_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Devices.Sensors.BarometerListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22955_to = private unnamed_addr constant [40 x i8] c"crc64f62664462a8937a9/BarometerListener\00", align 1 +@.TypeMapEntry.22956_from = private unnamed_addr constant [85 x i8] c"Microsoft.Maui.Devices.Sensors.ContinuousLocationListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22957_to = private unnamed_addr constant [49 x i8] c"crc64f62664462a8937a9/ContinuousLocationListener\00", align 1 +@.TypeMapEntry.22958_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Devices.Sensors.GyroscopeListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22959_to = private unnamed_addr constant [40 x i8] c"crc64f62664462a8937a9/GyroscopeListener\00", align 1 +@.TypeMapEntry.22960_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Devices.Sensors.MagnetometerListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22961_to = private unnamed_addr constant [43 x i8] c"crc64f62664462a8937a9/MagnetometerListener\00", align 1 +@.TypeMapEntry.22962_from = private unnamed_addr constant [84 x i8] c"Microsoft.Maui.Devices.Sensors.OrientationSensorListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22963_to = private unnamed_addr constant [48 x i8] c"crc64f62664462a8937a9/OrientationSensorListener\00", align 1 +@.TypeMapEntry.22964_from = private unnamed_addr constant [73 x i8] c"Microsoft.Maui.Devices.Sensors.SensorListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22965_to = private unnamed_addr constant [37 x i8] c"crc64f62664462a8937a9/SensorListener\00", align 1 +@.TypeMapEntry.22966_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Devices.Sensors.SingleLocationListener, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.22967_to = private unnamed_addr constant [45 x i8] c"crc64f62664462a8937a9/SingleLocationListener\00", align 1 +@.TypeMapEntry.22968_from = private unnamed_addr constant [68 x i8] c"Microsoft.Maui.Graphics.LinearGradientShaderFactory, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22969_to = private unnamed_addr constant [50 x i8] c"crc64b5e713d400f589b7/LinearGradientShaderFactory\00", align 1 +@.TypeMapEntry.22970_from = private unnamed_addr constant [53 x i8] c"Microsoft.Maui.Graphics.MauiDrawable, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22971_to = private unnamed_addr constant [35 x i8] c"crc64b5e713d400f589b7/MauiDrawable\00", align 1 +@.TypeMapEntry.22972_from = private unnamed_addr constant [79 x i8] c"Microsoft.Maui.Graphics.Platform.PlatformGraphicsView, Microsoft.Maui.Graphics\00", align 1 +@.TypeMapEntry.22973_to = private unnamed_addr constant [43 x i8] c"crc643f2b18b2570eaa5a/PlatformGraphicsView\00", align 1 +@.TypeMapEntry.22974_from = private unnamed_addr constant [68 x i8] c"Microsoft.Maui.Graphics.RadialGradientShaderFactory, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22975_to = private unnamed_addr constant [50 x i8] c"crc64b5e713d400f589b7/RadialGradientShaderFactory\00", align 1 +@.TypeMapEntry.22976_from = private unnamed_addr constant [74 x i8] c"Microsoft.Maui.Handlers.ButtonHandler+ButtonClickListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22977_to = private unnamed_addr constant [56 x i8] c"crc64fcf28c0e24b4cc31/ButtonHandler_ButtonClickListener\00", align 1 +@.TypeMapEntry.22978_from = private unnamed_addr constant [74 x i8] c"Microsoft.Maui.Handlers.ButtonHandler+ButtonTouchListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22979_to = private unnamed_addr constant [56 x i8] c"crc64fcf28c0e24b4cc31/ButtonHandler_ButtonTouchListener\00", align 1 +@.TypeMapEntry.22980_from = private unnamed_addr constant [94 x i8] c"Microsoft.Maui.Handlers.HybridWebViewHandler+HybridWebViewJavaScriptInterface, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22981_to = private unnamed_addr constant [76 x i8] c"crc64fcf28c0e24b4cc31/HybridWebViewHandler_HybridWebViewJavaScriptInterface\00", align 1 +@.TypeMapEntry.22982_from = private unnamed_addr constant [77 x i8] c"Microsoft.Maui.Handlers.SearchBarHandler+FocusChangeListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22983_to = private unnamed_addr constant [59 x i8] c"crc64fcf28c0e24b4cc31/SearchBarHandler_FocusChangeListener\00", align 1 +@.TypeMapEntry.22984_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Handlers.SliderHandler+SeekBarChangeListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22985_to = private unnamed_addr constant [58 x i8] c"crc64fcf28c0e24b4cc31/SliderHandler_SeekBarChangeListener\00", align 1 +@.TypeMapEntry.22986_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Handlers.SwitchHandler+CheckedChangeListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22987_to = private unnamed_addr constant [58 x i8] c"crc64fcf28c0e24b4cc31/SwitchHandler_CheckedChangeListener\00", align 1 +@.TypeMapEntry.22988_from = private unnamed_addr constant [72 x i8] c"Microsoft.Maui.Handlers.ToolbarHandler+ProcessBackClick, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22989_to = private unnamed_addr constant [54 x i8] c"crc64fcf28c0e24b4cc31/ToolbarHandler_ProcessBackClick\00", align 1 +@.TypeMapEntry.22990_from = private unnamed_addr constant [57 x i8] c"Microsoft.Maui.HybridJavaScriptInterface, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22991_to = private unnamed_addr constant [45 x i8] c"com/microsoft/maui/HybridJavaScriptInterface\00", align 1 +@.TypeMapEntry.22992_from = private unnamed_addr constant [64 x i8] c"Microsoft.Maui.HybridJavaScriptInterfaceInvoker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22993_from = private unnamed_addr constant [52 x i8] c"Microsoft.Maui.IImageLoaderCallback, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22994_to = private unnamed_addr constant [39 x i8] c"com/microsoft/maui/ImageLoaderCallback\00", align 1 +@.TypeMapEntry.22995_from = private unnamed_addr constant [59 x i8] c"Microsoft.Maui.IImageLoaderCallbackInvoker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22996_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.IPlatformShadowDrawable, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22997_to = private unnamed_addr constant [42 x i8] c"com/microsoft/maui/PlatformShadowDrawable\00", align 1 +@.TypeMapEntry.22998_from = private unnamed_addr constant [62 x i8] c"Microsoft.Maui.IPlatformShadowDrawableInvoker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.22999_from = private unnamed_addr constant [51 x i8] c"Microsoft.Maui.ImageLoaderCallback, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23000_to = private unnamed_addr constant [42 x i8] c"crc6488302ad6e9e4df1a/ImageLoaderCallback\00", align 1 +@.TypeMapEntry.23001_from = private unnamed_addr constant [57 x i8] c"Microsoft.Maui.ImageLoaderCallbackBase`1, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23002_to = private unnamed_addr constant [48 x i8] c"crc6488302ad6e9e4df1a/ImageLoaderCallbackBase_1\00", align 1 +@.TypeMapEntry.23003_from = private unnamed_addr constant [57 x i8] c"Microsoft.Maui.ImageLoaderResultCallback, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23004_to = private unnamed_addr constant [48 x i8] c"crc6488302ad6e9e4df1a/ImageLoaderResultCallback\00", align 1 +@.TypeMapEntry.23005_from = private unnamed_addr constant [53 x i8] c"Microsoft.Maui.MauiAppCompatActivity, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23006_to = private unnamed_addr constant [44 x i8] c"crc6488302ad6e9e4df1a/MauiAppCompatActivity\00", align 1 +@.TypeMapEntry.23007_from = private unnamed_addr constant [74 x i8] c"Microsoft.Maui.MauiApplication+ActivityLifecycleCallbacks, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23008_to = private unnamed_addr constant [65 x i8] c"crc6488302ad6e9e4df1a/MauiApplication_ActivityLifecycleCallbacks\00", align 1 +@.TypeMapEntry.23009_from = private unnamed_addr constant [47 x i8] c"Microsoft.Maui.MauiApplication, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23010_to = private unnamed_addr constant [38 x i8] c"crc6488302ad6e9e4df1a/MauiApplication\00", align 1 +@.TypeMapEntry.23011_from = private unnamed_addr constant [45 x i8] c"Microsoft.Maui.MauiViewGroup, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23012_to = private unnamed_addr constant [33 x i8] c"com/microsoft/maui/MauiViewGroup\00", align 1 +@.TypeMapEntry.23013_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Media.TextToSpeechInternalImplementation, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.23014_to = private unnamed_addr constant [57 x i8] c"crc6493855b22b6fa0721/TextToSpeechInternalImplementation\00", align 1 +@.TypeMapEntry.23015_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Networking.ConnectivityBroadcastReceiver, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.23016_to = private unnamed_addr constant [52 x i8] c"crc64e53d2f592022988e/ConnectivityBroadcastReceiver\00", align 1 +@.TypeMapEntry.23017_from = private unnamed_addr constant [106 x i8] c"Microsoft.Maui.Networking.ConnectivityImplementation+EssentialsNetworkCallback, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.23018_to = private unnamed_addr constant [75 x i8] c"crc64e53d2f592022988e/ConnectivityImplementation_EssentialsNetworkCallback\00", align 1 +@.TypeMapEntry.23019_from = private unnamed_addr constant [75 x i8] c"Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23020_to = private unnamed_addr constant [57 x i8] c"crc6452ffdc5b34af3a0f/AccessibilityDelegateCompatWrapper\00", align 1 +@.TypeMapEntry.23021_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.BorderDrawable, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23022_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/BorderDrawable\00", align 1 +@.TypeMapEntry.23023_from = private unnamed_addr constant [54 x i8] c"Microsoft.Maui.Platform.ContainerView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23024_to = private unnamed_addr constant [36 x i8] c"crc6452ffdc5b34af3a0f/ContainerView\00", align 1 +@.TypeMapEntry.23025_from = private unnamed_addr constant [57 x i8] c"Microsoft.Maui.Platform.ContentViewGroup, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23026_to = private unnamed_addr constant [39 x i8] c"crc6452ffdc5b34af3a0f/ContentViewGroup\00", align 1 +@.TypeMapEntry.23027_from = private unnamed_addr constant [76 x i8] c"Microsoft.Maui.Platform.FragmentManagerExtensions+CallBacks, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23028_to = private unnamed_addr constant [58 x i8] c"crc6452ffdc5b34af3a0f/FragmentManagerExtensions_CallBacks\00", align 1 +@.TypeMapEntry.23029_from = private unnamed_addr constant [56 x i8] c"Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23030_to = private unnamed_addr constant [38 x i8] c"crc6452ffdc5b34af3a0f/LayoutViewGroup\00", align 1 +@.TypeMapEntry.23031_from = private unnamed_addr constant [67 x i8] c"Microsoft.Maui.Platform.LocalizedDigitsKeyListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23032_to = private unnamed_addr constant [49 x i8] c"crc6452ffdc5b34af3a0f/LocalizedDigitsKeyListener\00", align 1 +@.TypeMapEntry.23033_from = private unnamed_addr constant [72 x i8] c"Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23034_to = private unnamed_addr constant [54 x i8] c"crc6452ffdc5b34af3a0f/MauiAccessibilityDelegateCompat\00", align 1 +@.TypeMapEntry.23035_from = private unnamed_addr constant [62 x i8] c"Microsoft.Maui.Platform.MauiAppCompatEditText, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23036_to = private unnamed_addr constant [44 x i8] c"crc6452ffdc5b34af3a0f/MauiAppCompatEditText\00", align 1 +@.TypeMapEntry.23037_from = private unnamed_addr constant [52 x i8] c"Microsoft.Maui.Platform.MauiBoxView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23038_to = private unnamed_addr constant [34 x i8] c"crc6452ffdc5b34af3a0f/MauiBoxView\00", align 1 +@.TypeMapEntry.23039_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.MauiDatePicker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23040_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/MauiDatePicker\00", align 1 +@.TypeMapEntry.23041_from = private unnamed_addr constant [65 x i8] c"Microsoft.Maui.Platform.MauiHorizontalScrollView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23042_to = private unnamed_addr constant [47 x i8] c"crc6452ffdc5b34af3a0f/MauiHorizontalScrollView\00", align 1 +@.TypeMapEntry.23043_from = private unnamed_addr constant [58 x i8] c"Microsoft.Maui.Platform.MauiHybridWebView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23044_to = private unnamed_addr constant [40 x i8] c"crc6452ffdc5b34af3a0f/MauiHybridWebView\00", align 1 +@.TypeMapEntry.23045_from = private unnamed_addr constant [64 x i8] c"Microsoft.Maui.Platform.MauiHybridWebViewClient, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23046_to = private unnamed_addr constant [46 x i8] c"crc6452ffdc5b34af3a0f/MauiHybridWebViewClient\00", align 1 +@.TypeMapEntry.23047_from = private unnamed_addr constant [58 x i8] c"Microsoft.Maui.Platform.MauiLayerDrawable, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23048_to = private unnamed_addr constant [40 x i8] c"crc6452ffdc5b34af3a0f/MauiLayerDrawable\00", align 1 +@.TypeMapEntry.23049_from = private unnamed_addr constant [81 x i8] c"Microsoft.Maui.Platform.MauiMaterialButton+MauiResizableDrawable, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23050_to = private unnamed_addr constant [63 x i8] c"crc6452ffdc5b34af3a0f/MauiMaterialButton_MauiResizableDrawable\00", align 1 +@.TypeMapEntry.23051_from = private unnamed_addr constant [59 x i8] c"Microsoft.Maui.Platform.MauiMaterialButton, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23052_to = private unnamed_addr constant [41 x i8] c"crc6452ffdc5b34af3a0f/MauiMaterialButton\00", align 1 +@.TypeMapEntry.23053_from = private unnamed_addr constant [60 x i8] c"Microsoft.Maui.Platform.MauiNavHostFragment, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23054_to = private unnamed_addr constant [44 x i8] c"microsoft/maui/platform/MauiNavHostFragment\00", align 1 +@.TypeMapEntry.23055_from = private unnamed_addr constant [75 x i8] c"Microsoft.Maui.Platform.MauiPageControl+TEditClickListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23056_to = private unnamed_addr constant [57 x i8] c"crc6452ffdc5b34af3a0f/MauiPageControl_TEditClickListener\00", align 1 +@.TypeMapEntry.23057_from = private unnamed_addr constant [56 x i8] c"Microsoft.Maui.Platform.MauiPageControl, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23058_to = private unnamed_addr constant [38 x i8] c"crc6452ffdc5b34af3a0f/MauiPageControl\00", align 1 +@.TypeMapEntry.23059_from = private unnamed_addr constant [51 x i8] c"Microsoft.Maui.Platform.MauiPicker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23060_to = private unnamed_addr constant [33 x i8] c"crc6452ffdc5b34af3a0f/MauiPicker\00", align 1 +@.TypeMapEntry.23061_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.MauiPickerBase, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23062_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/MauiPickerBase\00", align 1 +@.TypeMapEntry.23063_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.MauiScrollView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23064_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/MauiScrollView\00", align 1 +@.TypeMapEntry.23065_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.MauiSearchView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23066_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/MauiSearchView\00", align 1 +@.TypeMapEntry.23067_from = private unnamed_addr constant [54 x i8] c"Microsoft.Maui.Platform.MauiShapeView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23068_to = private unnamed_addr constant [36 x i8] c"crc6452ffdc5b34af3a0f/MauiShapeView\00", align 1 +@.TypeMapEntry.23069_from = private unnamed_addr constant [63 x i8] c"Microsoft.Maui.Platform.MauiShapeableImageView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23070_to = private unnamed_addr constant [45 x i8] c"crc6452ffdc5b34af3a0f/MauiShapeableImageView\00", align 1 +@.TypeMapEntry.23071_from = private unnamed_addr constant [52 x i8] c"Microsoft.Maui.Platform.MauiStepper, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23072_to = private unnamed_addr constant [34 x i8] c"crc6452ffdc5b34af3a0f/MauiStepper\00", align 1 +@.TypeMapEntry.23073_from = private unnamed_addr constant [63 x i8] c"Microsoft.Maui.Platform.MauiSwipeRefreshLayout, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23074_to = private unnamed_addr constant [45 x i8] c"crc6452ffdc5b34af3a0f/MauiSwipeRefreshLayout\00", align 1 +@.TypeMapEntry.23075_from = private unnamed_addr constant [54 x i8] c"Microsoft.Maui.Platform.MauiSwipeView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23076_to = private unnamed_addr constant [36 x i8] c"crc6452ffdc5b34af3a0f/MauiSwipeView\00", align 1 +@.TypeMapEntry.23077_from = private unnamed_addr constant [53 x i8] c"Microsoft.Maui.Platform.MauiTextView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23078_to = private unnamed_addr constant [35 x i8] c"crc6452ffdc5b34af3a0f/MauiTextView\00", align 1 +@.TypeMapEntry.23079_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.MauiTimePicker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23080_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/MauiTimePicker\00", align 1 +@.TypeMapEntry.23081_from = private unnamed_addr constant [60 x i8] c"Microsoft.Maui.Platform.MauiWebChromeClient, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23082_to = private unnamed_addr constant [42 x i8] c"crc6452ffdc5b34af3a0f/MauiWebChromeClient\00", align 1 +@.TypeMapEntry.23083_from = private unnamed_addr constant [52 x i8] c"Microsoft.Maui.Platform.MauiWebView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23084_to = private unnamed_addr constant [34 x i8] c"crc6452ffdc5b34af3a0f/MauiWebView\00", align 1 +@.TypeMapEntry.23085_from = private unnamed_addr constant [58 x i8] c"Microsoft.Maui.Platform.MauiWebViewClient, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23086_to = private unnamed_addr constant [40 x i8] c"crc6452ffdc5b34af3a0f/MauiWebViewClient\00", align 1 +@.TypeMapEntry.23087_from = private unnamed_addr constant [83 x i8] c"Microsoft.Maui.Platform.NavigationRootManager+ElementBasedFragment, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23088_to = private unnamed_addr constant [65 x i8] c"crc6452ffdc5b34af3a0f/NavigationRootManager_ElementBasedFragment\00", align 1 +@.TypeMapEntry.23089_from = private unnamed_addr constant [63 x i8] c"Microsoft.Maui.Platform.NavigationViewFragment, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23090_to = private unnamed_addr constant [45 x i8] c"crc6452ffdc5b34af3a0f/NavigationViewFragment\00", align 1 +@.TypeMapEntry.23091_from = private unnamed_addr constant [66 x i8] c"Microsoft.Maui.Platform.PlatformTouchGraphicsView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23092_to = private unnamed_addr constant [48 x i8] c"crc6452ffdc5b34af3a0f/PlatformTouchGraphicsView\00", align 1 +@.TypeMapEntry.23093_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.ScopedFragment, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23094_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/ScopedFragment\00", align 1 +@.TypeMapEntry.23095_from = private unnamed_addr constant [73 x i8] c"Microsoft.Maui.Platform.StackNavigationManager+Callbacks, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23096_to = private unnamed_addr constant [55 x i8] c"crc6452ffdc5b34af3a0f/StackNavigationManager_Callbacks\00", align 1 +@.TypeMapEntry.23097_from = private unnamed_addr constant [61 x i8] c"Microsoft.Maui.Platform.StepperHandlerHolder, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23098_to = private unnamed_addr constant [43 x i8] c"crc6452ffdc5b34af3a0f/StepperHandlerHolder\00", align 1 +@.TypeMapEntry.23099_from = private unnamed_addr constant [78 x i8] c"Microsoft.Maui.Platform.StepperHandlerManager+StepperListener, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23100_to = private unnamed_addr constant [60 x i8] c"crc6452ffdc5b34af3a0f/StepperHandlerManager_StepperListener\00", align 1 +@.TypeMapEntry.23101_from = private unnamed_addr constant [55 x i8] c"Microsoft.Maui.Platform.SwipeViewPager, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23102_to = private unnamed_addr constant [37 x i8] c"crc6452ffdc5b34af3a0f/SwipeViewPager\00", align 1 +@.TypeMapEntry.23103_from = private unnamed_addr constant [53 x i8] c"Microsoft.Maui.Platform.ViewFragment, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23104_to = private unnamed_addr constant [35 x i8] c"crc6452ffdc5b34af3a0f/ViewFragment\00", align 1 +@.TypeMapEntry.23105_from = private unnamed_addr constant [75 x i8] c"Microsoft.Maui.Platform.WebViewExtensions+JavascriptResult, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23106_to = private unnamed_addr constant [57 x i8] c"crc6452ffdc5b34af3a0f/WebViewExtensions_JavascriptResult\00", align 1 +@.TypeMapEntry.23107_from = private unnamed_addr constant [52 x i8] c"Microsoft.Maui.Platform.WrapperView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23108_to = private unnamed_addr constant [34 x i8] c"crc6452ffdc5b34af3a0f/WrapperView\00", align 1 +@.TypeMapEntry.23109_from = private unnamed_addr constant [57 x i8] c"Microsoft.Maui.PlatformAppCompatTextView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23110_to = private unnamed_addr constant [45 x i8] c"com/microsoft/maui/PlatformAppCompatTextView\00", align 1 +@.TypeMapEntry.23111_from = private unnamed_addr constant [56 x i8] c"Microsoft.Maui.PlatformContentViewGroup, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23112_to = private unnamed_addr constant [44 x i8] c"com/microsoft/maui/PlatformContentViewGroup\00", align 1 +@.TypeMapEntry.23113_from = private unnamed_addr constant [63 x i8] c"Microsoft.Maui.PlatformContentViewGroupInvoker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23114_from = private unnamed_addr constant [50 x i8] c"Microsoft.Maui.PlatformDispatcher, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23115_to = private unnamed_addr constant [38 x i8] c"com/microsoft/maui/PlatformDispatcher\00", align 1 +@.TypeMapEntry.23116_from = private unnamed_addr constant [48 x i8] c"Microsoft.Maui.PlatformFontSpan, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23117_to = private unnamed_addr constant [36 x i8] c"com/microsoft/maui/PlatformFontSpan\00", align 1 +@.TypeMapEntry.23118_from = private unnamed_addr constant [47 x i8] c"Microsoft.Maui.PlatformInterop, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23119_to = private unnamed_addr constant [35 x i8] c"com/microsoft/maui/PlatformInterop\00", align 1 +@.TypeMapEntry.23120_from = private unnamed_addr constant [54 x i8] c"Microsoft.Maui.PlatformLineHeightSpan, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23121_to = private unnamed_addr constant [42 x i8] c"com/microsoft/maui/PlatformLineHeightSpan\00", align 1 +@.TypeMapEntry.23122_from = private unnamed_addr constant [46 x i8] c"Microsoft.Maui.PlatformLogger, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23123_to = private unnamed_addr constant [34 x i8] c"com/microsoft/maui/PlatformLogger\00", align 1 +@.TypeMapEntry.23124_from = private unnamed_addr constant [61 x i8] c"Microsoft.Maui.PlatformMauiAppCompatActivity, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23125_to = private unnamed_addr constant [49 x i8] c"com/microsoft/maui/PlatformMauiAppCompatActivity\00", align 1 +@.TypeMapEntry.23126_from = private unnamed_addr constant [49 x i8] c"Microsoft.Maui.PlatformPaintType, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23127_to = private unnamed_addr constant [37 x i8] c"com/microsoft/maui/PlatformPaintType\00", align 1 +@.TypeMapEntry.23128_from = private unnamed_addr constant [51 x i8] c"Microsoft.Maui.PlatformWrapperView, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23129_to = private unnamed_addr constant [39 x i8] c"com/microsoft/maui/PlatformWrapperView\00", align 1 +@.TypeMapEntry.23130_from = private unnamed_addr constant [58 x i8] c"Microsoft.Maui.PlatformWrapperViewInvoker, Microsoft.Maui\00", align 1 +@.TypeMapEntry.23131_from = private unnamed_addr constant [63 x i8] c"Microsoft.Maui.Storage.FileProvider, Microsoft.Maui.Essentials\00", align 1 +@.TypeMapEntry.23132_to = private unnamed_addr constant [39 x i8] c"microsoft/maui/essentials/fileProvider\00", align 1 +@.TypeMapEntry.23133_from = private unnamed_addr constant [46 x i8] c"Org.Apache.Commons.Logging.ILog, Mono.Android\00", align 1 +@.TypeMapEntry.23134_to = private unnamed_addr constant [31 x i8] c"org/apache/commons/logging/Log\00", align 1 +@.TypeMapEntry.23135_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Commons.Logging.ILogInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23136_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Auth.Params.AuthPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23137_to = private unnamed_addr constant [53 x i8] c"mono/internal/org/apache/http/auth/params/AuthPNames\00", align 1 +@.TypeMapEntry.23138_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Auth.Params.AuthParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23139_to = private unnamed_addr constant [42 x i8] c"org/apache/http/auth/params/AuthParamBean\00", align 1 +@.TypeMapEntry.23140_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Auth.Params.AuthParams, Mono.Android\00", align 1 +@.TypeMapEntry.23141_to = private unnamed_addr constant [39 x i8] c"org/apache/http/auth/params/AuthParams\00", align 1 +@.TypeMapEntry.23142_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Authentication.AUTH, Mono.Android\00", align 1 +@.TypeMapEntry.23143_to = private unnamed_addr constant [26 x i8] c"org/apache/http/auth/AUTH\00", align 1 +@.TypeMapEntry.23144_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Authentication.AuthSchemeRegistry, Mono.Android\00", align 1 +@.TypeMapEntry.23145_to = private unnamed_addr constant [40 x i8] c"org/apache/http/auth/AuthSchemeRegistry\00", align 1 +@.TypeMapEntry.23146_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Authentication.AuthScope, Mono.Android\00", align 1 +@.TypeMapEntry.23147_to = private unnamed_addr constant [31 x i8] c"org/apache/http/auth/AuthScope\00", align 1 +@.TypeMapEntry.23148_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Authentication.AuthState, Mono.Android\00", align 1 +@.TypeMapEntry.23149_to = private unnamed_addr constant [31 x i8] c"org/apache/http/auth/AuthState\00", align 1 +@.TypeMapEntry.23150_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Authentication.AuthenticationException, Mono.Android\00", align 1 +@.TypeMapEntry.23151_to = private unnamed_addr constant [45 x i8] c"org/apache/http/auth/AuthenticationException\00", align 1 +@.TypeMapEntry.23152_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Authentication.BasicUserPrincipal, Mono.Android\00", align 1 +@.TypeMapEntry.23153_to = private unnamed_addr constant [40 x i8] c"org/apache/http/auth/BasicUserPrincipal\00", align 1 +@.TypeMapEntry.23154_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Authentication.IAuthScheme, Mono.Android\00", align 1 +@.TypeMapEntry.23155_to = private unnamed_addr constant [32 x i8] c"org/apache/http/auth/AuthScheme\00", align 1 +@.TypeMapEntry.23156_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Authentication.IAuthSchemeFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23157_to = private unnamed_addr constant [39 x i8] c"org/apache/http/auth/AuthSchemeFactory\00", align 1 +@.TypeMapEntry.23158_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Authentication.IAuthSchemeFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23159_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Authentication.IAuthSchemeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23160_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Authentication.ICredentials, Mono.Android\00", align 1 +@.TypeMapEntry.23161_to = private unnamed_addr constant [33 x i8] c"org/apache/http/auth/Credentials\00", align 1 +@.TypeMapEntry.23162_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Authentication.ICredentialsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23163_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Authentication.InvalidCredentialsException, Mono.Android\00", align 1 +@.TypeMapEntry.23164_to = private unnamed_addr constant [49 x i8] c"org/apache/http/auth/InvalidCredentialsException\00", align 1 +@.TypeMapEntry.23165_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Authentication.MalformedChallengeException, Mono.Android\00", align 1 +@.TypeMapEntry.23166_to = private unnamed_addr constant [49 x i8] c"org/apache/http/auth/MalformedChallengeException\00", align 1 +@.TypeMapEntry.23167_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Authentication.NTCredentials, Mono.Android\00", align 1 +@.TypeMapEntry.23168_to = private unnamed_addr constant [35 x i8] c"org/apache/http/auth/NTCredentials\00", align 1 +@.TypeMapEntry.23169_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Authentication.NTUserPrincipal, Mono.Android\00", align 1 +@.TypeMapEntry.23170_to = private unnamed_addr constant [37 x i8] c"org/apache/http/auth/NTUserPrincipal\00", align 1 +@.TypeMapEntry.23171_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Authentication.UsernamePasswordCredentials, Mono.Android\00", align 1 +@.TypeMapEntry.23172_to = private unnamed_addr constant [49 x i8] c"org/apache/http/auth/UsernamePasswordCredentials\00", align 1 +@.TypeMapEntry.23173_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Client.CircularRedirectException, Mono.Android\00", align 1 +@.TypeMapEntry.23174_to = private unnamed_addr constant [49 x i8] c"org/apache/http/client/CircularRedirectException\00", align 1 +@.TypeMapEntry.23175_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.ClientProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.23176_to = private unnamed_addr constant [47 x i8] c"org/apache/http/client/ClientProtocolException\00", align 1 +@.TypeMapEntry.23177_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Client.Entity.UrlEncodedFormEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23178_to = private unnamed_addr constant [51 x i8] c"org/apache/http/client/entity/UrlEncodedFormEntity\00", align 1 +@.TypeMapEntry.23179_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Client.HttpResponseException, Mono.Android\00", align 1 +@.TypeMapEntry.23180_to = private unnamed_addr constant [45 x i8] c"org/apache/http/client/HttpResponseException\00", align 1 +@.TypeMapEntry.23181_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Client.IAuthenticationHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23182_to = private unnamed_addr constant [45 x i8] c"org/apache/http/client/AuthenticationHandler\00", align 1 +@.TypeMapEntry.23183_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Client.IAuthenticationHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23184_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Client.ICookieStore, Mono.Android\00", align 1 +@.TypeMapEntry.23185_to = private unnamed_addr constant [35 x i8] c"org/apache/http/client/CookieStore\00", align 1 +@.TypeMapEntry.23186_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Client.ICookieStoreInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23187_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Client.ICredentialsProvider, Mono.Android\00", align 1 +@.TypeMapEntry.23188_to = private unnamed_addr constant [43 x i8] c"org/apache/http/client/CredentialsProvider\00", align 1 +@.TypeMapEntry.23189_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Client.ICredentialsProviderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23190_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.Client.IHttpClient, Mono.Android\00", align 1 +@.TypeMapEntry.23191_to = private unnamed_addr constant [34 x i8] c"org/apache/http/client/HttpClient\00", align 1 +@.TypeMapEntry.23192_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Client.IHttpClientInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23193_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Client.IHttpRequestRetryHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23194_to = private unnamed_addr constant [47 x i8] c"org/apache/http/client/HttpRequestRetryHandler\00", align 1 +@.TypeMapEntry.23195_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Client.IHttpRequestRetryHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23196_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.IRedirectHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23197_to = private unnamed_addr constant [39 x i8] c"org/apache/http/client/RedirectHandler\00", align 1 +@.TypeMapEntry.23198_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.IRedirectHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23199_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.IRequestDirector, Mono.Android\00", align 1 +@.TypeMapEntry.23200_to = private unnamed_addr constant [39 x i8] c"org/apache/http/client/RequestDirector\00", align 1 +@.TypeMapEntry.23201_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.IRequestDirectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23202_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.IResponseHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23203_to = private unnamed_addr constant [39 x i8] c"org/apache/http/client/ResponseHandler\00", align 1 +@.TypeMapEntry.23204_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.IResponseHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23205_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Client.IUserTokenHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23206_to = private unnamed_addr constant [40 x i8] c"org/apache/http/client/UserTokenHandler\00", align 1 +@.TypeMapEntry.23207_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Client.IUserTokenHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23208_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Client.Methods.HttpDelete, Mono.Android\00", align 1 +@.TypeMapEntry.23209_to = private unnamed_addr constant [42 x i8] c"org/apache/http/client/methods/HttpDelete\00", align 1 +@.TypeMapEntry.23210_from = private unnamed_addr constant [76 x i8] c"Org.Apache.Http.Client.Methods.HttpEntityEnclosingRequestBase, Mono.Android\00", align 1 +@.TypeMapEntry.23211_to = private unnamed_addr constant [62 x i8] c"org/apache/http/client/methods/HttpEntityEnclosingRequestBase\00", align 1 +@.TypeMapEntry.23212_from = private unnamed_addr constant [83 x i8] c"Org.Apache.Http.Client.Methods.HttpEntityEnclosingRequestBaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23213_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Client.Methods.HttpGet, Mono.Android\00", align 1 +@.TypeMapEntry.23214_to = private unnamed_addr constant [39 x i8] c"org/apache/http/client/methods/HttpGet\00", align 1 +@.TypeMapEntry.23215_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.Methods.HttpHead, Mono.Android\00", align 1 +@.TypeMapEntry.23216_to = private unnamed_addr constant [40 x i8] c"org/apache/http/client/methods/HttpHead\00", align 1 +@.TypeMapEntry.23217_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Client.Methods.HttpOptions, Mono.Android\00", align 1 +@.TypeMapEntry.23218_to = private unnamed_addr constant [43 x i8] c"org/apache/http/client/methods/HttpOptions\00", align 1 +@.TypeMapEntry.23219_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.Methods.HttpPost, Mono.Android\00", align 1 +@.TypeMapEntry.23220_to = private unnamed_addr constant [40 x i8] c"org/apache/http/client/methods/HttpPost\00", align 1 +@.TypeMapEntry.23221_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Client.Methods.HttpPut, Mono.Android\00", align 1 +@.TypeMapEntry.23222_to = private unnamed_addr constant [39 x i8] c"org/apache/http/client/methods/HttpPut\00", align 1 +@.TypeMapEntry.23223_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.Methods.HttpRequestBase, Mono.Android\00", align 1 +@.TypeMapEntry.23224_to = private unnamed_addr constant [47 x i8] c"org/apache/http/client/methods/HttpRequestBase\00", align 1 +@.TypeMapEntry.23225_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Client.Methods.HttpRequestBaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23226_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Client.Methods.HttpTrace, Mono.Android\00", align 1 +@.TypeMapEntry.23227_to = private unnamed_addr constant [41 x i8] c"org/apache/http/client/methods/HttpTrace\00", align 1 +@.TypeMapEntry.23228_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Client.Methods.IAbortableHttpRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23229_to = private unnamed_addr constant [52 x i8] c"org/apache/http/client/methods/AbortableHttpRequest\00", align 1 +@.TypeMapEntry.23230_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Client.Methods.IAbortableHttpRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23231_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.Methods.IHttpUriRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23232_to = private unnamed_addr constant [46 x i8] c"org/apache/http/client/methods/HttpUriRequest\00", align 1 +@.TypeMapEntry.23233_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Client.Methods.IHttpUriRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23234_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Client.NonRepeatableRequestException, Mono.Android\00", align 1 +@.TypeMapEntry.23235_to = private unnamed_addr constant [53 x i8] c"org/apache/http/client/NonRepeatableRequestException\00", align 1 +@.TypeMapEntry.23236_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Client.Params.AuthPolicy, Mono.Android\00", align 1 +@.TypeMapEntry.23237_to = private unnamed_addr constant [41 x i8] c"org/apache/http/client/params/AuthPolicy\00", align 1 +@.TypeMapEntry.23238_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Client.Params.ClientPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23239_to = private unnamed_addr constant [57 x i8] c"mono/internal/org/apache/http/client/params/ClientPNames\00", align 1 +@.TypeMapEntry.23240_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Client.Params.ClientParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23241_to = private unnamed_addr constant [46 x i8] c"org/apache/http/client/params/ClientParamBean\00", align 1 +@.TypeMapEntry.23242_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Client.Params.CookiePolicy, Mono.Android\00", align 1 +@.TypeMapEntry.23243_to = private unnamed_addr constant [43 x i8] c"org/apache/http/client/params/CookiePolicy\00", align 1 +@.TypeMapEntry.23244_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Client.Params.HttpClientParams, Mono.Android\00", align 1 +@.TypeMapEntry.23245_to = private unnamed_addr constant [47 x i8] c"org/apache/http/client/params/HttpClientParams\00", align 1 +@.TypeMapEntry.23246_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Client.Protocol.ClientContext, Mono.Android\00", align 1 +@.TypeMapEntry.23247_to = private unnamed_addr constant [60 x i8] c"mono/internal/org/apache/http/client/protocol/ClientContext\00", align 1 +@.TypeMapEntry.23248_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Client.Protocol.ClientContextConfigurer, Mono.Android\00", align 1 +@.TypeMapEntry.23249_to = private unnamed_addr constant [56 x i8] c"org/apache/http/client/protocol/ClientContextConfigurer\00", align 1 +@.TypeMapEntry.23250_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Client.Protocol.RequestAddCookies, Mono.Android\00", align 1 +@.TypeMapEntry.23251_to = private unnamed_addr constant [50 x i8] c"org/apache/http/client/protocol/RequestAddCookies\00", align 1 +@.TypeMapEntry.23252_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Client.Protocol.RequestDefaultHeaders, Mono.Android\00", align 1 +@.TypeMapEntry.23253_to = private unnamed_addr constant [54 x i8] c"org/apache/http/client/protocol/RequestDefaultHeaders\00", align 1 +@.TypeMapEntry.23254_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Client.Protocol.RequestProxyAuthentication, Mono.Android\00", align 1 +@.TypeMapEntry.23255_to = private unnamed_addr constant [59 x i8] c"org/apache/http/client/protocol/RequestProxyAuthentication\00", align 1 +@.TypeMapEntry.23256_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Client.Protocol.RequestTargetAuthentication, Mono.Android\00", align 1 +@.TypeMapEntry.23257_to = private unnamed_addr constant [60 x i8] c"org/apache/http/client/protocol/RequestTargetAuthentication\00", align 1 +@.TypeMapEntry.23258_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Client.Protocol.ResponseProcessCookies, Mono.Android\00", align 1 +@.TypeMapEntry.23259_to = private unnamed_addr constant [55 x i8] c"org/apache/http/client/protocol/ResponseProcessCookies\00", align 1 +@.TypeMapEntry.23260_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Client.RedirectException, Mono.Android\00", align 1 +@.TypeMapEntry.23261_to = private unnamed_addr constant [41 x i8] c"org/apache/http/client/RedirectException\00", align 1 +@.TypeMapEntry.23262_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Client.Utils.CloneUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23263_to = private unnamed_addr constant [40 x i8] c"org/apache/http/client/utils/CloneUtils\00", align 1 +@.TypeMapEntry.23264_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Client.Utils.URIUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23265_to = private unnamed_addr constant [38 x i8] c"org/apache/http/client/utils/URIUtils\00", align 1 +@.TypeMapEntry.23266_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Client.Utils.URLEncodedUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23267_to = private unnamed_addr constant [45 x i8] c"org/apache/http/client/utils/URLEncodedUtils\00", align 1 +@.TypeMapEntry.23268_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Conn.BasicEofSensorWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.23269_to = private unnamed_addr constant [43 x i8] c"org/apache/http/conn/BasicEofSensorWatcher\00", align 1 +@.TypeMapEntry.23270_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Conn.BasicManagedEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23271_to = private unnamed_addr constant [40 x i8] c"org/apache/http/conn/BasicManagedEntity\00", align 1 +@.TypeMapEntry.23272_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Conn.ConnectTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.23273_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/ConnectTimeoutException\00", align 1 +@.TypeMapEntry.23274_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Conn.ConnectionPoolTimeoutException, Mono.Android\00", align 1 +@.TypeMapEntry.23275_to = private unnamed_addr constant [52 x i8] c"org/apache/http/conn/ConnectionPoolTimeoutException\00", align 1 +@.TypeMapEntry.23276_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Conn.EofSensorInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23277_to = private unnamed_addr constant [42 x i8] c"org/apache/http/conn/EofSensorInputStream\00", align 1 +@.TypeMapEntry.23278_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.HttpHostConnectException, Mono.Android\00", align 1 +@.TypeMapEntry.23279_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/HttpHostConnectException\00", align 1 +@.TypeMapEntry.23280_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.IClientConnectionManager, Mono.Android\00", align 1 +@.TypeMapEntry.23281_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/ClientConnectionManager\00", align 1 +@.TypeMapEntry.23282_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Conn.IClientConnectionManagerFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23283_to = private unnamed_addr constant [52 x i8] c"org/apache/http/conn/ClientConnectionManagerFactory\00", align 1 +@.TypeMapEntry.23284_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Conn.IClientConnectionManagerFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23285_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Conn.IClientConnectionManagerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23286_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.IClientConnectionOperator, Mono.Android\00", align 1 +@.TypeMapEntry.23287_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/ClientConnectionOperator\00", align 1 +@.TypeMapEntry.23288_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.IClientConnectionOperatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23289_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.IClientConnectionRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23290_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/ClientConnectionRequest\00", align 1 +@.TypeMapEntry.23291_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Conn.IClientConnectionRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23292_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Conn.IConnectionKeepAliveStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23293_to = private unnamed_addr constant [49 x i8] c"org/apache/http/conn/ConnectionKeepAliveStrategy\00", align 1 +@.TypeMapEntry.23294_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Conn.IConnectionKeepAliveStrategyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23295_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.IConnectionReleaseTrigger, Mono.Android\00", align 1 +@.TypeMapEntry.23296_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/ConnectionReleaseTrigger\00", align 1 +@.TypeMapEntry.23297_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.IConnectionReleaseTriggerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23298_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Conn.IEofSensorWatcher, Mono.Android\00", align 1 +@.TypeMapEntry.23299_to = private unnamed_addr constant [38 x i8] c"org/apache/http/conn/EofSensorWatcher\00", align 1 +@.TypeMapEntry.23300_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.IEofSensorWatcherInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23301_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.IManagedClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23302_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/ManagedClientConnection\00", align 1 +@.TypeMapEntry.23303_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Conn.IManagedClientConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23304_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.IOperatedClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23305_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/OperatedClientConnection\00", align 1 +@.TypeMapEntry.23306_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.IOperatedClientConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23307_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.MultihomePlainSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23308_to = private unnamed_addr constant [49 x i8] c"org/apache/http/conn/MultihomePlainSocketFactory\00", align 1 +@.TypeMapEntry.23309_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.Params.ConnConnectionPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23310_to = private unnamed_addr constant [63 x i8] c"mono/internal/org/apache/http/conn/params/ConnConnectionPNames\00", align 1 +@.TypeMapEntry.23311_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Conn.Params.ConnConnectionParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23312_to = private unnamed_addr constant [52 x i8] c"org/apache/http/conn/params/ConnConnectionParamBean\00", align 1 +@.TypeMapEntry.23313_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.Params.ConnManagerPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23314_to = private unnamed_addr constant [60 x i8] c"mono/internal/org/apache/http/conn/params/ConnManagerPNames\00", align 1 +@.TypeMapEntry.23315_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.Params.ConnManagerParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23316_to = private unnamed_addr constant [49 x i8] c"org/apache/http/conn/params/ConnManagerParamBean\00", align 1 +@.TypeMapEntry.23317_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Conn.Params.ConnManagerParams, Mono.Android\00", align 1 +@.TypeMapEntry.23318_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/params/ConnManagerParams\00", align 1 +@.TypeMapEntry.23319_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Conn.Params.ConnPerRouteBean, Mono.Android\00", align 1 +@.TypeMapEntry.23320_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/params/ConnPerRouteBean\00", align 1 +@.TypeMapEntry.23321_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Conn.Params.ConnRoutePNames, Mono.Android\00", align 1 +@.TypeMapEntry.23322_to = private unnamed_addr constant [58 x i8] c"mono/internal/org/apache/http/conn/params/ConnRoutePNames\00", align 1 +@.TypeMapEntry.23323_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Params.ConnRouteParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23324_to = private unnamed_addr constant [47 x i8] c"org/apache/http/conn/params/ConnRouteParamBean\00", align 1 +@.TypeMapEntry.23325_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Conn.Params.ConnRouteParams, Mono.Android\00", align 1 +@.TypeMapEntry.23326_to = private unnamed_addr constant [44 x i8] c"org/apache/http/conn/params/ConnRouteParams\00", align 1 +@.TypeMapEntry.23327_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Conn.Params.IConnPerRoute, Mono.Android\00", align 1 +@.TypeMapEntry.23328_to = private unnamed_addr constant [41 x i8] c"org/apache/http/conn/params/ConnPerRoute\00", align 1 +@.TypeMapEntry.23329_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.Params.IConnPerRouteInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23330_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Conn.Routing.BasicRouteDirector, Mono.Android\00", align 1 +@.TypeMapEntry.23331_to = private unnamed_addr constant [48 x i8] c"org/apache/http/conn/routing/BasicRouteDirector\00", align 1 +@.TypeMapEntry.23332_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Conn.Routing.HttpRoute, Mono.Android\00", align 1 +@.TypeMapEntry.23333_to = private unnamed_addr constant [39 x i8] c"org/apache/http/conn/routing/HttpRoute\00", align 1 +@.TypeMapEntry.23334_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Routing.HttpRouteDirector, Mono.Android\00", align 1 +@.TypeMapEntry.23335_to = private unnamed_addr constant [61 x i8] c"mono/internal/org/apache/http/conn/routing/HttpRouteDirector\00", align 1 +@.TypeMapEntry.23336_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Conn.Routing.IHttpRouteDirector, Mono.Android\00", align 1 +@.TypeMapEntry.23337_to = private unnamed_addr constant [47 x i8] c"org/apache/http/conn/routing/HttpRouteDirector\00", align 1 +@.TypeMapEntry.23338_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Conn.Routing.IHttpRouteDirectorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23339_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Routing.IHttpRoutePlanner, Mono.Android\00", align 1 +@.TypeMapEntry.23340_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/routing/HttpRoutePlanner\00", align 1 +@.TypeMapEntry.23341_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.Routing.IHttpRoutePlannerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23342_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Conn.Routing.IRouteInfo, Mono.Android\00", align 1 +@.TypeMapEntry.23343_to = private unnamed_addr constant [39 x i8] c"org/apache/http/conn/routing/RouteInfo\00", align 1 +@.TypeMapEntry.23344_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Routing.IRouteInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23345_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Conn.Routing.RouteInfoLayerType, Mono.Android\00", align 1 +@.TypeMapEntry.23346_to = private unnamed_addr constant [49 x i8] c"org/apache/http/conn/routing/RouteInfo$LayerType\00", align 1 +@.TypeMapEntry.23347_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.Routing.RouteInfoTunnelType, Mono.Android\00", align 1 +@.TypeMapEntry.23348_to = private unnamed_addr constant [50 x i8] c"org/apache/http/conn/routing/RouteInfo$TunnelType\00", align 1 +@.TypeMapEntry.23349_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Conn.Routing.RouteTracker, Mono.Android\00", align 1 +@.TypeMapEntry.23350_to = private unnamed_addr constant [42 x i8] c"org/apache/http/conn/routing/RouteTracker\00", align 1 +@.TypeMapEntry.23351_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Schemes.IHostNameResolver, Mono.Android\00", align 1 +@.TypeMapEntry.23352_to = private unnamed_addr constant [45 x i8] c"org/apache/http/conn/scheme/HostNameResolver\00", align 1 +@.TypeMapEntry.23353_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.Schemes.IHostNameResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23354_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Conn.Schemes.ILayeredSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23355_to = private unnamed_addr constant [49 x i8] c"org/apache/http/conn/scheme/LayeredSocketFactory\00", align 1 +@.TypeMapEntry.23356_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Conn.Schemes.ILayeredSocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23357_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Conn.Schemes.ISocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23358_to = private unnamed_addr constant [42 x i8] c"org/apache/http/conn/scheme/SocketFactory\00", align 1 +@.TypeMapEntry.23359_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Conn.Schemes.ISocketFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23360_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Conn.Schemes.PlainSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23361_to = private unnamed_addr constant [47 x i8] c"org/apache/http/conn/scheme/PlainSocketFactory\00", align 1 +@.TypeMapEntry.23362_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Conn.Schemes.Scheme, Mono.Android\00", align 1 +@.TypeMapEntry.23363_to = private unnamed_addr constant [35 x i8] c"org/apache/http/conn/scheme/Scheme\00", align 1 +@.TypeMapEntry.23364_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Conn.Schemes.SchemeRegistry, Mono.Android\00", align 1 +@.TypeMapEntry.23365_to = private unnamed_addr constant [43 x i8] c"org/apache/http/conn/scheme/SchemeRegistry\00", align 1 +@.TypeMapEntry.23366_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Conn.Ssl.AbstractVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23367_to = private unnamed_addr constant [42 x i8] c"org/apache/http/conn/ssl/AbstractVerifier\00", align 1 +@.TypeMapEntry.23368_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Conn.Ssl.AbstractVerifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23369_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Conn.Ssl.AllowAllHostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23370_to = private unnamed_addr constant [50 x i8] c"org/apache/http/conn/ssl/AllowAllHostnameVerifier\00", align 1 +@.TypeMapEntry.23371_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Conn.Ssl.BrowserCompatHostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23372_to = private unnamed_addr constant [55 x i8] c"org/apache/http/conn/ssl/BrowserCompatHostnameVerifier\00", align 1 +@.TypeMapEntry.23373_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23374_to = private unnamed_addr constant [46 x i8] c"org/apache/http/conn/ssl/X509HostnameVerifier\00", align 1 +@.TypeMapEntry.23375_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Conn.Ssl.IX509HostnameVerifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23376_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Conn.Ssl.SSLSocketFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23377_to = private unnamed_addr constant [42 x i8] c"org/apache/http/conn/ssl/SSLSocketFactory\00", align 1 +@.TypeMapEntry.23378_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Conn.Ssl.StrictHostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23379_to = private unnamed_addr constant [48 x i8] c"org/apache/http/conn/ssl/StrictHostnameVerifier\00", align 1 +@.TypeMapEntry.23380_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Conn.Util.InetAddressUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23381_to = private unnamed_addr constant [43 x i8] c"org/apache/http/conn/util/InetAddressUtils\00", align 1 +@.TypeMapEntry.23382_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.ConnectionClosedException, Mono.Android\00", align 1 +@.TypeMapEntry.23383_to = private unnamed_addr constant [42 x i8] c"org/apache/http/ConnectionClosedException\00", align 1 +@.TypeMapEntry.23384_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Cookie.Params.CookieSpecPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23385_to = private unnamed_addr constant [61 x i8] c"mono/internal/org/apache/http/cookie/params/CookieSpecPNames\00", align 1 +@.TypeMapEntry.23386_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Cookie.Params.CookieSpecParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23387_to = private unnamed_addr constant [50 x i8] c"org/apache/http/cookie/params/CookieSpecParamBean\00", align 1 +@.TypeMapEntry.23388_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Cookies.ClientCookie, Mono.Android\00", align 1 +@.TypeMapEntry.23389_to = private unnamed_addr constant [50 x i8] c"mono/internal/org/apache/http/cookie/ClientCookie\00", align 1 +@.TypeMapEntry.23390_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Cookies.CookieOrigin, Mono.Android\00", align 1 +@.TypeMapEntry.23391_to = private unnamed_addr constant [36 x i8] c"org/apache/http/cookie/CookieOrigin\00", align 1 +@.TypeMapEntry.23392_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Cookies.CookieSpecRegistry, Mono.Android\00", align 1 +@.TypeMapEntry.23393_to = private unnamed_addr constant [42 x i8] c"org/apache/http/cookie/CookieSpecRegistry\00", align 1 +@.TypeMapEntry.23394_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Cookies.IClientCookie, Mono.Android\00", align 1 +@.TypeMapEntry.23395_to = private unnamed_addr constant [36 x i8] c"org/apache/http/cookie/ClientCookie\00", align 1 +@.TypeMapEntry.23396_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Cookies.IClientCookieInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23397_from = private unnamed_addr constant [46 x i8] c"Org.Apache.Http.Cookies.ICookie, Mono.Android\00", align 1 +@.TypeMapEntry.23398_to = private unnamed_addr constant [30 x i8] c"org/apache/http/cookie/Cookie\00", align 1 +@.TypeMapEntry.23399_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Cookies.ICookieAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23400_to = private unnamed_addr constant [46 x i8] c"org/apache/http/cookie/CookieAttributeHandler\00", align 1 +@.TypeMapEntry.23401_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Cookies.ICookieAttributeHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23402_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Cookies.ICookieInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23403_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Cookies.ICookieSpec, Mono.Android\00", align 1 +@.TypeMapEntry.23404_to = private unnamed_addr constant [34 x i8] c"org/apache/http/cookie/CookieSpec\00", align 1 +@.TypeMapEntry.23405_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Cookies.ICookieSpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23406_to = private unnamed_addr constant [41 x i8] c"org/apache/http/cookie/CookieSpecFactory\00", align 1 +@.TypeMapEntry.23407_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Cookies.ICookieSpecFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23408_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Cookies.ICookieSpecInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23409_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.Cookies.ISetCookie, Mono.Android\00", align 1 +@.TypeMapEntry.23410_to = private unnamed_addr constant [33 x i8] c"org/apache/http/cookie/SetCookie\00", align 1 +@.TypeMapEntry.23411_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Cookies.ISetCookie2, Mono.Android\00", align 1 +@.TypeMapEntry.23412_to = private unnamed_addr constant [34 x i8] c"org/apache/http/cookie/SetCookie2\00", align 1 +@.TypeMapEntry.23413_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Cookies.ISetCookie2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.23414_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Cookies.ISetCookieInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23415_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Cookies.MalformedCookieException, Mono.Android\00", align 1 +@.TypeMapEntry.23416_to = private unnamed_addr constant [48 x i8] c"org/apache/http/cookie/MalformedCookieException\00", align 1 +@.TypeMapEntry.23417_from = private unnamed_addr constant [41 x i8] c"Org.Apache.Http.Cookies.SM, Mono.Android\00", align 1 +@.TypeMapEntry.23418_to = private unnamed_addr constant [40 x i8] c"mono/internal/org/apache/http/cookie/SM\00", align 1 +@.TypeMapEntry.23419_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Entity.AbstractHttpEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23420_to = private unnamed_addr constant [42 x i8] c"org/apache/http/entity/AbstractHttpEntity\00", align 1 +@.TypeMapEntry.23421_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Entity.AbstractHttpEntityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23422_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Entity.BasicHttpEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23423_to = private unnamed_addr constant [39 x i8] c"org/apache/http/entity/BasicHttpEntity\00", align 1 +@.TypeMapEntry.23424_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Entity.BufferedHttpEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23425_to = private unnamed_addr constant [42 x i8] c"org/apache/http/entity/BufferedHttpEntity\00", align 1 +@.TypeMapEntry.23426_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Entity.ByteArrayEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23427_to = private unnamed_addr constant [39 x i8] c"org/apache/http/entity/ByteArrayEntity\00", align 1 +@.TypeMapEntry.23428_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Entity.ContentLengthStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23429_to = private unnamed_addr constant [59 x i8] c"mono/internal/org/apache/http/entity/ContentLengthStrategy\00", align 1 +@.TypeMapEntry.23430_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Entity.EntityTemplate, Mono.Android\00", align 1 +@.TypeMapEntry.23431_to = private unnamed_addr constant [38 x i8] c"org/apache/http/entity/EntityTemplate\00", align 1 +@.TypeMapEntry.23432_from = private unnamed_addr constant [48 x i8] c"Org.Apache.Http.Entity.FileEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23433_to = private unnamed_addr constant [34 x i8] c"org/apache/http/entity/FileEntity\00", align 1 +@.TypeMapEntry.23434_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Entity.HttpEntityWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.23435_to = private unnamed_addr constant [41 x i8] c"org/apache/http/entity/HttpEntityWrapper\00", align 1 +@.TypeMapEntry.23436_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Entity.IContentLengthStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23437_to = private unnamed_addr constant [45 x i8] c"org/apache/http/entity/ContentLengthStrategy\00", align 1 +@.TypeMapEntry.23438_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Entity.IContentLengthStrategyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23439_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Entity.IContentProducer, Mono.Android\00", align 1 +@.TypeMapEntry.23440_to = private unnamed_addr constant [39 x i8] c"org/apache/http/entity/ContentProducer\00", align 1 +@.TypeMapEntry.23441_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Entity.IContentProducerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23442_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Entity.InputStreamEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23443_to = private unnamed_addr constant [41 x i8] c"org/apache/http/entity/InputStreamEntity\00", align 1 +@.TypeMapEntry.23444_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Entity.SerializableEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23445_to = private unnamed_addr constant [42 x i8] c"org/apache/http/entity/SerializableEntity\00", align 1 +@.TypeMapEntry.23446_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Entity.StringEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23447_to = private unnamed_addr constant [36 x i8] c"org/apache/http/entity/StringEntity\00", align 1 +@.TypeMapEntry.23448_from = private unnamed_addr constant [44 x i8] c"Org.Apache.Http.HttpException, Mono.Android\00", align 1 +@.TypeMapEntry.23449_to = private unnamed_addr constant [30 x i8] c"org/apache/http/HttpException\00", align 1 +@.TypeMapEntry.23450_from = private unnamed_addr constant [39 x i8] c"Org.Apache.Http.HttpHost, Mono.Android\00", align 1 +@.TypeMapEntry.23451_to = private unnamed_addr constant [25 x i8] c"org/apache/http/HttpHost\00", align 1 +@.TypeMapEntry.23452_from = private unnamed_addr constant [41 x i8] c"Org.Apache.Http.HttpStatus, Mono.Android\00", align 1 +@.TypeMapEntry.23453_to = private unnamed_addr constant [41 x i8] c"mono/internal/org/apache/http/HttpStatus\00", align 1 +@.TypeMapEntry.23454_from = private unnamed_addr constant [42 x i8] c"Org.Apache.Http.HttpVersion, Mono.Android\00", align 1 +@.TypeMapEntry.23455_to = private unnamed_addr constant [28 x i8] c"org/apache/http/HttpVersion\00", align 1 +@.TypeMapEntry.23456_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.IConnectionReuseStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23457_to = private unnamed_addr constant [40 x i8] c"org/apache/http/ConnectionReuseStrategy\00", align 1 +@.TypeMapEntry.23458_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.IConnectionReuseStrategyInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23459_from = private unnamed_addr constant [47 x i8] c"Org.Apache.Http.IFormattedHeader, Mono.Android\00", align 1 +@.TypeMapEntry.23460_to = private unnamed_addr constant [32 x i8] c"org/apache/http/FormattedHeader\00", align 1 +@.TypeMapEntry.23461_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.IFormattedHeaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23462_from = private unnamed_addr constant [38 x i8] c"Org.Apache.Http.IHeader, Mono.Android\00", align 1 +@.TypeMapEntry.23463_to = private unnamed_addr constant [23 x i8] c"org/apache/http/Header\00", align 1 +@.TypeMapEntry.23464_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.IHeaderElement, Mono.Android\00", align 1 +@.TypeMapEntry.23465_to = private unnamed_addr constant [30 x i8] c"org/apache/http/HeaderElement\00", align 1 +@.TypeMapEntry.23466_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.IHeaderElementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23467_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.IHeaderElementIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23468_to = private unnamed_addr constant [38 x i8] c"org/apache/http/HeaderElementIterator\00", align 1 +@.TypeMapEntry.23469_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.IHeaderElementIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23470_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.IHeaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23471_from = private unnamed_addr constant [46 x i8] c"Org.Apache.Http.IHeaderIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23472_to = private unnamed_addr constant [31 x i8] c"org/apache/http/HeaderIterator\00", align 1 +@.TypeMapEntry.23473_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.IHeaderIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23474_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.IHttpClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23475_to = private unnamed_addr constant [37 x i8] c"org/apache/http/HttpClientConnection\00", align 1 +@.TypeMapEntry.23476_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.IHttpClientConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23477_from = private unnamed_addr constant [46 x i8] c"Org.Apache.Http.IHttpConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23478_to = private unnamed_addr constant [31 x i8] c"org/apache/http/HttpConnection\00", align 1 +@.TypeMapEntry.23479_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.IHttpConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23480_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.IHttpConnectionMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.23481_to = private unnamed_addr constant [38 x i8] c"org/apache/http/HttpConnectionMetrics\00", align 1 +@.TypeMapEntry.23482_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.IHttpConnectionMetricsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23483_from = private unnamed_addr constant [42 x i8] c"Org.Apache.Http.IHttpEntity, Mono.Android\00", align 1 +@.TypeMapEntry.23484_to = private unnamed_addr constant [27 x i8] c"org/apache/http/HttpEntity\00", align 1 +@.TypeMapEntry.23485_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.IHttpEntityEnclosingRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23486_to = private unnamed_addr constant [43 x i8] c"org/apache/http/HttpEntityEnclosingRequest\00", align 1 +@.TypeMapEntry.23487_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.IHttpEntityEnclosingRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23488_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.IHttpEntityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23489_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.IHttpInetConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23490_to = private unnamed_addr constant [35 x i8] c"org/apache/http/HttpInetConnection\00", align 1 +@.TypeMapEntry.23491_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.IHttpInetConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23492_from = private unnamed_addr constant [43 x i8] c"Org.Apache.Http.IHttpMessage, Mono.Android\00", align 1 +@.TypeMapEntry.23493_to = private unnamed_addr constant [28 x i8] c"org/apache/http/HttpMessage\00", align 1 +@.TypeMapEntry.23494_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.IHttpMessageInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23495_from = private unnamed_addr constant [43 x i8] c"Org.Apache.Http.IHttpRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23496_to = private unnamed_addr constant [28 x i8] c"org/apache/http/HttpRequest\00", align 1 +@.TypeMapEntry.23497_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.IHttpRequestFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23498_to = private unnamed_addr constant [35 x i8] c"org/apache/http/HttpRequestFactory\00", align 1 +@.TypeMapEntry.23499_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.IHttpRequestFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23500_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.IHttpRequestInterceptor, Mono.Android\00", align 1 +@.TypeMapEntry.23501_to = private unnamed_addr constant [39 x i8] c"org/apache/http/HttpRequestInterceptor\00", align 1 +@.TypeMapEntry.23502_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.IHttpRequestInterceptorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23503_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.IHttpRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23504_from = private unnamed_addr constant [44 x i8] c"Org.Apache.Http.IHttpResponse, Mono.Android\00", align 1 +@.TypeMapEntry.23505_to = private unnamed_addr constant [29 x i8] c"org/apache/http/HttpResponse\00", align 1 +@.TypeMapEntry.23506_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.IHttpResponseFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23507_to = private unnamed_addr constant [36 x i8] c"org/apache/http/HttpResponseFactory\00", align 1 +@.TypeMapEntry.23508_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.IHttpResponseFactoryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23509_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.IHttpResponseInterceptor, Mono.Android\00", align 1 +@.TypeMapEntry.23510_to = private unnamed_addr constant [40 x i8] c"org/apache/http/HttpResponseInterceptor\00", align 1 +@.TypeMapEntry.23511_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.IHttpResponseInterceptorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23512_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.IHttpResponseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23513_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.IHttpServerConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23514_to = private unnamed_addr constant [37 x i8] c"org/apache/http/HttpServerConnection\00", align 1 +@.TypeMapEntry.23515_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.IHttpServerConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23516_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.INameValuePair, Mono.Android\00", align 1 +@.TypeMapEntry.23517_to = private unnamed_addr constant [30 x i8] c"org/apache/http/NameValuePair\00", align 1 +@.TypeMapEntry.23518_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.INameValuePairInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23519_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.IO.IHttpMessageParser, Mono.Android\00", align 1 +@.TypeMapEntry.23520_to = private unnamed_addr constant [37 x i8] c"org/apache/http/io/HttpMessageParser\00", align 1 +@.TypeMapEntry.23521_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.IO.IHttpMessageParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23522_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.IO.IHttpMessageWriter, Mono.Android\00", align 1 +@.TypeMapEntry.23523_to = private unnamed_addr constant [37 x i8] c"org/apache/http/io/HttpMessageWriter\00", align 1 +@.TypeMapEntry.23524_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.IO.IHttpMessageWriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23525_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.IO.IHttpTransportMetrics, Mono.Android\00", align 1 +@.TypeMapEntry.23526_to = private unnamed_addr constant [40 x i8] c"org/apache/http/io/HttpTransportMetrics\00", align 1 +@.TypeMapEntry.23527_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.IO.IHttpTransportMetricsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23528_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.IO.ISessionInputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23529_to = private unnamed_addr constant [38 x i8] c"org/apache/http/io/SessionInputBuffer\00", align 1 +@.TypeMapEntry.23530_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.IO.ISessionInputBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23531_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.IO.ISessionOutputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23532_to = private unnamed_addr constant [39 x i8] c"org/apache/http/io/SessionOutputBuffer\00", align 1 +@.TypeMapEntry.23533_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.IO.ISessionOutputBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23534_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.IReasonPhraseCatalog, Mono.Android\00", align 1 +@.TypeMapEntry.23535_to = private unnamed_addr constant [36 x i8] c"org/apache/http/ReasonPhraseCatalog\00", align 1 +@.TypeMapEntry.23536_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.IReasonPhraseCatalogInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23537_from = private unnamed_addr constant [43 x i8] c"Org.Apache.Http.IRequestLine, Mono.Android\00", align 1 +@.TypeMapEntry.23538_to = private unnamed_addr constant [28 x i8] c"org/apache/http/RequestLine\00", align 1 +@.TypeMapEntry.23539_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.IRequestLineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23540_from = private unnamed_addr constant [42 x i8] c"Org.Apache.Http.IStatusLine, Mono.Android\00", align 1 +@.TypeMapEntry.23541_to = private unnamed_addr constant [27 x i8] c"org/apache/http/StatusLine\00", align 1 +@.TypeMapEntry.23542_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.IStatusLineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23543_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.ITokenIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23544_to = private unnamed_addr constant [30 x i8] c"org/apache/http/TokenIterator\00", align 1 +@.TypeMapEntry.23545_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.ITokenIteratorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23546_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.AbstractHttpClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23547_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/AbstractHttpClientConnection\00", align 1 +@.TypeMapEntry.23548_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Impl.AbstractHttpClientConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23549_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.AbstractHttpServerConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23550_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/AbstractHttpServerConnection\00", align 1 +@.TypeMapEntry.23551_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Impl.AbstractHttpServerConnectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23552_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Impl.Auth.AuthSchemeBase, Mono.Android\00", align 1 +@.TypeMapEntry.23553_to = private unnamed_addr constant [41 x i8] c"org/apache/http/impl/auth/AuthSchemeBase\00", align 1 +@.TypeMapEntry.23554_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Auth.AuthSchemeBaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23555_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Impl.Auth.BasicScheme, Mono.Android\00", align 1 +@.TypeMapEntry.23556_to = private unnamed_addr constant [38 x i8] c"org/apache/http/impl/auth/BasicScheme\00", align 1 +@.TypeMapEntry.23557_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.Auth.BasicSchemeFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23558_to = private unnamed_addr constant [45 x i8] c"org/apache/http/impl/auth/BasicSchemeFactory\00", align 1 +@.TypeMapEntry.23559_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Impl.Auth.DigestScheme, Mono.Android\00", align 1 +@.TypeMapEntry.23560_to = private unnamed_addr constant [39 x i8] c"org/apache/http/impl/auth/DigestScheme\00", align 1 +@.TypeMapEntry.23561_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Auth.DigestSchemeFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23562_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/auth/DigestSchemeFactory\00", align 1 +@.TypeMapEntry.23563_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Impl.Auth.INTLMEngine, Mono.Android\00", align 1 +@.TypeMapEntry.23564_to = private unnamed_addr constant [37 x i8] c"org/apache/http/impl/auth/NTLMEngine\00", align 1 +@.TypeMapEntry.23565_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.Auth.INTLMEngineInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23566_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Auth.NTLMEngineException, Mono.Android\00", align 1 +@.TypeMapEntry.23567_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/auth/NTLMEngineException\00", align 1 +@.TypeMapEntry.23568_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Impl.Auth.NTLMScheme, Mono.Android\00", align 1 +@.TypeMapEntry.23569_to = private unnamed_addr constant [37 x i8] c"org/apache/http/impl/auth/NTLMScheme\00", align 1 +@.TypeMapEntry.23570_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Impl.Auth.RFC2617Scheme, Mono.Android\00", align 1 +@.TypeMapEntry.23571_to = private unnamed_addr constant [40 x i8] c"org/apache/http/impl/auth/RFC2617Scheme\00", align 1 +@.TypeMapEntry.23572_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Auth.RFC2617SchemeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23573_from = private unnamed_addr constant [76 x i8] c"Org.Apache.Http.Impl.Auth.UnsupportedDigestAlgorithmException, Mono.Android\00", align 1 +@.TypeMapEntry.23574_to = private unnamed_addr constant [62 x i8] c"org/apache/http/impl/auth/UnsupportedDigestAlgorithmException\00", align 1 +@.TypeMapEntry.23575_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Impl.Client.AbstractAuthenticationHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23576_to = private unnamed_addr constant [58 x i8] c"org/apache/http/impl/client/AbstractAuthenticationHandler\00", align 1 +@.TypeMapEntry.23577_from = private unnamed_addr constant [79 x i8] c"Org.Apache.Http.Impl.Client.AbstractAuthenticationHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23578_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Client.AbstractHttpClient, Mono.Android\00", align 1 +@.TypeMapEntry.23579_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/client/AbstractHttpClient\00", align 1 +@.TypeMapEntry.23580_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Impl.Client.AbstractHttpClientInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23581_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.Client.BasicCookieStore, Mono.Android\00", align 1 +@.TypeMapEntry.23582_to = private unnamed_addr constant [45 x i8] c"org/apache/http/impl/client/BasicCookieStore\00", align 1 +@.TypeMapEntry.23583_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Client.BasicCredentialsProvider, Mono.Android\00", align 1 +@.TypeMapEntry.23584_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/client/BasicCredentialsProvider\00", align 1 +@.TypeMapEntry.23585_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.Client.BasicResponseHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23586_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/client/BasicResponseHandler\00", align 1 +@.TypeMapEntry.23587_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Client.ClientParamsStack, Mono.Android\00", align 1 +@.TypeMapEntry.23588_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/client/ClientParamsStack\00", align 1 +@.TypeMapEntry.23589_from = private unnamed_addr constant [77 x i8] c"Org.Apache.Http.Impl.Client.DefaultConnectionKeepAliveStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23590_to = private unnamed_addr constant [63 x i8] c"org/apache/http/impl/client/DefaultConnectionKeepAliveStrategy\00", align 1 +@.TypeMapEntry.23591_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Client.DefaultHttpClient, Mono.Android\00", align 1 +@.TypeMapEntry.23592_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/client/DefaultHttpClient\00", align 1 +@.TypeMapEntry.23593_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Client.DefaultHttpRequestRetryHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23594_to = private unnamed_addr constant [59 x i8] c"org/apache/http/impl/client/DefaultHttpRequestRetryHandler\00", align 1 +@.TypeMapEntry.23595_from = private unnamed_addr constant [76 x i8] c"Org.Apache.Http.Impl.Client.DefaultProxyAuthenticationHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23596_to = private unnamed_addr constant [62 x i8] c"org/apache/http/impl/client/DefaultProxyAuthenticationHandler\00", align 1 +@.TypeMapEntry.23597_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Impl.Client.DefaultRedirectHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23598_to = private unnamed_addr constant [51 x i8] c"org/apache/http/impl/client/DefaultRedirectHandler\00", align 1 +@.TypeMapEntry.23599_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Impl.Client.DefaultRequestDirector, Mono.Android\00", align 1 +@.TypeMapEntry.23600_to = private unnamed_addr constant [51 x i8] c"org/apache/http/impl/client/DefaultRequestDirector\00", align 1 +@.TypeMapEntry.23601_from = private unnamed_addr constant [77 x i8] c"Org.Apache.Http.Impl.Client.DefaultTargetAuthenticationHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23602_to = private unnamed_addr constant [63 x i8] c"org/apache/http/impl/client/DefaultTargetAuthenticationHandler\00", align 1 +@.TypeMapEntry.23603_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.Client.DefaultUserTokenHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23604_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/client/DefaultUserTokenHandler\00", align 1 +@.TypeMapEntry.23605_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Impl.Client.EntityEnclosingRequestWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.23606_to = private unnamed_addr constant [58 x i8] c"org/apache/http/impl/client/EntityEnclosingRequestWrapper\00", align 1 +@.TypeMapEntry.23607_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Client.RedirectLocations, Mono.Android\00", align 1 +@.TypeMapEntry.23608_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/client/RedirectLocations\00", align 1 +@.TypeMapEntry.23609_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.Client.RequestWrapper, Mono.Android\00", align 1 +@.TypeMapEntry.23610_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/client/RequestWrapper\00", align 1 +@.TypeMapEntry.23611_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Impl.Client.RoutedRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23612_to = private unnamed_addr constant [42 x i8] c"org/apache/http/impl/client/RoutedRequest\00", align 1 +@.TypeMapEntry.23613_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Impl.Client.TunnelRefusedException, Mono.Android\00", align 1 +@.TypeMapEntry.23614_to = private unnamed_addr constant [51 x i8] c"org/apache/http/impl/client/TunnelRefusedException\00", align 1 +@.TypeMapEntry.23615_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.Conn.AbstractClientConnAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.23616_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/conn/AbstractClientConnAdapter\00", align 1 +@.TypeMapEntry.23617_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Conn.AbstractClientConnAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23618_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Impl.Conn.AbstractPoolEntry, Mono.Android\00", align 1 +@.TypeMapEntry.23619_to = private unnamed_addr constant [44 x i8] c"org/apache/http/impl/conn/AbstractPoolEntry\00", align 1 +@.TypeMapEntry.23620_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Impl.Conn.AbstractPoolEntryInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23621_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.Conn.AbstractPooledConnAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.23622_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/conn/AbstractPooledConnAdapter\00", align 1 +@.TypeMapEntry.23623_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Conn.AbstractPooledConnAdapterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23624_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.DefaultClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23625_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/conn/DefaultClientConnection\00", align 1 +@.TypeMapEntry.23626_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Impl.Conn.DefaultClientConnectionOperator, Mono.Android\00", align 1 +@.TypeMapEntry.23627_to = private unnamed_addr constant [58 x i8] c"org/apache/http/impl/conn/DefaultClientConnectionOperator\00", align 1 +@.TypeMapEntry.23628_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.DefaultHttpRoutePlanner, Mono.Android\00", align 1 +@.TypeMapEntry.23629_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/conn/DefaultHttpRoutePlanner\00", align 1 +@.TypeMapEntry.23630_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Conn.DefaultResponseParser, Mono.Android\00", align 1 +@.TypeMapEntry.23631_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/conn/DefaultResponseParser\00", align 1 +@.TypeMapEntry.23632_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Conn.IdleConnectionHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23633_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/conn/IdleConnectionHandler\00", align 1 +@.TypeMapEntry.23634_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.Conn.LoggingSessionInputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23635_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/conn/LoggingSessionInputBuffer\00", align 1 +@.TypeMapEntry.23636_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Conn.LoggingSessionOutputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23637_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/conn/LoggingSessionOutputBuffer\00", align 1 +@.TypeMapEntry.23638_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.Conn.ProxySelectorRoutePlanner, Mono.Android\00", align 1 +@.TypeMapEntry.23639_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/conn/ProxySelectorRoutePlanner\00", align 1 +@.TypeMapEntry.23640_from = private unnamed_addr constant [76 x i8] c"Org.Apache.Http.Impl.Conn.SingleClientConnManager+ConnAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.23641_to = private unnamed_addr constant [62 x i8] c"org/apache/http/impl/conn/SingleClientConnManager$ConnAdapter\00", align 1 +@.TypeMapEntry.23642_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Impl.Conn.SingleClientConnManager+PoolEntry, Mono.Android\00", align 1 +@.TypeMapEntry.23643_to = private unnamed_addr constant [60 x i8] c"org/apache/http/impl/conn/SingleClientConnManager$PoolEntry\00", align 1 +@.TypeMapEntry.23644_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.SingleClientConnManager, Mono.Android\00", align 1 +@.TypeMapEntry.23645_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/conn/SingleClientConnManager\00", align 1 +@.TypeMapEntry.23646_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.AbstractConnPool, Mono.Android\00", align 1 +@.TypeMapEntry.23647_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/conn/tsccm/AbstractConnPool\00", align 1 +@.TypeMapEntry.23648_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.AbstractConnPoolInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23649_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.BasicPoolEntry, Mono.Android\00", align 1 +@.TypeMapEntry.23650_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/conn/tsccm/BasicPoolEntry\00", align 1 +@.TypeMapEntry.23651_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.BasicPoolEntryRef, Mono.Android\00", align 1 +@.TypeMapEntry.23652_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/conn/tsccm/BasicPoolEntryRef\00", align 1 +@.TypeMapEntry.23653_from = private unnamed_addr constant [69 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.BasicPooledConnAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.23654_to = private unnamed_addr constant [55 x i8] c"org/apache/http/impl/conn/tsccm/BasicPooledConnAdapter\00", align 1 +@.TypeMapEntry.23655_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.ConnPoolByRoute, Mono.Android\00", align 1 +@.TypeMapEntry.23656_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/conn/tsccm/ConnPoolByRoute\00", align 1 +@.TypeMapEntry.23657_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.IPoolEntryRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23658_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/conn/tsccm/PoolEntryRequest\00", align 1 +@.TypeMapEntry.23659_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.IPoolEntryRequestInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23660_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.IRefQueueHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23661_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/conn/tsccm/RefQueueHandler\00", align 1 +@.TypeMapEntry.23662_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.IRefQueueHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23663_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.RefQueueWorker, Mono.Android\00", align 1 +@.TypeMapEntry.23664_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/conn/tsccm/RefQueueWorker\00", align 1 +@.TypeMapEntry.23665_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.RouteSpecificPool, Mono.Android\00", align 1 +@.TypeMapEntry.23666_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/conn/tsccm/RouteSpecificPool\00", align 1 +@.TypeMapEntry.23667_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.ThreadSafeClientConnManager, Mono.Android\00", align 1 +@.TypeMapEntry.23668_to = private unnamed_addr constant [60 x i8] c"org/apache/http/impl/conn/tsccm/ThreadSafeClientConnManager\00", align 1 +@.TypeMapEntry.23669_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.WaitingThread, Mono.Android\00", align 1 +@.TypeMapEntry.23670_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/conn/tsccm/WaitingThread\00", align 1 +@.TypeMapEntry.23671_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Conn.Tsccm.WaitingThreadAborter, Mono.Android\00", align 1 +@.TypeMapEntry.23672_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/conn/tsccm/WaitingThreadAborter\00", align 1 +@.TypeMapEntry.23673_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.Impl.Conn.Wire, Mono.Android\00", align 1 +@.TypeMapEntry.23674_to = private unnamed_addr constant [31 x i8] c"org/apache/http/impl/conn/Wire\00", align 1 +@.TypeMapEntry.23675_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Cookie.AbstractCookieAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23676_to = private unnamed_addr constant [59 x i8] c"org/apache/http/impl/cookie/AbstractCookieAttributeHandler\00", align 1 +@.TypeMapEntry.23677_from = private unnamed_addr constant [80 x i8] c"Org.Apache.Http.Impl.Cookie.AbstractCookieAttributeHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23678_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.AbstractCookieSpec, Mono.Android\00", align 1 +@.TypeMapEntry.23679_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/AbstractCookieSpec\00", align 1 +@.TypeMapEntry.23680_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Impl.Cookie.AbstractCookieSpecInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23681_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Cookie.BasicClientCookie, Mono.Android\00", align 1 +@.TypeMapEntry.23682_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/cookie/BasicClientCookie\00", align 1 +@.TypeMapEntry.23683_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.BasicClientCookie2, Mono.Android\00", align 1 +@.TypeMapEntry.23684_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/BasicClientCookie2\00", align 1 +@.TypeMapEntry.23685_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Cookie.BasicCommentHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23686_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/cookie/BasicCommentHandler\00", align 1 +@.TypeMapEntry.23687_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.BasicDomainHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23688_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/BasicDomainHandler\00", align 1 +@.TypeMapEntry.23689_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.Cookie.BasicExpiresHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23690_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/cookie/BasicExpiresHandler\00", align 1 +@.TypeMapEntry.23691_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.BasicMaxAgeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23692_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/BasicMaxAgeHandler\00", align 1 +@.TypeMapEntry.23693_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.Cookie.BasicPathHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23694_to = private unnamed_addr constant [45 x i8] c"org/apache/http/impl/cookie/BasicPathHandler\00", align 1 +@.TypeMapEntry.23695_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.BasicSecureHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23696_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/BasicSecureHandler\00", align 1 +@.TypeMapEntry.23697_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Impl.Cookie.BestMatchSpec, Mono.Android\00", align 1 +@.TypeMapEntry.23698_to = private unnamed_addr constant [42 x i8] c"org/apache/http/impl/cookie/BestMatchSpec\00", align 1 +@.TypeMapEntry.23699_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.Cookie.BestMatchSpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23700_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/cookie/BestMatchSpecFactory\00", align 1 +@.TypeMapEntry.23701_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Cookie.BrowserCompatSpec, Mono.Android\00", align 1 +@.TypeMapEntry.23702_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/cookie/BrowserCompatSpec\00", align 1 +@.TypeMapEntry.23703_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Cookie.BrowserCompatSpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23704_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/cookie/BrowserCompatSpecFactory\00", align 1 +@.TypeMapEntry.23705_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.Cookie.CookieSpecBase, Mono.Android\00", align 1 +@.TypeMapEntry.23706_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/cookie/CookieSpecBase\00", align 1 +@.TypeMapEntry.23707_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Cookie.CookieSpecBaseInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23708_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.DateParseException, Mono.Android\00", align 1 +@.TypeMapEntry.23709_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/DateParseException\00", align 1 +@.TypeMapEntry.23710_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Impl.Cookie.DateUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23711_to = private unnamed_addr constant [38 x i8] c"org/apache/http/impl/cookie/DateUtils\00", align 1 +@.TypeMapEntry.23712_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Cookie.NetscapeDomainHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23713_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/cookie/NetscapeDomainHandler\00", align 1 +@.TypeMapEntry.23714_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Impl.Cookie.NetscapeDraftHeaderParser, Mono.Android\00", align 1 +@.TypeMapEntry.23715_to = private unnamed_addr constant [54 x i8] c"org/apache/http/impl/cookie/NetscapeDraftHeaderParser\00", align 1 +@.TypeMapEntry.23716_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.Cookie.NetscapeDraftSpec, Mono.Android\00", align 1 +@.TypeMapEntry.23717_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/cookie/NetscapeDraftSpec\00", align 1 +@.TypeMapEntry.23718_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Cookie.NetscapeDraftSpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23719_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/cookie/NetscapeDraftSpecFactory\00", align 1 +@.TypeMapEntry.23720_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2109DomainHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23721_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/cookie/RFC2109DomainHandler\00", align 1 +@.TypeMapEntry.23722_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2109Spec, Mono.Android\00", align 1 +@.TypeMapEntry.23723_to = private unnamed_addr constant [40 x i8] c"org/apache/http/impl/cookie/RFC2109Spec\00", align 1 +@.TypeMapEntry.23724_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2109SpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23725_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/RFC2109SpecFactory\00", align 1 +@.TypeMapEntry.23726_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2109VersionHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23727_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/cookie/RFC2109VersionHandler\00", align 1 +@.TypeMapEntry.23728_from = private unnamed_addr constant [76 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965CommentUrlAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23729_to = private unnamed_addr constant [62 x i8] c"org/apache/http/impl/cookie/RFC2965CommentUrlAttributeHandler\00", align 1 +@.TypeMapEntry.23730_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965DiscardAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23731_to = private unnamed_addr constant [59 x i8] c"org/apache/http/impl/cookie/RFC2965DiscardAttributeHandler\00", align 1 +@.TypeMapEntry.23732_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965DomainAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23733_to = private unnamed_addr constant [58 x i8] c"org/apache/http/impl/cookie/RFC2965DomainAttributeHandler\00", align 1 +@.TypeMapEntry.23734_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965PortAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23735_to = private unnamed_addr constant [56 x i8] c"org/apache/http/impl/cookie/RFC2965PortAttributeHandler\00", align 1 +@.TypeMapEntry.23736_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965Spec, Mono.Android\00", align 1 +@.TypeMapEntry.23737_to = private unnamed_addr constant [40 x i8] c"org/apache/http/impl/cookie/RFC2965Spec\00", align 1 +@.TypeMapEntry.23738_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965SpecFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23739_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/cookie/RFC2965SpecFactory\00", align 1 +@.TypeMapEntry.23740_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.Cookie.RFC2965VersionAttributeHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23741_to = private unnamed_addr constant [59 x i8] c"org/apache/http/impl/cookie/RFC2965VersionAttributeHandler\00", align 1 +@.TypeMapEntry.23742_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.DefaultConnectionReuseStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23743_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/DefaultConnectionReuseStrategy\00", align 1 +@.TypeMapEntry.23744_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.DefaultHttpClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23745_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/DefaultHttpClientConnection\00", align 1 +@.TypeMapEntry.23746_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.DefaultHttpRequestFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23747_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/DefaultHttpRequestFactory\00", align 1 +@.TypeMapEntry.23748_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.DefaultHttpResponseFactory, Mono.Android\00", align 1 +@.TypeMapEntry.23749_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/DefaultHttpResponseFactory\00", align 1 +@.TypeMapEntry.23750_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.DefaultHttpServerConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23751_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/DefaultHttpServerConnection\00", align 1 +@.TypeMapEntry.23752_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.EnglishReasonPhraseCatalog, Mono.Android\00", align 1 +@.TypeMapEntry.23753_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/EnglishReasonPhraseCatalog\00", align 1 +@.TypeMapEntry.23754_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.Entity.EntityDeserializer, Mono.Android\00", align 1 +@.TypeMapEntry.23755_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/entity/EntityDeserializer\00", align 1 +@.TypeMapEntry.23756_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.Entity.EntitySerializer, Mono.Android\00", align 1 +@.TypeMapEntry.23757_to = private unnamed_addr constant [45 x i8] c"org/apache/http/impl/entity/EntitySerializer\00", align 1 +@.TypeMapEntry.23758_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.Entity.LaxContentLengthStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23759_to = private unnamed_addr constant [53 x i8] c"org/apache/http/impl/entity/LaxContentLengthStrategy\00", align 1 +@.TypeMapEntry.23760_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Impl.Entity.StrictContentLengthStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23761_to = private unnamed_addr constant [56 x i8] c"org/apache/http/impl/entity/StrictContentLengthStrategy\00", align 1 +@.TypeMapEntry.23762_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.HttpConnectionMetricsImpl, Mono.Android\00", align 1 +@.TypeMapEntry.23763_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/HttpConnectionMetricsImpl\00", align 1 +@.TypeMapEntry.23764_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.IO.AbstractMessageParser, Mono.Android\00", align 1 +@.TypeMapEntry.23765_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/io/AbstractMessageParser\00", align 1 +@.TypeMapEntry.23766_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.IO.AbstractMessageParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23767_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Impl.IO.AbstractMessageWriter, Mono.Android\00", align 1 +@.TypeMapEntry.23768_to = private unnamed_addr constant [46 x i8] c"org/apache/http/impl/io/AbstractMessageWriter\00", align 1 +@.TypeMapEntry.23769_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Impl.IO.AbstractMessageWriterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23770_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Impl.IO.AbstractSessionInputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23771_to = private unnamed_addr constant [51 x i8] c"org/apache/http/impl/io/AbstractSessionInputBuffer\00", align 1 +@.TypeMapEntry.23772_from = private unnamed_addr constant [72 x i8] c"Org.Apache.Http.Impl.IO.AbstractSessionInputBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23773_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Impl.IO.AbstractSessionOutputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23774_to = private unnamed_addr constant [52 x i8] c"org/apache/http/impl/io/AbstractSessionOutputBuffer\00", align 1 +@.TypeMapEntry.23775_from = private unnamed_addr constant [73 x i8] c"Org.Apache.Http.Impl.IO.AbstractSessionOutputBufferInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23776_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.IO.ChunkedInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23777_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/io/ChunkedInputStream\00", align 1 +@.TypeMapEntry.23778_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Impl.IO.ChunkedOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23779_to = private unnamed_addr constant [44 x i8] c"org/apache/http/impl/io/ChunkedOutputStream\00", align 1 +@.TypeMapEntry.23780_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.IO.ContentLengthInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23781_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/io/ContentLengthInputStream\00", align 1 +@.TypeMapEntry.23782_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Impl.IO.ContentLengthOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23783_to = private unnamed_addr constant [50 x i8] c"org/apache/http/impl/io/ContentLengthOutputStream\00", align 1 +@.TypeMapEntry.23784_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Impl.IO.HttpRequestParser, Mono.Android\00", align 1 +@.TypeMapEntry.23785_to = private unnamed_addr constant [42 x i8] c"org/apache/http/impl/io/HttpRequestParser\00", align 1 +@.TypeMapEntry.23786_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Impl.IO.HttpRequestWriter, Mono.Android\00", align 1 +@.TypeMapEntry.23787_to = private unnamed_addr constant [42 x i8] c"org/apache/http/impl/io/HttpRequestWriter\00", align 1 +@.TypeMapEntry.23788_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.IO.HttpResponseParser, Mono.Android\00", align 1 +@.TypeMapEntry.23789_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/io/HttpResponseParser\00", align 1 +@.TypeMapEntry.23790_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.IO.HttpResponseWriter, Mono.Android\00", align 1 +@.TypeMapEntry.23791_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/io/HttpResponseWriter\00", align 1 +@.TypeMapEntry.23792_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Impl.IO.HttpTransportMetricsImpl, Mono.Android\00", align 1 +@.TypeMapEntry.23793_to = private unnamed_addr constant [49 x i8] c"org/apache/http/impl/io/HttpTransportMetricsImpl\00", align 1 +@.TypeMapEntry.23794_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Impl.IO.IdentityInputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23795_to = private unnamed_addr constant [44 x i8] c"org/apache/http/impl/io/IdentityInputStream\00", align 1 +@.TypeMapEntry.23796_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Impl.IO.IdentityOutputStream, Mono.Android\00", align 1 +@.TypeMapEntry.23797_to = private unnamed_addr constant [45 x i8] c"org/apache/http/impl/io/IdentityOutputStream\00", align 1 +@.TypeMapEntry.23798_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Impl.IO.SocketInputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23799_to = private unnamed_addr constant [42 x i8] c"org/apache/http/impl/io/SocketInputBuffer\00", align 1 +@.TypeMapEntry.23800_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Impl.IO.SocketOutputBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23801_to = private unnamed_addr constant [43 x i8] c"org/apache/http/impl/io/SocketOutputBuffer\00", align 1 +@.TypeMapEntry.23802_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Impl.NoConnectionReuseStrategy, Mono.Android\00", align 1 +@.TypeMapEntry.23803_to = private unnamed_addr constant [47 x i8] c"org/apache/http/impl/NoConnectionReuseStrategy\00", align 1 +@.TypeMapEntry.23804_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.SocketHttpClientConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23805_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/SocketHttpClientConnection\00", align 1 +@.TypeMapEntry.23806_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Impl.SocketHttpServerConnection, Mono.Android\00", align 1 +@.TypeMapEntry.23807_to = private unnamed_addr constant [48 x i8] c"org/apache/http/impl/SocketHttpServerConnection\00", align 1 +@.TypeMapEntry.23808_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.MalformedChunkCodingException, Mono.Android\00", align 1 +@.TypeMapEntry.23809_to = private unnamed_addr constant [46 x i8] c"org/apache/http/MalformedChunkCodingException\00", align 1 +@.TypeMapEntry.23810_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Message.AbstractHttpMessage, Mono.Android\00", align 1 +@.TypeMapEntry.23811_to = private unnamed_addr constant [44 x i8] c"org/apache/http/message/AbstractHttpMessage\00", align 1 +@.TypeMapEntry.23812_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Message.AbstractHttpMessageInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23813_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Message.BasicHeader, Mono.Android\00", align 1 +@.TypeMapEntry.23814_to = private unnamed_addr constant [36 x i8] c"org/apache/http/message/BasicHeader\00", align 1 +@.TypeMapEntry.23815_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.BasicHeaderElement, Mono.Android\00", align 1 +@.TypeMapEntry.23816_to = private unnamed_addr constant [43 x i8] c"org/apache/http/message/BasicHeaderElement\00", align 1 +@.TypeMapEntry.23817_from = private unnamed_addr constant [65 x i8] c"Org.Apache.Http.Message.BasicHeaderElementIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23818_to = private unnamed_addr constant [51 x i8] c"org/apache/http/message/BasicHeaderElementIterator\00", align 1 +@.TypeMapEntry.23819_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Message.BasicHeaderIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23820_to = private unnamed_addr constant [44 x i8] c"org/apache/http/message/BasicHeaderIterator\00", align 1 +@.TypeMapEntry.23821_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Message.BasicHeaderValueFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.23822_to = private unnamed_addr constant [50 x i8] c"org/apache/http/message/BasicHeaderValueFormatter\00", align 1 +@.TypeMapEntry.23823_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Message.BasicHeaderValueParser, Mono.Android\00", align 1 +@.TypeMapEntry.23824_to = private unnamed_addr constant [47 x i8] c"org/apache/http/message/BasicHeaderValueParser\00", align 1 +@.TypeMapEntry.23825_from = private unnamed_addr constant [70 x i8] c"Org.Apache.Http.Message.BasicHttpEntityEnclosingRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23826_to = private unnamed_addr constant [56 x i8] c"org/apache/http/message/BasicHttpEntityEnclosingRequest\00", align 1 +@.TypeMapEntry.23827_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Message.BasicHttpRequest, Mono.Android\00", align 1 +@.TypeMapEntry.23828_to = private unnamed_addr constant [41 x i8] c"org/apache/http/message/BasicHttpRequest\00", align 1 +@.TypeMapEntry.23829_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Message.BasicHttpResponse, Mono.Android\00", align 1 +@.TypeMapEntry.23830_to = private unnamed_addr constant [42 x i8] c"org/apache/http/message/BasicHttpResponse\00", align 1 +@.TypeMapEntry.23831_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.BasicLineFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.23832_to = private unnamed_addr constant [43 x i8] c"org/apache/http/message/BasicLineFormatter\00", align 1 +@.TypeMapEntry.23833_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Message.BasicLineParser, Mono.Android\00", align 1 +@.TypeMapEntry.23834_to = private unnamed_addr constant [40 x i8] c"org/apache/http/message/BasicLineParser\00", align 1 +@.TypeMapEntry.23835_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.Message.BasicListHeaderIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23836_to = private unnamed_addr constant [48 x i8] c"org/apache/http/message/BasicListHeaderIterator\00", align 1 +@.TypeMapEntry.23837_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.BasicNameValuePair, Mono.Android\00", align 1 +@.TypeMapEntry.23838_to = private unnamed_addr constant [43 x i8] c"org/apache/http/message/BasicNameValuePair\00", align 1 +@.TypeMapEntry.23839_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Message.BasicRequestLine, Mono.Android\00", align 1 +@.TypeMapEntry.23840_to = private unnamed_addr constant [41 x i8] c"org/apache/http/message/BasicRequestLine\00", align 1 +@.TypeMapEntry.23841_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Message.BasicStatusLine, Mono.Android\00", align 1 +@.TypeMapEntry.23842_to = private unnamed_addr constant [40 x i8] c"org/apache/http/message/BasicStatusLine\00", align 1 +@.TypeMapEntry.23843_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.BasicTokenIterator, Mono.Android\00", align 1 +@.TypeMapEntry.23844_to = private unnamed_addr constant [43 x i8] c"org/apache/http/message/BasicTokenIterator\00", align 1 +@.TypeMapEntry.23845_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Message.BufferedHeader, Mono.Android\00", align 1 +@.TypeMapEntry.23846_to = private unnamed_addr constant [39 x i8] c"org/apache/http/message/BufferedHeader\00", align 1 +@.TypeMapEntry.23847_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Message.HeaderGroup, Mono.Android\00", align 1 +@.TypeMapEntry.23848_to = private unnamed_addr constant [36 x i8] c"org/apache/http/message/HeaderGroup\00", align 1 +@.TypeMapEntry.23849_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Message.IHeaderValueFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.23850_to = private unnamed_addr constant [45 x i8] c"org/apache/http/message/HeaderValueFormatter\00", align 1 +@.TypeMapEntry.23851_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Message.IHeaderValueFormatterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23852_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.IHeaderValueParser, Mono.Android\00", align 1 +@.TypeMapEntry.23853_to = private unnamed_addr constant [42 x i8] c"org/apache/http/message/HeaderValueParser\00", align 1 +@.TypeMapEntry.23854_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Message.IHeaderValueParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23855_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Message.ILineFormatter, Mono.Android\00", align 1 +@.TypeMapEntry.23856_to = private unnamed_addr constant [38 x i8] c"org/apache/http/message/LineFormatter\00", align 1 +@.TypeMapEntry.23857_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Message.ILineFormatterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23858_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Message.ILineParser, Mono.Android\00", align 1 +@.TypeMapEntry.23859_to = private unnamed_addr constant [35 x i8] c"org/apache/http/message/LineParser\00", align 1 +@.TypeMapEntry.23860_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Message.ILineParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23861_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Message.ParserCursor, Mono.Android\00", align 1 +@.TypeMapEntry.23862_to = private unnamed_addr constant [37 x i8] c"org/apache/http/message/ParserCursor\00", align 1 +@.TypeMapEntry.23863_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.MethodNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.23864_to = private unnamed_addr constant [44 x i8] c"org/apache/http/MethodNotSupportedException\00", align 1 +@.TypeMapEntry.23865_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.NoHttpResponseException, Mono.Android\00", align 1 +@.TypeMapEntry.23866_to = private unnamed_addr constant [40 x i8] c"org/apache/http/NoHttpResponseException\00", align 1 +@.TypeMapEntry.23867_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Params.AbstractHttpParams, Mono.Android\00", align 1 +@.TypeMapEntry.23868_to = private unnamed_addr constant [42 x i8] c"org/apache/http/params/AbstractHttpParams\00", align 1 +@.TypeMapEntry.23869_from = private unnamed_addr constant [63 x i8] c"Org.Apache.Http.Params.AbstractHttpParamsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23870_from = private unnamed_addr constant [53 x i8] c"Org.Apache.Http.Params.BasicHttpParams, Mono.Android\00", align 1 +@.TypeMapEntry.23871_to = private unnamed_addr constant [39 x i8] c"org/apache/http/params/BasicHttpParams\00", align 1 +@.TypeMapEntry.23872_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Params.CoreConnectionPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23873_to = private unnamed_addr constant [58 x i8] c"mono/internal/org/apache/http/params/CoreConnectionPNames\00", align 1 +@.TypeMapEntry.23874_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Params.CoreProtocolPNames, Mono.Android\00", align 1 +@.TypeMapEntry.23875_to = private unnamed_addr constant [56 x i8] c"mono/internal/org/apache/http/params/CoreProtocolPNames\00", align 1 +@.TypeMapEntry.23876_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Params.DefaultedHttpParams, Mono.Android\00", align 1 +@.TypeMapEntry.23877_to = private unnamed_addr constant [43 x i8] c"org/apache/http/params/DefaultedHttpParams\00", align 1 +@.TypeMapEntry.23878_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Params.HttpAbstractParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23879_to = private unnamed_addr constant [45 x i8] c"org/apache/http/params/HttpAbstractParamBean\00", align 1 +@.TypeMapEntry.23880_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Params.HttpAbstractParamBeanInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23881_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Params.HttpConnectionParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23882_to = private unnamed_addr constant [47 x i8] c"org/apache/http/params/HttpConnectionParamBean\00", align 1 +@.TypeMapEntry.23883_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Params.HttpConnectionParams, Mono.Android\00", align 1 +@.TypeMapEntry.23884_to = private unnamed_addr constant [44 x i8] c"org/apache/http/params/HttpConnectionParams\00", align 1 +@.TypeMapEntry.23885_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Params.HttpProtocolParamBean, Mono.Android\00", align 1 +@.TypeMapEntry.23886_to = private unnamed_addr constant [45 x i8] c"org/apache/http/params/HttpProtocolParamBean\00", align 1 +@.TypeMapEntry.23887_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Params.HttpProtocolParams, Mono.Android\00", align 1 +@.TypeMapEntry.23888_to = private unnamed_addr constant [42 x i8] c"org/apache/http/params/HttpProtocolParams\00", align 1 +@.TypeMapEntry.23889_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.Params.IHttpParams, Mono.Android\00", align 1 +@.TypeMapEntry.23890_to = private unnamed_addr constant [34 x i8] c"org/apache/http/params/HttpParams\00", align 1 +@.TypeMapEntry.23891_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Params.IHttpParamsInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23892_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.ParseException, Mono.Android\00", align 1 +@.TypeMapEntry.23893_to = private unnamed_addr constant [31 x i8] c"org/apache/http/ParseException\00", align 1 +@.TypeMapEntry.23894_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Protocol.BasicHttpContext, Mono.Android\00", align 1 +@.TypeMapEntry.23895_to = private unnamed_addr constant [42 x i8] c"org/apache/http/protocol/BasicHttpContext\00", align 1 +@.TypeMapEntry.23896_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Protocol.BasicHttpProcessor, Mono.Android\00", align 1 +@.TypeMapEntry.23897_to = private unnamed_addr constant [44 x i8] c"org/apache/http/protocol/BasicHttpProcessor\00", align 1 +@.TypeMapEntry.23898_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Protocol.DefaultedHttpContext, Mono.Android\00", align 1 +@.TypeMapEntry.23899_to = private unnamed_addr constant [46 x i8] c"org/apache/http/protocol/DefaultedHttpContext\00", align 1 +@.TypeMapEntry.23900_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Protocol.ExecutionContext, Mono.Android\00", align 1 +@.TypeMapEntry.23901_to = private unnamed_addr constant [56 x i8] c"mono/internal/org/apache/http/protocol/ExecutionContext\00", align 1 +@.TypeMapEntry.23902_from = private unnamed_addr constant [44 x i8] c"Org.Apache.Http.Protocol.HTTP, Mono.Android\00", align 1 +@.TypeMapEntry.23903_to = private unnamed_addr constant [30 x i8] c"org/apache/http/protocol/HTTP\00", align 1 +@.TypeMapEntry.23904_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Protocol.HttpContext, Mono.Android\00", align 1 +@.TypeMapEntry.23905_to = private unnamed_addr constant [51 x i8] c"mono/internal/org/apache/http/protocol/HttpContext\00", align 1 +@.TypeMapEntry.23906_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Protocol.HttpDateGenerator, Mono.Android\00", align 1 +@.TypeMapEntry.23907_to = private unnamed_addr constant [43 x i8] c"org/apache/http/protocol/HttpDateGenerator\00", align 1 +@.TypeMapEntry.23908_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Protocol.HttpRequestExecutor, Mono.Android\00", align 1 +@.TypeMapEntry.23909_to = private unnamed_addr constant [45 x i8] c"org/apache/http/protocol/HttpRequestExecutor\00", align 1 +@.TypeMapEntry.23910_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Protocol.HttpRequestHandlerRegistry, Mono.Android\00", align 1 +@.TypeMapEntry.23911_to = private unnamed_addr constant [52 x i8] c"org/apache/http/protocol/HttpRequestHandlerRegistry\00", align 1 +@.TypeMapEntry.23912_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Protocol.HttpService, Mono.Android\00", align 1 +@.TypeMapEntry.23913_to = private unnamed_addr constant [37 x i8] c"org/apache/http/protocol/HttpService\00", align 1 +@.TypeMapEntry.23914_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Protocol.IHttpContext, Mono.Android\00", align 1 +@.TypeMapEntry.23915_to = private unnamed_addr constant [37 x i8] c"org/apache/http/protocol/HttpContext\00", align 1 +@.TypeMapEntry.23916_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Protocol.IHttpContextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23917_from = private unnamed_addr constant [64 x i8] c"Org.Apache.Http.Protocol.IHttpExpectationVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.23918_to = private unnamed_addr constant [49 x i8] c"org/apache/http/protocol/HttpExpectationVerifier\00", align 1 +@.TypeMapEntry.23919_from = private unnamed_addr constant [71 x i8] c"Org.Apache.Http.Protocol.IHttpExpectationVerifierInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23920_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Protocol.IHttpProcessor, Mono.Android\00", align 1 +@.TypeMapEntry.23921_to = private unnamed_addr constant [39 x i8] c"org/apache/http/protocol/HttpProcessor\00", align 1 +@.TypeMapEntry.23922_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Protocol.IHttpProcessorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23923_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Protocol.IHttpRequestHandler, Mono.Android\00", align 1 +@.TypeMapEntry.23924_to = private unnamed_addr constant [44 x i8] c"org/apache/http/protocol/HttpRequestHandler\00", align 1 +@.TypeMapEntry.23925_from = private unnamed_addr constant [66 x i8] c"Org.Apache.Http.Protocol.IHttpRequestHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23926_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Protocol.IHttpRequestHandlerResolver, Mono.Android\00", align 1 +@.TypeMapEntry.23927_to = private unnamed_addr constant [52 x i8] c"org/apache/http/protocol/HttpRequestHandlerResolver\00", align 1 +@.TypeMapEntry.23928_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Protocol.IHttpRequestHandlerResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23929_from = private unnamed_addr constant [67 x i8] c"Org.Apache.Http.Protocol.IHttpRequestInterceptorList, Mono.Android\00", align 1 +@.TypeMapEntry.23930_to = private unnamed_addr constant [52 x i8] c"org/apache/http/protocol/HttpRequestInterceptorList\00", align 1 +@.TypeMapEntry.23931_from = private unnamed_addr constant [74 x i8] c"Org.Apache.Http.Protocol.IHttpRequestInterceptorListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23932_from = private unnamed_addr constant [68 x i8] c"Org.Apache.Http.Protocol.IHttpResponseInterceptorList, Mono.Android\00", align 1 +@.TypeMapEntry.23933_to = private unnamed_addr constant [53 x i8] c"org/apache/http/protocol/HttpResponseInterceptorList\00", align 1 +@.TypeMapEntry.23934_from = private unnamed_addr constant [75 x i8] c"Org.Apache.Http.Protocol.IHttpResponseInterceptorListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23935_from = private unnamed_addr constant [58 x i8] c"Org.Apache.Http.Protocol.RequestConnControl, Mono.Android\00", align 1 +@.TypeMapEntry.23936_to = private unnamed_addr constant [44 x i8] c"org/apache/http/protocol/RequestConnControl\00", align 1 +@.TypeMapEntry.23937_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Protocol.RequestContent, Mono.Android\00", align 1 +@.TypeMapEntry.23938_to = private unnamed_addr constant [40 x i8] c"org/apache/http/protocol/RequestContent\00", align 1 +@.TypeMapEntry.23939_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Protocol.RequestDate, Mono.Android\00", align 1 +@.TypeMapEntry.23940_to = private unnamed_addr constant [37 x i8] c"org/apache/http/protocol/RequestDate\00", align 1 +@.TypeMapEntry.23941_from = private unnamed_addr constant [61 x i8] c"Org.Apache.Http.Protocol.RequestExpectContinue, Mono.Android\00", align 1 +@.TypeMapEntry.23942_to = private unnamed_addr constant [47 x i8] c"org/apache/http/protocol/RequestExpectContinue\00", align 1 +@.TypeMapEntry.23943_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Protocol.RequestTargetHost, Mono.Android\00", align 1 +@.TypeMapEntry.23944_to = private unnamed_addr constant [43 x i8] c"org/apache/http/protocol/RequestTargetHost\00", align 1 +@.TypeMapEntry.23945_from = private unnamed_addr constant [56 x i8] c"Org.Apache.Http.Protocol.RequestUserAgent, Mono.Android\00", align 1 +@.TypeMapEntry.23946_to = private unnamed_addr constant [42 x i8] c"org/apache/http/protocol/RequestUserAgent\00", align 1 +@.TypeMapEntry.23947_from = private unnamed_addr constant [59 x i8] c"Org.Apache.Http.Protocol.ResponseConnControl, Mono.Android\00", align 1 +@.TypeMapEntry.23948_to = private unnamed_addr constant [45 x i8] c"org/apache/http/protocol/ResponseConnControl\00", align 1 +@.TypeMapEntry.23949_from = private unnamed_addr constant [55 x i8] c"Org.Apache.Http.Protocol.ResponseContent, Mono.Android\00", align 1 +@.TypeMapEntry.23950_to = private unnamed_addr constant [41 x i8] c"org/apache/http/protocol/ResponseContent\00", align 1 +@.TypeMapEntry.23951_from = private unnamed_addr constant [52 x i8] c"Org.Apache.Http.Protocol.ResponseDate, Mono.Android\00", align 1 +@.TypeMapEntry.23952_to = private unnamed_addr constant [38 x i8] c"org/apache/http/protocol/ResponseDate\00", align 1 +@.TypeMapEntry.23953_from = private unnamed_addr constant [54 x i8] c"Org.Apache.Http.Protocol.ResponseServer, Mono.Android\00", align 1 +@.TypeMapEntry.23954_to = private unnamed_addr constant [40 x i8] c"org/apache/http/protocol/ResponseServer\00", align 1 +@.TypeMapEntry.23955_from = private unnamed_addr constant [60 x i8] c"Org.Apache.Http.Protocol.SyncBasicHttpContext, Mono.Android\00", align 1 +@.TypeMapEntry.23956_to = private unnamed_addr constant [46 x i8] c"org/apache/http/protocol/SyncBasicHttpContext\00", align 1 +@.TypeMapEntry.23957_from = private unnamed_addr constant [57 x i8] c"Org.Apache.Http.Protocol.UriPatternMatcher, Mono.Android\00", align 1 +@.TypeMapEntry.23958_to = private unnamed_addr constant [43 x i8] c"org/apache/http/protocol/UriPatternMatcher\00", align 1 +@.TypeMapEntry.23959_from = private unnamed_addr constant [48 x i8] c"Org.Apache.Http.ProtocolException, Mono.Android\00", align 1 +@.TypeMapEntry.23960_to = private unnamed_addr constant [34 x i8] c"org/apache/http/ProtocolException\00", align 1 +@.TypeMapEntry.23961_from = private unnamed_addr constant [46 x i8] c"Org.Apache.Http.ProtocolVersion, Mono.Android\00", align 1 +@.TypeMapEntry.23962_to = private unnamed_addr constant [32 x i8] c"org/apache/http/ProtocolVersion\00", align 1 +@.TypeMapEntry.23963_from = private unnamed_addr constant [62 x i8] c"Org.Apache.Http.UnsupportedHttpVersionException, Mono.Android\00", align 1 +@.TypeMapEntry.23964_to = private unnamed_addr constant [48 x i8] c"org/apache/http/UnsupportedHttpVersionException\00", align 1 +@.TypeMapEntry.23965_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Util.ByteArrayBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23966_to = private unnamed_addr constant [37 x i8] c"org/apache/http/util/ByteArrayBuffer\00", align 1 +@.TypeMapEntry.23967_from = private unnamed_addr constant [51 x i8] c"Org.Apache.Http.Util.CharArrayBuffer, Mono.Android\00", align 1 +@.TypeMapEntry.23968_to = private unnamed_addr constant [37 x i8] c"org/apache/http/util/CharArrayBuffer\00", align 1 +@.TypeMapEntry.23969_from = private unnamed_addr constant [49 x i8] c"Org.Apache.Http.Util.EncodingUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23970_to = private unnamed_addr constant [35 x i8] c"org/apache/http/util/EncodingUtils\00", align 1 +@.TypeMapEntry.23971_from = private unnamed_addr constant [47 x i8] c"Org.Apache.Http.Util.EntityUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23972_to = private unnamed_addr constant [33 x i8] c"org/apache/http/util/EntityUtils\00", align 1 +@.TypeMapEntry.23973_from = private unnamed_addr constant [50 x i8] c"Org.Apache.Http.Util.ExceptionUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23974_to = private unnamed_addr constant [36 x i8] c"org/apache/http/util/ExceptionUtils\00", align 1 +@.TypeMapEntry.23975_from = private unnamed_addr constant [45 x i8] c"Org.Apache.Http.Util.LangUtils, Mono.Android\00", align 1 +@.TypeMapEntry.23976_to = private unnamed_addr constant [31 x i8] c"org/apache/http/util/LangUtils\00", align 1 +@.TypeMapEntry.23977_from = private unnamed_addr constant [47 x i8] c"Org.Apache.Http.Util.VersionInfo, Mono.Android\00", align 1 +@.TypeMapEntry.23978_to = private unnamed_addr constant [33 x i8] c"org/apache/http/util/VersionInfo\00", align 1 +@.TypeMapEntry.23979_from = private unnamed_addr constant [33 x i8] c"Org.Json.JSONArray, Mono.Android\00", align 1 +@.TypeMapEntry.23980_to = private unnamed_addr constant [19 x i8] c"org/json/JSONArray\00", align 1 +@.TypeMapEntry.23981_from = private unnamed_addr constant [37 x i8] c"Org.Json.JSONException, Mono.Android\00", align 1 +@.TypeMapEntry.23982_to = private unnamed_addr constant [23 x i8] c"org/json/JSONException\00", align 1 +@.TypeMapEntry.23983_from = private unnamed_addr constant [34 x i8] c"Org.Json.JSONObject, Mono.Android\00", align 1 +@.TypeMapEntry.23984_to = private unnamed_addr constant [20 x i8] c"org/json/JSONObject\00", align 1 +@.TypeMapEntry.23985_from = private unnamed_addr constant [36 x i8] c"Org.Json.JSONStringer, Mono.Android\00", align 1 +@.TypeMapEntry.23986_to = private unnamed_addr constant [22 x i8] c"org/json/JSONStringer\00", align 1 +@.TypeMapEntry.23987_from = private unnamed_addr constant [35 x i8] c"Org.Json.JSONTokener, Mono.Android\00", align 1 +@.TypeMapEntry.23988_to = private unnamed_addr constant [21 x i8] c"org/json/JSONTokener\00", align 1 +@.TypeMapEntry.23989_from = private unnamed_addr constant [35 x i8] c"Org.W3c.Dom.DOMError, Mono.Android\00", align 1 +@.TypeMapEntry.23990_to = private unnamed_addr constant [35 x i8] c"mono/internal/org/w3c/dom/DOMError\00", align 1 +@.TypeMapEntry.23991_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.DOMException, Mono.Android\00", align 1 +@.TypeMapEntry.23992_to = private unnamed_addr constant [25 x i8] c"org/w3c/dom/DOMException\00", align 1 +@.TypeMapEntry.23993_from = private unnamed_addr constant [32 x i8] c"Org.W3c.Dom.IAttr, Mono.Android\00", align 1 +@.TypeMapEntry.23994_to = private unnamed_addr constant [17 x i8] c"org/w3c/dom/Attr\00", align 1 +@.TypeMapEntry.23995_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.IAttrInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23996_from = private unnamed_addr constant [40 x i8] c"Org.W3c.Dom.ICDATASection, Mono.Android\00", align 1 +@.TypeMapEntry.23997_to = private unnamed_addr constant [25 x i8] c"org/w3c/dom/CDATASection\00", align 1 +@.TypeMapEntry.23998_from = private unnamed_addr constant [47 x i8] c"Org.W3c.Dom.ICDATASectionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.23999_from = private unnamed_addr constant [41 x i8] c"Org.W3c.Dom.ICharacterData, Mono.Android\00", align 1 +@.TypeMapEntry.24000_to = private unnamed_addr constant [26 x i8] c"org/w3c/dom/CharacterData\00", align 1 +@.TypeMapEntry.24001_from = private unnamed_addr constant [48 x i8] c"Org.W3c.Dom.ICharacterDataInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24002_from = private unnamed_addr constant [35 x i8] c"Org.W3c.Dom.IComment, Mono.Android\00", align 1 +@.TypeMapEntry.24003_to = private unnamed_addr constant [20 x i8] c"org/w3c/dom/Comment\00", align 1 +@.TypeMapEntry.24004_from = private unnamed_addr constant [42 x i8] c"Org.W3c.Dom.ICommentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24005_from = private unnamed_addr constant [44 x i8] c"Org.W3c.Dom.IDOMConfiguration, Mono.Android\00", align 1 +@.TypeMapEntry.24006_to = private unnamed_addr constant [29 x i8] c"org/w3c/dom/DOMConfiguration\00", align 1 +@.TypeMapEntry.24007_from = private unnamed_addr constant [51 x i8] c"Org.W3c.Dom.IDOMConfigurationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24008_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.IDOMError, Mono.Android\00", align 1 +@.TypeMapEntry.24009_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/DOMError\00", align 1 +@.TypeMapEntry.24010_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.IDOMErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24011_to = private unnamed_addr constant [28 x i8] c"org/w3c/dom/DOMErrorHandler\00", align 1 +@.TypeMapEntry.24012_from = private unnamed_addr constant [50 x i8] c"Org.W3c.Dom.IDOMErrorHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24013_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.IDOMErrorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24014_from = private unnamed_addr constant [45 x i8] c"Org.W3c.Dom.IDOMImplementation, Mono.Android\00", align 1 +@.TypeMapEntry.24015_to = private unnamed_addr constant [30 x i8] c"org/w3c/dom/DOMImplementation\00", align 1 +@.TypeMapEntry.24016_from = private unnamed_addr constant [52 x i8] c"Org.W3c.Dom.IDOMImplementationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24017_from = private unnamed_addr constant [49 x i8] c"Org.W3c.Dom.IDOMImplementationList, Mono.Android\00", align 1 +@.TypeMapEntry.24018_to = private unnamed_addr constant [34 x i8] c"org/w3c/dom/DOMImplementationList\00", align 1 +@.TypeMapEntry.24019_from = private unnamed_addr constant [56 x i8] c"Org.W3c.Dom.IDOMImplementationListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24020_from = private unnamed_addr constant [51 x i8] c"Org.W3c.Dom.IDOMImplementationSource, Mono.Android\00", align 1 +@.TypeMapEntry.24021_to = private unnamed_addr constant [36 x i8] c"org/w3c/dom/DOMImplementationSource\00", align 1 +@.TypeMapEntry.24022_from = private unnamed_addr constant [58 x i8] c"Org.W3c.Dom.IDOMImplementationSourceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24023_from = private unnamed_addr constant [38 x i8] c"Org.W3c.Dom.IDOMLocator, Mono.Android\00", align 1 +@.TypeMapEntry.24024_to = private unnamed_addr constant [23 x i8] c"org/w3c/dom/DOMLocator\00", align 1 +@.TypeMapEntry.24025_from = private unnamed_addr constant [45 x i8] c"Org.W3c.Dom.IDOMLocatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24026_from = private unnamed_addr constant [41 x i8] c"Org.W3c.Dom.IDOMStringList, Mono.Android\00", align 1 +@.TypeMapEntry.24027_to = private unnamed_addr constant [26 x i8] c"org/w3c/dom/DOMStringList\00", align 1 +@.TypeMapEntry.24028_from = private unnamed_addr constant [48 x i8] c"Org.W3c.Dom.IDOMStringListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24029_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.IDocument, Mono.Android\00", align 1 +@.TypeMapEntry.24030_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/Document\00", align 1 +@.TypeMapEntry.24031_from = private unnamed_addr constant [44 x i8] c"Org.W3c.Dom.IDocumentFragment, Mono.Android\00", align 1 +@.TypeMapEntry.24032_to = private unnamed_addr constant [29 x i8] c"org/w3c/dom/DocumentFragment\00", align 1 +@.TypeMapEntry.24033_from = private unnamed_addr constant [51 x i8] c"Org.W3c.Dom.IDocumentFragmentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24034_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.IDocumentInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24035_from = private unnamed_addr constant [40 x i8] c"Org.W3c.Dom.IDocumentType, Mono.Android\00", align 1 +@.TypeMapEntry.24036_to = private unnamed_addr constant [25 x i8] c"org/w3c/dom/DocumentType\00", align 1 +@.TypeMapEntry.24037_from = private unnamed_addr constant [47 x i8] c"Org.W3c.Dom.IDocumentTypeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24038_from = private unnamed_addr constant [35 x i8] c"Org.W3c.Dom.IElement, Mono.Android\00", align 1 +@.TypeMapEntry.24039_to = private unnamed_addr constant [20 x i8] c"org/w3c/dom/Element\00", align 1 +@.TypeMapEntry.24040_from = private unnamed_addr constant [42 x i8] c"Org.W3c.Dom.IElementInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24041_from = private unnamed_addr constant [34 x i8] c"Org.W3c.Dom.IEntity, Mono.Android\00", align 1 +@.TypeMapEntry.24042_to = private unnamed_addr constant [19 x i8] c"org/w3c/dom/Entity\00", align 1 +@.TypeMapEntry.24043_from = private unnamed_addr constant [41 x i8] c"Org.W3c.Dom.IEntityInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24044_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.IEntityReference, Mono.Android\00", align 1 +@.TypeMapEntry.24045_to = private unnamed_addr constant [28 x i8] c"org/w3c/dom/EntityReference\00", align 1 +@.TypeMapEntry.24046_from = private unnamed_addr constant [50 x i8] c"Org.W3c.Dom.IEntityReferenceInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24047_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.INameList, Mono.Android\00", align 1 +@.TypeMapEntry.24048_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/NameList\00", align 1 +@.TypeMapEntry.24049_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.INameListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24050_from = private unnamed_addr constant [40 x i8] c"Org.W3c.Dom.INamedNodeMap, Mono.Android\00", align 1 +@.TypeMapEntry.24051_to = private unnamed_addr constant [25 x i8] c"org/w3c/dom/NamedNodeMap\00", align 1 +@.TypeMapEntry.24052_from = private unnamed_addr constant [47 x i8] c"Org.W3c.Dom.INamedNodeMapInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24053_from = private unnamed_addr constant [32 x i8] c"Org.W3c.Dom.INode, Mono.Android\00", align 1 +@.TypeMapEntry.24054_to = private unnamed_addr constant [17 x i8] c"org/w3c/dom/Node\00", align 1 +@.TypeMapEntry.24055_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.INodeInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24056_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.INodeList, Mono.Android\00", align 1 +@.TypeMapEntry.24057_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/NodeList\00", align 1 +@.TypeMapEntry.24058_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.INodeListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24059_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.INotation, Mono.Android\00", align 1 +@.TypeMapEntry.24060_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/Notation\00", align 1 +@.TypeMapEntry.24061_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.INotationInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24062_from = private unnamed_addr constant [49 x i8] c"Org.W3c.Dom.IProcessingInstruction, Mono.Android\00", align 1 +@.TypeMapEntry.24063_to = private unnamed_addr constant [34 x i8] c"org/w3c/dom/ProcessingInstruction\00", align 1 +@.TypeMapEntry.24064_from = private unnamed_addr constant [56 x i8] c"Org.W3c.Dom.IProcessingInstructionInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24065_from = private unnamed_addr constant [32 x i8] c"Org.W3c.Dom.IText, Mono.Android\00", align 1 +@.TypeMapEntry.24066_to = private unnamed_addr constant [17 x i8] c"org/w3c/dom/Text\00", align 1 +@.TypeMapEntry.24067_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.ITextInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24068_from = private unnamed_addr constant [36 x i8] c"Org.W3c.Dom.ITypeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.24069_to = private unnamed_addr constant [21 x i8] c"org/w3c/dom/TypeInfo\00", align 1 +@.TypeMapEntry.24070_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.ITypeInfoInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24071_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.IUserDataHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24072_to = private unnamed_addr constant [28 x i8] c"org/w3c/dom/UserDataHandler\00", align 1 +@.TypeMapEntry.24073_from = private unnamed_addr constant [50 x i8] c"Org.W3c.Dom.IUserDataHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24074_from = private unnamed_addr constant [49 x i8] c"Org.W3c.Dom.LS.DOMImplementationLS, Mono.Android\00", align 1 +@.TypeMapEntry.24075_to = private unnamed_addr constant [49 x i8] c"mono/internal/org/w3c/dom/ls/DOMImplementationLS\00", align 1 +@.TypeMapEntry.24076_from = private unnamed_addr constant [50 x i8] c"Org.W3c.Dom.LS.IDOMImplementationLS, Mono.Android\00", align 1 +@.TypeMapEntry.24077_to = private unnamed_addr constant [35 x i8] c"org/w3c/dom/ls/DOMImplementationLS\00", align 1 +@.TypeMapEntry.24078_from = private unnamed_addr constant [57 x i8] c"Org.W3c.Dom.LS.IDOMImplementationLSInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24079_from = private unnamed_addr constant [38 x i8] c"Org.W3c.Dom.LS.ILSInput, Mono.Android\00", align 1 +@.TypeMapEntry.24080_to = private unnamed_addr constant [23 x i8] c"org/w3c/dom/ls/LSInput\00", align 1 +@.TypeMapEntry.24081_from = private unnamed_addr constant [45 x i8] c"Org.W3c.Dom.LS.ILSInputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24082_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.LS.ILSOutput, Mono.Android\00", align 1 +@.TypeMapEntry.24083_to = private unnamed_addr constant [24 x i8] c"org/w3c/dom/ls/LSOutput\00", align 1 +@.TypeMapEntry.24084_from = private unnamed_addr constant [46 x i8] c"Org.W3c.Dom.LS.ILSOutputInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24085_from = private unnamed_addr constant [39 x i8] c"Org.W3c.Dom.LS.ILSParser, Mono.Android\00", align 1 +@.TypeMapEntry.24086_to = private unnamed_addr constant [24 x i8] c"org/w3c/dom/ls/LSParser\00", align 1 +@.TypeMapEntry.24087_from = private unnamed_addr constant [45 x i8] c"Org.W3c.Dom.LS.ILSParserFilter, Mono.Android\00", align 1 +@.TypeMapEntry.24088_to = private unnamed_addr constant [30 x i8] c"org/w3c/dom/ls/LSParserFilter\00", align 1 +@.TypeMapEntry.24089_from = private unnamed_addr constant [52 x i8] c"Org.W3c.Dom.LS.ILSParserFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24090_from = private unnamed_addr constant [46 x i8] c"Org.W3c.Dom.LS.ILSParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24091_from = private unnamed_addr constant [49 x i8] c"Org.W3c.Dom.LS.ILSResourceResolver, Mono.Android\00", align 1 +@.TypeMapEntry.24092_to = private unnamed_addr constant [34 x i8] c"org/w3c/dom/ls/LSResourceResolver\00", align 1 +@.TypeMapEntry.24093_from = private unnamed_addr constant [56 x i8] c"Org.W3c.Dom.LS.ILSResourceResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24094_from = private unnamed_addr constant [43 x i8] c"Org.W3c.Dom.LS.ILSSerializer, Mono.Android\00", align 1 +@.TypeMapEntry.24095_to = private unnamed_addr constant [28 x i8] c"org/w3c/dom/ls/LSSerializer\00", align 1 +@.TypeMapEntry.24096_from = private unnamed_addr constant [50 x i8] c"Org.W3c.Dom.LS.ILSSerializerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24097_from = private unnamed_addr constant [41 x i8] c"Org.W3c.Dom.LS.LSException, Mono.Android\00", align 1 +@.TypeMapEntry.24098_to = private unnamed_addr constant [27 x i8] c"org/w3c/dom/ls/LSException\00", align 1 +@.TypeMapEntry.24099_from = private unnamed_addr constant [38 x i8] c"Org.W3c.Dom.LS.LSParser, Mono.Android\00", align 1 +@.TypeMapEntry.24100_to = private unnamed_addr constant [38 x i8] c"mono/internal/org/w3c/dom/ls/LSParser\00", align 1 +@.TypeMapEntry.24101_from = private unnamed_addr constant [44 x i8] c"Org.W3c.Dom.LS.LSParserFilter, Mono.Android\00", align 1 +@.TypeMapEntry.24102_to = private unnamed_addr constant [44 x i8] c"mono/internal/org/w3c/dom/ls/LSParserFilter\00", align 1 +@.TypeMapEntry.24103_from = private unnamed_addr constant [31 x i8] c"Org.W3c.Dom.Node, Mono.Android\00", align 1 +@.TypeMapEntry.24104_to = private unnamed_addr constant [31 x i8] c"mono/internal/org/w3c/dom/Node\00", align 1 +@.TypeMapEntry.24105_from = private unnamed_addr constant [35 x i8] c"Org.W3c.Dom.TypeInfo, Mono.Android\00", align 1 +@.TypeMapEntry.24106_to = private unnamed_addr constant [35 x i8] c"mono/internal/org/w3c/dom/TypeInfo\00", align 1 +@.TypeMapEntry.24107_from = private unnamed_addr constant [42 x i8] c"Org.W3c.Dom.UserDataHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24108_to = private unnamed_addr constant [42 x i8] c"mono/internal/org/w3c/dom/UserDataHandler\00", align 1 +@.TypeMapEntry.24109_from = private unnamed_addr constant [46 x i8] c"Org.Xml.Sax.Ext.Attributes2Impl, Mono.Android\00", align 1 +@.TypeMapEntry.24110_to = private unnamed_addr constant [32 x i8] c"org/xml/sax/ext/Attributes2Impl\00", align 1 +@.TypeMapEntry.24111_from = private unnamed_addr constant [46 x i8] c"Org.Xml.Sax.Ext.DefaultHandler2, Mono.Android\00", align 1 +@.TypeMapEntry.24112_to = private unnamed_addr constant [32 x i8] c"org/xml/sax/ext/DefaultHandler2\00", align 1 +@.TypeMapEntry.24113_from = private unnamed_addr constant [43 x i8] c"Org.Xml.Sax.Ext.IAttributes2, Mono.Android\00", align 1 +@.TypeMapEntry.24114_to = private unnamed_addr constant [28 x i8] c"org/xml/sax/ext/Attributes2\00", align 1 +@.TypeMapEntry.24115_from = private unnamed_addr constant [50 x i8] c"Org.Xml.Sax.Ext.IAttributes2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.24116_from = private unnamed_addr constant [43 x i8] c"Org.Xml.Sax.Ext.IDeclHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24117_to = private unnamed_addr constant [28 x i8] c"org/xml/sax/ext/DeclHandler\00", align 1 +@.TypeMapEntry.24118_from = private unnamed_addr constant [50 x i8] c"Org.Xml.Sax.Ext.IDeclHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24119_from = private unnamed_addr constant [47 x i8] c"Org.Xml.Sax.Ext.IEntityResolver2, Mono.Android\00", align 1 +@.TypeMapEntry.24120_to = private unnamed_addr constant [32 x i8] c"org/xml/sax/ext/EntityResolver2\00", align 1 +@.TypeMapEntry.24121_from = private unnamed_addr constant [54 x i8] c"Org.Xml.Sax.Ext.IEntityResolver2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.24122_from = private unnamed_addr constant [46 x i8] c"Org.Xml.Sax.Ext.ILexicalHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24123_to = private unnamed_addr constant [31 x i8] c"org/xml/sax/ext/LexicalHandler\00", align 1 +@.TypeMapEntry.24124_from = private unnamed_addr constant [53 x i8] c"Org.Xml.Sax.Ext.ILexicalHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24125_from = private unnamed_addr constant [40 x i8] c"Org.Xml.Sax.Ext.ILocator2, Mono.Android\00", align 1 +@.TypeMapEntry.24126_to = private unnamed_addr constant [25 x i8] c"org/xml/sax/ext/Locator2\00", align 1 +@.TypeMapEntry.24127_from = private unnamed_addr constant [47 x i8] c"Org.Xml.Sax.Ext.ILocator2Invoker, Mono.Android\00", align 1 +@.TypeMapEntry.24128_from = private unnamed_addr constant [43 x i8] c"Org.Xml.Sax.Ext.Locator2Impl, Mono.Android\00", align 1 +@.TypeMapEntry.24129_to = private unnamed_addr constant [29 x i8] c"org/xml/sax/ext/Locator2Impl\00", align 1 +@.TypeMapEntry.24130_from = private unnamed_addr constant [38 x i8] c"Org.Xml.Sax.HandlerBase, Mono.Android\00", align 1 +@.TypeMapEntry.24131_to = private unnamed_addr constant [24 x i8] c"org/xml/sax/HandlerBase\00", align 1 +@.TypeMapEntry.24132_from = private unnamed_addr constant [52 x i8] c"Org.Xml.Sax.Helpers.AttributeListImpl, Mono.Android\00", align 1 +@.TypeMapEntry.24133_to = private unnamed_addr constant [38 x i8] c"org/xml/sax/helpers/AttributeListImpl\00", align 1 +@.TypeMapEntry.24134_from = private unnamed_addr constant [49 x i8] c"Org.Xml.Sax.Helpers.AttributesImpl, Mono.Android\00", align 1 +@.TypeMapEntry.24135_to = private unnamed_addr constant [35 x i8] c"org/xml/sax/helpers/AttributesImpl\00", align 1 +@.TypeMapEntry.24136_from = private unnamed_addr constant [49 x i8] c"Org.Xml.Sax.Helpers.DefaultHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24137_to = private unnamed_addr constant [35 x i8] c"org/xml/sax/helpers/DefaultHandler\00", align 1 +@.TypeMapEntry.24138_from = private unnamed_addr constant [46 x i8] c"Org.Xml.Sax.Helpers.LocatorImpl, Mono.Android\00", align 1 +@.TypeMapEntry.24139_to = private unnamed_addr constant [32 x i8] c"org/xml/sax/helpers/LocatorImpl\00", align 1 +@.TypeMapEntry.24140_from = private unnamed_addr constant [51 x i8] c"Org.Xml.Sax.Helpers.NamespaceSupport, Mono.Android\00", align 1 +@.TypeMapEntry.24141_to = private unnamed_addr constant [37 x i8] c"org/xml/sax/helpers/NamespaceSupport\00", align 1 +@.TypeMapEntry.24142_from = private unnamed_addr constant [48 x i8] c"Org.Xml.Sax.Helpers.ParserAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.24143_to = private unnamed_addr constant [34 x i8] c"org/xml/sax/helpers/ParserAdapter\00", align 1 +@.TypeMapEntry.24144_from = private unnamed_addr constant [48 x i8] c"Org.Xml.Sax.Helpers.ParserFactory, Mono.Android\00", align 1 +@.TypeMapEntry.24145_to = private unnamed_addr constant [34 x i8] c"org/xml/sax/helpers/ParserFactory\00", align 1 +@.TypeMapEntry.24146_from = private unnamed_addr constant [48 x i8] c"Org.Xml.Sax.Helpers.XMLFilterImpl, Mono.Android\00", align 1 +@.TypeMapEntry.24147_to = private unnamed_addr constant [34 x i8] c"org/xml/sax/helpers/XMLFilterImpl\00", align 1 +@.TypeMapEntry.24148_from = private unnamed_addr constant [51 x i8] c"Org.Xml.Sax.Helpers.XMLReaderAdapter, Mono.Android\00", align 1 +@.TypeMapEntry.24149_to = private unnamed_addr constant [37 x i8] c"org/xml/sax/helpers/XMLReaderAdapter\00", align 1 +@.TypeMapEntry.24150_from = private unnamed_addr constant [51 x i8] c"Org.Xml.Sax.Helpers.XMLReaderFactory, Mono.Android\00", align 1 +@.TypeMapEntry.24151_to = private unnamed_addr constant [37 x i8] c"org/xml/sax/helpers/XMLReaderFactory\00", align 1 +@.TypeMapEntry.24152_from = private unnamed_addr constant [41 x i8] c"Org.Xml.Sax.IAttributeList, Mono.Android\00", align 1 +@.TypeMapEntry.24153_to = private unnamed_addr constant [26 x i8] c"org/xml/sax/AttributeList\00", align 1 +@.TypeMapEntry.24154_from = private unnamed_addr constant [48 x i8] c"Org.Xml.Sax.IAttributeListInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24155_from = private unnamed_addr constant [38 x i8] c"Org.Xml.Sax.IAttributes, Mono.Android\00", align 1 +@.TypeMapEntry.24156_to = private unnamed_addr constant [23 x i8] c"org/xml/sax/Attributes\00", align 1 +@.TypeMapEntry.24157_from = private unnamed_addr constant [45 x i8] c"Org.Xml.Sax.IAttributesInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24158_from = private unnamed_addr constant [42 x i8] c"Org.Xml.Sax.IContentHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24159_to = private unnamed_addr constant [27 x i8] c"org/xml/sax/ContentHandler\00", align 1 +@.TypeMapEntry.24160_from = private unnamed_addr constant [49 x i8] c"Org.Xml.Sax.IContentHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24161_from = private unnamed_addr constant [38 x i8] c"Org.Xml.Sax.IDTDHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24162_to = private unnamed_addr constant [23 x i8] c"org/xml/sax/DTDHandler\00", align 1 +@.TypeMapEntry.24163_from = private unnamed_addr constant [45 x i8] c"Org.Xml.Sax.IDTDHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24164_from = private unnamed_addr constant [43 x i8] c"Org.Xml.Sax.IDocumentHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24165_to = private unnamed_addr constant [28 x i8] c"org/xml/sax/DocumentHandler\00", align 1 +@.TypeMapEntry.24166_from = private unnamed_addr constant [50 x i8] c"Org.Xml.Sax.IDocumentHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24167_from = private unnamed_addr constant [42 x i8] c"Org.Xml.Sax.IEntityResolver, Mono.Android\00", align 1 +@.TypeMapEntry.24168_to = private unnamed_addr constant [27 x i8] c"org/xml/sax/EntityResolver\00", align 1 +@.TypeMapEntry.24169_from = private unnamed_addr constant [49 x i8] c"Org.Xml.Sax.IEntityResolverInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24170_from = private unnamed_addr constant [40 x i8] c"Org.Xml.Sax.IErrorHandler, Mono.Android\00", align 1 +@.TypeMapEntry.24171_to = private unnamed_addr constant [25 x i8] c"org/xml/sax/ErrorHandler\00", align 1 +@.TypeMapEntry.24172_from = private unnamed_addr constant [47 x i8] c"Org.Xml.Sax.IErrorHandlerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24173_from = private unnamed_addr constant [35 x i8] c"Org.Xml.Sax.ILocator, Mono.Android\00", align 1 +@.TypeMapEntry.24174_to = private unnamed_addr constant [20 x i8] c"org/xml/sax/Locator\00", align 1 +@.TypeMapEntry.24175_from = private unnamed_addr constant [42 x i8] c"Org.Xml.Sax.ILocatorInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24176_from = private unnamed_addr constant [34 x i8] c"Org.Xml.Sax.IParser, Mono.Android\00", align 1 +@.TypeMapEntry.24177_to = private unnamed_addr constant [19 x i8] c"org/xml/sax/Parser\00", align 1 +@.TypeMapEntry.24178_from = private unnamed_addr constant [41 x i8] c"Org.Xml.Sax.IParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24179_from = private unnamed_addr constant [37 x i8] c"Org.Xml.Sax.IXMLFilter, Mono.Android\00", align 1 +@.TypeMapEntry.24180_to = private unnamed_addr constant [22 x i8] c"org/xml/sax/XMLFilter\00", align 1 +@.TypeMapEntry.24181_from = private unnamed_addr constant [44 x i8] c"Org.Xml.Sax.IXMLFilterInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24182_from = private unnamed_addr constant [37 x i8] c"Org.Xml.Sax.IXMLReader, Mono.Android\00", align 1 +@.TypeMapEntry.24183_to = private unnamed_addr constant [22 x i8] c"org/xml/sax/XMLReader\00", align 1 +@.TypeMapEntry.24184_from = private unnamed_addr constant [44 x i8] c"Org.Xml.Sax.IXMLReaderInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24185_from = private unnamed_addr constant [38 x i8] c"Org.Xml.Sax.InputSource, Mono.Android\00", align 1 +@.TypeMapEntry.24186_to = private unnamed_addr constant [24 x i8] c"org/xml/sax/InputSource\00", align 1 +@.TypeMapEntry.24187_from = private unnamed_addr constant [39 x i8] c"Org.Xml.Sax.SAXException, Mono.Android\00", align 1 +@.TypeMapEntry.24188_to = private unnamed_addr constant [25 x i8] c"org/xml/sax/SAXException\00", align 1 +@.TypeMapEntry.24189_from = private unnamed_addr constant [52 x i8] c"Org.Xml.Sax.SAXNotRecognizedException, Mono.Android\00", align 1 +@.TypeMapEntry.24190_to = private unnamed_addr constant [38 x i8] c"org/xml/sax/SAXNotRecognizedException\00", align 1 +@.TypeMapEntry.24191_from = private unnamed_addr constant [51 x i8] c"Org.Xml.Sax.SAXNotSupportedException, Mono.Android\00", align 1 +@.TypeMapEntry.24192_to = private unnamed_addr constant [37 x i8] c"org/xml/sax/SAXNotSupportedException\00", align 1 +@.TypeMapEntry.24193_from = private unnamed_addr constant [44 x i8] c"Org.Xml.Sax.SAXParseException, Mono.Android\00", align 1 +@.TypeMapEntry.24194_to = private unnamed_addr constant [30 x i8] c"org/xml/sax/SAXParseException\00", align 1 +@.TypeMapEntry.24195_from = private unnamed_addr constant [44 x i8] c"Org.XmlPull.V1.IXmlPullParser, Mono.Android\00", align 1 +@.TypeMapEntry.24196_to = private unnamed_addr constant [29 x i8] c"org/xmlpull/v1/XmlPullParser\00", align 1 +@.TypeMapEntry.24197_from = private unnamed_addr constant [51 x i8] c"Org.XmlPull.V1.IXmlPullParserInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24198_from = private unnamed_addr constant [44 x i8] c"Org.XmlPull.V1.IXmlSerializer, Mono.Android\00", align 1 +@.TypeMapEntry.24199_to = private unnamed_addr constant [29 x i8] c"org/xmlpull/v1/XmlSerializer\00", align 1 +@.TypeMapEntry.24200_from = private unnamed_addr constant [51 x i8] c"Org.XmlPull.V1.IXmlSerializerInvoker, Mono.Android\00", align 1 +@.TypeMapEntry.24201_from = private unnamed_addr constant [43 x i8] c"Org.XmlPull.V1.XmlPullParser, Mono.Android\00", align 1 +@.TypeMapEntry.24202_to = private unnamed_addr constant [43 x i8] c"mono/internal/org/xmlpull/v1/XmlPullParser\00", align 1 +@.TypeMapEntry.24203_from = private unnamed_addr constant [52 x i8] c"Org.XmlPull.V1.XmlPullParserException, Mono.Android\00", align 1 +@.TypeMapEntry.24204_to = private unnamed_addr constant [38 x i8] c"org/xmlpull/v1/XmlPullParserException\00", align 1 +@.TypeMapEntry.24205_from = private unnamed_addr constant [50 x i8] c"Org.XmlPull.V1.XmlPullParserFactory, Mono.Android\00", align 1 +@.TypeMapEntry.24206_to = private unnamed_addr constant [36 x i8] c"org/xmlpull/v1/XmlPullParserFactory\00", align 1 +@.TypeMapEntry.24207_from = private unnamed_addr constant [41 x i8] c"Org.Xmlpull.V1.Sax2.Driver, Mono.Android\00", align 1 +@.TypeMapEntry.24208_to = private unnamed_addr constant [27 x i8] c"org/xmlpull/v1/sax2/Driver\00", align 1 +@.TypeMapEntry.24209_from = private unnamed_addr constant [99 x i8] c"Xamarin.Android.Net.ServerCertificateCustomValidator+AlwaysAcceptingHostnameVerifier, Mono.Android\00", align 1 +@.TypeMapEntry.24210_to = private unnamed_addr constant [85 x i8] c"xamarin/android/net/ServerCertificateCustomValidator_AlwaysAcceptingHostnameVerifier\00", align 1 +@.TypeMapEntry.24211_from = private unnamed_addr constant [95 x i8] c"Xamarin.Android.Net.ServerCertificateCustomValidator+TrustManager+FakeSSLSession, Mono.Android\00", align 1 +@.TypeMapEntry.24212_to = private unnamed_addr constant [81 x i8] c"xamarin/android/net/ServerCertificateCustomValidator_TrustManager_FakeSSLSession\00", align 1 +@.TypeMapEntry.24213_from = private unnamed_addr constant [80 x i8] c"Xamarin.Android.Net.ServerCertificateCustomValidator+TrustManager, Mono.Android\00", align 1 +@.TypeMapEntry.24214_to = private unnamed_addr constant [66 x i8] c"xamarin/android/net/ServerCertificateCustomValidator_TrustManager\00", align 1 +@.TypeMapEntry.24215_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24216_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/aead/AeadConfig\00", align 1 +@.TypeMapEntry.24217_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24218_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/aead/AeadFactory\00", align 1 +@.TypeMapEntry.24219_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24220_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/aead/AeadKey\00", align 1 +@.TypeMapEntry.24221_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24222_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24223_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/AeadKeyTemplates\00", align 1 +@.TypeMapEntry.24224_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24225_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/aead/AeadParameters\00", align 1 +@.TypeMapEntry.24226_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24227_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AeadWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24228_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/aead/AeadWrapper\00", align 1 +@.TypeMapEntry.24229_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24230_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadKey$Builder\00", align 1 +@.TypeMapEntry.24231_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24232_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadKey\00", align 1 +@.TypeMapEntry.24233_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24234_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadKeyManager\00", align 1 +@.TypeMapEntry.24235_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24236_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadParameters$Builder\00", align 1 +@.TypeMapEntry.24237_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24238_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadParameters$HashType\00", align 1 +@.TypeMapEntry.24239_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24240_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadParameters$Variant\00", align 1 +@.TypeMapEntry.24241_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesCtrHmacAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24242_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesCtrHmacAeadParameters\00", align 1 +@.TypeMapEntry.24243_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24244_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/AesEaxKey$Builder\00", align 1 +@.TypeMapEntry.24245_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24246_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/aead/AesEaxKey\00", align 1 +@.TypeMapEntry.24247_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24248_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/AesEaxKeyManager\00", align 1 +@.TypeMapEntry.24249_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24250_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesEaxParameters$Builder\00", align 1 +@.TypeMapEntry.24251_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24252_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesEaxParameters$Variant\00", align 1 +@.TypeMapEntry.24253_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesEaxParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24254_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/AesEaxParameters\00", align 1 +@.TypeMapEntry.24255_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24256_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/AesGcmKey$Builder\00", align 1 +@.TypeMapEntry.24257_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24258_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/aead/AesGcmKey\00", align 1 +@.TypeMapEntry.24259_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24260_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/AesGcmKeyManager\00", align 1 +@.TypeMapEntry.24261_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24262_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesGcmParameters$Builder\00", align 1 +@.TypeMapEntry.24263_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24264_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/AesGcmParameters$Variant\00", align 1 +@.TypeMapEntry.24265_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24266_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/AesGcmParameters\00", align 1 +@.TypeMapEntry.24267_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24268_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/aead/AesGcmSivKey$Builder\00", align 1 +@.TypeMapEntry.24269_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24270_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/aead/AesGcmSivKey\00", align 1 +@.TypeMapEntry.24271_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24272_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/aead/AesGcmSivKeyManager\00", align 1 +@.TypeMapEntry.24273_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24274_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/aead/AesGcmSivParameters$Builder\00", align 1 +@.TypeMapEntry.24275_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24276_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/aead/AesGcmSivParameters$Variant\00", align 1 +@.TypeMapEntry.24277_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Aead.AesGcmSivParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24278_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/aead/AesGcmSivParameters\00", align 1 +@.TypeMapEntry.24279_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Aead.ChaCha20Poly1305Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24280_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/aead/ChaCha20Poly1305Key\00", align 1 +@.TypeMapEntry.24281_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Aead.ChaCha20Poly1305KeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24282_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/aead/ChaCha20Poly1305KeyManager\00", align 1 +@.TypeMapEntry.24283_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Aead.ChaCha20Poly1305Parameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24284_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/aead/ChaCha20Poly1305Parameters$Variant\00", align 1 +@.TypeMapEntry.24285_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Aead.ChaCha20Poly1305Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24286_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/aead/ChaCha20Poly1305Parameters\00", align 1 +@.TypeMapEntry.24287_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.AesCtrHmacAeadProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24288_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/aead/internal/AesCtrHmacAeadProtoSerialization\00", align 1 +@.TypeMapEntry.24289_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.AesEaxProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24290_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/aead/internal/AesEaxProtoSerialization\00", align 1 +@.TypeMapEntry.24291_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.AesGcmJceUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24292_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/aead/internal/AesGcmJceUtil\00", align 1 +@.TypeMapEntry.24293_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.AesGcmProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24294_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/aead/internal/AesGcmProtoSerialization\00", align 1 +@.TypeMapEntry.24295_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.AesGcmSivProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24296_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/aead/internal/AesGcmSivProtoSerialization\00", align 1 +@.TypeMapEntry.24297_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.ChaCha20Poly1305Jce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24298_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/aead/internal/ChaCha20Poly1305Jce\00", align 1 +@.TypeMapEntry.24299_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.ChaCha20Poly1305ProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24300_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/aead/internal/ChaCha20Poly1305ProtoSerialization\00", align 1 +@.TypeMapEntry.24301_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceAesGcmJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24302_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceAesGcmJce\00", align 1 +@.TypeMapEntry.24303_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceChaCha20, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24304_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceChaCha20\00", align 1 +@.TypeMapEntry.24305_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceChaCha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24306_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceChaCha20Poly1305\00", align 1 +@.TypeMapEntry.24307_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceChaCha20Poly1305Jce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24308_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceChaCha20Poly1305Jce\00", align 1 +@.TypeMapEntry.24309_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceXChaCha20, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24310_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceXChaCha20\00", align 1 +@.TypeMapEntry.24311_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.InsecureNonceXChaCha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24312_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/aead/internal/InsecureNonceXChaCha20Poly1305\00", align 1 +@.TypeMapEntry.24313_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.LegacyFullAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24314_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/aead/internal/LegacyFullAead\00", align 1 +@.TypeMapEntry.24315_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24316_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/internal/Poly1305\00", align 1 +@.TypeMapEntry.24317_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.XAesGcm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24318_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/internal/XAesGcm\00", align 1 +@.TypeMapEntry.24319_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.XAesGcmProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24320_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/aead/internal/XAesGcmProtoSerialization\00", align 1 +@.TypeMapEntry.24321_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.XChaCha20Poly1305Jce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24322_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/aead/internal/XChaCha20Poly1305Jce\00", align 1 +@.TypeMapEntry.24323_from = private unnamed_addr constant [113 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Internal.XChaCha20Poly1305ProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24324_to = private unnamed_addr constant [73 x i8] c"com/google/crypto/tink/aead/internal/XChaCha20Poly1305ProtoSerialization\00", align 1 +@.TypeMapEntry.24325_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.KmsAeadKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24326_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/KmsAeadKeyManager\00", align 1 +@.TypeMapEntry.24327_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Aead.KmsEnvelopeAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24328_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/aead/KmsEnvelopeAead\00", align 1 +@.TypeMapEntry.24329_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Aead.KmsEnvelopeAeadKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24330_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/aead/KmsEnvelopeAeadKeyManager\00", align 1 +@.TypeMapEntry.24331_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24332_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/LegacyKmsAeadKey\00", align 1 +@.TypeMapEntry.24333_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsAeadParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24334_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/aead/LegacyKmsAeadParameters$Variant\00", align 1 +@.TypeMapEntry.24335_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24336_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/aead/LegacyKmsAeadParameters\00", align 1 +@.TypeMapEntry.24337_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24338_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadKey\00", align 1 +@.TypeMapEntry.24339_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24340_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadParameters$Builder\00", align 1 +@.TypeMapEntry.24341_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadParameters+DekParsingStrategy, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24342_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadParameters$DekParsingStrategy\00", align 1 +@.TypeMapEntry.24343_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24344_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadParameters$Variant\00", align 1 +@.TypeMapEntry.24345_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24346_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadParameters\00", align 1 +@.TypeMapEntry.24347_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Aead.LegacyKmsEnvelopeAeadProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24348_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/aead/LegacyKmsEnvelopeAeadProtoSerialization\00", align 1 +@.TypeMapEntry.24349_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Aead.PredefinedAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24350_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/aead/PredefinedAeadParameters\00", align 1 +@.TypeMapEntry.24351_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Subtle.AesGcmFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24352_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/aead/subtle/AesGcmFactory\00", align 1 +@.TypeMapEntry.24353_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Subtle.AesGcmSiv, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24354_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/aead/subtle/AesGcmSiv\00", align 1 +@.TypeMapEntry.24355_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Subtle.IAeadFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24356_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/aead/subtle/AeadFactory\00", align 1 +@.TypeMapEntry.24357_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Aead.Subtle.IAeadFactoryInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24358_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XAesGcmKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24359_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/aead/XAesGcmKey\00", align 1 +@.TypeMapEntry.24360_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XAesGcmKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24361_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/XAesGcmKeyManager\00", align 1 +@.TypeMapEntry.24362_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XAesGcmParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24363_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/aead/XAesGcmParameters$Variant\00", align 1 +@.TypeMapEntry.24364_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XAesGcmParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24365_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/aead/XAesGcmParameters\00", align 1 +@.TypeMapEntry.24366_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XChaCha20Poly1305Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24367_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/aead/XChaCha20Poly1305Key\00", align 1 +@.TypeMapEntry.24368_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XChaCha20Poly1305KeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24369_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/aead/XChaCha20Poly1305KeyManager\00", align 1 +@.TypeMapEntry.24370_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XChaCha20Poly1305Parameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24371_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/aead/XChaCha20Poly1305Parameters$Variant\00", align 1 +@.TypeMapEntry.24372_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Aead.XChaCha20Poly1305Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24373_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/aead/XChaCha20Poly1305Parameters\00", align 1 +@.TypeMapEntry.24374_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Annotations.IAlpha, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24375_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/annotations/Alpha\00", align 1 +@.TypeMapEntry.24376_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Annotations.IAlphaInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24377_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.BinaryKeysetReader, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24378_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/BinaryKeysetReader\00", align 1 +@.TypeMapEntry.24379_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.BinaryKeysetWriter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24380_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/BinaryKeysetWriter\00", align 1 +@.TypeMapEntry.24381_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.CleartextKeysetHandle, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24382_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/CleartextKeysetHandle\00", align 1 +@.TypeMapEntry.24383_from = private unnamed_addr constant [70 x i8] c"Xamarin.Google.Crypto.Tink.Config, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24384_to = private unnamed_addr constant [30 x i8] c"com/google/crypto/tink/Config\00", align 1 +@.TypeMapEntry.24385_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Configs.Internal.TinkFipsUtil+AlgorithmFipsCompatibility, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24386_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/config/internal/TinkFipsUtil$AlgorithmFipsCompatibility\00", align 1 +@.TypeMapEntry.24387_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Configs.Internal.TinkFipsUtil+AlgorithmFipsCompatibilityInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24388_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Configs.Internal.TinkFipsUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24389_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/config/internal/TinkFipsUtil\00", align 1 +@.TypeMapEntry.24390_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Configs.TinkConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24391_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/config/TinkConfig\00", align 1 +@.TypeMapEntry.24392_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Configs.TinkFips, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24393_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/config/TinkFips\00", align 1 +@.TypeMapEntry.24394_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Configuration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24395_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/Configuration\00", align 1 +@.TypeMapEntry.24396_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.ConfigurationFips140v2, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24397_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/ConfigurationFips140v2\00", align 1 +@.TypeMapEntry.24398_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.ConfigurationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24399_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.ConfigurationV0, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24400_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/ConfigurationV0\00", align 1 +@.TypeMapEntry.24401_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.CryptoFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24402_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/CryptoFormat\00", align 1 +@.TypeMapEntry.24403_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24404_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/daead/AesSivKey$Builder\00", align 1 +@.TypeMapEntry.24405_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24406_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/daead/AesSivKey\00", align 1 +@.TypeMapEntry.24407_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24408_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/daead/AesSivKeyManager\00", align 1 +@.TypeMapEntry.24409_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24410_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/daead/AesSivParameters$Builder\00", align 1 +@.TypeMapEntry.24411_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24412_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/daead/AesSivParameters$Variant\00", align 1 +@.TypeMapEntry.24413_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.DAead.AesSivParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24414_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/daead/AesSivParameters\00", align 1 +@.TypeMapEntry.24415_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24416_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/daead/DeterministicAeadConfig\00", align 1 +@.TypeMapEntry.24417_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24418_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/daead/DeterministicAeadFactory\00", align 1 +@.TypeMapEntry.24419_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24420_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/daead/DeterministicAeadKey\00", align 1 +@.TypeMapEntry.24421_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24422_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24423_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/daead/DeterministicAeadKeyTemplates\00", align 1 +@.TypeMapEntry.24424_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24425_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/daead/DeterministicAeadParameters\00", align 1 +@.TypeMapEntry.24426_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24427_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.DAead.DeterministicAeadWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24428_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/daead/DeterministicAeadWrapper\00", align 1 +@.TypeMapEntry.24429_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.DAead.Internal.AesSivProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24430_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/daead/internal/AesSivProtoSerialization\00", align 1 +@.TypeMapEntry.24431_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.DAead.Internal.LegacyFullDeterministicAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24432_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/daead/internal/LegacyFullDeterministicAead\00", align 1 +@.TypeMapEntry.24433_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.DAead.PredefinedDeterministicAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24434_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/daead/PredefinedDeterministicAeadParameters\00", align 1 +@.TypeMapEntry.24435_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesAeadHkdfPrivateKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24436_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/hybrid/EciesAeadHkdfPrivateKeyManager\00", align 1 +@.TypeMapEntry.24437_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24438_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/hybrid/EciesParameters$Builder\00", align 1 +@.TypeMapEntry.24439_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters+CurveType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24440_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/hybrid/EciesParameters$CurveType\00", align 1 +@.TypeMapEntry.24441_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24442_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/hybrid/EciesParameters$HashType\00", align 1 +@.TypeMapEntry.24443_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters+PointFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24444_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/hybrid/EciesParameters$PointFormat\00", align 1 +@.TypeMapEntry.24445_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24446_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/hybrid/EciesParameters$Variant\00", align 1 +@.TypeMapEntry.24447_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24448_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/hybrid/EciesParameters\00", align 1 +@.TypeMapEntry.24449_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24450_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/hybrid/EciesPrivateKey\00", align 1 +@.TypeMapEntry.24451_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.EciesPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24452_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/hybrid/EciesPublicKey\00", align 1 +@.TypeMapEntry.24453_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkeParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24454_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/hybrid/HpkeParameters$Builder\00", align 1 +@.TypeMapEntry.24455_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkeParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24456_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/hybrid/HpkeParameters$Variant\00", align 1 +@.TypeMapEntry.24457_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkeParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24458_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/hybrid/HpkeParameters\00", align 1 +@.TypeMapEntry.24459_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkePrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24460_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/hybrid/HpkePrivateKey\00", align 1 +@.TypeMapEntry.24461_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkeProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24462_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/hybrid/HpkeProtoSerialization\00", align 1 +@.TypeMapEntry.24463_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HpkePublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24464_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/hybrid/HpkePublicKey\00", align 1 +@.TypeMapEntry.24465_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24466_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/hybrid/HybridConfig\00", align 1 +@.TypeMapEntry.24467_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridDecryptConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24468_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/hybrid/HybridDecryptConfig\00", align 1 +@.TypeMapEntry.24469_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridDecryptFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24470_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/HybridDecryptFactory\00", align 1 +@.TypeMapEntry.24471_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridDecryptWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24472_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/HybridDecryptWrapper\00", align 1 +@.TypeMapEntry.24473_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridEncryptConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24474_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/hybrid/HybridEncryptConfig\00", align 1 +@.TypeMapEntry.24475_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridEncryptFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24476_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/HybridEncryptFactory\00", align 1 +@.TypeMapEntry.24477_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridEncryptWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24478_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/HybridEncryptWrapper\00", align 1 +@.TypeMapEntry.24479_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24480_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/hybrid/HybridKeyTemplates\00", align 1 +@.TypeMapEntry.24481_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24482_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/hybrid/HybridParameters\00", align 1 +@.TypeMapEntry.24483_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24484_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24485_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/hybrid/HybridPrivateKey\00", align 1 +@.TypeMapEntry.24486_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridPrivateKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24487_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24488_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/hybrid/HybridPublicKey\00", align 1 +@.TypeMapEntry.24489_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.HybridPublicKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24490_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesDemHelper+IDem, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24491_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/hybrid/internal/EciesDemHelper$Dem\00", align 1 +@.TypeMapEntry.24492_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesDemHelper+IDemInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24493_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesDemHelper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24494_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/hybrid/internal/EciesDemHelper\00", align 1 +@.TypeMapEntry.24495_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.EciesProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24496_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/hybrid/internal/EciesProtoSerialization\00", align 1 +@.TypeMapEntry.24497_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeContext, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24498_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeContext\00", align 1 +@.TypeMapEntry.24499_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeDecrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24500_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeDecrypt\00", align 1 +@.TypeMapEntry.24501_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeEncrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24502_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeEncrypt\00", align 1 +@.TypeMapEntry.24503_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeKemKeyFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24504_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeKemKeyFactory\00", align 1 +@.TypeMapEntry.24505_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeKemPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24506_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeKemPrivateKey\00", align 1 +@.TypeMapEntry.24507_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkePrimitiveFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24508_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/hybrid/internal/HpkePrimitiveFactory\00", align 1 +@.TypeMapEntry.24509_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkePrivateKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24510_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/hybrid/internal/HpkePrivateKeyManager\00", align 1 +@.TypeMapEntry.24511_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkePublicKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24512_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/hybrid/internal/HpkePublicKeyManager\00", align 1 +@.TypeMapEntry.24513_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.HpkeUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24514_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeUtil\00", align 1 +@.TypeMapEntry.24515_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24516_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeAead\00", align 1 +@.TypeMapEntry.24517_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeAeadInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24518_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKdf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24519_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeKdf\00", align 1 +@.TypeMapEntry.24520_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKdfInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24521_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKem, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24522_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/hybrid/internal/HpkeKem\00", align 1 +@.TypeMapEntry.24523_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IHpkeKemInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24524_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IX25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24525_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/hybrid/internal/X25519\00", align 1 +@.TypeMapEntry.24526_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.IX25519Invoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24527_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.LegacyFullHybridDecrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24528_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/hybrid/internal/LegacyFullHybridDecrypt\00", align 1 +@.TypeMapEntry.24529_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.LegacyFullHybridEncrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24530_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/hybrid/internal/LegacyFullHybridEncrypt\00", align 1 +@.TypeMapEntry.24531_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.X25519Conscrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24532_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/hybrid/internal/X25519Conscrypt\00", align 1 +@.TypeMapEntry.24533_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Internal.X25519KeyPair, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24534_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/hybrid/internal/X25519$KeyPair\00", align 1 +@.TypeMapEntry.24535_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.PredefinedHybridParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24536_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/hybrid/PredefinedHybridParameters\00", align 1 +@.TypeMapEntry.24537_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Subtle.RsaKemHybridDecrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24538_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/hybrid/subtle/RsaKemHybridDecrypt\00", align 1 +@.TypeMapEntry.24539_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Hybrid.Subtle.RsaKemHybridEncrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24540_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/hybrid/subtle/RsaKemHybridEncrypt\00", align 1 +@.TypeMapEntry.24541_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.IAccessesPartialKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24542_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/AccessesPartialKey\00", align 1 +@.TypeMapEntry.24543_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.IAccessesPartialKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24544_from = private unnamed_addr constant [69 x i8] c"Xamarin.Google.Crypto.Tink.IAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24545_to = private unnamed_addr constant [28 x i8] c"com/google/crypto/tink/Aead\00", align 1 +@.TypeMapEntry.24546_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.IAeadInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24547_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.IDeterministicAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24548_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/DeterministicAead\00", align 1 +@.TypeMapEntry.24549_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.IDeterministicAeadInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24550_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.IHybridDecrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24551_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/HybridDecrypt\00", align 1 +@.TypeMapEntry.24552_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.IHybridDecryptInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24553_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.IHybridEncrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24554_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/HybridEncrypt\00", align 1 +@.TypeMapEntry.24555_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.IHybridEncryptInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24556_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.IKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24557_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/KeyManager\00", align 1 +@.TypeMapEntry.24558_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.IKeyManagerInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24559_from = private unnamed_addr constant [72 x i8] c"Xamarin.Google.Crypto.Tink.IKeyWrap, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24560_to = private unnamed_addr constant [31 x i8] c"com/google/crypto/tink/KeyWrap\00", align 1 +@.TypeMapEntry.24561_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.IKeyWrapInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24562_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.IKeysetReader, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24563_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/KeysetReader\00", align 1 +@.TypeMapEntry.24564_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.IKeysetReaderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24565_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.IKeysetWriter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24566_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/KeysetWriter\00", align 1 +@.TypeMapEntry.24567_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.IKeysetWriterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24568_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.IKmsClient, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24569_to = private unnamed_addr constant [33 x i8] c"com/google/crypto/tink/KmsClient\00", align 1 +@.TypeMapEntry.24570_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.IKmsClientInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24571_from = private unnamed_addr constant [68 x i8] c"Xamarin.Google.Crypto.Tink.IMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24572_to = private unnamed_addr constant [27 x i8] c"com/google/crypto/tink/Mac\00", align 1 +@.TypeMapEntry.24573_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.IMacInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24574_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.IPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24575_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/PrivateKey\00", align 1 +@.TypeMapEntry.24576_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.IPrivateKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24577_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.IPrivateKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24578_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/PrivateKeyManager\00", align 1 +@.TypeMapEntry.24579_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.IPrivateKeyManagerInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24580_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.IPublicKeySign, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24581_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/PublicKeySign\00", align 1 +@.TypeMapEntry.24582_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.IPublicKeySignInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24583_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.IPublicKeyVerify, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24584_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/PublicKeyVerify\00", align 1 +@.TypeMapEntry.24585_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.IPublicKeyVerifyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24586_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.IStreamingAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24587_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/StreamingAead\00", align 1 +@.TypeMapEntry.24588_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.IStreamingAeadInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24589_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.InsecureSecretKeyAccess, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24590_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/InsecureSecretKeyAccess\00", align 1 +@.TypeMapEntry.24591_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeysetManager+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24592_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/integration/android/AndroidKeysetManager$Builder\00", align 1 +@.TypeMapEntry.24593_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeysetManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24594_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/integration/android/AndroidKeysetManager\00", align 1 +@.TypeMapEntry.24595_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeystore, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24596_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/integration/android/AndroidKeystore\00", align 1 +@.TypeMapEntry.24597_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeystoreAesGcm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24598_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/integration/android/AndroidKeystoreAesGcm\00", align 1 +@.TypeMapEntry.24599_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeystoreKmsClient+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24600_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/integration/android/AndroidKeystoreKmsClient$Builder\00", align 1 +@.TypeMapEntry.24601_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.AndroidKeystoreKmsClient, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24602_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/integration/android/AndroidKeystoreKmsClient\00", align 1 +@.TypeMapEntry.24603_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.SharedPrefKeysetReader, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24604_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/integration/android/SharedPrefKeysetReader\00", align 1 +@.TypeMapEntry.24605_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Integration.Android.SharedPrefKeysetWriter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24606_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/integration/android/SharedPrefKeysetWriter\00", align 1 +@.TypeMapEntry.24607_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Internal.BigIntegerEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24608_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/internal/BigIntegerEncoding\00", align 1 +@.TypeMapEntry.24609_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ConscryptUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24610_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/internal/ConscryptUtil\00", align 1 +@.TypeMapEntry.24611_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Internal.Curve25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24612_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/internal/Curve25519\00", align 1 +@.TypeMapEntry.24613_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Internal.Ed25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24614_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/internal/Ed25519\00", align 1 +@.TypeMapEntry.24615_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Internal.EllipticCurvesUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24616_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/internal/EllipticCurvesUtil\00", align 1 +@.TypeMapEntry.24617_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Internal.EnumTypeProtoConverter+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24618_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/internal/EnumTypeProtoConverter$Builder\00", align 1 +@.TypeMapEntry.24619_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Internal.EnumTypeProtoConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24620_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/internal/EnumTypeProtoConverter\00", align 1 +@.TypeMapEntry.24621_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Internal.Field25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24622_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/internal/Field25519\00", align 1 +@.TypeMapEntry.24623_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterface, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24624_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/KeysetHandleInterface\00", align 1 +@.TypeMapEntry.24625_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterfaceEntry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24626_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/internal/KeysetHandleInterface$Entry\00", align 1 +@.TypeMapEntry.24627_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterfaceEntryInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24628_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IKeysetHandleInterfaceInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24629_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IMonitoringClient, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24630_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/internal/MonitoringClient\00", align 1 +@.TypeMapEntry.24631_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IMonitoringClientInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24632_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IMonitoringClientLogger, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24633_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/internal/MonitoringClient$Logger\00", align 1 +@.TypeMapEntry.24634_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Internal.IMonitoringClientLoggerInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24635_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ISerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24636_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/internal/Serialization\00", align 1 +@.TypeMapEntry.24637_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ISerializationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24638_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.InternalConfiguration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24639_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/InternalConfiguration\00", align 1 +@.TypeMapEntry.24640_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Internal.InternalConfigurationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24641_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Internal.JsonParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24642_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/internal/JsonParser\00", align 1 +@.TypeMapEntry.24643_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyManagerRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24644_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/internal/KeyManagerRegistry\00", align 1 +@.TypeMapEntry.24645_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyParser+IKeyParsingFunction, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24646_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/internal/KeyParser$KeyParsingFunction\00", align 1 +@.TypeMapEntry.24647_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyParser+IKeyParsingFunctionInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24648_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24649_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/internal/KeyParser\00", align 1 +@.TypeMapEntry.24650_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyParserInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24651_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeySerializer+IKeySerializationFunction, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24652_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/internal/KeySerializer$KeySerializationFunction\00", align 1 +@.TypeMapEntry.24653_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeySerializer+IKeySerializationFunctionInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24654_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeySerializer, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24655_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/internal/KeySerializer\00", align 1 +@.TypeMapEntry.24656_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeySerializerInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24657_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyStatusTypeProtoConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24658_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/internal/KeyStatusTypeProtoConverter\00", align 1 +@.TypeMapEntry.24659_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Internal.KeyTemplateProtoConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24660_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/internal/KeyTemplateProtoConverter\00", align 1 +@.TypeMapEntry.24661_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Internal.LegacyKeyManagerImpl, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24662_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/internal/LegacyKeyManagerImpl\00", align 1 +@.TypeMapEntry.24663_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Internal.LegacyProtoKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24664_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/internal/LegacyProtoKey\00", align 1 +@.TypeMapEntry.24665_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.LegacyProtoParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24666_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/LegacyProtoParameters\00", align 1 +@.TypeMapEntry.24667_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MonitoringAnnotations+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24668_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/internal/MonitoringAnnotations$Builder\00", align 1 +@.TypeMapEntry.24669_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MonitoringAnnotations, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24670_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/MonitoringAnnotations\00", align 1 +@.TypeMapEntry.24671_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MonitoringUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24672_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/internal/MonitoringUtil\00", align 1 +@.TypeMapEntry.24673_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyCreationRegistry+IKeyCreator, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24674_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/internal/MutableKeyCreationRegistry$KeyCreator\00", align 1 +@.TypeMapEntry.24675_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyCreationRegistry+IKeyCreatorInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24676_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyCreationRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24677_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/internal/MutableKeyCreationRegistry\00", align 1 +@.TypeMapEntry.24678_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyDerivationRegistry+IInsecureKeyCreator, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24679_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/internal/MutableKeyDerivationRegistry$InsecureKeyCreator\00", align 1 +@.TypeMapEntry.24680_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyDerivationRegistry+IInsecureKeyCreatorInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24681_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableKeyDerivationRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24682_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/internal/MutableKeyDerivationRegistry\00", align 1 +@.TypeMapEntry.24683_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableMonitoringRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24684_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/internal/MutableMonitoringRegistry\00", align 1 +@.TypeMapEntry.24685_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableParametersRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24686_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/internal/MutableParametersRegistry\00", align 1 +@.TypeMapEntry.24687_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutablePrimitiveRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24688_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/internal/MutablePrimitiveRegistry\00", align 1 +@.TypeMapEntry.24689_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Internal.MutableSerializationRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24690_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/internal/MutableSerializationRegistry\00", align 1 +@.TypeMapEntry.24691_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Internal.OutputPrefixUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24692_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/internal/OutputPrefixUtil\00", align 1 +@.TypeMapEntry.24693_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersParser+IParametersParsingFunction, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24694_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/internal/ParametersParser$ParametersParsingFunction\00", align 1 +@.TypeMapEntry.24695_from = private unnamed_addr constant [123 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersParser+IParametersParsingFunctionInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24696_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24697_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/internal/ParametersParser\00", align 1 +@.TypeMapEntry.24698_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersParserInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24699_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersSerializer+IParametersSerializationFunction, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24700_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/internal/ParametersSerializer$ParametersSerializationFunction\00", align 1 +@.TypeMapEntry.24701_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersSerializer+IParametersSerializationFunctionInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24702_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersSerializer, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24703_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/internal/ParametersSerializer\00", align 1 +@.TypeMapEntry.24704_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ParametersSerializerInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24705_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrefixMap+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24706_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/internal/PrefixMap$Builder\00", align 1 +@.TypeMapEntry.24707_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrefixMap, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24708_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/internal/PrefixMap\00", align 1 +@.TypeMapEntry.24709_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructor+IPrimitiveConstructionFunction, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24710_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/internal/PrimitiveConstructor$PrimitiveConstructionFunction\00", align 1 +@.TypeMapEntry.24711_from = private unnamed_addr constant [131 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructor+IPrimitiveConstructionFunctionInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24712_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructor, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24713_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/internal/PrimitiveConstructor\00", align 1 +@.TypeMapEntry.24714_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveConstructorInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24715_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24716_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/internal/PrimitiveFactory\00", align 1 +@.TypeMapEntry.24717_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveFactoryInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24718_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveRegistry+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24719_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/internal/PrimitiveRegistry$Builder\00", align 1 +@.TypeMapEntry.24720_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Internal.PrimitiveRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24721_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/internal/PrimitiveRegistry\00", align 1 +@.TypeMapEntry.24722_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ProtoKeySerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24723_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/ProtoKeySerialization\00", align 1 +@.TypeMapEntry.24724_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Internal.ProtoParametersSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24725_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/internal/ProtoParametersSerialization\00", align 1 +@.TypeMapEntry.24726_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Internal.Random, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24727_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/internal/Random\00", align 1 +@.TypeMapEntry.24728_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.RegistryConfiguration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24729_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/RegistryConfiguration\00", align 1 +@.TypeMapEntry.24730_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Internal.SerializationRegistry+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24731_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/internal/SerializationRegistry$Builder\00", align 1 +@.TypeMapEntry.24732_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Internal.SerializationRegistry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24733_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/internal/SerializationRegistry\00", align 1 +@.TypeMapEntry.24734_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingRunnable, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24735_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/internal/TinkBugException$ThrowingRunnable\00", align 1 +@.TypeMapEntry.24736_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingRunnableInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24737_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingSupplier, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24738_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/internal/TinkBugException$ThrowingSupplier\00", align 1 +@.TypeMapEntry.24739_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Internal.TinkBugException+IThrowingSupplierInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24740_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Internal.TinkBugException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24741_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/internal/TinkBugException\00", align 1 +@.TypeMapEntry.24742_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Internal.Util, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24743_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/internal/Util\00", align 1 +@.TypeMapEntry.24744_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.JsonKeysetReader, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24745_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/JsonKeysetReader\00", align 1 +@.TypeMapEntry.24746_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.JsonKeysetWriter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24747_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/JsonKeysetWriter\00", align 1 +@.TypeMapEntry.24748_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24749_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/jwt/JwtMac\00", align 1 +@.TypeMapEntry.24750_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtMacInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24751_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySign, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24752_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/jwt/JwtPublicKeySign\00", align 1 +@.TypeMapEntry.24753_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySignInternal, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24754_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/jwt/JwtPublicKeySignInternal\00", align 1 +@.TypeMapEntry.24755_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySignInternalInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24756_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeySignInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24757_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerify, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24758_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/jwt/JwtPublicKeyVerify\00", align 1 +@.TypeMapEntry.24759_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerifyInternal, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24760_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/jwt/JwtPublicKeyVerifyInternal\00", align 1 +@.TypeMapEntry.24761_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerifyInternalInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24762_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.IJwtPublicKeyVerifyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24763_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwkSetConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24764_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/jwt/JwkSetConverter\00", align 1 +@.TypeMapEntry.24765_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaParameters+Algorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24766_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaParameters$Algorithm\00", align 1 +@.TypeMapEntry.24767_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24768_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaParameters$Builder\00", align 1 +@.TypeMapEntry.24769_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaParameters+KidStrategy, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24770_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaParameters$KidStrategy\00", align 1 +@.TypeMapEntry.24771_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24772_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaParameters\00", align 1 +@.TypeMapEntry.24773_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24774_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaPrivateKey\00", align 1 +@.TypeMapEntry.24775_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24776_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaPublicKey$Builder\00", align 1 +@.TypeMapEntry.24777_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24778_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaPublicKey\00", align 1 +@.TypeMapEntry.24779_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtEcdsaSignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24780_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/jwt/JwtEcdsaSignKeyManager\00", align 1 +@.TypeMapEntry.24781_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24782_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/jwt/JwtHmacKey$Builder\00", align 1 +@.TypeMapEntry.24783_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24784_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/jwt/JwtHmacKey\00", align 1 +@.TypeMapEntry.24785_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24786_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/jwt/JwtHmacKeyManager\00", align 1 +@.TypeMapEntry.24787_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacParameters+Algorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24788_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/jwt/JwtHmacParameters$Algorithm\00", align 1 +@.TypeMapEntry.24789_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24790_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/jwt/JwtHmacParameters$Builder\00", align 1 +@.TypeMapEntry.24791_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacParameters+KidStrategy, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24792_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/jwt/JwtHmacParameters$KidStrategy\00", align 1 +@.TypeMapEntry.24793_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtHmacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24794_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/jwt/JwtHmacParameters\00", align 1 +@.TypeMapEntry.24795_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtInvalidException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24796_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/jwt/JwtInvalidException\00", align 1 +@.TypeMapEntry.24797_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtMacConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24798_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/jwt/JwtMacConfig\00", align 1 +@.TypeMapEntry.24799_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtMacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24800_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/jwt/JwtMacKey\00", align 1 +@.TypeMapEntry.24801_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtMacKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24802_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtMacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24803_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/jwt/JwtMacParameters\00", align 1 +@.TypeMapEntry.24804_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtMacParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24805_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1Parameters+Algorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24806_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1Parameters$Algorithm\00", align 1 +@.TypeMapEntry.24807_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1Parameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24808_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1Parameters$Builder\00", align 1 +@.TypeMapEntry.24809_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1Parameters+KidStrategy, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24810_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1Parameters$KidStrategy\00", align 1 +@.TypeMapEntry.24811_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24812_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1Parameters\00", align 1 +@.TypeMapEntry.24813_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1PrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24814_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1PrivateKey$Builder\00", align 1 +@.TypeMapEntry.24815_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24816_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1PrivateKey\00", align 1 +@.TypeMapEntry.24817_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1PublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24818_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1PublicKey$Builder\00", align 1 +@.TypeMapEntry.24819_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24820_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1PublicKey\00", align 1 +@.TypeMapEntry.24821_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPkcs1SignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24822_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPkcs1SignKeyManager\00", align 1 +@.TypeMapEntry.24823_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssParameters+Algorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24824_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssParameters$Algorithm\00", align 1 +@.TypeMapEntry.24825_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24826_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssParameters$Builder\00", align 1 +@.TypeMapEntry.24827_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssParameters+KidStrategy, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24828_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssParameters$KidStrategy\00", align 1 +@.TypeMapEntry.24829_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24830_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssParameters\00", align 1 +@.TypeMapEntry.24831_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24832_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssPrivateKey$Builder\00", align 1 +@.TypeMapEntry.24833_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24834_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssPrivateKey\00", align 1 +@.TypeMapEntry.24835_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24836_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssPublicKey$Builder\00", align 1 +@.TypeMapEntry.24837_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24838_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssPublicKey\00", align 1 +@.TypeMapEntry.24839_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtRsaSsaPssSignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24840_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/jwt/JwtRsaSsaPssSignKeyManager\00", align 1 +@.TypeMapEntry.24841_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignatureConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24842_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/jwt/JwtSignatureConfig\00", align 1 +@.TypeMapEntry.24843_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignatureParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24844_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/jwt/JwtSignatureParameters\00", align 1 +@.TypeMapEntry.24845_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignatureParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24846_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignaturePrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24847_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/jwt/JwtSignaturePrivateKey\00", align 1 +@.TypeMapEntry.24848_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignaturePrivateKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24849_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignaturePublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24850_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/jwt/JwtSignaturePublicKey\00", align 1 +@.TypeMapEntry.24851_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtSignaturePublicKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24852_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtValidator+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24853_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/jwt/JwtValidator$Builder\00", align 1 +@.TypeMapEntry.24854_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.JwtValidator, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24855_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/jwt/JwtValidator\00", align 1 +@.TypeMapEntry.24856_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.RawJwt+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24857_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/jwt/RawJwt$Builder\00", align 1 +@.TypeMapEntry.24858_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.RawJwt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24859_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/jwt/RawJwt\00", align 1 +@.TypeMapEntry.24860_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Jwt.VerifiedJwt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24861_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/jwt/VerifiedJwt\00", align 1 +@.TypeMapEntry.24862_from = private unnamed_addr constant [67 x i8] c"Xamarin.Google.Crypto.Tink.Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24863_to = private unnamed_addr constant [27 x i8] c"com/google/crypto/tink/Key\00", align 1 +@.TypeMapEntry.24864_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.IKeysetDeriver, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24865_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/keyderivation/KeysetDeriver\00", align 1 +@.TypeMapEntry.24866_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.IKeysetDeriverInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24867_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.IKeyDeriver, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24868_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/keyderivation/internal/KeyDeriver\00", align 1 +@.TypeMapEntry.24869_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.IKeyDeriverInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24870_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.KeysetDeriverWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24871_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/keyderivation/internal/KeysetDeriverWrapper\00", align 1 +@.TypeMapEntry.24872_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.PrfBasedDeriverKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24873_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/keyderivation/internal/PrfBasedDeriverKeyManager\00", align 1 +@.TypeMapEntry.24874_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.Internal.PrfBasedKeyDeriver, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24875_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/keyderivation/internal/PrfBasedKeyDeriver\00", align 1 +@.TypeMapEntry.24876_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeyDerivationConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24877_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/keyderivation/KeyDerivationConfig\00", align 1 +@.TypeMapEntry.24878_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeyDerivationKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24879_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/keyderivation/KeyDerivationKey\00", align 1 +@.TypeMapEntry.24880_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeyDerivationKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24881_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeyDerivationParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24882_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/keyderivation/KeyDerivationParameters\00", align 1 +@.TypeMapEntry.24883_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeyDerivationParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24884_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.KeysetDeriverWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24885_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/keyderivation/KeysetDeriverWrapper\00", align 1 +@.TypeMapEntry.24886_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.PrfBasedKeyDerivationKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24887_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/keyderivation/PrfBasedKeyDerivationKey\00", align 1 +@.TypeMapEntry.24888_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.PrfBasedKeyDerivationParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24889_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/keyderivation/PrfBasedKeyDerivationParameters$Builder\00", align 1 +@.TypeMapEntry.24890_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.KeyDerivation.PrfBasedKeyDerivationParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24891_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/keyderivation/PrfBasedKeyDerivationParameters\00", align 1 +@.TypeMapEntry.24892_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.KeyGenConfiguration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24893_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/KeyGenConfiguration\00", align 1 +@.TypeMapEntry.24894_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.KeyGenConfigurationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24895_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.KeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24896_from = private unnamed_addr constant [73 x i8] c"Xamarin.Google.Crypto.Tink.KeyStatus, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24897_to = private unnamed_addr constant [33 x i8] c"com/google/crypto/tink/KeyStatus\00", align 1 +@.TypeMapEntry.24898_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.KeyTemplate+OutputPrefixType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24899_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/KeyTemplate$OutputPrefixType\00", align 1 +@.TypeMapEntry.24900_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.KeyTemplate, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24901_to = private unnamed_addr constant [35 x i8] c"com/google/crypto/tink/KeyTemplate\00", align 1 +@.TypeMapEntry.24902_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.KeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24903_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/KeyTemplates\00", align 1 +@.TypeMapEntry.24904_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.KeysetHandle+Builder+Entry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24905_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/KeysetHandle$Builder$Entry\00", align 1 +@.TypeMapEntry.24906_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.KeysetHandle+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24907_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/KeysetHandle$Builder\00", align 1 +@.TypeMapEntry.24908_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.KeysetHandle+Entry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24909_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/KeysetHandle$Entry\00", align 1 +@.TypeMapEntry.24910_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.KeysetHandle, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24911_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/KeysetHandle\00", align 1 +@.TypeMapEntry.24912_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.KeysetManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24913_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/KeysetManager\00", align 1 +@.TypeMapEntry.24914_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.KmsClients, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24915_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/KmsClients\00", align 1 +@.TypeMapEntry.24916_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.LegacyKeysetSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24917_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/LegacyKeysetSerialization\00", align 1 +@.TypeMapEntry.24918_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24919_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/mac/AesCmacKey$Builder\00", align 1 +@.TypeMapEntry.24920_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24921_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/mac/AesCmacKey\00", align 1 +@.TypeMapEntry.24922_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24923_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/mac/AesCmacKeyManager\00", align 1 +@.TypeMapEntry.24924_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24925_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/mac/AesCmacParameters$Builder\00", align 1 +@.TypeMapEntry.24926_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24927_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/mac/AesCmacParameters$Variant\00", align 1 +@.TypeMapEntry.24928_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Mac.AesCmacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24929_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/mac/AesCmacParameters\00", align 1 +@.TypeMapEntry.24930_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Mac.ChunkedMacWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24931_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/mac/ChunkedMacWrapper\00", align 1 +@.TypeMapEntry.24932_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24933_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/mac/HmacKey$Builder\00", align 1 +@.TypeMapEntry.24934_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24935_to = private unnamed_addr constant [35 x i8] c"com/google/crypto/tink/mac/HmacKey\00", align 1 +@.TypeMapEntry.24936_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24937_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/mac/HmacKeyManager\00", align 1 +@.TypeMapEntry.24938_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24939_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/mac/HmacParameters$Builder\00", align 1 +@.TypeMapEntry.24940_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24941_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/mac/HmacParameters$HashType\00", align 1 +@.TypeMapEntry.24942_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24943_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/mac/HmacParameters$Variant\00", align 1 +@.TypeMapEntry.24944_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Mac.HmacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24945_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/mac/HmacParameters\00", align 1 +@.TypeMapEntry.24946_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24947_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/mac/ChunkedMac\00", align 1 +@.TypeMapEntry.24948_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMacComputation, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24949_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/mac/ChunkedMacComputation\00", align 1 +@.TypeMapEntry.24950_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMacComputationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24951_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMacInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24952_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMacVerification, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24953_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/mac/ChunkedMacVerification\00", align 1 +@.TypeMapEntry.24954_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Mac.IChunkedMacVerificationInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24955_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.AesCmacProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24956_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/mac/internal/AesCmacProtoSerialization\00", align 1 +@.TypeMapEntry.24957_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.AesUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24958_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/mac/internal/AesUtil\00", align 1 +@.TypeMapEntry.24959_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.ChunkedAesCmacImpl, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24960_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/mac/internal/ChunkedAesCmacImpl\00", align 1 +@.TypeMapEntry.24961_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.ChunkedHmacImpl, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24962_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/mac/internal/ChunkedHmacImpl\00", align 1 +@.TypeMapEntry.24963_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.HmacProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24964_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/mac/internal/HmacProtoSerialization\00", align 1 +@.TypeMapEntry.24965_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Mac.Internal.LegacyFullMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24966_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/mac/internal/LegacyFullMac\00", align 1 +@.TypeMapEntry.24967_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24968_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/mac/MacConfig\00", align 1 +@.TypeMapEntry.24969_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24970_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/mac/MacFactory\00", align 1 +@.TypeMapEntry.24971_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24972_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/mac/MacKey\00", align 1 +@.TypeMapEntry.24973_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24974_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24975_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/mac/MacKeyTemplates\00", align 1 +@.TypeMapEntry.24976_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24977_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/mac/MacParameters\00", align 1 +@.TypeMapEntry.24978_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24979_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Mac.MacWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24980_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/mac/MacWrapper\00", align 1 +@.TypeMapEntry.24981_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Mac.PredefinedMacParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24982_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/mac/PredefinedMacParameters\00", align 1 +@.TypeMapEntry.24983_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.NoSecretKeysetHandle, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24984_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/NoSecretKeysetHandle\00", align 1 +@.TypeMapEntry.24985_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24986_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/Parameters\00", align 1 +@.TypeMapEntry.24987_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.ParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24988_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.PemKeyType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24989_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/PemKeyType\00", align 1 +@.TypeMapEntry.24990_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Prf.AesCmacPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24991_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/prf/AesCmacPrfKey\00", align 1 +@.TypeMapEntry.24992_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Prf.AesCmacPrfKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24993_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/prf/AesCmacPrfKeyManager\00", align 1 +@.TypeMapEntry.24994_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Prf.AesCmacPrfParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24995_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/prf/AesCmacPrfParameters\00", align 1 +@.TypeMapEntry.24996_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24997_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/prf/HkdfPrfKey$Builder\00", align 1 +@.TypeMapEntry.24998_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.24999_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/prf/HkdfPrfKey\00", align 1 +@.TypeMapEntry.25000_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25001_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/prf/HkdfPrfKeyManager\00", align 1 +@.TypeMapEntry.25002_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25003_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/prf/HkdfPrfParameters$Builder\00", align 1 +@.TypeMapEntry.25004_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25005_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/prf/HkdfPrfParameters$HashType\00", align 1 +@.TypeMapEntry.25006_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HkdfPrfParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25007_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/prf/HkdfPrfParameters\00", align 1 +@.TypeMapEntry.25008_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25009_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/prf/HmacPrfKey$Builder\00", align 1 +@.TypeMapEntry.25010_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25011_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/prf/HmacPrfKey\00", align 1 +@.TypeMapEntry.25012_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25013_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/prf/HmacPrfKeyManager\00", align 1 +@.TypeMapEntry.25014_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25015_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/prf/HmacPrfParameters$Builder\00", align 1 +@.TypeMapEntry.25016_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25017_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/prf/HmacPrfParameters$HashType\00", align 1 +@.TypeMapEntry.25018_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Prf.HmacPrfParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25019_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/prf/HmacPrfParameters\00", align 1 +@.TypeMapEntry.25020_from = private unnamed_addr constant [72 x i8] c"Xamarin.Google.Crypto.Tink.Prf.IPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25021_to = private unnamed_addr constant [31 x i8] c"com/google/crypto/tink/prf/Prf\00", align 1 +@.TypeMapEntry.25022_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Prf.IPrfInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25023_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Prf.Internal.AesCmacPrfProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25024_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/prf/internal/AesCmacPrfProtoSerialization\00", align 1 +@.TypeMapEntry.25025_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Prf.Internal.HkdfPrfProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25026_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/prf/internal/HkdfPrfProtoSerialization\00", align 1 +@.TypeMapEntry.25027_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Prf.Internal.HmacPrfProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25028_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/prf/internal/HmacPrfProtoSerialization\00", align 1 +@.TypeMapEntry.25029_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Prf.Internal.LegacyFullPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25030_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/prf/internal/LegacyFullPrf\00", align 1 +@.TypeMapEntry.25031_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Prf.Internal.PrfAesCmacConscrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25032_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/prf/internal/PrfAesCmacConscrypt\00", align 1 +@.TypeMapEntry.25033_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PredefinedPrfParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25034_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/prf/PredefinedPrfParameters\00", align 1 +@.TypeMapEntry.25035_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25036_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/prf/PrfConfig\00", align 1 +@.TypeMapEntry.25037_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25038_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/prf/PrfKey\00", align 1 +@.TypeMapEntry.25039_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25040_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25041_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/prf/PrfKeyTemplates\00", align 1 +@.TypeMapEntry.25042_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25043_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/prf/PrfParameters\00", align 1 +@.TypeMapEntry.25044_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25045_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfSet, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25046_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/prf/PrfSet\00", align 1 +@.TypeMapEntry.25047_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfSetInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25048_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Prf.PrfSetWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25049_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/prf/PrfSetWrapper\00", align 1 +@.TypeMapEntry.25050_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25051_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/AesCmac\00", align 1 +@.TypeMapEntry.25052_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25053_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesCmacKey$Builder\00", align 1 +@.TypeMapEntry.25054_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25055_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/AesCmacKey\00", align 1 +@.TypeMapEntry.25056_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25057_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/AesCmacKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25058_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25059_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/AesCmacKeyFormat\00", align 1 +@.TypeMapEntry.25060_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25061_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/AesCmacParams$Builder\00", align 1 +@.TypeMapEntry.25062_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25063_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/AesCmacParams\00", align 1 +@.TypeMapEntry.25064_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25065_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/AesCmacPrf\00", align 1 +@.TypeMapEntry.25066_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacPrfKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25067_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKey$Builder\00", align 1 +@.TypeMapEntry.25068_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25069_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKey\00", align 1 +@.TypeMapEntry.25070_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacPrfKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25071_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25072_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCmacPrfKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25073_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKeyFormat\00", align 1 +@.TypeMapEntry.25074_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtr, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25075_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/AesCtr\00", align 1 +@.TypeMapEntry.25076_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25077_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAead\00", align 1 +@.TypeMapEntry.25078_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacAeadKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25079_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKey$Builder\00", align 1 +@.TypeMapEntry.25080_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25081_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKey\00", align 1 +@.TypeMapEntry.25082_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacAeadKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25083_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25084_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacAeadKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25085_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKeyFormat\00", align 1 +@.TypeMapEntry.25086_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreaming, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25087_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreaming\00", align 1 +@.TypeMapEntry.25088_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25089_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKey$Builder\00", align 1 +@.TypeMapEntry.25090_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25091_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKey\00", align 1 +@.TypeMapEntry.25092_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25093_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25094_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25095_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKeyFormat\00", align 1 +@.TypeMapEntry.25096_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25097_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingParams$Builder\00", align 1 +@.TypeMapEntry.25098_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrHmacStreamingParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25099_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingParams\00", align 1 +@.TypeMapEntry.25100_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25101_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/AesCtrKey$Builder\00", align 1 +@.TypeMapEntry.25102_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25103_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/AesCtrKey\00", align 1 +@.TypeMapEntry.25104_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25105_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/AesCtrKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25106_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25107_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/AesCtrKeyFormat\00", align 1 +@.TypeMapEntry.25108_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25109_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/AesCtrParams$Builder\00", align 1 +@.TypeMapEntry.25110_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesCtrParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25111_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/proto/AesCtrParams\00", align 1 +@.TypeMapEntry.25112_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEax, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25113_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/AesEax\00", align 1 +@.TypeMapEntry.25114_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25115_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/AesEaxKey$Builder\00", align 1 +@.TypeMapEntry.25116_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25117_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/AesEaxKey\00", align 1 +@.TypeMapEntry.25118_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25119_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/AesEaxKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25120_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25121_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/AesEaxKeyFormat\00", align 1 +@.TypeMapEntry.25122_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25123_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/AesEaxParams$Builder\00", align 1 +@.TypeMapEntry.25124_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesEaxParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25125_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/proto/AesEaxParams\00", align 1 +@.TypeMapEntry.25126_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25127_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/AesGcm\00", align 1 +@.TypeMapEntry.25128_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreaming, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25129_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreaming\00", align 1 +@.TypeMapEntry.25130_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25131_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKey$Builder\00", align 1 +@.TypeMapEntry.25132_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25133_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKey\00", align 1 +@.TypeMapEntry.25134_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25135_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25136_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25137_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKeyFormat\00", align 1 +@.TypeMapEntry.25138_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25139_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingParams$Builder\00", align 1 +@.TypeMapEntry.25140_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmHkdfStreamingParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25141_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingParams\00", align 1 +@.TypeMapEntry.25142_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25143_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/AesGcmKey$Builder\00", align 1 +@.TypeMapEntry.25144_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25145_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/AesGcmKey\00", align 1 +@.TypeMapEntry.25146_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25147_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/AesGcmKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25148_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25149_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/AesGcmKeyFormat\00", align 1 +@.TypeMapEntry.25150_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmSiv, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25151_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/AesGcmSiv\00", align 1 +@.TypeMapEntry.25152_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmSivKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25153_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/AesGcmSivKey$Builder\00", align 1 +@.TypeMapEntry.25154_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmSivKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25155_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/proto/AesGcmSivKey\00", align 1 +@.TypeMapEntry.25156_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmSivKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25157_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/AesGcmSivKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25158_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesGcmSivKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25159_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesGcmSivKeyFormat\00", align 1 +@.TypeMapEntry.25160_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesSiv, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25161_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/AesSiv\00", align 1 +@.TypeMapEntry.25162_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesSivKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25163_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/AesSivKey$Builder\00", align 1 +@.TypeMapEntry.25164_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesSivKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25165_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/AesSivKey\00", align 1 +@.TypeMapEntry.25166_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesSivKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25167_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/AesSivKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25168_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.AesSivKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25169_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/AesSivKeyFormat\00", align 1 +@.TypeMapEntry.25170_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.ChaCha20Poly1305Key+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25171_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305Key$Builder\00", align 1 +@.TypeMapEntry.25172_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.ChaCha20Poly1305Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25173_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305Key\00", align 1 +@.TypeMapEntry.25174_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.ChaCha20Poly1305KeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25175_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305KeyFormat$Builder\00", align 1 +@.TypeMapEntry.25176_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.ChaCha20Poly1305KeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25177_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305KeyFormat\00", align 1 +@.TypeMapEntry.25178_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Chacha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25179_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/Chacha20Poly1305\00", align 1 +@.TypeMapEntry.25180_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Common, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25181_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/Common\00", align 1 +@.TypeMapEntry.25182_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Config, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25183_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/Config\00", align 1 +@.TypeMapEntry.25184_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcPointFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25185_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/EcPointFormat\00", align 1 +@.TypeMapEntry.25186_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ecdsa, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25187_to = private unnamed_addr constant [35 x i8] c"com/google/crypto/tink/proto/Ecdsa\00", align 1 +@.TypeMapEntry.25188_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25189_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/EcdsaKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25190_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25191_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/EcdsaKeyFormat\00", align 1 +@.TypeMapEntry.25192_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25193_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/EcdsaParams$Builder\00", align 1 +@.TypeMapEntry.25194_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25195_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/proto/EcdsaParams\00", align 1 +@.TypeMapEntry.25196_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25197_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/EcdsaPrivateKey$Builder\00", align 1 +@.TypeMapEntry.25198_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25199_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/EcdsaPrivateKey\00", align 1 +@.TypeMapEntry.25200_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25201_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/EcdsaPublicKey$Builder\00", align 1 +@.TypeMapEntry.25202_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25203_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/EcdsaPublicKey\00", align 1 +@.TypeMapEntry.25204_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EcdsaSignatureEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25205_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/EcdsaSignatureEncoding\00", align 1 +@.TypeMapEntry.25206_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadDemParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25207_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/EciesAeadDemParams$Builder\00", align 1 +@.TypeMapEntry.25208_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadDemParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25209_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/EciesAeadDemParams\00", align 1 +@.TypeMapEntry.25210_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25211_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdf\00", align 1 +@.TypeMapEntry.25212_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25213_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25214_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25215_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfKeyFormat\00", align 1 +@.TypeMapEntry.25216_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25217_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfParams$Builder\00", align 1 +@.TypeMapEntry.25218_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25219_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfParams\00", align 1 +@.TypeMapEntry.25220_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25221_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPrivateKey$Builder\00", align 1 +@.TypeMapEntry.25222_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25223_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPrivateKey\00", align 1 +@.TypeMapEntry.25224_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25225_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPublicKey$Builder\00", align 1 +@.TypeMapEntry.25226_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesAeadHkdfPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25227_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPublicKey\00", align 1 +@.TypeMapEntry.25228_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesHkdfKemParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25229_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/EciesHkdfKemParams$Builder\00", align 1 +@.TypeMapEntry.25230_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EciesHkdfKemParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25231_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/EciesHkdfKemParams\00", align 1 +@.TypeMapEntry.25232_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25233_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/Ed25519\00", align 1 +@.TypeMapEntry.25234_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519KeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25235_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/Ed25519KeyFormat$Builder\00", align 1 +@.TypeMapEntry.25236_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519KeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25237_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/Ed25519KeyFormat\00", align 1 +@.TypeMapEntry.25238_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519PrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25239_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/Ed25519PrivateKey$Builder\00", align 1 +@.TypeMapEntry.25240_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25241_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/Ed25519PrivateKey\00", align 1 +@.TypeMapEntry.25242_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519PublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25243_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/Ed25519PublicKey$Builder\00", align 1 +@.TypeMapEntry.25244_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Ed25519PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25245_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/Ed25519PublicKey\00", align 1 +@.TypeMapEntry.25246_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EllipticCurveType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25247_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/EllipticCurveType\00", align 1 +@.TypeMapEntry.25248_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EncryptedKeyset+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25249_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/EncryptedKeyset$Builder\00", align 1 +@.TypeMapEntry.25250_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.EncryptedKeyset, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25251_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/EncryptedKeyset\00", align 1 +@.TypeMapEntry.25252_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25253_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/proto/HashType\00", align 1 +@.TypeMapEntry.25254_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25255_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/HkdfPrf\00", align 1 +@.TypeMapEntry.25256_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25257_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/HkdfPrfKey$Builder\00", align 1 +@.TypeMapEntry.25258_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25259_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/HkdfPrfKey\00", align 1 +@.TypeMapEntry.25260_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25261_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/HkdfPrfKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25262_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25263_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/HkdfPrfKeyFormat\00", align 1 +@.TypeMapEntry.25264_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25265_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/HkdfPrfParams$Builder\00", align 1 +@.TypeMapEntry.25266_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HkdfPrfParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25267_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/HkdfPrfParams\00", align 1 +@.TypeMapEntry.25268_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Hmac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25269_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/proto/Hmac\00", align 1 +@.TypeMapEntry.25270_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25271_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/HmacKey$Builder\00", align 1 +@.TypeMapEntry.25272_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25273_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/HmacKey\00", align 1 +@.TypeMapEntry.25274_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25275_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/HmacKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25276_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25277_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/HmacKeyFormat\00", align 1 +@.TypeMapEntry.25278_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25279_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/HmacParams$Builder\00", align 1 +@.TypeMapEntry.25280_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25281_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/HmacParams\00", align 1 +@.TypeMapEntry.25282_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25283_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/HmacPrf\00", align 1 +@.TypeMapEntry.25284_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25285_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/HmacPrfKey$Builder\00", align 1 +@.TypeMapEntry.25286_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25287_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/HmacPrfKey\00", align 1 +@.TypeMapEntry.25288_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25289_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/HmacPrfKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25290_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25291_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/HmacPrfKeyFormat\00", align 1 +@.TypeMapEntry.25292_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25293_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/HmacPrfParams$Builder\00", align 1 +@.TypeMapEntry.25294_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HmacPrfParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25295_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/HmacPrfParams\00", align 1 +@.TypeMapEntry.25296_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Hpke, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25297_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/proto/Hpke\00", align 1 +@.TypeMapEntry.25298_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25299_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/proto/HpkeAead\00", align 1 +@.TypeMapEntry.25300_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeKdf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25301_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/HpkeKdf\00", align 1 +@.TypeMapEntry.25302_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeKem, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25303_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/HpkeKem\00", align 1 +@.TypeMapEntry.25304_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25305_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/HpkeKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25306_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25307_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/HpkeKeyFormat\00", align 1 +@.TypeMapEntry.25308_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25309_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/HpkeParams$Builder\00", align 1 +@.TypeMapEntry.25310_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkeParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25311_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/HpkeParams\00", align 1 +@.TypeMapEntry.25312_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkePrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25313_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HpkePrivateKey$Builder\00", align 1 +@.TypeMapEntry.25314_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkePrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25315_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/HpkePrivateKey\00", align 1 +@.TypeMapEntry.25316_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkePublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25317_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/HpkePublicKey$Builder\00", align 1 +@.TypeMapEntry.25318_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.HpkePublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25319_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/HpkePublicKey\00", align 1 +@.TypeMapEntry.25320_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25321_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/AesCmacKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25322_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25323_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25324_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/AesCmacKeyOrBuilder\00", align 1 +@.TypeMapEntry.25325_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25326_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25327_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/AesCmacParamsOrBuilder\00", align 1 +@.TypeMapEntry.25328_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25329_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25330_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25331_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25332_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25333_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/AesCmacPrfKeyOrBuilder\00", align 1 +@.TypeMapEntry.25334_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCmacPrfKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25335_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25336_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25337_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25338_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25339_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/AesCtrHmacAeadKeyOrBuilder\00", align 1 +@.TypeMapEntry.25340_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacAeadKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25341_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25342_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25343_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25344_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25345_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingKeyOrBuilder\00", align 1 +@.TypeMapEntry.25346_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25347_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25348_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/proto/AesCtrHmacStreamingParamsOrBuilder\00", align 1 +@.TypeMapEntry.25349_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrHmacStreamingParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25350_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25351_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/AesCtrKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25352_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25353_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25354_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesCtrKeyOrBuilder\00", align 1 +@.TypeMapEntry.25355_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25356_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25357_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/AesCtrParamsOrBuilder\00", align 1 +@.TypeMapEntry.25358_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesCtrParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25359_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25360_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/AesEaxKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25361_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25362_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25363_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesEaxKeyOrBuilder\00", align 1 +@.TypeMapEntry.25364_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25365_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25366_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/AesEaxParamsOrBuilder\00", align 1 +@.TypeMapEntry.25367_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesEaxParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25368_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25369_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25370_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25371_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25372_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingKeyOrBuilder\00", align 1 +@.TypeMapEntry.25373_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25374_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25375_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/proto/AesGcmHkdfStreamingParamsOrBuilder\00", align 1 +@.TypeMapEntry.25376_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmHkdfStreamingParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25377_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25378_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/AesGcmKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25379_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25380_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25381_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesGcmKeyOrBuilder\00", align 1 +@.TypeMapEntry.25382_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25383_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25384_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/AesGcmSivKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25385_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25386_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25387_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/AesGcmSivKeyOrBuilder\00", align 1 +@.TypeMapEntry.25388_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesGcmSivKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25389_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25390_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/AesSivKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25391_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25392_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25393_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/AesSivKeyOrBuilder\00", align 1 +@.TypeMapEntry.25394_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IAesSivKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25395_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25396_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305KeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25397_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25398_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25399_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/ChaCha20Poly1305KeyOrBuilder\00", align 1 +@.TypeMapEntry.25400_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IChaCha20Poly1305KeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25401_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25402_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/EcdsaKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25403_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25404_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25405_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/EcdsaParamsOrBuilder\00", align 1 +@.TypeMapEntry.25406_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25407_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25408_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/EcdsaPrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25409_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaPrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25410_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25411_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/EcdsaPublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25412_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEcdsaPublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25413_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadDemParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25414_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/EciesAeadDemParamsOrBuilder\00", align 1 +@.TypeMapEntry.25415_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadDemParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25416_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25417_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25418_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25419_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25420_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfParamsOrBuilder\00", align 1 +@.TypeMapEntry.25421_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25422_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25423_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25424_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25425_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25426_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/EciesAeadHkdfPublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25427_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesAeadHkdfPublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25428_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesHkdfKemParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25429_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/EciesHkdfKemParamsOrBuilder\00", align 1 +@.TypeMapEntry.25430_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEciesHkdfKemParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25431_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25432_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/Ed25519KeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25433_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519KeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25434_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25435_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/Ed25519PrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25436_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519PrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25437_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25438_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/Ed25519PublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25439_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEd25519PublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25440_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEncryptedKeysetOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25441_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/EncryptedKeysetOrBuilder\00", align 1 +@.TypeMapEntry.25442_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IEncryptedKeysetOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25443_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25444_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/HkdfPrfKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25445_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25446_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25447_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/HkdfPrfKeyOrBuilder\00", align 1 +@.TypeMapEntry.25448_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25449_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25450_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HkdfPrfParamsOrBuilder\00", align 1 +@.TypeMapEntry.25451_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHkdfPrfParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25452_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25453_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HmacKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25454_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25455_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25456_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/HmacKeyOrBuilder\00", align 1 +@.TypeMapEntry.25457_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25458_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25459_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/HmacParamsOrBuilder\00", align 1 +@.TypeMapEntry.25460_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25461_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25462_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/HmacPrfKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25463_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25464_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25465_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/HmacPrfKeyOrBuilder\00", align 1 +@.TypeMapEntry.25466_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25467_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25468_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HmacPrfParamsOrBuilder\00", align 1 +@.TypeMapEntry.25469_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHmacPrfParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25470_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkeKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25471_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HpkeKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25472_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkeKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25473_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkeParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25474_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/HpkeParamsOrBuilder\00", align 1 +@.TypeMapEntry.25475_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkeParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25476_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkePrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25477_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/HpkePrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25478_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkePrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25479_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkePublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25480_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/HpkePublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25481_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IHpkePublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25482_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25483_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/JwtEcdsaKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25484_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25485_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25486_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25487_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25488_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25489_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25490_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtEcdsaPublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25491_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25492_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/JwtHmacKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25493_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25494_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25495_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/JwtHmacKeyOrBuilder\00", align 1 +@.TypeMapEntry.25496_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtHmacKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25497_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25498_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1KeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25499_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1KeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25500_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25501_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25502_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25503_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25504_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25505_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPkcs1PublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25506_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25507_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25508_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25509_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25510_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25511_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25512_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25513_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25514_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IJwtRsaSsaPssPublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25515_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyDataOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25516_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/KeyDataOrBuilder\00", align 1 +@.TypeMapEntry.25517_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyDataOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25518_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyTemplateOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25519_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/KeyTemplateOrBuilder\00", align 1 +@.TypeMapEntry.25520_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyTemplateOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25521_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyTypeEntryOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25522_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/KeyTypeEntryOrBuilder\00", align 1 +@.TypeMapEntry.25523_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeyTypeEntryOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25524_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeysetInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25525_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/KeysetInfoOrBuilder\00", align 1 +@.TypeMapEntry.25526_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeysetInfoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25527_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeysetOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25528_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/KeysetOrBuilder\00", align 1 +@.TypeMapEntry.25529_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKeysetOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25530_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25531_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/KmsAeadKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25532_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25533_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25534_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/KmsAeadKeyOrBuilder\00", align 1 +@.TypeMapEntry.25535_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsAeadKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25536_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25537_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25538_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25539_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25540_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKeyOrBuilder\00", align 1 +@.TypeMapEntry.25541_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IKmsEnvelopeAeadKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25542_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25543_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25544_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25545_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25546_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKeyOrBuilder\00", align 1 +@.TypeMapEntry.25547_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25548_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25549_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverParamsOrBuilder\00", align 1 +@.TypeMapEntry.25550_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IPrfBasedDeriverParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25551_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRegistryConfigOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25552_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/RegistryConfigOrBuilder\00", align 1 +@.TypeMapEntry.25553_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRegistryConfigOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25554_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25555_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1KeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25556_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1KeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25557_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1ParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25558_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1ParamsOrBuilder\00", align 1 +@.TypeMapEntry.25559_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1ParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25560_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25561_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25562_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25563_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25564_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25565_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPkcs1PublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25566_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25567_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/RsaSsaPssKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25568_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25569_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25570_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/RsaSsaPssParamsOrBuilder\00", align 1 +@.TypeMapEntry.25571_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25572_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPrivateKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25573_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPrivateKeyOrBuilder\00", align 1 +@.TypeMapEntry.25574_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPrivateKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25575_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPublicKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25576_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPublicKeyOrBuilder\00", align 1 +@.TypeMapEntry.25577_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IRsaSsaPssPublicKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25578_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25579_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/XAesGcmKeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25580_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25581_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25582_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/XAesGcmKeyOrBuilder\00", align 1 +@.TypeMapEntry.25583_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25584_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmParamsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25585_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/XAesGcmParamsOrBuilder\00", align 1 +@.TypeMapEntry.25586_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXAesGcmParamsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25587_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyFormatOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25588_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305KeyFormatOrBuilder\00", align 1 +@.TypeMapEntry.25589_from = private unnamed_addr constant [113 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyFormatOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25590_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25591_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305KeyOrBuilder\00", align 1 +@.TypeMapEntry.25592_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Proto.IXChaCha20Poly1305KeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25593_from = private unnamed_addr constant [78 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsa, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25594_to = private unnamed_addr constant [38 x i8] c"com/google/crypto/tink/proto/JwtEcdsa\00", align 1 +@.TypeMapEntry.25595_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaAlgorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25596_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/JwtEcdsaAlgorithm\00", align 1 +@.TypeMapEntry.25597_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25598_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/JwtEcdsaKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25599_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25600_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/JwtEcdsaKeyFormat\00", align 1 +@.TypeMapEntry.25601_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25602_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPrivateKey$Builder\00", align 1 +@.TypeMapEntry.25603_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25604_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPrivateKey\00", align 1 +@.TypeMapEntry.25605_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25606_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKey$Builder\00", align 1 +@.TypeMapEntry.25607_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+CustomKid+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25608_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKey$CustomKid$Builder\00", align 1 +@.TypeMapEntry.25609_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+CustomKid, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25610_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKey$CustomKid\00", align 1 +@.TypeMapEntry.25611_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25612_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKey$CustomKidOrBuilder\00", align 1 +@.TypeMapEntry.25613_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey+ICustomKidOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25614_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtEcdsaPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25615_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/JwtEcdsaPublicKey\00", align 1 +@.TypeMapEntry.25616_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25617_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/JwtHmac\00", align 1 +@.TypeMapEntry.25618_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacAlgorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25619_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/JwtHmacAlgorithm\00", align 1 +@.TypeMapEntry.25620_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25621_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/JwtHmacKey$Builder\00", align 1 +@.TypeMapEntry.25622_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+CustomKid+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25623_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/JwtHmacKey$CustomKid$Builder\00", align 1 +@.TypeMapEntry.25624_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+CustomKid, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25625_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/JwtHmacKey$CustomKid\00", align 1 +@.TypeMapEntry.25626_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25627_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/JwtHmacKey$CustomKidOrBuilder\00", align 1 +@.TypeMapEntry.25628_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey+ICustomKidOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25629_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25630_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/JwtHmacKey\00", align 1 +@.TypeMapEntry.25631_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25632_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/JwtHmacKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25633_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtHmacKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25634_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/JwtHmacKeyFormat\00", align 1 +@.TypeMapEntry.25635_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25636_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1\00", align 1 +@.TypeMapEntry.25637_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1Algorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25638_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1Algorithm\00", align 1 +@.TypeMapEntry.25639_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1KeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25640_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1KeyFormat$Builder\00", align 1 +@.TypeMapEntry.25641_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1KeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25642_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1KeyFormat\00", align 1 +@.TypeMapEntry.25643_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25644_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PrivateKey$Builder\00", align 1 +@.TypeMapEntry.25645_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25646_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PrivateKey\00", align 1 +@.TypeMapEntry.25647_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25648_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKey$Builder\00", align 1 +@.TypeMapEntry.25649_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+CustomKid+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25650_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKey$CustomKid$Builder\00", align 1 +@.TypeMapEntry.25651_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+CustomKid, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25652_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKey$CustomKid\00", align 1 +@.TypeMapEntry.25653_from = private unnamed_addr constant [113 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25654_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKey$CustomKidOrBuilder\00", align 1 +@.TypeMapEntry.25655_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey+ICustomKidOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25656_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPkcs1PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25657_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPkcs1PublicKey\00", align 1 +@.TypeMapEntry.25658_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPss, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25659_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPss\00", align 1 +@.TypeMapEntry.25660_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssAlgorithm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25661_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssAlgorithm\00", align 1 +@.TypeMapEntry.25662_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25663_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25664_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25665_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssKeyFormat\00", align 1 +@.TypeMapEntry.25666_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25667_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPrivateKey$Builder\00", align 1 +@.TypeMapEntry.25668_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25669_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPrivateKey\00", align 1 +@.TypeMapEntry.25670_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25671_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKey$Builder\00", align 1 +@.TypeMapEntry.25672_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+CustomKid+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25673_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKey$CustomKid$Builder\00", align 1 +@.TypeMapEntry.25674_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+CustomKid, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25675_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKey$CustomKid\00", align 1 +@.TypeMapEntry.25676_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+ICustomKidOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25677_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKey$CustomKidOrBuilder\00", align 1 +@.TypeMapEntry.25678_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey+ICustomKidOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25679_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.JwtRsaSsaPssPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25680_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/JwtRsaSsaPssPublicKey\00", align 1 +@.TypeMapEntry.25681_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyData+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25682_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/KeyData$Builder\00", align 1 +@.TypeMapEntry.25683_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyData+KeyMaterialType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25684_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/KeyData$KeyMaterialType\00", align 1 +@.TypeMapEntry.25685_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyData, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25686_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/KeyData\00", align 1 +@.TypeMapEntry.25687_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyStatusType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25688_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/KeyStatusType\00", align 1 +@.TypeMapEntry.25689_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyTemplate+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25690_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/KeyTemplate$Builder\00", align 1 +@.TypeMapEntry.25691_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyTemplate, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25692_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/proto/KeyTemplate\00", align 1 +@.TypeMapEntry.25693_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyTypeEntry+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25694_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/KeyTypeEntry$Builder\00", align 1 +@.TypeMapEntry.25695_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeyTypeEntry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25696_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/proto/KeyTypeEntry\00", align 1 +@.TypeMapEntry.25697_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25698_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/Keyset$Builder\00", align 1 +@.TypeMapEntry.25699_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset+IKeyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25700_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/Keyset$KeyOrBuilder\00", align 1 +@.TypeMapEntry.25701_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset+IKeyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25702_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset+Key+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25703_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/Keyset$Key$Builder\00", align 1 +@.TypeMapEntry.25704_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset+Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25705_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/Keyset$Key\00", align 1 +@.TypeMapEntry.25706_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Keyset, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25707_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/proto/Keyset\00", align 1 +@.TypeMapEntry.25708_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25709_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/KeysetInfo$Builder\00", align 1 +@.TypeMapEntry.25710_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+IKeyInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25711_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/KeysetInfo$KeyInfoOrBuilder\00", align 1 +@.TypeMapEntry.25712_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+IKeyInfoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25713_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+KeyInfo+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25714_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/KeysetInfo$KeyInfo$Builder\00", align 1 +@.TypeMapEntry.25715_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo+KeyInfo, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25716_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/KeysetInfo$KeyInfo\00", align 1 +@.TypeMapEntry.25717_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KeysetInfo, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25718_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/KeysetInfo\00", align 1 +@.TypeMapEntry.25719_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25720_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/KmsAead\00", align 1 +@.TypeMapEntry.25721_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsAeadKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25722_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/KmsAeadKey$Builder\00", align 1 +@.TypeMapEntry.25723_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25724_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/KmsAeadKey\00", align 1 +@.TypeMapEntry.25725_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsAeadKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25726_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/KmsAeadKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25727_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsAeadKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25728_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/KmsAeadKeyFormat\00", align 1 +@.TypeMapEntry.25729_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsEnvelope, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25730_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/proto/KmsEnvelope\00", align 1 +@.TypeMapEntry.25731_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsEnvelopeAeadKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25732_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKey$Builder\00", align 1 +@.TypeMapEntry.25733_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsEnvelopeAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25734_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKey\00", align 1 +@.TypeMapEntry.25735_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsEnvelopeAeadKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25736_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25737_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.KmsEnvelopeAeadKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25738_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/KmsEnvelopeAeadKeyFormat\00", align 1 +@.TypeMapEntry.25739_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.OutputPrefixType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25740_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/OutputPrefixType\00", align 1 +@.TypeMapEntry.25741_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriver, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25742_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriver\00", align 1 +@.TypeMapEntry.25743_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25744_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKey$Builder\00", align 1 +@.TypeMapEntry.25745_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25746_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKey\00", align 1 +@.TypeMapEntry.25747_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25748_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25749_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25750_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverKeyFormat\00", align 1 +@.TypeMapEntry.25751_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25752_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverParams$Builder\00", align 1 +@.TypeMapEntry.25753_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.PrfBasedDeriverParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25754_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/PrfBasedDeriverParams\00", align 1 +@.TypeMapEntry.25755_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RegistryConfig+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25756_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/proto/RegistryConfig$Builder\00", align 1 +@.TypeMapEntry.25757_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RegistryConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25758_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/proto/RegistryConfig\00", align 1 +@.TypeMapEntry.25759_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25760_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1\00", align 1 +@.TypeMapEntry.25761_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1KeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25762_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1KeyFormat$Builder\00", align 1 +@.TypeMapEntry.25763_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1KeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25764_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1KeyFormat\00", align 1 +@.TypeMapEntry.25765_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1Params+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25766_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1Params$Builder\00", align 1 +@.TypeMapEntry.25767_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1Params, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25768_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1Params\00", align 1 +@.TypeMapEntry.25769_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1PrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25770_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PrivateKey$Builder\00", align 1 +@.TypeMapEntry.25771_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25772_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PrivateKey\00", align 1 +@.TypeMapEntry.25773_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1PublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25774_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PublicKey$Builder\00", align 1 +@.TypeMapEntry.25775_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPkcs1PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25776_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/RsaSsaPkcs1PublicKey\00", align 1 +@.TypeMapEntry.25777_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPss, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25778_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/proto/RsaSsaPss\00", align 1 +@.TypeMapEntry.25779_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25780_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/RsaSsaPssKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25781_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25782_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/RsaSsaPssKeyFormat\00", align 1 +@.TypeMapEntry.25783_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25784_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/proto/RsaSsaPssParams$Builder\00", align 1 +@.TypeMapEntry.25785_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25786_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/proto/RsaSsaPssParams\00", align 1 +@.TypeMapEntry.25787_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25788_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPrivateKey$Builder\00", align 1 +@.TypeMapEntry.25789_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25790_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPrivateKey\00", align 1 +@.TypeMapEntry.25791_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25792_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPublicKey$Builder\00", align 1 +@.TypeMapEntry.25793_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.RsaSsaPssPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25794_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/RsaSsaPssPublicKey\00", align 1 +@.TypeMapEntry.25795_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Tink, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25796_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/proto/Tink\00", align 1 +@.TypeMapEntry.25797_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25798_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/proto/XAesGcm\00", align 1 +@.TypeMapEntry.25799_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25800_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/proto/XAesGcmKey$Builder\00", align 1 +@.TypeMapEntry.25801_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25802_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/proto/XAesGcmKey\00", align 1 +@.TypeMapEntry.25803_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmKeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25804_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/proto/XAesGcmKeyFormat$Builder\00", align 1 +@.TypeMapEntry.25805_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmKeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25806_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/proto/XAesGcmKeyFormat\00", align 1 +@.TypeMapEntry.25807_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmParams+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25808_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/proto/XAesGcmParams$Builder\00", align 1 +@.TypeMapEntry.25809_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XAesGcmParams, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25810_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/proto/XAesGcmParams\00", align 1 +@.TypeMapEntry.25811_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XChaCha20Poly1305Key+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25812_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305Key$Builder\00", align 1 +@.TypeMapEntry.25813_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XChaCha20Poly1305Key, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25814_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305Key\00", align 1 +@.TypeMapEntry.25815_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XChaCha20Poly1305KeyFormat+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25816_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305KeyFormat$Builder\00", align 1 +@.TypeMapEntry.25817_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Proto.XChaCha20Poly1305KeyFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25818_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/proto/XChaCha20Poly1305KeyFormat\00", align 1 +@.TypeMapEntry.25819_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Proto.Xchacha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25820_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/proto/Xchacha20Poly1305\00", align 1 +@.TypeMapEntry.25821_from = private unnamed_addr constant [72 x i8] c"Xamarin.Google.Crypto.Tink.Registry, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25822_to = private unnamed_addr constant [32 x i8] c"com/google/crypto/tink/Registry\00", align 1 +@.TypeMapEntry.25823_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.RegistryConfiguration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25824_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/RegistryConfiguration\00", align 1 +@.TypeMapEntry.25825_from = private unnamed_addr constant [79 x i8] c"Xamarin.Google.Crypto.Tink.SecretKeyAccess, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25826_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/SecretKeyAccess\00", align 1 +@.TypeMapEntry.25827_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+Builder+LimitedInputStream, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25828_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/AbstractMessageLite$Builder$LimitedInputStream\00", align 1 +@.TypeMapEntry.25829_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25830_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/shaded/protobuf/AbstractMessageLite$Builder\00", align 1 +@.TypeMapEntry.25831_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+BuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25832_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+IInternalOneOfEnum, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25833_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/AbstractMessageLite$InternalOneOfEnum\00", align 1 +@.TypeMapEntry.25834_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite+IInternalOneOfEnumInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25835_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25836_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/AbstractMessageLite\00", align 1 +@.TypeMapEntry.25837_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractMessageLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25838_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25839_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/AbstractParser\00", align 1 +@.TypeMapEntry.25840_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AbstractParserInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25841_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Any+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25842_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/Any$Builder\00", align 1 +@.TypeMapEntry.25843_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Any, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25844_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/shaded/protobuf/Any\00", align 1 +@.TypeMapEntry.25845_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.AnyProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25846_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/AnyProto\00", align 1 +@.TypeMapEntry.25847_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Api+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25848_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/Api$Builder\00", align 1 +@.TypeMapEntry.25849_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Api, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25850_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/shaded/protobuf/Api\00", align 1 +@.TypeMapEntry.25851_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ApiProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25852_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/ApiProto\00", align 1 +@.TypeMapEntry.25853_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.BoolValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25854_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/BoolValue$Builder\00", align 1 +@.TypeMapEntry.25855_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.BoolValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25856_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/BoolValue\00", align 1 +@.TypeMapEntry.25857_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteOutput, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25858_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/ByteOutput\00", align 1 +@.TypeMapEntry.25859_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteOutputInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25860_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString+IByteIterator, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25861_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/shaded/protobuf/ByteString$ByteIterator\00", align 1 +@.TypeMapEntry.25862_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString+IByteIteratorInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25863_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString+Output, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25864_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/ByteString$Output\00", align 1 +@.TypeMapEntry.25865_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteString, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25866_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/ByteString\00", align 1 +@.TypeMapEntry.25867_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ByteStringInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25868_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.BytesValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25869_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/BytesValue$Builder\00", align 1 +@.TypeMapEntry.25870_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.BytesValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25871_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/BytesValue\00", align 1 +@.TypeMapEntry.25872_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.CodedInputStream, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25873_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/shaded/protobuf/CodedInputStream\00", align 1 +@.TypeMapEntry.25874_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.CodedInputStreamInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25875_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.CodedOutputStream+OutOfSpaceException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25876_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/CodedOutputStream$OutOfSpaceException\00", align 1 +@.TypeMapEntry.25877_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.CodedOutputStream, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25878_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/CodedOutputStream\00", align 1 +@.TypeMapEntry.25879_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.CodedOutputStreamInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25880_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25881_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$Builder\00", align 1 +@.TypeMapEntry.25882_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+ExtensionRange+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25883_to = private unnamed_addr constant [95 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ExtensionRange$Builder\00", align 1 +@.TypeMapEntry.25884_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+ExtensionRange, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25885_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ExtensionRange\00", align 1 +@.TypeMapEntry.25886_from = private unnamed_addr constant [137 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IExtensionRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25887_to = private unnamed_addr constant [96 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ExtensionRangeOrBuilder\00", align 1 +@.TypeMapEntry.25888_from = private unnamed_addr constant [144 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IExtensionRangeOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25889_from = private unnamed_addr constant [136 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IReservedRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25890_to = private unnamed_addr constant [95 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ReservedRangeOrBuilder\00", align 1 +@.TypeMapEntry.25891_from = private unnamed_addr constant [143 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+IReservedRangeOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25892_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+ReservedRange+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25893_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ReservedRange$Builder\00", align 1 +@.TypeMapEntry.25894_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto+ReservedRange, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25895_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto$ReservedRange\00", align 1 +@.TypeMapEntry.25896_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+DescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25897_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProto\00", align 1 +@.TypeMapEntry.25898_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+Edition, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25899_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$Edition\00", align 1 +@.TypeMapEntry.25900_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25901_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.25902_from = private unnamed_addr constant [142 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+EnumReservedRange+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25903_to = private unnamed_addr constant [102 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProto$EnumReservedRange$Builder\00", align 1 +@.TypeMapEntry.25904_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+EnumReservedRange, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25905_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProto$EnumReservedRange\00", align 1 +@.TypeMapEntry.25906_from = private unnamed_addr constant [144 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+IEnumReservedRangeOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25907_to = private unnamed_addr constant [103 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProto$EnumReservedRangeOrBuilder\00", align 1 +@.TypeMapEntry.25908_from = private unnamed_addr constant [151 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto+IEnumReservedRangeOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25909_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25910_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProto\00", align 1 +@.TypeMapEntry.25911_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25912_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumOptions$Builder\00", align 1 +@.TypeMapEntry.25913_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25914_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumOptions\00", align 1 +@.TypeMapEntry.25915_from = private unnamed_addr constant [129 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumValueDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25916_to = private unnamed_addr constant [89 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.25917_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumValueDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25918_to = private unnamed_addr constant [81 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueDescriptorProto\00", align 1 +@.TypeMapEntry.25919_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumValueOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25920_to = private unnamed_addr constant [81 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueOptions$Builder\00", align 1 +@.TypeMapEntry.25921_from = private unnamed_addr constant [113 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+EnumValueOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25922_to = private unnamed_addr constant [73 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueOptions\00", align 1 +@.TypeMapEntry.25923_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25924_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions$Builder\00", align 1 +@.TypeMapEntry.25925_from = private unnamed_addr constant [138 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+Declaration+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25926_to = private unnamed_addr constant [98 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions$Declaration$Builder\00", align 1 +@.TypeMapEntry.25927_from = private unnamed_addr constant [130 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+Declaration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25928_to = private unnamed_addr constant [90 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions$Declaration\00", align 1 +@.TypeMapEntry.25929_from = private unnamed_addr constant [140 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+IDeclarationOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25930_to = private unnamed_addr constant [99 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions$DeclarationOrBuilder\00", align 1 +@.TypeMapEntry.25931_from = private unnamed_addr constant [147 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+IDeclarationOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25932_from = private unnamed_addr constant [136 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions+VerificationState, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25933_to = private unnamed_addr constant [96 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions$VerificationState\00", align 1 +@.TypeMapEntry.25934_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ExtensionRangeOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25935_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptions\00", align 1 +@.TypeMapEntry.25936_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25937_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$Builder\00", align 1 +@.TypeMapEntry.25938_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+EnumType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25939_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$EnumType\00", align 1 +@.TypeMapEntry.25940_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+FieldPresence, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25941_to = private unnamed_addr constant [81 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$FieldPresence\00", align 1 +@.TypeMapEntry.25942_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+JsonFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25943_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$JsonFormat\00", align 1 +@.TypeMapEntry.25944_from = private unnamed_addr constant [123 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+MessageEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25945_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$MessageEncoding\00", align 1 +@.TypeMapEntry.25946_from = private unnamed_addr constant [129 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+RepeatedFieldEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25947_to = private unnamed_addr constant [89 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$RepeatedFieldEncoding\00", align 1 +@.TypeMapEntry.25948_from = private unnamed_addr constant [122 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet+Utf8Validation, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25949_to = private unnamed_addr constant [82 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet$Utf8Validation\00", align 1 +@.TypeMapEntry.25950_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSet, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25951_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSet\00", align 1 +@.TypeMapEntry.25952_from = private unnamed_addr constant [123 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25953_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaults$Builder\00", align 1 +@.TypeMapEntry.25954_from = private unnamed_addr constant [148 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+FeatureSetEditionDefault+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25955_to = private unnamed_addr constant [108 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefault$Builder\00", align 1 +@.TypeMapEntry.25956_from = private unnamed_addr constant [140 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+FeatureSetEditionDefault, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25957_to = private unnamed_addr constant [100 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefault\00", align 1 +@.TypeMapEntry.25958_from = private unnamed_addr constant [150 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+IFeatureSetEditionDefaultOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25959_to = private unnamed_addr constant [109 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaults$FeatureSetEditionDefaultOrBuilder\00", align 1 +@.TypeMapEntry.25960_from = private unnamed_addr constant [157 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults+IFeatureSetEditionDefaultOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25961_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FeatureSetDefaults, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25962_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaults\00", align 1 +@.TypeMapEntry.25963_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25964_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.25965_from = private unnamed_addr constant [123 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldDescriptorProto+Label, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25966_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldDescriptorProto$Label\00", align 1 +@.TypeMapEntry.25967_from = private unnamed_addr constant [122 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldDescriptorProto+Type, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25968_to = private unnamed_addr constant [82 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldDescriptorProto$Type\00", align 1 +@.TypeMapEntry.25969_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25970_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldDescriptorProto\00", align 1 +@.TypeMapEntry.25971_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25972_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$Builder\00", align 1 +@.TypeMapEntry.25973_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+CType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25974_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$CType\00", align 1 +@.TypeMapEntry.25975_from = private unnamed_addr constant [132 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+EditionDefault+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25976_to = private unnamed_addr constant [92 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$EditionDefault$Builder\00", align 1 +@.TypeMapEntry.25977_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+EditionDefault, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25978_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$EditionDefault\00", align 1 +@.TypeMapEntry.25979_from = private unnamed_addr constant [132 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+FeatureSupport+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25980_to = private unnamed_addr constant [92 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$FeatureSupport$Builder\00", align 1 +@.TypeMapEntry.25981_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+FeatureSupport, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25982_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$FeatureSupport\00", align 1 +@.TypeMapEntry.25983_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IEditionDefaultOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25984_to = private unnamed_addr constant [93 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$EditionDefaultOrBuilder\00", align 1 +@.TypeMapEntry.25985_from = private unnamed_addr constant [141 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IEditionDefaultOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25986_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IFeatureSupportOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25987_to = private unnamed_addr constant [93 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$FeatureSupportOrBuilder\00", align 1 +@.TypeMapEntry.25988_from = private unnamed_addr constant [141 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+IFeatureSupportOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25989_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+JSType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25990_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$JSType\00", align 1 +@.TypeMapEntry.25991_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+OptionRetention, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25992_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$OptionRetention\00", align 1 +@.TypeMapEntry.25993_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions+OptionTargetType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25994_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions$OptionTargetType\00", align 1 +@.TypeMapEntry.25995_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FieldOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25996_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptions\00", align 1 +@.TypeMapEntry.25997_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.25998_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.25999_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26000_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorProto\00", align 1 +@.TypeMapEntry.26001_from = private unnamed_addr constant [122 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileDescriptorSet+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26002_to = private unnamed_addr constant [82 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorSet$Builder\00", align 1 +@.TypeMapEntry.26003_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileDescriptorSet, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26004_to = private unnamed_addr constant [74 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorSet\00", align 1 +@.TypeMapEntry.26005_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26006_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileOptions$Builder\00", align 1 +@.TypeMapEntry.26007_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileOptions+OptimizeMode, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26008_to = private unnamed_addr constant [81 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileOptions$OptimizeMode\00", align 1 +@.TypeMapEntry.26009_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+FileOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26010_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileOptions\00", align 1 +@.TypeMapEntry.26011_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+Annotation+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26012_to = private unnamed_addr constant [93 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo$Annotation$Builder\00", align 1 +@.TypeMapEntry.26013_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+Annotation+Semantic, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26014_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo$Annotation$Semantic\00", align 1 +@.TypeMapEntry.26015_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+Annotation, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26016_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo$Annotation\00", align 1 +@.TypeMapEntry.26017_from = private unnamed_addr constant [122 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26018_to = private unnamed_addr constant [82 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo$Builder\00", align 1 +@.TypeMapEntry.26019_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+IAnnotationOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26020_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo$AnnotationOrBuilder\00", align 1 +@.TypeMapEntry.26021_from = private unnamed_addr constant [142 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo+IAnnotationOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26022_from = private unnamed_addr constant [114 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+GeneratedCodeInfo, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26023_to = private unnamed_addr constant [74 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfo\00", align 1 +@.TypeMapEntry.26024_from = private unnamed_addr constant [122 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26025_to = private unnamed_addr constant [81 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$DescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26026_from = private unnamed_addr constant [129 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26027_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26028_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26029_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26030_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26031_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26032_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26033_from = private unnamed_addr constant [131 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26034_to = private unnamed_addr constant [90 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26035_from = private unnamed_addr constant [138 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26036_from = private unnamed_addr constant [123 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26037_to = private unnamed_addr constant [82 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$EnumValueOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26038_from = private unnamed_addr constant [130 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IEnumValueOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26039_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IExtensionRangeOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26040_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ExtensionRangeOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26041_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IExtensionRangeOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26042_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetDefaultsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26043_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetDefaultsOrBuilder\00", align 1 +@.TypeMapEntry.26044_from = private unnamed_addr constant [132 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetDefaultsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26045_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26046_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FeatureSetOrBuilder\00", align 1 +@.TypeMapEntry.26047_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFeatureSetOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26048_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26049_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26050_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26051_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26052_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FieldOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26053_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFieldOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26054_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26055_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26056_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26057_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorSetOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26058_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileDescriptorSetOrBuilder\00", align 1 +@.TypeMapEntry.26059_from = private unnamed_addr constant [131 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileDescriptorSetOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26060_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26061_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$FileOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26062_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IFileOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26063_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IGeneratedCodeInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26064_to = private unnamed_addr constant [83 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$GeneratedCodeInfoOrBuilder\00", align 1 +@.TypeMapEntry.26065_from = private unnamed_addr constant [131 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IGeneratedCodeInfoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26066_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMessageOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26067_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MessageOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26068_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMessageOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26069_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26070_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26071_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26072_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26073_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26074_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IMethodOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26075_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26076_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26077_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26078_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26079_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26080_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IOneofOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26081_from = private unnamed_addr constant [129 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceDescriptorProtoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26082_to = private unnamed_addr constant [88 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceDescriptorProtoOrBuilder\00", align 1 +@.TypeMapEntry.26083_from = private unnamed_addr constant [136 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceDescriptorProtoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26084_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceOptionsOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26085_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceOptionsOrBuilder\00", align 1 +@.TypeMapEntry.26086_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IServiceOptionsOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26087_from = private unnamed_addr constant [121 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ISourceCodeInfoOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26088_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfoOrBuilder\00", align 1 +@.TypeMapEntry.26089_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ISourceCodeInfoOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26090_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IUninterpretedOptionOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26091_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOptionOrBuilder\00", align 1 +@.TypeMapEntry.26092_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+IUninterpretedOptionOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26093_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MessageOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26094_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MessageOptions$Builder\00", align 1 +@.TypeMapEntry.26095_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MessageOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26096_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MessageOptions\00", align 1 +@.TypeMapEntry.26097_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MethodDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26098_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.26099_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MethodDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26100_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodDescriptorProto\00", align 1 +@.TypeMapEntry.26101_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MethodOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26102_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodOptions$Builder\00", align 1 +@.TypeMapEntry.26103_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MethodOptions+IdempotencyLevel, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26104_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodOptions$IdempotencyLevel\00", align 1 +@.TypeMapEntry.26105_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+MethodOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26106_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$MethodOptions\00", align 1 +@.TypeMapEntry.26107_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+OneofDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26108_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.26109_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+OneofDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26110_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofDescriptorProto\00", align 1 +@.TypeMapEntry.26111_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+OneofOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26112_to = private unnamed_addr constant [77 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofOptions$Builder\00", align 1 +@.TypeMapEntry.26113_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+OneofOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26114_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$OneofOptions\00", align 1 +@.TypeMapEntry.26115_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ServiceDescriptorProto+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26116_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceDescriptorProto$Builder\00", align 1 +@.TypeMapEntry.26117_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ServiceDescriptorProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26118_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceDescriptorProto\00", align 1 +@.TypeMapEntry.26119_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ServiceOptions+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26120_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceOptions$Builder\00", align 1 +@.TypeMapEntry.26121_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+ServiceOptions, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26122_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$ServiceOptions\00", align 1 +@.TypeMapEntry.26123_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26124_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfo$Builder\00", align 1 +@.TypeMapEntry.26125_from = private unnamed_addr constant [130 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+ILocationOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26126_to = private unnamed_addr constant [89 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfo$LocationOrBuilder\00", align 1 +@.TypeMapEntry.26127_from = private unnamed_addr constant [137 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+ILocationOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26128_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+Location+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26129_to = private unnamed_addr constant [88 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfo$Location$Builder\00", align 1 +@.TypeMapEntry.26130_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo+Location, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26131_to = private unnamed_addr constant [80 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfo$Location\00", align 1 +@.TypeMapEntry.26132_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+SourceCodeInfo, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26133_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$SourceCodeInfo\00", align 1 +@.TypeMapEntry.26134_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26135_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOption$Builder\00", align 1 +@.TypeMapEntry.26136_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+INamePartOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26137_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOption$NamePartOrBuilder\00", align 1 +@.TypeMapEntry.26138_from = private unnamed_addr constant [142 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+INamePartOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26139_from = private unnamed_addr constant [133 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+NamePart+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26140_to = private unnamed_addr constant [93 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOption$NamePart$Builder\00", align 1 +@.TypeMapEntry.26141_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption+NamePart, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26142_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOption$NamePart\00", align 1 +@.TypeMapEntry.26143_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos+UninterpretedOption, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26144_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos$UninterpretedOption\00", align 1 +@.TypeMapEntry.26145_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DescriptorProtos, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26146_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/shaded/protobuf/DescriptorProtos\00", align 1 +@.TypeMapEntry.26147_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DoubleValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26148_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/DoubleValue$Builder\00", align 1 +@.TypeMapEntry.26149_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DoubleValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26150_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/DoubleValue\00", align 1 +@.TypeMapEntry.26151_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Duration+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26152_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/shaded/protobuf/Duration$Builder\00", align 1 +@.TypeMapEntry.26153_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Duration, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26154_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/Duration\00", align 1 +@.TypeMapEntry.26155_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.DurationProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26156_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/DurationProto\00", align 1 +@.TypeMapEntry.26157_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Empty+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26158_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/Empty$Builder\00", align 1 +@.TypeMapEntry.26159_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Empty, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26160_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/shaded/protobuf/Empty\00", align 1 +@.TypeMapEntry.26161_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.EmptyProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26162_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/EmptyProto\00", align 1 +@.TypeMapEntry.26163_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Enum+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26164_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/Enum$Builder\00", align 1 +@.TypeMapEntry.26165_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Enum, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26166_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/shaded/protobuf/Enum\00", align 1 +@.TypeMapEntry.26167_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.EnumValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26168_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/EnumValue$Builder\00", align 1 +@.TypeMapEntry.26169_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.EnumValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26170_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/EnumValue\00", align 1 +@.TypeMapEntry.26171_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ExtensionLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26172_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/ExtensionLite\00", align 1 +@.TypeMapEntry.26173_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ExtensionLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26174_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ExtensionRegistryLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26175_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/shaded/protobuf/ExtensionRegistryLite\00", align 1 +@.TypeMapEntry.26176_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldMask+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26177_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldMask$Builder\00", align 1 +@.TypeMapEntry.26178_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldMask, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26179_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldMask\00", align 1 +@.TypeMapEntry.26180_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldMaskProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26181_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldMaskProto\00", align 1 +@.TypeMapEntry.26182_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldSet+IFieldDescriptorLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26183_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldSet$FieldDescriptorLite\00", align 1 +@.TypeMapEntry.26184_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldSet+IFieldDescriptorLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26185_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldSet, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26186_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldSet\00", align 1 +@.TypeMapEntry.26187_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FieldType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26188_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldType\00", align 1 +@.TypeMapEntry.26189_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FloatValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26190_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/FloatValue$Builder\00", align 1 +@.TypeMapEntry.26191_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.FloatValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26192_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/FloatValue\00", align 1 +@.TypeMapEntry.26193_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26194_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$Builder\00", align 1 +@.TypeMapEntry.26195_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+DefaultInstanceBasedParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26196_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$DefaultInstanceBasedParser\00", align 1 +@.TypeMapEntry.26197_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+ExtendableBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26198_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$ExtendableBuilder\00", align 1 +@.TypeMapEntry.26199_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+ExtendableBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26200_from = private unnamed_addr constant [134 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+ExtendableMessage+ExtensionWriter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26201_to = private unnamed_addr constant [94 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$ExtendableMessage$ExtensionWriter\00", align 1 +@.TypeMapEntry.26202_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+ExtendableMessage, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26203_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$ExtendableMessage\00", align 1 +@.TypeMapEntry.26204_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+ExtendableMessageInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26205_from = private unnamed_addr constant [119 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+GeneratedExtension, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26206_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$GeneratedExtension\00", align 1 +@.TypeMapEntry.26207_from = private unnamed_addr constant [128 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+IExtendableMessageOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26208_to = private unnamed_addr constant [87 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$ExtendableMessageOrBuilder\00", align 1 +@.TypeMapEntry.26209_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+IExtendableMessageOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26210_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+MethodToInvoke, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26211_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$MethodToInvoke\00", align 1 +@.TypeMapEntry.26212_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite+SerializedForm, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26213_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite$SerializedForm\00", align 1 +@.TypeMapEntry.26214_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26215_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/GeneratedMessageLite\00", align 1 +@.TypeMapEntry.26216_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.GeneratedMessageLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26217_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IAnyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26218_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/AnyOrBuilder\00", align 1 +@.TypeMapEntry.26219_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IAnyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26220_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IApiOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26221_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/ApiOrBuilder\00", align 1 +@.TypeMapEntry.26222_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IApiOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26223_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBoolValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26224_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/BoolValueOrBuilder\00", align 1 +@.TypeMapEntry.26225_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBoolValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26226_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBytesValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26227_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/BytesValueOrBuilder\00", align 1 +@.TypeMapEntry.26228_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IBytesValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26229_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDoubleValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26230_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/DoubleValueOrBuilder\00", align 1 +@.TypeMapEntry.26231_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDoubleValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26232_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDurationOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26233_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/DurationOrBuilder\00", align 1 +@.TypeMapEntry.26234_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IDurationOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26235_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEmptyOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26236_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/EmptyOrBuilder\00", align 1 +@.TypeMapEntry.26237_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEmptyOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26238_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26239_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/EnumOrBuilder\00", align 1 +@.TypeMapEntry.26240_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26241_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26242_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/EnumValueOrBuilder\00", align 1 +@.TypeMapEntry.26243_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IEnumValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26244_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IExperimentalApi, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26245_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/shaded/protobuf/ExperimentalApi\00", align 1 +@.TypeMapEntry.26246_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IExperimentalApiInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26247_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFieldMaskOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26248_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/FieldMaskOrBuilder\00", align 1 +@.TypeMapEntry.26249_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFieldMaskOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26250_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFloatValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26251_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/FloatValueOrBuilder\00", align 1 +@.TypeMapEntry.26252_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IFloatValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26253_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt32ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26254_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/Int32ValueOrBuilder\00", align 1 +@.TypeMapEntry.26255_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt32ValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26256_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt64ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26257_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/Int64ValueOrBuilder\00", align 1 +@.TypeMapEntry.26258_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IInt64ValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26259_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ILazyStringList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26260_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/LazyStringList\00", align 1 +@.TypeMapEntry.26261_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ILazyStringListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26262_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IListValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26263_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/ListValueOrBuilder\00", align 1 +@.TypeMapEntry.26264_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IListValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26265_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26266_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/MessageLite\00", align 1 +@.TypeMapEntry.26267_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26268_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/MessageLite$Builder\00", align 1 +@.TypeMapEntry.26269_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26270_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26271_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26272_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/MessageLiteOrBuilder\00", align 1 +@.TypeMapEntry.26273_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMessageLiteOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26274_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMethodOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26275_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/shaded/protobuf/MethodOrBuilder\00", align 1 +@.TypeMapEntry.26276_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMethodOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26277_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMixinOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26278_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/MixinOrBuilder\00", align 1 +@.TypeMapEntry.26279_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IMixinOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26280_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IOptionOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26281_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/shaded/protobuf/OptionOrBuilder\00", align 1 +@.TypeMapEntry.26282_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IOptionOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26283_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IParser, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26284_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/shaded/protobuf/Parser\00", align 1 +@.TypeMapEntry.26285_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IParserInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26286_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IProtocolStringList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26287_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/ProtocolStringList\00", align 1 +@.TypeMapEntry.26288_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IProtocolStringListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26289_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ISourceContextOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26290_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/shaded/protobuf/SourceContextOrBuilder\00", align 1 +@.TypeMapEntry.26291_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ISourceContextOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26292_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStringValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26293_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/StringValueOrBuilder\00", align 1 +@.TypeMapEntry.26294_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStringValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26295_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStructOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26296_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/shaded/protobuf/StructOrBuilder\00", align 1 +@.TypeMapEntry.26297_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IStructOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26298_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ITimestampOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26299_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/TimestampOrBuilder\00", align 1 +@.TypeMapEntry.26300_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ITimestampOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26301_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt32ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26302_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt32ValueOrBuilder\00", align 1 +@.TypeMapEntry.26303_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt32ValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26304_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt64ValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26305_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt64ValueOrBuilder\00", align 1 +@.TypeMapEntry.26306_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IUInt64ValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26307_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IValueOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26308_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/ValueOrBuilder\00", align 1 +@.TypeMapEntry.26309_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.IValueOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26310_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Int32Value+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26311_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/Int32Value$Builder\00", align 1 +@.TypeMapEntry.26312_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Int32Value, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26313_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/Int32Value\00", align 1 +@.TypeMapEntry.26314_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Int64Value+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26315_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/Int64Value$Builder\00", align 1 +@.TypeMapEntry.26316_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Int64Value, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26317_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/Int64Value\00", align 1 +@.TypeMapEntry.26318_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IBooleanList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26319_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$BooleanList\00", align 1 +@.TypeMapEntry.26320_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IBooleanListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26321_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IDoubleList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26322_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$DoubleList\00", align 1 +@.TypeMapEntry.26323_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IDoubleListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26324_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26325_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$EnumLite\00", align 1 +@.TypeMapEntry.26326_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLiteInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26327_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLiteMap, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26328_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$EnumLiteMap\00", align 1 +@.TypeMapEntry.26329_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumLiteMapInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26330_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumVerifier, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26331_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$EnumVerifier\00", align 1 +@.TypeMapEntry.26332_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IEnumVerifierInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26333_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IFloatList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26334_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$FloatList\00", align 1 +@.TypeMapEntry.26335_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IFloatListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26336_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IIntList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26337_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$IntList\00", align 1 +@.TypeMapEntry.26338_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IIntListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26339_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ILongList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26340_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$LongList\00", align 1 +@.TypeMapEntry.26341_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ILongListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26342_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IProtobufList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26343_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$ProtobufList\00", align 1 +@.TypeMapEntry.26344_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IProtobufListInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26345_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IntListAdapter+IIntConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26346_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$IntListAdapter$IntConverter\00", align 1 +@.TypeMapEntry.26347_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IntListAdapter+IIntConverterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26348_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+IntListAdapter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26349_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$IntListAdapter\00", align 1 +@.TypeMapEntry.26350_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ListAdapter+IConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26351_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$ListAdapter$Converter\00", align 1 +@.TypeMapEntry.26352_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ListAdapter+IConverterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26353_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+ListAdapter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26354_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$ListAdapter\00", align 1 +@.TypeMapEntry.26355_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+MapAdapter+IConverter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26356_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$MapAdapter$Converter\00", align 1 +@.TypeMapEntry.26357_from = private unnamed_addr constant [117 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+MapAdapter+IConverterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26358_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal+MapAdapter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26359_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal$MapAdapter\00", align 1 +@.TypeMapEntry.26360_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Internal, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26361_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/Internal\00", align 1 +@.TypeMapEntry.26362_from = private unnamed_addr constant [135 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.InvalidProtocolBufferException+InvalidWireTypeException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26363_to = private unnamed_addr constant [95 x i8] c"com/google/crypto/tink/shaded/protobuf/InvalidProtocolBufferException$InvalidWireTypeException\00", align 1 +@.TypeMapEntry.26364_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.InvalidProtocolBufferException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26365_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/shaded/protobuf/InvalidProtocolBufferException\00", align 1 +@.TypeMapEntry.26366_from = private unnamed_addr constant [120 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+IJavaFeaturesOrBuilder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26367_to = private unnamed_addr constant [79 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaFeaturesProto$JavaFeaturesOrBuilder\00", align 1 +@.TypeMapEntry.26368_from = private unnamed_addr constant [127 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+IJavaFeaturesOrBuilderInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26369_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+JavaFeatures+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26370_to = private unnamed_addr constant [78 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaFeaturesProto$JavaFeatures$Builder\00", align 1 +@.TypeMapEntry.26371_from = private unnamed_addr constant [125 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+JavaFeatures+Utf8Validation, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26372_to = private unnamed_addr constant [85 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaFeaturesProto$JavaFeatures$Utf8Validation\00", align 1 +@.TypeMapEntry.26373_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto+JavaFeatures, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26374_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaFeaturesProto$JavaFeatures\00", align 1 +@.TypeMapEntry.26375_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaFeaturesProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26376_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaFeaturesProto\00", align 1 +@.TypeMapEntry.26377_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.JavaType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26378_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/shaded/protobuf/JavaType\00", align 1 +@.TypeMapEntry.26379_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.LazyField, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26380_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/LazyField\00", align 1 +@.TypeMapEntry.26381_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.LazyFieldLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26382_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/LazyFieldLite\00", align 1 +@.TypeMapEntry.26383_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.LazyStringArrayList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26384_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/LazyStringArrayList\00", align 1 +@.TypeMapEntry.26385_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ListValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26386_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/ListValue$Builder\00", align 1 +@.TypeMapEntry.26387_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ListValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26388_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/ListValue\00", align 1 +@.TypeMapEntry.26389_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.MapEntryLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26390_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/MapEntryLite\00", align 1 +@.TypeMapEntry.26391_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.MapFieldLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26392_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/MapFieldLite\00", align 1 +@.TypeMapEntry.26393_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Method+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26394_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/Method$Builder\00", align 1 +@.TypeMapEntry.26395_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Method, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26396_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/shaded/protobuf/Method\00", align 1 +@.TypeMapEntry.26397_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Mixin+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26398_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/Mixin$Builder\00", align 1 +@.TypeMapEntry.26399_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Mixin, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26400_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/shaded/protobuf/Mixin\00", align 1 +@.TypeMapEntry.26401_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.NullValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26402_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/NullValue\00", align 1 +@.TypeMapEntry.26403_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Option+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26404_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/Option$Builder\00", align 1 +@.TypeMapEntry.26405_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Option, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26406_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/shaded/protobuf/Option\00", align 1 +@.TypeMapEntry.26407_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.ProtoSyntax, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26408_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/ProtoSyntax\00", align 1 +@.TypeMapEntry.26409_from = private unnamed_addr constant [126 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.RuntimeVersion+ProtobufRuntimeVersionException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26410_to = private unnamed_addr constant [86 x i8] c"com/google/crypto/tink/shaded/protobuf/RuntimeVersion$ProtobufRuntimeVersionException\00", align 1 +@.TypeMapEntry.26411_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.RuntimeVersion+RuntimeDomain, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26412_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/shaded/protobuf/RuntimeVersion$RuntimeDomain\00", align 1 +@.TypeMapEntry.26413_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.RuntimeVersion, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26414_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/RuntimeVersion\00", align 1 +@.TypeMapEntry.26415_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.SourceContext+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26416_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/shaded/protobuf/SourceContext$Builder\00", align 1 +@.TypeMapEntry.26417_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.SourceContext, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26418_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/SourceContext\00", align 1 +@.TypeMapEntry.26419_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.SourceContextProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26420_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/shaded/protobuf/SourceContextProto\00", align 1 +@.TypeMapEntry.26421_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.StringValue+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26422_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/StringValue$Builder\00", align 1 +@.TypeMapEntry.26423_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.StringValue, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26424_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/StringValue\00", align 1 +@.TypeMapEntry.26425_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Struct+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26426_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/Struct$Builder\00", align 1 +@.TypeMapEntry.26427_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Struct, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26428_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/shaded/protobuf/Struct\00", align 1 +@.TypeMapEntry.26429_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.StructProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26430_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/StructProto\00", align 1 +@.TypeMapEntry.26431_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Syntax, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26432_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/shaded/protobuf/Syntax\00", align 1 +@.TypeMapEntry.26433_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Timestamp+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26434_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/shaded/protobuf/Timestamp$Builder\00", align 1 +@.TypeMapEntry.26435_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Timestamp, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26436_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/Timestamp\00", align 1 +@.TypeMapEntry.26437_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.TimestampProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26438_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/TimestampProto\00", align 1 +@.TypeMapEntry.26439_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Type+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26440_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/shaded/protobuf/Type$Builder\00", align 1 +@.TypeMapEntry.26441_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Type, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26442_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/shaded/protobuf/Type\00", align 1 +@.TypeMapEntry.26443_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.TypeProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26444_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/shaded/protobuf/TypeProto\00", align 1 +@.TypeMapEntry.26445_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UInt32Value+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26446_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt32Value$Builder\00", align 1 +@.TypeMapEntry.26447_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UInt32Value, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26448_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt32Value\00", align 1 +@.TypeMapEntry.26449_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UInt64Value+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26450_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt64Value$Builder\00", align 1 +@.TypeMapEntry.26451_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UInt64Value, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26452_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/shaded/protobuf/UInt64Value\00", align 1 +@.TypeMapEntry.26453_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UninitializedMessageException, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26454_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/shaded/protobuf/UninitializedMessageException\00", align 1 +@.TypeMapEntry.26455_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UnknownFieldSetLite, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26456_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/UnknownFieldSetLite\00", align 1 +@.TypeMapEntry.26457_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UnmodifiableLazyStringList, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26458_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/shaded/protobuf/UnmodifiableLazyStringList\00", align 1 +@.TypeMapEntry.26459_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.UnsafeByteOperations, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26460_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/UnsafeByteOperations\00", align 1 +@.TypeMapEntry.26461_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Value+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26462_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/Value$Builder\00", align 1 +@.TypeMapEntry.26463_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Value+KindCase, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26464_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/shaded/protobuf/Value$KindCase\00", align 1 +@.TypeMapEntry.26465_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.Value, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26466_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/shaded/protobuf/Value\00", align 1 +@.TypeMapEntry.26467_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.WireFormat+FieldType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26468_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/shaded/protobuf/WireFormat$FieldType\00", align 1 +@.TypeMapEntry.26469_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.WireFormat+JavaType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26470_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/shaded/protobuf/WireFormat$JavaType\00", align 1 +@.TypeMapEntry.26471_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.WireFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26472_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/shaded/protobuf/WireFormat\00", align 1 +@.TypeMapEntry.26473_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Shaded.Protobuf.WrappersProto, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26474_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/shaded/protobuf/WrappersProto\00", align 1 +@.TypeMapEntry.26475_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26476_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/EcdsaParameters$Builder\00", align 1 +@.TypeMapEntry.26477_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters+CurveType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26478_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/signature/EcdsaParameters$CurveType\00", align 1 +@.TypeMapEntry.26479_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26480_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/signature/EcdsaParameters$HashType\00", align 1 +@.TypeMapEntry.26481_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters+SignatureEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26482_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/signature/EcdsaParameters$SignatureEncoding\00", align 1 +@.TypeMapEntry.26483_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26484_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/EcdsaParameters$Variant\00", align 1 +@.TypeMapEntry.26485_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26486_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/signature/EcdsaParameters\00", align 1 +@.TypeMapEntry.26487_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26488_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/EcdsaPrivateKey$Builder\00", align 1 +@.TypeMapEntry.26489_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26490_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/signature/EcdsaPrivateKey\00", align 1 +@.TypeMapEntry.26491_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26492_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/signature/EcdsaPublicKey$Builder\00", align 1 +@.TypeMapEntry.26493_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26494_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/signature/EcdsaPublicKey\00", align 1 +@.TypeMapEntry.26495_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.EcdsaSignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26496_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/EcdsaSignKeyManager\00", align 1 +@.TypeMapEntry.26497_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Ed25519Parameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26498_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/signature/Ed25519Parameters$Variant\00", align 1 +@.TypeMapEntry.26499_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Ed25519Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26500_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/signature/Ed25519Parameters\00", align 1 +@.TypeMapEntry.26501_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Ed25519PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26502_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/signature/Ed25519PrivateKey\00", align 1 +@.TypeMapEntry.26503_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Ed25519PrivateKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26504_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/signature/Ed25519PrivateKeyManager\00", align 1 +@.TypeMapEntry.26505_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Ed25519PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26506_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/signature/Ed25519PublicKey\00", align 1 +@.TypeMapEntry.26507_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.EcdsaProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26508_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/signature/internal/EcdsaProtoSerialization\00", align 1 +@.TypeMapEntry.26509_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.EcdsaSignJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26510_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/signature/internal/EcdsaSignJce\00", align 1 +@.TypeMapEntry.26511_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.EcdsaVerifyJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26512_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/internal/EcdsaVerifyJce\00", align 1 +@.TypeMapEntry.26513_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.Ed25519ProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26514_to = private unnamed_addr constant [68 x i8] c"com/google/crypto/tink/signature/internal/Ed25519ProtoSerialization\00", align 1 +@.TypeMapEntry.26515_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.Ed25519SignJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26516_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/internal/Ed25519SignJce\00", align 1 +@.TypeMapEntry.26517_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.Ed25519VerifyJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26518_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/signature/internal/Ed25519VerifyJce\00", align 1 +@.TypeMapEntry.26519_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.LegacyFullSign, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26520_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/internal/LegacyFullSign\00", align 1 +@.TypeMapEntry.26521_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.LegacyFullVerify, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26522_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/signature/internal/LegacyFullVerify\00", align 1 +@.TypeMapEntry.26523_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.RsaSsaPkcs1ProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26524_to = private unnamed_addr constant [72 x i8] c"com/google/crypto/tink/signature/internal/RsaSsaPkcs1ProtoSerialization\00", align 1 +@.TypeMapEntry.26525_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.RsaSsaPkcs1VerifyConscrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26526_to = private unnamed_addr constant [69 x i8] c"com/google/crypto/tink/signature/internal/RsaSsaPkcs1VerifyConscrypt\00", align 1 +@.TypeMapEntry.26527_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.RsaSsaPssProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26528_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/signature/internal/RsaSsaPssProtoSerialization\00", align 1 +@.TypeMapEntry.26529_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.RsaSsaPssSignConscrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26530_to = private unnamed_addr constant [65 x i8] c"com/google/crypto/tink/signature/internal/RsaSsaPssSignConscrypt\00", align 1 +@.TypeMapEntry.26531_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.RsaSsaPssVerifyConscrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26532_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/signature/internal/RsaSsaPssVerifyConscrypt\00", align 1 +@.TypeMapEntry.26533_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Signature.Internal.SigUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26534_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/signature/internal/SigUtil\00", align 1 +@.TypeMapEntry.26535_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PredefinedSignatureParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26536_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/signature/PredefinedSignatureParameters\00", align 1 +@.TypeMapEntry.26537_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeySignConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26538_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/PublicKeySignConfig\00", align 1 +@.TypeMapEntry.26539_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeySignFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26540_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/signature/PublicKeySignFactory\00", align 1 +@.TypeMapEntry.26541_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeySignWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26542_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/signature/PublicKeySignWrapper\00", align 1 +@.TypeMapEntry.26543_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeyVerifyConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26544_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/signature/PublicKeyVerifyConfig\00", align 1 +@.TypeMapEntry.26545_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeyVerifyFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26546_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/signature/PublicKeyVerifyFactory\00", align 1 +@.TypeMapEntry.26547_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Signature.PublicKeyVerifyWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26548_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/signature/PublicKeyVerifyWrapper\00", align 1 +@.TypeMapEntry.26549_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1Parameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26550_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1Parameters$Builder\00", align 1 +@.TypeMapEntry.26551_from = private unnamed_addr constant [104 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1Parameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26552_to = private unnamed_addr constant [64 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1Parameters$HashType\00", align 1 +@.TypeMapEntry.26553_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1Parameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26554_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1Parameters$Variant\00", align 1 +@.TypeMapEntry.26555_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1Parameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26556_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1Parameters\00", align 1 +@.TypeMapEntry.26557_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1PrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26558_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1PrivateKey$Builder\00", align 1 +@.TypeMapEntry.26559_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1PrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26560_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1PrivateKey\00", align 1 +@.TypeMapEntry.26561_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1PublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26562_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1PublicKey$Builder\00", align 1 +@.TypeMapEntry.26563_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1PublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26564_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1PublicKey\00", align 1 +@.TypeMapEntry.26565_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPkcs1SignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26566_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/signature/RsaSsaPkcs1SignKeyManager\00", align 1 +@.TypeMapEntry.26567_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26568_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/signature/RsaSsaPssParameters$Builder\00", align 1 +@.TypeMapEntry.26569_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26570_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/signature/RsaSsaPssParameters$HashType\00", align 1 +@.TypeMapEntry.26571_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssParameters+Variant, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26572_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/signature/RsaSsaPssParameters$Variant\00", align 1 +@.TypeMapEntry.26573_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26574_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/RsaSsaPssParameters\00", align 1 +@.TypeMapEntry.26575_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssPrivateKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26576_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/signature/RsaSsaPssPrivateKey$Builder\00", align 1 +@.TypeMapEntry.26577_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssPrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26578_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/RsaSsaPssPrivateKey\00", align 1 +@.TypeMapEntry.26579_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssPublicKey+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26580_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/signature/RsaSsaPssPublicKey$Builder\00", align 1 +@.TypeMapEntry.26581_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssPublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26582_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/signature/RsaSsaPssPublicKey\00", align 1 +@.TypeMapEntry.26583_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Signature.RsaSsaPssSignKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26584_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/signature/RsaSsaPssSignKeyManager\00", align 1 +@.TypeMapEntry.26585_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignatureConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26586_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/signature/SignatureConfig\00", align 1 +@.TypeMapEntry.26587_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignatureKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26588_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/signature/SignatureKeyTemplates\00", align 1 +@.TypeMapEntry.26589_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignatureParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26590_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/SignatureParameters\00", align 1 +@.TypeMapEntry.26591_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignatureParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26592_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePemKeysetReader+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26593_to = private unnamed_addr constant [66 x i8] c"com/google/crypto/tink/signature/SignaturePemKeysetReader$Builder\00", align 1 +@.TypeMapEntry.26594_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePemKeysetReader, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26595_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/signature/SignaturePemKeysetReader\00", align 1 +@.TypeMapEntry.26596_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePrivateKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26597_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/signature/SignaturePrivateKey\00", align 1 +@.TypeMapEntry.26598_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePrivateKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26599_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePublicKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26600_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/signature/SignaturePublicKey\00", align 1 +@.TypeMapEntry.26601_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Signature.SignaturePublicKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26602_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesCtrHmacStreamingKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26603_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/streamingaead/AesCtrHmacStreamingKey\00", align 1 +@.TypeMapEntry.26604_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesCtrHmacStreamingKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26605_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/streamingaead/AesCtrHmacStreamingKeyManager\00", align 1 +@.TypeMapEntry.26606_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesCtrHmacStreamingParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26607_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/streamingaead/AesCtrHmacStreamingParameters$Builder\00", align 1 +@.TypeMapEntry.26608_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesCtrHmacStreamingParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26609_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/streamingaead/AesCtrHmacStreamingParameters$HashType\00", align 1 +@.TypeMapEntry.26610_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesCtrHmacStreamingParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26611_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/streamingaead/AesCtrHmacStreamingParameters\00", align 1 +@.TypeMapEntry.26612_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesGcmHkdfStreamingKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26613_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/streamingaead/AesGcmHkdfStreamingKey\00", align 1 +@.TypeMapEntry.26614_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesGcmHkdfStreamingKeyManager, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26615_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/streamingaead/AesGcmHkdfStreamingKeyManager\00", align 1 +@.TypeMapEntry.26616_from = private unnamed_addr constant [115 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesGcmHkdfStreamingParameters+Builder, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26617_to = private unnamed_addr constant [75 x i8] c"com/google/crypto/tink/streamingaead/AesGcmHkdfStreamingParameters$Builder\00", align 1 +@.TypeMapEntry.26618_from = private unnamed_addr constant [116 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesGcmHkdfStreamingParameters+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26619_to = private unnamed_addr constant [76 x i8] c"com/google/crypto/tink/streamingaead/AesGcmHkdfStreamingParameters$HashType\00", align 1 +@.TypeMapEntry.26620_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.AesGcmHkdfStreamingParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26621_to = private unnamed_addr constant [67 x i8] c"com/google/crypto/tink/streamingaead/AesGcmHkdfStreamingParameters\00", align 1 +@.TypeMapEntry.26622_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.Internal.AesCtrHmacStreamingProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26623_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/streamingaead/internal/AesCtrHmacStreamingProtoSerialization\00", align 1 +@.TypeMapEntry.26624_from = private unnamed_addr constant [124 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.Internal.AesGcmHkdfStreamingProtoSerialization, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26625_to = private unnamed_addr constant [84 x i8] c"com/google/crypto/tink/streamingaead/internal/AesGcmHkdfStreamingProtoSerialization\00", align 1 +@.TypeMapEntry.26626_from = private unnamed_addr constant [110 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.Internal.LegacyFullStreamingAead, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26627_to = private unnamed_addr constant [70 x i8] c"com/google/crypto/tink/streamingaead/internal/LegacyFullStreamingAead\00", align 1 +@.TypeMapEntry.26628_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.PredefinedStreamingAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26629_to = private unnamed_addr constant [71 x i8] c"com/google/crypto/tink/streamingaead/PredefinedStreamingAeadParameters\00", align 1 +@.TypeMapEntry.26630_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadConfig, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26631_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadConfig\00", align 1 +@.TypeMapEntry.26632_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26633_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadFactory\00", align 1 +@.TypeMapEntry.26634_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26635_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadKey\00", align 1 +@.TypeMapEntry.26636_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26637_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadKeyTemplates, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26638_to = private unnamed_addr constant [63 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadKeyTemplates\00", align 1 +@.TypeMapEntry.26639_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadParameters, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26640_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadParameters\00", align 1 +@.TypeMapEntry.26641_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadParametersInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26642_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.StreamingAead.StreamingAeadWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26643_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/streamingaead/StreamingAeadWrapper\00", align 1 +@.TypeMapEntry.26644_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesCtrHmacStreaming, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26645_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/subtle/AesCtrHmacStreaming\00", align 1 +@.TypeMapEntry.26646_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesCtrJceCipher, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26647_to = private unnamed_addr constant [46 x i8] c"com/google/crypto/tink/subtle/AesCtrJceCipher\00", align 1 +@.TypeMapEntry.26648_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesEaxJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26649_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/subtle/AesEaxJce\00", align 1 +@.TypeMapEntry.26650_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesGcmHkdfStreaming, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26651_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/subtle/AesGcmHkdfStreaming\00", align 1 +@.TypeMapEntry.26652_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesGcmJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26653_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/subtle/AesGcmJce\00", align 1 +@.TypeMapEntry.26654_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.AesSiv, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26655_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/subtle/AesSiv\00", align 1 +@.TypeMapEntry.26656_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Base64, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26657_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/subtle/Base64\00", align 1 +@.TypeMapEntry.26658_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Bytes, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26659_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/subtle/Bytes\00", align 1 +@.TypeMapEntry.26660_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.ChaCha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26661_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/subtle/ChaCha20Poly1305\00", align 1 +@.TypeMapEntry.26662_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EcdsaSignJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26663_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/subtle/EcdsaSignJce\00", align 1 +@.TypeMapEntry.26664_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EcdsaVerifyJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26665_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/subtle/EcdsaVerifyJce\00", align 1 +@.TypeMapEntry.26666_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EciesAeadHkdfHybridDecrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26667_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/subtle/EciesAeadHkdfHybridDecrypt\00", align 1 +@.TypeMapEntry.26668_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EciesAeadHkdfHybridEncrypt, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26669_to = private unnamed_addr constant [57 x i8] c"com/google/crypto/tink/subtle/EciesAeadHkdfHybridEncrypt\00", align 1 +@.TypeMapEntry.26670_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EciesHkdfRecipientKem, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26671_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/subtle/EciesHkdfRecipientKem\00", align 1 +@.TypeMapEntry.26672_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EciesHkdfSenderKem+KemKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26673_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/subtle/EciesHkdfSenderKem$KemKey\00", align 1 +@.TypeMapEntry.26674_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EciesHkdfSenderKem, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26675_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/subtle/EciesHkdfSenderKem\00", align 1 +@.TypeMapEntry.26676_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Ed25519Sign+KeyPair, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26677_to = private unnamed_addr constant [50 x i8] c"com/google/crypto/tink/subtle/Ed25519Sign$KeyPair\00", align 1 +@.TypeMapEntry.26678_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Ed25519Sign, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26679_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/subtle/Ed25519Sign\00", align 1 +@.TypeMapEntry.26680_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Ed25519Verify, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26681_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/subtle/Ed25519Verify\00", align 1 +@.TypeMapEntry.26682_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EllipticCurves+CurveType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26683_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/subtle/EllipticCurves$CurveType\00", align 1 +@.TypeMapEntry.26684_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EllipticCurves+EcdsaEncoding, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26685_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/subtle/EllipticCurves$EcdsaEncoding\00", align 1 +@.TypeMapEntry.26686_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EllipticCurves+PointFormatType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26687_to = private unnamed_addr constant [61 x i8] c"com/google/crypto/tink/subtle/EllipticCurves$PointFormatType\00", align 1 +@.TypeMapEntry.26688_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EllipticCurves, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26689_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/subtle/EllipticCurves\00", align 1 +@.TypeMapEntry.26690_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EncryptThenAuthenticate, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26691_to = private unnamed_addr constant [54 x i8] c"com/google/crypto/tink/subtle/EncryptThenAuthenticate\00", align 1 +@.TypeMapEntry.26692_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26693_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/subtle/EngineFactory\00", align 1 +@.TypeMapEntry.26694_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTCipher, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26695_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TCipher\00", align 1 +@.TypeMapEntry.26696_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTKeyAgreement, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26697_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TKeyAgreement\00", align 1 +@.TypeMapEntry.26698_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTKeyFactory, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26699_to = private unnamed_addr constant [56 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TKeyFactory\00", align 1 +@.TypeMapEntry.26700_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTKeyPairGenerator, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26701_to = private unnamed_addr constant [62 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TKeyPairGenerator\00", align 1 +@.TypeMapEntry.26702_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26703_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TMac\00", align 1 +@.TypeMapEntry.26704_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTMessageDigest, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26705_to = private unnamed_addr constant [59 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TMessageDigest\00", align 1 +@.TypeMapEntry.26706_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.EngineWrapperTSignature, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26707_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/subtle/EngineWrapper$TSignature\00", align 1 +@.TypeMapEntry.26708_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Enums+HashType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26709_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/subtle/Enums$HashType\00", align 1 +@.TypeMapEntry.26710_from = private unnamed_addr constant [76 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Enums, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26711_to = private unnamed_addr constant [36 x i8] c"com/google/crypto/tink/subtle/Enums\00", align 1 +@.TypeMapEntry.26712_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Hex, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26713_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/subtle/Hex\00", align 1 +@.TypeMapEntry.26714_from = private unnamed_addr constant [75 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Hkdf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26715_to = private unnamed_addr constant [35 x i8] c"com/google/crypto/tink/subtle/Hkdf\00", align 1 +@.TypeMapEntry.26716_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IEngineWrapper, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26717_to = private unnamed_addr constant [44 x i8] c"com/google/crypto/tink/subtle/EngineWrapper\00", align 1 +@.TypeMapEntry.26718_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IEngineWrapperInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26719_from = private unnamed_addr constant [84 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IIndCpaCipher, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26720_to = private unnamed_addr constant [43 x i8] c"com/google/crypto/tink/subtle/IndCpaCipher\00", align 1 +@.TypeMapEntry.26721_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IIndCpaCipherInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26722_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentDecrypter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26723_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/subtle/StreamSegmentDecrypter\00", align 1 +@.TypeMapEntry.26724_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentDecrypterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26725_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentEncrypter, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26726_to = private unnamed_addr constant [53 x i8] c"com/google/crypto/tink/subtle/StreamSegmentEncrypter\00", align 1 +@.TypeMapEntry.26727_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.IStreamSegmentEncrypterInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26728_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Kwp, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26729_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/subtle/Kwp\00", align 1 +@.TypeMapEntry.26730_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.PemKeyType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26731_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/subtle/PemKeyType\00", align 1 +@.TypeMapEntry.26732_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Prf.HkdfStreamingPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26733_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/subtle/prf/HkdfStreamingPrf\00", align 1 +@.TypeMapEntry.26734_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Prf.IStreamingPrf, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26735_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/subtle/prf/StreamingPrf\00", align 1 +@.TypeMapEntry.26736_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Prf.IStreamingPrfInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26737_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Prf.PrfImpl, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26738_to = private unnamed_addr constant [42 x i8] c"com/google/crypto/tink/subtle/prf/PrfImpl\00", align 1 +@.TypeMapEntry.26739_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.PrfAesCmac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26740_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/subtle/PrfAesCmac\00", align 1 +@.TypeMapEntry.26741_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.PrfHmacJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26742_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/subtle/PrfHmacJce\00", align 1 +@.TypeMapEntry.26743_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.PrfMac, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26744_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/subtle/PrfMac\00", align 1 +@.TypeMapEntry.26745_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Random, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26746_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/subtle/Random\00", align 1 +@.TypeMapEntry.26747_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.RewindableReadableByteChannel, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26748_to = private unnamed_addr constant [60 x i8] c"com/google/crypto/tink/subtle/RewindableReadableByteChannel\00", align 1 +@.TypeMapEntry.26749_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.RsaSsaPkcs1SignJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26750_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/subtle/RsaSsaPkcs1SignJce\00", align 1 +@.TypeMapEntry.26751_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.RsaSsaPkcs1VerifyJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26752_to = private unnamed_addr constant [51 x i8] c"com/google/crypto/tink/subtle/RsaSsaPkcs1VerifyJce\00", align 1 +@.TypeMapEntry.26753_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.RsaSsaPssSignJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26754_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/subtle/RsaSsaPssSignJce\00", align 1 +@.TypeMapEntry.26755_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.RsaSsaPssVerifyJce, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26756_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/subtle/RsaSsaPssVerifyJce\00", align 1 +@.TypeMapEntry.26757_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.SelfKeyTestValidators, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26758_to = private unnamed_addr constant [52 x i8] c"com/google/crypto/tink/subtle/SelfKeyTestValidators\00", align 1 +@.TypeMapEntry.26759_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.SubtleUtil, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26760_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/subtle/SubtleUtil\00", align 1 +@.TypeMapEntry.26761_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.Validators, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26762_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/subtle/Validators\00", align 1 +@.TypeMapEntry.26763_from = private unnamed_addr constant [77 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.X25519, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26764_to = private unnamed_addr constant [37 x i8] c"com/google/crypto/tink/subtle/X25519\00", align 1 +@.TypeMapEntry.26765_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.Crypto.Tink.Subtle.XChaCha20Poly1305, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26766_to = private unnamed_addr constant [48 x i8] c"com/google/crypto/tink/subtle/XChaCha20Poly1305\00", align 1 +@.TypeMapEntry.26767_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.TinkJsonProtoKeysetFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26768_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/TinkJsonProtoKeysetFormat\00", align 1 +@.TypeMapEntry.26769_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.TinkProtoKeysetFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26770_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/TinkProtoKeysetFormat\00", align 1 +@.TypeMapEntry.26771_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.TinkProtoParametersFormat, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26772_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/TinkProtoParametersFormat\00", align 1 +@.TypeMapEntry.26773_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.ITinkKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26774_to = private unnamed_addr constant [39 x i8] c"com/google/crypto/tink/tinkkey/TinkKey\00", align 1 +@.TypeMapEntry.26775_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.ITinkKeyInvoker, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26776_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.Internal.InternalKeyHandle, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26777_to = private unnamed_addr constant [58 x i8] c"com/google/crypto/tink/tinkkey/internal/InternalKeyHandle\00", align 1 +@.TypeMapEntry.26778_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.Internal.ProtoKey, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26779_to = private unnamed_addr constant [49 x i8] c"com/google/crypto/tink/tinkkey/internal/ProtoKey\00", align 1 +@.TypeMapEntry.26780_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.KeyAccess, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26781_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/tinkkey/KeyAccess\00", align 1 +@.TypeMapEntry.26782_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.KeyHandle+KeyStatusType, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26783_to = private unnamed_addr constant [55 x i8] c"com/google/crypto/tink/tinkkey/KeyHandle$KeyStatusType\00", align 1 +@.TypeMapEntry.26784_from = private unnamed_addr constant [81 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.KeyHandle, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26785_to = private unnamed_addr constant [41 x i8] c"com/google/crypto/tink/tinkkey/KeyHandle\00", align 1 +@.TypeMapEntry.26786_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.Crypto.Tink.Tinkkey.SecretKeyAccess, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26787_to = private unnamed_addr constant [47 x i8] c"com/google/crypto/tink/tinkkey/SecretKeyAccess\00", align 1 +@.TypeMapEntry.26788_from = private unnamed_addr constant [74 x i8] c"Xamarin.Google.Crypto.Tink.Util.Bytes, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26789_to = private unnamed_addr constant [34 x i8] c"com/google/crypto/tink/util/Bytes\00", align 1 +@.TypeMapEntry.26790_from = private unnamed_addr constant [85 x i8] c"Xamarin.Google.Crypto.Tink.Util.SecretBigInteger, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26791_to = private unnamed_addr constant [45 x i8] c"com/google/crypto/tink/util/SecretBigInteger\00", align 1 +@.TypeMapEntry.26792_from = private unnamed_addr constant [80 x i8] c"Xamarin.Google.Crypto.Tink.Util.SecretBytes, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26793_to = private unnamed_addr constant [40 x i8] c"com/google/crypto/tink/util/SecretBytes\00", align 1 +@.TypeMapEntry.26794_from = private unnamed_addr constant [71 x i8] c"Xamarin.Google.Crypto.Tink.Version, Xamarin.Google.Crypto.Tink.Android\00", align 1 +@.TypeMapEntry.26795_to = private unnamed_addr constant [31 x i8] c"com/google/crypto/tink/Version\00", align 1 +@.TypeMapEntry.26796_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.IGuardedBy, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26797_to = private unnamed_addr constant [55 x i8] c"com/google/errorprone/annotations/concurrent/GuardedBy\00", align 1 +@.TypeMapEntry.26798_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.IGuardedByInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26799_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.ILazyInit, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26800_to = private unnamed_addr constant [54 x i8] c"com/google/errorprone/annotations/concurrent/LazyInit\00", align 1 +@.TypeMapEntry.26801_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.ILazyInitInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26802_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.ILockMethod, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26803_to = private unnamed_addr constant [56 x i8] c"com/google/errorprone/annotations/concurrent/LockMethod\00", align 1 +@.TypeMapEntry.26804_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.ILockMethodInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26805_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.IUnlockMethod, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26806_to = private unnamed_addr constant [58 x i8] c"com/google/errorprone/annotations/concurrent/UnlockMethod\00", align 1 +@.TypeMapEntry.26807_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.ErrorProne.Annotations.Concurrent.IUnlockMethodInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26808_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICanIgnoreReturnValue, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26809_to = private unnamed_addr constant [55 x i8] c"com/google/errorprone/annotations/CanIgnoreReturnValue\00", align 1 +@.TypeMapEntry.26810_from = private unnamed_addr constant [106 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICanIgnoreReturnValueInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26811_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICheckReturnValue, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26812_to = private unnamed_addr constant [51 x i8] c"com/google/errorprone/annotations/CheckReturnValue\00", align 1 +@.TypeMapEntry.26813_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICheckReturnValueInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26814_from = private unnamed_addr constant [93 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICompatibleWith, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26815_to = private unnamed_addr constant [49 x i8] c"com/google/errorprone/annotations/CompatibleWith\00", align 1 +@.TypeMapEntry.26816_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICompatibleWithInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26817_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICompileTimeConstant, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26818_to = private unnamed_addr constant [54 x i8] c"com/google/errorprone/annotations/CompileTimeConstant\00", align 1 +@.TypeMapEntry.26819_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.ErrorProne.Annotations.ICompileTimeConstantInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26820_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.ErrorProne.Annotations.IDoNotCall, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26821_to = private unnamed_addr constant [44 x i8] c"com/google/errorprone/annotations/DoNotCall\00", align 1 +@.TypeMapEntry.26822_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.ErrorProne.Annotations.IDoNotCallInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26823_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.ErrorProne.Annotations.IDoNotMock, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26824_to = private unnamed_addr constant [44 x i8] c"com/google/errorprone/annotations/DoNotMock\00", align 1 +@.TypeMapEntry.26825_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.ErrorProne.Annotations.IDoNotMockInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26826_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.ErrorProne.Annotations.IForOverride, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26827_to = private unnamed_addr constant [46 x i8] c"com/google/errorprone/annotations/ForOverride\00", align 1 +@.TypeMapEntry.26828_from = private unnamed_addr constant [97 x i8] c"Xamarin.Google.ErrorProne.Annotations.IForOverrideInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26829_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.ErrorProne.Annotations.IFormatMethod, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26830_to = private unnamed_addr constant [47 x i8] c"com/google/errorprone/annotations/FormatMethod\00", align 1 +@.TypeMapEntry.26831_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.IFormatMethodInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26832_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.ErrorProne.Annotations.IFormatString, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26833_to = private unnamed_addr constant [47 x i8] c"com/google/errorprone/annotations/FormatString\00", align 1 +@.TypeMapEntry.26834_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.IFormatStringInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26835_from = private unnamed_addr constant [88 x i8] c"Xamarin.Google.ErrorProne.Annotations.IImmutable, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26836_to = private unnamed_addr constant [44 x i8] c"com/google/errorprone/annotations/Immutable\00", align 1 +@.TypeMapEntry.26837_from = private unnamed_addr constant [95 x i8] c"Xamarin.Google.ErrorProne.Annotations.IImmutableInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26838_from = private unnamed_addr constant [101 x i8] c"Xamarin.Google.ErrorProne.Annotations.IImmutableTypeParameter, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26839_to = private unnamed_addr constant [57 x i8] c"com/google/errorprone/annotations/ImmutableTypeParameter\00", align 1 +@.TypeMapEntry.26840_from = private unnamed_addr constant [108 x i8] c"Xamarin.Google.ErrorProne.Annotations.IImmutableTypeParameterInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26841_from = private unnamed_addr constant [100 x i8] c"Xamarin.Google.ErrorProne.Annotations.IIncompatibleModifiers, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26842_to = private unnamed_addr constant [56 x i8] c"com/google/errorprone/annotations/IncompatibleModifiers\00", align 1 +@.TypeMapEntry.26843_from = private unnamed_addr constant [107 x i8] c"Xamarin.Google.ErrorProne.Annotations.IIncompatibleModifiersInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26844_from = private unnamed_addr constant [87 x i8] c"Xamarin.Google.ErrorProne.Annotations.IInlineMe, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26845_to = private unnamed_addr constant [43 x i8] c"com/google/errorprone/annotations/InlineMe\00", align 1 +@.TypeMapEntry.26846_from = private unnamed_addr constant [94 x i8] c"Xamarin.Google.ErrorProne.Annotations.IInlineMeInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26847_from = private unnamed_addr constant [105 x i8] c"Xamarin.Google.ErrorProne.Annotations.IInlineMeValidationDisabled, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26848_to = private unnamed_addr constant [61 x i8] c"com/google/errorprone/annotations/InlineMeValidationDisabled\00", align 1 +@.TypeMapEntry.26849_from = private unnamed_addr constant [112 x i8] c"Xamarin.Google.ErrorProne.Annotations.IInlineMeValidationDisabledInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26850_from = private unnamed_addr constant [83 x i8] c"Xamarin.Google.ErrorProne.Annotations.IKeep, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26851_to = private unnamed_addr constant [39 x i8] c"com/google/errorprone/annotations/Keep\00", align 1 +@.TypeMapEntry.26852_from = private unnamed_addr constant [90 x i8] c"Xamarin.Google.ErrorProne.Annotations.IKeepInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26853_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.ErrorProne.Annotations.IMustBeClosed, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26854_to = private unnamed_addr constant [47 x i8] c"com/google/errorprone/annotations/MustBeClosed\00", align 1 +@.TypeMapEntry.26855_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.IMustBeClosedInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26856_from = private unnamed_addr constant [91 x i8] c"Xamarin.Google.ErrorProne.Annotations.INoAllocation, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26857_to = private unnamed_addr constant [47 x i8] c"com/google/errorprone/annotations/NoAllocation\00", align 1 +@.TypeMapEntry.26858_from = private unnamed_addr constant [98 x i8] c"Xamarin.Google.ErrorProne.Annotations.INoAllocationInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26859_from = private unnamed_addr constant [111 x i8] c"Xamarin.Google.ErrorProne.Annotations.IOverridingMethodsMustInvokeSuper, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26860_to = private unnamed_addr constant [67 x i8] c"com/google/errorprone/annotations/OverridingMethodsMustInvokeSuper\00", align 1 +@.TypeMapEntry.26861_from = private unnamed_addr constant [118 x i8] c"Xamarin.Google.ErrorProne.Annotations.IOverridingMethodsMustInvokeSuperInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26862_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.ErrorProne.Annotations.IRequiredModifiers, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26863_to = private unnamed_addr constant [52 x i8] c"com/google/errorprone/annotations/RequiredModifiers\00", align 1 +@.TypeMapEntry.26864_from = private unnamed_addr constant [103 x i8] c"Xamarin.Google.ErrorProne.Annotations.IRequiredModifiersInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26865_from = private unnamed_addr constant [92 x i8] c"Xamarin.Google.ErrorProne.Annotations.IRestrictedApi, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26866_to = private unnamed_addr constant [48 x i8] c"com/google/errorprone/annotations/RestrictedApi\00", align 1 +@.TypeMapEntry.26867_from = private unnamed_addr constant [99 x i8] c"Xamarin.Google.ErrorProne.Annotations.IRestrictedApiInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26868_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.ErrorProne.Annotations.ISuppressPackageLocation, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26869_to = private unnamed_addr constant [58 x i8] c"com/google/errorprone/annotations/SuppressPackageLocation\00", align 1 +@.TypeMapEntry.26870_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.ErrorProne.Annotations.ISuppressPackageLocationInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26871_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.ErrorProne.Annotations.IThreadSafe, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26872_to = private unnamed_addr constant [45 x i8] c"com/google/errorprone/annotations/ThreadSafe\00", align 1 +@.TypeMapEntry.26873_from = private unnamed_addr constant [96 x i8] c"Xamarin.Google.ErrorProne.Annotations.IThreadSafeInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26874_from = private unnamed_addr constant [102 x i8] c"Xamarin.Google.ErrorProne.Annotations.IThreadSafeTypeParameter, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26875_to = private unnamed_addr constant [58 x i8] c"com/google/errorprone/annotations/ThreadSafeTypeParameter\00", align 1 +@.TypeMapEntry.26876_from = private unnamed_addr constant [109 x i8] c"Xamarin.Google.ErrorProne.Annotations.IThreadSafeTypeParameterInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26877_from = private unnamed_addr constant [82 x i8] c"Xamarin.Google.ErrorProne.Annotations.IVar, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26878_to = private unnamed_addr constant [38 x i8] c"com/google/errorprone/annotations/Var\00", align 1 +@.TypeMapEntry.26879_from = private unnamed_addr constant [89 x i8] c"Xamarin.Google.ErrorProne.Annotations.IVarInvoker, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26880_from = private unnamed_addr constant [86 x i8] c"Xamarin.Google.ErrorProne.Annotations.Modifier, Xamarin.Google.ErrorProne.Annotations\00", align 1 +@.TypeMapEntry.26881_to = private unnamed_addr constant [43 x i8] c"com/google/errorprone/annotations/Modifier\00", align 1 +@.TypeMapEntry.26882_from = private unnamed_addr constant [56 x i8] c"Xamarin.JSpecify.Annotations.INonNull, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26883_to = private unnamed_addr constant [33 x i8] c"org/jspecify/annotations/NonNull\00", align 1 +@.TypeMapEntry.26884_from = private unnamed_addr constant [63 x i8] c"Xamarin.JSpecify.Annotations.INonNullInvoker, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26885_from = private unnamed_addr constant [59 x i8] c"Xamarin.JSpecify.Annotations.INullMarked, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26886_to = private unnamed_addr constant [36 x i8] c"org/jspecify/annotations/NullMarked\00", align 1 +@.TypeMapEntry.26887_from = private unnamed_addr constant [66 x i8] c"Xamarin.JSpecify.Annotations.INullMarkedInvoker, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26888_from = private unnamed_addr constant [61 x i8] c"Xamarin.JSpecify.Annotations.INullUnmarked, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26889_to = private unnamed_addr constant [38 x i8] c"org/jspecify/annotations/NullUnmarked\00", align 1 +@.TypeMapEntry.26890_from = private unnamed_addr constant [68 x i8] c"Xamarin.JSpecify.Annotations.INullUnmarkedInvoker, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26891_from = private unnamed_addr constant [57 x i8] c"Xamarin.JSpecify.Annotations.INullable, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26892_to = private unnamed_addr constant [34 x i8] c"org/jspecify/annotations/Nullable\00", align 1 +@.TypeMapEntry.26893_from = private unnamed_addr constant [64 x i8] c"Xamarin.JSpecify.Annotations.INullableInvoker, Xamarin.JSpecify\00", align 1 +@.TypeMapEntry.26894_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.AbstractTimeSourceKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26895_to = private unnamed_addr constant [40 x i8] c"kotlinx/coroutines/AbstractTimeSourceKt\00", align 1 +@.TypeMapEntry.26896_from = private unnamed_addr constant [72 x i8] c"Xamarin.KotlinX.Coroutines.AwaitKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26897_to = private unnamed_addr constant [27 x i8] c"kotlinx/coroutines/AwaitKt\00", align 1 +@.TypeMapEntry.26898_from = private unnamed_addr constant [75 x i8] c"Xamarin.KotlinX.Coroutines.BuildersKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26899_to = private unnamed_addr constant [30 x i8] c"kotlinx/coroutines/BuildersKt\00", align 1 +@.TypeMapEntry.26900_from = private unnamed_addr constant [100 x i8] c"Xamarin.KotlinX.Coroutines.CancellableContinuationDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26901_to = private unnamed_addr constant [56 x i8] c"kotlinx/coroutines/CancellableContinuation$DefaultImpls\00", align 1 +@.TypeMapEntry.26902_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.CancellableContinuationImplKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26903_to = private unnamed_addr constant [49 x i8] c"kotlinx/coroutines/CancellableContinuationImplKt\00", align 1 +@.TypeMapEntry.26904_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.CancellableContinuationKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26905_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/CancellableContinuationKt\00", align 1 +@.TypeMapEntry.26906_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ActorKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26907_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/channels/ActorKt\00", align 1 +@.TypeMapEntry.26908_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ActorScopeDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26909_to = private unnamed_addr constant [52 x i8] c"kotlinx/coroutines/channels/ActorScope$DefaultImpls\00", align 1 +@.TypeMapEntry.26910_from = private unnamed_addr constant [102 x i8] c"Xamarin.KotlinX.Coroutines.Channels.BroadcastChannelDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26911_to = private unnamed_addr constant [58 x i8] c"kotlinx/coroutines/channels/BroadcastChannel$DefaultImpls\00", align 1 +@.TypeMapEntry.26912_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.Channels.BroadcastChannelKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26913_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/channels/BroadcastChannelKt\00", align 1 +@.TypeMapEntry.26914_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.Channels.BroadcastKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26915_to = private unnamed_addr constant [40 x i8] c"kotlinx/coroutines/channels/BroadcastKt\00", align 1 +@.TypeMapEntry.26916_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Channels.BufferOverflow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26917_to = private unnamed_addr constant [43 x i8] c"kotlinx/coroutines/channels/BufferOverflow\00", align 1 +@.TypeMapEntry.26918_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.Channels.BufferedChannelKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26919_to = private unnamed_addr constant [46 x i8] c"kotlinx/coroutines/channels/BufferedChannelKt\00", align 1 +@.TypeMapEntry.26920_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Channels.Channel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26921_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/channels/Channel\00", align 1 +@.TypeMapEntry.26922_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelConsts, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26923_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26924_to = private unnamed_addr constant [49 x i8] c"kotlinx/coroutines/channels/Channel$DefaultImpls\00", align 1 +@.TypeMapEntry.26925_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelFactory, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26926_to = private unnamed_addr constant [44 x i8] c"kotlinx/coroutines/channels/Channel$Factory\00", align 1 +@.TypeMapEntry.26927_from = private unnamed_addr constant [101 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelIteratorDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26928_to = private unnamed_addr constant [57 x i8] c"kotlinx/coroutines/channels/ChannelIterator$DefaultImpls\00", align 1 +@.TypeMapEntry.26929_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26930_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/channels/ChannelKt\00", align 1 +@.TypeMapEntry.26931_from = private unnamed_addr constant [97 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelResult+Companion, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26932_to = private unnamed_addr constant [52 x i8] c"kotlinx/coroutines/channels/ChannelResult$Companion\00", align 1 +@.TypeMapEntry.26933_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelResult, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26934_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/channels/ChannelResult\00", align 1 +@.TypeMapEntry.26935_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ChannelsKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26936_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/channels/ChannelsKt\00", align 1 +@.TypeMapEntry.26937_from = private unnamed_addr constant [103 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ClosedReceiveChannelException, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26938_to = private unnamed_addr constant [58 x i8] c"kotlinx/coroutines/channels/ClosedReceiveChannelException\00", align 1 +@.TypeMapEntry.26939_from = private unnamed_addr constant [100 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ClosedSendChannelException, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26940_to = private unnamed_addr constant [55 x i8] c"kotlinx/coroutines/channels/ClosedSendChannelException\00", align 1 +@.TypeMapEntry.26941_from = private unnamed_addr constant [99 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ConflatedBroadcastChannel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26942_to = private unnamed_addr constant [54 x i8] c"kotlinx/coroutines/channels/ConflatedBroadcastChannel\00", align 1 +@.TypeMapEntry.26943_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IActorScope, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26944_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/channels/ActorScope\00", align 1 +@.TypeMapEntry.26945_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IActorScopeInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26946_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IBroadcastChannel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26947_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/channels/BroadcastChannel\00", align 1 +@.TypeMapEntry.26948_from = private unnamed_addr constant [98 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IBroadcastChannelInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26949_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IChannel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26950_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IChannelInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26951_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IChannelIterator, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26952_to = private unnamed_addr constant [44 x i8] c"kotlinx/coroutines/channels/ChannelIterator\00", align 1 +@.TypeMapEntry.26953_from = private unnamed_addr constant [97 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IChannelIteratorInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26954_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IProducerScope, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26955_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/channels/ProducerScope\00", align 1 +@.TypeMapEntry.26956_from = private unnamed_addr constant [95 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IProducerScopeInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26957_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IReceiveChannel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26958_to = private unnamed_addr constant [43 x i8] c"kotlinx/coroutines/channels/ReceiveChannel\00", align 1 +@.TypeMapEntry.26959_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.Channels.IReceiveChannelInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26960_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ISendChannel, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26961_to = private unnamed_addr constant [40 x i8] c"kotlinx/coroutines/channels/SendChannel\00", align 1 +@.TypeMapEntry.26962_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ISendChannelInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26963_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ProduceKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26964_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/channels/ProduceKt\00", align 1 +@.TypeMapEntry.26965_from = private unnamed_addr constant [99 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ProducerScopeDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26966_to = private unnamed_addr constant [55 x i8] c"kotlinx/coroutines/channels/ProducerScope$DefaultImpls\00", align 1 +@.TypeMapEntry.26967_from = private unnamed_addr constant [100 x i8] c"Xamarin.KotlinX.Coroutines.Channels.ReceiveChannelDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26968_to = private unnamed_addr constant [56 x i8] c"kotlinx/coroutines/channels/ReceiveChannel$DefaultImpls\00", align 1 +@.TypeMapEntry.26969_from = private unnamed_addr constant [97 x i8] c"Xamarin.KotlinX.Coroutines.Channels.SendChannelDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26970_to = private unnamed_addr constant [53 x i8] c"kotlinx/coroutines/channels/SendChannel$DefaultImpls\00", align 1 +@.TypeMapEntry.26971_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.Channels.TickerChannelsKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26972_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/channels/TickerChannelsKt\00", align 1 +@.TypeMapEntry.26973_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Channels.TickerMode, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26974_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/channels/TickerMode\00", align 1 +@.TypeMapEntry.26975_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.ChildHandleDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26976_to = private unnamed_addr constant [44 x i8] c"kotlinx/coroutines/ChildHandle$DefaultImpls\00", align 1 +@.TypeMapEntry.26977_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.ChildJobDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26978_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/ChildJob$DefaultImpls\00", align 1 +@.TypeMapEntry.26979_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.CompletableDeferredDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26980_to = private unnamed_addr constant [52 x i8] c"kotlinx/coroutines/CompletableDeferred$DefaultImpls\00", align 1 +@.TypeMapEntry.26981_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.CompletableDeferredKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26982_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/CompletableDeferredKt\00", align 1 +@.TypeMapEntry.26983_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.CompletableJobDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26984_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/CompletableJob$DefaultImpls\00", align 1 +@.TypeMapEntry.26985_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.CompletionHandlerException, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26986_to = private unnamed_addr constant [46 x i8] c"kotlinx/coroutines/CompletionHandlerException\00", align 1 +@.TypeMapEntry.26987_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.CompletionHandler_commonKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26988_to = private unnamed_addr constant [46 x i8] c"kotlinx/coroutines/CompletionHandler_commonKt\00", align 1 +@.TypeMapEntry.26989_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.CompletionStateKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26990_to = private unnamed_addr constant [37 x i8] c"kotlinx/coroutines/CompletionStateKt\00", align 1 +@.TypeMapEntry.26991_from = private unnamed_addr constant [105 x i8] c"Xamarin.KotlinX.Coroutines.CopyableThreadContextElementDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26992_to = private unnamed_addr constant [61 x i8] c"kotlinx/coroutines/CopyableThreadContextElement$DefaultImpls\00", align 1 +@.TypeMapEntry.26993_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineContextKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26994_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/CoroutineContextKt\00", align 1 +@.TypeMapEntry.26995_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineDispatcher, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26996_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/CoroutineDispatcher\00", align 1 +@.TypeMapEntry.26997_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineDispatcherInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26998_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineExceptionHandler, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.26999_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/CoroutineExceptionHandler\00", align 1 +@.TypeMapEntry.27000_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineExceptionHandlerConsts, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27001_from = private unnamed_addr constant [102 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineExceptionHandlerDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27002_to = private unnamed_addr constant [58 x i8] c"kotlinx/coroutines/CoroutineExceptionHandler$DefaultImpls\00", align 1 +@.TypeMapEntry.27003_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineExceptionHandlerKey, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27004_to = private unnamed_addr constant [49 x i8] c"kotlinx/coroutines/CoroutineExceptionHandler$Key\00", align 1 +@.TypeMapEntry.27005_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineExceptionHandlerKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27006_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/CoroutineExceptionHandlerKt\00", align 1 +@.TypeMapEntry.27007_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineName+Key, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27008_to = private unnamed_addr constant [37 x i8] c"kotlinx/coroutines/CoroutineName$Key\00", align 1 +@.TypeMapEntry.27009_from = private unnamed_addr constant [78 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineName, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27010_to = private unnamed_addr constant [33 x i8] c"kotlinx/coroutines/CoroutineName\00", align 1 +@.TypeMapEntry.27011_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineScopeKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27012_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/CoroutineScopeKt\00", align 1 +@.TypeMapEntry.27013_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineStart+WhenMappings, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27014_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/CoroutineStart$WhenMappings\00", align 1 +@.TypeMapEntry.27015_from = private unnamed_addr constant [79 x i8] c"Xamarin.KotlinX.Coroutines.CoroutineStart, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27016_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/CoroutineStart\00", align 1 +@.TypeMapEntry.27017_from = private unnamed_addr constant [99 x i8] c"Xamarin.KotlinX.Coroutines.CoroutinesAndroid.HandlerDispatcher, Xamarin.KotlinX.Coroutines.Android\00", align 1 +@.TypeMapEntry.27018_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/android/HandlerDispatcher\00", align 1 +@.TypeMapEntry.27019_from = private unnamed_addr constant [106 x i8] c"Xamarin.KotlinX.Coroutines.CoroutinesAndroid.HandlerDispatcherInvoker, Xamarin.KotlinX.Coroutines.Android\00", align 1 +@.TypeMapEntry.27020_from = private unnamed_addr constant [101 x i8] c"Xamarin.KotlinX.Coroutines.CoroutinesAndroid.HandlerDispatcherKt, Xamarin.KotlinX.Coroutines.Android\00", align 1 +@.TypeMapEntry.27021_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/android/HandlerDispatcherKt\00", align 1 +@.TypeMapEntry.27022_from = private unnamed_addr constant [72 x i8] c"Xamarin.KotlinX.Coroutines.DebugKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27023_to = private unnamed_addr constant [27 x i8] c"kotlinx/coroutines/DebugKt\00", align 1 +@.TypeMapEntry.27024_from = private unnamed_addr constant [79 x i8] c"Xamarin.KotlinX.Coroutines.DebugStringsKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27025_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/DebugStringsKt\00", align 1 +@.TypeMapEntry.27026_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.DefaultExecutorKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27027_to = private unnamed_addr constant [37 x i8] c"kotlinx/coroutines/DefaultExecutorKt\00", align 1 +@.TypeMapEntry.27028_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.DeferredDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27029_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/Deferred$DefaultImpls\00", align 1 +@.TypeMapEntry.27030_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.DelayDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27031_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/Delay$DefaultImpls\00", align 1 +@.TypeMapEntry.27032_from = private unnamed_addr constant [72 x i8] c"Xamarin.KotlinX.Coroutines.DelayKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27033_to = private unnamed_addr constant [27 x i8] c"kotlinx/coroutines/DelayKt\00", align 1 +@.TypeMapEntry.27034_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.DispatchedTaskKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27035_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/DispatchedTaskKt\00", align 1 +@.TypeMapEntry.27036_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.Dispatchers, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27037_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/Dispatchers\00", align 1 +@.TypeMapEntry.27038_from = private unnamed_addr constant [78 x i8] c"Xamarin.KotlinX.Coroutines.DispatchersKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27039_to = private unnamed_addr constant [33 x i8] c"kotlinx/coroutines/DispatchersKt\00", align 1 +@.TypeMapEntry.27040_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.EventLoopKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27041_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/EventLoopKt\00", align 1 +@.TypeMapEntry.27042_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.EventLoop_commonKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27043_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/EventLoop_commonKt\00", align 1 +@.TypeMapEntry.27044_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.ExceptionsKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27045_to = private unnamed_addr constant [32 x i8] c"kotlinx/coroutines/ExceptionsKt\00", align 1 +@.TypeMapEntry.27046_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.ExecutorCoroutineDispatcher, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27047_to = private unnamed_addr constant [47 x i8] c"kotlinx/coroutines/ExecutorCoroutineDispatcher\00", align 1 +@.TypeMapEntry.27048_from = private unnamed_addr constant [99 x i8] c"Xamarin.KotlinX.Coroutines.ExecutorCoroutineDispatcherInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27049_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.ExecutorsKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27050_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/ExecutorsKt\00", align 1 +@.TypeMapEntry.27051_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.Flow.FlowKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27052_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/flow/FlowKt\00", align 1 +@.TypeMapEntry.27053_from = private unnamed_addr constant [75 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IFlow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27054_to = private unnamed_addr constant [29 x i8] c"kotlinx/coroutines/flow/Flow\00", align 1 +@.TypeMapEntry.27055_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IFlowCollector, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27056_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/flow/FlowCollector\00", align 1 +@.TypeMapEntry.27057_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IFlowCollectorInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27058_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IFlowInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27059_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IMutableSharedFlow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27060_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/flow/MutableSharedFlow\00", align 1 +@.TypeMapEntry.27061_from = private unnamed_addr constant [95 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IMutableSharedFlowInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27062_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IMutableStateFlow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27063_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/flow/MutableStateFlow\00", align 1 +@.TypeMapEntry.27064_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IMutableStateFlowInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27065_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Flow.ISharedFlow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27066_to = private unnamed_addr constant [35 x i8] c"kotlinx/coroutines/flow/SharedFlow\00", align 1 +@.TypeMapEntry.27067_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Flow.ISharedFlowInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27068_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.Flow.ISharingStarted, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27069_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/flow/SharingStarted\00", align 1 +@.TypeMapEntry.27070_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.Flow.ISharingStartedInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27071_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IStateFlow, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27072_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/flow/StateFlow\00", align 1 +@.TypeMapEntry.27073_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Flow.IStateFlowInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27074_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.Flow.LintKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27075_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/flow/LintKt\00", align 1 +@.TypeMapEntry.27076_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharedFlowKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27077_to = private unnamed_addr constant [37 x i8] c"kotlinx/coroutines/flow/SharedFlowKt\00", align 1 +@.TypeMapEntry.27078_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharingCommand, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27079_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/flow/SharingCommand\00", align 1 +@.TypeMapEntry.27080_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharingStarted, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27081_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharingStartedCompanion, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27082_to = private unnamed_addr constant [49 x i8] c"kotlinx/coroutines/flow/SharingStarted$Companion\00", align 1 +@.TypeMapEntry.27083_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharingStartedConsts, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27084_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.Flow.SharingStartedKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27085_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/flow/SharingStartedKt\00", align 1 +@.TypeMapEntry.27086_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Flow.StateFlowKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27087_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/flow/StateFlowKt\00", align 1 +@.TypeMapEntry.27088_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.Future.FutureKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27089_to = private unnamed_addr constant [35 x i8] c"kotlinx/coroutines/future/FutureKt\00", align 1 +@.TypeMapEntry.27090_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.GlobalScope, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27091_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/GlobalScope\00", align 1 +@.TypeMapEntry.27092_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.ICancellableContinuation, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27093_to = private unnamed_addr constant [43 x i8] c"kotlinx/coroutines/CancellableContinuation\00", align 1 +@.TypeMapEntry.27094_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.ICancellableContinuationInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27095_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.IChildHandle, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27096_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/ChildHandle\00", align 1 +@.TypeMapEntry.27097_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.IChildHandleInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27098_from = private unnamed_addr constant [74 x i8] c"Xamarin.KotlinX.Coroutines.IChildJob, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27099_to = private unnamed_addr constant [28 x i8] c"kotlinx/coroutines/ChildJob\00", align 1 +@.TypeMapEntry.27100_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.IChildJobInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27101_from = private unnamed_addr constant [85 x i8] c"Xamarin.KotlinX.Coroutines.ICompletableDeferred, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27102_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/CompletableDeferred\00", align 1 +@.TypeMapEntry.27103_from = private unnamed_addr constant [92 x i8] c"Xamarin.KotlinX.Coroutines.ICompletableDeferredInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27104_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.ICompletableJob, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27105_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/CompletableJob\00", align 1 +@.TypeMapEntry.27106_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.ICompletableJobInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27107_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.ICopyableThreadContextElement, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27108_to = private unnamed_addr constant [48 x i8] c"kotlinx/coroutines/CopyableThreadContextElement\00", align 1 +@.TypeMapEntry.27109_from = private unnamed_addr constant [101 x i8] c"Xamarin.KotlinX.Coroutines.ICopyableThreadContextElementInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27110_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.ICopyableThrowable, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27111_to = private unnamed_addr constant [37 x i8] c"kotlinx/coroutines/CopyableThrowable\00", align 1 +@.TypeMapEntry.27112_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.ICopyableThrowableInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27113_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.ICoroutineExceptionHandler, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27114_from = private unnamed_addr constant [98 x i8] c"Xamarin.KotlinX.Coroutines.ICoroutineExceptionHandlerInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27115_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.ICoroutineScope, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27116_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/CoroutineScope\00", align 1 +@.TypeMapEntry.27117_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.ICoroutineScopeInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27118_from = private unnamed_addr constant [74 x i8] c"Xamarin.KotlinX.Coroutines.IDeferred, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27119_to = private unnamed_addr constant [28 x i8] c"kotlinx/coroutines/Deferred\00", align 1 +@.TypeMapEntry.27120_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.IDeferredInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27121_from = private unnamed_addr constant [71 x i8] c"Xamarin.KotlinX.Coroutines.IDelay, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27122_to = private unnamed_addr constant [25 x i8] c"kotlinx/coroutines/Delay\00", align 1 +@.TypeMapEntry.27123_from = private unnamed_addr constant [78 x i8] c"Xamarin.KotlinX.Coroutines.IDelayInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27124_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.IDelicateCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27125_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/DelicateCoroutinesApi\00", align 1 +@.TypeMapEntry.27126_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.IDelicateCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27127_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.IDisposableHandle, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27128_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/DisposableHandle\00", align 1 +@.TypeMapEntry.27129_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.IDisposableHandleInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27130_from = private unnamed_addr constant [91 x i8] c"Xamarin.KotlinX.Coroutines.IExperimentalCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27131_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/ExperimentalCoroutinesApi\00", align 1 +@.TypeMapEntry.27132_from = private unnamed_addr constant [98 x i8] c"Xamarin.KotlinX.Coroutines.IExperimentalCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27133_from = private unnamed_addr constant [105 x i8] c"Xamarin.KotlinX.Coroutines.IExperimentalForInheritanceCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27134_to = private unnamed_addr constant [59 x i8] c"kotlinx/coroutines/ExperimentalForInheritanceCoroutinesApi\00", align 1 +@.TypeMapEntry.27135_from = private unnamed_addr constant [112 x i8] c"Xamarin.KotlinX.Coroutines.IExperimentalForInheritanceCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27136_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.IFlowPreview, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27137_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/FlowPreview\00", align 1 +@.TypeMapEntry.27138_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.IFlowPreviewInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27139_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.IInternalCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27140_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/InternalCoroutinesApi\00", align 1 +@.TypeMapEntry.27141_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.IInternalCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27142_from = private unnamed_addr constant [101 x i8] c"Xamarin.KotlinX.Coroutines.IInternalForInheritanceCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27143_to = private unnamed_addr constant [55 x i8] c"kotlinx/coroutines/InternalForInheritanceCoroutinesApi\00", align 1 +@.TypeMapEntry.27144_from = private unnamed_addr constant [108 x i8] c"Xamarin.KotlinX.Coroutines.IInternalForInheritanceCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27145_from = private unnamed_addr constant [69 x i8] c"Xamarin.KotlinX.Coroutines.IJob, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27146_to = private unnamed_addr constant [23 x i8] c"kotlinx/coroutines/Job\00", align 1 +@.TypeMapEntry.27147_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.IJobInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27148_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.IObsoleteCoroutinesApi, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27149_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/ObsoleteCoroutinesApi\00", align 1 +@.TypeMapEntry.27150_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.IObsoleteCoroutinesApiInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27151_from = private unnamed_addr constant [75 x i8] c"Xamarin.KotlinX.Coroutines.IParentJob, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27152_to = private unnamed_addr constant [29 x i8] c"kotlinx/coroutines/ParentJob\00", align 1 +@.TypeMapEntry.27153_from = private unnamed_addr constant [82 x i8] c"Xamarin.KotlinX.Coroutines.IParentJobInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27154_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.IThreadContextElement, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27155_to = private unnamed_addr constant [40 x i8] c"kotlinx/coroutines/ThreadContextElement\00", align 1 +@.TypeMapEntry.27156_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.IThreadContextElementInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27157_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.InterruptibleKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27158_to = private unnamed_addr constant [35 x i8] c"kotlinx/coroutines/InterruptibleKt\00", align 1 +@.TypeMapEntry.27159_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.Intrinsics.CancellableKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27160_to = private unnamed_addr constant [44 x i8] c"kotlinx/coroutines/intrinsics/CancellableKt\00", align 1 +@.TypeMapEntry.27161_from = private unnamed_addr constant [90 x i8] c"Xamarin.KotlinX.Coroutines.Intrinsics.UndispatchedKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27162_to = private unnamed_addr constant [45 x i8] c"kotlinx/coroutines/intrinsics/UndispatchedKt\00", align 1 +@.TypeMapEntry.27163_from = private unnamed_addr constant [68 x i8] c"Xamarin.KotlinX.Coroutines.Job, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27164_from = private unnamed_addr constant [74 x i8] c"Xamarin.KotlinX.Coroutines.JobConsts, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27165_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.JobDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27166_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/Job$DefaultImpls\00", align 1 +@.TypeMapEntry.27167_from = private unnamed_addr constant [71 x i8] c"Xamarin.KotlinX.Coroutines.JobKey, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27168_to = private unnamed_addr constant [27 x i8] c"kotlinx/coroutines/Job$Key\00", align 1 +@.TypeMapEntry.27169_from = private unnamed_addr constant [70 x i8] c"Xamarin.KotlinX.Coroutines.JobKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27170_to = private unnamed_addr constant [25 x i8] c"kotlinx/coroutines/JobKt\00", align 1 +@.TypeMapEntry.27171_from = private unnamed_addr constant [75 x i8] c"Xamarin.KotlinX.Coroutines.JobSupport, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27172_to = private unnamed_addr constant [30 x i8] c"kotlinx/coroutines/JobSupport\00", align 1 +@.TypeMapEntry.27173_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.JobSupportKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27174_to = private unnamed_addr constant [32 x i8] c"kotlinx/coroutines/JobSupportKt\00", align 1 +@.TypeMapEntry.27175_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.MainCoroutineDispatcher, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27176_to = private unnamed_addr constant [43 x i8] c"kotlinx/coroutines/MainCoroutineDispatcher\00", align 1 +@.TypeMapEntry.27177_from = private unnamed_addr constant [95 x i8] c"Xamarin.KotlinX.Coroutines.MainCoroutineDispatcherInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27178_from = private unnamed_addr constant [79 x i8] c"Xamarin.KotlinX.Coroutines.NonCancellable, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27179_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/NonCancellable\00", align 1 +@.TypeMapEntry.27180_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.NonDisposableHandle, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27181_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/NonDisposableHandle\00", align 1 +@.TypeMapEntry.27182_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.ParentJobDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27183_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/ParentJob$DefaultImpls\00", align 1 +@.TypeMapEntry.27184_from = private unnamed_addr constant [75 x i8] c"Xamarin.KotlinX.Coroutines.RunnableKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27185_to = private unnamed_addr constant [30 x i8] c"kotlinx/coroutines/RunnableKt\00", align 1 +@.TypeMapEntry.27186_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.SchedulerTaskKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27187_to = private unnamed_addr constant [35 x i8] c"kotlinx/coroutines/SchedulerTaskKt\00", align 1 +@.TypeMapEntry.27188_from = private unnamed_addr constant [96 x i8] c"Xamarin.KotlinX.Coroutines.Scheduling.CoroutineSchedulerKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27189_to = private unnamed_addr constant [51 x i8] c"kotlinx/coroutines/scheduling/CoroutineSchedulerKt\00", align 1 +@.TypeMapEntry.27190_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.Scheduling.TasksKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27191_to = private unnamed_addr constant [38 x i8] c"kotlinx/coroutines/scheduling/TasksKt\00", align 1 +@.TypeMapEntry.27192_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Scheduling.WorkQueueKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27193_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/scheduling/WorkQueueKt\00", align 1 +@.TypeMapEntry.27194_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectBuilder, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27195_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/selects/SelectBuilder\00", align 1 +@.TypeMapEntry.27196_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectBuilderInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27197_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27198_to = private unnamed_addr constant [40 x i8] c"kotlinx/coroutines/selects/SelectClause\00", align 1 +@.TypeMapEntry.27199_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause0, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27200_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/selects/SelectClause0\00", align 1 +@.TypeMapEntry.27201_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause0Invoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27202_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause1, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27203_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/selects/SelectClause1\00", align 1 +@.TypeMapEntry.27204_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause1Invoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27205_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause2, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27206_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/selects/SelectClause2\00", align 1 +@.TypeMapEntry.27207_from = private unnamed_addr constant [94 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClause2Invoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27208_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectClauseInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27209_from = private unnamed_addr constant [88 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectInstance, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27210_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/selects/SelectInstance\00", align 1 +@.TypeMapEntry.27211_from = private unnamed_addr constant [95 x i8] c"Xamarin.KotlinX.Coroutines.Selects.ISelectInstanceInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27212_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Selects.OnTimeoutKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27213_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/selects/OnTimeoutKt\00", align 1 +@.TypeMapEntry.27214_from = private unnamed_addr constant [98 x i8] c"Xamarin.KotlinX.Coroutines.Selects.SelectBuilderDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27215_to = private unnamed_addr constant [54 x i8] c"kotlinx/coroutines/selects/SelectBuilder$DefaultImpls\00", align 1 +@.TypeMapEntry.27216_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Selects.SelectKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27217_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/selects/SelectKt\00", align 1 +@.TypeMapEntry.27218_from = private unnamed_addr constant [84 x i8] c"Xamarin.KotlinX.Coroutines.Selects.SelectOldKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27219_to = private unnamed_addr constant [39 x i8] c"kotlinx/coroutines/selects/SelectOldKt\00", align 1 +@.TypeMapEntry.27220_from = private unnamed_addr constant [89 x i8] c"Xamarin.KotlinX.Coroutines.Selects.SelectUnbiasedKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27221_to = private unnamed_addr constant [44 x i8] c"kotlinx/coroutines/selects/SelectUnbiasedKt\00", align 1 +@.TypeMapEntry.27222_from = private unnamed_addr constant [86 x i8] c"Xamarin.KotlinX.Coroutines.Selects.WhileSelectKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27223_to = private unnamed_addr constant [41 x i8] c"kotlinx/coroutines/selects/WhileSelectKt\00", align 1 +@.TypeMapEntry.27224_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.Stream.StreamKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27225_to = private unnamed_addr constant [35 x i8] c"kotlinx/coroutines/stream/StreamKt\00", align 1 +@.TypeMapEntry.27226_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.SupervisorKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27227_to = private unnamed_addr constant [32 x i8] c"kotlinx/coroutines/SupervisorKt\00", align 1 +@.TypeMapEntry.27228_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.Sync.IMutex, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27229_to = private unnamed_addr constant [30 x i8] c"kotlinx/coroutines/sync/Mutex\00", align 1 +@.TypeMapEntry.27230_from = private unnamed_addr constant [83 x i8] c"Xamarin.KotlinX.Coroutines.Sync.IMutexInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27231_from = private unnamed_addr constant [80 x i8] c"Xamarin.KotlinX.Coroutines.Sync.ISemaphore, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27232_to = private unnamed_addr constant [34 x i8] c"kotlinx/coroutines/sync/Semaphore\00", align 1 +@.TypeMapEntry.27233_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Sync.ISemaphoreInvoker, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27234_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.Sync.MutexDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27235_to = private unnamed_addr constant [43 x i8] c"kotlinx/coroutines/sync/Mutex$DefaultImpls\00", align 1 +@.TypeMapEntry.27236_from = private unnamed_addr constant [77 x i8] c"Xamarin.KotlinX.Coroutines.Sync.MutexKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27237_to = private unnamed_addr constant [32 x i8] c"kotlinx/coroutines/sync/MutexKt\00", align 1 +@.TypeMapEntry.27238_from = private unnamed_addr constant [81 x i8] c"Xamarin.KotlinX.Coroutines.Sync.SemaphoreKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27239_to = private unnamed_addr constant [36 x i8] c"kotlinx/coroutines/sync/SemaphoreKt\00", align 1 +@.TypeMapEntry.27240_from = private unnamed_addr constant [97 x i8] c"Xamarin.KotlinX.Coroutines.ThreadContextElementDefaultImpls, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27241_to = private unnamed_addr constant [53 x i8] c"kotlinx/coroutines/ThreadContextElement$DefaultImpls\00", align 1 +@.TypeMapEntry.27242_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.ThreadContextElementKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27243_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/ThreadContextElementKt\00", align 1 +@.TypeMapEntry.27244_from = private unnamed_addr constant [87 x i8] c"Xamarin.KotlinX.Coroutines.ThreadPoolDispatcherKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27245_to = private unnamed_addr constant [42 x i8] c"kotlinx/coroutines/ThreadPoolDispatcherKt\00", align 1 +@.TypeMapEntry.27246_from = private unnamed_addr constant [76 x i8] c"Xamarin.KotlinX.Coroutines.Time.TimeKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27247_to = private unnamed_addr constant [31 x i8] c"kotlinx/coroutines/time/TimeKt\00", align 1 +@.TypeMapEntry.27248_from = private unnamed_addr constant [93 x i8] c"Xamarin.KotlinX.Coroutines.TimeoutCancellationException, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27249_to = private unnamed_addr constant [48 x i8] c"kotlinx/coroutines/TimeoutCancellationException\00", align 1 +@.TypeMapEntry.27250_from = private unnamed_addr constant [74 x i8] c"Xamarin.KotlinX.Coroutines.TimeoutKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27251_to = private unnamed_addr constant [29 x i8] c"kotlinx/coroutines/TimeoutKt\00", align 1 +@.TypeMapEntry.27252_from = private unnamed_addr constant [72 x i8] c"Xamarin.KotlinX.Coroutines.YieldKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27253_to = private unnamed_addr constant [27 x i8] c"kotlinx/coroutines/YieldKt\00", align 1 +@.TypeMapEntry.27254_from = private unnamed_addr constant [70 x i8] c"_COROUTINE.ArtificialStackFrames, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27255_to = private unnamed_addr constant [33 x i8] c"_COROUTINE/ArtificialStackFrames\00", align 1 +@.TypeMapEntry.27256_from = private unnamed_addr constant [69 x i8] c"_COROUTINE.CoroutineDebuggingKt, Xamarin.KotlinX.Coroutines.Core.Jvm\00", align 1 +@.TypeMapEntry.27257_to = private unnamed_addr constant [32 x i8] c"_COROUTINE/CoroutineDebuggingKt\00", align 1 +@.TypeMapEntry.27258_from = private unnamed_addr constant [38 x i8] c"clipiFrontC.MainActivity, clipiFrontC\00", align 1 +@.TypeMapEntry.27259_to = private unnamed_addr constant [35 x i8] c"crc64ca5cfae3d529160a/MainActivity\00", align 1 +@.TypeMapEntry.27260_from = private unnamed_addr constant [41 x i8] c"clipiFrontC.MainApplication, clipiFrontC\00", align 1 +@.TypeMapEntry.27261_to = private unnamed_addr constant [38 x i8] c"crc64ca5cfae3d529160a/MainApplication\00", align 1 + +; Metadata +!llvm.module.flags = !{!0, !1, !7, !8, !9, !10} +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!llvm.ident = !{!2} +!2 = !{!".NET for Android remotes/origin/release/9.0.1xx @ 9abff7703206541fdb83ffa80fe2c2753ad1997b"} +!3 = !{!4, !4, i64 0} +!4 = !{!"any pointer", !5, i64 0} +!5 = !{!"omnipotent char", !6, i64 0} +!6 = !{!"Simple C++ TBAA"} +!7 = !{i32 1, !"branch-target-enforcement", i32 0} +!8 = !{i32 1, !"sign-return-address", i32 0} +!9 = !{i32 1, !"sign-return-address-all", i32 0} +!10 = !{i32 1, !"sign-return-address-with-bkey", i32 0} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.o b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.o new file mode 100644 index 0000000..bf6c3f4 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android/typemaps.arm64-v8a.o differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android_debug_keystore.flag b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/android_debug_keystore.flag new file mode 100644 index 0000000..e69de29 diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/app_shared_libraries/arm64-v8a/libxamarin-app.so b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/app_shared_libraries/arm64-v8a/libxamarin-app.so new file mode 100644 index 0000000..c38cff6 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/app_shared_libraries/arm64-v8a/libxamarin-app.so differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/AboutAssets.txt b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/AboutAssets.txt new file mode 100644 index 0000000..6de1c15 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/AboutAssets.txt @@ -0,0 +1,15 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories). Deployment of the asset to your application +is automatically handled by the following `MauiAsset` Build Action within your `.csproj`. + + + +These files will be deployed with your package and will be accessible using Essentials: + + async Task LoadMauiAsset() + { + using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt"); + using var reader = new StreamReader(stream); + + var contents = reader.ReadToEnd(); + } diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/OpenSans-Regular.ttf b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/OpenSans-Regular.ttf new file mode 100644 index 0000000..bf60ae5 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/OpenSans-Regular.ttf differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css new file mode 100644 index 0000000..bd2edf0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css @@ -0,0 +1,181 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-3s9digbk9e] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-3s9digbk9e] { + flex: 1; +} + +.sidebar[b-3s9digbk9e] { + background-image: linear-gradient(180deg, #0d2e49 0%, #11466a 70%); +} + +.top-row[b-3s9digbk9e] { + background-color: #f8fbff; + border-bottom: 1px solid #d3ddeb; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-3s9digbk9e] a, .top-row[b-3s9digbk9e] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-3s9digbk9e] a:hover, .top-row[b-3s9digbk9e] .btn-link:hover { + text-decoration: none; + color: #0d6c9f; + } + + .top-row[b-3s9digbk9e] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-3s9digbk9e] { + justify-content: space-between; + } + + .top-row[b-3s9digbk9e] a, .top-row[b-3s9digbk9e] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-3s9digbk9e] { + flex-direction: row; + } + + .sidebar[b-3s9digbk9e] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-3s9digbk9e] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-3s9digbk9e] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-3s9digbk9e], article[b-3s9digbk9e] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-bavr8xkm2z] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + + .navbar-toggler:checked[b-bavr8xkm2z] { + background-color: rgba(255, 255, 255, 0.5); + } + +.top-row[b-bavr8xkm2z] { + height: 3.5rem; + background-color: rgba(5, 22, 34, 0.45); +} + +.navbar-brand[b-bavr8xkm2z] { + font-size: 1.1rem; +} + +.bi[b-bavr8xkm2z] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-send-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-send-fill' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.09 6.198a.5.5 0 0 0 .034.944l5.17 1.725 1.725 5.17a.5.5 0 0 0 .944.034L15.964.686z'/%3E%3C/svg%3E"); +} + +.nav-item[b-bavr8xkm2z] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-bavr8xkm2z] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-bavr8xkm2z] { + padding-bottom: 1rem; + } + + .nav-item[b-bavr8xkm2z] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + + .nav-item[b-bavr8xkm2z] a.active { + background-color: rgba(255,255,255,0.37); + color: white; + } + + .nav-item[b-bavr8xkm2z] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; + } + +.nav-scrollable[b-bavr8xkm2z] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-bavr8xkm2z] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-bavr8xkm2z] { + display: none; + } + + .nav-scrollable[b-bavr8xkm2z] { + /* Never collapse the sidebar for wide screens */ + display: block; + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.br b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.br new file mode 100644 index 0000000..5a0a963 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.br differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.gz b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.gz new file mode 100644 index 0000000..a274172 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.qi6ob6w6tp.bundle.scp.css.gz differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css new file mode 100644 index 0000000..bd2edf0 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css @@ -0,0 +1,181 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-3s9digbk9e] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-3s9digbk9e] { + flex: 1; +} + +.sidebar[b-3s9digbk9e] { + background-image: linear-gradient(180deg, #0d2e49 0%, #11466a 70%); +} + +.top-row[b-3s9digbk9e] { + background-color: #f8fbff; + border-bottom: 1px solid #d3ddeb; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-3s9digbk9e] a, .top-row[b-3s9digbk9e] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-3s9digbk9e] a:hover, .top-row[b-3s9digbk9e] .btn-link:hover { + text-decoration: none; + color: #0d6c9f; + } + + .top-row[b-3s9digbk9e] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-3s9digbk9e] { + justify-content: space-between; + } + + .top-row[b-3s9digbk9e] a, .top-row[b-3s9digbk9e] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-3s9digbk9e] { + flex-direction: row; + } + + .sidebar[b-3s9digbk9e] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-3s9digbk9e] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-3s9digbk9e] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-3s9digbk9e], article[b-3s9digbk9e] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-bavr8xkm2z] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + + .navbar-toggler:checked[b-bavr8xkm2z] { + background-color: rgba(255, 255, 255, 0.5); + } + +.top-row[b-bavr8xkm2z] { + height: 3.5rem; + background-color: rgba(5, 22, 34, 0.45); +} + +.navbar-brand[b-bavr8xkm2z] { + font-size: 1.1rem; +} + +.bi[b-bavr8xkm2z] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-send-fill-nav-menu[b-bavr8xkm2z] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-send-fill' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.09 6.198a.5.5 0 0 0 .034.944l5.17 1.725 1.725 5.17a.5.5 0 0 0 .944.034L15.964.686z'/%3E%3C/svg%3E"); +} + +.nav-item[b-bavr8xkm2z] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-bavr8xkm2z] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-bavr8xkm2z] { + padding-bottom: 1rem; + } + + .nav-item[b-bavr8xkm2z] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + + .nav-item[b-bavr8xkm2z] a.active { + background-color: rgba(255,255,255,0.37); + color: white; + } + + .nav-item[b-bavr8xkm2z] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; + } + +.nav-scrollable[b-bavr8xkm2z] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-bavr8xkm2z] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-bavr8xkm2z] { + display: none; + } + + .nav-scrollable[b-bavr8xkm2z] { + /* Never collapse the sidebar for wide screens */ + display: block; + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.br b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.br new file mode 100644 index 0000000..5a0a963 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.br differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.gz b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.gz new file mode 100644 index 0000000..a274172 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/clipiFrontC.styles.css.gz differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css new file mode 100644 index 0000000..e9a05aa --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css @@ -0,0 +1,419 @@ +/*#if (SampleContent)*/ +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +a, .btn-link { + color: #006bb7; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +.content { + padding-top: 1.1rem; +} + +/*#endif*/ +h1:focus { + outline: none; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid #e50000; +} + +.validation-message { + color: #e50000; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.status-bar-safe-area { + display: none; +} + +:root { + --clipi-bg: #f5f7fb; + --clipi-surface: #ffffff; + --clipi-border: #dfe6f1; + --clipi-primary: #0d6c9f; + --clipi-primary-strong: #0a567d; + --clipi-danger: #b42336; + --clipi-text: #152132; + --clipi-subtext: #5a6781; +} + +body { + background: + radial-gradient(1200px 400px at -10% -20%, #d8eef8, transparent 60%), + radial-gradient(800px 400px at 120% 0%, #f6ded7, transparent 60%), + var(--clipi-bg); + color: var(--clipi-text); +} + +.clipi-page { + max-width: 980px; + margin: 0 auto; + padding: 1rem 0 2rem; +} + +.clipi-section { + background: var(--clipi-surface); + border: 1px solid var(--clipi-border); + border-radius: 16px; + padding: 1rem; + margin-bottom: 1rem; + box-shadow: 0 10px 35px rgba(17, 38, 74, 0.08); +} + +.clipi-section h1, +.clipi-section h2 { + margin: 0; +} + +.clipi-section-header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 0.75rem; +} + +.clipi-section-subtitle { + margin: 0.35rem 0 1rem; + color: var(--clipi-subtext); +} + +.clipi-btn { + border: 1px solid #c8d4e5; + background: #eef4fc; + color: var(--clipi-primary); + border-radius: 9px; + padding: 0.4rem 0.7rem; + font-weight: 600; + transition: all 0.15s ease; +} + +.clipi-btn:hover:not(:disabled) { + background: #e2edf9; + border-color: #b9cae2; +} + +.clipi-btn:disabled { + opacity: 0.65; + cursor: not-allowed; +} + +.clipi-btn-danger { + color: #fff; + border-color: #9f1e2f; + background: var(--clipi-danger); +} + +.clipi-btn-danger:hover:not(:disabled) { + background: #9f1e2f; +} + +.favorite-add-row, +.search-row { + display: grid; + grid-template-columns: 1fr 1fr auto; + gap: 0.65rem; + margin-bottom: 0.9rem; +} + +.clipi-input { + border: 1px solid #cad7e7; + border-radius: 10px; + padding: 0.5rem 0.65rem; + width: 100%; + color: var(--clipi-text); + background: #ffffff; +} + +.clipi-input:focus { + outline: none; + border-color: var(--clipi-primary); + box-shadow: 0 0 0 3px rgba(13, 108, 159, 0.15); +} + +.device-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); + gap: 0.75rem; +} + +.device-card { + border: 1px solid var(--clipi-border); + border-radius: 12px; + padding: 0.75rem; + display: flex; + justify-content: space-between; + gap: 0.5rem; + align-items: center; + background: linear-gradient(165deg, #ffffff 0%, #f4f9ff 100%); +} + +.device-title { + font-weight: 700; +} + +.device-subtitle { + color: var(--clipi-subtext); + font-size: 0.85rem; +} + +.notes-list { + display: grid; + gap: 0.7rem; +} + +.note-card { + width: 100%; + text-align: left; + border: 1px solid var(--clipi-border); + border-radius: 12px; + background: #ffffff; + padding: 0.9rem; + display: flex; + flex-direction: column; + gap: 0.35rem; + box-shadow: 0 6px 16px rgba(14, 37, 75, 0.06); +} + +.note-card:hover { + border-color: #b8cae4; + box-shadow: 0 10px 25px rgba(14, 37, 75, 0.1); +} + +.note-content { + white-space: pre-wrap; + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: var(--clipi-text); +} + +.note-time { + color: var(--clipi-subtext); + font-size: 0.82rem; +} + +.status-text { + color: var(--clipi-subtext); + margin: 0.8rem 0; +} + +.status-error { + color: #b42336; + font-weight: 600; + margin: 0.8rem 0; +} + +.pagination-row { + margin-top: 0.8rem; + display: flex; + align-items: center; + gap: 0.8rem; + justify-content: center; +} + +.clipi-footer { + background: linear-gradient(145deg, #e9f4ff 0%, #f7f9ff 100%); + border: 1px dashed #b5c8e5; + border-radius: 16px; + padding: 1rem; + text-align: center; +} + +.footer-label { + margin: 0 0 0.4rem; + color: #455774; + font-size: 0.9rem; +} + +.ip-badge { + display: inline-block; + background: linear-gradient(135deg, var(--clipi-primary) 0%, var(--clipi-primary-strong) 100%); + color: #fff; + border-radius: 10px; + padding: 0.35rem 0.75rem; + font-family: Consolas, 'Courier New', monospace; + font-weight: 700; +} + +.footer-hint { + margin: 0.5rem 0 0; + color: #60738f; + font-size: 0.8rem; +} + +.note-visualizer { + border: 1px solid var(--clipi-border); + border-radius: 12px; + background: #f6f9ff; + padding: 1rem; + max-height: 55vh; + overflow: auto; +} + +.note-visualizer pre { + margin: 0; + font-family: Consolas, 'Courier New', monospace; + white-space: pre-wrap; + word-break: break-word; +} + +.note-meta { + margin-top: 0.75rem; + display: flex; + flex-wrap: wrap; + gap: 0.8rem; + color: var(--clipi-subtext); + font-size: 0.88rem; +} + +.send-form-grid { + display: grid; + gap: 0.9rem; +} + +.send-label { + display: block; + font-weight: 700; + margin: 0 0 0.3rem; +} + +.send-help { + margin: 0.35rem 0 0; + color: var(--clipi-subtext); + font-size: 0.82rem; +} + +.send-targets { + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.send-target-btn { + font-size: 0.82rem; + padding: 0.3rem 0.55rem; +} + +.send-editor-wrap { + border: 1px solid var(--clipi-border); + border-radius: 12px; + background: #fbfdff; + padding: 0.75rem; +} + +.send-editor-header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 0.8rem; + margin-bottom: 0.4rem; +} + +.send-counter { + color: var(--clipi-subtext); + font-size: 0.82rem; +} + +.send-editor { + min-height: 180px; + resize: vertical; + font-family: Consolas, 'Courier New', monospace; + white-space: pre-wrap; +} + +.send-editor-actions { + margin-top: 0.6rem; + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.send-submit-row { + margin-top: 1rem; + display: flex; + flex-wrap: wrap; + gap: 0.65rem; +} + +@media (max-width: 720px) { + .favorite-add-row, + .search-row { + grid-template-columns: 1fr; + } + + .clipi-section-header { + align-items: flex-start; + flex-direction: column; + } + + .pagination-row { + flex-wrap: wrap; + } + + .send-editor-header { + align-items: flex-start; + flex-direction: column; + } +} + +@supports (-webkit-touch-callout: none) { + .status-bar-safe-area { + display: flex; + position: sticky; + top: 0; + height: env(safe-area-inset-top); + background-color: #f7f7f7; + width: 100%; + z-index: 1; + } + + .flex-column, .navbar-brand { + padding-left: env(safe-area-inset-left); + } +} diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.br b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.br new file mode 100644 index 0000000..c24d9da Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.br differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.gz b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.gz new file mode 100644 index 0000000..9b11379 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/app.css.gz differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..02ae65b --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.br b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.br new file mode 100644 index 0000000..c73b635 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.br differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.gz b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.gz new file mode 100644 index 0000000..67c1168 Binary files /dev/null and b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.gz differ diff --git a/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.map b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..afcd9e3 --- /dev/null +++ b/clipiFrontC/clipiFrontC/obj/Debug/net9.0-android/assets/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAQI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAIA,iBAAA,EAAA,CAAA,GAAA,CAAA,IAAA,mBAAA,GAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,EAAA,CAAA,GAAA,CAAA,GAAA,cAAA,EAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,GAAA,CAAA,GAAA,CAAA,EAAA,gBAAA,GAAA,CAAA,EAAA,CAAA,GAAA,eAAA,GAAA,CAAA,GAAA,CAAA,IAAA,cAAA,EAAA,CAAA,EAAA,CAAA,GAGF,eAAA,GAAA,CAAA,GAAA,CAAA,IACA,eAAA,CAAA,CAAA,CAAA,CAAA,EACA,cAAA,EAAA,CAAA,EAAA,CAAA,GAMA,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2EAQA,sBAAA,0BACA,oBAAA,KACA,sBAAA,IACA,sBAAA,IACA,gBAAA,QAIA,aAAA,KClCF,EC+CA,QADA,SD3CE,WAAA,WAeE,8CANJ,MAOM,gBAAA,QAcN,KACE,OAAA,EACA,YAAA,2BEmPI,UAAA,yBFjPJ,YAAA,2BACA,YAAA,2BACA,MAAA,qBACA,WAAA,0BACA,iBAAA,kBACA,yBAAA,KACA,4BAAA,YAUF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GEwMQ,UAAA,uBAlKJ,0BFtCJ,IAAA,GE+MQ,UAAA,QF1MR,IAAA,GEmMQ,UAAA,sBAlKJ,0BFjCJ,IAAA,GE0MQ,UAAA,MFrMR,IAAA,GE8LQ,UAAA,oBAlKJ,0BF5BJ,IAAA,GEqMQ,UAAA,SFhMR,IAAA,GEyLQ,UAAA,sBAlKJ,0BFvBJ,IAAA,GEgMQ,UAAA,QF3LR,IAAA,GEgLM,UAAA,QF3KN,IAAA,GE2KM,UAAA,KFhKN,EACE,WAAA,EACA,cAAA,KCmBF,6BDRA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCIA,GDFE,aAAA,KCQF,GDLA,GCIA,GDDE,WAAA,EACA,cAAA,KAGF,MCKA,MACA,MAFA,MDAE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECNA,ODQE,YAAA,OAQF,OAAA,ME4EM,UAAA,OFrEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,ICpBA,IDsBE,SAAA,SEwDI,UAAA,MFtDJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KCxBJ,KACA,ID8BA,IC7BA,KDiCE,YAAA,yBEcI,UAAA,IFZJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEAI,UAAA,OFKJ,SELI,UAAA,QFOF,MAAA,QACA,WAAA,OAIJ,KEZM,UAAA,OFcJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MExBI,UAAA,OF0BJ,MAAA,KACA,iBAAA,QG7SE,cAAA,MHgTF,QACE,QAAA,EE/BE,UAAA,IFiCF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICjDA,IDmDE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBCxDF,MAGA,GAFA,MAGA,GDuDA,MCzDA,GD+DE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECtEF,OD2EA,MCzEA,SADA,OAEA,SD6EE,OAAA,EACA,YAAA,QE9HI,UAAA,QFgIJ,YAAA,QAIF,OC5EA,OD8EE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KClFF,cACA,aACA,cDwFA,OAIE,mBAAA,OCxFF,6BACA,4BACA,6BDyFI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEnNM,UAAA,sBFsNN,YAAA,QExXE,0BFiXJ,OExMQ,UAAA,QFiNN,SACE,MAAA,KChGJ,kCDuGA,uCCxGA,mCADA,+BAGA,oCAJA,6BAKA,mCD4GE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eInlBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WPqmBF,iBAGA,cACA,cACA,cAHA,cADA,eQzmBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KXusBR,MWrsBU,cAAA,EAGF,KXusBR,MWrsBU,cAAA,EAPF,KXitBR,MW/sBU,cAAA,QAGF,KXitBR,MW/sBU,cAAA,QAPF,KX2tBR,MWztBU,cAAA,OAGF,KX2tBR,MWztBU,cAAA,OAPF,KXquBR,MWnuBU,cAAA,KAGF,KXquBR,MWnuBU,cAAA,KAPF,KX+uBR,MW7uBU,cAAA,OAGF,KX+uBR,MW7uBU,cAAA,OAPF,KXyvBR,MWvvBU,cAAA,KAGF,KXyvBR,MWvvBU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX45BR,SW15BU,cAAA,EAGF,QX45BR,SW15BU,cAAA,EAPF,QXs6BR,SWp6BU,cAAA,QAGF,QXs6BR,SWp6BU,cAAA,QAPF,QXg7BR,SW96BU,cAAA,OAGF,QXg7BR,SW96BU,cAAA,OAPF,QX07BR,SWx7BU,cAAA,KAGF,QX07BR,SWx7BU,cAAA,KAPF,QXo8BR,SWl8BU,cAAA,OAGF,QXo8BR,SWl8BU,cAAA,OAPF,QX88BR,SW58BU,cAAA,KAGF,QX88BR,SW58BU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXinCR,SW/mCU,cAAA,EAGF,QXinCR,SW/mCU,cAAA,EAPF,QX2nCR,SWznCU,cAAA,QAGF,QX2nCR,SWznCU,cAAA,QAPF,QXqoCR,SWnoCU,cAAA,OAGF,QXqoCR,SWnoCU,cAAA,OAPF,QX+oCR,SW7oCU,cAAA,KAGF,QX+oCR,SW7oCU,cAAA,KAPF,QXypCR,SWvpCU,cAAA,OAGF,QXypCR,SWvpCU,cAAA,OAPF,QXmqCR,SWjqCU,cAAA,KAGF,QXmqCR,SWjqCU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXs0CR,SWp0CU,cAAA,EAGF,QXs0CR,SWp0CU,cAAA,EAPF,QXg1CR,SW90CU,cAAA,QAGF,QXg1CR,SW90CU,cAAA,QAPF,QX01CR,SWx1CU,cAAA,OAGF,QX01CR,SWx1CU,cAAA,OAPF,QXo2CR,SWl2CU,cAAA,KAGF,QXo2CR,SWl2CU,cAAA,KAPF,QX82CR,SW52CU,cAAA,OAGF,QX82CR,SW52CU,cAAA,OAPF,QXw3CR,SWt3CU,cAAA,KAGF,QXw3CR,SWt3CU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX2hDR,SWzhDU,cAAA,EAGF,QX2hDR,SWzhDU,cAAA,EAPF,QXqiDR,SWniDU,cAAA,QAGF,QXqiDR,SWniDU,cAAA,QAPF,QX+iDR,SW7iDU,cAAA,OAGF,QX+iDR,SW7iDU,cAAA,OAPF,QXyjDR,SWvjDU,cAAA,KAGF,QXyjDR,SWvjDU,cAAA,KAPF,QXmkDR,SWjkDU,cAAA,OAGF,QXmkDR,SWjkDU,cAAA,OAPF,QX6kDR,SW3kDU,cAAA,KAGF,QX6kDR,SW3kDU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SXgvDR,UW9uDU,cAAA,EAGF,SXgvDR,UW9uDU,cAAA,EAPF,SX0vDR,UWxvDU,cAAA,QAGF,SX0vDR,UWxvDU,cAAA,QAPF,SXowDR,UWlwDU,cAAA,OAGF,SXowDR,UWlwDU,cAAA,OAPF,SX8wDR,UW5wDU,cAAA,KAGF,SX8wDR,UW5wDU,cAAA,KAPF,SXwxDR,UWtxDU,cAAA,OAGF,SXwxDR,UWtxDU,cAAA,OAPF,SXkyDR,UWhyDU,cAAA,KAGF,SXkyDR,UWhyDU,cAAA,MCpHV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,0BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,yBACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,2BAGF,yBACE,WAAA,0BAGF,yBACE,WAAA,yBAKJ,oBACE,MAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtB+iFF,4BsB7iFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtBmjFJ,2DACA,kCsBnjFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvB2mFF,0BuBzmFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBymFF,gCuBvmFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFuoFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MFgpFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBulFA,6BuBrlFE,cAAA,KvB0lFF,uEuB7kFI,8FrB/DA,wBAAA,EACA,2BAAA,EFgpFJ,iEuB3kFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFmsFJ,0BACA,yBwBrqFI,sCxBmqFJ,qCwBjqFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBwwFJ,mCwBxwFI,gDxBuwFJ,+CwBxoFQ,QAAA,EAIF,0CxB0oFN,yCwB1oFM,sDxByoFN,qDwBxoFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF4xFJ,8BACA,6BwB9vFI,0CxB4vFJ,yCwB1vFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxBi2FJ,qCwBj2FI,kDxBg2FJ,iDwB/tFQ,QAAA,EAEF,4CxBmuFN,2CwBnuFM,wDxBkuFN,uDwBjuFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MUDN,gCACE,MAAA,EACA,OAAA,KVNE,WAAA,MAAA,KAAA,KAIA,uCUAJ,gCVCM,WAAA,MjBs3GR,UADA,SAEA,W4B34GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2rHA,oB8BzrHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6rHF,yB8B3rHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmsHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhsHE,mC9ByrHF,iCAIA,uBADA,uBADA,sBADA,sB8BprHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgsHJ,wC8B1rHE,kCAEE,YAAA,K9B4rHJ,4C8BxrHE,uD5BRE,wBAAA,EACA,2BAAA,EFqsHJ,6C8BrrHE,+B9BorHF,iCEvrHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmpHF,+B8BjpHI,MAAA,K9BqpHJ,iD8BlpHE,2CAEE,WAAA,K9BopHJ,qD8BhpHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2uHJ,sD8BhpHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BixHN,mC+B7wHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmwHF,2B+BjwHI,MAAA,KbxFF,iBAAA,QlB+1HF,oB+B5vHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+vHJ,yB+B1vHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/BuvHF,mC+BtvHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs2HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC12HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC+yHV,oCgC7yHQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCo2HV,oCgCl2HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCy5HV,oCgCv5HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC88HV,oCgC58HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,KAGF,qCACE,QAAA,KAGF,8BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCmgIV,qCgCjgIQ,kCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,mCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SA1DN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAGF,iCACE,QAAA,KAGF,0BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCujIV,iCgCrjIQ,8BAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,+BACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,QAcR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCqiIR,2CgCjiII,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhC8hIJ,mCADA,mCgC1hIM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCqhIR,0CgCjhII,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC+gIJ,kCADA,kCgC3gIM,MAAA,KCvUN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BFF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BCF,uBAAA,mBACA,wBAAA,mB+BEA,6BACE,oBAAA,E/BUF,2BAAA,mBACA,0BAAA,mB+BJF,+BjCk1IF,+BiCh1II,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAQA,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BpEE,cAAA,mBAAA,mBAAA,EAAA,E+ByEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B/EE,cAAA,EAAA,EAAA,mBAAA,mB+ByFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BnHE,cAAA,mB+BuHJ,UjCozIA,iBADA,ciChzIE,MAAA,KAGF,UjCmzIA,cEv6II,uBAAA,mBACA,wBAAA,mB+BwHJ,UjCozIA,iBE/5II,2BAAA,mBACA,0BAAA,mB+BuHF,kBACE,cAAA,OxBpGA,yBwBgGJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BpJJ,wBAAA,EACA,2BAAA,EF+7IJ,gDiCzyIU,iDAGE,wBAAA,EjC0yIZ,gDiCxyIU,oDAGE,2BAAA,EAIJ,oC/BrJJ,uBAAA,EACA,0BAAA,EF67IJ,iDiCtyIU,kDAGE,uBAAA,EjCuyIZ,iDiCryIU,qDAGE,0BAAA,GC7MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,eACE,QAAA,EAGF,kBACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBCpFE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GDgFX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5CtEE,uBAAA,kBACA,wBAAA,kB4CwEF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CzFE,2BAAA,kBACA,0BAAA,kB4C8FF,gBACE,OAAA,OrC3EA,yBqCkFF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrCnGV,yBqCuGF,U9CywKF,U8CvwKI,UAAA,OrCzGA,0BqC8GF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,gC5C/KF,cAAA,E4CmLE,8BACE,WAAA,KAGF,gC5CvLF,cAAA,EOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,yC5C/KF,cAAA,E4CmLE,uCACE,WAAA,KAGF,yC5CvLF,cAAA,G8ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,Q+C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K9C7FE,cAAA,OgDnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,QiDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ehDIE,cAAA,MgDAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EjDuJI,UAAA,KiDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,ehDtHE,uBAAA,kBACA,wBAAA,kBgDwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OlClBI,WAAA,UAAA,IAAA,YAIA,uCkCQN,elCPQ,WAAA,MjBgzLR,oBACA,oBmDhyLA,sBAGE,QAAA,MnDmyLF,0BmD/xLA,8CAEE,UAAA,iBnDkyLF,4BmD/xLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KnD0xLJ,uDACA,qDmDxxLE,qCAGE,QAAA,EACA,QAAA,EnDyxLJ,yCmDtxLE,2CAEE,QAAA,EACA,QAAA,ElC/DE,WAAA,QAAA,GAAA,IAIA,uCjBq1LN,yCmD7xLE,2ClCvDM,WAAA,MjB01LR,uBmDtxLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GlCzFI,WAAA,QAAA,KAAA,KAIA,uCjB82LN,uBmDzyLA,uBlCpEQ,WAAA,MjBm3LR,6BADA,6BmD1xLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,EnD8xLF,4BmDzxLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GlC5KE,WAAA,QAAA,IAAA,KAIA,uCkCwJJ,sClCvJM,WAAA,MkC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OnDoxLF,2CmD9wLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBrDo/LJ,cqDl/LM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,ErCKI,WAAA,UAAA,IAAA,YAIA,uCqCpBN,WrCqBQ,WAAA,MqCLR,oBPdE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,yBAAS,QAAA,EACT,yBAAS,QAAA,GOQX,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KCjFF,aACE,QAAA,aACA,WAAA,IACA,eAAA,OACA,OAAA,KACA,iBAAA,aACA,QAAA,GAEA,yBACE,QAAA,aACA,QAAA,GAKJ,gBACE,WAAA,KAGF,gBACE,WAAA,KAGF,gBACE,WAAA,MAKA,+BACE,kBAAA,iBAAA,GAAA,YAAA,SAAA,UAAA,iBAAA,GAAA,YAAA,SAIJ,oCACE,IACE,QAAA,IAFJ,4BACE,IACE,QAAA,IAIJ,kBACE,mBAAA,8DAAA,WAAA,8DACA,kBAAA,KAAA,KAAA,UAAA,KAAA,KACA,kBAAA,iBAAA,GAAA,OAAA,SAAA,UAAA,iBAAA,GAAA,OAAA,SAGF,oCACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IAFJ,4BACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IH9CF,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GIJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,KjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBN,QACE,QAAA,KACA,eAAA,IACA,YAAA,OACA,WAAA,QAGF,QACE,QAAA,KACA,KAAA,EAAA,EAAA,KACA,eAAA,OACA,WAAA,QCRF,iB5Dk4MA,0D6D93ME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OCNF,IACE,QAAA,aACA,WAAA,QACA,MAAA,IACA,WAAA,IACA,iBAAA,aACA,QAAA,ICyDM,gBAOI,eAAA,mBAPJ,WAOI,eAAA,cAPJ,cAOI,eAAA,iBAPJ,cAOI,eAAA,iBAPJ,mBAOI,eAAA,sBAPJ,gBAOI,eAAA,mBAPJ,aAOI,MAAA,eAPJ,WAOI,MAAA,gBAPJ,YAOI,MAAA,eAPJ,WAOI,QAAA,YAPJ,YAOI,QAAA,cAPJ,YAOI,QAAA,aAPJ,YAOI,QAAA,cAPJ,aAOI,QAAA,YAPJ,eAOI,SAAA,eAPJ,iBAOI,SAAA,iBAPJ,kBAOI,SAAA,kBAPJ,iBAOI,SAAA,iBAPJ,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,QAOI,WAAA,EAAA,MAAA,KAAA,0BAPJ,WAOI,WAAA,EAAA,QAAA,OAAA,2BAPJ,WAOI,WAAA,EAAA,KAAA,KAAA,2BAPJ,aAOI,WAAA,eAPJ,iBAOI,SAAA,iBAPJ,mBAOI,SAAA,mBAPJ,mBAOI,SAAA,mBAPJ,gBAOI,SAAA,gBAPJ,iBAOI,SAAA,yBAAA,SAAA,iBAPJ,OAOI,IAAA,YAPJ,QAOI,IAAA,cAPJ,SAOI,IAAA,eAPJ,UAOI,OAAA,YAPJ,WAOI,OAAA,cAPJ,YAOI,OAAA,eAPJ,SAOI,KAAA,YAPJ,UAOI,KAAA,cAPJ,WAOI,KAAA,eAPJ,OAOI,MAAA,YAPJ,QAOI,MAAA,cAPJ,SAOI,MAAA,eAPJ,kBAOI,UAAA,+BAPJ,oBAOI,UAAA,2BAPJ,oBAOI,UAAA,2BAPJ,QAOI,OAAA,IAAA,MAAA,kBAPJ,UAOI,OAAA,YAPJ,YAOI,WAAA,IAAA,MAAA,kBAPJ,cAOI,WAAA,YAPJ,YAOI,aAAA,IAAA,MAAA,kBAPJ,cAOI,aAAA,YAPJ,eAOI,cAAA,IAAA,MAAA,kBAPJ,iBAOI,cAAA,YAPJ,cAOI,YAAA,IAAA,MAAA,kBAPJ,gBAOI,YAAA,YAPJ,gBAOI,aAAA,kBAPJ,kBAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,eAOI,aAAA,kBAPJ,cAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,cAOI,aAAA,eAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,OAOI,MAAA,eAPJ,QAOI,MAAA,eAPJ,QAOI,UAAA,eAPJ,QAOI,MAAA,gBAPJ,YAOI,UAAA,gBAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,OAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,QAOI,WAAA,eAPJ,QAOI,OAAA,gBAPJ,YAOI,WAAA,gBAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,OAOI,IAAA,YAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,gBAPJ,OAOI,IAAA,eAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,eAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,gBAOI,YAAA,mCAPJ,MAOI,UAAA,iCAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,8BAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,eAPJ,YAOI,WAAA,iBAPJ,YAOI,WAAA,iBAPJ,UAOI,YAAA,cAPJ,YAOI,YAAA,kBAPJ,WAOI,YAAA,cAPJ,SAOI,YAAA,cAPJ,WAOI,YAAA,iBAPJ,MAOI,YAAA,YAPJ,OAOI,YAAA,eAPJ,SAOI,YAAA,cAPJ,OAOI,YAAA,YAPJ,YAOI,WAAA,eAPJ,UAOI,WAAA,gBAPJ,aAOI,WAAA,iBAPJ,sBAOI,gBAAA,eAPJ,2BAOI,gBAAA,oBAPJ,8BAOI,gBAAA,uBAPJ,gBAOI,eAAA,oBAPJ,gBAOI,eAAA,oBAPJ,iBAOI,eAAA,qBAPJ,WAOI,YAAA,iBAPJ,aAOI,YAAA,iBAPJ,YAOI,UAAA,qBAAA,WAAA,qBAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,gBAIQ,kBAAA,EAGJ,MAAA,+DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,aAIQ,kBAAA,EAGJ,MAAA,4DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAPJ,eAIQ,kBAAA,EAGJ,MAAA,yBAPJ,eAIQ,kBAAA,EAGJ,MAAA,+BAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAjBJ,iBACE,kBAAA,KADF,iBACE,kBAAA,IADF,iBACE,kBAAA,KADF,kBACE,kBAAA,EASF,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,cAIQ,gBAAA,EAGJ,iBAAA,6DAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,WAIQ,gBAAA,EAGJ,iBAAA,0DAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,gBAIQ,gBAAA,EAGJ,iBAAA,sBAjBJ,eACE,gBAAA,IADF,eACE,gBAAA,KADF,eACE,gBAAA,IADF,eACE,gBAAA,KADF,gBACE,gBAAA,EASF,aAOI,iBAAA,6BAPJ,iBAOI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,iBAPJ,WAOI,cAAA,YAPJ,WAOI,cAAA,gBAPJ,WAOI,cAAA,iBAPJ,WAOI,cAAA,gBAPJ,gBAOI,cAAA,cAPJ,cAOI,cAAA,gBAPJ,aAOI,uBAAA,iBAAA,wBAAA,iBAPJ,aAOI,wBAAA,iBAAA,2BAAA,iBAPJ,gBAOI,2BAAA,iBAAA,0BAAA,iBAPJ,eAOI,0BAAA,iBAAA,uBAAA,iBAPJ,SAOI,WAAA,kBAPJ,WAOI,WAAA,iBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,iBAOI,MAAA,eAPJ,eAOI,MAAA,gBAPJ,gBAOI,MAAA,eAPJ,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,WAOI,IAAA,YAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,gBAPJ,WAOI,IAAA,eAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,eAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,gBAOI,WAAA,eAPJ,cAOI,WAAA,gBAPJ,iBAOI,WAAA,kBCnDZ,0BD4CQ,MAOI,UAAA,iBAPJ,MAOI,UAAA,eAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,kBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`